diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index c2817deb5..084d8259f 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -4,7 +4,7 @@ jobs: windows-2022-staticLink-cs: runs-on: windows-2022 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: zlib install run: | Invoke-WebRequest https://zlib.net/current/zlib.tar.gz -OutFile ${{ runner.temp }}\zlib.tar.gz @@ -82,8 +82,8 @@ jobs: CC: ${{ matrix.cc }} CXX: ${{ matrix.cxx }} steps: - - uses: actions/checkout@v4 - - uses: actions/setup-java@v4 + - uses: actions/checkout@v5 + - uses: actions/setup-java@v5 with: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '11' @@ -125,13 +125,13 @@ jobs: name: Build wheels on windows-latest runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Stub `setup.py` check # It will be generated during CMake run # https://github.com/pypa/cibuildwheel/issues/1139 run: touch python/setup.py - name: Build wheels - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v3.2.1 env: CIBW_BUILD: cp38-win_amd64 cp39-win_amd64 cp310-win_amd64 cp311-win_amd64 cp312-win_amd64 cp313-win_amd64 CIBW_ARCHS: auto64 @@ -158,13 +158,14 @@ jobs: name: Build wheels on ubuntu-latest runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Stub `setup.py` check # It will be generated during CMake run # https://github.com/pypa/cibuildwheel/issues/1139 run: touch python/setup.py - name: Build wheels - uses: pypa/cibuildwheel@v2.21.3 + # Cannot use a more recent version than v2.22.0 because of fetappi wheel which uses AVRO which cannot be built with GNU 14. + uses: pypa/cibuildwheel@v2.22.0 env: CIBW_BUILD: cp38-manylinux_* cp39-manylinux_* cp310-manylinux_* cp311-manylinux_* cp312-manylinux_* cp313-manylinux_* CIBW_ARCHS: auto64 @@ -195,13 +196,13 @@ jobs: name: Build wheels on macos-14 runs-on: macos-14 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Stub `setup.py` check # It will be generated during CMake run # https://github.com/pypa/cibuildwheel/issues/1139 run: touch python/setup.py - name: Build wheels - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v3.2.1 env: CIBW_BUILD: cp38-macosx_* cp39-macosx_* cp310-macosx_* cp311-macosx_* cp312-macosx_* cp313-macosx_* CIBW_ARCHS: auto64 @@ -247,7 +248,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: APT install run: | sudo apt update @@ -267,7 +268,7 @@ jobs: ubuntu-latest-valgrind-unitTest: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: APT install run: | sudo apt update @@ -291,7 +292,7 @@ jobs: runs-on: ubuntu-22.04 steps: - uses: mymindstorm/setup-emsdk@v11 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Verify run: emcc -v - name: "Set environmental variables" @@ -352,7 +353,7 @@ jobs: emmake make -j8 fesapi-wasm emmake make -j8 fesapi-wasm-node - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: fesapi-mjs path: | diff --git a/CMakeLists.txt b/CMakeLists.txt index 45f16b426..2c48e4469 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ set (FESAPI_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}) # version mechanism set (Fesapi_VERSION_MAJOR 2) -set (Fesapi_VERSION_MINOR 13) +set (Fesapi_VERSION_MINOR 14) set (Fesapi_VERSION_PATCH 0) set (Fesapi_VERSION_TWEAK 0) @@ -64,14 +64,14 @@ ELSE() ENDIF() IF(HDF5_PREFER_PARALLEL) if(NOT HDF5_IS_PARALLEL) - message(FATAL_ERROR - "Parallel HDF5 required but only serial version found!" + message(WARNING + "Parallel HDF5 is preferred but only serial version found!" ) ENDIF() ELSE() IF(HDF5_IS_PARALLEL) - message(FATAL_ERROR - "Serial HDF5 required but only parallel version found!" + message(WARNING + "Serial HDF5 is preferred but only parallel version found!" ) ENDIF() ENDIF() diff --git a/NOTICE b/NOTICE index 9084045cf..fec4f7b2e 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ - Copyright 2018 F2I-CONSULTING + Copyright 2018-2025 F2I-CONSULTING Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/cmake/FesapiJavaExample.java b/cmake/FesapiJavaExample.java index 537ede8c3..c3397b2c6 100644 --- a/cmake/FesapiJavaExample.java +++ b/cmake/FesapiJavaExample.java @@ -477,7 +477,7 @@ private static void serializeBoundaries(DataObjectRepository repo, AbstractHdfPr fesapi.DoubleArray_setitem(prop1Values, 14, 351); fesapi.DoubleArray_setitem(prop1Values, 15, 352); - contProp1.pushBackDoubleHdf5Array2dOfValues(prop1Values, 2, 8, hdfProxy); + contProp1.pushBackDoubleArray2dOfValues(prop1Values, 2, 8, hdfProxy); } finally { fesapi.delete_DoubleArray(prop1Values); @@ -497,7 +497,7 @@ private static void serializeIjkGrid(DataObjectRepository repo, AbstractHdfProxy try { fesapi.UInt16Array_setitem(propValues, 0, 0); fesapi.UInt16Array_setitem(propValues, 1, 1); - discreteProp1.pushBackUInt16Hdf5Array3dOfValues(propValues, 2, 1, 1, hdfProxy, 1111); + discreteProp1.pushBackUInt16Array3dOfValues(propValues, 2, 1, 1, hdfProxy, 1111); } finally { fesapi.delete_UInt16Array(propValues); @@ -510,7 +510,7 @@ private static void serializeIjkGrid(DataObjectRepository repo, AbstractHdfProxy try { fesapi.UInt16Array_setitem(propValues, 0, 10); fesapi.UInt16Array_setitem(propValues, 1, 11); - discreteProp2.pushBackUInt16Hdf5Array3dOfValues(propValues, 2, 1, 1, hdfProxy, 1111); + discreteProp2.pushBackUInt16Array3dOfValues(propValues, 2, 1, 1, hdfProxy, 1111); } finally { fesapi.delete_UInt16Array(propValues); @@ -588,7 +588,7 @@ private static void serializeGraphicalInformationSet(DataObjectRepository repo, try { fesapi.UInt16Array_setitem(propValues, 0, 10); fesapi.UInt16Array_setitem(propValues, 1, 11); - discreteProp2.pushBackUInt16Hdf5Array3dOfValues(propValues, 2, 1, 1, hdfProxy, 1111); + discreteProp2.pushBackUInt16Array3dOfValues(propValues, 2, 1, 1, hdfProxy, 1111); } finally { fesapi.delete_UInt16Array(propValues); @@ -625,7 +625,7 @@ private static void serializeGraphicalInformationSet(DataObjectRepository repo, finally { fesapi.delete_DoubleArray(values); } - contColMapContProp.pushBackDoubleHdf5Array2dOfValues(values, numPointInFastestDirection, numPointsInSlowestDirection, hdfProxy); + contColMapContProp.pushBackDoubleArray2dOfValues(values, numPointInFastestDirection, numPointsInSlowestDirection, hdfProxy); ContinuousColorMap contColMap = repo.createContinuousColorMap("a207faa2-963e-48d6-b3ad-53f6c1fc4dd4", "Continuous color map", resqml22__InterpolationDomain.rgb, resqml22__InterpolationMethod.linear); SWIGTYPE_p_unsigned_char contColMapRgbColors = fesapi.new_UInt8Array(6); diff --git a/cmake/nsDefinitions.h b/cmake/nsDefinitions.h index 331af30b6..2eb22d9c9 100644 --- a/cmake/nsDefinitions.h +++ b/cmake/nsDefinitions.h @@ -37,8 +37,8 @@ under the License. /** @namespace ${FESAPI_WITSML2_1_NS} @brief The ${FESAPI_WITSML2_1_NS} namespace. */ #define WITSML2_1_NS ${FESAPI_WITSML2_1_NS} -/** @namespace ${FESAPI_PRODML2_1_NS} @brief The ${FESAPI_PRODML2_1_NS} namespace. */ -#define PRODML2_2_NS ${FESAPI_PRODML2_2_NS} +/** @namespace ${FESAPI_PRODML2_3_NS} @brief The ${FESAPI_PRODML2_3_NS} namespace. */ +#define PRODML2_3_NS ${FESAPI_PRODML2_3_NS} /** @namespace ${FESAPI_EML2_NS} @brief The ${FESAPI_EML2_NS} namespace. This namespaces contains classes to handle data objects that exist in various EML v2.*. The classes of this namespace should be favored, when possible, instead of the classes of the namespace ${FESAPI_EML2_0_NS}, ${FESAPI_EML2_1_NS}, ${FESAPI_EML2_2_NS} and ${FESAPI_EML2_3_NS}. */ #define EML2_NS ${FESAPI_EML2_NS} diff --git a/cmake/pyproject.toml.in b/cmake/pyproject.toml.in index ac6d13f8d..d126ae521 100644 --- a/cmake/pyproject.toml.in +++ b/cmake/pyproject.toml.in @@ -16,7 +16,6 @@ readme = "README.md" classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', - 'License :: OSI Approved :: Apache Software License', 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX :: Linux', 'Operating System :: MacOS', @@ -29,9 +28,10 @@ classifiers=[ 'Programming Language :: Python :: 3.12', 'Topic :: Software Development', 'Topic :: Software Development :: Libraries', - 'Topic :: Software Development :: Libraries :: Application Frameworks ', + 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: File Formats', ] +license = {text = "Apache-2.0"} keywords = [ "energistics", "resqml", diff --git a/cmake/swigCsInclude.i b/cmake/swigCsInclude.i index ac38e353d..77b85dd94 100644 --- a/cmake/swigCsInclude.i +++ b/cmake/swigCsInclude.i @@ -888,8 +888,8 @@ ${COMMENT_END} ${COMMENT_START} case DataObjectName.FLUIDBOUNDARYINTERPRETATION : return new F2iConsulting.Fesapi.${FESAPI_RESQML2_2_NS}.FluidBoundaryInterpretation(cPtr, owner); ${COMMENT_END} - case DataObjectName.FLUIDCHARACTERIZATION : return new F2iConsulting.Fesapi.${FESAPI_PRODML2_2_NS}.FluidCharacterization(cPtr, owner); - case DataObjectName.FLUIDSYSTEM : return new F2iConsulting.Fesapi.${FESAPI_PRODML2_2_NS}.FluidSystem(cPtr, owner); + case DataObjectName.FLUIDCHARACTERIZATION : return new F2iConsulting.Fesapi.${FESAPI_PRODML2_3_NS}.FluidCharacterization(cPtr, owner); + case DataObjectName.FLUIDSYSTEM : return new F2iConsulting.Fesapi.${FESAPI_PRODML2_3_NS}.FluidSystem(cPtr, owner); case DataObjectName.FRONTIERFEATURE : return new F2iConsulting.Fesapi.${FESAPI_RESQML2_0_1_NS}.FrontierFeature(cPtr, owner); case DataObjectName.GENETICBOUNDARYFEATURE : F2iConsulting.Fesapi.${FESAPI_RESQML2_0_1_NS}.GeneticBoundaryFeature result = new F2iConsulting.Fesapi.${FESAPI_RESQML2_0_1_NS}.GeneticBoundaryFeature(cPtr, owner); @@ -950,7 +950,7 @@ ${COMMENT_END} case DataObjectName.SUBREPRESENTATION : return resqml2_instantiateSubRepresentation(cPtr, owner); case DataObjectName.TECTONICBOUNDARYFEATURE : return new F2iConsulting.Fesapi.${FESAPI_RESQML2_0_1_NS}.TectonicBoundaryFeature(cPtr, owner); case DataObjectName.TIMESERIES : return eml2_instantiateTimeSeries(cPtr, owner); - case DataObjectName.TIMESERIESDATA : return new F2iConsulting.Fesapi.${FESAPI_PRODML2_2_NS}.TimeSeriesData(cPtr, owner); + case DataObjectName.TIMESERIESDATA : return new F2iConsulting.Fesapi.${FESAPI_PRODML2_3_NS}.TimeSeriesData(cPtr, owner); case DataObjectName.TRAJECTORY : return new F2iConsulting.Fesapi.${FESAPI_WITSML2_1_NS}.Trajectory(cPtr, owner); case DataObjectName.TRIANGULATEDSETREPRESENTATION : return resqml2_instantiateTriangulatedSetRepresentation(cPtr, owner); case DataObjectName.TRUNCATEDIJKGRIDREPRESENTATION : return resqml2_instantiateConcreteIjkGridRepresentation(cPtr, owner); diff --git a/cmake/swigJavaInclude.i b/cmake/swigJavaInclude.i index 25e0c3f3e..84a00c31b 100644 --- a/cmake/swigJavaInclude.i +++ b/cmake/swigJavaInclude.i @@ -888,8 +888,8 @@ ${COMMENT_END} ${COMMENT_START} case FLUIDBOUNDARYINTERPRETATION : return new com.f2i_consulting.fesapi.${FESAPI_RESQML2_2_NS}.Resqml22_FluidBoundaryInterpretation(cPtr, owner); ${COMMENT_END} - case FLUIDCHARACTERIZATION : return new com.f2i_consulting.fesapi.${FESAPI_PRODML2_2_NS}.FluidCharacterization(cPtr, owner); - case FLUIDSYSTEM : return new com.f2i_consulting.fesapi.${FESAPI_PRODML2_2_NS}.FluidSystem(cPtr, owner); + case FLUIDCHARACTERIZATION : return new com.f2i_consulting.fesapi.${FESAPI_PRODML2_3_NS}.FluidCharacterization(cPtr, owner); + case FLUIDSYSTEM : return new com.f2i_consulting.fesapi.${FESAPI_PRODML2_3_NS}.FluidSystem(cPtr, owner); case FRONTIERFEATURE : return new com.f2i_consulting.fesapi.${FESAPI_RESQML2_0_1_NS}.Resqml20_FrontierFeature(cPtr, owner); case GENETICBOUNDARYFEATURE : com.f2i_consulting.fesapi.${FESAPI_RESQML2_0_1_NS}.Resqml20_GeneticBoundaryFeature result = new com.f2i_consulting.fesapi.${FESAPI_RESQML2_0_1_NS}.Resqml20_GeneticBoundaryFeature(cPtr, owner); @@ -950,7 +950,7 @@ ${COMMENT_END} case SUBREPRESENTATION : return resqml2_instantiateSubRepresentation(cPtr, owner); case TECTONICBOUNDARYFEATURE : return new com.f2i_consulting.fesapi.${FESAPI_RESQML2_0_1_NS}.Resqml20_TectonicBoundaryFeature(cPtr, owner); case TIMESERIES : return eml2_instantiateTimeSeries(cPtr, owner); - case TIMESERIESDATA : return new com.f2i_consulting.fesapi.${FESAPI_PRODML2_2_NS}.TimeSeriesData(cPtr, owner); + case TIMESERIESDATA : return new com.f2i_consulting.fesapi.${FESAPI_PRODML2_3_NS}.TimeSeriesData(cPtr, owner); case TRAJECTORY : return new com.f2i_consulting.fesapi.${FESAPI_WITSML2_1_NS}.Witsml21_Trajectory(cPtr, owner); case TRIANGULATEDSETREPRESENTATION : return resqml2_instantiateTriangulatedSetRepresentation(cPtr, owner); case TRUNCATEDIJKGRIDREPRESENTATION : return resqml2_instantiateConcreteIjkGridRepresentation(cPtr, owner); diff --git a/cmake/swigPythonInclude.i.in b/cmake/swigPythonInclude.i.in index e14c943b6..7bb653a25 100644 --- a/cmake/swigPythonInclude.i.in +++ b/cmake/swigPythonInclude.i.in @@ -35,7 +35,7 @@ namespace COMMON_NS if (xmlNs == "resqml20") return "${FESAPI_RESQML2_0_1_NS}"; else if (xmlNs == "resqml22") return "${FESAPI_RESQML2_2_NS}"; else if (xmlNs == "witsml21") return "${FESAPI_WITSML2_1_NS}"; - else if (xmlNs == "prodml22") return "${FESAPI_PRODML2_2_NS}"; + else if (xmlNs == "prodml23") return "${FESAPI_PRODML2_3_NS}"; else if (xmlNs == "eml23") return "${FESAPI_EML2_3_NS}"; }(); @@ -76,7 +76,7 @@ namespace EML2_NS if (xmlNs == "resqml20") return "${FESAPI_RESQML2_0_1_NS}"; else if (xmlNs == "resqml22") return "${FESAPI_RESQML2_2_NS}"; else if (xmlNs == "witsml21") return "${FESAPI_WITSML2_1_NS}"; - else if (xmlNs == "prodml22") return "${FESAPI_PRODML2_2_NS}"; + else if (xmlNs == "prodml23") return "${FESAPI_PRODML2_3_NS}"; else if (xmlNs == "eml23") return "${FESAPI_EML2_3_NS}"; }(); diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 174c042ad..81606e2ca 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -2444,7 +2444,7 @@ EXPAND_AS_DEFINED = COMMON_NS \ RESQML2_0_1_NS \ RESQML2_2_NS \ WITSML2_1_NS \ - PRODML2_2_NS \ + PRODML2_3_NS \ EML2_NS \ EML2_0_NS \ EML2_3_NS diff --git a/example/example.cpp b/example/example.cpp index df4032d13..3d20cb2fd 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -125,10 +125,10 @@ under the License. #include "witsml2_1/ChannelSet.h" #include "witsml2_1/Channel.h" -#include "prodml2_2/FluidSystem.h" -#include "prodml2_2/FluidCharacterization.h" -#include "prodml2_2/FrictionTheorySpecification.h" -#include "prodml2_2/TimeSeriesData.h" +#include "prodml2_3/FluidSystem.h" +#include "prodml2_3/FluidCharacterization.h" +#include "prodml2_3/FrictionTheorySpecification.h" +#include "prodml2_3/TimeSeriesData.h" #include "HdfProxyFactoryExample.h" @@ -309,7 +309,7 @@ void serializeWells(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdf RESQML2_NS::DiscreteProperty* discreteProp = repo->createDiscreteProperty(w1i1FrameRep, "61c2917c-2334-4205-824e-d4f4a0cf6d8e", "Wellbore1 Interp1 FrameRep IntervalIndex", 1, gsoap_eml2_3::eml23__IndexableElement::intervals, unitNumberPropType); int8_t unitNumbers[5] = { 0, 1, 2, 3, 4 }; - discreteProp->pushBackInt8Hdf5Array1dOfValues(unitNumbers, 5, hdfProxy, -1); + discreteProp->pushBackArray1dOfValues(unitNumbers, 5, hdfProxy, static_cast(-1)); #if WITH_RESQML2_2 // SeismicWellboreFrameRepresentation RESQML2_NS::SeismicWellboreFrameRepresentation* w1i1SeismicFrameRep = repo->createSeismicWellboreFrameRepresentation( @@ -416,7 +416,7 @@ void serializeGraphicalInformationSet(COMMON_NS::DataObjectRepository * repo, EM RESQML2_NS::DiscreteProperty* discreteProp2 = repo->createDiscreteProperty(twoCellsIjkGrid, "1e2822ef-b6cb-4123-bdf4-c99df84a896f", "Another two faulted sugar cubes cellIndex", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propType1); uint16_t prop2Values[2] = { 0, 1 }; - discreteProp2->pushBackUInt16Hdf5Array3dOfValues(prop2Values, 2, 1, 1, hdfProxy, -1); + discreteProp2->pushBackArray3dOfValues(prop2Values, 2, 1, 1, hdfProxy, (std::numeric_limits::max)()); // ******************** // Continuous color map @@ -442,7 +442,7 @@ void serializeGraphicalInformationSet(COMMON_NS::DataObjectRepository * repo, EM values[fastestIndex + slowestIndex * numPointInFastestDirection] = fastestIndex * (1. / (numPointInFastestDirection - 1)); } } - contColMapContProp->pushBackDoubleHdf5Array2dOfValues(values.get(), numPointInFastestDirection, numPointsInSlowestDirection, hdfProxy); + contColMapContProp->pushBackArray2dOfValues(values.get(), numPointInFastestDirection, numPointsInSlowestDirection, hdfProxy); RESQML2_NS::ContinuousColorMap* contColMap = repo->createContinuousColorMap("a207faa2-963e-48d6-b3ad-53f6c1fc4dd4", "Continuous color map", gsoap_eml2_3::resqml22__InterpolationDomain::rgb, gsoap_eml2_3::resqml22__InterpolationMethod::linear); uint8_t contColMapRgbColors[6] = { 0, 255, 0, 255, 0, 0 }; @@ -747,7 +747,7 @@ void serializeBoundaries(COMMON_NS::DataObjectRepository * repo, EML2_NS::Abstra RESQML2_NS::ContinuousProperty* contProp1 = repo->createContinuousProperty(h1i1SingleGrid2dRep, "fcaccfc7-10cb-4f73-800e-a381642478cb", "Horizon1 Interp1 Grid2dRep Prop1", 2, gsoap_eml2_3::eml23__IndexableElement::nodes, "exoticMeter", propType1); float prop1Values[16] = { 301, 302, 301, 302, 351, 352, 351, 352, 301, 302, 301, 302, 351, 352, 351, 352 }; - contProp1->pushBackFloatHdf5Array2dOfValues(prop1Values, 2, 8, hdfProxy); + contProp1->pushBackArray2dOfValues(prop1Values, 2, 8, hdfProxy); EML2_NS::PropertyKind * propType2 = nullptr; if (repo->getDefaultResqmlVersion() == COMMON_NS::DataObjectRepository::EnergisticsStandard::RESQML2_0_1) { @@ -762,7 +762,7 @@ void serializeBoundaries(COMMON_NS::DataObjectRepository * repo, EML2_NS::Abstra RESQML2_NS::ContinuousProperty* contProp2 = repo->createContinuousProperty(h1i1SingleGrid2dRep, "d3efb337-19f8-4b91-8b4f-3698afe17f01", "Horizon1 Interp1 Grid2dRep Prop2", 1, gsoap_eml2_3::eml23__IndexableElement::nodes, gsoap_resqml2_0_1::resqml20__ResqmlUom::ft, propType2); double prop2Values[8] = { 302, 302, 352, 352, 302, 302, 352, 352 }; - contProp2->pushBackDoubleHdf5Array2dOfValues(prop2Values, 4, 2, hdfProxy); + contProp2->pushBackArray2dOfValues(prop2Values, 4, 2, hdfProxy); } void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfProxy* hdfProxy) @@ -889,8 +889,8 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP ijkgrid432rh->setCellGeometryIsDefinedFlags(enabledCells32rh); // 4*3*2 explicit grid with gap layer - bool kgap[1] = { true }; - RESQML2_NS::IjkGridExplicitRepresentation* ijkgrid432gap = repo->createIjkGridExplicitRepresentation("c14755a5-e3b3-4272-99e5-fc20993b79a0", "Four by Three by Two with gap layer", 4, 3, 2, kgap); + bool kgap = true; + RESQML2_NS::IjkGridExplicitRepresentation* ijkgrid432gap = repo->createIjkGridExplicitRepresentation("c14755a5-e3b3-4272-99e5-fc20993b79a0", "Four by Three by Two with gap layer", 4, 3, 2, &kgap); double nodes432gap[288] = { 0, 150, 300, 150, 150, 300, 375, 150, 300, 550, 150, 350, 700, 150, 350, //IJ0K0 0, 100, 300, 150, 100, 300, 375, 100, 300, 550, 100, 350, 700, 100, 350, //IJ1K0 @@ -904,11 +904,11 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP 0, 0, 360, 150, 0, 360, 375, 0, 360, 550, 0, 410, 700, 0, 410, //IJ3K1 375, 0, 410, 375, 50, 410, 375, 100, 410, 375, 150, 410, // SPLIT K1 // K Gap Layer - 0, 150, 400, 150, 150, 400, 375, 150, 400, 550, 150, 450, 700, 150, 450, //IJ0K1 - 0, 100, 400, 150, 100, 400, 375, 100, 400, 550, 100, 450, 700, 100, 450, //IJ1K1 - 0, 50, 400, 150, 50, 400, 375, 50, 400, 550, 50, 450, 700, 50, 450, //IJ2K1 - 0, 0, 400, 150, 0, 400, 375, 0, 400, 550, 0, 450, 700, 0, 450, //IJ3K1 - 375, 0, 450, 375, 50, 450, 375, 100, 450, 375, 150, 450, // SPLIT K1 + 0, 150, 400, 150, 150, 400, 375, 150, 400, 550, 150, 450, 700, 150, 450, //IJ0K2 + 0, 100, 400, 150, 100, 400, 375, 100, 400, 550, 100, 450, 700, 100, 450, //IJ1K2 + 0, 50, 400, 150, 50, 400, 375, 50, 400, 550, 50, 450, 700, 50, 450, //IJ2K2 + 0, 0, 400, 150, 0, 400, 375, 0, 400, 550, 0, 450, 700, 0, 450, //IJ3K2 + 375, 0, 450, 375, 50, 450, 375, 100, 450, 375, 150, 450, // SPLIT K2 0, 150, 500, 150, 150, 500, 375, 150, 500, 550, 150, 550, 700, 150, 550, //IJ0K3 0, 100, 500, 150, 100, 500, 375, 100, 500, 550, 100, 550, 700, 100, 550, //IJ1K3 @@ -921,11 +921,11 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP unsigned int splitCoordinateLineColumns432gap[6] = { 10, 10, 6, 6, 2, 2 }; ijkgrid432gap->setGeometryAsCoordinateLineNodes(gsoap_resqml2_0_1::resqml20__PillarShape::vertical, gsoap_resqml2_0_1::resqml20__KDirection::down, true, nodes432gap, hdfProxy, 4, pillarOfCoordinateLine432gap, splitCoordinateLineColumnCumulativeCount432gap, splitCoordinateLineColumns432gap); - unsigned char enabledCells32gap[24] = { + uint8_t enabledCells432gap[24] = { 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }; - ijkgrid432gap->setCellGeometryIsDefinedFlags(enabledCells32gap); + ijkgrid432gap->setCellGeometryIsDefinedFlags(enabledCells432gap); /************** Subrepresentations @@ -1021,12 +1021,12 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP #endif discreteProp1 = repo->createDiscreteProperty(twoCellsIjkGrid, "ee0857fe-23ad-4dd9-8300-21fa2e9fb572", "Two faulted sugar cubes cellIndex", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propType1); - unsigned short prop1Values[2] = { 0, 1 }; - discreteProp1->pushBackUInt16Hdf5Array3dOfValues(prop1Values, 2, 1, 1, hdfProxy, 1111); + uint16_t prop1Values[2] = { 0, 1 }; + discreteProp1->pushBackArray3dOfValues(prop1Values, 2, 1, 1, hdfProxy, static_cast(1111)); RESQML2_NS::DiscreteProperty* discreteProp2 = repo->createDiscreteProperty(twoCellsIjkGrid, "da73937c-2c60-4e10-8917-5154fde4ded5", "Two faulted sugar cubes other cellIndex", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propType1); int64_t prop2Values[2] = { 10, 11 }; - discreteProp2->pushBackInt64Hdf5Array3dOfValues(prop2Values, 2, 1, 1, hdfProxy, 1111); + discreteProp2->pushBackArray3dOfValues(prop2Values, 2, 1, 1, hdfProxy, static_cast(1111)); RESQML2_0_1_NS::PropertySet* parentPropSet = repo->createPropertySet("3135a6c1-1204-4c30-a0ec-c9357ec13510", "Testing parent property set", false, true, gsoap_resqml2_0_1::resqml20__TimeSetKind::not_x0020a_x0020time_x0020set); RESQML2_0_1_NS::PropertySet* childPropSet = repo->createPropertySet("1d4b4342-288d-47c1-9572-9f330f8e632a", "Testing child property set", false, true,gsoap_resqml2_0_1::resqml20__TimeSetKind::not_x0020a_x0020time_x0020set); @@ -1036,8 +1036,9 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP RESQML2_NS::DiscreteProperty* discreteProp1OnIjkgridParametric = repo->createDiscreteProperty(ijkgridParametric, "eb3dbf6c-5745-4e41-9d09-672f6fbab414", "Four sugar cubes cellIndex", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propType1); - unsigned short prop1ValuesOnIjkgridParametric[4] = { 0, 1, 2, 3 }; - discreteProp1OnIjkgridParametric->pushBackUInt16Hdf5Array3dOfValues(prop1ValuesOnIjkgridParametric, 2, 1, 2, hdfProxy, 1111, 0, 3); + uint16_t prop1ValuesOnIjkgridParametric[4] = { 0, 1, 2, 3 }; + COMMON_NS::NumberArrayStatistics stats(prop1ValuesOnIjkgridParametric, 4, 1, 1111); + discreteProp1OnIjkgridParametric->pushBackArray3dOfValuesPlusStatistics(prop1ValuesOnIjkgridParametric, 2, 1, 2, stats, hdfProxy); //Move this prop to another same ninjnk ijk grid discreteProp1OnIjkgridParametric->setRepresentation(ijkgridParametricNotSameLineKind); @@ -1046,7 +1047,7 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP int64_t discreteProp432Values[24] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23 }; //hdfProxy->setMaxChunkSize(192/2); // Create two chunks - discreteProp432->pushBackInt64Hdf5Array3dOfValues(discreteProp432Values, 4, 3, 2, hdfProxy, 1111); + discreteProp432->pushBackArray3dOfValues(discreteProp432Values, 4, 3, 2, hdfProxy, static_cast(1111)); /************** Continuous Properties @@ -1055,13 +1056,13 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP RESQML2_NS::ContinuousProperty* continuousPropOnIjkgridParametric = repo->createContinuousProperty(ijkgridParametric, "a31d7376-1a2a-47f3-9586-dd74ac13d820", "Continuous prop with nan", 1, gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); double continuousPropValuesOnIjkgridParametric[4] = { -1.1, 0.0, std::numeric_limits::quiet_NaN(), 2.2 }; - continuousPropOnIjkgridParametric->pushBackDoubleHdf5Array3dOfValues(continuousPropValuesOnIjkgridParametric, 2, 1, 2); + continuousPropOnIjkgridParametric->pushBackArray3dOfValues(continuousPropValuesOnIjkgridParametric, 2, 1, 2); } /************** Time Series ***************/ - EML2_NS::TimeSeries * timeSeries = repo->createTimeSeries("1187d8a0-fa3e-11e5-ac3a-0002a5d5c51b", "Testing time series"); + EML2_NS::TimeSeries* timeSeries1 = repo->createTimeSeries("1187d8a0-fa3e-11e5-ac3a-0002a5d5c51b", "Testing time series 1"); tm timeStruct; timeStruct.tm_hour = 15; timeStruct.tm_min = 2; @@ -1071,32 +1072,67 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP timeStruct.tm_year = 0; timeStruct.tm_isdst = -1; mktime(&timeStruct); - timeSeries->pushBackTimestamp(timeStruct); - timeSeries->pushBackTimestamp(1409753895); - timeSeries->pushBackTimestamp(1441289895); + timeSeries1->pushBackTimestamp(timeStruct); + timeSeries1->pushBackTimestamp(1409753895); + timeSeries1->pushBackTimestamp(1441289895); + + EML2_NS::TimeSeries* timeSeries2 = repo->createTimeSeries("49207072-563b-404a-9707-9a9b70168d33", "Testing time series 2"); + timeSeries2->pushBackTimestamp(1420066800); + timeSeries2->pushBackTimestamp(1577833200); + timeSeries2->pushBackTimestamp(1735686000); + timeSeries2->pushBackTimestamp(1893452400); + + if (repo->getDefaultResqmlVersion() == COMMON_NS::DataObjectRepository::EnergisticsStandard::RESQML2_0_1) { // RESQML2.0 forces to export values at each timestamp of the whole time series in a single property RESQML2_NS::ContinuousProperty* continuousPropTime0 = repo->createContinuousProperty(twoCellsIjkGrid, "18027a00-fa3e-11e5-8255-0002a5d5c51b", "Time Series Property", 1, gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); - continuousPropTime0->setTimeSeries(timeSeries); - continuousPropTime0->setSingleTimestamp(timeSeries->getTimestamp(0)); + continuousPropTime0->setTimeSeries(timeSeries1); + continuousPropTime0->setSingleTimestamp(timeSeries1->getTimestamp(0)); double valuesTime0[2] = { 0, 1 }; - continuousPropTime0->pushBackDoubleHdf5Array3dOfValues(valuesTime0, 2, 1, 1, hdfProxy); + continuousPropTime0->pushBackArray3dOfValues(valuesTime0, 2, 1, 1, hdfProxy); RESQML2_NS::ContinuousProperty* continuousPropTime1 = repo->createContinuousProperty(twoCellsIjkGrid, "1ba54340-fa3e-11e5-9534-0002a5d5c51b", "Time Series Property", 1, gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); - continuousPropTime1->setTimeSeries(timeSeries); + continuousPropTime1->setTimeSeries(timeSeries1); continuousPropTime1->setSingleTimestamp(1409753895); double valuesTime1[2] = { 2, 3 }; - continuousPropTime1->pushBackDoubleHdf5Array3dOfValues(valuesTime1, 2, 1, 1, hdfProxy); + continuousPropTime1->pushBackArray3dOfValues(valuesTime1, 2, 1, 1, hdfProxy); RESQML2_NS::ContinuousProperty* continuousPropTime2 = repo->createContinuousProperty(twoCellsIjkGrid, "203db720-fa3e-11e5-bf9d-0002a5d5c51b", "Time Series Property", 1, gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); - continuousPropTime2->setTimeSeries(timeSeries); + continuousPropTime2->setTimeSeries(timeSeries1); continuousPropTime2->setSingleTimestamp(1441289895); double valuesTime2[2] = { 3, 4 }; - continuousPropTime2->pushBackDoubleHdf5Array3dOfValues(valuesTime2, 2, 1, 1, hdfProxy); + continuousPropTime2->pushBackArray3dOfValues(valuesTime2, 2, 1, 1, hdfProxy); + + + + RESQML2_NS::ContinuousProperty* continuousPropTime0_2 = repo->createContinuousProperty(twoCellsIjkGrid, "", "Time Series Property 2", 1, + gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); + continuousPropTime0_2->setTimeSeries(timeSeries2); + continuousPropTime0_2->setSingleTimestamp(timeSeries2->getTimestamp(0)); + continuousPropTime0_2->pushBackArray3dOfValues(valuesTime0, 2, 1, 1, hdfProxy); + + RESQML2_NS::ContinuousProperty* continuousPropTime1_2 = repo->createContinuousProperty(twoCellsIjkGrid, "", "Time Series Property 2", 1, + gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); + continuousPropTime1_2->setTimeSeries(timeSeries2); + continuousPropTime1_2->setSingleTimestamp(timeSeries2->getTimestamp(1)); + continuousPropTime1_2->pushBackArray3dOfValues(valuesTime1, 2, 1, 1, hdfProxy); + + RESQML2_NS::ContinuousProperty* continuousPropTime2_2 = repo->createContinuousProperty(twoCellsIjkGrid, "", "Time Series Property 2", 1, + gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); + continuousPropTime2_2->setTimeSeries(timeSeries2); + continuousPropTime2_2->setSingleTimestamp(1735686000); + continuousPropTime2_2->pushBackArray3dOfValues(valuesTime2, 2, 1, 1, hdfProxy); + + RESQML2_NS::ContinuousProperty* continuousPropTime3_2 = repo->createContinuousProperty(twoCellsIjkGrid, "", "Time Series Property 2", 1, + gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind::length); + continuousPropTime3_2->setTimeSeries(timeSeries2); + continuousPropTime3_2->setSingleTimestamp(timeSeries2->getTimestamp(3)); + double valuesTime3[2] = { 4, 5 }; + continuousPropTime3_2->pushBackArray3dOfValues(valuesTime3, 2, 1, 1, hdfProxy); } #if WITH_RESQML2_2 else { @@ -1104,11 +1140,21 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP RESQML2_NS::ContinuousProperty* dynamicContinuousProp = repo->createContinuousProperty(twoCellsIjkGrid, "18027a00-fa3e-11e5-8255-0002a5d5c51b", "Time Series Property", 1, gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, pwls3Length); - dynamicContinuousProp->setTimeSeries(timeSeries); + dynamicContinuousProp->setTimeSeries(timeSeries1); double valuesTime[6] = { 0, 1, 2, 3, 3, 4 }; uint64_t dimensions[4] = { 2, 1, 1, 3 }; - dynamicContinuousProp->pushBackDoubleHdf5ArrayOfValues( + dynamicContinuousProp->pushBackArrayOfValues( valuesTime, dimensions, 4, hdfProxy); + + + RESQML2_NS::ContinuousProperty* dynamicContinuousProp2 = repo->createContinuousProperty(twoCellsIjkGrid, "", "Time Series Property 2", 1, + gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, pwls3Length); + + dynamicContinuousProp2->setTimeSeries(timeSeries2); + double valuesTime2[8] = { 0, 1, 2, 3, 3, 4, 4, 5 }; + uint64_t dimensions2[4] = { 2, 1, 1, 4 }; + dynamicContinuousProp2->pushBackArrayOfValues( + valuesTime2, dimensions2, 4, hdfProxy); } #endif @@ -1121,7 +1167,7 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP stringTableLookup->addValue("Cell index 1", 1); RESQML2_NS::CategoricalProperty* categoricalProp = repo->createCategoricalProperty(twoCellsIjkGrid, "23b85de7-639c-48a5-a80d-e0fe76da416a", "Two faulted sugar cubes cellIndex (categorical)", 1, gsoap_eml2_3::eml23__IndexableElement::cells, stringTableLookup, propType1); - categoricalProp->pushBackUInt16Hdf5Array3dOfValues(prop1Values, 2, 1, 1, hdfProxy, 1111); + categoricalProp->pushBackArray3dOfValues(prop1Values, 2, 1, 1, hdfProxy); #endif /************** Points Properties @@ -1160,7 +1206,7 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::m, pwls3Length); } double continuousProp1Values[6] = { 0, 1, 2, 3, 4, 5 }; - continuousProp1->pushBackDoubleHdf5Array1dOfValues(continuousProp1Values, 6, hdfProxy); + continuousProp1->pushBackArray1dOfValues(continuousProp1Values, 6, hdfProxy); #ifndef WITH_RESQML2_2 // sub rep of a partial unstructured grid RESQML2_NS::SubRepresentation * subRepOfUnstructuredGrid = repo->createSubRepresentation("6b48c8d0-d60e-42b5-994c-2d4d4f3d0765", "Subrep On Partial grid"); @@ -1203,7 +1249,7 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP // Fill the property double propValues[2] = { 12.3, 45.6 }; - unstructuredGridProp->pushBackDoubleHdf5Array1dOfValues(propValues, 2); + unstructuredGridProp->pushBackArray1dOfValues(propValues, 2); } #if WITH_RESQML2_2 else { @@ -1213,7 +1259,7 @@ void serializeGrid(COMMON_NS::DataObjectRepository * repo, EML2_NS::AbstractHdfP // Fill the property double propValues[2] = { 12.3, 45.6 }; - unstructuredGridProp->pushBackDoubleHdf5Array1dOfValues(propValues, 2); + unstructuredGridProp->pushBackArray1dOfValues(propValues, 2); } #endif } @@ -2124,15 +2170,15 @@ void serializeRockFluidOrganization(COMMON_NS::DataObjectRepository & repo, EML2 */ } -PRODML2_2_NS::FluidSystem* serializeFluidSystem(COMMON_NS::DataObjectRepository & repo) +PRODML2_3_NS::FluidSystem* serializeFluidSystem(COMMON_NS::DataObjectRepository & repo) { - PRODML2_2_NS::FluidSystem* fluidSystem = repo.createFluidSystem("e8ae6cf8-c4a4-40bf-a3c7-5bf5d0a5b1dd", "Fluid system Region 1", + PRODML2_3_NS::FluidSystem* fluidSystem = repo.createFluidSystem("e8ae6cf8-c4a4-40bf-a3c7-5bf5d0a5b1dd", "Fluid system Region 1", std::numeric_limits::quiet_NaN(), gsoap_eml2_3::eml23__ThermodynamicTemperatureUom::degF, std::numeric_limits::quiet_NaN(), gsoap_eml2_3::eml23__PressureUom::psi, - gsoap_eml2_3::prodml22__ReservoirFluidKind::black_x0020oil, std::numeric_limits::quiet_NaN(), gsoap_eml2_3::eml23__VolumePerVolumeUom::ft3_x002fbbl); + gsoap_eml2_3::prodml23__ReservoirFluidKind::black_x0020oil, std::numeric_limits::quiet_NaN(), gsoap_eml2_3::eml23__VolumePerVolumeUom::ft3_x002fbbl); - fluidSystem->setPhasesPresent(gsoap_eml2_3::prodml22__PhasePresent::gas_x0020and_x0020oil_x0020and_x0020water); + fluidSystem->setPhasesPresent(gsoap_eml2_3::prodml23__PhasePresent::gas_x0020and_x0020oil_x0020and_x0020water); - //fluidSystem->setReservoirLifeCycleState(gsoap_eml2_3::prodml22__ReservoirLifeCycleState__primary_x0020production); + //fluidSystem->setReservoirLifeCycleState(gsoap_eml2_3::prodml23__ReservoirLifeCycleState__primary_x0020production); fluidSystem->setStockTankOilAPIGravity((141.5/0.8989209)-131.5, gsoap_eml2_3::eml23__APIGravityUom::dAPI); /* fluidSystem->setNaturalGasGasGravity(0.8); @@ -2144,18 +2190,18 @@ PRODML2_2_NS::FluidSystem* serializeFluidSystem(COMMON_NS::DataObjectRepository return fluidSystem; } -void serializeOilFluidCharacCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_2_NS::FluidSystem* fluidSystem = nullptr) +void serializeOilFluidCharacCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_3_NS::FluidSystem* fluidSystem = nullptr) { - PRODML2_2_NS::FluidCharacterization* oilFluidCharac = repo.createFluidCharacterization("656aa27f-5373-4c7f-9469-a57890e2b5d8", "Oil Fluid Characterization"); + PRODML2_3_NS::FluidCharacterization* oilFluidCharac = repo.createFluidCharacterization("656aa27f-5373-4c7f-9469-a57890e2b5d8", "Oil Fluid Characterization"); oilFluidCharac->setRockFluidUnit(oilColumnInterp); oilFluidCharac->pushBackModel(); - oilFluidCharac->pushBackParameter(0, 882, gsoap_eml2_3::eml23__UnitOfMeasure::kg_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Density, gsoap_eml2_3::prodml22__ThermodynamicPhase::oleic); + oilFluidCharac->pushBackParameter(0, 882, gsoap_eml2_3::eml23__UnitOfMeasure::kg_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Density, gsoap_eml2_3::prodml23__ThermodynamicPhase::oleic); // Black Oil Variation with Depth oilFluidCharac->pushBackTableFormat(); oilFluidCharac->pushBackTableFormatColumn(0, "m", "Depth from MSL"); - oilFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml22__OutputFluidProperty::Saturation_x0020Pressure); + oilFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml23__OutputFluidProperty::Saturation_x0020Pressure); oilFluidCharac->pushBackTable(0, "Black Oil Variation with Depth", std::to_string(oilFluidCharac->getTableFormatCount() - 1)); oilFluidCharac->pushBackTableRow(0, 0, { 2600, 333.25 }); @@ -2172,10 +2218,10 @@ void serializeOilFluidCharacCharacterization(COMMON_NS::DataObjectRepository & r // Saturated Oil Table oilFluidCharac->pushBackTableFormat(); - oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml22__OutputFluidProperty::Pressure); - oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Formation_x0020Volume_x0020Factor); - oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml22__OutputFluidProperty::Viscosity); - oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Solution_x0020GOR); + oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml23__OutputFluidProperty::Pressure); + oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Formation_x0020Volume_x0020Factor); + oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml23__OutputFluidProperty::Viscosity); + oilFluidCharac->pushBackTableFormatColumn(1, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Solution_x0020GOR); oilFluidCharac->pushBackTable(0, "Saturated Oil Table", std::to_string(oilFluidCharac->getTableFormatCount() - 1)); oilFluidCharac->pushBackTableRow(0, 1, { 268.5, 1.51746, 0.464, 156.9 }, true); @@ -2187,10 +2233,10 @@ void serializeOilFluidCharacCharacterization(COMMON_NS::DataObjectRepository & r // Undersaturated Oil Table oilFluidCharac->pushBackTableFormat(); - oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml22__OutputFluidProperty::Saturation_x0020Pressure); - oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml22__OutputFluidProperty::Pressure); - oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Formation_x0020Volume_x0020Factor); - oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml22__OutputFluidProperty::Viscosity); + oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml23__OutputFluidProperty::Saturation_x0020Pressure); + oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml23__OutputFluidProperty::Pressure); + oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Formation_x0020Volume_x0020Factor); + oilFluidCharac->pushBackTableFormatColumn(2, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml23__OutputFluidProperty::Viscosity); oilFluidCharac->pushBackTable(0, "Undersaturated Oil Table", std::to_string(oilFluidCharac->getTableFormatCount() - 1)); oilFluidCharac->pushBackTableRow(0, 2, { 50, 100, 1.16296, 1.31 }, false); @@ -2262,17 +2308,17 @@ void serializeOilFluidCharacCharacterization(COMMON_NS::DataObjectRepository & r } } -void serializeGasFluidCharacCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_2_NS::FluidSystem* fluidSystem = nullptr) +void serializeGasFluidCharacCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_3_NS::FluidSystem* fluidSystem = nullptr) { - PRODML2_2_NS::FluidCharacterization* gasFluidCharac = repo.createFluidCharacterization("5ea0eeb2-a287-4a2e-9362-1d2491e491b2", "Gas Fluid Characterization"); + PRODML2_3_NS::FluidCharacterization* gasFluidCharac = repo.createFluidCharacterization("5ea0eeb2-a287-4a2e-9362-1d2491e491b2", "Gas Fluid Characterization"); gasFluidCharac->setRockFluidUnit(gasCapInterp); gasFluidCharac->pushBackModel(); // Saturated Gas Table gasFluidCharac->pushBackTableFormat(); - gasFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml22__OutputFluidProperty::Pressure); - gasFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Formation_x0020Volume_x0020Factor); - gasFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml22__OutputFluidProperty::Viscosity); + gasFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml23__OutputFluidProperty::Pressure); + gasFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Formation_x0020Volume_x0020Factor); + gasFluidCharac->pushBackTableFormatColumn(0, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml23__OutputFluidProperty::Viscosity); gasFluidCharac->pushBackTable(0, "Saturated Gas Table", std::to_string(gasFluidCharac->getTableFormatCount() - 1)); gasFluidCharac->pushBackTableRow(0, 0, { 350, 0.003929, 0.034856 }, true); @@ -2289,43 +2335,43 @@ void serializeGasFluidCharacCharacterization(COMMON_NS::DataObjectRepository & r } } -void serializeWaterFluidCharacCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_2_NS::FluidSystem* fluidSystem = nullptr) +void serializeWaterFluidCharacCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_3_NS::FluidSystem* fluidSystem = nullptr) { - PRODML2_2_NS::FluidCharacterization* waterFluidCharac = repo.createFluidCharacterization("8bea1d3f-9599-4a45-b88c-8196aef3f397", "Water Fluid Characterization"); + PRODML2_3_NS::FluidCharacterization* waterFluidCharac = repo.createFluidCharacterization("8bea1d3f-9599-4a45-b88c-8196aef3f397", "Water Fluid Characterization"); waterFluidCharac->setRockFluidUnit(aquiferInterp); waterFluidCharac->pushBackModel(); - waterFluidCharac->pushBackParameter(0, 1101.3, gsoap_eml2_3::eml23__UnitOfMeasure::kg_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Density, gsoap_eml2_3::prodml22__ThermodynamicPhase::aqueous); - waterFluidCharac->pushBackParameter(0, 313000, gsoap_eml2_3::eml23__UnitOfMeasure::_1_x002fbar, gsoap_eml2_3::prodml22__OutputFluidProperty::Compressibility, gsoap_eml2_3::prodml22__ThermodynamicPhase::aqueous); - waterFluidCharac->pushBackParameter(0, 0.38509, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml22__OutputFluidProperty::Viscosity, gsoap_eml2_3::prodml22__ThermodynamicPhase::aqueous); - waterFluidCharac->pushBackParameter(0, 1.03382, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml22__OutputFluidProperty::Formation_x0020Volume_x0020Factor, gsoap_eml2_3::prodml22__ThermodynamicPhase::aqueous); - waterFluidCharac->pushBackParameter(0, 978000, gsoap_eml2_3::eml23__UnitOfMeasure::_1_x002fbar, gsoap_eml2_3::prodml22__OutputFluidProperty::Viscosity_x0020Compressibility, gsoap_eml2_3::prodml22__ThermodynamicPhase::aqueous); - waterFluidCharac->pushBackParameter(0, 268.5, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml22__OutputFluidProperty::Pressure, gsoap_eml2_3::prodml22__ThermodynamicPhase::aqueous); + waterFluidCharac->pushBackParameter(0, 1101.3, gsoap_eml2_3::eml23__UnitOfMeasure::kg_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Density, gsoap_eml2_3::prodml23__ThermodynamicPhase::aqueous); + waterFluidCharac->pushBackParameter(0, 313000, gsoap_eml2_3::eml23__UnitOfMeasure::_1_x002fbar, gsoap_eml2_3::prodml23__OutputFluidProperty::Compressibility, gsoap_eml2_3::prodml23__ThermodynamicPhase::aqueous); + waterFluidCharac->pushBackParameter(0, 0.38509, gsoap_eml2_3::eml23__UnitOfMeasure::cP, gsoap_eml2_3::prodml23__OutputFluidProperty::Viscosity, gsoap_eml2_3::prodml23__ThermodynamicPhase::aqueous); + waterFluidCharac->pushBackParameter(0, 1.03382, gsoap_eml2_3::eml23__UnitOfMeasure::m3_x002fm3, gsoap_eml2_3::prodml23__OutputFluidProperty::Formation_x0020Volume_x0020Factor, gsoap_eml2_3::prodml23__ThermodynamicPhase::aqueous); + waterFluidCharac->pushBackParameter(0, 978000, gsoap_eml2_3::eml23__UnitOfMeasure::_1_x002fbar, gsoap_eml2_3::prodml23__OutputFluidProperty::Viscosity_x0020Compressibility, gsoap_eml2_3::prodml23__ThermodynamicPhase::aqueous); + waterFluidCharac->pushBackParameter(0, 268.5, gsoap_eml2_3::eml23__UnitOfMeasure::bar, gsoap_eml2_3::prodml23__OutputFluidProperty::Pressure, gsoap_eml2_3::prodml23__ThermodynamicPhase::aqueous); if (fluidSystem != nullptr) { waterFluidCharac->setFluidSystem(fluidSystem); } } -void serializeTabularFluidCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_2_NS::FluidSystem* fluidSystem = nullptr) +void serializeTabularFluidCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_3_NS::FluidSystem* fluidSystem = nullptr) { serializeOilFluidCharacCharacterization(repo, fluidSystem); serializeGasFluidCharacCharacterization(repo, fluidSystem); serializeWaterFluidCharacCharacterization(repo, fluidSystem); } -void serializeCompositionalFluidCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_2_NS::FluidSystem* fluidSystem = nullptr) +void serializeCompositionalFluidCharacterization(COMMON_NS::DataObjectRepository & repo, PRODML2_3_NS::FluidSystem* fluidSystem = nullptr) { - PRODML2_2_NS::FluidCharacterization* fluidCharac = repo.createFluidCharacterization("6f5f6146-6f8b-4222-b322-9dbef1e7e4cf", "my compositional Fluid Characterization"); + PRODML2_3_NS::FluidCharacterization* fluidCharac = repo.createFluidCharacterization("6f5f6146-6f8b-4222-b322-9dbef1e7e4cf", "my compositional Fluid Characterization"); fluidCharac->pushBackFormationWater("h2o"); fluidCharac->setFormationWaterSpecificGravity(0, 1.02); fluidCharac->setFormationWaterSalinity(0, 80000, gsoap_eml2_3::eml23__MassPerMassUom::ppm); - fluidCharac->pushBackPureFluidComponent("c1", gsoap_eml2_3::prodml22__PureComponentKind::c1, false); + fluidCharac->pushBackPureFluidComponent("c1", gsoap_eml2_3::prodml23__PureComponentKind::c1, false); fluidCharac->setPureFluidComponentMolecularWeight(0, 16.04, gsoap_eml2_3::eml23__MolecularWeightUom::g_x002fmol); - fluidCharac->pushBackPseudoFluidComponent("c2-3", gsoap_eml2_3::prodml22__PseudoComponentKind::c2_c4_x002bn2); + fluidCharac->pushBackPseudoFluidComponent("c2-3", gsoap_eml2_3::prodml23__PseudoComponentKind::c2_c4_x002bn2); fluidCharac->setPseudoFluidComponentStartingCarbonNumber(0, 2); fluidCharac->setPseudoFluidComponentEndingCarbonNumber(0, 3); @@ -2333,10 +2379,10 @@ void serializeCompositionalFluidCharacterization(COMMON_NS::DataObjectRepository fluidCharac->setModelName(0, "F2I Good Oil No. 4 EOS Demonstration"); fluidCharac->setModelReferenceTemperature(0, 60, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom::degF); - PRODML2_2_NS::PvtSpecification* spec = fluidCharac->initModelSpecification(0, PRODML2_2_NS::FluidCharacterization::SrkEos); - PRODML2_2_NS::CompositionalSpecification* srkEosSpec = dynamic_cast(spec); - srkEosSpec->pushBackCoefficient(1, gsoap_eml2_3::prodml22__PvtModelParameterKind::a1); - srkEosSpec->setMixingRule(gsoap_eml2_3::prodml22__MixingRule::classical); + PRODML2_3_NS::PvtSpecification* spec = fluidCharac->initModelSpecification(0, PRODML2_3_NS::FluidCharacterization::SrkEos); + PRODML2_3_NS::CompositionalSpecification* srkEosSpec = dynamic_cast(spec); + srkEosSpec->pushBackCoefficient(1, gsoap_eml2_3::prodml23__PvtModelParameterKind::a1); + srkEosSpec->setMixingRule(gsoap_eml2_3::prodml23__MixingRule::classical); srkEosSpec->pushBackFluidComponentProperty("h2o"); srkEosSpec->pushBackFluidComponentProperty("c1"); srkEosSpec->pushBackFluidComponentProperty("c2-3"); @@ -2352,20 +2398,20 @@ void serializeCompositionalFluidCharacterization(COMMON_NS::DataObjectRepository void serializeTimeSeriesData(COMMON_NS::DataObjectRepository & repo) { - PRODML2_2_NS::TimeSeriesData* timeSeriesData = repo.createTimeSeriesData("25d2e0d8-dffa-414d-b7cd-f871cb436781", "my Time Series Data"); + PRODML2_3_NS::TimeSeriesData* timeSeriesData = repo.createTimeSeriesData("25d2e0d8-dffa-414d-b7cd-f871cb436781", "my Time Series Data"); - timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword::asset_x0020identifier, "prodml://f2i-consulting.com/manifold(HDR01)"); - timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword::flow, "production"); - timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword::product, "oil"); - timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword::qualifier, "measured"); + timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword::asset_x0020identifier, "prodml://f2i-consulting.com/manifold(HDR01)"); + timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword::flow, "production"); + timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword::product, "oil"); + timeSeriesData->pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword::qualifier, "measured"); timeSeriesData->setUom(gsoap_resqml2_0_1::resqml20__ResqmlUom::psi); timeSeriesData->setMeasureClass(gsoap_eml2_3::eml23__MeasureClass::pressure); - timeSeriesData->pushBackDoubleValue(747.7316, 1328706000, gsoap_eml2_3::prodml22__ValueStatus::frozen); - timeSeriesData->pushBackDoubleValue(747.7316, 1328706060, gsoap_eml2_3::prodml22__ValueStatus::frozen); - timeSeriesData->pushBackDoubleValue(747.7316, 1328706120, gsoap_eml2_3::prodml22__ValueStatus::frozen); - timeSeriesData->pushBackDoubleValue(747.7316, 1328706180, gsoap_eml2_3::prodml22__ValueStatus::frozen); + timeSeriesData->pushBackDoubleValue(747.7316, 1328706000, gsoap_eml2_3::prodml23__ValueStatus::frozen); + timeSeriesData->pushBackDoubleValue(747.7316, 1328706060, gsoap_eml2_3::prodml23__ValueStatus::frozen); + timeSeriesData->pushBackDoubleValue(747.7316, 1328706120, gsoap_eml2_3::prodml23__ValueStatus::frozen); + timeSeriesData->pushBackDoubleValue(747.7316, 1328706180, gsoap_eml2_3::prodml23__ValueStatus::frozen); timeSeriesData->pushBackDoubleValue(746.7316, 1328706241); timeSeriesData->pushBackDoubleValue(745.7316, 1328706242); timeSeriesData->pushBackDoubleValue(746.003, 1328706243); @@ -2503,7 +2549,7 @@ bool serialize(const string& filePath) serializeActivities(&repo); serializeRepresentationSetRepresentation(&repo, hdfProxy); serializeRockFluidOrganization(repo, hdfProxy); - PRODML2_2_NS::FluidSystem* fluidSystem = serializeFluidSystem(repo); + PRODML2_3_NS::FluidSystem* fluidSystem = serializeFluidSystem(repo); serializeTabularFluidCharacterization(repo, fluidSystem); serializeCompositionalFluidCharacterization(repo); serializeTimeSeriesData(repo); @@ -2613,7 +2659,7 @@ void showAllProperties(RESQML2_NS::AbstractRepresentation const * rep, bool* ena cerr << "\tERROR !!!!! Only categorical or Discrete properties should be associated to an integer dataset." << endl; cout << "\tTrying to convert.." << endl; std::unique_ptr values(new double[valueCount]); - static_cast(prop)->getDoubleValuesOfPatch(0, values.get()); + static_cast(prop)->getArrayOfValuesOfPatch(0, values.get()); std::cout << "\tFirst value is " << values[0] << endl; std::cout << "\tSecond value is " << values[1] << endl; cout << "\tPress enter to continue..." << endl; @@ -2643,7 +2689,7 @@ void showAllProperties(RESQML2_NS::AbstractRepresentation const * rep, bool* ena } } std::unique_ptr values(new int64_t[valueCount]); - static_cast(prop)->getInt64ValuesOfPatch(0, values.get()); + static_cast(prop)->getArrayOfValuesOfPatch(0, values.get()); std::cout << "\tFirst value is " << values[0] << endl; std::cout << "\tSecond value is " << values[1] << endl; } @@ -2659,11 +2705,11 @@ void showAllProperties(RESQML2_NS::AbstractRepresentation const * rep, bool* ena std::cout << "\tMax value is " << maxValue << endl; std::cout << "\tMin value is " << minValue << endl; std::unique_ptr values(new double[valueCount]); - continuousProp->getDoubleValuesOfPatch(0, values.get()); + continuousProp->getArrayOfValuesOfPatch(0, values.get()); std::cout << "\tFirst value is " << values[0] << endl; std::cout << "\tSecond value is " << values[1] << endl; - if (continuousProp->getElementCountPerValue() == 1) { + if (continuousProp->getValueCountPerIndexableElement() == 1) { for (size_t cellIndex = 0; cellIndex < valueCount; ++cellIndex) { if (enabledCells != nullptr && !enabledCells[cellIndex]) { continue; @@ -2694,7 +2740,7 @@ void showAllProperties(RESQML2_NS::AbstractRepresentation const * rep, bool* ena std::cout << stl->getKeyAtIndex(itemIndex) << "->" << stl->getValueAtIndex(itemIndex) << endl; } std::unique_ptr values(new double[valueCount]); - static_cast(prop)->getDoubleValuesOfPatch(0, values.get()); + static_cast(prop)->getArrayOfValuesOfPatch(0, values.get()); std::cout << "\tFirst value is " << values[0] << endl; std::cout << "\tSecond value is " << values[1] << endl; } @@ -2702,7 +2748,7 @@ void showAllProperties(RESQML2_NS::AbstractRepresentation const * rep, bool* ena cerr << "\tERROR !!!!! The discrete or comment property is linked to a floating point HDF5 dataset." << endl; cout << "\tTrying to convert.." << endl; std::unique_ptr values(new int64_t[valueCount]); - dynamic_cast(prop)->getInt64ValuesOfPatch(0, values.get()); + dynamic_cast(prop)->getArrayOfValuesOfPatch(0, values.get()); std::cout << "\tFirst value is " << values[0] << endl; std::cout << "\tSecond value is " << values[1] << endl; cout << "\tPress enter to continue..." << endl; @@ -2715,9 +2761,12 @@ void showAllProperties(RESQML2_NS::AbstractRepresentation const * rep, bool* ena if (prop->getTimeSeries() != nullptr || singleTs != -1) { std::cout << "\tThis property is a time related one" << std::endl; if (singleTs != -1) { - std::cout << "\tThis property is a related to single timestamp " << std::endl; + std::cout << "\tThis property is related to single timestamp " << std::endl; if (prop->getTimeSeries() != nullptr) { - std::cout << "which is part of a time series at index " << prop->getTimeSeries()->getTimestampIndex(singleTs) << std::endl; + auto timeSeriesIndex = prop->getTimeSeries()->getTimestampIndex(singleTs); + std::cout << "which is part of a time series at index " << timeSeriesIndex + << " ISO String (without time)" << prop->getTimeSeries()->getTimestampAsIsoString(timeSeriesIndex, false) + << " ISO String (with time)" << prop->getTimeSeries()->getTimestampAsIsoString(timeSeriesIndex, true) << std::endl; } else { std::cout << "which is not part of a time series." << std::endl; @@ -3021,9 +3070,9 @@ void deserializeRockFluidOrganization(COMMON_NS::DataObjectRepository & repo) void deserializeFluidCharacterization(COMMON_NS::DataObjectRepository & repo) { - std::vector fluidCharacterization = repo.getDataObjects(); + std::vector fluidCharacterization = repo.getDataObjects(); for (size_t fcIndex = 0; fcIndex < fluidCharacterization.size(); ++fcIndex) { - PRODML2_2_NS::FluidCharacterization* fc = fluidCharacterization[fcIndex]; + PRODML2_3_NS::FluidCharacterization* fc = fluidCharacterization[fcIndex]; showAllMetadata(fc); RESQML2_NS::RockFluidUnitInterpretation* rfu = fc->getRockFluidUnit(); if (rfu != nullptr) { @@ -3057,10 +3106,10 @@ void deserializeFluidCharacterization(COMMON_NS::DataObjectRepository & repo) } if (fc->hasModelRemark(modelIndex)) { cout << "Remark: " << fc->getModelRemark(modelIndex) << std::endl; } - PRODML2_2_NS::PvtSpecification* spec = fc->getModelSpecification(modelIndex); + PRODML2_3_NS::PvtSpecification* spec = fc->getModelSpecification(modelIndex); if (spec != nullptr) { - if (dynamic_cast(spec) != nullptr) { - PRODML2_2_NS::CompositionalSpecification* compoSpec = static_cast(spec); + if (dynamic_cast(spec) != nullptr) { + PRODML2_3_NS::CompositionalSpecification* compoSpec = static_cast(spec); for (unsigned int coeffIndex = 0; coeffIndex < compoSpec->getCoefficientCount(); ++coeffIndex) { cout << "coeff value: " << compoSpec->getCoefficientValue(coeffIndex) << std::endl; cout << "coeff kind: " << static_cast(compoSpec->getCoefficientKind(coeffIndex)) << std::endl; @@ -3088,9 +3137,9 @@ void deserializeFluidCharacterization(COMMON_NS::DataObjectRepository & repo) void deserializeTimeSeriesData(COMMON_NS::DataObjectRepository & repo) { - std::vector timeSeriesDataSet = repo.getDataObjects(); + std::vector timeSeriesDataSet = repo.getDataObjects(); for (size_t timeSeriesDataSetIdx = 0; timeSeriesDataSetIdx < timeSeriesDataSet.size(); ++timeSeriesDataSetIdx) { - PRODML2_2_NS::TimeSeriesData* tsd = timeSeriesDataSet[timeSeriesDataSetIdx]; + PRODML2_3_NS::TimeSeriesData* tsd = timeSeriesDataSet[timeSeriesDataSetIdx]; showAllMetadata(tsd); for (unsigned int i = 0; i < tsd->getKeywordCount(); ++i) { @@ -3139,19 +3188,21 @@ void deserializeGridHyperslabbingInterfaceSequence(const COMMON_NS::DataObjectRe ijkGrid->loadSplitInformation(); - if (ijkGrid->getKGapsCount() > 0) { + const uint64_t kGapsCount = ijkGrid->getKGapsCount(); + const size_t kCellCount = ijkGrid->getKCellCount(); + if (kGapsCount > 0 && kCellCount > 1) { // here, we read a grid interface by interface. Each interface is read // in i then j direction cout << "INTERFACE BY INTERFACE" << std::endl; - std::unique_ptr gapAfterLayer(new bool[ijkGrid->getKCellCount() - 1]); + std::unique_ptr gapAfterLayer(new bool[kCellCount - 1]); ijkGrid->getKGaps(gapAfterLayer.get()); unsigned int kLayer = 0; unsigned int cornerShift = 0; - for (unsigned int kInterface = 0; kInterface < ijkGrid->getKCellCount() + 1 + ijkGrid->getKGapsCount(); kInterface++) { + for (unsigned int kInterface = 0; kInterface < kCellCount + 1 + kGapsCount; kInterface++) { cout << "INTERFACE: " << kInterface << std::endl; std::unique_ptr interfaceXyzPoints(new double[ijkGrid->getXyzPointCountOfKInterface() * 3]); @@ -3191,7 +3242,7 @@ void deserializeGridHyperslabbingInterfaceSequence(const COMMON_NS::DataObjectRe } } - if (cornerShift == 4 || (!gapAfterLayer[kLayer] && kInterface != ijkGrid->getKCellCount() + ijkGrid->getKGapsCount() - 1)) { + if (cornerShift == 4 || (kInterface != kCellCount + kGapsCount - 1 && !gapAfterLayer[kLayer])) { kLayer++; cornerShift = 0; } @@ -3207,7 +3258,7 @@ void deserializeGridHyperslabbingInterfaceSequence(const COMMON_NS::DataObjectRe int kInterface = 0; - for (unsigned int kLayer = 0; kLayer < ijkGrid->getKCellCount(); kLayer++) + for (unsigned int kLayer = 0; kLayer < kCellCount; kLayer++) { cout << "LAYER: " << kLayer << std::endl; @@ -3283,15 +3334,20 @@ void deserializeGridHyperslabbingInterfaceSequence(const COMMON_NS::DataObjectRe } } - kInterface = gapAfterLayer[kLayer] ? kInterface + 2 : kInterface + 1; + if (kLayer < kCellCount - 1) { + kInterface = gapAfterLayer[kLayer] ? kInterface + 2 : kInterface + 1; + } } } + else if (kGapsCount > 0) { + std::cout << "Not enough K Layer (" << kCellCount << ") to have K Gaps (" << kGapsCount << ")" << std::endl; + } else { // no K gap // here, we read a grid interface by interface. Each interface is read // in i then j direction cout << "INTERFACE BY INTERFACE" << std::endl; - for (unsigned int kInterface = 0; kInterface < ijkGrid->getKCellCount(); kInterface++) { + for (unsigned int kInterface = 0; kInterface < kCellCount; kInterface++) { cout << "INTERFACE: " << kInterface << std::endl; std::unique_ptr interfaceXyzPoints(new double[ijkGrid->getXyzPointCountOfKInterface() * 3]); @@ -3338,44 +3394,44 @@ void deserializeGridHyperslabbingInterfaceSequence(const COMMON_NS::DataObjectRe } // last interface differs from the other because of getXyzPointIndexFromCellCorner usage - cout << "INTERFACE: " << ijkGrid->getKCellCount() << std::endl; + cout << "INTERFACE: " << kCellCount << std::endl; std::unique_ptr interfaceXyzPoints(new double[ijkGrid->getXyzPointCountOfKInterface() * 3]); - ijkGrid->getXyzPointsOfKInterface(ijkGrid->getKCellCount(), interfaceXyzPoints.get()); + ijkGrid->getXyzPointsOfKInterface(kCellCount, interfaceXyzPoints.get()); for (unsigned int i = 0; i < ijkGrid->getICellCount(); i++) { for (unsigned int j = 0; j < ijkGrid->getJCellCount(); j++) { - cout << "CELL (" << i << ", " << j << ", " << ijkGrid->getKCellCount() - 1 << ")" << std::endl; + cout << "CELL (" << i << ", " << j << ", " << kCellCount - 1 << ")" << std::endl; uint64_t xyzPointIndex; double x, y, z; - uint64_t indexShift = ijkGrid->getKCellCount() * ijkGrid->getXyzPointCountOfKInterface() * 3; + uint64_t indexShift = kCellCount * ijkGrid->getXyzPointCountOfKInterface() * 3; // Corner (0, 0, 1) - xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, ijkGrid->getKCellCount() - 1, 4) * 3 - indexShift; + xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, kCellCount - 1, 4) * 3 - indexShift; x = interfaceXyzPoints[xyzPointIndex]; y = interfaceXyzPoints[xyzPointIndex + 1]; z = interfaceXyzPoints[xyzPointIndex + 2]; cout << "CORNER (0, 0, 1): " << x << " " << y << " " << z << std::endl; // Corner (1, 0, 1) - xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, ijkGrid->getKCellCount() - 1, 5) * 3 - indexShift; + xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, kCellCount - 1, 5) * 3 - indexShift; x = interfaceXyzPoints[xyzPointIndex]; y = interfaceXyzPoints[xyzPointIndex + 1]; z = interfaceXyzPoints[xyzPointIndex + 2]; cout << "CORNER (1, 0, 1): " << x << " " << y << " " << z << std::endl; // Corner (1, 1, 1) - xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, ijkGrid->getKCellCount() - 1, 6) * 3 - indexShift; + xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, kCellCount - 1, 6) * 3 - indexShift; x = interfaceXyzPoints[xyzPointIndex]; y = interfaceXyzPoints[xyzPointIndex + 1]; z = interfaceXyzPoints[xyzPointIndex + 2]; cout << "CORNER (1, 1, 1): " << x << " " << y << " " << z << std::endl; // Corner (0, 1, 1) - xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, ijkGrid->getKCellCount() - 1, 7) * 3 - indexShift; + xyzPointIndex = ijkGrid->getXyzPointIndexFromCellCorner(i, j, kCellCount - 1, 7) * 3 - indexShift; x = interfaceXyzPoints[xyzPointIndex]; y = interfaceXyzPoints[xyzPointIndex + 1]; z = interfaceXyzPoints[xyzPointIndex + 2]; @@ -3388,7 +3444,7 @@ void deserializeGridHyperslabbingInterfaceSequence(const COMMON_NS::DataObjectRe cout << "--------------------------------------------------" << std::endl; cout << "LAYER BY LAYER" << std::endl; - for (unsigned int kInterface = 0; kInterface < ijkGrid->getKCellCount(); kInterface++) + for (unsigned int kInterface = 0; kInterface < kCellCount; kInterface++) { cout << "LAYER: " << kInterface << std::endl; @@ -4483,7 +4539,7 @@ void discretePropertyHyperslabingTiming(RESQML2_NS::AbstractIjkGridRepresentatio clockStart = clock(); time(&timeStart); for (unsigned int n = 0; n < nbIter; ++n) { - prop->getInt32ValuesOfPatch(0, values.get()); + prop->getArrayOfValuesOfPatch(0, values.get()); } clockEnd = clock(); time(&timeEnd); @@ -4820,13 +4876,20 @@ void deserializeIjkGrid(const COMMON_NS::DataObjectRepository & repo) auto kGapCount = ijkGrid->getKGapsCount(); std::cout << " K Gap Count" << kGapCount << std::endl; if (kGapCount > 0) { - std::unique_ptr kGapAfterLayer(new bool[ijkGrid->getKCellCount() - 1]); - for (size_t kIndex = 0; kIndex < ijkGrid->getKCellCount() - 1; ++kIndex) { - std::cout << "There is "; - if (!kGapAfterLayer[kIndex]) { - std::cout << "NOT "; + const size_t kCellCount = ijkGrid->getKCellCount(); + if (kCellCount > 1) { + std::unique_ptr kGapAfterLayer(new bool[kCellCount - 1]); + ijkGrid->getKGaps(kGapAfterLayer.get()); + for (size_t kIndex = 0; kIndex < kCellCount - 1; ++kIndex) { + std::cout << "There is "; + if (!kGapAfterLayer[kIndex]) { + std::cout << "NOT "; + } + std::cout << "a K gap after K layer " << kIndex << std::endl; } - std::cout << "a K gap after K layer " << kIndex << std::endl; + } + else { + std::cout << "Not enough K Layer (" << kCellCount << ") to have K Gaps" << std::endl; } } @@ -5429,7 +5492,7 @@ void deserialize(const string & inputFile) if (catVal->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT64) { std::cout << "Hdf datatype is NATIVE INT 64" << std::endl; std::unique_ptr tmp(new int64_t[wmf->getMdValuesCount()]); - catVal->getInt64ValuesOfPatch(0, tmp.get()); + catVal->getArrayOfValuesOfPatch(0, tmp.get()); for (size_t ind = 0; ind < 2; ind++) { std::cout << "Value " << ind << " : " << tmp[ind] << std::endl; } @@ -5618,17 +5681,17 @@ void deserialize(const string & inputFile) showAllSubRepresentations(onlyPartialSubReps); std::cout << endl << "TIME SERIES" << endl; - for (auto const* timeSeries : timeSeriesSet) { - showAllMetadata(timeSeries); - for (unsigned int j = 0; j < timeSeries->getTimestampCount(); ++j) { - time_t creation = timeSeries->getTimestamp(j); + for (auto const* timeSeries1 : timeSeriesSet) { + showAllMetadata(timeSeries1); + for (unsigned int j = 0; j < timeSeries1->getTimestampCount(); ++j) { + time_t creation = timeSeries1->getTimestamp(j); std::cout << "Timestamp " << j << " is (unix timestamp) : " << creation << std::endl; - tm creationTm = timeSeries->getTimestampAsTimeStructure(j); + tm creationTm = timeSeries1->getTimestampAsTimeStructure(j); std::cout << "Timestamp " << j << " is (struct tm) : " << 1900 + creationTm.tm_year << "-" << creationTm.tm_mon + 1 << "-" << creationTm.tm_mday << "T" << creationTm.tm_hour << ":" << creationTm.tm_min << ":" << creationTm.tm_sec << std::endl; } - for (size_t j = 0; j < timeSeries->getPropertySet().size(); ++j) { + for (size_t j = 0; j < timeSeries1->getPropertySet().size(); ++j) { std::cout << endl << "\tPROPERTIES" << endl; - showAllMetadata(timeSeries->getPropertySet()[j]); + showAllMetadata(timeSeries1->getPropertySet()[j]); } } @@ -5672,7 +5735,7 @@ void appendAContinuousProp(const string& filePath) #endif double values[2] = { 0, 1 }; - continuousProp->pushBackDoubleHdf5Array3dOfValues(values, 2, 1, 1); + continuousProp->pushBackArray3dOfValues(values, 2, 1, 1); epcDoc.serializeFrom(repo); } diff --git a/python/example/example.py b/python/example/example.py index 11d32337f..bf861f763 100644 --- a/python/example/example.py +++ b/python/example/example.py @@ -30,7 +30,10 @@ def serialize_grid(repo: fesapi.DataObjectRepository): resqml_values = fesapi.FloatArray(3) for i, value in enumerate(prop_values): resqml_values.setitem(i, value) - continuous_prop.pushBackFloatHdf5Array3dOfValues(resqml_values, 1, 1, 3, 1.1, 3.3) + stats = fesapi.FloatArrayStatistics() + stats.setMaximum(3.3) + stats.setMinimum(1.1) + continuous_prop.pushBackFloatArray3dOfValuesPlusStatistics(resqml_values, 1, 1, 3, stats) def serialize(file_name: str): """ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index dffa13294..b1814f62c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -34,7 +34,7 @@ set (RESQML_PREFIX_2_0_1 "resqml2_0_1") set (RESQML_PREFIX_2_2 "resqml2_2") set (WITSML_PREFIX_2 "witsml2") set (WITSML_PREFIX_2_1 "witsml2_1") -set (PRODML_PREFIX_2_2 "prodml2_2") +set (PRODML_PREFIX_2_3 "prodml2_3") set (EML_PREFIX_2 "eml2") set (EML_PREFIX_2_0 "eml2_0") set (EML_PREFIX_2_3 "eml2_3") @@ -125,7 +125,7 @@ set (WITH_PYTHON_WRAPPING OFF CACHE BOOL "Compile the swig cpp generated file fo # Namespaces definitions set (FESAPI_COMMON_NS common CACHE STRING "Namespace for common objects") -set (FESAPI_PRODML2_2_NS prodml2_2 CACHE STRING "Namespace for prodml2_2 objects") +set (FESAPI_PRODML2_3_NS prodml2_3 CACHE STRING "Namespace for prodml2_3 objects") set (FESAPI_RESQML2_NS resqml2 CACHE STRING "Namespace for resqml2 objects") set (FESAPI_RESQML2_0_1_NS resqml2_0_1 CACHE STRING "Namespace for resqml2_0_1 objects") @@ -150,7 +150,7 @@ if (WITH_RESQML2_2) include(${CMAKE_CURRENT_SOURCE_DIR}/${RESQML_PREFIX_2_2}/CMakeLists.txt) endif (WITH_RESQML2_2) -include(${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CMakeLists.txt) +include(${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CMakeLists.txt) include(${CMAKE_CURRENT_SOURCE_DIR}/${WITSML_PREFIX_2}/CMakeLists.txt) include(${CMAKE_CURRENT_SOURCE_DIR}/${WITSML_PREFIX_2_1}/CMakeLists.txt) @@ -177,8 +177,8 @@ list(APPEND ALL_SOURCES_AND_HEADERS ${FESAPI_WITSML_2_HEADERS} ${FESAPI_WITSML_2_1_SOURCES} ${FESAPI_WITSML_2_1_HEADERS} - ${FESAPI_PRODML_2_2_SOURCES} - ${FESAPI_PRODML_2_2_HEADERS} + ${FESAPI_PRODML_2_3_SOURCES} + ${FESAPI_PRODML_2_3_HEADERS} ${FESAPI_EML_2_SOURCES} ${FESAPI_EML_2_HEADERS} ${FESAPI_EML_2_0_SOURCES} @@ -221,7 +221,7 @@ if (WIN32) source_group ("${WITSML_PREFIX_2_1}" FILES ${FESAPI_WITSML_2_1_SOURCES} ${FESAPI_WITSML_2_1_HEADERS}) - source_group ("${PRODML_PREFIX_2_2}" FILES ${FESAPI_PRODML_2_2_SOURCES} ${FESAPI_PRODML_2_2_HEADERS}) + source_group ("${PRODML_PREFIX_2_3}" FILES ${FESAPI_PRODML_2_3_SOURCES} ${FESAPI_PRODML_2_3_HEADERS}) source_group ("${EML_PREFIX_2}" FILES ${FESAPI_EML_2_SOURCES} ${FESAPI_EML_2_HEADERS}) @@ -343,8 +343,8 @@ if (NOT WITH_PYTHON_WRAPPING AND NOT WITH_DOTNET_WRAPPING AND NOT WITH_JAVA_WRAP # PRODML headers INSTALL ( - FILES ${FESAPI_PRODML_2_2_HEADERS} - DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/fesapi/${PRODML_PREFIX_2_2}/ + FILES ${FESAPI_PRODML_2_3_HEADERS} + DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/fesapi/${PRODML_PREFIX_2_3}/ COMPONENT fesapi_headers ) @@ -370,15 +370,15 @@ else () ) endif (NOT WITH_PYTHON_WRAPPING AND NOT WITH_DOTNET_WRAPPING AND NOT WITH_JAVA_WRAPPING) -if (WIN32) - #PDB for debug +if (MSVC) + #PDB only for debug and only for shared lib waiting for https://gitlab.kitware.com/cmake/cmake/-/issues/25244 fix INSTALL ( - FILES $ + FILES $<$:$> CONFIGURATIONS Debug RelWithDebInfo DESTINATION ${CMAKE_INSTALL_BINDIR} OPTIONAL ) -endif (WIN32) +endif (MSVC) # PropertyTypeMapping.xml INSTALL ( diff --git a/src/common/AbstractObject.cpp b/src/common/AbstractObject.cpp index d4644c2db..ab9dbcb23 100644 --- a/src/common/AbstractObject.cpp +++ b/src/common/AbstractObject.cpp @@ -902,7 +902,7 @@ void AbstractObject::readArrayNdOfFloatValues(gsoap_resqml2_0_1::resqml20__Abstr } } else - throw invalid_argument("The integer array type is not supported yet."); + throw invalid_argument("The double array type is not supported yet."); } void AbstractObject::readArrayNdOfFloatValues(gsoap_eml2_3::eml23__AbstractFloatingPointArray const* arrayInput, float* arrayOutput) const @@ -1055,284 +1055,181 @@ void AbstractObject::readArrayNdOfBooleanValues(gsoap_eml2_3::eml23__BooleanExte } } -uint8_t AbstractObject::readArrayNdOfUInt8Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, uint8_t * arrayOutput) const -{ - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - uint8_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - if (hdfArray->NullValue > (std::numeric_limits::max)()) { - throw range_error("The null value is greater than uint8_t max."); +namespace { + template + std::tuple getDatasetAndPathAndNullValueFrom(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput) { + gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; + std::string pathInHdfFile = ""; + T nullValue = (std::numeric_limits::max)(); + if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { + auto const* hdfArray = static_cast(arrayInput); + if constexpr (std::is_signed_v) { + nullValue = static_cast(std::clamp(hdfArray->NullValue, + static_cast((std::numeric_limits::min)()), static_cast((std::numeric_limits::max)()))); + } + else { + if (hdfArray->NullValue > 0) { + nullValue = static_cast(std::clamp(static_cast(hdfArray->NullValue), + static_cast(0), static_cast((std::numeric_limits::max)()))); + } + } + dataset = hdfArray->Values; + pathInHdfFile = hdfArray->Values->PathInHdfFile; + } + else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { + auto const* hdfArray = static_cast(arrayInput); + dataset = hdfArray->Values; + pathInHdfFile = hdfArray->Values->PathInHdfFile; + } + // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() + // This would force to have to pass the count of values in the array. + + return std::make_tuple(dataset, pathInHdfFile, nullValue); + } + + template + std::tuple, T> getDataArrayPartsAndNullValueFrom(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput) { + std::vector externalDataArrayParts; + T nullValue = (std::numeric_limits::max)(); + if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { + externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; + const int64_t xmlNullValue = static_cast(arrayInput)->NullValue; + if constexpr (std::is_signed_v) { + nullValue = static_cast(std::clamp(xmlNullValue, + static_cast((std::numeric_limits::min)()), static_cast((std::numeric_limits::max)()))); + } + else { + if (xmlNullValue > 0) { + nullValue = static_cast(std::clamp(static_cast(xmlNullValue), + static_cast(0), static_cast((std::numeric_limits::max)()))); + } + } + } + else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { + externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; } - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = static_cast(hdfArray->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. - if (pathInHdfFile.empty()) { - return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); - } - else { - getHdfProxyFromDataset(dataset)->readArrayNdOfUInt8Values(pathInHdfFile, arrayOutput); - return nullValue; + return std::make_tuple(externalDataArrayParts, nullValue); } } -uint8_t AbstractObject::readArrayNdOfUInt8Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint8_t * arrayOutput) const +template<> int8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int8_t* arrayOutput) const { - std::vector externalDataArrayParts; - uint8_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - if (static_cast(arrayInput)->NullValue > (std::numeric_limits::max)()) { - throw range_error("The null value is greater than uint8_t max."); - } - nullValue = static_cast(static_cast(arrayInput)->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); - if (externalDataArrayParts.empty()) { + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); + if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - size_t offset = 0; - for (auto const* dataArrayPart : externalDataArrayParts) { - getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUInt8Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); - offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); - } - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfInt8Values(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -uint16_t AbstractObject::readArrayNdOfUInt16Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, uint16_t * arrayOutput) const +template<> uint8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint8_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - uint16_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - if (hdfArray->NullValue > (std::numeric_limits::max)()) { - throw range_error("The null value is greater than uint16_t max."); - } - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = static_cast(hdfArray->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfUShortValues(pathInHdfFile, arrayOutput); - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfUInt8Values(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -uint16_t AbstractObject::readArrayNdOfUInt16Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, uint16_t * arrayOutput) const +template<> int16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int16_t* arrayOutput) const { - std::vector externalDataArrayParts; - uint16_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - if (static_cast(arrayInput)->NullValue > (std::numeric_limits::max)()) { - throw range_error("The null value is greater than uint16_t max."); - } - nullValue = static_cast(static_cast(arrayInput)->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); - if (externalDataArrayParts.empty()) { + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); + if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - size_t offset = 0; - for (auto const* dataArrayPart : externalDataArrayParts) { - getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUShortValues(dataArrayPart->PathInExternalFile, arrayOutput + offset); - offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); - } - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfShortValues(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -uint32_t AbstractObject::readArrayNdOfUInt32Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, uint32_t * arrayOutput) const +template<> uint16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint16_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - uint32_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - if (hdfArray->NullValue > (std::numeric_limits::max)()) { - throw range_error("The null value is greater than uint32_t max."); - } - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = static_cast(hdfArray->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfUIntValues(pathInHdfFile, arrayOutput); - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfUShortValues(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -uint32_t AbstractObject::readArrayNdOfUInt32Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, uint32_t * arrayOutput) const +template<> int32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int32_t* arrayOutput) const { - std::vector externalDataArrayParts; - uint32_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - if (static_cast(arrayInput)->NullValue > (std::numeric_limits::max)()) { - throw range_error("The null value is greater than uint32_t max."); - } - nullValue = static_cast(static_cast(arrayInput)->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); - if (externalDataArrayParts.empty()) { + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); + if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - size_t offset = 0; - for (auto const* dataArrayPart : externalDataArrayParts) { - getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUIntValues(dataArrayPart->PathInExternalFile, arrayOutput + offset); - offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); - } - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfIntValues(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -uint64_t AbstractObject::readArrayNdOfUInt64Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, uint64_t * arrayOutput) const +template<> uint32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint32_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - uint64_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = hdfArray->NullValue; - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfUInt64Values(pathInHdfFile, arrayOutput); - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfUIntValues(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -uint64_t AbstractObject::readArrayNdOfUInt64Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, uint64_t * arrayOutput) const +template<> int64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int64_t* arrayOutput) const { - std::vector externalDataArrayParts; - uint64_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - nullValue = static_cast(arrayInput)->NullValue; - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); - if (externalDataArrayParts.empty()) { + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); + if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - size_t offset = 0; - for (auto const* dataArrayPart : externalDataArrayParts) { - getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUInt64Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); - offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); - } - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfInt64Values(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -int8_t AbstractObject::readArrayNdOfInt8Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, int8_t* arrayOutput) const +template<> uint64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint64_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - int8_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - if (hdfArray->NullValue < (std::numeric_limits::min)() || - hdfArray->NullValue >(std::numeric_limits::max)()) { - throw invalid_argument("One of the integer array of UUID " + getUuid() + " has a null value which is out of range of int32_t."); - } - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = static_cast(hdfArray->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple datasetAndPathAndNullValue = getDatasetAndPathAndNullValueFrom(arrayInput); + const std::string pathInHdfFile = std::get<1>(datasetAndPathAndNullValue); if (pathInHdfFile.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfInt8Values(pathInHdfFile, arrayOutput); - return nullValue; + getHdfProxyFromDataset(std::get<0>(datasetAndPathAndNullValue))->readArrayNdOfUInt64Values(pathInHdfFile, arrayOutput); + return std::get<2>(datasetAndPathAndNullValue); } } -int8_t AbstractObject::readArrayNdOfInt8Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, int8_t* arrayOutput) const +template<> int8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int8_t* arrayOutput) const { - std::vector externalDataArrayParts; - int8_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - if (static_cast(arrayInput)->NullValue < (std::numeric_limits::min)() || - static_cast(arrayInput)->NullValue >(std::numeric_limits::max)()) { - throw invalid_argument("One of the integer array of UUID " + getUuid() + " has a null value which is out of range of int8_t."); - } - nullValue = static_cast(static_cast(arrayInput)->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple, int8_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } @@ -1342,58 +1239,33 @@ int8_t AbstractObject::readArrayNdOfInt8Values(gsoap_eml2_3::eml23__AbstractValu getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfInt8Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); } - return nullValue; + return std::get<1>(dataArrayPartsAndNullValue); } } -int16_t AbstractObject::readArrayNdOfInt16Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, int16_t* arrayOutput) const +template<> uint8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint8_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - int16_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - if (hdfArray->NullValue < (std::numeric_limits::min)() || - hdfArray->NullValue >(std::numeric_limits::max)()) { - throw invalid_argument("One of the integer array of UUID " + getUuid() + " has a null value which is out of range of int32_t."); - } - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = static_cast(hdfArray->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple, uint8_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); - if (pathInHdfFile.empty()) { + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); + if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfShortValues(pathInHdfFile, arrayOutput); - return nullValue; + size_t offset = 0; + for (auto const* dataArrayPart : externalDataArrayParts) { + getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUInt8Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); + offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); + } + return std::get<1>(dataArrayPartsAndNullValue); } } -int16_t AbstractObject::readArrayNdOfInt16Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, int16_t* arrayOutput) const +template<> int16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int16_t* arrayOutput) const { - std::vector externalDataArrayParts; - int16_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - if (static_cast(arrayInput)->NullValue < (std::numeric_limits::min)() || - static_cast(arrayInput)->NullValue >(std::numeric_limits::max)()) { - throw invalid_argument("One of the integer array of UUID " + getUuid() + " has a null value which is out of range of int16_t."); - } - nullValue = static_cast(static_cast(arrayInput)->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple, int16_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } @@ -1403,58 +1275,33 @@ int16_t AbstractObject::readArrayNdOfInt16Values(gsoap_eml2_3::eml23__AbstractVa getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfShortValues(dataArrayPart->PathInExternalFile, arrayOutput + offset); offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); } - return nullValue; + return std::get<1>(dataArrayPartsAndNullValue); } } -int32_t AbstractObject::readArrayNdOfInt32Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, int32_t* arrayOutput) const +template<> uint16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint16_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - int32_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - if (hdfArray->NullValue < (std::numeric_limits::min)() || - hdfArray->NullValue > (std::numeric_limits::max)()) { - throw invalid_argument("One of the integer array of UUID " + getUuid() + " has a null value which is out of range of int32_t."); - } - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = static_cast(hdfArray->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple, uint16_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); - if (pathInHdfFile.empty()) { + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); + if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfIntValues(pathInHdfFile, arrayOutput); - return nullValue; + size_t offset = 0; + for (auto const* dataArrayPart : externalDataArrayParts) { + getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUShortValues(dataArrayPart->PathInExternalFile, arrayOutput + offset); + offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); + } + return std::get<1>(dataArrayPartsAndNullValue); } } -int32_t AbstractObject::readArrayNdOfInt32Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, int32_t* arrayOutput) const +template<> int32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int32_t* arrayOutput) const { - std::vector externalDataArrayParts; - int32_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - if (static_cast(arrayInput)->NullValue < (std::numeric_limits::min)() || - static_cast(arrayInput)->NullValue >(std::numeric_limits::max)()) { - throw invalid_argument("One of the integer array of UUID " + getUuid() + " has a null value which is out of range of int32_t."); - } - nullValue = static_cast(static_cast(arrayInput)->NullValue); - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - } + const std::tuple, int32_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } @@ -1464,60 +1311,61 @@ int32_t AbstractObject::readArrayNdOfInt32Values(gsoap_eml2_3::eml23__AbstractVa getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfIntValues(dataArrayPart->PathInExternalFile, arrayOutput + offset); offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); } - return nullValue; + return std::get<1>(dataArrayPartsAndNullValue); } } -int64_t AbstractObject::readArrayNdOfInt64Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, int64_t * arrayOutput) const +template<> uint32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint32_t* arrayOutput) const { - gsoap_resqml2_0_1::eml20__Hdf5Dataset const* dataset = nullptr; - std::string pathInHdfFile = ""; - int64_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - nullValue = hdfArray->NullValue; - } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanHdf5Array) { - auto const * hdfArray = static_cast(arrayInput); - dataset = hdfArray->Values; - pathInHdfFile = hdfArray->Values->PathInHdfFile; - } - // DoubleHdf5Array is not supported because we should convert NaN to (std::numeric_limits::max)() - // This would force to have to pass the count of values in the array. + const std::tuple, uint32_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); - if (pathInHdfFile.empty()) { + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); + if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { - getHdfProxyFromDataset(dataset)->readArrayNdOfInt64Values(pathInHdfFile, arrayOutput); - return nullValue; + size_t offset = 0; + for (auto const* dataArrayPart : externalDataArrayParts) { + getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUIntValues(dataArrayPart->PathInExternalFile, arrayOutput + offset); + offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); + } + return std::get<1>(dataArrayPartsAndNullValue); } } -int64_t AbstractObject::readArrayNdOfInt64Values(gsoap_eml2_3::eml23__AbstractValueArray const * arrayInput, int64_t * arrayOutput) const +template<> int64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int64_t* arrayOutput) const { - std::vector externalDataArrayParts; - int64_t nullValue = (std::numeric_limits::max)(); - if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; - nullValue = static_cast(arrayInput)->NullValue; + const std::tuple, int64_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); + + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); + if (externalDataArrayParts.empty()) { + return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } - else if (arrayInput->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__BooleanExternalArray) { - externalDataArrayParts = static_cast(arrayInput)->Values->ExternalDataArrayPart; + else { + size_t offset = 0; + for (auto const* dataArrayPart : externalDataArrayParts) { + getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfInt64Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); + offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); + } + return std::get<1>(dataArrayPartsAndNullValue); } +} +template<> uint64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint64_t* arrayOutput) const +{ + const std::tuple, uint64_t> dataArrayPartsAndNullValue = getDataArrayPartsAndNullValueFrom(arrayInput); + + const std::vector externalDataArrayParts = std::get<0>(dataArrayPartsAndNullValue); if (externalDataArrayParts.empty()) { return readArrayNdOfNonHdf5IntegerValues(arrayInput, arrayOutput); } else { size_t offset = 0; for (auto const* dataArrayPart : externalDataArrayParts) { - getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfInt64Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); + getOrCreateHdfProxyFromDataArrayPart(dataArrayPart)->readArrayNdOfUInt64Values(dataArrayPart->PathInExternalFile, arrayOutput + offset); offset += std::accumulate(std::begin(dataArrayPart->Count), std::end(dataArrayPart->Count), static_cast(1), std::multiplies()); } - return nullValue; + return std::get<1>(dataArrayPartsAndNullValue); } } diff --git a/src/common/AbstractObject.h b/src/common/AbstractObject.h index 33ab0c48c..ed46f8217 100644 --- a/src/common/AbstractObject.h +++ b/src/common/AbstractObject.h @@ -775,7 +775,7 @@ namespace COMMON_NS const std::string & description, time_t lastUpdate, const std::string & descriptiveKeywords); /** Throw an exception if the instance if partial. */ - void cannotBePartial() const; + DLL_IMPORT_OR_EXPORT void cannotBePartial() const; /** * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a @@ -784,7 +784,7 @@ namespace COMMON_NS * @param [in] arrayInput If non-null, the array input. * @param [out] arrayOutput If non-null, the array output. */ - void readArrayNdOfFloatValues(gsoap_resqml2_0_1::resqml20__AbstractDoubleArray const* arrayInput, float* arrayOutput) const; + DLL_IMPORT_OR_EXPORT void readArrayNdOfFloatValues(gsoap_resqml2_0_1::resqml20__AbstractDoubleArray const* arrayInput, float* arrayOutput) const; /** * Read an input array which come from EML 2.3 (and potentially HDF5) and store it into a @@ -793,7 +793,7 @@ namespace COMMON_NS * @param [in] arrayInput If non-null, the array input. * @param [out] arrayOutput If non-null, the array output. */ - void readArrayNdOfFloatValues(gsoap_eml2_3::eml23__AbstractFloatingPointArray const* arrayInput, float* arrayOutput) const; + DLL_IMPORT_OR_EXPORT void readArrayNdOfFloatValues(gsoap_eml2_3::eml23__AbstractFloatingPointArray const* arrayInput, float* arrayOutput) const; /** * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a @@ -802,7 +802,7 @@ namespace COMMON_NS * @param [in] arrayInput If non-null, the array input. * @param [out] arrayOutput If non-null, the array output. */ - void readArrayNdOfDoubleValues(gsoap_resqml2_0_1::resqml20__AbstractDoubleArray const* arrayInput, double * arrayOutput) const; + DLL_IMPORT_OR_EXPORT void readArrayNdOfDoubleValues(gsoap_resqml2_0_1::resqml20__AbstractDoubleArray const* arrayInput, double * arrayOutput) const; /** * Read an input array which come from EML 2.3 (and potentially HDF5) and store it into a @@ -811,7 +811,7 @@ namespace COMMON_NS * @param [in] arrayInput If non-null, the array input. * @param [out] arrayOutput If non-null, the array output. */ - void readArrayNdOfDoubleValues(gsoap_eml2_3::eml23__AbstractFloatingPointArray const* arrayInput, double * arrayOutput) const; + DLL_IMPORT_OR_EXPORT void readArrayNdOfDoubleValues(gsoap_eml2_3::eml23__AbstractFloatingPointArray const* arrayInput, double * arrayOutput) const; template T readArrayNdOfNonHdf5IntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const * arrayInput, T * arrayOutput) const { @@ -819,8 +819,18 @@ namespace COMMON_NS case SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerRangeArray: { gsoap_resqml2_0_1::resqml20__IntegerRangeArray const* rangeArray = static_cast(arrayInput); - if (rangeArray->Value + rangeArray->Count > (std::numeric_limits::max)()) { - throw std::range_error("The range integer values are superior to maximum value of read datatype."); + if constexpr (std::is_signed_v) { + if (rangeArray->Value < (std::numeric_limits::min)()) { + throw std::overflow_error("Too low integers in XML for the C++ chosen datatype"); + } + } + else { + if (rangeArray->Value < 0 ) { + throw std::underflow_error("Cannot deal with negative values when using unsigned integer"); + } + } + if (rangeArray->Value + rangeArray->Count > static_cast((std::numeric_limits::max)())) { + throw std::overflow_error("The range integer values are superior to maximum value of read datatype."); } for (T i = 0; i < static_cast(rangeArray->Count); ++i) { arrayOutput[i] = i + static_cast(rangeArray->Value); @@ -830,10 +840,17 @@ namespace COMMON_NS case SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerConstantArray: { gsoap_resqml2_0_1::resqml20__IntegerConstantArray const* constantArray = static_cast(arrayInput); - if (sizeof(constantArray->Value) > sizeof(T) && constantArray->Value > (std::numeric_limits::max)()) { - throw std::range_error("The constant integer value is superior to maximum value of read datatype."); + T value; + if constexpr (std::is_signed_v) { + value = static_cast(std::clamp(constantArray->Value, + static_cast((std::numeric_limits::min)()), static_cast((std::numeric_limits::max)()))); } - std::fill(arrayOutput, arrayOutput + constantArray->Count, static_cast(constantArray->Value)); + else { + value = constantArray->Value > 0 + ? static_cast(std::clamp(static_cast(constantArray->Value), static_cast(0), static_cast((std::numeric_limits::max)()))) + : (std::numeric_limits::max)(); + } + std::fill(arrayOutput, arrayOutput + constantArray->Count, value); return (std::numeric_limits::max)(); } case SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BooleanConstantArray: @@ -848,8 +865,26 @@ namespace COMMON_NS if (latticeArray->Offset.size() > 1) { throw std::invalid_argument("The integer lattice array contains more than one offset."); } - for (size_t i = 0; i <= latticeArray->Offset[0]->Count; ++i) { - arrayOutput[i] = latticeArray->StartValue + (i * latticeArray->Offset[0]->Value); + if constexpr (std::is_signed_v) { + if (latticeArray->StartValue < (std::numeric_limits::min)() || latticeArray->Offset[0]->Value < (std::numeric_limits::min)()) { + throw std::underflow_error("Too low integers in XML for the C++ chosen datatype"); + } + if (latticeArray->StartValue > (std::numeric_limits::max)() || + latticeArray->Offset[0]->Value > (std::numeric_limits::max)()) { + throw std::overflow_error("Too big integers in XML for the C++ chosen datatype"); + } + } + else { + if (latticeArray->StartValue < 0 || latticeArray->Offset[0]->Value < 0) { + throw std::underflow_error("Cannot deal with negative values when using unsigned integer"); + } + if (static_cast(latticeArray->StartValue) > (std::numeric_limits::max)() || + static_cast(latticeArray->Offset[0]->Value) > (std::numeric_limits::max)()) { + throw std::overflow_error("Too big integers in XML for the C++ chosen datatype"); + } + } + for (uint64_t i = 0; i <= latticeArray->Offset[0]->Count; ++i) { + arrayOutput[i] = static_cast(latticeArray->StartValue) + (i * static_cast(latticeArray->Offset[0]->Value)); } return (std::numeric_limits::max)(); } @@ -864,8 +899,21 @@ namespace COMMON_NS case SOAP_TYPE_gsoap_eml2_3_eml23__IntegerConstantArray: { gsoap_eml2_3::eml23__IntegerConstantArray const* constantArray = static_cast(arrayInput); - if (sizeof(constantArray->Value) > sizeof(T) && constantArray->Value > (std::numeric_limits::max)()) { - throw std::range_error("The constant integer value is superior to maximum value of read datatype."); + if constexpr (std::is_signed_v) { + if (constantArray->Value < (std::numeric_limits::min)()) { + throw std::underflow_error("Too low integers in XML for the C++ chosen datatype"); + } + if (constantArray->Value > (std::numeric_limits::max)()) { + throw std::overflow_error("Too big integers in XML for the C++ chosen datatype"); + } + } + else { + if (constantArray->Value < 0) { + throw std::underflow_error("Cannot deal with negative values when using unsigned integer"); + } + if (static_cast(constantArray->Value) > (std::numeric_limits::max)()) { + throw std::overflow_error("Too big integers in XML for the C++ chosen datatype"); + } } std::fill(arrayOutput, arrayOutput + constantArray->Count, static_cast(constantArray->Value)); return (std::numeric_limits::max)(); @@ -925,53 +973,10 @@ namespace COMMON_NS * @param [in] arrayInput If non-null, the array input. * @param [out] arrayOutput If non-null, the array output. * - * @returns The null value of this array. Default returned value is uint8_t::max - */ - uint8_t readArrayNdOfUInt8Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint8_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint16_t::max - */ - uint8_t readArrayNdOfUInt8Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint8_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint16_t::max - */ - uint16_t readArrayNdOfUInt16Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint16_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint8_t::max - */ - uint16_t readArrayNdOfUInt16Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint16_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint32_t::max + * @returns The null value of this array. Default returned value is the max numeric limits of T. */ - uint32_t readArrayNdOfUInt32Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint32_t * arrayOutput) const; + template + T readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, T* arrayOutput) const; /** * Read an input array which come from EML 2.3 (and potentially HDF5) and store it into a @@ -980,119 +985,10 @@ namespace COMMON_NS * @param [in] arrayInput If non-null, the array input. * @param [out] arrayOutput If non-null, the array output. * - * @returns The null value of this array. Default returned value is uint32_t::max - */ - uint32_t readArrayNdOfUInt32Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint32_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint64_t::max - */ - uint64_t readArrayNdOfUInt64Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint64_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint64_t::max - */ - uint64_t readArrayNdOfUInt64Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint64_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint8_t::max - */ - int8_t readArrayNdOfInt8Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int8_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint16_t::max - */ - int8_t readArrayNdOfInt8Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int8_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint8_t::max - */ - int16_t readArrayNdOfInt16Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int16_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint16_t::max - */ - int16_t readArrayNdOfInt16Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int16_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint8_t::max - */ - int32_t readArrayNdOfInt32Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int32_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint16_t::max + * @returns The null value of this array. Default returned value is the max numeric limits of T. */ - int32_t readArrayNdOfInt32Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int32_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint64_t::max - */ - int64_t readArrayNdOfInt64Values(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int64_t * arrayOutput) const; - - /** - * Read an input array which come from EML 2.0 (and potentially HDF5) and store it into a - * preallocated output array in memory. It does not allocate or deallocate memory. - * - * @param [in] arrayInput If non-null, the array input. - * @param [out] arrayOutput If non-null, the array output. - * - * @returns The null value of this array. Default returned value is uint64_t::max - */ - int64_t readArrayNdOfInt64Values(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int64_t * arrayOutput) const; + template + T readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, T* arrayOutput) const; /** * Get the count of item in an array of integer @@ -1200,4 +1096,22 @@ namespace COMMON_NS */ void setUuid(const std::string & uuid); }; + + template<> DLL_IMPORT_OR_EXPORT int8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int8_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint8_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT int16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int16_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint16_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT int32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int32_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint32_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT int64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, int64_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_resqml2_0_1::resqml20__AbstractValueArray const* arrayInput, uint64_t* arrayOutput) const; + + template<> DLL_IMPORT_OR_EXPORT int8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int8_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint8_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint8_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT int16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int16_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint16_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint16_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT int32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int32_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint32_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint32_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT int64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, int64_t* arrayOutput) const; + template<> DLL_IMPORT_OR_EXPORT uint64_t AbstractObject::readArrayNdOfIntegerValues(gsoap_eml2_3::eml23__AbstractValueArray const* arrayInput, uint64_t* arrayOutput) const; } diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index cf2e5747f..ae44e2402 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -3,7 +3,7 @@ set(FESAPI_COMMON_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/common/AbstractObject.cpp ${CMAKE_CURRENT_SOURCE_DIR}/common/DataObjectRepository.cpp ${CMAKE_CURRENT_SOURCE_DIR}/common/EnumStringMapper.cpp ${CMAKE_CURRENT_SOURCE_DIR}/common/EpcDocument.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/common/HdfProxyFactory.cpp ) + ${CMAKE_CURRENT_SOURCE_DIR}/common/HdfProxyFactory.cpp) set(FESAPI_COMMON_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/common/AbstractObject.h ${CMAKE_CURRENT_SOURCE_DIR}/common/DataFeeder.h ${CMAKE_CURRENT_SOURCE_DIR}/common/DataObjectReference.h @@ -12,7 +12,8 @@ set(FESAPI_COMMON_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/common/AbstractObject.h ${CMAKE_CURRENT_SOURCE_DIR}/common/EpcDocument.h ${CMAKE_CURRENT_SOURCE_DIR}/common/HdfProxyFactory.h ${CMAKE_CURRENT_SOURCE_DIR}/common/HdfProxyROS3Factory.h - ${CMAKE_CURRENT_SOURCE_DIR}/common/HidtType.h ) + ${CMAKE_CURRENT_SOURCE_DIR}/common/HidtType.h + ${CMAKE_CURRENT_SOURCE_DIR}/common/NumberArrayStatistics.h) if (HDF5_PREFER_PARALLEL) list(APPEND FESAPI_COMMON_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/common/HdfProxyMPIFactory.cpp ) list(APPEND FESAPI_COMMON_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/common/HdfProxyMPIFactory.h ) diff --git a/src/common/DataObjectReference.cpp b/src/common/DataObjectReference.cpp index 062280d4d..31c23e357 100644 --- a/src/common/DataObjectReference.cpp +++ b/src/common/DataObjectReference.cpp @@ -29,7 +29,7 @@ DataObjectReference::DataObjectReference(AbstractObject const * dataObj) if (ns == "resqml20" || ns == "eml20") { dor20 = dataObj->newResqmlReference(); } - else if (ns == "witsml21" || ns == "prodml22" || ns == "resqml22" || ns == "eml23") { + else if (ns == "witsml21" || ns == "prodml23" || ns == "resqml22" || ns == "eml23") { dor23 = dataObj->newEml23Reference(); } } diff --git a/src/common/DataObjectRepository.cpp b/src/common/DataObjectRepository.cpp index 84f7c2316..7af33ec8d 100644 --- a/src/common/DataObjectRepository.cpp +++ b/src/common/DataObjectRepository.cpp @@ -197,9 +197,9 @@ under the License. #include "../witsml2_1/WellboreMarkerSet.h" #include "../witsml2_1/WellCompletion.h" -#include "../prodml2_2/FluidSystem.h" -#include "../prodml2_2/FluidCharacterization.h" -#include "../prodml2_2/TimeSeriesData.h" +#include "../prodml2_3/FluidSystem.h" +#include "../prodml2_3/FluidCharacterization.h" +#include "../prodml2_3/TimeSeriesData.h" #include #include @@ -208,7 +208,7 @@ using namespace std; using namespace COMMON_NS; using namespace RESQML2_0_1_NS; using namespace WITSML2_1_NS; -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; // Create a fesapi partial wrapper based on a data type and its version #define CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(className)\ @@ -266,11 +266,11 @@ using namespace PRODML2_2_NS; } ///////////////////// -///// PRODML 2.1 //// +///// PRODML 2.3 //// ///////////////////// #define GET_PRODML_2_1_GSOAP_PROXY_FROM_GSOAP_CONTEXT(className, gsoapNameSpace)\ - gsoapNameSpace::_prodml22__##className* read = gsoapNameSpace::soap_new_prodml22__##className(gsoapContext);\ - gsoapNameSpace::soap_read_prodml22__##className(gsoapContext, read); + gsoapNameSpace::_prodml23__##className* read = gsoapNameSpace::soap_new_prodml23__##className(gsoapContext);\ + gsoapNameSpace::soap_read_prodml23__##className(gsoapContext, read); #define GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(classNamespace, className, gsoapNameSpace)\ GET_PRODML_2_1_GSOAP_PROXY_FROM_GSOAP_CONTEXT(className, gsoapNameSpace)\ @@ -661,7 +661,7 @@ COMMON_NS::AbstractObject* DataObjectRepository::addOrReplaceDataObject(std::uni if (xmlNs == "resqml20" || xmlNs == "eml20") { (*same)->setGsoapProxy(proxy->getEml20GsoapProxy()); } - else if (xmlNs == "witsml21" || xmlNs == "prodml22" || xmlNs == "eml23" + else if (xmlNs == "witsml21" || xmlNs == "prodml23" || xmlNs == "eml23" #if WITH_RESQML2_2 || xmlNs == "resqml22" #endif @@ -740,8 +740,8 @@ COMMON_NS::AbstractObject* DataObjectRepository::addOrReplaceGsoapProxy(const st else if (ns == "witsml21") { wrapper = getWitsml2_1WrapperFromGsoapContext(datatype); } - else if (ns == "prodml22") { - wrapper = getProdml2_2WrapperFromGsoapContext(datatype); + else if (ns == "prodml23") { + wrapper = getProdml2_3WrapperFromGsoapContext(datatype); } else if (ns == "resqml22") { wrapper = getResqml2_2WrapperFromGsoapContext(datatype); @@ -960,10 +960,10 @@ COMMON_NS::AbstractObject* DataObjectRepository::createPartial(const std::string else if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(EML2_3_NS::TimeSeries) else if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(EML2_3_NS::VerticalCrs) } - else if (ns == "prodml22") { - if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(PRODML2_2_NS::FluidSystem) - else if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(PRODML2_2_NS::FluidCharacterization) - else if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(PRODML2_2_NS::TimeSeriesData) + else if (ns == "prodml23") { + if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(PRODML2_3_NS::FluidSystem) + else if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(PRODML2_3_NS::FluidCharacterization) + else if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(PRODML2_3_NS::TimeSeriesData) } else if (ns == "resqml20") { if CREATE_FESAPI_PARTIAL_WRAPPER_WITH_VERSION(RESQML2_0_1_NS::Activity) @@ -1333,11 +1333,17 @@ EML2_NS::AbstractLocal3dCrs* DataObjectRepository::createLocalTime3dCrs(const st } } +EML2_3_NS::VerticalCrs* DataObjectRepository::createVerticalCrs(const std::string& guid, const std::string& title, + uint64_t verticalEpsgCode, gsoap_eml2_3::eml23__LengthUom verticalUom, bool isUpOriented) +{ + return new EML2_3_NS::VerticalCrs(this, guid, title, verticalEpsgCode, verticalUom, isUpOriented); +} + RESQML2_NS::MdDatum* DataObjectRepository::createMdDatum(const std::string & guid, const std::string & title, EML2_NS::AbstractLocal3dCrs * locCrs, gsoap_eml2_3::eml23__ReferencePointKind originKind, double referenceLocationOrdinal1, double referenceLocationOrdinal2, double referenceLocationOrdinal3) { - return new RESQML2_0_1_NS::MdDatum(this, guid, title, locCrs, originKind, referenceLocationOrdinal1, referenceLocationOrdinal2, referenceLocationOrdinal3); + return new RESQML2_0_1_NS::MdDatum(this, guid, title, locCrs, originKind, referenceLocationOrdinal1, referenceLocationOrdinal2, referenceLocationOrdinal3); } //************************************ @@ -2804,14 +2810,14 @@ WITSML2_1_NS::WellboreMarker* DataObjectRepository::createWellboreMarker(WITSML2 //*************** PRODML ************* //************************************ -PRODML2_2_NS::FluidSystem* DataObjectRepository::createFluidSystem(const std::string & guid, +PRODML2_3_NS::FluidSystem* DataObjectRepository::createFluidSystem(const std::string & guid, const std::string & title, double temperatureValue, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom temperatureUom, double pressureValue, gsoap_eml2_3::eml23__PressureUom pressureUom, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom) { - return new PRODML2_2_NS::FluidSystem(this, + return new PRODML2_3_NS::FluidSystem(this, guid, title, temperatureValue, temperatureUom, pressureValue, pressureUom, @@ -2819,27 +2825,27 @@ PRODML2_2_NS::FluidSystem* DataObjectRepository::createFluidSystem(const std::st gasOilRatio, gasOilRatioUom); } -PRODML2_2_NS::FluidSystem* DataObjectRepository::createFluidSystem(const std::string & guid, +PRODML2_3_NS::FluidSystem* DataObjectRepository::createFluidSystem(const std::string & guid, const std::string & title, gsoap_eml2_3::eml23__ReferenceCondition referenceCondition, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom) { - return new PRODML2_2_NS::FluidSystem(this, + return new PRODML2_3_NS::FluidSystem(this, guid, title, referenceCondition, reservoirFluidKind, gasOilRatio, gasOilRatioUom); } -PRODML2_2_NS::FluidCharacterization* DataObjectRepository::createFluidCharacterization(const std::string & guid, const std::string & title) +PRODML2_3_NS::FluidCharacterization* DataObjectRepository::createFluidCharacterization(const std::string & guid, const std::string & title) { - return new PRODML2_2_NS::FluidCharacterization(this, guid, title); + return new PRODML2_3_NS::FluidCharacterization(this, guid, title); } -PRODML2_2_NS::TimeSeriesData* DataObjectRepository::createTimeSeriesData(const std::string & guid, const std::string & title) +PRODML2_3_NS::TimeSeriesData* DataObjectRepository::createTimeSeriesData(const std::string & guid, const std::string & title) { - return new PRODML2_2_NS::TimeSeriesData(this, guid, title); + return new PRODML2_3_NS::TimeSeriesData(this, guid, title); } EML2_NS::GraphicalInformationSet* DataObjectRepository::createGraphicalInformationSet(const std::string & guid, const std::string & title) @@ -2973,8 +2979,8 @@ GETTER_DATAOBJECTS_IMPL(WITSML2_1_NS::Log, Log) GETTER_DATAOBJECTS_IMPL(WITSML2_1_NS::ChannelSet, ChannelSet) GETTER_DATAOBJECTS_IMPL(WITSML2_1_NS::Channel, Channel) -GETTER_DATAOBJECTS_IMPL(PRODML2_2_NS::FluidSystem, FluidSystem) -GETTER_DATAOBJECTS_IMPL(PRODML2_2_NS::FluidCharacterization, FluidCharacterization) +GETTER_DATAOBJECTS_IMPL(PRODML2_3_NS::FluidSystem, FluidSystem) +GETTER_DATAOBJECTS_IMPL(PRODML2_3_NS::FluidCharacterization, FluidCharacterization) std::vector DataObjectRepository::getFaultSet() const { @@ -3411,13 +3417,13 @@ std::unique_ptr< COMMON_NS::AbstractObject > DataObjectRepository::getWitsml2_1W return wrapper; } -std::unique_ptr< COMMON_NS::AbstractObject > DataObjectRepository::getProdml2_2WrapperFromGsoapContext(const std::string & datatype) +std::unique_ptr< COMMON_NS::AbstractObject > DataObjectRepository::getProdml2_3WrapperFromGsoapContext(const std::string & datatype) { std::unique_ptr< COMMON_NS::AbstractObject > wrapper; - if CHECK_AND_GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(PRODML2_2_NS, FluidSystem, gsoap_eml2_3) - else if CHECK_AND_GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(PRODML2_2_NS, FluidCharacterization, gsoap_eml2_3) - else if CHECK_AND_GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(PRODML2_2_NS, TimeSeriesData, gsoap_eml2_3) + if CHECK_AND_GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(PRODML2_3_NS, FluidSystem, gsoap_eml2_3) + else if CHECK_AND_GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(PRODML2_3_NS, FluidCharacterization, gsoap_eml2_3) + else if CHECK_AND_GET_PRODML_2_1_FESAPI_WRAPPER_FROM_GSOAP_CONTEXT(PRODML2_3_NS, TimeSeriesData, gsoap_eml2_3) return wrapper; } diff --git a/src/common/DataObjectRepository.h b/src/common/DataObjectRepository.h index 8ae0c7ae2..e14069429 100644 --- a/src/common/DataObjectRepository.h +++ b/src/common/DataObjectRepository.h @@ -37,6 +37,11 @@ namespace EML2_NS class TimeSeries; } +namespace EML2_3_NS +{ + class VerticalCrs; +} + namespace RESQML2_NS { class AbstractFeature; @@ -146,7 +151,7 @@ namespace WITSML2_1_NS class Channel; } -namespace PRODML2_2_NS +namespace PRODML2_3_NS { class FluidSystem; class FluidCharacterization; @@ -203,7 +208,7 @@ namespace COMMON_NS RESQML2_0_1 = 0, EML2_0 = 1, EML2_3 = 2, - PRODML2_2 = 3, + PRODML2_3 = 3, RESQML2_2 = 4, WITSML2_1 = 5 }; @@ -220,7 +225,7 @@ namespace COMMON_NS */ DLL_IMPORT_OR_EXPORT void setDefaultStandard(EnergisticsStandard version) { switch (version) { - case EnergisticsStandard::PRODML2_2: + case EnergisticsStandard::PRODML2_3: defaultProdmlVersion = version; break; case EnergisticsStandard::RESQML2_0_1: case EnergisticsStandard::RESQML2_2: @@ -632,8 +637,8 @@ namespace COMMON_NS GETTER_DATAOBJECTS(WITSML2_1_NS::ChannelSet, ChannelSet) GETTER_DATAOBJECTS(WITSML2_1_NS::Channel, Channel) - GETTER_DATAOBJECTS(PRODML2_2_NS::FluidSystem, FluidSystem) - GETTER_DATAOBJECTS(PRODML2_2_NS::FluidCharacterization, FluidCharacterization) + GETTER_DATAOBJECTS(PRODML2_3_NS::FluidSystem, FluidSystem) + GETTER_DATAOBJECTS(PRODML2_3_NS::FluidCharacterization, FluidCharacterization) /** * Gets a data object from the repository by means of its uuid. If several data object @@ -1067,9 +1072,27 @@ namespace COMMON_NS gsoap_resqml2_0_1::eml20__LengthUom verticalUom, uint64_t verticalEpsgCode, bool isUpOriented); /** - * @brief Creates a measured depth (MD) datum into this repository + * @brief Creates a vertical CRS which is identified by means of an EPSG code. + * Resulting vertical CRS is stored into this repository * - * @exception std::invalid_argument If the default RESQML version is unrecognized. + * @exception std::invalid_argument If verticalEpsgCode == 0. + * + * @param guid The guid to set to the local 3d CRS. If empty then a new guid + * will be generated. + * @param title The title to set to the local 3d CRS. If empty then \"unknown\" + * title will be set. + * @param verticalUom The unit of measure of the vertical axis of this instance. + * @param verticalEpsgCode The EPSG code of the associated vertical CRS. + * @param isUpOriented If true, indicates that this depth CRS is actually an elevation + * CRS. + * + * @returns A pointer to the new vertical CRS. + */ + DLL_IMPORT_OR_EXPORT EML2_3_NS::VerticalCrs* createVerticalCrs(const std::string& guid, const std::string& title, + uint64_t verticalEpsgCode, gsoap_eml2_3::eml23__LengthUom verticalUom, bool isUpOriented); + + /** + * @brief Creates a measured depth (MD) datum into this repository * * @param guid The guid to set to the MD datum. If empty then a new * guid will be generated. @@ -3482,11 +3505,11 @@ namespace COMMON_NS * * @returns A pointer to the new fluid system. */ - DLL_IMPORT_OR_EXPORT PRODML2_2_NS::FluidSystem* createFluidSystem(const std::string & guid, + DLL_IMPORT_OR_EXPORT PRODML2_3_NS::FluidSystem* createFluidSystem(const std::string & guid, const std::string & title, double temperatureValue, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom temperatureUom, double pressureValue, gsoap_eml2_3::eml23__PressureUom pressureUom, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom); /** @@ -3503,10 +3526,10 @@ namespace COMMON_NS * * @returns A pointer to the new fluid system. */ - DLL_IMPORT_OR_EXPORT PRODML2_2_NS::FluidSystem* createFluidSystem(const std::string & guid, + DLL_IMPORT_OR_EXPORT PRODML2_3_NS::FluidSystem* createFluidSystem(const std::string & guid, const std::string & title, gsoap_eml2_3::eml23__ReferenceCondition referenceCondition, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom); /** @@ -3519,7 +3542,7 @@ namespace COMMON_NS * * @returns A pointer to the new fluid characterization. */ - DLL_IMPORT_OR_EXPORT PRODML2_2_NS::FluidCharacterization* createFluidCharacterization(const std::string & guid, const std::string & title); + DLL_IMPORT_OR_EXPORT PRODML2_3_NS::FluidCharacterization* createFluidCharacterization(const std::string & guid, const std::string & title); /** * Creates a time series data into this repository @@ -3531,7 +3554,7 @@ namespace COMMON_NS * * @returns A pointer to the new time series data. */ - DLL_IMPORT_OR_EXPORT PRODML2_2_NS::TimeSeriesData* createTimeSeriesData(const std::string & guid, const std::string & title); + DLL_IMPORT_OR_EXPORT PRODML2_3_NS::TimeSeriesData* createTimeSeriesData(const std::string & guid, const std::string & title); //************** EML2.3 **************** @@ -3647,7 +3670,7 @@ namespace COMMON_NS std::unique_ptr hdfProxyFactory; EnergisticsStandard defaultEmlVersion = EnergisticsStandard::EML2_0; - EnergisticsStandard defaultProdmlVersion = EnergisticsStandard::PRODML2_2; + EnergisticsStandard defaultProdmlVersion = EnergisticsStandard::PRODML2_3; EnergisticsStandard defaultResqmlVersion = EnergisticsStandard::RESQML2_0_1; EnergisticsStandard defaultWitsmlVersion = EnergisticsStandard::WITSML2_1; @@ -3669,7 +3692,7 @@ namespace COMMON_NS std::unique_ptr< COMMON_NS::AbstractObject > getEml2_3WrapperFromGsoapContext(const std::string & datatype); std::unique_ptr< COMMON_NS::AbstractObject > getWitsml2_1WrapperFromGsoapContext(const std::string & datatype); - std::unique_ptr< COMMON_NS::AbstractObject > getProdml2_2WrapperFromGsoapContext(const std::string & datatype); + std::unique_ptr< COMMON_NS::AbstractObject > getProdml2_3WrapperFromGsoapContext(const std::string & datatype); /** * Get the error code of the current gsoap context. diff --git a/src/common/NumberArrayStatistics.h b/src/common/NumberArrayStatistics.h new file mode 100644 index 000000000..ca23e91c6 --- /dev/null +++ b/src/common/NumberArrayStatistics.h @@ -0,0 +1,297 @@ +/*----------------------------------------------------------------------- +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"; you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. +-----------------------------------------------------------------------*/ +#pragma once + +#if defined(__clang__) +#elif defined(__GNUG__) && __GNUC__ > 12 // https://stackoverflow.com/questions/31509434/gcc-does-not-honor-pragma-gcc-diagnostic-to-silence-warnings +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmisleading-indentation" +#endif +#include "../proxies/gsoap_eml2_3H.h" +#if defined(__clang__) +#elif defined(__GNUG__) && __GNUC__ > 12 +#pragma GCC diagnostic pop +#endif + +#include "../nsDefinitions.h" + +#if defined(_WIN32) && !defined(FESAPI_STATIC) +#if defined(FesapiCpp_EXPORTS) || defined(FesapiCppUnderDev_EXPORTS) +#define DLL_IMPORT_OR_EXPORT __declspec(dllexport) +#else +#define DLL_IMPORT_OR_EXPORT __declspec(dllimport) +#endif +#else +#define DLL_IMPORT_OR_EXPORT +#endif + +#include +#include +#include + +namespace COMMON_NS +{ + template class NumberArrayStatistics + { + static_assert(std::is_arithmetic_v, "Template parameter T must be an integral or floating-point type."); + static_assert(!std::is_same_v, "bool is not allowed"); + public: + + NumberArrayStatistics() = default; + + /* + * Construct statistics by computing them from an array of values + * + * @param values The array of values which the computation is based on. + * @param valueCount The count of values in the array. + * @param valueCountPerIndexableElement The number of values per indexable element. It is 1 for a scalar property. + * @param nullVal The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + NumberArrayStatistics(T const* values, size_t valueCount, size_t valueCountPerIndexableElement = 1, T nullVal = getDefaultNullValue()) + : nullValue(nullVal) + { + computeFrom(values, valueCount, valueCountPerIndexableElement); + } + + void computeFrom(T const* values, size_t valueCount, size_t valueCountPerIndexableElement) { + // clear existing values and set the correct dimensions + validValueCount = std::vector(valueCountPerIndexableElement); + minimumValue = std::vector(valueCountPerIndexableElement); + maximumValue = std::vector(valueCountPerIndexableElement); + valuesMean = std::vector(valueCountPerIndexableElement); + valuesMedian = std::vector(valueCountPerIndexableElement); + valuesMode = std::vector(valueCountPerIndexableElement); + modePercentage = std::vector(valueCountPerIndexableElement); + valuesStandardDeviation = std::vector(valueCountPerIndexableElement); + + for (size_t j = 0; j < valueCountPerIndexableElement; ++j) { + std::map mapView; + for (size_t i = j; i < valueCount; i += valueCountPerIndexableElement) { + if constexpr (std::is_integral_v) { + if (values[i] != nullValue) { + ++validValueCount[j]; + ++mapView[values[i]]; + } + } + else { + if (!std::isnan(values[i])) { + ++validValueCount[j]; + ++mapView[values[i]]; + } + } + } + if (mapView.empty()) { + continue; + } + minimumValue[j] = mapView.begin()->first; + maximumValue[j] = mapView.rbegin()->first; + + size_t maxCount = 0; + size_t mid1 = (validValueCount[j] - 1) / 2; + size_t mid2 = validValueCount[j] / 2; + size_t currentCount = 0; + T median1 = 0, median2 = 0; + bool found1 = false, found2 = false; + for (const auto& pair : mapView) { + //mode + if (pair.second > maxCount) { + maxCount = pair.second; + valuesMode[j] = pair.first; + } + + //median + if (!found2) { + currentCount += pair.second; + if (!found1 && currentCount > mid1) { + median1 = pair.first; + found1 = true; + } + if (currentCount > mid2) { + median2 = pair.first; + found2 = true; + } + } + + //mean + valuesMean[j] += (pair.second * pair.first) / validValueCount[j]; + } + valuesMedian[j] = (validValueCount[j] % 2 == 0) ? (median1 + median2) / 2.0 : median2; + modePercentage[j] = static_cast(maxCount) / validValueCount[j]; + + + // Standard Deviation + double variance = 0.0; + for (const auto& pair : mapView) { + double diff = static_cast(pair.first) - valuesMean[j]; + variance += pair.second * diff * diff; + } + valuesStandardDeviation[j] = std::sqrt(variance / validValueCount[j]); + } + } + + T getNullValue() const { + return nullValue; + } + + uint64_t getValidValueCount(size_t valueIndex = 0) const { + return validValueCount.at(valueIndex); + } + + uint64_t getValidValueCountSize() const { + return validValueCount.size(); + } + + T getMinimum(size_t valueIndex = 0) const { + return minimumValue.at(valueIndex); + } + + uint64_t getMinimumSize() const { + return minimumValue.size(); + } + + T getMaximum(size_t valueIndex = 0) const { + return maximumValue.at(valueIndex); + } + + uint64_t getMaximumSize() const { + return maximumValue.size(); + } + + double getMean(size_t valueIndex = 0) const { + return valuesMean.at(valueIndex); + } + + uint64_t getMeanSize() const { + return valuesMean.size(); + } + + double getMedian(size_t valueIndex = 0) const { + return valuesMedian.at(valueIndex); + } + + uint64_t getMedianSize() const { + return valuesMedian.size(); + } + + T getMode(size_t valueIndex = 0) const { + return valuesMode.at(valueIndex); + } + + uint64_t getModeSize() const { + return valuesMode.size(); + } + + double getModePercentage(size_t valueIndex = 0) const { + return modePercentage.at(valueIndex); + } + + uint64_t getModePercentageSize() const { + return modePercentage.size(); + } + + double getStandardDeviation(size_t valueIndex = 0) const { + return valuesStandardDeviation.at(valueIndex); + } + + uint64_t getStandardDeviationSize() const { + return valuesStandardDeviation.size(); + } + + void setNullValue(T value) { + nullValue = value; + } + + void setValidValueCount(uint64_t value, size_t valueIndex = 0) { + while (validValueCount.size() <= valueIndex) { + validValueCount.push_back((std::numeric_limits::max)()); + } + validValueCount[valueIndex] = value; + } + + void setMinimum(T value, size_t valueIndex = 0) { + while (minimumValue.size() <= valueIndex) { + minimumValue.push_back(getDefaultNullValue()); + } + minimumValue[valueIndex] = value; + } + + void setMaximum(T value, size_t valueIndex = 0) { + while (maximumValue.size() <= valueIndex) { + maximumValue.push_back(getDefaultNullValue()); + } + maximumValue[valueIndex] = value; + } + + void setMean(double value, size_t valueIndex = 0) { + while (valuesMean.size() <= valueIndex) { + valuesMean.push_back(std::numeric_limits::quiet_NaN()); + } + valuesMean[valueIndex] = value; + } + + void setMedian(double value, size_t valueIndex = 0) { + while (valuesMedian.size() <= valueIndex) { + valuesMedian.push_back(std::numeric_limits::quiet_NaN()); + } + valuesMedian[valueIndex] = value; + } + + void setMode(T value, size_t valueIndex = 0) { + while (valuesMode.size() <= valueIndex) { + valuesMode.push_back(getDefaultNullValue()); + } + valuesMode[valueIndex] = value; + } + + void setModePercentage(double value, size_t valueIndex = 0) { + while (valuesMean.size() <= valueIndex) { + valuesMean.push_back(std::numeric_limits::quiet_NaN()); + } + valuesMean[valueIndex] = value; + } + + void setStandardDeviation(double value, size_t valueIndex = 0) { + while (valuesStandardDeviation.size() <= valueIndex) { + valuesStandardDeviation.push_back(std::numeric_limits::quiet_NaN()); + } + valuesStandardDeviation[valueIndex] = value; + } + + private: + + T nullValue = getDefaultNullValue(); + std::vector validValueCount; + std::vector minimumValue; + std::vector maximumValue; + std::vector valuesMean; + std::vector valuesMedian; + std::vector valuesMode; + std::vector modePercentage; + std::vector valuesStandardDeviation; + + static constexpr T getDefaultNullValue() { + if constexpr (std::is_floating_point::value) { + return std::numeric_limits::quiet_NaN(); + } + else { + return (std::numeric_limits::max)(); + } + } + }; +} diff --git a/src/eml2/AbstractHdfProxy.cpp b/src/eml2/AbstractHdfProxy.cpp index 9dde8b479..164738b1f 100644 --- a/src/eml2/AbstractHdfProxy.cpp +++ b/src/eml2/AbstractHdfProxy.cpp @@ -38,5 +38,5 @@ void AbstractHdfProxy::initGsoapProxy(COMMON_NS::DataObjectRepository * repo, co uint64_t AbstractHdfProxy::getElementCount(const std::string & datasetName) { auto elementCountPerDim = getElementCountPerDimension(datasetName); - return std::accumulate(elementCountPerDim.begin(), elementCountPerDim.end(), 1, std::multiplies()); + return std::accumulate(elementCountPerDim.begin(), elementCountPerDim.end(), 1, std::multiplies()); } diff --git a/src/eml2/HdfProxy.cpp b/src/eml2/HdfProxy.cpp index 813d75bdd..5c6aac12e 100644 --- a/src/eml2/HdfProxy.cpp +++ b/src/eml2/HdfProxy.cpp @@ -254,7 +254,7 @@ void HdfProxy::close() } } -void HdfProxy::readArrayNdOfValues(const std::string & datasetName, void* values, hid_t datatype) +void HdfProxy::readArrayNdOfValues(const std::string& datasetName, void* values, hid_t datatype) { if (!isOpened()) { open(); @@ -264,9 +264,33 @@ void HdfProxy::readArrayNdOfValues(const std::string & datasetName, void* values if (dataset < 0) { throw invalid_argument("The HDF5 dataset " + datasetName + " could not be opened."); } + + // check if the dataset is empty + hid_t dataspace = H5Dget_space(dataset); + if (dataspace < 0) { + H5Dclose(dataset); + throw invalid_argument("The dataspace for the dataset " + datasetName + " could not be opened."); + } + hssize_t hdf5ValueCount = H5Sget_simple_extent_npoints(dataspace); + if (hdf5ValueCount < 0) { + H5Sclose(dataspace); + H5Dclose(dataset); + throw invalid_argument("The number of values of the dataset " + datasetName + " could not be read."); + } + else if (hdf5ValueCount == 0) { + H5Sclose(dataspace); + H5Dclose(dataset); + throw invalid_argument("The dataset " + datasetName + " is empty and consequently cannot be read."); + } + if (H5Sclose(dataspace) < 0) { + throw invalid_argument("Cannot close the HDF5 dataspace of the HDF5 dataset " + datasetName); + } + hid_t readingError = H5Dread (dataset, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, values); - H5Dclose(dataset); + if (H5Dclose(dataset) < 0) { + throw invalid_argument("Cannot close the HDF5 dataset " + datasetName); + } if (readingError < 0) { throw invalid_argument("The HDF5 dataset " + datasetName + " could not be read."); } diff --git a/src/eml2/TimeSeries.cpp b/src/eml2/TimeSeries.cpp index 4d28a43ee..67efb3cfd 100644 --- a/src/eml2/TimeSeries.cpp +++ b/src/eml2/TimeSeries.cpp @@ -27,16 +27,22 @@ using namespace EML2_NS; void TimeSeries::pushBackTimestamp(time_t timestamp) { - std::tm tmConversion = timeTools::to_calendar_time(timeTools::from_time_t(timestamp)); + const std::tm tmConversion = timeTools::to_calendar_time(timeTools::from_time_t(timestamp)); pushBackTimestamp(tmConversion); } time_t TimeSeries::getTimestamp(uint64_t index) const { - tm temp = getTimestampAsTimeStructure(index); + const tm temp = getTimestampAsTimeStructure(index); return timeTools::timegm(temp); } +std::string TimeSeries::getTimestampAsIsoString(uint64_t index, bool withTime) const +{ + const time_t temp = getTimestamp(index); + return timeTools::convertUnixTimestampToIso(temp, withTime); +} + std::vector TimeSeries::getPropertySet() const { return getRepository()->getSourceObjects(this); diff --git a/src/eml2/TimeSeries.h b/src/eml2/TimeSeries.h index 623bf60e4..eddc3b008 100644 --- a/src/eml2/TimeSeries.h +++ b/src/eml2/TimeSeries.h @@ -104,6 +104,19 @@ namespace EML2_NS */ DLL_IMPORT_OR_EXPORT time_t getTimestamp(uint64_t index) const; + /** + * Gets a timestamp as an ISO string at a particular index of this time series. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::out_of_range If @p index is out of range. + * + * @param index Zero-based index of the timestamp we look for. + * @param withTime Include or not the time in the output. + * + * @returns The timestamp as an ISO string at position @p index. + */ + DLL_IMPORT_OR_EXPORT std::string getTimestampAsIsoString(uint64_t index, bool withTime = true) const; + /** * Gets a timestamp as a time structure at a particular index of this time series. It allows to * read dates from 1900-01-01T00:00:00. diff --git a/src/prodml2_2/CMakeLists.txt b/src/prodml2_2/CMakeLists.txt deleted file mode 100644 index efc69cb8e..000000000 --- a/src/prodml2_2/CMakeLists.txt +++ /dev/null @@ -1,17 +0,0 @@ -set(FESAPI_PRODML_2_2_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CompositionalSpecification.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CorrelationViscosityBubblePointSpecification.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CorrelationViscositySpecification.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/FluidCharacterization.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/FluidSystem.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/FrictionTheorySpecification.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/PvtSpecification.cpp - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/TimeSeriesData.cpp ) -set(FESAPI_PRODML_2_2_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CompositionalSpecification.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CompositionalViscositySpecification.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CorrelationViscosityBubblePointSpecification.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/CorrelationViscositySpecification.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/FluidCharacterization.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/FluidSystem.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/FrictionTheorySpecification.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/PvtSpecification.h - ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_2}/TimeSeriesData.h ) diff --git a/src/prodml2_3/CMakeLists.txt b/src/prodml2_3/CMakeLists.txt new file mode 100644 index 000000000..5ca5113d9 --- /dev/null +++ b/src/prodml2_3/CMakeLists.txt @@ -0,0 +1,17 @@ +set(FESAPI_PRODML_2_3_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CompositionalSpecification.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CorrelationViscosityBubblePointSpecification.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CorrelationViscositySpecification.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/FluidCharacterization.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/FluidSystem.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/FrictionTheorySpecification.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/PvtSpecification.cpp + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/TimeSeriesData.cpp ) +set(FESAPI_PRODML_2_3_HEADERS ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CompositionalSpecification.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CompositionalViscositySpecification.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CorrelationViscosityBubblePointSpecification.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/CorrelationViscositySpecification.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/FluidCharacterization.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/FluidSystem.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/FrictionTheorySpecification.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/PvtSpecification.h + ${CMAKE_CURRENT_SOURCE_DIR}/${PRODML_PREFIX_2_3}/TimeSeriesData.h ) diff --git a/src/prodml2_2/CompositionalSpecification.cpp b/src/prodml2_3/CompositionalSpecification.cpp similarity index 79% rename from src/prodml2_2/CompositionalSpecification.cpp rename to src/prodml2_3/CompositionalSpecification.cpp index 9390921e1..c3f7f9651 100644 --- a/src/prodml2_2/CompositionalSpecification.cpp +++ b/src/prodml2_3/CompositionalSpecification.cpp @@ -18,25 +18,25 @@ under the License. -----------------------------------------------------------------------*/ #include "CompositionalSpecification.h" -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; -void CompositionalSpecification::setMixingRule(gsoap_eml2_3::prodml22__MixingRule mixingRule) +void CompositionalSpecification::setMixingRule(gsoap_eml2_3::prodml23__MixingRule mixingRule) { - if (static_cast(gsoapProxy)->MixingRule == nullptr) { - static_cast(gsoapProxy)->MixingRule = soap_new_prodml22__MixingRule(gsoapProxy->soap); + if (static_cast(gsoapProxy)->MixingRule == nullptr) { + static_cast(gsoapProxy)->MixingRule = soap_new_prodml23__MixingRule(gsoapProxy->soap); } - *static_cast(gsoapProxy)->MixingRule = mixingRule; + *static_cast(gsoapProxy)->MixingRule = mixingRule; } void CompositionalSpecification::pushBackBinaryInteractionCoefficient(double value, const std::string & fluidComponent1Reference, const std::string & fluidComponent2Reference) { - if (static_cast(gsoapProxy)->BinaryInteractionCoefficientSet == nullptr) { - static_cast(gsoapProxy)->BinaryInteractionCoefficientSet = soap_new_prodml22__BinaryInteractionCoefficientSet(gsoapProxy->soap); + if (static_cast(gsoapProxy)->BinaryInteractionCoefficientSet == nullptr) { + static_cast(gsoapProxy)->BinaryInteractionCoefficientSet = soap_new_prodml23__BinaryInteractionCoefficientSet(gsoapProxy->soap); } - prodml22__BinaryInteractionCoefficient* coefficent = soap_new_prodml22__BinaryInteractionCoefficient(gsoapProxy->soap); - static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient.push_back(coefficent); + prodml23__BinaryInteractionCoefficient* coefficent = soap_new_prodml23__BinaryInteractionCoefficient(gsoapProxy->soap); + static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient.push_back(coefficent); coefficent->__item = value; coefficent->fluidComponent1Reference = fluidComponent1Reference; if (!fluidComponent2Reference.empty()) { @@ -47,30 +47,30 @@ void CompositionalSpecification::pushBackBinaryInteractionCoefficient(double val void CompositionalSpecification::pushBackFluidComponentProperty(const std::string & fluidComponentReference) { - if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr) { - static_cast(gsoapProxy)->ComponentPropertySet = soap_new_prodml22__ComponentPropertySet(gsoapProxy->soap); + if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr) { + static_cast(gsoapProxy)->ComponentPropertySet = soap_new_prodml23__ComponentPropertySet(gsoapProxy->soap); } - prodml22__FluidComponentProperty* prop = soap_new_prodml22__FluidComponentProperty(gsoapProxy->soap); - static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty.push_back(prop); + prodml23__FluidComponentProperty* prop = soap_new_prodml23__FluidComponentProperty(gsoapProxy->soap); + static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty.push_back(prop); prop->fluidComponentReference = fluidComponentReference; } #define SETTER_FLUID_COMPONENT_PROPERTY_OPTIONAL_ATTRIBUTE_IMPL(vectorName, attributeName, attributeDatatype, constructor)\ void CompositionalSpecification::set##vectorName##attributeName(unsigned int index, const attributeDatatype& value)\ {\ - if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr || index >= static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName = constructor(gsoapProxy->soap);\ - *static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName = value;\ + if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr || index >= static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName = constructor(gsoapProxy->soap);\ + *static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName = value;\ } #define SETTER_FLUID_COMPONENT_PROPERTY_MEASURE_ATTRIBUTE_IMPL(vectorName, attributeName, uomDatatype, constructor)\ void CompositionalSpecification::set##vectorName##attributeName(unsigned int index, double value, uomDatatype uom)\ {\ - if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr || index >= static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName = constructor(gsoapProxy->soap);\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->__item = value;\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->uom = uom;\ + if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr || index >= static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName = constructor(gsoapProxy->soap);\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->__item = value;\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->uom = uom;\ } SETTER_FLUID_COMPONENT_PROPERTY_OPTIONAL_ATTRIBUTE_IMPL(FluidComponentProperty, AcentricFactor, double, soap_new_double) diff --git a/src/prodml2_2/CompositionalSpecification.h b/src/prodml2_3/CompositionalSpecification.h similarity index 88% rename from src/prodml2_2/CompositionalSpecification.h rename to src/prodml2_3/CompositionalSpecification.h index 33374f89c..16bff65a4 100644 --- a/src/prodml2_2/CompositionalSpecification.h +++ b/src/prodml2_3/CompositionalSpecification.h @@ -32,13 +32,13 @@ under the License. #define GETTER_AND_SETTER_FLUID_COMPONENT_PROPERTY_OPTIONAL_ATTRIBUTE(vectorName, attributeName, attributeDatatype)\ DLL_IMPORT_OR_EXPORT void set##vectorName##attributeName(unsigned int index, const attributeDatatype& value);\ DLL_IMPORT_OR_EXPORT bool has##vectorName##attributeName(unsigned int index) const {\ - return static_cast(gsoapProxy)->ComponentPropertySet != nullptr &&\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size() > index &&\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName != nullptr;\ + return static_cast(gsoapProxy)->ComponentPropertySet != nullptr &&\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size() > index &&\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName != nullptr;\ }\ DLL_IMPORT_OR_EXPORT attributeDatatype get##vectorName##attributeName(unsigned int index) const {\ if (!has##vectorName##attributeName(index)) { throw std::out_of_range("The index is out of range"); }\ - return *static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName;\ + return *static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName;\ } /** @@ -51,20 +51,20 @@ under the License. #define GETTER_AND_SETTER_FLUID_COMPONENT_PROPERTY_MEASURE_ATTRIBUTE(vectorName, attributeName, uomDatatype)\ DLL_IMPORT_OR_EXPORT void set##vectorName##attributeName(unsigned int index, double value, uomDatatype uom);\ DLL_IMPORT_OR_EXPORT double has##vectorName##attributeName(unsigned int index) const {\ - return static_cast(gsoapProxy)->ComponentPropertySet != nullptr &&\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size() > index &&\ - static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName != nullptr;\ + return static_cast(gsoapProxy)->ComponentPropertySet != nullptr &&\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName.size() > index &&\ + static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName != nullptr;\ }\ DLL_IMPORT_OR_EXPORT double get##vectorName##attributeName##Value(unsigned int index) const {\ if (!has##vectorName##attributeName(index)) { throw std::out_of_range("The index is out of range"); }\ - return static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->__item;\ + return static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->__item;\ }\ DLL_IMPORT_OR_EXPORT uomDatatype get##vectorName##attributeName##Uom(unsigned int index) const {\ if (!has##vectorName##attributeName(index)) { throw std::out_of_range("The index is out of range"); }\ - return static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->uom;\ + return static_cast(gsoapProxy)->ComponentPropertySet->vectorName[index]->attributeName->uom;\ } -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A compositional specification. */ class CompositionalSpecification : public PvtSpecification @@ -76,7 +76,7 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - CompositionalSpecification(gsoap_eml2_3::prodml22__AbstractCompositionalModel* fromGsoap):PvtSpecification(fromGsoap) {} + CompositionalSpecification(gsoap_eml2_3::prodml23__AbstractCompositionalModel* fromGsoap):PvtSpecification(fromGsoap) {} /** Destructor does nothing since the memory is managed by the gsoap context. */ virtual ~CompositionalSpecification() = default; @@ -86,7 +86,7 @@ namespace PRODML2_2_NS * * @returns True if mixing rule, false if not. */ - DLL_IMPORT_OR_EXPORT bool hasMixingRule() const { return static_cast(gsoapProxy)->MixingRule != nullptr; } + DLL_IMPORT_OR_EXPORT bool hasMixingRule() const { return static_cast(gsoapProxy)->MixingRule != nullptr; } /** * Gets mixing rule @@ -95,9 +95,9 @@ namespace PRODML2_2_NS * * @returns The mixing rule. */ - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml22__MixingRule getMixingRule() const { + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml23__MixingRule getMixingRule() const { if (!hasMixingRule()) { throw std::invalid_argument("There is no mixing rule to get"); } - return *static_cast(gsoapProxy)->MixingRule; + return *static_cast(gsoapProxy)->MixingRule; } /** @@ -105,7 +105,7 @@ namespace PRODML2_2_NS * * @param mixingRule The mixing rule. */ - DLL_IMPORT_OR_EXPORT void setMixingRule(gsoap_eml2_3::prodml22__MixingRule mixingRule); + DLL_IMPORT_OR_EXPORT void setMixingRule(gsoap_eml2_3::prodml23__MixingRule mixingRule); /** * Gets binary interaction coefficient count @@ -115,11 +115,11 @@ namespace PRODML2_2_NS * @returns The binary interaction coefficient count. */ DLL_IMPORT_OR_EXPORT unsigned int getBinaryInteractionCoefficientCount() const { - if (static_cast(gsoapProxy)->BinaryInteractionCoefficientSet == nullptr) { + if (static_cast(gsoapProxy)->BinaryInteractionCoefficientSet == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient.size(); + size_t count = static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient.size(); if (count > (std::numeric_limits::max)()) { throw std::out_of_range("There are too much coefficient"); } @@ -141,7 +141,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient[index]->fluidComponent1Reference; + return static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient[index]->fluidComponent1Reference; } /** @@ -159,7 +159,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient[index]->fluidComponent2Reference != nullptr; + return static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient[index]->fluidComponent2Reference != nullptr; } /** @@ -177,7 +177,7 @@ namespace PRODML2_2_NS throw std::out_of_range("There is no FluidComponent2Reference at this index"); } - return *static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient[index]->fluidComponent2Reference; + return *static_cast(gsoapProxy)->BinaryInteractionCoefficientSet->BinaryInteractionCoefficient[index]->fluidComponent2Reference; } /** @@ -197,11 +197,11 @@ namespace PRODML2_2_NS * @returns The fluid component property count. */ DLL_IMPORT_OR_EXPORT unsigned int getFluidComponentPropertyCount() const { - if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr) { + if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty.size(); + size_t count = static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty.size(); if (count > (std::numeric_limits::max)()) { throw std::out_of_range("There are too much component property"); } @@ -225,12 +225,12 @@ namespace PRODML2_2_NS * @returns The fluid component property fluid component reference. */ DLL_IMPORT_OR_EXPORT std::string getFluidComponentPropertyFluidComponentReference(unsigned int index) const{ - if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr || - static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty.size() <= index) { + if (static_cast(gsoapProxy)->ComponentPropertySet == nullptr || + static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty.size() <= index) { throw std::out_of_range("The FluidComponentProperty at this index does not exist"); } - return static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty[index]->fluidComponentReference; + return static_cast(gsoapProxy)->ComponentPropertySet->FluidComponentProperty[index]->fluidComponentReference; } GETTER_AND_SETTER_FLUID_COMPONENT_PROPERTY_OPTIONAL_ATTRIBUTE(FluidComponentProperty, AcentricFactor, double) diff --git a/src/prodml2_2/CompositionalViscositySpecification.h b/src/prodml2_3/CompositionalViscositySpecification.h similarity index 85% rename from src/prodml2_2/CompositionalViscositySpecification.h rename to src/prodml2_3/CompositionalViscositySpecification.h index d63b77f3c..a37e2c175 100644 --- a/src/prodml2_2/CompositionalViscositySpecification.h +++ b/src/prodml2_3/CompositionalViscositySpecification.h @@ -20,7 +20,7 @@ under the License. #include "CompositionalSpecification.h" -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A compositional viscosity specification. */ class CompositionalViscositySpecification : public CompositionalSpecification @@ -32,7 +32,7 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - CompositionalViscositySpecification(gsoap_eml2_3::prodml22__AbstractCompositionalViscosityModel* fromGsoap) :CompositionalSpecification(fromGsoap) {} + CompositionalViscositySpecification(gsoap_eml2_3::prodml23__AbstractCompositionalViscosityModel* fromGsoap) :CompositionalSpecification(fromGsoap) {} /** Destructor does nothing since the memory is managed by the gsoap context. */ virtual ~CompositionalViscositySpecification() = default; @@ -42,8 +42,8 @@ namespace PRODML2_2_NS * * @returns The thermodynamic phase. */ - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml22__ThermodynamicPhase getThermodynamicPhase() const { - return static_cast(gsoapProxy)->phase; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml23__ThermodynamicPhase getThermodynamicPhase() const { + return static_cast(gsoapProxy)->phase; } /** @@ -51,8 +51,8 @@ namespace PRODML2_2_NS * * @param phase The phase. */ - DLL_IMPORT_OR_EXPORT void setThermodynamicPhase(gsoap_eml2_3::prodml22__ThermodynamicPhase phase) { - static_cast(gsoapProxy)->phase = phase; + DLL_IMPORT_OR_EXPORT void setThermodynamicPhase(gsoap_eml2_3::prodml23__ThermodynamicPhase phase) { + static_cast(gsoapProxy)->phase = phase; } }; } diff --git a/src/prodml2_2/CorrelationViscosityBubblePointSpecification.cpp b/src/prodml2_3/CorrelationViscosityBubblePointSpecification.cpp similarity index 87% rename from src/prodml2_2/CorrelationViscosityBubblePointSpecification.cpp rename to src/prodml2_3/CorrelationViscosityBubblePointSpecification.cpp index 2213c341b..11649f0a6 100644 --- a/src/prodml2_2/CorrelationViscosityBubblePointSpecification.cpp +++ b/src/prodml2_3/CorrelationViscosityBubblePointSpecification.cpp @@ -18,9 +18,9 @@ under the License. -----------------------------------------------------------------------*/ #include "CorrelationViscosityBubblePointSpecification.h" -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; -SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscosityBubblePointSpecification, gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, DeadOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom, gsoap_eml2_3::soap_new_eml23__DynamicViscosityMeasure) -SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscosityBubblePointSpecification, gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, BubblePointOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom, gsoap_eml2_3::soap_new_eml23__DynamicViscosityMeasure) -SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscosityBubblePointSpecification, gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, SolutionGasOilRatio, std::string, gsoap_eml2_3::soap_new_eml23__VolumePerVolumeMeasure) +SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscosityBubblePointSpecification, gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, DeadOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom, gsoap_eml2_3::soap_new_eml23__DynamicViscosityMeasure) +SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscosityBubblePointSpecification, gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, BubblePointOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom, gsoap_eml2_3::soap_new_eml23__DynamicViscosityMeasure) +SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscosityBubblePointSpecification, gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, SolutionGasOilRatio, std::string, gsoap_eml2_3::soap_new_eml23__VolumePerVolumeMeasure) diff --git a/src/prodml2_2/CorrelationViscosityBubblePointSpecification.h b/src/prodml2_3/CorrelationViscosityBubblePointSpecification.h similarity index 87% rename from src/prodml2_2/CorrelationViscosityBubblePointSpecification.h rename to src/prodml2_3/CorrelationViscosityBubblePointSpecification.h index d968cec9c..cad5cb29d 100644 --- a/src/prodml2_2/CorrelationViscosityBubblePointSpecification.h +++ b/src/prodml2_3/CorrelationViscosityBubblePointSpecification.h @@ -19,7 +19,7 @@ under the License. #pragma once #include "CorrelationViscositySpecification.h" -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A correlation viscosity bubble point specification. */ class CorrelationViscosityBubblePointSpecification : public CorrelationViscositySpecification @@ -31,13 +31,13 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - CorrelationViscosityBubblePointSpecification(gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel* fromGsoap): CorrelationViscositySpecification(fromGsoap){} + CorrelationViscosityBubblePointSpecification(gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel* fromGsoap): CorrelationViscositySpecification(fromGsoap){} /** Destructor does nothing since the memory is managed by the gsoap context. */ ~CorrelationViscosityBubblePointSpecification() = default; - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, DeadOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom) - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, BubblePointOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom) - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, SolutionGasOilRatio, std::string) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, DeadOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, BubblePointOilViscosity, gsoap_eml2_3::eml23__DynamicViscosityUom) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__AbstractCorrelationViscosityBubblePointModel, gsoapProxy, SolutionGasOilRatio, std::string) }; } diff --git a/src/prodml2_2/CorrelationViscositySpecification.cpp b/src/prodml2_3/CorrelationViscositySpecification.cpp similarity index 92% rename from src/prodml2_2/CorrelationViscositySpecification.cpp rename to src/prodml2_3/CorrelationViscositySpecification.cpp index 02c8dabe0..4c57c7be3 100644 --- a/src/prodml2_2/CorrelationViscositySpecification.cpp +++ b/src/prodml2_3/CorrelationViscositySpecification.cpp @@ -18,7 +18,7 @@ under the License. -----------------------------------------------------------------------*/ #include "CorrelationViscositySpecification.h" -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; -SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscositySpecification, gsoap_eml2_3::prodml22__AbstractCorrelationViscosityModel, gsoapProxy, MolecularWeight, gsoap_eml2_3::eml23__MolecularWeightUom, gsoap_eml2_3::soap_new_eml23__MolecularWeightMeasure) +SETTER_MEASURE_ATTRIBUTE_IMPL(CorrelationViscositySpecification, gsoap_eml2_3::prodml23__AbstractCorrelationViscosityModel, gsoapProxy, MolecularWeight, gsoap_eml2_3::eml23__MolecularWeightUom, gsoap_eml2_3::soap_new_eml23__MolecularWeightMeasure) diff --git a/src/prodml2_2/CorrelationViscositySpecification.h b/src/prodml2_3/CorrelationViscositySpecification.h similarity index 91% rename from src/prodml2_2/CorrelationViscositySpecification.h rename to src/prodml2_3/CorrelationViscositySpecification.h index 086965a4b..4a68506e6 100644 --- a/src/prodml2_2/CorrelationViscositySpecification.h +++ b/src/prodml2_3/CorrelationViscositySpecification.h @@ -19,7 +19,7 @@ under the License. #pragma once #include "PvtSpecification.h" -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A correlation viscosity specification. */ class CorrelationViscositySpecification : public PvtSpecification @@ -31,11 +31,11 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - CorrelationViscositySpecification(gsoap_eml2_3::prodml22__AbstractCorrelationViscosityModel* fromGsoap): PvtSpecification(fromGsoap){} + CorrelationViscositySpecification(gsoap_eml2_3::prodml23__AbstractCorrelationViscosityModel* fromGsoap): PvtSpecification(fromGsoap){} /** Destructor does nothing since the memory is managed by the gsoap context. */ virtual ~CorrelationViscositySpecification() = default; - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__AbstractCorrelationViscosityModel, gsoapProxy, MolecularWeight, gsoap_eml2_3::eml23__MolecularWeightUom) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__AbstractCorrelationViscosityModel, gsoapProxy, MolecularWeight, gsoap_eml2_3::eml23__MolecularWeightUom) }; } diff --git a/src/prodml2_2/FluidCharacterization.cpp b/src/prodml2_3/FluidCharacterization.cpp similarity index 72% rename from src/prodml2_2/FluidCharacterization.cpp rename to src/prodml2_3/FluidCharacterization.cpp index 5f5166ea1..8022fa9c1 100644 --- a/src/prodml2_2/FluidCharacterization.cpp +++ b/src/prodml2_3/FluidCharacterization.cpp @@ -28,7 +28,7 @@ under the License. #include "../resqml2/RockFluidUnitInterpretation.h" using namespace std; -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; using namespace COMMON_NS; @@ -40,7 +40,7 @@ FluidCharacterization::FluidCharacterization(COMMON_NS::DataObjectRepository * r throw invalid_argument("A repo must exist."); } - gsoapProxy2_3 = soap_new_prodml22__FluidCharacterization(repo->getGsoapContext()); + gsoapProxy2_3 = soap_new_prodml23__FluidCharacterization(repo->getGsoapContext()); initMandatoryMetadata(); setMetadata(guid, title, "", -1, "", "", -1, ""); @@ -48,14 +48,14 @@ FluidCharacterization::FluidCharacterization(COMMON_NS::DataObjectRepository * r repo->addDataObject(unique_ptr{this}); } -SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidCharacterization, prodml22__FluidCharacterization, gsoapProxy2_3, Kind, std::string, soap_new_std__string) -SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidCharacterization, prodml22__FluidCharacterization, gsoapProxy2_3, IntendedUsage, std::string, soap_new_std__string) -SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidCharacterization, prodml22__FluidCharacterization, gsoapProxy2_3, Remark, std::string, soap_new_std__string) +SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidCharacterization, prodml23__FluidCharacterization, gsoapProxy2_3, Kind, std::string, soap_new_std__string) +SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidCharacterization, prodml23__FluidCharacterization, gsoapProxy2_3, IntendedUsage, std::string, soap_new_std__string) +SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidCharacterization, prodml23__FluidCharacterization, gsoapProxy2_3, Remark, std::string, soap_new_std__string) void FluidCharacterization::setStandardConditions(double temperatureValue, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom temperatureUom, double pressureValue, gsoap_eml2_3::eml23__PressureUom pressureUom) { - prodml22__FluidCharacterization* fc = static_cast(gsoapProxy2_3); + prodml23__FluidCharacterization* fc = static_cast(gsoapProxy2_3); fc->StandardConditions = soap_new_eml23__TemperaturePressure(getGsoapContext()); static_cast(fc->StandardConditions)->Temperature = soap_new_eml23__ThermodynamicTemperatureMeasure(getGsoapContext()); @@ -68,7 +68,7 @@ void FluidCharacterization::setStandardConditions(double temperatureValue, gsoap bool FluidCharacterization::hasStandardConditions() const { - return static_cast(gsoapProxy2_3)->StandardConditions != nullptr; + return static_cast(gsoapProxy2_3)->StandardConditions != nullptr; } double FluidCharacterization::getStandardTemperatureValue() const @@ -77,7 +77,7 @@ double FluidCharacterization::getStandardTemperatureValue() const throw std::logic_error("This fluid characterization has not got standard conditions"); } - prodml22__FluidCharacterization* fc = static_cast(gsoapProxy2_3); + prodml23__FluidCharacterization* fc = static_cast(gsoapProxy2_3); if (fc->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { return static_cast(fc->StandardConditions)->Temperature->__item; } @@ -91,7 +91,7 @@ gsoap_eml2_3::eml23__ThermodynamicTemperatureUom FluidCharacterization::getStand throw std::logic_error("This fluid characterization has not got standard conditions"); } - prodml22__FluidCharacterization* fc = static_cast(gsoapProxy2_3); + prodml23__FluidCharacterization* fc = static_cast(gsoapProxy2_3); if (fc->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { return static_cast(fc->StandardConditions)->Temperature->uom; } @@ -111,7 +111,7 @@ double FluidCharacterization::getStandardPressureValue() const throw std::logic_error("This fluid characterization has not got standard conditions"); } - prodml22__FluidCharacterization* fc = static_cast(gsoapProxy2_3); + prodml23__FluidCharacterization* fc = static_cast(gsoapProxy2_3); if (fc->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { return static_cast(fc->StandardConditions)->Pressure->__item; } @@ -125,7 +125,7 @@ gsoap_eml2_3::eml23__PressureUom FluidCharacterization::getStandardPressureUom() throw std::logic_error("This fluid characterization has not got standard conditions"); } - prodml22__FluidCharacterization* fc = static_cast(gsoapProxy2_3); + prodml23__FluidCharacterization* fc = static_cast(gsoapProxy2_3); if (fc->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { gsoap_eml2_3::eml23__PressureUom result; int conversion = soap_s2eml23__PressureUom(getGsoapContext(), static_cast(fc->StandardConditions)->Pressure->uom.c_str(), &result); @@ -143,14 +143,14 @@ void FluidCharacterization::setRockFluidUnit(RESQML2_NS::RockFluidUnitInterpreta if (rockFluidUnit == nullptr) { throw std::invalid_argument("Cannot set a null rockFluidUnit"); } - static_cast(gsoapProxy2_3)->RockFluidUnitInterpretation = rockFluidUnit->newEml23Reference(); + static_cast(gsoapProxy2_3)->RockFluidUnitInterpretation = rockFluidUnit->newEml23Reference(); getRepository()->addRelationship(this, rockFluidUnit); } COMMON_NS::DataObjectReference FluidCharacterization::getRockFluidUnitDor() const { - return static_cast(gsoapProxy2_3)->RockFluidUnitInterpretation; + return static_cast(gsoapProxy2_3)->RockFluidUnitInterpretation; } RESQML2_NS::RockFluidUnitInterpretation* FluidCharacterization::getRockFluidUnit() const @@ -163,17 +163,17 @@ void FluidCharacterization::setFluidSystem(FluidSystem* fluidSystem) if (fluidSystem == nullptr) { throw std::invalid_argument("Cannot set a null fluidSystem"); } - if (static_cast(gsoapProxy2_3)->FluidSystem != nullptr) { + if (static_cast(gsoapProxy2_3)->FluidSystem != nullptr) { throw std::invalid_argument("There is already a fluid system set for this fluid characterization."); } - static_cast(gsoapProxy2_3)->FluidSystem = fluidSystem->newEml23Reference(); + static_cast(gsoapProxy2_3)->FluidSystem = fluidSystem->newEml23Reference(); getRepository()->addRelationship(this, fluidSystem); } COMMON_NS::DataObjectReference FluidCharacterization::getFluidSystemDor() const { - return static_cast(gsoapProxy2_3)->FluidSystem; + return static_cast(gsoapProxy2_3)->FluidSystem; } FluidSystem* FluidCharacterization::getFluidSystem() const @@ -184,18 +184,18 @@ FluidSystem* FluidCharacterization::getFluidSystem() const #define SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE_IMPL(vectorName, attributeName, attributeDatatype, constructor)\ void FluidCharacterization::set##vectorName##attributeName(unsigned int index, const attributeDatatype& value)\ {\ - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr || index >= static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName = constructor(getGsoapContext());\ - *static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName = value;\ + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr || index >= static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName = constructor(getGsoapContext());\ + *static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName = value;\ } #define SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(vectorName, attributeName, uomDatatype, constructor)\ void FluidCharacterization::set##vectorName##attributeName(unsigned int index, double value, uomDatatype uom)\ {\ - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr || index >= static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName = constructor(getGsoapContext());\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->__item = value;\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->uom = uom;\ + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr || index >= static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size()) {throw std::out_of_range("This index is out of range.");}\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName = constructor(getGsoapContext());\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->__item = value;\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->uom = uom;\ } #define SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(vectorName)\ @@ -205,11 +205,11 @@ SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(vectorName, MoleFraction, unsigned int FluidCharacterization::getFormationWaterCount() const { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->FormationWater.size(); + size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->FormationWater.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much FormationWater"); } @@ -217,13 +217,13 @@ unsigned int FluidCharacterization::getFormationWaterCount() const } void FluidCharacterization::pushBackFormationWater(const std::string & uid) { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { - static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml22__FluidComponentCatalog(getGsoapContext()); + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml23__FluidComponentCatalog(getGsoapContext()); } - prodml22__FormationWater* const result = soap_new_prodml22__FormationWater(getGsoapContext()); + prodml23__FormationWater* const result = soap_new_prodml23__FormationWater(getGsoapContext()); result->uid = uid; - static_cast(gsoapProxy2_3)->FluidComponentCatalog->FormationWater.push_back(result); + static_cast(gsoapProxy2_3)->FluidComponentCatalog->FormationWater.push_back(result); } SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(FormationWater) SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(FormationWater, Salinity, gsoap_eml2_3::eml23__MassPerMassUom, gsoap_eml2_3::soap_new_eml23__MassPerMassMeasure) @@ -231,53 +231,53 @@ SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE_IMPL(FormationWater, SpecificG unsigned int FluidCharacterization::getPureFluidComponentCount() const { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->PureFluidComponent.size(); + size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->PureFluidComponent.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much PureFluidComponent"); } return static_cast(count); } -void FluidCharacterization::pushBackPureFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PureComponentKind kind, bool hydrocarbonFlag) +void FluidCharacterization::pushBackPureFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PureComponentKind kind, bool hydrocarbonFlag) { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { - static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml22__FluidComponentCatalog(getGsoapContext()); + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml23__FluidComponentCatalog(getGsoapContext()); } - prodml22__PureFluidComponent* const result = soap_new_prodml22__PureFluidComponent(getGsoapContext()); + prodml23__PureFluidComponent* const result = soap_new_prodml23__PureFluidComponent(getGsoapContext()); result->uid = uid; - result->Kind = gsoap_eml2_3::soap_prodml22__PureComponentKind2s(getGsoapContext(), kind); + result->Kind = gsoap_eml2_3::soap_prodml23__PureComponentKind2s(getGsoapContext(), kind); result->HydrocarbonFlag = hydrocarbonFlag; - static_cast(gsoapProxy2_3)->FluidComponentCatalog->PureFluidComponent.push_back(result); + static_cast(gsoapProxy2_3)->FluidComponentCatalog->PureFluidComponent.push_back(result); } SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(PureFluidComponent) SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(PureFluidComponent, MolecularWeight, gsoap_eml2_3::eml23__MolecularWeightUom, gsoap_eml2_3::soap_new_eml23__MolecularWeightMeasure) unsigned int FluidCharacterization::getPlusFluidComponentCount() const { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->PlusFluidComponent.size(); + size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->PlusFluidComponent.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much PlusFluidComponent"); } return static_cast(count); } -void FluidCharacterization::pushBackPlusFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PlusComponentKind kind) +void FluidCharacterization::pushBackPlusFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PlusComponentKind kind) { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { - static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml22__FluidComponentCatalog(getGsoapContext()); + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml23__FluidComponentCatalog(getGsoapContext()); } - prodml22__PlusFluidComponent* const result = soap_new_prodml22__PlusFluidComponent(getGsoapContext()); + prodml23__PlusFluidComponent* const result = soap_new_prodml23__PlusFluidComponent(getGsoapContext()); result->uid = uid; - result->Kind = gsoap_eml2_3::soap_prodml22__PlusComponentKind2s(getGsoapContext(), kind); - static_cast(gsoapProxy2_3)->FluidComponentCatalog->PlusFluidComponent.push_back(result); + result->Kind = gsoap_eml2_3::soap_prodml23__PlusComponentKind2s(getGsoapContext(), kind); + static_cast(gsoapProxy2_3)->FluidComponentCatalog->PlusFluidComponent.push_back(result); } SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(PlusFluidComponent) SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE_IMPL(PlusFluidComponent, SpecificGravity, double, soap_new_double) @@ -288,11 +288,11 @@ SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(PlusFluidComponent, AvgMol unsigned int FluidCharacterization::getStockTankOilCount() const { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->StockTankOil.size(); + size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->StockTankOil.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much StockTankOil"); } @@ -300,13 +300,13 @@ unsigned int FluidCharacterization::getStockTankOilCount() const } void FluidCharacterization::pushBackStockTankOil(const std::string & uid) { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { - static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml22__FluidComponentCatalog(getGsoapContext()); + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml23__FluidComponentCatalog(getGsoapContext()); } - prodml22__StockTankOil* const result = soap_new_prodml22__StockTankOil(getGsoapContext()); + prodml23__StockTankOil* const result = soap_new_prodml23__StockTankOil(getGsoapContext()); result->uid = uid; - static_cast(gsoapProxy2_3)->FluidComponentCatalog->StockTankOil.push_back(result); + static_cast(gsoapProxy2_3)->FluidComponentCatalog->StockTankOil.push_back(result); } SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(StockTankOil) SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(StockTankOil, APIGravity, gsoap_eml2_3::eml23__APIGravityUom, gsoap_eml2_3::soap_new_eml23__APIGravityMeasure) @@ -318,11 +318,11 @@ SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(StockTankOil, NetEnergyCon unsigned int FluidCharacterization::getNaturalGasCount() const { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->NaturalGas.size(); + size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->NaturalGas.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much NaturalGas"); } @@ -330,13 +330,13 @@ unsigned int FluidCharacterization::getNaturalGasCount() const } void FluidCharacterization::pushBackNaturalGas(const std::string & uid) { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { - static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml22__FluidComponentCatalog(getGsoapContext()); + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml23__FluidComponentCatalog(getGsoapContext()); } - prodml22__NaturalGas* const result = soap_new_prodml22__NaturalGas(getGsoapContext()); + prodml23__NaturalGas* const result = soap_new_prodml23__NaturalGas(getGsoapContext()); result->uid = uid; - static_cast(gsoapProxy2_3)->FluidComponentCatalog->NaturalGas.push_back(result); + static_cast(gsoapProxy2_3)->FluidComponentCatalog->NaturalGas.push_back(result); } SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(NaturalGas) SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE_IMPL(NaturalGas, GasGravity, double, soap_new_double) @@ -348,26 +348,26 @@ SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(NaturalGas, NetEnergyConte unsigned int FluidCharacterization::getPseudoFluidComponentCount() const { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->PseudoFluidComponent.size(); + size_t count = static_cast(gsoapProxy2_3)->FluidComponentCatalog->PseudoFluidComponent.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much PseudoFluidComponent"); } return static_cast(count); } -void FluidCharacterization::pushBackPseudoFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PseudoComponentKind kind) +void FluidCharacterization::pushBackPseudoFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PseudoComponentKind kind) { - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { - static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml22__FluidComponentCatalog(getGsoapContext()); + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr) { + static_cast(gsoapProxy2_3)->FluidComponentCatalog = soap_new_prodml23__FluidComponentCatalog(getGsoapContext()); } - prodml22__PseudoFluidComponent* const result = soap_new_prodml22__PseudoFluidComponent(getGsoapContext()); + prodml23__PseudoFluidComponent* const result = soap_new_prodml23__PseudoFluidComponent(getGsoapContext()); result->uid = uid; - result->Kind = gsoap_eml2_3::soap_prodml22__PseudoComponentKind2s(getGsoapContext(), kind); - static_cast(gsoapProxy2_3)->FluidComponentCatalog->PseudoFluidComponent.push_back(result); + result->Kind = gsoap_eml2_3::soap_prodml23__PseudoComponentKind2s(getGsoapContext(), kind); + static_cast(gsoapProxy2_3)->FluidComponentCatalog->PseudoFluidComponent.push_back(result); } SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES_IMPL(PseudoFluidComponent) SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE_IMPL(PseudoFluidComponent, SpecificGravity, double, soap_new_double) @@ -381,7 +381,7 @@ SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE_IMPL(PseudoFluidComponent, AvgM unsigned int FluidCharacterization::getModelCount() const { - size_t count = static_cast(gsoapProxy2_3)->Model.size(); + size_t count = static_cast(gsoapProxy2_3)->Model.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much models."); } @@ -390,75 +390,75 @@ unsigned int FluidCharacterization::getModelCount() const void FluidCharacterization::pushBackModel(const std::string & uid) { - prodml22__FluidCharacterizationModel* const result = soap_new_prodml22__FluidCharacterizationModel(getGsoapContext()); + prodml23__FluidCharacterizationModel* const result = soap_new_prodml23__FluidCharacterizationModel(getGsoapContext()); result->uid = uid.empty() - ? std::to_string(static_cast(gsoapProxy2_3)->Model.size()) + ? std::to_string(static_cast(gsoapProxy2_3)->Model.size()) : uid; - static_cast(gsoapProxy2_3)->Model.push_back(result); + static_cast(gsoapProxy2_3)->Model.push_back(result); modelSpecifications.push_back(nullptr); } PvtSpecification* FluidCharacterization::initModelSpecification(unsigned int modelIndex, ModelSpecification kind) { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The index of the model is out of range"); } switch (kind) { case CompositionalThermal: - modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml22__CompositionalThermalModel(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml23__CompositionalThermalModel(getGsoapContext())); break; case SrkEos: - modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml22__Srk_USCOREEOS(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml23__Srk_USCOREEOS(getGsoapContext())); break; case PengRobinson76Eos: - modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml22__PengRobinson76_USCOREEOS(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml23__PengRobinson76_USCOREEOS(getGsoapContext())); break; case PengRobinson78Eos: - modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml22__PengRobinson78_USCOREEOS(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalSpecification(soap_new_prodml23__PengRobinson78_USCOREEOS(getGsoapContext())); break; case LohrenzBrayClarkCorrelation: - modelSpecifications[modelIndex] = new CompositionalViscositySpecification(soap_new_prodml22__Lohrenz_Bray_ClarkCorrelation(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalViscositySpecification(soap_new_prodml23__Lohrenz_Bray_ClarkCorrelation(getGsoapContext())); break; case CSPedersen84: - modelSpecifications[modelIndex] = new CompositionalViscositySpecification(soap_new_prodml22__CSPedersen84(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalViscositySpecification(soap_new_prodml23__CSPedersen84(getGsoapContext())); break; case CSPedersen87: - modelSpecifications[modelIndex] = new CompositionalViscositySpecification(soap_new_prodml22__CSPedersen87(getGsoapContext())); + modelSpecifications[modelIndex] = new CompositionalViscositySpecification(soap_new_prodml23__CSPedersen87(getGsoapContext())); break; case FrictionTheory: - modelSpecifications[modelIndex] = new FrictionTheorySpecification(soap_new_prodml22__FrictionTheory(getGsoapContext())); + modelSpecifications[modelIndex] = new FrictionTheorySpecification(soap_new_prodml23__FrictionTheory(getGsoapContext())); break; case CorrelationThermal: - modelSpecifications[modelIndex] = new PvtSpecification(soap_new_prodml22__CorrelationThermalModel(getGsoapContext())); + modelSpecifications[modelIndex] = new PvtSpecification(soap_new_prodml23__CorrelationThermalModel(getGsoapContext())); break; case BergmanSuttonBubblePoint: - modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml22__BergmanSutton_BubblePoint(getGsoapContext())); + modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml23__BergmanSutton_BubblePoint(getGsoapContext())); break; case DeGhettoBubblePoint: - modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml22__DeGhetto_BubblePoint(getGsoapContext())); + modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml23__DeGhetto_BubblePoint(getGsoapContext())); break; case StandingBubblePoint: - modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml22__Standing_BubblePoint(getGsoapContext())); + modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml23__Standing_BubblePoint(getGsoapContext())); break; case DindorukChristmanBubblePoint: - modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml22__DindorukChristman_BubblePoint(getGsoapContext())); + modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml23__DindorukChristman_BubblePoint(getGsoapContext())); break; case PetroskyFarshadBubblePoint: - modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml22__PetroskyFarshad_BubblePoint(getGsoapContext())); + modelSpecifications[modelIndex] = new CorrelationViscosityBubblePointSpecification(soap_new_prodml23__PetroskyFarshad_BubblePoint(getGsoapContext())); break; default: throw std::invalid_argument("This kind of specification is not supported yet"); } - static_cast(gsoapProxy2_3)->Model[modelIndex]->ModelSpecification = modelSpecifications[modelIndex]->gsoapProxy; + static_cast(gsoapProxy2_3)->Model[modelIndex]->ModelSpecification = modelSpecifications[modelIndex]->gsoapProxy; return modelSpecifications[modelIndex]; } -SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, Name, std::string, gsoap_eml2_3::soap_new_std__string) -SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, Remark, std::string, gsoap_eml2_3::soap_new_std__string) -SETTER_MEASURE_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, ReferenceTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom, gsoap_eml2_3::soap_new_eml23__ThermodynamicTemperatureMeasure) -SETTER_MEASURE_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, ReferenceStockTankTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom, gsoap_eml2_3::soap_new_eml23__ThermodynamicTemperatureMeasure) +SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, Name, std::string, gsoap_eml2_3::soap_new_std__string) +SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, Remark, std::string, gsoap_eml2_3::soap_new_std__string) +SETTER_MEASURE_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, ReferenceTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom, gsoap_eml2_3::soap_new_eml23__ThermodynamicTemperatureMeasure) +SETTER_MEASURE_ATTRIBUTE_IN_VECTOR_IMPL(FluidCharacterization, gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, ReferenceStockTankTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom, gsoap_eml2_3::soap_new_eml23__ThermodynamicTemperatureMeasure) void FluidCharacterization::loadTargetRelationships() { @@ -482,51 +482,51 @@ void FluidCharacterization::loadTargetRelationships() getRepository()->addRelationship(this, fluidSystem); } - std::vector models = static_cast(gsoapProxy2_3)->Model; + std::vector models = static_cast(gsoapProxy2_3)->Model; for (size_t modelIndex = 0; modelIndex < models.size(); ++modelIndex) { if (models[modelIndex]->ModelSpecification != nullptr) { switch (models[modelIndex]->ModelSpecification->soap_type()) { - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: - modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: + modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: - modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: + modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: - modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: + modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: - modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: + modelSpecifications.push_back(new CompositionalSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: - modelSpecifications.push_back(new CompositionalViscositySpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: + modelSpecifications.push_back(new CompositionalViscositySpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: - modelSpecifications.push_back(new CompositionalViscositySpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: + modelSpecifications.push_back(new CompositionalViscositySpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: - modelSpecifications.push_back(new CompositionalViscositySpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: + modelSpecifications.push_back(new CompositionalViscositySpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: - modelSpecifications.push_back(new FrictionTheorySpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: + modelSpecifications.push_back(new FrictionTheorySpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: - modelSpecifications.push_back(new PvtSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: + modelSpecifications.push_back(new PvtSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: - modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: + modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: - modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: + modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: - modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: + modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: - modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: + modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: - modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: + modelSpecifications.push_back(new CorrelationViscosityBubblePointSpecification(static_cast(models[modelIndex]->ModelSpecification))); break; default: throw std::invalid_argument("This kind of specification is not supported yet"); } @@ -539,7 +539,7 @@ void FluidCharacterization::loadTargetRelationships() unsigned int FluidCharacterization::getTableFormatCount() const { - size_t count = static_cast(gsoapProxy2_3)->TableFormat.size(); + size_t count = static_cast(gsoapProxy2_3)->TableFormat.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much FluidCharacterizationTableFormat"); } @@ -548,7 +548,7 @@ unsigned int FluidCharacterization::getTableFormatCount() const uint64_t FluidCharacterization::getTableFormatColumnCount(const std::string & tableFormatUid) const { - for (const auto& tableFormat : static_cast(gsoapProxy2_3)->TableFormat) { + for (const auto& tableFormat : static_cast(gsoapProxy2_3)->TableFormat) { if (tableFormat->uid == tableFormatUid) { return tableFormat->TableColumn.size(); } @@ -559,18 +559,18 @@ uint64_t FluidCharacterization::getTableFormatColumnCount(const std::string & ta void FluidCharacterization::pushBackTableFormat(const std::string & uid) { - prodml22__FluidCharacterizationTableFormat* const result = soap_new_prodml22__FluidCharacterizationTableFormat(getGsoapContext()); + prodml23__FluidCharacterizationTableFormat* const result = soap_new_prodml23__FluidCharacterizationTableFormat(getGsoapContext()); result->Delimiter = soap_new_std__string(getGsoapContext()); result->Delimiter->assign(" "); result->uid = uid.empty() - ? std::to_string(static_cast(gsoapProxy2_3)->TableFormat.size()) + ? std::to_string(static_cast(gsoapProxy2_3)->TableFormat.size()) : uid; - static_cast(gsoapProxy2_3)->TableFormat.push_back(result); + static_cast(gsoapProxy2_3)->TableFormat.push_back(result); } std::string FluidCharacterization::getTableFormatColumnUom(const std::string & tableFormatUid, unsigned int columnIndex) const { - for (const auto& tableFormat : static_cast(gsoapProxy2_3)->TableFormat) { + for (const auto& tableFormat : static_cast(gsoapProxy2_3)->TableFormat) { if (tableFormat->uid == tableFormatUid) { return tableFormat->TableColumn[columnIndex]->uom; } @@ -581,7 +581,7 @@ std::string FluidCharacterization::getTableFormatColumnUom(const std::string & t std::string FluidCharacterization::getTableFormatColumnProperty(const std::string & tableFormatUid, unsigned int columnIndex) const { - for (const auto& tableFormat : static_cast(gsoapProxy2_3)->TableFormat) { + for (const auto& tableFormat : static_cast(gsoapProxy2_3)->TableFormat) { if (tableFormat->uid == tableFormatUid) { return tableFormat->TableColumn[columnIndex]->Property; } @@ -590,32 +590,32 @@ std::string FluidCharacterization::getTableFormatColumnProperty(const std::strin throw out_of_range("The table format uid \"" + tableFormatUid + "\" has not been found."); } -void FluidCharacterization::pushBackTableFormatColumn(unsigned int tableFormatIndex, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty) +void FluidCharacterization::pushBackTableFormatColumn(unsigned int tableFormatIndex, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty) { pushBackTableFormatColumn(tableFormatIndex, gsoap_eml2_3::soap_eml23__UnitOfMeasure2s(getGsoapContext(), uom), - gsoap_eml2_3::soap_prodml22__OutputFluidProperty2s(getGsoapContext(), fluidProperty)); + gsoap_eml2_3::soap_prodml23__OutputFluidProperty2s(getGsoapContext(), fluidProperty)); } void FluidCharacterization::pushBackTableFormatColumn(unsigned int tableFormatIndex, const std::string & uom, const std::string & fluidProperty) { - if (static_cast(gsoapProxy2_3)->TableFormat.size() <= tableFormatIndex) { + if (static_cast(gsoapProxy2_3)->TableFormat.size() <= tableFormatIndex) { throw std::out_of_range("The table format index is out of range."); } - prodml22__FluidCharacterizationTableColumn* const result = soap_new_prodml22__FluidCharacterizationTableColumn(getGsoapContext()); + prodml23__FluidCharacterizationTableColumn* const result = soap_new_prodml23__FluidCharacterizationTableColumn(getGsoapContext()); result->uom = uom; result->Property = fluidProperty; - static_cast(gsoapProxy2_3)->TableFormat[tableFormatIndex]->TableColumn.push_back(result); + static_cast(gsoapProxy2_3)->TableFormat[tableFormatIndex]->TableColumn.push_back(result); } unsigned int FluidCharacterization::getTableCount(unsigned int modelIndex) const { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - size_t count = static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size(); + size_t count = static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much FluidCharacterizationTable in this model"); } @@ -624,54 +624,54 @@ unsigned int FluidCharacterization::getTableCount(unsigned int modelIndex) const std::string FluidCharacterization::getTableName(unsigned int modelIndex, unsigned int tableIndex) const { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { + if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { throw std::out_of_range("The table index is out of range."); } - return static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->name; + return static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->name; } std::string FluidCharacterization::getTableFormatUid(unsigned int modelIndex, unsigned int tableIndex) const { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { + if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { throw std::out_of_range("The table index is out of range."); } - return static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->tableFormat; + return static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->tableFormat; } void FluidCharacterization::pushBackTable(unsigned int modelIndex, const std::string & name, const std::string & tableFormatUid, const std::string & uid) { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - prodml22__FluidCharacterizationTable* const result = soap_new_prodml22__FluidCharacterizationTable(getGsoapContext()); + prodml23__FluidCharacterizationTable* const result = soap_new_prodml23__FluidCharacterizationTable(getGsoapContext()); result->uid = uid.empty() - ? std::to_string(static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size()) + ? std::to_string(static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size()) : uid; result->name = name; result->tableFormat = tableFormatUid; - static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.push_back(result); + static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.push_back(result); } unsigned int FluidCharacterization::getTableRowCount(unsigned int modelIndex, unsigned int tableIndex) const { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { + if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { throw std::out_of_range("The table index is out of range."); } - size_t count = static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.size(); + size_t count = static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.size(); if (count > (std::numeric_limits::max)()) { throw out_of_range("There are too much row in this table"); } @@ -680,26 +680,26 @@ unsigned int FluidCharacterization::getTableRowCount(unsigned int modelIndex, un std::string FluidCharacterization::getTableRowContent(unsigned int modelIndex, unsigned int tableIndex, unsigned int rowIndex) const { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { + if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { throw std::out_of_range("The table index is out of range."); } - if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.size() <= rowIndex) { + if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.size() <= rowIndex) { throw std::out_of_range("The row index is out of range."); } - return static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow[rowIndex]->__item; + return static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow[rowIndex]->__item; } void FluidCharacterization::pushBackTableRow(unsigned int modelIndex, unsigned int tableIndex, const std::vector & rowContent) { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } - if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { + if (static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable.size() <= tableIndex) { throw std::out_of_range("The table index is out of range."); } @@ -708,49 +708,49 @@ void FluidCharacterization::pushBackTableRow(unsigned int modelIndex, unsigned i throw std::out_of_range("you did not give the same number of values than the expected one."); } - prodml22__FluidCharacterizationTableRow* const result = soap_new_prodml22__FluidCharacterizationTableRow(getGsoapContext()); - result->row = std::to_string(static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.size()); + prodml23__FluidCharacterizationTableRow* const result = soap_new_prodml23__FluidCharacterizationTableRow(getGsoapContext()); + result->row = std::to_string(static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.size()); std::ostringstream oss; std::copy(rowContent.begin(), rowContent.end() - 1, std::ostream_iterator(oss, " ")); oss << rowContent.back(); result->__item = oss.str(); - static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.push_back(result); + static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.push_back(result); } void FluidCharacterization::pushBackTableRow(unsigned int modelIndex, unsigned int tableIndex, const std::vector & rowContent, bool isSaturated) { pushBackTableRow(modelIndex, tableIndex, rowContent); - static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.back()->kind = (gsoap_eml2_3::prodml22__SaturationKind*)soap_malloc(getGsoapContext(), sizeof(gsoap_eml2_3::prodml22__SaturationKind)); - *static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.back()->kind = isSaturated - ? prodml22__SaturationKind::saturated - : prodml22__SaturationKind::undersaturated; + static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.back()->kind = (gsoap_eml2_3::prodml23__SaturationKind*)soap_malloc(getGsoapContext(), sizeof(gsoap_eml2_3::prodml23__SaturationKind)); + *static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationTable[tableIndex]->TableRow.back()->kind = isSaturated + ? prodml23__SaturationKind::saturated + : prodml23__SaturationKind::undersaturated; } -void FluidCharacterization::pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty) +void FluidCharacterization::pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty) { - if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { + if (static_cast(gsoapProxy2_3)->Model.size() <= modelIndex) { throw std::out_of_range("The model index is out of range."); } // Creates a parameter set if not already present - auto* model = static_cast(gsoapProxy2_3)->Model[modelIndex]; + auto* model = static_cast(gsoapProxy2_3)->Model[modelIndex]; if (model->FluidCharacterizationParameterSet == nullptr) { - model->FluidCharacterizationParameterSet = soap_new_prodml22__FluidCharacterizationParameterSet(getGsoapContext()); + model->FluidCharacterizationParameterSet = soap_new_prodml23__FluidCharacterizationParameterSet(getGsoapContext()); } - auto* param = soap_new_prodml22__FluidCharacterizationParameter(getGsoapContext()); + auto* param = soap_new_prodml23__FluidCharacterizationParameter(getGsoapContext()); param->value = value; param->uom = gsoap_eml2_3::soap_eml23__UnitOfMeasure2s(getGsoapContext(), uom); - param->Property = gsoap_eml2_3::soap_prodml22__OutputFluidProperty2s(getGsoapContext(), fluidProperty); + param->Property = gsoap_eml2_3::soap_prodml23__OutputFluidProperty2s(getGsoapContext(), fluidProperty); model->FluidCharacterizationParameterSet->FluidCharacterizationParameter.push_back(param); } -void FluidCharacterization::pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty, gsoap_eml2_3::prodml22__ThermodynamicPhase phase) +void FluidCharacterization::pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty, gsoap_eml2_3::prodml23__ThermodynamicPhase phase) { pushBackParameter(modelIndex, value, uom, fluidProperty); - static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationParameterSet->FluidCharacterizationParameter.back()->Phase = (gsoap_eml2_3::prodml22__ThermodynamicPhase*)soap_malloc(getGsoapContext(), sizeof(gsoap_eml2_3::prodml22__ThermodynamicPhase)); - *static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationParameterSet->FluidCharacterizationParameter.back()->Phase = phase; + static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationParameterSet->FluidCharacterizationParameter.back()->Phase = (gsoap_eml2_3::prodml23__ThermodynamicPhase*)soap_malloc(getGsoapContext(), sizeof(gsoap_eml2_3::prodml23__ThermodynamicPhase)); + *static_cast(gsoapProxy2_3)->Model[modelIndex]->FluidCharacterizationParameterSet->FluidCharacterizationParameter.back()->Phase = phase; } diff --git a/src/prodml2_2/FluidCharacterization.h b/src/prodml2_3/FluidCharacterization.h similarity index 93% rename from src/prodml2_2/FluidCharacterization.h rename to src/prodml2_3/FluidCharacterization.h index 3528fa1c0..36dbaf336 100644 --- a/src/prodml2_2/FluidCharacterization.h +++ b/src/prodml2_3/FluidCharacterization.h @@ -37,9 +37,9 @@ namespace RESQML2_NS */ #define GETTER_FLUID_CATALOG_COMPONENT_ATTRIBUTE(vectorName, attributeName, attributeDatatype)\ DLL_IMPORT_OR_EXPORT attributeDatatype get##vectorName##attributeName(unsigned int index) const {\ - if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr ||\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size() <= index) { throw std::out_of_range("The index is out of range"); }\ - return static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName;\ + if (static_cast(gsoapProxy2_3)->FluidComponentCatalog == nullptr ||\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size() <= index) { throw std::out_of_range("The index is out of range"); }\ + return static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName;\ } /** @@ -52,13 +52,13 @@ namespace RESQML2_NS #define GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE(vectorName, attributeName, attributeDatatype)\ DLL_IMPORT_OR_EXPORT void set##vectorName##attributeName(unsigned int index, const attributeDatatype& value);\ DLL_IMPORT_OR_EXPORT bool has##vectorName##attributeName(unsigned int index) const {\ - return static_cast(gsoapProxy2_3)->FluidComponentCatalog != nullptr &&\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size() > index &&\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName != nullptr;\ + return static_cast(gsoapProxy2_3)->FluidComponentCatalog != nullptr &&\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size() > index &&\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName != nullptr;\ }\ DLL_IMPORT_OR_EXPORT attributeDatatype get##vectorName##attributeName(unsigned int index) const {\ if (!has##vectorName##attributeName(index)) { throw std::out_of_range("The index is out of range"); }\ - return *static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName;\ + return *static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName;\ } /** @@ -71,17 +71,17 @@ namespace RESQML2_NS #define GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE(vectorName, attributeName, uomDatatype)\ DLL_IMPORT_OR_EXPORT void set##vectorName##attributeName(unsigned int index, double value, uomDatatype uom);\ DLL_IMPORT_OR_EXPORT bool has##vectorName##attributeName(unsigned int index) const {\ - return static_cast(gsoapProxy2_3)->FluidComponentCatalog != nullptr &&\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size() > index &&\ - static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName != nullptr;\ + return static_cast(gsoapProxy2_3)->FluidComponentCatalog != nullptr &&\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName.size() > index &&\ + static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName != nullptr;\ }\ DLL_IMPORT_OR_EXPORT double get##vectorName##attributeName##Value(unsigned int index) const {\ if (!has##vectorName##attributeName(index)) { throw std::out_of_range("The index is out of range"); }\ - return static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->__item;\ + return static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->__item;\ }\ DLL_IMPORT_OR_EXPORT uomDatatype get##vectorName##attributeName##Uom(unsigned int index) const {\ if (!has##vectorName##attributeName(index)) { throw std::out_of_range("The index is out of range"); }\ - return static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->uom;\ + return static_cast(gsoapProxy2_3)->FluidComponentCatalog->vectorName[index]->attributeName->uom;\ } /** @@ -95,7 +95,7 @@ namespace RESQML2_NS GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE(vectorName, MassFraction, gsoap_eml2_3::eml23__MassPerMassUom)\ GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_MEASURE_ATTRIBUTE(vectorName, MoleFraction, gsoap_eml2_3::eml23__AmountOfSubstancePerAmountOfSubstanceUom) -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** * The fluid characterization data object describes the characteristics and properties of a @@ -137,7 +137,7 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - FluidCharacterization(gsoap_eml2_3::prodml22__FluidCharacterization* fromGsoap):AbstractObject(fromGsoap) {} + FluidCharacterization(gsoap_eml2_3::prodml23__FluidCharacterization* fromGsoap):AbstractObject(fromGsoap) {} /** Destructor does nothing since the memory is managed by the gsoap context. */ ~FluidCharacterization() { @@ -148,9 +148,9 @@ namespace PRODML2_2_NS } } - GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Kind, std::string) - GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, IntendedUsage, std::string) - GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Remark, std::string) + GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Kind, std::string) + GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, IntendedUsage, std::string) + GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Remark, std::string) /** * Sets standard conditions @@ -271,7 +271,7 @@ namespace PRODML2_2_NS * @param kind The kind. * @param hydrocarbonFlag True to hydrocarbon flag. */ - DLL_IMPORT_OR_EXPORT void pushBackPureFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PureComponentKind kind, bool hydrocarbonFlag); + DLL_IMPORT_OR_EXPORT void pushBackPureFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PureComponentKind kind, bool hydrocarbonFlag); GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES(PureFluidComponent) GETTER_FLUID_CATALOG_COMPONENT_ATTRIBUTE(PureFluidComponent, Kind, std::string) GETTER_FLUID_CATALOG_COMPONENT_ATTRIBUTE(PureFluidComponent, HydrocarbonFlag, bool) @@ -290,7 +290,7 @@ namespace PRODML2_2_NS * @param uid The UID. * @param kind The kind. */ - DLL_IMPORT_OR_EXPORT void pushBackPlusFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PlusComponentKind kind); + DLL_IMPORT_OR_EXPORT void pushBackPlusFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PlusComponentKind kind); GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES(PlusFluidComponent) GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE(PlusFluidComponent, SpecificGravity, double) GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE(PlusFluidComponent, StartingCarbonNumber, int64_t) @@ -353,7 +353,7 @@ namespace PRODML2_2_NS * @param uid The UID. * @param kind The kind. */ - DLL_IMPORT_OR_EXPORT void pushBackPseudoFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PseudoComponentKind kind); + DLL_IMPORT_OR_EXPORT void pushBackPseudoFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PseudoComponentKind kind); GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_COMMON_ATTRIBUTES(PseudoFluidComponent) GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE(PseudoFluidComponent, SpecificGravity, double) GETTER_AND_SETTER_FLUID_CATALOG_COMPONENT_OPTIONAL_ATTRIBUTE(PseudoFluidComponent, StartingCarbonNumber, int64_t) @@ -416,10 +416,10 @@ namespace PRODML2_2_NS */ DLL_IMPORT_OR_EXPORT PvtSpecification* initModelSpecification(unsigned int modelIndex, ModelSpecification kind); - GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, Name, std::string) - GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, Remark, std::string) - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, ReferenceTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_3, Model, ReferenceStockTankTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) + GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, Name, std::string) + GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, Remark, std::string) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, ReferenceTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_3, Model, ReferenceStockTankTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) /** * Gets the table format count @@ -468,7 +468,7 @@ namespace PRODML2_2_NS * @param uom The uom associated to the values of this column * @param fluidProperty The property that this column contains */ - DLL_IMPORT_OR_EXPORT void pushBackTableFormatColumn(unsigned int tableFormatIndex, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty); + DLL_IMPORT_OR_EXPORT void pushBackTableFormatColumn(unsigned int tableFormatIndex, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty); /** * Pushes a table format colum @@ -561,7 +561,7 @@ namespace PRODML2_2_NS * @param uom The uom associated to the value of this parameter * @param fluidProperty The property kind of this value */ - DLL_IMPORT_OR_EXPORT void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty); + DLL_IMPORT_OR_EXPORT void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty); /** * Pushes back a phase related parameter in a model. @@ -572,7 +572,7 @@ namespace PRODML2_2_NS * @param fluidProperty The property kind of this value * @param phase The pahse associated to the parameter */ - DLL_IMPORT_OR_EXPORT void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty, gsoap_eml2_3::prodml22__ThermodynamicPhase phase); + DLL_IMPORT_OR_EXPORT void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty, gsoap_eml2_3::prodml23__ThermodynamicPhase phase); /** * The standard XML tag without XML namespace for serializing this data object. @@ -591,7 +591,7 @@ namespace PRODML2_2_NS /** * The standard XML namespace for serializing this data object. */ - DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "prodml22"; + DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "prodml23"; /** * Get the standard XML namespace for serializing this data object. diff --git a/src/prodml2_2/FluidSystem.cpp b/src/prodml2_3/FluidSystem.cpp similarity index 81% rename from src/prodml2_2/FluidSystem.cpp rename to src/prodml2_3/FluidSystem.cpp index e1a4a681a..37d639945 100644 --- a/src/prodml2_2/FluidSystem.cpp +++ b/src/prodml2_3/FluidSystem.cpp @@ -26,7 +26,7 @@ under the License. #include "../resqml2/StratigraphicOccurrenceInterpretation.h" using namespace std; -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; using namespace COMMON_NS; @@ -35,19 +35,19 @@ FluidSystem::FluidSystem(COMMON_NS::DataObjectRepository * repo, const std::string & title, double temperatureValue, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom temperatureUom, double pressureValue, gsoap_eml2_3::eml23__PressureUom pressureUom, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom) { if (repo == nullptr) { throw invalid_argument("A repo must exist."); } - gsoapProxy2_3 = soap_new_prodml22__FluidSystem(repo->getGsoapContext()); + gsoapProxy2_3 = soap_new_prodml23__FluidSystem(repo->getGsoapContext()); initMandatoryMetadata(); setMetadata(guid, title, "", -1, "", "", -1, ""); - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); fs->StandardConditions = soap_new_eml23__TemperaturePressure(repo->getGsoapContext()); static_cast(fs->StandardConditions)->Temperature = soap_new_eml23__ThermodynamicTemperatureMeasure(repo->getGsoapContext()); @@ -70,19 +70,19 @@ FluidSystem::FluidSystem(COMMON_NS::DataObjectRepository * repo, const std::string & guid, const std::string & title, gsoap_eml2_3::eml23__ReferenceCondition referenceCondition, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom) { if (repo == nullptr) { throw invalid_argument("A repo must exist."); } - gsoapProxy2_3 = soap_new_prodml22__FluidSystem(repo->getGsoapContext()); + gsoapProxy2_3 = soap_new_prodml23__FluidSystem(repo->getGsoapContext()); initMandatoryMetadata(); setMetadata(guid, title, "", -1, "", "", -1, ""); - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); fs->StandardConditions = soap_new_eml23__ReferenceTemperaturePressure(repo->getGsoapContext()); static_cast(fs->StandardConditions)->ReferenceTempPres = soap_eml23__ReferenceCondition2s(repo->getGsoapContext(), referenceCondition); @@ -96,13 +96,13 @@ FluidSystem::FluidSystem(COMMON_NS::DataObjectRepository * repo, repo->addDataObject(unique_ptr{this}); } -SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidSystem, gsoap_eml2_3::prodml22__FluidSystem, gsoapProxy2_3, PhasesPresent, gsoap_eml2_3::prodml22__PhasePresent, soap_new_prodml22__PhasePresent) -SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidSystem, ::prodml22__FluidSystem, gsoapProxy2_3, ReservoirLifeCycleState, gsoap_eml2_3::prodml22__ReservoirLifeCycleState, soap_new_prodml22__ReservoirLifeCycleState) -SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidSystem, gsoap_eml2_3::prodml22__FluidSystem, gsoapProxy2_3, Remark, std::string, soap_new_std__string) +SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidSystem, gsoap_eml2_3::prodml23__FluidSystem, gsoapProxy2_3, PhasesPresent, gsoap_eml2_3::prodml23__PhasePresent, soap_new_prodml23__PhasePresent) +SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidSystem, ::prodml23__FluidSystem, gsoapProxy2_3, ReservoirLifeCycleState, gsoap_eml2_3::prodml23__ReservoirLifeCycleState, soap_new_prodml23__ReservoirLifeCycleState) +SETTER_OPTIONAL_ATTRIBUTE_IMPL(FluidSystem, gsoap_eml2_3::prodml23__FluidSystem, gsoapProxy2_3, Remark, std::string, soap_new_std__string) double FluidSystem::getStandardTemperatureValue() const { - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); if (fs->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { return static_cast(fs->StandardConditions)->Temperature->__item; } @@ -112,7 +112,7 @@ double FluidSystem::getStandardTemperatureValue() const gsoap_eml2_3::eml23__ThermodynamicTemperatureUom FluidSystem::getStandardTemperatureUom() const { - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); if (fs->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { return static_cast(fs->StandardConditions)->Temperature->uom; } @@ -122,7 +122,7 @@ gsoap_eml2_3::eml23__ThermodynamicTemperatureUom FluidSystem::getStandardTempera double FluidSystem::getStandardPressureValue() const { - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); if (fs->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { return static_cast(fs->StandardConditions)->Pressure->__item; } @@ -132,7 +132,7 @@ double FluidSystem::getStandardPressureValue() const gsoap_eml2_3::eml23__PressureUom FluidSystem::getStandardPressureUom() const { - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); if (fs->StandardConditions->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__TemperaturePressure) { gsoap_eml2_3::eml23__PressureUom result; int conversion = soap_s2eml23__PressureUom(getGsoapContext(), static_cast(fs->StandardConditions)->Pressure->uom.c_str(), &result); @@ -146,32 +146,35 @@ gsoap_eml2_3::eml23__PressureUom FluidSystem::getStandardPressureUom() const } double FluidSystem::getSolutionGORValue() const { - return static_cast(gsoapProxy2_3)->SolutionGOR->__item; + return static_cast(gsoapProxy2_3)->SolutionGOR->__item; } gsoap_eml2_3::eml23__VolumePerVolumeUom FluidSystem::getSolutionGORUom() const { gsoap_eml2_3::eml23__VolumePerVolumeUom result; - if (gsoap_eml2_3::soap_s2eml23__VolumePerVolumeUom(getGsoapContext(), static_cast(gsoapProxy2_3)->SolutionGOR->uom.c_str(), &result) == SOAP_OK) { + if (gsoap_eml2_3::soap_s2eml23__VolumePerVolumeUom(getGsoapContext(), static_cast(gsoapProxy2_3)->SolutionGOR->uom.c_str(), &result) == SOAP_OK) { return result; } - throw logic_error("Cannot recognize the exotic volume per volume uom : " + static_cast(gsoapProxy2_3)->SolutionGOR->uom); + throw logic_error("Cannot recognize the exotic volume per volume uom : " + static_cast(gsoapProxy2_3)->SolutionGOR->uom); } -void FluidSystem::setSaturationPressure(double value, gsoap_eml2_3::eml23__PressureUom pressureUom, gsoap_eml2_3::prodml22__SaturationPointKind saturationPointKind) +void FluidSystem::setSaturationPressure(double value, gsoap_eml2_3::eml23__PressureUom pressureUom, gsoap_eml2_3::prodml23__SaturationPointKind saturationPointKind) { - prodml22__FluidSystem* fs = static_cast(gsoapProxy2_3); + prodml23__FluidSystem* fs = static_cast(gsoapProxy2_3); if (fs->SaturationPressure == nullptr) { - fs->SaturationPressure = soap_new_prodml22__SaturationPressure(getGsoapContext()); + fs->SaturationPressure = soap_new_prodml23__SaturationPressure(getGsoapContext()); + } + if (fs->SaturationPressure->PressureMeasureExt == nullptr) { + fs->SaturationPressure->PressureMeasureExt = soap_new_eml23__PressureMeasureExt(getGsoapContext()); } fs->SaturationPressure->kind = saturationPointKind; - fs->SaturationPressure->uom = soap_eml23__PressureUom2s(getGsoapContext(), pressureUom); - fs->SaturationPressure->__item = value; + fs->SaturationPressure->PressureMeasureExt->uom = soap_eml23__PressureUom2s(getGsoapContext(), pressureUom); + fs->SaturationPressure->PressureMeasureExt->__item = value; } bool FluidSystem::hasSaturationPressureValue() const { - return static_cast(gsoapProxy2_3)->SaturationPressure != nullptr; + return static_cast(gsoapProxy2_3)->SaturationPressure != nullptr; } double FluidSystem::getSaturationPressureValue() const @@ -179,7 +182,7 @@ double FluidSystem::getSaturationPressureValue() const if (!hasSaturationPressureValue()) { throw logic_error("There is no saturation pressure value"); } - return static_cast(gsoapProxy2_3)->SaturationPressure->__item; + return static_cast(gsoapProxy2_3)->SaturationPressure->PressureMeasureExt->__item; } gsoap_eml2_3::eml23__PressureUom FluidSystem::getSaturationPressureUom() const @@ -187,7 +190,7 @@ double FluidSystem::getSaturationPressureValue() const if (!hasSaturationPressureValue()) { throw logic_error("There is no saturation pressure value"); } - string uomStr = static_cast(gsoapProxy2_3)->SaturationPressure->uom; + string uomStr = static_cast(gsoapProxy2_3)->SaturationPressure->PressureMeasureExt->uom; gsoap_eml2_3::eml23__PressureUom result; if (gsoap_eml2_3::soap_s2eml23__PressureUom(getGsoapContext(), uomStr.c_str(), &result) == SOAP_OK) { return result; @@ -195,35 +198,35 @@ double FluidSystem::getSaturationPressureValue() const throw logic_error("The exotic saturation pressure uom is not recognized : " + uomStr); } -gsoap_eml2_3::prodml22__SaturationPointKind FluidSystem::getSaturationPressurePointKind() const +gsoap_eml2_3::prodml23__SaturationPointKind FluidSystem::getSaturationPressurePointKind() const { if (!hasSaturationPressureValue()) { throw logic_error("There is no saturation pressure value"); } - return static_cast(gsoapProxy2_3)->SaturationPressure->kind; + return static_cast(gsoapProxy2_3)->SaturationPressure->kind; } #define SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE_IMPL(componentName, attributeName, attributeDatatype, constructor)\ void FluidSystem::set##componentName##attributeName(const attributeDatatype& value)\ {\ - if (static_cast(gsoapProxy2_3)->componentName == nullptr) {\ - static_cast(gsoapProxy2_3)->componentName = soap_new_prodml22__##componentName(getGsoapContext());\ - static_cast(gsoapProxy2_3)->componentName->uid = "0";\ + if (static_cast(gsoapProxy2_3)->componentName == nullptr) {\ + static_cast(gsoapProxy2_3)->componentName = soap_new_prodml23__##componentName(getGsoapContext());\ + static_cast(gsoapProxy2_3)->componentName->uid = "0";\ }\ - static_cast(gsoapProxy2_3)->componentName->attributeName = constructor(getGsoapContext());\ - *static_cast(gsoapProxy2_3)->componentName->attributeName = value;\ + static_cast(gsoapProxy2_3)->componentName->attributeName = constructor(getGsoapContext());\ + *static_cast(gsoapProxy2_3)->componentName->attributeName = value;\ } #define SETTER_FLUID_COMPONENT_MEASURE_ATTRIBUTE_IMPL(componentName, attributeName, uomDatatype, constructor)\ void FluidSystem::set##componentName##attributeName( double value, uomDatatype uom)\ {\ - if (static_cast(gsoapProxy2_3)->componentName == nullptr) {\ - static_cast(gsoapProxy2_3)->componentName = soap_new_prodml22__##componentName(getGsoapContext());\ - static_cast(gsoapProxy2_3)->componentName->uid = "0";\ + if (static_cast(gsoapProxy2_3)->componentName == nullptr) {\ + static_cast(gsoapProxy2_3)->componentName = soap_new_prodml23__##componentName(getGsoapContext());\ + static_cast(gsoapProxy2_3)->componentName->uid = "0";\ }\ - static_cast(gsoapProxy2_3)->componentName->attributeName = constructor(getGsoapContext());\ - static_cast(gsoapProxy2_3)->componentName->attributeName->__item = value;\ - static_cast(gsoapProxy2_3)->componentName->attributeName->uom = uom;\ + static_cast(gsoapProxy2_3)->componentName->attributeName = constructor(getGsoapContext());\ + static_cast(gsoapProxy2_3)->componentName->attributeName->__item = value;\ + static_cast(gsoapProxy2_3)->componentName->attributeName->uom = uom;\ } #define SETTER_FLUID_COMPONENT_COMMON_ATTRIBUTES_IMPL(componentName)\ @@ -256,21 +259,21 @@ void FluidSystem::setRockFluidOrganization(RESQML2_NS::RockFluidOrganizationInte if (rockFluidOrg == nullptr) { throw std::invalid_argument("Cannot set a null rockFluidOrg"); } - if (static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation != nullptr) { + if (static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation != nullptr) { throw std::logic_error("A rock Fluid organization is already set for this fluid system."); } - static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation = rockFluidOrg->newEml23Reference(); + static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation = rockFluidOrg->newEml23Reference(); getRepository()->addRelationship(this, rockFluidOrg); } COMMON_NS::DataObjectReference FluidSystem::getRockFluidOrganizationDor() const { - if (static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation == nullptr) { + if (static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation == nullptr) { return COMMON_NS::DataObjectReference(); } - return COMMON_NS::DataObjectReference(static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation); + return COMMON_NS::DataObjectReference(static_cast(gsoapProxy2_3)->RockFluidOrganizationInterpretation); } RESQML2_NS::RockFluidOrganizationInterpretation* FluidSystem::getRockFluidOrganization() const diff --git a/src/prodml2_2/FluidSystem.h b/src/prodml2_3/FluidSystem.h similarity index 91% rename from src/prodml2_2/FluidSystem.h rename to src/prodml2_3/FluidSystem.h index a72dab05a..677778e0d 100644 --- a/src/prodml2_2/FluidSystem.h +++ b/src/prodml2_3/FluidSystem.h @@ -37,8 +37,8 @@ namespace RESQML2_NS */ #define GETTER_FLUID_COMPONENT_ATTRIBUTE(componentName, attributeName, attributeDatatype)\ DLL_IMPORT_OR_EXPORT attributeDatatype get##componentName##attributeName() const {\ - if (static_cast(gsoapProxy2_3)->componentName == nullptr) { throw std::logic_error("The component does not exist"); }\ - return static_cast(gsoapProxy2_3)->componentName->attributeName;\ + if (static_cast(gsoapProxy2_3)->componentName == nullptr) { throw std::logic_error("The component does not exist"); }\ + return static_cast(gsoapProxy2_3)->componentName->attributeName;\ } /** @@ -51,12 +51,12 @@ namespace RESQML2_NS #define GETTER_AND_SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE(componentName, attributeName, attributeDatatype)\ DLL_IMPORT_OR_EXPORT void set##componentName##attributeName(const attributeDatatype& value);\ DLL_IMPORT_OR_EXPORT bool has##componentName##attributeName() const {\ - return static_cast(gsoapProxy2_3)->componentName != nullptr &&\ - static_cast(gsoapProxy2_3)->componentName->attributeName != nullptr;\ + return static_cast(gsoapProxy2_3)->componentName != nullptr &&\ + static_cast(gsoapProxy2_3)->componentName->attributeName != nullptr;\ }\ DLL_IMPORT_OR_EXPORT attributeDatatype get##componentName##attributeName() const {\ if (!has##componentName##attributeName()) { throw std::logic_error("This attribute in this component attribute does not exist"); }\ - return *static_cast(gsoapProxy2_3)->componentName->attributeName;\ + return *static_cast(gsoapProxy2_3)->componentName->attributeName;\ } /** @@ -69,16 +69,16 @@ namespace RESQML2_NS #define GETTER_AND_SETTER_FLUID_COMPONENT_MEASURE_ATTRIBUTE(componentName, attributeName, uomDatatype)\ DLL_IMPORT_OR_EXPORT void set##componentName##attributeName(double value, uomDatatype uom);\ DLL_IMPORT_OR_EXPORT bool has##componentName##attributeName() const {\ - return static_cast(gsoapProxy2_3)->componentName != nullptr &&\ - static_cast(gsoapProxy2_3)->componentName->attributeName != nullptr;\ + return static_cast(gsoapProxy2_3)->componentName != nullptr &&\ + static_cast(gsoapProxy2_3)->componentName->attributeName != nullptr;\ }\ DLL_IMPORT_OR_EXPORT double get##componentName##attributeName##Value() const {\ if (!has##componentName##attributeName()) { throw std::logic_error("This attribute in this component attribute does not exist"); }\ - return static_cast(gsoapProxy2_3)->componentName->attributeName->__item;\ + return static_cast(gsoapProxy2_3)->componentName->attributeName->__item;\ }\ DLL_IMPORT_OR_EXPORT uomDatatype get##componentName##attributeName##Uom() const {\ if (!has##componentName##attributeName()) { throw std::logic_error("This attribute in this component attribute does not exist"); }\ - return static_cast(gsoapProxy2_3)->componentName->attributeName->uom;\ + return static_cast(gsoapProxy2_3)->componentName->attributeName->uom;\ } /** @@ -88,7 +88,7 @@ namespace RESQML2_NS */ #define GETTER_AND_SETTER_FLUID_COMPONENT_COMMON_ATTRIBUTES(componentName)\ DLL_IMPORT_OR_EXPORT bool has##componentName() const {\ - return static_cast(gsoapProxy2_3)->componentName != nullptr;\ + return static_cast(gsoapProxy2_3)->componentName != nullptr;\ }\ GETTER_FLUID_COMPONENT_ATTRIBUTE(componentName, uid, std::string)\ GETTER_AND_SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE(componentName, Remark, std::string)\ @@ -96,7 +96,7 @@ namespace RESQML2_NS GETTER_AND_SETTER_FLUID_COMPONENT_MEASURE_ATTRIBUTE(componentName, MoleFraction, gsoap_eml2_3::eml23__AmountOfSubstancePerAmountOfSubstanceUom) -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A fluid system. */ class FluidSystem : public COMMON_NS::AbstractObject @@ -135,7 +135,7 @@ namespace PRODML2_2_NS const std::string & title, double temperatureValue, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom temperatureUom, double pressureValue, gsoap_eml2_3::eml23__PressureUom pressureUom, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom); /** @@ -157,7 +157,7 @@ namespace PRODML2_2_NS const std::string & guid, const std::string & title, gsoap_eml2_3::eml23__ReferenceCondition referenceCondition, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom); /** @@ -165,16 +165,16 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - FluidSystem(gsoap_eml2_3::prodml22__FluidSystem* fromGsoap):AbstractObject(fromGsoap) {} + FluidSystem(gsoap_eml2_3::prodml23__FluidSystem* fromGsoap):AbstractObject(fromGsoap) {} /** Destructor does nothing since the memory is managed by the gsoap context. */ ~FluidSystem() = default; - GETTER_SETTER_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidSystem, gsoapProxy2_3, ReservoirFluidKind, gsoap_eml2_3::prodml22__ReservoirFluidKind) + GETTER_SETTER_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidSystem, gsoapProxy2_3, ReservoirFluidKind, gsoap_eml2_3::prodml23__ReservoirFluidKind) - GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidSystem, gsoapProxy2_3, PhasesPresent, gsoap_eml2_3::prodml22__PhasePresent) - GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidSystem, gsoapProxy2_3, ReservoirLifeCycleState, gsoap_eml2_3::prodml22__ReservoirLifeCycleState) - GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml22__FluidSystem, gsoapProxy2_3, Remark, std::string) + GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidSystem, gsoapProxy2_3, PhasesPresent, gsoap_eml2_3::prodml23__PhasePresent) + GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidSystem, gsoapProxy2_3, ReservoirLifeCycleState, gsoap_eml2_3::prodml23__ReservoirLifeCycleState) + GETTER_SETTER_OPTIONAL_ATTRIBUTE(gsoap_eml2_3::prodml23__FluidSystem, gsoapProxy2_3, Remark, std::string) /** * Gets standard temperature value @@ -221,7 +221,7 @@ namespace PRODML2_2_NS /** * Sets the saturation pressure of this fluid system */ - DLL_IMPORT_OR_EXPORT void setSaturationPressure(double value, gsoap_eml2_3::eml23__PressureUom pressureUom, gsoap_eml2_3::prodml22__SaturationPointKind saturationPointKind); + DLL_IMPORT_OR_EXPORT void setSaturationPressure(double value, gsoap_eml2_3::eml23__PressureUom pressureUom, gsoap_eml2_3::prodml23__SaturationPointKind saturationPointKind); /** * Checks if this fluid system has a defined saturation pressure @@ -249,7 +249,7 @@ namespace PRODML2_2_NS * * @returns The saturation pressure point kind of this fluid system. */ - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml22__SaturationPointKind getSaturationPressurePointKind() const; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml23__SaturationPointKind getSaturationPressurePointKind() const; /** * Formation water @@ -344,7 +344,7 @@ namespace PRODML2_2_NS /** * The standard XML namespace for serializing this data object. */ - DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "prodml22"; + DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "prodml23"; /** * Get the standard XML namespace for serializing this data object. diff --git a/src/prodml2_2/FrictionTheorySpecification.cpp b/src/prodml2_3/FrictionTheorySpecification.cpp similarity index 89% rename from src/prodml2_2/FrictionTheorySpecification.cpp rename to src/prodml2_3/FrictionTheorySpecification.cpp index e6b68b9e0..5933aff70 100644 --- a/src/prodml2_2/FrictionTheorySpecification.cpp +++ b/src/prodml2_3/FrictionTheorySpecification.cpp @@ -18,13 +18,13 @@ under the License. -----------------------------------------------------------------------*/ #include "FrictionTheorySpecification.h" -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; void FrictionTheorySpecification::pushBackPrsvParameter(double a1, double a2, double b1, double b2, double c2, const std::string & fluidComponentReference) { - prodml22__PrsvParameter* param = soap_new_prodml22__PrsvParameter(gsoapProxy->soap); - static_cast(gsoapProxy)->PrsvParameter.push_back(param); + prodml23__PrsvParameter* param = soap_new_prodml23__PrsvParameter(gsoapProxy->soap); + static_cast(gsoapProxy)->PrsvParameter.push_back(param); param->a1 = a1; param->a2 = a2; param->b1 = b1; diff --git a/src/prodml2_2/FrictionTheorySpecification.h b/src/prodml2_3/FrictionTheorySpecification.h similarity index 90% rename from src/prodml2_2/FrictionTheorySpecification.h rename to src/prodml2_3/FrictionTheorySpecification.h index 03352a690..dbe8b7d2e 100644 --- a/src/prodml2_2/FrictionTheorySpecification.h +++ b/src/prodml2_3/FrictionTheorySpecification.h @@ -22,7 +22,7 @@ under the License. #include -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A friction theory specification. */ class FrictionTheorySpecification : public CompositionalViscositySpecification @@ -34,7 +34,7 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - FrictionTheorySpecification(gsoap_eml2_3::prodml22__FrictionTheory* fromGsoap): CompositionalViscositySpecification(fromGsoap) {} + FrictionTheorySpecification(gsoap_eml2_3::prodml23__FrictionTheory* fromGsoap): CompositionalViscositySpecification(fromGsoap) {} /** Destructor does nothing since the memory is managed by the gsoap context. */ ~FrictionTheorySpecification() = default; @@ -47,7 +47,7 @@ namespace PRODML2_2_NS * @returns The prsv parameter count. */ DLL_IMPORT_OR_EXPORT unsigned int getPrsvParameterCount() const { - size_t count = static_cast(gsoapProxy)->PrsvParameter.size(); + size_t count = static_cast(gsoapProxy)->PrsvParameter.size(); if (count > (std::numeric_limits::max)()) { throw std::out_of_range("There are too much Prsv parameters"); } @@ -69,7 +69,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PrsvParameter[index]->a1; + return static_cast(gsoapProxy)->PrsvParameter[index]->a1; } /** @@ -87,7 +87,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PrsvParameter[index]->a2; + return static_cast(gsoapProxy)->PrsvParameter[index]->a2; } /** @@ -105,7 +105,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PrsvParameter[index]->b1; + return static_cast(gsoapProxy)->PrsvParameter[index]->b1; } /** @@ -123,7 +123,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PrsvParameter[index]->b2; + return static_cast(gsoapProxy)->PrsvParameter[index]->b2; } /** @@ -141,7 +141,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PrsvParameter[index]->c2; + return static_cast(gsoapProxy)->PrsvParameter[index]->c2; } /** @@ -159,7 +159,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PrsvParameter[index]->fluidComponentReference; + return static_cast(gsoapProxy)->PrsvParameter[index]->fluidComponentReference; } /** diff --git a/src/prodml2_2/PvtSpecification.cpp b/src/prodml2_3/PvtSpecification.cpp similarity index 69% rename from src/prodml2_2/PvtSpecification.cpp rename to src/prodml2_3/PvtSpecification.cpp index efb79e7d1..21e8c28a5 100644 --- a/src/prodml2_2/PvtSpecification.cpp +++ b/src/prodml2_3/PvtSpecification.cpp @@ -20,33 +20,33 @@ under the License. #include -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; -gsoap_eml2_3::prodml22__PvtModelParameterKind PvtSpecification::getCoefficientKind(unsigned int index) const +gsoap_eml2_3::prodml23__PvtModelParameterKind PvtSpecification::getCoefficientKind(unsigned int index) const { if (index >= getCoefficientCount()) { throw std::out_of_range("The index is out of range"); } - gsoap_eml2_3::prodml22__PvtModelParameterKind result; - if (gsoap_eml2_3::soap_s2prodml22__PvtModelParameterKind(gsoapProxy->soap, static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->kind.c_str(), &result) != SOAP_OK) { - throw std::logic_error("The kinf of coefficient " + static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->kind + " is not recognized"); + gsoap_eml2_3::prodml23__PvtModelParameterKind result; + if (gsoap_eml2_3::soap_s2prodml23__PvtModelParameterKind(gsoapProxy->soap, static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->kind.c_str(), &result) != SOAP_OK) { + throw std::logic_error("The kinf of coefficient " + static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->kind + " is not recognized"); } return result; } -void PvtSpecification::pushBackCoefficient(double value, gsoap_eml2_3::prodml22__PvtModelParameterKind kind, const std::string & name) +void PvtSpecification::pushBackCoefficient(double value, gsoap_eml2_3::prodml23__PvtModelParameterKind kind, const std::string & name) { - if (static_cast(gsoapProxy)->PvtModelParameterSet == nullptr) { - static_cast(gsoapProxy)->PvtModelParameterSet = soap_new_prodml22__PvtModelParameterSet(gsoapProxy->soap); + if (static_cast(gsoapProxy)->PvtModelParameterSet == nullptr) { + static_cast(gsoapProxy)->PvtModelParameterSet = soap_new_prodml23__PvtModelParameterSet(gsoapProxy->soap); } - prodml22__PvtModelParameter* param = soap_new_prodml22__PvtModelParameter(gsoapProxy->soap); - static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient.push_back(param); + prodml23__PvtModelParameter* param = soap_new_prodml23__PvtModelParameter(gsoapProxy->soap); + static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient.push_back(param); param->__item = value; - param->kind = gsoap_eml2_3::soap_prodml22__PvtModelParameterKind2s(gsoapProxy->soap, kind); + param->kind = gsoap_eml2_3::soap_prodml23__PvtModelParameterKind2s(gsoapProxy->soap, kind); if (!name.empty()) { param->name = soap_new_std__string(gsoapProxy->soap); param->name->assign(name); diff --git a/src/prodml2_2/PvtSpecification.h b/src/prodml2_3/PvtSpecification.h similarity index 87% rename from src/prodml2_2/PvtSpecification.h rename to src/prodml2_3/PvtSpecification.h index 91aede8ee..2c1c4964e 100644 --- a/src/prodml2_2/PvtSpecification.h +++ b/src/prodml2_3/PvtSpecification.h @@ -35,21 +35,21 @@ under the License. #include "../MacroDefinitions.h" -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** A pvt specification. */ class PvtSpecification { public: /** The gsoap proxy */ - gsoap_eml2_3::prodml22__AbstractPvtModel* gsoapProxy; + gsoap_eml2_3::prodml23__AbstractPvtModel* gsoapProxy; /** * Creates an instance of this class by wrapping a gsoap instance. * * @param [in,out] fromGsoap If non-null, from gsoap. */ - PvtSpecification(gsoap_eml2_3::prodml22__AbstractPvtModel* fromGsoap): gsoapProxy(fromGsoap){} + PvtSpecification(gsoap_eml2_3::prodml23__AbstractPvtModel* fromGsoap): gsoapProxy(fromGsoap){} /** Destructor does nothing since the memory is managed by the gsoap context. */ virtual ~PvtSpecification() = default; @@ -62,11 +62,11 @@ namespace PRODML2_2_NS * @returns The coefficient count. */ DLL_IMPORT_OR_EXPORT unsigned int getCoefficientCount() const { - if (static_cast(gsoapProxy)->PvtModelParameterSet == nullptr) { + if (static_cast(gsoapProxy)->PvtModelParameterSet == nullptr) { return 0; } - size_t count = static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient.size(); + size_t count = static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient.size(); if (count > (std::numeric_limits::max)()) { throw std::out_of_range("There are too much coefficient"); } @@ -88,7 +88,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->__item; + return static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->__item; } /** @@ -98,7 +98,7 @@ namespace PRODML2_2_NS * * @returns The coefficient kind. */ - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml22__PvtModelParameterKind getCoefficientKind(unsigned int index) const; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml23__PvtModelParameterKind getCoefficientKind(unsigned int index) const; /** * Query if 'index' has coefficient name @@ -115,7 +115,7 @@ namespace PRODML2_2_NS throw std::out_of_range("The index is out of range"); } - return static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->name != nullptr; + return static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->name != nullptr; } /** @@ -133,7 +133,7 @@ namespace PRODML2_2_NS throw std::invalid_argument("Ther is no coefficient name at this index"); } - return *static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->name; + return *static_cast(gsoapProxy)->PvtModelParameterSet->Coefficient[index]->name; } /** @@ -143,6 +143,6 @@ namespace PRODML2_2_NS * @param kind The kind. * @param name (Optional) The name. */ - DLL_IMPORT_OR_EXPORT void pushBackCoefficient(double value, gsoap_eml2_3::prodml22__PvtModelParameterKind kind, const std::string & name = ""); + DLL_IMPORT_OR_EXPORT void pushBackCoefficient(double value, gsoap_eml2_3::prodml23__PvtModelParameterKind kind, const std::string & name = ""); }; } diff --git a/src/prodml2_2/TimeSeriesData.cpp b/src/prodml2_3/TimeSeriesData.cpp similarity index 70% rename from src/prodml2_2/TimeSeriesData.cpp rename to src/prodml2_3/TimeSeriesData.cpp index a9a51b466..fff0ab01a 100644 --- a/src/prodml2_2/TimeSeriesData.cpp +++ b/src/prodml2_3/TimeSeriesData.cpp @@ -23,7 +23,7 @@ under the License. #include "../tools/TimeTools.h" using namespace std; -using namespace PRODML2_2_NS; +using namespace PRODML2_3_NS; using namespace gsoap_eml2_3; TimeSeriesData::TimeSeriesData(COMMON_NS::DataObjectRepository * repo, @@ -34,7 +34,7 @@ TimeSeriesData::TimeSeriesData(COMMON_NS::DataObjectRepository * repo, throw invalid_argument("A repo must exist."); } - gsoapProxy2_3 = soap_new_prodml22__TimeSeriesData(repo->getGsoapContext()); + gsoapProxy2_3 = soap_new_prodml23__TimeSeriesData(repo->getGsoapContext()); initMandatoryMetadata(); setMetadata(guid, title, "", -1, "", "", -1, ""); @@ -42,19 +42,19 @@ TimeSeriesData::TimeSeriesData(COMMON_NS::DataObjectRepository * repo, repo->addDataObject(unique_ptr{this}); } -void TimeSeriesData::pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword keyword, const std::string & value) +void TimeSeriesData::pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword keyword, const std::string & value) { - auto keyVal = soap_new_prodml22__KeywordValueStruct(getGsoapContext()); + auto keyVal = soap_new_prodml23__KeywordValueStruct(getGsoapContext()); keyVal->keyword = keyword; keyVal->__item = value; - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); tsData->Key.push_back(keyVal); } void TimeSeriesData::setUom(gsoap_resqml2_0_1::resqml20__ResqmlUom uom) { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); if (tsData->Uom == nullptr) { tsData->Uom = soap_new_std__string(getGsoapContext()); } @@ -63,7 +63,7 @@ void TimeSeriesData::setUom(gsoap_resqml2_0_1::resqml20__ResqmlUom uom) void TimeSeriesData::setMeasureClass(gsoap_eml2_3::eml23__MeasureClass measureClass) { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); if (tsData->MeasureClass == nullptr) { tsData->MeasureClass = (gsoap_eml2_3::eml23__MeasureClass*)soap_malloc(getGsoapContext(), sizeof(gsoap_eml2_3::eml23__MeasureClass)); } @@ -72,8 +72,8 @@ void TimeSeriesData::setMeasureClass(gsoap_eml2_3::eml23__MeasureClass measureCl void TimeSeriesData::pushBackDoubleValue(double value, time_t timestamp) { - auto dblVal = soap_new_prodml22__DoubleValue(getGsoapContext()); - dblVal->DoubleValue = soap_new_prodml22__TimeSeriesDoubleSample(getGsoapContext()); + auto dblVal = soap_new_prodml23__DoubleValue(getGsoapContext()); + dblVal->DoubleValue = soap_new_prodml23__TimeSeriesDoubleSample(getGsoapContext()); dblVal->DoubleValue->__item = value; if (timestamp > -1) { dblVal->DoubleValue->dTim = (tm*)soap_malloc(getGsoapContext(), sizeof(tm)); @@ -81,23 +81,23 @@ void TimeSeriesData::pushBackDoubleValue(double value, time_t timestamp) *dblVal->DoubleValue->dTim = tmConversion; } - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); tsData->DataValue.push_back(dblVal); } -void TimeSeriesData::pushBackDoubleValue(double value, time_t timestamp, gsoap_eml2_3::prodml22__ValueStatus status) +void TimeSeriesData::pushBackDoubleValue(double value, time_t timestamp, gsoap_eml2_3::prodml23__ValueStatus status) { pushBackDoubleValue(value, timestamp); - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); - static_cast(tsData->DataValue[tsData->DataValue.size() - 1])->DoubleValue->status = soap_new_prodml22__ValueStatus(getGsoapContext()); - *static_cast(tsData->DataValue[tsData->DataValue.size() - 1])->DoubleValue->status = status; + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + static_cast(tsData->DataValue[tsData->DataValue.size() - 1])->DoubleValue->status = soap_new_prodml23__ValueStatus(getGsoapContext()); + *static_cast(tsData->DataValue[tsData->DataValue.size() - 1])->DoubleValue->status = status; } void TimeSeriesData::pushBackStringValue(const std::string & value, time_t timestamp) { - auto strVal = soap_new_prodml22__StringValue(getGsoapContext()); - strVal->StringValue = soap_new_prodml22__TimeSeriesStringSample(getGsoapContext()); + auto strVal = soap_new_prodml23__StringValue(getGsoapContext()); + strVal->StringValue = soap_new_prodml23__TimeSeriesStringSample(getGsoapContext()); strVal->StringValue->__item = value; if (timestamp > -1) { strVal->StringValue->dTim = (tm*)soap_malloc(getGsoapContext(), sizeof(tm)); @@ -105,27 +105,27 @@ void TimeSeriesData::pushBackStringValue(const std::string & value, time_t times *strVal->StringValue->dTim = tmConversion; } - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); tsData->DataValue.push_back(strVal); } std::string TimeSeriesData::getUomAsString() const { - return static_cast(gsoapProxy2_3)->Uom == nullptr + return static_cast(gsoapProxy2_3)->Uom == nullptr ? "" - : *static_cast(gsoapProxy2_3)->Uom; + : *static_cast(gsoapProxy2_3)->Uom; } std::string TimeSeriesData::getMeasureClassAsString() const { - return static_cast(gsoapProxy2_3)->MeasureClass == nullptr + return static_cast(gsoapProxy2_3)->MeasureClass == nullptr ? "" - : gsoap_eml2_3::soap_eml23__MeasureClass2s(gsoapProxy2_3->soap, *static_cast(gsoapProxy2_3)->MeasureClass); + : gsoap_eml2_3::soap_eml23__MeasureClass2s(gsoapProxy2_3->soap, *static_cast(gsoapProxy2_3)->MeasureClass); } unsigned int TimeSeriesData::getValueCount() const { - const size_t result = static_cast(gsoapProxy2_3)->DataValue.size(); + const size_t result = static_cast(gsoapProxy2_3)->DataValue.size(); if (result > (std::numeric_limits::max)()) { throw std::range_error("There are too much values."); } @@ -135,22 +135,22 @@ unsigned int TimeSeriesData::getValueCount() const bool TimeSeriesData::isDoubleValue(unsigned int index) const { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); if (index >= tsData->DataValue.size()) { throw std::out_of_range("The index is out of range."); } - return tsData->DataValue[index]->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue; + return tsData->DataValue[index]->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue; } bool TimeSeriesData::isStringValue(unsigned int index) const { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); if (index >= tsData->DataValue.size()) { throw std::out_of_range("The index is out of range."); } - return tsData->DataValue[index]->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue; + return tsData->DataValue[index]->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue; } double TimeSeriesData::getDoubleValue(unsigned int index) const @@ -159,8 +159,8 @@ double TimeSeriesData::getDoubleValue(unsigned int index) const throw std::logic_error("This value is not a double one"); } - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); - return static_cast(tsData->DataValue[index])->DoubleValue->__item; + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + return static_cast(tsData->DataValue[index])->DoubleValue->__item; } std::string TimeSeriesData::getStringValue(unsigned int index) const @@ -169,19 +169,19 @@ std::string TimeSeriesData::getStringValue(unsigned int index) const throw std::logic_error("This value is not a string one"); } - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); - return static_cast(tsData->DataValue[index])->StringValue->__item; + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + return static_cast(tsData->DataValue[index])->StringValue->__item; } time_t TimeSeriesData::getValueTimestamp(unsigned int index) const { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); tm* result = nullptr; if (isDoubleValue(index)) { - result = static_cast(tsData->DataValue[index])->DoubleValue->dTim; + result = static_cast(tsData->DataValue[index])->DoubleValue->dTim; } else if (isStringValue(index)) { - result = static_cast(tsData->DataValue[index])->StringValue->dTim; + result = static_cast(tsData->DataValue[index])->StringValue->dTim; } else { throw std::logic_error("This value is not a string one neither a double one"); @@ -198,23 +198,23 @@ bool TimeSeriesData::hasValueStatus(unsigned int index) const return false; } - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); - return static_cast(tsData->DataValue[index])->DoubleValue->status != nullptr; + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + return static_cast(tsData->DataValue[index])->DoubleValue->status != nullptr; } -gsoap_eml2_3::prodml22__ValueStatus TimeSeriesData::getValueStatus(unsigned int index) const +gsoap_eml2_3::prodml23__ValueStatus TimeSeriesData::getValueStatus(unsigned int index) const { if (!hasValueStatus(index)) { throw std::logic_error("This value has no status"); } - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); - return *static_cast(tsData->DataValue[index])->DoubleValue->status; + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + return *static_cast(tsData->DataValue[index])->DoubleValue->status; } unsigned int TimeSeriesData::getKeywordCount() const { - const size_t result = static_cast(gsoapProxy2_3)->Key.size(); + const size_t result = static_cast(gsoapProxy2_3)->Key.size(); if (result > (std::numeric_limits::max)()) { throw std::range_error("There are too much keywords."); } @@ -222,9 +222,9 @@ unsigned int TimeSeriesData::getKeywordCount() const return static_cast(result); } -gsoap_eml2_3::prodml22__TimeSeriesKeyword TimeSeriesData::getKeyword(unsigned int index) const +gsoap_eml2_3::prodml23__TimeSeriesKeyword TimeSeriesData::getKeyword(unsigned int index) const { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); if (index >= tsData->Key.size()) { throw std::out_of_range("The index is out of range."); } @@ -234,7 +234,7 @@ gsoap_eml2_3::prodml22__TimeSeriesKeyword TimeSeriesData::getKeyword(unsigned in std::string TimeSeriesData::getKeywordValue(unsigned int index) const { - prodml22__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); + prodml23__TimeSeriesData* tsData = static_cast(gsoapProxy2_3); if (index >= tsData->Key.size()) { throw std::out_of_range("The index is out of range."); } diff --git a/src/prodml2_2/TimeSeriesData.h b/src/prodml2_3/TimeSeriesData.h similarity index 96% rename from src/prodml2_2/TimeSeriesData.h rename to src/prodml2_3/TimeSeriesData.h index b72b2a9b2..a2fe37280 100644 --- a/src/prodml2_2/TimeSeriesData.h +++ b/src/prodml2_3/TimeSeriesData.h @@ -20,7 +20,7 @@ under the License. #include "../common/AbstractObject.h" -namespace PRODML2_2_NS +namespace PRODML2_3_NS { /** The time series data object is intended for use in transferring time series of data, e.g. from a historian. * The Time Series data object describes a context free, time based series of measurement data for the @@ -62,7 +62,7 @@ namespace PRODML2_2_NS * * @param [in,out] fromGsoap If non-null, from gsoap. */ - TimeSeriesData(gsoap_eml2_3::prodml22__TimeSeriesData* fromGsoap):AbstractObject(fromGsoap) {} + TimeSeriesData(gsoap_eml2_3::prodml23__TimeSeriesData* fromGsoap):AbstractObject(fromGsoap) {} /** Destructor does nothing since the memory is managed by the gsoap context. */ ~TimeSeriesData() = default; @@ -90,7 +90,7 @@ namespace PRODML2_2_NS * keyword must be from the list defined by type ReportingFlow. * @param value The string value associated to the keyword */ - DLL_IMPORT_OR_EXPORT void pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword keyword, const std::string & value); + DLL_IMPORT_OR_EXPORT void pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword keyword, const std::string & value); /** * Set the uom of the data of the time series. @@ -124,7 +124,7 @@ namespace PRODML2_2_NS * @param value The time of the value to push back. * @param value The status of the value to push back. */ - DLL_IMPORT_OR_EXPORT void pushBackDoubleValue(double value, time_t timestamp, gsoap_eml2_3::prodml22__ValueStatus status); + DLL_IMPORT_OR_EXPORT void pushBackDoubleValue(double value, time_t timestamp, gsoap_eml2_3::prodml23__ValueStatus status); /** * Push back a new value (i.e data) in the time series @@ -207,7 +207,7 @@ namespace PRODML2_2_NS * @param index The index of the value in this timeseries * @return the status associated to a value at a particular index. */ - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml22__ValueStatus getValueStatus(unsigned int index) const; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml23__ValueStatus getValueStatus(unsigned int index) const; /** * Get the count of keywords in this time series @@ -220,7 +220,7 @@ namespace PRODML2_2_NS * @param index The index of the keyword in this timeseries * @return the keyword at a particular index */ - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml22__TimeSeriesKeyword getKeyword(unsigned int index) const; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::prodml23__TimeSeriesKeyword getKeyword(unsigned int index) const; /** * Get the value of a keyword at a particular index. @@ -247,7 +247,7 @@ namespace PRODML2_2_NS /** * The standard XML namespace for serializing this data object. */ - DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "prodml22"; + DLL_IMPORT_OR_EXPORT static constexpr char const* XML_NS = "prodml23"; /** * Get the standard XML namespace for serializing this data object. diff --git a/src/proxies/envC.cpp b/src/proxies/envC.cpp index bffd424d9..07e938f88 100644 --- a/src/proxies/envC.cpp +++ b/src/proxies/envC.cpp @@ -1,8 +1,8 @@ /* envC.cpp - Generated by gSOAP 2.8.127E for env.h + Generated by gSOAP 2.8.139E for env.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -17,7 +17,7 @@ Product and source code licensed by Genivia Inc., contact@genivia.com #include "envH.h" -SOAP_SOURCE_STAMP("@(#) envC.cpp ver 2.8.127E 2023-03-30 07:11:21 GMT") +SOAP_SOURCE_STAMP("@(#) envC.cpp ver 2.8.139E 2025-09-19 16:13:39 GMT") #ifndef WITH_NOGLOBAL diff --git a/src/proxies/envH.h b/src/proxies/envH.h index 457dfc2b5..6e1f9cdd3 100644 --- a/src/proxies/envH.h +++ b/src/proxies/envH.h @@ -1,8 +1,8 @@ /* envH.h - Generated by gSOAP 2.8.127E for env.h + Generated by gSOAP 2.8.139E for env.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- diff --git a/src/proxies/envStub.h b/src/proxies/envStub.h index 082c01a9f..8a7981469 100644 --- a/src/proxies/envStub.h +++ b/src/proxies/envStub.h @@ -1,8 +1,8 @@ /* envStub.h - Generated by gSOAP 2.8.127E for env.h + Generated by gSOAP 2.8.139E for env.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -14,8 +14,8 @@ Product and source code licensed by Genivia Inc., contact@genivia.com #ifndef envStub_H #define envStub_H #include "stdsoap2.h" -#if GSOAP_VERSION != 208127 -# error "GSOAP VERSION 208127 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" +#if GSOAP_VERSION != 208139 +# error "GSOAP VERSION 208139 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" #endif diff --git a/src/proxies/gsoap_eml2_3C.cpp b/src/proxies/gsoap_eml2_3C.cpp index 6da69eae4..02fa3f8aa 100644 --- a/src/proxies/gsoap_eml2_3C.cpp +++ b/src/proxies/gsoap_eml2_3C.cpp @@ -1,8 +1,8 @@ /* gsoap_eml2_3C.cpp - Generated by gSOAP 2.8.127E for eml2_3ForGsoap.h + Generated by gSOAP 2.8.139E for eml2_3ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -27,7 +27,7 @@ Product and source code licensed by Genivia Inc., contact@genivia.com namespace gsoap_eml2_3 { -SOAP_SOURCE_STAMP("@(#) gsoap_eml2_3C.cpp ver 2.8.127E 2023-03-30 07:11:29 GMT") +SOAP_SOURCE_STAMP("@(#) gsoap_eml2_3C.cpp ver 2.8.139E 2025-09-19 16:13:42 GMT") #ifndef WITH_NOGLOBAL @@ -199,8 +199,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_byte(soap, tag, NULL, "xsd:byte"); case SOAP_TYPE_gsoap_eml2_3_int: return soap_in_int(soap, tag, NULL, "xsd:int"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear: - return soap_in_prodml22__CalendarYear(soap, tag, NULL, "prodml22:CalendarYear"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear: + return soap_in_prodml23__CalendarYear(soap, tag, NULL, "prodml23:CalendarYear"); case SOAP_TYPE_gsoap_eml2_3_eml23__PositiveLong: return soap_in_eml23__PositiveLong(soap, tag, NULL, "eml23:PositiveLong"); case SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong: @@ -213,8 +213,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_xsd__integer(soap, tag, NULL, "xsd:integer"); case SOAP_TYPE_gsoap_eml2_3_LONG64: return soap_in_LONG64(soap, tag, NULL, "xsd:long"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction: - return soap_in_prodml22__NonNegativeFraction(soap, tag, NULL, "prodml22:NonNegativeFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction: + return soap_in_prodml23__NonNegativeFraction(soap, tag, NULL, "prodml23:NonNegativeFraction"); case SOAP_TYPE_gsoap_eml2_3_float: return soap_in_float(soap, tag, NULL, "xsd:float"); case SOAP_TYPE_gsoap_eml2_3_eml23__PositiveDouble: @@ -305,144 +305,144 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_resqml22__LineRole(soap, tag, NULL, "resqml22:LineRole"); case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKind: return soap_in_resqml22__CulturalFeatureKind(soap, tag, NULL, "resqml22:CulturalFeatureKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword: - return soap_in_prodml22__TimeSeriesKeyword(soap, tag, NULL, "prodml22:TimeSeriesKeyword"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval: - return soap_in_prodml22__EndpointQualifierInterval(soap, tag, NULL, "prodml22:EndpointQualifierInterval"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod: - return soap_in_prodml22__WellOperationMethod(soap, tag, NULL, "prodml22:WellOperationMethod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis: - return soap_in_prodml22__FluidComponentBasis(soap, tag, NULL, "prodml22:FluidComponentBasis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod: - return soap_in_prodml22__CalculationMethod(soap, tag, NULL, "prodml22:CalculationMethod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart: - return soap_in_prodml22__BalanceFlowPart(soap, tag, NULL, "prodml22:BalanceFlowPart"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind: - return soap_in_prodml22__BalanceEventKind(soap, tag, NULL, "prodml22:BalanceEventKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType: - return soap_in_prodml22__BalanceDestinationType(soap, tag, NULL, "prodml22:BalanceDestinationType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction: - return soap_in_prodml22__SampleAction(soap, tag, NULL, "prodml22:SampleAction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind: - return soap_in_prodml22__FluidSampleKind(soap, tag, NULL, "prodml22:FluidSampleKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType: - return soap_in_prodml22__WellboreStorageMechanismType(soap, tag, NULL, "prodml22:WellboreStorageMechanismType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType: - return soap_in_prodml22__UpperBoundaryType(soap, tag, NULL, "prodml22:UpperBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection: - return soap_in_prodml22__ParameterDirection(soap, tag, NULL, "prodml22:ParameterDirection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType: - return soap_in_prodml22__LowerBoundaryType(soap, tag, NULL, "prodml22:LowerBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType: - return soap_in_prodml22__FractureModelType(soap, tag, NULL, "prodml22:FractureModelType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type: - return soap_in_prodml22__Boundary4Type(soap, tag, NULL, "prodml22:Boundary4Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type: - return soap_in_prodml22__Boundary3Type(soap, tag, NULL, "prodml22:Boundary3Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type: - return soap_in_prodml22__Boundary2Type(soap, tag, NULL, "prodml22:Boundary2Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type: - return soap_in_prodml22__Boundary1Type(soap, tag, NULL, "prodml22:Boundary1Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind: - return soap_in_prodml22__TimeNonLinearTransformKind(soap, tag, NULL, "prodml22:TimeNonLinearTransformKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied: - return soap_in_prodml22__PseudoPressureEffectApplied(soap, tag, NULL, "prodml22:PseudoPressureEffectApplied"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind: - return soap_in_prodml22__PressureNonLinearTransformKind(soap, tag, NULL, "prodml22:PressureNonLinearTransformKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform: - return soap_in_prodml22__LogLogTimeTransform(soap, tag, NULL, "prodml22:LogLogTimeTransform"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform: - return soap_in_prodml22__LogLogPressureTransform(soap, tag, NULL, "prodml22:LogLogPressureTransform"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind: - return soap_in_prodml22__FluidPhaseKind(soap, tag, NULL, "prodml22:FluidPhaseKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation: - return soap_in_prodml22__TimeSeriesPointRepresentation(soap, tag, NULL, "prodml22:TimeSeriesPointRepresentation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind: - return soap_in_prodml22__TestPeriodKind(soap, tag, NULL, "prodml22:TestPeriodKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind: - return soap_in_prodml22__FluidPhaseMeasuredKind(soap, tag, NULL, "prodml22:FluidPhaseMeasuredKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning: - return soap_in_prodml22__DataConditioning(soap, tag, NULL, "prodml22:DataConditioning"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState: - return soap_in_prodml22__ReservoirLifeCycleState(soap, tag, NULL, "prodml22:ReservoirLifeCycleState"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent: - return soap_in_prodml22__PhasePresent(soap, tag, NULL, "prodml22:PhasePresent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind: - return soap_in_prodml22__VolumeReferenceKind(soap, tag, NULL, "prodml22:VolumeReferenceKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase: - return soap_in_prodml22__ThermodynamicPhase(soap, tag, NULL, "prodml22:ThermodynamicPhase"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality: - return soap_in_prodml22__SampleQuality(soap, tag, NULL, "prodml22:SampleQuality"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind: - return soap_in_prodml22__OrganicAcidKind(soap, tag, NULL, "prodml22:OrganicAcidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant: - return soap_in_prodml22__FluidContaminant(soap, tag, NULL, "prodml22:FluidContaminant"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition: - return soap_in_prodml22__FluidAnalysisStepCondition(soap, tag, NULL, "prodml22:FluidAnalysisStepCondition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind: - return soap_in_prodml22__DetectableLimitRelativeStateKind(soap, tag, NULL, "prodml22:DetectableLimitRelativeStateKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind: - return soap_in_prodml22__CompressibilityKind(soap, tag, NULL, "prodml22:CompressibilityKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind: - return soap_in_prodml22__CationKind(soap, tag, NULL, "prodml22:CationKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind: - return soap_in_prodml22__AnionKind(soap, tag, NULL, "prodml22:AnionKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid: - return soap_in_prodml22__WellFluid(soap, tag, NULL, "prodml22:WellFluid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection: - return soap_in_prodml22__WellDirection(soap, tag, NULL, "prodml22:WellDirection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus: - return soap_in_prodml22__ValueStatus(soap, tag, NULL, "prodml22:ValueStatus"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind: - return soap_in_prodml22__SulfurComponentKind(soap, tag, NULL, "prodml22:SulfurComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind: - return soap_in_prodml22__ServiceFluidKind(soap, tag, NULL, "prodml22:ServiceFluidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind: - return soap_in_prodml22__SaturationPointKind(soap, tag, NULL, "prodml22:SaturationPointKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType: - return soap_in_prodml22__SafetyType(soap, tag, NULL, "prodml22:SafetyType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind: - return soap_in_prodml22__ReservoirFluidKind(soap, tag, NULL, "prodml22:ReservoirFluidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct: - return soap_in_prodml22__ReportingProduct(soap, tag, NULL, "prodml22:ReportingProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow: - return soap_in_prodml22__ReportingFlow(soap, tag, NULL, "prodml22:ReportingFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility: - return soap_in_prodml22__ReportingFacility(soap, tag, NULL, "prodml22:ReportingFacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind: - return soap_in_prodml22__ReportingEntityKind(soap, tag, NULL, "prodml22:ReportingEntityKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind: - return soap_in_prodml22__ReportingDurationKind(soap, tag, NULL, "prodml22:ReportingDurationKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind: - return soap_in_prodml22__PureComponentKind(soap, tag, NULL, "prodml22:PureComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind: - return soap_in_prodml22__PseudoComponentKind(soap, tag, NULL, "prodml22:PseudoComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind: - return soap_in_prodml22__ProductFluidKind(soap, tag, NULL, "prodml22:ProductFluidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType: - return soap_in_prodml22__ProductFlowPortType(soap, tag, NULL, "prodml22:ProductFlowPortType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind: - return soap_in_prodml22__PlusComponentKind(soap, tag, NULL, "prodml22:PlusComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier: - return soap_in_prodml22__FlowSubQualifier(soap, tag, NULL, "prodml22:FlowSubQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier: - return soap_in_prodml22__FlowQualifier(soap, tag, NULL, "prodml22:FlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode: - return soap_in_prodml22__FiberMode(soap, tag, NULL, "prodml22:FiberMode"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter: - return soap_in_prodml22__FacilityParameter(soap, tag, NULL, "prodml22:FacilityParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier: - return soap_in_prodml22__EndpointQualifier(soap, tag, NULL, "prodml22:EndpointQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind: - return soap_in_prodml22__BusinessUnitKind(soap, tag, NULL, "prodml22:BusinessUnitKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind: - return soap_in_prodml22__SaturationKind(soap, tag, NULL, "prodml22:SaturationKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind: - return soap_in_prodml22__PvtModelParameterKind(soap, tag, NULL, "prodml22:PvtModelParameterKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty: - return soap_in_prodml22__OutputFluidProperty(soap, tag, NULL, "prodml22:OutputFluidProperty"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule: - return soap_in_prodml22__MixingRule(soap, tag, NULL, "prodml22:MixingRule"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword: + return soap_in_prodml23__TimeSeriesKeyword(soap, tag, NULL, "prodml23:TimeSeriesKeyword"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval: + return soap_in_prodml23__EndpointQualifierInterval(soap, tag, NULL, "prodml23:EndpointQualifierInterval"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod: + return soap_in_prodml23__WellOperationMethod(soap, tag, NULL, "prodml23:WellOperationMethod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis: + return soap_in_prodml23__FluidComponentBasis(soap, tag, NULL, "prodml23:FluidComponentBasis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod: + return soap_in_prodml23__CalculationMethod(soap, tag, NULL, "prodml23:CalculationMethod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart: + return soap_in_prodml23__BalanceFlowPart(soap, tag, NULL, "prodml23:BalanceFlowPart"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind: + return soap_in_prodml23__BalanceEventKind(soap, tag, NULL, "prodml23:BalanceEventKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType: + return soap_in_prodml23__BalanceDestinationType(soap, tag, NULL, "prodml23:BalanceDestinationType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction: + return soap_in_prodml23__SampleAction(soap, tag, NULL, "prodml23:SampleAction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind: + return soap_in_prodml23__FluidSampleKind(soap, tag, NULL, "prodml23:FluidSampleKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType: + return soap_in_prodml23__WellboreStorageMechanismType(soap, tag, NULL, "prodml23:WellboreStorageMechanismType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType: + return soap_in_prodml23__UpperBoundaryType(soap, tag, NULL, "prodml23:UpperBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection: + return soap_in_prodml23__ParameterDirection(soap, tag, NULL, "prodml23:ParameterDirection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType: + return soap_in_prodml23__LowerBoundaryType(soap, tag, NULL, "prodml23:LowerBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType: + return soap_in_prodml23__FractureModelType(soap, tag, NULL, "prodml23:FractureModelType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type: + return soap_in_prodml23__Boundary4Type(soap, tag, NULL, "prodml23:Boundary4Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type: + return soap_in_prodml23__Boundary3Type(soap, tag, NULL, "prodml23:Boundary3Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type: + return soap_in_prodml23__Boundary2Type(soap, tag, NULL, "prodml23:Boundary2Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type: + return soap_in_prodml23__Boundary1Type(soap, tag, NULL, "prodml23:Boundary1Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind: + return soap_in_prodml23__TimeNonLinearTransformKind(soap, tag, NULL, "prodml23:TimeNonLinearTransformKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied: + return soap_in_prodml23__PseudoPressureEffectApplied(soap, tag, NULL, "prodml23:PseudoPressureEffectApplied"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind: + return soap_in_prodml23__PressureNonLinearTransformKind(soap, tag, NULL, "prodml23:PressureNonLinearTransformKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform: + return soap_in_prodml23__LogLogTimeTransform(soap, tag, NULL, "prodml23:LogLogTimeTransform"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform: + return soap_in_prodml23__LogLogPressureTransform(soap, tag, NULL, "prodml23:LogLogPressureTransform"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind: + return soap_in_prodml23__FluidPhaseKind(soap, tag, NULL, "prodml23:FluidPhaseKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation: + return soap_in_prodml23__TimeSeriesPointRepresentation(soap, tag, NULL, "prodml23:TimeSeriesPointRepresentation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind: + return soap_in_prodml23__TestPeriodKind(soap, tag, NULL, "prodml23:TestPeriodKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind: + return soap_in_prodml23__FluidPhaseMeasuredKind(soap, tag, NULL, "prodml23:FluidPhaseMeasuredKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning: + return soap_in_prodml23__DataConditioning(soap, tag, NULL, "prodml23:DataConditioning"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState: + return soap_in_prodml23__ReservoirLifeCycleState(soap, tag, NULL, "prodml23:ReservoirLifeCycleState"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent: + return soap_in_prodml23__PhasePresent(soap, tag, NULL, "prodml23:PhasePresent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind: + return soap_in_prodml23__VolumeReferenceKind(soap, tag, NULL, "prodml23:VolumeReferenceKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase: + return soap_in_prodml23__ThermodynamicPhase(soap, tag, NULL, "prodml23:ThermodynamicPhase"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality: + return soap_in_prodml23__SampleQuality(soap, tag, NULL, "prodml23:SampleQuality"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind: + return soap_in_prodml23__OrganicAcidKind(soap, tag, NULL, "prodml23:OrganicAcidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant: + return soap_in_prodml23__FluidContaminant(soap, tag, NULL, "prodml23:FluidContaminant"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition: + return soap_in_prodml23__FluidAnalysisStepCondition(soap, tag, NULL, "prodml23:FluidAnalysisStepCondition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind: + return soap_in_prodml23__DetectableLimitRelativeStateKind(soap, tag, NULL, "prodml23:DetectableLimitRelativeStateKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind: + return soap_in_prodml23__CompressibilityKind(soap, tag, NULL, "prodml23:CompressibilityKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind: + return soap_in_prodml23__CationKind(soap, tag, NULL, "prodml23:CationKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind: + return soap_in_prodml23__AnionKind(soap, tag, NULL, "prodml23:AnionKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid: + return soap_in_prodml23__WellFluid(soap, tag, NULL, "prodml23:WellFluid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection: + return soap_in_prodml23__WellDirection(soap, tag, NULL, "prodml23:WellDirection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus: + return soap_in_prodml23__ValueStatus(soap, tag, NULL, "prodml23:ValueStatus"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind: + return soap_in_prodml23__SulfurComponentKind(soap, tag, NULL, "prodml23:SulfurComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind: + return soap_in_prodml23__ServiceFluidKind(soap, tag, NULL, "prodml23:ServiceFluidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind: + return soap_in_prodml23__SaturationPointKind(soap, tag, NULL, "prodml23:SaturationPointKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType: + return soap_in_prodml23__SafetyType(soap, tag, NULL, "prodml23:SafetyType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind: + return soap_in_prodml23__ReservoirFluidKind(soap, tag, NULL, "prodml23:ReservoirFluidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct: + return soap_in_prodml23__ReportingProduct(soap, tag, NULL, "prodml23:ReportingProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow: + return soap_in_prodml23__ReportingFlow(soap, tag, NULL, "prodml23:ReportingFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility: + return soap_in_prodml23__ReportingFacility(soap, tag, NULL, "prodml23:ReportingFacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind: + return soap_in_prodml23__ReportingEntityKind(soap, tag, NULL, "prodml23:ReportingEntityKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind: + return soap_in_prodml23__ReportingDurationKind(soap, tag, NULL, "prodml23:ReportingDurationKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind: + return soap_in_prodml23__PureComponentKind(soap, tag, NULL, "prodml23:PureComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind: + return soap_in_prodml23__PseudoComponentKind(soap, tag, NULL, "prodml23:PseudoComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind: + return soap_in_prodml23__ProductFluidKind(soap, tag, NULL, "prodml23:ProductFluidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType: + return soap_in_prodml23__ProductFlowPortType(soap, tag, NULL, "prodml23:ProductFlowPortType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind: + return soap_in_prodml23__PlusComponentKind(soap, tag, NULL, "prodml23:PlusComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier: + return soap_in_prodml23__FlowSubQualifier(soap, tag, NULL, "prodml23:FlowSubQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier: + return soap_in_prodml23__FlowQualifier(soap, tag, NULL, "prodml23:FlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode: + return soap_in_prodml23__FiberMode(soap, tag, NULL, "prodml23:FiberMode"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter: + return soap_in_prodml23__FacilityParameter(soap, tag, NULL, "prodml23:FacilityParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier: + return soap_in_prodml23__EndpointQualifier(soap, tag, NULL, "prodml23:EndpointQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind: + return soap_in_prodml23__BusinessUnitKind(soap, tag, NULL, "prodml23:BusinessUnitKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind: + return soap_in_prodml23__SaturationKind(soap, tag, NULL, "prodml23:SaturationKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind: + return soap_in_prodml23__PvtModelParameterKind(soap, tag, NULL, "prodml23:PvtModelParameterKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty: + return soap_in_prodml23__OutputFluidProperty(soap, tag, NULL, "prodml23:OutputFluidProperty"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule: + return soap_in_prodml23__MixingRule(soap, tag, NULL, "prodml23:MixingRule"); case SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKind: return soap_in_eml23__CollectionKind(soap, tag, NULL, "eml23:CollectionKind"); case SOAP_TYPE_gsoap_eml2_3_eml23__ActivityParameterKind: @@ -1157,8 +1157,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_eml23__UnitOfMeasure(soap, tag, NULL, "eml23:UnitOfMeasure"); case SOAP_TYPE_gsoap_eml2_3_eml23__LegacyUnitOfMeasure: return soap_in_eml23__LegacyUnitOfMeasure(soap, tag, NULL, "eml23:LegacyUnitOfMeasure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth: - return soap_in_prodml22__CalendarMonth(soap, tag, NULL, "prodml22:CalendarMonth"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth: + return soap_in_prodml23__CalendarMonth(soap, tag, NULL, "prodml23:CalendarMonth"); case SOAP_TYPE_gsoap_eml2_3_eml23__SectionNumber: return soap_in_eml23__SectionNumber(soap, tag, NULL, "eml23:SectionNumber"); case SOAP_TYPE_gsoap_eml2_3_eml23__PublicLandSurveySystemQuarterTownship: @@ -1183,8 +1183,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_eml23__String2000(soap, tag, NULL, "eml23:String2000"); case SOAP_TYPE_gsoap_eml2_3_eml23__EnumExtensionPattern: return soap_in_eml23__EnumExtensionPattern(soap, tag, NULL, "eml23:EnumExtensionPattern"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier: - return soap_in_prodml22__ProdmlRelativeIdentifier(soap, tag, NULL, "prodml22:ProdmlRelativeIdentifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier: + return soap_in_prodml23__ProdmlRelativeIdentifier(soap, tag, NULL, "prodml23:ProdmlRelativeIdentifier"); case SOAP_TYPE_gsoap_eml2_3_eml23__AbstractString: return soap_in_eml23__AbstractString(soap, tag, NULL, "eml23:AbstractString"); case SOAP_TYPE_gsoap_eml2_3_resqml22__StreamlineFluxExt: @@ -1209,40 +1209,40 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_resqml22__LineRoleExt(soap, tag, NULL, "resqml22:LineRoleExt"); case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKindExt: return soap_in_resqml22__CulturalFeatureKindExt(soap, tag, NULL, "resqml22:CulturalFeatureKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt: - return soap_in_prodml22__FluidSampleKindExt(soap, tag, NULL, "prodml22:FluidSampleKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt: - return soap_in_prodml22__DataConditioningExt(soap, tag, NULL, "prodml22:DataConditioningExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt: - return soap_in_prodml22__VolumeReferenceKindExt(soap, tag, NULL, "prodml22:VolumeReferenceKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt: - return soap_in_prodml22__OrganicAcidKindExt(soap, tag, NULL, "prodml22:OrganicAcidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt: - return soap_in_prodml22__CationKindExt(soap, tag, NULL, "prodml22:CationKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt: - return soap_in_prodml22__AnionKindExt(soap, tag, NULL, "prodml22:AnionKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt: - return soap_in_prodml22__SulfurComponentKindExt(soap, tag, NULL, "prodml22:SulfurComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt: - return soap_in_prodml22__ServiceFluidKindExt(soap, tag, NULL, "prodml22:ServiceFluidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt: - return soap_in_prodml22__ReportingFacilityExt(soap, tag, NULL, "prodml22:ReportingFacilityExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt: - return soap_in_prodml22__ReportingDurationKindExt(soap, tag, NULL, "prodml22:ReportingDurationKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt: - return soap_in_prodml22__PureComponentKindExt(soap, tag, NULL, "prodml22:PureComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt: - return soap_in_prodml22__PseudoComponentKindExt(soap, tag, NULL, "prodml22:PseudoComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt: - return soap_in_prodml22__ProductFluidKindExt(soap, tag, NULL, "prodml22:ProductFluidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt: - return soap_in_prodml22__PlusComponentKindExt(soap, tag, NULL, "prodml22:PlusComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt: - return soap_in_prodml22__FacilityKindExt(soap, tag, NULL, "prodml22:FacilityKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt: - return soap_in_prodml22__PvtModelParameterKindExt(soap, tag, NULL, "prodml22:PvtModelParameterKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt: - return soap_in_prodml22__OutputFluidPropertyExt(soap, tag, NULL, "prodml22:OutputFluidPropertyExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt: + return soap_in_prodml23__FluidSampleKindExt(soap, tag, NULL, "prodml23:FluidSampleKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt: + return soap_in_prodml23__DataConditioningExt(soap, tag, NULL, "prodml23:DataConditioningExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt: + return soap_in_prodml23__VolumeReferenceKindExt(soap, tag, NULL, "prodml23:VolumeReferenceKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt: + return soap_in_prodml23__OrganicAcidKindExt(soap, tag, NULL, "prodml23:OrganicAcidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt: + return soap_in_prodml23__CationKindExt(soap, tag, NULL, "prodml23:CationKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt: + return soap_in_prodml23__AnionKindExt(soap, tag, NULL, "prodml23:AnionKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt: + return soap_in_prodml23__SulfurComponentKindExt(soap, tag, NULL, "prodml23:SulfurComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt: + return soap_in_prodml23__ServiceFluidKindExt(soap, tag, NULL, "prodml23:ServiceFluidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt: + return soap_in_prodml23__ReportingFacilityExt(soap, tag, NULL, "prodml23:ReportingFacilityExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt: + return soap_in_prodml23__ReportingDurationKindExt(soap, tag, NULL, "prodml23:ReportingDurationKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt: + return soap_in_prodml23__PureComponentKindExt(soap, tag, NULL, "prodml23:PureComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt: + return soap_in_prodml23__PseudoComponentKindExt(soap, tag, NULL, "prodml23:PseudoComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt: + return soap_in_prodml23__ProductFluidKindExt(soap, tag, NULL, "prodml23:ProductFluidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt: + return soap_in_prodml23__PlusComponentKindExt(soap, tag, NULL, "prodml23:PlusComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt: + return soap_in_prodml23__FacilityKindExt(soap, tag, NULL, "prodml23:FacilityKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt: + return soap_in_prodml23__PvtModelParameterKindExt(soap, tag, NULL, "prodml23:PvtModelParameterKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt: + return soap_in_prodml23__OutputFluidPropertyExt(soap, tag, NULL, "prodml23:OutputFluidPropertyExt"); case SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKindExt: return soap_in_eml23__CollectionKindExt(soap, tag, NULL, "eml23:CollectionKindExt"); case SOAP_TYPE_gsoap_eml2_3_eml23__OrganizationKindExt: @@ -2117,812 +2117,812 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_resqml22__AbstractTechnicalFeature(soap, tag, NULL, "resqml22:AbstractTechnicalFeature"); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: return soap_in_resqml22__AbstractFeature(soap, tag, NULL, "resqml22:AbstractFeature"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold: - return soap_in_prodml22__TimeSeriesThreshold(soap, tag, NULL, "prodml22:TimeSeriesThreshold"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: - return soap_in_prodml22__TimeSeriesStatistic(soap, tag, NULL, "prodml22:TimeSeriesStatistic"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct: - return soap_in_prodml22__KeywordValueStruct(soap, tag, NULL, "prodml22:KeywordValueStruct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity: - return soap_in_prodml22__EndpointQuantity(soap, tag, NULL, "prodml22:EndpointQuantity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime: - return soap_in_prodml22__EndpointDateTime(soap, tag, NULL, "prodml22:EndpointDateTime"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample: - return soap_in_prodml22__TimeSeriesStringSample(soap, tag, NULL, "prodml22:TimeSeriesStringSample"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample: - return soap_in_prodml22__TimeSeriesDoubleSample(soap, tag, NULL, "prodml22:TimeSeriesDoubleSample"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: - return soap_in_prodml22__TimeSeriesData(soap, tag, NULL, "prodml22:TimeSeriesData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: - return soap_in_prodml22__StringValue(soap, tag, NULL, "prodml22:StringValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: - return soap_in_prodml22__DoubleValue(soap, tag, NULL, "prodml22:DoubleValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue: - return soap_in_prodml22__AbstractValue(soap, tag, NULL, "prodml22:AbstractValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate: - return soap_in_prodml22__RelativeCoordinate(soap, tag, NULL, "prodml22:RelativeCoordinate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: - return soap_in_prodml22__Qualifier(soap, tag, NULL, "prodml22:Qualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit: - return soap_in_prodml22__ProductFlowUnit(soap, tag, NULL, "prodml22:ProductFlowUnit"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: - return soap_in_prodml22__ProductFlowQualifierExpected(soap, tag, NULL, "prodml22:ProductFlowQualifierExpected"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort: - return soap_in_prodml22__ProductFlowPort(soap, tag, NULL, "prodml22:ProductFlowPort"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan: - return soap_in_prodml22__ProductFlowNetworkPlan(soap, tag, NULL, "prodml22:ProductFlowNetworkPlan"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: - return soap_in_prodml22__ProductFlowModel(soap, tag, NULL, "prodml22:ProductFlowModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort: - return soap_in_prodml22__ProductFlowExternalPort(soap, tag, NULL, "prodml22:ProductFlowExternalPort"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty: - return soap_in_prodml22__ProductFlowExpectedUnitProperty(soap, tag, NULL, "prodml22:ProductFlowExpectedUnitProperty"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog: - return soap_in_prodml22__ProductFlowChangeLog(soap, tag, NULL, "prodml22:ProductFlowChangeLog"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier: - return soap_in_prodml22__ExpectedFlowQualifier(soap, tag, NULL, "prodml22:ExpectedFlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode: - return soap_in_prodml22__ConnectedNode(soap, tag, NULL, "prodml22:ConnectedNode"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: - return soap_in_prodml22__StringData(soap, tag, NULL, "prodml22:StringData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: - return soap_in_prodml22__ReferenceFlow(soap, tag, NULL, "prodml22:ReferenceFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility: - return soap_in_prodml22__ProductVolumeRelatedFacility(soap, tag, NULL, "prodml22:ProductVolumeRelatedFacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct: - return soap_in_prodml22__ProductVolumeProduct(soap, tag, NULL, "prodml22:ProductVolumeProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference: - return soap_in_prodml22__ProductVolumePortDifference(soap, tag, NULL, "prodml22:ProductVolumePortDifference"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod: - return soap_in_prodml22__ProductVolumePeriod(soap, tag, NULL, "prodml22:ProductVolumePeriod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue: - return soap_in_prodml22__ProductVolumeParameterValue(soap, tag, NULL, "prodml22:ProductVolumeParameterValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet: - return soap_in_prodml22__ProductVolumeParameterSet(soap, tag, NULL, "prodml22:ProductVolumeParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow: - return soap_in_prodml22__ProductVolumeFlow(soap, tag, NULL, "prodml22:ProductVolumeFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility: - return soap_in_prodml22__ProductVolumeFacility(soap, tag, NULL, "prodml22:ProductVolumeFacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination: - return soap_in_prodml22__ProductVolumeDestination(soap, tag, NULL, "prodml22:ProductVolumeDestination"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent: - return soap_in_prodml22__ProductVolumeComponentContent(soap, tag, NULL, "prodml22:ProductVolumeComponentContent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit: - return soap_in_prodml22__ProductVolumeBusinessUnit(soap, tag, NULL, "prodml22:ProductVolumeBusinessUnit"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit: - return soap_in_prodml22__ProductVolumeBusinessSubUnit(soap, tag, NULL, "prodml22:ProductVolumeBusinessSubUnit"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet: - return soap_in_prodml22__ProductVolumeBalanceSet(soap, tag, NULL, "prodml22:ProductVolumeBalanceSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent: - return soap_in_prodml22__ProductVolumeBalanceEvent(soap, tag, NULL, "prodml22:ProductVolumeBalanceEvent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail: - return soap_in_prodml22__ProductVolumeBalanceDetail(soap, tag, NULL, "prodml22:ProductVolumeBalanceDetail"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert: - return soap_in_prodml22__ProductVolumeAlert(soap, tag, NULL, "prodml22:ProductVolumeAlert"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: - return soap_in_prodml22__ProductVolume(soap, tag, NULL, "prodml22:ProductVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: - return soap_in_prodml22__Parentfacility(soap, tag, NULL, "prodml22:Parentfacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct: - return soap_in_prodml22__OwnershipBusinessAcct(soap, tag, NULL, "prodml22:OwnershipBusinessAcct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: - return soap_in_prodml22__IntegerData(soap, tag, NULL, "prodml22:IntegerData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: - return soap_in_prodml22__FacilityUnitPort(soap, tag, NULL, "prodml22:FacilityUnitPort"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: - return soap_in_prodml22__FacilityParent(soap, tag, NULL, "prodml22:FacilityParent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition: - return soap_in_prodml22__CurveDefinition(soap, tag, NULL, "prodml22:CurveDefinition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: - return soap_in_prodml22__CurveData(soap, tag, NULL, "prodml22:CurveData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject: - return soap_in_prodml22__AbstractRelatedFacilityObject(soap, tag, NULL, "prodml22:AbstractRelatedFacilityObject"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow: - return soap_in_prodml22__AbstractRefProductFlow(soap, tag, NULL, "prodml22:AbstractRefProductFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData: - return soap_in_prodml22__AbstractMeasureData(soap, tag, NULL, "prodml22:AbstractMeasureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume: - return soap_in_prodml22__CommonPropertiesProductVolume(soap, tag, NULL, "prodml22:CommonPropertiesProductVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: - return soap_in_prodml22__FlowTestJob(soap, tag, NULL, "prodml22:FlowTestJob"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: - return soap_in_prodml22__WellheadSampleAcquisition(soap, tag, NULL, "prodml22:WellheadSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: - return soap_in_prodml22__SeparatorSampleAcquisition(soap, tag, NULL, "prodml22:SeparatorSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: - return soap_in_prodml22__FormationTesterSampleAcquisition(soap, tag, NULL, "prodml22:FormationTesterSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: - return soap_in_prodml22__FluidSampleAcquisitionJob(soap, tag, NULL, "prodml22:FluidSampleAcquisitionJob"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition: - return soap_in_prodml22__FluidSampleAcquisition(soap, tag, NULL, "prodml22:FluidSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: - return soap_in_prodml22__FacilitySampleAcquisition(soap, tag, NULL, "prodml22:FacilitySampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: - return soap_in_prodml22__DownholeSampleAcquisition(soap, tag, NULL, "prodml22:DownholeSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: - return soap_in_prodml22__FluidSampleContainer(soap, tag, NULL, "prodml22:FluidSampleContainer"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification: - return soap_in_prodml22__SampleRecombinationSpecification(soap, tag, NULL, "prodml22:SampleRecombinationSpecification"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction: - return soap_in_prodml22__RecombinedSampleFraction(soap, tag, NULL, "prodml22:RecombinedSampleFraction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent: - return soap_in_prodml22__FluidSampleChainOfCustodyEvent(soap, tag, NULL, "prodml22:FluidSampleChainOfCustodyEvent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource: - return soap_in_prodml22__FluidSampleAcquisitionJobSource(soap, tag, NULL, "prodml22:FluidSampleAcquisitionJobSource"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: - return soap_in_prodml22__FluidSample(soap, tag, NULL, "prodml22:FluidSample"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: - return soap_in_prodml22__WellboreVolume(soap, tag, NULL, "prodml22:WellboreVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: - return soap_in_prodml22__WellboreStorageCoefficient(soap, tag, NULL, "prodml22:WellboreStorageCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: - return soap_in_prodml22__WellboreRadius(soap, tag, NULL, "prodml22:WellboreRadius"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: - return soap_in_prodml22__WellboreFluidCompressibility(soap, tag, NULL, "prodml22:WellboreFluidCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: - return soap_in_prodml22__WellboreDeviationAngle(soap, tag, NULL, "prodml22:WellboreDeviationAngle"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: - return soap_in_prodml22__VerticalAnisotropyKvToKr(soap, tag, NULL, "prodml22:VerticalAnisotropyKvToKr"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: - return soap_in_prodml22__TubingInteralDiameter(soap, tag, NULL, "prodml22:TubingInteralDiameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: - return soap_in_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, NULL, "prodml22:TransmissibilityReductionFactorOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: - return soap_in_prodml22__TotalThickness(soap, tag, NULL, "prodml22:TotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: - return soap_in_prodml22__StorativityRatio(soap, tag, NULL, "prodml22:StorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: - return soap_in_prodml22__SkinRelativeToTotalThickness(soap, tag, NULL, "prodml22:SkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: - return soap_in_prodml22__SkinLayer2RelativeToTotalThickness(soap, tag, NULL, "prodml22:SkinLayer2RelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: - return soap_in_prodml22__Region2Thickness(soap, tag, NULL, "prodml22:Region2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - return soap_in_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, NULL, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: - return soap_in_prodml22__RatioInitialToFinalWellboreStorage(soap, tag, NULL, "prodml22:RatioInitialToFinalWellboreStorage"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: - return soap_in_prodml22__RatioDpSkinToTotalDrawdown(soap, tag, NULL, "prodml22:RatioDpSkinToTotalDrawdown"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: - return soap_in_prodml22__RateDependentSkinFactor(soap, tag, NULL, "prodml22:RateDependentSkinFactor"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: - return soap_in_prodml22__RadiusOfInvestigation(soap, tag, NULL, "prodml22:RadiusOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: - return soap_in_prodml22__PressureDatumTVD(soap, tag, NULL, "prodml22:PressureDatumTVD"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: - return soap_in_prodml22__Porosity(soap, tag, NULL, "prodml22:Porosity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: - return soap_in_prodml22__PoreVolumeOfInvestigation(soap, tag, NULL, "prodml22:PoreVolumeOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: - return soap_in_prodml22__PoreVolumeMeasured(soap, tag, NULL, "prodml22:PoreVolumeMeasured"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: - return soap_in_prodml22__PermeabilityThicknessProduct(soap, tag, NULL, "prodml22:PermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: - return soap_in_prodml22__PerforatedLength(soap, tag, NULL, "prodml22:PerforatedLength"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: - return soap_in_prodml22__OrientationWellTrajectory(soap, tag, NULL, "prodml22:OrientationWellTrajectory"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: - return soap_in_prodml22__OrientationOfNormalToBoundary1(soap, tag, NULL, "prodml22:OrientationOfNormalToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: - return soap_in_prodml22__OrientationOfLinearFront(soap, tag, NULL, "prodml22:OrientationOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: - return soap_in_prodml22__OrientationOfFracturePlane(soap, tag, NULL, "prodml22:OrientationOfFracturePlane"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: - return soap_in_prodml22__OrientationOfAnisotropyXDirection(soap, tag, NULL, "prodml22:OrientationOfAnisotropyXDirection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: - return soap_in_prodml22__NumberOfFractures(soap, tag, NULL, "prodml22:NumberOfFractures"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: - return soap_in_prodml22__ModelName(soap, tag, NULL, "prodml22:ModelName"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: - return soap_in_prodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, NULL, "prodml22:MechanicalSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: - return soap_in_prodml22__LengthHorizontalWellboreFlowing(soap, tag, NULL, "prodml22:LengthHorizontalWellboreFlowing"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: - return soap_in_prodml22__LeakSkin(soap, tag, NULL, "prodml22:LeakSkin"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: - return soap_in_prodml22__Layer2Thickness(soap, tag, NULL, "prodml22:Layer2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: - return soap_in_prodml22__InterporosityFlowParameter(soap, tag, NULL, "prodml22:InterporosityFlowParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: - return soap_in_prodml22__InnerToOuterZoneMobilityRatio(soap, tag, NULL, "prodml22:InnerToOuterZoneMobilityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: - return soap_in_prodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, NULL, "prodml22:InnerToOuterZoneDiffusivityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: - return soap_in_prodml22__InitialPressure(soap, tag, NULL, "prodml22:InitialPressure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: - return soap_in_prodml22__HorizontalRadialPermeability(soap, tag, NULL, "prodml22:HorizontalRadialPermeability"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: - return soap_in_prodml22__HorizontalAnisotropyKxToKy(soap, tag, NULL, "prodml22:HorizontalAnisotropyKxToKy"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: - return soap_in_prodml22__FractureStorativityRatio(soap, tag, NULL, "prodml22:FractureStorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: - return soap_in_prodml22__FractureRadius(soap, tag, NULL, "prodml22:FractureRadius"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: - return soap_in_prodml22__FractureHeight(soap, tag, NULL, "prodml22:FractureHeight"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: - return soap_in_prodml22__FractureHalfLength(soap, tag, NULL, "prodml22:FractureHalfLength"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: - return soap_in_prodml22__FractureFaceSkin(soap, tag, NULL, "prodml22:FractureFaceSkin"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: - return soap_in_prodml22__FractureConductivity(soap, tag, NULL, "prodml22:FractureConductivity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: - return soap_in_prodml22__FractureAngleToWellbore(soap, tag, NULL, "prodml22:FractureAngleToWellbore"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: - return soap_in_prodml22__FluidDensity(soap, tag, NULL, "prodml22:FluidDensity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: - return soap_in_prodml22__FaultConductivity(soap, tag, NULL, "prodml22:FaultConductivity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: - return soap_in_prodml22__DrainageAreaMeasured(soap, tag, NULL, "prodml22:DrainageAreaMeasured"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: - return soap_in_prodml22__DistanceWellboreToBottomBoundary(soap, tag, NULL, "prodml22:DistanceWellboreToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: - return soap_in_prodml22__DistanceToPinchOut(soap, tag, NULL, "prodml22:DistanceToPinchOut"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: - return soap_in_prodml22__DistanceToMobilityInterface(soap, tag, NULL, "prodml22:DistanceToMobilityInterface"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: - return soap_in_prodml22__DistanceToBoundary4(soap, tag, NULL, "prodml22:DistanceToBoundary4"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: - return soap_in_prodml22__DistanceToBoundary3(soap, tag, NULL, "prodml22:DistanceToBoundary3"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: - return soap_in_prodml22__DistanceToBoundary2(soap, tag, NULL, "prodml22:DistanceToBoundary2"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: - return soap_in_prodml22__DistanceToBoundary1(soap, tag, NULL, "prodml22:DistanceToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: - return soap_in_prodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, NULL, "prodml22:DistanceMidPerforationsToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: - return soap_in_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, NULL, "prodml22:DistanceMidFractureHeightToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: - return soap_in_prodml22__DistanceFractureToBottomBoundary(soap, tag, NULL, "prodml22:DistanceFractureToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: - return soap_in_prodml22__DeltaTimeStorageChanges(soap, tag, NULL, "prodml22:DeltaTimeStorageChanges"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: - return soap_in_prodml22__DeltaPressureTotalSkin(soap, tag, NULL, "prodml22:DeltaPressureTotalSkin"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: - return soap_in_prodml22__CustomParameter(soap, tag, NULL, "prodml22:CustomParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: - return soap_in_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, NULL, "prodml22:ConvergenceSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: - return soap_in_prodml22__AveragePressure(soap, tag, NULL, "prodml22:AveragePressure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: - return soap_in_prodml22__AngleBetweenBoundaries(soap, tag, NULL, "prodml22:AngleBetweenBoundaries"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter: - return soap_in_prodml22__AbstractParameter(soap, tag, NULL, "prodml22:AbstractParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: - return soap_in_prodml22__WellboreBaseModel(soap, tag, NULL, "prodml22:WellboreBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: - return soap_in_prodml22__UShapedFaultsModel(soap, tag, NULL, "prodml22:UShapedFaultsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: - return soap_in_prodml22__TwoParallelFaultsModel(soap, tag, NULL, "prodml22:TwoParallelFaultsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: - return soap_in_prodml22__TwoIntersectingFaultsModel(soap, tag, NULL, "prodml22:TwoIntersectingFaultsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: - return soap_in_prodml22__SlantedPartiallyPenetratingModel(soap, tag, NULL, "prodml22:SlantedPartiallyPenetratingModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: - return soap_in_prodml22__SlantedFullyPenetratingModel(soap, tag, NULL, "prodml22:SlantedFullyPenetratingModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: - return soap_in_prodml22__SingleFaultModel(soap, tag, NULL, "prodml22:SingleFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: - return soap_in_prodml22__ReservoirBaseModel(soap, tag, NULL, "prodml22:ReservoirBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: - return soap_in_prodml22__RadialCompositeModel(soap, tag, NULL, "prodml22:RadialCompositeModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: - return soap_in_prodml22__PinchOutModel(soap, tag, NULL, "prodml22:PinchOutModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: - return soap_in_prodml22__PartiallyPenetratingModel(soap, tag, NULL, "prodml22:PartiallyPenetratingModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: - return soap_in_prodml22__NumericalHomogeneousReservoirModel(soap, tag, NULL, "prodml22:NumericalHomogeneousReservoirModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: - return soap_in_prodml22__NumericalDualPorosityReservoirModel(soap, tag, NULL, "prodml22:NumericalDualPorosityReservoirModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: - return soap_in_prodml22__NumericalBoundaryModel(soap, tag, NULL, "prodml22:NumericalBoundaryModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: - return soap_in_prodml22__NearWellboreBaseModel(soap, tag, NULL, "prodml22:NearWellboreBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: - return soap_in_prodml22__LinearCompositeWithLeakyFaultModel(soap, tag, NULL, "prodml22:LinearCompositeWithLeakyFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: - return soap_in_prodml22__LinearCompositeWithConductiveFaultModel(soap, tag, NULL, "prodml22:LinearCompositeWithConductiveFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: - return soap_in_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, NULL, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: - return soap_in_prodml22__LinearCompositeModel(soap, tag, NULL, "prodml22:LinearCompositeModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: - return soap_in_prodml22__InfiniteBoundaryModel(soap, tag, NULL, "prodml22:InfiniteBoundaryModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: - return soap_in_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, NULL, "prodml22:HorizontalWellboreMultipleVariableFracturedModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: - return soap_in_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, NULL, "prodml22:HorizontalWellboreMultipleEqualFracturedModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: - return soap_in_prodml22__HorizontalWellboreModel(soap, tag, NULL, "prodml22:HorizontalWellboreModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: - return soap_in_prodml22__HorizontalWellbore2LayerModel(soap, tag, NULL, "prodml22:HorizontalWellbore2LayerModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: - return soap_in_prodml22__HomogeneousModel(soap, tag, NULL, "prodml22:HomogeneousModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: - return soap_in_prodml22__FracturedUniformFluxModel(soap, tag, NULL, "prodml22:FracturedUniformFluxModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: - return soap_in_prodml22__FracturedInfiniteConductivityModel(soap, tag, NULL, "prodml22:FracturedInfiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: - return soap_in_prodml22__FracturedHorizontalUniformFluxModel(soap, tag, NULL, "prodml22:FracturedHorizontalUniformFluxModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: - return soap_in_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, tag, NULL, "prodml22:FracturedHorizontalInfiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: - return soap_in_prodml22__FracturedHorizontalFiniteConductivityModel(soap, tag, NULL, "prodml22:FracturedHorizontalFiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: - return soap_in_prodml22__FracturedFiniteConductivityModel(soap, tag, NULL, "prodml22:FracturedFiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: - return soap_in_prodml22__FiniteRadiusModel(soap, tag, NULL, "prodml22:FiniteRadiusModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: - return soap_in_prodml22__DualPorosityTransientSpheresModel(soap, tag, NULL, "prodml22:DualPorosityTransientSpheresModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: - return soap_in_prodml22__DualPorosityTransientSlabsModel(soap, tag, NULL, "prodml22:DualPorosityTransientSlabsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: - return soap_in_prodml22__DualPorosityPseudoSteadyStateModel(soap, tag, NULL, "prodml22:DualPorosityPseudoSteadyStateModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: - return soap_in_prodml22__DualPermeabilityWithCrossflowModel(soap, tag, NULL, "prodml22:DualPermeabilityWithCrossflowModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: - return soap_in_prodml22__CustomWellboreModel(soap, tag, NULL, "prodml22:CustomWellboreModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: - return soap_in_prodml22__CustomReservoirModel(soap, tag, NULL, "prodml22:CustomReservoirModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: - return soap_in_prodml22__CustomNearWellboreModel(soap, tag, NULL, "prodml22:CustomNearWellboreModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: - return soap_in_prodml22__CustomBoundaryModel(soap, tag, NULL, "prodml22:CustomBoundaryModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: - return soap_in_prodml22__ConstantStorageModel(soap, tag, NULL, "prodml22:ConstantStorageModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: - return soap_in_prodml22__ClosedRectangleModel(soap, tag, NULL, "prodml22:ClosedRectangleModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: - return soap_in_prodml22__ClosedCircleModel(soap, tag, NULL, "prodml22:ClosedCircleModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: - return soap_in_prodml22__ChangingStorageSpiveyPackerModel(soap, tag, NULL, "prodml22:ChangingStorageSpiveyPackerModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: - return soap_in_prodml22__ChangingStorageSpiveyFissuresModel(soap, tag, NULL, "prodml22:ChangingStorageSpiveyFissuresModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: - return soap_in_prodml22__ChangingStorageHegemanModel(soap, tag, NULL, "prodml22:ChangingStorageHegemanModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: - return soap_in_prodml22__ChangingStorageFairModel(soap, tag, NULL, "prodml22:ChangingStorageFairModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: - return soap_in_prodml22__BoundaryBaseModel(soap, tag, NULL, "prodml22:BoundaryBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection: - return soap_in_prodml22__AbstractModelSection(soap, tag, NULL, "prodml22:AbstractModelSection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: - return soap_in_prodml22__TestPeriodsFlowrateData(soap, tag, NULL, "prodml22:TestPeriodsFlowrateData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis: - return soap_in_prodml22__SpecializedAnalysis(soap, tag, NULL, "prodml22:SpecializedAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel: - return soap_in_prodml22__SingleFractureSubModel(soap, tag, NULL, "prodml22:SingleFractureSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: - return soap_in_prodml22__SingleFlowrateData(soap, tag, NULL, "prodml22:SingleFlowrateData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel: - return soap_in_prodml22__SingleBoundarySubModel(soap, tag, NULL, "prodml22:SingleBoundarySubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: - return soap_in_prodml22__RtaAnalysis(soap, tag, NULL, "prodml22:RtaAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef: - return soap_in_prodml22__ResqmlModelRef(soap, tag, NULL, "prodml22:ResqmlModelRef"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel: - return soap_in_prodml22__ReservoirZoneSubModel(soap, tag, NULL, "prodml22:ReservoirZoneSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: - return soap_in_prodml22__PtaDeconvolution(soap, tag, NULL, "prodml22:PtaDeconvolution"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: - return soap_in_prodml22__PtaDataPreProcess(soap, tag, NULL, "prodml22:PtaDataPreProcess"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: - return soap_in_prodml22__PtaAnalysis(soap, tag, NULL, "prodml22:PtaAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: - return soap_in_prodml22__PressureTransientAnalysis(soap, tag, NULL, "prodml22:PressureTransientAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: - return soap_in_prodml22__PreProcessedPressureData(soap, tag, NULL, "prodml22:PreProcessedPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: - return soap_in_prodml22__PreProcessedFlowData(soap, tag, NULL, "prodml22:PreProcessedFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: - return soap_in_prodml22__OutputPressureData(soap, tag, NULL, "prodml22:OutputPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: - return soap_in_prodml22__OutputFlowData(soap, tag, NULL, "prodml22:OutputFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: - return soap_in_prodml22__MeasuredPressureData(soap, tag, NULL, "prodml22:MeasuredPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: - return soap_in_prodml22__MeasuredFlowData(soap, tag, NULL, "prodml22:MeasuredFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis: - return soap_in_prodml22__LogLogAnalysis(soap, tag, NULL, "prodml22:LogLogAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D: - return soap_in_prodml22__LocationIn2D(soap, tag, NULL, "prodml22:LocationIn2D"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection: - return soap_in_prodml22__LayerToLayerConnection(soap, tag, NULL, "prodml22:LayerToLayerConnection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel: - return soap_in_prodml22__LayerModel(soap, tag, NULL, "prodml22:LayerModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel: - return soap_in_prodml22__InternalFaultSubModel(soap, tag, NULL, "prodml22:InternalFaultSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval: - return soap_in_prodml22__InterferingFlowTestInterval(soap, tag, NULL, "prodml22:InterferingFlowTestInterval"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel: - return soap_in_prodml22__DistributedParametersSubModel(soap, tag, NULL, "prodml22:DistributedParametersSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: - return soap_in_prodml22__DeconvolvedPressureData(soap, tag, NULL, "prodml22:DeconvolvedPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: - return soap_in_prodml22__DeconvolvedFlowData(soap, tag, NULL, "prodml22:DeconvolvedFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: - return soap_in_prodml22__DeconvolutionSingleOutput(soap, tag, NULL, "prodml22:DeconvolutionSingleOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput: - return soap_in_prodml22__DeconvolutionOutput(soap, tag, NULL, "prodml22:DeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: - return soap_in_prodml22__DeconvolutionMultipleOutput(soap, tag, NULL, "prodml22:DeconvolutionMultipleOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters: - return soap_in_prodml22__CompressibilityParameters(soap, tag, NULL, "prodml22:CompressibilityParameters"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: - return soap_in_prodml22__ChannelFlowrateData(soap, tag, NULL, "prodml22:ChannelFlowrateData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine: - return soap_in_prodml22__AnalysisLine(soap, tag, NULL, "prodml22:AnalysisLine"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory: - return soap_in_prodml22__AbstractRateHistory(soap, tag, NULL, "prodml22:AbstractRateHistory"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: - return soap_in_prodml22__AbstractPtaPressureData(soap, tag, NULL, "prodml22:AbstractPtaPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput: - return soap_in_prodml22__AbstractDeconvolutionOutput(soap, tag, NULL, "prodml22:AbstractDeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis: - return soap_in_prodml22__AbstractAnalysis(soap, tag, NULL, "prodml22:AbstractAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode: - return soap_in_prodml22__ReportingHierarchyNode(soap, tag, NULL, "prodml22:ReportingHierarchyNode"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: - return soap_in_prodml22__ReportingHierarchy(soap, tag, NULL, "prodml22:ReportingHierarchy"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: - return soap_in_prodml22__ReportingEntity(soap, tag, NULL, "prodml22:ReportingEntity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: - return soap_in_prodml22__Facility(soap, tag, NULL, "prodml22:Facility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition: - return soap_in_prodml22__WellFlowingCondition(soap, tag, NULL, "prodml22:WellFlowingCondition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: - return soap_in_prodml22__WaterLevelTest(soap, tag, NULL, "prodml22:WaterLevelTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: - return soap_in_prodml22__VerticalInterferenceTest(soap, tag, NULL, "prodml22:VerticalInterferenceTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod: - return soap_in_prodml22__TestPeriod(soap, tag, NULL, "prodml22:TestPeriod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate: - return soap_in_prodml22__ProductRate(soap, tag, NULL, "prodml22:ProductRate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: - return soap_in_prodml22__ProductionTransientTest(soap, tag, NULL, "prodml22:ProductionTransientTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: - return soap_in_prodml22__ProductionFlowTest(soap, tag, NULL, "prodml22:ProductionFlowTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: - return soap_in_prodml22__OtherData(soap, tag, NULL, "prodml22:OtherData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: - return soap_in_prodml22__InterwellTest(soap, tag, NULL, "prodml22:InterwellTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: - return soap_in_prodml22__InjectionFlowTest(soap, tag, NULL, "prodml22:InjectionFlowTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: - return soap_in_prodml22__FormationTesterStation(soap, tag, NULL, "prodml22:FormationTesterStation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet: - return soap_in_prodml22__FlowTestMeasurementSet(soap, tag, NULL, "prodml22:FlowTestMeasurementSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation: - return soap_in_prodml22__FlowTestLocation(soap, tag, NULL, "prodml22:FlowTestLocation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: - return soap_in_prodml22__FlowTestActivity(soap, tag, NULL, "prodml22:FlowTestActivity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: - return soap_in_prodml22__DrillStemTest(soap, tag, NULL, "prodml22:DrillStemTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: - return soap_in_prodml22__ChannelSet(soap, tag, NULL, "prodml22:ChannelSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: - return soap_in_prodml22__Channel(soap, tag, NULL, "prodml22:Channel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: - return soap_in_prodml22__AbstractPtaFlowData(soap, tag, NULL, "prodml22:AbstractPtaFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData: - return soap_in_prodml22__AbstractFlowTestData(soap, tag, NULL, "prodml22:AbstractFlowTestData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: - return soap_in_prodml22__FluidSystem(soap, tag, NULL, "prodml22:FluidSystem"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent: - return soap_in_prodml22__WaterSampleComponent(soap, tag, NULL, "prodml22:WaterSampleComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep: - return soap_in_prodml22__WaterAnalysisTestStep(soap, tag, NULL, "prodml22:WaterAnalysisTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest: - return soap_in_prodml22__WaterAnalysisTest(soap, tag, NULL, "prodml22:WaterAnalysisTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: - return soap_in_prodml22__WaterAnalysis(soap, tag, NULL, "prodml22:WaterAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature: - return soap_in_prodml22__ViscosityAtTemperature(soap, tag, NULL, "prodml22:ViscosityAtTemperature"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest: - return soap_in_prodml22__VaporLiquidEquilibriumTest(soap, tag, NULL, "prodml22:VaporLiquidEquilibriumTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep: - return soap_in_prodml22__SwellingTestStep(soap, tag, NULL, "prodml22:SwellingTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest: - return soap_in_prodml22__SwellingTest(soap, tag, NULL, "prodml22:SwellingTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid: - return soap_in_prodml22__STOFlashedLiquid(soap, tag, NULL, "prodml22:STOFlashedLiquid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis: - return soap_in_prodml22__STOAnalysis(soap, tag, NULL, "prodml22:STOAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep: - return soap_in_prodml22__SlimTubeTestVolumeStep(soap, tag, NULL, "prodml22:SlimTubeTestVolumeStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep: - return soap_in_prodml22__SlimTubeTestStep(soap, tag, NULL, "prodml22:SlimTubeTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest: - return soap_in_prodml22__SlimTubeTest(soap, tag, NULL, "prodml22:SlimTubeTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification: - return soap_in_prodml22__SlimTubeSpecification(soap, tag, NULL, "prodml22:SlimTubeSpecification"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions: - return soap_in_prodml22__SeparatorConditions(soap, tag, NULL, "prodml22:SeparatorConditions"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest: - return soap_in_prodml22__SaturationTest(soap, tag, NULL, "prodml22:SaturationTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: - return soap_in_prodml22__SaturationTemperature(soap, tag, NULL, "prodml22:SaturationTemperature"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: - return soap_in_prodml22__SaturationPressure(soap, tag, NULL, "prodml22:SaturationPressure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Sara: - return soap_in_prodml22__Sara(soap, tag, NULL, "prodml22:Sara"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration: - return soap_in_prodml22__SampleRestoration(soap, tag, NULL, "prodml22:SampleRestoration"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation: - return soap_in_prodml22__SampleIntegrityAndPreparation(soap, tag, NULL, "prodml22:SampleIntegrityAndPreparation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant: - return soap_in_prodml22__SampleContaminant(soap, tag, NULL, "prodml22:SampleContaminant"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation: - return soap_in_prodml22__ReportLocation(soap, tag, NULL, "prodml22:ReportLocation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: - return soap_in_prodml22__RelativeVolumeRatio(soap, tag, NULL, "prodml22:RelativeVolumeRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: - return soap_in_prodml22__RefInjectedGasAdded(soap, tag, NULL, "prodml22:RefInjectedGasAdded"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties: - return soap_in_prodml22__ProducedOilProperties(soap, tag, NULL, "prodml22:ProducedOilProperties"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties: - return soap_in_prodml22__ProducedGasProperties(soap, tag, NULL, "prodml22:ProducedGasProperties"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity: - return soap_in_prodml22__PhaseViscosity(soap, tag, NULL, "prodml22:PhaseViscosity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity: - return soap_in_prodml22__PhaseDensity(soap, tag, NULL, "prodml22:PhaseDensity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep: - return soap_in_prodml22__OtherMeasurementTestStep(soap, tag, NULL, "prodml22:OtherMeasurementTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest: - return soap_in_prodml22__OtherMeasurementTest(soap, tag, NULL, "prodml22:OtherMeasurementTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: - return soap_in_prodml22__OilVolume(soap, tag, NULL, "prodml22:OilVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: - return soap_in_prodml22__OilShrinkageFactor(soap, tag, NULL, "prodml22:OilShrinkageFactor"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: - return soap_in_prodml22__OilCompressibility(soap, tag, NULL, "prodml22:OilCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest: - return soap_in_prodml22__NonHydrocarbonTest(soap, tag, NULL, "prodml22:NonHydrocarbonTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: - return soap_in_prodml22__NonHydrocarbonAnalysis(soap, tag, NULL, "prodml22:NonHydrocarbonAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest: - return soap_in_prodml22__MultipleContactMiscibilityTest(soap, tag, NULL, "prodml22:MultipleContactMiscibilityTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut: - return soap_in_prodml22__MassOut(soap, tag, NULL, "prodml22:MassOut"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn: - return soap_in_prodml22__MassIn(soap, tag, NULL, "prodml22:MassIn"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance: - return soap_in_prodml22__MassBalance(soap, tag, NULL, "prodml22:MassBalance"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: - return soap_in_prodml22__LiquidVolume(soap, tag, NULL, "prodml22:LiquidVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: - return soap_in_prodml22__LiquidDropoutFraction(soap, tag, NULL, "prodml22:LiquidDropoutFraction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep: - return soap_in_prodml22__InterfacialTensionTestStep(soap, tag, NULL, "prodml22:InterfacialTensionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest: - return soap_in_prodml22__InterfacialTensionTest(soap, tag, NULL, "prodml22:InterfacialTensionTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas: - return soap_in_prodml22__InjectedGas(soap, tag, NULL, "prodml22:InjectedGas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: - return soap_in_prodml22__HydrocarbonAnalysis(soap, tag, NULL, "prodml22:HydrocarbonAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference: - return soap_in_prodml22__FluidVolumeReference(soap, tag, NULL, "prodml22:FluidVolumeReference"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep: - return soap_in_prodml22__FluidSeparatorTestStep(soap, tag, NULL, "prodml22:FluidSeparatorTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest: - return soap_in_prodml22__FluidSeparatorTest(soap, tag, NULL, "prodml22:FluidSeparatorTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep: - return soap_in_prodml22__FluidDifferentialLiberationTestStep(soap, tag, NULL, "prodml22:FluidDifferentialLiberationTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep: - return soap_in_prodml22__FluidCvdTestStep(soap, tag, NULL, "prodml22:FluidCvdTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport: - return soap_in_prodml22__FluidAnalysisReport(soap, tag, NULL, "prodml22:FluidAnalysisReport"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: - return soap_in_prodml22__FluidAnalysis(soap, tag, NULL, "prodml22:FluidAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid: - return soap_in_prodml22__FlashedLiquid(soap, tag, NULL, "prodml22:FlashedLiquid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas: - return soap_in_prodml22__FlashedGas(soap, tag, NULL, "prodml22:FlashedGas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest: - return soap_in_prodml22__DifferentialLiberationTest(soap, tag, NULL, "prodml22:DifferentialLiberationTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: - return soap_in_prodml22__CumulativeGasProducedVol(soap, tag, NULL, "prodml22:CumulativeGasProducedVol"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: - return soap_in_prodml22__CumulativeGasProducedRatioStd(soap, tag, NULL, "prodml22:CumulativeGasProducedRatioStd"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest: - return soap_in_prodml22__ConstantVolumeDepletionTest(soap, tag, NULL, "prodml22:ConstantVolumeDepletionTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep: - return soap_in_prodml22__ConstantCompositionExpansionTestStep(soap, tag, NULL, "prodml22:ConstantCompositionExpansionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest: - return soap_in_prodml22__ConstantCompositionExpansionTest(soap, tag, NULL, "prodml22:ConstantCompositionExpansionTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis: - return soap_in_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage: - return soap_in_prodml22__AbstractOilVolShrinkage(soap, tag, NULL, "prodml22:AbstractOilVolShrinkage"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume: - return soap_in_prodml22__AbstractLiquidDropoutPercVolume(soap, tag, NULL, "prodml22:AbstractLiquidDropoutPercVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume: - return soap_in_prodml22__AbstractGasProducedRatioVolume(soap, tag, NULL, "prodml22:AbstractGasProducedRatioVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition: - return soap_in_prodml22__VaporComposition(soap, tag, NULL, "prodml22:VaporComposition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: - return soap_in_prodml22__SulfurFluidComponent(soap, tag, NULL, "prodml22:SulfurFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: - return soap_in_prodml22__StockTankOil(soap, tag, NULL, "prodml22:StockTankOil"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: - return soap_in_prodml22__StartEndTime(soap, tag, NULL, "prodml22:StartEndTime"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: - return soap_in_prodml22__StartEndDate(soap, tag, NULL, "prodml22:StartEndDate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: - return soap_in_prodml22__ServiceFluid(soap, tag, NULL, "prodml22:ServiceFluid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: - return soap_in_prodml22__PureFluidComponent(soap, tag, NULL, "prodml22:PureFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: - return soap_in_prodml22__PseudoFluidComponent(soap, tag, NULL, "prodml22:PseudoFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: - return soap_in_prodml22__ProductFluid(soap, tag, NULL, "prodml22:ProductFluid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork: - return soap_in_prodml22__ProductFlowNetwork(soap, tag, NULL, "prodml22:ProductFlowNetwork"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference: - return soap_in_prodml22__ProductFlowExternalReference(soap, tag, NULL, "prodml22:ProductFlowExternalReference"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: - return soap_in_prodml22__PlusFluidComponent(soap, tag, NULL, "prodml22:PlusFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition: - return soap_in_prodml22__OverallComposition(soap, tag, NULL, "prodml22:OverallComposition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation: - return soap_in_prodml22__OffshoreLocation(soap, tag, NULL, "prodml22:OffshoreLocation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore: - return soap_in_prodml22__NorthSeaOffshore(soap, tag, NULL, "prodml22:NorthSeaOffshore"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: - return soap_in_prodml22__NaturalGas(soap, tag, NULL, "prodml22:NaturalGas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord: - return soap_in_prodml22__MeasuredDepthCoord(soap, tag, NULL, "prodml22:MeasuredDepthCoord"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition: - return soap_in_prodml22__LiquidComposition(soap, tag, NULL, "prodml22:LiquidComposition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: - return soap_in_prodml22__KindQualifiedString(soap, tag, NULL, "prodml22:KindQualifiedString"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: - return soap_in_prodml22__IntegerQualifiedCount(soap, tag, NULL, "prodml22:IntegerQualifiedCount"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext: - return soap_in_prodml22__GeographicContext(soap, tag, NULL, "prodml22:GeographicContext"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: - return soap_in_prodml22__GeneralQualifiedMeasure(soap, tag, NULL, "prodml22:GeneralQualifiedMeasure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType: - return soap_in_prodml22__GeneralMeasureType(soap, tag, NULL, "prodml22:GeneralMeasureType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: - return soap_in_prodml22__FormationWater(soap, tag, NULL, "prodml22:FormationWater"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction: - return soap_in_prodml22__FluidComponentFraction(soap, tag, NULL, "prodml22:FluidComponentFraction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog: - return soap_in_prodml22__FluidComponentCatalog(soap, tag, NULL, "prodml22:FluidComponentCatalog"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct: - return soap_in_prodml22__FacilityIdentifierStruct(soap, tag, NULL, "prodml22:FacilityIdentifierStruct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier: - return soap_in_prodml22__FacilityIdentifier(soap, tag, NULL, "prodml22:FacilityIdentifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime: - return soap_in_prodml22__EndpointQualifiedDateTime(soap, tag, NULL, "prodml22:EndpointQualifiedDateTime"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate: - return soap_in_prodml22__EndpointQualifiedDate(soap, tag, NULL, "prodml22:EndpointQualifiedDate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment: - return soap_in_prodml22__DatedComment(soap, tag, NULL, "prodml22:DatedComment"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter: - return soap_in_prodml22__CalibrationParameter(soap, tag, NULL, "prodml22:CalibrationParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity: - return soap_in_prodml22__AbstractProductQuantity(soap, tag, NULL, "prodml22:AbstractProductQuantity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent: - return soap_in_prodml22__AbstractFluidComponent(soap, tag, NULL, "prodml22:AbstractFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass: - return soap_in_prodml22__AbstractDateTimeClass(soap, tag, NULL, "prodml22:AbstractDateTimeClass"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: - return soap_in_prodml22__Standing_Undersaturated(soap, tag, NULL, "prodml22:Standing-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: - return soap_in_prodml22__Standing_Dead(soap, tag, NULL, "prodml22:Standing-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: - return soap_in_prodml22__Standing_BubblePoint(soap, tag, NULL, "prodml22:Standing-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: - return soap_in_prodml22__Srk_USCOREEOS(soap, tag, NULL, "prodml22:Srk_EOS"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage: - return soap_in_prodml22__ReferenceSeparatorStage(soap, tag, NULL, "prodml22:ReferenceSeparatorStage"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet: - return soap_in_prodml22__PvtModelParameterSet(soap, tag, NULL, "prodml22:PvtModelParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter: - return soap_in_prodml22__PvtModelParameter(soap, tag, NULL, "prodml22:PvtModelParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter: - return soap_in_prodml22__PrsvParameter(soap, tag, NULL, "prodml22:PrsvParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: - return soap_in_prodml22__PetroskyFarshad_Undersaturated(soap, tag, NULL, "prodml22:PetroskyFarshad-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: - return soap_in_prodml22__PetroskyFarshad_Dead(soap, tag, NULL, "prodml22:PetroskyFarshad-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: - return soap_in_prodml22__PetroskyFarshad_BubblePoint(soap, tag, NULL, "prodml22:PetroskyFarshad-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: - return soap_in_prodml22__PengRobinson78_USCOREEOS(soap, tag, NULL, "prodml22:PengRobinson78_EOS"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: - return soap_in_prodml22__PengRobinson76_USCOREEOS(soap, tag, NULL, "prodml22:PengRobinson76_EOS"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: - return soap_in_prodml22__Lucas(soap, tag, NULL, "prodml22:Lucas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: - return soap_in_prodml22__LondonoArcherBlasinggame(soap, tag, NULL, "prodml22:LondonoArcherBlasinggame"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: - return soap_in_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, tag, NULL, "prodml22:Lohrenz-Bray-ClarkCorrelation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: - return soap_in_prodml22__LeeGonzalez(soap, tag, NULL, "prodml22:LeeGonzalez"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: - return soap_in_prodml22__FrictionTheory(soap, tag, NULL, "prodml22:FrictionTheory"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty: - return soap_in_prodml22__FluidComponentProperty(soap, tag, NULL, "prodml22:FluidComponentProperty"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet: - return soap_in_prodml22__FluidCharacterizationTableFormatSet(soap, tag, NULL, "prodml22:FluidCharacterizationTableFormatSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat: - return soap_in_prodml22__FluidCharacterizationTableFormat(soap, tag, NULL, "prodml22:FluidCharacterizationTableFormat"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn: - return soap_in_prodml22__FluidCharacterizationTableColumn(soap, tag, NULL, "prodml22:FluidCharacterizationTableColumn"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable: - return soap_in_prodml22__FluidCharacterizationTable(soap, tag, NULL, "prodml22:FluidCharacterizationTable"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource: - return soap_in_prodml22__FluidCharacterizationSource(soap, tag, NULL, "prodml22:FluidCharacterizationSource"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet: - return soap_in_prodml22__FluidCharacterizationParameterSet(soap, tag, NULL, "prodml22:FluidCharacterizationParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter: - return soap_in_prodml22__FluidCharacterizationParameter(soap, tag, NULL, "prodml22:FluidCharacterizationParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel: - return soap_in_prodml22__FluidCharacterizationModel(soap, tag, NULL, "prodml22:FluidCharacterizationModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: - return soap_in_prodml22__FluidCharacterization(soap, tag, NULL, "prodml22:FluidCharacterization"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: - return soap_in_prodml22__DindorukChristman_Undersaturated(soap, tag, NULL, "prodml22:DindorukChristman-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: - return soap_in_prodml22__DindorukChristman_Dead(soap, tag, NULL, "prodml22:DindorukChristman-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: - return soap_in_prodml22__DindorukChristman_BubblePoint(soap, tag, NULL, "prodml22:DindorukChristman-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: - return soap_in_prodml22__DeGhetto_Undersaturated(soap, tag, NULL, "prodml22:DeGhetto-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: - return soap_in_prodml22__DeGhetto_Dead(soap, tag, NULL, "prodml22:DeGhetto-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: - return soap_in_prodml22__DeGhetto_BubblePoint(soap, tag, NULL, "prodml22:DeGhetto-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter: - return soap_in_prodml22__CustomPvtModelParameter(soap, tag, NULL, "prodml22:CustomPvtModelParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension: - return soap_in_prodml22__CustomPvtModelExtension(soap, tag, NULL, "prodml22:CustomPvtModelExtension"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: - return soap_in_prodml22__CSPedersen87(soap, tag, NULL, "prodml22:CSPedersen87"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: - return soap_in_prodml22__CSPedersen84(soap, tag, NULL, "prodml22:CSPedersen84"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: - return soap_in_prodml22__CorrelationThermalModel(soap, tag, NULL, "prodml22:CorrelationThermalModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: - return soap_in_prodml22__CompositionalThermalModel(soap, tag, NULL, "prodml22:CompositionalThermalModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet: - return soap_in_prodml22__ComponentPropertySet(soap, tag, NULL, "prodml22:ComponentPropertySet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: - return soap_in_prodml22__CarrDempsey(soap, tag, NULL, "prodml22:CarrDempsey"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet: - return soap_in_prodml22__BinaryInteractionCoefficientSet(soap, tag, NULL, "prodml22:BinaryInteractionCoefficientSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient: - return soap_in_prodml22__BinaryInteractionCoefficient(soap, tag, NULL, "prodml22:BinaryInteractionCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: - return soap_in_prodml22__BergmanSutton_BubblePoint(soap, tag, NULL, "prodml22:BergmanSutton-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: - return soap_in_prodml22__BerganSutton_Dead(soap, tag, NULL, "prodml22:BerganSutton-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: - return soap_in_prodml22__BerganAndSutton_Undersaturated(soap, tag, NULL, "prodml22:BerganAndSutton-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel: - return soap_in_prodml22__AbstractPvtModel(soap, tag, NULL, "prodml22:AbstractPvtModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: - return soap_in_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, NULL, "prodml22:AbstractCorrelationViscosityUndersaturatedModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: - return soap_in_prodml22__AbstractCorrelationViscosityModel(soap, tag, NULL, "prodml22:AbstractCorrelationViscosityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: - return soap_in_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, tag, NULL, "prodml22:AbstractCorrelationViscosityBubblePointModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: - return soap_in_prodml22__AbstractCorrelationGasViscosityModel(soap, tag, NULL, "prodml22:AbstractCorrelationGasViscosityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: - return soap_in_prodml22__AbstractCompositionalViscosityModel(soap, tag, NULL, "prodml22:AbstractCompositionalViscosityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: - return soap_in_prodml22__AbstractCompositionalEoSModel(soap, tag, NULL, "prodml22:AbstractCompositionalEoSModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow: - return soap_in_prodml22__FluidCharacterizationTableRow(soap, tag, NULL, "prodml22:FluidCharacterizationTableRow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: - return soap_in_prodml22__AbstractCorrelationViscosityDeadModel(soap, tag, NULL, "prodml22:AbstractCorrelationViscosityDeadModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: - return soap_in_prodml22__AbstractCorrelationModel(soap, tag, NULL, "prodml22:AbstractCorrelationModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: - return soap_in_prodml22__AbstractCompositionalModel(soap, tag, NULL, "prodml22:AbstractCompositionalModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold: + return soap_in_prodml23__TimeSeriesThreshold(soap, tag, NULL, "prodml23:TimeSeriesThreshold"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: + return soap_in_prodml23__TimeSeriesStatistic(soap, tag, NULL, "prodml23:TimeSeriesStatistic"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct: + return soap_in_prodml23__KeywordValueStruct(soap, tag, NULL, "prodml23:KeywordValueStruct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity: + return soap_in_prodml23__EndpointQuantity(soap, tag, NULL, "prodml23:EndpointQuantity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime: + return soap_in_prodml23__EndpointDateTime(soap, tag, NULL, "prodml23:EndpointDateTime"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample: + return soap_in_prodml23__TimeSeriesStringSample(soap, tag, NULL, "prodml23:TimeSeriesStringSample"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample: + return soap_in_prodml23__TimeSeriesDoubleSample(soap, tag, NULL, "prodml23:TimeSeriesDoubleSample"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: + return soap_in_prodml23__TimeSeriesData(soap, tag, NULL, "prodml23:TimeSeriesData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: + return soap_in_prodml23__StringValue(soap, tag, NULL, "prodml23:StringValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: + return soap_in_prodml23__DoubleValue(soap, tag, NULL, "prodml23:DoubleValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue: + return soap_in_prodml23__AbstractValue(soap, tag, NULL, "prodml23:AbstractValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate: + return soap_in_prodml23__RelativeCoordinate(soap, tag, NULL, "prodml23:RelativeCoordinate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: + return soap_in_prodml23__Qualifier(soap, tag, NULL, "prodml23:Qualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit: + return soap_in_prodml23__ProductFlowUnit(soap, tag, NULL, "prodml23:ProductFlowUnit"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: + return soap_in_prodml23__ProductFlowQualifierExpected(soap, tag, NULL, "prodml23:ProductFlowQualifierExpected"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort: + return soap_in_prodml23__ProductFlowPort(soap, tag, NULL, "prodml23:ProductFlowPort"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan: + return soap_in_prodml23__ProductFlowNetworkPlan(soap, tag, NULL, "prodml23:ProductFlowNetworkPlan"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: + return soap_in_prodml23__ProductFlowModel(soap, tag, NULL, "prodml23:ProductFlowModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort: + return soap_in_prodml23__ProductFlowExternalPort(soap, tag, NULL, "prodml23:ProductFlowExternalPort"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty: + return soap_in_prodml23__ProductFlowExpectedUnitProperty(soap, tag, NULL, "prodml23:ProductFlowExpectedUnitProperty"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog: + return soap_in_prodml23__ProductFlowChangeLog(soap, tag, NULL, "prodml23:ProductFlowChangeLog"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier: + return soap_in_prodml23__ExpectedFlowQualifier(soap, tag, NULL, "prodml23:ExpectedFlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode: + return soap_in_prodml23__ConnectedNode(soap, tag, NULL, "prodml23:ConnectedNode"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: + return soap_in_prodml23__StringData(soap, tag, NULL, "prodml23:StringData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: + return soap_in_prodml23__ReferenceFlow(soap, tag, NULL, "prodml23:ReferenceFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility: + return soap_in_prodml23__ProductVolumeRelatedFacility(soap, tag, NULL, "prodml23:ProductVolumeRelatedFacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct: + return soap_in_prodml23__ProductVolumeProduct(soap, tag, NULL, "prodml23:ProductVolumeProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference: + return soap_in_prodml23__ProductVolumePortDifference(soap, tag, NULL, "prodml23:ProductVolumePortDifference"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod: + return soap_in_prodml23__ProductVolumePeriod(soap, tag, NULL, "prodml23:ProductVolumePeriod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue: + return soap_in_prodml23__ProductVolumeParameterValue(soap, tag, NULL, "prodml23:ProductVolumeParameterValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet: + return soap_in_prodml23__ProductVolumeParameterSet(soap, tag, NULL, "prodml23:ProductVolumeParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow: + return soap_in_prodml23__ProductVolumeFlow(soap, tag, NULL, "prodml23:ProductVolumeFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility: + return soap_in_prodml23__ProductVolumeFacility(soap, tag, NULL, "prodml23:ProductVolumeFacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination: + return soap_in_prodml23__ProductVolumeDestination(soap, tag, NULL, "prodml23:ProductVolumeDestination"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent: + return soap_in_prodml23__ProductVolumeComponentContent(soap, tag, NULL, "prodml23:ProductVolumeComponentContent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit: + return soap_in_prodml23__ProductVolumeBusinessUnit(soap, tag, NULL, "prodml23:ProductVolumeBusinessUnit"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit: + return soap_in_prodml23__ProductVolumeBusinessSubUnit(soap, tag, NULL, "prodml23:ProductVolumeBusinessSubUnit"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet: + return soap_in_prodml23__ProductVolumeBalanceSet(soap, tag, NULL, "prodml23:ProductVolumeBalanceSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent: + return soap_in_prodml23__ProductVolumeBalanceEvent(soap, tag, NULL, "prodml23:ProductVolumeBalanceEvent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail: + return soap_in_prodml23__ProductVolumeBalanceDetail(soap, tag, NULL, "prodml23:ProductVolumeBalanceDetail"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert: + return soap_in_prodml23__ProductVolumeAlert(soap, tag, NULL, "prodml23:ProductVolumeAlert"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: + return soap_in_prodml23__ProductVolume(soap, tag, NULL, "prodml23:ProductVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: + return soap_in_prodml23__Parentfacility(soap, tag, NULL, "prodml23:Parentfacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct: + return soap_in_prodml23__OwnershipBusinessAcct(soap, tag, NULL, "prodml23:OwnershipBusinessAcct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: + return soap_in_prodml23__IntegerData(soap, tag, NULL, "prodml23:IntegerData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: + return soap_in_prodml23__FacilityUnitPort(soap, tag, NULL, "prodml23:FacilityUnitPort"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: + return soap_in_prodml23__FacilityParent(soap, tag, NULL, "prodml23:FacilityParent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition: + return soap_in_prodml23__CurveDefinition(soap, tag, NULL, "prodml23:CurveDefinition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: + return soap_in_prodml23__CurveData(soap, tag, NULL, "prodml23:CurveData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject: + return soap_in_prodml23__AbstractRelatedFacilityObject(soap, tag, NULL, "prodml23:AbstractRelatedFacilityObject"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow: + return soap_in_prodml23__AbstractRefProductFlow(soap, tag, NULL, "prodml23:AbstractRefProductFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData: + return soap_in_prodml23__AbstractMeasureData(soap, tag, NULL, "prodml23:AbstractMeasureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume: + return soap_in_prodml23__CommonPropertiesProductVolume(soap, tag, NULL, "prodml23:CommonPropertiesProductVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: + return soap_in_prodml23__FlowTestJob(soap, tag, NULL, "prodml23:FlowTestJob"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: + return soap_in_prodml23__WellheadSampleAcquisition(soap, tag, NULL, "prodml23:WellheadSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: + return soap_in_prodml23__SeparatorSampleAcquisition(soap, tag, NULL, "prodml23:SeparatorSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: + return soap_in_prodml23__FormationTesterSampleAcquisition(soap, tag, NULL, "prodml23:FormationTesterSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: + return soap_in_prodml23__FluidSampleAcquisitionJob(soap, tag, NULL, "prodml23:FluidSampleAcquisitionJob"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition: + return soap_in_prodml23__FluidSampleAcquisition(soap, tag, NULL, "prodml23:FluidSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: + return soap_in_prodml23__FacilitySampleAcquisition(soap, tag, NULL, "prodml23:FacilitySampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: + return soap_in_prodml23__DownholeSampleAcquisition(soap, tag, NULL, "prodml23:DownholeSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: + return soap_in_prodml23__FluidSampleContainer(soap, tag, NULL, "prodml23:FluidSampleContainer"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification: + return soap_in_prodml23__SampleRecombinationSpecification(soap, tag, NULL, "prodml23:SampleRecombinationSpecification"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction: + return soap_in_prodml23__RecombinedSampleFraction(soap, tag, NULL, "prodml23:RecombinedSampleFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent: + return soap_in_prodml23__FluidSampleChainOfCustodyEvent(soap, tag, NULL, "prodml23:FluidSampleChainOfCustodyEvent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource: + return soap_in_prodml23__FluidSampleAcquisitionJobSource(soap, tag, NULL, "prodml23:FluidSampleAcquisitionJobSource"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: + return soap_in_prodml23__FluidSample(soap, tag, NULL, "prodml23:FluidSample"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: + return soap_in_prodml23__WellboreVolume(soap, tag, NULL, "prodml23:WellboreVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: + return soap_in_prodml23__WellboreStorageCoefficient(soap, tag, NULL, "prodml23:WellboreStorageCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: + return soap_in_prodml23__WellboreRadius(soap, tag, NULL, "prodml23:WellboreRadius"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: + return soap_in_prodml23__WellboreFluidCompressibility(soap, tag, NULL, "prodml23:WellboreFluidCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: + return soap_in_prodml23__WellboreDeviationAngle(soap, tag, NULL, "prodml23:WellboreDeviationAngle"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: + return soap_in_prodml23__VerticalAnisotropyKvToKr(soap, tag, NULL, "prodml23:VerticalAnisotropyKvToKr"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: + return soap_in_prodml23__TubingInteralDiameter(soap, tag, NULL, "prodml23:TubingInteralDiameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: + return soap_in_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, NULL, "prodml23:TransmissibilityReductionFactorOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: + return soap_in_prodml23__TotalThickness(soap, tag, NULL, "prodml23:TotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: + return soap_in_prodml23__StorativityRatio(soap, tag, NULL, "prodml23:StorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: + return soap_in_prodml23__SkinRelativeToTotalThickness(soap, tag, NULL, "prodml23:SkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: + return soap_in_prodml23__SkinLayer2RelativeToTotalThickness(soap, tag, NULL, "prodml23:SkinLayer2RelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: + return soap_in_prodml23__Region2Thickness(soap, tag, NULL, "prodml23:Region2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + return soap_in_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, NULL, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: + return soap_in_prodml23__RatioInitialToFinalWellboreStorage(soap, tag, NULL, "prodml23:RatioInitialToFinalWellboreStorage"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: + return soap_in_prodml23__RatioDpSkinToTotalDrawdown(soap, tag, NULL, "prodml23:RatioDpSkinToTotalDrawdown"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: + return soap_in_prodml23__RateDependentSkinFactor(soap, tag, NULL, "prodml23:RateDependentSkinFactor"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: + return soap_in_prodml23__RadiusOfInvestigation(soap, tag, NULL, "prodml23:RadiusOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: + return soap_in_prodml23__PressureDatumTVD(soap, tag, NULL, "prodml23:PressureDatumTVD"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: + return soap_in_prodml23__Porosity(soap, tag, NULL, "prodml23:Porosity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: + return soap_in_prodml23__PoreVolumeOfInvestigation(soap, tag, NULL, "prodml23:PoreVolumeOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: + return soap_in_prodml23__PoreVolumeMeasured(soap, tag, NULL, "prodml23:PoreVolumeMeasured"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: + return soap_in_prodml23__PermeabilityThicknessProduct(soap, tag, NULL, "prodml23:PermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: + return soap_in_prodml23__PerforatedLength(soap, tag, NULL, "prodml23:PerforatedLength"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: + return soap_in_prodml23__OrientationWellTrajectory(soap, tag, NULL, "prodml23:OrientationWellTrajectory"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: + return soap_in_prodml23__OrientationOfNormalToBoundary1(soap, tag, NULL, "prodml23:OrientationOfNormalToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: + return soap_in_prodml23__OrientationOfLinearFront(soap, tag, NULL, "prodml23:OrientationOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: + return soap_in_prodml23__OrientationOfFracturePlane(soap, tag, NULL, "prodml23:OrientationOfFracturePlane"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: + return soap_in_prodml23__OrientationOfAnisotropyXDirection(soap, tag, NULL, "prodml23:OrientationOfAnisotropyXDirection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: + return soap_in_prodml23__NumberOfFractures(soap, tag, NULL, "prodml23:NumberOfFractures"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: + return soap_in_prodml23__ModelName(soap, tag, NULL, "prodml23:ModelName"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: + return soap_in_prodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, NULL, "prodml23:MechanicalSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: + return soap_in_prodml23__LengthHorizontalWellboreFlowing(soap, tag, NULL, "prodml23:LengthHorizontalWellboreFlowing"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: + return soap_in_prodml23__LeakSkin(soap, tag, NULL, "prodml23:LeakSkin"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: + return soap_in_prodml23__Layer2Thickness(soap, tag, NULL, "prodml23:Layer2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: + return soap_in_prodml23__InterporosityFlowParameter(soap, tag, NULL, "prodml23:InterporosityFlowParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: + return soap_in_prodml23__InnerToOuterZoneMobilityRatio(soap, tag, NULL, "prodml23:InnerToOuterZoneMobilityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: + return soap_in_prodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, NULL, "prodml23:InnerToOuterZoneDiffusivityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: + return soap_in_prodml23__InitialPressure(soap, tag, NULL, "prodml23:InitialPressure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: + return soap_in_prodml23__HorizontalRadialPermeability(soap, tag, NULL, "prodml23:HorizontalRadialPermeability"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: + return soap_in_prodml23__HorizontalAnisotropyKxToKy(soap, tag, NULL, "prodml23:HorizontalAnisotropyKxToKy"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: + return soap_in_prodml23__FractureStorativityRatio(soap, tag, NULL, "prodml23:FractureStorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: + return soap_in_prodml23__FractureRadius(soap, tag, NULL, "prodml23:FractureRadius"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: + return soap_in_prodml23__FractureHeight(soap, tag, NULL, "prodml23:FractureHeight"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: + return soap_in_prodml23__FractureHalfLength(soap, tag, NULL, "prodml23:FractureHalfLength"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: + return soap_in_prodml23__FractureFaceSkin(soap, tag, NULL, "prodml23:FractureFaceSkin"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: + return soap_in_prodml23__FractureConductivity(soap, tag, NULL, "prodml23:FractureConductivity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: + return soap_in_prodml23__FractureAngleToWellbore(soap, tag, NULL, "prodml23:FractureAngleToWellbore"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: + return soap_in_prodml23__FluidDensity(soap, tag, NULL, "prodml23:FluidDensity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: + return soap_in_prodml23__FaultConductivity(soap, tag, NULL, "prodml23:FaultConductivity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: + return soap_in_prodml23__DrainageAreaMeasured(soap, tag, NULL, "prodml23:DrainageAreaMeasured"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: + return soap_in_prodml23__DistanceWellboreToBottomBoundary(soap, tag, NULL, "prodml23:DistanceWellboreToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: + return soap_in_prodml23__DistanceToPinchOut(soap, tag, NULL, "prodml23:DistanceToPinchOut"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: + return soap_in_prodml23__DistanceToMobilityInterface(soap, tag, NULL, "prodml23:DistanceToMobilityInterface"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: + return soap_in_prodml23__DistanceToBoundary4(soap, tag, NULL, "prodml23:DistanceToBoundary4"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: + return soap_in_prodml23__DistanceToBoundary3(soap, tag, NULL, "prodml23:DistanceToBoundary3"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: + return soap_in_prodml23__DistanceToBoundary2(soap, tag, NULL, "prodml23:DistanceToBoundary2"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: + return soap_in_prodml23__DistanceToBoundary1(soap, tag, NULL, "prodml23:DistanceToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: + return soap_in_prodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, NULL, "prodml23:DistanceMidPerforationsToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: + return soap_in_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, NULL, "prodml23:DistanceMidFractureHeightToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: + return soap_in_prodml23__DistanceFractureToBottomBoundary(soap, tag, NULL, "prodml23:DistanceFractureToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: + return soap_in_prodml23__DeltaTimeStorageChanges(soap, tag, NULL, "prodml23:DeltaTimeStorageChanges"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: + return soap_in_prodml23__DeltaPressureTotalSkin(soap, tag, NULL, "prodml23:DeltaPressureTotalSkin"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: + return soap_in_prodml23__CustomParameter(soap, tag, NULL, "prodml23:CustomParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: + return soap_in_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, NULL, "prodml23:ConvergenceSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: + return soap_in_prodml23__AveragePressure(soap, tag, NULL, "prodml23:AveragePressure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: + return soap_in_prodml23__AngleBetweenBoundaries(soap, tag, NULL, "prodml23:AngleBetweenBoundaries"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter: + return soap_in_prodml23__AbstractParameter(soap, tag, NULL, "prodml23:AbstractParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: + return soap_in_prodml23__WellboreBaseModel(soap, tag, NULL, "prodml23:WellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: + return soap_in_prodml23__UShapedFaultsModel(soap, tag, NULL, "prodml23:UShapedFaultsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: + return soap_in_prodml23__TwoParallelFaultsModel(soap, tag, NULL, "prodml23:TwoParallelFaultsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: + return soap_in_prodml23__TwoIntersectingFaultsModel(soap, tag, NULL, "prodml23:TwoIntersectingFaultsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: + return soap_in_prodml23__SlantedPartiallyPenetratingModel(soap, tag, NULL, "prodml23:SlantedPartiallyPenetratingModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: + return soap_in_prodml23__SlantedFullyPenetratingModel(soap, tag, NULL, "prodml23:SlantedFullyPenetratingModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: + return soap_in_prodml23__SingleFaultModel(soap, tag, NULL, "prodml23:SingleFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: + return soap_in_prodml23__ReservoirBaseModel(soap, tag, NULL, "prodml23:ReservoirBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: + return soap_in_prodml23__RadialCompositeModel(soap, tag, NULL, "prodml23:RadialCompositeModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: + return soap_in_prodml23__PinchOutModel(soap, tag, NULL, "prodml23:PinchOutModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: + return soap_in_prodml23__PartiallyPenetratingModel(soap, tag, NULL, "prodml23:PartiallyPenetratingModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: + return soap_in_prodml23__NumericalHomogeneousReservoirModel(soap, tag, NULL, "prodml23:NumericalHomogeneousReservoirModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: + return soap_in_prodml23__NumericalDualPorosityReservoirModel(soap, tag, NULL, "prodml23:NumericalDualPorosityReservoirModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: + return soap_in_prodml23__NumericalBoundaryModel(soap, tag, NULL, "prodml23:NumericalBoundaryModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: + return soap_in_prodml23__NearWellboreBaseModel(soap, tag, NULL, "prodml23:NearWellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: + return soap_in_prodml23__LinearCompositeWithLeakyFaultModel(soap, tag, NULL, "prodml23:LinearCompositeWithLeakyFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: + return soap_in_prodml23__LinearCompositeWithConductiveFaultModel(soap, tag, NULL, "prodml23:LinearCompositeWithConductiveFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: + return soap_in_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, NULL, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: + return soap_in_prodml23__LinearCompositeModel(soap, tag, NULL, "prodml23:LinearCompositeModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: + return soap_in_prodml23__InfiniteBoundaryModel(soap, tag, NULL, "prodml23:InfiniteBoundaryModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: + return soap_in_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, NULL, "prodml23:HorizontalWellboreMultipleVariableFracturedModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: + return soap_in_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, NULL, "prodml23:HorizontalWellboreMultipleEqualFracturedModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: + return soap_in_prodml23__HorizontalWellboreModel(soap, tag, NULL, "prodml23:HorizontalWellboreModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: + return soap_in_prodml23__HorizontalWellbore2LayerModel(soap, tag, NULL, "prodml23:HorizontalWellbore2LayerModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: + return soap_in_prodml23__HomogeneousModel(soap, tag, NULL, "prodml23:HomogeneousModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: + return soap_in_prodml23__FracturedUniformFluxModel(soap, tag, NULL, "prodml23:FracturedUniformFluxModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: + return soap_in_prodml23__FracturedInfiniteConductivityModel(soap, tag, NULL, "prodml23:FracturedInfiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: + return soap_in_prodml23__FracturedHorizontalUniformFluxModel(soap, tag, NULL, "prodml23:FracturedHorizontalUniformFluxModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: + return soap_in_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, tag, NULL, "prodml23:FracturedHorizontalInfiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: + return soap_in_prodml23__FracturedHorizontalFiniteConductivityModel(soap, tag, NULL, "prodml23:FracturedHorizontalFiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: + return soap_in_prodml23__FracturedFiniteConductivityModel(soap, tag, NULL, "prodml23:FracturedFiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: + return soap_in_prodml23__FiniteRadiusModel(soap, tag, NULL, "prodml23:FiniteRadiusModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: + return soap_in_prodml23__DualPorosityTransientSpheresModel(soap, tag, NULL, "prodml23:DualPorosityTransientSpheresModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: + return soap_in_prodml23__DualPorosityTransientSlabsModel(soap, tag, NULL, "prodml23:DualPorosityTransientSlabsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: + return soap_in_prodml23__DualPorosityPseudoSteadyStateModel(soap, tag, NULL, "prodml23:DualPorosityPseudoSteadyStateModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: + return soap_in_prodml23__DualPermeabilityWithCrossflowModel(soap, tag, NULL, "prodml23:DualPermeabilityWithCrossflowModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: + return soap_in_prodml23__CustomWellboreModel(soap, tag, NULL, "prodml23:CustomWellboreModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: + return soap_in_prodml23__CustomReservoirModel(soap, tag, NULL, "prodml23:CustomReservoirModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: + return soap_in_prodml23__CustomNearWellboreModel(soap, tag, NULL, "prodml23:CustomNearWellboreModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: + return soap_in_prodml23__CustomBoundaryModel(soap, tag, NULL, "prodml23:CustomBoundaryModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: + return soap_in_prodml23__ConstantStorageModel(soap, tag, NULL, "prodml23:ConstantStorageModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: + return soap_in_prodml23__ClosedRectangleModel(soap, tag, NULL, "prodml23:ClosedRectangleModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: + return soap_in_prodml23__ClosedCircleModel(soap, tag, NULL, "prodml23:ClosedCircleModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: + return soap_in_prodml23__ChangingStorageSpiveyPackerModel(soap, tag, NULL, "prodml23:ChangingStorageSpiveyPackerModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: + return soap_in_prodml23__ChangingStorageSpiveyFissuresModel(soap, tag, NULL, "prodml23:ChangingStorageSpiveyFissuresModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: + return soap_in_prodml23__ChangingStorageHegemanModel(soap, tag, NULL, "prodml23:ChangingStorageHegemanModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: + return soap_in_prodml23__ChangingStorageFairModel(soap, tag, NULL, "prodml23:ChangingStorageFairModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: + return soap_in_prodml23__BoundaryBaseModel(soap, tag, NULL, "prodml23:BoundaryBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection: + return soap_in_prodml23__AbstractModelSection(soap, tag, NULL, "prodml23:AbstractModelSection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: + return soap_in_prodml23__TestPeriodsFlowrateData(soap, tag, NULL, "prodml23:TestPeriodsFlowrateData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis: + return soap_in_prodml23__SpecializedAnalysis(soap, tag, NULL, "prodml23:SpecializedAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel: + return soap_in_prodml23__SingleFractureSubModel(soap, tag, NULL, "prodml23:SingleFractureSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: + return soap_in_prodml23__SingleFlowrateData(soap, tag, NULL, "prodml23:SingleFlowrateData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel: + return soap_in_prodml23__SingleBoundarySubModel(soap, tag, NULL, "prodml23:SingleBoundarySubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: + return soap_in_prodml23__RtaAnalysis(soap, tag, NULL, "prodml23:RtaAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef: + return soap_in_prodml23__ResqmlModelRef(soap, tag, NULL, "prodml23:ResqmlModelRef"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel: + return soap_in_prodml23__ReservoirZoneSubModel(soap, tag, NULL, "prodml23:ReservoirZoneSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: + return soap_in_prodml23__PtaDeconvolution(soap, tag, NULL, "prodml23:PtaDeconvolution"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: + return soap_in_prodml23__PtaDataPreProcess(soap, tag, NULL, "prodml23:PtaDataPreProcess"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: + return soap_in_prodml23__PtaAnalysis(soap, tag, NULL, "prodml23:PtaAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: + return soap_in_prodml23__PressureTransientAnalysis(soap, tag, NULL, "prodml23:PressureTransientAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: + return soap_in_prodml23__PreProcessedPressureData(soap, tag, NULL, "prodml23:PreProcessedPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: + return soap_in_prodml23__PreProcessedFlowData(soap, tag, NULL, "prodml23:PreProcessedFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: + return soap_in_prodml23__OutputPressureData(soap, tag, NULL, "prodml23:OutputPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: + return soap_in_prodml23__OutputFlowData(soap, tag, NULL, "prodml23:OutputFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: + return soap_in_prodml23__MeasuredPressureData(soap, tag, NULL, "prodml23:MeasuredPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: + return soap_in_prodml23__MeasuredFlowData(soap, tag, NULL, "prodml23:MeasuredFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis: + return soap_in_prodml23__LogLogAnalysis(soap, tag, NULL, "prodml23:LogLogAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D: + return soap_in_prodml23__LocationIn2D(soap, tag, NULL, "prodml23:LocationIn2D"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection: + return soap_in_prodml23__LayerToLayerConnection(soap, tag, NULL, "prodml23:LayerToLayerConnection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel: + return soap_in_prodml23__LayerModel(soap, tag, NULL, "prodml23:LayerModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel: + return soap_in_prodml23__InternalFaultSubModel(soap, tag, NULL, "prodml23:InternalFaultSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval: + return soap_in_prodml23__InterferingFlowTestInterval(soap, tag, NULL, "prodml23:InterferingFlowTestInterval"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel: + return soap_in_prodml23__DistributedParametersSubModel(soap, tag, NULL, "prodml23:DistributedParametersSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: + return soap_in_prodml23__DeconvolvedPressureData(soap, tag, NULL, "prodml23:DeconvolvedPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: + return soap_in_prodml23__DeconvolvedFlowData(soap, tag, NULL, "prodml23:DeconvolvedFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: + return soap_in_prodml23__DeconvolutionSingleOutput(soap, tag, NULL, "prodml23:DeconvolutionSingleOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput: + return soap_in_prodml23__DeconvolutionOutput(soap, tag, NULL, "prodml23:DeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: + return soap_in_prodml23__DeconvolutionMultipleOutput(soap, tag, NULL, "prodml23:DeconvolutionMultipleOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters: + return soap_in_prodml23__CompressibilityParameters(soap, tag, NULL, "prodml23:CompressibilityParameters"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: + return soap_in_prodml23__ChannelFlowrateData(soap, tag, NULL, "prodml23:ChannelFlowrateData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine: + return soap_in_prodml23__AnalysisLine(soap, tag, NULL, "prodml23:AnalysisLine"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory: + return soap_in_prodml23__AbstractRateHistory(soap, tag, NULL, "prodml23:AbstractRateHistory"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: + return soap_in_prodml23__AbstractPtaPressureData(soap, tag, NULL, "prodml23:AbstractPtaPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput: + return soap_in_prodml23__AbstractDeconvolutionOutput(soap, tag, NULL, "prodml23:AbstractDeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis: + return soap_in_prodml23__AbstractAnalysis(soap, tag, NULL, "prodml23:AbstractAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode: + return soap_in_prodml23__ReportingHierarchyNode(soap, tag, NULL, "prodml23:ReportingHierarchyNode"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: + return soap_in_prodml23__ReportingHierarchy(soap, tag, NULL, "prodml23:ReportingHierarchy"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: + return soap_in_prodml23__ReportingEntity(soap, tag, NULL, "prodml23:ReportingEntity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: + return soap_in_prodml23__Facility(soap, tag, NULL, "prodml23:Facility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition: + return soap_in_prodml23__WellFlowingCondition(soap, tag, NULL, "prodml23:WellFlowingCondition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: + return soap_in_prodml23__WaterLevelTest(soap, tag, NULL, "prodml23:WaterLevelTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: + return soap_in_prodml23__VerticalInterferenceTest(soap, tag, NULL, "prodml23:VerticalInterferenceTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod: + return soap_in_prodml23__TestPeriod(soap, tag, NULL, "prodml23:TestPeriod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate: + return soap_in_prodml23__ProductRate(soap, tag, NULL, "prodml23:ProductRate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: + return soap_in_prodml23__ProductionTransientTest(soap, tag, NULL, "prodml23:ProductionTransientTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: + return soap_in_prodml23__ProductionFlowTest(soap, tag, NULL, "prodml23:ProductionFlowTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: + return soap_in_prodml23__OtherData(soap, tag, NULL, "prodml23:OtherData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: + return soap_in_prodml23__InterwellTest(soap, tag, NULL, "prodml23:InterwellTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: + return soap_in_prodml23__InjectionFlowTest(soap, tag, NULL, "prodml23:InjectionFlowTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: + return soap_in_prodml23__FormationTesterStation(soap, tag, NULL, "prodml23:FormationTesterStation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet: + return soap_in_prodml23__FlowTestMeasurementSet(soap, tag, NULL, "prodml23:FlowTestMeasurementSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation: + return soap_in_prodml23__FlowTestLocation(soap, tag, NULL, "prodml23:FlowTestLocation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: + return soap_in_prodml23__FlowTestActivity(soap, tag, NULL, "prodml23:FlowTestActivity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: + return soap_in_prodml23__DrillStemTest(soap, tag, NULL, "prodml23:DrillStemTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: + return soap_in_prodml23__ChannelSet(soap, tag, NULL, "prodml23:ChannelSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: + return soap_in_prodml23__Channel(soap, tag, NULL, "prodml23:Channel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: + return soap_in_prodml23__AbstractPtaFlowData(soap, tag, NULL, "prodml23:AbstractPtaFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData: + return soap_in_prodml23__AbstractFlowTestData(soap, tag, NULL, "prodml23:AbstractFlowTestData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: + return soap_in_prodml23__FluidSystem(soap, tag, NULL, "prodml23:FluidSystem"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent: + return soap_in_prodml23__WaterSampleComponent(soap, tag, NULL, "prodml23:WaterSampleComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep: + return soap_in_prodml23__WaterAnalysisTestStep(soap, tag, NULL, "prodml23:WaterAnalysisTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest: + return soap_in_prodml23__WaterAnalysisTest(soap, tag, NULL, "prodml23:WaterAnalysisTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: + return soap_in_prodml23__WaterAnalysis(soap, tag, NULL, "prodml23:WaterAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature: + return soap_in_prodml23__ViscosityAtTemperature(soap, tag, NULL, "prodml23:ViscosityAtTemperature"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest: + return soap_in_prodml23__VaporLiquidEquilibriumTest(soap, tag, NULL, "prodml23:VaporLiquidEquilibriumTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep: + return soap_in_prodml23__SwellingTestStep(soap, tag, NULL, "prodml23:SwellingTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest: + return soap_in_prodml23__SwellingTest(soap, tag, NULL, "prodml23:SwellingTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid: + return soap_in_prodml23__STOFlashedLiquid(soap, tag, NULL, "prodml23:STOFlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis: + return soap_in_prodml23__STOAnalysis(soap, tag, NULL, "prodml23:STOAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep: + return soap_in_prodml23__SlimTubeTestVolumeStep(soap, tag, NULL, "prodml23:SlimTubeTestVolumeStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep: + return soap_in_prodml23__SlimTubeTestStep(soap, tag, NULL, "prodml23:SlimTubeTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest: + return soap_in_prodml23__SlimTubeTest(soap, tag, NULL, "prodml23:SlimTubeTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification: + return soap_in_prodml23__SlimTubeSpecification(soap, tag, NULL, "prodml23:SlimTubeSpecification"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions: + return soap_in_prodml23__SeparatorConditions(soap, tag, NULL, "prodml23:SeparatorConditions"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest: + return soap_in_prodml23__SaturationTest(soap, tag, NULL, "prodml23:SaturationTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature: + return soap_in_prodml23__SaturationTemperature(soap, tag, NULL, "prodml23:SaturationTemperature"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure: + return soap_in_prodml23__SaturationPressure(soap, tag, NULL, "prodml23:SaturationPressure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Sara: + return soap_in_prodml23__Sara(soap, tag, NULL, "prodml23:Sara"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration: + return soap_in_prodml23__SampleRestoration(soap, tag, NULL, "prodml23:SampleRestoration"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation: + return soap_in_prodml23__SampleIntegrityAndPreparation(soap, tag, NULL, "prodml23:SampleIntegrityAndPreparation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant: + return soap_in_prodml23__SampleContaminant(soap, tag, NULL, "prodml23:SampleContaminant"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation: + return soap_in_prodml23__ReportLocation(soap, tag, NULL, "prodml23:ReportLocation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio: + return soap_in_prodml23__RelativeVolumeRatio(soap, tag, NULL, "prodml23:RelativeVolumeRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded: + return soap_in_prodml23__RefInjectedGasAdded(soap, tag, NULL, "prodml23:RefInjectedGasAdded"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties: + return soap_in_prodml23__ProducedOilProperties(soap, tag, NULL, "prodml23:ProducedOilProperties"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties: + return soap_in_prodml23__ProducedGasProperties(soap, tag, NULL, "prodml23:ProducedGasProperties"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity: + return soap_in_prodml23__PhaseViscosity(soap, tag, NULL, "prodml23:PhaseViscosity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity: + return soap_in_prodml23__PhaseDensity(soap, tag, NULL, "prodml23:PhaseDensity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep: + return soap_in_prodml23__OtherMeasurementTestStep(soap, tag, NULL, "prodml23:OtherMeasurementTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest: + return soap_in_prodml23__OtherMeasurementTest(soap, tag, NULL, "prodml23:OtherMeasurementTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: + return soap_in_prodml23__OilVolume(soap, tag, NULL, "prodml23:OilVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: + return soap_in_prodml23__OilShrinkageFactor(soap, tag, NULL, "prodml23:OilShrinkageFactor"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility: + return soap_in_prodml23__OilCompressibility(soap, tag, NULL, "prodml23:OilCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest: + return soap_in_prodml23__NonHydrocarbonTest(soap, tag, NULL, "prodml23:NonHydrocarbonTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: + return soap_in_prodml23__NonHydrocarbonAnalysis(soap, tag, NULL, "prodml23:NonHydrocarbonAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest: + return soap_in_prodml23__MultipleContactMiscibilityTest(soap, tag, NULL, "prodml23:MultipleContactMiscibilityTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut: + return soap_in_prodml23__MassOut(soap, tag, NULL, "prodml23:MassOut"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn: + return soap_in_prodml23__MassIn(soap, tag, NULL, "prodml23:MassIn"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance: + return soap_in_prodml23__MassBalance(soap, tag, NULL, "prodml23:MassBalance"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: + return soap_in_prodml23__LiquidVolume(soap, tag, NULL, "prodml23:LiquidVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: + return soap_in_prodml23__LiquidDropoutFraction(soap, tag, NULL, "prodml23:LiquidDropoutFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep: + return soap_in_prodml23__InterfacialTensionTestStep(soap, tag, NULL, "prodml23:InterfacialTensionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest: + return soap_in_prodml23__InterfacialTensionTest(soap, tag, NULL, "prodml23:InterfacialTensionTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas: + return soap_in_prodml23__InjectedGas(soap, tag, NULL, "prodml23:InjectedGas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: + return soap_in_prodml23__HydrocarbonAnalysis(soap, tag, NULL, "prodml23:HydrocarbonAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference: + return soap_in_prodml23__FluidVolumeReference(soap, tag, NULL, "prodml23:FluidVolumeReference"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep: + return soap_in_prodml23__FluidSeparatorTestStep(soap, tag, NULL, "prodml23:FluidSeparatorTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest: + return soap_in_prodml23__FluidSeparatorTest(soap, tag, NULL, "prodml23:FluidSeparatorTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep: + return soap_in_prodml23__FluidDifferentialLiberationTestStep(soap, tag, NULL, "prodml23:FluidDifferentialLiberationTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep: + return soap_in_prodml23__FluidCvdTestStep(soap, tag, NULL, "prodml23:FluidCvdTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport: + return soap_in_prodml23__FluidAnalysisReport(soap, tag, NULL, "prodml23:FluidAnalysisReport"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: + return soap_in_prodml23__FluidAnalysis(soap, tag, NULL, "prodml23:FluidAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid: + return soap_in_prodml23__FlashedLiquid(soap, tag, NULL, "prodml23:FlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas: + return soap_in_prodml23__FlashedGas(soap, tag, NULL, "prodml23:FlashedGas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest: + return soap_in_prodml23__DifferentialLiberationTest(soap, tag, NULL, "prodml23:DifferentialLiberationTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: + return soap_in_prodml23__CumulativeGasProducedVol(soap, tag, NULL, "prodml23:CumulativeGasProducedVol"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: + return soap_in_prodml23__CumulativeGasProducedRatioStd(soap, tag, NULL, "prodml23:CumulativeGasProducedRatioStd"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest: + return soap_in_prodml23__ConstantVolumeDepletionTest(soap, tag, NULL, "prodml23:ConstantVolumeDepletionTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep: + return soap_in_prodml23__ConstantCompositionExpansionTestStep(soap, tag, NULL, "prodml23:ConstantCompositionExpansionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest: + return soap_in_prodml23__ConstantCompositionExpansionTest(soap, tag, NULL, "prodml23:ConstantCompositionExpansionTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis: + return soap_in_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage: + return soap_in_prodml23__AbstractOilVolShrinkage(soap, tag, NULL, "prodml23:AbstractOilVolShrinkage"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume: + return soap_in_prodml23__AbstractLiquidDropoutPercVolume(soap, tag, NULL, "prodml23:AbstractLiquidDropoutPercVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume: + return soap_in_prodml23__AbstractGasProducedRatioVolume(soap, tag, NULL, "prodml23:AbstractGasProducedRatioVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition: + return soap_in_prodml23__VaporComposition(soap, tag, NULL, "prodml23:VaporComposition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: + return soap_in_prodml23__SulfurFluidComponent(soap, tag, NULL, "prodml23:SulfurFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: + return soap_in_prodml23__StockTankOil(soap, tag, NULL, "prodml23:StockTankOil"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: + return soap_in_prodml23__StartEndTime(soap, tag, NULL, "prodml23:StartEndTime"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: + return soap_in_prodml23__StartEndDate(soap, tag, NULL, "prodml23:StartEndDate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: + return soap_in_prodml23__ServiceFluid(soap, tag, NULL, "prodml23:ServiceFluid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: + return soap_in_prodml23__PureFluidComponent(soap, tag, NULL, "prodml23:PureFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: + return soap_in_prodml23__PseudoFluidComponent(soap, tag, NULL, "prodml23:PseudoFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: + return soap_in_prodml23__ProductFluid(soap, tag, NULL, "prodml23:ProductFluid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork: + return soap_in_prodml23__ProductFlowNetwork(soap, tag, NULL, "prodml23:ProductFlowNetwork"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference: + return soap_in_prodml23__ProductFlowExternalReference(soap, tag, NULL, "prodml23:ProductFlowExternalReference"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: + return soap_in_prodml23__PlusFluidComponent(soap, tag, NULL, "prodml23:PlusFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition: + return soap_in_prodml23__OverallComposition(soap, tag, NULL, "prodml23:OverallComposition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation: + return soap_in_prodml23__OffshoreLocation(soap, tag, NULL, "prodml23:OffshoreLocation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore: + return soap_in_prodml23__NorthSeaOffshore(soap, tag, NULL, "prodml23:NorthSeaOffshore"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: + return soap_in_prodml23__NaturalGas(soap, tag, NULL, "prodml23:NaturalGas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord: + return soap_in_prodml23__MeasuredDepthCoord(soap, tag, NULL, "prodml23:MeasuredDepthCoord"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition: + return soap_in_prodml23__LiquidComposition(soap, tag, NULL, "prodml23:LiquidComposition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: + return soap_in_prodml23__KindQualifiedString(soap, tag, NULL, "prodml23:KindQualifiedString"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: + return soap_in_prodml23__IntegerQualifiedCount(soap, tag, NULL, "prodml23:IntegerQualifiedCount"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext: + return soap_in_prodml23__GeographicContext(soap, tag, NULL, "prodml23:GeographicContext"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: + return soap_in_prodml23__GeneralQualifiedMeasure(soap, tag, NULL, "prodml23:GeneralQualifiedMeasure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType: + return soap_in_prodml23__GeneralMeasureType(soap, tag, NULL, "prodml23:GeneralMeasureType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: + return soap_in_prodml23__FormationWater(soap, tag, NULL, "prodml23:FormationWater"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction: + return soap_in_prodml23__FluidComponentFraction(soap, tag, NULL, "prodml23:FluidComponentFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog: + return soap_in_prodml23__FluidComponentCatalog(soap, tag, NULL, "prodml23:FluidComponentCatalog"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct: + return soap_in_prodml23__FacilityIdentifierStruct(soap, tag, NULL, "prodml23:FacilityIdentifierStruct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier: + return soap_in_prodml23__FacilityIdentifier(soap, tag, NULL, "prodml23:FacilityIdentifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime: + return soap_in_prodml23__EndpointQualifiedDateTime(soap, tag, NULL, "prodml23:EndpointQualifiedDateTime"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate: + return soap_in_prodml23__EndpointQualifiedDate(soap, tag, NULL, "prodml23:EndpointQualifiedDate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment: + return soap_in_prodml23__DatedComment(soap, tag, NULL, "prodml23:DatedComment"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter: + return soap_in_prodml23__CalibrationParameter(soap, tag, NULL, "prodml23:CalibrationParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity: + return soap_in_prodml23__AbstractProductQuantity(soap, tag, NULL, "prodml23:AbstractProductQuantity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent: + return soap_in_prodml23__AbstractFluidComponent(soap, tag, NULL, "prodml23:AbstractFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass: + return soap_in_prodml23__AbstractDateTimeClass(soap, tag, NULL, "prodml23:AbstractDateTimeClass"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: + return soap_in_prodml23__Standing_Undersaturated(soap, tag, NULL, "prodml23:Standing-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: + return soap_in_prodml23__Standing_Dead(soap, tag, NULL, "prodml23:Standing-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: + return soap_in_prodml23__Standing_BubblePoint(soap, tag, NULL, "prodml23:Standing-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: + return soap_in_prodml23__Srk_USCOREEOS(soap, tag, NULL, "prodml23:Srk_EOS"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage: + return soap_in_prodml23__ReferenceSeparatorStage(soap, tag, NULL, "prodml23:ReferenceSeparatorStage"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet: + return soap_in_prodml23__PvtModelParameterSet(soap, tag, NULL, "prodml23:PvtModelParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter: + return soap_in_prodml23__PvtModelParameter(soap, tag, NULL, "prodml23:PvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter: + return soap_in_prodml23__PrsvParameter(soap, tag, NULL, "prodml23:PrsvParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: + return soap_in_prodml23__PetroskyFarshad_Undersaturated(soap, tag, NULL, "prodml23:PetroskyFarshad-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: + return soap_in_prodml23__PetroskyFarshad_Dead(soap, tag, NULL, "prodml23:PetroskyFarshad-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: + return soap_in_prodml23__PetroskyFarshad_BubblePoint(soap, tag, NULL, "prodml23:PetroskyFarshad-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: + return soap_in_prodml23__PengRobinson78_USCOREEOS(soap, tag, NULL, "prodml23:PengRobinson78_EOS"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: + return soap_in_prodml23__PengRobinson76_USCOREEOS(soap, tag, NULL, "prodml23:PengRobinson76_EOS"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: + return soap_in_prodml23__Lucas(soap, tag, NULL, "prodml23:Lucas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: + return soap_in_prodml23__LondonoArcherBlasinggame(soap, tag, NULL, "prodml23:LondonoArcherBlasinggame"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: + return soap_in_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, tag, NULL, "prodml23:Lohrenz-Bray-ClarkCorrelation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: + return soap_in_prodml23__LeeGonzalez(soap, tag, NULL, "prodml23:LeeGonzalez"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: + return soap_in_prodml23__FrictionTheory(soap, tag, NULL, "prodml23:FrictionTheory"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty: + return soap_in_prodml23__FluidComponentProperty(soap, tag, NULL, "prodml23:FluidComponentProperty"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet: + return soap_in_prodml23__FluidCharacterizationTableFormatSet(soap, tag, NULL, "prodml23:FluidCharacterizationTableFormatSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat: + return soap_in_prodml23__FluidCharacterizationTableFormat(soap, tag, NULL, "prodml23:FluidCharacterizationTableFormat"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn: + return soap_in_prodml23__FluidCharacterizationTableColumn(soap, tag, NULL, "prodml23:FluidCharacterizationTableColumn"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable: + return soap_in_prodml23__FluidCharacterizationTable(soap, tag, NULL, "prodml23:FluidCharacterizationTable"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource: + return soap_in_prodml23__FluidCharacterizationSource(soap, tag, NULL, "prodml23:FluidCharacterizationSource"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet: + return soap_in_prodml23__FluidCharacterizationParameterSet(soap, tag, NULL, "prodml23:FluidCharacterizationParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter: + return soap_in_prodml23__FluidCharacterizationParameter(soap, tag, NULL, "prodml23:FluidCharacterizationParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel: + return soap_in_prodml23__FluidCharacterizationModel(soap, tag, NULL, "prodml23:FluidCharacterizationModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: + return soap_in_prodml23__FluidCharacterization(soap, tag, NULL, "prodml23:FluidCharacterization"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: + return soap_in_prodml23__DindorukChristman_Undersaturated(soap, tag, NULL, "prodml23:DindorukChristman-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: + return soap_in_prodml23__DindorukChristman_Dead(soap, tag, NULL, "prodml23:DindorukChristman-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: + return soap_in_prodml23__DindorukChristman_BubblePoint(soap, tag, NULL, "prodml23:DindorukChristman-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: + return soap_in_prodml23__DeGhetto_Undersaturated(soap, tag, NULL, "prodml23:DeGhetto-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: + return soap_in_prodml23__DeGhetto_Dead(soap, tag, NULL, "prodml23:DeGhetto-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: + return soap_in_prodml23__DeGhetto_BubblePoint(soap, tag, NULL, "prodml23:DeGhetto-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter: + return soap_in_prodml23__CustomPvtModelParameter(soap, tag, NULL, "prodml23:CustomPvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension: + return soap_in_prodml23__CustomPvtModelExtension(soap, tag, NULL, "prodml23:CustomPvtModelExtension"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: + return soap_in_prodml23__CSPedersen87(soap, tag, NULL, "prodml23:CSPedersen87"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: + return soap_in_prodml23__CSPedersen84(soap, tag, NULL, "prodml23:CSPedersen84"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: + return soap_in_prodml23__CorrelationThermalModel(soap, tag, NULL, "prodml23:CorrelationThermalModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: + return soap_in_prodml23__CompositionalThermalModel(soap, tag, NULL, "prodml23:CompositionalThermalModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet: + return soap_in_prodml23__ComponentPropertySet(soap, tag, NULL, "prodml23:ComponentPropertySet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: + return soap_in_prodml23__CarrDempsey(soap, tag, NULL, "prodml23:CarrDempsey"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet: + return soap_in_prodml23__BinaryInteractionCoefficientSet(soap, tag, NULL, "prodml23:BinaryInteractionCoefficientSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient: + return soap_in_prodml23__BinaryInteractionCoefficient(soap, tag, NULL, "prodml23:BinaryInteractionCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: + return soap_in_prodml23__BergmanSutton_BubblePoint(soap, tag, NULL, "prodml23:BergmanSutton-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: + return soap_in_prodml23__BerganSutton_Dead(soap, tag, NULL, "prodml23:BerganSutton-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: + return soap_in_prodml23__BerganAndSutton_Undersaturated(soap, tag, NULL, "prodml23:BerganAndSutton-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel: + return soap_in_prodml23__AbstractPvtModel(soap, tag, NULL, "prodml23:AbstractPvtModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: + return soap_in_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, NULL, "prodml23:AbstractCorrelationViscosityUndersaturatedModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: + return soap_in_prodml23__AbstractCorrelationViscosityModel(soap, tag, NULL, "prodml23:AbstractCorrelationViscosityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: + return soap_in_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, tag, NULL, "prodml23:AbstractCorrelationViscosityBubblePointModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: + return soap_in_prodml23__AbstractCorrelationGasViscosityModel(soap, tag, NULL, "prodml23:AbstractCorrelationGasViscosityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: + return soap_in_prodml23__AbstractCompositionalViscosityModel(soap, tag, NULL, "prodml23:AbstractCompositionalViscosityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: + return soap_in_prodml23__AbstractCompositionalEoSModel(soap, tag, NULL, "prodml23:AbstractCompositionalEoSModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow: + return soap_in_prodml23__FluidCharacterizationTableRow(soap, tag, NULL, "prodml23:FluidCharacterizationTableRow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: + return soap_in_prodml23__AbstractCorrelationViscosityDeadModel(soap, tag, NULL, "prodml23:AbstractCorrelationViscosityDeadModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: + return soap_in_prodml23__AbstractCorrelationModel(soap, tag, NULL, "prodml23:AbstractCorrelationModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: + return soap_in_prodml23__AbstractCompositionalModel(soap, tag, NULL, "prodml23:AbstractCompositionalModel"); case SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet: return soap_in_eml23__GraphicalInformationSet(soap, tag, NULL, "eml23:GraphicalInformationSet"); case SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGraphicalInformation: @@ -4679,8 +4679,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_PointerToresqml22__AbstractPlaneGeometry(soap, tag, NULL, "resqml22:AbstractPlaneGeometry"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ContactIdentity: return soap_in_PointerToresqml22__ContactIdentity(soap, tag, NULL, "resqml22:ContactIdentity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter: - return soap_in_PointerToprodml22__PrsvParameter(soap, tag, NULL, "prodml22:PrsvParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter: + return soap_in_PointerToprodml23__PrsvParameter(soap, tag, NULL, "prodml23:PrsvParameter"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__LengthUomExt: return soap_in_PointerToeml23__LengthUomExt(soap, tag, NULL, "eml23:LengthUomExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AbstractProjectedCrs: @@ -4743,126 +4743,126 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_PointerToeml23__FloatingPointLatticeArray(soap, tag, NULL, "eml23:FloatingPointLatticeArray"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ThreePoint3d: return soap_in_PointerToresqml22__ThreePoint3d(soap, tag, NULL, "resqml22:ThreePoint3d"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries: - return soap_in_PointerToprodml22__AngleBetweenBoundaries(soap, tag, NULL, "prodml22:AngleBetweenBoundaries"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut: - return soap_in_PointerToprodml22__DistanceToPinchOut(soap, tag, NULL, "prodml22:DistanceToPinchOut"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary: - return soap_in_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, NULL, "prodml22:DistanceMidPerforationsToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength: - return soap_in_PointerToprodml22__PerforatedLength(soap, tag, NULL, "prodml22:PerforatedLength"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel: - return soap_in_PointerToprodml22__ReservoirZoneSubModel(soap, tag, NULL, "prodml22:ReservoirZoneSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel: - return soap_in_PointerToprodml22__DistributedParametersSubModel(soap, tag, NULL, "prodml22:DistributedParametersSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel: - return soap_in_PointerToprodml22__InternalFaultSubModel(soap, tag, NULL, "prodml22:InternalFaultSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel: - return soap_in_PointerToprodml22__SingleBoundarySubModel(soap, tag, NULL, "prodml22:SingleBoundarySubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity: - return soap_in_PointerToprodml22__FaultConductivity(soap, tag, NULL, "prodml22:FaultConductivity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness: - return soap_in_PointerToprodml22__Region2Thickness(soap, tag, NULL, "prodml22:Region2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront: - return soap_in_PointerToprodml22__OrientationOfLinearFront(soap, tag, NULL, "prodml22:OrientationOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface: - return soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, tag, NULL, "prodml22:DistanceToMobilityInterface"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio: - return soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, NULL, "prodml22:InnerToOuterZoneDiffusivityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio: - return soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, tag, NULL, "prodml22:InnerToOuterZoneMobilityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel: - return soap_in_PointerToprodml22__SingleFractureSubModel(soap, tag, NULL, "prodml22:SingleFractureSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore: - return soap_in_PointerToprodml22__FractureAngleToWellbore(soap, tag, NULL, "prodml22:FractureAngleToWellbore"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures: - return soap_in_PointerToprodml22__NumberOfFractures(soap, tag, NULL, "prodml22:NumberOfFractures"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary: - return soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, tag, NULL, "prodml22:DistanceWellboreToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing: - return soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, tag, NULL, "prodml22:LengthHorizontalWellboreFlowing"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory: - return soap_in_PointerToprodml22__OrientationWellTrajectory(soap, tag, NULL, "prodml22:OrientationWellTrajectory"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness: - return soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, NULL, "prodml22:MechanicalSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness: - return soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, NULL, "prodml22:ConvergenceSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary: - return soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(soap, tag, NULL, "prodml22:DistanceFractureToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius: - return soap_in_PointerToprodml22__FractureRadius(soap, tag, NULL, "prodml22:FractureRadius"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane: - return soap_in_PointerToprodml22__OrientationOfFracturePlane(soap, tag, NULL, "prodml22:OrientationOfFracturePlane"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength: - return soap_in_PointerToprodml22__FractureHalfLength(soap, tag, NULL, "prodml22:FractureHalfLength"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness: - return soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, tag, NULL, "prodml22:SkinLayer2RelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness: - return soap_in_PointerToprodml22__Layer2Thickness(soap, tag, NULL, "prodml22:Layer2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - return soap_in_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, NULL, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio: - return soap_in_PointerToprodml22__StorativityRatio(soap, tag, NULL, "prodml22:StorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName: - return soap_in_PointerToprodml22__ModelName(soap, tag, NULL, "prodml22:ModelName"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1: - return soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, tag, NULL, "prodml22:OrientationOfNormalToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4: - return soap_in_PointerToprodml22__DistanceToBoundary4(soap, tag, NULL, "prodml22:DistanceToBoundary4"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3: - return soap_in_PointerToprodml22__DistanceToBoundary3(soap, tag, NULL, "prodml22:DistanceToBoundary3"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2: - return soap_in_PointerToprodml22__DistanceToBoundary2(soap, tag, NULL, "prodml22:DistanceToBoundary2"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1: - return soap_in_PointerToprodml22__DistanceToBoundary1(soap, tag, NULL, "prodml22:DistanceToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured: - return soap_in_PointerToprodml22__PoreVolumeMeasured(soap, tag, NULL, "prodml22:PoreVolumeMeasured"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured: - return soap_in_PointerToprodml22__DrainageAreaMeasured(soap, tag, NULL, "prodml22:DrainageAreaMeasured"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin: - return soap_in_PointerToprodml22__LeakSkin(soap, tag, NULL, "prodml22:LeakSkin"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges: - return soap_in_PointerToprodml22__DeltaTimeStorageChanges(soap, tag, NULL, "prodml22:DeltaTimeStorageChanges"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage: - return soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, tag, NULL, "prodml22:RatioInitialToFinalWellboreStorage"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet: - return soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, tag, NULL, "prodml22:FlowTestMeasurementSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent: - return soap_in_PointerToprodml22__WaterSampleComponent(soap, tag, NULL, "prodml22:WaterSampleComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest: - return soap_in_PointerToprodml22__WaterAnalysisTest(soap, tag, NULL, "prodml22:WaterAnalysisTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest: - return soap_in_PointerToprodml22__NonHydrocarbonTest(soap, tag, NULL, "prodml22:NonHydrocarbonTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest: - return soap_in_PointerToprodml22__InterfacialTensionTest(soap, tag, NULL, "prodml22:InterfacialTensionTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis: - return soap_in_PointerToprodml22__STOAnalysis(soap, tag, NULL, "prodml22:STOAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest: - return soap_in_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag, NULL, "prodml22:MultipleContactMiscibilityTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest: - return soap_in_PointerToprodml22__SlimTubeTest(soap, tag, NULL, "prodml22:SlimTubeTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest: - return soap_in_PointerToprodml22__SwellingTest(soap, tag, NULL, "prodml22:SwellingTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest: - return soap_in_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag, NULL, "prodml22:VaporLiquidEquilibriumTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest: - return soap_in_PointerToprodml22__OtherMeasurementTest(soap, tag, NULL, "prodml22:OtherMeasurementTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest: - return soap_in_PointerToprodml22__FluidSeparatorTest(soap, tag, NULL, "prodml22:FluidSeparatorTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest: - return soap_in_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag, NULL, "prodml22:ConstantVolumeDepletionTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest: - return soap_in_PointerToprodml22__DifferentialLiberationTest(soap, tag, NULL, "prodml22:DifferentialLiberationTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest: - return soap_in_PointerToprodml22__SaturationTest(soap, tag, NULL, "prodml22:SaturationTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest: - return soap_in_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag, NULL, "prodml22:ConstantCompositionExpansionTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis: - return soap_in_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation: - return soap_in_PointerToprodml22__SampleIntegrityAndPreparation(soap, tag, NULL, "prodml22:SampleIntegrityAndPreparation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind: - return soap_in_PointerToprodml22__SaturationKind(soap, tag, NULL, "prodml22:SaturationKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries: + return soap_in_PointerToprodml23__AngleBetweenBoundaries(soap, tag, NULL, "prodml23:AngleBetweenBoundaries"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut: + return soap_in_PointerToprodml23__DistanceToPinchOut(soap, tag, NULL, "prodml23:DistanceToPinchOut"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary: + return soap_in_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, NULL, "prodml23:DistanceMidPerforationsToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength: + return soap_in_PointerToprodml23__PerforatedLength(soap, tag, NULL, "prodml23:PerforatedLength"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel: + return soap_in_PointerToprodml23__ReservoirZoneSubModel(soap, tag, NULL, "prodml23:ReservoirZoneSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel: + return soap_in_PointerToprodml23__DistributedParametersSubModel(soap, tag, NULL, "prodml23:DistributedParametersSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel: + return soap_in_PointerToprodml23__InternalFaultSubModel(soap, tag, NULL, "prodml23:InternalFaultSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel: + return soap_in_PointerToprodml23__SingleBoundarySubModel(soap, tag, NULL, "prodml23:SingleBoundarySubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity: + return soap_in_PointerToprodml23__FaultConductivity(soap, tag, NULL, "prodml23:FaultConductivity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness: + return soap_in_PointerToprodml23__Region2Thickness(soap, tag, NULL, "prodml23:Region2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront: + return soap_in_PointerToprodml23__OrientationOfLinearFront(soap, tag, NULL, "prodml23:OrientationOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface: + return soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, tag, NULL, "prodml23:DistanceToMobilityInterface"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio: + return soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, NULL, "prodml23:InnerToOuterZoneDiffusivityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio: + return soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, tag, NULL, "prodml23:InnerToOuterZoneMobilityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel: + return soap_in_PointerToprodml23__SingleFractureSubModel(soap, tag, NULL, "prodml23:SingleFractureSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore: + return soap_in_PointerToprodml23__FractureAngleToWellbore(soap, tag, NULL, "prodml23:FractureAngleToWellbore"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures: + return soap_in_PointerToprodml23__NumberOfFractures(soap, tag, NULL, "prodml23:NumberOfFractures"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary: + return soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, tag, NULL, "prodml23:DistanceWellboreToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing: + return soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, tag, NULL, "prodml23:LengthHorizontalWellboreFlowing"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory: + return soap_in_PointerToprodml23__OrientationWellTrajectory(soap, tag, NULL, "prodml23:OrientationWellTrajectory"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness: + return soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, NULL, "prodml23:MechanicalSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness: + return soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, NULL, "prodml23:ConvergenceSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary: + return soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(soap, tag, NULL, "prodml23:DistanceFractureToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius: + return soap_in_PointerToprodml23__FractureRadius(soap, tag, NULL, "prodml23:FractureRadius"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane: + return soap_in_PointerToprodml23__OrientationOfFracturePlane(soap, tag, NULL, "prodml23:OrientationOfFracturePlane"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength: + return soap_in_PointerToprodml23__FractureHalfLength(soap, tag, NULL, "prodml23:FractureHalfLength"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness: + return soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, tag, NULL, "prodml23:SkinLayer2RelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness: + return soap_in_PointerToprodml23__Layer2Thickness(soap, tag, NULL, "prodml23:Layer2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + return soap_in_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, NULL, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio: + return soap_in_PointerToprodml23__StorativityRatio(soap, tag, NULL, "prodml23:StorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName: + return soap_in_PointerToprodml23__ModelName(soap, tag, NULL, "prodml23:ModelName"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1: + return soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, tag, NULL, "prodml23:OrientationOfNormalToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4: + return soap_in_PointerToprodml23__DistanceToBoundary4(soap, tag, NULL, "prodml23:DistanceToBoundary4"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3: + return soap_in_PointerToprodml23__DistanceToBoundary3(soap, tag, NULL, "prodml23:DistanceToBoundary3"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2: + return soap_in_PointerToprodml23__DistanceToBoundary2(soap, tag, NULL, "prodml23:DistanceToBoundary2"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1: + return soap_in_PointerToprodml23__DistanceToBoundary1(soap, tag, NULL, "prodml23:DistanceToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured: + return soap_in_PointerToprodml23__PoreVolumeMeasured(soap, tag, NULL, "prodml23:PoreVolumeMeasured"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured: + return soap_in_PointerToprodml23__DrainageAreaMeasured(soap, tag, NULL, "prodml23:DrainageAreaMeasured"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin: + return soap_in_PointerToprodml23__LeakSkin(soap, tag, NULL, "prodml23:LeakSkin"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges: + return soap_in_PointerToprodml23__DeltaTimeStorageChanges(soap, tag, NULL, "prodml23:DeltaTimeStorageChanges"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage: + return soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, tag, NULL, "prodml23:RatioInitialToFinalWellboreStorage"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet: + return soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, tag, NULL, "prodml23:FlowTestMeasurementSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent: + return soap_in_PointerToprodml23__WaterSampleComponent(soap, tag, NULL, "prodml23:WaterSampleComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest: + return soap_in_PointerToprodml23__WaterAnalysisTest(soap, tag, NULL, "prodml23:WaterAnalysisTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest: + return soap_in_PointerToprodml23__NonHydrocarbonTest(soap, tag, NULL, "prodml23:NonHydrocarbonTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest: + return soap_in_PointerToprodml23__InterfacialTensionTest(soap, tag, NULL, "prodml23:InterfacialTensionTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis: + return soap_in_PointerToprodml23__STOAnalysis(soap, tag, NULL, "prodml23:STOAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest: + return soap_in_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag, NULL, "prodml23:MultipleContactMiscibilityTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest: + return soap_in_PointerToprodml23__SlimTubeTest(soap, tag, NULL, "prodml23:SlimTubeTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest: + return soap_in_PointerToprodml23__SwellingTest(soap, tag, NULL, "prodml23:SwellingTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest: + return soap_in_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag, NULL, "prodml23:VaporLiquidEquilibriumTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest: + return soap_in_PointerToprodml23__OtherMeasurementTest(soap, tag, NULL, "prodml23:OtherMeasurementTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest: + return soap_in_PointerToprodml23__FluidSeparatorTest(soap, tag, NULL, "prodml23:FluidSeparatorTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest: + return soap_in_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag, NULL, "prodml23:ConstantVolumeDepletionTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest: + return soap_in_PointerToprodml23__DifferentialLiberationTest(soap, tag, NULL, "prodml23:DifferentialLiberationTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest: + return soap_in_PointerToprodml23__SaturationTest(soap, tag, NULL, "prodml23:SaturationTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest: + return soap_in_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag, NULL, "prodml23:ConstantCompositionExpansionTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis: + return soap_in_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation: + return soap_in_PointerToprodml23__SampleIntegrityAndPreparation(soap, tag, NULL, "prodml23:SampleIntegrityAndPreparation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind: + return soap_in_PointerToprodml23__SaturationKind(soap, tag, NULL, "prodml23:SaturationKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePressureKind: return soap_in_PointerToeml23__ReferencePressureKind(soap, tag, NULL, "eml23:ReferencePressureKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateSquaredUomExt: @@ -5081,44 +5081,44 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_PointerToeml23__IntegerLatticeArray(soap, tag, NULL, "eml23:IntegerLatticeArray"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ParametricLineIntersections: return soap_in_PointerToresqml22__ParametricLineIntersections(soap, tag, NULL, "resqml22:ParametricLineIntersections"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold: - return soap_in_PointerToprodml22__TimeSeriesThreshold(soap, tag, NULL, "prodml22:TimeSeriesThreshold"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime: - return soap_in_PointerToprodml22__EndpointDateTime(soap, tag, NULL, "prodml22:EndpointDateTime"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue: - return soap_in_PointerToprodml22__AbstractValue(soap, tag, NULL, "prodml22:AbstractValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct: - return soap_in_PointerToprodml22__KeywordValueStruct(soap, tag, NULL, "prodml22:KeywordValueStruct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample: - return soap_in_PointerToprodml22__TimeSeriesStringSample(soap, tag, NULL, "prodml22:TimeSeriesStringSample"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample: - return soap_in_PointerToprodml22__TimeSeriesDoubleSample(soap, tag, NULL, "prodml22:TimeSeriesDoubleSample"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork: - return soap_in_PointerToprodml22__ProductFlowNetwork(soap, tag, NULL, "prodml22:ProductFlowNetwork"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference: - return soap_in_PointerToprodml22__ProductFlowExternalReference(soap, tag, NULL, "prodml22:ProductFlowExternalReference"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString: - return soap_in_PointerToprodml22__KindQualifiedString(soap, tag, NULL, "prodml22:KindQualifiedString"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility: - return soap_in_PointerToprodml22__ProductVolumeFacility(soap, tag, NULL, "prodml22:ProductVolumeFacility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold: + return soap_in_PointerToprodml23__TimeSeriesThreshold(soap, tag, NULL, "prodml23:TimeSeriesThreshold"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime: + return soap_in_PointerToprodml23__EndpointDateTime(soap, tag, NULL, "prodml23:EndpointDateTime"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue: + return soap_in_PointerToprodml23__AbstractValue(soap, tag, NULL, "prodml23:AbstractValue"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct: + return soap_in_PointerToprodml23__KeywordValueStruct(soap, tag, NULL, "prodml23:KeywordValueStruct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample: + return soap_in_PointerToprodml23__TimeSeriesStringSample(soap, tag, NULL, "prodml23:TimeSeriesStringSample"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample: + return soap_in_PointerToprodml23__TimeSeriesDoubleSample(soap, tag, NULL, "prodml23:TimeSeriesDoubleSample"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork: + return soap_in_PointerToprodml23__ProductFlowNetwork(soap, tag, NULL, "prodml23:ProductFlowNetwork"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference: + return soap_in_PointerToprodml23__ProductFlowExternalReference(soap, tag, NULL, "prodml23:ProductFlowExternalReference"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString: + return soap_in_PointerToprodml23__KindQualifiedString(soap, tag, NULL, "prodml23:KindQualifiedString"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility: + return soap_in_PointerToprodml23__ProductVolumeFacility(soap, tag, NULL, "prodml23:ProductVolumeFacility"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferenceCondition: return soap_in_PointerToeml23__ReferenceCondition(soap, tag, NULL, "eml23:ReferenceCondition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod: - return soap_in_PointerToprodml22__CalculationMethod(soap, tag, NULL, "prodml22:CalculationMethod"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime: - return soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, tag, NULL, "prodml22:EndpointQualifiedDateTime"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount: - return soap_in_PointerToprodml22__IntegerQualifiedCount(soap, tag, NULL, "prodml22:IntegerQualifiedCount"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition: - return soap_in_PointerToprodml22__FluidSampleAcquisition(soap, tag, NULL, "prodml22:FluidSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification: - return soap_in_PointerToprodml22__SampleRecombinationSpecification(soap, tag, NULL, "prodml22:SampleRecombinationSpecification"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource: - return soap_in_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, tag, NULL, "prodml22:FluidSampleAcquisitionJobSource"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent: - return soap_in_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag, NULL, "prodml22:FluidSampleChainOfCustodyEvent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt: - return soap_in_PointerToprodml22__FluidSampleKindExt(soap, tag, NULL, "prodml22:FluidSampleKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod: + return soap_in_PointerToprodml23__CalculationMethod(soap, tag, NULL, "prodml23:CalculationMethod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime: + return soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, tag, NULL, "prodml23:EndpointQualifiedDateTime"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount: + return soap_in_PointerToprodml23__IntegerQualifiedCount(soap, tag, NULL, "prodml23:IntegerQualifiedCount"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition: + return soap_in_PointerToprodml23__FluidSampleAcquisition(soap, tag, NULL, "prodml23:FluidSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification: + return soap_in_PointerToprodml23__SampleRecombinationSpecification(soap, tag, NULL, "prodml23:SampleRecombinationSpecification"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource: + return soap_in_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, tag, NULL, "prodml23:FluidSampleAcquisitionJobSource"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent: + return soap_in_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag, NULL, "prodml23:FluidSampleChainOfCustodyEvent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt: + return soap_in_PointerToprodml23__FluidSampleKindExt(soap, tag, NULL, "prodml23:FluidSampleKindExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerPressureMeasureExt: return soap_in_PointerToeml23__VolumePerPressureMeasureExt(soap, tag, NULL, "eml23:VolumePerPressureMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__TimePerVolumeMeasureExt: @@ -5127,108 +5127,108 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_PointerToeml23__PermeabilityRockMeasureExt(soap, tag, NULL, "eml23:PermeabilityRockMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PermeabilityLengthMeasureExt: return soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, tag, NULL, "eml23:PermeabilityLengthMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType: - return soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, tag, NULL, "prodml22:WellboreStorageMechanismType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle: - return soap_in_PointerToprodml22__WellboreDeviationAngle(soap, tag, NULL, "prodml22:WellboreDeviationAngle"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity: - return soap_in_PointerToprodml22__FluidDensity(soap, tag, NULL, "prodml22:FluidDensity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter: - return soap_in_PointerToprodml22__TubingInteralDiameter(soap, tag, NULL, "prodml22:TubingInteralDiameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility: - return soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, tag, NULL, "prodml22:WellboreFluidCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume: - return soap_in_PointerToprodml22__WellboreVolume(soap, tag, NULL, "prodml22:WellboreVolume"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient: - return soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, tag, NULL, "prodml22:WellboreStorageCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius: - return soap_in_PointerToprodml22__WellboreRadius(soap, tag, NULL, "prodml22:WellboreRadius"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType: - return soap_in_PointerToprodml22__LowerBoundaryType(soap, tag, NULL, "prodml22:LowerBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType: - return soap_in_PointerToprodml22__UpperBoundaryType(soap, tag, NULL, "prodml22:UpperBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection: - return soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, tag, NULL, "prodml22:OrientationOfAnisotropyXDirection"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy: - return soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, tag, NULL, "prodml22:HorizontalAnisotropyKxToKy"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr: - return soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, tag, NULL, "prodml22:VerticalAnisotropyKvToKr"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure: - return soap_in_PointerToprodml22__AveragePressure(soap, tag, NULL, "prodml22:AveragePressure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD: - return soap_in_PointerToprodml22__PressureDatumTVD(soap, tag, NULL, "prodml22:PressureDatumTVD"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure: - return soap_in_PointerToprodml22__InitialPressure(soap, tag, NULL, "prodml22:InitialPressure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct: - return soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, tag, NULL, "prodml22:PermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown: - return soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, tag, NULL, "prodml22:RatioDpSkinToTotalDrawdown"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin: - return soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, tag, NULL, "prodml22:DeltaPressureTotalSkin"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor: - return soap_in_PointerToprodml22__RateDependentSkinFactor(soap, tag, NULL, "prodml22:RateDependentSkinFactor"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness: - return soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, tag, NULL, "prodml22:SkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation: - return soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, tag, NULL, "prodml22:PoreVolumeOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation: - return soap_in_PointerToprodml22__RadiusOfInvestigation(soap, tag, NULL, "prodml22:RadiusOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData: - return soap_in_PointerToprodml22__OutputFlowData(soap, tag, NULL, "prodml22:OutputFlowData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput: - return soap_in_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag, NULL, "prodml22:AbstractDeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData: - return soap_in_PointerToprodml22__DeconvolvedFlowData(soap, tag, NULL, "prodml22:DeconvolvedFlowData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData: - return soap_in_PointerToprodml22__AbstractFlowTestData(soap, tag, NULL, "prodml22:AbstractFlowTestData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis: - return soap_in_PointerToprodml22__SpecializedAnalysis(soap, tag, NULL, "prodml22:SpecializedAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory: - return soap_in_PointerToprodml22__AbstractRateHistory(soap, tag, NULL, "prodml22:AbstractRateHistory"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis: - return soap_in_PointerToprodml22__LogLogAnalysis(soap, tag, NULL, "prodml22:LogLogAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType: + return soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, tag, NULL, "prodml23:WellboreStorageMechanismType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle: + return soap_in_PointerToprodml23__WellboreDeviationAngle(soap, tag, NULL, "prodml23:WellboreDeviationAngle"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity: + return soap_in_PointerToprodml23__FluidDensity(soap, tag, NULL, "prodml23:FluidDensity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter: + return soap_in_PointerToprodml23__TubingInteralDiameter(soap, tag, NULL, "prodml23:TubingInteralDiameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility: + return soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, tag, NULL, "prodml23:WellboreFluidCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume: + return soap_in_PointerToprodml23__WellboreVolume(soap, tag, NULL, "prodml23:WellboreVolume"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient: + return soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, tag, NULL, "prodml23:WellboreStorageCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius: + return soap_in_PointerToprodml23__WellboreRadius(soap, tag, NULL, "prodml23:WellboreRadius"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType: + return soap_in_PointerToprodml23__LowerBoundaryType(soap, tag, NULL, "prodml23:LowerBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType: + return soap_in_PointerToprodml23__UpperBoundaryType(soap, tag, NULL, "prodml23:UpperBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection: + return soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, tag, NULL, "prodml23:OrientationOfAnisotropyXDirection"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy: + return soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, tag, NULL, "prodml23:HorizontalAnisotropyKxToKy"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr: + return soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, tag, NULL, "prodml23:VerticalAnisotropyKvToKr"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure: + return soap_in_PointerToprodml23__AveragePressure(soap, tag, NULL, "prodml23:AveragePressure"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD: + return soap_in_PointerToprodml23__PressureDatumTVD(soap, tag, NULL, "prodml23:PressureDatumTVD"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure: + return soap_in_PointerToprodml23__InitialPressure(soap, tag, NULL, "prodml23:InitialPressure"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct: + return soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, tag, NULL, "prodml23:PermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown: + return soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, tag, NULL, "prodml23:RatioDpSkinToTotalDrawdown"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin: + return soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, tag, NULL, "prodml23:DeltaPressureTotalSkin"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor: + return soap_in_PointerToprodml23__RateDependentSkinFactor(soap, tag, NULL, "prodml23:RateDependentSkinFactor"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness: + return soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, tag, NULL, "prodml23:SkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation: + return soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, tag, NULL, "prodml23:PoreVolumeOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation: + return soap_in_PointerToprodml23__RadiusOfInvestigation(soap, tag, NULL, "prodml23:RadiusOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData: + return soap_in_PointerToprodml23__OutputFlowData(soap, tag, NULL, "prodml23:OutputFlowData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput: + return soap_in_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag, NULL, "prodml23:AbstractDeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData: + return soap_in_PointerToprodml23__DeconvolvedFlowData(soap, tag, NULL, "prodml23:DeconvolvedFlowData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData: + return soap_in_PointerToprodml23__AbstractFlowTestData(soap, tag, NULL, "prodml23:AbstractFlowTestData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis: + return soap_in_PointerToprodml23__SpecializedAnalysis(soap, tag, NULL, "prodml23:SpecializedAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory: + return soap_in_PointerToprodml23__AbstractRateHistory(soap, tag, NULL, "prodml23:AbstractRateHistory"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis: + return soap_in_PointerToprodml23__LogLogAnalysis(soap, tag, NULL, "prodml23:LogLogAnalysis"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerTimeMeasure: return soap_in_PointerToeml23__PressurePerTimeMeasure(soap, tag, NULL, "eml23:PressurePerTimeMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval: - return soap_in_PointerToprodml22__InterferingFlowTestInterval(soap, tag, NULL, "prodml22:InterferingFlowTestInterval"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters: - return soap_in_PointerToprodml22__CompressibilityParameters(soap, tag, NULL, "prodml22:CompressibilityParameters"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis: - return soap_in_PointerToprodml22__AbstractAnalysis(soap, tag, NULL, "prodml22:AbstractAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied: - return soap_in_PointerToprodml22__PseudoPressureEffectApplied(soap, tag, NULL, "prodml22:PseudoPressureEffectApplied"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel: - return soap_in_PointerToprodml22__LayerModel(soap, tag, NULL, "prodml22:LayerModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel: - return soap_in_PointerToprodml22__WellboreBaseModel(soap, tag, NULL, "prodml22:WellboreBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput: - return soap_in_PointerToprodml22__DeconvolutionOutput(soap, tag, NULL, "prodml22:DeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel: - return soap_in_PointerToprodml22__Channel(soap, tag, NULL, "prodml22:Channel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind: - return soap_in_PointerToprodml22__FluidPhaseKind(soap, tag, NULL, "prodml22:FluidPhaseKind"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState: - return soap_in_PointerToprodml22__ReservoirLifeCycleState(soap, tag, NULL, "prodml22:ReservoirLifeCycleState"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant: - return soap_in_PointerToprodml22__SampleContaminant(soap, tag, NULL, "prodml22:SampleContaminant"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport: - return soap_in_PointerToprodml22__FluidAnalysisReport(soap, tag, NULL, "prodml22:FluidAnalysisReport"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters: + return soap_in_PointerToprodml23__CompressibilityParameters(soap, tag, NULL, "prodml23:CompressibilityParameters"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis: + return soap_in_PointerToprodml23__AbstractAnalysis(soap, tag, NULL, "prodml23:AbstractAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval: + return soap_in_PointerToprodml23__InterferingFlowTestInterval(soap, tag, NULL, "prodml23:InterferingFlowTestInterval"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied: + return soap_in_PointerToprodml23__PseudoPressureEffectApplied(soap, tag, NULL, "prodml23:PseudoPressureEffectApplied"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel: + return soap_in_PointerToprodml23__LayerModel(soap, tag, NULL, "prodml23:LayerModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel: + return soap_in_PointerToprodml23__WellboreBaseModel(soap, tag, NULL, "prodml23:WellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput: + return soap_in_PointerToprodml23__DeconvolutionOutput(soap, tag, NULL, "prodml23:DeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel: + return soap_in_PointerToprodml23__Channel(soap, tag, NULL, "prodml23:Channel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind: + return soap_in_PointerToprodml23__FluidPhaseKind(soap, tag, NULL, "prodml23:FluidPhaseKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState: + return soap_in_PointerToprodml23__ReservoirLifeCycleState(soap, tag, NULL, "prodml23:ReservoirLifeCycleState"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant: + return soap_in_PointerToprodml23__SampleContaminant(soap, tag, NULL, "prodml23:SampleContaminant"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport: + return soap_in_PointerToprodml23__FluidAnalysisReport(soap, tag, NULL, "prodml23:FluidAnalysisReport"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasureExt: return soap_in_PointerToeml23__MolecularWeightMeasureExt(soap, tag, NULL, "eml23:MolecularWeightMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerMassMeasure: return soap_in_PointerToeml23__EnergyPerMassMeasure(soap, tag, NULL, "eml23:EnergyPerMassMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus: - return soap_in_PointerToprodml22__ValueStatus(soap, tag, NULL, "prodml22:ValueStatus"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel: - return soap_in_PointerToprodml22__FluidCharacterizationModel(soap, tag, NULL, "prodml22:FluidCharacterizationModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource: - return soap_in_PointerToprodml22__FluidCharacterizationSource(soap, tag, NULL, "prodml22:FluidCharacterizationSource"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet: - return soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, tag, NULL, "prodml22:BinaryInteractionCoefficientSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet: - return soap_in_PointerToprodml22__ComponentPropertySet(soap, tag, NULL, "prodml22:ComponentPropertySet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule: - return soap_in_PointerToprodml22__MixingRule(soap, tag, NULL, "prodml22:MixingRule"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus: + return soap_in_PointerToprodml23__ValueStatus(soap, tag, NULL, "prodml23:ValueStatus"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel: + return soap_in_PointerToprodml23__FluidCharacterizationModel(soap, tag, NULL, "prodml23:FluidCharacterizationModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource: + return soap_in_PointerToprodml23__FluidCharacterizationSource(soap, tag, NULL, "prodml23:FluidCharacterizationSource"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet: + return soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, tag, NULL, "prodml23:BinaryInteractionCoefficientSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet: + return soap_in_PointerToprodml23__ComponentPropertySet(soap, tag, NULL, "prodml23:ComponentPropertySet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule: + return soap_in_PointerToprodml23__MixingRule(soap, tag, NULL, "prodml23:MixingRule"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AbstractGraphicalInformation: return soap_in_PointerToeml23__AbstractGraphicalInformation(soap, tag, NULL, "eml23:AbstractGraphicalInformation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__FailingRule: @@ -5567,186 +5567,186 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_PointerToeml23__AbstractFloatingPointArray(soap, tag, NULL, "eml23:AbstractFloatingPointArray"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__Point3d: return soap_in_PointerToresqml22__Point3d(soap, tag, NULL, "resqml22:Point3d"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity: - return soap_in_PointerToprodml22__EndpointQuantity(soap, tag, NULL, "prodml22:EndpointQuantity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate: - return soap_in_PointerToprodml22__RelativeCoordinate(soap, tag, NULL, "prodml22:RelativeCoordinate"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort: - return soap_in_PointerToprodml22__ProductFlowPort(soap, tag, NULL, "prodml22:ProductFlowPort"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty: - return soap_in_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag, NULL, "prodml22:ProductFlowExpectedUnitProperty"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode: - return soap_in_PointerToprodml22__ConnectedNode(soap, tag, NULL, "prodml22:ConnectedNode"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected: - return soap_in_PointerToprodml22__ProductFlowQualifierExpected(soap, tag, NULL, "prodml22:ProductFlowQualifierExpected"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier: - return soap_in_PointerToprodml22__ExpectedFlowQualifier(soap, tag, NULL, "prodml22:ExpectedFlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType: - return soap_in_PointerToprodml22__GeneralMeasureType(soap, tag, NULL, "prodml22:GeneralMeasureType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject: - return soap_in_PointerToprodml22__AbstractRelatedFacilityObject(soap, tag, NULL, "prodml22:AbstractRelatedFacilityObject"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod: - return soap_in_PointerToprodml22__ProductVolumePeriod(soap, tag, NULL, "prodml22:ProductVolumePeriod"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow: - return soap_in_PointerToprodml22__AbstractRefProductFlow(soap, tag, NULL, "prodml22:AbstractRefProductFlow"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction: - return soap_in_PointerToprodml22__NonNegativeFraction(soap, tag, NULL, "prodml22:NonNegativeFraction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass: - return soap_in_PointerToprodml22__AbstractDateTimeClass(soap, tag, NULL, "prodml22:AbstractDateTimeClass"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet: - return soap_in_PointerToprodml22__ProductVolumeBalanceSet(soap, tag, NULL, "prodml22:ProductVolumeBalanceSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert: - return soap_in_PointerToprodml22__ProductVolumeAlert(soap, tag, NULL, "prodml22:ProductVolumeAlert"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData: - return soap_in_PointerToprodml22__AbstractMeasureData(soap, tag, NULL, "prodml22:AbstractMeasureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition: - return soap_in_PointerToprodml22__CurveDefinition(soap, tag, NULL, "prodml22:CurveDefinition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue: - return soap_in_PointerToprodml22__ProductVolumeParameterValue(soap, tag, NULL, "prodml22:ProductVolumeParameterValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind: - return soap_in_PointerToprodml22__ReportingDurationKind(soap, tag, NULL, "prodml22:ReportingDurationKind"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier: - return soap_in_PointerToprodml22__ProdmlRelativeIdentifier(soap, tag, NULL, "prodml22:ProdmlRelativeIdentifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct: - return soap_in_PointerToprodml22__ProductVolumeProduct(soap, tag, NULL, "prodml22:ProductVolumeProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility: - return soap_in_PointerToprodml22__ProductVolumeRelatedFacility(soap, tag, NULL, "prodml22:ProductVolumeRelatedFacility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier: - return soap_in_PointerToprodml22__FlowSubQualifier(soap, tag, NULL, "prodml22:FlowSubQualifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier: - return soap_in_PointerToprodml22__FlowQualifier(soap, tag, NULL, "prodml22:FlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType: - return soap_in_PointerToprodml22__ProductFlowPortType(soap, tag, NULL, "prodml22:ProductFlowPortType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment: - return soap_in_PointerToprodml22__DatedComment(soap, tag, NULL, "prodml22:DatedComment"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet: - return soap_in_PointerToprodml22__ProductVolumeParameterSet(soap, tag, NULL, "prodml22:ProductVolumeParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow: - return soap_in_PointerToprodml22__ProductVolumeFlow(soap, tag, NULL, "prodml22:ProductVolumeFlow"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod: - return soap_in_PointerToprodml22__WellOperationMethod(soap, tag, NULL, "prodml22:WellOperationMethod"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid: - return soap_in_PointerToprodml22__WellFluid(soap, tag, NULL, "prodml22:WellFluid"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity: + return soap_in_PointerToprodml23__EndpointQuantity(soap, tag, NULL, "prodml23:EndpointQuantity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate: + return soap_in_PointerToprodml23__RelativeCoordinate(soap, tag, NULL, "prodml23:RelativeCoordinate"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort: + return soap_in_PointerToprodml23__ProductFlowPort(soap, tag, NULL, "prodml23:ProductFlowPort"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty: + return soap_in_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag, NULL, "prodml23:ProductFlowExpectedUnitProperty"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode: + return soap_in_PointerToprodml23__ConnectedNode(soap, tag, NULL, "prodml23:ConnectedNode"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected: + return soap_in_PointerToprodml23__ProductFlowQualifierExpected(soap, tag, NULL, "prodml23:ProductFlowQualifierExpected"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier: + return soap_in_PointerToprodml23__ExpectedFlowQualifier(soap, tag, NULL, "prodml23:ExpectedFlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType: + return soap_in_PointerToprodml23__GeneralMeasureType(soap, tag, NULL, "prodml23:GeneralMeasureType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject: + return soap_in_PointerToprodml23__AbstractRelatedFacilityObject(soap, tag, NULL, "prodml23:AbstractRelatedFacilityObject"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod: + return soap_in_PointerToprodml23__ProductVolumePeriod(soap, tag, NULL, "prodml23:ProductVolumePeriod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow: + return soap_in_PointerToprodml23__AbstractRefProductFlow(soap, tag, NULL, "prodml23:AbstractRefProductFlow"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction: + return soap_in_PointerToprodml23__NonNegativeFraction(soap, tag, NULL, "prodml23:NonNegativeFraction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass: + return soap_in_PointerToprodml23__AbstractDateTimeClass(soap, tag, NULL, "prodml23:AbstractDateTimeClass"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet: + return soap_in_PointerToprodml23__ProductVolumeBalanceSet(soap, tag, NULL, "prodml23:ProductVolumeBalanceSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert: + return soap_in_PointerToprodml23__ProductVolumeAlert(soap, tag, NULL, "prodml23:ProductVolumeAlert"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData: + return soap_in_PointerToprodml23__AbstractMeasureData(soap, tag, NULL, "prodml23:AbstractMeasureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition: + return soap_in_PointerToprodml23__CurveDefinition(soap, tag, NULL, "prodml23:CurveDefinition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue: + return soap_in_PointerToprodml23__ProductVolumeParameterValue(soap, tag, NULL, "prodml23:ProductVolumeParameterValue"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind: + return soap_in_PointerToprodml23__ReportingDurationKind(soap, tag, NULL, "prodml23:ReportingDurationKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier: + return soap_in_PointerToprodml23__ProdmlRelativeIdentifier(soap, tag, NULL, "prodml23:ProdmlRelativeIdentifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct: + return soap_in_PointerToprodml23__ProductVolumeProduct(soap, tag, NULL, "prodml23:ProductVolumeProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility: + return soap_in_PointerToprodml23__ProductVolumeRelatedFacility(soap, tag, NULL, "prodml23:ProductVolumeRelatedFacility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier: + return soap_in_PointerToprodml23__FlowSubQualifier(soap, tag, NULL, "prodml23:FlowSubQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier: + return soap_in_PointerToprodml23__FlowQualifier(soap, tag, NULL, "prodml23:FlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType: + return soap_in_PointerToprodml23__ProductFlowPortType(soap, tag, NULL, "prodml23:ProductFlowPortType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment: + return soap_in_PointerToprodml23__DatedComment(soap, tag, NULL, "prodml23:DatedComment"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet: + return soap_in_PointerToprodml23__ProductVolumeParameterSet(soap, tag, NULL, "prodml23:ProductVolumeParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow: + return soap_in_PointerToprodml23__ProductVolumeFlow(soap, tag, NULL, "prodml23:ProductVolumeFlow"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod: + return soap_in_PointerToprodml23__WellOperationMethod(soap, tag, NULL, "prodml23:WellOperationMethod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid: + return soap_in_PointerToprodml23__WellFluid(soap, tag, NULL, "prodml23:WellFluid"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__WellStatus: return soap_in_PointerToeml23__WellStatus(soap, tag, NULL, "eml23:WellStatus"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType: - return soap_in_PointerToprodml22__BalanceDestinationType(soap, tag, NULL, "prodml22:BalanceDestinationType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume: - return soap_in_PointerToprodml22__CommonPropertiesProductVolume(soap, tag, NULL, "prodml22:CommonPropertiesProductVolume"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct: - return soap_in_PointerToprodml22__ReportingProduct(soap, tag, NULL, "prodml22:ReportingProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit: - return soap_in_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag, NULL, "prodml22:ProductVolumeBusinessSubUnit"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct: - return soap_in_PointerToprodml22__OwnershipBusinessAcct(soap, tag, NULL, "prodml22:OwnershipBusinessAcct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination: - return soap_in_PointerToprodml22__ProductVolumeDestination(soap, tag, NULL, "prodml22:ProductVolumeDestination"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail: - return soap_in_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag, NULL, "prodml22:ProductVolumeBalanceDetail"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType: + return soap_in_PointerToprodml23__BalanceDestinationType(soap, tag, NULL, "prodml23:BalanceDestinationType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume: + return soap_in_PointerToprodml23__CommonPropertiesProductVolume(soap, tag, NULL, "prodml23:CommonPropertiesProductVolume"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct: + return soap_in_PointerToprodml23__ReportingProduct(soap, tag, NULL, "prodml23:ReportingProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit: + return soap_in_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag, NULL, "prodml23:ProductVolumeBusinessSubUnit"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct: + return soap_in_PointerToprodml23__OwnershipBusinessAcct(soap, tag, NULL, "prodml23:OwnershipBusinessAcct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination: + return soap_in_PointerToprodml23__ProductVolumeDestination(soap, tag, NULL, "prodml23:ProductVolumeDestination"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail: + return soap_in_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag, NULL, "prodml23:ProductVolumeBalanceDetail"); case SOAP_TYPE_gsoap_eml2_3_PointerToxsd__nonNegativeInteger: return soap_in_PointerToxsd__nonNegativeInteger(soap, tag, NULL, "xsd:nonNegativeInteger"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart: - return soap_in_PointerToprodml22__BalanceFlowPart(soap, tag, NULL, "prodml22:BalanceFlowPart"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent: - return soap_in_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag, NULL, "prodml22:ProductVolumeBalanceEvent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent: - return soap_in_PointerToprodml22__ProductVolumeComponentContent(soap, tag, NULL, "prodml22:ProductVolumeComponentContent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent: - return soap_in_PointerToprodml22__FacilityParent(soap, tag, NULL, "prodml22:FacilityParent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference: - return soap_in_PointerToprodml22__ProductVolumePortDifference(soap, tag, NULL, "prodml22:ProductVolumePortDifference"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart: + return soap_in_PointerToprodml23__BalanceFlowPart(soap, tag, NULL, "prodml23:BalanceFlowPart"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent: + return soap_in_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag, NULL, "prodml23:ProductVolumeBalanceEvent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent: + return soap_in_PointerToprodml23__ProductVolumeComponentContent(soap, tag, NULL, "prodml23:ProductVolumeComponentContent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent: + return soap_in_PointerToprodml23__FacilityParent(soap, tag, NULL, "prodml23:FacilityParent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference: + return soap_in_PointerToprodml23__ProductVolumePortDifference(soap, tag, NULL, "prodml23:ProductVolumePortDifference"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__DensityValue: return soap_in_PointerToeml23__DensityValue(soap, tag, NULL, "eml23:DensityValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction: - return soap_in_PointerToprodml22__RecombinedSampleFraction(soap, tag, NULL, "prodml22:RecombinedSampleFraction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction: - return soap_in_PointerToprodml22__SampleAction(soap, tag, NULL, "prodml22:SampleAction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter: - return soap_in_PointerToprodml22__CustomParameter(soap, tag, NULL, "prodml22:CustomParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter: - return soap_in_PointerToprodml22__AbstractParameter(soap, tag, NULL, "prodml22:AbstractParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio: - return soap_in_PointerToprodml22__FractureStorativityRatio(soap, tag, NULL, "prodml22:FractureStorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin: - return soap_in_PointerToprodml22__FractureFaceSkin(soap, tag, NULL, "prodml22:FractureFaceSkin"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary: - return soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, NULL, "prodml22:DistanceMidFractureHeightToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight: - return soap_in_PointerToprodml22__FractureHeight(soap, tag, NULL, "prodml22:FractureHeight"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness: - return soap_in_PointerToprodml22__TotalThickness(soap, tag, NULL, "prodml22:TotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity: - return soap_in_PointerToprodml22__Porosity(soap, tag, NULL, "prodml22:Porosity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability: - return soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, tag, NULL, "prodml22:HorizontalRadialPermeability"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D: - return soap_in_PointerToprodml22__LocationIn2D(soap, tag, NULL, "prodml22:LocationIn2D"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine: - return soap_in_PointerToprodml22__AnalysisLine(soap, tag, NULL, "prodml22:AnalysisLine"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData: - return soap_in_PointerToprodml22__AbstractPtaPressureData(soap, tag, NULL, "prodml22:AbstractPtaPressureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter: - return soap_in_PointerToprodml22__InterporosityFlowParameter(soap, tag, NULL, "prodml22:InterporosityFlowParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection: - return soap_in_PointerToprodml22__LayerToLayerConnection(soap, tag, NULL, "prodml22:LayerToLayerConnection"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel: - return soap_in_PointerToprodml22__BoundaryBaseModel(soap, tag, NULL, "prodml22:BoundaryBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel: - return soap_in_PointerToprodml22__ReservoirBaseModel(soap, tag, NULL, "prodml22:ReservoirBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel: - return soap_in_PointerToprodml22__NearWellboreBaseModel(soap, tag, NULL, "prodml22:NearWellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction: + return soap_in_PointerToprodml23__RecombinedSampleFraction(soap, tag, NULL, "prodml23:RecombinedSampleFraction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction: + return soap_in_PointerToprodml23__SampleAction(soap, tag, NULL, "prodml23:SampleAction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter: + return soap_in_PointerToprodml23__CustomParameter(soap, tag, NULL, "prodml23:CustomParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter: + return soap_in_PointerToprodml23__AbstractParameter(soap, tag, NULL, "prodml23:AbstractParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio: + return soap_in_PointerToprodml23__FractureStorativityRatio(soap, tag, NULL, "prodml23:FractureStorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin: + return soap_in_PointerToprodml23__FractureFaceSkin(soap, tag, NULL, "prodml23:FractureFaceSkin"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary: + return soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, NULL, "prodml23:DistanceMidFractureHeightToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight: + return soap_in_PointerToprodml23__FractureHeight(soap, tag, NULL, "prodml23:FractureHeight"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness: + return soap_in_PointerToprodml23__TotalThickness(soap, tag, NULL, "prodml23:TotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity: + return soap_in_PointerToprodml23__Porosity(soap, tag, NULL, "prodml23:Porosity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability: + return soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, tag, NULL, "prodml23:HorizontalRadialPermeability"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D: + return soap_in_PointerToprodml23__LocationIn2D(soap, tag, NULL, "prodml23:LocationIn2D"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine: + return soap_in_PointerToprodml23__AnalysisLine(soap, tag, NULL, "prodml23:AnalysisLine"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData: + return soap_in_PointerToprodml23__AbstractPtaPressureData(soap, tag, NULL, "prodml23:AbstractPtaPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter: + return soap_in_PointerToprodml23__InterporosityFlowParameter(soap, tag, NULL, "prodml23:InterporosityFlowParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection: + return soap_in_PointerToprodml23__LayerToLayerConnection(soap, tag, NULL, "prodml23:LayerToLayerConnection"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel: + return soap_in_PointerToprodml23__BoundaryBaseModel(soap, tag, NULL, "prodml23:BoundaryBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel: + return soap_in_PointerToprodml23__ReservoirBaseModel(soap, tag, NULL, "prodml23:ReservoirBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel: + return soap_in_PointerToprodml23__NearWellboreBaseModel(soap, tag, NULL, "prodml23:NearWellboreBaseModel"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateMeasure: return soap_in_PointerToeml23__PressurePerFlowrateMeasure(soap, tag, NULL, "eml23:PressurePerFlowrateMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateSquaredMeasure: return soap_in_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, tag, NULL, "eml23:PressurePerFlowrateSquaredMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerTimePerPressureMeasure: return soap_in_PointerToeml23__VolumePerTimePerPressureMeasure(soap, tag, NULL, "eml23:VolumePerTimePerPressureMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity: - return soap_in_PointerToprodml22__FractureConductivity(soap, tag, NULL, "prodml22:FractureConductivity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront: - return soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, NULL, "prodml22:TransmissibilityReductionFactorOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData: - return soap_in_PointerToprodml22__OutputPressureData(soap, tag, NULL, "prodml22:OutputPressureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef: - return soap_in_PointerToprodml22__ResqmlModelRef(soap, tag, NULL, "prodml22:ResqmlModelRef"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData: - return soap_in_PointerToprodml22__DeconvolvedPressureData(soap, tag, NULL, "prodml22:DeconvolvedPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity: + return soap_in_PointerToprodml23__FractureConductivity(soap, tag, NULL, "prodml23:FractureConductivity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront: + return soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, NULL, "prodml23:TransmissibilityReductionFactorOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData: + return soap_in_PointerToprodml23__OutputPressureData(soap, tag, NULL, "prodml23:OutputPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef: + return soap_in_PointerToprodml23__ResqmlModelRef(soap, tag, NULL, "prodml23:ResqmlModelRef"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData: + return soap_in_PointerToprodml23__DeconvolvedPressureData(soap, tag, NULL, "prodml23:DeconvolvedPressureData"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasureExt: return soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, tag, NULL, "eml23:ReciprocalPressureMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode: - return soap_in_PointerToprodml22__ReportingHierarchyNode(soap, tag, NULL, "prodml22:ReportingHierarchyNode"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate: - return soap_in_PointerToprodml22__ProductRate(soap, tag, NULL, "prodml22:ProductRate"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition: - return soap_in_PointerToprodml22__WellFlowingCondition(soap, tag, NULL, "prodml22:WellFlowingCondition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind: - return soap_in_PointerToprodml22__TestPeriodKind(soap, tag, NULL, "prodml22:TestPeriodKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode: + return soap_in_PointerToprodml23__ReportingHierarchyNode(soap, tag, NULL, "prodml23:ReportingHierarchyNode"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate: + return soap_in_PointerToprodml23__ProductRate(soap, tag, NULL, "prodml23:ProductRate"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition: + return soap_in_PointerToprodml23__WellFlowingCondition(soap, tag, NULL, "prodml23:WellFlowingCondition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind: + return soap_in_PointerToprodml23__TestPeriodKind(soap, tag, NULL, "prodml23:TestPeriodKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__FlowRateValue: return soap_in_PointerToeml23__FlowRateValue(soap, tag, NULL, "eml23:FlowRateValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog: - return soap_in_PointerToprodml22__FluidComponentCatalog(soap, tag, NULL, "prodml22:FluidComponentCatalog"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData: - return soap_in_PointerToprodml22__MeasuredPressureData(soap, tag, NULL, "prodml22:MeasuredPressureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData: - return soap_in_PointerToprodml22__AbstractPtaFlowData(soap, tag, NULL, "prodml22:AbstractPtaFlowData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData: - return soap_in_PointerToprodml22__OtherData(soap, tag, NULL, "prodml22:OtherData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation: - return soap_in_PointerToprodml22__FlowTestLocation(soap, tag, NULL, "prodml22:FlowTestLocation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod: - return soap_in_PointerToprodml22__TestPeriod(soap, tag, NULL, "prodml22:TestPeriod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog: + return soap_in_PointerToprodml23__FluidComponentCatalog(soap, tag, NULL, "prodml23:FluidComponentCatalog"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData: + return soap_in_PointerToprodml23__MeasuredPressureData(soap, tag, NULL, "prodml23:MeasuredPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData: + return soap_in_PointerToprodml23__AbstractPtaFlowData(soap, tag, NULL, "prodml23:AbstractPtaFlowData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData: + return soap_in_PointerToprodml23__OtherData(soap, tag, NULL, "prodml23:OtherData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation: + return soap_in_PointerToprodml23__FlowTestLocation(soap, tag, NULL, "prodml23:FlowTestLocation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod: + return soap_in_PointerToprodml23__TestPeriod(soap, tag, NULL, "prodml23:TestPeriod"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePointKind: return soap_in_PointerToeml23__ReferencePointKind(soap, tag, NULL, "eml23:ReferencePointKind"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation: - return soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, tag, NULL, "prodml22:TimeSeriesPointRepresentation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation: + return soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, tag, NULL, "prodml23:TimeSeriesPointRepresentation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt: return soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, tag, NULL, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt: - return soap_in_PointerToprodml22__OrganicAcidKindExt(soap, tag, NULL, "prodml22:OrganicAcidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt: - return soap_in_PointerToprodml22__CationKindExt(soap, tag, NULL, "prodml22:CationKindExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt: - return soap_in_PointerToprodml22__AnionKindExt(soap, tag, NULL, "prodml22:AnionKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt: + return soap_in_PointerToprodml23__OrganicAcidKindExt(soap, tag, NULL, "prodml23:OrganicAcidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt: + return soap_in_PointerToprodml23__CationKindExt(soap, tag, NULL, "prodml23:CationKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt: + return soap_in_PointerToprodml23__AnionKindExt(soap, tag, NULL, "prodml23:AnionKindExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure: return soap_in_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, tag, NULL, "eml23:EnergyLengthPerTimeAreaTemperatureMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolarEnergyMeasure: @@ -5763,182 +5763,182 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, return soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, tag, NULL, "eml23:EnergyPerVolumeMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ElectricalResistivityMeasureExt: return soap_in_PointerToeml23__ElectricalResistivityMeasureExt(soap, tag, NULL, "eml23:ElectricalResistivityMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep: - return soap_in_PointerToprodml22__WaterAnalysisTestStep(soap, tag, NULL, "prodml22:WaterAnalysisTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep: + return soap_in_PointerToprodml23__WaterAnalysisTestStep(soap, tag, NULL, "prodml23:WaterAnalysisTestStep"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerMassMeasureExt: return soap_in_PointerToeml23__MassPerMassMeasureExt(soap, tag, NULL, "eml23:MassPerMassMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity: - return soap_in_PointerToprodml22__PhaseDensity(soap, tag, NULL, "prodml22:PhaseDensity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity: - return soap_in_PointerToprodml22__PhaseViscosity(soap, tag, NULL, "prodml22:PhaseViscosity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded: - return soap_in_PointerToprodml22__RefInjectedGasAdded(soap, tag, NULL, "prodml22:RefInjectedGasAdded"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep: - return soap_in_PointerToprodml22__SwellingTestStep(soap, tag, NULL, "prodml22:SwellingTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara: - return soap_in_PointerToprodml22__Sara(soap, tag, NULL, "prodml22:Sara"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature: - return soap_in_PointerToprodml22__ViscosityAtTemperature(soap, tag, NULL, "prodml22:ViscosityAtTemperature"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid: - return soap_in_PointerToprodml22__STOFlashedLiquid(soap, tag, NULL, "prodml22:STOFlashedLiquid"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance: - return soap_in_PointerToprodml22__MassBalance(soap, tag, NULL, "prodml22:MassBalance"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties: - return soap_in_PointerToprodml22__ProducedOilProperties(soap, tag, NULL, "prodml22:ProducedOilProperties"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties: - return soap_in_PointerToprodml22__ProducedGasProperties(soap, tag, NULL, "prodml22:ProducedGasProperties"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep: - return soap_in_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag, NULL, "prodml22:SlimTubeTestVolumeStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification: - return soap_in_PointerToprodml22__SlimTubeSpecification(soap, tag, NULL, "prodml22:SlimTubeSpecification"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep: - return soap_in_PointerToprodml22__SlimTubeTestStep(soap, tag, NULL, "prodml22:SlimTubeTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas: - return soap_in_PointerToprodml22__InjectedGas(soap, tag, NULL, "prodml22:InjectedGas"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration: - return soap_in_PointerToprodml22__SampleRestoration(soap, tag, NULL, "prodml22:SampleRestoration"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature: - return soap_in_PointerToprodml22__SaturationTemperature(soap, tag, NULL, "prodml22:SaturationTemperature"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep: - return soap_in_PointerToprodml22__OtherMeasurementTestStep(soap, tag, NULL, "prodml22:OtherMeasurementTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet: - return soap_in_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, tag, NULL, "prodml22:FluidCharacterizationTableFormatSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut: - return soap_in_PointerToprodml22__MassOut(soap, tag, NULL, "prodml22:MassOut"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn: - return soap_in_PointerToprodml22__MassIn(soap, tag, NULL, "prodml22:MassIn"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep: - return soap_in_PointerToprodml22__InterfacialTensionTestStep(soap, tag, NULL, "prodml22:InterfacialTensionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent: - return soap_in_PointerToprodml22__AbstractFluidComponent(soap, tag, NULL, "prodml22:AbstractFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep: - return soap_in_PointerToprodml22__FluidSeparatorTestStep(soap, tag, NULL, "prodml22:FluidSeparatorTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation: - return soap_in_PointerToprodml22__ReportLocation(soap, tag, NULL, "prodml22:ReportLocation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity: + return soap_in_PointerToprodml23__PhaseDensity(soap, tag, NULL, "prodml23:PhaseDensity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity: + return soap_in_PointerToprodml23__PhaseViscosity(soap, tag, NULL, "prodml23:PhaseViscosity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded: + return soap_in_PointerToprodml23__RefInjectedGasAdded(soap, tag, NULL, "prodml23:RefInjectedGasAdded"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep: + return soap_in_PointerToprodml23__SwellingTestStep(soap, tag, NULL, "prodml23:SwellingTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara: + return soap_in_PointerToprodml23__Sara(soap, tag, NULL, "prodml23:Sara"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature: + return soap_in_PointerToprodml23__ViscosityAtTemperature(soap, tag, NULL, "prodml23:ViscosityAtTemperature"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid: + return soap_in_PointerToprodml23__STOFlashedLiquid(soap, tag, NULL, "prodml23:STOFlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance: + return soap_in_PointerToprodml23__MassBalance(soap, tag, NULL, "prodml23:MassBalance"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties: + return soap_in_PointerToprodml23__ProducedOilProperties(soap, tag, NULL, "prodml23:ProducedOilProperties"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties: + return soap_in_PointerToprodml23__ProducedGasProperties(soap, tag, NULL, "prodml23:ProducedGasProperties"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep: + return soap_in_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag, NULL, "prodml23:SlimTubeTestVolumeStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification: + return soap_in_PointerToprodml23__SlimTubeSpecification(soap, tag, NULL, "prodml23:SlimTubeSpecification"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep: + return soap_in_PointerToprodml23__SlimTubeTestStep(soap, tag, NULL, "prodml23:SlimTubeTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas: + return soap_in_PointerToprodml23__InjectedGas(soap, tag, NULL, "prodml23:InjectedGas"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration: + return soap_in_PointerToprodml23__SampleRestoration(soap, tag, NULL, "prodml23:SampleRestoration"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature: + return soap_in_PointerToprodml23__SaturationTemperature(soap, tag, NULL, "prodml23:SaturationTemperature"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep: + return soap_in_PointerToprodml23__OtherMeasurementTestStep(soap, tag, NULL, "prodml23:OtherMeasurementTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet: + return soap_in_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, tag, NULL, "prodml23:FluidCharacterizationTableFormatSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut: + return soap_in_PointerToprodml23__MassOut(soap, tag, NULL, "prodml23:MassOut"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn: + return soap_in_PointerToprodml23__MassIn(soap, tag, NULL, "prodml23:MassIn"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep: + return soap_in_PointerToprodml23__InterfacialTensionTestStep(soap, tag, NULL, "prodml23:InterfacialTensionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent: + return soap_in_PointerToprodml23__AbstractFluidComponent(soap, tag, NULL, "prodml23:AbstractFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep: + return soap_in_PointerToprodml23__FluidSeparatorTestStep(soap, tag, NULL, "prodml23:FluidSeparatorTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation: + return soap_in_PointerToprodml23__ReportLocation(soap, tag, NULL, "prodml23:ReportLocation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerVolumeMeasureExt: return soap_in_PointerToeml23__EnergyPerVolumeMeasureExt(soap, tag, NULL, "eml23:EnergyPerVolumeMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerMassMeasureExt: return soap_in_PointerToeml23__EnergyPerMassMeasureExt(soap, tag, NULL, "eml23:EnergyPerMassMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep: - return soap_in_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag, NULL, "prodml22:FluidDifferentialLiberationTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions: - return soap_in_PointerToprodml22__SeparatorConditions(soap, tag, NULL, "prodml22:SeparatorConditions"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep: - return soap_in_PointerToprodml22__FluidCvdTestStep(soap, tag, NULL, "prodml22:FluidCvdTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition: - return soap_in_PointerToprodml22__LiquidComposition(soap, tag, NULL, "prodml22:LiquidComposition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition: - return soap_in_PointerToprodml22__VaporComposition(soap, tag, NULL, "prodml22:VaporComposition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent: - return soap_in_PointerToprodml22__PhasePresent(soap, tag, NULL, "prodml22:PhasePresent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition: - return soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, tag, NULL, "prodml22:FluidAnalysisStepCondition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility: - return soap_in_PointerToprodml22__OilCompressibility(soap, tag, NULL, "prodml22:OilCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio: - return soap_in_PointerToprodml22__RelativeVolumeRatio(soap, tag, NULL, "prodml22:RelativeVolumeRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep: - return soap_in_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag, NULL, "prodml22:ConstantCompositionExpansionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference: - return soap_in_PointerToprodml22__FluidVolumeReference(soap, tag, NULL, "prodml22:FluidVolumeReference"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure: - return soap_in_PointerToprodml22__SaturationPressure(soap, tag, NULL, "prodml22:SaturationPressure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas: - return soap_in_PointerToprodml22__FlashedGas(soap, tag, NULL, "prodml22:FlashedGas"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition: - return soap_in_PointerToprodml22__OverallComposition(soap, tag, NULL, "prodml22:OverallComposition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid: - return soap_in_PointerToprodml22__FlashedLiquid(soap, tag, NULL, "prodml22:FlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep: + return soap_in_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag, NULL, "prodml23:FluidDifferentialLiberationTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions: + return soap_in_PointerToprodml23__SeparatorConditions(soap, tag, NULL, "prodml23:SeparatorConditions"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep: + return soap_in_PointerToprodml23__FluidCvdTestStep(soap, tag, NULL, "prodml23:FluidCvdTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition: + return soap_in_PointerToprodml23__LiquidComposition(soap, tag, NULL, "prodml23:LiquidComposition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition: + return soap_in_PointerToprodml23__VaporComposition(soap, tag, NULL, "prodml23:VaporComposition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent: + return soap_in_PointerToprodml23__PhasePresent(soap, tag, NULL, "prodml23:PhasePresent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition: + return soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, tag, NULL, "prodml23:FluidAnalysisStepCondition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility: + return soap_in_PointerToprodml23__OilCompressibility(soap, tag, NULL, "prodml23:OilCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio: + return soap_in_PointerToprodml23__RelativeVolumeRatio(soap, tag, NULL, "prodml23:RelativeVolumeRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep: + return soap_in_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag, NULL, "prodml23:ConstantCompositionExpansionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference: + return soap_in_PointerToprodml23__FluidVolumeReference(soap, tag, NULL, "prodml23:FluidVolumeReference"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure: + return soap_in_PointerToprodml23__SaturationPressure(soap, tag, NULL, "prodml23:SaturationPressure"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas: + return soap_in_PointerToprodml23__FlashedGas(soap, tag, NULL, "prodml23:FlashedGas"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition: + return soap_in_PointerToprodml23__OverallComposition(soap, tag, NULL, "prodml23:OverallComposition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid: + return soap_in_PointerToprodml23__FlashedLiquid(soap, tag, NULL, "prodml23:FlashedLiquid"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasure: return soap_in_PointerToeml23__MolecularWeightMeasure(soap, tag, NULL, "eml23:MolecularWeightMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit: - return soap_in_PointerToprodml22__ProductFlowUnit(soap, tag, NULL, "prodml22:ProductFlowUnit"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog: - return soap_in_PointerToprodml22__ProductFlowChangeLog(soap, tag, NULL, "prodml22:ProductFlowChangeLog"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan: - return soap_in_PointerToprodml22__ProductFlowNetworkPlan(soap, tag, NULL, "prodml22:ProductFlowNetworkPlan"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort: - return soap_in_PointerToprodml22__ProductFlowExternalPort(soap, tag, NULL, "prodml22:ProductFlowExternalPort"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore: - return soap_in_PointerToprodml22__NorthSeaOffshore(soap, tag, NULL, "prodml22:NorthSeaOffshore"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction: - return soap_in_PointerToprodml22__FluidComponentFraction(soap, tag, NULL, "prodml22:FluidComponentFraction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation: - return soap_in_PointerToprodml22__OffshoreLocation(soap, tag, NULL, "prodml22:OffshoreLocation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit: + return soap_in_PointerToprodml23__ProductFlowUnit(soap, tag, NULL, "prodml23:ProductFlowUnit"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog: + return soap_in_PointerToprodml23__ProductFlowChangeLog(soap, tag, NULL, "prodml23:ProductFlowChangeLog"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan: + return soap_in_PointerToprodml23__ProductFlowNetworkPlan(soap, tag, NULL, "prodml23:ProductFlowNetworkPlan"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort: + return soap_in_PointerToprodml23__ProductFlowExternalPort(soap, tag, NULL, "prodml23:ProductFlowExternalPort"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore: + return soap_in_PointerToprodml23__NorthSeaOffshore(soap, tag, NULL, "prodml23:NorthSeaOffshore"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction: + return soap_in_PointerToprodml23__FluidComponentFraction(soap, tag, NULL, "prodml23:FluidComponentFraction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation: + return soap_in_PointerToprodml23__OffshoreLocation(soap, tag, NULL, "prodml23:OffshoreLocation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerVolumeMeasureExt: return soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, tag, NULL, "eml23:VolumePerVolumeMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent: - return soap_in_PointerToprodml22__SulfurFluidComponent(soap, tag, NULL, "prodml22:SulfurFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent: - return soap_in_PointerToprodml22__PlusFluidComponent(soap, tag, NULL, "prodml22:PlusFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent: - return soap_in_PointerToprodml22__PseudoFluidComponent(soap, tag, NULL, "prodml22:PseudoFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent: - return soap_in_PointerToprodml22__PureFluidComponent(soap, tag, NULL, "prodml22:PureFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater: - return soap_in_PointerToprodml22__FormationWater(soap, tag, NULL, "prodml22:FormationWater"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas: - return soap_in_PointerToprodml22__NaturalGas(soap, tag, NULL, "prodml22:NaturalGas"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil: - return soap_in_PointerToprodml22__StockTankOil(soap, tag, NULL, "prodml22:StockTankOil"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility: - return soap_in_PointerToprodml22__ReportingFacility(soap, tag, NULL, "prodml22:ReportingFacility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext: - return soap_in_PointerToprodml22__GeographicContext(soap, tag, NULL, "prodml22:GeographicContext"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit: - return soap_in_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag, NULL, "prodml22:ProductVolumeBusinessUnit"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct: - return soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, tag, NULL, "prodml22:FacilityIdentifierStruct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier: - return soap_in_PointerToprodml22__EndpointQualifier(soap, tag, NULL, "prodml22:EndpointQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent: + return soap_in_PointerToprodml23__SulfurFluidComponent(soap, tag, NULL, "prodml23:SulfurFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent: + return soap_in_PointerToprodml23__PlusFluidComponent(soap, tag, NULL, "prodml23:PlusFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent: + return soap_in_PointerToprodml23__PseudoFluidComponent(soap, tag, NULL, "prodml23:PseudoFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent: + return soap_in_PointerToprodml23__PureFluidComponent(soap, tag, NULL, "prodml23:PureFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater: + return soap_in_PointerToprodml23__FormationWater(soap, tag, NULL, "prodml23:FormationWater"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas: + return soap_in_PointerToprodml23__NaturalGas(soap, tag, NULL, "prodml23:NaturalGas"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil: + return soap_in_PointerToprodml23__StockTankOil(soap, tag, NULL, "prodml23:StockTankOil"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility: + return soap_in_PointerToprodml23__ReportingFacility(soap, tag, NULL, "prodml23:ReportingFacility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext: + return soap_in_PointerToprodml23__GeographicContext(soap, tag, NULL, "prodml23:GeographicContext"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit: + return soap_in_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag, NULL, "prodml23:ProductVolumeBusinessUnit"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct: + return soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, tag, NULL, "prodml23:FacilityIdentifierStruct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier: + return soap_in_PointerToprodml23__EndpointQualifier(soap, tag, NULL, "prodml23:EndpointQualifier"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstanceMeasure: return soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, tag, NULL, "eml23:AmountOfSubstanceMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumeValue: return soap_in_PointerToeml23__VolumeValue(soap, tag, NULL, "eml23:VolumeValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind: - return soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, tag, NULL, "prodml22:DetectableLimitRelativeStateKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind: + return soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, tag, NULL, "prodml23:DetectableLimitRelativeStateKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure: return soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, tag, NULL, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerVolumeMeasureExt: return soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, tag, NULL, "eml23:MassPerVolumeMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth: - return soap_in_PointerToprodml22__CalendarMonth(soap, tag, NULL, "prodml22:CalendarMonth"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter: - return soap_in_PointerToprodml22__PvtModelParameter(soap, tag, NULL, "prodml22:PvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth: + return soap_in_PointerToprodml23__CalendarMonth(soap, tag, NULL, "prodml23:CalendarMonth"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter: + return soap_in_PointerToprodml23__PvtModelParameter(soap, tag, NULL, "prodml23:PvtModelParameter"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasure: return soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, tag, NULL, "eml23:ReciprocalPressureMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__APIGravityMeasure: return soap_in_PointerToeml23__APIGravityMeasure(soap, tag, NULL, "eml23:APIGravityMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolarVolumeMeasure: return soap_in_PointerToeml23__MolarVolumeMeasure(soap, tag, NULL, "eml23:MolarVolumeMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat: - return soap_in_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag, NULL, "prodml22:FluidCharacterizationTableFormat"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn: - return soap_in_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag, NULL, "prodml22:FluidCharacterizationTableColumn"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow: - return soap_in_PointerToprodml22__FluidCharacterizationTableRow(soap, tag, NULL, "prodml22:FluidCharacterizationTableRow"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter: - return soap_in_PointerToprodml22__FluidCharacterizationParameter(soap, tag, NULL, "prodml22:FluidCharacterizationParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase: - return soap_in_PointerToprodml22__ThermodynamicPhase(soap, tag, NULL, "prodml22:ThermodynamicPhase"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage: - return soap_in_PointerToprodml22__ReferenceSeparatorStage(soap, tag, NULL, "prodml22:ReferenceSeparatorStage"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet: - return soap_in_PointerToprodml22__FluidCharacterizationParameterSet(soap, tag, NULL, "prodml22:FluidCharacterizationParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable: - return soap_in_PointerToprodml22__FluidCharacterizationTable(soap, tag, NULL, "prodml22:FluidCharacterizationTable"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel: - return soap_in_PointerToprodml22__AbstractPvtModel(soap, tag, NULL, "prodml22:AbstractPvtModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter: - return soap_in_PointerToprodml22__CustomPvtModelParameter(soap, tag, NULL, "prodml22:CustomPvtModelParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty: - return soap_in_PointerToprodml22__FluidComponentProperty(soap, tag, NULL, "prodml22:FluidComponentProperty"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient: - return soap_in_PointerToprodml22__BinaryInteractionCoefficient(soap, tag, NULL, "prodml22:BinaryInteractionCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet: - return soap_in_PointerToprodml22__PvtModelParameterSet(soap, tag, NULL, "prodml22:PvtModelParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension: - return soap_in_PointerToprodml22__CustomPvtModelExtension(soap, tag, NULL, "prodml22:CustomPvtModelExtension"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat: + return soap_in_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag, NULL, "prodml23:FluidCharacterizationTableFormat"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn: + return soap_in_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag, NULL, "prodml23:FluidCharacterizationTableColumn"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow: + return soap_in_PointerToprodml23__FluidCharacterizationTableRow(soap, tag, NULL, "prodml23:FluidCharacterizationTableRow"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter: + return soap_in_PointerToprodml23__FluidCharacterizationParameter(soap, tag, NULL, "prodml23:FluidCharacterizationParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase: + return soap_in_PointerToprodml23__ThermodynamicPhase(soap, tag, NULL, "prodml23:ThermodynamicPhase"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage: + return soap_in_PointerToprodml23__ReferenceSeparatorStage(soap, tag, NULL, "prodml23:ReferenceSeparatorStage"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet: + return soap_in_PointerToprodml23__FluidCharacterizationParameterSet(soap, tag, NULL, "prodml23:FluidCharacterizationParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable: + return soap_in_PointerToprodml23__FluidCharacterizationTable(soap, tag, NULL, "prodml23:FluidCharacterizationTable"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel: + return soap_in_PointerToprodml23__AbstractPvtModel(soap, tag, NULL, "prodml23:AbstractPvtModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter: + return soap_in_PointerToprodml23__CustomPvtModelParameter(soap, tag, NULL, "prodml23:CustomPvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty: + return soap_in_PointerToprodml23__FluidComponentProperty(soap, tag, NULL, "prodml23:FluidComponentProperty"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient: + return soap_in_PointerToprodml23__BinaryInteractionCoefficient(soap, tag, NULL, "prodml23:BinaryInteractionCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet: + return soap_in_PointerToprodml23__PvtModelParameterSet(soap, tag, NULL, "prodml23:PvtModelParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension: + return soap_in_PointerToprodml23__CustomPvtModelExtension(soap, tag, NULL, "prodml23:CustomPvtModelExtension"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__Column: return soap_in_PointerToeml23__Column(soap, tag, NULL, "eml23:Column"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PropertyKindFacet: @@ -6498,9 +6498,9 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { const char *t = soap->type; if (!*t) t = soap->tag; - if (!soap_match_tag(soap, t, "prodml22:CalendarMonth")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth; - return soap_in_prodml22__CalendarMonth(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CalendarMonth")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth; + return soap_in_prodml23__CalendarMonth(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:SectionNumber")) { *type = SOAP_TYPE_gsoap_eml2_3_eml23__SectionNumber; @@ -6550,9 +6550,9 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3_eml23__EnumExtensionPattern; return soap_in_eml23__EnumExtensionPattern(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProdmlRelativeIdentifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier; - return soap_in_prodml22__ProdmlRelativeIdentifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProdmlRelativeIdentifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier; + return soap_in_prodml23__ProdmlRelativeIdentifier(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:AbstractString")) { *type = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractString; @@ -6602,73 +6602,73 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKindExt; return soap_in_resqml22__CulturalFeatureKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt; - return soap_in_prodml22__FluidSampleKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt; + return soap_in_prodml23__FluidSampleKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DataConditioningExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt; - return soap_in_prodml22__DataConditioningExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DataConditioningExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt; + return soap_in_prodml23__DataConditioningExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:VolumeReferenceKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt; - return soap_in_prodml22__VolumeReferenceKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:VolumeReferenceKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt; + return soap_in_prodml23__VolumeReferenceKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrganicAcidKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt; - return soap_in_prodml22__OrganicAcidKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrganicAcidKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt; + return soap_in_prodml23__OrganicAcidKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CationKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt; - return soap_in_prodml22__CationKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CationKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt; + return soap_in_prodml23__CationKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AnionKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt; - return soap_in_prodml22__AnionKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AnionKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt; + return soap_in_prodml23__AnionKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SulfurComponentKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt; - return soap_in_prodml22__SulfurComponentKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SulfurComponentKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt; + return soap_in_prodml23__SulfurComponentKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ServiceFluidKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt; - return soap_in_prodml22__ServiceFluidKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ServiceFluidKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt; + return soap_in_prodml23__ServiceFluidKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingFacilityExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt; - return soap_in_prodml22__ReportingFacilityExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingFacilityExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt; + return soap_in_prodml23__ReportingFacilityExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingDurationKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt; - return soap_in_prodml22__ReportingDurationKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingDurationKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt; + return soap_in_prodml23__ReportingDurationKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PureComponentKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt; - return soap_in_prodml22__PureComponentKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PureComponentKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt; + return soap_in_prodml23__PureComponentKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PseudoComponentKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt; - return soap_in_prodml22__PseudoComponentKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PseudoComponentKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt; + return soap_in_prodml23__PseudoComponentKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFluidKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt; - return soap_in_prodml22__ProductFluidKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFluidKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt; + return soap_in_prodml23__ProductFluidKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PlusComponentKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt; - return soap_in_prodml22__PlusComponentKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PlusComponentKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt; + return soap_in_prodml23__PlusComponentKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilityKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt; - return soap_in_prodml22__FacilityKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilityKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt; + return soap_in_prodml23__FacilityKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PvtModelParameterKindExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt; - return soap_in_prodml22__PvtModelParameterKindExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PvtModelParameterKindExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt; + return soap_in_prodml23__PvtModelParameterKindExt(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OutputFluidPropertyExt")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt; - return soap_in_prodml22__OutputFluidPropertyExt(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OutputFluidPropertyExt")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt; + return soap_in_prodml23__OutputFluidPropertyExt(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:CollectionKindExt")) { *type = SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKindExt; @@ -8418,1617 +8418,1617 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature; return soap_in_resqml22__AbstractFeature(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesThreshold")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold; - return soap_in_prodml22__TimeSeriesThreshold(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesThreshold")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold; + return soap_in_prodml23__TimeSeriesThreshold(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesStatistic")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic; - return soap_in_prodml22__TimeSeriesStatistic(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesStatistic")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic; + return soap_in_prodml23__TimeSeriesStatistic(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:KeywordValueStruct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct; - return soap_in_prodml22__KeywordValueStruct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:KeywordValueStruct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct; + return soap_in_prodml23__KeywordValueStruct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:EndpointQuantity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity; - return soap_in_prodml22__EndpointQuantity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:EndpointQuantity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity; + return soap_in_prodml23__EndpointQuantity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:EndpointDateTime")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime; - return soap_in_prodml22__EndpointDateTime(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:EndpointDateTime")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime; + return soap_in_prodml23__EndpointDateTime(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesStringSample")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample; - return soap_in_prodml22__TimeSeriesStringSample(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesStringSample")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample; + return soap_in_prodml23__TimeSeriesStringSample(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesDoubleSample")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample; - return soap_in_prodml22__TimeSeriesDoubleSample(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesDoubleSample")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample; + return soap_in_prodml23__TimeSeriesDoubleSample(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData; - return soap_in_prodml22__TimeSeriesData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData; + return soap_in_prodml23__TimeSeriesData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:StringValue")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue; - return soap_in_prodml22__StringValue(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:StringValue")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue; + return soap_in_prodml23__StringValue(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DoubleValue")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue; - return soap_in_prodml22__DoubleValue(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DoubleValue")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue; + return soap_in_prodml23__DoubleValue(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractValue")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue; - return soap_in_prodml22__AbstractValue(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractValue")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue; + return soap_in_prodml23__AbstractValue(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RelativeCoordinate")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate; - return soap_in_prodml22__RelativeCoordinate(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RelativeCoordinate")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate; + return soap_in_prodml23__RelativeCoordinate(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Qualifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier; - return soap_in_prodml22__Qualifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Qualifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier; + return soap_in_prodml23__Qualifier(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowUnit")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit; - return soap_in_prodml22__ProductFlowUnit(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowUnit")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit; + return soap_in_prodml23__ProductFlowUnit(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowQualifierExpected")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected; - return soap_in_prodml22__ProductFlowQualifierExpected(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowQualifierExpected")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected; + return soap_in_prodml23__ProductFlowQualifierExpected(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowPort")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort; - return soap_in_prodml22__ProductFlowPort(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowPort")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort; + return soap_in_prodml23__ProductFlowPort(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowNetworkPlan")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan; - return soap_in_prodml22__ProductFlowNetworkPlan(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowNetworkPlan")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan; + return soap_in_prodml23__ProductFlowNetworkPlan(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel; - return soap_in_prodml22__ProductFlowModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel; + return soap_in_prodml23__ProductFlowModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowExternalPort")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort; - return soap_in_prodml22__ProductFlowExternalPort(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowExternalPort")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort; + return soap_in_prodml23__ProductFlowExternalPort(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowExpectedUnitProperty")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty; - return soap_in_prodml22__ProductFlowExpectedUnitProperty(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowExpectedUnitProperty")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty; + return soap_in_prodml23__ProductFlowExpectedUnitProperty(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowChangeLog")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog; - return soap_in_prodml22__ProductFlowChangeLog(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowChangeLog")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog; + return soap_in_prodml23__ProductFlowChangeLog(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ExpectedFlowQualifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier; - return soap_in_prodml22__ExpectedFlowQualifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ExpectedFlowQualifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier; + return soap_in_prodml23__ExpectedFlowQualifier(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ConnectedNode")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode; - return soap_in_prodml22__ConnectedNode(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ConnectedNode")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode; + return soap_in_prodml23__ConnectedNode(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:StringData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__StringData; - return soap_in_prodml22__StringData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:StringData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__StringData; + return soap_in_prodml23__StringData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReferenceFlow")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow; - return soap_in_prodml22__ReferenceFlow(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReferenceFlow")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow; + return soap_in_prodml23__ReferenceFlow(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeRelatedFacility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility; - return soap_in_prodml22__ProductVolumeRelatedFacility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeRelatedFacility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility; + return soap_in_prodml23__ProductVolumeRelatedFacility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeProduct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct; - return soap_in_prodml22__ProductVolumeProduct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeProduct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct; + return soap_in_prodml23__ProductVolumeProduct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumePortDifference")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference; - return soap_in_prodml22__ProductVolumePortDifference(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumePortDifference")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference; + return soap_in_prodml23__ProductVolumePortDifference(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumePeriod")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod; - return soap_in_prodml22__ProductVolumePeriod(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumePeriod")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod; + return soap_in_prodml23__ProductVolumePeriod(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeParameterValue")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue; - return soap_in_prodml22__ProductVolumeParameterValue(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeParameterValue")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue; + return soap_in_prodml23__ProductVolumeParameterValue(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeParameterSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet; - return soap_in_prodml22__ProductVolumeParameterSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeParameterSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet; + return soap_in_prodml23__ProductVolumeParameterSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeFlow")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow; - return soap_in_prodml22__ProductVolumeFlow(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeFlow")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow; + return soap_in_prodml23__ProductVolumeFlow(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeFacility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility; - return soap_in_prodml22__ProductVolumeFacility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeFacility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility; + return soap_in_prodml23__ProductVolumeFacility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeDestination")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination; - return soap_in_prodml22__ProductVolumeDestination(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeDestination")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination; + return soap_in_prodml23__ProductVolumeDestination(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeComponentContent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent; - return soap_in_prodml22__ProductVolumeComponentContent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeComponentContent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent; + return soap_in_prodml23__ProductVolumeComponentContent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeBusinessUnit")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit; - return soap_in_prodml22__ProductVolumeBusinessUnit(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeBusinessUnit")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit; + return soap_in_prodml23__ProductVolumeBusinessUnit(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeBusinessSubUnit")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit; - return soap_in_prodml22__ProductVolumeBusinessSubUnit(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeBusinessSubUnit")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit; + return soap_in_prodml23__ProductVolumeBusinessSubUnit(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeBalanceSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet; - return soap_in_prodml22__ProductVolumeBalanceSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeBalanceSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet; + return soap_in_prodml23__ProductVolumeBalanceSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeBalanceEvent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent; - return soap_in_prodml22__ProductVolumeBalanceEvent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeBalanceEvent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent; + return soap_in_prodml23__ProductVolumeBalanceEvent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeBalanceDetail")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail; - return soap_in_prodml22__ProductVolumeBalanceDetail(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeBalanceDetail")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail; + return soap_in_prodml23__ProductVolumeBalanceDetail(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolumeAlert")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert; - return soap_in_prodml22__ProductVolumeAlert(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolumeAlert")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert; + return soap_in_prodml23__ProductVolumeAlert(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume; - return soap_in_prodml22__ProductVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume; + return soap_in_prodml23__ProductVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Parentfacility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility; - return soap_in_prodml22__Parentfacility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Parentfacility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility; + return soap_in_prodml23__Parentfacility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OwnershipBusinessAcct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct; - return soap_in_prodml22__OwnershipBusinessAcct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OwnershipBusinessAcct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct; + return soap_in_prodml23__OwnershipBusinessAcct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:IntegerData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData; - return soap_in_prodml22__IntegerData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:IntegerData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData; + return soap_in_prodml23__IntegerData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilityUnitPort")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort; - return soap_in_prodml22__FacilityUnitPort(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilityUnitPort")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort; + return soap_in_prodml23__FacilityUnitPort(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilityParent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent; - return soap_in_prodml22__FacilityParent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilityParent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent; + return soap_in_prodml23__FacilityParent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CurveDefinition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition; - return soap_in_prodml22__CurveDefinition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CurveDefinition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition; + return soap_in_prodml23__CurveDefinition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CurveData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData; - return soap_in_prodml22__CurveData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CurveData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData; + return soap_in_prodml23__CurveData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractRelatedFacilityObject")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject; - return soap_in_prodml22__AbstractRelatedFacilityObject(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractRelatedFacilityObject")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject; + return soap_in_prodml23__AbstractRelatedFacilityObject(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractRefProductFlow")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow; - return soap_in_prodml22__AbstractRefProductFlow(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractRefProductFlow")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow; + return soap_in_prodml23__AbstractRefProductFlow(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractMeasureData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; - return soap_in_prodml22__AbstractMeasureData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractMeasureData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; + return soap_in_prodml23__AbstractMeasureData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CommonPropertiesProductVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume; - return soap_in_prodml22__CommonPropertiesProductVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CommonPropertiesProductVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume; + return soap_in_prodml23__CommonPropertiesProductVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowTestJob")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob; - return soap_in_prodml22__FlowTestJob(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowTestJob")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob; + return soap_in_prodml23__FlowTestJob(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellheadSampleAcquisition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition; - return soap_in_prodml22__WellheadSampleAcquisition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellheadSampleAcquisition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition; + return soap_in_prodml23__WellheadSampleAcquisition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SeparatorSampleAcquisition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition; - return soap_in_prodml22__SeparatorSampleAcquisition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SeparatorSampleAcquisition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition; + return soap_in_prodml23__SeparatorSampleAcquisition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FormationTesterSampleAcquisition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition; - return soap_in_prodml22__FormationTesterSampleAcquisition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FormationTesterSampleAcquisition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition; + return soap_in_prodml23__FormationTesterSampleAcquisition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleAcquisitionJob")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob; - return soap_in_prodml22__FluidSampleAcquisitionJob(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleAcquisitionJob")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob; + return soap_in_prodml23__FluidSampleAcquisitionJob(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleAcquisition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; - return soap_in_prodml22__FluidSampleAcquisition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleAcquisition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; + return soap_in_prodml23__FluidSampleAcquisition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilitySampleAcquisition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition; - return soap_in_prodml22__FacilitySampleAcquisition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilitySampleAcquisition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition; + return soap_in_prodml23__FacilitySampleAcquisition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DownholeSampleAcquisition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition; - return soap_in_prodml22__DownholeSampleAcquisition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DownholeSampleAcquisition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition; + return soap_in_prodml23__DownholeSampleAcquisition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleContainer")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer; - return soap_in_prodml22__FluidSampleContainer(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleContainer")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer; + return soap_in_prodml23__FluidSampleContainer(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SampleRecombinationSpecification")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification; - return soap_in_prodml22__SampleRecombinationSpecification(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SampleRecombinationSpecification")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification; + return soap_in_prodml23__SampleRecombinationSpecification(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RecombinedSampleFraction")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction; - return soap_in_prodml22__RecombinedSampleFraction(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RecombinedSampleFraction")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction; + return soap_in_prodml23__RecombinedSampleFraction(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleChainOfCustodyEvent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent; - return soap_in_prodml22__FluidSampleChainOfCustodyEvent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleChainOfCustodyEvent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent; + return soap_in_prodml23__FluidSampleChainOfCustodyEvent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleAcquisitionJobSource")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource; - return soap_in_prodml22__FluidSampleAcquisitionJobSource(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleAcquisitionJobSource")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource; + return soap_in_prodml23__FluidSampleAcquisitionJobSource(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSample")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample; - return soap_in_prodml22__FluidSample(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSample")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample; + return soap_in_prodml23__FluidSample(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume; - return soap_in_prodml22__WellboreVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume; + return soap_in_prodml23__WellboreVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreStorageCoefficient")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient; - return soap_in_prodml22__WellboreStorageCoefficient(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreStorageCoefficient")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient; + return soap_in_prodml23__WellboreStorageCoefficient(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreRadius")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius; - return soap_in_prodml22__WellboreRadius(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreRadius")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius; + return soap_in_prodml23__WellboreRadius(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreFluidCompressibility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility; - return soap_in_prodml22__WellboreFluidCompressibility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreFluidCompressibility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility; + return soap_in_prodml23__WellboreFluidCompressibility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreDeviationAngle")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle; - return soap_in_prodml22__WellboreDeviationAngle(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreDeviationAngle")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle; + return soap_in_prodml23__WellboreDeviationAngle(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:VerticalAnisotropyKvToKr")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr; - return soap_in_prodml22__VerticalAnisotropyKvToKr(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:VerticalAnisotropyKvToKr")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr; + return soap_in_prodml23__VerticalAnisotropyKvToKr(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TubingInteralDiameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter; - return soap_in_prodml22__TubingInteralDiameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TubingInteralDiameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter; + return soap_in_prodml23__TubingInteralDiameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TransmissibilityReductionFactorOfLinearFront")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront; - return soap_in_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TransmissibilityReductionFactorOfLinearFront")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront; + return soap_in_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TotalThickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness; - return soap_in_prodml22__TotalThickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TotalThickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness; + return soap_in_prodml23__TotalThickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:StorativityRatio")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio; - return soap_in_prodml22__StorativityRatio(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:StorativityRatio")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio; + return soap_in_prodml23__StorativityRatio(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SkinRelativeToTotalThickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness; - return soap_in_prodml22__SkinRelativeToTotalThickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SkinRelativeToTotalThickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness; + return soap_in_prodml23__SkinRelativeToTotalThickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SkinLayer2RelativeToTotalThickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness; - return soap_in_prodml22__SkinLayer2RelativeToTotalThickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SkinLayer2RelativeToTotalThickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness; + return soap_in_prodml23__SkinLayer2RelativeToTotalThickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Region2Thickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness; - return soap_in_prodml22__Region2Thickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Region2Thickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness; + return soap_in_prodml23__Region2Thickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct; - return soap_in_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct; + return soap_in_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RatioInitialToFinalWellboreStorage")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage; - return soap_in_prodml22__RatioInitialToFinalWellboreStorage(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RatioInitialToFinalWellboreStorage")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage; + return soap_in_prodml23__RatioInitialToFinalWellboreStorage(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RatioDpSkinToTotalDrawdown")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown; - return soap_in_prodml22__RatioDpSkinToTotalDrawdown(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RatioDpSkinToTotalDrawdown")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown; + return soap_in_prodml23__RatioDpSkinToTotalDrawdown(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RateDependentSkinFactor")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor; - return soap_in_prodml22__RateDependentSkinFactor(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RateDependentSkinFactor")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor; + return soap_in_prodml23__RateDependentSkinFactor(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RadiusOfInvestigation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation; - return soap_in_prodml22__RadiusOfInvestigation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RadiusOfInvestigation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation; + return soap_in_prodml23__RadiusOfInvestigation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PressureDatumTVD")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD; - return soap_in_prodml22__PressureDatumTVD(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PressureDatumTVD")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD; + return soap_in_prodml23__PressureDatumTVD(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Porosity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity; - return soap_in_prodml22__Porosity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Porosity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity; + return soap_in_prodml23__Porosity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PoreVolumeOfInvestigation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation; - return soap_in_prodml22__PoreVolumeOfInvestigation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PoreVolumeOfInvestigation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation; + return soap_in_prodml23__PoreVolumeOfInvestigation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PoreVolumeMeasured")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured; - return soap_in_prodml22__PoreVolumeMeasured(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PoreVolumeMeasured")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured; + return soap_in_prodml23__PoreVolumeMeasured(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PermeabilityThicknessProduct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct; - return soap_in_prodml22__PermeabilityThicknessProduct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PermeabilityThicknessProduct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct; + return soap_in_prodml23__PermeabilityThicknessProduct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PerforatedLength")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength; - return soap_in_prodml22__PerforatedLength(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PerforatedLength")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength; + return soap_in_prodml23__PerforatedLength(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrientationWellTrajectory")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory; - return soap_in_prodml22__OrientationWellTrajectory(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrientationWellTrajectory")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory; + return soap_in_prodml23__OrientationWellTrajectory(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrientationOfNormalToBoundary1")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1; - return soap_in_prodml22__OrientationOfNormalToBoundary1(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrientationOfNormalToBoundary1")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1; + return soap_in_prodml23__OrientationOfNormalToBoundary1(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrientationOfLinearFront")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront; - return soap_in_prodml22__OrientationOfLinearFront(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrientationOfLinearFront")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront; + return soap_in_prodml23__OrientationOfLinearFront(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrientationOfFracturePlane")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane; - return soap_in_prodml22__OrientationOfFracturePlane(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrientationOfFracturePlane")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane; + return soap_in_prodml23__OrientationOfFracturePlane(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrientationOfAnisotropyXDirection")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection; - return soap_in_prodml22__OrientationOfAnisotropyXDirection(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrientationOfAnisotropyXDirection")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection; + return soap_in_prodml23__OrientationOfAnisotropyXDirection(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NumberOfFractures")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures; - return soap_in_prodml22__NumberOfFractures(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NumberOfFractures")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures; + return soap_in_prodml23__NumberOfFractures(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ModelName")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName; - return soap_in_prodml22__ModelName(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ModelName")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName; + return soap_in_prodml23__ModelName(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MechanicalSkinRelativeToTotalThickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness; - return soap_in_prodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MechanicalSkinRelativeToTotalThickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness; + return soap_in_prodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LengthHorizontalWellboreFlowing")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing; - return soap_in_prodml22__LengthHorizontalWellboreFlowing(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LengthHorizontalWellboreFlowing")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing; + return soap_in_prodml23__LengthHorizontalWellboreFlowing(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LeakSkin")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin; - return soap_in_prodml22__LeakSkin(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LeakSkin")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin; + return soap_in_prodml23__LeakSkin(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Layer2Thickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness; - return soap_in_prodml22__Layer2Thickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Layer2Thickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness; + return soap_in_prodml23__Layer2Thickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InterporosityFlowParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter; - return soap_in_prodml22__InterporosityFlowParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InterporosityFlowParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter; + return soap_in_prodml23__InterporosityFlowParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InnerToOuterZoneMobilityRatio")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio; - return soap_in_prodml22__InnerToOuterZoneMobilityRatio(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InnerToOuterZoneMobilityRatio")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio; + return soap_in_prodml23__InnerToOuterZoneMobilityRatio(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InnerToOuterZoneDiffusivityRatio")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio; - return soap_in_prodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InnerToOuterZoneDiffusivityRatio")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio; + return soap_in_prodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InitialPressure")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure; - return soap_in_prodml22__InitialPressure(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InitialPressure")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure; + return soap_in_prodml23__InitialPressure(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HorizontalRadialPermeability")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability; - return soap_in_prodml22__HorizontalRadialPermeability(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HorizontalRadialPermeability")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability; + return soap_in_prodml23__HorizontalRadialPermeability(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HorizontalAnisotropyKxToKy")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy; - return soap_in_prodml22__HorizontalAnisotropyKxToKy(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HorizontalAnisotropyKxToKy")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy; + return soap_in_prodml23__HorizontalAnisotropyKxToKy(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureStorativityRatio")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio; - return soap_in_prodml22__FractureStorativityRatio(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureStorativityRatio")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio; + return soap_in_prodml23__FractureStorativityRatio(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureRadius")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius; - return soap_in_prodml22__FractureRadius(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureRadius")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius; + return soap_in_prodml23__FractureRadius(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureHeight")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight; - return soap_in_prodml22__FractureHeight(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureHeight")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight; + return soap_in_prodml23__FractureHeight(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureHalfLength")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength; - return soap_in_prodml22__FractureHalfLength(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureHalfLength")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength; + return soap_in_prodml23__FractureHalfLength(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureFaceSkin")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin; - return soap_in_prodml22__FractureFaceSkin(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureFaceSkin")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin; + return soap_in_prodml23__FractureFaceSkin(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureConductivity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity; - return soap_in_prodml22__FractureConductivity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureConductivity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity; + return soap_in_prodml23__FractureConductivity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureAngleToWellbore")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore; - return soap_in_prodml22__FractureAngleToWellbore(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureAngleToWellbore")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore; + return soap_in_prodml23__FractureAngleToWellbore(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidDensity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity; - return soap_in_prodml22__FluidDensity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidDensity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity; + return soap_in_prodml23__FluidDensity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FaultConductivity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity; - return soap_in_prodml22__FaultConductivity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FaultConductivity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity; + return soap_in_prodml23__FaultConductivity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DrainageAreaMeasured")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured; - return soap_in_prodml22__DrainageAreaMeasured(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DrainageAreaMeasured")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured; + return soap_in_prodml23__DrainageAreaMeasured(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceWellboreToBottomBoundary")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary; - return soap_in_prodml22__DistanceWellboreToBottomBoundary(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceWellboreToBottomBoundary")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary; + return soap_in_prodml23__DistanceWellboreToBottomBoundary(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceToPinchOut")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut; - return soap_in_prodml22__DistanceToPinchOut(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceToPinchOut")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut; + return soap_in_prodml23__DistanceToPinchOut(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceToMobilityInterface")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface; - return soap_in_prodml22__DistanceToMobilityInterface(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceToMobilityInterface")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface; + return soap_in_prodml23__DistanceToMobilityInterface(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceToBoundary4")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4; - return soap_in_prodml22__DistanceToBoundary4(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceToBoundary4")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4; + return soap_in_prodml23__DistanceToBoundary4(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceToBoundary3")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3; - return soap_in_prodml22__DistanceToBoundary3(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceToBoundary3")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3; + return soap_in_prodml23__DistanceToBoundary3(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceToBoundary2")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2; - return soap_in_prodml22__DistanceToBoundary2(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceToBoundary2")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2; + return soap_in_prodml23__DistanceToBoundary2(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceToBoundary1")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1; - return soap_in_prodml22__DistanceToBoundary1(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceToBoundary1")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1; + return soap_in_prodml23__DistanceToBoundary1(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceMidPerforationsToBottomBoundary")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary; - return soap_in_prodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceMidPerforationsToBottomBoundary")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary; + return soap_in_prodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceMidFractureHeightToBottomBoundary")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary; - return soap_in_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceMidFractureHeightToBottomBoundary")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary; + return soap_in_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistanceFractureToBottomBoundary")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary; - return soap_in_prodml22__DistanceFractureToBottomBoundary(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistanceFractureToBottomBoundary")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary; + return soap_in_prodml23__DistanceFractureToBottomBoundary(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeltaTimeStorageChanges")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges; - return soap_in_prodml22__DeltaTimeStorageChanges(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeltaTimeStorageChanges")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges; + return soap_in_prodml23__DeltaTimeStorageChanges(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeltaPressureTotalSkin")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin; - return soap_in_prodml22__DeltaPressureTotalSkin(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeltaPressureTotalSkin")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin; + return soap_in_prodml23__DeltaPressureTotalSkin(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter; - return soap_in_prodml22__CustomParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter; + return soap_in_prodml23__CustomParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ConvergenceSkinRelativeToTotalThickness")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness; - return soap_in_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ConvergenceSkinRelativeToTotalThickness")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness; + return soap_in_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AveragePressure")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure; - return soap_in_prodml22__AveragePressure(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AveragePressure")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure; + return soap_in_prodml23__AveragePressure(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AngleBetweenBoundaries")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries; - return soap_in_prodml22__AngleBetweenBoundaries(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AngleBetweenBoundaries")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries; + return soap_in_prodml23__AngleBetweenBoundaries(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; - return soap_in_prodml22__AbstractParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; + return soap_in_prodml23__AbstractParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreBaseModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; - return soap_in_prodml22__WellboreBaseModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreBaseModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; + return soap_in_prodml23__WellboreBaseModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:UShapedFaultsModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel; - return soap_in_prodml22__UShapedFaultsModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:UShapedFaultsModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel; + return soap_in_prodml23__UShapedFaultsModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TwoParallelFaultsModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel; - return soap_in_prodml22__TwoParallelFaultsModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TwoParallelFaultsModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel; + return soap_in_prodml23__TwoParallelFaultsModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TwoIntersectingFaultsModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel; - return soap_in_prodml22__TwoIntersectingFaultsModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TwoIntersectingFaultsModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel; + return soap_in_prodml23__TwoIntersectingFaultsModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SlantedPartiallyPenetratingModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel; - return soap_in_prodml22__SlantedPartiallyPenetratingModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SlantedPartiallyPenetratingModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel; + return soap_in_prodml23__SlantedPartiallyPenetratingModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SlantedFullyPenetratingModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel; - return soap_in_prodml22__SlantedFullyPenetratingModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SlantedFullyPenetratingModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel; + return soap_in_prodml23__SlantedFullyPenetratingModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SingleFaultModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel; - return soap_in_prodml22__SingleFaultModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SingleFaultModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel; + return soap_in_prodml23__SingleFaultModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReservoirBaseModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; - return soap_in_prodml22__ReservoirBaseModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReservoirBaseModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; + return soap_in_prodml23__ReservoirBaseModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RadialCompositeModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel; - return soap_in_prodml22__RadialCompositeModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RadialCompositeModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel; + return soap_in_prodml23__RadialCompositeModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PinchOutModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel; - return soap_in_prodml22__PinchOutModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PinchOutModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel; + return soap_in_prodml23__PinchOutModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PartiallyPenetratingModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel; - return soap_in_prodml22__PartiallyPenetratingModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PartiallyPenetratingModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel; + return soap_in_prodml23__PartiallyPenetratingModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NumericalHomogeneousReservoirModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel; - return soap_in_prodml22__NumericalHomogeneousReservoirModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NumericalHomogeneousReservoirModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel; + return soap_in_prodml23__NumericalHomogeneousReservoirModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NumericalDualPorosityReservoirModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel; - return soap_in_prodml22__NumericalDualPorosityReservoirModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NumericalDualPorosityReservoirModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel; + return soap_in_prodml23__NumericalDualPorosityReservoirModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NumericalBoundaryModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel; - return soap_in_prodml22__NumericalBoundaryModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NumericalBoundaryModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel; + return soap_in_prodml23__NumericalBoundaryModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NearWellboreBaseModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; - return soap_in_prodml22__NearWellboreBaseModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NearWellboreBaseModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; + return soap_in_prodml23__NearWellboreBaseModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LinearCompositeWithLeakyFaultModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel; - return soap_in_prodml22__LinearCompositeWithLeakyFaultModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LinearCompositeWithLeakyFaultModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel; + return soap_in_prodml23__LinearCompositeWithLeakyFaultModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LinearCompositeWithConductiveFaultModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel; - return soap_in_prodml22__LinearCompositeWithConductiveFaultModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LinearCompositeWithConductiveFaultModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel; + return soap_in_prodml23__LinearCompositeWithConductiveFaultModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel; - return soap_in_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel; + return soap_in_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LinearCompositeModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel; - return soap_in_prodml22__LinearCompositeModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LinearCompositeModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel; + return soap_in_prodml23__LinearCompositeModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InfiniteBoundaryModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel; - return soap_in_prodml22__InfiniteBoundaryModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InfiniteBoundaryModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel; + return soap_in_prodml23__InfiniteBoundaryModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HorizontalWellboreMultipleVariableFracturedModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel; - return soap_in_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HorizontalWellboreMultipleVariableFracturedModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel; + return soap_in_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HorizontalWellboreMultipleEqualFracturedModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel; - return soap_in_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HorizontalWellboreMultipleEqualFracturedModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel; + return soap_in_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HorizontalWellboreModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel; - return soap_in_prodml22__HorizontalWellboreModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HorizontalWellboreModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel; + return soap_in_prodml23__HorizontalWellboreModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HorizontalWellbore2LayerModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel; - return soap_in_prodml22__HorizontalWellbore2LayerModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HorizontalWellbore2LayerModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel; + return soap_in_prodml23__HorizontalWellbore2LayerModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HomogeneousModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel; - return soap_in_prodml22__HomogeneousModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HomogeneousModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel; + return soap_in_prodml23__HomogeneousModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FracturedUniformFluxModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel; - return soap_in_prodml22__FracturedUniformFluxModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FracturedUniformFluxModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel; + return soap_in_prodml23__FracturedUniformFluxModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FracturedInfiniteConductivityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel; - return soap_in_prodml22__FracturedInfiniteConductivityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FracturedInfiniteConductivityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel; + return soap_in_prodml23__FracturedInfiniteConductivityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FracturedHorizontalUniformFluxModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel; - return soap_in_prodml22__FracturedHorizontalUniformFluxModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FracturedHorizontalUniformFluxModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel; + return soap_in_prodml23__FracturedHorizontalUniformFluxModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FracturedHorizontalInfiniteConductivityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel; - return soap_in_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FracturedHorizontalInfiniteConductivityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel; + return soap_in_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FracturedHorizontalFiniteConductivityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel; - return soap_in_prodml22__FracturedHorizontalFiniteConductivityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FracturedHorizontalFiniteConductivityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel; + return soap_in_prodml23__FracturedHorizontalFiniteConductivityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FracturedFiniteConductivityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel; - return soap_in_prodml22__FracturedFiniteConductivityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FracturedFiniteConductivityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel; + return soap_in_prodml23__FracturedFiniteConductivityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FiniteRadiusModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel; - return soap_in_prodml22__FiniteRadiusModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FiniteRadiusModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel; + return soap_in_prodml23__FiniteRadiusModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DualPorosityTransientSpheresModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel; - return soap_in_prodml22__DualPorosityTransientSpheresModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DualPorosityTransientSpheresModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel; + return soap_in_prodml23__DualPorosityTransientSpheresModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DualPorosityTransientSlabsModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel; - return soap_in_prodml22__DualPorosityTransientSlabsModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DualPorosityTransientSlabsModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel; + return soap_in_prodml23__DualPorosityTransientSlabsModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DualPorosityPseudoSteadyStateModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel; - return soap_in_prodml22__DualPorosityPseudoSteadyStateModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DualPorosityPseudoSteadyStateModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel; + return soap_in_prodml23__DualPorosityPseudoSteadyStateModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DualPermeabilityWithCrossflowModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel; - return soap_in_prodml22__DualPermeabilityWithCrossflowModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DualPermeabilityWithCrossflowModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel; + return soap_in_prodml23__DualPermeabilityWithCrossflowModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomWellboreModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel; - return soap_in_prodml22__CustomWellboreModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomWellboreModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel; + return soap_in_prodml23__CustomWellboreModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomReservoirModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel; - return soap_in_prodml22__CustomReservoirModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomReservoirModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel; + return soap_in_prodml23__CustomReservoirModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomNearWellboreModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel; - return soap_in_prodml22__CustomNearWellboreModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomNearWellboreModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel; + return soap_in_prodml23__CustomNearWellboreModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomBoundaryModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel; - return soap_in_prodml22__CustomBoundaryModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomBoundaryModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel; + return soap_in_prodml23__CustomBoundaryModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ConstantStorageModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel; - return soap_in_prodml22__ConstantStorageModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ConstantStorageModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel; + return soap_in_prodml23__ConstantStorageModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ClosedRectangleModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel; - return soap_in_prodml22__ClosedRectangleModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ClosedRectangleModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel; + return soap_in_prodml23__ClosedRectangleModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ClosedCircleModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel; - return soap_in_prodml22__ClosedCircleModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ClosedCircleModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel; + return soap_in_prodml23__ClosedCircleModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChangingStorageSpiveyPackerModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel; - return soap_in_prodml22__ChangingStorageSpiveyPackerModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChangingStorageSpiveyPackerModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel; + return soap_in_prodml23__ChangingStorageSpiveyPackerModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChangingStorageSpiveyFissuresModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel; - return soap_in_prodml22__ChangingStorageSpiveyFissuresModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChangingStorageSpiveyFissuresModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel; + return soap_in_prodml23__ChangingStorageSpiveyFissuresModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChangingStorageHegemanModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel; - return soap_in_prodml22__ChangingStorageHegemanModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChangingStorageHegemanModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel; + return soap_in_prodml23__ChangingStorageHegemanModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChangingStorageFairModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel; - return soap_in_prodml22__ChangingStorageFairModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChangingStorageFairModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel; + return soap_in_prodml23__ChangingStorageFairModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BoundaryBaseModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; - return soap_in_prodml22__BoundaryBaseModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BoundaryBaseModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; + return soap_in_prodml23__BoundaryBaseModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractModelSection")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection; - return soap_in_prodml22__AbstractModelSection(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractModelSection")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection; + return soap_in_prodml23__AbstractModelSection(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TestPeriodsFlowrateData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData; - return soap_in_prodml22__TestPeriodsFlowrateData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TestPeriodsFlowrateData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData; + return soap_in_prodml23__TestPeriodsFlowrateData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SpecializedAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis; - return soap_in_prodml22__SpecializedAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SpecializedAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis; + return soap_in_prodml23__SpecializedAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SingleFractureSubModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel; - return soap_in_prodml22__SingleFractureSubModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SingleFractureSubModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel; + return soap_in_prodml23__SingleFractureSubModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SingleFlowrateData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData; - return soap_in_prodml22__SingleFlowrateData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SingleFlowrateData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData; + return soap_in_prodml23__SingleFlowrateData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SingleBoundarySubModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel; - return soap_in_prodml22__SingleBoundarySubModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SingleBoundarySubModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel; + return soap_in_prodml23__SingleBoundarySubModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RtaAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis; - return soap_in_prodml22__RtaAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RtaAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis; + return soap_in_prodml23__RtaAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ResqmlModelRef")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef; - return soap_in_prodml22__ResqmlModelRef(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ResqmlModelRef")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef; + return soap_in_prodml23__ResqmlModelRef(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReservoirZoneSubModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel; - return soap_in_prodml22__ReservoirZoneSubModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReservoirZoneSubModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel; + return soap_in_prodml23__ReservoirZoneSubModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PtaDeconvolution")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution; - return soap_in_prodml22__PtaDeconvolution(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PtaDeconvolution")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution; + return soap_in_prodml23__PtaDeconvolution(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PtaDataPreProcess")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess; - return soap_in_prodml22__PtaDataPreProcess(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PtaDataPreProcess")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess; + return soap_in_prodml23__PtaDataPreProcess(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PtaAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis; - return soap_in_prodml22__PtaAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PtaAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis; + return soap_in_prodml23__PtaAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PressureTransientAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis; - return soap_in_prodml22__PressureTransientAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PressureTransientAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis; + return soap_in_prodml23__PressureTransientAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PreProcessedPressureData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData; - return soap_in_prodml22__PreProcessedPressureData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PreProcessedPressureData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData; + return soap_in_prodml23__PreProcessedPressureData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PreProcessedFlowData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData; - return soap_in_prodml22__PreProcessedFlowData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PreProcessedFlowData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData; + return soap_in_prodml23__PreProcessedFlowData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OutputPressureData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData; - return soap_in_prodml22__OutputPressureData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OutputPressureData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData; + return soap_in_prodml23__OutputPressureData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OutputFlowData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData; - return soap_in_prodml22__OutputFlowData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OutputFlowData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData; + return soap_in_prodml23__OutputFlowData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MeasuredPressureData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData; - return soap_in_prodml22__MeasuredPressureData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MeasuredPressureData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData; + return soap_in_prodml23__MeasuredPressureData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MeasuredFlowData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData; - return soap_in_prodml22__MeasuredFlowData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MeasuredFlowData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData; + return soap_in_prodml23__MeasuredFlowData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LogLogAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis; - return soap_in_prodml22__LogLogAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LogLogAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis; + return soap_in_prodml23__LogLogAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LocationIn2D")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D; - return soap_in_prodml22__LocationIn2D(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LocationIn2D")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D; + return soap_in_prodml23__LocationIn2D(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LayerToLayerConnection")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection; - return soap_in_prodml22__LayerToLayerConnection(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LayerToLayerConnection")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection; + return soap_in_prodml23__LayerToLayerConnection(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LayerModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel; - return soap_in_prodml22__LayerModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LayerModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel; + return soap_in_prodml23__LayerModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InternalFaultSubModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel; - return soap_in_prodml22__InternalFaultSubModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InternalFaultSubModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel; + return soap_in_prodml23__InternalFaultSubModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InterferingFlowTestInterval")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval; - return soap_in_prodml22__InterferingFlowTestInterval(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InterferingFlowTestInterval")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval; + return soap_in_prodml23__InterferingFlowTestInterval(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DistributedParametersSubModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel; - return soap_in_prodml22__DistributedParametersSubModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DistributedParametersSubModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel; + return soap_in_prodml23__DistributedParametersSubModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeconvolvedPressureData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData; - return soap_in_prodml22__DeconvolvedPressureData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeconvolvedPressureData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData; + return soap_in_prodml23__DeconvolvedPressureData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeconvolvedFlowData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData; - return soap_in_prodml22__DeconvolvedFlowData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeconvolvedFlowData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData; + return soap_in_prodml23__DeconvolvedFlowData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeconvolutionSingleOutput")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput; - return soap_in_prodml22__DeconvolutionSingleOutput(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeconvolutionSingleOutput")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput; + return soap_in_prodml23__DeconvolutionSingleOutput(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeconvolutionOutput")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput; - return soap_in_prodml22__DeconvolutionOutput(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeconvolutionOutput")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput; + return soap_in_prodml23__DeconvolutionOutput(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeconvolutionMultipleOutput")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput; - return soap_in_prodml22__DeconvolutionMultipleOutput(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeconvolutionMultipleOutput")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput; + return soap_in_prodml23__DeconvolutionMultipleOutput(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CompressibilityParameters")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters; - return soap_in_prodml22__CompressibilityParameters(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CompressibilityParameters")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters; + return soap_in_prodml23__CompressibilityParameters(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChannelFlowrateData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData; - return soap_in_prodml22__ChannelFlowrateData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChannelFlowrateData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData; + return soap_in_prodml23__ChannelFlowrateData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AnalysisLine")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine; - return soap_in_prodml22__AnalysisLine(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AnalysisLine")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine; + return soap_in_prodml23__AnalysisLine(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractRateHistory")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory; - return soap_in_prodml22__AbstractRateHistory(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractRateHistory")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory; + return soap_in_prodml23__AbstractRateHistory(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractPtaPressureData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData; - return soap_in_prodml22__AbstractPtaPressureData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractPtaPressureData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData; + return soap_in_prodml23__AbstractPtaPressureData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractDeconvolutionOutput")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput; - return soap_in_prodml22__AbstractDeconvolutionOutput(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractDeconvolutionOutput")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput; + return soap_in_prodml23__AbstractDeconvolutionOutput(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis; - return soap_in_prodml22__AbstractAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis; + return soap_in_prodml23__AbstractAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingHierarchyNode")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode; - return soap_in_prodml22__ReportingHierarchyNode(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingHierarchyNode")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode; + return soap_in_prodml23__ReportingHierarchyNode(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingHierarchy")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy; - return soap_in_prodml22__ReportingHierarchy(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingHierarchy")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy; + return soap_in_prodml23__ReportingHierarchy(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingEntity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity; - return soap_in_prodml22__ReportingEntity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingEntity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity; + return soap_in_prodml23__ReportingEntity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Facility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Facility; - return soap_in_prodml22__Facility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Facility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Facility; + return soap_in_prodml23__Facility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellFlowingCondition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition; - return soap_in_prodml22__WellFlowingCondition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellFlowingCondition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition; + return soap_in_prodml23__WellFlowingCondition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WaterLevelTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest; - return soap_in_prodml22__WaterLevelTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WaterLevelTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest; + return soap_in_prodml23__WaterLevelTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:VerticalInterferenceTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest; - return soap_in_prodml22__VerticalInterferenceTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:VerticalInterferenceTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest; + return soap_in_prodml23__VerticalInterferenceTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TestPeriod")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod; - return soap_in_prodml22__TestPeriod(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TestPeriod")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod; + return soap_in_prodml23__TestPeriod(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductRate")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate; - return soap_in_prodml22__ProductRate(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductRate")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate; + return soap_in_prodml23__ProductRate(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductionTransientTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest; - return soap_in_prodml22__ProductionTransientTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductionTransientTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest; + return soap_in_prodml23__ProductionTransientTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductionFlowTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest; - return soap_in_prodml22__ProductionFlowTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductionFlowTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest; + return soap_in_prodml23__ProductionFlowTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OtherData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData; - return soap_in_prodml22__OtherData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OtherData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData; + return soap_in_prodml23__OtherData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InterwellTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest; - return soap_in_prodml22__InterwellTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InterwellTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest; + return soap_in_prodml23__InterwellTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InjectionFlowTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest; - return soap_in_prodml22__InjectionFlowTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InjectionFlowTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest; + return soap_in_prodml23__InjectionFlowTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FormationTesterStation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation; - return soap_in_prodml22__FormationTesterStation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FormationTesterStation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation; + return soap_in_prodml23__FormationTesterStation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowTestMeasurementSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet; - return soap_in_prodml22__FlowTestMeasurementSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowTestMeasurementSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet; + return soap_in_prodml23__FlowTestMeasurementSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowTestLocation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation; - return soap_in_prodml22__FlowTestLocation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowTestLocation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation; + return soap_in_prodml23__FlowTestLocation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowTestActivity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; - return soap_in_prodml22__FlowTestActivity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowTestActivity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; + return soap_in_prodml23__FlowTestActivity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DrillStemTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest; - return soap_in_prodml22__DrillStemTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DrillStemTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest; + return soap_in_prodml23__DrillStemTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChannelSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet; - return soap_in_prodml22__ChannelSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChannelSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet; + return soap_in_prodml23__ChannelSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Channel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Channel; - return soap_in_prodml22__Channel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Channel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Channel; + return soap_in_prodml23__Channel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractPtaFlowData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData; - return soap_in_prodml22__AbstractPtaFlowData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractPtaFlowData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData; + return soap_in_prodml23__AbstractPtaFlowData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractFlowTestData")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData; - return soap_in_prodml22__AbstractFlowTestData(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractFlowTestData")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData; + return soap_in_prodml23__AbstractFlowTestData(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSystem")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem; - return soap_in_prodml22__FluidSystem(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSystem")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem; + return soap_in_prodml23__FluidSystem(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WaterSampleComponent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent; - return soap_in_prodml22__WaterSampleComponent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WaterSampleComponent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent; + return soap_in_prodml23__WaterSampleComponent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WaterAnalysisTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep; - return soap_in_prodml22__WaterAnalysisTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WaterAnalysisTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep; + return soap_in_prodml23__WaterAnalysisTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WaterAnalysisTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest; - return soap_in_prodml22__WaterAnalysisTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WaterAnalysisTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest; + return soap_in_prodml23__WaterAnalysisTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WaterAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis; - return soap_in_prodml22__WaterAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WaterAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis; + return soap_in_prodml23__WaterAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ViscosityAtTemperature")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature; - return soap_in_prodml22__ViscosityAtTemperature(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ViscosityAtTemperature")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature; + return soap_in_prodml23__ViscosityAtTemperature(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:VaporLiquidEquilibriumTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest; - return soap_in_prodml22__VaporLiquidEquilibriumTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:VaporLiquidEquilibriumTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest; + return soap_in_prodml23__VaporLiquidEquilibriumTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SwellingTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep; - return soap_in_prodml22__SwellingTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SwellingTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep; + return soap_in_prodml23__SwellingTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SwellingTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest; - return soap_in_prodml22__SwellingTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SwellingTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest; + return soap_in_prodml23__SwellingTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:STOFlashedLiquid")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid; - return soap_in_prodml22__STOFlashedLiquid(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:STOFlashedLiquid")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid; + return soap_in_prodml23__STOFlashedLiquid(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:STOAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis; - return soap_in_prodml22__STOAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:STOAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis; + return soap_in_prodml23__STOAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SlimTubeTestVolumeStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep; - return soap_in_prodml22__SlimTubeTestVolumeStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SlimTubeTestVolumeStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep; + return soap_in_prodml23__SlimTubeTestVolumeStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SlimTubeTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep; - return soap_in_prodml22__SlimTubeTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SlimTubeTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep; + return soap_in_prodml23__SlimTubeTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SlimTubeTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest; - return soap_in_prodml22__SlimTubeTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SlimTubeTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest; + return soap_in_prodml23__SlimTubeTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SlimTubeSpecification")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification; - return soap_in_prodml22__SlimTubeSpecification(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SlimTubeSpecification")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification; + return soap_in_prodml23__SlimTubeSpecification(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SeparatorConditions")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions; - return soap_in_prodml22__SeparatorConditions(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SeparatorConditions")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions; + return soap_in_prodml23__SeparatorConditions(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SaturationTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest; - return soap_in_prodml22__SaturationTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SaturationTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest; + return soap_in_prodml23__SaturationTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SaturationTemperature")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature; - return soap_in_prodml22__SaturationTemperature(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SaturationTemperature")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature; + return soap_in_prodml23__SaturationTemperature(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SaturationPressure")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure; - return soap_in_prodml22__SaturationPressure(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SaturationPressure")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure; + return soap_in_prodml23__SaturationPressure(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Sara")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Sara; - return soap_in_prodml22__Sara(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Sara")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Sara; + return soap_in_prodml23__Sara(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SampleRestoration")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration; - return soap_in_prodml22__SampleRestoration(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SampleRestoration")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration; + return soap_in_prodml23__SampleRestoration(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SampleIntegrityAndPreparation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation; - return soap_in_prodml22__SampleIntegrityAndPreparation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SampleIntegrityAndPreparation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation; + return soap_in_prodml23__SampleIntegrityAndPreparation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SampleContaminant")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant; - return soap_in_prodml22__SampleContaminant(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SampleContaminant")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant; + return soap_in_prodml23__SampleContaminant(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportLocation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation; - return soap_in_prodml22__ReportLocation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportLocation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation; + return soap_in_prodml23__ReportLocation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RelativeVolumeRatio")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio; - return soap_in_prodml22__RelativeVolumeRatio(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RelativeVolumeRatio")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio; + return soap_in_prodml23__RelativeVolumeRatio(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:RefInjectedGasAdded")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded; - return soap_in_prodml22__RefInjectedGasAdded(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:RefInjectedGasAdded")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded; + return soap_in_prodml23__RefInjectedGasAdded(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProducedOilProperties")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties; - return soap_in_prodml22__ProducedOilProperties(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProducedOilProperties")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties; + return soap_in_prodml23__ProducedOilProperties(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProducedGasProperties")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties; - return soap_in_prodml22__ProducedGasProperties(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProducedGasProperties")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties; + return soap_in_prodml23__ProducedGasProperties(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PhaseViscosity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity; - return soap_in_prodml22__PhaseViscosity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PhaseViscosity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity; + return soap_in_prodml23__PhaseViscosity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PhaseDensity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity; - return soap_in_prodml22__PhaseDensity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PhaseDensity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity; + return soap_in_prodml23__PhaseDensity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OtherMeasurementTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep; - return soap_in_prodml22__OtherMeasurementTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OtherMeasurementTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep; + return soap_in_prodml23__OtherMeasurementTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OtherMeasurementTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest; - return soap_in_prodml22__OtherMeasurementTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OtherMeasurementTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest; + return soap_in_prodml23__OtherMeasurementTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OilVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume; - return soap_in_prodml22__OilVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OilVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume; + return soap_in_prodml23__OilVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OilShrinkageFactor")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor; - return soap_in_prodml22__OilShrinkageFactor(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OilShrinkageFactor")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor; + return soap_in_prodml23__OilShrinkageFactor(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OilCompressibility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility; - return soap_in_prodml22__OilCompressibility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OilCompressibility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility; + return soap_in_prodml23__OilCompressibility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NonHydrocarbonTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest; - return soap_in_prodml22__NonHydrocarbonTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NonHydrocarbonTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest; + return soap_in_prodml23__NonHydrocarbonTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NonHydrocarbonAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis; - return soap_in_prodml22__NonHydrocarbonAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NonHydrocarbonAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis; + return soap_in_prodml23__NonHydrocarbonAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MultipleContactMiscibilityTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest; - return soap_in_prodml22__MultipleContactMiscibilityTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MultipleContactMiscibilityTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest; + return soap_in_prodml23__MultipleContactMiscibilityTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MassOut")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut; - return soap_in_prodml22__MassOut(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MassOut")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut; + return soap_in_prodml23__MassOut(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MassIn")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn; - return soap_in_prodml22__MassIn(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MassIn")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn; + return soap_in_prodml23__MassIn(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MassBalance")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance; - return soap_in_prodml22__MassBalance(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MassBalance")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance; + return soap_in_prodml23__MassBalance(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LiquidVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume; - return soap_in_prodml22__LiquidVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LiquidVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume; + return soap_in_prodml23__LiquidVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LiquidDropoutFraction")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction; - return soap_in_prodml22__LiquidDropoutFraction(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LiquidDropoutFraction")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction; + return soap_in_prodml23__LiquidDropoutFraction(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InterfacialTensionTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep; - return soap_in_prodml22__InterfacialTensionTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InterfacialTensionTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep; + return soap_in_prodml23__InterfacialTensionTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InterfacialTensionTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest; - return soap_in_prodml22__InterfacialTensionTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InterfacialTensionTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest; + return soap_in_prodml23__InterfacialTensionTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:InjectedGas")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas; - return soap_in_prodml22__InjectedGas(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:InjectedGas")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas; + return soap_in_prodml23__InjectedGas(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HydrocarbonAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis; - return soap_in_prodml22__HydrocarbonAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HydrocarbonAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis; + return soap_in_prodml23__HydrocarbonAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidVolumeReference")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference; - return soap_in_prodml22__FluidVolumeReference(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidVolumeReference")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference; + return soap_in_prodml23__FluidVolumeReference(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSeparatorTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep; - return soap_in_prodml22__FluidSeparatorTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSeparatorTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep; + return soap_in_prodml23__FluidSeparatorTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSeparatorTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest; - return soap_in_prodml22__FluidSeparatorTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSeparatorTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest; + return soap_in_prodml23__FluidSeparatorTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidDifferentialLiberationTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep; - return soap_in_prodml22__FluidDifferentialLiberationTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidDifferentialLiberationTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep; + return soap_in_prodml23__FluidDifferentialLiberationTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCvdTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep; - return soap_in_prodml22__FluidCvdTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCvdTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep; + return soap_in_prodml23__FluidCvdTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidAnalysisReport")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport; - return soap_in_prodml22__FluidAnalysisReport(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidAnalysisReport")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport; + return soap_in_prodml23__FluidAnalysisReport(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis; - return soap_in_prodml22__FluidAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis; + return soap_in_prodml23__FluidAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlashedLiquid")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid; - return soap_in_prodml22__FlashedLiquid(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlashedLiquid")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid; + return soap_in_prodml23__FlashedLiquid(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlashedGas")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas; - return soap_in_prodml22__FlashedGas(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlashedGas")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas; + return soap_in_prodml23__FlashedGas(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DifferentialLiberationTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest; - return soap_in_prodml22__DifferentialLiberationTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DifferentialLiberationTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest; + return soap_in_prodml23__DifferentialLiberationTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CumulativeGasProducedVol")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol; - return soap_in_prodml22__CumulativeGasProducedVol(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CumulativeGasProducedVol")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol; + return soap_in_prodml23__CumulativeGasProducedVol(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CumulativeGasProducedRatioStd")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd; - return soap_in_prodml22__CumulativeGasProducedRatioStd(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CumulativeGasProducedRatioStd")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd; + return soap_in_prodml23__CumulativeGasProducedRatioStd(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ConstantVolumeDepletionTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest; - return soap_in_prodml22__ConstantVolumeDepletionTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ConstantVolumeDepletionTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest; + return soap_in_prodml23__ConstantVolumeDepletionTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ConstantCompositionExpansionTestStep")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep; - return soap_in_prodml22__ConstantCompositionExpansionTestStep(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ConstantCompositionExpansionTestStep")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep; + return soap_in_prodml23__ConstantCompositionExpansionTestStep(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ConstantCompositionExpansionTest")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest; - return soap_in_prodml22__ConstantCompositionExpansionTest(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ConstantCompositionExpansionTest")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest; + return soap_in_prodml23__ConstantCompositionExpansionTest(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis; - return soap_in_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis; + return soap_in_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractOilVolShrinkage")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage; - return soap_in_prodml22__AbstractOilVolShrinkage(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractOilVolShrinkage")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage; + return soap_in_prodml23__AbstractOilVolShrinkage(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractLiquidDropoutPercVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume; - return soap_in_prodml22__AbstractLiquidDropoutPercVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractLiquidDropoutPercVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume; + return soap_in_prodml23__AbstractLiquidDropoutPercVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractGasProducedRatioVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume; - return soap_in_prodml22__AbstractGasProducedRatioVolume(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractGasProducedRatioVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume; + return soap_in_prodml23__AbstractGasProducedRatioVolume(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:VaporComposition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition; - return soap_in_prodml22__VaporComposition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:VaporComposition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition; + return soap_in_prodml23__VaporComposition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SulfurFluidComponent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent; - return soap_in_prodml22__SulfurFluidComponent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SulfurFluidComponent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent; + return soap_in_prodml23__SulfurFluidComponent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:StockTankOil")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil; - return soap_in_prodml22__StockTankOil(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:StockTankOil")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil; + return soap_in_prodml23__StockTankOil(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:StartEndTime")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime; - return soap_in_prodml22__StartEndTime(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:StartEndTime")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime; + return soap_in_prodml23__StartEndTime(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:StartEndDate")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate; - return soap_in_prodml22__StartEndDate(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:StartEndDate")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate; + return soap_in_prodml23__StartEndDate(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ServiceFluid")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid; - return soap_in_prodml22__ServiceFluid(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ServiceFluid")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid; + return soap_in_prodml23__ServiceFluid(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PureFluidComponent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent; - return soap_in_prodml22__PureFluidComponent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PureFluidComponent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent; + return soap_in_prodml23__PureFluidComponent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PseudoFluidComponent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent; - return soap_in_prodml22__PseudoFluidComponent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PseudoFluidComponent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent; + return soap_in_prodml23__PseudoFluidComponent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFluid")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid; - return soap_in_prodml22__ProductFluid(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFluid")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid; + return soap_in_prodml23__ProductFluid(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowNetwork")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork; - return soap_in_prodml22__ProductFlowNetwork(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowNetwork")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork; + return soap_in_prodml23__ProductFlowNetwork(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowExternalReference")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference; - return soap_in_prodml22__ProductFlowExternalReference(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowExternalReference")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference; + return soap_in_prodml23__ProductFlowExternalReference(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PlusFluidComponent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent; - return soap_in_prodml22__PlusFluidComponent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PlusFluidComponent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent; + return soap_in_prodml23__PlusFluidComponent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OverallComposition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition; - return soap_in_prodml22__OverallComposition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OverallComposition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition; + return soap_in_prodml23__OverallComposition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OffshoreLocation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation; - return soap_in_prodml22__OffshoreLocation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OffshoreLocation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation; + return soap_in_prodml23__OffshoreLocation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NorthSeaOffshore")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore; - return soap_in_prodml22__NorthSeaOffshore(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NorthSeaOffshore")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore; + return soap_in_prodml23__NorthSeaOffshore(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NaturalGas")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas; - return soap_in_prodml22__NaturalGas(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NaturalGas")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas; + return soap_in_prodml23__NaturalGas(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MeasuredDepthCoord")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord; - return soap_in_prodml22__MeasuredDepthCoord(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MeasuredDepthCoord")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord; + return soap_in_prodml23__MeasuredDepthCoord(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LiquidComposition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition; - return soap_in_prodml22__LiquidComposition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LiquidComposition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition; + return soap_in_prodml23__LiquidComposition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:KindQualifiedString")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString; - return soap_in_prodml22__KindQualifiedString(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:KindQualifiedString")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString; + return soap_in_prodml23__KindQualifiedString(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:IntegerQualifiedCount")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount; - return soap_in_prodml22__IntegerQualifiedCount(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:IntegerQualifiedCount")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount; + return soap_in_prodml23__IntegerQualifiedCount(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:GeographicContext")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext; - return soap_in_prodml22__GeographicContext(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:GeographicContext")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext; + return soap_in_prodml23__GeographicContext(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:GeneralQualifiedMeasure")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure; - return soap_in_prodml22__GeneralQualifiedMeasure(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:GeneralQualifiedMeasure")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure; + return soap_in_prodml23__GeneralQualifiedMeasure(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:GeneralMeasureType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType; - return soap_in_prodml22__GeneralMeasureType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:GeneralMeasureType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType; + return soap_in_prodml23__GeneralMeasureType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FormationWater")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater; - return soap_in_prodml22__FormationWater(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FormationWater")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater; + return soap_in_prodml23__FormationWater(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidComponentFraction")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction; - return soap_in_prodml22__FluidComponentFraction(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidComponentFraction")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction; + return soap_in_prodml23__FluidComponentFraction(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidComponentCatalog")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog; - return soap_in_prodml22__FluidComponentCatalog(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidComponentCatalog")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog; + return soap_in_prodml23__FluidComponentCatalog(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilityIdentifierStruct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct; - return soap_in_prodml22__FacilityIdentifierStruct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilityIdentifierStruct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct; + return soap_in_prodml23__FacilityIdentifierStruct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilityIdentifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier; - return soap_in_prodml22__FacilityIdentifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilityIdentifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier; + return soap_in_prodml23__FacilityIdentifier(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:EndpointQualifiedDateTime")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime; - return soap_in_prodml22__EndpointQualifiedDateTime(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:EndpointQualifiedDateTime")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime; + return soap_in_prodml23__EndpointQualifiedDateTime(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:EndpointQualifiedDate")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate; - return soap_in_prodml22__EndpointQualifiedDate(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:EndpointQualifiedDate")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate; + return soap_in_prodml23__EndpointQualifiedDate(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DatedComment")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment; - return soap_in_prodml22__DatedComment(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DatedComment")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment; + return soap_in_prodml23__DatedComment(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CalibrationParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter; - return soap_in_prodml22__CalibrationParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CalibrationParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter; + return soap_in_prodml23__CalibrationParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractProductQuantity")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity; - return soap_in_prodml22__AbstractProductQuantity(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractProductQuantity")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity; + return soap_in_prodml23__AbstractProductQuantity(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractFluidComponent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; - return soap_in_prodml22__AbstractFluidComponent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractFluidComponent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; + return soap_in_prodml23__AbstractFluidComponent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractDateTimeClass")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass; - return soap_in_prodml22__AbstractDateTimeClass(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractDateTimeClass")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass; + return soap_in_prodml23__AbstractDateTimeClass(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Standing-Undersaturated")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated; - return soap_in_prodml22__Standing_Undersaturated(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Standing-Undersaturated")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated; + return soap_in_prodml23__Standing_Undersaturated(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Standing-Dead")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead; - return soap_in_prodml22__Standing_Dead(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Standing-Dead")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead; + return soap_in_prodml23__Standing_Dead(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Standing-BubblePoint")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint; - return soap_in_prodml22__Standing_BubblePoint(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Standing-BubblePoint")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint; + return soap_in_prodml23__Standing_BubblePoint(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Srk_EOS")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS; - return soap_in_prodml22__Srk_USCOREEOS(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Srk_EOS")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS; + return soap_in_prodml23__Srk_USCOREEOS(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReferenceSeparatorStage")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage; - return soap_in_prodml22__ReferenceSeparatorStage(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReferenceSeparatorStage")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage; + return soap_in_prodml23__ReferenceSeparatorStage(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PvtModelParameterSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet; - return soap_in_prodml22__PvtModelParameterSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PvtModelParameterSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet; + return soap_in_prodml23__PvtModelParameterSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PvtModelParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter; - return soap_in_prodml22__PvtModelParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PvtModelParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter; + return soap_in_prodml23__PvtModelParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PrsvParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter; - return soap_in_prodml22__PrsvParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PrsvParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter; + return soap_in_prodml23__PrsvParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PetroskyFarshad-Undersaturated")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated; - return soap_in_prodml22__PetroskyFarshad_Undersaturated(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PetroskyFarshad-Undersaturated")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated; + return soap_in_prodml23__PetroskyFarshad_Undersaturated(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PetroskyFarshad-Dead")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead; - return soap_in_prodml22__PetroskyFarshad_Dead(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PetroskyFarshad-Dead")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead; + return soap_in_prodml23__PetroskyFarshad_Dead(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PetroskyFarshad-BubblePoint")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint; - return soap_in_prodml22__PetroskyFarshad_BubblePoint(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PetroskyFarshad-BubblePoint")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint; + return soap_in_prodml23__PetroskyFarshad_BubblePoint(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PengRobinson78_EOS")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS; - return soap_in_prodml22__PengRobinson78_USCOREEOS(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PengRobinson78_EOS")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS; + return soap_in_prodml23__PengRobinson78_USCOREEOS(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PengRobinson76_EOS")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS; - return soap_in_prodml22__PengRobinson76_USCOREEOS(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PengRobinson76_EOS")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS; + return soap_in_prodml23__PengRobinson76_USCOREEOS(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Lucas")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas; - return soap_in_prodml22__Lucas(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Lucas")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas; + return soap_in_prodml23__Lucas(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LondonoArcherBlasinggame")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame; - return soap_in_prodml22__LondonoArcherBlasinggame(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LondonoArcherBlasinggame")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame; + return soap_in_prodml23__LondonoArcherBlasinggame(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Lohrenz-Bray-ClarkCorrelation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation; - return soap_in_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Lohrenz-Bray-ClarkCorrelation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation; + return soap_in_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LeeGonzalez")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez; - return soap_in_prodml22__LeeGonzalez(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LeeGonzalez")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez; + return soap_in_prodml23__LeeGonzalez(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FrictionTheory")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory; - return soap_in_prodml22__FrictionTheory(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FrictionTheory")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory; + return soap_in_prodml23__FrictionTheory(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidComponentProperty")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty; - return soap_in_prodml22__FluidComponentProperty(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidComponentProperty")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty; + return soap_in_prodml23__FluidComponentProperty(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationTableFormatSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet; - return soap_in_prodml22__FluidCharacterizationTableFormatSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationTableFormatSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet; + return soap_in_prodml23__FluidCharacterizationTableFormatSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationTableFormat")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat; - return soap_in_prodml22__FluidCharacterizationTableFormat(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationTableFormat")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat; + return soap_in_prodml23__FluidCharacterizationTableFormat(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationTableColumn")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn; - return soap_in_prodml22__FluidCharacterizationTableColumn(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationTableColumn")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn; + return soap_in_prodml23__FluidCharacterizationTableColumn(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationTable")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable; - return soap_in_prodml22__FluidCharacterizationTable(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationTable")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable; + return soap_in_prodml23__FluidCharacterizationTable(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationSource")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource; - return soap_in_prodml22__FluidCharacterizationSource(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationSource")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource; + return soap_in_prodml23__FluidCharacterizationSource(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationParameterSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet; - return soap_in_prodml22__FluidCharacterizationParameterSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationParameterSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet; + return soap_in_prodml23__FluidCharacterizationParameterSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter; - return soap_in_prodml22__FluidCharacterizationParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter; + return soap_in_prodml23__FluidCharacterizationParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel; - return soap_in_prodml22__FluidCharacterizationModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel; + return soap_in_prodml23__FluidCharacterizationModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterization")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization; - return soap_in_prodml22__FluidCharacterization(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterization")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization; + return soap_in_prodml23__FluidCharacterization(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DindorukChristman-Undersaturated")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated; - return soap_in_prodml22__DindorukChristman_Undersaturated(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DindorukChristman-Undersaturated")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated; + return soap_in_prodml23__DindorukChristman_Undersaturated(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DindorukChristman-Dead")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead; - return soap_in_prodml22__DindorukChristman_Dead(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DindorukChristman-Dead")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead; + return soap_in_prodml23__DindorukChristman_Dead(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DindorukChristman-BubblePoint")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint; - return soap_in_prodml22__DindorukChristman_BubblePoint(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DindorukChristman-BubblePoint")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint; + return soap_in_prodml23__DindorukChristman_BubblePoint(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeGhetto-Undersaturated")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated; - return soap_in_prodml22__DeGhetto_Undersaturated(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeGhetto-Undersaturated")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated; + return soap_in_prodml23__DeGhetto_Undersaturated(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeGhetto-Dead")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead; - return soap_in_prodml22__DeGhetto_Dead(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeGhetto-Dead")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead; + return soap_in_prodml23__DeGhetto_Dead(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DeGhetto-BubblePoint")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint; - return soap_in_prodml22__DeGhetto_BubblePoint(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DeGhetto-BubblePoint")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint; + return soap_in_prodml23__DeGhetto_BubblePoint(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomPvtModelParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter; - return soap_in_prodml22__CustomPvtModelParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomPvtModelParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter; + return soap_in_prodml23__CustomPvtModelParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CustomPvtModelExtension")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension; - return soap_in_prodml22__CustomPvtModelExtension(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CustomPvtModelExtension")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension; + return soap_in_prodml23__CustomPvtModelExtension(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CSPedersen87")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87; - return soap_in_prodml22__CSPedersen87(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CSPedersen87")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87; + return soap_in_prodml23__CSPedersen87(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CSPedersen84")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84; - return soap_in_prodml22__CSPedersen84(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CSPedersen84")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84; + return soap_in_prodml23__CSPedersen84(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CorrelationThermalModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel; - return soap_in_prodml22__CorrelationThermalModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CorrelationThermalModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel; + return soap_in_prodml23__CorrelationThermalModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CompositionalThermalModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel; - return soap_in_prodml22__CompositionalThermalModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CompositionalThermalModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel; + return soap_in_prodml23__CompositionalThermalModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ComponentPropertySet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet; - return soap_in_prodml22__ComponentPropertySet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ComponentPropertySet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet; + return soap_in_prodml23__ComponentPropertySet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CarrDempsey")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey; - return soap_in_prodml22__CarrDempsey(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CarrDempsey")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey; + return soap_in_prodml23__CarrDempsey(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BinaryInteractionCoefficientSet")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet; - return soap_in_prodml22__BinaryInteractionCoefficientSet(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BinaryInteractionCoefficientSet")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet; + return soap_in_prodml23__BinaryInteractionCoefficientSet(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BinaryInteractionCoefficient")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient; - return soap_in_prodml22__BinaryInteractionCoefficient(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BinaryInteractionCoefficient")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient; + return soap_in_prodml23__BinaryInteractionCoefficient(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BergmanSutton-BubblePoint")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint; - return soap_in_prodml22__BergmanSutton_BubblePoint(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BergmanSutton-BubblePoint")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint; + return soap_in_prodml23__BergmanSutton_BubblePoint(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BerganSutton-Dead")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead; - return soap_in_prodml22__BerganSutton_Dead(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BerganSutton-Dead")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead; + return soap_in_prodml23__BerganSutton_Dead(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BerganAndSutton-Undersaturated")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated; - return soap_in_prodml22__BerganAndSutton_Undersaturated(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BerganAndSutton-Undersaturated")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated; + return soap_in_prodml23__BerganAndSutton_Undersaturated(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractPvtModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel; - return soap_in_prodml22__AbstractPvtModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractPvtModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel; + return soap_in_prodml23__AbstractPvtModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCorrelationViscosityUndersaturatedModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; - return soap_in_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCorrelationViscosityUndersaturatedModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; + return soap_in_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCorrelationViscosityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel; - return soap_in_prodml22__AbstractCorrelationViscosityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCorrelationViscosityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel; + return soap_in_prodml23__AbstractCorrelationViscosityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCorrelationViscosityBubblePointModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; - return soap_in_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCorrelationViscosityBubblePointModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; + return soap_in_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCorrelationGasViscosityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel; - return soap_in_prodml22__AbstractCorrelationGasViscosityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCorrelationGasViscosityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel; + return soap_in_prodml23__AbstractCorrelationGasViscosityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCompositionalViscosityModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel; - return soap_in_prodml22__AbstractCompositionalViscosityModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCompositionalViscosityModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel; + return soap_in_prodml23__AbstractCompositionalViscosityModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCompositionalEoSModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel; - return soap_in_prodml22__AbstractCompositionalEoSModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCompositionalEoSModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel; + return soap_in_prodml23__AbstractCompositionalEoSModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterizationTableRow")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow; - return soap_in_prodml22__FluidCharacterizationTableRow(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterizationTableRow")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow; + return soap_in_prodml23__FluidCharacterizationTableRow(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCorrelationViscosityDeadModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; - return soap_in_prodml22__AbstractCorrelationViscosityDeadModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCorrelationViscosityDeadModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; + return soap_in_prodml23__AbstractCorrelationViscosityDeadModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCorrelationModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel; - return soap_in_prodml22__AbstractCorrelationModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCorrelationModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel; + return soap_in_prodml23__AbstractCorrelationModel(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AbstractCompositionalModel")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel; - return soap_in_prodml22__AbstractCompositionalModel(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AbstractCompositionalModel")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel; + return soap_in_prodml23__AbstractCompositionalModel(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:GraphicalInformationSet")) { *type = SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet; @@ -13430,9 +13430,9 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3_int; return soap_in_int(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CalendarYear")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear; - return soap_in_prodml22__CalendarYear(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CalendarYear")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear; + return soap_in_prodml23__CalendarYear(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:PositiveLong")) { *type = SOAP_TYPE_gsoap_eml2_3_eml23__PositiveLong; @@ -13458,9 +13458,9 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3_LONG64; return soap_in_LONG64(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:NonNegativeFraction")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction; - return soap_in_prodml22__NonNegativeFraction(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:NonNegativeFraction")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction; + return soap_in_prodml23__NonNegativeFraction(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "xsd:float")) { *type = SOAP_TYPE_gsoap_eml2_3_float; @@ -13642,281 +13642,281 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKind; return soap_in_resqml22__CulturalFeatureKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesKeyword")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword; - return soap_in_prodml22__TimeSeriesKeyword(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesKeyword")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword; + return soap_in_prodml23__TimeSeriesKeyword(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:EndpointQualifierInterval")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval; - return soap_in_prodml22__EndpointQualifierInterval(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:EndpointQualifierInterval")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval; + return soap_in_prodml23__EndpointQualifierInterval(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellOperationMethod")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod; - return soap_in_prodml22__WellOperationMethod(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellOperationMethod")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod; + return soap_in_prodml23__WellOperationMethod(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidComponentBasis")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis; - return soap_in_prodml22__FluidComponentBasis(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidComponentBasis")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis; + return soap_in_prodml23__FluidComponentBasis(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CalculationMethod")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod; - return soap_in_prodml22__CalculationMethod(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CalculationMethod")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod; + return soap_in_prodml23__CalculationMethod(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BalanceFlowPart")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart; - return soap_in_prodml22__BalanceFlowPart(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BalanceFlowPart")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart; + return soap_in_prodml23__BalanceFlowPart(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BalanceEventKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind; - return soap_in_prodml22__BalanceEventKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BalanceEventKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind; + return soap_in_prodml23__BalanceEventKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BalanceDestinationType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType; - return soap_in_prodml22__BalanceDestinationType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BalanceDestinationType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType; + return soap_in_prodml23__BalanceDestinationType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SampleAction")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction; - return soap_in_prodml22__SampleAction(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SampleAction")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction; + return soap_in_prodml23__SampleAction(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind; - return soap_in_prodml22__FluidSampleKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind; + return soap_in_prodml23__FluidSampleKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellboreStorageMechanismType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType; - return soap_in_prodml22__WellboreStorageMechanismType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellboreStorageMechanismType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType; + return soap_in_prodml23__WellboreStorageMechanismType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:UpperBoundaryType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType; - return soap_in_prodml22__UpperBoundaryType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:UpperBoundaryType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType; + return soap_in_prodml23__UpperBoundaryType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ParameterDirection")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection; - return soap_in_prodml22__ParameterDirection(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ParameterDirection")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection; + return soap_in_prodml23__ParameterDirection(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LowerBoundaryType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType; - return soap_in_prodml22__LowerBoundaryType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LowerBoundaryType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType; + return soap_in_prodml23__LowerBoundaryType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FractureModelType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType; - return soap_in_prodml22__FractureModelType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FractureModelType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType; + return soap_in_prodml23__FractureModelType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Boundary4Type")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type; - return soap_in_prodml22__Boundary4Type(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Boundary4Type")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type; + return soap_in_prodml23__Boundary4Type(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Boundary3Type")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type; - return soap_in_prodml22__Boundary3Type(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Boundary3Type")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type; + return soap_in_prodml23__Boundary3Type(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Boundary2Type")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type; - return soap_in_prodml22__Boundary2Type(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Boundary2Type")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type; + return soap_in_prodml23__Boundary2Type(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Boundary1Type")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type; - return soap_in_prodml22__Boundary1Type(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Boundary1Type")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type; + return soap_in_prodml23__Boundary1Type(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeNonLinearTransformKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind; - return soap_in_prodml22__TimeNonLinearTransformKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeNonLinearTransformKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind; + return soap_in_prodml23__TimeNonLinearTransformKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PseudoPressureEffectApplied")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied; - return soap_in_prodml22__PseudoPressureEffectApplied(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PseudoPressureEffectApplied")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied; + return soap_in_prodml23__PseudoPressureEffectApplied(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PressureNonLinearTransformKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind; - return soap_in_prodml22__PressureNonLinearTransformKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PressureNonLinearTransformKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind; + return soap_in_prodml23__PressureNonLinearTransformKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LogLogTimeTransform")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform; - return soap_in_prodml22__LogLogTimeTransform(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LogLogTimeTransform")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform; + return soap_in_prodml23__LogLogTimeTransform(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:LogLogPressureTransform")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform; - return soap_in_prodml22__LogLogPressureTransform(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:LogLogPressureTransform")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform; + return soap_in_prodml23__LogLogPressureTransform(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidPhaseKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind; - return soap_in_prodml22__FluidPhaseKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidPhaseKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind; + return soap_in_prodml23__FluidPhaseKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesPointRepresentation")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation; - return soap_in_prodml22__TimeSeriesPointRepresentation(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesPointRepresentation")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation; + return soap_in_prodml23__TimeSeriesPointRepresentation(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TestPeriodKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind; - return soap_in_prodml22__TestPeriodKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TestPeriodKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind; + return soap_in_prodml23__TestPeriodKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidPhaseMeasuredKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind; - return soap_in_prodml22__FluidPhaseMeasuredKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidPhaseMeasuredKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind; + return soap_in_prodml23__FluidPhaseMeasuredKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DataConditioning")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning; - return soap_in_prodml22__DataConditioning(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DataConditioning")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning; + return soap_in_prodml23__DataConditioning(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReservoirLifeCycleState")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState; - return soap_in_prodml22__ReservoirLifeCycleState(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReservoirLifeCycleState")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState; + return soap_in_prodml23__ReservoirLifeCycleState(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PhasePresent")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent; - return soap_in_prodml22__PhasePresent(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PhasePresent")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent; + return soap_in_prodml23__PhasePresent(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:VolumeReferenceKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind; - return soap_in_prodml22__VolumeReferenceKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:VolumeReferenceKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind; + return soap_in_prodml23__VolumeReferenceKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ThermodynamicPhase")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase; - return soap_in_prodml22__ThermodynamicPhase(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ThermodynamicPhase")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase; + return soap_in_prodml23__ThermodynamicPhase(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SampleQuality")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality; - return soap_in_prodml22__SampleQuality(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SampleQuality")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality; + return soap_in_prodml23__SampleQuality(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OrganicAcidKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind; - return soap_in_prodml22__OrganicAcidKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OrganicAcidKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind; + return soap_in_prodml23__OrganicAcidKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidContaminant")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant; - return soap_in_prodml22__FluidContaminant(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidContaminant")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant; + return soap_in_prodml23__FluidContaminant(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidAnalysisStepCondition")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition; - return soap_in_prodml22__FluidAnalysisStepCondition(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidAnalysisStepCondition")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition; + return soap_in_prodml23__FluidAnalysisStepCondition(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:DetectableLimitRelativeStateKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind; - return soap_in_prodml22__DetectableLimitRelativeStateKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:DetectableLimitRelativeStateKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind; + return soap_in_prodml23__DetectableLimitRelativeStateKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CompressibilityKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind; - return soap_in_prodml22__CompressibilityKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CompressibilityKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind; + return soap_in_prodml23__CompressibilityKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:CationKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind; - return soap_in_prodml22__CationKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:CationKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind; + return soap_in_prodml23__CationKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:AnionKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind; - return soap_in_prodml22__AnionKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:AnionKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind; + return soap_in_prodml23__AnionKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellFluid")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid; - return soap_in_prodml22__WellFluid(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellFluid")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid; + return soap_in_prodml23__WellFluid(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WellDirection")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection; - return soap_in_prodml22__WellDirection(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WellDirection")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection; + return soap_in_prodml23__WellDirection(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ValueStatus")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus; - return soap_in_prodml22__ValueStatus(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ValueStatus")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus; + return soap_in_prodml23__ValueStatus(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SulfurComponentKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind; - return soap_in_prodml22__SulfurComponentKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SulfurComponentKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind; + return soap_in_prodml23__SulfurComponentKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ServiceFluidKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind; - return soap_in_prodml22__ServiceFluidKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ServiceFluidKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind; + return soap_in_prodml23__ServiceFluidKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SaturationPointKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind; - return soap_in_prodml22__SaturationPointKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SaturationPointKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind; + return soap_in_prodml23__SaturationPointKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SafetyType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType; - return soap_in_prodml22__SafetyType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SafetyType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType; + return soap_in_prodml23__SafetyType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReservoirFluidKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind; - return soap_in_prodml22__ReservoirFluidKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReservoirFluidKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind; + return soap_in_prodml23__ReservoirFluidKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingProduct")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct; - return soap_in_prodml22__ReportingProduct(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingProduct")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct; + return soap_in_prodml23__ReportingProduct(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingFlow")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow; - return soap_in_prodml22__ReportingFlow(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingFlow")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow; + return soap_in_prodml23__ReportingFlow(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingFacility")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility; - return soap_in_prodml22__ReportingFacility(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingFacility")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility; + return soap_in_prodml23__ReportingFacility(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingEntityKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind; - return soap_in_prodml22__ReportingEntityKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingEntityKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind; + return soap_in_prodml23__ReportingEntityKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingDurationKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind; - return soap_in_prodml22__ReportingDurationKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingDurationKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind; + return soap_in_prodml23__ReportingDurationKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PureComponentKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind; - return soap_in_prodml22__PureComponentKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PureComponentKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind; + return soap_in_prodml23__PureComponentKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PseudoComponentKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind; - return soap_in_prodml22__PseudoComponentKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PseudoComponentKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind; + return soap_in_prodml23__PseudoComponentKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFluidKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind; - return soap_in_prodml22__ProductFluidKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFluidKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind; + return soap_in_prodml23__ProductFluidKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowPortType")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType; - return soap_in_prodml22__ProductFlowPortType(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowPortType")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType; + return soap_in_prodml23__ProductFlowPortType(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PlusComponentKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind; - return soap_in_prodml22__PlusComponentKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PlusComponentKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind; + return soap_in_prodml23__PlusComponentKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowSubQualifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier; - return soap_in_prodml22__FlowSubQualifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowSubQualifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier; + return soap_in_prodml23__FlowSubQualifier(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowQualifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier; - return soap_in_prodml22__FlowQualifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowQualifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier; + return soap_in_prodml23__FlowQualifier(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FiberMode")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode; - return soap_in_prodml22__FiberMode(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FiberMode")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode; + return soap_in_prodml23__FiberMode(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FacilityParameter")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter; - return soap_in_prodml22__FacilityParameter(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FacilityParameter")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter; + return soap_in_prodml23__FacilityParameter(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:EndpointQualifier")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier; - return soap_in_prodml22__EndpointQualifier(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:EndpointQualifier")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier; + return soap_in_prodml23__EndpointQualifier(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:BusinessUnitKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind; - return soap_in_prodml22__BusinessUnitKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:BusinessUnitKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind; + return soap_in_prodml23__BusinessUnitKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:SaturationKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind; - return soap_in_prodml22__SaturationKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:SaturationKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind; + return soap_in_prodml23__SaturationKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PvtModelParameterKind")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind; - return soap_in_prodml22__PvtModelParameterKind(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PvtModelParameterKind")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind; + return soap_in_prodml23__PvtModelParameterKind(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:OutputFluidProperty")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty; - return soap_in_prodml22__OutputFluidProperty(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:OutputFluidProperty")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty; + return soap_in_prodml23__OutputFluidProperty(soap, tag, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:MixingRule")) - { *type = SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule; - return soap_in_prodml22__MixingRule(soap, tag, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:MixingRule")) + { *type = SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule; + return soap_in_prodml23__MixingRule(soap, tag, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:CollectionKind")) { *type = SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKind; @@ -15623,93 +15623,93 @@ SOAP_FMAC3 void * SOAP_FMAC4 soap_getelement(struct soap *soap, const char *tag, { *type = SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature; return soap_in__resqml22__BoundaryFeature(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesStatistic")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic; - return soap_in__prodml22__TimeSeriesStatistic(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesStatistic")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic; + return soap_in__prodml23__TimeSeriesStatistic(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:TimeSeriesData")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData; - return soap_in__prodml22__TimeSeriesData(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:TimeSeriesData")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData; + return soap_in__prodml23__TimeSeriesData(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductFlowModel")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel; - return soap_in__prodml22__ProductFlowModel(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductFlowModel")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel; + return soap_in__prodml23__ProductFlowModel(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ProductVolume")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume; - return soap_in__prodml22__ProductVolume(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ProductVolume")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume; + return soap_in__prodml23__ProductVolume(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowTestJob")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob; - return soap_in__prodml22__FlowTestJob(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowTestJob")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob; + return soap_in__prodml23__FlowTestJob(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleAcquisitionJob")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob; - return soap_in__prodml22__FluidSampleAcquisitionJob(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleAcquisitionJob")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob; + return soap_in__prodml23__FluidSampleAcquisitionJob(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSampleContainer")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer; - return soap_in__prodml22__FluidSampleContainer(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSampleContainer")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer; + return soap_in__prodml23__FluidSampleContainer(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSample")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample; - return soap_in__prodml22__FluidSample(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSample")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample; + return soap_in__prodml23__FluidSample(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PtaDeconvolution")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution; - return soap_in__prodml22__PtaDeconvolution(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PtaDeconvolution")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution; + return soap_in__prodml23__PtaDeconvolution(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PtaDataPreProcess")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess; - return soap_in__prodml22__PtaDataPreProcess(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PtaDataPreProcess")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess; + return soap_in__prodml23__PtaDataPreProcess(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:PressureTransientAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis; - return soap_in__prodml22__PressureTransientAnalysis(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:PressureTransientAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis; + return soap_in__prodml23__PressureTransientAnalysis(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingHierarchy")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy; - return soap_in__prodml22__ReportingHierarchy(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingHierarchy")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy; + return soap_in__prodml23__ReportingHierarchy(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ReportingEntity")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity; - return soap_in__prodml22__ReportingEntity(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ReportingEntity")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity; + return soap_in__prodml23__ReportingEntity(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Facility")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__Facility; - return soap_in__prodml22__Facility(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Facility")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__Facility; + return soap_in__prodml23__Facility(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FlowTestActivity")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity; - return soap_in__prodml22__FlowTestActivity(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FlowTestActivity")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity; + return soap_in__prodml23__FlowTestActivity(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:ChannelSet")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet; - return soap_in__prodml22__ChannelSet(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:ChannelSet")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet; + return soap_in__prodml23__ChannelSet(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:Channel")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__Channel; - return soap_in__prodml22__Channel(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:Channel")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__Channel; + return soap_in__prodml23__Channel(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidSystem")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem; - return soap_in__prodml22__FluidSystem(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidSystem")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem; + return soap_in__prodml23__FluidSystem(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:WaterAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis; - return soap_in__prodml22__WaterAnalysis(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:WaterAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis; + return soap_in__prodml23__WaterAnalysis(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:HydrocarbonAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis; - return soap_in__prodml22__HydrocarbonAnalysis(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:HydrocarbonAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis; + return soap_in__prodml23__HydrocarbonAnalysis(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidAnalysis")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis; - return soap_in__prodml22__FluidAnalysis(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidAnalysis")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis; + return soap_in__prodml23__FluidAnalysis(soap, NULL, NULL, NULL); } - if (!soap_match_tag(soap, t, "prodml22:FluidCharacterization")) - { *type = SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization; - return soap_in__prodml22__FluidCharacterization(soap, NULL, NULL, NULL); + if (!soap_match_tag(soap, t, "prodml23:FluidCharacterization")) + { *type = SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization; + return soap_in__prodml23__FluidCharacterization(soap, NULL, NULL, NULL); } if (!soap_match_tag(soap, t, "eml23:GraphicalInformationSet")) { *type = SOAP_TYPE_gsoap_eml2_3__eml23__GraphicalInformationSet; @@ -16046,8 +16046,8 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_byte(soap, tag, id, (const char *)ptr, "xsd:byte"); case SOAP_TYPE_gsoap_eml2_3_int: return soap_out_int(soap, tag, id, (const int *)ptr, "xsd:int"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear: - return soap_out_prodml22__CalendarYear(soap, tag, id, (const LONG64 *)ptr, "prodml22:CalendarYear"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear: + return soap_out_prodml23__CalendarYear(soap, tag, id, (const LONG64 *)ptr, "prodml23:CalendarYear"); case SOAP_TYPE_gsoap_eml2_3_eml23__PositiveLong: return soap_out_eml23__PositiveLong(soap, tag, id, (const LONG64 *)ptr, "eml23:PositiveLong"); case SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong: @@ -16060,8 +16060,8 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_xsd__integer(soap, tag, id, (const LONG64 *)ptr, "xsd:integer"); case SOAP_TYPE_gsoap_eml2_3_LONG64: return soap_out_LONG64(soap, tag, id, (const LONG64 *)ptr, "xsd:long"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction: - return soap_out_prodml22__NonNegativeFraction(soap, tag, id, (const float *)ptr, "prodml22:NonNegativeFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction: + return soap_out_prodml23__NonNegativeFraction(soap, tag, id, (const float *)ptr, "prodml23:NonNegativeFraction"); case SOAP_TYPE_gsoap_eml2_3_float: return soap_out_float(soap, tag, id, (const float *)ptr, "xsd:float"); case SOAP_TYPE_gsoap_eml2_3_eml23__PositiveDouble: @@ -16152,144 +16152,144 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_resqml22__LineRole(soap, tag, id, (const resqml22__LineRole *)ptr, "resqml22:LineRole"); case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKind: return soap_out_resqml22__CulturalFeatureKind(soap, tag, id, (const resqml22__CulturalFeatureKind *)ptr, "resqml22:CulturalFeatureKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword: - return soap_out_prodml22__TimeSeriesKeyword(soap, tag, id, (const prodml22__TimeSeriesKeyword *)ptr, "prodml22:TimeSeriesKeyword"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval: - return soap_out_prodml22__EndpointQualifierInterval(soap, tag, id, (const prodml22__EndpointQualifierInterval *)ptr, "prodml22:EndpointQualifierInterval"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod: - return soap_out_prodml22__WellOperationMethod(soap, tag, id, (const prodml22__WellOperationMethod *)ptr, "prodml22:WellOperationMethod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis: - return soap_out_prodml22__FluidComponentBasis(soap, tag, id, (const prodml22__FluidComponentBasis *)ptr, "prodml22:FluidComponentBasis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod: - return soap_out_prodml22__CalculationMethod(soap, tag, id, (const prodml22__CalculationMethod *)ptr, "prodml22:CalculationMethod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart: - return soap_out_prodml22__BalanceFlowPart(soap, tag, id, (const prodml22__BalanceFlowPart *)ptr, "prodml22:BalanceFlowPart"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind: - return soap_out_prodml22__BalanceEventKind(soap, tag, id, (const prodml22__BalanceEventKind *)ptr, "prodml22:BalanceEventKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType: - return soap_out_prodml22__BalanceDestinationType(soap, tag, id, (const prodml22__BalanceDestinationType *)ptr, "prodml22:BalanceDestinationType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction: - return soap_out_prodml22__SampleAction(soap, tag, id, (const prodml22__SampleAction *)ptr, "prodml22:SampleAction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind: - return soap_out_prodml22__FluidSampleKind(soap, tag, id, (const prodml22__FluidSampleKind *)ptr, "prodml22:FluidSampleKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType: - return soap_out_prodml22__WellboreStorageMechanismType(soap, tag, id, (const prodml22__WellboreStorageMechanismType *)ptr, "prodml22:WellboreStorageMechanismType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType: - return soap_out_prodml22__UpperBoundaryType(soap, tag, id, (const prodml22__UpperBoundaryType *)ptr, "prodml22:UpperBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection: - return soap_out_prodml22__ParameterDirection(soap, tag, id, (const prodml22__ParameterDirection *)ptr, "prodml22:ParameterDirection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType: - return soap_out_prodml22__LowerBoundaryType(soap, tag, id, (const prodml22__LowerBoundaryType *)ptr, "prodml22:LowerBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType: - return soap_out_prodml22__FractureModelType(soap, tag, id, (const prodml22__FractureModelType *)ptr, "prodml22:FractureModelType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type: - return soap_out_prodml22__Boundary4Type(soap, tag, id, (const prodml22__Boundary4Type *)ptr, "prodml22:Boundary4Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type: - return soap_out_prodml22__Boundary3Type(soap, tag, id, (const prodml22__Boundary3Type *)ptr, "prodml22:Boundary3Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type: - return soap_out_prodml22__Boundary2Type(soap, tag, id, (const prodml22__Boundary2Type *)ptr, "prodml22:Boundary2Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type: - return soap_out_prodml22__Boundary1Type(soap, tag, id, (const prodml22__Boundary1Type *)ptr, "prodml22:Boundary1Type"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind: - return soap_out_prodml22__TimeNonLinearTransformKind(soap, tag, id, (const prodml22__TimeNonLinearTransformKind *)ptr, "prodml22:TimeNonLinearTransformKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied: - return soap_out_prodml22__PseudoPressureEffectApplied(soap, tag, id, (const prodml22__PseudoPressureEffectApplied *)ptr, "prodml22:PseudoPressureEffectApplied"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind: - return soap_out_prodml22__PressureNonLinearTransformKind(soap, tag, id, (const prodml22__PressureNonLinearTransformKind *)ptr, "prodml22:PressureNonLinearTransformKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform: - return soap_out_prodml22__LogLogTimeTransform(soap, tag, id, (const prodml22__LogLogTimeTransform *)ptr, "prodml22:LogLogTimeTransform"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform: - return soap_out_prodml22__LogLogPressureTransform(soap, tag, id, (const prodml22__LogLogPressureTransform *)ptr, "prodml22:LogLogPressureTransform"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind: - return soap_out_prodml22__FluidPhaseKind(soap, tag, id, (const prodml22__FluidPhaseKind *)ptr, "prodml22:FluidPhaseKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation: - return soap_out_prodml22__TimeSeriesPointRepresentation(soap, tag, id, (const prodml22__TimeSeriesPointRepresentation *)ptr, "prodml22:TimeSeriesPointRepresentation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind: - return soap_out_prodml22__TestPeriodKind(soap, tag, id, (const prodml22__TestPeriodKind *)ptr, "prodml22:TestPeriodKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind: - return soap_out_prodml22__FluidPhaseMeasuredKind(soap, tag, id, (const prodml22__FluidPhaseMeasuredKind *)ptr, "prodml22:FluidPhaseMeasuredKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning: - return soap_out_prodml22__DataConditioning(soap, tag, id, (const prodml22__DataConditioning *)ptr, "prodml22:DataConditioning"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState: - return soap_out_prodml22__ReservoirLifeCycleState(soap, tag, id, (const prodml22__ReservoirLifeCycleState *)ptr, "prodml22:ReservoirLifeCycleState"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent: - return soap_out_prodml22__PhasePresent(soap, tag, id, (const prodml22__PhasePresent *)ptr, "prodml22:PhasePresent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind: - return soap_out_prodml22__VolumeReferenceKind(soap, tag, id, (const prodml22__VolumeReferenceKind *)ptr, "prodml22:VolumeReferenceKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase: - return soap_out_prodml22__ThermodynamicPhase(soap, tag, id, (const prodml22__ThermodynamicPhase *)ptr, "prodml22:ThermodynamicPhase"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality: - return soap_out_prodml22__SampleQuality(soap, tag, id, (const prodml22__SampleQuality *)ptr, "prodml22:SampleQuality"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind: - return soap_out_prodml22__OrganicAcidKind(soap, tag, id, (const prodml22__OrganicAcidKind *)ptr, "prodml22:OrganicAcidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant: - return soap_out_prodml22__FluidContaminant(soap, tag, id, (const prodml22__FluidContaminant *)ptr, "prodml22:FluidContaminant"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition: - return soap_out_prodml22__FluidAnalysisStepCondition(soap, tag, id, (const prodml22__FluidAnalysisStepCondition *)ptr, "prodml22:FluidAnalysisStepCondition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind: - return soap_out_prodml22__DetectableLimitRelativeStateKind(soap, tag, id, (const prodml22__DetectableLimitRelativeStateKind *)ptr, "prodml22:DetectableLimitRelativeStateKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind: - return soap_out_prodml22__CompressibilityKind(soap, tag, id, (const prodml22__CompressibilityKind *)ptr, "prodml22:CompressibilityKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind: - return soap_out_prodml22__CationKind(soap, tag, id, (const prodml22__CationKind *)ptr, "prodml22:CationKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind: - return soap_out_prodml22__AnionKind(soap, tag, id, (const prodml22__AnionKind *)ptr, "prodml22:AnionKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid: - return soap_out_prodml22__WellFluid(soap, tag, id, (const prodml22__WellFluid *)ptr, "prodml22:WellFluid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection: - return soap_out_prodml22__WellDirection(soap, tag, id, (const prodml22__WellDirection *)ptr, "prodml22:WellDirection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus: - return soap_out_prodml22__ValueStatus(soap, tag, id, (const prodml22__ValueStatus *)ptr, "prodml22:ValueStatus"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind: - return soap_out_prodml22__SulfurComponentKind(soap, tag, id, (const prodml22__SulfurComponentKind *)ptr, "prodml22:SulfurComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind: - return soap_out_prodml22__ServiceFluidKind(soap, tag, id, (const prodml22__ServiceFluidKind *)ptr, "prodml22:ServiceFluidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind: - return soap_out_prodml22__SaturationPointKind(soap, tag, id, (const prodml22__SaturationPointKind *)ptr, "prodml22:SaturationPointKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType: - return soap_out_prodml22__SafetyType(soap, tag, id, (const prodml22__SafetyType *)ptr, "prodml22:SafetyType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind: - return soap_out_prodml22__ReservoirFluidKind(soap, tag, id, (const prodml22__ReservoirFluidKind *)ptr, "prodml22:ReservoirFluidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct: - return soap_out_prodml22__ReportingProduct(soap, tag, id, (const prodml22__ReportingProduct *)ptr, "prodml22:ReportingProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow: - return soap_out_prodml22__ReportingFlow(soap, tag, id, (const prodml22__ReportingFlow *)ptr, "prodml22:ReportingFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility: - return soap_out_prodml22__ReportingFacility(soap, tag, id, (const prodml22__ReportingFacility *)ptr, "prodml22:ReportingFacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind: - return soap_out_prodml22__ReportingEntityKind(soap, tag, id, (const prodml22__ReportingEntityKind *)ptr, "prodml22:ReportingEntityKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind: - return soap_out_prodml22__ReportingDurationKind(soap, tag, id, (const prodml22__ReportingDurationKind *)ptr, "prodml22:ReportingDurationKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind: - return soap_out_prodml22__PureComponentKind(soap, tag, id, (const prodml22__PureComponentKind *)ptr, "prodml22:PureComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind: - return soap_out_prodml22__PseudoComponentKind(soap, tag, id, (const prodml22__PseudoComponentKind *)ptr, "prodml22:PseudoComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind: - return soap_out_prodml22__ProductFluidKind(soap, tag, id, (const prodml22__ProductFluidKind *)ptr, "prodml22:ProductFluidKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType: - return soap_out_prodml22__ProductFlowPortType(soap, tag, id, (const prodml22__ProductFlowPortType *)ptr, "prodml22:ProductFlowPortType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind: - return soap_out_prodml22__PlusComponentKind(soap, tag, id, (const prodml22__PlusComponentKind *)ptr, "prodml22:PlusComponentKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier: - return soap_out_prodml22__FlowSubQualifier(soap, tag, id, (const prodml22__FlowSubQualifier *)ptr, "prodml22:FlowSubQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier: - return soap_out_prodml22__FlowQualifier(soap, tag, id, (const prodml22__FlowQualifier *)ptr, "prodml22:FlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode: - return soap_out_prodml22__FiberMode(soap, tag, id, (const prodml22__FiberMode *)ptr, "prodml22:FiberMode"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter: - return soap_out_prodml22__FacilityParameter(soap, tag, id, (const prodml22__FacilityParameter *)ptr, "prodml22:FacilityParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier: - return soap_out_prodml22__EndpointQualifier(soap, tag, id, (const prodml22__EndpointQualifier *)ptr, "prodml22:EndpointQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind: - return soap_out_prodml22__BusinessUnitKind(soap, tag, id, (const prodml22__BusinessUnitKind *)ptr, "prodml22:BusinessUnitKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind: - return soap_out_prodml22__SaturationKind(soap, tag, id, (const prodml22__SaturationKind *)ptr, "prodml22:SaturationKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind: - return soap_out_prodml22__PvtModelParameterKind(soap, tag, id, (const prodml22__PvtModelParameterKind *)ptr, "prodml22:PvtModelParameterKind"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty: - return soap_out_prodml22__OutputFluidProperty(soap, tag, id, (const prodml22__OutputFluidProperty *)ptr, "prodml22:OutputFluidProperty"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule: - return soap_out_prodml22__MixingRule(soap, tag, id, (const prodml22__MixingRule *)ptr, "prodml22:MixingRule"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword: + return soap_out_prodml23__TimeSeriesKeyword(soap, tag, id, (const prodml23__TimeSeriesKeyword *)ptr, "prodml23:TimeSeriesKeyword"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval: + return soap_out_prodml23__EndpointQualifierInterval(soap, tag, id, (const prodml23__EndpointQualifierInterval *)ptr, "prodml23:EndpointQualifierInterval"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod: + return soap_out_prodml23__WellOperationMethod(soap, tag, id, (const prodml23__WellOperationMethod *)ptr, "prodml23:WellOperationMethod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis: + return soap_out_prodml23__FluidComponentBasis(soap, tag, id, (const prodml23__FluidComponentBasis *)ptr, "prodml23:FluidComponentBasis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod: + return soap_out_prodml23__CalculationMethod(soap, tag, id, (const prodml23__CalculationMethod *)ptr, "prodml23:CalculationMethod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart: + return soap_out_prodml23__BalanceFlowPart(soap, tag, id, (const prodml23__BalanceFlowPart *)ptr, "prodml23:BalanceFlowPart"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind: + return soap_out_prodml23__BalanceEventKind(soap, tag, id, (const prodml23__BalanceEventKind *)ptr, "prodml23:BalanceEventKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType: + return soap_out_prodml23__BalanceDestinationType(soap, tag, id, (const prodml23__BalanceDestinationType *)ptr, "prodml23:BalanceDestinationType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction: + return soap_out_prodml23__SampleAction(soap, tag, id, (const prodml23__SampleAction *)ptr, "prodml23:SampleAction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind: + return soap_out_prodml23__FluidSampleKind(soap, tag, id, (const prodml23__FluidSampleKind *)ptr, "prodml23:FluidSampleKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType: + return soap_out_prodml23__WellboreStorageMechanismType(soap, tag, id, (const prodml23__WellboreStorageMechanismType *)ptr, "prodml23:WellboreStorageMechanismType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType: + return soap_out_prodml23__UpperBoundaryType(soap, tag, id, (const prodml23__UpperBoundaryType *)ptr, "prodml23:UpperBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection: + return soap_out_prodml23__ParameterDirection(soap, tag, id, (const prodml23__ParameterDirection *)ptr, "prodml23:ParameterDirection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType: + return soap_out_prodml23__LowerBoundaryType(soap, tag, id, (const prodml23__LowerBoundaryType *)ptr, "prodml23:LowerBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType: + return soap_out_prodml23__FractureModelType(soap, tag, id, (const prodml23__FractureModelType *)ptr, "prodml23:FractureModelType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type: + return soap_out_prodml23__Boundary4Type(soap, tag, id, (const prodml23__Boundary4Type *)ptr, "prodml23:Boundary4Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type: + return soap_out_prodml23__Boundary3Type(soap, tag, id, (const prodml23__Boundary3Type *)ptr, "prodml23:Boundary3Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type: + return soap_out_prodml23__Boundary2Type(soap, tag, id, (const prodml23__Boundary2Type *)ptr, "prodml23:Boundary2Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type: + return soap_out_prodml23__Boundary1Type(soap, tag, id, (const prodml23__Boundary1Type *)ptr, "prodml23:Boundary1Type"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind: + return soap_out_prodml23__TimeNonLinearTransformKind(soap, tag, id, (const prodml23__TimeNonLinearTransformKind *)ptr, "prodml23:TimeNonLinearTransformKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied: + return soap_out_prodml23__PseudoPressureEffectApplied(soap, tag, id, (const prodml23__PseudoPressureEffectApplied *)ptr, "prodml23:PseudoPressureEffectApplied"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind: + return soap_out_prodml23__PressureNonLinearTransformKind(soap, tag, id, (const prodml23__PressureNonLinearTransformKind *)ptr, "prodml23:PressureNonLinearTransformKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform: + return soap_out_prodml23__LogLogTimeTransform(soap, tag, id, (const prodml23__LogLogTimeTransform *)ptr, "prodml23:LogLogTimeTransform"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform: + return soap_out_prodml23__LogLogPressureTransform(soap, tag, id, (const prodml23__LogLogPressureTransform *)ptr, "prodml23:LogLogPressureTransform"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind: + return soap_out_prodml23__FluidPhaseKind(soap, tag, id, (const prodml23__FluidPhaseKind *)ptr, "prodml23:FluidPhaseKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation: + return soap_out_prodml23__TimeSeriesPointRepresentation(soap, tag, id, (const prodml23__TimeSeriesPointRepresentation *)ptr, "prodml23:TimeSeriesPointRepresentation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind: + return soap_out_prodml23__TestPeriodKind(soap, tag, id, (const prodml23__TestPeriodKind *)ptr, "prodml23:TestPeriodKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind: + return soap_out_prodml23__FluidPhaseMeasuredKind(soap, tag, id, (const prodml23__FluidPhaseMeasuredKind *)ptr, "prodml23:FluidPhaseMeasuredKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning: + return soap_out_prodml23__DataConditioning(soap, tag, id, (const prodml23__DataConditioning *)ptr, "prodml23:DataConditioning"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState: + return soap_out_prodml23__ReservoirLifeCycleState(soap, tag, id, (const prodml23__ReservoirLifeCycleState *)ptr, "prodml23:ReservoirLifeCycleState"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent: + return soap_out_prodml23__PhasePresent(soap, tag, id, (const prodml23__PhasePresent *)ptr, "prodml23:PhasePresent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind: + return soap_out_prodml23__VolumeReferenceKind(soap, tag, id, (const prodml23__VolumeReferenceKind *)ptr, "prodml23:VolumeReferenceKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase: + return soap_out_prodml23__ThermodynamicPhase(soap, tag, id, (const prodml23__ThermodynamicPhase *)ptr, "prodml23:ThermodynamicPhase"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality: + return soap_out_prodml23__SampleQuality(soap, tag, id, (const prodml23__SampleQuality *)ptr, "prodml23:SampleQuality"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind: + return soap_out_prodml23__OrganicAcidKind(soap, tag, id, (const prodml23__OrganicAcidKind *)ptr, "prodml23:OrganicAcidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant: + return soap_out_prodml23__FluidContaminant(soap, tag, id, (const prodml23__FluidContaminant *)ptr, "prodml23:FluidContaminant"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition: + return soap_out_prodml23__FluidAnalysisStepCondition(soap, tag, id, (const prodml23__FluidAnalysisStepCondition *)ptr, "prodml23:FluidAnalysisStepCondition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind: + return soap_out_prodml23__DetectableLimitRelativeStateKind(soap, tag, id, (const prodml23__DetectableLimitRelativeStateKind *)ptr, "prodml23:DetectableLimitRelativeStateKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind: + return soap_out_prodml23__CompressibilityKind(soap, tag, id, (const prodml23__CompressibilityKind *)ptr, "prodml23:CompressibilityKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind: + return soap_out_prodml23__CationKind(soap, tag, id, (const prodml23__CationKind *)ptr, "prodml23:CationKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind: + return soap_out_prodml23__AnionKind(soap, tag, id, (const prodml23__AnionKind *)ptr, "prodml23:AnionKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid: + return soap_out_prodml23__WellFluid(soap, tag, id, (const prodml23__WellFluid *)ptr, "prodml23:WellFluid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection: + return soap_out_prodml23__WellDirection(soap, tag, id, (const prodml23__WellDirection *)ptr, "prodml23:WellDirection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus: + return soap_out_prodml23__ValueStatus(soap, tag, id, (const prodml23__ValueStatus *)ptr, "prodml23:ValueStatus"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind: + return soap_out_prodml23__SulfurComponentKind(soap, tag, id, (const prodml23__SulfurComponentKind *)ptr, "prodml23:SulfurComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind: + return soap_out_prodml23__ServiceFluidKind(soap, tag, id, (const prodml23__ServiceFluidKind *)ptr, "prodml23:ServiceFluidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind: + return soap_out_prodml23__SaturationPointKind(soap, tag, id, (const prodml23__SaturationPointKind *)ptr, "prodml23:SaturationPointKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType: + return soap_out_prodml23__SafetyType(soap, tag, id, (const prodml23__SafetyType *)ptr, "prodml23:SafetyType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind: + return soap_out_prodml23__ReservoirFluidKind(soap, tag, id, (const prodml23__ReservoirFluidKind *)ptr, "prodml23:ReservoirFluidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct: + return soap_out_prodml23__ReportingProduct(soap, tag, id, (const prodml23__ReportingProduct *)ptr, "prodml23:ReportingProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow: + return soap_out_prodml23__ReportingFlow(soap, tag, id, (const prodml23__ReportingFlow *)ptr, "prodml23:ReportingFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility: + return soap_out_prodml23__ReportingFacility(soap, tag, id, (const prodml23__ReportingFacility *)ptr, "prodml23:ReportingFacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind: + return soap_out_prodml23__ReportingEntityKind(soap, tag, id, (const prodml23__ReportingEntityKind *)ptr, "prodml23:ReportingEntityKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind: + return soap_out_prodml23__ReportingDurationKind(soap, tag, id, (const prodml23__ReportingDurationKind *)ptr, "prodml23:ReportingDurationKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind: + return soap_out_prodml23__PureComponentKind(soap, tag, id, (const prodml23__PureComponentKind *)ptr, "prodml23:PureComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind: + return soap_out_prodml23__PseudoComponentKind(soap, tag, id, (const prodml23__PseudoComponentKind *)ptr, "prodml23:PseudoComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind: + return soap_out_prodml23__ProductFluidKind(soap, tag, id, (const prodml23__ProductFluidKind *)ptr, "prodml23:ProductFluidKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType: + return soap_out_prodml23__ProductFlowPortType(soap, tag, id, (const prodml23__ProductFlowPortType *)ptr, "prodml23:ProductFlowPortType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind: + return soap_out_prodml23__PlusComponentKind(soap, tag, id, (const prodml23__PlusComponentKind *)ptr, "prodml23:PlusComponentKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier: + return soap_out_prodml23__FlowSubQualifier(soap, tag, id, (const prodml23__FlowSubQualifier *)ptr, "prodml23:FlowSubQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier: + return soap_out_prodml23__FlowQualifier(soap, tag, id, (const prodml23__FlowQualifier *)ptr, "prodml23:FlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode: + return soap_out_prodml23__FiberMode(soap, tag, id, (const prodml23__FiberMode *)ptr, "prodml23:FiberMode"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter: + return soap_out_prodml23__FacilityParameter(soap, tag, id, (const prodml23__FacilityParameter *)ptr, "prodml23:FacilityParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier: + return soap_out_prodml23__EndpointQualifier(soap, tag, id, (const prodml23__EndpointQualifier *)ptr, "prodml23:EndpointQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind: + return soap_out_prodml23__BusinessUnitKind(soap, tag, id, (const prodml23__BusinessUnitKind *)ptr, "prodml23:BusinessUnitKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind: + return soap_out_prodml23__SaturationKind(soap, tag, id, (const prodml23__SaturationKind *)ptr, "prodml23:SaturationKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind: + return soap_out_prodml23__PvtModelParameterKind(soap, tag, id, (const prodml23__PvtModelParameterKind *)ptr, "prodml23:PvtModelParameterKind"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty: + return soap_out_prodml23__OutputFluidProperty(soap, tag, id, (const prodml23__OutputFluidProperty *)ptr, "prodml23:OutputFluidProperty"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule: + return soap_out_prodml23__MixingRule(soap, tag, id, (const prodml23__MixingRule *)ptr, "prodml23:MixingRule"); case SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKind: return soap_out_eml23__CollectionKind(soap, tag, id, (const eml23__CollectionKind *)ptr, "eml23:CollectionKind"); case SOAP_TYPE_gsoap_eml2_3_eml23__ActivityParameterKind: @@ -17130,50 +17130,50 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out__resqml22__CulturalFeature(soap, "resqml22:CulturalFeature", id, (const resqml22__CulturalFeature *)ptr, ""); case SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature: return soap_out__resqml22__BoundaryFeature(soap, "resqml22:BoundaryFeature", id, (const resqml22__BoundaryFeature *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic: - return soap_out__prodml22__TimeSeriesStatistic(soap, "prodml22:TimeSeriesStatistic", id, (const prodml22__TimeSeriesStatistic *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData: - return soap_out__prodml22__TimeSeriesData(soap, "prodml22:TimeSeriesData", id, (const prodml22__TimeSeriesData *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel: - return soap_out__prodml22__ProductFlowModel(soap, "prodml22:ProductFlowModel", id, (const prodml22__ProductFlowModel *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume: - return soap_out__prodml22__ProductVolume(soap, "prodml22:ProductVolume", id, (const prodml22__ProductVolume *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob: - return soap_out__prodml22__FlowTestJob(soap, "prodml22:FlowTestJob", id, (const prodml22__FlowTestJob *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob: - return soap_out__prodml22__FluidSampleAcquisitionJob(soap, "prodml22:FluidSampleAcquisitionJob", id, (const prodml22__FluidSampleAcquisitionJob *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer: - return soap_out__prodml22__FluidSampleContainer(soap, "prodml22:FluidSampleContainer", id, (const prodml22__FluidSampleContainer *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample: - return soap_out__prodml22__FluidSample(soap, "prodml22:FluidSample", id, (const prodml22__FluidSample *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution: - return soap_out__prodml22__PtaDeconvolution(soap, "prodml22:PtaDeconvolution", id, (const prodml22__PtaDeconvolution *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess: - return soap_out__prodml22__PtaDataPreProcess(soap, "prodml22:PtaDataPreProcess", id, (const prodml22__PtaDataPreProcess *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis: - return soap_out__prodml22__PressureTransientAnalysis(soap, "prodml22:PressureTransientAnalysis", id, (const prodml22__PressureTransientAnalysis *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy: - return soap_out__prodml22__ReportingHierarchy(soap, "prodml22:ReportingHierarchy", id, (const prodml22__ReportingHierarchy *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity: - return soap_out__prodml22__ReportingEntity(soap, "prodml22:ReportingEntity", id, (const prodml22__ReportingEntity *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__Facility: - return soap_out__prodml22__Facility(soap, "prodml22:Facility", id, (const prodml22__Facility *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity: - return soap_out__prodml22__FlowTestActivity(soap, "prodml22:FlowTestActivity", id, (const prodml22__FlowTestActivity *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet: - return soap_out__prodml22__ChannelSet(soap, "prodml22:ChannelSet", id, (const prodml22__ChannelSet *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__Channel: - return soap_out__prodml22__Channel(soap, "prodml22:Channel", id, (const prodml22__Channel *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem: - return soap_out__prodml22__FluidSystem(soap, "prodml22:FluidSystem", id, (const prodml22__FluidSystem *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis: - return soap_out__prodml22__WaterAnalysis(soap, "prodml22:WaterAnalysis", id, (const prodml22__WaterAnalysis *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis: - return soap_out__prodml22__HydrocarbonAnalysis(soap, "prodml22:HydrocarbonAnalysis", id, (const prodml22__HydrocarbonAnalysis *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis: - return soap_out__prodml22__FluidAnalysis(soap, "prodml22:FluidAnalysis", id, (const prodml22__FluidAnalysis *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization: - return soap_out__prodml22__FluidCharacterization(soap, "prodml22:FluidCharacterization", id, (const prodml22__FluidCharacterization *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic: + return soap_out__prodml23__TimeSeriesStatistic(soap, "prodml23:TimeSeriesStatistic", id, (const prodml23__TimeSeriesStatistic *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData: + return soap_out__prodml23__TimeSeriesData(soap, "prodml23:TimeSeriesData", id, (const prodml23__TimeSeriesData *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel: + return soap_out__prodml23__ProductFlowModel(soap, "prodml23:ProductFlowModel", id, (const prodml23__ProductFlowModel *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume: + return soap_out__prodml23__ProductVolume(soap, "prodml23:ProductVolume", id, (const prodml23__ProductVolume *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob: + return soap_out__prodml23__FlowTestJob(soap, "prodml23:FlowTestJob", id, (const prodml23__FlowTestJob *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob: + return soap_out__prodml23__FluidSampleAcquisitionJob(soap, "prodml23:FluidSampleAcquisitionJob", id, (const prodml23__FluidSampleAcquisitionJob *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer: + return soap_out__prodml23__FluidSampleContainer(soap, "prodml23:FluidSampleContainer", id, (const prodml23__FluidSampleContainer *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample: + return soap_out__prodml23__FluidSample(soap, "prodml23:FluidSample", id, (const prodml23__FluidSample *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution: + return soap_out__prodml23__PtaDeconvolution(soap, "prodml23:PtaDeconvolution", id, (const prodml23__PtaDeconvolution *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess: + return soap_out__prodml23__PtaDataPreProcess(soap, "prodml23:PtaDataPreProcess", id, (const prodml23__PtaDataPreProcess *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis: + return soap_out__prodml23__PressureTransientAnalysis(soap, "prodml23:PressureTransientAnalysis", id, (const prodml23__PressureTransientAnalysis *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy: + return soap_out__prodml23__ReportingHierarchy(soap, "prodml23:ReportingHierarchy", id, (const prodml23__ReportingHierarchy *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity: + return soap_out__prodml23__ReportingEntity(soap, "prodml23:ReportingEntity", id, (const prodml23__ReportingEntity *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__Facility: + return soap_out__prodml23__Facility(soap, "prodml23:Facility", id, (const prodml23__Facility *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity: + return soap_out__prodml23__FlowTestActivity(soap, "prodml23:FlowTestActivity", id, (const prodml23__FlowTestActivity *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet: + return soap_out__prodml23__ChannelSet(soap, "prodml23:ChannelSet", id, (const prodml23__ChannelSet *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__Channel: + return soap_out__prodml23__Channel(soap, "prodml23:Channel", id, (const prodml23__Channel *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem: + return soap_out__prodml23__FluidSystem(soap, "prodml23:FluidSystem", id, (const prodml23__FluidSystem *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis: + return soap_out__prodml23__WaterAnalysis(soap, "prodml23:WaterAnalysis", id, (const prodml23__WaterAnalysis *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis: + return soap_out__prodml23__HydrocarbonAnalysis(soap, "prodml23:HydrocarbonAnalysis", id, (const prodml23__HydrocarbonAnalysis *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis: + return soap_out__prodml23__FluidAnalysis(soap, "prodml23:FluidAnalysis", id, (const prodml23__FluidAnalysis *)ptr, ""); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization: + return soap_out__prodml23__FluidCharacterization(soap, "prodml23:FluidCharacterization", id, (const prodml23__FluidCharacterization *)ptr, ""); case SOAP_TYPE_gsoap_eml2_3__eml23__GraphicalInformationSet: return soap_out__eml23__GraphicalInformationSet(soap, "eml23:GraphicalInformationSet", id, (const eml23__GraphicalInformationSet *)ptr, ""); case SOAP_TYPE_gsoap_eml2_3__eml23__DataAssuranceRecord: @@ -17314,8 +17314,8 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out__witsml21__Wellbore(soap, "witsml21:Wellbore", id, (const witsml21__Wellbore *)ptr, ""); case SOAP_TYPE_gsoap_eml2_3__witsml21__Well: return soap_out__witsml21__Well(soap, "witsml21:Well", id, (const witsml21__Well *)ptr, ""); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth: - return soap_out_prodml22__CalendarMonth(soap, tag, id, (const std::string *)ptr, "prodml22:CalendarMonth"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth: + return soap_out_prodml23__CalendarMonth(soap, tag, id, (const std::string *)ptr, "prodml23:CalendarMonth"); case SOAP_TYPE_gsoap_eml2_3_eml23__SectionNumber: return soap_out_eml23__SectionNumber(soap, tag, id, (const std::string *)ptr, "eml23:SectionNumber"); case SOAP_TYPE_gsoap_eml2_3_eml23__PublicLandSurveySystemQuarterTownship: @@ -17340,8 +17340,8 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_eml23__String2000(soap, tag, id, (const std::string *)ptr, "eml23:String2000"); case SOAP_TYPE_gsoap_eml2_3_eml23__EnumExtensionPattern: return soap_out_eml23__EnumExtensionPattern(soap, tag, id, (const std::string *)ptr, "eml23:EnumExtensionPattern"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier: - return soap_out_prodml22__ProdmlRelativeIdentifier(soap, tag, id, (const std::string *)ptr, "prodml22:ProdmlRelativeIdentifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier: + return soap_out_prodml23__ProdmlRelativeIdentifier(soap, tag, id, (const std::string *)ptr, "prodml23:ProdmlRelativeIdentifier"); case SOAP_TYPE_gsoap_eml2_3_eml23__AbstractString: return soap_out_eml23__AbstractString(soap, tag, id, (const std::string *)ptr, "eml23:AbstractString"); case SOAP_TYPE_gsoap_eml2_3_resqml22__StreamlineFluxExt: @@ -17366,40 +17366,40 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_resqml22__LineRoleExt(soap, tag, id, (const std::string *)ptr, "resqml22:LineRoleExt"); case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKindExt: return soap_out_resqml22__CulturalFeatureKindExt(soap, tag, id, (const std::string *)ptr, "resqml22:CulturalFeatureKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt: - return soap_out_prodml22__FluidSampleKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:FluidSampleKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt: - return soap_out_prodml22__DataConditioningExt(soap, tag, id, (const std::string *)ptr, "prodml22:DataConditioningExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt: - return soap_out_prodml22__VolumeReferenceKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:VolumeReferenceKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt: - return soap_out_prodml22__OrganicAcidKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:OrganicAcidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt: - return soap_out_prodml22__CationKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:CationKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt: - return soap_out_prodml22__AnionKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:AnionKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt: - return soap_out_prodml22__SulfurComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:SulfurComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt: - return soap_out_prodml22__ServiceFluidKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:ServiceFluidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt: - return soap_out_prodml22__ReportingFacilityExt(soap, tag, id, (const std::string *)ptr, "prodml22:ReportingFacilityExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt: - return soap_out_prodml22__ReportingDurationKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:ReportingDurationKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt: - return soap_out_prodml22__PureComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:PureComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt: - return soap_out_prodml22__PseudoComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:PseudoComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt: - return soap_out_prodml22__ProductFluidKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:ProductFluidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt: - return soap_out_prodml22__PlusComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:PlusComponentKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt: - return soap_out_prodml22__FacilityKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:FacilityKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt: - return soap_out_prodml22__PvtModelParameterKindExt(soap, tag, id, (const std::string *)ptr, "prodml22:PvtModelParameterKindExt"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt: - return soap_out_prodml22__OutputFluidPropertyExt(soap, tag, id, (const std::string *)ptr, "prodml22:OutputFluidPropertyExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt: + return soap_out_prodml23__FluidSampleKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:FluidSampleKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt: + return soap_out_prodml23__DataConditioningExt(soap, tag, id, (const std::string *)ptr, "prodml23:DataConditioningExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt: + return soap_out_prodml23__VolumeReferenceKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:VolumeReferenceKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt: + return soap_out_prodml23__OrganicAcidKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:OrganicAcidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt: + return soap_out_prodml23__CationKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:CationKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt: + return soap_out_prodml23__AnionKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:AnionKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt: + return soap_out_prodml23__SulfurComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:SulfurComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt: + return soap_out_prodml23__ServiceFluidKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:ServiceFluidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt: + return soap_out_prodml23__ReportingFacilityExt(soap, tag, id, (const std::string *)ptr, "prodml23:ReportingFacilityExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt: + return soap_out_prodml23__ReportingDurationKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:ReportingDurationKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt: + return soap_out_prodml23__PureComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:PureComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt: + return soap_out_prodml23__PseudoComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:PseudoComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt: + return soap_out_prodml23__ProductFluidKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:ProductFluidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt: + return soap_out_prodml23__PlusComponentKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:PlusComponentKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt: + return soap_out_prodml23__FacilityKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:FacilityKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt: + return soap_out_prodml23__PvtModelParameterKindExt(soap, tag, id, (const std::string *)ptr, "prodml23:PvtModelParameterKindExt"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt: + return soap_out_prodml23__OutputFluidPropertyExt(soap, tag, id, (const std::string *)ptr, "prodml23:OutputFluidPropertyExt"); case SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKindExt: return soap_out_eml23__CollectionKindExt(soap, tag, id, (const std::string *)ptr, "eml23:CollectionKindExt"); case SOAP_TYPE_gsoap_eml2_3_eml23__OrganizationKindExt: @@ -18274,812 +18274,812 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return ((resqml22__AbstractTechnicalFeature *)ptr)->soap_out(soap, tag, id, "resqml22:AbstractTechnicalFeature"); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: return ((resqml22__AbstractFeature *)ptr)->soap_out(soap, tag, id, "resqml22:AbstractFeature"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold: - return ((prodml22__TimeSeriesThreshold *)ptr)->soap_out(soap, tag, id, "prodml22:TimeSeriesThreshold"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: - return ((prodml22__TimeSeriesStatistic *)ptr)->soap_out(soap, tag, id, "prodml22:TimeSeriesStatistic"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct: - return ((prodml22__KeywordValueStruct *)ptr)->soap_out(soap, tag, id, "prodml22:KeywordValueStruct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity: - return ((prodml22__EndpointQuantity *)ptr)->soap_out(soap, tag, id, "prodml22:EndpointQuantity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime: - return ((prodml22__EndpointDateTime *)ptr)->soap_out(soap, tag, id, "prodml22:EndpointDateTime"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample: - return ((prodml22__TimeSeriesStringSample *)ptr)->soap_out(soap, tag, id, "prodml22:TimeSeriesStringSample"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample: - return ((prodml22__TimeSeriesDoubleSample *)ptr)->soap_out(soap, tag, id, "prodml22:TimeSeriesDoubleSample"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: - return ((prodml22__TimeSeriesData *)ptr)->soap_out(soap, tag, id, "prodml22:TimeSeriesData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: - return ((prodml22__StringValue *)ptr)->soap_out(soap, tag, id, "prodml22:StringValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: - return ((prodml22__DoubleValue *)ptr)->soap_out(soap, tag, id, "prodml22:DoubleValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue: - return ((prodml22__AbstractValue *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate: - return ((prodml22__RelativeCoordinate *)ptr)->soap_out(soap, tag, id, "prodml22:RelativeCoordinate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: - return ((prodml22__Qualifier *)ptr)->soap_out(soap, tag, id, "prodml22:Qualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit: - return ((prodml22__ProductFlowUnit *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowUnit"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: - return ((prodml22__ProductFlowQualifierExpected *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowQualifierExpected"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort: - return ((prodml22__ProductFlowPort *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowPort"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan: - return ((prodml22__ProductFlowNetworkPlan *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowNetworkPlan"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: - return ((prodml22__ProductFlowModel *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort: - return ((prodml22__ProductFlowExternalPort *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowExternalPort"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty: - return ((prodml22__ProductFlowExpectedUnitProperty *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowExpectedUnitProperty"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog: - return ((prodml22__ProductFlowChangeLog *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowChangeLog"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier: - return ((prodml22__ExpectedFlowQualifier *)ptr)->soap_out(soap, tag, id, "prodml22:ExpectedFlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode: - return ((prodml22__ConnectedNode *)ptr)->soap_out(soap, tag, id, "prodml22:ConnectedNode"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: - return ((prodml22__StringData *)ptr)->soap_out(soap, tag, id, "prodml22:StringData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: - return ((prodml22__ReferenceFlow *)ptr)->soap_out(soap, tag, id, "prodml22:ReferenceFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility: - return ((prodml22__ProductVolumeRelatedFacility *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeRelatedFacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct: - return ((prodml22__ProductVolumeProduct *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference: - return ((prodml22__ProductVolumePortDifference *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumePortDifference"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod: - return ((prodml22__ProductVolumePeriod *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumePeriod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue: - return ((prodml22__ProductVolumeParameterValue *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeParameterValue"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet: - return ((prodml22__ProductVolumeParameterSet *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow: - return ((prodml22__ProductVolumeFlow *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility: - return ((prodml22__ProductVolumeFacility *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeFacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination: - return ((prodml22__ProductVolumeDestination *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeDestination"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent: - return ((prodml22__ProductVolumeComponentContent *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeComponentContent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit: - return ((prodml22__ProductVolumeBusinessUnit *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeBusinessUnit"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit: - return ((prodml22__ProductVolumeBusinessSubUnit *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeBusinessSubUnit"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet: - return ((prodml22__ProductVolumeBalanceSet *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeBalanceSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent: - return ((prodml22__ProductVolumeBalanceEvent *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeBalanceEvent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail: - return ((prodml22__ProductVolumeBalanceDetail *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeBalanceDetail"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert: - return ((prodml22__ProductVolumeAlert *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolumeAlert"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: - return ((prodml22__ProductVolume *)ptr)->soap_out(soap, tag, id, "prodml22:ProductVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: - return ((prodml22__Parentfacility *)ptr)->soap_out(soap, tag, id, "prodml22:Parentfacility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct: - return ((prodml22__OwnershipBusinessAcct *)ptr)->soap_out(soap, tag, id, "prodml22:OwnershipBusinessAcct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: - return ((prodml22__IntegerData *)ptr)->soap_out(soap, tag, id, "prodml22:IntegerData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: - return ((prodml22__FacilityUnitPort *)ptr)->soap_out(soap, tag, id, "prodml22:FacilityUnitPort"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: - return ((prodml22__FacilityParent *)ptr)->soap_out(soap, tag, id, "prodml22:FacilityParent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition: - return ((prodml22__CurveDefinition *)ptr)->soap_out(soap, tag, id, "prodml22:CurveDefinition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: - return ((prodml22__CurveData *)ptr)->soap_out(soap, tag, id, "prodml22:CurveData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject: - return ((prodml22__AbstractRelatedFacilityObject *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractRelatedFacilityObject"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow: - return ((prodml22__AbstractRefProductFlow *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractRefProductFlow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData: - return ((prodml22__AbstractMeasureData *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractMeasureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume: - return ((prodml22__CommonPropertiesProductVolume *)ptr)->soap_out(soap, tag, id, "prodml22:CommonPropertiesProductVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: - return ((prodml22__FlowTestJob *)ptr)->soap_out(soap, tag, id, "prodml22:FlowTestJob"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: - return ((prodml22__WellheadSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml22:WellheadSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: - return ((prodml22__SeparatorSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml22:SeparatorSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: - return ((prodml22__FormationTesterSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml22:FormationTesterSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: - return ((prodml22__FluidSampleAcquisitionJob *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSampleAcquisitionJob"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition: - return ((prodml22__FluidSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: - return ((prodml22__FacilitySampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml22:FacilitySampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: - return ((prodml22__DownholeSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml22:DownholeSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: - return ((prodml22__FluidSampleContainer *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSampleContainer"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification: - return ((prodml22__SampleRecombinationSpecification *)ptr)->soap_out(soap, tag, id, "prodml22:SampleRecombinationSpecification"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction: - return ((prodml22__RecombinedSampleFraction *)ptr)->soap_out(soap, tag, id, "prodml22:RecombinedSampleFraction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent: - return ((prodml22__FluidSampleChainOfCustodyEvent *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSampleChainOfCustodyEvent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource: - return ((prodml22__FluidSampleAcquisitionJobSource *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSampleAcquisitionJobSource"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: - return ((prodml22__FluidSample *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSample"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: - return ((prodml22__WellboreVolume *)ptr)->soap_out(soap, tag, id, "prodml22:WellboreVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: - return ((prodml22__WellboreStorageCoefficient *)ptr)->soap_out(soap, tag, id, "prodml22:WellboreStorageCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: - return ((prodml22__WellboreRadius *)ptr)->soap_out(soap, tag, id, "prodml22:WellboreRadius"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: - return ((prodml22__WellboreFluidCompressibility *)ptr)->soap_out(soap, tag, id, "prodml22:WellboreFluidCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: - return ((prodml22__WellboreDeviationAngle *)ptr)->soap_out(soap, tag, id, "prodml22:WellboreDeviationAngle"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: - return ((prodml22__VerticalAnisotropyKvToKr *)ptr)->soap_out(soap, tag, id, "prodml22:VerticalAnisotropyKvToKr"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: - return ((prodml22__TubingInteralDiameter *)ptr)->soap_out(soap, tag, id, "prodml22:TubingInteralDiameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: - return ((prodml22__TransmissibilityReductionFactorOfLinearFront *)ptr)->soap_out(soap, tag, id, "prodml22:TransmissibilityReductionFactorOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: - return ((prodml22__TotalThickness *)ptr)->soap_out(soap, tag, id, "prodml22:TotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: - return ((prodml22__StorativityRatio *)ptr)->soap_out(soap, tag, id, "prodml22:StorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: - return ((prodml22__SkinRelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml22:SkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: - return ((prodml22__SkinLayer2RelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml22:SkinLayer2RelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: - return ((prodml22__Region2Thickness *)ptr)->soap_out(soap, tag, id, "prodml22:Region2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - return ((prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *)ptr)->soap_out(soap, tag, id, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: - return ((prodml22__RatioInitialToFinalWellboreStorage *)ptr)->soap_out(soap, tag, id, "prodml22:RatioInitialToFinalWellboreStorage"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: - return ((prodml22__RatioDpSkinToTotalDrawdown *)ptr)->soap_out(soap, tag, id, "prodml22:RatioDpSkinToTotalDrawdown"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: - return ((prodml22__RateDependentSkinFactor *)ptr)->soap_out(soap, tag, id, "prodml22:RateDependentSkinFactor"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: - return ((prodml22__RadiusOfInvestigation *)ptr)->soap_out(soap, tag, id, "prodml22:RadiusOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: - return ((prodml22__PressureDatumTVD *)ptr)->soap_out(soap, tag, id, "prodml22:PressureDatumTVD"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: - return ((prodml22__Porosity *)ptr)->soap_out(soap, tag, id, "prodml22:Porosity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: - return ((prodml22__PoreVolumeOfInvestigation *)ptr)->soap_out(soap, tag, id, "prodml22:PoreVolumeOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: - return ((prodml22__PoreVolumeMeasured *)ptr)->soap_out(soap, tag, id, "prodml22:PoreVolumeMeasured"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: - return ((prodml22__PermeabilityThicknessProduct *)ptr)->soap_out(soap, tag, id, "prodml22:PermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: - return ((prodml22__PerforatedLength *)ptr)->soap_out(soap, tag, id, "prodml22:PerforatedLength"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: - return ((prodml22__OrientationWellTrajectory *)ptr)->soap_out(soap, tag, id, "prodml22:OrientationWellTrajectory"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: - return ((prodml22__OrientationOfNormalToBoundary1 *)ptr)->soap_out(soap, tag, id, "prodml22:OrientationOfNormalToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: - return ((prodml22__OrientationOfLinearFront *)ptr)->soap_out(soap, tag, id, "prodml22:OrientationOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: - return ((prodml22__OrientationOfFracturePlane *)ptr)->soap_out(soap, tag, id, "prodml22:OrientationOfFracturePlane"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: - return ((prodml22__OrientationOfAnisotropyXDirection *)ptr)->soap_out(soap, tag, id, "prodml22:OrientationOfAnisotropyXDirection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: - return ((prodml22__NumberOfFractures *)ptr)->soap_out(soap, tag, id, "prodml22:NumberOfFractures"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: - return ((prodml22__ModelName *)ptr)->soap_out(soap, tag, id, "prodml22:ModelName"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: - return ((prodml22__MechanicalSkinRelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml22:MechanicalSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: - return ((prodml22__LengthHorizontalWellboreFlowing *)ptr)->soap_out(soap, tag, id, "prodml22:LengthHorizontalWellboreFlowing"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: - return ((prodml22__LeakSkin *)ptr)->soap_out(soap, tag, id, "prodml22:LeakSkin"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: - return ((prodml22__Layer2Thickness *)ptr)->soap_out(soap, tag, id, "prodml22:Layer2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: - return ((prodml22__InterporosityFlowParameter *)ptr)->soap_out(soap, tag, id, "prodml22:InterporosityFlowParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: - return ((prodml22__InnerToOuterZoneMobilityRatio *)ptr)->soap_out(soap, tag, id, "prodml22:InnerToOuterZoneMobilityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: - return ((prodml22__InnerToOuterZoneDiffusivityRatio *)ptr)->soap_out(soap, tag, id, "prodml22:InnerToOuterZoneDiffusivityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: - return ((prodml22__InitialPressure *)ptr)->soap_out(soap, tag, id, "prodml22:InitialPressure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: - return ((prodml22__HorizontalRadialPermeability *)ptr)->soap_out(soap, tag, id, "prodml22:HorizontalRadialPermeability"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: - return ((prodml22__HorizontalAnisotropyKxToKy *)ptr)->soap_out(soap, tag, id, "prodml22:HorizontalAnisotropyKxToKy"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: - return ((prodml22__FractureStorativityRatio *)ptr)->soap_out(soap, tag, id, "prodml22:FractureStorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: - return ((prodml22__FractureRadius *)ptr)->soap_out(soap, tag, id, "prodml22:FractureRadius"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: - return ((prodml22__FractureHeight *)ptr)->soap_out(soap, tag, id, "prodml22:FractureHeight"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: - return ((prodml22__FractureHalfLength *)ptr)->soap_out(soap, tag, id, "prodml22:FractureHalfLength"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: - return ((prodml22__FractureFaceSkin *)ptr)->soap_out(soap, tag, id, "prodml22:FractureFaceSkin"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: - return ((prodml22__FractureConductivity *)ptr)->soap_out(soap, tag, id, "prodml22:FractureConductivity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: - return ((prodml22__FractureAngleToWellbore *)ptr)->soap_out(soap, tag, id, "prodml22:FractureAngleToWellbore"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: - return ((prodml22__FluidDensity *)ptr)->soap_out(soap, tag, id, "prodml22:FluidDensity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: - return ((prodml22__FaultConductivity *)ptr)->soap_out(soap, tag, id, "prodml22:FaultConductivity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: - return ((prodml22__DrainageAreaMeasured *)ptr)->soap_out(soap, tag, id, "prodml22:DrainageAreaMeasured"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: - return ((prodml22__DistanceWellboreToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceWellboreToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: - return ((prodml22__DistanceToPinchOut *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceToPinchOut"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: - return ((prodml22__DistanceToMobilityInterface *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceToMobilityInterface"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: - return ((prodml22__DistanceToBoundary4 *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceToBoundary4"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: - return ((prodml22__DistanceToBoundary3 *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceToBoundary3"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: - return ((prodml22__DistanceToBoundary2 *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceToBoundary2"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: - return ((prodml22__DistanceToBoundary1 *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: - return ((prodml22__DistanceMidPerforationsToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceMidPerforationsToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: - return ((prodml22__DistanceMidFractureHeightToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceMidFractureHeightToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: - return ((prodml22__DistanceFractureToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml22:DistanceFractureToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: - return ((prodml22__DeltaTimeStorageChanges *)ptr)->soap_out(soap, tag, id, "prodml22:DeltaTimeStorageChanges"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: - return ((prodml22__DeltaPressureTotalSkin *)ptr)->soap_out(soap, tag, id, "prodml22:DeltaPressureTotalSkin"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: - return ((prodml22__CustomParameter *)ptr)->soap_out(soap, tag, id, "prodml22:CustomParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: - return ((prodml22__ConvergenceSkinRelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml22:ConvergenceSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: - return ((prodml22__AveragePressure *)ptr)->soap_out(soap, tag, id, "prodml22:AveragePressure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: - return ((prodml22__AngleBetweenBoundaries *)ptr)->soap_out(soap, tag, id, "prodml22:AngleBetweenBoundaries"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter: - return ((prodml22__AbstractParameter *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: - return ((prodml22__WellboreBaseModel *)ptr)->soap_out(soap, tag, id, "prodml22:WellboreBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: - return ((prodml22__UShapedFaultsModel *)ptr)->soap_out(soap, tag, id, "prodml22:UShapedFaultsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: - return ((prodml22__TwoParallelFaultsModel *)ptr)->soap_out(soap, tag, id, "prodml22:TwoParallelFaultsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: - return ((prodml22__TwoIntersectingFaultsModel *)ptr)->soap_out(soap, tag, id, "prodml22:TwoIntersectingFaultsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: - return ((prodml22__SlantedPartiallyPenetratingModel *)ptr)->soap_out(soap, tag, id, "prodml22:SlantedPartiallyPenetratingModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: - return ((prodml22__SlantedFullyPenetratingModel *)ptr)->soap_out(soap, tag, id, "prodml22:SlantedFullyPenetratingModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: - return ((prodml22__SingleFaultModel *)ptr)->soap_out(soap, tag, id, "prodml22:SingleFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: - return ((prodml22__ReservoirBaseModel *)ptr)->soap_out(soap, tag, id, "prodml22:ReservoirBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: - return ((prodml22__RadialCompositeModel *)ptr)->soap_out(soap, tag, id, "prodml22:RadialCompositeModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: - return ((prodml22__PinchOutModel *)ptr)->soap_out(soap, tag, id, "prodml22:PinchOutModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: - return ((prodml22__PartiallyPenetratingModel *)ptr)->soap_out(soap, tag, id, "prodml22:PartiallyPenetratingModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: - return ((prodml22__NumericalHomogeneousReservoirModel *)ptr)->soap_out(soap, tag, id, "prodml22:NumericalHomogeneousReservoirModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: - return ((prodml22__NumericalDualPorosityReservoirModel *)ptr)->soap_out(soap, tag, id, "prodml22:NumericalDualPorosityReservoirModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: - return ((prodml22__NumericalBoundaryModel *)ptr)->soap_out(soap, tag, id, "prodml22:NumericalBoundaryModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: - return ((prodml22__NearWellboreBaseModel *)ptr)->soap_out(soap, tag, id, "prodml22:NearWellboreBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: - return ((prodml22__LinearCompositeWithLeakyFaultModel *)ptr)->soap_out(soap, tag, id, "prodml22:LinearCompositeWithLeakyFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: - return ((prodml22__LinearCompositeWithConductiveFaultModel *)ptr)->soap_out(soap, tag, id, "prodml22:LinearCompositeWithConductiveFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: - return ((prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)ptr)->soap_out(soap, tag, id, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: - return ((prodml22__LinearCompositeModel *)ptr)->soap_out(soap, tag, id, "prodml22:LinearCompositeModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: - return ((prodml22__InfiniteBoundaryModel *)ptr)->soap_out(soap, tag, id, "prodml22:InfiniteBoundaryModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: - return ((prodml22__HorizontalWellboreMultipleVariableFracturedModel *)ptr)->soap_out(soap, tag, id, "prodml22:HorizontalWellboreMultipleVariableFracturedModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: - return ((prodml22__HorizontalWellboreMultipleEqualFracturedModel *)ptr)->soap_out(soap, tag, id, "prodml22:HorizontalWellboreMultipleEqualFracturedModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: - return ((prodml22__HorizontalWellboreModel *)ptr)->soap_out(soap, tag, id, "prodml22:HorizontalWellboreModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: - return ((prodml22__HorizontalWellbore2LayerModel *)ptr)->soap_out(soap, tag, id, "prodml22:HorizontalWellbore2LayerModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: - return ((prodml22__HomogeneousModel *)ptr)->soap_out(soap, tag, id, "prodml22:HomogeneousModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: - return ((prodml22__FracturedUniformFluxModel *)ptr)->soap_out(soap, tag, id, "prodml22:FracturedUniformFluxModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: - return ((prodml22__FracturedInfiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml22:FracturedInfiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: - return ((prodml22__FracturedHorizontalUniformFluxModel *)ptr)->soap_out(soap, tag, id, "prodml22:FracturedHorizontalUniformFluxModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: - return ((prodml22__FracturedHorizontalInfiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml22:FracturedHorizontalInfiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: - return ((prodml22__FracturedHorizontalFiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml22:FracturedHorizontalFiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: - return ((prodml22__FracturedFiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml22:FracturedFiniteConductivityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: - return ((prodml22__FiniteRadiusModel *)ptr)->soap_out(soap, tag, id, "prodml22:FiniteRadiusModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: - return ((prodml22__DualPorosityTransientSpheresModel *)ptr)->soap_out(soap, tag, id, "prodml22:DualPorosityTransientSpheresModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: - return ((prodml22__DualPorosityTransientSlabsModel *)ptr)->soap_out(soap, tag, id, "prodml22:DualPorosityTransientSlabsModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: - return ((prodml22__DualPorosityPseudoSteadyStateModel *)ptr)->soap_out(soap, tag, id, "prodml22:DualPorosityPseudoSteadyStateModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: - return ((prodml22__DualPermeabilityWithCrossflowModel *)ptr)->soap_out(soap, tag, id, "prodml22:DualPermeabilityWithCrossflowModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: - return ((prodml22__CustomWellboreModel *)ptr)->soap_out(soap, tag, id, "prodml22:CustomWellboreModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: - return ((prodml22__CustomReservoirModel *)ptr)->soap_out(soap, tag, id, "prodml22:CustomReservoirModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: - return ((prodml22__CustomNearWellboreModel *)ptr)->soap_out(soap, tag, id, "prodml22:CustomNearWellboreModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: - return ((prodml22__CustomBoundaryModel *)ptr)->soap_out(soap, tag, id, "prodml22:CustomBoundaryModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: - return ((prodml22__ConstantStorageModel *)ptr)->soap_out(soap, tag, id, "prodml22:ConstantStorageModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: - return ((prodml22__ClosedRectangleModel *)ptr)->soap_out(soap, tag, id, "prodml22:ClosedRectangleModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: - return ((prodml22__ClosedCircleModel *)ptr)->soap_out(soap, tag, id, "prodml22:ClosedCircleModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: - return ((prodml22__ChangingStorageSpiveyPackerModel *)ptr)->soap_out(soap, tag, id, "prodml22:ChangingStorageSpiveyPackerModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: - return ((prodml22__ChangingStorageSpiveyFissuresModel *)ptr)->soap_out(soap, tag, id, "prodml22:ChangingStorageSpiveyFissuresModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: - return ((prodml22__ChangingStorageHegemanModel *)ptr)->soap_out(soap, tag, id, "prodml22:ChangingStorageHegemanModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: - return ((prodml22__ChangingStorageFairModel *)ptr)->soap_out(soap, tag, id, "prodml22:ChangingStorageFairModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: - return ((prodml22__BoundaryBaseModel *)ptr)->soap_out(soap, tag, id, "prodml22:BoundaryBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection: - return ((prodml22__AbstractModelSection *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractModelSection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: - return ((prodml22__TestPeriodsFlowrateData *)ptr)->soap_out(soap, tag, id, "prodml22:TestPeriodsFlowrateData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis: - return ((prodml22__SpecializedAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:SpecializedAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel: - return ((prodml22__SingleFractureSubModel *)ptr)->soap_out(soap, tag, id, "prodml22:SingleFractureSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: - return ((prodml22__SingleFlowrateData *)ptr)->soap_out(soap, tag, id, "prodml22:SingleFlowrateData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel: - return ((prodml22__SingleBoundarySubModel *)ptr)->soap_out(soap, tag, id, "prodml22:SingleBoundarySubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: - return ((prodml22__RtaAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:RtaAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef: - return ((prodml22__ResqmlModelRef *)ptr)->soap_out(soap, tag, id, "prodml22:ResqmlModelRef"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel: - return ((prodml22__ReservoirZoneSubModel *)ptr)->soap_out(soap, tag, id, "prodml22:ReservoirZoneSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: - return ((prodml22__PtaDeconvolution *)ptr)->soap_out(soap, tag, id, "prodml22:PtaDeconvolution"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: - return ((prodml22__PtaDataPreProcess *)ptr)->soap_out(soap, tag, id, "prodml22:PtaDataPreProcess"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: - return ((prodml22__PtaAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:PtaAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: - return ((prodml22__PressureTransientAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:PressureTransientAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: - return ((prodml22__PreProcessedPressureData *)ptr)->soap_out(soap, tag, id, "prodml22:PreProcessedPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: - return ((prodml22__PreProcessedFlowData *)ptr)->soap_out(soap, tag, id, "prodml22:PreProcessedFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: - return ((prodml22__OutputPressureData *)ptr)->soap_out(soap, tag, id, "prodml22:OutputPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: - return ((prodml22__OutputFlowData *)ptr)->soap_out(soap, tag, id, "prodml22:OutputFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: - return ((prodml22__MeasuredPressureData *)ptr)->soap_out(soap, tag, id, "prodml22:MeasuredPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: - return ((prodml22__MeasuredFlowData *)ptr)->soap_out(soap, tag, id, "prodml22:MeasuredFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis: - return ((prodml22__LogLogAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:LogLogAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D: - return ((prodml22__LocationIn2D *)ptr)->soap_out(soap, tag, id, "prodml22:LocationIn2D"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection: - return ((prodml22__LayerToLayerConnection *)ptr)->soap_out(soap, tag, id, "prodml22:LayerToLayerConnection"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel: - return ((prodml22__LayerModel *)ptr)->soap_out(soap, tag, id, "prodml22:LayerModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel: - return ((prodml22__InternalFaultSubModel *)ptr)->soap_out(soap, tag, id, "prodml22:InternalFaultSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval: - return ((prodml22__InterferingFlowTestInterval *)ptr)->soap_out(soap, tag, id, "prodml22:InterferingFlowTestInterval"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel: - return ((prodml22__DistributedParametersSubModel *)ptr)->soap_out(soap, tag, id, "prodml22:DistributedParametersSubModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: - return ((prodml22__DeconvolvedPressureData *)ptr)->soap_out(soap, tag, id, "prodml22:DeconvolvedPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: - return ((prodml22__DeconvolvedFlowData *)ptr)->soap_out(soap, tag, id, "prodml22:DeconvolvedFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: - return ((prodml22__DeconvolutionSingleOutput *)ptr)->soap_out(soap, tag, id, "prodml22:DeconvolutionSingleOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput: - return ((prodml22__DeconvolutionOutput *)ptr)->soap_out(soap, tag, id, "prodml22:DeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: - return ((prodml22__DeconvolutionMultipleOutput *)ptr)->soap_out(soap, tag, id, "prodml22:DeconvolutionMultipleOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters: - return ((prodml22__CompressibilityParameters *)ptr)->soap_out(soap, tag, id, "prodml22:CompressibilityParameters"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: - return ((prodml22__ChannelFlowrateData *)ptr)->soap_out(soap, tag, id, "prodml22:ChannelFlowrateData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine: - return ((prodml22__AnalysisLine *)ptr)->soap_out(soap, tag, id, "prodml22:AnalysisLine"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory: - return ((prodml22__AbstractRateHistory *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractRateHistory"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: - return ((prodml22__AbstractPtaPressureData *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractPtaPressureData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput: - return ((prodml22__AbstractDeconvolutionOutput *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractDeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis: - return ((prodml22__AbstractAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode: - return ((prodml22__ReportingHierarchyNode *)ptr)->soap_out(soap, tag, id, "prodml22:ReportingHierarchyNode"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: - return ((prodml22__ReportingHierarchy *)ptr)->soap_out(soap, tag, id, "prodml22:ReportingHierarchy"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: - return ((prodml22__ReportingEntity *)ptr)->soap_out(soap, tag, id, "prodml22:ReportingEntity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: - return ((prodml22__Facility *)ptr)->soap_out(soap, tag, id, "prodml22:Facility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition: - return ((prodml22__WellFlowingCondition *)ptr)->soap_out(soap, tag, id, "prodml22:WellFlowingCondition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: - return ((prodml22__WaterLevelTest *)ptr)->soap_out(soap, tag, id, "prodml22:WaterLevelTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: - return ((prodml22__VerticalInterferenceTest *)ptr)->soap_out(soap, tag, id, "prodml22:VerticalInterferenceTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod: - return ((prodml22__TestPeriod *)ptr)->soap_out(soap, tag, id, "prodml22:TestPeriod"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate: - return ((prodml22__ProductRate *)ptr)->soap_out(soap, tag, id, "prodml22:ProductRate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: - return ((prodml22__ProductionTransientTest *)ptr)->soap_out(soap, tag, id, "prodml22:ProductionTransientTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: - return ((prodml22__ProductionFlowTest *)ptr)->soap_out(soap, tag, id, "prodml22:ProductionFlowTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: - return ((prodml22__OtherData *)ptr)->soap_out(soap, tag, id, "prodml22:OtherData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: - return ((prodml22__InterwellTest *)ptr)->soap_out(soap, tag, id, "prodml22:InterwellTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: - return ((prodml22__InjectionFlowTest *)ptr)->soap_out(soap, tag, id, "prodml22:InjectionFlowTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: - return ((prodml22__FormationTesterStation *)ptr)->soap_out(soap, tag, id, "prodml22:FormationTesterStation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet: - return ((prodml22__FlowTestMeasurementSet *)ptr)->soap_out(soap, tag, id, "prodml22:FlowTestMeasurementSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation: - return ((prodml22__FlowTestLocation *)ptr)->soap_out(soap, tag, id, "prodml22:FlowTestLocation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: - return ((prodml22__FlowTestActivity *)ptr)->soap_out(soap, tag, id, "prodml22:FlowTestActivity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: - return ((prodml22__DrillStemTest *)ptr)->soap_out(soap, tag, id, "prodml22:DrillStemTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: - return ((prodml22__ChannelSet *)ptr)->soap_out(soap, tag, id, "prodml22:ChannelSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: - return ((prodml22__Channel *)ptr)->soap_out(soap, tag, id, "prodml22:Channel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: - return ((prodml22__AbstractPtaFlowData *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractPtaFlowData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData: - return ((prodml22__AbstractFlowTestData *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractFlowTestData"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: - return ((prodml22__FluidSystem *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSystem"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent: - return ((prodml22__WaterSampleComponent *)ptr)->soap_out(soap, tag, id, "prodml22:WaterSampleComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep: - return ((prodml22__WaterAnalysisTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:WaterAnalysisTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest: - return ((prodml22__WaterAnalysisTest *)ptr)->soap_out(soap, tag, id, "prodml22:WaterAnalysisTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: - return ((prodml22__WaterAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:WaterAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature: - return ((prodml22__ViscosityAtTemperature *)ptr)->soap_out(soap, tag, id, "prodml22:ViscosityAtTemperature"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest: - return ((prodml22__VaporLiquidEquilibriumTest *)ptr)->soap_out(soap, tag, id, "prodml22:VaporLiquidEquilibriumTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep: - return ((prodml22__SwellingTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:SwellingTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest: - return ((prodml22__SwellingTest *)ptr)->soap_out(soap, tag, id, "prodml22:SwellingTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid: - return ((prodml22__STOFlashedLiquid *)ptr)->soap_out(soap, tag, id, "prodml22:STOFlashedLiquid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis: - return ((prodml22__STOAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:STOAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep: - return ((prodml22__SlimTubeTestVolumeStep *)ptr)->soap_out(soap, tag, id, "prodml22:SlimTubeTestVolumeStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep: - return ((prodml22__SlimTubeTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:SlimTubeTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest: - return ((prodml22__SlimTubeTest *)ptr)->soap_out(soap, tag, id, "prodml22:SlimTubeTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification: - return ((prodml22__SlimTubeSpecification *)ptr)->soap_out(soap, tag, id, "prodml22:SlimTubeSpecification"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions: - return ((prodml22__SeparatorConditions *)ptr)->soap_out(soap, tag, id, "prodml22:SeparatorConditions"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest: - return ((prodml22__SaturationTest *)ptr)->soap_out(soap, tag, id, "prodml22:SaturationTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: - return ((prodml22__SaturationTemperature *)ptr)->soap_out(soap, tag, id, "prodml22:SaturationTemperature"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: - return ((prodml22__SaturationPressure *)ptr)->soap_out(soap, tag, id, "prodml22:SaturationPressure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Sara: - return ((prodml22__Sara *)ptr)->soap_out(soap, tag, id, "prodml22:Sara"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration: - return ((prodml22__SampleRestoration *)ptr)->soap_out(soap, tag, id, "prodml22:SampleRestoration"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation: - return ((prodml22__SampleIntegrityAndPreparation *)ptr)->soap_out(soap, tag, id, "prodml22:SampleIntegrityAndPreparation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant: - return ((prodml22__SampleContaminant *)ptr)->soap_out(soap, tag, id, "prodml22:SampleContaminant"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation: - return ((prodml22__ReportLocation *)ptr)->soap_out(soap, tag, id, "prodml22:ReportLocation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: - return ((prodml22__RelativeVolumeRatio *)ptr)->soap_out(soap, tag, id, "prodml22:RelativeVolumeRatio"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: - return ((prodml22__RefInjectedGasAdded *)ptr)->soap_out(soap, tag, id, "prodml22:RefInjectedGasAdded"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties: - return ((prodml22__ProducedOilProperties *)ptr)->soap_out(soap, tag, id, "prodml22:ProducedOilProperties"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties: - return ((prodml22__ProducedGasProperties *)ptr)->soap_out(soap, tag, id, "prodml22:ProducedGasProperties"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity: - return ((prodml22__PhaseViscosity *)ptr)->soap_out(soap, tag, id, "prodml22:PhaseViscosity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity: - return ((prodml22__PhaseDensity *)ptr)->soap_out(soap, tag, id, "prodml22:PhaseDensity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep: - return ((prodml22__OtherMeasurementTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:OtherMeasurementTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest: - return ((prodml22__OtherMeasurementTest *)ptr)->soap_out(soap, tag, id, "prodml22:OtherMeasurementTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: - return ((prodml22__OilVolume *)ptr)->soap_out(soap, tag, id, "prodml22:OilVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: - return ((prodml22__OilShrinkageFactor *)ptr)->soap_out(soap, tag, id, "prodml22:OilShrinkageFactor"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: - return ((prodml22__OilCompressibility *)ptr)->soap_out(soap, tag, id, "prodml22:OilCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest: - return ((prodml22__NonHydrocarbonTest *)ptr)->soap_out(soap, tag, id, "prodml22:NonHydrocarbonTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: - return ((prodml22__NonHydrocarbonAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:NonHydrocarbonAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest: - return ((prodml22__MultipleContactMiscibilityTest *)ptr)->soap_out(soap, tag, id, "prodml22:MultipleContactMiscibilityTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut: - return ((prodml22__MassOut *)ptr)->soap_out(soap, tag, id, "prodml22:MassOut"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn: - return ((prodml22__MassIn *)ptr)->soap_out(soap, tag, id, "prodml22:MassIn"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance: - return ((prodml22__MassBalance *)ptr)->soap_out(soap, tag, id, "prodml22:MassBalance"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: - return ((prodml22__LiquidVolume *)ptr)->soap_out(soap, tag, id, "prodml22:LiquidVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: - return ((prodml22__LiquidDropoutFraction *)ptr)->soap_out(soap, tag, id, "prodml22:LiquidDropoutFraction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep: - return ((prodml22__InterfacialTensionTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:InterfacialTensionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest: - return ((prodml22__InterfacialTensionTest *)ptr)->soap_out(soap, tag, id, "prodml22:InterfacialTensionTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas: - return ((prodml22__InjectedGas *)ptr)->soap_out(soap, tag, id, "prodml22:InjectedGas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: - return ((prodml22__HydrocarbonAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:HydrocarbonAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference: - return ((prodml22__FluidVolumeReference *)ptr)->soap_out(soap, tag, id, "prodml22:FluidVolumeReference"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep: - return ((prodml22__FluidSeparatorTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSeparatorTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest: - return ((prodml22__FluidSeparatorTest *)ptr)->soap_out(soap, tag, id, "prodml22:FluidSeparatorTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep: - return ((prodml22__FluidDifferentialLiberationTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:FluidDifferentialLiberationTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep: - return ((prodml22__FluidCvdTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCvdTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport: - return ((prodml22__FluidAnalysisReport *)ptr)->soap_out(soap, tag, id, "prodml22:FluidAnalysisReport"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: - return ((prodml22__FluidAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:FluidAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid: - return ((prodml22__FlashedLiquid *)ptr)->soap_out(soap, tag, id, "prodml22:FlashedLiquid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas: - return ((prodml22__FlashedGas *)ptr)->soap_out(soap, tag, id, "prodml22:FlashedGas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest: - return ((prodml22__DifferentialLiberationTest *)ptr)->soap_out(soap, tag, id, "prodml22:DifferentialLiberationTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: - return ((prodml22__CumulativeGasProducedVol *)ptr)->soap_out(soap, tag, id, "prodml22:CumulativeGasProducedVol"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: - return ((prodml22__CumulativeGasProducedRatioStd *)ptr)->soap_out(soap, tag, id, "prodml22:CumulativeGasProducedRatioStd"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest: - return ((prodml22__ConstantVolumeDepletionTest *)ptr)->soap_out(soap, tag, id, "prodml22:ConstantVolumeDepletionTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep: - return ((prodml22__ConstantCompositionExpansionTestStep *)ptr)->soap_out(soap, tag, id, "prodml22:ConstantCompositionExpansionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest: - return ((prodml22__ConstantCompositionExpansionTest *)ptr)->soap_out(soap, tag, id, "prodml22:ConstantCompositionExpansionTest"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis: - return ((prodml22__AtmosphericFlashTestAndCompositionalAnalysis *)ptr)->soap_out(soap, tag, id, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage: - return ((prodml22__AbstractOilVolShrinkage *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractOilVolShrinkage"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume: - return ((prodml22__AbstractLiquidDropoutPercVolume *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractLiquidDropoutPercVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume: - return ((prodml22__AbstractGasProducedRatioVolume *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractGasProducedRatioVolume"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition: - return ((prodml22__VaporComposition *)ptr)->soap_out(soap, tag, id, "prodml22:VaporComposition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: - return ((prodml22__SulfurFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml22:SulfurFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: - return ((prodml22__StockTankOil *)ptr)->soap_out(soap, tag, id, "prodml22:StockTankOil"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: - return ((prodml22__StartEndTime *)ptr)->soap_out(soap, tag, id, "prodml22:StartEndTime"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: - return ((prodml22__StartEndDate *)ptr)->soap_out(soap, tag, id, "prodml22:StartEndDate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: - return ((prodml22__ServiceFluid *)ptr)->soap_out(soap, tag, id, "prodml22:ServiceFluid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: - return ((prodml22__PureFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml22:PureFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: - return ((prodml22__PseudoFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml22:PseudoFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: - return ((prodml22__ProductFluid *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFluid"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork: - return ((prodml22__ProductFlowNetwork *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowNetwork"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference: - return ((prodml22__ProductFlowExternalReference *)ptr)->soap_out(soap, tag, id, "prodml22:ProductFlowExternalReference"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: - return ((prodml22__PlusFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml22:PlusFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition: - return ((prodml22__OverallComposition *)ptr)->soap_out(soap, tag, id, "prodml22:OverallComposition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation: - return ((prodml22__OffshoreLocation *)ptr)->soap_out(soap, tag, id, "prodml22:OffshoreLocation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore: - return ((prodml22__NorthSeaOffshore *)ptr)->soap_out(soap, tag, id, "prodml22:NorthSeaOffshore"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: - return ((prodml22__NaturalGas *)ptr)->soap_out(soap, tag, id, "prodml22:NaturalGas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord: - return ((prodml22__MeasuredDepthCoord *)ptr)->soap_out(soap, tag, id, "prodml22:MeasuredDepthCoord"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition: - return ((prodml22__LiquidComposition *)ptr)->soap_out(soap, tag, id, "prodml22:LiquidComposition"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: - return ((prodml22__KindQualifiedString *)ptr)->soap_out(soap, tag, id, "prodml22:KindQualifiedString"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: - return ((prodml22__IntegerQualifiedCount *)ptr)->soap_out(soap, tag, id, "prodml22:IntegerQualifiedCount"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext: - return ((prodml22__GeographicContext *)ptr)->soap_out(soap, tag, id, "prodml22:GeographicContext"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: - return ((prodml22__GeneralQualifiedMeasure *)ptr)->soap_out(soap, tag, id, "prodml22:GeneralQualifiedMeasure"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType: - return ((prodml22__GeneralMeasureType *)ptr)->soap_out(soap, tag, id, "prodml22:GeneralMeasureType"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: - return ((prodml22__FormationWater *)ptr)->soap_out(soap, tag, id, "prodml22:FormationWater"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction: - return ((prodml22__FluidComponentFraction *)ptr)->soap_out(soap, tag, id, "prodml22:FluidComponentFraction"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog: - return ((prodml22__FluidComponentCatalog *)ptr)->soap_out(soap, tag, id, "prodml22:FluidComponentCatalog"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct: - return ((prodml22__FacilityIdentifierStruct *)ptr)->soap_out(soap, tag, id, "prodml22:FacilityIdentifierStruct"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier: - return ((prodml22__FacilityIdentifier *)ptr)->soap_out(soap, tag, id, "prodml22:FacilityIdentifier"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime: - return ((prodml22__EndpointQualifiedDateTime *)ptr)->soap_out(soap, tag, id, "prodml22:EndpointQualifiedDateTime"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate: - return ((prodml22__EndpointQualifiedDate *)ptr)->soap_out(soap, tag, id, "prodml22:EndpointQualifiedDate"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment: - return ((prodml22__DatedComment *)ptr)->soap_out(soap, tag, id, "prodml22:DatedComment"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter: - return ((prodml22__CalibrationParameter *)ptr)->soap_out(soap, tag, id, "prodml22:CalibrationParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity: - return ((prodml22__AbstractProductQuantity *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractProductQuantity"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent: - return ((prodml22__AbstractFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass: - return ((prodml22__AbstractDateTimeClass *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractDateTimeClass"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: - return ((prodml22__Standing_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml22:Standing-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: - return ((prodml22__Standing_Dead *)ptr)->soap_out(soap, tag, id, "prodml22:Standing-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: - return ((prodml22__Standing_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml22:Standing-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: - return ((prodml22__Srk_USCOREEOS *)ptr)->soap_out(soap, tag, id, "prodml22:Srk_EOS"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage: - return ((prodml22__ReferenceSeparatorStage *)ptr)->soap_out(soap, tag, id, "prodml22:ReferenceSeparatorStage"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet: - return ((prodml22__PvtModelParameterSet *)ptr)->soap_out(soap, tag, id, "prodml22:PvtModelParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter: - return ((prodml22__PvtModelParameter *)ptr)->soap_out(soap, tag, id, "prodml22:PvtModelParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter: - return ((prodml22__PrsvParameter *)ptr)->soap_out(soap, tag, id, "prodml22:PrsvParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: - return ((prodml22__PetroskyFarshad_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml22:PetroskyFarshad-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: - return ((prodml22__PetroskyFarshad_Dead *)ptr)->soap_out(soap, tag, id, "prodml22:PetroskyFarshad-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: - return ((prodml22__PetroskyFarshad_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml22:PetroskyFarshad-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: - return ((prodml22__PengRobinson78_USCOREEOS *)ptr)->soap_out(soap, tag, id, "prodml22:PengRobinson78_EOS"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: - return ((prodml22__PengRobinson76_USCOREEOS *)ptr)->soap_out(soap, tag, id, "prodml22:PengRobinson76_EOS"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: - return ((prodml22__Lucas *)ptr)->soap_out(soap, tag, id, "prodml22:Lucas"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: - return ((prodml22__LondonoArcherBlasinggame *)ptr)->soap_out(soap, tag, id, "prodml22:LondonoArcherBlasinggame"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: - return ((prodml22__Lohrenz_Bray_ClarkCorrelation *)ptr)->soap_out(soap, tag, id, "prodml22:Lohrenz-Bray-ClarkCorrelation"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: - return ((prodml22__LeeGonzalez *)ptr)->soap_out(soap, tag, id, "prodml22:LeeGonzalez"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: - return ((prodml22__FrictionTheory *)ptr)->soap_out(soap, tag, id, "prodml22:FrictionTheory"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty: - return ((prodml22__FluidComponentProperty *)ptr)->soap_out(soap, tag, id, "prodml22:FluidComponentProperty"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet: - return ((prodml22__FluidCharacterizationTableFormatSet *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationTableFormatSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat: - return ((prodml22__FluidCharacterizationTableFormat *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationTableFormat"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn: - return ((prodml22__FluidCharacterizationTableColumn *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationTableColumn"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable: - return ((prodml22__FluidCharacterizationTable *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationTable"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource: - return ((prodml22__FluidCharacterizationSource *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationSource"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet: - return ((prodml22__FluidCharacterizationParameterSet *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter: - return ((prodml22__FluidCharacterizationParameter *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel: - return ((prodml22__FluidCharacterizationModel *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: - return ((prodml22__FluidCharacterization *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterization"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: - return ((prodml22__DindorukChristman_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml22:DindorukChristman-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: - return ((prodml22__DindorukChristman_Dead *)ptr)->soap_out(soap, tag, id, "prodml22:DindorukChristman-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: - return ((prodml22__DindorukChristman_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml22:DindorukChristman-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: - return ((prodml22__DeGhetto_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml22:DeGhetto-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: - return ((prodml22__DeGhetto_Dead *)ptr)->soap_out(soap, tag, id, "prodml22:DeGhetto-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: - return ((prodml22__DeGhetto_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml22:DeGhetto-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter: - return ((prodml22__CustomPvtModelParameter *)ptr)->soap_out(soap, tag, id, "prodml22:CustomPvtModelParameter"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension: - return ((prodml22__CustomPvtModelExtension *)ptr)->soap_out(soap, tag, id, "prodml22:CustomPvtModelExtension"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: - return ((prodml22__CSPedersen87 *)ptr)->soap_out(soap, tag, id, "prodml22:CSPedersen87"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: - return ((prodml22__CSPedersen84 *)ptr)->soap_out(soap, tag, id, "prodml22:CSPedersen84"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: - return ((prodml22__CorrelationThermalModel *)ptr)->soap_out(soap, tag, id, "prodml22:CorrelationThermalModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: - return ((prodml22__CompositionalThermalModel *)ptr)->soap_out(soap, tag, id, "prodml22:CompositionalThermalModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet: - return ((prodml22__ComponentPropertySet *)ptr)->soap_out(soap, tag, id, "prodml22:ComponentPropertySet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: - return ((prodml22__CarrDempsey *)ptr)->soap_out(soap, tag, id, "prodml22:CarrDempsey"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet: - return ((prodml22__BinaryInteractionCoefficientSet *)ptr)->soap_out(soap, tag, id, "prodml22:BinaryInteractionCoefficientSet"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient: - return ((prodml22__BinaryInteractionCoefficient *)ptr)->soap_out(soap, tag, id, "prodml22:BinaryInteractionCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: - return ((prodml22__BergmanSutton_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml22:BergmanSutton-BubblePoint"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: - return ((prodml22__BerganSutton_Dead *)ptr)->soap_out(soap, tag, id, "prodml22:BerganSutton-Dead"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: - return ((prodml22__BerganAndSutton_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml22:BerganAndSutton-Undersaturated"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel: - return ((prodml22__AbstractPvtModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractPvtModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: - return ((prodml22__AbstractCorrelationViscosityUndersaturatedModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCorrelationViscosityUndersaturatedModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: - return ((prodml22__AbstractCorrelationViscosityModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCorrelationViscosityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: - return ((prodml22__AbstractCorrelationViscosityBubblePointModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCorrelationViscosityBubblePointModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: - return ((prodml22__AbstractCorrelationGasViscosityModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCorrelationGasViscosityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: - return ((prodml22__AbstractCompositionalViscosityModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCompositionalViscosityModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: - return ((prodml22__AbstractCompositionalEoSModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCompositionalEoSModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow: - return ((prodml22__FluidCharacterizationTableRow *)ptr)->soap_out(soap, tag, id, "prodml22:FluidCharacterizationTableRow"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: - return ((prodml22__AbstractCorrelationViscosityDeadModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCorrelationViscosityDeadModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: - return ((prodml22__AbstractCorrelationModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCorrelationModel"); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: - return ((prodml22__AbstractCompositionalModel *)ptr)->soap_out(soap, tag, id, "prodml22:AbstractCompositionalModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold: + return ((prodml23__TimeSeriesThreshold *)ptr)->soap_out(soap, tag, id, "prodml23:TimeSeriesThreshold"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: + return ((prodml23__TimeSeriesStatistic *)ptr)->soap_out(soap, tag, id, "prodml23:TimeSeriesStatistic"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct: + return ((prodml23__KeywordValueStruct *)ptr)->soap_out(soap, tag, id, "prodml23:KeywordValueStruct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity: + return ((prodml23__EndpointQuantity *)ptr)->soap_out(soap, tag, id, "prodml23:EndpointQuantity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime: + return ((prodml23__EndpointDateTime *)ptr)->soap_out(soap, tag, id, "prodml23:EndpointDateTime"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample: + return ((prodml23__TimeSeriesStringSample *)ptr)->soap_out(soap, tag, id, "prodml23:TimeSeriesStringSample"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample: + return ((prodml23__TimeSeriesDoubleSample *)ptr)->soap_out(soap, tag, id, "prodml23:TimeSeriesDoubleSample"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: + return ((prodml23__TimeSeriesData *)ptr)->soap_out(soap, tag, id, "prodml23:TimeSeriesData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: + return ((prodml23__StringValue *)ptr)->soap_out(soap, tag, id, "prodml23:StringValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: + return ((prodml23__DoubleValue *)ptr)->soap_out(soap, tag, id, "prodml23:DoubleValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue: + return ((prodml23__AbstractValue *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate: + return ((prodml23__RelativeCoordinate *)ptr)->soap_out(soap, tag, id, "prodml23:RelativeCoordinate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: + return ((prodml23__Qualifier *)ptr)->soap_out(soap, tag, id, "prodml23:Qualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit: + return ((prodml23__ProductFlowUnit *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowUnit"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: + return ((prodml23__ProductFlowQualifierExpected *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowQualifierExpected"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort: + return ((prodml23__ProductFlowPort *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowPort"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan: + return ((prodml23__ProductFlowNetworkPlan *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowNetworkPlan"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: + return ((prodml23__ProductFlowModel *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort: + return ((prodml23__ProductFlowExternalPort *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowExternalPort"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty: + return ((prodml23__ProductFlowExpectedUnitProperty *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowExpectedUnitProperty"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog: + return ((prodml23__ProductFlowChangeLog *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowChangeLog"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier: + return ((prodml23__ExpectedFlowQualifier *)ptr)->soap_out(soap, tag, id, "prodml23:ExpectedFlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode: + return ((prodml23__ConnectedNode *)ptr)->soap_out(soap, tag, id, "prodml23:ConnectedNode"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: + return ((prodml23__StringData *)ptr)->soap_out(soap, tag, id, "prodml23:StringData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: + return ((prodml23__ReferenceFlow *)ptr)->soap_out(soap, tag, id, "prodml23:ReferenceFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility: + return ((prodml23__ProductVolumeRelatedFacility *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeRelatedFacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct: + return ((prodml23__ProductVolumeProduct *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference: + return ((prodml23__ProductVolumePortDifference *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumePortDifference"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod: + return ((prodml23__ProductVolumePeriod *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumePeriod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue: + return ((prodml23__ProductVolumeParameterValue *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeParameterValue"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet: + return ((prodml23__ProductVolumeParameterSet *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow: + return ((prodml23__ProductVolumeFlow *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility: + return ((prodml23__ProductVolumeFacility *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeFacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination: + return ((prodml23__ProductVolumeDestination *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeDestination"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent: + return ((prodml23__ProductVolumeComponentContent *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeComponentContent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit: + return ((prodml23__ProductVolumeBusinessUnit *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeBusinessUnit"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit: + return ((prodml23__ProductVolumeBusinessSubUnit *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeBusinessSubUnit"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet: + return ((prodml23__ProductVolumeBalanceSet *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeBalanceSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent: + return ((prodml23__ProductVolumeBalanceEvent *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeBalanceEvent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail: + return ((prodml23__ProductVolumeBalanceDetail *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeBalanceDetail"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert: + return ((prodml23__ProductVolumeAlert *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolumeAlert"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: + return ((prodml23__ProductVolume *)ptr)->soap_out(soap, tag, id, "prodml23:ProductVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: + return ((prodml23__Parentfacility *)ptr)->soap_out(soap, tag, id, "prodml23:Parentfacility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct: + return ((prodml23__OwnershipBusinessAcct *)ptr)->soap_out(soap, tag, id, "prodml23:OwnershipBusinessAcct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: + return ((prodml23__IntegerData *)ptr)->soap_out(soap, tag, id, "prodml23:IntegerData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: + return ((prodml23__FacilityUnitPort *)ptr)->soap_out(soap, tag, id, "prodml23:FacilityUnitPort"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: + return ((prodml23__FacilityParent *)ptr)->soap_out(soap, tag, id, "prodml23:FacilityParent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition: + return ((prodml23__CurveDefinition *)ptr)->soap_out(soap, tag, id, "prodml23:CurveDefinition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: + return ((prodml23__CurveData *)ptr)->soap_out(soap, tag, id, "prodml23:CurveData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject: + return ((prodml23__AbstractRelatedFacilityObject *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractRelatedFacilityObject"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow: + return ((prodml23__AbstractRefProductFlow *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractRefProductFlow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData: + return ((prodml23__AbstractMeasureData *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractMeasureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume: + return ((prodml23__CommonPropertiesProductVolume *)ptr)->soap_out(soap, tag, id, "prodml23:CommonPropertiesProductVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: + return ((prodml23__FlowTestJob *)ptr)->soap_out(soap, tag, id, "prodml23:FlowTestJob"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: + return ((prodml23__WellheadSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml23:WellheadSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: + return ((prodml23__SeparatorSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml23:SeparatorSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: + return ((prodml23__FormationTesterSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml23:FormationTesterSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: + return ((prodml23__FluidSampleAcquisitionJob *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSampleAcquisitionJob"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition: + return ((prodml23__FluidSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: + return ((prodml23__FacilitySampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml23:FacilitySampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: + return ((prodml23__DownholeSampleAcquisition *)ptr)->soap_out(soap, tag, id, "prodml23:DownholeSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: + return ((prodml23__FluidSampleContainer *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSampleContainer"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification: + return ((prodml23__SampleRecombinationSpecification *)ptr)->soap_out(soap, tag, id, "prodml23:SampleRecombinationSpecification"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction: + return ((prodml23__RecombinedSampleFraction *)ptr)->soap_out(soap, tag, id, "prodml23:RecombinedSampleFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent: + return ((prodml23__FluidSampleChainOfCustodyEvent *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSampleChainOfCustodyEvent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource: + return ((prodml23__FluidSampleAcquisitionJobSource *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSampleAcquisitionJobSource"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: + return ((prodml23__FluidSample *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSample"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: + return ((prodml23__WellboreVolume *)ptr)->soap_out(soap, tag, id, "prodml23:WellboreVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: + return ((prodml23__WellboreStorageCoefficient *)ptr)->soap_out(soap, tag, id, "prodml23:WellboreStorageCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: + return ((prodml23__WellboreRadius *)ptr)->soap_out(soap, tag, id, "prodml23:WellboreRadius"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: + return ((prodml23__WellboreFluidCompressibility *)ptr)->soap_out(soap, tag, id, "prodml23:WellboreFluidCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: + return ((prodml23__WellboreDeviationAngle *)ptr)->soap_out(soap, tag, id, "prodml23:WellboreDeviationAngle"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: + return ((prodml23__VerticalAnisotropyKvToKr *)ptr)->soap_out(soap, tag, id, "prodml23:VerticalAnisotropyKvToKr"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: + return ((prodml23__TubingInteralDiameter *)ptr)->soap_out(soap, tag, id, "prodml23:TubingInteralDiameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: + return ((prodml23__TransmissibilityReductionFactorOfLinearFront *)ptr)->soap_out(soap, tag, id, "prodml23:TransmissibilityReductionFactorOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: + return ((prodml23__TotalThickness *)ptr)->soap_out(soap, tag, id, "prodml23:TotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: + return ((prodml23__StorativityRatio *)ptr)->soap_out(soap, tag, id, "prodml23:StorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: + return ((prodml23__SkinRelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml23:SkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: + return ((prodml23__SkinLayer2RelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml23:SkinLayer2RelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: + return ((prodml23__Region2Thickness *)ptr)->soap_out(soap, tag, id, "prodml23:Region2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + return ((prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *)ptr)->soap_out(soap, tag, id, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: + return ((prodml23__RatioInitialToFinalWellboreStorage *)ptr)->soap_out(soap, tag, id, "prodml23:RatioInitialToFinalWellboreStorage"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: + return ((prodml23__RatioDpSkinToTotalDrawdown *)ptr)->soap_out(soap, tag, id, "prodml23:RatioDpSkinToTotalDrawdown"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: + return ((prodml23__RateDependentSkinFactor *)ptr)->soap_out(soap, tag, id, "prodml23:RateDependentSkinFactor"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: + return ((prodml23__RadiusOfInvestigation *)ptr)->soap_out(soap, tag, id, "prodml23:RadiusOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: + return ((prodml23__PressureDatumTVD *)ptr)->soap_out(soap, tag, id, "prodml23:PressureDatumTVD"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: + return ((prodml23__Porosity *)ptr)->soap_out(soap, tag, id, "prodml23:Porosity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: + return ((prodml23__PoreVolumeOfInvestigation *)ptr)->soap_out(soap, tag, id, "prodml23:PoreVolumeOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: + return ((prodml23__PoreVolumeMeasured *)ptr)->soap_out(soap, tag, id, "prodml23:PoreVolumeMeasured"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: + return ((prodml23__PermeabilityThicknessProduct *)ptr)->soap_out(soap, tag, id, "prodml23:PermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: + return ((prodml23__PerforatedLength *)ptr)->soap_out(soap, tag, id, "prodml23:PerforatedLength"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: + return ((prodml23__OrientationWellTrajectory *)ptr)->soap_out(soap, tag, id, "prodml23:OrientationWellTrajectory"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: + return ((prodml23__OrientationOfNormalToBoundary1 *)ptr)->soap_out(soap, tag, id, "prodml23:OrientationOfNormalToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: + return ((prodml23__OrientationOfLinearFront *)ptr)->soap_out(soap, tag, id, "prodml23:OrientationOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: + return ((prodml23__OrientationOfFracturePlane *)ptr)->soap_out(soap, tag, id, "prodml23:OrientationOfFracturePlane"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: + return ((prodml23__OrientationOfAnisotropyXDirection *)ptr)->soap_out(soap, tag, id, "prodml23:OrientationOfAnisotropyXDirection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: + return ((prodml23__NumberOfFractures *)ptr)->soap_out(soap, tag, id, "prodml23:NumberOfFractures"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: + return ((prodml23__ModelName *)ptr)->soap_out(soap, tag, id, "prodml23:ModelName"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: + return ((prodml23__MechanicalSkinRelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml23:MechanicalSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: + return ((prodml23__LengthHorizontalWellboreFlowing *)ptr)->soap_out(soap, tag, id, "prodml23:LengthHorizontalWellboreFlowing"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: + return ((prodml23__LeakSkin *)ptr)->soap_out(soap, tag, id, "prodml23:LeakSkin"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: + return ((prodml23__Layer2Thickness *)ptr)->soap_out(soap, tag, id, "prodml23:Layer2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: + return ((prodml23__InterporosityFlowParameter *)ptr)->soap_out(soap, tag, id, "prodml23:InterporosityFlowParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: + return ((prodml23__InnerToOuterZoneMobilityRatio *)ptr)->soap_out(soap, tag, id, "prodml23:InnerToOuterZoneMobilityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: + return ((prodml23__InnerToOuterZoneDiffusivityRatio *)ptr)->soap_out(soap, tag, id, "prodml23:InnerToOuterZoneDiffusivityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: + return ((prodml23__InitialPressure *)ptr)->soap_out(soap, tag, id, "prodml23:InitialPressure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: + return ((prodml23__HorizontalRadialPermeability *)ptr)->soap_out(soap, tag, id, "prodml23:HorizontalRadialPermeability"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: + return ((prodml23__HorizontalAnisotropyKxToKy *)ptr)->soap_out(soap, tag, id, "prodml23:HorizontalAnisotropyKxToKy"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: + return ((prodml23__FractureStorativityRatio *)ptr)->soap_out(soap, tag, id, "prodml23:FractureStorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: + return ((prodml23__FractureRadius *)ptr)->soap_out(soap, tag, id, "prodml23:FractureRadius"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: + return ((prodml23__FractureHeight *)ptr)->soap_out(soap, tag, id, "prodml23:FractureHeight"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: + return ((prodml23__FractureHalfLength *)ptr)->soap_out(soap, tag, id, "prodml23:FractureHalfLength"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: + return ((prodml23__FractureFaceSkin *)ptr)->soap_out(soap, tag, id, "prodml23:FractureFaceSkin"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: + return ((prodml23__FractureConductivity *)ptr)->soap_out(soap, tag, id, "prodml23:FractureConductivity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: + return ((prodml23__FractureAngleToWellbore *)ptr)->soap_out(soap, tag, id, "prodml23:FractureAngleToWellbore"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: + return ((prodml23__FluidDensity *)ptr)->soap_out(soap, tag, id, "prodml23:FluidDensity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: + return ((prodml23__FaultConductivity *)ptr)->soap_out(soap, tag, id, "prodml23:FaultConductivity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: + return ((prodml23__DrainageAreaMeasured *)ptr)->soap_out(soap, tag, id, "prodml23:DrainageAreaMeasured"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: + return ((prodml23__DistanceWellboreToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceWellboreToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: + return ((prodml23__DistanceToPinchOut *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceToPinchOut"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: + return ((prodml23__DistanceToMobilityInterface *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceToMobilityInterface"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: + return ((prodml23__DistanceToBoundary4 *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceToBoundary4"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: + return ((prodml23__DistanceToBoundary3 *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceToBoundary3"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: + return ((prodml23__DistanceToBoundary2 *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceToBoundary2"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: + return ((prodml23__DistanceToBoundary1 *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: + return ((prodml23__DistanceMidPerforationsToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceMidPerforationsToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: + return ((prodml23__DistanceMidFractureHeightToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceMidFractureHeightToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: + return ((prodml23__DistanceFractureToBottomBoundary *)ptr)->soap_out(soap, tag, id, "prodml23:DistanceFractureToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: + return ((prodml23__DeltaTimeStorageChanges *)ptr)->soap_out(soap, tag, id, "prodml23:DeltaTimeStorageChanges"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: + return ((prodml23__DeltaPressureTotalSkin *)ptr)->soap_out(soap, tag, id, "prodml23:DeltaPressureTotalSkin"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: + return ((prodml23__CustomParameter *)ptr)->soap_out(soap, tag, id, "prodml23:CustomParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: + return ((prodml23__ConvergenceSkinRelativeToTotalThickness *)ptr)->soap_out(soap, tag, id, "prodml23:ConvergenceSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: + return ((prodml23__AveragePressure *)ptr)->soap_out(soap, tag, id, "prodml23:AveragePressure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: + return ((prodml23__AngleBetweenBoundaries *)ptr)->soap_out(soap, tag, id, "prodml23:AngleBetweenBoundaries"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter: + return ((prodml23__AbstractParameter *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: + return ((prodml23__WellboreBaseModel *)ptr)->soap_out(soap, tag, id, "prodml23:WellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: + return ((prodml23__UShapedFaultsModel *)ptr)->soap_out(soap, tag, id, "prodml23:UShapedFaultsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: + return ((prodml23__TwoParallelFaultsModel *)ptr)->soap_out(soap, tag, id, "prodml23:TwoParallelFaultsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: + return ((prodml23__TwoIntersectingFaultsModel *)ptr)->soap_out(soap, tag, id, "prodml23:TwoIntersectingFaultsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: + return ((prodml23__SlantedPartiallyPenetratingModel *)ptr)->soap_out(soap, tag, id, "prodml23:SlantedPartiallyPenetratingModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: + return ((prodml23__SlantedFullyPenetratingModel *)ptr)->soap_out(soap, tag, id, "prodml23:SlantedFullyPenetratingModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: + return ((prodml23__SingleFaultModel *)ptr)->soap_out(soap, tag, id, "prodml23:SingleFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: + return ((prodml23__ReservoirBaseModel *)ptr)->soap_out(soap, tag, id, "prodml23:ReservoirBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: + return ((prodml23__RadialCompositeModel *)ptr)->soap_out(soap, tag, id, "prodml23:RadialCompositeModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: + return ((prodml23__PinchOutModel *)ptr)->soap_out(soap, tag, id, "prodml23:PinchOutModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: + return ((prodml23__PartiallyPenetratingModel *)ptr)->soap_out(soap, tag, id, "prodml23:PartiallyPenetratingModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: + return ((prodml23__NumericalHomogeneousReservoirModel *)ptr)->soap_out(soap, tag, id, "prodml23:NumericalHomogeneousReservoirModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: + return ((prodml23__NumericalDualPorosityReservoirModel *)ptr)->soap_out(soap, tag, id, "prodml23:NumericalDualPorosityReservoirModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: + return ((prodml23__NumericalBoundaryModel *)ptr)->soap_out(soap, tag, id, "prodml23:NumericalBoundaryModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: + return ((prodml23__NearWellboreBaseModel *)ptr)->soap_out(soap, tag, id, "prodml23:NearWellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: + return ((prodml23__LinearCompositeWithLeakyFaultModel *)ptr)->soap_out(soap, tag, id, "prodml23:LinearCompositeWithLeakyFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: + return ((prodml23__LinearCompositeWithConductiveFaultModel *)ptr)->soap_out(soap, tag, id, "prodml23:LinearCompositeWithConductiveFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: + return ((prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)ptr)->soap_out(soap, tag, id, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: + return ((prodml23__LinearCompositeModel *)ptr)->soap_out(soap, tag, id, "prodml23:LinearCompositeModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: + return ((prodml23__InfiniteBoundaryModel *)ptr)->soap_out(soap, tag, id, "prodml23:InfiniteBoundaryModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: + return ((prodml23__HorizontalWellboreMultipleVariableFracturedModel *)ptr)->soap_out(soap, tag, id, "prodml23:HorizontalWellboreMultipleVariableFracturedModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: + return ((prodml23__HorizontalWellboreMultipleEqualFracturedModel *)ptr)->soap_out(soap, tag, id, "prodml23:HorizontalWellboreMultipleEqualFracturedModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: + return ((prodml23__HorizontalWellboreModel *)ptr)->soap_out(soap, tag, id, "prodml23:HorizontalWellboreModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: + return ((prodml23__HorizontalWellbore2LayerModel *)ptr)->soap_out(soap, tag, id, "prodml23:HorizontalWellbore2LayerModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: + return ((prodml23__HomogeneousModel *)ptr)->soap_out(soap, tag, id, "prodml23:HomogeneousModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: + return ((prodml23__FracturedUniformFluxModel *)ptr)->soap_out(soap, tag, id, "prodml23:FracturedUniformFluxModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: + return ((prodml23__FracturedInfiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml23:FracturedInfiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: + return ((prodml23__FracturedHorizontalUniformFluxModel *)ptr)->soap_out(soap, tag, id, "prodml23:FracturedHorizontalUniformFluxModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: + return ((prodml23__FracturedHorizontalInfiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml23:FracturedHorizontalInfiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: + return ((prodml23__FracturedHorizontalFiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml23:FracturedHorizontalFiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: + return ((prodml23__FracturedFiniteConductivityModel *)ptr)->soap_out(soap, tag, id, "prodml23:FracturedFiniteConductivityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: + return ((prodml23__FiniteRadiusModel *)ptr)->soap_out(soap, tag, id, "prodml23:FiniteRadiusModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: + return ((prodml23__DualPorosityTransientSpheresModel *)ptr)->soap_out(soap, tag, id, "prodml23:DualPorosityTransientSpheresModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: + return ((prodml23__DualPorosityTransientSlabsModel *)ptr)->soap_out(soap, tag, id, "prodml23:DualPorosityTransientSlabsModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: + return ((prodml23__DualPorosityPseudoSteadyStateModel *)ptr)->soap_out(soap, tag, id, "prodml23:DualPorosityPseudoSteadyStateModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: + return ((prodml23__DualPermeabilityWithCrossflowModel *)ptr)->soap_out(soap, tag, id, "prodml23:DualPermeabilityWithCrossflowModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: + return ((prodml23__CustomWellboreModel *)ptr)->soap_out(soap, tag, id, "prodml23:CustomWellboreModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: + return ((prodml23__CustomReservoirModel *)ptr)->soap_out(soap, tag, id, "prodml23:CustomReservoirModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: + return ((prodml23__CustomNearWellboreModel *)ptr)->soap_out(soap, tag, id, "prodml23:CustomNearWellboreModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: + return ((prodml23__CustomBoundaryModel *)ptr)->soap_out(soap, tag, id, "prodml23:CustomBoundaryModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: + return ((prodml23__ConstantStorageModel *)ptr)->soap_out(soap, tag, id, "prodml23:ConstantStorageModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: + return ((prodml23__ClosedRectangleModel *)ptr)->soap_out(soap, tag, id, "prodml23:ClosedRectangleModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: + return ((prodml23__ClosedCircleModel *)ptr)->soap_out(soap, tag, id, "prodml23:ClosedCircleModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: + return ((prodml23__ChangingStorageSpiveyPackerModel *)ptr)->soap_out(soap, tag, id, "prodml23:ChangingStorageSpiveyPackerModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: + return ((prodml23__ChangingStorageSpiveyFissuresModel *)ptr)->soap_out(soap, tag, id, "prodml23:ChangingStorageSpiveyFissuresModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: + return ((prodml23__ChangingStorageHegemanModel *)ptr)->soap_out(soap, tag, id, "prodml23:ChangingStorageHegemanModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: + return ((prodml23__ChangingStorageFairModel *)ptr)->soap_out(soap, tag, id, "prodml23:ChangingStorageFairModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: + return ((prodml23__BoundaryBaseModel *)ptr)->soap_out(soap, tag, id, "prodml23:BoundaryBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection: + return ((prodml23__AbstractModelSection *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractModelSection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: + return ((prodml23__TestPeriodsFlowrateData *)ptr)->soap_out(soap, tag, id, "prodml23:TestPeriodsFlowrateData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis: + return ((prodml23__SpecializedAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:SpecializedAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel: + return ((prodml23__SingleFractureSubModel *)ptr)->soap_out(soap, tag, id, "prodml23:SingleFractureSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: + return ((prodml23__SingleFlowrateData *)ptr)->soap_out(soap, tag, id, "prodml23:SingleFlowrateData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel: + return ((prodml23__SingleBoundarySubModel *)ptr)->soap_out(soap, tag, id, "prodml23:SingleBoundarySubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: + return ((prodml23__RtaAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:RtaAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef: + return ((prodml23__ResqmlModelRef *)ptr)->soap_out(soap, tag, id, "prodml23:ResqmlModelRef"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel: + return ((prodml23__ReservoirZoneSubModel *)ptr)->soap_out(soap, tag, id, "prodml23:ReservoirZoneSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: + return ((prodml23__PtaDeconvolution *)ptr)->soap_out(soap, tag, id, "prodml23:PtaDeconvolution"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: + return ((prodml23__PtaDataPreProcess *)ptr)->soap_out(soap, tag, id, "prodml23:PtaDataPreProcess"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: + return ((prodml23__PtaAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:PtaAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: + return ((prodml23__PressureTransientAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:PressureTransientAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: + return ((prodml23__PreProcessedPressureData *)ptr)->soap_out(soap, tag, id, "prodml23:PreProcessedPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: + return ((prodml23__PreProcessedFlowData *)ptr)->soap_out(soap, tag, id, "prodml23:PreProcessedFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: + return ((prodml23__OutputPressureData *)ptr)->soap_out(soap, tag, id, "prodml23:OutputPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: + return ((prodml23__OutputFlowData *)ptr)->soap_out(soap, tag, id, "prodml23:OutputFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: + return ((prodml23__MeasuredPressureData *)ptr)->soap_out(soap, tag, id, "prodml23:MeasuredPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: + return ((prodml23__MeasuredFlowData *)ptr)->soap_out(soap, tag, id, "prodml23:MeasuredFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis: + return ((prodml23__LogLogAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:LogLogAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D: + return ((prodml23__LocationIn2D *)ptr)->soap_out(soap, tag, id, "prodml23:LocationIn2D"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection: + return ((prodml23__LayerToLayerConnection *)ptr)->soap_out(soap, tag, id, "prodml23:LayerToLayerConnection"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel: + return ((prodml23__LayerModel *)ptr)->soap_out(soap, tag, id, "prodml23:LayerModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel: + return ((prodml23__InternalFaultSubModel *)ptr)->soap_out(soap, tag, id, "prodml23:InternalFaultSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval: + return ((prodml23__InterferingFlowTestInterval *)ptr)->soap_out(soap, tag, id, "prodml23:InterferingFlowTestInterval"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel: + return ((prodml23__DistributedParametersSubModel *)ptr)->soap_out(soap, tag, id, "prodml23:DistributedParametersSubModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: + return ((prodml23__DeconvolvedPressureData *)ptr)->soap_out(soap, tag, id, "prodml23:DeconvolvedPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: + return ((prodml23__DeconvolvedFlowData *)ptr)->soap_out(soap, tag, id, "prodml23:DeconvolvedFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: + return ((prodml23__DeconvolutionSingleOutput *)ptr)->soap_out(soap, tag, id, "prodml23:DeconvolutionSingleOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput: + return ((prodml23__DeconvolutionOutput *)ptr)->soap_out(soap, tag, id, "prodml23:DeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: + return ((prodml23__DeconvolutionMultipleOutput *)ptr)->soap_out(soap, tag, id, "prodml23:DeconvolutionMultipleOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters: + return ((prodml23__CompressibilityParameters *)ptr)->soap_out(soap, tag, id, "prodml23:CompressibilityParameters"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: + return ((prodml23__ChannelFlowrateData *)ptr)->soap_out(soap, tag, id, "prodml23:ChannelFlowrateData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine: + return ((prodml23__AnalysisLine *)ptr)->soap_out(soap, tag, id, "prodml23:AnalysisLine"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory: + return ((prodml23__AbstractRateHistory *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractRateHistory"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: + return ((prodml23__AbstractPtaPressureData *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractPtaPressureData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput: + return ((prodml23__AbstractDeconvolutionOutput *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractDeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis: + return ((prodml23__AbstractAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode: + return ((prodml23__ReportingHierarchyNode *)ptr)->soap_out(soap, tag, id, "prodml23:ReportingHierarchyNode"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: + return ((prodml23__ReportingHierarchy *)ptr)->soap_out(soap, tag, id, "prodml23:ReportingHierarchy"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: + return ((prodml23__ReportingEntity *)ptr)->soap_out(soap, tag, id, "prodml23:ReportingEntity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: + return ((prodml23__Facility *)ptr)->soap_out(soap, tag, id, "prodml23:Facility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition: + return ((prodml23__WellFlowingCondition *)ptr)->soap_out(soap, tag, id, "prodml23:WellFlowingCondition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: + return ((prodml23__WaterLevelTest *)ptr)->soap_out(soap, tag, id, "prodml23:WaterLevelTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: + return ((prodml23__VerticalInterferenceTest *)ptr)->soap_out(soap, tag, id, "prodml23:VerticalInterferenceTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod: + return ((prodml23__TestPeriod *)ptr)->soap_out(soap, tag, id, "prodml23:TestPeriod"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate: + return ((prodml23__ProductRate *)ptr)->soap_out(soap, tag, id, "prodml23:ProductRate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: + return ((prodml23__ProductionTransientTest *)ptr)->soap_out(soap, tag, id, "prodml23:ProductionTransientTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: + return ((prodml23__ProductionFlowTest *)ptr)->soap_out(soap, tag, id, "prodml23:ProductionFlowTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: + return ((prodml23__OtherData *)ptr)->soap_out(soap, tag, id, "prodml23:OtherData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: + return ((prodml23__InterwellTest *)ptr)->soap_out(soap, tag, id, "prodml23:InterwellTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: + return ((prodml23__InjectionFlowTest *)ptr)->soap_out(soap, tag, id, "prodml23:InjectionFlowTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: + return ((prodml23__FormationTesterStation *)ptr)->soap_out(soap, tag, id, "prodml23:FormationTesterStation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet: + return ((prodml23__FlowTestMeasurementSet *)ptr)->soap_out(soap, tag, id, "prodml23:FlowTestMeasurementSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation: + return ((prodml23__FlowTestLocation *)ptr)->soap_out(soap, tag, id, "prodml23:FlowTestLocation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: + return ((prodml23__FlowTestActivity *)ptr)->soap_out(soap, tag, id, "prodml23:FlowTestActivity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: + return ((prodml23__DrillStemTest *)ptr)->soap_out(soap, tag, id, "prodml23:DrillStemTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: + return ((prodml23__ChannelSet *)ptr)->soap_out(soap, tag, id, "prodml23:ChannelSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: + return ((prodml23__Channel *)ptr)->soap_out(soap, tag, id, "prodml23:Channel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: + return ((prodml23__AbstractPtaFlowData *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractPtaFlowData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData: + return ((prodml23__AbstractFlowTestData *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractFlowTestData"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: + return ((prodml23__FluidSystem *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSystem"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent: + return ((prodml23__WaterSampleComponent *)ptr)->soap_out(soap, tag, id, "prodml23:WaterSampleComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep: + return ((prodml23__WaterAnalysisTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:WaterAnalysisTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest: + return ((prodml23__WaterAnalysisTest *)ptr)->soap_out(soap, tag, id, "prodml23:WaterAnalysisTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: + return ((prodml23__WaterAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:WaterAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature: + return ((prodml23__ViscosityAtTemperature *)ptr)->soap_out(soap, tag, id, "prodml23:ViscosityAtTemperature"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest: + return ((prodml23__VaporLiquidEquilibriumTest *)ptr)->soap_out(soap, tag, id, "prodml23:VaporLiquidEquilibriumTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep: + return ((prodml23__SwellingTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:SwellingTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest: + return ((prodml23__SwellingTest *)ptr)->soap_out(soap, tag, id, "prodml23:SwellingTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid: + return ((prodml23__STOFlashedLiquid *)ptr)->soap_out(soap, tag, id, "prodml23:STOFlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis: + return ((prodml23__STOAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:STOAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep: + return ((prodml23__SlimTubeTestVolumeStep *)ptr)->soap_out(soap, tag, id, "prodml23:SlimTubeTestVolumeStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep: + return ((prodml23__SlimTubeTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:SlimTubeTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest: + return ((prodml23__SlimTubeTest *)ptr)->soap_out(soap, tag, id, "prodml23:SlimTubeTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification: + return ((prodml23__SlimTubeSpecification *)ptr)->soap_out(soap, tag, id, "prodml23:SlimTubeSpecification"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions: + return ((prodml23__SeparatorConditions *)ptr)->soap_out(soap, tag, id, "prodml23:SeparatorConditions"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest: + return ((prodml23__SaturationTest *)ptr)->soap_out(soap, tag, id, "prodml23:SaturationTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature: + return ((prodml23__SaturationTemperature *)ptr)->soap_out(soap, tag, id, "prodml23:SaturationTemperature"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure: + return ((prodml23__SaturationPressure *)ptr)->soap_out(soap, tag, id, "prodml23:SaturationPressure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Sara: + return ((prodml23__Sara *)ptr)->soap_out(soap, tag, id, "prodml23:Sara"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration: + return ((prodml23__SampleRestoration *)ptr)->soap_out(soap, tag, id, "prodml23:SampleRestoration"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation: + return ((prodml23__SampleIntegrityAndPreparation *)ptr)->soap_out(soap, tag, id, "prodml23:SampleIntegrityAndPreparation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant: + return ((prodml23__SampleContaminant *)ptr)->soap_out(soap, tag, id, "prodml23:SampleContaminant"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation: + return ((prodml23__ReportLocation *)ptr)->soap_out(soap, tag, id, "prodml23:ReportLocation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio: + return ((prodml23__RelativeVolumeRatio *)ptr)->soap_out(soap, tag, id, "prodml23:RelativeVolumeRatio"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded: + return ((prodml23__RefInjectedGasAdded *)ptr)->soap_out(soap, tag, id, "prodml23:RefInjectedGasAdded"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties: + return ((prodml23__ProducedOilProperties *)ptr)->soap_out(soap, tag, id, "prodml23:ProducedOilProperties"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties: + return ((prodml23__ProducedGasProperties *)ptr)->soap_out(soap, tag, id, "prodml23:ProducedGasProperties"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity: + return ((prodml23__PhaseViscosity *)ptr)->soap_out(soap, tag, id, "prodml23:PhaseViscosity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity: + return ((prodml23__PhaseDensity *)ptr)->soap_out(soap, tag, id, "prodml23:PhaseDensity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep: + return ((prodml23__OtherMeasurementTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:OtherMeasurementTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest: + return ((prodml23__OtherMeasurementTest *)ptr)->soap_out(soap, tag, id, "prodml23:OtherMeasurementTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: + return ((prodml23__OilVolume *)ptr)->soap_out(soap, tag, id, "prodml23:OilVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: + return ((prodml23__OilShrinkageFactor *)ptr)->soap_out(soap, tag, id, "prodml23:OilShrinkageFactor"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility: + return ((prodml23__OilCompressibility *)ptr)->soap_out(soap, tag, id, "prodml23:OilCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest: + return ((prodml23__NonHydrocarbonTest *)ptr)->soap_out(soap, tag, id, "prodml23:NonHydrocarbonTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: + return ((prodml23__NonHydrocarbonAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:NonHydrocarbonAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest: + return ((prodml23__MultipleContactMiscibilityTest *)ptr)->soap_out(soap, tag, id, "prodml23:MultipleContactMiscibilityTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut: + return ((prodml23__MassOut *)ptr)->soap_out(soap, tag, id, "prodml23:MassOut"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn: + return ((prodml23__MassIn *)ptr)->soap_out(soap, tag, id, "prodml23:MassIn"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance: + return ((prodml23__MassBalance *)ptr)->soap_out(soap, tag, id, "prodml23:MassBalance"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: + return ((prodml23__LiquidVolume *)ptr)->soap_out(soap, tag, id, "prodml23:LiquidVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: + return ((prodml23__LiquidDropoutFraction *)ptr)->soap_out(soap, tag, id, "prodml23:LiquidDropoutFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep: + return ((prodml23__InterfacialTensionTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:InterfacialTensionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest: + return ((prodml23__InterfacialTensionTest *)ptr)->soap_out(soap, tag, id, "prodml23:InterfacialTensionTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas: + return ((prodml23__InjectedGas *)ptr)->soap_out(soap, tag, id, "prodml23:InjectedGas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: + return ((prodml23__HydrocarbonAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:HydrocarbonAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference: + return ((prodml23__FluidVolumeReference *)ptr)->soap_out(soap, tag, id, "prodml23:FluidVolumeReference"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep: + return ((prodml23__FluidSeparatorTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSeparatorTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest: + return ((prodml23__FluidSeparatorTest *)ptr)->soap_out(soap, tag, id, "prodml23:FluidSeparatorTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep: + return ((prodml23__FluidDifferentialLiberationTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:FluidDifferentialLiberationTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep: + return ((prodml23__FluidCvdTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCvdTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport: + return ((prodml23__FluidAnalysisReport *)ptr)->soap_out(soap, tag, id, "prodml23:FluidAnalysisReport"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: + return ((prodml23__FluidAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:FluidAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid: + return ((prodml23__FlashedLiquid *)ptr)->soap_out(soap, tag, id, "prodml23:FlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas: + return ((prodml23__FlashedGas *)ptr)->soap_out(soap, tag, id, "prodml23:FlashedGas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest: + return ((prodml23__DifferentialLiberationTest *)ptr)->soap_out(soap, tag, id, "prodml23:DifferentialLiberationTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: + return ((prodml23__CumulativeGasProducedVol *)ptr)->soap_out(soap, tag, id, "prodml23:CumulativeGasProducedVol"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: + return ((prodml23__CumulativeGasProducedRatioStd *)ptr)->soap_out(soap, tag, id, "prodml23:CumulativeGasProducedRatioStd"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest: + return ((prodml23__ConstantVolumeDepletionTest *)ptr)->soap_out(soap, tag, id, "prodml23:ConstantVolumeDepletionTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep: + return ((prodml23__ConstantCompositionExpansionTestStep *)ptr)->soap_out(soap, tag, id, "prodml23:ConstantCompositionExpansionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest: + return ((prodml23__ConstantCompositionExpansionTest *)ptr)->soap_out(soap, tag, id, "prodml23:ConstantCompositionExpansionTest"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis: + return ((prodml23__AtmosphericFlashTestAndCompositionalAnalysis *)ptr)->soap_out(soap, tag, id, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage: + return ((prodml23__AbstractOilVolShrinkage *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractOilVolShrinkage"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume: + return ((prodml23__AbstractLiquidDropoutPercVolume *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractLiquidDropoutPercVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume: + return ((prodml23__AbstractGasProducedRatioVolume *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractGasProducedRatioVolume"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition: + return ((prodml23__VaporComposition *)ptr)->soap_out(soap, tag, id, "prodml23:VaporComposition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: + return ((prodml23__SulfurFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml23:SulfurFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: + return ((prodml23__StockTankOil *)ptr)->soap_out(soap, tag, id, "prodml23:StockTankOil"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: + return ((prodml23__StartEndTime *)ptr)->soap_out(soap, tag, id, "prodml23:StartEndTime"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: + return ((prodml23__StartEndDate *)ptr)->soap_out(soap, tag, id, "prodml23:StartEndDate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: + return ((prodml23__ServiceFluid *)ptr)->soap_out(soap, tag, id, "prodml23:ServiceFluid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: + return ((prodml23__PureFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml23:PureFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: + return ((prodml23__PseudoFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml23:PseudoFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: + return ((prodml23__ProductFluid *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFluid"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork: + return ((prodml23__ProductFlowNetwork *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowNetwork"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference: + return ((prodml23__ProductFlowExternalReference *)ptr)->soap_out(soap, tag, id, "prodml23:ProductFlowExternalReference"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: + return ((prodml23__PlusFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml23:PlusFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition: + return ((prodml23__OverallComposition *)ptr)->soap_out(soap, tag, id, "prodml23:OverallComposition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation: + return ((prodml23__OffshoreLocation *)ptr)->soap_out(soap, tag, id, "prodml23:OffshoreLocation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore: + return ((prodml23__NorthSeaOffshore *)ptr)->soap_out(soap, tag, id, "prodml23:NorthSeaOffshore"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: + return ((prodml23__NaturalGas *)ptr)->soap_out(soap, tag, id, "prodml23:NaturalGas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord: + return ((prodml23__MeasuredDepthCoord *)ptr)->soap_out(soap, tag, id, "prodml23:MeasuredDepthCoord"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition: + return ((prodml23__LiquidComposition *)ptr)->soap_out(soap, tag, id, "prodml23:LiquidComposition"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: + return ((prodml23__KindQualifiedString *)ptr)->soap_out(soap, tag, id, "prodml23:KindQualifiedString"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: + return ((prodml23__IntegerQualifiedCount *)ptr)->soap_out(soap, tag, id, "prodml23:IntegerQualifiedCount"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext: + return ((prodml23__GeographicContext *)ptr)->soap_out(soap, tag, id, "prodml23:GeographicContext"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: + return ((prodml23__GeneralQualifiedMeasure *)ptr)->soap_out(soap, tag, id, "prodml23:GeneralQualifiedMeasure"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType: + return ((prodml23__GeneralMeasureType *)ptr)->soap_out(soap, tag, id, "prodml23:GeneralMeasureType"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: + return ((prodml23__FormationWater *)ptr)->soap_out(soap, tag, id, "prodml23:FormationWater"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction: + return ((prodml23__FluidComponentFraction *)ptr)->soap_out(soap, tag, id, "prodml23:FluidComponentFraction"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog: + return ((prodml23__FluidComponentCatalog *)ptr)->soap_out(soap, tag, id, "prodml23:FluidComponentCatalog"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct: + return ((prodml23__FacilityIdentifierStruct *)ptr)->soap_out(soap, tag, id, "prodml23:FacilityIdentifierStruct"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier: + return ((prodml23__FacilityIdentifier *)ptr)->soap_out(soap, tag, id, "prodml23:FacilityIdentifier"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime: + return ((prodml23__EndpointQualifiedDateTime *)ptr)->soap_out(soap, tag, id, "prodml23:EndpointQualifiedDateTime"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate: + return ((prodml23__EndpointQualifiedDate *)ptr)->soap_out(soap, tag, id, "prodml23:EndpointQualifiedDate"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment: + return ((prodml23__DatedComment *)ptr)->soap_out(soap, tag, id, "prodml23:DatedComment"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter: + return ((prodml23__CalibrationParameter *)ptr)->soap_out(soap, tag, id, "prodml23:CalibrationParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity: + return ((prodml23__AbstractProductQuantity *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractProductQuantity"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent: + return ((prodml23__AbstractFluidComponent *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass: + return ((prodml23__AbstractDateTimeClass *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractDateTimeClass"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: + return ((prodml23__Standing_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml23:Standing-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: + return ((prodml23__Standing_Dead *)ptr)->soap_out(soap, tag, id, "prodml23:Standing-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: + return ((prodml23__Standing_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml23:Standing-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: + return ((prodml23__Srk_USCOREEOS *)ptr)->soap_out(soap, tag, id, "prodml23:Srk_EOS"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage: + return ((prodml23__ReferenceSeparatorStage *)ptr)->soap_out(soap, tag, id, "prodml23:ReferenceSeparatorStage"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet: + return ((prodml23__PvtModelParameterSet *)ptr)->soap_out(soap, tag, id, "prodml23:PvtModelParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter: + return ((prodml23__PvtModelParameter *)ptr)->soap_out(soap, tag, id, "prodml23:PvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter: + return ((prodml23__PrsvParameter *)ptr)->soap_out(soap, tag, id, "prodml23:PrsvParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: + return ((prodml23__PetroskyFarshad_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml23:PetroskyFarshad-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: + return ((prodml23__PetroskyFarshad_Dead *)ptr)->soap_out(soap, tag, id, "prodml23:PetroskyFarshad-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: + return ((prodml23__PetroskyFarshad_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml23:PetroskyFarshad-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: + return ((prodml23__PengRobinson78_USCOREEOS *)ptr)->soap_out(soap, tag, id, "prodml23:PengRobinson78_EOS"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: + return ((prodml23__PengRobinson76_USCOREEOS *)ptr)->soap_out(soap, tag, id, "prodml23:PengRobinson76_EOS"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: + return ((prodml23__Lucas *)ptr)->soap_out(soap, tag, id, "prodml23:Lucas"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: + return ((prodml23__LondonoArcherBlasinggame *)ptr)->soap_out(soap, tag, id, "prodml23:LondonoArcherBlasinggame"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: + return ((prodml23__Lohrenz_Bray_ClarkCorrelation *)ptr)->soap_out(soap, tag, id, "prodml23:Lohrenz-Bray-ClarkCorrelation"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: + return ((prodml23__LeeGonzalez *)ptr)->soap_out(soap, tag, id, "prodml23:LeeGonzalez"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: + return ((prodml23__FrictionTheory *)ptr)->soap_out(soap, tag, id, "prodml23:FrictionTheory"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty: + return ((prodml23__FluidComponentProperty *)ptr)->soap_out(soap, tag, id, "prodml23:FluidComponentProperty"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet: + return ((prodml23__FluidCharacterizationTableFormatSet *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationTableFormatSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat: + return ((prodml23__FluidCharacterizationTableFormat *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationTableFormat"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn: + return ((prodml23__FluidCharacterizationTableColumn *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationTableColumn"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable: + return ((prodml23__FluidCharacterizationTable *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationTable"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource: + return ((prodml23__FluidCharacterizationSource *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationSource"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet: + return ((prodml23__FluidCharacterizationParameterSet *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter: + return ((prodml23__FluidCharacterizationParameter *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel: + return ((prodml23__FluidCharacterizationModel *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: + return ((prodml23__FluidCharacterization *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterization"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: + return ((prodml23__DindorukChristman_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml23:DindorukChristman-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: + return ((prodml23__DindorukChristman_Dead *)ptr)->soap_out(soap, tag, id, "prodml23:DindorukChristman-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: + return ((prodml23__DindorukChristman_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml23:DindorukChristman-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: + return ((prodml23__DeGhetto_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml23:DeGhetto-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: + return ((prodml23__DeGhetto_Dead *)ptr)->soap_out(soap, tag, id, "prodml23:DeGhetto-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: + return ((prodml23__DeGhetto_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml23:DeGhetto-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter: + return ((prodml23__CustomPvtModelParameter *)ptr)->soap_out(soap, tag, id, "prodml23:CustomPvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension: + return ((prodml23__CustomPvtModelExtension *)ptr)->soap_out(soap, tag, id, "prodml23:CustomPvtModelExtension"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: + return ((prodml23__CSPedersen87 *)ptr)->soap_out(soap, tag, id, "prodml23:CSPedersen87"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: + return ((prodml23__CSPedersen84 *)ptr)->soap_out(soap, tag, id, "prodml23:CSPedersen84"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: + return ((prodml23__CorrelationThermalModel *)ptr)->soap_out(soap, tag, id, "prodml23:CorrelationThermalModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: + return ((prodml23__CompositionalThermalModel *)ptr)->soap_out(soap, tag, id, "prodml23:CompositionalThermalModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet: + return ((prodml23__ComponentPropertySet *)ptr)->soap_out(soap, tag, id, "prodml23:ComponentPropertySet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: + return ((prodml23__CarrDempsey *)ptr)->soap_out(soap, tag, id, "prodml23:CarrDempsey"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet: + return ((prodml23__BinaryInteractionCoefficientSet *)ptr)->soap_out(soap, tag, id, "prodml23:BinaryInteractionCoefficientSet"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient: + return ((prodml23__BinaryInteractionCoefficient *)ptr)->soap_out(soap, tag, id, "prodml23:BinaryInteractionCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: + return ((prodml23__BergmanSutton_BubblePoint *)ptr)->soap_out(soap, tag, id, "prodml23:BergmanSutton-BubblePoint"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: + return ((prodml23__BerganSutton_Dead *)ptr)->soap_out(soap, tag, id, "prodml23:BerganSutton-Dead"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: + return ((prodml23__BerganAndSutton_Undersaturated *)ptr)->soap_out(soap, tag, id, "prodml23:BerganAndSutton-Undersaturated"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel: + return ((prodml23__AbstractPvtModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractPvtModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: + return ((prodml23__AbstractCorrelationViscosityUndersaturatedModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCorrelationViscosityUndersaturatedModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: + return ((prodml23__AbstractCorrelationViscosityModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCorrelationViscosityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: + return ((prodml23__AbstractCorrelationViscosityBubblePointModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCorrelationViscosityBubblePointModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: + return ((prodml23__AbstractCorrelationGasViscosityModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCorrelationGasViscosityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: + return ((prodml23__AbstractCompositionalViscosityModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCompositionalViscosityModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: + return ((prodml23__AbstractCompositionalEoSModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCompositionalEoSModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow: + return ((prodml23__FluidCharacterizationTableRow *)ptr)->soap_out(soap, tag, id, "prodml23:FluidCharacterizationTableRow"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: + return ((prodml23__AbstractCorrelationViscosityDeadModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCorrelationViscosityDeadModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: + return ((prodml23__AbstractCorrelationModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCorrelationModel"); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: + return ((prodml23__AbstractCompositionalModel *)ptr)->soap_out(soap, tag, id, "prodml23:AbstractCompositionalModel"); case SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet: return ((eml23__GraphicalInformationSet *)ptr)->soap_out(soap, tag, id, "eml23:GraphicalInformationSet"); case SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGraphicalInformation: @@ -20836,8 +20836,8 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_PointerToresqml22__AbstractPlaneGeometry(soap, tag, id, (resqml22__AbstractPlaneGeometry *const*)ptr, "resqml22:AbstractPlaneGeometry"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ContactIdentity: return soap_out_PointerToresqml22__ContactIdentity(soap, tag, id, (resqml22__ContactIdentity *const*)ptr, "resqml22:ContactIdentity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter: - return soap_out_PointerToprodml22__PrsvParameter(soap, tag, id, (prodml22__PrsvParameter *const*)ptr, "prodml22:PrsvParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter: + return soap_out_PointerToprodml23__PrsvParameter(soap, tag, id, (prodml23__PrsvParameter *const*)ptr, "prodml23:PrsvParameter"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__LengthUomExt: return soap_out_PointerToeml23__LengthUomExt(soap, tag, id, (std::string *const*)ptr, "eml23:LengthUomExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AbstractProjectedCrs: @@ -20900,126 +20900,126 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_PointerToeml23__FloatingPointLatticeArray(soap, tag, id, (eml23__FloatingPointLatticeArray *const*)ptr, "eml23:FloatingPointLatticeArray"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ThreePoint3d: return soap_out_PointerToresqml22__ThreePoint3d(soap, tag, id, (resqml22__ThreePoint3d *const*)ptr, "resqml22:ThreePoint3d"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries: - return soap_out_PointerToprodml22__AngleBetweenBoundaries(soap, tag, id, (prodml22__AngleBetweenBoundaries *const*)ptr, "prodml22:AngleBetweenBoundaries"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut: - return soap_out_PointerToprodml22__DistanceToPinchOut(soap, tag, id, (prodml22__DistanceToPinchOut *const*)ptr, "prodml22:DistanceToPinchOut"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary: - return soap_out_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, id, (prodml22__DistanceMidPerforationsToBottomBoundary *const*)ptr, "prodml22:DistanceMidPerforationsToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength: - return soap_out_PointerToprodml22__PerforatedLength(soap, tag, id, (prodml22__PerforatedLength *const*)ptr, "prodml22:PerforatedLength"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel: - return soap_out_PointerToprodml22__ReservoirZoneSubModel(soap, tag, id, (prodml22__ReservoirZoneSubModel *const*)ptr, "prodml22:ReservoirZoneSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel: - return soap_out_PointerToprodml22__DistributedParametersSubModel(soap, tag, id, (prodml22__DistributedParametersSubModel *const*)ptr, "prodml22:DistributedParametersSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel: - return soap_out_PointerToprodml22__InternalFaultSubModel(soap, tag, id, (prodml22__InternalFaultSubModel *const*)ptr, "prodml22:InternalFaultSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel: - return soap_out_PointerToprodml22__SingleBoundarySubModel(soap, tag, id, (prodml22__SingleBoundarySubModel *const*)ptr, "prodml22:SingleBoundarySubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity: - return soap_out_PointerToprodml22__FaultConductivity(soap, tag, id, (prodml22__FaultConductivity *const*)ptr, "prodml22:FaultConductivity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness: - return soap_out_PointerToprodml22__Region2Thickness(soap, tag, id, (prodml22__Region2Thickness *const*)ptr, "prodml22:Region2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront: - return soap_out_PointerToprodml22__OrientationOfLinearFront(soap, tag, id, (prodml22__OrientationOfLinearFront *const*)ptr, "prodml22:OrientationOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface: - return soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, tag, id, (prodml22__DistanceToMobilityInterface *const*)ptr, "prodml22:DistanceToMobilityInterface"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio: - return soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, id, (prodml22__InnerToOuterZoneDiffusivityRatio *const*)ptr, "prodml22:InnerToOuterZoneDiffusivityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio: - return soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, tag, id, (prodml22__InnerToOuterZoneMobilityRatio *const*)ptr, "prodml22:InnerToOuterZoneMobilityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel: - return soap_out_PointerToprodml22__SingleFractureSubModel(soap, tag, id, (prodml22__SingleFractureSubModel *const*)ptr, "prodml22:SingleFractureSubModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore: - return soap_out_PointerToprodml22__FractureAngleToWellbore(soap, tag, id, (prodml22__FractureAngleToWellbore *const*)ptr, "prodml22:FractureAngleToWellbore"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures: - return soap_out_PointerToprodml22__NumberOfFractures(soap, tag, id, (prodml22__NumberOfFractures *const*)ptr, "prodml22:NumberOfFractures"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary: - return soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, tag, id, (prodml22__DistanceWellboreToBottomBoundary *const*)ptr, "prodml22:DistanceWellboreToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing: - return soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, tag, id, (prodml22__LengthHorizontalWellboreFlowing *const*)ptr, "prodml22:LengthHorizontalWellboreFlowing"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory: - return soap_out_PointerToprodml22__OrientationWellTrajectory(soap, tag, id, (prodml22__OrientationWellTrajectory *const*)ptr, "prodml22:OrientationWellTrajectory"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness: - return soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, id, (prodml22__MechanicalSkinRelativeToTotalThickness *const*)ptr, "prodml22:MechanicalSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness: - return soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, id, (prodml22__ConvergenceSkinRelativeToTotalThickness *const*)ptr, "prodml22:ConvergenceSkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary: - return soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(soap, tag, id, (prodml22__DistanceFractureToBottomBoundary *const*)ptr, "prodml22:DistanceFractureToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius: - return soap_out_PointerToprodml22__FractureRadius(soap, tag, id, (prodml22__FractureRadius *const*)ptr, "prodml22:FractureRadius"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane: - return soap_out_PointerToprodml22__OrientationOfFracturePlane(soap, tag, id, (prodml22__OrientationOfFracturePlane *const*)ptr, "prodml22:OrientationOfFracturePlane"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength: - return soap_out_PointerToprodml22__FractureHalfLength(soap, tag, id, (prodml22__FractureHalfLength *const*)ptr, "prodml22:FractureHalfLength"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness: - return soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, tag, id, (prodml22__SkinLayer2RelativeToTotalThickness *const*)ptr, "prodml22:SkinLayer2RelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness: - return soap_out_PointerToprodml22__Layer2Thickness(soap, tag, id, (prodml22__Layer2Thickness *const*)ptr, "prodml22:Layer2Thickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - return soap_out_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, id, (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*)ptr, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio: - return soap_out_PointerToprodml22__StorativityRatio(soap, tag, id, (prodml22__StorativityRatio *const*)ptr, "prodml22:StorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName: - return soap_out_PointerToprodml22__ModelName(soap, tag, id, (prodml22__ModelName *const*)ptr, "prodml22:ModelName"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1: - return soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, tag, id, (prodml22__OrientationOfNormalToBoundary1 *const*)ptr, "prodml22:OrientationOfNormalToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4: - return soap_out_PointerToprodml22__DistanceToBoundary4(soap, tag, id, (prodml22__DistanceToBoundary4 *const*)ptr, "prodml22:DistanceToBoundary4"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3: - return soap_out_PointerToprodml22__DistanceToBoundary3(soap, tag, id, (prodml22__DistanceToBoundary3 *const*)ptr, "prodml22:DistanceToBoundary3"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2: - return soap_out_PointerToprodml22__DistanceToBoundary2(soap, tag, id, (prodml22__DistanceToBoundary2 *const*)ptr, "prodml22:DistanceToBoundary2"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1: - return soap_out_PointerToprodml22__DistanceToBoundary1(soap, tag, id, (prodml22__DistanceToBoundary1 *const*)ptr, "prodml22:DistanceToBoundary1"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured: - return soap_out_PointerToprodml22__PoreVolumeMeasured(soap, tag, id, (prodml22__PoreVolumeMeasured *const*)ptr, "prodml22:PoreVolumeMeasured"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured: - return soap_out_PointerToprodml22__DrainageAreaMeasured(soap, tag, id, (prodml22__DrainageAreaMeasured *const*)ptr, "prodml22:DrainageAreaMeasured"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin: - return soap_out_PointerToprodml22__LeakSkin(soap, tag, id, (prodml22__LeakSkin *const*)ptr, "prodml22:LeakSkin"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges: - return soap_out_PointerToprodml22__DeltaTimeStorageChanges(soap, tag, id, (prodml22__DeltaTimeStorageChanges *const*)ptr, "prodml22:DeltaTimeStorageChanges"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage: - return soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, tag, id, (prodml22__RatioInitialToFinalWellboreStorage *const*)ptr, "prodml22:RatioInitialToFinalWellboreStorage"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet: - return soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, tag, id, (prodml22__FlowTestMeasurementSet *const*)ptr, "prodml22:FlowTestMeasurementSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent: - return soap_out_PointerToprodml22__WaterSampleComponent(soap, tag, id, (prodml22__WaterSampleComponent *const*)ptr, "prodml22:WaterSampleComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest: - return soap_out_PointerToprodml22__WaterAnalysisTest(soap, tag, id, (prodml22__WaterAnalysisTest *const*)ptr, "prodml22:WaterAnalysisTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest: - return soap_out_PointerToprodml22__NonHydrocarbonTest(soap, tag, id, (prodml22__NonHydrocarbonTest *const*)ptr, "prodml22:NonHydrocarbonTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest: - return soap_out_PointerToprodml22__InterfacialTensionTest(soap, tag, id, (prodml22__InterfacialTensionTest *const*)ptr, "prodml22:InterfacialTensionTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis: - return soap_out_PointerToprodml22__STOAnalysis(soap, tag, id, (prodml22__STOAnalysis *const*)ptr, "prodml22:STOAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest: - return soap_out_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag, id, (prodml22__MultipleContactMiscibilityTest *const*)ptr, "prodml22:MultipleContactMiscibilityTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest: - return soap_out_PointerToprodml22__SlimTubeTest(soap, tag, id, (prodml22__SlimTubeTest *const*)ptr, "prodml22:SlimTubeTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest: - return soap_out_PointerToprodml22__SwellingTest(soap, tag, id, (prodml22__SwellingTest *const*)ptr, "prodml22:SwellingTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest: - return soap_out_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag, id, (prodml22__VaporLiquidEquilibriumTest *const*)ptr, "prodml22:VaporLiquidEquilibriumTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest: - return soap_out_PointerToprodml22__OtherMeasurementTest(soap, tag, id, (prodml22__OtherMeasurementTest *const*)ptr, "prodml22:OtherMeasurementTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest: - return soap_out_PointerToprodml22__FluidSeparatorTest(soap, tag, id, (prodml22__FluidSeparatorTest *const*)ptr, "prodml22:FluidSeparatorTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest: - return soap_out_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag, id, (prodml22__ConstantVolumeDepletionTest *const*)ptr, "prodml22:ConstantVolumeDepletionTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest: - return soap_out_PointerToprodml22__DifferentialLiberationTest(soap, tag, id, (prodml22__DifferentialLiberationTest *const*)ptr, "prodml22:DifferentialLiberationTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest: - return soap_out_PointerToprodml22__SaturationTest(soap, tag, id, (prodml22__SaturationTest *const*)ptr, "prodml22:SaturationTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest: - return soap_out_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag, id, (prodml22__ConstantCompositionExpansionTest *const*)ptr, "prodml22:ConstantCompositionExpansionTest"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis: - return soap_out_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, id, (prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*)ptr, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation: - return soap_out_PointerToprodml22__SampleIntegrityAndPreparation(soap, tag, id, (prodml22__SampleIntegrityAndPreparation *const*)ptr, "prodml22:SampleIntegrityAndPreparation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind: - return soap_out_PointerToprodml22__SaturationKind(soap, tag, id, (prodml22__SaturationKind *const*)ptr, "prodml22:SaturationKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries: + return soap_out_PointerToprodml23__AngleBetweenBoundaries(soap, tag, id, (prodml23__AngleBetweenBoundaries *const*)ptr, "prodml23:AngleBetweenBoundaries"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut: + return soap_out_PointerToprodml23__DistanceToPinchOut(soap, tag, id, (prodml23__DistanceToPinchOut *const*)ptr, "prodml23:DistanceToPinchOut"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary: + return soap_out_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, id, (prodml23__DistanceMidPerforationsToBottomBoundary *const*)ptr, "prodml23:DistanceMidPerforationsToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength: + return soap_out_PointerToprodml23__PerforatedLength(soap, tag, id, (prodml23__PerforatedLength *const*)ptr, "prodml23:PerforatedLength"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel: + return soap_out_PointerToprodml23__ReservoirZoneSubModel(soap, tag, id, (prodml23__ReservoirZoneSubModel *const*)ptr, "prodml23:ReservoirZoneSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel: + return soap_out_PointerToprodml23__DistributedParametersSubModel(soap, tag, id, (prodml23__DistributedParametersSubModel *const*)ptr, "prodml23:DistributedParametersSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel: + return soap_out_PointerToprodml23__InternalFaultSubModel(soap, tag, id, (prodml23__InternalFaultSubModel *const*)ptr, "prodml23:InternalFaultSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel: + return soap_out_PointerToprodml23__SingleBoundarySubModel(soap, tag, id, (prodml23__SingleBoundarySubModel *const*)ptr, "prodml23:SingleBoundarySubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity: + return soap_out_PointerToprodml23__FaultConductivity(soap, tag, id, (prodml23__FaultConductivity *const*)ptr, "prodml23:FaultConductivity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness: + return soap_out_PointerToprodml23__Region2Thickness(soap, tag, id, (prodml23__Region2Thickness *const*)ptr, "prodml23:Region2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront: + return soap_out_PointerToprodml23__OrientationOfLinearFront(soap, tag, id, (prodml23__OrientationOfLinearFront *const*)ptr, "prodml23:OrientationOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface: + return soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, tag, id, (prodml23__DistanceToMobilityInterface *const*)ptr, "prodml23:DistanceToMobilityInterface"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio: + return soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, id, (prodml23__InnerToOuterZoneDiffusivityRatio *const*)ptr, "prodml23:InnerToOuterZoneDiffusivityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio: + return soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, tag, id, (prodml23__InnerToOuterZoneMobilityRatio *const*)ptr, "prodml23:InnerToOuterZoneMobilityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel: + return soap_out_PointerToprodml23__SingleFractureSubModel(soap, tag, id, (prodml23__SingleFractureSubModel *const*)ptr, "prodml23:SingleFractureSubModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore: + return soap_out_PointerToprodml23__FractureAngleToWellbore(soap, tag, id, (prodml23__FractureAngleToWellbore *const*)ptr, "prodml23:FractureAngleToWellbore"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures: + return soap_out_PointerToprodml23__NumberOfFractures(soap, tag, id, (prodml23__NumberOfFractures *const*)ptr, "prodml23:NumberOfFractures"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary: + return soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, tag, id, (prodml23__DistanceWellboreToBottomBoundary *const*)ptr, "prodml23:DistanceWellboreToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing: + return soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, tag, id, (prodml23__LengthHorizontalWellboreFlowing *const*)ptr, "prodml23:LengthHorizontalWellboreFlowing"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory: + return soap_out_PointerToprodml23__OrientationWellTrajectory(soap, tag, id, (prodml23__OrientationWellTrajectory *const*)ptr, "prodml23:OrientationWellTrajectory"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness: + return soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, id, (prodml23__MechanicalSkinRelativeToTotalThickness *const*)ptr, "prodml23:MechanicalSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness: + return soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, id, (prodml23__ConvergenceSkinRelativeToTotalThickness *const*)ptr, "prodml23:ConvergenceSkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary: + return soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(soap, tag, id, (prodml23__DistanceFractureToBottomBoundary *const*)ptr, "prodml23:DistanceFractureToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius: + return soap_out_PointerToprodml23__FractureRadius(soap, tag, id, (prodml23__FractureRadius *const*)ptr, "prodml23:FractureRadius"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane: + return soap_out_PointerToprodml23__OrientationOfFracturePlane(soap, tag, id, (prodml23__OrientationOfFracturePlane *const*)ptr, "prodml23:OrientationOfFracturePlane"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength: + return soap_out_PointerToprodml23__FractureHalfLength(soap, tag, id, (prodml23__FractureHalfLength *const*)ptr, "prodml23:FractureHalfLength"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness: + return soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, tag, id, (prodml23__SkinLayer2RelativeToTotalThickness *const*)ptr, "prodml23:SkinLayer2RelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness: + return soap_out_PointerToprodml23__Layer2Thickness(soap, tag, id, (prodml23__Layer2Thickness *const*)ptr, "prodml23:Layer2Thickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + return soap_out_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, id, (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*)ptr, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio: + return soap_out_PointerToprodml23__StorativityRatio(soap, tag, id, (prodml23__StorativityRatio *const*)ptr, "prodml23:StorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName: + return soap_out_PointerToprodml23__ModelName(soap, tag, id, (prodml23__ModelName *const*)ptr, "prodml23:ModelName"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1: + return soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, tag, id, (prodml23__OrientationOfNormalToBoundary1 *const*)ptr, "prodml23:OrientationOfNormalToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4: + return soap_out_PointerToprodml23__DistanceToBoundary4(soap, tag, id, (prodml23__DistanceToBoundary4 *const*)ptr, "prodml23:DistanceToBoundary4"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3: + return soap_out_PointerToprodml23__DistanceToBoundary3(soap, tag, id, (prodml23__DistanceToBoundary3 *const*)ptr, "prodml23:DistanceToBoundary3"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2: + return soap_out_PointerToprodml23__DistanceToBoundary2(soap, tag, id, (prodml23__DistanceToBoundary2 *const*)ptr, "prodml23:DistanceToBoundary2"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1: + return soap_out_PointerToprodml23__DistanceToBoundary1(soap, tag, id, (prodml23__DistanceToBoundary1 *const*)ptr, "prodml23:DistanceToBoundary1"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured: + return soap_out_PointerToprodml23__PoreVolumeMeasured(soap, tag, id, (prodml23__PoreVolumeMeasured *const*)ptr, "prodml23:PoreVolumeMeasured"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured: + return soap_out_PointerToprodml23__DrainageAreaMeasured(soap, tag, id, (prodml23__DrainageAreaMeasured *const*)ptr, "prodml23:DrainageAreaMeasured"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin: + return soap_out_PointerToprodml23__LeakSkin(soap, tag, id, (prodml23__LeakSkin *const*)ptr, "prodml23:LeakSkin"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges: + return soap_out_PointerToprodml23__DeltaTimeStorageChanges(soap, tag, id, (prodml23__DeltaTimeStorageChanges *const*)ptr, "prodml23:DeltaTimeStorageChanges"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage: + return soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, tag, id, (prodml23__RatioInitialToFinalWellboreStorage *const*)ptr, "prodml23:RatioInitialToFinalWellboreStorage"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet: + return soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, tag, id, (prodml23__FlowTestMeasurementSet *const*)ptr, "prodml23:FlowTestMeasurementSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent: + return soap_out_PointerToprodml23__WaterSampleComponent(soap, tag, id, (prodml23__WaterSampleComponent *const*)ptr, "prodml23:WaterSampleComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest: + return soap_out_PointerToprodml23__WaterAnalysisTest(soap, tag, id, (prodml23__WaterAnalysisTest *const*)ptr, "prodml23:WaterAnalysisTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest: + return soap_out_PointerToprodml23__NonHydrocarbonTest(soap, tag, id, (prodml23__NonHydrocarbonTest *const*)ptr, "prodml23:NonHydrocarbonTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest: + return soap_out_PointerToprodml23__InterfacialTensionTest(soap, tag, id, (prodml23__InterfacialTensionTest *const*)ptr, "prodml23:InterfacialTensionTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis: + return soap_out_PointerToprodml23__STOAnalysis(soap, tag, id, (prodml23__STOAnalysis *const*)ptr, "prodml23:STOAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest: + return soap_out_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag, id, (prodml23__MultipleContactMiscibilityTest *const*)ptr, "prodml23:MultipleContactMiscibilityTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest: + return soap_out_PointerToprodml23__SlimTubeTest(soap, tag, id, (prodml23__SlimTubeTest *const*)ptr, "prodml23:SlimTubeTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest: + return soap_out_PointerToprodml23__SwellingTest(soap, tag, id, (prodml23__SwellingTest *const*)ptr, "prodml23:SwellingTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest: + return soap_out_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag, id, (prodml23__VaporLiquidEquilibriumTest *const*)ptr, "prodml23:VaporLiquidEquilibriumTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest: + return soap_out_PointerToprodml23__OtherMeasurementTest(soap, tag, id, (prodml23__OtherMeasurementTest *const*)ptr, "prodml23:OtherMeasurementTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest: + return soap_out_PointerToprodml23__FluidSeparatorTest(soap, tag, id, (prodml23__FluidSeparatorTest *const*)ptr, "prodml23:FluidSeparatorTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest: + return soap_out_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag, id, (prodml23__ConstantVolumeDepletionTest *const*)ptr, "prodml23:ConstantVolumeDepletionTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest: + return soap_out_PointerToprodml23__DifferentialLiberationTest(soap, tag, id, (prodml23__DifferentialLiberationTest *const*)ptr, "prodml23:DifferentialLiberationTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest: + return soap_out_PointerToprodml23__SaturationTest(soap, tag, id, (prodml23__SaturationTest *const*)ptr, "prodml23:SaturationTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest: + return soap_out_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag, id, (prodml23__ConstantCompositionExpansionTest *const*)ptr, "prodml23:ConstantCompositionExpansionTest"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis: + return soap_out_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, id, (prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*)ptr, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation: + return soap_out_PointerToprodml23__SampleIntegrityAndPreparation(soap, tag, id, (prodml23__SampleIntegrityAndPreparation *const*)ptr, "prodml23:SampleIntegrityAndPreparation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind: + return soap_out_PointerToprodml23__SaturationKind(soap, tag, id, (prodml23__SaturationKind *const*)ptr, "prodml23:SaturationKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePressureKind: return soap_out_PointerToeml23__ReferencePressureKind(soap, tag, id, (eml23__ReferencePressureKind *const*)ptr, "eml23:ReferencePressureKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateSquaredUomExt: @@ -21238,44 +21238,44 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_PointerToeml23__IntegerLatticeArray(soap, tag, id, (eml23__IntegerLatticeArray *const*)ptr, "eml23:IntegerLatticeArray"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ParametricLineIntersections: return soap_out_PointerToresqml22__ParametricLineIntersections(soap, tag, id, (resqml22__ParametricLineIntersections *const*)ptr, "resqml22:ParametricLineIntersections"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold: - return soap_out_PointerToprodml22__TimeSeriesThreshold(soap, tag, id, (prodml22__TimeSeriesThreshold *const*)ptr, "prodml22:TimeSeriesThreshold"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime: - return soap_out_PointerToprodml22__EndpointDateTime(soap, tag, id, (prodml22__EndpointDateTime *const*)ptr, "prodml22:EndpointDateTime"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue: - return soap_out_PointerToprodml22__AbstractValue(soap, tag, id, (prodml22__AbstractValue *const*)ptr, "prodml22:AbstractValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct: - return soap_out_PointerToprodml22__KeywordValueStruct(soap, tag, id, (prodml22__KeywordValueStruct *const*)ptr, "prodml22:KeywordValueStruct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample: - return soap_out_PointerToprodml22__TimeSeriesStringSample(soap, tag, id, (prodml22__TimeSeriesStringSample *const*)ptr, "prodml22:TimeSeriesStringSample"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample: - return soap_out_PointerToprodml22__TimeSeriesDoubleSample(soap, tag, id, (prodml22__TimeSeriesDoubleSample *const*)ptr, "prodml22:TimeSeriesDoubleSample"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork: - return soap_out_PointerToprodml22__ProductFlowNetwork(soap, tag, id, (prodml22__ProductFlowNetwork *const*)ptr, "prodml22:ProductFlowNetwork"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference: - return soap_out_PointerToprodml22__ProductFlowExternalReference(soap, tag, id, (prodml22__ProductFlowExternalReference *const*)ptr, "prodml22:ProductFlowExternalReference"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString: - return soap_out_PointerToprodml22__KindQualifiedString(soap, tag, id, (prodml22__KindQualifiedString *const*)ptr, "prodml22:KindQualifiedString"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility: - return soap_out_PointerToprodml22__ProductVolumeFacility(soap, tag, id, (prodml22__ProductVolumeFacility *const*)ptr, "prodml22:ProductVolumeFacility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold: + return soap_out_PointerToprodml23__TimeSeriesThreshold(soap, tag, id, (prodml23__TimeSeriesThreshold *const*)ptr, "prodml23:TimeSeriesThreshold"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime: + return soap_out_PointerToprodml23__EndpointDateTime(soap, tag, id, (prodml23__EndpointDateTime *const*)ptr, "prodml23:EndpointDateTime"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue: + return soap_out_PointerToprodml23__AbstractValue(soap, tag, id, (prodml23__AbstractValue *const*)ptr, "prodml23:AbstractValue"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct: + return soap_out_PointerToprodml23__KeywordValueStruct(soap, tag, id, (prodml23__KeywordValueStruct *const*)ptr, "prodml23:KeywordValueStruct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample: + return soap_out_PointerToprodml23__TimeSeriesStringSample(soap, tag, id, (prodml23__TimeSeriesStringSample *const*)ptr, "prodml23:TimeSeriesStringSample"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample: + return soap_out_PointerToprodml23__TimeSeriesDoubleSample(soap, tag, id, (prodml23__TimeSeriesDoubleSample *const*)ptr, "prodml23:TimeSeriesDoubleSample"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork: + return soap_out_PointerToprodml23__ProductFlowNetwork(soap, tag, id, (prodml23__ProductFlowNetwork *const*)ptr, "prodml23:ProductFlowNetwork"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference: + return soap_out_PointerToprodml23__ProductFlowExternalReference(soap, tag, id, (prodml23__ProductFlowExternalReference *const*)ptr, "prodml23:ProductFlowExternalReference"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString: + return soap_out_PointerToprodml23__KindQualifiedString(soap, tag, id, (prodml23__KindQualifiedString *const*)ptr, "prodml23:KindQualifiedString"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility: + return soap_out_PointerToprodml23__ProductVolumeFacility(soap, tag, id, (prodml23__ProductVolumeFacility *const*)ptr, "prodml23:ProductVolumeFacility"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferenceCondition: return soap_out_PointerToeml23__ReferenceCondition(soap, tag, id, (eml23__ReferenceCondition *const*)ptr, "eml23:ReferenceCondition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod: - return soap_out_PointerToprodml22__CalculationMethod(soap, tag, id, (prodml22__CalculationMethod *const*)ptr, "prodml22:CalculationMethod"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime: - return soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, tag, id, (prodml22__EndpointQualifiedDateTime *const*)ptr, "prodml22:EndpointQualifiedDateTime"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount: - return soap_out_PointerToprodml22__IntegerQualifiedCount(soap, tag, id, (prodml22__IntegerQualifiedCount *const*)ptr, "prodml22:IntegerQualifiedCount"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition: - return soap_out_PointerToprodml22__FluidSampleAcquisition(soap, tag, id, (prodml22__FluidSampleAcquisition *const*)ptr, "prodml22:FluidSampleAcquisition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification: - return soap_out_PointerToprodml22__SampleRecombinationSpecification(soap, tag, id, (prodml22__SampleRecombinationSpecification *const*)ptr, "prodml22:SampleRecombinationSpecification"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource: - return soap_out_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, tag, id, (prodml22__FluidSampleAcquisitionJobSource *const*)ptr, "prodml22:FluidSampleAcquisitionJobSource"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent: - return soap_out_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag, id, (prodml22__FluidSampleChainOfCustodyEvent *const*)ptr, "prodml22:FluidSampleChainOfCustodyEvent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt: - return soap_out_PointerToprodml22__FluidSampleKindExt(soap, tag, id, (std::string *const*)ptr, "prodml22:FluidSampleKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod: + return soap_out_PointerToprodml23__CalculationMethod(soap, tag, id, (prodml23__CalculationMethod *const*)ptr, "prodml23:CalculationMethod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime: + return soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, tag, id, (prodml23__EndpointQualifiedDateTime *const*)ptr, "prodml23:EndpointQualifiedDateTime"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount: + return soap_out_PointerToprodml23__IntegerQualifiedCount(soap, tag, id, (prodml23__IntegerQualifiedCount *const*)ptr, "prodml23:IntegerQualifiedCount"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition: + return soap_out_PointerToprodml23__FluidSampleAcquisition(soap, tag, id, (prodml23__FluidSampleAcquisition *const*)ptr, "prodml23:FluidSampleAcquisition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification: + return soap_out_PointerToprodml23__SampleRecombinationSpecification(soap, tag, id, (prodml23__SampleRecombinationSpecification *const*)ptr, "prodml23:SampleRecombinationSpecification"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource: + return soap_out_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, tag, id, (prodml23__FluidSampleAcquisitionJobSource *const*)ptr, "prodml23:FluidSampleAcquisitionJobSource"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent: + return soap_out_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag, id, (prodml23__FluidSampleChainOfCustodyEvent *const*)ptr, "prodml23:FluidSampleChainOfCustodyEvent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt: + return soap_out_PointerToprodml23__FluidSampleKindExt(soap, tag, id, (std::string *const*)ptr, "prodml23:FluidSampleKindExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerPressureMeasureExt: return soap_out_PointerToeml23__VolumePerPressureMeasureExt(soap, tag, id, (eml23__VolumePerPressureMeasureExt *const*)ptr, "eml23:VolumePerPressureMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__TimePerVolumeMeasureExt: @@ -21284,108 +21284,108 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_PointerToeml23__PermeabilityRockMeasureExt(soap, tag, id, (eml23__PermeabilityRockMeasureExt *const*)ptr, "eml23:PermeabilityRockMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PermeabilityLengthMeasureExt: return soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, tag, id, (eml23__PermeabilityLengthMeasureExt *const*)ptr, "eml23:PermeabilityLengthMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType: - return soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, tag, id, (prodml22__WellboreStorageMechanismType *const*)ptr, "prodml22:WellboreStorageMechanismType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle: - return soap_out_PointerToprodml22__WellboreDeviationAngle(soap, tag, id, (prodml22__WellboreDeviationAngle *const*)ptr, "prodml22:WellboreDeviationAngle"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity: - return soap_out_PointerToprodml22__FluidDensity(soap, tag, id, (prodml22__FluidDensity *const*)ptr, "prodml22:FluidDensity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter: - return soap_out_PointerToprodml22__TubingInteralDiameter(soap, tag, id, (prodml22__TubingInteralDiameter *const*)ptr, "prodml22:TubingInteralDiameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility: - return soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, tag, id, (prodml22__WellboreFluidCompressibility *const*)ptr, "prodml22:WellboreFluidCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume: - return soap_out_PointerToprodml22__WellboreVolume(soap, tag, id, (prodml22__WellboreVolume *const*)ptr, "prodml22:WellboreVolume"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient: - return soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, tag, id, (prodml22__WellboreStorageCoefficient *const*)ptr, "prodml22:WellboreStorageCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius: - return soap_out_PointerToprodml22__WellboreRadius(soap, tag, id, (prodml22__WellboreRadius *const*)ptr, "prodml22:WellboreRadius"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType: - return soap_out_PointerToprodml22__LowerBoundaryType(soap, tag, id, (prodml22__LowerBoundaryType *const*)ptr, "prodml22:LowerBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType: - return soap_out_PointerToprodml22__UpperBoundaryType(soap, tag, id, (prodml22__UpperBoundaryType *const*)ptr, "prodml22:UpperBoundaryType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection: - return soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, tag, id, (prodml22__OrientationOfAnisotropyXDirection *const*)ptr, "prodml22:OrientationOfAnisotropyXDirection"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy: - return soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, tag, id, (prodml22__HorizontalAnisotropyKxToKy *const*)ptr, "prodml22:HorizontalAnisotropyKxToKy"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr: - return soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, tag, id, (prodml22__VerticalAnisotropyKvToKr *const*)ptr, "prodml22:VerticalAnisotropyKvToKr"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure: - return soap_out_PointerToprodml22__AveragePressure(soap, tag, id, (prodml22__AveragePressure *const*)ptr, "prodml22:AveragePressure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD: - return soap_out_PointerToprodml22__PressureDatumTVD(soap, tag, id, (prodml22__PressureDatumTVD *const*)ptr, "prodml22:PressureDatumTVD"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure: - return soap_out_PointerToprodml22__InitialPressure(soap, tag, id, (prodml22__InitialPressure *const*)ptr, "prodml22:InitialPressure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct: - return soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, tag, id, (prodml22__PermeabilityThicknessProduct *const*)ptr, "prodml22:PermeabilityThicknessProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown: - return soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, tag, id, (prodml22__RatioDpSkinToTotalDrawdown *const*)ptr, "prodml22:RatioDpSkinToTotalDrawdown"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin: - return soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, tag, id, (prodml22__DeltaPressureTotalSkin *const*)ptr, "prodml22:DeltaPressureTotalSkin"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor: - return soap_out_PointerToprodml22__RateDependentSkinFactor(soap, tag, id, (prodml22__RateDependentSkinFactor *const*)ptr, "prodml22:RateDependentSkinFactor"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness: - return soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, tag, id, (prodml22__SkinRelativeToTotalThickness *const*)ptr, "prodml22:SkinRelativeToTotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation: - return soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, tag, id, (prodml22__PoreVolumeOfInvestigation *const*)ptr, "prodml22:PoreVolumeOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation: - return soap_out_PointerToprodml22__RadiusOfInvestigation(soap, tag, id, (prodml22__RadiusOfInvestigation *const*)ptr, "prodml22:RadiusOfInvestigation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData: - return soap_out_PointerToprodml22__OutputFlowData(soap, tag, id, (prodml22__OutputFlowData *const*)ptr, "prodml22:OutputFlowData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput: - return soap_out_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag, id, (prodml22__AbstractDeconvolutionOutput *const*)ptr, "prodml22:AbstractDeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData: - return soap_out_PointerToprodml22__DeconvolvedFlowData(soap, tag, id, (prodml22__DeconvolvedFlowData *const*)ptr, "prodml22:DeconvolvedFlowData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData: - return soap_out_PointerToprodml22__AbstractFlowTestData(soap, tag, id, (prodml22__AbstractFlowTestData *const*)ptr, "prodml22:AbstractFlowTestData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis: - return soap_out_PointerToprodml22__SpecializedAnalysis(soap, tag, id, (prodml22__SpecializedAnalysis *const*)ptr, "prodml22:SpecializedAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory: - return soap_out_PointerToprodml22__AbstractRateHistory(soap, tag, id, (prodml22__AbstractRateHistory *const*)ptr, "prodml22:AbstractRateHistory"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis: - return soap_out_PointerToprodml22__LogLogAnalysis(soap, tag, id, (prodml22__LogLogAnalysis *const*)ptr, "prodml22:LogLogAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType: + return soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, tag, id, (prodml23__WellboreStorageMechanismType *const*)ptr, "prodml23:WellboreStorageMechanismType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle: + return soap_out_PointerToprodml23__WellboreDeviationAngle(soap, tag, id, (prodml23__WellboreDeviationAngle *const*)ptr, "prodml23:WellboreDeviationAngle"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity: + return soap_out_PointerToprodml23__FluidDensity(soap, tag, id, (prodml23__FluidDensity *const*)ptr, "prodml23:FluidDensity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter: + return soap_out_PointerToprodml23__TubingInteralDiameter(soap, tag, id, (prodml23__TubingInteralDiameter *const*)ptr, "prodml23:TubingInteralDiameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility: + return soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, tag, id, (prodml23__WellboreFluidCompressibility *const*)ptr, "prodml23:WellboreFluidCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume: + return soap_out_PointerToprodml23__WellboreVolume(soap, tag, id, (prodml23__WellboreVolume *const*)ptr, "prodml23:WellboreVolume"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient: + return soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, tag, id, (prodml23__WellboreStorageCoefficient *const*)ptr, "prodml23:WellboreStorageCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius: + return soap_out_PointerToprodml23__WellboreRadius(soap, tag, id, (prodml23__WellboreRadius *const*)ptr, "prodml23:WellboreRadius"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType: + return soap_out_PointerToprodml23__LowerBoundaryType(soap, tag, id, (prodml23__LowerBoundaryType *const*)ptr, "prodml23:LowerBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType: + return soap_out_PointerToprodml23__UpperBoundaryType(soap, tag, id, (prodml23__UpperBoundaryType *const*)ptr, "prodml23:UpperBoundaryType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection: + return soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, tag, id, (prodml23__OrientationOfAnisotropyXDirection *const*)ptr, "prodml23:OrientationOfAnisotropyXDirection"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy: + return soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, tag, id, (prodml23__HorizontalAnisotropyKxToKy *const*)ptr, "prodml23:HorizontalAnisotropyKxToKy"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr: + return soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, tag, id, (prodml23__VerticalAnisotropyKvToKr *const*)ptr, "prodml23:VerticalAnisotropyKvToKr"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure: + return soap_out_PointerToprodml23__AveragePressure(soap, tag, id, (prodml23__AveragePressure *const*)ptr, "prodml23:AveragePressure"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD: + return soap_out_PointerToprodml23__PressureDatumTVD(soap, tag, id, (prodml23__PressureDatumTVD *const*)ptr, "prodml23:PressureDatumTVD"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure: + return soap_out_PointerToprodml23__InitialPressure(soap, tag, id, (prodml23__InitialPressure *const*)ptr, "prodml23:InitialPressure"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct: + return soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, tag, id, (prodml23__PermeabilityThicknessProduct *const*)ptr, "prodml23:PermeabilityThicknessProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown: + return soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, tag, id, (prodml23__RatioDpSkinToTotalDrawdown *const*)ptr, "prodml23:RatioDpSkinToTotalDrawdown"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin: + return soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, tag, id, (prodml23__DeltaPressureTotalSkin *const*)ptr, "prodml23:DeltaPressureTotalSkin"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor: + return soap_out_PointerToprodml23__RateDependentSkinFactor(soap, tag, id, (prodml23__RateDependentSkinFactor *const*)ptr, "prodml23:RateDependentSkinFactor"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness: + return soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, tag, id, (prodml23__SkinRelativeToTotalThickness *const*)ptr, "prodml23:SkinRelativeToTotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation: + return soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, tag, id, (prodml23__PoreVolumeOfInvestigation *const*)ptr, "prodml23:PoreVolumeOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation: + return soap_out_PointerToprodml23__RadiusOfInvestigation(soap, tag, id, (prodml23__RadiusOfInvestigation *const*)ptr, "prodml23:RadiusOfInvestigation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData: + return soap_out_PointerToprodml23__OutputFlowData(soap, tag, id, (prodml23__OutputFlowData *const*)ptr, "prodml23:OutputFlowData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput: + return soap_out_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag, id, (prodml23__AbstractDeconvolutionOutput *const*)ptr, "prodml23:AbstractDeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData: + return soap_out_PointerToprodml23__DeconvolvedFlowData(soap, tag, id, (prodml23__DeconvolvedFlowData *const*)ptr, "prodml23:DeconvolvedFlowData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData: + return soap_out_PointerToprodml23__AbstractFlowTestData(soap, tag, id, (prodml23__AbstractFlowTestData *const*)ptr, "prodml23:AbstractFlowTestData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis: + return soap_out_PointerToprodml23__SpecializedAnalysis(soap, tag, id, (prodml23__SpecializedAnalysis *const*)ptr, "prodml23:SpecializedAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory: + return soap_out_PointerToprodml23__AbstractRateHistory(soap, tag, id, (prodml23__AbstractRateHistory *const*)ptr, "prodml23:AbstractRateHistory"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis: + return soap_out_PointerToprodml23__LogLogAnalysis(soap, tag, id, (prodml23__LogLogAnalysis *const*)ptr, "prodml23:LogLogAnalysis"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerTimeMeasure: return soap_out_PointerToeml23__PressurePerTimeMeasure(soap, tag, id, (eml23__PressurePerTimeMeasure *const*)ptr, "eml23:PressurePerTimeMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval: - return soap_out_PointerToprodml22__InterferingFlowTestInterval(soap, tag, id, (prodml22__InterferingFlowTestInterval *const*)ptr, "prodml22:InterferingFlowTestInterval"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters: - return soap_out_PointerToprodml22__CompressibilityParameters(soap, tag, id, (prodml22__CompressibilityParameters *const*)ptr, "prodml22:CompressibilityParameters"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis: - return soap_out_PointerToprodml22__AbstractAnalysis(soap, tag, id, (prodml22__AbstractAnalysis *const*)ptr, "prodml22:AbstractAnalysis"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied: - return soap_out_PointerToprodml22__PseudoPressureEffectApplied(soap, tag, id, (prodml22__PseudoPressureEffectApplied *const*)ptr, "prodml22:PseudoPressureEffectApplied"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel: - return soap_out_PointerToprodml22__LayerModel(soap, tag, id, (prodml22__LayerModel *const*)ptr, "prodml22:LayerModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel: - return soap_out_PointerToprodml22__WellboreBaseModel(soap, tag, id, (prodml22__WellboreBaseModel *const*)ptr, "prodml22:WellboreBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput: - return soap_out_PointerToprodml22__DeconvolutionOutput(soap, tag, id, (prodml22__DeconvolutionOutput *const*)ptr, "prodml22:DeconvolutionOutput"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel: - return soap_out_PointerToprodml22__Channel(soap, tag, id, (prodml22__Channel *const*)ptr, "prodml22:Channel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind: - return soap_out_PointerToprodml22__FluidPhaseKind(soap, tag, id, (prodml22__FluidPhaseKind *const*)ptr, "prodml22:FluidPhaseKind"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState: - return soap_out_PointerToprodml22__ReservoirLifeCycleState(soap, tag, id, (prodml22__ReservoirLifeCycleState *const*)ptr, "prodml22:ReservoirLifeCycleState"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant: - return soap_out_PointerToprodml22__SampleContaminant(soap, tag, id, (prodml22__SampleContaminant *const*)ptr, "prodml22:SampleContaminant"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport: - return soap_out_PointerToprodml22__FluidAnalysisReport(soap, tag, id, (prodml22__FluidAnalysisReport *const*)ptr, "prodml22:FluidAnalysisReport"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters: + return soap_out_PointerToprodml23__CompressibilityParameters(soap, tag, id, (prodml23__CompressibilityParameters *const*)ptr, "prodml23:CompressibilityParameters"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis: + return soap_out_PointerToprodml23__AbstractAnalysis(soap, tag, id, (prodml23__AbstractAnalysis *const*)ptr, "prodml23:AbstractAnalysis"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval: + return soap_out_PointerToprodml23__InterferingFlowTestInterval(soap, tag, id, (prodml23__InterferingFlowTestInterval *const*)ptr, "prodml23:InterferingFlowTestInterval"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied: + return soap_out_PointerToprodml23__PseudoPressureEffectApplied(soap, tag, id, (prodml23__PseudoPressureEffectApplied *const*)ptr, "prodml23:PseudoPressureEffectApplied"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel: + return soap_out_PointerToprodml23__LayerModel(soap, tag, id, (prodml23__LayerModel *const*)ptr, "prodml23:LayerModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel: + return soap_out_PointerToprodml23__WellboreBaseModel(soap, tag, id, (prodml23__WellboreBaseModel *const*)ptr, "prodml23:WellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput: + return soap_out_PointerToprodml23__DeconvolutionOutput(soap, tag, id, (prodml23__DeconvolutionOutput *const*)ptr, "prodml23:DeconvolutionOutput"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel: + return soap_out_PointerToprodml23__Channel(soap, tag, id, (prodml23__Channel *const*)ptr, "prodml23:Channel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind: + return soap_out_PointerToprodml23__FluidPhaseKind(soap, tag, id, (prodml23__FluidPhaseKind *const*)ptr, "prodml23:FluidPhaseKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState: + return soap_out_PointerToprodml23__ReservoirLifeCycleState(soap, tag, id, (prodml23__ReservoirLifeCycleState *const*)ptr, "prodml23:ReservoirLifeCycleState"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant: + return soap_out_PointerToprodml23__SampleContaminant(soap, tag, id, (prodml23__SampleContaminant *const*)ptr, "prodml23:SampleContaminant"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport: + return soap_out_PointerToprodml23__FluidAnalysisReport(soap, tag, id, (prodml23__FluidAnalysisReport *const*)ptr, "prodml23:FluidAnalysisReport"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasureExt: return soap_out_PointerToeml23__MolecularWeightMeasureExt(soap, tag, id, (eml23__MolecularWeightMeasureExt *const*)ptr, "eml23:MolecularWeightMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerMassMeasure: return soap_out_PointerToeml23__EnergyPerMassMeasure(soap, tag, id, (eml23__EnergyPerMassMeasure *const*)ptr, "eml23:EnergyPerMassMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus: - return soap_out_PointerToprodml22__ValueStatus(soap, tag, id, (prodml22__ValueStatus *const*)ptr, "prodml22:ValueStatus"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel: - return soap_out_PointerToprodml22__FluidCharacterizationModel(soap, tag, id, (prodml22__FluidCharacterizationModel *const*)ptr, "prodml22:FluidCharacterizationModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource: - return soap_out_PointerToprodml22__FluidCharacterizationSource(soap, tag, id, (prodml22__FluidCharacterizationSource *const*)ptr, "prodml22:FluidCharacterizationSource"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet: - return soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, tag, id, (prodml22__BinaryInteractionCoefficientSet *const*)ptr, "prodml22:BinaryInteractionCoefficientSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet: - return soap_out_PointerToprodml22__ComponentPropertySet(soap, tag, id, (prodml22__ComponentPropertySet *const*)ptr, "prodml22:ComponentPropertySet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule: - return soap_out_PointerToprodml22__MixingRule(soap, tag, id, (prodml22__MixingRule *const*)ptr, "prodml22:MixingRule"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus: + return soap_out_PointerToprodml23__ValueStatus(soap, tag, id, (prodml23__ValueStatus *const*)ptr, "prodml23:ValueStatus"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel: + return soap_out_PointerToprodml23__FluidCharacterizationModel(soap, tag, id, (prodml23__FluidCharacterizationModel *const*)ptr, "prodml23:FluidCharacterizationModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource: + return soap_out_PointerToprodml23__FluidCharacterizationSource(soap, tag, id, (prodml23__FluidCharacterizationSource *const*)ptr, "prodml23:FluidCharacterizationSource"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet: + return soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, tag, id, (prodml23__BinaryInteractionCoefficientSet *const*)ptr, "prodml23:BinaryInteractionCoefficientSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet: + return soap_out_PointerToprodml23__ComponentPropertySet(soap, tag, id, (prodml23__ComponentPropertySet *const*)ptr, "prodml23:ComponentPropertySet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule: + return soap_out_PointerToprodml23__MixingRule(soap, tag, id, (prodml23__MixingRule *const*)ptr, "prodml23:MixingRule"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AbstractGraphicalInformation: return soap_out_PointerToeml23__AbstractGraphicalInformation(soap, tag, id, (eml23__AbstractGraphicalInformation *const*)ptr, "eml23:AbstractGraphicalInformation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__FailingRule: @@ -21724,186 +21724,186 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_PointerToeml23__AbstractFloatingPointArray(soap, tag, id, (eml23__AbstractFloatingPointArray *const*)ptr, "eml23:AbstractFloatingPointArray"); case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__Point3d: return soap_out_PointerToresqml22__Point3d(soap, tag, id, (resqml22__Point3d *const*)ptr, "resqml22:Point3d"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity: - return soap_out_PointerToprodml22__EndpointQuantity(soap, tag, id, (prodml22__EndpointQuantity *const*)ptr, "prodml22:EndpointQuantity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate: - return soap_out_PointerToprodml22__RelativeCoordinate(soap, tag, id, (prodml22__RelativeCoordinate *const*)ptr, "prodml22:RelativeCoordinate"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort: - return soap_out_PointerToprodml22__ProductFlowPort(soap, tag, id, (prodml22__ProductFlowPort *const*)ptr, "prodml22:ProductFlowPort"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty: - return soap_out_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag, id, (prodml22__ProductFlowExpectedUnitProperty *const*)ptr, "prodml22:ProductFlowExpectedUnitProperty"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode: - return soap_out_PointerToprodml22__ConnectedNode(soap, tag, id, (prodml22__ConnectedNode *const*)ptr, "prodml22:ConnectedNode"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected: - return soap_out_PointerToprodml22__ProductFlowQualifierExpected(soap, tag, id, (prodml22__ProductFlowQualifierExpected *const*)ptr, "prodml22:ProductFlowQualifierExpected"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier: - return soap_out_PointerToprodml22__ExpectedFlowQualifier(soap, tag, id, (prodml22__ExpectedFlowQualifier *const*)ptr, "prodml22:ExpectedFlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType: - return soap_out_PointerToprodml22__GeneralMeasureType(soap, tag, id, (prodml22__GeneralMeasureType *const*)ptr, "prodml22:GeneralMeasureType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject: - return soap_out_PointerToprodml22__AbstractRelatedFacilityObject(soap, tag, id, (prodml22__AbstractRelatedFacilityObject *const*)ptr, "prodml22:AbstractRelatedFacilityObject"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod: - return soap_out_PointerToprodml22__ProductVolumePeriod(soap, tag, id, (prodml22__ProductVolumePeriod *const*)ptr, "prodml22:ProductVolumePeriod"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow: - return soap_out_PointerToprodml22__AbstractRefProductFlow(soap, tag, id, (prodml22__AbstractRefProductFlow *const*)ptr, "prodml22:AbstractRefProductFlow"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction: - return soap_out_PointerToprodml22__NonNegativeFraction(soap, tag, id, (float *const*)ptr, "prodml22:NonNegativeFraction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass: - return soap_out_PointerToprodml22__AbstractDateTimeClass(soap, tag, id, (prodml22__AbstractDateTimeClass *const*)ptr, "prodml22:AbstractDateTimeClass"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet: - return soap_out_PointerToprodml22__ProductVolumeBalanceSet(soap, tag, id, (prodml22__ProductVolumeBalanceSet *const*)ptr, "prodml22:ProductVolumeBalanceSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert: - return soap_out_PointerToprodml22__ProductVolumeAlert(soap, tag, id, (prodml22__ProductVolumeAlert *const*)ptr, "prodml22:ProductVolumeAlert"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData: - return soap_out_PointerToprodml22__AbstractMeasureData(soap, tag, id, (prodml22__AbstractMeasureData *const*)ptr, "prodml22:AbstractMeasureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition: - return soap_out_PointerToprodml22__CurveDefinition(soap, tag, id, (prodml22__CurveDefinition *const*)ptr, "prodml22:CurveDefinition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue: - return soap_out_PointerToprodml22__ProductVolumeParameterValue(soap, tag, id, (prodml22__ProductVolumeParameterValue *const*)ptr, "prodml22:ProductVolumeParameterValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind: - return soap_out_PointerToprodml22__ReportingDurationKind(soap, tag, id, (prodml22__ReportingDurationKind *const*)ptr, "prodml22:ReportingDurationKind"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier: - return soap_out_PointerToprodml22__ProdmlRelativeIdentifier(soap, tag, id, (std::string *const*)ptr, "prodml22:ProdmlRelativeIdentifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct: - return soap_out_PointerToprodml22__ProductVolumeProduct(soap, tag, id, (prodml22__ProductVolumeProduct *const*)ptr, "prodml22:ProductVolumeProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility: - return soap_out_PointerToprodml22__ProductVolumeRelatedFacility(soap, tag, id, (prodml22__ProductVolumeRelatedFacility *const*)ptr, "prodml22:ProductVolumeRelatedFacility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier: - return soap_out_PointerToprodml22__FlowSubQualifier(soap, tag, id, (prodml22__FlowSubQualifier *const*)ptr, "prodml22:FlowSubQualifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier: - return soap_out_PointerToprodml22__FlowQualifier(soap, tag, id, (prodml22__FlowQualifier *const*)ptr, "prodml22:FlowQualifier"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType: - return soap_out_PointerToprodml22__ProductFlowPortType(soap, tag, id, (prodml22__ProductFlowPortType *const*)ptr, "prodml22:ProductFlowPortType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment: - return soap_out_PointerToprodml22__DatedComment(soap, tag, id, (prodml22__DatedComment *const*)ptr, "prodml22:DatedComment"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet: - return soap_out_PointerToprodml22__ProductVolumeParameterSet(soap, tag, id, (prodml22__ProductVolumeParameterSet *const*)ptr, "prodml22:ProductVolumeParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow: - return soap_out_PointerToprodml22__ProductVolumeFlow(soap, tag, id, (prodml22__ProductVolumeFlow *const*)ptr, "prodml22:ProductVolumeFlow"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod: - return soap_out_PointerToprodml22__WellOperationMethod(soap, tag, id, (prodml22__WellOperationMethod *const*)ptr, "prodml22:WellOperationMethod"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid: - return soap_out_PointerToprodml22__WellFluid(soap, tag, id, (prodml22__WellFluid *const*)ptr, "prodml22:WellFluid"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity: + return soap_out_PointerToprodml23__EndpointQuantity(soap, tag, id, (prodml23__EndpointQuantity *const*)ptr, "prodml23:EndpointQuantity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate: + return soap_out_PointerToprodml23__RelativeCoordinate(soap, tag, id, (prodml23__RelativeCoordinate *const*)ptr, "prodml23:RelativeCoordinate"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort: + return soap_out_PointerToprodml23__ProductFlowPort(soap, tag, id, (prodml23__ProductFlowPort *const*)ptr, "prodml23:ProductFlowPort"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty: + return soap_out_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag, id, (prodml23__ProductFlowExpectedUnitProperty *const*)ptr, "prodml23:ProductFlowExpectedUnitProperty"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode: + return soap_out_PointerToprodml23__ConnectedNode(soap, tag, id, (prodml23__ConnectedNode *const*)ptr, "prodml23:ConnectedNode"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected: + return soap_out_PointerToprodml23__ProductFlowQualifierExpected(soap, tag, id, (prodml23__ProductFlowQualifierExpected *const*)ptr, "prodml23:ProductFlowQualifierExpected"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier: + return soap_out_PointerToprodml23__ExpectedFlowQualifier(soap, tag, id, (prodml23__ExpectedFlowQualifier *const*)ptr, "prodml23:ExpectedFlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType: + return soap_out_PointerToprodml23__GeneralMeasureType(soap, tag, id, (prodml23__GeneralMeasureType *const*)ptr, "prodml23:GeneralMeasureType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject: + return soap_out_PointerToprodml23__AbstractRelatedFacilityObject(soap, tag, id, (prodml23__AbstractRelatedFacilityObject *const*)ptr, "prodml23:AbstractRelatedFacilityObject"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod: + return soap_out_PointerToprodml23__ProductVolumePeriod(soap, tag, id, (prodml23__ProductVolumePeriod *const*)ptr, "prodml23:ProductVolumePeriod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow: + return soap_out_PointerToprodml23__AbstractRefProductFlow(soap, tag, id, (prodml23__AbstractRefProductFlow *const*)ptr, "prodml23:AbstractRefProductFlow"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction: + return soap_out_PointerToprodml23__NonNegativeFraction(soap, tag, id, (float *const*)ptr, "prodml23:NonNegativeFraction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass: + return soap_out_PointerToprodml23__AbstractDateTimeClass(soap, tag, id, (prodml23__AbstractDateTimeClass *const*)ptr, "prodml23:AbstractDateTimeClass"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet: + return soap_out_PointerToprodml23__ProductVolumeBalanceSet(soap, tag, id, (prodml23__ProductVolumeBalanceSet *const*)ptr, "prodml23:ProductVolumeBalanceSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert: + return soap_out_PointerToprodml23__ProductVolumeAlert(soap, tag, id, (prodml23__ProductVolumeAlert *const*)ptr, "prodml23:ProductVolumeAlert"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData: + return soap_out_PointerToprodml23__AbstractMeasureData(soap, tag, id, (prodml23__AbstractMeasureData *const*)ptr, "prodml23:AbstractMeasureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition: + return soap_out_PointerToprodml23__CurveDefinition(soap, tag, id, (prodml23__CurveDefinition *const*)ptr, "prodml23:CurveDefinition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue: + return soap_out_PointerToprodml23__ProductVolumeParameterValue(soap, tag, id, (prodml23__ProductVolumeParameterValue *const*)ptr, "prodml23:ProductVolumeParameterValue"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind: + return soap_out_PointerToprodml23__ReportingDurationKind(soap, tag, id, (prodml23__ReportingDurationKind *const*)ptr, "prodml23:ReportingDurationKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier: + return soap_out_PointerToprodml23__ProdmlRelativeIdentifier(soap, tag, id, (std::string *const*)ptr, "prodml23:ProdmlRelativeIdentifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct: + return soap_out_PointerToprodml23__ProductVolumeProduct(soap, tag, id, (prodml23__ProductVolumeProduct *const*)ptr, "prodml23:ProductVolumeProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility: + return soap_out_PointerToprodml23__ProductVolumeRelatedFacility(soap, tag, id, (prodml23__ProductVolumeRelatedFacility *const*)ptr, "prodml23:ProductVolumeRelatedFacility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier: + return soap_out_PointerToprodml23__FlowSubQualifier(soap, tag, id, (prodml23__FlowSubQualifier *const*)ptr, "prodml23:FlowSubQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier: + return soap_out_PointerToprodml23__FlowQualifier(soap, tag, id, (prodml23__FlowQualifier *const*)ptr, "prodml23:FlowQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType: + return soap_out_PointerToprodml23__ProductFlowPortType(soap, tag, id, (prodml23__ProductFlowPortType *const*)ptr, "prodml23:ProductFlowPortType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment: + return soap_out_PointerToprodml23__DatedComment(soap, tag, id, (prodml23__DatedComment *const*)ptr, "prodml23:DatedComment"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet: + return soap_out_PointerToprodml23__ProductVolumeParameterSet(soap, tag, id, (prodml23__ProductVolumeParameterSet *const*)ptr, "prodml23:ProductVolumeParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow: + return soap_out_PointerToprodml23__ProductVolumeFlow(soap, tag, id, (prodml23__ProductVolumeFlow *const*)ptr, "prodml23:ProductVolumeFlow"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod: + return soap_out_PointerToprodml23__WellOperationMethod(soap, tag, id, (prodml23__WellOperationMethod *const*)ptr, "prodml23:WellOperationMethod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid: + return soap_out_PointerToprodml23__WellFluid(soap, tag, id, (prodml23__WellFluid *const*)ptr, "prodml23:WellFluid"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__WellStatus: return soap_out_PointerToeml23__WellStatus(soap, tag, id, (eml23__WellStatus *const*)ptr, "eml23:WellStatus"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType: - return soap_out_PointerToprodml22__BalanceDestinationType(soap, tag, id, (prodml22__BalanceDestinationType *const*)ptr, "prodml22:BalanceDestinationType"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume: - return soap_out_PointerToprodml22__CommonPropertiesProductVolume(soap, tag, id, (prodml22__CommonPropertiesProductVolume *const*)ptr, "prodml22:CommonPropertiesProductVolume"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct: - return soap_out_PointerToprodml22__ReportingProduct(soap, tag, id, (prodml22__ReportingProduct *const*)ptr, "prodml22:ReportingProduct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit: - return soap_out_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag, id, (prodml22__ProductVolumeBusinessSubUnit *const*)ptr, "prodml22:ProductVolumeBusinessSubUnit"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct: - return soap_out_PointerToprodml22__OwnershipBusinessAcct(soap, tag, id, (prodml22__OwnershipBusinessAcct *const*)ptr, "prodml22:OwnershipBusinessAcct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination: - return soap_out_PointerToprodml22__ProductVolumeDestination(soap, tag, id, (prodml22__ProductVolumeDestination *const*)ptr, "prodml22:ProductVolumeDestination"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail: - return soap_out_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag, id, (prodml22__ProductVolumeBalanceDetail *const*)ptr, "prodml22:ProductVolumeBalanceDetail"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType: + return soap_out_PointerToprodml23__BalanceDestinationType(soap, tag, id, (prodml23__BalanceDestinationType *const*)ptr, "prodml23:BalanceDestinationType"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume: + return soap_out_PointerToprodml23__CommonPropertiesProductVolume(soap, tag, id, (prodml23__CommonPropertiesProductVolume *const*)ptr, "prodml23:CommonPropertiesProductVolume"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct: + return soap_out_PointerToprodml23__ReportingProduct(soap, tag, id, (prodml23__ReportingProduct *const*)ptr, "prodml23:ReportingProduct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit: + return soap_out_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag, id, (prodml23__ProductVolumeBusinessSubUnit *const*)ptr, "prodml23:ProductVolumeBusinessSubUnit"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct: + return soap_out_PointerToprodml23__OwnershipBusinessAcct(soap, tag, id, (prodml23__OwnershipBusinessAcct *const*)ptr, "prodml23:OwnershipBusinessAcct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination: + return soap_out_PointerToprodml23__ProductVolumeDestination(soap, tag, id, (prodml23__ProductVolumeDestination *const*)ptr, "prodml23:ProductVolumeDestination"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail: + return soap_out_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag, id, (prodml23__ProductVolumeBalanceDetail *const*)ptr, "prodml23:ProductVolumeBalanceDetail"); case SOAP_TYPE_gsoap_eml2_3_PointerToxsd__nonNegativeInteger: return soap_out_PointerToxsd__nonNegativeInteger(soap, tag, id, (ULONG64 *const*)ptr, "xsd:nonNegativeInteger"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart: - return soap_out_PointerToprodml22__BalanceFlowPart(soap, tag, id, (prodml22__BalanceFlowPart *const*)ptr, "prodml22:BalanceFlowPart"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent: - return soap_out_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag, id, (prodml22__ProductVolumeBalanceEvent *const*)ptr, "prodml22:ProductVolumeBalanceEvent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent: - return soap_out_PointerToprodml22__ProductVolumeComponentContent(soap, tag, id, (prodml22__ProductVolumeComponentContent *const*)ptr, "prodml22:ProductVolumeComponentContent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent: - return soap_out_PointerToprodml22__FacilityParent(soap, tag, id, (prodml22__FacilityParent *const*)ptr, "prodml22:FacilityParent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference: - return soap_out_PointerToprodml22__ProductVolumePortDifference(soap, tag, id, (prodml22__ProductVolumePortDifference *const*)ptr, "prodml22:ProductVolumePortDifference"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart: + return soap_out_PointerToprodml23__BalanceFlowPart(soap, tag, id, (prodml23__BalanceFlowPart *const*)ptr, "prodml23:BalanceFlowPart"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent: + return soap_out_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag, id, (prodml23__ProductVolumeBalanceEvent *const*)ptr, "prodml23:ProductVolumeBalanceEvent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent: + return soap_out_PointerToprodml23__ProductVolumeComponentContent(soap, tag, id, (prodml23__ProductVolumeComponentContent *const*)ptr, "prodml23:ProductVolumeComponentContent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent: + return soap_out_PointerToprodml23__FacilityParent(soap, tag, id, (prodml23__FacilityParent *const*)ptr, "prodml23:FacilityParent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference: + return soap_out_PointerToprodml23__ProductVolumePortDifference(soap, tag, id, (prodml23__ProductVolumePortDifference *const*)ptr, "prodml23:ProductVolumePortDifference"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__DensityValue: return soap_out_PointerToeml23__DensityValue(soap, tag, id, (eml23__DensityValue *const*)ptr, "eml23:DensityValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction: - return soap_out_PointerToprodml22__RecombinedSampleFraction(soap, tag, id, (prodml22__RecombinedSampleFraction *const*)ptr, "prodml22:RecombinedSampleFraction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction: - return soap_out_PointerToprodml22__SampleAction(soap, tag, id, (prodml22__SampleAction *const*)ptr, "prodml22:SampleAction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter: - return soap_out_PointerToprodml22__CustomParameter(soap, tag, id, (prodml22__CustomParameter *const*)ptr, "prodml22:CustomParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter: - return soap_out_PointerToprodml22__AbstractParameter(soap, tag, id, (prodml22__AbstractParameter *const*)ptr, "prodml22:AbstractParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio: - return soap_out_PointerToprodml22__FractureStorativityRatio(soap, tag, id, (prodml22__FractureStorativityRatio *const*)ptr, "prodml22:FractureStorativityRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin: - return soap_out_PointerToprodml22__FractureFaceSkin(soap, tag, id, (prodml22__FractureFaceSkin *const*)ptr, "prodml22:FractureFaceSkin"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary: - return soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, id, (prodml22__DistanceMidFractureHeightToBottomBoundary *const*)ptr, "prodml22:DistanceMidFractureHeightToBottomBoundary"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight: - return soap_out_PointerToprodml22__FractureHeight(soap, tag, id, (prodml22__FractureHeight *const*)ptr, "prodml22:FractureHeight"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness: - return soap_out_PointerToprodml22__TotalThickness(soap, tag, id, (prodml22__TotalThickness *const*)ptr, "prodml22:TotalThickness"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity: - return soap_out_PointerToprodml22__Porosity(soap, tag, id, (prodml22__Porosity *const*)ptr, "prodml22:Porosity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability: - return soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, tag, id, (prodml22__HorizontalRadialPermeability *const*)ptr, "prodml22:HorizontalRadialPermeability"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D: - return soap_out_PointerToprodml22__LocationIn2D(soap, tag, id, (prodml22__LocationIn2D *const*)ptr, "prodml22:LocationIn2D"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine: - return soap_out_PointerToprodml22__AnalysisLine(soap, tag, id, (prodml22__AnalysisLine *const*)ptr, "prodml22:AnalysisLine"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData: - return soap_out_PointerToprodml22__AbstractPtaPressureData(soap, tag, id, (prodml22__AbstractPtaPressureData *const*)ptr, "prodml22:AbstractPtaPressureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter: - return soap_out_PointerToprodml22__InterporosityFlowParameter(soap, tag, id, (prodml22__InterporosityFlowParameter *const*)ptr, "prodml22:InterporosityFlowParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection: - return soap_out_PointerToprodml22__LayerToLayerConnection(soap, tag, id, (prodml22__LayerToLayerConnection *const*)ptr, "prodml22:LayerToLayerConnection"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel: - return soap_out_PointerToprodml22__BoundaryBaseModel(soap, tag, id, (prodml22__BoundaryBaseModel *const*)ptr, "prodml22:BoundaryBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel: - return soap_out_PointerToprodml22__ReservoirBaseModel(soap, tag, id, (prodml22__ReservoirBaseModel *const*)ptr, "prodml22:ReservoirBaseModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel: - return soap_out_PointerToprodml22__NearWellboreBaseModel(soap, tag, id, (prodml22__NearWellboreBaseModel *const*)ptr, "prodml22:NearWellboreBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction: + return soap_out_PointerToprodml23__RecombinedSampleFraction(soap, tag, id, (prodml23__RecombinedSampleFraction *const*)ptr, "prodml23:RecombinedSampleFraction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction: + return soap_out_PointerToprodml23__SampleAction(soap, tag, id, (prodml23__SampleAction *const*)ptr, "prodml23:SampleAction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter: + return soap_out_PointerToprodml23__CustomParameter(soap, tag, id, (prodml23__CustomParameter *const*)ptr, "prodml23:CustomParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter: + return soap_out_PointerToprodml23__AbstractParameter(soap, tag, id, (prodml23__AbstractParameter *const*)ptr, "prodml23:AbstractParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio: + return soap_out_PointerToprodml23__FractureStorativityRatio(soap, tag, id, (prodml23__FractureStorativityRatio *const*)ptr, "prodml23:FractureStorativityRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin: + return soap_out_PointerToprodml23__FractureFaceSkin(soap, tag, id, (prodml23__FractureFaceSkin *const*)ptr, "prodml23:FractureFaceSkin"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary: + return soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, id, (prodml23__DistanceMidFractureHeightToBottomBoundary *const*)ptr, "prodml23:DistanceMidFractureHeightToBottomBoundary"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight: + return soap_out_PointerToprodml23__FractureHeight(soap, tag, id, (prodml23__FractureHeight *const*)ptr, "prodml23:FractureHeight"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness: + return soap_out_PointerToprodml23__TotalThickness(soap, tag, id, (prodml23__TotalThickness *const*)ptr, "prodml23:TotalThickness"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity: + return soap_out_PointerToprodml23__Porosity(soap, tag, id, (prodml23__Porosity *const*)ptr, "prodml23:Porosity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability: + return soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, tag, id, (prodml23__HorizontalRadialPermeability *const*)ptr, "prodml23:HorizontalRadialPermeability"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D: + return soap_out_PointerToprodml23__LocationIn2D(soap, tag, id, (prodml23__LocationIn2D *const*)ptr, "prodml23:LocationIn2D"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine: + return soap_out_PointerToprodml23__AnalysisLine(soap, tag, id, (prodml23__AnalysisLine *const*)ptr, "prodml23:AnalysisLine"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData: + return soap_out_PointerToprodml23__AbstractPtaPressureData(soap, tag, id, (prodml23__AbstractPtaPressureData *const*)ptr, "prodml23:AbstractPtaPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter: + return soap_out_PointerToprodml23__InterporosityFlowParameter(soap, tag, id, (prodml23__InterporosityFlowParameter *const*)ptr, "prodml23:InterporosityFlowParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection: + return soap_out_PointerToprodml23__LayerToLayerConnection(soap, tag, id, (prodml23__LayerToLayerConnection *const*)ptr, "prodml23:LayerToLayerConnection"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel: + return soap_out_PointerToprodml23__BoundaryBaseModel(soap, tag, id, (prodml23__BoundaryBaseModel *const*)ptr, "prodml23:BoundaryBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel: + return soap_out_PointerToprodml23__ReservoirBaseModel(soap, tag, id, (prodml23__ReservoirBaseModel *const*)ptr, "prodml23:ReservoirBaseModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel: + return soap_out_PointerToprodml23__NearWellboreBaseModel(soap, tag, id, (prodml23__NearWellboreBaseModel *const*)ptr, "prodml23:NearWellboreBaseModel"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateMeasure: return soap_out_PointerToeml23__PressurePerFlowrateMeasure(soap, tag, id, (eml23__PressurePerFlowrateMeasure *const*)ptr, "eml23:PressurePerFlowrateMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateSquaredMeasure: return soap_out_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, tag, id, (eml23__PressurePerFlowrateSquaredMeasure *const*)ptr, "eml23:PressurePerFlowrateSquaredMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerTimePerPressureMeasure: return soap_out_PointerToeml23__VolumePerTimePerPressureMeasure(soap, tag, id, (eml23__VolumePerTimePerPressureMeasure *const*)ptr, "eml23:VolumePerTimePerPressureMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity: - return soap_out_PointerToprodml22__FractureConductivity(soap, tag, id, (prodml22__FractureConductivity *const*)ptr, "prodml22:FractureConductivity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront: - return soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, id, (prodml22__TransmissibilityReductionFactorOfLinearFront *const*)ptr, "prodml22:TransmissibilityReductionFactorOfLinearFront"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData: - return soap_out_PointerToprodml22__OutputPressureData(soap, tag, id, (prodml22__OutputPressureData *const*)ptr, "prodml22:OutputPressureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef: - return soap_out_PointerToprodml22__ResqmlModelRef(soap, tag, id, (prodml22__ResqmlModelRef *const*)ptr, "prodml22:ResqmlModelRef"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData: - return soap_out_PointerToprodml22__DeconvolvedPressureData(soap, tag, id, (prodml22__DeconvolvedPressureData *const*)ptr, "prodml22:DeconvolvedPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity: + return soap_out_PointerToprodml23__FractureConductivity(soap, tag, id, (prodml23__FractureConductivity *const*)ptr, "prodml23:FractureConductivity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront: + return soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, id, (prodml23__TransmissibilityReductionFactorOfLinearFront *const*)ptr, "prodml23:TransmissibilityReductionFactorOfLinearFront"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData: + return soap_out_PointerToprodml23__OutputPressureData(soap, tag, id, (prodml23__OutputPressureData *const*)ptr, "prodml23:OutputPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef: + return soap_out_PointerToprodml23__ResqmlModelRef(soap, tag, id, (prodml23__ResqmlModelRef *const*)ptr, "prodml23:ResqmlModelRef"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData: + return soap_out_PointerToprodml23__DeconvolvedPressureData(soap, tag, id, (prodml23__DeconvolvedPressureData *const*)ptr, "prodml23:DeconvolvedPressureData"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasureExt: return soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, tag, id, (eml23__ReciprocalPressureMeasureExt *const*)ptr, "eml23:ReciprocalPressureMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode: - return soap_out_PointerToprodml22__ReportingHierarchyNode(soap, tag, id, (prodml22__ReportingHierarchyNode *const*)ptr, "prodml22:ReportingHierarchyNode"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate: - return soap_out_PointerToprodml22__ProductRate(soap, tag, id, (prodml22__ProductRate *const*)ptr, "prodml22:ProductRate"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition: - return soap_out_PointerToprodml22__WellFlowingCondition(soap, tag, id, (prodml22__WellFlowingCondition *const*)ptr, "prodml22:WellFlowingCondition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind: - return soap_out_PointerToprodml22__TestPeriodKind(soap, tag, id, (prodml22__TestPeriodKind *const*)ptr, "prodml22:TestPeriodKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode: + return soap_out_PointerToprodml23__ReportingHierarchyNode(soap, tag, id, (prodml23__ReportingHierarchyNode *const*)ptr, "prodml23:ReportingHierarchyNode"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate: + return soap_out_PointerToprodml23__ProductRate(soap, tag, id, (prodml23__ProductRate *const*)ptr, "prodml23:ProductRate"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition: + return soap_out_PointerToprodml23__WellFlowingCondition(soap, tag, id, (prodml23__WellFlowingCondition *const*)ptr, "prodml23:WellFlowingCondition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind: + return soap_out_PointerToprodml23__TestPeriodKind(soap, tag, id, (prodml23__TestPeriodKind *const*)ptr, "prodml23:TestPeriodKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__FlowRateValue: return soap_out_PointerToeml23__FlowRateValue(soap, tag, id, (eml23__FlowRateValue *const*)ptr, "eml23:FlowRateValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog: - return soap_out_PointerToprodml22__FluidComponentCatalog(soap, tag, id, (prodml22__FluidComponentCatalog *const*)ptr, "prodml22:FluidComponentCatalog"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData: - return soap_out_PointerToprodml22__MeasuredPressureData(soap, tag, id, (prodml22__MeasuredPressureData *const*)ptr, "prodml22:MeasuredPressureData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData: - return soap_out_PointerToprodml22__AbstractPtaFlowData(soap, tag, id, (prodml22__AbstractPtaFlowData *const*)ptr, "prodml22:AbstractPtaFlowData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData: - return soap_out_PointerToprodml22__OtherData(soap, tag, id, (prodml22__OtherData *const*)ptr, "prodml22:OtherData"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation: - return soap_out_PointerToprodml22__FlowTestLocation(soap, tag, id, (prodml22__FlowTestLocation *const*)ptr, "prodml22:FlowTestLocation"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod: - return soap_out_PointerToprodml22__TestPeriod(soap, tag, id, (prodml22__TestPeriod *const*)ptr, "prodml22:TestPeriod"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog: + return soap_out_PointerToprodml23__FluidComponentCatalog(soap, tag, id, (prodml23__FluidComponentCatalog *const*)ptr, "prodml23:FluidComponentCatalog"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData: + return soap_out_PointerToprodml23__MeasuredPressureData(soap, tag, id, (prodml23__MeasuredPressureData *const*)ptr, "prodml23:MeasuredPressureData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData: + return soap_out_PointerToprodml23__AbstractPtaFlowData(soap, tag, id, (prodml23__AbstractPtaFlowData *const*)ptr, "prodml23:AbstractPtaFlowData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData: + return soap_out_PointerToprodml23__OtherData(soap, tag, id, (prodml23__OtherData *const*)ptr, "prodml23:OtherData"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation: + return soap_out_PointerToprodml23__FlowTestLocation(soap, tag, id, (prodml23__FlowTestLocation *const*)ptr, "prodml23:FlowTestLocation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod: + return soap_out_PointerToprodml23__TestPeriod(soap, tag, id, (prodml23__TestPeriod *const*)ptr, "prodml23:TestPeriod"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePointKind: return soap_out_PointerToeml23__ReferencePointKind(soap, tag, id, (eml23__ReferencePointKind *const*)ptr, "eml23:ReferencePointKind"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation: - return soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, tag, id, (prodml22__TimeSeriesPointRepresentation *const*)ptr, "prodml22:TimeSeriesPointRepresentation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation: + return soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, tag, id, (prodml23__TimeSeriesPointRepresentation *const*)ptr, "prodml23:TimeSeriesPointRepresentation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt: return soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, tag, id, (eml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt *const*)ptr, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt: - return soap_out_PointerToprodml22__OrganicAcidKindExt(soap, tag, id, (std::string *const*)ptr, "prodml22:OrganicAcidKindExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt: - return soap_out_PointerToprodml22__CationKindExt(soap, tag, id, (std::string *const*)ptr, "prodml22:CationKindExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt: - return soap_out_PointerToprodml22__AnionKindExt(soap, tag, id, (std::string *const*)ptr, "prodml22:AnionKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt: + return soap_out_PointerToprodml23__OrganicAcidKindExt(soap, tag, id, (std::string *const*)ptr, "prodml23:OrganicAcidKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt: + return soap_out_PointerToprodml23__CationKindExt(soap, tag, id, (std::string *const*)ptr, "prodml23:CationKindExt"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt: + return soap_out_PointerToprodml23__AnionKindExt(soap, tag, id, (std::string *const*)ptr, "prodml23:AnionKindExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure: return soap_out_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, tag, id, (eml23__EnergyLengthPerTimeAreaTemperatureMeasure *const*)ptr, "eml23:EnergyLengthPerTimeAreaTemperatureMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolarEnergyMeasure: @@ -21920,182 +21920,182 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_putelement(struct soap *soap, const void *ptr, co return soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, tag, id, (eml23__EnergyPerVolumeMeasure *const*)ptr, "eml23:EnergyPerVolumeMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ElectricalResistivityMeasureExt: return soap_out_PointerToeml23__ElectricalResistivityMeasureExt(soap, tag, id, (eml23__ElectricalResistivityMeasureExt *const*)ptr, "eml23:ElectricalResistivityMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep: - return soap_out_PointerToprodml22__WaterAnalysisTestStep(soap, tag, id, (prodml22__WaterAnalysisTestStep *const*)ptr, "prodml22:WaterAnalysisTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep: + return soap_out_PointerToprodml23__WaterAnalysisTestStep(soap, tag, id, (prodml23__WaterAnalysisTestStep *const*)ptr, "prodml23:WaterAnalysisTestStep"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerMassMeasureExt: return soap_out_PointerToeml23__MassPerMassMeasureExt(soap, tag, id, (eml23__MassPerMassMeasureExt *const*)ptr, "eml23:MassPerMassMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity: - return soap_out_PointerToprodml22__PhaseDensity(soap, tag, id, (prodml22__PhaseDensity *const*)ptr, "prodml22:PhaseDensity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity: - return soap_out_PointerToprodml22__PhaseViscosity(soap, tag, id, (prodml22__PhaseViscosity *const*)ptr, "prodml22:PhaseViscosity"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded: - return soap_out_PointerToprodml22__RefInjectedGasAdded(soap, tag, id, (prodml22__RefInjectedGasAdded *const*)ptr, "prodml22:RefInjectedGasAdded"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep: - return soap_out_PointerToprodml22__SwellingTestStep(soap, tag, id, (prodml22__SwellingTestStep *const*)ptr, "prodml22:SwellingTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara: - return soap_out_PointerToprodml22__Sara(soap, tag, id, (prodml22__Sara *const*)ptr, "prodml22:Sara"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature: - return soap_out_PointerToprodml22__ViscosityAtTemperature(soap, tag, id, (prodml22__ViscosityAtTemperature *const*)ptr, "prodml22:ViscosityAtTemperature"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid: - return soap_out_PointerToprodml22__STOFlashedLiquid(soap, tag, id, (prodml22__STOFlashedLiquid *const*)ptr, "prodml22:STOFlashedLiquid"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance: - return soap_out_PointerToprodml22__MassBalance(soap, tag, id, (prodml22__MassBalance *const*)ptr, "prodml22:MassBalance"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties: - return soap_out_PointerToprodml22__ProducedOilProperties(soap, tag, id, (prodml22__ProducedOilProperties *const*)ptr, "prodml22:ProducedOilProperties"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties: - return soap_out_PointerToprodml22__ProducedGasProperties(soap, tag, id, (prodml22__ProducedGasProperties *const*)ptr, "prodml22:ProducedGasProperties"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep: - return soap_out_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag, id, (prodml22__SlimTubeTestVolumeStep *const*)ptr, "prodml22:SlimTubeTestVolumeStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification: - return soap_out_PointerToprodml22__SlimTubeSpecification(soap, tag, id, (prodml22__SlimTubeSpecification *const*)ptr, "prodml22:SlimTubeSpecification"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep: - return soap_out_PointerToprodml22__SlimTubeTestStep(soap, tag, id, (prodml22__SlimTubeTestStep *const*)ptr, "prodml22:SlimTubeTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas: - return soap_out_PointerToprodml22__InjectedGas(soap, tag, id, (prodml22__InjectedGas *const*)ptr, "prodml22:InjectedGas"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration: - return soap_out_PointerToprodml22__SampleRestoration(soap, tag, id, (prodml22__SampleRestoration *const*)ptr, "prodml22:SampleRestoration"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature: - return soap_out_PointerToprodml22__SaturationTemperature(soap, tag, id, (prodml22__SaturationTemperature *const*)ptr, "prodml22:SaturationTemperature"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep: - return soap_out_PointerToprodml22__OtherMeasurementTestStep(soap, tag, id, (prodml22__OtherMeasurementTestStep *const*)ptr, "prodml22:OtherMeasurementTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet: - return soap_out_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, tag, id, (prodml22__FluidCharacterizationTableFormatSet *const*)ptr, "prodml22:FluidCharacterizationTableFormatSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut: - return soap_out_PointerToprodml22__MassOut(soap, tag, id, (prodml22__MassOut *const*)ptr, "prodml22:MassOut"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn: - return soap_out_PointerToprodml22__MassIn(soap, tag, id, (prodml22__MassIn *const*)ptr, "prodml22:MassIn"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep: - return soap_out_PointerToprodml22__InterfacialTensionTestStep(soap, tag, id, (prodml22__InterfacialTensionTestStep *const*)ptr, "prodml22:InterfacialTensionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent: - return soap_out_PointerToprodml22__AbstractFluidComponent(soap, tag, id, (prodml22__AbstractFluidComponent *const*)ptr, "prodml22:AbstractFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep: - return soap_out_PointerToprodml22__FluidSeparatorTestStep(soap, tag, id, (prodml22__FluidSeparatorTestStep *const*)ptr, "prodml22:FluidSeparatorTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation: - return soap_out_PointerToprodml22__ReportLocation(soap, tag, id, (prodml22__ReportLocation *const*)ptr, "prodml22:ReportLocation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity: + return soap_out_PointerToprodml23__PhaseDensity(soap, tag, id, (prodml23__PhaseDensity *const*)ptr, "prodml23:PhaseDensity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity: + return soap_out_PointerToprodml23__PhaseViscosity(soap, tag, id, (prodml23__PhaseViscosity *const*)ptr, "prodml23:PhaseViscosity"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded: + return soap_out_PointerToprodml23__RefInjectedGasAdded(soap, tag, id, (prodml23__RefInjectedGasAdded *const*)ptr, "prodml23:RefInjectedGasAdded"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep: + return soap_out_PointerToprodml23__SwellingTestStep(soap, tag, id, (prodml23__SwellingTestStep *const*)ptr, "prodml23:SwellingTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara: + return soap_out_PointerToprodml23__Sara(soap, tag, id, (prodml23__Sara *const*)ptr, "prodml23:Sara"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature: + return soap_out_PointerToprodml23__ViscosityAtTemperature(soap, tag, id, (prodml23__ViscosityAtTemperature *const*)ptr, "prodml23:ViscosityAtTemperature"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid: + return soap_out_PointerToprodml23__STOFlashedLiquid(soap, tag, id, (prodml23__STOFlashedLiquid *const*)ptr, "prodml23:STOFlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance: + return soap_out_PointerToprodml23__MassBalance(soap, tag, id, (prodml23__MassBalance *const*)ptr, "prodml23:MassBalance"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties: + return soap_out_PointerToprodml23__ProducedOilProperties(soap, tag, id, (prodml23__ProducedOilProperties *const*)ptr, "prodml23:ProducedOilProperties"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties: + return soap_out_PointerToprodml23__ProducedGasProperties(soap, tag, id, (prodml23__ProducedGasProperties *const*)ptr, "prodml23:ProducedGasProperties"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep: + return soap_out_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag, id, (prodml23__SlimTubeTestVolumeStep *const*)ptr, "prodml23:SlimTubeTestVolumeStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification: + return soap_out_PointerToprodml23__SlimTubeSpecification(soap, tag, id, (prodml23__SlimTubeSpecification *const*)ptr, "prodml23:SlimTubeSpecification"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep: + return soap_out_PointerToprodml23__SlimTubeTestStep(soap, tag, id, (prodml23__SlimTubeTestStep *const*)ptr, "prodml23:SlimTubeTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas: + return soap_out_PointerToprodml23__InjectedGas(soap, tag, id, (prodml23__InjectedGas *const*)ptr, "prodml23:InjectedGas"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration: + return soap_out_PointerToprodml23__SampleRestoration(soap, tag, id, (prodml23__SampleRestoration *const*)ptr, "prodml23:SampleRestoration"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature: + return soap_out_PointerToprodml23__SaturationTemperature(soap, tag, id, (prodml23__SaturationTemperature *const*)ptr, "prodml23:SaturationTemperature"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep: + return soap_out_PointerToprodml23__OtherMeasurementTestStep(soap, tag, id, (prodml23__OtherMeasurementTestStep *const*)ptr, "prodml23:OtherMeasurementTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet: + return soap_out_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, tag, id, (prodml23__FluidCharacterizationTableFormatSet *const*)ptr, "prodml23:FluidCharacterizationTableFormatSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut: + return soap_out_PointerToprodml23__MassOut(soap, tag, id, (prodml23__MassOut *const*)ptr, "prodml23:MassOut"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn: + return soap_out_PointerToprodml23__MassIn(soap, tag, id, (prodml23__MassIn *const*)ptr, "prodml23:MassIn"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep: + return soap_out_PointerToprodml23__InterfacialTensionTestStep(soap, tag, id, (prodml23__InterfacialTensionTestStep *const*)ptr, "prodml23:InterfacialTensionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent: + return soap_out_PointerToprodml23__AbstractFluidComponent(soap, tag, id, (prodml23__AbstractFluidComponent *const*)ptr, "prodml23:AbstractFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep: + return soap_out_PointerToprodml23__FluidSeparatorTestStep(soap, tag, id, (prodml23__FluidSeparatorTestStep *const*)ptr, "prodml23:FluidSeparatorTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation: + return soap_out_PointerToprodml23__ReportLocation(soap, tag, id, (prodml23__ReportLocation *const*)ptr, "prodml23:ReportLocation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerVolumeMeasureExt: return soap_out_PointerToeml23__EnergyPerVolumeMeasureExt(soap, tag, id, (eml23__EnergyPerVolumeMeasureExt *const*)ptr, "eml23:EnergyPerVolumeMeasureExt"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerMassMeasureExt: return soap_out_PointerToeml23__EnergyPerMassMeasureExt(soap, tag, id, (eml23__EnergyPerMassMeasureExt *const*)ptr, "eml23:EnergyPerMassMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep: - return soap_out_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag, id, (prodml22__FluidDifferentialLiberationTestStep *const*)ptr, "prodml22:FluidDifferentialLiberationTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions: - return soap_out_PointerToprodml22__SeparatorConditions(soap, tag, id, (prodml22__SeparatorConditions *const*)ptr, "prodml22:SeparatorConditions"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep: - return soap_out_PointerToprodml22__FluidCvdTestStep(soap, tag, id, (prodml22__FluidCvdTestStep *const*)ptr, "prodml22:FluidCvdTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition: - return soap_out_PointerToprodml22__LiquidComposition(soap, tag, id, (prodml22__LiquidComposition *const*)ptr, "prodml22:LiquidComposition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition: - return soap_out_PointerToprodml22__VaporComposition(soap, tag, id, (prodml22__VaporComposition *const*)ptr, "prodml22:VaporComposition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent: - return soap_out_PointerToprodml22__PhasePresent(soap, tag, id, (prodml22__PhasePresent *const*)ptr, "prodml22:PhasePresent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition: - return soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, tag, id, (prodml22__FluidAnalysisStepCondition *const*)ptr, "prodml22:FluidAnalysisStepCondition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility: - return soap_out_PointerToprodml22__OilCompressibility(soap, tag, id, (prodml22__OilCompressibility *const*)ptr, "prodml22:OilCompressibility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio: - return soap_out_PointerToprodml22__RelativeVolumeRatio(soap, tag, id, (prodml22__RelativeVolumeRatio *const*)ptr, "prodml22:RelativeVolumeRatio"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep: - return soap_out_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag, id, (prodml22__ConstantCompositionExpansionTestStep *const*)ptr, "prodml22:ConstantCompositionExpansionTestStep"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference: - return soap_out_PointerToprodml22__FluidVolumeReference(soap, tag, id, (prodml22__FluidVolumeReference *const*)ptr, "prodml22:FluidVolumeReference"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure: - return soap_out_PointerToprodml22__SaturationPressure(soap, tag, id, (prodml22__SaturationPressure *const*)ptr, "prodml22:SaturationPressure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas: - return soap_out_PointerToprodml22__FlashedGas(soap, tag, id, (prodml22__FlashedGas *const*)ptr, "prodml22:FlashedGas"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition: - return soap_out_PointerToprodml22__OverallComposition(soap, tag, id, (prodml22__OverallComposition *const*)ptr, "prodml22:OverallComposition"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid: - return soap_out_PointerToprodml22__FlashedLiquid(soap, tag, id, (prodml22__FlashedLiquid *const*)ptr, "prodml22:FlashedLiquid"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep: + return soap_out_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag, id, (prodml23__FluidDifferentialLiberationTestStep *const*)ptr, "prodml23:FluidDifferentialLiberationTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions: + return soap_out_PointerToprodml23__SeparatorConditions(soap, tag, id, (prodml23__SeparatorConditions *const*)ptr, "prodml23:SeparatorConditions"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep: + return soap_out_PointerToprodml23__FluidCvdTestStep(soap, tag, id, (prodml23__FluidCvdTestStep *const*)ptr, "prodml23:FluidCvdTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition: + return soap_out_PointerToprodml23__LiquidComposition(soap, tag, id, (prodml23__LiquidComposition *const*)ptr, "prodml23:LiquidComposition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition: + return soap_out_PointerToprodml23__VaporComposition(soap, tag, id, (prodml23__VaporComposition *const*)ptr, "prodml23:VaporComposition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent: + return soap_out_PointerToprodml23__PhasePresent(soap, tag, id, (prodml23__PhasePresent *const*)ptr, "prodml23:PhasePresent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition: + return soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, tag, id, (prodml23__FluidAnalysisStepCondition *const*)ptr, "prodml23:FluidAnalysisStepCondition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility: + return soap_out_PointerToprodml23__OilCompressibility(soap, tag, id, (prodml23__OilCompressibility *const*)ptr, "prodml23:OilCompressibility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio: + return soap_out_PointerToprodml23__RelativeVolumeRatio(soap, tag, id, (prodml23__RelativeVolumeRatio *const*)ptr, "prodml23:RelativeVolumeRatio"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep: + return soap_out_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag, id, (prodml23__ConstantCompositionExpansionTestStep *const*)ptr, "prodml23:ConstantCompositionExpansionTestStep"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference: + return soap_out_PointerToprodml23__FluidVolumeReference(soap, tag, id, (prodml23__FluidVolumeReference *const*)ptr, "prodml23:FluidVolumeReference"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure: + return soap_out_PointerToprodml23__SaturationPressure(soap, tag, id, (prodml23__SaturationPressure *const*)ptr, "prodml23:SaturationPressure"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas: + return soap_out_PointerToprodml23__FlashedGas(soap, tag, id, (prodml23__FlashedGas *const*)ptr, "prodml23:FlashedGas"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition: + return soap_out_PointerToprodml23__OverallComposition(soap, tag, id, (prodml23__OverallComposition *const*)ptr, "prodml23:OverallComposition"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid: + return soap_out_PointerToprodml23__FlashedLiquid(soap, tag, id, (prodml23__FlashedLiquid *const*)ptr, "prodml23:FlashedLiquid"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasure: return soap_out_PointerToeml23__MolecularWeightMeasure(soap, tag, id, (eml23__MolecularWeightMeasure *const*)ptr, "eml23:MolecularWeightMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit: - return soap_out_PointerToprodml22__ProductFlowUnit(soap, tag, id, (prodml22__ProductFlowUnit *const*)ptr, "prodml22:ProductFlowUnit"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog: - return soap_out_PointerToprodml22__ProductFlowChangeLog(soap, tag, id, (prodml22__ProductFlowChangeLog *const*)ptr, "prodml22:ProductFlowChangeLog"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan: - return soap_out_PointerToprodml22__ProductFlowNetworkPlan(soap, tag, id, (prodml22__ProductFlowNetworkPlan *const*)ptr, "prodml22:ProductFlowNetworkPlan"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort: - return soap_out_PointerToprodml22__ProductFlowExternalPort(soap, tag, id, (prodml22__ProductFlowExternalPort *const*)ptr, "prodml22:ProductFlowExternalPort"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore: - return soap_out_PointerToprodml22__NorthSeaOffshore(soap, tag, id, (prodml22__NorthSeaOffshore *const*)ptr, "prodml22:NorthSeaOffshore"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction: - return soap_out_PointerToprodml22__FluidComponentFraction(soap, tag, id, (prodml22__FluidComponentFraction *const*)ptr, "prodml22:FluidComponentFraction"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation: - return soap_out_PointerToprodml22__OffshoreLocation(soap, tag, id, (prodml22__OffshoreLocation *const*)ptr, "prodml22:OffshoreLocation"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit: + return soap_out_PointerToprodml23__ProductFlowUnit(soap, tag, id, (prodml23__ProductFlowUnit *const*)ptr, "prodml23:ProductFlowUnit"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog: + return soap_out_PointerToprodml23__ProductFlowChangeLog(soap, tag, id, (prodml23__ProductFlowChangeLog *const*)ptr, "prodml23:ProductFlowChangeLog"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan: + return soap_out_PointerToprodml23__ProductFlowNetworkPlan(soap, tag, id, (prodml23__ProductFlowNetworkPlan *const*)ptr, "prodml23:ProductFlowNetworkPlan"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort: + return soap_out_PointerToprodml23__ProductFlowExternalPort(soap, tag, id, (prodml23__ProductFlowExternalPort *const*)ptr, "prodml23:ProductFlowExternalPort"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore: + return soap_out_PointerToprodml23__NorthSeaOffshore(soap, tag, id, (prodml23__NorthSeaOffshore *const*)ptr, "prodml23:NorthSeaOffshore"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction: + return soap_out_PointerToprodml23__FluidComponentFraction(soap, tag, id, (prodml23__FluidComponentFraction *const*)ptr, "prodml23:FluidComponentFraction"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation: + return soap_out_PointerToprodml23__OffshoreLocation(soap, tag, id, (prodml23__OffshoreLocation *const*)ptr, "prodml23:OffshoreLocation"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerVolumeMeasureExt: return soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, tag, id, (eml23__VolumePerVolumeMeasureExt *const*)ptr, "eml23:VolumePerVolumeMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent: - return soap_out_PointerToprodml22__SulfurFluidComponent(soap, tag, id, (prodml22__SulfurFluidComponent *const*)ptr, "prodml22:SulfurFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent: - return soap_out_PointerToprodml22__PlusFluidComponent(soap, tag, id, (prodml22__PlusFluidComponent *const*)ptr, "prodml22:PlusFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent: - return soap_out_PointerToprodml22__PseudoFluidComponent(soap, tag, id, (prodml22__PseudoFluidComponent *const*)ptr, "prodml22:PseudoFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent: - return soap_out_PointerToprodml22__PureFluidComponent(soap, tag, id, (prodml22__PureFluidComponent *const*)ptr, "prodml22:PureFluidComponent"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater: - return soap_out_PointerToprodml22__FormationWater(soap, tag, id, (prodml22__FormationWater *const*)ptr, "prodml22:FormationWater"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas: - return soap_out_PointerToprodml22__NaturalGas(soap, tag, id, (prodml22__NaturalGas *const*)ptr, "prodml22:NaturalGas"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil: - return soap_out_PointerToprodml22__StockTankOil(soap, tag, id, (prodml22__StockTankOil *const*)ptr, "prodml22:StockTankOil"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility: - return soap_out_PointerToprodml22__ReportingFacility(soap, tag, id, (prodml22__ReportingFacility *const*)ptr, "prodml22:ReportingFacility"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext: - return soap_out_PointerToprodml22__GeographicContext(soap, tag, id, (prodml22__GeographicContext *const*)ptr, "prodml22:GeographicContext"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit: - return soap_out_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag, id, (prodml22__ProductVolumeBusinessUnit *const*)ptr, "prodml22:ProductVolumeBusinessUnit"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct: - return soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, tag, id, (prodml22__FacilityIdentifierStruct *const*)ptr, "prodml22:FacilityIdentifierStruct"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier: - return soap_out_PointerToprodml22__EndpointQualifier(soap, tag, id, (prodml22__EndpointQualifier *const*)ptr, "prodml22:EndpointQualifier"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent: + return soap_out_PointerToprodml23__SulfurFluidComponent(soap, tag, id, (prodml23__SulfurFluidComponent *const*)ptr, "prodml23:SulfurFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent: + return soap_out_PointerToprodml23__PlusFluidComponent(soap, tag, id, (prodml23__PlusFluidComponent *const*)ptr, "prodml23:PlusFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent: + return soap_out_PointerToprodml23__PseudoFluidComponent(soap, tag, id, (prodml23__PseudoFluidComponent *const*)ptr, "prodml23:PseudoFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent: + return soap_out_PointerToprodml23__PureFluidComponent(soap, tag, id, (prodml23__PureFluidComponent *const*)ptr, "prodml23:PureFluidComponent"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater: + return soap_out_PointerToprodml23__FormationWater(soap, tag, id, (prodml23__FormationWater *const*)ptr, "prodml23:FormationWater"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas: + return soap_out_PointerToprodml23__NaturalGas(soap, tag, id, (prodml23__NaturalGas *const*)ptr, "prodml23:NaturalGas"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil: + return soap_out_PointerToprodml23__StockTankOil(soap, tag, id, (prodml23__StockTankOil *const*)ptr, "prodml23:StockTankOil"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility: + return soap_out_PointerToprodml23__ReportingFacility(soap, tag, id, (prodml23__ReportingFacility *const*)ptr, "prodml23:ReportingFacility"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext: + return soap_out_PointerToprodml23__GeographicContext(soap, tag, id, (prodml23__GeographicContext *const*)ptr, "prodml23:GeographicContext"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit: + return soap_out_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag, id, (prodml23__ProductVolumeBusinessUnit *const*)ptr, "prodml23:ProductVolumeBusinessUnit"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct: + return soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, tag, id, (prodml23__FacilityIdentifierStruct *const*)ptr, "prodml23:FacilityIdentifierStruct"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier: + return soap_out_PointerToprodml23__EndpointQualifier(soap, tag, id, (prodml23__EndpointQualifier *const*)ptr, "prodml23:EndpointQualifier"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstanceMeasure: return soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, tag, id, (eml23__AmountOfSubstanceMeasure *const*)ptr, "eml23:AmountOfSubstanceMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumeValue: return soap_out_PointerToeml23__VolumeValue(soap, tag, id, (eml23__VolumeValue *const*)ptr, "eml23:VolumeValue"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind: - return soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, tag, id, (prodml22__DetectableLimitRelativeStateKind *const*)ptr, "prodml22:DetectableLimitRelativeStateKind"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind: + return soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, tag, id, (prodml23__DetectableLimitRelativeStateKind *const*)ptr, "prodml23:DetectableLimitRelativeStateKind"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure: return soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, tag, id, (eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *const*)ptr, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerVolumeMeasureExt: return soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, tag, id, (eml23__MassPerVolumeMeasureExt *const*)ptr, "eml23:MassPerVolumeMeasureExt"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth: - return soap_out_PointerToprodml22__CalendarMonth(soap, tag, id, (std::string *const*)ptr, "prodml22:CalendarMonth"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter: - return soap_out_PointerToprodml22__PvtModelParameter(soap, tag, id, (prodml22__PvtModelParameter *const*)ptr, "prodml22:PvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth: + return soap_out_PointerToprodml23__CalendarMonth(soap, tag, id, (std::string *const*)ptr, "prodml23:CalendarMonth"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter: + return soap_out_PointerToprodml23__PvtModelParameter(soap, tag, id, (prodml23__PvtModelParameter *const*)ptr, "prodml23:PvtModelParameter"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasure: return soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, tag, id, (eml23__ReciprocalPressureMeasure *const*)ptr, "eml23:ReciprocalPressureMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__APIGravityMeasure: return soap_out_PointerToeml23__APIGravityMeasure(soap, tag, id, (eml23__APIGravityMeasure *const*)ptr, "eml23:APIGravityMeasure"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolarVolumeMeasure: return soap_out_PointerToeml23__MolarVolumeMeasure(soap, tag, id, (eml23__MolarVolumeMeasure *const*)ptr, "eml23:MolarVolumeMeasure"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat: - return soap_out_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag, id, (prodml22__FluidCharacterizationTableFormat *const*)ptr, "prodml22:FluidCharacterizationTableFormat"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn: - return soap_out_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag, id, (prodml22__FluidCharacterizationTableColumn *const*)ptr, "prodml22:FluidCharacterizationTableColumn"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow: - return soap_out_PointerToprodml22__FluidCharacterizationTableRow(soap, tag, id, (prodml22__FluidCharacterizationTableRow *const*)ptr, "prodml22:FluidCharacterizationTableRow"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter: - return soap_out_PointerToprodml22__FluidCharacterizationParameter(soap, tag, id, (prodml22__FluidCharacterizationParameter *const*)ptr, "prodml22:FluidCharacterizationParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase: - return soap_out_PointerToprodml22__ThermodynamicPhase(soap, tag, id, (prodml22__ThermodynamicPhase *const*)ptr, "prodml22:ThermodynamicPhase"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage: - return soap_out_PointerToprodml22__ReferenceSeparatorStage(soap, tag, id, (prodml22__ReferenceSeparatorStage *const*)ptr, "prodml22:ReferenceSeparatorStage"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet: - return soap_out_PointerToprodml22__FluidCharacterizationParameterSet(soap, tag, id, (prodml22__FluidCharacterizationParameterSet *const*)ptr, "prodml22:FluidCharacterizationParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable: - return soap_out_PointerToprodml22__FluidCharacterizationTable(soap, tag, id, (prodml22__FluidCharacterizationTable *const*)ptr, "prodml22:FluidCharacterizationTable"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel: - return soap_out_PointerToprodml22__AbstractPvtModel(soap, tag, id, (prodml22__AbstractPvtModel *const*)ptr, "prodml22:AbstractPvtModel"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter: - return soap_out_PointerToprodml22__CustomPvtModelParameter(soap, tag, id, (prodml22__CustomPvtModelParameter *const*)ptr, "prodml22:CustomPvtModelParameter"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty: - return soap_out_PointerToprodml22__FluidComponentProperty(soap, tag, id, (prodml22__FluidComponentProperty *const*)ptr, "prodml22:FluidComponentProperty"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient: - return soap_out_PointerToprodml22__BinaryInteractionCoefficient(soap, tag, id, (prodml22__BinaryInteractionCoefficient *const*)ptr, "prodml22:BinaryInteractionCoefficient"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet: - return soap_out_PointerToprodml22__PvtModelParameterSet(soap, tag, id, (prodml22__PvtModelParameterSet *const*)ptr, "prodml22:PvtModelParameterSet"); - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension: - return soap_out_PointerToprodml22__CustomPvtModelExtension(soap, tag, id, (prodml22__CustomPvtModelExtension *const*)ptr, "prodml22:CustomPvtModelExtension"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat: + return soap_out_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag, id, (prodml23__FluidCharacterizationTableFormat *const*)ptr, "prodml23:FluidCharacterizationTableFormat"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn: + return soap_out_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag, id, (prodml23__FluidCharacterizationTableColumn *const*)ptr, "prodml23:FluidCharacterizationTableColumn"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow: + return soap_out_PointerToprodml23__FluidCharacterizationTableRow(soap, tag, id, (prodml23__FluidCharacterizationTableRow *const*)ptr, "prodml23:FluidCharacterizationTableRow"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter: + return soap_out_PointerToprodml23__FluidCharacterizationParameter(soap, tag, id, (prodml23__FluidCharacterizationParameter *const*)ptr, "prodml23:FluidCharacterizationParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase: + return soap_out_PointerToprodml23__ThermodynamicPhase(soap, tag, id, (prodml23__ThermodynamicPhase *const*)ptr, "prodml23:ThermodynamicPhase"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage: + return soap_out_PointerToprodml23__ReferenceSeparatorStage(soap, tag, id, (prodml23__ReferenceSeparatorStage *const*)ptr, "prodml23:ReferenceSeparatorStage"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet: + return soap_out_PointerToprodml23__FluidCharacterizationParameterSet(soap, tag, id, (prodml23__FluidCharacterizationParameterSet *const*)ptr, "prodml23:FluidCharacterizationParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable: + return soap_out_PointerToprodml23__FluidCharacterizationTable(soap, tag, id, (prodml23__FluidCharacterizationTable *const*)ptr, "prodml23:FluidCharacterizationTable"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel: + return soap_out_PointerToprodml23__AbstractPvtModel(soap, tag, id, (prodml23__AbstractPvtModel *const*)ptr, "prodml23:AbstractPvtModel"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter: + return soap_out_PointerToprodml23__CustomPvtModelParameter(soap, tag, id, (prodml23__CustomPvtModelParameter *const*)ptr, "prodml23:CustomPvtModelParameter"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty: + return soap_out_PointerToprodml23__FluidComponentProperty(soap, tag, id, (prodml23__FluidComponentProperty *const*)ptr, "prodml23:FluidComponentProperty"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient: + return soap_out_PointerToprodml23__BinaryInteractionCoefficient(soap, tag, id, (prodml23__BinaryInteractionCoefficient *const*)ptr, "prodml23:BinaryInteractionCoefficient"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet: + return soap_out_PointerToprodml23__PvtModelParameterSet(soap, tag, id, (prodml23__PvtModelParameterSet *const*)ptr, "prodml23:PvtModelParameterSet"); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension: + return soap_out_PointerToprodml23__CustomPvtModelExtension(soap, tag, id, (prodml23__CustomPvtModelExtension *const*)ptr, "prodml23:CustomPvtModelExtension"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__Column: return soap_out_PointerToeml23__Column(soap, tag, id, (eml23__Column *const*)ptr, "eml23:Column"); case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PropertyKindFacet: @@ -22844,71 +22844,71 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature: soap_serialize__resqml22__BoundaryFeature(soap, (const resqml22__BoundaryFeature *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic: - soap_serialize__prodml22__TimeSeriesStatistic(soap, (const prodml22__TimeSeriesStatistic *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic: + soap_serialize__prodml23__TimeSeriesStatistic(soap, (const prodml23__TimeSeriesStatistic *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData: - soap_serialize__prodml22__TimeSeriesData(soap, (const prodml22__TimeSeriesData *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData: + soap_serialize__prodml23__TimeSeriesData(soap, (const prodml23__TimeSeriesData *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel: - soap_serialize__prodml22__ProductFlowModel(soap, (const prodml22__ProductFlowModel *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel: + soap_serialize__prodml23__ProductFlowModel(soap, (const prodml23__ProductFlowModel *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume: - soap_serialize__prodml22__ProductVolume(soap, (const prodml22__ProductVolume *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume: + soap_serialize__prodml23__ProductVolume(soap, (const prodml23__ProductVolume *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob: - soap_serialize__prodml22__FlowTestJob(soap, (const prodml22__FlowTestJob *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob: + soap_serialize__prodml23__FlowTestJob(soap, (const prodml23__FlowTestJob *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob: - soap_serialize__prodml22__FluidSampleAcquisitionJob(soap, (const prodml22__FluidSampleAcquisitionJob *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob: + soap_serialize__prodml23__FluidSampleAcquisitionJob(soap, (const prodml23__FluidSampleAcquisitionJob *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer: - soap_serialize__prodml22__FluidSampleContainer(soap, (const prodml22__FluidSampleContainer *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer: + soap_serialize__prodml23__FluidSampleContainer(soap, (const prodml23__FluidSampleContainer *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample: - soap_serialize__prodml22__FluidSample(soap, (const prodml22__FluidSample *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample: + soap_serialize__prodml23__FluidSample(soap, (const prodml23__FluidSample *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution: - soap_serialize__prodml22__PtaDeconvolution(soap, (const prodml22__PtaDeconvolution *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution: + soap_serialize__prodml23__PtaDeconvolution(soap, (const prodml23__PtaDeconvolution *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess: - soap_serialize__prodml22__PtaDataPreProcess(soap, (const prodml22__PtaDataPreProcess *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess: + soap_serialize__prodml23__PtaDataPreProcess(soap, (const prodml23__PtaDataPreProcess *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis: - soap_serialize__prodml22__PressureTransientAnalysis(soap, (const prodml22__PressureTransientAnalysis *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis: + soap_serialize__prodml23__PressureTransientAnalysis(soap, (const prodml23__PressureTransientAnalysis *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy: - soap_serialize__prodml22__ReportingHierarchy(soap, (const prodml22__ReportingHierarchy *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy: + soap_serialize__prodml23__ReportingHierarchy(soap, (const prodml23__ReportingHierarchy *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity: - soap_serialize__prodml22__ReportingEntity(soap, (const prodml22__ReportingEntity *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity: + soap_serialize__prodml23__ReportingEntity(soap, (const prodml23__ReportingEntity *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__Facility: - soap_serialize__prodml22__Facility(soap, (const prodml22__Facility *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__Facility: + soap_serialize__prodml23__Facility(soap, (const prodml23__Facility *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity: - soap_serialize__prodml22__FlowTestActivity(soap, (const prodml22__FlowTestActivity *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity: + soap_serialize__prodml23__FlowTestActivity(soap, (const prodml23__FlowTestActivity *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet: - soap_serialize__prodml22__ChannelSet(soap, (const prodml22__ChannelSet *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet: + soap_serialize__prodml23__ChannelSet(soap, (const prodml23__ChannelSet *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__Channel: - soap_serialize__prodml22__Channel(soap, (const prodml22__Channel *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__Channel: + soap_serialize__prodml23__Channel(soap, (const prodml23__Channel *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem: - soap_serialize__prodml22__FluidSystem(soap, (const prodml22__FluidSystem *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem: + soap_serialize__prodml23__FluidSystem(soap, (const prodml23__FluidSystem *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis: - soap_serialize__prodml22__WaterAnalysis(soap, (const prodml22__WaterAnalysis *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis: + soap_serialize__prodml23__WaterAnalysis(soap, (const prodml23__WaterAnalysis *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis: - soap_serialize__prodml22__HydrocarbonAnalysis(soap, (const prodml22__HydrocarbonAnalysis *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis: + soap_serialize__prodml23__HydrocarbonAnalysis(soap, (const prodml23__HydrocarbonAnalysis *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis: - soap_serialize__prodml22__FluidAnalysis(soap, (const prodml22__FluidAnalysis *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis: + soap_serialize__prodml23__FluidAnalysis(soap, (const prodml23__FluidAnalysis *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization: - soap_serialize__prodml22__FluidCharacterization(soap, (const prodml22__FluidCharacterization *)ptr); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization: + soap_serialize__prodml23__FluidCharacterization(soap, (const prodml23__FluidCharacterization *)ptr); break; case SOAP_TYPE_gsoap_eml2_3__eml23__GraphicalInformationSet: soap_serialize__eml23__GraphicalInformationSet(soap, (const eml23__GraphicalInformationSet *)ptr); @@ -23120,8 +23120,8 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3__witsml21__Well: soap_serialize__witsml21__Well(soap, (const witsml21__Well *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth: - soap_serialize_prodml22__CalendarMonth(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth: + soap_serialize_prodml23__CalendarMonth(soap, (const std::string *)ptr); break; case SOAP_TYPE_gsoap_eml2_3_eml23__SectionNumber: soap_serialize_eml23__SectionNumber(soap, (const std::string *)ptr); @@ -23159,8 +23159,8 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_eml23__EnumExtensionPattern: soap_serialize_eml23__EnumExtensionPattern(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier: - soap_serialize_prodml22__ProdmlRelativeIdentifier(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier: + soap_serialize_prodml23__ProdmlRelativeIdentifier(soap, (const std::string *)ptr); break; case SOAP_TYPE_gsoap_eml2_3_eml23__AbstractString: soap_serialize_eml23__AbstractString(soap, (const std::string *)ptr); @@ -23198,56 +23198,56 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKindExt: soap_serialize_resqml22__CulturalFeatureKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt: - soap_serialize_prodml22__FluidSampleKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt: + soap_serialize_prodml23__FluidSampleKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt: - soap_serialize_prodml22__DataConditioningExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt: + soap_serialize_prodml23__DataConditioningExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt: - soap_serialize_prodml22__VolumeReferenceKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt: + soap_serialize_prodml23__VolumeReferenceKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt: - soap_serialize_prodml22__OrganicAcidKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt: + soap_serialize_prodml23__OrganicAcidKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt: - soap_serialize_prodml22__CationKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt: + soap_serialize_prodml23__CationKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt: - soap_serialize_prodml22__AnionKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt: + soap_serialize_prodml23__AnionKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt: - soap_serialize_prodml22__SulfurComponentKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt: + soap_serialize_prodml23__SulfurComponentKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt: - soap_serialize_prodml22__ServiceFluidKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt: + soap_serialize_prodml23__ServiceFluidKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt: - soap_serialize_prodml22__ReportingFacilityExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt: + soap_serialize_prodml23__ReportingFacilityExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt: - soap_serialize_prodml22__ReportingDurationKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt: + soap_serialize_prodml23__ReportingDurationKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt: - soap_serialize_prodml22__PureComponentKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt: + soap_serialize_prodml23__PureComponentKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt: - soap_serialize_prodml22__PseudoComponentKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt: + soap_serialize_prodml23__PseudoComponentKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt: - soap_serialize_prodml22__ProductFluidKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt: + soap_serialize_prodml23__ProductFluidKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt: - soap_serialize_prodml22__PlusComponentKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt: + soap_serialize_prodml23__PlusComponentKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt: - soap_serialize_prodml22__FacilityKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt: + soap_serialize_prodml23__FacilityKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt: - soap_serialize_prodml22__PvtModelParameterKindExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt: + soap_serialize_prodml23__PvtModelParameterKindExt(soap, (const std::string *)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt: - soap_serialize_prodml22__OutputFluidPropertyExt(soap, (const std::string *)ptr); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt: + soap_serialize_prodml23__OutputFluidPropertyExt(soap, (const std::string *)ptr); break; case SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKindExt: soap_serialize_eml23__CollectionKindExt(soap, (const std::string *)ptr); @@ -24560,1214 +24560,1214 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: ((resqml22__AbstractFeature *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold: - ((prodml22__TimeSeriesThreshold *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold: + ((prodml23__TimeSeriesThreshold *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: - ((prodml22__TimeSeriesStatistic *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: + ((prodml23__TimeSeriesStatistic *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct: - ((prodml22__KeywordValueStruct *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct: + ((prodml23__KeywordValueStruct *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity: - ((prodml22__EndpointQuantity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity: + ((prodml23__EndpointQuantity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime: - ((prodml22__EndpointDateTime *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime: + ((prodml23__EndpointDateTime *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample: - ((prodml22__TimeSeriesStringSample *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample: + ((prodml23__TimeSeriesStringSample *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample: - ((prodml22__TimeSeriesDoubleSample *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample: + ((prodml23__TimeSeriesDoubleSample *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: - ((prodml22__TimeSeriesData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: + ((prodml23__TimeSeriesData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: - ((prodml22__StringValue *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: + ((prodml23__StringValue *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: - ((prodml22__DoubleValue *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: + ((prodml23__DoubleValue *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue: - ((prodml22__AbstractValue *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue: + ((prodml23__AbstractValue *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate: - ((prodml22__RelativeCoordinate *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate: + ((prodml23__RelativeCoordinate *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: - ((prodml22__Qualifier *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: + ((prodml23__Qualifier *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit: - ((prodml22__ProductFlowUnit *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit: + ((prodml23__ProductFlowUnit *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: - ((prodml22__ProductFlowQualifierExpected *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: + ((prodml23__ProductFlowQualifierExpected *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort: - ((prodml22__ProductFlowPort *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort: + ((prodml23__ProductFlowPort *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan: - ((prodml22__ProductFlowNetworkPlan *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan: + ((prodml23__ProductFlowNetworkPlan *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: - ((prodml22__ProductFlowModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: + ((prodml23__ProductFlowModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort: - ((prodml22__ProductFlowExternalPort *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort: + ((prodml23__ProductFlowExternalPort *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty: - ((prodml22__ProductFlowExpectedUnitProperty *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty: + ((prodml23__ProductFlowExpectedUnitProperty *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog: - ((prodml22__ProductFlowChangeLog *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog: + ((prodml23__ProductFlowChangeLog *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier: - ((prodml22__ExpectedFlowQualifier *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier: + ((prodml23__ExpectedFlowQualifier *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode: - ((prodml22__ConnectedNode *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode: + ((prodml23__ConnectedNode *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: - ((prodml22__StringData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: + ((prodml23__StringData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: - ((prodml22__ReferenceFlow *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: + ((prodml23__ReferenceFlow *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility: - ((prodml22__ProductVolumeRelatedFacility *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility: + ((prodml23__ProductVolumeRelatedFacility *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct: - ((prodml22__ProductVolumeProduct *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct: + ((prodml23__ProductVolumeProduct *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference: - ((prodml22__ProductVolumePortDifference *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference: + ((prodml23__ProductVolumePortDifference *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod: - ((prodml22__ProductVolumePeriod *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod: + ((prodml23__ProductVolumePeriod *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue: - ((prodml22__ProductVolumeParameterValue *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue: + ((prodml23__ProductVolumeParameterValue *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet: - ((prodml22__ProductVolumeParameterSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet: + ((prodml23__ProductVolumeParameterSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow: - ((prodml22__ProductVolumeFlow *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow: + ((prodml23__ProductVolumeFlow *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility: - ((prodml22__ProductVolumeFacility *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility: + ((prodml23__ProductVolumeFacility *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination: - ((prodml22__ProductVolumeDestination *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination: + ((prodml23__ProductVolumeDestination *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent: - ((prodml22__ProductVolumeComponentContent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent: + ((prodml23__ProductVolumeComponentContent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit: - ((prodml22__ProductVolumeBusinessUnit *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit: + ((prodml23__ProductVolumeBusinessUnit *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit: - ((prodml22__ProductVolumeBusinessSubUnit *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit: + ((prodml23__ProductVolumeBusinessSubUnit *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet: - ((prodml22__ProductVolumeBalanceSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet: + ((prodml23__ProductVolumeBalanceSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent: - ((prodml22__ProductVolumeBalanceEvent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent: + ((prodml23__ProductVolumeBalanceEvent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail: - ((prodml22__ProductVolumeBalanceDetail *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail: + ((prodml23__ProductVolumeBalanceDetail *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert: - ((prodml22__ProductVolumeAlert *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert: + ((prodml23__ProductVolumeAlert *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: - ((prodml22__ProductVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: + ((prodml23__ProductVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: - ((prodml22__Parentfacility *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: + ((prodml23__Parentfacility *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct: - ((prodml22__OwnershipBusinessAcct *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct: + ((prodml23__OwnershipBusinessAcct *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: - ((prodml22__IntegerData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: + ((prodml23__IntegerData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: - ((prodml22__FacilityUnitPort *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: + ((prodml23__FacilityUnitPort *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: - ((prodml22__FacilityParent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: + ((prodml23__FacilityParent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition: - ((prodml22__CurveDefinition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition: + ((prodml23__CurveDefinition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: - ((prodml22__CurveData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: + ((prodml23__CurveData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject: - ((prodml22__AbstractRelatedFacilityObject *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject: + ((prodml23__AbstractRelatedFacilityObject *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow: - ((prodml22__AbstractRefProductFlow *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow: + ((prodml23__AbstractRefProductFlow *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData: - ((prodml22__AbstractMeasureData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData: + ((prodml23__AbstractMeasureData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume: - ((prodml22__CommonPropertiesProductVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume: + ((prodml23__CommonPropertiesProductVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: - ((prodml22__FlowTestJob *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: + ((prodml23__FlowTestJob *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: - ((prodml22__WellheadSampleAcquisition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: + ((prodml23__WellheadSampleAcquisition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: - ((prodml22__SeparatorSampleAcquisition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: + ((prodml23__SeparatorSampleAcquisition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: - ((prodml22__FormationTesterSampleAcquisition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: + ((prodml23__FormationTesterSampleAcquisition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: - ((prodml22__FluidSampleAcquisitionJob *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: + ((prodml23__FluidSampleAcquisitionJob *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition: - ((prodml22__FluidSampleAcquisition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition: + ((prodml23__FluidSampleAcquisition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: - ((prodml22__FacilitySampleAcquisition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: + ((prodml23__FacilitySampleAcquisition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: - ((prodml22__DownholeSampleAcquisition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: + ((prodml23__DownholeSampleAcquisition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: - ((prodml22__FluidSampleContainer *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: + ((prodml23__FluidSampleContainer *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification: - ((prodml22__SampleRecombinationSpecification *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification: + ((prodml23__SampleRecombinationSpecification *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction: - ((prodml22__RecombinedSampleFraction *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction: + ((prodml23__RecombinedSampleFraction *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent: - ((prodml22__FluidSampleChainOfCustodyEvent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent: + ((prodml23__FluidSampleChainOfCustodyEvent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource: - ((prodml22__FluidSampleAcquisitionJobSource *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource: + ((prodml23__FluidSampleAcquisitionJobSource *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: - ((prodml22__FluidSample *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: + ((prodml23__FluidSample *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: - ((prodml22__WellboreVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: + ((prodml23__WellboreVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: - ((prodml22__WellboreStorageCoefficient *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: + ((prodml23__WellboreStorageCoefficient *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: - ((prodml22__WellboreRadius *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: + ((prodml23__WellboreRadius *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: - ((prodml22__WellboreFluidCompressibility *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: + ((prodml23__WellboreFluidCompressibility *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: - ((prodml22__WellboreDeviationAngle *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: + ((prodml23__WellboreDeviationAngle *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: - ((prodml22__VerticalAnisotropyKvToKr *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: + ((prodml23__VerticalAnisotropyKvToKr *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: - ((prodml22__TubingInteralDiameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: + ((prodml23__TubingInteralDiameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: - ((prodml22__TransmissibilityReductionFactorOfLinearFront *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: + ((prodml23__TransmissibilityReductionFactorOfLinearFront *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: - ((prodml22__TotalThickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: + ((prodml23__TotalThickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: - ((prodml22__StorativityRatio *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: + ((prodml23__StorativityRatio *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: - ((prodml22__SkinRelativeToTotalThickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: + ((prodml23__SkinRelativeToTotalThickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: - ((prodml22__SkinLayer2RelativeToTotalThickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: + ((prodml23__SkinLayer2RelativeToTotalThickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: - ((prodml22__Region2Thickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: + ((prodml23__Region2Thickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - ((prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + ((prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: - ((prodml22__RatioInitialToFinalWellboreStorage *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: + ((prodml23__RatioInitialToFinalWellboreStorage *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: - ((prodml22__RatioDpSkinToTotalDrawdown *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: + ((prodml23__RatioDpSkinToTotalDrawdown *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: - ((prodml22__RateDependentSkinFactor *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: + ((prodml23__RateDependentSkinFactor *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: - ((prodml22__RadiusOfInvestigation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: + ((prodml23__RadiusOfInvestigation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: - ((prodml22__PressureDatumTVD *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: + ((prodml23__PressureDatumTVD *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: - ((prodml22__Porosity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: + ((prodml23__Porosity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: - ((prodml22__PoreVolumeOfInvestigation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: + ((prodml23__PoreVolumeOfInvestigation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: - ((prodml22__PoreVolumeMeasured *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: + ((prodml23__PoreVolumeMeasured *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: - ((prodml22__PermeabilityThicknessProduct *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: + ((prodml23__PermeabilityThicknessProduct *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: - ((prodml22__PerforatedLength *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: + ((prodml23__PerforatedLength *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: - ((prodml22__OrientationWellTrajectory *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: + ((prodml23__OrientationWellTrajectory *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: - ((prodml22__OrientationOfNormalToBoundary1 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: + ((prodml23__OrientationOfNormalToBoundary1 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: - ((prodml22__OrientationOfLinearFront *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: + ((prodml23__OrientationOfLinearFront *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: - ((prodml22__OrientationOfFracturePlane *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: + ((prodml23__OrientationOfFracturePlane *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: - ((prodml22__OrientationOfAnisotropyXDirection *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: + ((prodml23__OrientationOfAnisotropyXDirection *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: - ((prodml22__NumberOfFractures *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: + ((prodml23__NumberOfFractures *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: - ((prodml22__ModelName *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: + ((prodml23__ModelName *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: - ((prodml22__MechanicalSkinRelativeToTotalThickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: + ((prodml23__MechanicalSkinRelativeToTotalThickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: - ((prodml22__LengthHorizontalWellboreFlowing *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: + ((prodml23__LengthHorizontalWellboreFlowing *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: - ((prodml22__LeakSkin *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: + ((prodml23__LeakSkin *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: - ((prodml22__Layer2Thickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: + ((prodml23__Layer2Thickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: - ((prodml22__InterporosityFlowParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: + ((prodml23__InterporosityFlowParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: - ((prodml22__InnerToOuterZoneMobilityRatio *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: + ((prodml23__InnerToOuterZoneMobilityRatio *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: - ((prodml22__InnerToOuterZoneDiffusivityRatio *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: + ((prodml23__InnerToOuterZoneDiffusivityRatio *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: - ((prodml22__InitialPressure *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: + ((prodml23__InitialPressure *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: - ((prodml22__HorizontalRadialPermeability *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: + ((prodml23__HorizontalRadialPermeability *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: - ((prodml22__HorizontalAnisotropyKxToKy *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: + ((prodml23__HorizontalAnisotropyKxToKy *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: - ((prodml22__FractureStorativityRatio *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: + ((prodml23__FractureStorativityRatio *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: - ((prodml22__FractureRadius *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: + ((prodml23__FractureRadius *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: - ((prodml22__FractureHeight *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: + ((prodml23__FractureHeight *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: - ((prodml22__FractureHalfLength *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: + ((prodml23__FractureHalfLength *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: - ((prodml22__FractureFaceSkin *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: + ((prodml23__FractureFaceSkin *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: - ((prodml22__FractureConductivity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: + ((prodml23__FractureConductivity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: - ((prodml22__FractureAngleToWellbore *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: + ((prodml23__FractureAngleToWellbore *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: - ((prodml22__FluidDensity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: + ((prodml23__FluidDensity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: - ((prodml22__FaultConductivity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: + ((prodml23__FaultConductivity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: - ((prodml22__DrainageAreaMeasured *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: + ((prodml23__DrainageAreaMeasured *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: - ((prodml22__DistanceWellboreToBottomBoundary *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: + ((prodml23__DistanceWellboreToBottomBoundary *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: - ((prodml22__DistanceToPinchOut *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: + ((prodml23__DistanceToPinchOut *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: - ((prodml22__DistanceToMobilityInterface *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: + ((prodml23__DistanceToMobilityInterface *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: - ((prodml22__DistanceToBoundary4 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: + ((prodml23__DistanceToBoundary4 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: - ((prodml22__DistanceToBoundary3 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: + ((prodml23__DistanceToBoundary3 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: - ((prodml22__DistanceToBoundary2 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: + ((prodml23__DistanceToBoundary2 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: - ((prodml22__DistanceToBoundary1 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: + ((prodml23__DistanceToBoundary1 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: - ((prodml22__DistanceMidPerforationsToBottomBoundary *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: + ((prodml23__DistanceMidPerforationsToBottomBoundary *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: - ((prodml22__DistanceMidFractureHeightToBottomBoundary *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: + ((prodml23__DistanceMidFractureHeightToBottomBoundary *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: - ((prodml22__DistanceFractureToBottomBoundary *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: + ((prodml23__DistanceFractureToBottomBoundary *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: - ((prodml22__DeltaTimeStorageChanges *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: + ((prodml23__DeltaTimeStorageChanges *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: - ((prodml22__DeltaPressureTotalSkin *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: + ((prodml23__DeltaPressureTotalSkin *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: - ((prodml22__CustomParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: + ((prodml23__CustomParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: - ((prodml22__ConvergenceSkinRelativeToTotalThickness *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: + ((prodml23__ConvergenceSkinRelativeToTotalThickness *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: - ((prodml22__AveragePressure *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: + ((prodml23__AveragePressure *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: - ((prodml22__AngleBetweenBoundaries *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: + ((prodml23__AngleBetweenBoundaries *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter: - ((prodml22__AbstractParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter: + ((prodml23__AbstractParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: - ((prodml22__WellboreBaseModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: + ((prodml23__WellboreBaseModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: - ((prodml22__UShapedFaultsModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: + ((prodml23__UShapedFaultsModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: - ((prodml22__TwoParallelFaultsModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: + ((prodml23__TwoParallelFaultsModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: - ((prodml22__TwoIntersectingFaultsModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: + ((prodml23__TwoIntersectingFaultsModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: - ((prodml22__SlantedPartiallyPenetratingModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: + ((prodml23__SlantedPartiallyPenetratingModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: - ((prodml22__SlantedFullyPenetratingModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: + ((prodml23__SlantedFullyPenetratingModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: - ((prodml22__SingleFaultModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: + ((prodml23__SingleFaultModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: - ((prodml22__ReservoirBaseModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: + ((prodml23__ReservoirBaseModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: - ((prodml22__RadialCompositeModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: + ((prodml23__RadialCompositeModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: - ((prodml22__PinchOutModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: + ((prodml23__PinchOutModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: - ((prodml22__PartiallyPenetratingModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: + ((prodml23__PartiallyPenetratingModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: - ((prodml22__NumericalHomogeneousReservoirModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: + ((prodml23__NumericalHomogeneousReservoirModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: - ((prodml22__NumericalDualPorosityReservoirModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: + ((prodml23__NumericalDualPorosityReservoirModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: - ((prodml22__NumericalBoundaryModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: + ((prodml23__NumericalBoundaryModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: - ((prodml22__NearWellboreBaseModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: + ((prodml23__NearWellboreBaseModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: - ((prodml22__LinearCompositeWithLeakyFaultModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: + ((prodml23__LinearCompositeWithLeakyFaultModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: - ((prodml22__LinearCompositeWithConductiveFaultModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: + ((prodml23__LinearCompositeWithConductiveFaultModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: - ((prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: + ((prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: - ((prodml22__LinearCompositeModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: + ((prodml23__LinearCompositeModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: - ((prodml22__InfiniteBoundaryModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: + ((prodml23__InfiniteBoundaryModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: - ((prodml22__HorizontalWellboreMultipleVariableFracturedModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: + ((prodml23__HorizontalWellboreMultipleVariableFracturedModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: - ((prodml22__HorizontalWellboreMultipleEqualFracturedModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: + ((prodml23__HorizontalWellboreMultipleEqualFracturedModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: - ((prodml22__HorizontalWellboreModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: + ((prodml23__HorizontalWellboreModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: - ((prodml22__HorizontalWellbore2LayerModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: + ((prodml23__HorizontalWellbore2LayerModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: - ((prodml22__HomogeneousModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: + ((prodml23__HomogeneousModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: - ((prodml22__FracturedUniformFluxModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: + ((prodml23__FracturedUniformFluxModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: - ((prodml22__FracturedInfiniteConductivityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: + ((prodml23__FracturedInfiniteConductivityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: - ((prodml22__FracturedHorizontalUniformFluxModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: + ((prodml23__FracturedHorizontalUniformFluxModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: - ((prodml22__FracturedHorizontalInfiniteConductivityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: + ((prodml23__FracturedHorizontalInfiniteConductivityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: - ((prodml22__FracturedHorizontalFiniteConductivityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: + ((prodml23__FracturedHorizontalFiniteConductivityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: - ((prodml22__FracturedFiniteConductivityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: + ((prodml23__FracturedFiniteConductivityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: - ((prodml22__FiniteRadiusModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: + ((prodml23__FiniteRadiusModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: - ((prodml22__DualPorosityTransientSpheresModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: + ((prodml23__DualPorosityTransientSpheresModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: - ((prodml22__DualPorosityTransientSlabsModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: + ((prodml23__DualPorosityTransientSlabsModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: - ((prodml22__DualPorosityPseudoSteadyStateModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: + ((prodml23__DualPorosityPseudoSteadyStateModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: - ((prodml22__DualPermeabilityWithCrossflowModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: + ((prodml23__DualPermeabilityWithCrossflowModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: - ((prodml22__CustomWellboreModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: + ((prodml23__CustomWellboreModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: - ((prodml22__CustomReservoirModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: + ((prodml23__CustomReservoirModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: - ((prodml22__CustomNearWellboreModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: + ((prodml23__CustomNearWellboreModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: - ((prodml22__CustomBoundaryModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: + ((prodml23__CustomBoundaryModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: - ((prodml22__ConstantStorageModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: + ((prodml23__ConstantStorageModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: - ((prodml22__ClosedRectangleModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: + ((prodml23__ClosedRectangleModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: - ((prodml22__ClosedCircleModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: + ((prodml23__ClosedCircleModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: - ((prodml22__ChangingStorageSpiveyPackerModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: + ((prodml23__ChangingStorageSpiveyPackerModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: - ((prodml22__ChangingStorageSpiveyFissuresModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: + ((prodml23__ChangingStorageSpiveyFissuresModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: - ((prodml22__ChangingStorageHegemanModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: + ((prodml23__ChangingStorageHegemanModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: - ((prodml22__ChangingStorageFairModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: + ((prodml23__ChangingStorageFairModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: - ((prodml22__BoundaryBaseModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: + ((prodml23__BoundaryBaseModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection: - ((prodml22__AbstractModelSection *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection: + ((prodml23__AbstractModelSection *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: - ((prodml22__TestPeriodsFlowrateData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: + ((prodml23__TestPeriodsFlowrateData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis: - ((prodml22__SpecializedAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis: + ((prodml23__SpecializedAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel: - ((prodml22__SingleFractureSubModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel: + ((prodml23__SingleFractureSubModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: - ((prodml22__SingleFlowrateData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: + ((prodml23__SingleFlowrateData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel: - ((prodml22__SingleBoundarySubModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel: + ((prodml23__SingleBoundarySubModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: - ((prodml22__RtaAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: + ((prodml23__RtaAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef: - ((prodml22__ResqmlModelRef *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef: + ((prodml23__ResqmlModelRef *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel: - ((prodml22__ReservoirZoneSubModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel: + ((prodml23__ReservoirZoneSubModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: - ((prodml22__PtaDeconvolution *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: + ((prodml23__PtaDeconvolution *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: - ((prodml22__PtaDataPreProcess *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: + ((prodml23__PtaDataPreProcess *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: - ((prodml22__PtaAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: + ((prodml23__PtaAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: - ((prodml22__PressureTransientAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: + ((prodml23__PressureTransientAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: - ((prodml22__PreProcessedPressureData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: + ((prodml23__PreProcessedPressureData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: - ((prodml22__PreProcessedFlowData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: + ((prodml23__PreProcessedFlowData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: - ((prodml22__OutputPressureData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: + ((prodml23__OutputPressureData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: - ((prodml22__OutputFlowData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: + ((prodml23__OutputFlowData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: - ((prodml22__MeasuredPressureData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: + ((prodml23__MeasuredPressureData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: - ((prodml22__MeasuredFlowData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: + ((prodml23__MeasuredFlowData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis: - ((prodml22__LogLogAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis: + ((prodml23__LogLogAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D: - ((prodml22__LocationIn2D *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D: + ((prodml23__LocationIn2D *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection: - ((prodml22__LayerToLayerConnection *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection: + ((prodml23__LayerToLayerConnection *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel: - ((prodml22__LayerModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel: + ((prodml23__LayerModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel: - ((prodml22__InternalFaultSubModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel: + ((prodml23__InternalFaultSubModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval: - ((prodml22__InterferingFlowTestInterval *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval: + ((prodml23__InterferingFlowTestInterval *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel: - ((prodml22__DistributedParametersSubModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel: + ((prodml23__DistributedParametersSubModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: - ((prodml22__DeconvolvedPressureData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: + ((prodml23__DeconvolvedPressureData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: - ((prodml22__DeconvolvedFlowData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: + ((prodml23__DeconvolvedFlowData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: - ((prodml22__DeconvolutionSingleOutput *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: + ((prodml23__DeconvolutionSingleOutput *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput: - ((prodml22__DeconvolutionOutput *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput: + ((prodml23__DeconvolutionOutput *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: - ((prodml22__DeconvolutionMultipleOutput *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: + ((prodml23__DeconvolutionMultipleOutput *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters: - ((prodml22__CompressibilityParameters *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters: + ((prodml23__CompressibilityParameters *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: - ((prodml22__ChannelFlowrateData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: + ((prodml23__ChannelFlowrateData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine: - ((prodml22__AnalysisLine *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine: + ((prodml23__AnalysisLine *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory: - ((prodml22__AbstractRateHistory *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory: + ((prodml23__AbstractRateHistory *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: - ((prodml22__AbstractPtaPressureData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: + ((prodml23__AbstractPtaPressureData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput: - ((prodml22__AbstractDeconvolutionOutput *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput: + ((prodml23__AbstractDeconvolutionOutput *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis: - ((prodml22__AbstractAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis: + ((prodml23__AbstractAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode: - ((prodml22__ReportingHierarchyNode *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode: + ((prodml23__ReportingHierarchyNode *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: - ((prodml22__ReportingHierarchy *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: + ((prodml23__ReportingHierarchy *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: - ((prodml22__ReportingEntity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: + ((prodml23__ReportingEntity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: - ((prodml22__Facility *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: + ((prodml23__Facility *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition: - ((prodml22__WellFlowingCondition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition: + ((prodml23__WellFlowingCondition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: - ((prodml22__WaterLevelTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: + ((prodml23__WaterLevelTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: - ((prodml22__VerticalInterferenceTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: + ((prodml23__VerticalInterferenceTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod: - ((prodml22__TestPeriod *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod: + ((prodml23__TestPeriod *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate: - ((prodml22__ProductRate *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate: + ((prodml23__ProductRate *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: - ((prodml22__ProductionTransientTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: + ((prodml23__ProductionTransientTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: - ((prodml22__ProductionFlowTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: + ((prodml23__ProductionFlowTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: - ((prodml22__OtherData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: + ((prodml23__OtherData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: - ((prodml22__InterwellTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: + ((prodml23__InterwellTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: - ((prodml22__InjectionFlowTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: + ((prodml23__InjectionFlowTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: - ((prodml22__FormationTesterStation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: + ((prodml23__FormationTesterStation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet: - ((prodml22__FlowTestMeasurementSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet: + ((prodml23__FlowTestMeasurementSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation: - ((prodml22__FlowTestLocation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation: + ((prodml23__FlowTestLocation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: - ((prodml22__FlowTestActivity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: + ((prodml23__FlowTestActivity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: - ((prodml22__DrillStemTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: + ((prodml23__DrillStemTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: - ((prodml22__ChannelSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: + ((prodml23__ChannelSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: - ((prodml22__Channel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: + ((prodml23__Channel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: - ((prodml22__AbstractPtaFlowData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: + ((prodml23__AbstractPtaFlowData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData: - ((prodml22__AbstractFlowTestData *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData: + ((prodml23__AbstractFlowTestData *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: - ((prodml22__FluidSystem *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: + ((prodml23__FluidSystem *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent: - ((prodml22__WaterSampleComponent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent: + ((prodml23__WaterSampleComponent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep: - ((prodml22__WaterAnalysisTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep: + ((prodml23__WaterAnalysisTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest: - ((prodml22__WaterAnalysisTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest: + ((prodml23__WaterAnalysisTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: - ((prodml22__WaterAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: + ((prodml23__WaterAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature: - ((prodml22__ViscosityAtTemperature *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature: + ((prodml23__ViscosityAtTemperature *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest: - ((prodml22__VaporLiquidEquilibriumTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest: + ((prodml23__VaporLiquidEquilibriumTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep: - ((prodml22__SwellingTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep: + ((prodml23__SwellingTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest: - ((prodml22__SwellingTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest: + ((prodml23__SwellingTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid: - ((prodml22__STOFlashedLiquid *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid: + ((prodml23__STOFlashedLiquid *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis: - ((prodml22__STOAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis: + ((prodml23__STOAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep: - ((prodml22__SlimTubeTestVolumeStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep: + ((prodml23__SlimTubeTestVolumeStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep: - ((prodml22__SlimTubeTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep: + ((prodml23__SlimTubeTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest: - ((prodml22__SlimTubeTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest: + ((prodml23__SlimTubeTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification: - ((prodml22__SlimTubeSpecification *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification: + ((prodml23__SlimTubeSpecification *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions: - ((prodml22__SeparatorConditions *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions: + ((prodml23__SeparatorConditions *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest: - ((prodml22__SaturationTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest: + ((prodml23__SaturationTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: - ((prodml22__SaturationTemperature *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature: + ((prodml23__SaturationTemperature *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: - ((prodml22__SaturationPressure *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure: + ((prodml23__SaturationPressure *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Sara: - ((prodml22__Sara *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Sara: + ((prodml23__Sara *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration: - ((prodml22__SampleRestoration *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration: + ((prodml23__SampleRestoration *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation: - ((prodml22__SampleIntegrityAndPreparation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation: + ((prodml23__SampleIntegrityAndPreparation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant: - ((prodml22__SampleContaminant *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant: + ((prodml23__SampleContaminant *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation: - ((prodml22__ReportLocation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation: + ((prodml23__ReportLocation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: - ((prodml22__RelativeVolumeRatio *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio: + ((prodml23__RelativeVolumeRatio *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: - ((prodml22__RefInjectedGasAdded *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded: + ((prodml23__RefInjectedGasAdded *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties: - ((prodml22__ProducedOilProperties *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties: + ((prodml23__ProducedOilProperties *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties: - ((prodml22__ProducedGasProperties *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties: + ((prodml23__ProducedGasProperties *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity: - ((prodml22__PhaseViscosity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity: + ((prodml23__PhaseViscosity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity: - ((prodml22__PhaseDensity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity: + ((prodml23__PhaseDensity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep: - ((prodml22__OtherMeasurementTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep: + ((prodml23__OtherMeasurementTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest: - ((prodml22__OtherMeasurementTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest: + ((prodml23__OtherMeasurementTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: - ((prodml22__OilVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: + ((prodml23__OilVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: - ((prodml22__OilShrinkageFactor *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: + ((prodml23__OilShrinkageFactor *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: - ((prodml22__OilCompressibility *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility: + ((prodml23__OilCompressibility *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest: - ((prodml22__NonHydrocarbonTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest: + ((prodml23__NonHydrocarbonTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: - ((prodml22__NonHydrocarbonAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: + ((prodml23__NonHydrocarbonAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest: - ((prodml22__MultipleContactMiscibilityTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest: + ((prodml23__MultipleContactMiscibilityTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut: - ((prodml22__MassOut *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut: + ((prodml23__MassOut *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn: - ((prodml22__MassIn *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn: + ((prodml23__MassIn *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance: - ((prodml22__MassBalance *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance: + ((prodml23__MassBalance *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: - ((prodml22__LiquidVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: + ((prodml23__LiquidVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: - ((prodml22__LiquidDropoutFraction *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: + ((prodml23__LiquidDropoutFraction *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep: - ((prodml22__InterfacialTensionTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep: + ((prodml23__InterfacialTensionTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest: - ((prodml22__InterfacialTensionTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest: + ((prodml23__InterfacialTensionTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas: - ((prodml22__InjectedGas *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas: + ((prodml23__InjectedGas *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: - ((prodml22__HydrocarbonAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: + ((prodml23__HydrocarbonAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference: - ((prodml22__FluidVolumeReference *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference: + ((prodml23__FluidVolumeReference *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep: - ((prodml22__FluidSeparatorTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep: + ((prodml23__FluidSeparatorTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest: - ((prodml22__FluidSeparatorTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest: + ((prodml23__FluidSeparatorTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep: - ((prodml22__FluidDifferentialLiberationTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep: + ((prodml23__FluidDifferentialLiberationTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep: - ((prodml22__FluidCvdTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep: + ((prodml23__FluidCvdTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport: - ((prodml22__FluidAnalysisReport *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport: + ((prodml23__FluidAnalysisReport *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: - ((prodml22__FluidAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: + ((prodml23__FluidAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid: - ((prodml22__FlashedLiquid *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid: + ((prodml23__FlashedLiquid *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas: - ((prodml22__FlashedGas *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas: + ((prodml23__FlashedGas *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest: - ((prodml22__DifferentialLiberationTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest: + ((prodml23__DifferentialLiberationTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: - ((prodml22__CumulativeGasProducedVol *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: + ((prodml23__CumulativeGasProducedVol *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: - ((prodml22__CumulativeGasProducedRatioStd *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: + ((prodml23__CumulativeGasProducedRatioStd *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest: - ((prodml22__ConstantVolumeDepletionTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest: + ((prodml23__ConstantVolumeDepletionTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep: - ((prodml22__ConstantCompositionExpansionTestStep *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep: + ((prodml23__ConstantCompositionExpansionTestStep *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest: - ((prodml22__ConstantCompositionExpansionTest *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest: + ((prodml23__ConstantCompositionExpansionTest *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis: - ((prodml22__AtmosphericFlashTestAndCompositionalAnalysis *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis: + ((prodml23__AtmosphericFlashTestAndCompositionalAnalysis *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage: - ((prodml22__AbstractOilVolShrinkage *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage: + ((prodml23__AbstractOilVolShrinkage *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume: - ((prodml22__AbstractLiquidDropoutPercVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume: + ((prodml23__AbstractLiquidDropoutPercVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume: - ((prodml22__AbstractGasProducedRatioVolume *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume: + ((prodml23__AbstractGasProducedRatioVolume *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition: - ((prodml22__VaporComposition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition: + ((prodml23__VaporComposition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: - ((prodml22__SulfurFluidComponent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: + ((prodml23__SulfurFluidComponent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: - ((prodml22__StockTankOil *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: + ((prodml23__StockTankOil *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: - ((prodml22__StartEndTime *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: + ((prodml23__StartEndTime *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: - ((prodml22__StartEndDate *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: + ((prodml23__StartEndDate *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: - ((prodml22__ServiceFluid *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: + ((prodml23__ServiceFluid *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: - ((prodml22__PureFluidComponent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: + ((prodml23__PureFluidComponent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: - ((prodml22__PseudoFluidComponent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: + ((prodml23__PseudoFluidComponent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: - ((prodml22__ProductFluid *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: + ((prodml23__ProductFluid *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork: - ((prodml22__ProductFlowNetwork *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork: + ((prodml23__ProductFlowNetwork *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference: - ((prodml22__ProductFlowExternalReference *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference: + ((prodml23__ProductFlowExternalReference *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: - ((prodml22__PlusFluidComponent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: + ((prodml23__PlusFluidComponent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition: - ((prodml22__OverallComposition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition: + ((prodml23__OverallComposition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation: - ((prodml22__OffshoreLocation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation: + ((prodml23__OffshoreLocation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore: - ((prodml22__NorthSeaOffshore *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore: + ((prodml23__NorthSeaOffshore *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: - ((prodml22__NaturalGas *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: + ((prodml23__NaturalGas *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord: - ((prodml22__MeasuredDepthCoord *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord: + ((prodml23__MeasuredDepthCoord *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition: - ((prodml22__LiquidComposition *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition: + ((prodml23__LiquidComposition *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: - ((prodml22__KindQualifiedString *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: + ((prodml23__KindQualifiedString *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: - ((prodml22__IntegerQualifiedCount *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: + ((prodml23__IntegerQualifiedCount *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext: - ((prodml22__GeographicContext *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext: + ((prodml23__GeographicContext *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: - ((prodml22__GeneralQualifiedMeasure *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: + ((prodml23__GeneralQualifiedMeasure *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType: - ((prodml22__GeneralMeasureType *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType: + ((prodml23__GeneralMeasureType *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: - ((prodml22__FormationWater *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: + ((prodml23__FormationWater *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction: - ((prodml22__FluidComponentFraction *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction: + ((prodml23__FluidComponentFraction *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog: - ((prodml22__FluidComponentCatalog *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog: + ((prodml23__FluidComponentCatalog *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct: - ((prodml22__FacilityIdentifierStruct *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct: + ((prodml23__FacilityIdentifierStruct *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier: - ((prodml22__FacilityIdentifier *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier: + ((prodml23__FacilityIdentifier *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime: - ((prodml22__EndpointQualifiedDateTime *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime: + ((prodml23__EndpointQualifiedDateTime *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate: - ((prodml22__EndpointQualifiedDate *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate: + ((prodml23__EndpointQualifiedDate *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment: - ((prodml22__DatedComment *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment: + ((prodml23__DatedComment *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter: - ((prodml22__CalibrationParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter: + ((prodml23__CalibrationParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity: - ((prodml22__AbstractProductQuantity *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity: + ((prodml23__AbstractProductQuantity *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent: - ((prodml22__AbstractFluidComponent *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent: + ((prodml23__AbstractFluidComponent *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass: - ((prodml22__AbstractDateTimeClass *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass: + ((prodml23__AbstractDateTimeClass *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: - ((prodml22__Standing_Undersaturated *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: + ((prodml23__Standing_Undersaturated *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: - ((prodml22__Standing_Dead *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: + ((prodml23__Standing_Dead *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: - ((prodml22__Standing_BubblePoint *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: + ((prodml23__Standing_BubblePoint *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: - ((prodml22__Srk_USCOREEOS *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: + ((prodml23__Srk_USCOREEOS *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage: - ((prodml22__ReferenceSeparatorStage *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage: + ((prodml23__ReferenceSeparatorStage *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet: - ((prodml22__PvtModelParameterSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet: + ((prodml23__PvtModelParameterSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter: - ((prodml22__PvtModelParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter: + ((prodml23__PvtModelParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter: - ((prodml22__PrsvParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter: + ((prodml23__PrsvParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: - ((prodml22__PetroskyFarshad_Undersaturated *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: + ((prodml23__PetroskyFarshad_Undersaturated *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: - ((prodml22__PetroskyFarshad_Dead *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: + ((prodml23__PetroskyFarshad_Dead *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: - ((prodml22__PetroskyFarshad_BubblePoint *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: + ((prodml23__PetroskyFarshad_BubblePoint *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: - ((prodml22__PengRobinson78_USCOREEOS *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: + ((prodml23__PengRobinson78_USCOREEOS *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: - ((prodml22__PengRobinson76_USCOREEOS *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: + ((prodml23__PengRobinson76_USCOREEOS *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: - ((prodml22__Lucas *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: + ((prodml23__Lucas *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: - ((prodml22__LondonoArcherBlasinggame *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: + ((prodml23__LondonoArcherBlasinggame *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: - ((prodml22__Lohrenz_Bray_ClarkCorrelation *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: + ((prodml23__Lohrenz_Bray_ClarkCorrelation *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: - ((prodml22__LeeGonzalez *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: + ((prodml23__LeeGonzalez *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: - ((prodml22__FrictionTheory *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: + ((prodml23__FrictionTheory *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty: - ((prodml22__FluidComponentProperty *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty: + ((prodml23__FluidComponentProperty *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet: - ((prodml22__FluidCharacterizationTableFormatSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet: + ((prodml23__FluidCharacterizationTableFormatSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat: - ((prodml22__FluidCharacterizationTableFormat *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat: + ((prodml23__FluidCharacterizationTableFormat *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn: - ((prodml22__FluidCharacterizationTableColumn *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn: + ((prodml23__FluidCharacterizationTableColumn *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable: - ((prodml22__FluidCharacterizationTable *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable: + ((prodml23__FluidCharacterizationTable *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource: - ((prodml22__FluidCharacterizationSource *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource: + ((prodml23__FluidCharacterizationSource *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet: - ((prodml22__FluidCharacterizationParameterSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet: + ((prodml23__FluidCharacterizationParameterSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter: - ((prodml22__FluidCharacterizationParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter: + ((prodml23__FluidCharacterizationParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel: - ((prodml22__FluidCharacterizationModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel: + ((prodml23__FluidCharacterizationModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: - ((prodml22__FluidCharacterization *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: + ((prodml23__FluidCharacterization *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: - ((prodml22__DindorukChristman_Undersaturated *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: + ((prodml23__DindorukChristman_Undersaturated *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: - ((prodml22__DindorukChristman_Dead *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: + ((prodml23__DindorukChristman_Dead *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: - ((prodml22__DindorukChristman_BubblePoint *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: + ((prodml23__DindorukChristman_BubblePoint *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: - ((prodml22__DeGhetto_Undersaturated *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: + ((prodml23__DeGhetto_Undersaturated *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: - ((prodml22__DeGhetto_Dead *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: + ((prodml23__DeGhetto_Dead *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: - ((prodml22__DeGhetto_BubblePoint *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: + ((prodml23__DeGhetto_BubblePoint *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter: - ((prodml22__CustomPvtModelParameter *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter: + ((prodml23__CustomPvtModelParameter *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension: - ((prodml22__CustomPvtModelExtension *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension: + ((prodml23__CustomPvtModelExtension *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: - ((prodml22__CSPedersen87 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: + ((prodml23__CSPedersen87 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: - ((prodml22__CSPedersen84 *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: + ((prodml23__CSPedersen84 *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: - ((prodml22__CorrelationThermalModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: + ((prodml23__CorrelationThermalModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: - ((prodml22__CompositionalThermalModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: + ((prodml23__CompositionalThermalModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet: - ((prodml22__ComponentPropertySet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet: + ((prodml23__ComponentPropertySet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: - ((prodml22__CarrDempsey *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: + ((prodml23__CarrDempsey *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet: - ((prodml22__BinaryInteractionCoefficientSet *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet: + ((prodml23__BinaryInteractionCoefficientSet *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient: - ((prodml22__BinaryInteractionCoefficient *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient: + ((prodml23__BinaryInteractionCoefficient *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: - ((prodml22__BergmanSutton_BubblePoint *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: + ((prodml23__BergmanSutton_BubblePoint *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: - ((prodml22__BerganSutton_Dead *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: + ((prodml23__BerganSutton_Dead *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: - ((prodml22__BerganAndSutton_Undersaturated *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: + ((prodml23__BerganAndSutton_Undersaturated *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel: - ((prodml22__AbstractPvtModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel: + ((prodml23__AbstractPvtModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: - ((prodml22__AbstractCorrelationViscosityUndersaturatedModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: + ((prodml23__AbstractCorrelationViscosityUndersaturatedModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: - ((prodml22__AbstractCorrelationViscosityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: + ((prodml23__AbstractCorrelationViscosityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: - ((prodml22__AbstractCorrelationViscosityBubblePointModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: + ((prodml23__AbstractCorrelationViscosityBubblePointModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: - ((prodml22__AbstractCorrelationGasViscosityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: + ((prodml23__AbstractCorrelationGasViscosityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: - ((prodml22__AbstractCompositionalViscosityModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: + ((prodml23__AbstractCompositionalViscosityModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: - ((prodml22__AbstractCompositionalEoSModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: + ((prodml23__AbstractCompositionalEoSModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow: - ((prodml22__FluidCharacterizationTableRow *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow: + ((prodml23__FluidCharacterizationTableRow *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: - ((prodml22__AbstractCorrelationViscosityDeadModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: + ((prodml23__AbstractCorrelationViscosityDeadModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: - ((prodml22__AbstractCorrelationModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: + ((prodml23__AbstractCorrelationModel *)ptr)->soap_serialize(soap); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: - ((prodml22__AbstractCompositionalModel *)ptr)->soap_serialize(soap); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: + ((prodml23__AbstractCompositionalModel *)ptr)->soap_serialize(soap); break; case SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet: ((eml23__GraphicalInformationSet *)ptr)->soap_serialize(soap); @@ -28403,8 +28403,8 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ContactIdentity: soap_serialize_PointerToresqml22__ContactIdentity(soap, (resqml22__ContactIdentity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter: - soap_serialize_PointerToprodml22__PrsvParameter(soap, (prodml22__PrsvParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter: + soap_serialize_PointerToprodml23__PrsvParameter(soap, (prodml23__PrsvParameter *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__LengthUomExt: soap_serialize_PointerToeml23__LengthUomExt(soap, (std::string *const*)ptr); @@ -28499,185 +28499,185 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ThreePoint3d: soap_serialize_PointerToresqml22__ThreePoint3d(soap, (resqml22__ThreePoint3d *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries: - soap_serialize_PointerToprodml22__AngleBetweenBoundaries(soap, (prodml22__AngleBetweenBoundaries *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries: + soap_serialize_PointerToprodml23__AngleBetweenBoundaries(soap, (prodml23__AngleBetweenBoundaries *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut: - soap_serialize_PointerToprodml22__DistanceToPinchOut(soap, (prodml22__DistanceToPinchOut *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut: + soap_serialize_PointerToprodml23__DistanceToPinchOut(soap, (prodml23__DistanceToPinchOut *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary: - soap_serialize_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, (prodml22__DistanceMidPerforationsToBottomBoundary *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary: + soap_serialize_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, (prodml23__DistanceMidPerforationsToBottomBoundary *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength: - soap_serialize_PointerToprodml22__PerforatedLength(soap, (prodml22__PerforatedLength *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength: + soap_serialize_PointerToprodml23__PerforatedLength(soap, (prodml23__PerforatedLength *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel: - soap_serialize_PointerToprodml22__ReservoirZoneSubModel(soap, (prodml22__ReservoirZoneSubModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel: + soap_serialize_PointerToprodml23__ReservoirZoneSubModel(soap, (prodml23__ReservoirZoneSubModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel: - soap_serialize_PointerToprodml22__DistributedParametersSubModel(soap, (prodml22__DistributedParametersSubModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel: + soap_serialize_PointerToprodml23__DistributedParametersSubModel(soap, (prodml23__DistributedParametersSubModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel: - soap_serialize_PointerToprodml22__InternalFaultSubModel(soap, (prodml22__InternalFaultSubModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel: + soap_serialize_PointerToprodml23__InternalFaultSubModel(soap, (prodml23__InternalFaultSubModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel: - soap_serialize_PointerToprodml22__SingleBoundarySubModel(soap, (prodml22__SingleBoundarySubModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel: + soap_serialize_PointerToprodml23__SingleBoundarySubModel(soap, (prodml23__SingleBoundarySubModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity: - soap_serialize_PointerToprodml22__FaultConductivity(soap, (prodml22__FaultConductivity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity: + soap_serialize_PointerToprodml23__FaultConductivity(soap, (prodml23__FaultConductivity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness: - soap_serialize_PointerToprodml22__Region2Thickness(soap, (prodml22__Region2Thickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness: + soap_serialize_PointerToprodml23__Region2Thickness(soap, (prodml23__Region2Thickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront: - soap_serialize_PointerToprodml22__OrientationOfLinearFront(soap, (prodml22__OrientationOfLinearFront *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront: + soap_serialize_PointerToprodml23__OrientationOfLinearFront(soap, (prodml23__OrientationOfLinearFront *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface: - soap_serialize_PointerToprodml22__DistanceToMobilityInterface(soap, (prodml22__DistanceToMobilityInterface *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface: + soap_serialize_PointerToprodml23__DistanceToMobilityInterface(soap, (prodml23__DistanceToMobilityInterface *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio: - soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, (prodml22__InnerToOuterZoneDiffusivityRatio *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio: + soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, (prodml23__InnerToOuterZoneDiffusivityRatio *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio: - soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, (prodml22__InnerToOuterZoneMobilityRatio *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio: + soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, (prodml23__InnerToOuterZoneMobilityRatio *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel: - soap_serialize_PointerToprodml22__SingleFractureSubModel(soap, (prodml22__SingleFractureSubModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel: + soap_serialize_PointerToprodml23__SingleFractureSubModel(soap, (prodml23__SingleFractureSubModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore: - soap_serialize_PointerToprodml22__FractureAngleToWellbore(soap, (prodml22__FractureAngleToWellbore *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore: + soap_serialize_PointerToprodml23__FractureAngleToWellbore(soap, (prodml23__FractureAngleToWellbore *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures: - soap_serialize_PointerToprodml22__NumberOfFractures(soap, (prodml22__NumberOfFractures *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures: + soap_serialize_PointerToprodml23__NumberOfFractures(soap, (prodml23__NumberOfFractures *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary: - soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, (prodml22__DistanceWellboreToBottomBoundary *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary: + soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, (prodml23__DistanceWellboreToBottomBoundary *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing: - soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, (prodml22__LengthHorizontalWellboreFlowing *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing: + soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, (prodml23__LengthHorizontalWellboreFlowing *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory: - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, (prodml22__OrientationWellTrajectory *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory: + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, (prodml23__OrientationWellTrajectory *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness: - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, (prodml22__MechanicalSkinRelativeToTotalThickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness: + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, (prodml23__MechanicalSkinRelativeToTotalThickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness: - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, (prodml22__ConvergenceSkinRelativeToTotalThickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness: + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, (prodml23__ConvergenceSkinRelativeToTotalThickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary: - soap_serialize_PointerToprodml22__DistanceFractureToBottomBoundary(soap, (prodml22__DistanceFractureToBottomBoundary *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary: + soap_serialize_PointerToprodml23__DistanceFractureToBottomBoundary(soap, (prodml23__DistanceFractureToBottomBoundary *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius: - soap_serialize_PointerToprodml22__FractureRadius(soap, (prodml22__FractureRadius *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius: + soap_serialize_PointerToprodml23__FractureRadius(soap, (prodml23__FractureRadius *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane: - soap_serialize_PointerToprodml22__OrientationOfFracturePlane(soap, (prodml22__OrientationOfFracturePlane *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane: + soap_serialize_PointerToprodml23__OrientationOfFracturePlane(soap, (prodml23__OrientationOfFracturePlane *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength: - soap_serialize_PointerToprodml22__FractureHalfLength(soap, (prodml22__FractureHalfLength *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength: + soap_serialize_PointerToprodml23__FractureHalfLength(soap, (prodml23__FractureHalfLength *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness: - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, (prodml22__SkinLayer2RelativeToTotalThickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness: + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, (prodml23__SkinLayer2RelativeToTotalThickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness: - soap_serialize_PointerToprodml22__Layer2Thickness(soap, (prodml22__Layer2Thickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness: + soap_serialize_PointerToprodml23__Layer2Thickness(soap, (prodml23__Layer2Thickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - soap_serialize_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + soap_serialize_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio: - soap_serialize_PointerToprodml22__StorativityRatio(soap, (prodml22__StorativityRatio *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio: + soap_serialize_PointerToprodml23__StorativityRatio(soap, (prodml23__StorativityRatio *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName: - soap_serialize_PointerToprodml22__ModelName(soap, (prodml22__ModelName *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName: + soap_serialize_PointerToprodml23__ModelName(soap, (prodml23__ModelName *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1: - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, (prodml22__OrientationOfNormalToBoundary1 *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1: + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, (prodml23__OrientationOfNormalToBoundary1 *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4: - soap_serialize_PointerToprodml22__DistanceToBoundary4(soap, (prodml22__DistanceToBoundary4 *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4: + soap_serialize_PointerToprodml23__DistanceToBoundary4(soap, (prodml23__DistanceToBoundary4 *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3: - soap_serialize_PointerToprodml22__DistanceToBoundary3(soap, (prodml22__DistanceToBoundary3 *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3: + soap_serialize_PointerToprodml23__DistanceToBoundary3(soap, (prodml23__DistanceToBoundary3 *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2: - soap_serialize_PointerToprodml22__DistanceToBoundary2(soap, (prodml22__DistanceToBoundary2 *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2: + soap_serialize_PointerToprodml23__DistanceToBoundary2(soap, (prodml23__DistanceToBoundary2 *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1: - soap_serialize_PointerToprodml22__DistanceToBoundary1(soap, (prodml22__DistanceToBoundary1 *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1: + soap_serialize_PointerToprodml23__DistanceToBoundary1(soap, (prodml23__DistanceToBoundary1 *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured: - soap_serialize_PointerToprodml22__PoreVolumeMeasured(soap, (prodml22__PoreVolumeMeasured *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured: + soap_serialize_PointerToprodml23__PoreVolumeMeasured(soap, (prodml23__PoreVolumeMeasured *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured: - soap_serialize_PointerToprodml22__DrainageAreaMeasured(soap, (prodml22__DrainageAreaMeasured *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured: + soap_serialize_PointerToprodml23__DrainageAreaMeasured(soap, (prodml23__DrainageAreaMeasured *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin: - soap_serialize_PointerToprodml22__LeakSkin(soap, (prodml22__LeakSkin *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin: + soap_serialize_PointerToprodml23__LeakSkin(soap, (prodml23__LeakSkin *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges: - soap_serialize_PointerToprodml22__DeltaTimeStorageChanges(soap, (prodml22__DeltaTimeStorageChanges *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges: + soap_serialize_PointerToprodml23__DeltaTimeStorageChanges(soap, (prodml23__DeltaTimeStorageChanges *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage: - soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, (prodml22__RatioInitialToFinalWellboreStorage *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage: + soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, (prodml23__RatioInitialToFinalWellboreStorage *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet: - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, (prodml22__FlowTestMeasurementSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet: + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, (prodml23__FlowTestMeasurementSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent: - soap_serialize_PointerToprodml22__WaterSampleComponent(soap, (prodml22__WaterSampleComponent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent: + soap_serialize_PointerToprodml23__WaterSampleComponent(soap, (prodml23__WaterSampleComponent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest: - soap_serialize_PointerToprodml22__WaterAnalysisTest(soap, (prodml22__WaterAnalysisTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest: + soap_serialize_PointerToprodml23__WaterAnalysisTest(soap, (prodml23__WaterAnalysisTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest: - soap_serialize_PointerToprodml22__NonHydrocarbonTest(soap, (prodml22__NonHydrocarbonTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest: + soap_serialize_PointerToprodml23__NonHydrocarbonTest(soap, (prodml23__NonHydrocarbonTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest: - soap_serialize_PointerToprodml22__InterfacialTensionTest(soap, (prodml22__InterfacialTensionTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest: + soap_serialize_PointerToprodml23__InterfacialTensionTest(soap, (prodml23__InterfacialTensionTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis: - soap_serialize_PointerToprodml22__STOAnalysis(soap, (prodml22__STOAnalysis *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis: + soap_serialize_PointerToprodml23__STOAnalysis(soap, (prodml23__STOAnalysis *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest: - soap_serialize_PointerToprodml22__MultipleContactMiscibilityTest(soap, (prodml22__MultipleContactMiscibilityTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest: + soap_serialize_PointerToprodml23__MultipleContactMiscibilityTest(soap, (prodml23__MultipleContactMiscibilityTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest: - soap_serialize_PointerToprodml22__SlimTubeTest(soap, (prodml22__SlimTubeTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest: + soap_serialize_PointerToprodml23__SlimTubeTest(soap, (prodml23__SlimTubeTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest: - soap_serialize_PointerToprodml22__SwellingTest(soap, (prodml22__SwellingTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest: + soap_serialize_PointerToprodml23__SwellingTest(soap, (prodml23__SwellingTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest: - soap_serialize_PointerToprodml22__VaporLiquidEquilibriumTest(soap, (prodml22__VaporLiquidEquilibriumTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest: + soap_serialize_PointerToprodml23__VaporLiquidEquilibriumTest(soap, (prodml23__VaporLiquidEquilibriumTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest: - soap_serialize_PointerToprodml22__OtherMeasurementTest(soap, (prodml22__OtherMeasurementTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest: + soap_serialize_PointerToprodml23__OtherMeasurementTest(soap, (prodml23__OtherMeasurementTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest: - soap_serialize_PointerToprodml22__FluidSeparatorTest(soap, (prodml22__FluidSeparatorTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest: + soap_serialize_PointerToprodml23__FluidSeparatorTest(soap, (prodml23__FluidSeparatorTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest: - soap_serialize_PointerToprodml22__ConstantVolumeDepletionTest(soap, (prodml22__ConstantVolumeDepletionTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest: + soap_serialize_PointerToprodml23__ConstantVolumeDepletionTest(soap, (prodml23__ConstantVolumeDepletionTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest: - soap_serialize_PointerToprodml22__DifferentialLiberationTest(soap, (prodml22__DifferentialLiberationTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest: + soap_serialize_PointerToprodml23__DifferentialLiberationTest(soap, (prodml23__DifferentialLiberationTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest: - soap_serialize_PointerToprodml22__SaturationTest(soap, (prodml22__SaturationTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest: + soap_serialize_PointerToprodml23__SaturationTest(soap, (prodml23__SaturationTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest: - soap_serialize_PointerToprodml22__ConstantCompositionExpansionTest(soap, (prodml22__ConstantCompositionExpansionTest *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest: + soap_serialize_PointerToprodml23__ConstantCompositionExpansionTest(soap, (prodml23__ConstantCompositionExpansionTest *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis: - soap_serialize_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, (prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis: + soap_serialize_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, (prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation: - soap_serialize_PointerToprodml22__SampleIntegrityAndPreparation(soap, (prodml22__SampleIntegrityAndPreparation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation: + soap_serialize_PointerToprodml23__SampleIntegrityAndPreparation(soap, (prodml23__SampleIntegrityAndPreparation *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind: - soap_serialize_PointerToprodml22__SaturationKind(soap, (prodml22__SaturationKind *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind: + soap_serialize_PointerToprodml23__SaturationKind(soap, (prodml23__SaturationKind *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePressureKind: soap_serialize_PointerToeml23__ReferencePressureKind(soap, (eml23__ReferencePressureKind *const*)ptr); @@ -29006,62 +29006,62 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__ParametricLineIntersections: soap_serialize_PointerToresqml22__ParametricLineIntersections(soap, (resqml22__ParametricLineIntersections *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold: - soap_serialize_PointerToprodml22__TimeSeriesThreshold(soap, (prodml22__TimeSeriesThreshold *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold: + soap_serialize_PointerToprodml23__TimeSeriesThreshold(soap, (prodml23__TimeSeriesThreshold *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime: - soap_serialize_PointerToprodml22__EndpointDateTime(soap, (prodml22__EndpointDateTime *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime: + soap_serialize_PointerToprodml23__EndpointDateTime(soap, (prodml23__EndpointDateTime *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue: - soap_serialize_PointerToprodml22__AbstractValue(soap, (prodml22__AbstractValue *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue: + soap_serialize_PointerToprodml23__AbstractValue(soap, (prodml23__AbstractValue *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct: - soap_serialize_PointerToprodml22__KeywordValueStruct(soap, (prodml22__KeywordValueStruct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct: + soap_serialize_PointerToprodml23__KeywordValueStruct(soap, (prodml23__KeywordValueStruct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample: - soap_serialize_PointerToprodml22__TimeSeriesStringSample(soap, (prodml22__TimeSeriesStringSample *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample: + soap_serialize_PointerToprodml23__TimeSeriesStringSample(soap, (prodml23__TimeSeriesStringSample *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample: - soap_serialize_PointerToprodml22__TimeSeriesDoubleSample(soap, (prodml22__TimeSeriesDoubleSample *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample: + soap_serialize_PointerToprodml23__TimeSeriesDoubleSample(soap, (prodml23__TimeSeriesDoubleSample *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork: - soap_serialize_PointerToprodml22__ProductFlowNetwork(soap, (prodml22__ProductFlowNetwork *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork: + soap_serialize_PointerToprodml23__ProductFlowNetwork(soap, (prodml23__ProductFlowNetwork *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference: - soap_serialize_PointerToprodml22__ProductFlowExternalReference(soap, (prodml22__ProductFlowExternalReference *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference: + soap_serialize_PointerToprodml23__ProductFlowExternalReference(soap, (prodml23__ProductFlowExternalReference *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString: - soap_serialize_PointerToprodml22__KindQualifiedString(soap, (prodml22__KindQualifiedString *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString: + soap_serialize_PointerToprodml23__KindQualifiedString(soap, (prodml23__KindQualifiedString *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility: - soap_serialize_PointerToprodml22__ProductVolumeFacility(soap, (prodml22__ProductVolumeFacility *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility: + soap_serialize_PointerToprodml23__ProductVolumeFacility(soap, (prodml23__ProductVolumeFacility *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferenceCondition: soap_serialize_PointerToeml23__ReferenceCondition(soap, (eml23__ReferenceCondition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod: - soap_serialize_PointerToprodml22__CalculationMethod(soap, (prodml22__CalculationMethod *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod: + soap_serialize_PointerToprodml23__CalculationMethod(soap, (prodml23__CalculationMethod *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime: - soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(soap, (prodml22__EndpointQualifiedDateTime *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime: + soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(soap, (prodml23__EndpointQualifiedDateTime *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount: - soap_serialize_PointerToprodml22__IntegerQualifiedCount(soap, (prodml22__IntegerQualifiedCount *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount: + soap_serialize_PointerToprodml23__IntegerQualifiedCount(soap, (prodml23__IntegerQualifiedCount *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition: - soap_serialize_PointerToprodml22__FluidSampleAcquisition(soap, (prodml22__FluidSampleAcquisition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition: + soap_serialize_PointerToprodml23__FluidSampleAcquisition(soap, (prodml23__FluidSampleAcquisition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification: - soap_serialize_PointerToprodml22__SampleRecombinationSpecification(soap, (prodml22__SampleRecombinationSpecification *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification: + soap_serialize_PointerToprodml23__SampleRecombinationSpecification(soap, (prodml23__SampleRecombinationSpecification *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource: - soap_serialize_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, (prodml22__FluidSampleAcquisitionJobSource *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource: + soap_serialize_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, (prodml23__FluidSampleAcquisitionJobSource *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent: - soap_serialize_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, (prodml22__FluidSampleChainOfCustodyEvent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent: + soap_serialize_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, (prodml23__FluidSampleChainOfCustodyEvent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt: - soap_serialize_PointerToprodml22__FluidSampleKindExt(soap, (std::string *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt: + soap_serialize_PointerToprodml23__FluidSampleKindExt(soap, (std::string *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerPressureMeasureExt: soap_serialize_PointerToeml23__VolumePerPressureMeasureExt(soap, (eml23__VolumePerPressureMeasureExt *const*)ptr); @@ -29075,134 +29075,134 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PermeabilityLengthMeasureExt: soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, (eml23__PermeabilityLengthMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType: - soap_serialize_PointerToprodml22__WellboreStorageMechanismType(soap, (prodml22__WellboreStorageMechanismType *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType: + soap_serialize_PointerToprodml23__WellboreStorageMechanismType(soap, (prodml23__WellboreStorageMechanismType *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle: - soap_serialize_PointerToprodml22__WellboreDeviationAngle(soap, (prodml22__WellboreDeviationAngle *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle: + soap_serialize_PointerToprodml23__WellboreDeviationAngle(soap, (prodml23__WellboreDeviationAngle *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity: - soap_serialize_PointerToprodml22__FluidDensity(soap, (prodml22__FluidDensity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity: + soap_serialize_PointerToprodml23__FluidDensity(soap, (prodml23__FluidDensity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter: - soap_serialize_PointerToprodml22__TubingInteralDiameter(soap, (prodml22__TubingInteralDiameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter: + soap_serialize_PointerToprodml23__TubingInteralDiameter(soap, (prodml23__TubingInteralDiameter *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility: - soap_serialize_PointerToprodml22__WellboreFluidCompressibility(soap, (prodml22__WellboreFluidCompressibility *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility: + soap_serialize_PointerToprodml23__WellboreFluidCompressibility(soap, (prodml23__WellboreFluidCompressibility *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume: - soap_serialize_PointerToprodml22__WellboreVolume(soap, (prodml22__WellboreVolume *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume: + soap_serialize_PointerToprodml23__WellboreVolume(soap, (prodml23__WellboreVolume *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient: - soap_serialize_PointerToprodml22__WellboreStorageCoefficient(soap, (prodml22__WellboreStorageCoefficient *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient: + soap_serialize_PointerToprodml23__WellboreStorageCoefficient(soap, (prodml23__WellboreStorageCoefficient *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius: - soap_serialize_PointerToprodml22__WellboreRadius(soap, (prodml22__WellboreRadius *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius: + soap_serialize_PointerToprodml23__WellboreRadius(soap, (prodml23__WellboreRadius *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType: - soap_serialize_PointerToprodml22__LowerBoundaryType(soap, (prodml22__LowerBoundaryType *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType: + soap_serialize_PointerToprodml23__LowerBoundaryType(soap, (prodml23__LowerBoundaryType *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType: - soap_serialize_PointerToprodml22__UpperBoundaryType(soap, (prodml22__UpperBoundaryType *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType: + soap_serialize_PointerToprodml23__UpperBoundaryType(soap, (prodml23__UpperBoundaryType *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection: - soap_serialize_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, (prodml22__OrientationOfAnisotropyXDirection *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection: + soap_serialize_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, (prodml23__OrientationOfAnisotropyXDirection *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy: - soap_serialize_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, (prodml22__HorizontalAnisotropyKxToKy *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy: + soap_serialize_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, (prodml23__HorizontalAnisotropyKxToKy *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr: - soap_serialize_PointerToprodml22__VerticalAnisotropyKvToKr(soap, (prodml22__VerticalAnisotropyKvToKr *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr: + soap_serialize_PointerToprodml23__VerticalAnisotropyKvToKr(soap, (prodml23__VerticalAnisotropyKvToKr *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure: - soap_serialize_PointerToprodml22__AveragePressure(soap, (prodml22__AveragePressure *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure: + soap_serialize_PointerToprodml23__AveragePressure(soap, (prodml23__AveragePressure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD: - soap_serialize_PointerToprodml22__PressureDatumTVD(soap, (prodml22__PressureDatumTVD *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD: + soap_serialize_PointerToprodml23__PressureDatumTVD(soap, (prodml23__PressureDatumTVD *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure: - soap_serialize_PointerToprodml22__InitialPressure(soap, (prodml22__InitialPressure *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure: + soap_serialize_PointerToprodml23__InitialPressure(soap, (prodml23__InitialPressure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct: - soap_serialize_PointerToprodml22__PermeabilityThicknessProduct(soap, (prodml22__PermeabilityThicknessProduct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct: + soap_serialize_PointerToprodml23__PermeabilityThicknessProduct(soap, (prodml23__PermeabilityThicknessProduct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown: - soap_serialize_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, (prodml22__RatioDpSkinToTotalDrawdown *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown: + soap_serialize_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, (prodml23__RatioDpSkinToTotalDrawdown *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin: - soap_serialize_PointerToprodml22__DeltaPressureTotalSkin(soap, (prodml22__DeltaPressureTotalSkin *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin: + soap_serialize_PointerToprodml23__DeltaPressureTotalSkin(soap, (prodml23__DeltaPressureTotalSkin *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor: - soap_serialize_PointerToprodml22__RateDependentSkinFactor(soap, (prodml22__RateDependentSkinFactor *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor: + soap_serialize_PointerToprodml23__RateDependentSkinFactor(soap, (prodml23__RateDependentSkinFactor *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness: - soap_serialize_PointerToprodml22__SkinRelativeToTotalThickness(soap, (prodml22__SkinRelativeToTotalThickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness: + soap_serialize_PointerToprodml23__SkinRelativeToTotalThickness(soap, (prodml23__SkinRelativeToTotalThickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation: - soap_serialize_PointerToprodml22__PoreVolumeOfInvestigation(soap, (prodml22__PoreVolumeOfInvestigation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation: + soap_serialize_PointerToprodml23__PoreVolumeOfInvestigation(soap, (prodml23__PoreVolumeOfInvestigation *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation: - soap_serialize_PointerToprodml22__RadiusOfInvestigation(soap, (prodml22__RadiusOfInvestigation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation: + soap_serialize_PointerToprodml23__RadiusOfInvestigation(soap, (prodml23__RadiusOfInvestigation *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData: - soap_serialize_PointerToprodml22__OutputFlowData(soap, (prodml22__OutputFlowData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData: + soap_serialize_PointerToprodml23__OutputFlowData(soap, (prodml23__OutputFlowData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput: - soap_serialize_PointerToprodml22__AbstractDeconvolutionOutput(soap, (prodml22__AbstractDeconvolutionOutput *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput: + soap_serialize_PointerToprodml23__AbstractDeconvolutionOutput(soap, (prodml23__AbstractDeconvolutionOutput *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData: - soap_serialize_PointerToprodml22__DeconvolvedFlowData(soap, (prodml22__DeconvolvedFlowData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData: + soap_serialize_PointerToprodml23__DeconvolvedFlowData(soap, (prodml23__DeconvolvedFlowData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData: - soap_serialize_PointerToprodml22__AbstractFlowTestData(soap, (prodml22__AbstractFlowTestData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData: + soap_serialize_PointerToprodml23__AbstractFlowTestData(soap, (prodml23__AbstractFlowTestData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis: - soap_serialize_PointerToprodml22__SpecializedAnalysis(soap, (prodml22__SpecializedAnalysis *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis: + soap_serialize_PointerToprodml23__SpecializedAnalysis(soap, (prodml23__SpecializedAnalysis *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory: - soap_serialize_PointerToprodml22__AbstractRateHistory(soap, (prodml22__AbstractRateHistory *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory: + soap_serialize_PointerToprodml23__AbstractRateHistory(soap, (prodml23__AbstractRateHistory *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis: - soap_serialize_PointerToprodml22__LogLogAnalysis(soap, (prodml22__LogLogAnalysis *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis: + soap_serialize_PointerToprodml23__LogLogAnalysis(soap, (prodml23__LogLogAnalysis *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerTimeMeasure: soap_serialize_PointerToeml23__PressurePerTimeMeasure(soap, (eml23__PressurePerTimeMeasure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval: - soap_serialize_PointerToprodml22__InterferingFlowTestInterval(soap, (prodml22__InterferingFlowTestInterval *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters: + soap_serialize_PointerToprodml23__CompressibilityParameters(soap, (prodml23__CompressibilityParameters *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters: - soap_serialize_PointerToprodml22__CompressibilityParameters(soap, (prodml22__CompressibilityParameters *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis: + soap_serialize_PointerToprodml23__AbstractAnalysis(soap, (prodml23__AbstractAnalysis *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis: - soap_serialize_PointerToprodml22__AbstractAnalysis(soap, (prodml22__AbstractAnalysis *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval: + soap_serialize_PointerToprodml23__InterferingFlowTestInterval(soap, (prodml23__InterferingFlowTestInterval *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied: - soap_serialize_PointerToprodml22__PseudoPressureEffectApplied(soap, (prodml22__PseudoPressureEffectApplied *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied: + soap_serialize_PointerToprodml23__PseudoPressureEffectApplied(soap, (prodml23__PseudoPressureEffectApplied *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel: - soap_serialize_PointerToprodml22__LayerModel(soap, (prodml22__LayerModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel: + soap_serialize_PointerToprodml23__LayerModel(soap, (prodml23__LayerModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel: - soap_serialize_PointerToprodml22__WellboreBaseModel(soap, (prodml22__WellboreBaseModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel: + soap_serialize_PointerToprodml23__WellboreBaseModel(soap, (prodml23__WellboreBaseModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput: - soap_serialize_PointerToprodml22__DeconvolutionOutput(soap, (prodml22__DeconvolutionOutput *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput: + soap_serialize_PointerToprodml23__DeconvolutionOutput(soap, (prodml23__DeconvolutionOutput *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel: - soap_serialize_PointerToprodml22__Channel(soap, (prodml22__Channel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel: + soap_serialize_PointerToprodml23__Channel(soap, (prodml23__Channel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind: - soap_serialize_PointerToprodml22__FluidPhaseKind(soap, (prodml22__FluidPhaseKind *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind: + soap_serialize_PointerToprodml23__FluidPhaseKind(soap, (prodml23__FluidPhaseKind *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState: - soap_serialize_PointerToprodml22__ReservoirLifeCycleState(soap, (prodml22__ReservoirLifeCycleState *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState: + soap_serialize_PointerToprodml23__ReservoirLifeCycleState(soap, (prodml23__ReservoirLifeCycleState *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant: - soap_serialize_PointerToprodml22__SampleContaminant(soap, (prodml22__SampleContaminant *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant: + soap_serialize_PointerToprodml23__SampleContaminant(soap, (prodml23__SampleContaminant *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport: - soap_serialize_PointerToprodml22__FluidAnalysisReport(soap, (prodml22__FluidAnalysisReport *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport: + soap_serialize_PointerToprodml23__FluidAnalysisReport(soap, (prodml23__FluidAnalysisReport *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasureExt: soap_serialize_PointerToeml23__MolecularWeightMeasureExt(soap, (eml23__MolecularWeightMeasureExt *const*)ptr); @@ -29210,23 +29210,23 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerMassMeasure: soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, (eml23__EnergyPerMassMeasure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus: - soap_serialize_PointerToprodml22__ValueStatus(soap, (prodml22__ValueStatus *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus: + soap_serialize_PointerToprodml23__ValueStatus(soap, (prodml23__ValueStatus *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel: - soap_serialize_PointerToprodml22__FluidCharacterizationModel(soap, (prodml22__FluidCharacterizationModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel: + soap_serialize_PointerToprodml23__FluidCharacterizationModel(soap, (prodml23__FluidCharacterizationModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource: - soap_serialize_PointerToprodml22__FluidCharacterizationSource(soap, (prodml22__FluidCharacterizationSource *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource: + soap_serialize_PointerToprodml23__FluidCharacterizationSource(soap, (prodml23__FluidCharacterizationSource *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet: - soap_serialize_PointerToprodml22__BinaryInteractionCoefficientSet(soap, (prodml22__BinaryInteractionCoefficientSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet: + soap_serialize_PointerToprodml23__BinaryInteractionCoefficientSet(soap, (prodml23__BinaryInteractionCoefficientSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet: - soap_serialize_PointerToprodml22__ComponentPropertySet(soap, (prodml22__ComponentPropertySet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet: + soap_serialize_PointerToprodml23__ComponentPropertySet(soap, (prodml23__ComponentPropertySet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule: - soap_serialize_PointerToprodml22__MixingRule(soap, (prodml22__MixingRule *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule: + soap_serialize_PointerToprodml23__MixingRule(soap, (prodml23__MixingRule *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AbstractGraphicalInformation: soap_serialize_PointerToeml23__AbstractGraphicalInformation(soap, (eml23__AbstractGraphicalInformation *const*)ptr); @@ -29735,197 +29735,197 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToresqml22__Point3d: soap_serialize_PointerToresqml22__Point3d(soap, (resqml22__Point3d *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity: - soap_serialize_PointerToprodml22__EndpointQuantity(soap, (prodml22__EndpointQuantity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity: + soap_serialize_PointerToprodml23__EndpointQuantity(soap, (prodml23__EndpointQuantity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate: - soap_serialize_PointerToprodml22__RelativeCoordinate(soap, (prodml22__RelativeCoordinate *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate: + soap_serialize_PointerToprodml23__RelativeCoordinate(soap, (prodml23__RelativeCoordinate *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort: - soap_serialize_PointerToprodml22__ProductFlowPort(soap, (prodml22__ProductFlowPort *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort: + soap_serialize_PointerToprodml23__ProductFlowPort(soap, (prodml23__ProductFlowPort *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty: - soap_serialize_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, (prodml22__ProductFlowExpectedUnitProperty *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty: + soap_serialize_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, (prodml23__ProductFlowExpectedUnitProperty *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode: - soap_serialize_PointerToprodml22__ConnectedNode(soap, (prodml22__ConnectedNode *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode: + soap_serialize_PointerToprodml23__ConnectedNode(soap, (prodml23__ConnectedNode *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected: - soap_serialize_PointerToprodml22__ProductFlowQualifierExpected(soap, (prodml22__ProductFlowQualifierExpected *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected: + soap_serialize_PointerToprodml23__ProductFlowQualifierExpected(soap, (prodml23__ProductFlowQualifierExpected *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier: - soap_serialize_PointerToprodml22__ExpectedFlowQualifier(soap, (prodml22__ExpectedFlowQualifier *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier: + soap_serialize_PointerToprodml23__ExpectedFlowQualifier(soap, (prodml23__ExpectedFlowQualifier *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType: - soap_serialize_PointerToprodml22__GeneralMeasureType(soap, (prodml22__GeneralMeasureType *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType: + soap_serialize_PointerToprodml23__GeneralMeasureType(soap, (prodml23__GeneralMeasureType *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject: - soap_serialize_PointerToprodml22__AbstractRelatedFacilityObject(soap, (prodml22__AbstractRelatedFacilityObject *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject: + soap_serialize_PointerToprodml23__AbstractRelatedFacilityObject(soap, (prodml23__AbstractRelatedFacilityObject *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod: - soap_serialize_PointerToprodml22__ProductVolumePeriod(soap, (prodml22__ProductVolumePeriod *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod: + soap_serialize_PointerToprodml23__ProductVolumePeriod(soap, (prodml23__ProductVolumePeriod *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow: - soap_serialize_PointerToprodml22__AbstractRefProductFlow(soap, (prodml22__AbstractRefProductFlow *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow: + soap_serialize_PointerToprodml23__AbstractRefProductFlow(soap, (prodml23__AbstractRefProductFlow *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction: - soap_serialize_PointerToprodml22__NonNegativeFraction(soap, (float *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction: + soap_serialize_PointerToprodml23__NonNegativeFraction(soap, (float *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass: - soap_serialize_PointerToprodml22__AbstractDateTimeClass(soap, (prodml22__AbstractDateTimeClass *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass: + soap_serialize_PointerToprodml23__AbstractDateTimeClass(soap, (prodml23__AbstractDateTimeClass *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet: - soap_serialize_PointerToprodml22__ProductVolumeBalanceSet(soap, (prodml22__ProductVolumeBalanceSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet: + soap_serialize_PointerToprodml23__ProductVolumeBalanceSet(soap, (prodml23__ProductVolumeBalanceSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert: - soap_serialize_PointerToprodml22__ProductVolumeAlert(soap, (prodml22__ProductVolumeAlert *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert: + soap_serialize_PointerToprodml23__ProductVolumeAlert(soap, (prodml23__ProductVolumeAlert *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData: - soap_serialize_PointerToprodml22__AbstractMeasureData(soap, (prodml22__AbstractMeasureData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData: + soap_serialize_PointerToprodml23__AbstractMeasureData(soap, (prodml23__AbstractMeasureData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition: - soap_serialize_PointerToprodml22__CurveDefinition(soap, (prodml22__CurveDefinition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition: + soap_serialize_PointerToprodml23__CurveDefinition(soap, (prodml23__CurveDefinition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue: - soap_serialize_PointerToprodml22__ProductVolumeParameterValue(soap, (prodml22__ProductVolumeParameterValue *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue: + soap_serialize_PointerToprodml23__ProductVolumeParameterValue(soap, (prodml23__ProductVolumeParameterValue *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind: - soap_serialize_PointerToprodml22__ReportingDurationKind(soap, (prodml22__ReportingDurationKind *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind: + soap_serialize_PointerToprodml23__ReportingDurationKind(soap, (prodml23__ReportingDurationKind *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier: - soap_serialize_PointerToprodml22__ProdmlRelativeIdentifier(soap, (std::string *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier: + soap_serialize_PointerToprodml23__ProdmlRelativeIdentifier(soap, (std::string *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct: - soap_serialize_PointerToprodml22__ProductVolumeProduct(soap, (prodml22__ProductVolumeProduct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct: + soap_serialize_PointerToprodml23__ProductVolumeProduct(soap, (prodml23__ProductVolumeProduct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility: - soap_serialize_PointerToprodml22__ProductVolumeRelatedFacility(soap, (prodml22__ProductVolumeRelatedFacility *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility: + soap_serialize_PointerToprodml23__ProductVolumeRelatedFacility(soap, (prodml23__ProductVolumeRelatedFacility *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier: - soap_serialize_PointerToprodml22__FlowSubQualifier(soap, (prodml22__FlowSubQualifier *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier: + soap_serialize_PointerToprodml23__FlowSubQualifier(soap, (prodml23__FlowSubQualifier *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier: - soap_serialize_PointerToprodml22__FlowQualifier(soap, (prodml22__FlowQualifier *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier: + soap_serialize_PointerToprodml23__FlowQualifier(soap, (prodml23__FlowQualifier *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType: - soap_serialize_PointerToprodml22__ProductFlowPortType(soap, (prodml22__ProductFlowPortType *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType: + soap_serialize_PointerToprodml23__ProductFlowPortType(soap, (prodml23__ProductFlowPortType *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment: - soap_serialize_PointerToprodml22__DatedComment(soap, (prodml22__DatedComment *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment: + soap_serialize_PointerToprodml23__DatedComment(soap, (prodml23__DatedComment *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet: - soap_serialize_PointerToprodml22__ProductVolumeParameterSet(soap, (prodml22__ProductVolumeParameterSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet: + soap_serialize_PointerToprodml23__ProductVolumeParameterSet(soap, (prodml23__ProductVolumeParameterSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow: - soap_serialize_PointerToprodml22__ProductVolumeFlow(soap, (prodml22__ProductVolumeFlow *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow: + soap_serialize_PointerToprodml23__ProductVolumeFlow(soap, (prodml23__ProductVolumeFlow *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod: - soap_serialize_PointerToprodml22__WellOperationMethod(soap, (prodml22__WellOperationMethod *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod: + soap_serialize_PointerToprodml23__WellOperationMethod(soap, (prodml23__WellOperationMethod *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid: - soap_serialize_PointerToprodml22__WellFluid(soap, (prodml22__WellFluid *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid: + soap_serialize_PointerToprodml23__WellFluid(soap, (prodml23__WellFluid *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__WellStatus: soap_serialize_PointerToeml23__WellStatus(soap, (eml23__WellStatus *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType: - soap_serialize_PointerToprodml22__BalanceDestinationType(soap, (prodml22__BalanceDestinationType *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType: + soap_serialize_PointerToprodml23__BalanceDestinationType(soap, (prodml23__BalanceDestinationType *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume: - soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(soap, (prodml22__CommonPropertiesProductVolume *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume: + soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(soap, (prodml23__CommonPropertiesProductVolume *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct: - soap_serialize_PointerToprodml22__ReportingProduct(soap, (prodml22__ReportingProduct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct: + soap_serialize_PointerToprodml23__ReportingProduct(soap, (prodml23__ReportingProduct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit: - soap_serialize_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, (prodml22__ProductVolumeBusinessSubUnit *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit: + soap_serialize_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, (prodml23__ProductVolumeBusinessSubUnit *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct: - soap_serialize_PointerToprodml22__OwnershipBusinessAcct(soap, (prodml22__OwnershipBusinessAcct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct: + soap_serialize_PointerToprodml23__OwnershipBusinessAcct(soap, (prodml23__OwnershipBusinessAcct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination: - soap_serialize_PointerToprodml22__ProductVolumeDestination(soap, (prodml22__ProductVolumeDestination *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination: + soap_serialize_PointerToprodml23__ProductVolumeDestination(soap, (prodml23__ProductVolumeDestination *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail: - soap_serialize_PointerToprodml22__ProductVolumeBalanceDetail(soap, (prodml22__ProductVolumeBalanceDetail *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail: + soap_serialize_PointerToprodml23__ProductVolumeBalanceDetail(soap, (prodml23__ProductVolumeBalanceDetail *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToxsd__nonNegativeInteger: soap_serialize_PointerToxsd__nonNegativeInteger(soap, (ULONG64 *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart: - soap_serialize_PointerToprodml22__BalanceFlowPart(soap, (prodml22__BalanceFlowPart *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart: + soap_serialize_PointerToprodml23__BalanceFlowPart(soap, (prodml23__BalanceFlowPart *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent: - soap_serialize_PointerToprodml22__ProductVolumeBalanceEvent(soap, (prodml22__ProductVolumeBalanceEvent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent: + soap_serialize_PointerToprodml23__ProductVolumeBalanceEvent(soap, (prodml23__ProductVolumeBalanceEvent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent: - soap_serialize_PointerToprodml22__ProductVolumeComponentContent(soap, (prodml22__ProductVolumeComponentContent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent: + soap_serialize_PointerToprodml23__ProductVolumeComponentContent(soap, (prodml23__ProductVolumeComponentContent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent: - soap_serialize_PointerToprodml22__FacilityParent(soap, (prodml22__FacilityParent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent: + soap_serialize_PointerToprodml23__FacilityParent(soap, (prodml23__FacilityParent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference: - soap_serialize_PointerToprodml22__ProductVolumePortDifference(soap, (prodml22__ProductVolumePortDifference *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference: + soap_serialize_PointerToprodml23__ProductVolumePortDifference(soap, (prodml23__ProductVolumePortDifference *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__DensityValue: soap_serialize_PointerToeml23__DensityValue(soap, (eml23__DensityValue *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction: - soap_serialize_PointerToprodml22__RecombinedSampleFraction(soap, (prodml22__RecombinedSampleFraction *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction: + soap_serialize_PointerToprodml23__RecombinedSampleFraction(soap, (prodml23__RecombinedSampleFraction *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction: - soap_serialize_PointerToprodml22__SampleAction(soap, (prodml22__SampleAction *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction: + soap_serialize_PointerToprodml23__SampleAction(soap, (prodml23__SampleAction *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter: - soap_serialize_PointerToprodml22__CustomParameter(soap, (prodml22__CustomParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter: + soap_serialize_PointerToprodml23__CustomParameter(soap, (prodml23__CustomParameter *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter: - soap_serialize_PointerToprodml22__AbstractParameter(soap, (prodml22__AbstractParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter: + soap_serialize_PointerToprodml23__AbstractParameter(soap, (prodml23__AbstractParameter *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio: - soap_serialize_PointerToprodml22__FractureStorativityRatio(soap, (prodml22__FractureStorativityRatio *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio: + soap_serialize_PointerToprodml23__FractureStorativityRatio(soap, (prodml23__FractureStorativityRatio *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin: - soap_serialize_PointerToprodml22__FractureFaceSkin(soap, (prodml22__FractureFaceSkin *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin: + soap_serialize_PointerToprodml23__FractureFaceSkin(soap, (prodml23__FractureFaceSkin *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary: - soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, (prodml22__DistanceMidFractureHeightToBottomBoundary *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary: + soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, (prodml23__DistanceMidFractureHeightToBottomBoundary *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight: - soap_serialize_PointerToprodml22__FractureHeight(soap, (prodml22__FractureHeight *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight: + soap_serialize_PointerToprodml23__FractureHeight(soap, (prodml23__FractureHeight *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness: - soap_serialize_PointerToprodml22__TotalThickness(soap, (prodml22__TotalThickness *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness: + soap_serialize_PointerToprodml23__TotalThickness(soap, (prodml23__TotalThickness *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity: - soap_serialize_PointerToprodml22__Porosity(soap, (prodml22__Porosity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity: + soap_serialize_PointerToprodml23__Porosity(soap, (prodml23__Porosity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability: - soap_serialize_PointerToprodml22__HorizontalRadialPermeability(soap, (prodml22__HorizontalRadialPermeability *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability: + soap_serialize_PointerToprodml23__HorizontalRadialPermeability(soap, (prodml23__HorizontalRadialPermeability *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D: - soap_serialize_PointerToprodml22__LocationIn2D(soap, (prodml22__LocationIn2D *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D: + soap_serialize_PointerToprodml23__LocationIn2D(soap, (prodml23__LocationIn2D *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine: - soap_serialize_PointerToprodml22__AnalysisLine(soap, (prodml22__AnalysisLine *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine: + soap_serialize_PointerToprodml23__AnalysisLine(soap, (prodml23__AnalysisLine *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData: - soap_serialize_PointerToprodml22__AbstractPtaPressureData(soap, (prodml22__AbstractPtaPressureData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData: + soap_serialize_PointerToprodml23__AbstractPtaPressureData(soap, (prodml23__AbstractPtaPressureData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter: - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, (prodml22__InterporosityFlowParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter: + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, (prodml23__InterporosityFlowParameter *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection: - soap_serialize_PointerToprodml22__LayerToLayerConnection(soap, (prodml22__LayerToLayerConnection *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection: + soap_serialize_PointerToprodml23__LayerToLayerConnection(soap, (prodml23__LayerToLayerConnection *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel: - soap_serialize_PointerToprodml22__BoundaryBaseModel(soap, (prodml22__BoundaryBaseModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel: + soap_serialize_PointerToprodml23__BoundaryBaseModel(soap, (prodml23__BoundaryBaseModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel: - soap_serialize_PointerToprodml22__ReservoirBaseModel(soap, (prodml22__ReservoirBaseModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel: + soap_serialize_PointerToprodml23__ReservoirBaseModel(soap, (prodml23__ReservoirBaseModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel: - soap_serialize_PointerToprodml22__NearWellboreBaseModel(soap, (prodml22__NearWellboreBaseModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel: + soap_serialize_PointerToprodml23__NearWellboreBaseModel(soap, (prodml23__NearWellboreBaseModel *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateMeasure: soap_serialize_PointerToeml23__PressurePerFlowrateMeasure(soap, (eml23__PressurePerFlowrateMeasure *const*)ptr); @@ -29936,74 +29936,74 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerTimePerPressureMeasure: soap_serialize_PointerToeml23__VolumePerTimePerPressureMeasure(soap, (eml23__VolumePerTimePerPressureMeasure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity: - soap_serialize_PointerToprodml22__FractureConductivity(soap, (prodml22__FractureConductivity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity: + soap_serialize_PointerToprodml23__FractureConductivity(soap, (prodml23__FractureConductivity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront: - soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, (prodml22__TransmissibilityReductionFactorOfLinearFront *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront: + soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, (prodml23__TransmissibilityReductionFactorOfLinearFront *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData: - soap_serialize_PointerToprodml22__OutputPressureData(soap, (prodml22__OutputPressureData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData: + soap_serialize_PointerToprodml23__OutputPressureData(soap, (prodml23__OutputPressureData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef: - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, (prodml22__ResqmlModelRef *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef: + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, (prodml23__ResqmlModelRef *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData: - soap_serialize_PointerToprodml22__DeconvolvedPressureData(soap, (prodml22__DeconvolvedPressureData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData: + soap_serialize_PointerToprodml23__DeconvolvedPressureData(soap, (prodml23__DeconvolvedPressureData *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasureExt: soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, (eml23__ReciprocalPressureMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode: - soap_serialize_PointerToprodml22__ReportingHierarchyNode(soap, (prodml22__ReportingHierarchyNode *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode: + soap_serialize_PointerToprodml23__ReportingHierarchyNode(soap, (prodml23__ReportingHierarchyNode *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate: - soap_serialize_PointerToprodml22__ProductRate(soap, (prodml22__ProductRate *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate: + soap_serialize_PointerToprodml23__ProductRate(soap, (prodml23__ProductRate *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition: - soap_serialize_PointerToprodml22__WellFlowingCondition(soap, (prodml22__WellFlowingCondition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition: + soap_serialize_PointerToprodml23__WellFlowingCondition(soap, (prodml23__WellFlowingCondition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind: - soap_serialize_PointerToprodml22__TestPeriodKind(soap, (prodml22__TestPeriodKind *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind: + soap_serialize_PointerToprodml23__TestPeriodKind(soap, (prodml23__TestPeriodKind *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__FlowRateValue: soap_serialize_PointerToeml23__FlowRateValue(soap, (eml23__FlowRateValue *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog: - soap_serialize_PointerToprodml22__FluidComponentCatalog(soap, (prodml22__FluidComponentCatalog *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog: + soap_serialize_PointerToprodml23__FluidComponentCatalog(soap, (prodml23__FluidComponentCatalog *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData: - soap_serialize_PointerToprodml22__MeasuredPressureData(soap, (prodml22__MeasuredPressureData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData: + soap_serialize_PointerToprodml23__MeasuredPressureData(soap, (prodml23__MeasuredPressureData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData: - soap_serialize_PointerToprodml22__AbstractPtaFlowData(soap, (prodml22__AbstractPtaFlowData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData: + soap_serialize_PointerToprodml23__AbstractPtaFlowData(soap, (prodml23__AbstractPtaFlowData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData: - soap_serialize_PointerToprodml22__OtherData(soap, (prodml22__OtherData *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData: + soap_serialize_PointerToprodml23__OtherData(soap, (prodml23__OtherData *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation: - soap_serialize_PointerToprodml22__FlowTestLocation(soap, (prodml22__FlowTestLocation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation: + soap_serialize_PointerToprodml23__FlowTestLocation(soap, (prodml23__FlowTestLocation *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod: - soap_serialize_PointerToprodml22__TestPeriod(soap, (prodml22__TestPeriod *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod: + soap_serialize_PointerToprodml23__TestPeriod(soap, (prodml23__TestPeriod *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePointKind: soap_serialize_PointerToeml23__ReferencePointKind(soap, (eml23__ReferencePointKind *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation: - soap_serialize_PointerToprodml22__TimeSeriesPointRepresentation(soap, (prodml22__TimeSeriesPointRepresentation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation: + soap_serialize_PointerToprodml23__TimeSeriesPointRepresentation(soap, (prodml23__TimeSeriesPointRepresentation *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt: soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, (eml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt: - soap_serialize_PointerToprodml22__OrganicAcidKindExt(soap, (std::string *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt: + soap_serialize_PointerToprodml23__OrganicAcidKindExt(soap, (std::string *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt: - soap_serialize_PointerToprodml22__CationKindExt(soap, (std::string *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt: + soap_serialize_PointerToprodml23__CationKindExt(soap, (std::string *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt: - soap_serialize_PointerToprodml22__AnionKindExt(soap, (std::string *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt: + soap_serialize_PointerToprodml23__AnionKindExt(soap, (std::string *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure: soap_serialize_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, (eml23__EnergyLengthPerTimeAreaTemperatureMeasure *const*)ptr); @@ -30029,83 +30029,83 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ElectricalResistivityMeasureExt: soap_serialize_PointerToeml23__ElectricalResistivityMeasureExt(soap, (eml23__ElectricalResistivityMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep: - soap_serialize_PointerToprodml22__WaterAnalysisTestStep(soap, (prodml22__WaterAnalysisTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep: + soap_serialize_PointerToprodml23__WaterAnalysisTestStep(soap, (prodml23__WaterAnalysisTestStep *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerMassMeasureExt: soap_serialize_PointerToeml23__MassPerMassMeasureExt(soap, (eml23__MassPerMassMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity: - soap_serialize_PointerToprodml22__PhaseDensity(soap, (prodml22__PhaseDensity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity: + soap_serialize_PointerToprodml23__PhaseDensity(soap, (prodml23__PhaseDensity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity: - soap_serialize_PointerToprodml22__PhaseViscosity(soap, (prodml22__PhaseViscosity *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity: + soap_serialize_PointerToprodml23__PhaseViscosity(soap, (prodml23__PhaseViscosity *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded: - soap_serialize_PointerToprodml22__RefInjectedGasAdded(soap, (prodml22__RefInjectedGasAdded *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded: + soap_serialize_PointerToprodml23__RefInjectedGasAdded(soap, (prodml23__RefInjectedGasAdded *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep: - soap_serialize_PointerToprodml22__SwellingTestStep(soap, (prodml22__SwellingTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep: + soap_serialize_PointerToprodml23__SwellingTestStep(soap, (prodml23__SwellingTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara: - soap_serialize_PointerToprodml22__Sara(soap, (prodml22__Sara *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara: + soap_serialize_PointerToprodml23__Sara(soap, (prodml23__Sara *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature: - soap_serialize_PointerToprodml22__ViscosityAtTemperature(soap, (prodml22__ViscosityAtTemperature *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature: + soap_serialize_PointerToprodml23__ViscosityAtTemperature(soap, (prodml23__ViscosityAtTemperature *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid: - soap_serialize_PointerToprodml22__STOFlashedLiquid(soap, (prodml22__STOFlashedLiquid *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid: + soap_serialize_PointerToprodml23__STOFlashedLiquid(soap, (prodml23__STOFlashedLiquid *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance: - soap_serialize_PointerToprodml22__MassBalance(soap, (prodml22__MassBalance *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance: + soap_serialize_PointerToprodml23__MassBalance(soap, (prodml23__MassBalance *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties: - soap_serialize_PointerToprodml22__ProducedOilProperties(soap, (prodml22__ProducedOilProperties *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties: + soap_serialize_PointerToprodml23__ProducedOilProperties(soap, (prodml23__ProducedOilProperties *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties: - soap_serialize_PointerToprodml22__ProducedGasProperties(soap, (prodml22__ProducedGasProperties *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties: + soap_serialize_PointerToprodml23__ProducedGasProperties(soap, (prodml23__ProducedGasProperties *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep: - soap_serialize_PointerToprodml22__SlimTubeTestVolumeStep(soap, (prodml22__SlimTubeTestVolumeStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep: + soap_serialize_PointerToprodml23__SlimTubeTestVolumeStep(soap, (prodml23__SlimTubeTestVolumeStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification: - soap_serialize_PointerToprodml22__SlimTubeSpecification(soap, (prodml22__SlimTubeSpecification *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification: + soap_serialize_PointerToprodml23__SlimTubeSpecification(soap, (prodml23__SlimTubeSpecification *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep: - soap_serialize_PointerToprodml22__SlimTubeTestStep(soap, (prodml22__SlimTubeTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep: + soap_serialize_PointerToprodml23__SlimTubeTestStep(soap, (prodml23__SlimTubeTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas: - soap_serialize_PointerToprodml22__InjectedGas(soap, (prodml22__InjectedGas *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas: + soap_serialize_PointerToprodml23__InjectedGas(soap, (prodml23__InjectedGas *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration: - soap_serialize_PointerToprodml22__SampleRestoration(soap, (prodml22__SampleRestoration *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration: + soap_serialize_PointerToprodml23__SampleRestoration(soap, (prodml23__SampleRestoration *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature: - soap_serialize_PointerToprodml22__SaturationTemperature(soap, (prodml22__SaturationTemperature *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature: + soap_serialize_PointerToprodml23__SaturationTemperature(soap, (prodml23__SaturationTemperature *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep: - soap_serialize_PointerToprodml22__OtherMeasurementTestStep(soap, (prodml22__OtherMeasurementTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep: + soap_serialize_PointerToprodml23__OtherMeasurementTestStep(soap, (prodml23__OtherMeasurementTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet: - soap_serialize_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, (prodml22__FluidCharacterizationTableFormatSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet: + soap_serialize_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, (prodml23__FluidCharacterizationTableFormatSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut: - soap_serialize_PointerToprodml22__MassOut(soap, (prodml22__MassOut *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut: + soap_serialize_PointerToprodml23__MassOut(soap, (prodml23__MassOut *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn: - soap_serialize_PointerToprodml22__MassIn(soap, (prodml22__MassIn *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn: + soap_serialize_PointerToprodml23__MassIn(soap, (prodml23__MassIn *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep: - soap_serialize_PointerToprodml22__InterfacialTensionTestStep(soap, (prodml22__InterfacialTensionTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep: + soap_serialize_PointerToprodml23__InterfacialTensionTestStep(soap, (prodml23__InterfacialTensionTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent: - soap_serialize_PointerToprodml22__AbstractFluidComponent(soap, (prodml22__AbstractFluidComponent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent: + soap_serialize_PointerToprodml23__AbstractFluidComponent(soap, (prodml23__AbstractFluidComponent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep: - soap_serialize_PointerToprodml22__FluidSeparatorTestStep(soap, (prodml22__FluidSeparatorTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep: + soap_serialize_PointerToprodml23__FluidSeparatorTestStep(soap, (prodml23__FluidSeparatorTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation: - soap_serialize_PointerToprodml22__ReportLocation(soap, (prodml22__ReportLocation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation: + soap_serialize_PointerToprodml23__ReportLocation(soap, (prodml23__ReportLocation *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerVolumeMeasureExt: soap_serialize_PointerToeml23__EnergyPerVolumeMeasureExt(soap, (eml23__EnergyPerVolumeMeasureExt *const*)ptr); @@ -30113,113 +30113,113 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerMassMeasureExt: soap_serialize_PointerToeml23__EnergyPerMassMeasureExt(soap, (eml23__EnergyPerMassMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep: - soap_serialize_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, (prodml22__FluidDifferentialLiberationTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep: + soap_serialize_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, (prodml23__FluidDifferentialLiberationTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions: - soap_serialize_PointerToprodml22__SeparatorConditions(soap, (prodml22__SeparatorConditions *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions: + soap_serialize_PointerToprodml23__SeparatorConditions(soap, (prodml23__SeparatorConditions *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep: - soap_serialize_PointerToprodml22__FluidCvdTestStep(soap, (prodml22__FluidCvdTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep: + soap_serialize_PointerToprodml23__FluidCvdTestStep(soap, (prodml23__FluidCvdTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition: - soap_serialize_PointerToprodml22__LiquidComposition(soap, (prodml22__LiquidComposition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition: + soap_serialize_PointerToprodml23__LiquidComposition(soap, (prodml23__LiquidComposition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition: - soap_serialize_PointerToprodml22__VaporComposition(soap, (prodml22__VaporComposition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition: + soap_serialize_PointerToprodml23__VaporComposition(soap, (prodml23__VaporComposition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent: - soap_serialize_PointerToprodml22__PhasePresent(soap, (prodml22__PhasePresent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent: + soap_serialize_PointerToprodml23__PhasePresent(soap, (prodml23__PhasePresent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition: - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, (prodml22__FluidAnalysisStepCondition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition: + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, (prodml23__FluidAnalysisStepCondition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility: - soap_serialize_PointerToprodml22__OilCompressibility(soap, (prodml22__OilCompressibility *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility: + soap_serialize_PointerToprodml23__OilCompressibility(soap, (prodml23__OilCompressibility *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio: - soap_serialize_PointerToprodml22__RelativeVolumeRatio(soap, (prodml22__RelativeVolumeRatio *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio: + soap_serialize_PointerToprodml23__RelativeVolumeRatio(soap, (prodml23__RelativeVolumeRatio *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep: - soap_serialize_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, (prodml22__ConstantCompositionExpansionTestStep *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep: + soap_serialize_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, (prodml23__ConstantCompositionExpansionTestStep *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference: - soap_serialize_PointerToprodml22__FluidVolumeReference(soap, (prodml22__FluidVolumeReference *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference: + soap_serialize_PointerToprodml23__FluidVolumeReference(soap, (prodml23__FluidVolumeReference *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure: - soap_serialize_PointerToprodml22__SaturationPressure(soap, (prodml22__SaturationPressure *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure: + soap_serialize_PointerToprodml23__SaturationPressure(soap, (prodml23__SaturationPressure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas: - soap_serialize_PointerToprodml22__FlashedGas(soap, (prodml22__FlashedGas *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas: + soap_serialize_PointerToprodml23__FlashedGas(soap, (prodml23__FlashedGas *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition: - soap_serialize_PointerToprodml22__OverallComposition(soap, (prodml22__OverallComposition *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition: + soap_serialize_PointerToprodml23__OverallComposition(soap, (prodml23__OverallComposition *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid: - soap_serialize_PointerToprodml22__FlashedLiquid(soap, (prodml22__FlashedLiquid *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid: + soap_serialize_PointerToprodml23__FlashedLiquid(soap, (prodml23__FlashedLiquid *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasure: soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, (eml23__MolecularWeightMeasure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit: - soap_serialize_PointerToprodml22__ProductFlowUnit(soap, (prodml22__ProductFlowUnit *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit: + soap_serialize_PointerToprodml23__ProductFlowUnit(soap, (prodml23__ProductFlowUnit *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog: - soap_serialize_PointerToprodml22__ProductFlowChangeLog(soap, (prodml22__ProductFlowChangeLog *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog: + soap_serialize_PointerToprodml23__ProductFlowChangeLog(soap, (prodml23__ProductFlowChangeLog *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan: - soap_serialize_PointerToprodml22__ProductFlowNetworkPlan(soap, (prodml22__ProductFlowNetworkPlan *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan: + soap_serialize_PointerToprodml23__ProductFlowNetworkPlan(soap, (prodml23__ProductFlowNetworkPlan *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort: - soap_serialize_PointerToprodml22__ProductFlowExternalPort(soap, (prodml22__ProductFlowExternalPort *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort: + soap_serialize_PointerToprodml23__ProductFlowExternalPort(soap, (prodml23__ProductFlowExternalPort *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore: - soap_serialize_PointerToprodml22__NorthSeaOffshore(soap, (prodml22__NorthSeaOffshore *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore: + soap_serialize_PointerToprodml23__NorthSeaOffshore(soap, (prodml23__NorthSeaOffshore *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction: - soap_serialize_PointerToprodml22__FluidComponentFraction(soap, (prodml22__FluidComponentFraction *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction: + soap_serialize_PointerToprodml23__FluidComponentFraction(soap, (prodml23__FluidComponentFraction *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation: - soap_serialize_PointerToprodml22__OffshoreLocation(soap, (prodml22__OffshoreLocation *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation: + soap_serialize_PointerToprodml23__OffshoreLocation(soap, (prodml23__OffshoreLocation *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerVolumeMeasureExt: soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, (eml23__VolumePerVolumeMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent: - soap_serialize_PointerToprodml22__SulfurFluidComponent(soap, (prodml22__SulfurFluidComponent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent: + soap_serialize_PointerToprodml23__SulfurFluidComponent(soap, (prodml23__SulfurFluidComponent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent: - soap_serialize_PointerToprodml22__PlusFluidComponent(soap, (prodml22__PlusFluidComponent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent: + soap_serialize_PointerToprodml23__PlusFluidComponent(soap, (prodml23__PlusFluidComponent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent: - soap_serialize_PointerToprodml22__PseudoFluidComponent(soap, (prodml22__PseudoFluidComponent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent: + soap_serialize_PointerToprodml23__PseudoFluidComponent(soap, (prodml23__PseudoFluidComponent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent: - soap_serialize_PointerToprodml22__PureFluidComponent(soap, (prodml22__PureFluidComponent *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent: + soap_serialize_PointerToprodml23__PureFluidComponent(soap, (prodml23__PureFluidComponent *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater: - soap_serialize_PointerToprodml22__FormationWater(soap, (prodml22__FormationWater *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater: + soap_serialize_PointerToprodml23__FormationWater(soap, (prodml23__FormationWater *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas: - soap_serialize_PointerToprodml22__NaturalGas(soap, (prodml22__NaturalGas *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas: + soap_serialize_PointerToprodml23__NaturalGas(soap, (prodml23__NaturalGas *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil: - soap_serialize_PointerToprodml22__StockTankOil(soap, (prodml22__StockTankOil *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil: + soap_serialize_PointerToprodml23__StockTankOil(soap, (prodml23__StockTankOil *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility: - soap_serialize_PointerToprodml22__ReportingFacility(soap, (prodml22__ReportingFacility *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility: + soap_serialize_PointerToprodml23__ReportingFacility(soap, (prodml23__ReportingFacility *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext: - soap_serialize_PointerToprodml22__GeographicContext(soap, (prodml22__GeographicContext *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext: + soap_serialize_PointerToprodml23__GeographicContext(soap, (prodml23__GeographicContext *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit: - soap_serialize_PointerToprodml22__ProductVolumeBusinessUnit(soap, (prodml22__ProductVolumeBusinessUnit *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit: + soap_serialize_PointerToprodml23__ProductVolumeBusinessUnit(soap, (prodml23__ProductVolumeBusinessUnit *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct: - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, (prodml22__FacilityIdentifierStruct *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct: + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, (prodml23__FacilityIdentifierStruct *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier: - soap_serialize_PointerToprodml22__EndpointQualifier(soap, (prodml22__EndpointQualifier *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier: + soap_serialize_PointerToprodml23__EndpointQualifier(soap, (prodml23__EndpointQualifier *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstanceMeasure: soap_serialize_PointerToeml23__AmountOfSubstanceMeasure(soap, (eml23__AmountOfSubstanceMeasure *const*)ptr); @@ -30227,8 +30227,8 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumeValue: soap_serialize_PointerToeml23__VolumeValue(soap, (eml23__VolumeValue *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind: - soap_serialize_PointerToprodml22__DetectableLimitRelativeStateKind(soap, (prodml22__DetectableLimitRelativeStateKind *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind: + soap_serialize_PointerToprodml23__DetectableLimitRelativeStateKind(soap, (prodml23__DetectableLimitRelativeStateKind *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure: soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, (eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *const*)ptr); @@ -30236,11 +30236,11 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerVolumeMeasureExt: soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, (eml23__MassPerVolumeMeasureExt *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth: - soap_serialize_PointerToprodml22__CalendarMonth(soap, (std::string *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth: + soap_serialize_PointerToprodml23__CalendarMonth(soap, (std::string *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter: - soap_serialize_PointerToprodml22__PvtModelParameter(soap, (prodml22__PvtModelParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter: + soap_serialize_PointerToprodml23__PvtModelParameter(soap, (prodml23__PvtModelParameter *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasure: soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, (eml23__ReciprocalPressureMeasure *const*)ptr); @@ -30251,47 +30251,47 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_markelement(struct soap *soap, const void *ptr, case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolarVolumeMeasure: soap_serialize_PointerToeml23__MolarVolumeMeasure(soap, (eml23__MolarVolumeMeasure *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat: - soap_serialize_PointerToprodml22__FluidCharacterizationTableFormat(soap, (prodml22__FluidCharacterizationTableFormat *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat: + soap_serialize_PointerToprodml23__FluidCharacterizationTableFormat(soap, (prodml23__FluidCharacterizationTableFormat *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn: - soap_serialize_PointerToprodml22__FluidCharacterizationTableColumn(soap, (prodml22__FluidCharacterizationTableColumn *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn: + soap_serialize_PointerToprodml23__FluidCharacterizationTableColumn(soap, (prodml23__FluidCharacterizationTableColumn *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow: - soap_serialize_PointerToprodml22__FluidCharacterizationTableRow(soap, (prodml22__FluidCharacterizationTableRow *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow: + soap_serialize_PointerToprodml23__FluidCharacterizationTableRow(soap, (prodml23__FluidCharacterizationTableRow *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter: - soap_serialize_PointerToprodml22__FluidCharacterizationParameter(soap, (prodml22__FluidCharacterizationParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter: + soap_serialize_PointerToprodml23__FluidCharacterizationParameter(soap, (prodml23__FluidCharacterizationParameter *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase: - soap_serialize_PointerToprodml22__ThermodynamicPhase(soap, (prodml22__ThermodynamicPhase *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase: + soap_serialize_PointerToprodml23__ThermodynamicPhase(soap, (prodml23__ThermodynamicPhase *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage: - soap_serialize_PointerToprodml22__ReferenceSeparatorStage(soap, (prodml22__ReferenceSeparatorStage *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage: + soap_serialize_PointerToprodml23__ReferenceSeparatorStage(soap, (prodml23__ReferenceSeparatorStage *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet: - soap_serialize_PointerToprodml22__FluidCharacterizationParameterSet(soap, (prodml22__FluidCharacterizationParameterSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet: + soap_serialize_PointerToprodml23__FluidCharacterizationParameterSet(soap, (prodml23__FluidCharacterizationParameterSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable: - soap_serialize_PointerToprodml22__FluidCharacterizationTable(soap, (prodml22__FluidCharacterizationTable *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable: + soap_serialize_PointerToprodml23__FluidCharacterizationTable(soap, (prodml23__FluidCharacterizationTable *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel: - soap_serialize_PointerToprodml22__AbstractPvtModel(soap, (prodml22__AbstractPvtModel *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel: + soap_serialize_PointerToprodml23__AbstractPvtModel(soap, (prodml23__AbstractPvtModel *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter: - soap_serialize_PointerToprodml22__CustomPvtModelParameter(soap, (prodml22__CustomPvtModelParameter *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter: + soap_serialize_PointerToprodml23__CustomPvtModelParameter(soap, (prodml23__CustomPvtModelParameter *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty: - soap_serialize_PointerToprodml22__FluidComponentProperty(soap, (prodml22__FluidComponentProperty *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty: + soap_serialize_PointerToprodml23__FluidComponentProperty(soap, (prodml23__FluidComponentProperty *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient: - soap_serialize_PointerToprodml22__BinaryInteractionCoefficient(soap, (prodml22__BinaryInteractionCoefficient *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient: + soap_serialize_PointerToprodml23__BinaryInteractionCoefficient(soap, (prodml23__BinaryInteractionCoefficient *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet: - soap_serialize_PointerToprodml22__PvtModelParameterSet(soap, (prodml22__PvtModelParameterSet *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet: + soap_serialize_PointerToprodml23__PvtModelParameterSet(soap, (prodml23__PvtModelParameterSet *const*)ptr); break; - case SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension: - soap_serialize_PointerToprodml22__CustomPvtModelExtension(soap, (prodml22__CustomPvtModelExtension *const*)ptr); + case SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension: + soap_serialize_PointerToprodml23__CustomPvtModelExtension(soap, (prodml23__CustomPvtModelExtension *const*)ptr); break; case SOAP_TYPE_gsoap_eml2_3_PointerToeml23__Column: soap_serialize_PointerToeml23__Column(soap, (eml23__Column *const*)ptr); @@ -31631,310 +31631,320 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__IndexRange(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGraphicalInformation: return (void*)soap_instantiate_eml23__AbstractGraphicalInformation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel: - return (void*)soap_instantiate_prodml22__AbstractPvtModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet: - return (void*)soap_instantiate_prodml22__BinaryInteractionCoefficientSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet: - return (void*)soap_instantiate_prodml22__ComponentPropertySet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension: - return (void*)soap_instantiate_prodml22__CustomPvtModelExtension(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter: - return (void*)soap_instantiate_prodml22__CustomPvtModelParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel: - return (void*)soap_instantiate_prodml22__FluidCharacterizationModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter: - return (void*)soap_instantiate_prodml22__FluidCharacterizationParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet: - return (void*)soap_instantiate_prodml22__FluidCharacterizationParameterSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource: - return (void*)soap_instantiate_prodml22__FluidCharacterizationSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable: - return (void*)soap_instantiate_prodml22__FluidCharacterizationTable(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn: - return (void*)soap_instantiate_prodml22__FluidCharacterizationTableColumn(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat: - return (void*)soap_instantiate_prodml22__FluidCharacterizationTableFormat(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet: - return (void*)soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty: - return (void*)soap_instantiate_prodml22__FluidComponentProperty(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter: - return (void*)soap_instantiate_prodml22__PrsvParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet: - return (void*)soap_instantiate_prodml22__PvtModelParameterSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage: - return (void*)soap_instantiate_prodml22__ReferenceSeparatorStage(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass: - return (void*)soap_instantiate_prodml22__AbstractDateTimeClass(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent: - return (void*)soap_instantiate_prodml22__AbstractFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity: - return (void*)soap_instantiate_prodml22__AbstractProductQuantity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter: - return (void*)soap_instantiate_prodml22__CalibrationParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment: - return (void*)soap_instantiate_prodml22__DatedComment(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate: - return (void*)soap_instantiate_prodml22__EndpointQualifiedDate(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime: - return (void*)soap_instantiate_prodml22__EndpointQualifiedDateTime(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier: - return (void*)soap_instantiate_prodml22__FacilityIdentifier(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct: - return (void*)soap_instantiate_prodml22__FacilityIdentifierStruct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog: - return (void*)soap_instantiate_prodml22__FluidComponentCatalog(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction: - return (void*)soap_instantiate_prodml22__FluidComponentFraction(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType: - return (void*)soap_instantiate_prodml22__GeneralMeasureType(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext: - return (void*)soap_instantiate_prodml22__GeographicContext(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition: - return (void*)soap_instantiate_prodml22__LiquidComposition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore: - return (void*)soap_instantiate_prodml22__NorthSeaOffshore(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation: - return (void*)soap_instantiate_prodml22__OffshoreLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition: - return (void*)soap_instantiate_prodml22__OverallComposition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference: - return (void*)soap_instantiate_prodml22__ProductFlowExternalReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork: - return (void*)soap_instantiate_prodml22__ProductFlowNetwork(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition: - return (void*)soap_instantiate_prodml22__VaporComposition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume: - return (void*)soap_instantiate_prodml22__AbstractGasProducedRatioVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume: - return (void*)soap_instantiate_prodml22__AbstractLiquidDropoutPercVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage: - return (void*)soap_instantiate_prodml22__AbstractOilVolShrinkage(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis: - return (void*)soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest: - return (void*)soap_instantiate_prodml22__ConstantCompositionExpansionTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep: - return (void*)soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest: - return (void*)soap_instantiate_prodml22__ConstantVolumeDepletionTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest: - return (void*)soap_instantiate_prodml22__DifferentialLiberationTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas: - return (void*)soap_instantiate_prodml22__FlashedGas(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid: - return (void*)soap_instantiate_prodml22__FlashedLiquid(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport: - return (void*)soap_instantiate_prodml22__FluidAnalysisReport(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep: - return (void*)soap_instantiate_prodml22__FluidCvdTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep: - return (void*)soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest: - return (void*)soap_instantiate_prodml22__FluidSeparatorTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep: - return (void*)soap_instantiate_prodml22__FluidSeparatorTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference: - return (void*)soap_instantiate_prodml22__FluidVolumeReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas: - return (void*)soap_instantiate_prodml22__InjectedGas(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest: - return (void*)soap_instantiate_prodml22__InterfacialTensionTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep: - return (void*)soap_instantiate_prodml22__InterfacialTensionTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance: - return (void*)soap_instantiate_prodml22__MassBalance(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn: - return (void*)soap_instantiate_prodml22__MassIn(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut: - return (void*)soap_instantiate_prodml22__MassOut(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest: - return (void*)soap_instantiate_prodml22__MultipleContactMiscibilityTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest: - return (void*)soap_instantiate_prodml22__NonHydrocarbonTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest: - return (void*)soap_instantiate_prodml22__OtherMeasurementTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep: - return (void*)soap_instantiate_prodml22__OtherMeasurementTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity: - return (void*)soap_instantiate_prodml22__PhaseDensity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity: - return (void*)soap_instantiate_prodml22__PhaseViscosity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties: - return (void*)soap_instantiate_prodml22__ProducedGasProperties(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties: - return (void*)soap_instantiate_prodml22__ProducedOilProperties(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation: - return (void*)soap_instantiate_prodml22__ReportLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant: - return (void*)soap_instantiate_prodml22__SampleContaminant(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation: - return (void*)soap_instantiate_prodml22__SampleIntegrityAndPreparation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration: - return (void*)soap_instantiate_prodml22__SampleRestoration(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Sara: - return (void*)soap_instantiate_prodml22__Sara(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest: - return (void*)soap_instantiate_prodml22__SaturationTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions: - return (void*)soap_instantiate_prodml22__SeparatorConditions(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification: - return (void*)soap_instantiate_prodml22__SlimTubeSpecification(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest: - return (void*)soap_instantiate_prodml22__SlimTubeTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep: - return (void*)soap_instantiate_prodml22__SlimTubeTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep: - return (void*)soap_instantiate_prodml22__SlimTubeTestVolumeStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis: - return (void*)soap_instantiate_prodml22__STOAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid: - return (void*)soap_instantiate_prodml22__STOFlashedLiquid(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest: - return (void*)soap_instantiate_prodml22__SwellingTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep: - return (void*)soap_instantiate_prodml22__SwellingTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest: - return (void*)soap_instantiate_prodml22__VaporLiquidEquilibriumTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature: - return (void*)soap_instantiate_prodml22__ViscosityAtTemperature(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest: - return (void*)soap_instantiate_prodml22__WaterAnalysisTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep: - return (void*)soap_instantiate_prodml22__WaterAnalysisTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent: - return (void*)soap_instantiate_prodml22__WaterSampleComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData: - return (void*)soap_instantiate_prodml22__AbstractFlowTestData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation: - return (void*)soap_instantiate_prodml22__FlowTestLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet: - return (void*)soap_instantiate_prodml22__FlowTestMeasurementSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate: - return (void*)soap_instantiate_prodml22__ProductRate(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod: - return (void*)soap_instantiate_prodml22__TestPeriod(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition: - return (void*)soap_instantiate_prodml22__WellFlowingCondition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode: - return (void*)soap_instantiate_prodml22__ReportingHierarchyNode(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis: - return (void*)soap_instantiate_prodml22__AbstractAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput: - return (void*)soap_instantiate_prodml22__AbstractDeconvolutionOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory: - return (void*)soap_instantiate_prodml22__AbstractRateHistory(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine: - return (void*)soap_instantiate_prodml22__AnalysisLine(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters: - return (void*)soap_instantiate_prodml22__CompressibilityParameters(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput: - return (void*)soap_instantiate_prodml22__DeconvolutionOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel: - return (void*)soap_instantiate_prodml22__DistributedParametersSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval: - return (void*)soap_instantiate_prodml22__InterferingFlowTestInterval(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel: - return (void*)soap_instantiate_prodml22__InternalFaultSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel: - return (void*)soap_instantiate_prodml22__LayerModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection: - return (void*)soap_instantiate_prodml22__LayerToLayerConnection(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D: - return (void*)soap_instantiate_prodml22__LocationIn2D(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis: - return (void*)soap_instantiate_prodml22__LogLogAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel: - return (void*)soap_instantiate_prodml22__ReservoirZoneSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef: - return (void*)soap_instantiate_prodml22__ResqmlModelRef(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel: - return (void*)soap_instantiate_prodml22__SingleBoundarySubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel: - return (void*)soap_instantiate_prodml22__SingleFractureSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis: - return (void*)soap_instantiate_prodml22__SpecializedAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection: - return (void*)soap_instantiate_prodml22__AbstractModelSection(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter: - return (void*)soap_instantiate_prodml22__AbstractParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource: - return (void*)soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent: - return (void*)soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction: - return (void*)soap_instantiate_prodml22__RecombinedSampleFraction(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification: - return (void*)soap_instantiate_prodml22__SampleRecombinationSpecification(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition: - return (void*)soap_instantiate_prodml22__FluidSampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume: - return (void*)soap_instantiate_prodml22__CommonPropertiesProductVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData: - return (void*)soap_instantiate_prodml22__AbstractMeasureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow: - return (void*)soap_instantiate_prodml22__AbstractRefProductFlow(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject: - return (void*)soap_instantiate_prodml22__AbstractRelatedFacilityObject(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition: - return (void*)soap_instantiate_prodml22__CurveDefinition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct: - return (void*)soap_instantiate_prodml22__OwnershipBusinessAcct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert: - return (void*)soap_instantiate_prodml22__ProductVolumeAlert(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail: - return (void*)soap_instantiate_prodml22__ProductVolumeBalanceDetail(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent: - return (void*)soap_instantiate_prodml22__ProductVolumeBalanceEvent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet: - return (void*)soap_instantiate_prodml22__ProductVolumeBalanceSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit: - return (void*)soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit: - return (void*)soap_instantiate_prodml22__ProductVolumeBusinessUnit(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent: - return (void*)soap_instantiate_prodml22__ProductVolumeComponentContent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination: - return (void*)soap_instantiate_prodml22__ProductVolumeDestination(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility: - return (void*)soap_instantiate_prodml22__ProductVolumeFacility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow: - return (void*)soap_instantiate_prodml22__ProductVolumeFlow(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet: - return (void*)soap_instantiate_prodml22__ProductVolumeParameterSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue: - return (void*)soap_instantiate_prodml22__ProductVolumeParameterValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod: - return (void*)soap_instantiate_prodml22__ProductVolumePeriod(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference: - return (void*)soap_instantiate_prodml22__ProductVolumePortDifference(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct: - return (void*)soap_instantiate_prodml22__ProductVolumeProduct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility: - return (void*)soap_instantiate_prodml22__ProductVolumeRelatedFacility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode: - return (void*)soap_instantiate_prodml22__ConnectedNode(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier: - return (void*)soap_instantiate_prodml22__ExpectedFlowQualifier(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog: - return (void*)soap_instantiate_prodml22__ProductFlowChangeLog(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty: - return (void*)soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort: - return (void*)soap_instantiate_prodml22__ProductFlowExternalPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan: - return (void*)soap_instantiate_prodml22__ProductFlowNetworkPlan(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort: - return (void*)soap_instantiate_prodml22__ProductFlowPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit: - return (void*)soap_instantiate_prodml22__ProductFlowUnit(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate: - return (void*)soap_instantiate_prodml22__RelativeCoordinate(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue: - return (void*)soap_instantiate_prodml22__AbstractValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold: - return (void*)soap_instantiate_prodml22__TimeSeriesThreshold(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel: + return (void*)soap_instantiate_prodml23__AbstractPvtModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet: + return (void*)soap_instantiate_prodml23__BinaryInteractionCoefficientSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet: + return (void*)soap_instantiate_prodml23__ComponentPropertySet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension: + return (void*)soap_instantiate_prodml23__CustomPvtModelExtension(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter: + return (void*)soap_instantiate_prodml23__CustomPvtModelParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel: + return (void*)soap_instantiate_prodml23__FluidCharacterizationModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter: + return (void*)soap_instantiate_prodml23__FluidCharacterizationParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet: + return (void*)soap_instantiate_prodml23__FluidCharacterizationParameterSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource: + return (void*)soap_instantiate_prodml23__FluidCharacterizationSource(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable: + return (void*)soap_instantiate_prodml23__FluidCharacterizationTable(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn: + return (void*)soap_instantiate_prodml23__FluidCharacterizationTableColumn(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat: + return (void*)soap_instantiate_prodml23__FluidCharacterizationTableFormat(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet: + return (void*)soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty: + return (void*)soap_instantiate_prodml23__FluidComponentProperty(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter: + return (void*)soap_instantiate_prodml23__PrsvParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet: + return (void*)soap_instantiate_prodml23__PvtModelParameterSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage: + return (void*)soap_instantiate_prodml23__ReferenceSeparatorStage(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass: + return (void*)soap_instantiate_prodml23__AbstractDateTimeClass(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent: + return (void*)soap_instantiate_prodml23__AbstractFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity: + return (void*)soap_instantiate_prodml23__AbstractProductQuantity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter: + return (void*)soap_instantiate_prodml23__CalibrationParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment: + return (void*)soap_instantiate_prodml23__DatedComment(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate: + return (void*)soap_instantiate_prodml23__EndpointQualifiedDate(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime: + return (void*)soap_instantiate_prodml23__EndpointQualifiedDateTime(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier: + return (void*)soap_instantiate_prodml23__FacilityIdentifier(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct: + return (void*)soap_instantiate_prodml23__FacilityIdentifierStruct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog: + return (void*)soap_instantiate_prodml23__FluidComponentCatalog(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction: + return (void*)soap_instantiate_prodml23__FluidComponentFraction(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType: + return (void*)soap_instantiate_prodml23__GeneralMeasureType(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext: + return (void*)soap_instantiate_prodml23__GeographicContext(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition: + return (void*)soap_instantiate_prodml23__LiquidComposition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore: + return (void*)soap_instantiate_prodml23__NorthSeaOffshore(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation: + return (void*)soap_instantiate_prodml23__OffshoreLocation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition: + return (void*)soap_instantiate_prodml23__OverallComposition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference: + return (void*)soap_instantiate_prodml23__ProductFlowExternalReference(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork: + return (void*)soap_instantiate_prodml23__ProductFlowNetwork(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition: + return (void*)soap_instantiate_prodml23__VaporComposition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume: + return (void*)soap_instantiate_prodml23__AbstractGasProducedRatioVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume: + return (void*)soap_instantiate_prodml23__AbstractLiquidDropoutPercVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage: + return (void*)soap_instantiate_prodml23__AbstractOilVolShrinkage(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis: + return (void*)soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest: + return (void*)soap_instantiate_prodml23__ConstantCompositionExpansionTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep: + return (void*)soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest: + return (void*)soap_instantiate_prodml23__ConstantVolumeDepletionTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest: + return (void*)soap_instantiate_prodml23__DifferentialLiberationTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas: + return (void*)soap_instantiate_prodml23__FlashedGas(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid: + return (void*)soap_instantiate_prodml23__FlashedLiquid(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport: + return (void*)soap_instantiate_prodml23__FluidAnalysisReport(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep: + return (void*)soap_instantiate_prodml23__FluidCvdTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep: + return (void*)soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest: + return (void*)soap_instantiate_prodml23__FluidSeparatorTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep: + return (void*)soap_instantiate_prodml23__FluidSeparatorTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference: + return (void*)soap_instantiate_prodml23__FluidVolumeReference(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas: + return (void*)soap_instantiate_prodml23__InjectedGas(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest: + return (void*)soap_instantiate_prodml23__InterfacialTensionTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep: + return (void*)soap_instantiate_prodml23__InterfacialTensionTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance: + return (void*)soap_instantiate_prodml23__MassBalance(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn: + return (void*)soap_instantiate_prodml23__MassIn(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut: + return (void*)soap_instantiate_prodml23__MassOut(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest: + return (void*)soap_instantiate_prodml23__MultipleContactMiscibilityTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest: + return (void*)soap_instantiate_prodml23__NonHydrocarbonTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility: + return (void*)soap_instantiate_prodml23__OilCompressibility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest: + return (void*)soap_instantiate_prodml23__OtherMeasurementTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep: + return (void*)soap_instantiate_prodml23__OtherMeasurementTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity: + return (void*)soap_instantiate_prodml23__PhaseDensity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity: + return (void*)soap_instantiate_prodml23__PhaseViscosity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties: + return (void*)soap_instantiate_prodml23__ProducedGasProperties(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties: + return (void*)soap_instantiate_prodml23__ProducedOilProperties(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded: + return (void*)soap_instantiate_prodml23__RefInjectedGasAdded(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio: + return (void*)soap_instantiate_prodml23__RelativeVolumeRatio(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation: + return (void*)soap_instantiate_prodml23__ReportLocation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant: + return (void*)soap_instantiate_prodml23__SampleContaminant(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation: + return (void*)soap_instantiate_prodml23__SampleIntegrityAndPreparation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration: + return (void*)soap_instantiate_prodml23__SampleRestoration(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Sara: + return (void*)soap_instantiate_prodml23__Sara(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure: + return (void*)soap_instantiate_prodml23__SaturationPressure(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature: + return (void*)soap_instantiate_prodml23__SaturationTemperature(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest: + return (void*)soap_instantiate_prodml23__SaturationTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions: + return (void*)soap_instantiate_prodml23__SeparatorConditions(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification: + return (void*)soap_instantiate_prodml23__SlimTubeSpecification(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest: + return (void*)soap_instantiate_prodml23__SlimTubeTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep: + return (void*)soap_instantiate_prodml23__SlimTubeTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep: + return (void*)soap_instantiate_prodml23__SlimTubeTestVolumeStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis: + return (void*)soap_instantiate_prodml23__STOAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid: + return (void*)soap_instantiate_prodml23__STOFlashedLiquid(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest: + return (void*)soap_instantiate_prodml23__SwellingTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep: + return (void*)soap_instantiate_prodml23__SwellingTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest: + return (void*)soap_instantiate_prodml23__VaporLiquidEquilibriumTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature: + return (void*)soap_instantiate_prodml23__ViscosityAtTemperature(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest: + return (void*)soap_instantiate_prodml23__WaterAnalysisTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep: + return (void*)soap_instantiate_prodml23__WaterAnalysisTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent: + return (void*)soap_instantiate_prodml23__WaterSampleComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData: + return (void*)soap_instantiate_prodml23__AbstractFlowTestData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation: + return (void*)soap_instantiate_prodml23__FlowTestLocation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet: + return (void*)soap_instantiate_prodml23__FlowTestMeasurementSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate: + return (void*)soap_instantiate_prodml23__ProductRate(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod: + return (void*)soap_instantiate_prodml23__TestPeriod(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition: + return (void*)soap_instantiate_prodml23__WellFlowingCondition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode: + return (void*)soap_instantiate_prodml23__ReportingHierarchyNode(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis: + return (void*)soap_instantiate_prodml23__AbstractAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput: + return (void*)soap_instantiate_prodml23__AbstractDeconvolutionOutput(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory: + return (void*)soap_instantiate_prodml23__AbstractRateHistory(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine: + return (void*)soap_instantiate_prodml23__AnalysisLine(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters: + return (void*)soap_instantiate_prodml23__CompressibilityParameters(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput: + return (void*)soap_instantiate_prodml23__DeconvolutionOutput(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel: + return (void*)soap_instantiate_prodml23__DistributedParametersSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval: + return (void*)soap_instantiate_prodml23__InterferingFlowTestInterval(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel: + return (void*)soap_instantiate_prodml23__InternalFaultSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel: + return (void*)soap_instantiate_prodml23__LayerModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection: + return (void*)soap_instantiate_prodml23__LayerToLayerConnection(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D: + return (void*)soap_instantiate_prodml23__LocationIn2D(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis: + return (void*)soap_instantiate_prodml23__LogLogAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel: + return (void*)soap_instantiate_prodml23__ReservoirZoneSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef: + return (void*)soap_instantiate_prodml23__ResqmlModelRef(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel: + return (void*)soap_instantiate_prodml23__SingleBoundarySubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel: + return (void*)soap_instantiate_prodml23__SingleFractureSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis: + return (void*)soap_instantiate_prodml23__SpecializedAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection: + return (void*)soap_instantiate_prodml23__AbstractModelSection(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter: + return (void*)soap_instantiate_prodml23__AbstractParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource: + return (void*)soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent: + return (void*)soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction: + return (void*)soap_instantiate_prodml23__RecombinedSampleFraction(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification: + return (void*)soap_instantiate_prodml23__SampleRecombinationSpecification(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition: + return (void*)soap_instantiate_prodml23__FluidSampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume: + return (void*)soap_instantiate_prodml23__CommonPropertiesProductVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData: + return (void*)soap_instantiate_prodml23__AbstractMeasureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow: + return (void*)soap_instantiate_prodml23__AbstractRefProductFlow(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject: + return (void*)soap_instantiate_prodml23__AbstractRelatedFacilityObject(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition: + return (void*)soap_instantiate_prodml23__CurveDefinition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct: + return (void*)soap_instantiate_prodml23__OwnershipBusinessAcct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert: + return (void*)soap_instantiate_prodml23__ProductVolumeAlert(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail: + return (void*)soap_instantiate_prodml23__ProductVolumeBalanceDetail(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent: + return (void*)soap_instantiate_prodml23__ProductVolumeBalanceEvent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet: + return (void*)soap_instantiate_prodml23__ProductVolumeBalanceSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit: + return (void*)soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit: + return (void*)soap_instantiate_prodml23__ProductVolumeBusinessUnit(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent: + return (void*)soap_instantiate_prodml23__ProductVolumeComponentContent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination: + return (void*)soap_instantiate_prodml23__ProductVolumeDestination(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility: + return (void*)soap_instantiate_prodml23__ProductVolumeFacility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow: + return (void*)soap_instantiate_prodml23__ProductVolumeFlow(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet: + return (void*)soap_instantiate_prodml23__ProductVolumeParameterSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue: + return (void*)soap_instantiate_prodml23__ProductVolumeParameterValue(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod: + return (void*)soap_instantiate_prodml23__ProductVolumePeriod(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference: + return (void*)soap_instantiate_prodml23__ProductVolumePortDifference(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct: + return (void*)soap_instantiate_prodml23__ProductVolumeProduct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility: + return (void*)soap_instantiate_prodml23__ProductVolumeRelatedFacility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode: + return (void*)soap_instantiate_prodml23__ConnectedNode(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier: + return (void*)soap_instantiate_prodml23__ExpectedFlowQualifier(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog: + return (void*)soap_instantiate_prodml23__ProductFlowChangeLog(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty: + return (void*)soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort: + return (void*)soap_instantiate_prodml23__ProductFlowExternalPort(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan: + return (void*)soap_instantiate_prodml23__ProductFlowNetworkPlan(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort: + return (void*)soap_instantiate_prodml23__ProductFlowPort(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit: + return (void*)soap_instantiate_prodml23__ProductFlowUnit(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate: + return (void*)soap_instantiate_prodml23__RelativeCoordinate(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue: + return (void*)soap_instantiate_prodml23__AbstractValue(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold: + return (void*)soap_instantiate_prodml23__TimeSeriesThreshold(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGeometry: return (void*)soap_instantiate_resqml22__AbstractGeometry(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractParametricLineArray: @@ -32347,284 +32357,284 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__DataAssuranceRecord(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet: return (void*)soap_instantiate_eml23__GraphicalInformationSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: - return (void*)soap_instantiate_prodml22__AbstractCompositionalModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: - return (void*)soap_instantiate_prodml22__AbstractCorrelationModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: - return (void*)soap_instantiate_prodml22__FluidCharacterization(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: - return (void*)soap_instantiate_prodml22__FormationWater(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: - return (void*)soap_instantiate_prodml22__GeneralQualifiedMeasure(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: - return (void*)soap_instantiate_prodml22__IntegerQualifiedCount(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: - return (void*)soap_instantiate_prodml22__KindQualifiedString(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: - return (void*)soap_instantiate_prodml22__NaturalGas(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: - return (void*)soap_instantiate_prodml22__PlusFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: - return (void*)soap_instantiate_prodml22__ProductFluid(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: - return (void*)soap_instantiate_prodml22__PseudoFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: - return (void*)soap_instantiate_prodml22__PureFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: - return (void*)soap_instantiate_prodml22__ServiceFluid(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: - return (void*)soap_instantiate_prodml22__StartEndDate(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: - return (void*)soap_instantiate_prodml22__StartEndTime(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: - return (void*)soap_instantiate_prodml22__StockTankOil(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: - return (void*)soap_instantiate_prodml22__SulfurFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: - return (void*)soap_instantiate_prodml22__CumulativeGasProducedRatioStd(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: - return (void*)soap_instantiate_prodml22__CumulativeGasProducedVol(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: - return (void*)soap_instantiate_prodml22__FluidAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: - return (void*)soap_instantiate_prodml22__LiquidDropoutFraction(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: - return (void*)soap_instantiate_prodml22__LiquidVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: - return (void*)soap_instantiate_prodml22__OilShrinkageFactor(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: - return (void*)soap_instantiate_prodml22__OilVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: - return (void*)soap_instantiate_prodml22__FluidSystem(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: - return (void*)soap_instantiate_prodml22__AbstractPtaFlowData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: - return (void*)soap_instantiate_prodml22__Channel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: - return (void*)soap_instantiate_prodml22__ChannelSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: - return (void*)soap_instantiate_prodml22__FlowTestActivity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: - return (void*)soap_instantiate_prodml22__OtherData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: - return (void*)soap_instantiate_prodml22__Facility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: - return (void*)soap_instantiate_prodml22__ReportingEntity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: - return (void*)soap_instantiate_prodml22__ReportingHierarchy(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: - return (void*)soap_instantiate_prodml22__AbstractPtaPressureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: - return (void*)soap_instantiate_prodml22__ChannelFlowrateData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: - return (void*)soap_instantiate_prodml22__DeconvolutionMultipleOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: - return (void*)soap_instantiate_prodml22__DeconvolutionSingleOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: - return (void*)soap_instantiate_prodml22__PressureTransientAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: - return (void*)soap_instantiate_prodml22__PtaAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: - return (void*)soap_instantiate_prodml22__PtaDataPreProcess(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: - return (void*)soap_instantiate_prodml22__PtaDeconvolution(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: - return (void*)soap_instantiate_prodml22__RtaAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: - return (void*)soap_instantiate_prodml22__SingleFlowrateData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: - return (void*)soap_instantiate_prodml22__TestPeriodsFlowrateData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: - return (void*)soap_instantiate_prodml22__BoundaryBaseModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: - return (void*)soap_instantiate_prodml22__NearWellboreBaseModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: - return (void*)soap_instantiate_prodml22__ReservoirBaseModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: - return (void*)soap_instantiate_prodml22__WellboreBaseModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: - return (void*)soap_instantiate_prodml22__AngleBetweenBoundaries(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: - return (void*)soap_instantiate_prodml22__AveragePressure(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: - return (void*)soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: - return (void*)soap_instantiate_prodml22__CustomParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: - return (void*)soap_instantiate_prodml22__DeltaPressureTotalSkin(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: - return (void*)soap_instantiate_prodml22__DeltaTimeStorageChanges(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: - return (void*)soap_instantiate_prodml22__DistanceFractureToBottomBoundary(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: - return (void*)soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: - return (void*)soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: - return (void*)soap_instantiate_prodml22__DistanceToBoundary1(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: - return (void*)soap_instantiate_prodml22__DistanceToBoundary2(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: - return (void*)soap_instantiate_prodml22__DistanceToBoundary3(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: - return (void*)soap_instantiate_prodml22__DistanceToBoundary4(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: - return (void*)soap_instantiate_prodml22__DistanceToMobilityInterface(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: - return (void*)soap_instantiate_prodml22__DistanceToPinchOut(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: - return (void*)soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: - return (void*)soap_instantiate_prodml22__DrainageAreaMeasured(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: - return (void*)soap_instantiate_prodml22__FaultConductivity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: - return (void*)soap_instantiate_prodml22__FluidDensity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: - return (void*)soap_instantiate_prodml22__FractureAngleToWellbore(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: - return (void*)soap_instantiate_prodml22__FractureConductivity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: - return (void*)soap_instantiate_prodml22__FractureFaceSkin(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: - return (void*)soap_instantiate_prodml22__FractureHalfLength(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: - return (void*)soap_instantiate_prodml22__FractureHeight(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: - return (void*)soap_instantiate_prodml22__FractureRadius(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: - return (void*)soap_instantiate_prodml22__FractureStorativityRatio(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: - return (void*)soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: - return (void*)soap_instantiate_prodml22__HorizontalRadialPermeability(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: - return (void*)soap_instantiate_prodml22__InitialPressure(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: - return (void*)soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: - return (void*)soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: - return (void*)soap_instantiate_prodml22__InterporosityFlowParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: - return (void*)soap_instantiate_prodml22__Layer2Thickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: - return (void*)soap_instantiate_prodml22__LeakSkin(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: - return (void*)soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: - return (void*)soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: - return (void*)soap_instantiate_prodml22__ModelName(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: - return (void*)soap_instantiate_prodml22__NumberOfFractures(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: - return (void*)soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: - return (void*)soap_instantiate_prodml22__OrientationOfFracturePlane(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: - return (void*)soap_instantiate_prodml22__OrientationOfLinearFront(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: - return (void*)soap_instantiate_prodml22__OrientationOfNormalToBoundary1(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: - return (void*)soap_instantiate_prodml22__OrientationWellTrajectory(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: - return (void*)soap_instantiate_prodml22__PerforatedLength(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: - return (void*)soap_instantiate_prodml22__PermeabilityThicknessProduct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: - return (void*)soap_instantiate_prodml22__PoreVolumeMeasured(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: - return (void*)soap_instantiate_prodml22__PoreVolumeOfInvestigation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: - return (void*)soap_instantiate_prodml22__Porosity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: - return (void*)soap_instantiate_prodml22__PressureDatumTVD(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: - return (void*)soap_instantiate_prodml22__RadiusOfInvestigation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: - return (void*)soap_instantiate_prodml22__RateDependentSkinFactor(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: - return (void*)soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: - return (void*)soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - return (void*)soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: - return (void*)soap_instantiate_prodml22__Region2Thickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: - return (void*)soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: - return (void*)soap_instantiate_prodml22__SkinRelativeToTotalThickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: - return (void*)soap_instantiate_prodml22__StorativityRatio(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: - return (void*)soap_instantiate_prodml22__TotalThickness(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: - return (void*)soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: - return (void*)soap_instantiate_prodml22__TubingInteralDiameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: - return (void*)soap_instantiate_prodml22__VerticalAnisotropyKvToKr(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: - return (void*)soap_instantiate_prodml22__WellboreDeviationAngle(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: - return (void*)soap_instantiate_prodml22__WellboreFluidCompressibility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: - return (void*)soap_instantiate_prodml22__WellboreRadius(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: - return (void*)soap_instantiate_prodml22__WellboreStorageCoefficient(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: - return (void*)soap_instantiate_prodml22__WellboreVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: - return (void*)soap_instantiate_prodml22__FluidSample(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: - return (void*)soap_instantiate_prodml22__FluidSampleContainer(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: - return (void*)soap_instantiate_prodml22__DownholeSampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: - return (void*)soap_instantiate_prodml22__FacilitySampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: - return (void*)soap_instantiate_prodml22__FluidSampleAcquisitionJob(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: - return (void*)soap_instantiate_prodml22__FormationTesterSampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: - return (void*)soap_instantiate_prodml22__SeparatorSampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: - return (void*)soap_instantiate_prodml22__WellheadSampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: - return (void*)soap_instantiate_prodml22__FlowTestJob(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: - return (void*)soap_instantiate_prodml22__CurveData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: - return (void*)soap_instantiate_prodml22__FacilityParent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: - return (void*)soap_instantiate_prodml22__FacilityUnitPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: - return (void*)soap_instantiate_prodml22__IntegerData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: - return (void*)soap_instantiate_prodml22__Parentfacility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: - return (void*)soap_instantiate_prodml22__ProductVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: - return (void*)soap_instantiate_prodml22__ReferenceFlow(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: - return (void*)soap_instantiate_prodml22__StringData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: - return (void*)soap_instantiate_prodml22__ProductFlowModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: - return (void*)soap_instantiate_prodml22__ProductFlowQualifierExpected(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: - return (void*)soap_instantiate_prodml22__Qualifier(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: - return (void*)soap_instantiate_prodml22__DoubleValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: - return (void*)soap_instantiate_prodml22__StringValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: - return (void*)soap_instantiate_prodml22__TimeSeriesData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: - return (void*)soap_instantiate_prodml22__TimeSeriesStatistic(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: + return (void*)soap_instantiate_prodml23__AbstractCompositionalModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: + return (void*)soap_instantiate_prodml23__AbstractCorrelationModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: + return (void*)soap_instantiate_prodml23__FluidCharacterization(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: + return (void*)soap_instantiate_prodml23__FormationWater(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: + return (void*)soap_instantiate_prodml23__GeneralQualifiedMeasure(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: + return (void*)soap_instantiate_prodml23__IntegerQualifiedCount(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: + return (void*)soap_instantiate_prodml23__KindQualifiedString(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: + return (void*)soap_instantiate_prodml23__NaturalGas(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: + return (void*)soap_instantiate_prodml23__PlusFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: + return (void*)soap_instantiate_prodml23__ProductFluid(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: + return (void*)soap_instantiate_prodml23__PseudoFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: + return (void*)soap_instantiate_prodml23__PureFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: + return (void*)soap_instantiate_prodml23__ServiceFluid(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: + return (void*)soap_instantiate_prodml23__StartEndDate(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: + return (void*)soap_instantiate_prodml23__StartEndTime(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: + return (void*)soap_instantiate_prodml23__StockTankOil(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: + return (void*)soap_instantiate_prodml23__SulfurFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: + return (void*)soap_instantiate_prodml23__CumulativeGasProducedRatioStd(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: + return (void*)soap_instantiate_prodml23__CumulativeGasProducedVol(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: + return (void*)soap_instantiate_prodml23__FluidAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: + return (void*)soap_instantiate_prodml23__LiquidDropoutFraction(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: + return (void*)soap_instantiate_prodml23__LiquidVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: + return (void*)soap_instantiate_prodml23__OilShrinkageFactor(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: + return (void*)soap_instantiate_prodml23__OilVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: + return (void*)soap_instantiate_prodml23__FluidSystem(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: + return (void*)soap_instantiate_prodml23__AbstractPtaFlowData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: + return (void*)soap_instantiate_prodml23__Channel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: + return (void*)soap_instantiate_prodml23__ChannelSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: + return (void*)soap_instantiate_prodml23__FlowTestActivity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: + return (void*)soap_instantiate_prodml23__OtherData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: + return (void*)soap_instantiate_prodml23__Facility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: + return (void*)soap_instantiate_prodml23__ReportingEntity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: + return (void*)soap_instantiate_prodml23__ReportingHierarchy(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: + return (void*)soap_instantiate_prodml23__AbstractPtaPressureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: + return (void*)soap_instantiate_prodml23__ChannelFlowrateData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: + return (void*)soap_instantiate_prodml23__DeconvolutionMultipleOutput(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: + return (void*)soap_instantiate_prodml23__DeconvolutionSingleOutput(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: + return (void*)soap_instantiate_prodml23__PressureTransientAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: + return (void*)soap_instantiate_prodml23__PtaAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: + return (void*)soap_instantiate_prodml23__PtaDataPreProcess(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: + return (void*)soap_instantiate_prodml23__PtaDeconvolution(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: + return (void*)soap_instantiate_prodml23__RtaAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: + return (void*)soap_instantiate_prodml23__SingleFlowrateData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: + return (void*)soap_instantiate_prodml23__TestPeriodsFlowrateData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: + return (void*)soap_instantiate_prodml23__BoundaryBaseModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: + return (void*)soap_instantiate_prodml23__NearWellboreBaseModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: + return (void*)soap_instantiate_prodml23__ReservoirBaseModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: + return (void*)soap_instantiate_prodml23__WellboreBaseModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: + return (void*)soap_instantiate_prodml23__AngleBetweenBoundaries(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: + return (void*)soap_instantiate_prodml23__AveragePressure(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: + return (void*)soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: + return (void*)soap_instantiate_prodml23__CustomParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: + return (void*)soap_instantiate_prodml23__DeltaPressureTotalSkin(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: + return (void*)soap_instantiate_prodml23__DeltaTimeStorageChanges(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: + return (void*)soap_instantiate_prodml23__DistanceFractureToBottomBoundary(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: + return (void*)soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: + return (void*)soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: + return (void*)soap_instantiate_prodml23__DistanceToBoundary1(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: + return (void*)soap_instantiate_prodml23__DistanceToBoundary2(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: + return (void*)soap_instantiate_prodml23__DistanceToBoundary3(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: + return (void*)soap_instantiate_prodml23__DistanceToBoundary4(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: + return (void*)soap_instantiate_prodml23__DistanceToMobilityInterface(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: + return (void*)soap_instantiate_prodml23__DistanceToPinchOut(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: + return (void*)soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: + return (void*)soap_instantiate_prodml23__DrainageAreaMeasured(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: + return (void*)soap_instantiate_prodml23__FaultConductivity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: + return (void*)soap_instantiate_prodml23__FluidDensity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: + return (void*)soap_instantiate_prodml23__FractureAngleToWellbore(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: + return (void*)soap_instantiate_prodml23__FractureConductivity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: + return (void*)soap_instantiate_prodml23__FractureFaceSkin(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: + return (void*)soap_instantiate_prodml23__FractureHalfLength(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: + return (void*)soap_instantiate_prodml23__FractureHeight(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: + return (void*)soap_instantiate_prodml23__FractureRadius(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: + return (void*)soap_instantiate_prodml23__FractureStorativityRatio(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: + return (void*)soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: + return (void*)soap_instantiate_prodml23__HorizontalRadialPermeability(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: + return (void*)soap_instantiate_prodml23__InitialPressure(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: + return (void*)soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: + return (void*)soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: + return (void*)soap_instantiate_prodml23__InterporosityFlowParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: + return (void*)soap_instantiate_prodml23__Layer2Thickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: + return (void*)soap_instantiate_prodml23__LeakSkin(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: + return (void*)soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: + return (void*)soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: + return (void*)soap_instantiate_prodml23__ModelName(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: + return (void*)soap_instantiate_prodml23__NumberOfFractures(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: + return (void*)soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: + return (void*)soap_instantiate_prodml23__OrientationOfFracturePlane(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: + return (void*)soap_instantiate_prodml23__OrientationOfLinearFront(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: + return (void*)soap_instantiate_prodml23__OrientationOfNormalToBoundary1(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: + return (void*)soap_instantiate_prodml23__OrientationWellTrajectory(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: + return (void*)soap_instantiate_prodml23__PerforatedLength(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: + return (void*)soap_instantiate_prodml23__PermeabilityThicknessProduct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: + return (void*)soap_instantiate_prodml23__PoreVolumeMeasured(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: + return (void*)soap_instantiate_prodml23__PoreVolumeOfInvestigation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: + return (void*)soap_instantiate_prodml23__Porosity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: + return (void*)soap_instantiate_prodml23__PressureDatumTVD(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: + return (void*)soap_instantiate_prodml23__RadiusOfInvestigation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: + return (void*)soap_instantiate_prodml23__RateDependentSkinFactor(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: + return (void*)soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: + return (void*)soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + return (void*)soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: + return (void*)soap_instantiate_prodml23__Region2Thickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: + return (void*)soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: + return (void*)soap_instantiate_prodml23__SkinRelativeToTotalThickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: + return (void*)soap_instantiate_prodml23__StorativityRatio(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: + return (void*)soap_instantiate_prodml23__TotalThickness(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: + return (void*)soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: + return (void*)soap_instantiate_prodml23__TubingInteralDiameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: + return (void*)soap_instantiate_prodml23__VerticalAnisotropyKvToKr(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: + return (void*)soap_instantiate_prodml23__WellboreDeviationAngle(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: + return (void*)soap_instantiate_prodml23__WellboreFluidCompressibility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: + return (void*)soap_instantiate_prodml23__WellboreRadius(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: + return (void*)soap_instantiate_prodml23__WellboreStorageCoefficient(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: + return (void*)soap_instantiate_prodml23__WellboreVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: + return (void*)soap_instantiate_prodml23__FluidSample(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: + return (void*)soap_instantiate_prodml23__FluidSampleContainer(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: + return (void*)soap_instantiate_prodml23__DownholeSampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: + return (void*)soap_instantiate_prodml23__FacilitySampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: + return (void*)soap_instantiate_prodml23__FluidSampleAcquisitionJob(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: + return (void*)soap_instantiate_prodml23__FormationTesterSampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: + return (void*)soap_instantiate_prodml23__SeparatorSampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: + return (void*)soap_instantiate_prodml23__WellheadSampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: + return (void*)soap_instantiate_prodml23__FlowTestJob(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: + return (void*)soap_instantiate_prodml23__CurveData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: + return (void*)soap_instantiate_prodml23__FacilityParent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: + return (void*)soap_instantiate_prodml23__FacilityUnitPort(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: + return (void*)soap_instantiate_prodml23__IntegerData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: + return (void*)soap_instantiate_prodml23__Parentfacility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: + return (void*)soap_instantiate_prodml23__ProductVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: + return (void*)soap_instantiate_prodml23__ReferenceFlow(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: + return (void*)soap_instantiate_prodml23__StringData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: + return (void*)soap_instantiate_prodml23__ProductFlowModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: + return (void*)soap_instantiate_prodml23__ProductFlowQualifierExpected(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: + return (void*)soap_instantiate_prodml23__Qualifier(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: + return (void*)soap_instantiate_prodml23__DoubleValue(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: + return (void*)soap_instantiate_prodml23__StringValue(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: + return (void*)soap_instantiate_prodml23__TimeSeriesData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: + return (void*)soap_instantiate_prodml23__TimeSeriesStatistic(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: return (void*)soap_instantiate_resqml22__AbstractFeature(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractParametricLineGeometry: @@ -33581,160 +33591,160 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__VolumetricThermalExpansionMeasureExt(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__ReferencePressure: return (void*)soap_instantiate_eml23__ReferencePressure(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow: - return (void*)soap_instantiate_prodml22__FluidCharacterizationTableRow(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: - return (void*)soap_instantiate_prodml22__AbstractCompositionalEoSModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: - return (void*)soap_instantiate_prodml22__AbstractCompositionalViscosityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: - return (void*)soap_instantiate_prodml22__AbstractCorrelationViscosityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient: - return (void*)soap_instantiate_prodml22__BinaryInteractionCoefficient(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: - return (void*)soap_instantiate_prodml22__CompositionalThermalModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: - return (void*)soap_instantiate_prodml22__CorrelationThermalModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter: - return (void*)soap_instantiate_prodml22__PvtModelParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord: - return (void*)soap_instantiate_prodml22__MeasuredDepthCoord(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: - return (void*)soap_instantiate_prodml22__HydrocarbonAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: - return (void*)soap_instantiate_prodml22__NonHydrocarbonAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: - return (void*)soap_instantiate_prodml22__WaterAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: - return (void*)soap_instantiate_prodml22__DrillStemTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: - return (void*)soap_instantiate_prodml22__FormationTesterStation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: - return (void*)soap_instantiate_prodml22__InjectionFlowTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: - return (void*)soap_instantiate_prodml22__InterwellTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: - return (void*)soap_instantiate_prodml22__ProductionFlowTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: - return (void*)soap_instantiate_prodml22__ProductionTransientTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: - return (void*)soap_instantiate_prodml22__VerticalInterferenceTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: - return (void*)soap_instantiate_prodml22__WaterLevelTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: - return (void*)soap_instantiate_prodml22__DeconvolvedFlowData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: - return (void*)soap_instantiate_prodml22__DeconvolvedPressureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: - return (void*)soap_instantiate_prodml22__MeasuredFlowData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: - return (void*)soap_instantiate_prodml22__MeasuredPressureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: - return (void*)soap_instantiate_prodml22__OutputFlowData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: - return (void*)soap_instantiate_prodml22__OutputPressureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: - return (void*)soap_instantiate_prodml22__PreProcessedFlowData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: - return (void*)soap_instantiate_prodml22__PreProcessedPressureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: - return (void*)soap_instantiate_prodml22__ChangingStorageFairModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: - return (void*)soap_instantiate_prodml22__ChangingStorageHegemanModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: - return (void*)soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: - return (void*)soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: - return (void*)soap_instantiate_prodml22__ClosedCircleModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: - return (void*)soap_instantiate_prodml22__ClosedRectangleModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: - return (void*)soap_instantiate_prodml22__ConstantStorageModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: - return (void*)soap_instantiate_prodml22__CustomBoundaryModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: - return (void*)soap_instantiate_prodml22__CustomNearWellboreModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: - return (void*)soap_instantiate_prodml22__CustomReservoirModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: - return (void*)soap_instantiate_prodml22__CustomWellboreModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: - return (void*)soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: - return (void*)soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: - return (void*)soap_instantiate_prodml22__DualPorosityTransientSlabsModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: - return (void*)soap_instantiate_prodml22__DualPorosityTransientSpheresModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: - return (void*)soap_instantiate_prodml22__FiniteRadiusModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: - return (void*)soap_instantiate_prodml22__FracturedFiniteConductivityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: - return (void*)soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: - return (void*)soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: - return (void*)soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: - return (void*)soap_instantiate_prodml22__FracturedInfiniteConductivityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: - return (void*)soap_instantiate_prodml22__FracturedUniformFluxModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: - return (void*)soap_instantiate_prodml22__HomogeneousModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: - return (void*)soap_instantiate_prodml22__HorizontalWellbore2LayerModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: - return (void*)soap_instantiate_prodml22__HorizontalWellboreModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: - return (void*)soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: - return (void*)soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: - return (void*)soap_instantiate_prodml22__InfiniteBoundaryModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: - return (void*)soap_instantiate_prodml22__LinearCompositeModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: - return (void*)soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: - return (void*)soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: - return (void*)soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: - return (void*)soap_instantiate_prodml22__NumericalBoundaryModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: - return (void*)soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: - return (void*)soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: - return (void*)soap_instantiate_prodml22__PartiallyPenetratingModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: - return (void*)soap_instantiate_prodml22__PinchOutModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: - return (void*)soap_instantiate_prodml22__RadialCompositeModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: - return (void*)soap_instantiate_prodml22__SingleFaultModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: - return (void*)soap_instantiate_prodml22__SlantedFullyPenetratingModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: - return (void*)soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: - return (void*)soap_instantiate_prodml22__TwoIntersectingFaultsModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: - return (void*)soap_instantiate_prodml22__TwoParallelFaultsModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: - return (void*)soap_instantiate_prodml22__UShapedFaultsModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample: - return (void*)soap_instantiate_prodml22__TimeSeriesDoubleSample(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample: - return (void*)soap_instantiate_prodml22__TimeSeriesStringSample(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime: - return (void*)soap_instantiate_prodml22__EndpointDateTime(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity: - return (void*)soap_instantiate_prodml22__EndpointQuantity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct: - return (void*)soap_instantiate_prodml22__KeywordValueStruct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow: + return (void*)soap_instantiate_prodml23__FluidCharacterizationTableRow(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: + return (void*)soap_instantiate_prodml23__AbstractCompositionalEoSModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: + return (void*)soap_instantiate_prodml23__AbstractCompositionalViscosityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: + return (void*)soap_instantiate_prodml23__AbstractCorrelationViscosityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient: + return (void*)soap_instantiate_prodml23__BinaryInteractionCoefficient(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: + return (void*)soap_instantiate_prodml23__CompositionalThermalModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: + return (void*)soap_instantiate_prodml23__CorrelationThermalModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter: + return (void*)soap_instantiate_prodml23__PvtModelParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord: + return (void*)soap_instantiate_prodml23__MeasuredDepthCoord(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: + return (void*)soap_instantiate_prodml23__HydrocarbonAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: + return (void*)soap_instantiate_prodml23__NonHydrocarbonAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: + return (void*)soap_instantiate_prodml23__WaterAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: + return (void*)soap_instantiate_prodml23__DrillStemTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: + return (void*)soap_instantiate_prodml23__FormationTesterStation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: + return (void*)soap_instantiate_prodml23__InjectionFlowTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: + return (void*)soap_instantiate_prodml23__InterwellTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: + return (void*)soap_instantiate_prodml23__ProductionFlowTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: + return (void*)soap_instantiate_prodml23__ProductionTransientTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: + return (void*)soap_instantiate_prodml23__VerticalInterferenceTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: + return (void*)soap_instantiate_prodml23__WaterLevelTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: + return (void*)soap_instantiate_prodml23__DeconvolvedFlowData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: + return (void*)soap_instantiate_prodml23__DeconvolvedPressureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: + return (void*)soap_instantiate_prodml23__MeasuredFlowData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: + return (void*)soap_instantiate_prodml23__MeasuredPressureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: + return (void*)soap_instantiate_prodml23__OutputFlowData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: + return (void*)soap_instantiate_prodml23__OutputPressureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: + return (void*)soap_instantiate_prodml23__PreProcessedFlowData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: + return (void*)soap_instantiate_prodml23__PreProcessedPressureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: + return (void*)soap_instantiate_prodml23__ChangingStorageFairModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: + return (void*)soap_instantiate_prodml23__ChangingStorageHegemanModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: + return (void*)soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: + return (void*)soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: + return (void*)soap_instantiate_prodml23__ClosedCircleModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: + return (void*)soap_instantiate_prodml23__ClosedRectangleModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: + return (void*)soap_instantiate_prodml23__ConstantStorageModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: + return (void*)soap_instantiate_prodml23__CustomBoundaryModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: + return (void*)soap_instantiate_prodml23__CustomNearWellboreModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: + return (void*)soap_instantiate_prodml23__CustomReservoirModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: + return (void*)soap_instantiate_prodml23__CustomWellboreModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: + return (void*)soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: + return (void*)soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: + return (void*)soap_instantiate_prodml23__DualPorosityTransientSlabsModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: + return (void*)soap_instantiate_prodml23__DualPorosityTransientSpheresModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: + return (void*)soap_instantiate_prodml23__FiniteRadiusModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: + return (void*)soap_instantiate_prodml23__FracturedFiniteConductivityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: + return (void*)soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: + return (void*)soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: + return (void*)soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: + return (void*)soap_instantiate_prodml23__FracturedInfiniteConductivityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: + return (void*)soap_instantiate_prodml23__FracturedUniformFluxModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: + return (void*)soap_instantiate_prodml23__HomogeneousModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: + return (void*)soap_instantiate_prodml23__HorizontalWellbore2LayerModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: + return (void*)soap_instantiate_prodml23__HorizontalWellboreModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: + return (void*)soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: + return (void*)soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: + return (void*)soap_instantiate_prodml23__InfiniteBoundaryModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: + return (void*)soap_instantiate_prodml23__LinearCompositeModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: + return (void*)soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: + return (void*)soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: + return (void*)soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: + return (void*)soap_instantiate_prodml23__NumericalBoundaryModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: + return (void*)soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: + return (void*)soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: + return (void*)soap_instantiate_prodml23__PartiallyPenetratingModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: + return (void*)soap_instantiate_prodml23__PinchOutModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: + return (void*)soap_instantiate_prodml23__RadialCompositeModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: + return (void*)soap_instantiate_prodml23__SingleFaultModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: + return (void*)soap_instantiate_prodml23__SlantedFullyPenetratingModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: + return (void*)soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: + return (void*)soap_instantiate_prodml23__TwoIntersectingFaultsModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: + return (void*)soap_instantiate_prodml23__TwoParallelFaultsModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: + return (void*)soap_instantiate_prodml23__UShapedFaultsModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample: + return (void*)soap_instantiate_prodml23__TimeSeriesDoubleSample(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample: + return (void*)soap_instantiate_prodml23__TimeSeriesStringSample(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime: + return (void*)soap_instantiate_prodml23__EndpointDateTime(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity: + return (void*)soap_instantiate_prodml23__EndpointQuantity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct: + return (void*)soap_instantiate_prodml23__KeywordValueStruct(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractTechnicalFeature: return (void*)soap_instantiate_resqml22__AbstractTechnicalFeature(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__BoundaryFeature: @@ -33853,38 +33863,28 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__EmailQualifierStruct(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__NameStruct: return (void*)soap_instantiate_eml23__NameStruct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: - return (void*)soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: - return (void*)soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: - return (void*)soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: - return (void*)soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: - return (void*)soap_instantiate_prodml22__CSPedersen84(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: - return (void*)soap_instantiate_prodml22__CSPedersen87(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: - return (void*)soap_instantiate_prodml22__FrictionTheory(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: - return (void*)soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: - return (void*)soap_instantiate_prodml22__PengRobinson76_USCOREEOS(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: - return (void*)soap_instantiate_prodml22__PengRobinson78_USCOREEOS(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: - return (void*)soap_instantiate_prodml22__Srk_USCOREEOS(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: - return (void*)soap_instantiate_prodml22__OilCompressibility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: - return (void*)soap_instantiate_prodml22__RefInjectedGasAdded(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: - return (void*)soap_instantiate_prodml22__RelativeVolumeRatio(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: - return (void*)soap_instantiate_prodml22__SaturationPressure(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: - return (void*)soap_instantiate_prodml22__SaturationTemperature(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: + return (void*)soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: + return (void*)soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: + return (void*)soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: + return (void*)soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: + return (void*)soap_instantiate_prodml23__CSPedersen84(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: + return (void*)soap_instantiate_prodml23__CSPedersen87(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: + return (void*)soap_instantiate_prodml23__FrictionTheory(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: + return (void*)soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: + return (void*)soap_instantiate_prodml23__PengRobinson76_USCOREEOS(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: + return (void*)soap_instantiate_prodml23__PengRobinson78_USCOREEOS(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: + return (void*)soap_instantiate_prodml23__Srk_USCOREEOS(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeature: return (void*)soap_instantiate_resqml22__CulturalFeature(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicSurveyFeature: @@ -33965,44 +33965,44 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_witsml21__Trajectory(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreGeometry: return (void*)soap_instantiate_witsml21__WellboreGeometry(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: - return (void*)soap_instantiate_prodml22__BerganAndSutton_Undersaturated(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: - return (void*)soap_instantiate_prodml22__BerganSutton_Dead(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: - return (void*)soap_instantiate_prodml22__BergmanSutton_BubblePoint(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: - return (void*)soap_instantiate_prodml22__CarrDempsey(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: - return (void*)soap_instantiate_prodml22__DeGhetto_BubblePoint(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: - return (void*)soap_instantiate_prodml22__DeGhetto_Dead(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: - return (void*)soap_instantiate_prodml22__DeGhetto_Undersaturated(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: - return (void*)soap_instantiate_prodml22__DindorukChristman_BubblePoint(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: - return (void*)soap_instantiate_prodml22__DindorukChristman_Dead(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: - return (void*)soap_instantiate_prodml22__DindorukChristman_Undersaturated(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: - return (void*)soap_instantiate_prodml22__LeeGonzalez(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: - return (void*)soap_instantiate_prodml22__LondonoArcherBlasinggame(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: - return (void*)soap_instantiate_prodml22__Lucas(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: - return (void*)soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: - return (void*)soap_instantiate_prodml22__PetroskyFarshad_Dead(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: - return (void*)soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: - return (void*)soap_instantiate_prodml22__Standing_BubblePoint(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: - return (void*)soap_instantiate_prodml22__Standing_Dead(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: - return (void*)soap_instantiate_prodml22__Standing_Undersaturated(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: + return (void*)soap_instantiate_prodml23__BerganAndSutton_Undersaturated(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: + return (void*)soap_instantiate_prodml23__BerganSutton_Dead(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: + return (void*)soap_instantiate_prodml23__BergmanSutton_BubblePoint(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: + return (void*)soap_instantiate_prodml23__CarrDempsey(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: + return (void*)soap_instantiate_prodml23__DeGhetto_BubblePoint(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: + return (void*)soap_instantiate_prodml23__DeGhetto_Dead(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: + return (void*)soap_instantiate_prodml23__DeGhetto_Undersaturated(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: + return (void*)soap_instantiate_prodml23__DindorukChristman_BubblePoint(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: + return (void*)soap_instantiate_prodml23__DindorukChristman_Dead(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: + return (void*)soap_instantiate_prodml23__DindorukChristman_Undersaturated(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: + return (void*)soap_instantiate_prodml23__LeeGonzalez(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: + return (void*)soap_instantiate_prodml23__LondonoArcherBlasinggame(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: + return (void*)soap_instantiate_prodml23__Lucas(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: + return (void*)soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: + return (void*)soap_instantiate_prodml23__PetroskyFarshad_Dead(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: + return (void*)soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: + return (void*)soap_instantiate_prodml23__Standing_BubblePoint(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: + return (void*)soap_instantiate_prodml23__Standing_Dead(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: + return (void*)soap_instantiate_prodml23__Standing_Undersaturated(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicLineFeature: return (void*)soap_instantiate_resqml22__AbstractSeismicLineFeature(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLatticeFeature: @@ -34529,40 +34529,40 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__OrganizationKindExt(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__CollectionKindExt: return (void*)soap_instantiate_eml23__CollectionKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt: - return (void*)soap_instantiate_prodml22__OutputFluidPropertyExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt: - return (void*)soap_instantiate_prodml22__PvtModelParameterKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt: - return (void*)soap_instantiate_prodml22__FacilityKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt: - return (void*)soap_instantiate_prodml22__PlusComponentKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt: - return (void*)soap_instantiate_prodml22__ProductFluidKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt: - return (void*)soap_instantiate_prodml22__PseudoComponentKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt: - return (void*)soap_instantiate_prodml22__PureComponentKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt: - return (void*)soap_instantiate_prodml22__ReportingDurationKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt: - return (void*)soap_instantiate_prodml22__ReportingFacilityExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt: - return (void*)soap_instantiate_prodml22__ServiceFluidKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt: - return (void*)soap_instantiate_prodml22__SulfurComponentKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt: - return (void*)soap_instantiate_prodml22__AnionKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt: - return (void*)soap_instantiate_prodml22__CationKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt: - return (void*)soap_instantiate_prodml22__OrganicAcidKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt: - return (void*)soap_instantiate_prodml22__VolumeReferenceKindExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt: - return (void*)soap_instantiate_prodml22__DataConditioningExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt: - return (void*)soap_instantiate_prodml22__FluidSampleKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt: + return (void*)soap_instantiate_prodml23__OutputFluidPropertyExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt: + return (void*)soap_instantiate_prodml23__PvtModelParameterKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt: + return (void*)soap_instantiate_prodml23__FacilityKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt: + return (void*)soap_instantiate_prodml23__PlusComponentKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt: + return (void*)soap_instantiate_prodml23__ProductFluidKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt: + return (void*)soap_instantiate_prodml23__PseudoComponentKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt: + return (void*)soap_instantiate_prodml23__PureComponentKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt: + return (void*)soap_instantiate_prodml23__ReportingDurationKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt: + return (void*)soap_instantiate_prodml23__ReportingFacilityExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt: + return (void*)soap_instantiate_prodml23__ServiceFluidKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt: + return (void*)soap_instantiate_prodml23__SulfurComponentKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt: + return (void*)soap_instantiate_prodml23__AnionKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt: + return (void*)soap_instantiate_prodml23__CationKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt: + return (void*)soap_instantiate_prodml23__OrganicAcidKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt: + return (void*)soap_instantiate_prodml23__VolumeReferenceKindExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt: + return (void*)soap_instantiate_prodml23__DataConditioningExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt: + return (void*)soap_instantiate_prodml23__FluidSampleKindExt(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeatureKindExt: return (void*)soap_instantiate_resqml22__CulturalFeatureKindExt(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_resqml22__LineRoleExt: @@ -34589,8 +34589,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__AbstractString(soap, -1, type, arrayType, n); case SOAP_TYPE_eml23__TimeStamp: return (void*)soap_instantiate_eml23__TimeStamp(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier: - return (void*)soap_instantiate_prodml22__ProdmlRelativeIdentifier(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier: + return (void*)soap_instantiate_prodml23__ProdmlRelativeIdentifier(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__EnumExtensionPattern: return (void*)soap_instantiate_eml23__EnumExtensionPattern(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__String2000: @@ -34615,8 +34615,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_eml23__PublicLandSurveySystemQuarterTownship(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_eml23__SectionNumber: return (void*)soap_instantiate_eml23__SectionNumber(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth: - return (void*)soap_instantiate_prodml22__CalendarMonth(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth: + return (void*)soap_instantiate_prodml23__CalendarMonth(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3__witsml21__Well: return (void*)soap_instantiate__witsml21__Well(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3__witsml21__Wellbore: @@ -34757,50 +34757,50 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate__eml23__DataAssuranceRecord(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3__eml23__GraphicalInformationSet: return (void*)soap_instantiate__eml23__GraphicalInformationSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization: - return (void*)soap_instantiate__prodml22__FluidCharacterization(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis: - return (void*)soap_instantiate__prodml22__FluidAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis: - return (void*)soap_instantiate__prodml22__HydrocarbonAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis: - return (void*)soap_instantiate__prodml22__WaterAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem: - return (void*)soap_instantiate__prodml22__FluidSystem(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__Channel: - return (void*)soap_instantiate__prodml22__Channel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet: - return (void*)soap_instantiate__prodml22__ChannelSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity: - return (void*)soap_instantiate__prodml22__FlowTestActivity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__Facility: - return (void*)soap_instantiate__prodml22__Facility(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity: - return (void*)soap_instantiate__prodml22__ReportingEntity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy: - return (void*)soap_instantiate__prodml22__ReportingHierarchy(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis: - return (void*)soap_instantiate__prodml22__PressureTransientAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess: - return (void*)soap_instantiate__prodml22__PtaDataPreProcess(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution: - return (void*)soap_instantiate__prodml22__PtaDeconvolution(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample: - return (void*)soap_instantiate__prodml22__FluidSample(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer: - return (void*)soap_instantiate__prodml22__FluidSampleContainer(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob: - return (void*)soap_instantiate__prodml22__FluidSampleAcquisitionJob(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob: - return (void*)soap_instantiate__prodml22__FlowTestJob(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume: - return (void*)soap_instantiate__prodml22__ProductVolume(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel: - return (void*)soap_instantiate__prodml22__ProductFlowModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData: - return (void*)soap_instantiate__prodml22__TimeSeriesData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic: - return (void*)soap_instantiate__prodml22__TimeSeriesStatistic(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization: + return (void*)soap_instantiate__prodml23__FluidCharacterization(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis: + return (void*)soap_instantiate__prodml23__FluidAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis: + return (void*)soap_instantiate__prodml23__HydrocarbonAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis: + return (void*)soap_instantiate__prodml23__WaterAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem: + return (void*)soap_instantiate__prodml23__FluidSystem(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__Channel: + return (void*)soap_instantiate__prodml23__Channel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet: + return (void*)soap_instantiate__prodml23__ChannelSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity: + return (void*)soap_instantiate__prodml23__FlowTestActivity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__Facility: + return (void*)soap_instantiate__prodml23__Facility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity: + return (void*)soap_instantiate__prodml23__ReportingEntity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy: + return (void*)soap_instantiate__prodml23__ReportingHierarchy(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis: + return (void*)soap_instantiate__prodml23__PressureTransientAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess: + return (void*)soap_instantiate__prodml23__PtaDataPreProcess(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution: + return (void*)soap_instantiate__prodml23__PtaDeconvolution(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample: + return (void*)soap_instantiate__prodml23__FluidSample(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer: + return (void*)soap_instantiate__prodml23__FluidSampleContainer(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob: + return (void*)soap_instantiate__prodml23__FluidSampleAcquisitionJob(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob: + return (void*)soap_instantiate__prodml23__FlowTestJob(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume: + return (void*)soap_instantiate__prodml23__ProductVolume(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel: + return (void*)soap_instantiate__prodml23__ProductFlowModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData: + return (void*)soap_instantiate__prodml23__TimeSeriesData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic: + return (void*)soap_instantiate__prodml23__TimeSeriesStatistic(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature: return (void*)soap_instantiate__resqml22__BoundaryFeature(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3__resqml22__CulturalFeature: @@ -34961,8 +34961,8 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__AbstractPlaneGeometry(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContactIdentity: return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__ContactIdentity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerConstantArray: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__IntegerConstantArray(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FloatingPointConstantArray: @@ -34995,48 +34995,48 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__PatchBoundaries(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ThreePoint3d: return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__ThreePoint3d(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FloatingPointArrayStatistics: @@ -35099,50 +35099,50 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__ContactPatch(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__Point3dLatticeDimension: return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__Point3dLatticeDimension(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier: - return (void*)soap_instantiate_std__vectorTemplateOfprodml22__FlowQualifier(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier: + return (void*)soap_instantiate_std__vectorTemplateOfprodml23__FlowQualifier(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfdouble: return (void*)soap_instantiate_std__vectorTemplateOfdouble(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt: - return (void*)soap_instantiate_std__vectorTemplateOfprodml22__DataConditioningExt(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__Channel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt: + return (void*)soap_instantiate_std__vectorTemplateOfprodml23__DataConditioningExt(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__Channel(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfstd__string: return (void*)soap_instantiate_std__vectorTemplateOfstd__string(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FailingRule: @@ -35293,158 +35293,158 @@ SOAP_FMAC3 void * SOAP_FMAC4 gsoap_eml2_3_instantiate(struct soap *soap, int t, return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__EdgePatch(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__Point3d: return (void*)soap_instantiate_std__vectorTemplateOfPointerToresqml22__Point3d(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FlowRateValue: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__VolumeValue: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DensityValue: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__DensityValue(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductRate(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherData(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__Sara(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FormationWater(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap, -1, type, arrayType, n); - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient: - return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductRate(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherData(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__Sara(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FormationWater(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap, -1, type, arrayType, n); + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient: + return (void*)soap_instantiate_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Column: return (void*)soap_instantiate_std__vectorTemplateOfPointerToeml23__Column(soap, -1, type, arrayType, n); case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PropertyKindFacet: @@ -37140,917 +37140,947 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), eml23__AbstractGraphicalInformation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractPvtModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractPvtModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractPvtModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractPvtModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__BinaryInteractionCoefficientSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__BinaryInteractionCoefficientSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__BinaryInteractionCoefficientSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__BinaryInteractionCoefficientSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ComponentPropertySet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ComponentPropertySet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ComponentPropertySet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ComponentPropertySet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomPvtModelExtension); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomPvtModelExtension); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomPvtModelExtension); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomPvtModelExtension); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomPvtModelParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomPvtModelParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomPvtModelParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomPvtModelParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationParameterSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationParameterSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationParameterSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationParameterSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationSource); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationSource); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationSource); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationSource); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTable); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTable); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTable); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTable); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableColumn); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableColumn); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableColumn); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableColumn); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableFormat); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableFormat); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableFormat); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableFormat); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableFormatSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableFormatSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableFormatSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableFormatSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidComponentProperty); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidComponentProperty); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidComponentProperty); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidComponentProperty); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PrsvParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PrsvParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PrsvParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PrsvParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PvtModelParameterSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PvtModelParameterSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PvtModelParameterSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PvtModelParameterSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReferenceSeparatorStage); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReferenceSeparatorStage); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReferenceSeparatorStage); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReferenceSeparatorStage); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractDateTimeClass); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractDateTimeClass); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractDateTimeClass); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractDateTimeClass); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractFluidComponent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractFluidComponent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractFluidComponent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractFluidComponent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractProductQuantity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractProductQuantity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractProductQuantity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractProductQuantity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CalibrationParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CalibrationParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CalibrationParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CalibrationParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DatedComment); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DatedComment); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DatedComment); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DatedComment); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate: + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__EndpointQualifiedDate); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__EndpointQualifiedDate); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__EndpointQualifiedDate); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__EndpointQualifiedDate); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime: + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__EndpointQualifiedDateTime); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__EndpointQualifiedDateTime); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__EndpointQualifiedDateTime); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__EndpointQualifiedDateTime); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FacilityIdentifier); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FacilityIdentifier); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FacilityIdentifier); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FacilityIdentifier); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FacilityIdentifierStruct); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FacilityIdentifierStruct); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FacilityIdentifierStruct); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FacilityIdentifierStruct); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidComponentCatalog); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidComponentCatalog); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidComponentCatalog); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidComponentCatalog); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidComponentFraction); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidComponentFraction); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidComponentFraction); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidComponentFraction); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType: + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__GeneralMeasureType); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__GeneralMeasureType); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__GeneralMeasureType); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__GeneralMeasureType); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext: + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__GeographicContext); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__GeographicContext); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__GeographicContext); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__GeographicContext); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LiquidComposition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LiquidComposition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LiquidComposition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LiquidComposition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NorthSeaOffshore); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NorthSeaOffshore); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NorthSeaOffshore); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NorthSeaOffshore); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OffshoreLocation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OffshoreLocation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OffshoreLocation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OffshoreLocation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OverallComposition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OverallComposition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OverallComposition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OverallComposition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowExternalReference); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowExternalReference); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowExternalReference); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowExternalReference); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowNetwork); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowNetwork); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowNetwork); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowNetwork); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__VaporComposition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__VaporComposition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__VaporComposition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__VaporComposition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractGasProducedRatioVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractGasProducedRatioVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractGasProducedRatioVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractGasProducedRatioVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractLiquidDropoutPercVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractLiquidDropoutPercVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractLiquidDropoutPercVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractLiquidDropoutPercVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractOilVolShrinkage); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractOilVolShrinkage); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractOilVolShrinkage); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractOilVolShrinkage); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AtmosphericFlashTestAndCompositionalAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AtmosphericFlashTestAndCompositionalAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AtmosphericFlashTestAndCompositionalAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AtmosphericFlashTestAndCompositionalAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ConstantCompositionExpansionTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ConstantCompositionExpansionTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ConstantCompositionExpansionTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ConstantCompositionExpansionTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ConstantCompositionExpansionTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ConstantCompositionExpansionTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ConstantCompositionExpansionTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ConstantCompositionExpansionTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ConstantVolumeDepletionTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ConstantVolumeDepletionTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ConstantVolumeDepletionTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ConstantVolumeDepletionTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DifferentialLiberationTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DifferentialLiberationTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DifferentialLiberationTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DifferentialLiberationTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlashedGas); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlashedGas); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlashedGas); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlashedGas); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlashedLiquid); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlashedLiquid); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlashedLiquid); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlashedLiquid); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidAnalysisReport); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidAnalysisReport); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidAnalysisReport); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidAnalysisReport); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCvdTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCvdTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCvdTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCvdTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidDifferentialLiberationTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidDifferentialLiberationTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidDifferentialLiberationTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidDifferentialLiberationTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSeparatorTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSeparatorTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSeparatorTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSeparatorTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSeparatorTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSeparatorTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSeparatorTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSeparatorTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidVolumeReference); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidVolumeReference); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidVolumeReference); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidVolumeReference); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InjectedGas); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InjectedGas); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InjectedGas); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InjectedGas); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InterfacialTensionTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InterfacialTensionTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InterfacialTensionTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InterfacialTensionTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InterfacialTensionTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InterfacialTensionTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InterfacialTensionTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InterfacialTensionTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MassBalance); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MassBalance); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MassBalance); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MassBalance); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MassIn); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MassIn); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MassIn); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MassIn); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MassOut); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MassOut); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MassOut); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MassOut); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MultipleContactMiscibilityTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MultipleContactMiscibilityTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MultipleContactMiscibilityTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MultipleContactMiscibilityTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NonHydrocarbonTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NonHydrocarbonTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NonHydrocarbonTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NonHydrocarbonTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OtherMeasurementTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OilCompressibility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OtherMeasurementTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OilCompressibility); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OtherMeasurementTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OtherMeasurementTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OtherMeasurementTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OtherMeasurementTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PhaseDensity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OtherMeasurementTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PhaseDensity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OtherMeasurementTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PhaseViscosity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PhaseDensity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PhaseViscosity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PhaseDensity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProducedGasProperties); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PhaseViscosity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProducedGasProperties); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PhaseViscosity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProducedOilProperties); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProducedGasProperties); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProducedOilProperties); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProducedGasProperties); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReportLocation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProducedOilProperties); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReportLocation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProducedOilProperties); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SampleContaminant); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RefInjectedGasAdded); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SampleContaminant); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RefInjectedGasAdded); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SampleIntegrityAndPreparation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RelativeVolumeRatio); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SampleIntegrityAndPreparation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RelativeVolumeRatio); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SampleRestoration); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReportLocation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SampleRestoration); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReportLocation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Sara: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Sara); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SampleContaminant); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Sara); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SampleContaminant); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SaturationTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SampleIntegrityAndPreparation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SaturationTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SampleIntegrityAndPreparation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SeparatorConditions); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SampleRestoration); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SeparatorConditions); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SampleRestoration); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Sara: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SlimTubeSpecification); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Sara); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SlimTubeSpecification); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Sara); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SlimTubeTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SaturationPressure); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SlimTubeTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SaturationPressure); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SlimTubeTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SaturationTemperature); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SlimTubeTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SaturationTemperature); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SlimTubeTestVolumeStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SaturationTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SlimTubeTestVolumeStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SaturationTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__STOAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SeparatorConditions); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__STOAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SeparatorConditions); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__STOFlashedLiquid); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SlimTubeSpecification); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__STOFlashedLiquid); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SlimTubeSpecification); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SwellingTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SlimTubeTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SwellingTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SlimTubeTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SwellingTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SlimTubeTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SwellingTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SlimTubeTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__VaporLiquidEquilibriumTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SlimTubeTestVolumeStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__VaporLiquidEquilibriumTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SlimTubeTestVolumeStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature: + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ViscosityAtTemperature); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__STOAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ViscosityAtTemperature); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__STOAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WaterAnalysisTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__STOFlashedLiquid); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WaterAnalysisTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__STOFlashedLiquid); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WaterAnalysisTestStep); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SwellingTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WaterAnalysisTestStep); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SwellingTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WaterSampleComponent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SwellingTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WaterSampleComponent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SwellingTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractFlowTestData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__VaporLiquidEquilibriumTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractFlowTestData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__VaporLiquidEquilibriumTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlowTestLocation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ViscosityAtTemperature); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlowTestLocation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ViscosityAtTemperature); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlowTestMeasurementSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WaterAnalysisTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlowTestMeasurementSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WaterAnalysisTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductRate); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WaterAnalysisTestStep); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductRate); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WaterAnalysisTestStep); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TestPeriod); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WaterSampleComponent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TestPeriod); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WaterSampleComponent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellFlowingCondition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractFlowTestData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellFlowingCondition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractFlowTestData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReportingHierarchyNode); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlowTestLocation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReportingHierarchyNode); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlowTestLocation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlowTestMeasurementSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlowTestMeasurementSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractDeconvolutionOutput); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductRate); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractDeconvolutionOutput); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductRate); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractRateHistory); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TestPeriod); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractRateHistory); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TestPeriod); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AnalysisLine); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellFlowingCondition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AnalysisLine); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellFlowingCondition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CompressibilityParameters); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReportingHierarchyNode); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CompressibilityParameters); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReportingHierarchyNode); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeconvolutionOutput); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeconvolutionOutput); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistributedParametersSubModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractDeconvolutionOutput); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistributedParametersSubModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractDeconvolutionOutput); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InterferingFlowTestInterval); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractRateHistory); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InterferingFlowTestInterval); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractRateHistory); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InternalFaultSubModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AnalysisLine); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InternalFaultSubModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AnalysisLine); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LayerModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CompressibilityParameters); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LayerModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CompressibilityParameters); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LayerToLayerConnection); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeconvolutionOutput); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LayerToLayerConnection); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeconvolutionOutput); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LocationIn2D); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistributedParametersSubModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LocationIn2D); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistributedParametersSubModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LogLogAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InterferingFlowTestInterval); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LogLogAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InterferingFlowTestInterval); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReservoirZoneSubModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InternalFaultSubModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReservoirZoneSubModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InternalFaultSubModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ResqmlModelRef); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LayerModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ResqmlModelRef); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LayerModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SingleBoundarySubModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LayerToLayerConnection); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SingleBoundarySubModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LayerToLayerConnection); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SingleFractureSubModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LocationIn2D); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SingleFractureSubModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LocationIn2D); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SpecializedAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LogLogAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SpecializedAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LogLogAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractModelSection); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReservoirZoneSubModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractModelSection); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReservoirZoneSubModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ResqmlModelRef); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ResqmlModelRef); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisitionJobSource); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SingleBoundarySubModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisitionJobSource); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SingleBoundarySubModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleChainOfCustodyEvent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SingleFractureSubModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleChainOfCustodyEvent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SingleFractureSubModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RecombinedSampleFraction); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SpecializedAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RecombinedSampleFraction); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SpecializedAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SampleRecombinationSpecification); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractModelSection); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SampleRecombinationSpecification); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractModelSection); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CommonPropertiesProductVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisitionJobSource); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CommonPropertiesProductVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisitionJobSource); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractMeasureData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleChainOfCustodyEvent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractMeasureData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleChainOfCustodyEvent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractRefProductFlow); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RecombinedSampleFraction); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractRefProductFlow); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RecombinedSampleFraction); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractRelatedFacilityObject); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SampleRecombinationSpecification); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractRelatedFacilityObject); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SampleRecombinationSpecification); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CurveDefinition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CurveDefinition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OwnershipBusinessAcct); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CommonPropertiesProductVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OwnershipBusinessAcct); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CommonPropertiesProductVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeAlert); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractMeasureData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeAlert); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractMeasureData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeBalanceDetail); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractRefProductFlow); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeBalanceDetail); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractRefProductFlow); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeBalanceEvent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractRelatedFacilityObject); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeBalanceEvent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractRelatedFacilityObject); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeBalanceSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CurveDefinition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeBalanceSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CurveDefinition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeBusinessSubUnit); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OwnershipBusinessAcct); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeBusinessSubUnit); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OwnershipBusinessAcct); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeBusinessUnit); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeAlert); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeBusinessUnit); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeAlert); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeComponentContent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeBalanceDetail); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeComponentContent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeBalanceDetail); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeDestination); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeBalanceEvent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeDestination); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeBalanceEvent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeFacility); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeBalanceSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeFacility); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeBalanceSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeFlow); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeBusinessSubUnit); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeFlow); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeBusinessSubUnit); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeParameterSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeBusinessUnit); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeParameterSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeBusinessUnit); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeParameterValue); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeComponentContent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeParameterValue); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeComponentContent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumePeriod); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeDestination); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumePeriod); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeDestination); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumePortDifference); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeFacility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumePortDifference); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeFacility); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeProduct); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeFlow); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeProduct); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeFlow); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolumeRelatedFacility); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeParameterSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolumeRelatedFacility); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeParameterSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ConnectedNode); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeParameterValue); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ConnectedNode); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeParameterValue); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ExpectedFlowQualifier); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumePeriod); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ExpectedFlowQualifier); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumePeriod); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowChangeLog); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumePortDifference); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowChangeLog); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumePortDifference); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowExpectedUnitProperty); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeProduct); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowExpectedUnitProperty); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeProduct); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowExternalPort); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolumeRelatedFacility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowExternalPort); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolumeRelatedFacility); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowNetworkPlan); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ConnectedNode); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowNetworkPlan); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ConnectedNode); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowPort); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ExpectedFlowQualifier); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowPort); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ExpectedFlowQualifier); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowUnit); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowChangeLog); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowUnit); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowChangeLog); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RelativeCoordinate); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowExpectedUnitProperty); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RelativeCoordinate); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowExpectedUnitProperty); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractValue); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowExternalPort); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractValue); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowExternalPort); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesThreshold); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowNetworkPlan); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesThreshold); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowNetworkPlan); + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort: + if (p->size < 0) + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowPort); + else + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowPort); + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit: + if (p->size < 0) + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowUnit); + else + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowUnit); + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate: + if (p->size < 0) + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RelativeCoordinate); + else + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RelativeCoordinate); + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue: + if (p->size < 0) + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractValue); + else + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractValue); + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold: + if (p->size < 0) + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesThreshold); + else + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesThreshold); break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGeometry: if (p->size < 0) @@ -39288,839 +39318,839 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), eml23__GraphicalInformationSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCompositionalModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCompositionalModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCompositionalModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCompositionalModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCorrelationModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCorrelationModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCorrelationModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCorrelationModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterization); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterization); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterization); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterization); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FormationWater); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FormationWater); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FormationWater); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FormationWater); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__GeneralQualifiedMeasure); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__GeneralQualifiedMeasure); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__GeneralQualifiedMeasure); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__GeneralQualifiedMeasure); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__IntegerQualifiedCount); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__IntegerQualifiedCount); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__IntegerQualifiedCount); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__IntegerQualifiedCount); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__KindQualifiedString); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__KindQualifiedString); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__KindQualifiedString); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__KindQualifiedString); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NaturalGas); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NaturalGas); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NaturalGas); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NaturalGas); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PlusFluidComponent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PlusFluidComponent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PlusFluidComponent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PlusFluidComponent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFluid); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFluid); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFluid); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFluid); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PseudoFluidComponent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PseudoFluidComponent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PseudoFluidComponent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PseudoFluidComponent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PureFluidComponent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PureFluidComponent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PureFluidComponent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PureFluidComponent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ServiceFluid); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ServiceFluid); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ServiceFluid); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ServiceFluid); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__StartEndDate); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__StartEndDate); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__StartEndDate); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__StartEndDate); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__StartEndTime); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__StartEndTime); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__StartEndTime); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__StartEndTime); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__StockTankOil); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__StockTankOil); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__StockTankOil); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__StockTankOil); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SulfurFluidComponent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SulfurFluidComponent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SulfurFluidComponent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SulfurFluidComponent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CumulativeGasProducedRatioStd); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CumulativeGasProducedRatioStd); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CumulativeGasProducedRatioStd); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CumulativeGasProducedRatioStd); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CumulativeGasProducedVol); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CumulativeGasProducedVol); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CumulativeGasProducedVol); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CumulativeGasProducedVol); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LiquidDropoutFraction); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LiquidDropoutFraction); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LiquidDropoutFraction); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LiquidDropoutFraction); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LiquidVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LiquidVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LiquidVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LiquidVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OilShrinkageFactor); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OilShrinkageFactor); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OilShrinkageFactor); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OilShrinkageFactor); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OilVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OilVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OilVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OilVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSystem); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSystem); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSystem); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSystem); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractPtaFlowData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractPtaFlowData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractPtaFlowData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractPtaFlowData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Channel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Channel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Channel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Channel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChannelSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChannelSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChannelSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChannelSet); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlowTestActivity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlowTestActivity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlowTestActivity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlowTestActivity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OtherData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OtherData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OtherData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OtherData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Facility); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Facility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Facility); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Facility); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReportingEntity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReportingEntity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReportingEntity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReportingEntity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReportingHierarchy); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReportingHierarchy); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReportingHierarchy); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReportingHierarchy); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractPtaPressureData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractPtaPressureData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractPtaPressureData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractPtaPressureData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChannelFlowrateData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChannelFlowrateData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChannelFlowrateData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChannelFlowrateData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeconvolutionMultipleOutput); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeconvolutionMultipleOutput); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeconvolutionMultipleOutput); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeconvolutionMultipleOutput); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeconvolutionSingleOutput); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeconvolutionSingleOutput); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeconvolutionSingleOutput); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeconvolutionSingleOutput); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PressureTransientAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PressureTransientAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PressureTransientAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PressureTransientAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PtaAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PtaAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PtaAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PtaAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PtaDataPreProcess); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PtaDataPreProcess); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PtaDataPreProcess); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PtaDataPreProcess); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PtaDeconvolution); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PtaDeconvolution); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PtaDeconvolution); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PtaDeconvolution); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RtaAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RtaAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RtaAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RtaAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SingleFlowrateData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SingleFlowrateData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SingleFlowrateData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SingleFlowrateData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TestPeriodsFlowrateData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TestPeriodsFlowrateData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TestPeriodsFlowrateData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TestPeriodsFlowrateData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__BoundaryBaseModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__BoundaryBaseModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__BoundaryBaseModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__BoundaryBaseModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NearWellboreBaseModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NearWellboreBaseModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NearWellboreBaseModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NearWellboreBaseModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReservoirBaseModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReservoirBaseModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReservoirBaseModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReservoirBaseModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellboreBaseModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellboreBaseModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellboreBaseModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellboreBaseModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AngleBetweenBoundaries); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AngleBetweenBoundaries); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AngleBetweenBoundaries); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AngleBetweenBoundaries); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AveragePressure); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AveragePressure); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AveragePressure); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AveragePressure); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ConvergenceSkinRelativeToTotalThickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ConvergenceSkinRelativeToTotalThickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ConvergenceSkinRelativeToTotalThickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ConvergenceSkinRelativeToTotalThickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeltaPressureTotalSkin); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeltaPressureTotalSkin); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeltaPressureTotalSkin); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeltaPressureTotalSkin); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeltaTimeStorageChanges); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeltaTimeStorageChanges); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeltaTimeStorageChanges); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeltaTimeStorageChanges); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceFractureToBottomBoundary); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceFractureToBottomBoundary); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceFractureToBottomBoundary); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceFractureToBottomBoundary); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceMidFractureHeightToBottomBoundary); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceMidFractureHeightToBottomBoundary); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceMidFractureHeightToBottomBoundary); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceMidFractureHeightToBottomBoundary); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceMidPerforationsToBottomBoundary); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceMidPerforationsToBottomBoundary); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceMidPerforationsToBottomBoundary); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceMidPerforationsToBottomBoundary); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceToBoundary1); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceToBoundary1); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceToBoundary1); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceToBoundary1); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceToBoundary2); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceToBoundary2); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceToBoundary2); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceToBoundary2); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceToBoundary3); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceToBoundary3); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceToBoundary3); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceToBoundary3); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceToBoundary4); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceToBoundary4); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceToBoundary4); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceToBoundary4); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceToMobilityInterface); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceToMobilityInterface); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceToMobilityInterface); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceToMobilityInterface); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceToPinchOut); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceToPinchOut); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceToPinchOut); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceToPinchOut); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DistanceWellboreToBottomBoundary); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DistanceWellboreToBottomBoundary); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DistanceWellboreToBottomBoundary); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DistanceWellboreToBottomBoundary); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DrainageAreaMeasured); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DrainageAreaMeasured); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DrainageAreaMeasured); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DrainageAreaMeasured); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FaultConductivity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FaultConductivity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FaultConductivity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FaultConductivity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidDensity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidDensity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidDensity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidDensity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureAngleToWellbore); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureAngleToWellbore); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureAngleToWellbore); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureAngleToWellbore); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureConductivity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureConductivity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureConductivity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureConductivity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureFaceSkin); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureFaceSkin); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureFaceSkin); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureFaceSkin); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureHalfLength); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureHalfLength); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureHalfLength); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureHalfLength); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureHeight); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureHeight); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureHeight); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureHeight); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureRadius); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureRadius); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureRadius); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureRadius); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FractureStorativityRatio); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FractureStorativityRatio); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FractureStorativityRatio); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FractureStorativityRatio); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HorizontalAnisotropyKxToKy); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HorizontalAnisotropyKxToKy); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HorizontalAnisotropyKxToKy); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HorizontalAnisotropyKxToKy); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HorizontalRadialPermeability); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HorizontalRadialPermeability); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HorizontalRadialPermeability); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HorizontalRadialPermeability); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InitialPressure); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InitialPressure); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InitialPressure); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InitialPressure); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InnerToOuterZoneDiffusivityRatio); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InnerToOuterZoneDiffusivityRatio); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InnerToOuterZoneDiffusivityRatio); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InnerToOuterZoneDiffusivityRatio); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InnerToOuterZoneMobilityRatio); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InnerToOuterZoneMobilityRatio); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InnerToOuterZoneMobilityRatio); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InnerToOuterZoneMobilityRatio); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InterporosityFlowParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InterporosityFlowParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InterporosityFlowParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InterporosityFlowParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Layer2Thickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Layer2Thickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Layer2Thickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Layer2Thickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LeakSkin); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LeakSkin); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LeakSkin); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LeakSkin); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LengthHorizontalWellboreFlowing); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LengthHorizontalWellboreFlowing); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LengthHorizontalWellboreFlowing); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LengthHorizontalWellboreFlowing); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MechanicalSkinRelativeToTotalThickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MechanicalSkinRelativeToTotalThickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MechanicalSkinRelativeToTotalThickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MechanicalSkinRelativeToTotalThickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ModelName); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ModelName); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ModelName); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ModelName); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NumberOfFractures); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NumberOfFractures); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NumberOfFractures); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NumberOfFractures); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OrientationOfAnisotropyXDirection); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OrientationOfAnisotropyXDirection); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OrientationOfAnisotropyXDirection); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OrientationOfAnisotropyXDirection); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OrientationOfFracturePlane); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OrientationOfFracturePlane); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OrientationOfFracturePlane); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OrientationOfFracturePlane); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OrientationOfLinearFront); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OrientationOfLinearFront); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OrientationOfLinearFront); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OrientationOfLinearFront); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OrientationOfNormalToBoundary1); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OrientationOfNormalToBoundary1); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OrientationOfNormalToBoundary1); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OrientationOfNormalToBoundary1); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OrientationWellTrajectory); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OrientationWellTrajectory); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OrientationWellTrajectory); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OrientationWellTrajectory); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PerforatedLength); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PerforatedLength); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PerforatedLength); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PerforatedLength); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PermeabilityThicknessProduct); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PermeabilityThicknessProduct); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PermeabilityThicknessProduct); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PermeabilityThicknessProduct); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PoreVolumeMeasured); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PoreVolumeMeasured); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PoreVolumeMeasured); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PoreVolumeMeasured); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PoreVolumeOfInvestigation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PoreVolumeOfInvestigation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PoreVolumeOfInvestigation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PoreVolumeOfInvestigation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Porosity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Porosity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Porosity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Porosity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PressureDatumTVD); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PressureDatumTVD); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PressureDatumTVD); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PressureDatumTVD); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RadiusOfInvestigation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RadiusOfInvestigation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RadiusOfInvestigation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RadiusOfInvestigation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RateDependentSkinFactor); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RateDependentSkinFactor); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RateDependentSkinFactor); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RateDependentSkinFactor); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RatioDpSkinToTotalDrawdown); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RatioDpSkinToTotalDrawdown); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RatioDpSkinToTotalDrawdown); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RatioDpSkinToTotalDrawdown); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RatioInitialToFinalWellboreStorage); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RatioInitialToFinalWellboreStorage); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RatioInitialToFinalWellboreStorage); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RatioInitialToFinalWellboreStorage); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Region2Thickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Region2Thickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Region2Thickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Region2Thickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SkinLayer2RelativeToTotalThickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SkinLayer2RelativeToTotalThickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SkinLayer2RelativeToTotalThickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SkinLayer2RelativeToTotalThickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SkinRelativeToTotalThickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SkinRelativeToTotalThickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SkinRelativeToTotalThickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SkinRelativeToTotalThickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__StorativityRatio); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__StorativityRatio); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__StorativityRatio); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__StorativityRatio); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TotalThickness); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TotalThickness); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TotalThickness); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TotalThickness); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TransmissibilityReductionFactorOfLinearFront); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TransmissibilityReductionFactorOfLinearFront); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TransmissibilityReductionFactorOfLinearFront); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TransmissibilityReductionFactorOfLinearFront); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TubingInteralDiameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TubingInteralDiameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TubingInteralDiameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TubingInteralDiameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__VerticalAnisotropyKvToKr); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__VerticalAnisotropyKvToKr); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__VerticalAnisotropyKvToKr); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__VerticalAnisotropyKvToKr); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellboreDeviationAngle); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellboreDeviationAngle); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellboreDeviationAngle); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellboreDeviationAngle); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellboreFluidCompressibility); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellboreFluidCompressibility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellboreFluidCompressibility); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellboreFluidCompressibility); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellboreRadius); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellboreRadius); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellboreRadius); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellboreRadius); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellboreStorageCoefficient); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellboreStorageCoefficient); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellboreStorageCoefficient); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellboreStorageCoefficient); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellboreVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellboreVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellboreVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellboreVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSample); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSample); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSample); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSample); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleContainer); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleContainer); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleContainer); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleContainer); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DownholeSampleAcquisition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DownholeSampleAcquisition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DownholeSampleAcquisition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DownholeSampleAcquisition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FacilitySampleAcquisition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FacilitySampleAcquisition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FacilitySampleAcquisition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FacilitySampleAcquisition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisitionJob); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisitionJob); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisitionJob); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisitionJob); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FormationTesterSampleAcquisition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FormationTesterSampleAcquisition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FormationTesterSampleAcquisition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FormationTesterSampleAcquisition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SeparatorSampleAcquisition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SeparatorSampleAcquisition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SeparatorSampleAcquisition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SeparatorSampleAcquisition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WellheadSampleAcquisition); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WellheadSampleAcquisition); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WellheadSampleAcquisition); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WellheadSampleAcquisition); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlowTestJob); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlowTestJob); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlowTestJob); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlowTestJob); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CurveData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CurveData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CurveData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CurveData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FacilityParent); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FacilityParent); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FacilityParent); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FacilityParent); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FacilityUnitPort); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FacilityUnitPort); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FacilityUnitPort); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FacilityUnitPort); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__IntegerData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__IntegerData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__IntegerData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__IntegerData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Parentfacility); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Parentfacility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Parentfacility); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Parentfacility); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolume); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReferenceFlow); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReferenceFlow); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReferenceFlow); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReferenceFlow); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__StringData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__StringData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__StringData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__StringData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowQualifierExpected); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowQualifierExpected); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowQualifierExpected); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowQualifierExpected); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Qualifier); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Qualifier); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Qualifier); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Qualifier); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DoubleValue); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DoubleValue); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DoubleValue); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DoubleValue); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__StringValue); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__StringValue); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__StringValue); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__StringValue); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesStatistic); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesStatistic); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesStatistic); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesStatistic); break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: if (p->size < 0) @@ -42990,467 +43020,467 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), eml23__ReferencePressure); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableRow); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableRow); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterizationTableRow); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterizationTableRow); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCompositionalEoSModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCompositionalEoSModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCompositionalEoSModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCompositionalEoSModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCompositionalViscosityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCompositionalViscosityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCompositionalViscosityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCompositionalViscosityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient: + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__BinaryInteractionCoefficient); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__BinaryInteractionCoefficient); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__BinaryInteractionCoefficient); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__BinaryInteractionCoefficient); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CompositionalThermalModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CompositionalThermalModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CompositionalThermalModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CompositionalThermalModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CorrelationThermalModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CorrelationThermalModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CorrelationThermalModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CorrelationThermalModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PvtModelParameter); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PvtModelParameter); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PvtModelParameter); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PvtModelParameter); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MeasuredDepthCoord); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MeasuredDepthCoord); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MeasuredDepthCoord); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MeasuredDepthCoord); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HydrocarbonAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HydrocarbonAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HydrocarbonAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HydrocarbonAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NonHydrocarbonAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NonHydrocarbonAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NonHydrocarbonAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NonHydrocarbonAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WaterAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WaterAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WaterAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WaterAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DrillStemTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DrillStemTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DrillStemTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DrillStemTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FormationTesterStation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FormationTesterStation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FormationTesterStation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FormationTesterStation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InjectionFlowTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InjectionFlowTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InjectionFlowTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InjectionFlowTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InterwellTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InterwellTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InterwellTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InterwellTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductionFlowTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductionFlowTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductionFlowTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductionFlowTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductionTransientTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductionTransientTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductionTransientTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductionTransientTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__VerticalInterferenceTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__VerticalInterferenceTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__VerticalInterferenceTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__VerticalInterferenceTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WaterLevelTest); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WaterLevelTest); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WaterLevelTest); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WaterLevelTest); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeconvolvedFlowData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeconvolvedFlowData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeconvolvedFlowData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeconvolvedFlowData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeconvolvedPressureData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeconvolvedPressureData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeconvolvedPressureData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeconvolvedPressureData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MeasuredFlowData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MeasuredFlowData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MeasuredFlowData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MeasuredFlowData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__MeasuredPressureData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__MeasuredPressureData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__MeasuredPressureData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__MeasuredPressureData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OutputFlowData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OutputFlowData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OutputFlowData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OutputFlowData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OutputPressureData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__OutputPressureData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OutputPressureData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__OutputPressureData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PreProcessedFlowData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PreProcessedFlowData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PreProcessedFlowData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PreProcessedFlowData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PreProcessedPressureData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PreProcessedPressureData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PreProcessedPressureData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PreProcessedPressureData); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChangingStorageFairModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChangingStorageFairModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChangingStorageFairModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChangingStorageFairModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChangingStorageHegemanModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChangingStorageHegemanModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChangingStorageHegemanModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChangingStorageHegemanModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChangingStorageSpiveyFissuresModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChangingStorageSpiveyFissuresModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChangingStorageSpiveyFissuresModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChangingStorageSpiveyFissuresModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChangingStorageSpiveyPackerModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChangingStorageSpiveyPackerModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChangingStorageSpiveyPackerModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChangingStorageSpiveyPackerModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ClosedCircleModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ClosedCircleModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ClosedCircleModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ClosedCircleModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ClosedRectangleModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ClosedRectangleModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ClosedRectangleModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ClosedRectangleModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ConstantStorageModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ConstantStorageModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ConstantStorageModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ConstantStorageModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomBoundaryModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomBoundaryModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomBoundaryModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomBoundaryModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomNearWellboreModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomNearWellboreModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomNearWellboreModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomNearWellboreModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomReservoirModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomReservoirModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomReservoirModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomReservoirModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CustomWellboreModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CustomWellboreModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CustomWellboreModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CustomWellboreModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DualPermeabilityWithCrossflowModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DualPermeabilityWithCrossflowModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DualPermeabilityWithCrossflowModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DualPermeabilityWithCrossflowModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DualPorosityPseudoSteadyStateModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DualPorosityPseudoSteadyStateModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DualPorosityPseudoSteadyStateModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DualPorosityPseudoSteadyStateModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DualPorosityTransientSlabsModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DualPorosityTransientSlabsModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DualPorosityTransientSlabsModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DualPorosityTransientSlabsModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DualPorosityTransientSpheresModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DualPorosityTransientSpheresModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DualPorosityTransientSpheresModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DualPorosityTransientSpheresModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FiniteRadiusModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FiniteRadiusModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FiniteRadiusModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FiniteRadiusModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FracturedFiniteConductivityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FracturedFiniteConductivityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FracturedFiniteConductivityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FracturedFiniteConductivityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FracturedHorizontalFiniteConductivityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FracturedHorizontalFiniteConductivityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FracturedHorizontalFiniteConductivityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FracturedHorizontalFiniteConductivityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FracturedHorizontalInfiniteConductivityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FracturedHorizontalInfiniteConductivityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FracturedHorizontalInfiniteConductivityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FracturedHorizontalInfiniteConductivityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FracturedHorizontalUniformFluxModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FracturedHorizontalUniformFluxModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FracturedHorizontalUniformFluxModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FracturedHorizontalUniformFluxModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FracturedInfiniteConductivityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FracturedInfiniteConductivityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FracturedInfiniteConductivityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FracturedInfiniteConductivityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FracturedUniformFluxModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FracturedUniformFluxModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FracturedUniformFluxModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FracturedUniformFluxModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HomogeneousModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HomogeneousModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HomogeneousModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HomogeneousModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HorizontalWellbore2LayerModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HorizontalWellbore2LayerModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HorizontalWellbore2LayerModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HorizontalWellbore2LayerModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HorizontalWellboreModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HorizontalWellboreModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HorizontalWellboreModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HorizontalWellboreModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HorizontalWellboreMultipleEqualFracturedModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HorizontalWellboreMultipleEqualFracturedModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HorizontalWellboreMultipleEqualFracturedModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HorizontalWellboreMultipleEqualFracturedModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HorizontalWellboreMultipleVariableFracturedModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HorizontalWellboreMultipleVariableFracturedModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HorizontalWellboreMultipleVariableFracturedModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HorizontalWellboreMultipleVariableFracturedModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__InfiniteBoundaryModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__InfiniteBoundaryModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__InfiniteBoundaryModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__InfiniteBoundaryModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LinearCompositeModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LinearCompositeModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LinearCompositeModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LinearCompositeModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LinearCompositeWithConductiveFaultModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LinearCompositeWithConductiveFaultModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LinearCompositeWithConductiveFaultModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LinearCompositeWithConductiveFaultModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LinearCompositeWithLeakyFaultModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LinearCompositeWithLeakyFaultModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LinearCompositeWithLeakyFaultModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LinearCompositeWithLeakyFaultModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NumericalBoundaryModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NumericalBoundaryModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NumericalBoundaryModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NumericalBoundaryModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NumericalDualPorosityReservoirModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NumericalDualPorosityReservoirModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NumericalDualPorosityReservoirModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NumericalDualPorosityReservoirModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__NumericalHomogeneousReservoirModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__NumericalHomogeneousReservoirModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__NumericalHomogeneousReservoirModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__NumericalHomogeneousReservoirModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PartiallyPenetratingModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PartiallyPenetratingModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PartiallyPenetratingModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PartiallyPenetratingModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PinchOutModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PinchOutModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PinchOutModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PinchOutModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RadialCompositeModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__RadialCompositeModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RadialCompositeModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__RadialCompositeModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SingleFaultModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SingleFaultModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SingleFaultModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SingleFaultModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SlantedFullyPenetratingModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SlantedFullyPenetratingModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SlantedFullyPenetratingModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SlantedFullyPenetratingModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SlantedPartiallyPenetratingModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__SlantedPartiallyPenetratingModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SlantedPartiallyPenetratingModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__SlantedPartiallyPenetratingModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TwoIntersectingFaultsModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TwoIntersectingFaultsModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TwoIntersectingFaultsModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TwoIntersectingFaultsModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TwoParallelFaultsModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TwoParallelFaultsModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TwoParallelFaultsModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TwoParallelFaultsModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__UShapedFaultsModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__UShapedFaultsModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__UShapedFaultsModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__UShapedFaultsModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesDoubleSample); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesDoubleSample); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesDoubleSample); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesDoubleSample); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample: + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesStringSample); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesStringSample); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesStringSample); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesStringSample); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime: + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__EndpointDateTime); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__EndpointDateTime); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__EndpointDateTime); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__EndpointDateTime); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity: + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__EndpointQuantity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__EndpointQuantity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__EndpointQuantity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__EndpointQuantity); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct: + case SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__KeywordValueStruct); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__KeywordValueStruct); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__KeywordValueStruct); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__KeywordValueStruct); break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractTechnicalFeature: if (p->size < 0) @@ -43806,101 +43836,71 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), eml23__NameStruct); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityDeadModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityDeadModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityDeadModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityDeadModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCorrelationGasViscosityModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCorrelationGasViscosityModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCorrelationGasViscosityModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCorrelationGasViscosityModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityBubblePointModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityBubblePointModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityBubblePointModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityBubblePointModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityUndersaturatedModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityUndersaturatedModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__AbstractCorrelationViscosityUndersaturatedModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__AbstractCorrelationViscosityUndersaturatedModel); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CSPedersen84); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CSPedersen84); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CSPedersen84); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CSPedersen84); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CSPedersen87); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CSPedersen87); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CSPedersen87); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CSPedersen87); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FrictionTheory); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FrictionTheory); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FrictionTheory); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FrictionTheory); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Lohrenz_Bray_ClarkCorrelation); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Lohrenz_Bray_ClarkCorrelation); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Lohrenz_Bray_ClarkCorrelation); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Lohrenz_Bray_ClarkCorrelation); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PengRobinson76_USCOREEOS); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PengRobinson76_USCOREEOS); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PengRobinson76_USCOREEOS); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PengRobinson76_USCOREEOS); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PengRobinson78_USCOREEOS); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PengRobinson78_USCOREEOS); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PengRobinson78_USCOREEOS); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PengRobinson78_USCOREEOS); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Srk_USCOREEOS); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Srk_USCOREEOS); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Srk_USCOREEOS); - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__OilCompressibility); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__OilCompressibility); - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RefInjectedGasAdded); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RefInjectedGasAdded); - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__RelativeVolumeRatio); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__RelativeVolumeRatio); - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SaturationPressure); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SaturationPressure); - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: - if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__SaturationTemperature); - else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__SaturationTemperature); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Srk_USCOREEOS); break; case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeature: if (p->size < 0) @@ -44142,119 +44142,119 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), witsml21__WellboreGeometry); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__BerganAndSutton_Undersaturated); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__BerganAndSutton_Undersaturated); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__BerganAndSutton_Undersaturated); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__BerganAndSutton_Undersaturated); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__BerganSutton_Dead); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__BerganSutton_Dead); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__BerganSutton_Dead); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__BerganSutton_Dead); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__BergmanSutton_BubblePoint); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__BergmanSutton_BubblePoint); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__BergmanSutton_BubblePoint); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__BergmanSutton_BubblePoint); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__CarrDempsey); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__CarrDempsey); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__CarrDempsey); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__CarrDempsey); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeGhetto_BubblePoint); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeGhetto_BubblePoint); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeGhetto_BubblePoint); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeGhetto_BubblePoint); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeGhetto_Dead); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeGhetto_Dead); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeGhetto_Dead); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeGhetto_Dead); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DeGhetto_Undersaturated); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DeGhetto_Undersaturated); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DeGhetto_Undersaturated); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DeGhetto_Undersaturated); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DindorukChristman_BubblePoint); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DindorukChristman_BubblePoint); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DindorukChristman_BubblePoint); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DindorukChristman_BubblePoint); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DindorukChristman_Dead); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DindorukChristman_Dead); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DindorukChristman_Dead); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DindorukChristman_Dead); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__DindorukChristman_Undersaturated); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__DindorukChristman_Undersaturated); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__DindorukChristman_Undersaturated); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__DindorukChristman_Undersaturated); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LeeGonzalez); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LeeGonzalez); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LeeGonzalez); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LeeGonzalez); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__LondonoArcherBlasinggame); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__LondonoArcherBlasinggame); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__LondonoArcherBlasinggame); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__LondonoArcherBlasinggame); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Lucas); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Lucas); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Lucas); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Lucas); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PetroskyFarshad_BubblePoint); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PetroskyFarshad_BubblePoint); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PetroskyFarshad_BubblePoint); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PetroskyFarshad_BubblePoint); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PetroskyFarshad_Dead); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PetroskyFarshad_Dead); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PetroskyFarshad_Dead); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PetroskyFarshad_Dead); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PetroskyFarshad_Undersaturated); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PetroskyFarshad_Undersaturated); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PetroskyFarshad_Undersaturated); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PetroskyFarshad_Undersaturated); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Standing_BubblePoint); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Standing_BubblePoint); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Standing_BubblePoint); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Standing_BubblePoint); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Standing_Dead); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Standing_Dead); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Standing_Dead); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Standing_Dead); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Standing_Undersaturated); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Standing_Undersaturated); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Standing_Undersaturated); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Standing_Undersaturated); break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicLineFeature: if (p->size < 0) @@ -45814,103 +45814,103 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt: 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_gsoap_eml2_3_prodml22__PvtModelParameterKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt: 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_gsoap_eml2_3_prodml22__FacilityKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt: 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_gsoap_eml2_3_prodml22__PlusComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt: 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_gsoap_eml2_3_prodml22__ProductFluidKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt: 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_gsoap_eml2_3_prodml22__PseudoComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt: 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_gsoap_eml2_3_prodml22__PureComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt: 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_gsoap_eml2_3_prodml22__ReportingDurationKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt: 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_gsoap_eml2_3_prodml22__ReportingFacilityExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt: 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_gsoap_eml2_3_prodml22__ServiceFluidKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt: 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_gsoap_eml2_3_prodml22__SulfurComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt: 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_gsoap_eml2_3_prodml22__AnionKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt: 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_gsoap_eml2_3_prodml22__CationKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt: 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_gsoap_eml2_3_prodml22__OrganicAcidKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt: 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_gsoap_eml2_3_prodml22__VolumeReferenceKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt: 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_gsoap_eml2_3_prodml22__DataConditioningExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt: 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_gsoap_eml2_3_prodml22__FluidSampleKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt: if (p->size < 0) SOAP_DELETE(soap, static_cast(p->ptr), std::string); else @@ -45994,7 +45994,7 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), struct tm); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier: if (p->size < 0) SOAP_DELETE(soap, static_cast(p->ptr), std::string); else @@ -46072,7 +46072,7 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), std::string); break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth: if (p->size < 0) SOAP_DELETE(soap, static_cast(p->ptr), std::string); else @@ -46498,137 +46498,137 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), eml23__GraphicalInformationSet); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidCharacterization); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidCharacterization); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidCharacterization); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidCharacterization); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis: + case SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__HydrocarbonAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__HydrocarbonAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__HydrocarbonAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__HydrocarbonAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis: + case SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__WaterAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__WaterAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__WaterAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__WaterAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSystem); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSystem); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSystem); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSystem); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__Channel: + case SOAP_TYPE_gsoap_eml2_3__prodml23__Channel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Channel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Channel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Channel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Channel); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet: + case SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ChannelSet); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ChannelSet); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ChannelSet); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ChannelSet); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlowTestActivity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlowTestActivity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlowTestActivity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlowTestActivity); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__Facility: + case SOAP_TYPE_gsoap_eml2_3__prodml23__Facility: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__Facility); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__Facility); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__Facility); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__Facility); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity: + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReportingEntity); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReportingEntity); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReportingEntity); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReportingEntity); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy: + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ReportingHierarchy); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ReportingHierarchy); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ReportingHierarchy); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ReportingHierarchy); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis: + case SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PressureTransientAnalysis); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PressureTransientAnalysis); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PressureTransientAnalysis); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PressureTransientAnalysis); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess: + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PtaDataPreProcess); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PtaDataPreProcess); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PtaDataPreProcess); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PtaDataPreProcess); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution: + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__PtaDeconvolution); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__PtaDeconvolution); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__PtaDeconvolution); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__PtaDeconvolution); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSample); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSample); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSample); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSample); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleContainer); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleContainer); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleContainer); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleContainer); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisitionJob); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisitionJob); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FluidSampleAcquisitionJob); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FluidSampleAcquisitionJob); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob: + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__FlowTestJob); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__FlowTestJob); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__FlowTestJob); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__FlowTestJob); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume: + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductVolume); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductVolume); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductVolume); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductVolume); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel: + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__ProductFlowModel); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__ProductFlowModel); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__ProductFlowModel); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__ProductFlowModel); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData: + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesData); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesData); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesData); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesData); break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic: + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic: if (p->size < 0) - SOAP_DELETE(soap, static_cast(p->ptr), prodml22__TimeSeriesStatistic); + SOAP_DELETE(soap, static_cast(p->ptr), prodml23__TimeSeriesStatistic); else - SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml22__TimeSeriesStatistic); + SOAP_DELETE_ARRAY(soap, static_cast(p->ptr), prodml23__TimeSeriesStatistic); break; case SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature: if (p->size < 0) @@ -47110,11 +47110,11 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerConstantArray: if (p->size < 0) @@ -47212,131 +47212,131 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics: if (p->size < 0) @@ -47524,47 +47524,47 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfdouble: if (p->size < 0) @@ -47572,59 +47572,59 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt: 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_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfstd__string: if (p->size < 0) @@ -47632,29 +47632,29 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation: if (p->size < 0) @@ -48106,113 +48106,113 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FlowRateValue: if (p->size < 0) @@ -48220,11 +48220,11 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__VolumeValue: if (p->size < 0) @@ -48238,329 +48238,329 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fdelete(struct soap *soap, struct soap_cl else SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient: + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient: if (p->size < 0) - SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE(soap, static_cast *>(p->ptr), std::vector ); else - SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); + SOAP_DELETE_ARRAY(soap, static_cast *>(p->ptr), std::vector ); break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Column: if (p->size < 0) @@ -49251,145 +49251,145 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fbase(int t, int b) case SOAP_TYPE_gsoap_eml2_3_eml23__ColumnBasedTable: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; case SOAP_TYPE_gsoap_eml2_3_eml23__DataAssuranceRecord: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; case SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractParametricLineGeometry: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGeometry; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractPlaneGeometry: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGeometry; break; @@ -49489,74 +49489,74 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fbase(int t, int b) case SOAP_TYPE_gsoap_eml2_3_eml23__GeographicCompoundCrs: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractCompoundCrs; break; case SOAP_TYPE_gsoap_eml2_3_eml23__LocalEngineeringCompoundCrs: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractCompoundCrs; break; case SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCompoundCrs: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractCompoundCrs; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: t = SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: t = SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractTechnicalFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__BoundaryFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__Model: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature; break; @@ -49608,22 +49608,17 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fbase(int t, int b) case SOAP_TYPE_gsoap_eml2_3_eml23__IntegerXmlArray: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractIntegerArray; break; case SOAP_TYPE_gsoap_eml2_3_eml23__LocalEngineering2dCrs: t = SOAP_TYPE_gsoap_eml2_3_eml23__Cartesian2dCrs; break; case SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs: t = SOAP_TYPE_gsoap_eml2_3_eml23__Cartesian2dCrs; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: t = SOAP_TYPE_gsoap_eml2_3_eml23__ReciprocalPressureMeasure; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: t = SOAP_TYPE_gsoap_eml2_3_eml23__AmountOfSubstancePerAmountOfSubstanceMeasure; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: t = SOAP_TYPE_gsoap_eml2_3_eml23__VolumePerVolumeMeasure; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: t = SOAP_TYPE_gsoap_eml2_3_eml23__PressureMeasureExt; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: t = SOAP_TYPE_gsoap_eml2_3_eml23__ThermodynamicTemperatureMeasure; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractTechnicalFeature; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicSurveyFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractTechnicalFeature; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__Seismic3dPostStackRepresentation: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGridRepresentation; break; @@ -49664,25 +49659,25 @@ SOAP_FMAC3 int SOAP_FMAC4 gsoap_eml2_3_fbase(int t, int b) case SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractMdGrowingObject; break; case SOAP_TYPE_gsoap_eml2_3_witsml21__Trajectory: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractMdGrowingObject; break; case SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreGeometry: t = SOAP_TYPE_gsoap_eml2_3_eml23__AbstractMdGrowingObject; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: t = SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicLineFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicSurveyFeature; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLatticeFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicSurveyFeature; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLatticeSetFeature: t = SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicSurveyFeature; break; @@ -49822,10 +49817,10 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(resqml22__ContactIdentity **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter)) - { 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] = *(prodml22__PrsvParameter **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter)) + { 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] = *(prodml23__PrsvParameter **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerConstantArray: @@ -49924,130 +49919,130 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(resqml22__ThreePoint3d **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel)) - { 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] = *(prodml22__ReservoirZoneSubModel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel)) + { 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] = *(prodml23__ReservoirZoneSubModel **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel)) - { 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] = *(prodml22__InternalFaultSubModel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel)) + { 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] = *(prodml23__InternalFaultSubModel **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel)) - { 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] = *(prodml22__SingleBoundarySubModel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel)) + { 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] = *(prodml23__SingleBoundarySubModel **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel)) - { 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] = *(prodml22__SingleFractureSubModel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel)) + { 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] = *(prodml23__SingleFractureSubModel **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet)) - { 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] = *(prodml22__FlowTestMeasurementSet **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet)) + { 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] = *(prodml23__FlowTestMeasurementSet **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent)) - { 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] = *(prodml22__WaterSampleComponent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent)) + { 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] = *(prodml23__WaterSampleComponent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest)) - { 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] = *(prodml22__WaterAnalysisTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest)) + { 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] = *(prodml23__WaterAnalysisTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest)) - { 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] = *(prodml22__NonHydrocarbonTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest)) + { 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] = *(prodml23__NonHydrocarbonTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest)) - { 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] = *(prodml22__InterfacialTensionTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest)) + { 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] = *(prodml23__InterfacialTensionTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis)) - { 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] = *(prodml22__STOAnalysis **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis)) + { 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] = *(prodml23__STOAnalysis **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest)) - { 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] = *(prodml22__MultipleContactMiscibilityTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest)) + { 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] = *(prodml23__MultipleContactMiscibilityTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest)) - { 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] = *(prodml22__SlimTubeTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest)) + { 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] = *(prodml23__SlimTubeTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest)) - { 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] = *(prodml22__SwellingTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest)) + { 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] = *(prodml23__SwellingTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest)) - { 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] = *(prodml22__VaporLiquidEquilibriumTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest)) + { 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] = *(prodml23__VaporLiquidEquilibriumTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest)) - { 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] = *(prodml22__OtherMeasurementTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest)) + { 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] = *(prodml23__OtherMeasurementTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest)) - { 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] = *(prodml22__FluidSeparatorTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest)) + { 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] = *(prodml23__FluidSeparatorTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest)) - { 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] = *(prodml22__ConstantVolumeDepletionTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest)) + { 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] = *(prodml23__ConstantVolumeDepletionTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest)) - { 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] = *(prodml22__DifferentialLiberationTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest)) + { 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] = *(prodml23__DifferentialLiberationTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest)) - { 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] = *(prodml22__SaturationTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest)) + { 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] = *(prodml23__SaturationTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest)) - { 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] = *(prodml22__ConstantCompositionExpansionTest **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest)) + { 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] = *(prodml23__ConstantCompositionExpansionTest **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis)) - { 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] = *(prodml22__AtmosphericFlashTestAndCompositionalAnalysis **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis)) + { 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] = *(prodml23__AtmosphericFlashTestAndCompositionalAnalysis **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics: @@ -50236,46 +50231,46 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(resqml22__Point3dLatticeDimension **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue)) - { 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] = *(prodml22__AbstractValue **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue)) + { 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] = *(prodml23__AbstractValue **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct)) - { 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] = *(prodml22__KeywordValueStruct **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct)) + { 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] = *(prodml23__KeywordValueStruct **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier) - { 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] = *(prodml22__FlowQualifier *)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier) + { 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] = *(prodml23__FlowQualifier *)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork)) - { 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] = *(prodml22__ProductFlowNetwork **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork)) + { 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] = *(prodml23__ProductFlowNetwork **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference)) - { 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] = *(prodml22__ProductFlowExternalReference **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference)) + { 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] = *(prodml23__ProductFlowExternalReference **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit)) - { 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] = *(prodml22__ProductVolumeBusinessUnit **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit)) + { 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] = *(prodml23__ProductVolumeBusinessUnit **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility)) - { 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] = *(prodml22__ProductVolumeFacility **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility)) + { 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] = *(prodml23__ProductVolumeFacility **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfdouble: @@ -50284,58 +50279,58 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(double *)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition)) - { 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] = *(prodml22__FluidSampleAcquisition **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition)) + { 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] = *(prodml23__FluidSampleAcquisition **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent)) - { 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] = *(prodml22__FluidSampleChainOfCustodyEvent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent)) + { 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] = *(prodml23__FluidSampleChainOfCustodyEvent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput)) - { 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] = *(prodml22__AbstractDeconvolutionOutput **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput)) + { 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] = *(prodml23__AbstractDeconvolutionOutput **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt) + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt) { 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_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData)) - { 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] = *(prodml22__AbstractFlowTestData **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData)) + { 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] = *(prodml23__AbstractFlowTestData **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis)) - { 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] = *(prodml22__SpecializedAnalysis **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis)) + { 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] = *(prodml23__SpecializedAnalysis **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval)) - { 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] = *(prodml22__InterferingFlowTestInterval **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval)) + { 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] = *(prodml23__InterferingFlowTestInterval **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel)) - { 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] = *(prodml22__LayerModel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel)) + { 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] = *(prodml23__LayerModel **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__Channel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel)) - { 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] = *(prodml22__Channel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__Channel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel)) + { 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] = *(prodml23__Channel **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfstd__string: @@ -50344,28 +50339,28 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(std::string *)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant)) - { 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] = *(prodml22__SampleContaminant **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant)) + { 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] = *(prodml23__SampleContaminant **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport)) - { 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] = *(prodml22__FluidAnalysisReport **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport)) + { 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] = *(prodml23__FluidAnalysisReport **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel)) - { 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] = *(prodml22__FluidCharacterizationModel **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel)) + { 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] = *(prodml23__FluidCharacterizationModel **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource)) - { 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] = *(prodml22__FluidCharacterizationSource **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource)) + { 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] = *(prodml23__FluidCharacterizationSource **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation: @@ -50818,112 +50813,112 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(resqml22__Point3d **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort)) - { 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] = *(prodml22__ProductFlowPort **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort)) + { 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] = *(prodml23__ProductFlowPort **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct)) - { 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] = *(prodml22__FacilityIdentifierStruct **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct)) + { 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] = *(prodml23__FacilityIdentifierStruct **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty)) - { 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] = *(prodml22__ProductFlowExpectedUnitProperty **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty)) + { 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] = *(prodml23__ProductFlowExpectedUnitProperty **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode)) - { 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] = *(prodml22__ConnectedNode **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode)) + { 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] = *(prodml23__ConnectedNode **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected)) - { 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] = *(prodml22__ProductFlowQualifierExpected **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected)) + { 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] = *(prodml23__ProductFlowQualifierExpected **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod)) - { 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] = *(prodml22__ProductVolumePeriod **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod)) + { 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] = *(prodml23__ProductVolumePeriod **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet)) - { 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] = *(prodml22__ProductVolumeBalanceSet **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet)) + { 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] = *(prodml23__ProductVolumeBalanceSet **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData)) - { 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] = *(prodml22__AbstractMeasureData **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData)) + { 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] = *(prodml23__AbstractMeasureData **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition)) - { 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] = *(prodml22__CurveDefinition **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition)) + { 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] = *(prodml23__CurveDefinition **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue)) - { 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] = *(prodml22__ProductVolumeParameterValue **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue)) + { 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] = *(prodml23__ProductVolumeParameterValue **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct)) - { 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] = *(prodml22__ProductVolumeProduct **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct)) + { 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] = *(prodml23__ProductVolumeProduct **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment)) - { 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] = *(prodml22__DatedComment **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment)) + { 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] = *(prodml23__DatedComment **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet)) - { 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] = *(prodml22__ProductVolumeParameterSet **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet)) + { 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] = *(prodml23__ProductVolumeParameterSet **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow)) - { 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] = *(prodml22__ProductVolumeFlow **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow)) + { 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] = *(prodml23__ProductVolumeFlow **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit)) - { 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] = *(prodml22__ProductVolumeBusinessSubUnit **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit)) + { 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] = *(prodml23__ProductVolumeBusinessSubUnit **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail)) - { 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] = *(prodml22__ProductVolumeBalanceDetail **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail)) + { 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] = *(prodml23__ProductVolumeBalanceDetail **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent)) - { 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] = *(prodml22__ProductVolumeBalanceEvent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent)) + { 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] = *(prodml23__ProductVolumeBalanceEvent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent)) - { 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] = *(prodml22__ProductVolumeComponentContent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent)) + { 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] = *(prodml23__ProductVolumeComponentContent **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FlowRateValue: @@ -50932,10 +50927,10 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(eml23__FlowRateValue **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference)) - { 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] = *(prodml22__ProductVolumePortDifference **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference)) + { 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] = *(prodml23__ProductVolumePortDifference **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__VolumeValue: @@ -50950,328 +50945,328 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt (*(std::vector *)p)[index] = *(eml23__DensityValue **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction)) - { 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] = *(prodml22__RecombinedSampleFraction **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction)) + { 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] = *(prodml23__RecombinedSampleFraction **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter)) - { 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] = *(prodml22__CustomParameter **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter)) + { 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] = *(prodml23__CustomParameter **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter)) - { 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] = *(prodml22__AbstractParameter **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter)) + { 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] = *(prodml23__AbstractParameter **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D)) - { 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] = *(prodml22__LocationIn2D **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D)) + { 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] = *(prodml23__LocationIn2D **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine)) - { 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] = *(prodml22__AnalysisLine **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine)) + { 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] = *(prodml23__AnalysisLine **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection)) - { 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] = *(prodml22__LayerToLayerConnection **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection)) + { 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] = *(prodml23__LayerToLayerConnection **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode)) - { 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] = *(prodml22__ReportingHierarchyNode **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode)) + { 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] = *(prodml23__ReportingHierarchyNode **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate)) - { 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] = *(prodml22__ProductRate **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate)) + { 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] = *(prodml23__ProductRate **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData)) - { 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] = *(prodml22__MeasuredPressureData **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData)) + { 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] = *(prodml23__MeasuredPressureData **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData)) - { 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] = *(prodml22__AbstractPtaFlowData **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData)) + { 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] = *(prodml23__AbstractPtaFlowData **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData)) - { 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] = *(prodml22__OtherData **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData)) + { 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] = *(prodml23__OtherData **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep)) - { 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] = *(prodml22__WaterAnalysisTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep)) + { 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] = *(prodml23__WaterAnalysisTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition)) - { 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] = *(prodml22__LiquidComposition **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition)) + { 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] = *(prodml23__LiquidComposition **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity)) - { 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] = *(prodml22__PhaseDensity **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity)) + { 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] = *(prodml23__PhaseDensity **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded)) - { 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] = *(prodml22__RefInjectedGasAdded **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded)) + { 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] = *(prodml23__RefInjectedGasAdded **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep)) - { 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] = *(prodml22__SwellingTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep)) + { 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] = *(prodml23__SwellingTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__Sara || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara)) - { 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] = *(prodml22__Sara **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__Sara || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara)) + { 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] = *(prodml23__Sara **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature)) - { 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] = *(prodml22__ViscosityAtTemperature **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature)) + { 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] = *(prodml23__ViscosityAtTemperature **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep)) - { 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] = *(prodml22__SlimTubeTestVolumeStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep)) + { 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] = *(prodml23__SlimTubeTestVolumeStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification)) - { 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] = *(prodml22__SlimTubeSpecification **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification)) + { 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] = *(prodml23__SlimTubeSpecification **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep)) - { 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] = *(prodml22__SlimTubeTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep)) + { 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] = *(prodml23__SlimTubeTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas)) - { 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] = *(prodml22__InjectedGas **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas)) + { 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] = *(prodml23__InjectedGas **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration)) - { 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] = *(prodml22__SampleRestoration **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration)) + { 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] = *(prodml23__SampleRestoration **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition)) - { 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] = *(prodml22__VaporComposition **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition)) + { 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] = *(prodml23__VaporComposition **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep)) - { 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] = *(prodml22__OtherMeasurementTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep)) + { 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] = *(prodml23__OtherMeasurementTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep)) - { 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] = *(prodml22__InterfacialTensionTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep)) + { 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] = *(prodml23__InterfacialTensionTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep)) - { 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] = *(prodml22__FluidSeparatorTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep)) + { 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] = *(prodml23__FluidSeparatorTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation)) - { 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] = *(prodml22__ReportLocation **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation)) + { 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] = *(prodml23__ReportLocation **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep)) - { 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] = *(prodml22__FluidDifferentialLiberationTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep)) + { 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] = *(prodml23__FluidDifferentialLiberationTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep)) - { 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] = *(prodml22__FluidCvdTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep)) + { 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] = *(prodml23__FluidCvdTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep)) - { 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] = *(prodml22__ConstantCompositionExpansionTestStep **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep)) + { 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] = *(prodml23__ConstantCompositionExpansionTestStep **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference)) - { 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] = *(prodml22__FluidVolumeReference **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference)) + { 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] = *(prodml23__FluidVolumeReference **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit)) - { 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] = *(prodml22__ProductFlowUnit **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit)) + { 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] = *(prodml23__ProductFlowUnit **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog)) - { 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] = *(prodml22__ProductFlowChangeLog **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog)) + { 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] = *(prodml23__ProductFlowChangeLog **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan)) - { 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] = *(prodml22__ProductFlowNetworkPlan **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan)) + { 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] = *(prodml23__ProductFlowNetworkPlan **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort)) - { 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] = *(prodml22__ProductFlowExternalPort **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort)) + { 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] = *(prodml23__ProductFlowExternalPort **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction)) - { 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] = *(prodml22__FluidComponentFraction **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction)) + { 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] = *(prodml23__FluidComponentFraction **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent)) - { 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] = *(prodml22__SulfurFluidComponent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent)) + { 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] = *(prodml23__SulfurFluidComponent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent)) - { 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] = *(prodml22__PlusFluidComponent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent)) + { 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] = *(prodml23__PlusFluidComponent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent)) - { 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] = *(prodml22__PseudoFluidComponent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent)) + { 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] = *(prodml23__PseudoFluidComponent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent)) - { 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] = *(prodml22__PureFluidComponent **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent)) + { 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] = *(prodml23__PureFluidComponent **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater)) - { 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] = *(prodml22__FormationWater **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater)) + { 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] = *(prodml23__FormationWater **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas)) - { 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] = *(prodml22__NaturalGas **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas)) + { 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] = *(prodml23__NaturalGas **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil)) - { 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] = *(prodml22__StockTankOil **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil)) + { 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] = *(prodml23__StockTankOil **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter)) - { 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] = *(prodml22__PvtModelParameter **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter)) + { 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] = *(prodml23__PvtModelParameter **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat)) - { 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] = *(prodml22__FluidCharacterizationTableFormat **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat)) + { 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] = *(prodml23__FluidCharacterizationTableFormat **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn)) - { 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] = *(prodml22__FluidCharacterizationTableColumn **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn)) + { 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] = *(prodml23__FluidCharacterizationTableColumn **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow)) - { 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] = *(prodml22__FluidCharacterizationTableRow **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow)) + { 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] = *(prodml23__FluidCharacterizationTableRow **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter)) - { 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] = *(prodml22__FluidCharacterizationParameter **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter)) + { 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] = *(prodml23__FluidCharacterizationParameter **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage)) - { 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] = *(prodml22__ReferenceSeparatorStage **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage)) + { 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] = *(prodml23__ReferenceSeparatorStage **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable)) - { 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] = *(prodml22__FluidCharacterizationTable **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable)) + { 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] = *(prodml23__FluidCharacterizationTable **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter)) - { 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] = *(prodml22__CustomPvtModelParameter **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter)) + { 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] = *(prodml23__CustomPvtModelParameter **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty)) - { 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] = *(prodml22__FluidComponentProperty **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty)) + { 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] = *(prodml23__FluidComponentProperty **)q; } break; - case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient: - if (t == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient)) - { 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] = *(prodml22__BinaryInteractionCoefficient **)q; + case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient: + if (t == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient || gsoap_eml2_3_fbase(t, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient)) + { 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] = *(prodml23__BinaryInteractionCoefficient **)q; } break; case SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Column: @@ -52812,617 +52807,637 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy eml23__AbstractGraphicalInformation type=%d location=%p object=%p\n", t, p, q)); *(eml23__AbstractGraphicalInformation*)p = *(eml23__AbstractGraphicalInformation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractPvtModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractPvtModel*)p = *(prodml22__AbstractPvtModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractPvtModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractPvtModel*)p = *(prodml23__AbstractPvtModel*)q; + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__BinaryInteractionCoefficientSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__BinaryInteractionCoefficientSet*)p = *(prodml23__BinaryInteractionCoefficientSet*)q; + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ComponentPropertySet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ComponentPropertySet*)p = *(prodml23__ComponentPropertySet*)q; + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomPvtModelExtension type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomPvtModelExtension*)p = *(prodml23__CustomPvtModelExtension*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__BinaryInteractionCoefficientSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__BinaryInteractionCoefficientSet*)p = *(prodml22__BinaryInteractionCoefficientSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomPvtModelParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomPvtModelParameter*)p = *(prodml23__CustomPvtModelParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ComponentPropertySet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ComponentPropertySet*)p = *(prodml22__ComponentPropertySet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationModel*)p = *(prodml23__FluidCharacterizationModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomPvtModelExtension type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomPvtModelExtension*)p = *(prodml22__CustomPvtModelExtension*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationParameter*)p = *(prodml23__FluidCharacterizationParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomPvtModelParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomPvtModelParameter*)p = *(prodml22__CustomPvtModelParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationParameterSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationParameterSet*)p = *(prodml23__FluidCharacterizationParameterSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationModel*)p = *(prodml22__FluidCharacterizationModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationSource type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationSource*)p = *(prodml23__FluidCharacterizationSource*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationParameter*)p = *(prodml22__FluidCharacterizationParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationTable type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationTable*)p = *(prodml23__FluidCharacterizationTable*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationParameterSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationParameterSet*)p = *(prodml22__FluidCharacterizationParameterSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationTableColumn type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationTableColumn*)p = *(prodml23__FluidCharacterizationTableColumn*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationSource type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationSource*)p = *(prodml22__FluidCharacterizationSource*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationTableFormat type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationTableFormat*)p = *(prodml23__FluidCharacterizationTableFormat*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationTable type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationTable*)p = *(prodml22__FluidCharacterizationTable*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationTableFormatSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationTableFormatSet*)p = *(prodml23__FluidCharacterizationTableFormatSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationTableColumn type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationTableColumn*)p = *(prodml22__FluidCharacterizationTableColumn*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidComponentProperty type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidComponentProperty*)p = *(prodml23__FluidComponentProperty*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationTableFormat type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationTableFormat*)p = *(prodml22__FluidCharacterizationTableFormat*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PrsvParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PrsvParameter*)p = *(prodml23__PrsvParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationTableFormatSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationTableFormatSet*)p = *(prodml22__FluidCharacterizationTableFormatSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PvtModelParameterSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PvtModelParameterSet*)p = *(prodml23__PvtModelParameterSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidComponentProperty type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidComponentProperty*)p = *(prodml22__FluidComponentProperty*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReferenceSeparatorStage type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReferenceSeparatorStage*)p = *(prodml23__ReferenceSeparatorStage*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PrsvParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PrsvParameter*)p = *(prodml22__PrsvParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractDateTimeClass type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractDateTimeClass*)p = *(prodml23__AbstractDateTimeClass*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PvtModelParameterSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PvtModelParameterSet*)p = *(prodml22__PvtModelParameterSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractFluidComponent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractFluidComponent*)p = *(prodml23__AbstractFluidComponent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReferenceSeparatorStage type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReferenceSeparatorStage*)p = *(prodml22__ReferenceSeparatorStage*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractProductQuantity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractProductQuantity*)p = *(prodml23__AbstractProductQuantity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractDateTimeClass type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractDateTimeClass*)p = *(prodml22__AbstractDateTimeClass*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CalibrationParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CalibrationParameter*)p = *(prodml23__CalibrationParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractFluidComponent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractFluidComponent*)p = *(prodml22__AbstractFluidComponent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DatedComment type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DatedComment*)p = *(prodml23__DatedComment*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractProductQuantity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractProductQuantity*)p = *(prodml22__AbstractProductQuantity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__EndpointQualifiedDate type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__EndpointQualifiedDate*)p = *(prodml23__EndpointQualifiedDate*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CalibrationParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CalibrationParameter*)p = *(prodml22__CalibrationParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__EndpointQualifiedDateTime type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__EndpointQualifiedDateTime*)p = *(prodml23__EndpointQualifiedDateTime*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DatedComment type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DatedComment*)p = *(prodml22__DatedComment*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FacilityIdentifier type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FacilityIdentifier*)p = *(prodml23__FacilityIdentifier*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__EndpointQualifiedDate type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__EndpointQualifiedDate*)p = *(prodml22__EndpointQualifiedDate*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FacilityIdentifierStruct type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FacilityIdentifierStruct*)p = *(prodml23__FacilityIdentifierStruct*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__EndpointQualifiedDateTime type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__EndpointQualifiedDateTime*)p = *(prodml22__EndpointQualifiedDateTime*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidComponentCatalog type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidComponentCatalog*)p = *(prodml23__FluidComponentCatalog*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FacilityIdentifier type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FacilityIdentifier*)p = *(prodml22__FacilityIdentifier*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidComponentFraction type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidComponentFraction*)p = *(prodml23__FluidComponentFraction*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FacilityIdentifierStruct type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FacilityIdentifierStruct*)p = *(prodml22__FacilityIdentifierStruct*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__GeneralMeasureType type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__GeneralMeasureType*)p = *(prodml23__GeneralMeasureType*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidComponentCatalog type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidComponentCatalog*)p = *(prodml22__FluidComponentCatalog*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__GeographicContext type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__GeographicContext*)p = *(prodml23__GeographicContext*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidComponentFraction type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidComponentFraction*)p = *(prodml22__FluidComponentFraction*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LiquidComposition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LiquidComposition*)p = *(prodml23__LiquidComposition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__GeneralMeasureType type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__GeneralMeasureType*)p = *(prodml22__GeneralMeasureType*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NorthSeaOffshore type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NorthSeaOffshore*)p = *(prodml23__NorthSeaOffshore*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__GeographicContext type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__GeographicContext*)p = *(prodml22__GeographicContext*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OffshoreLocation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OffshoreLocation*)p = *(prodml23__OffshoreLocation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LiquidComposition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LiquidComposition*)p = *(prodml22__LiquidComposition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OverallComposition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OverallComposition*)p = *(prodml23__OverallComposition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NorthSeaOffshore type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NorthSeaOffshore*)p = *(prodml22__NorthSeaOffshore*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowExternalReference type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowExternalReference*)p = *(prodml23__ProductFlowExternalReference*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OffshoreLocation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OffshoreLocation*)p = *(prodml22__OffshoreLocation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowNetwork type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowNetwork*)p = *(prodml23__ProductFlowNetwork*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OverallComposition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OverallComposition*)p = *(prodml22__OverallComposition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__VaporComposition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__VaporComposition*)p = *(prodml23__VaporComposition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowExternalReference type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowExternalReference*)p = *(prodml22__ProductFlowExternalReference*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractGasProducedRatioVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractGasProducedRatioVolume*)p = *(prodml23__AbstractGasProducedRatioVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowNetwork type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowNetwork*)p = *(prodml22__ProductFlowNetwork*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractLiquidDropoutPercVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractLiquidDropoutPercVolume*)p = *(prodml23__AbstractLiquidDropoutPercVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__VaporComposition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__VaporComposition*)p = *(prodml22__VaporComposition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractOilVolShrinkage type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractOilVolShrinkage*)p = *(prodml23__AbstractOilVolShrinkage*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractGasProducedRatioVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractGasProducedRatioVolume*)p = *(prodml22__AbstractGasProducedRatioVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AtmosphericFlashTestAndCompositionalAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AtmosphericFlashTestAndCompositionalAnalysis*)p = *(prodml23__AtmosphericFlashTestAndCompositionalAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractLiquidDropoutPercVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractLiquidDropoutPercVolume*)p = *(prodml22__AbstractLiquidDropoutPercVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ConstantCompositionExpansionTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ConstantCompositionExpansionTest*)p = *(prodml23__ConstantCompositionExpansionTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractOilVolShrinkage type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractOilVolShrinkage*)p = *(prodml22__AbstractOilVolShrinkage*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ConstantCompositionExpansionTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ConstantCompositionExpansionTestStep*)p = *(prodml23__ConstantCompositionExpansionTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AtmosphericFlashTestAndCompositionalAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AtmosphericFlashTestAndCompositionalAnalysis*)p = *(prodml22__AtmosphericFlashTestAndCompositionalAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ConstantVolumeDepletionTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ConstantVolumeDepletionTest*)p = *(prodml23__ConstantVolumeDepletionTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ConstantCompositionExpansionTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ConstantCompositionExpansionTest*)p = *(prodml22__ConstantCompositionExpansionTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DifferentialLiberationTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DifferentialLiberationTest*)p = *(prodml23__DifferentialLiberationTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ConstantCompositionExpansionTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ConstantCompositionExpansionTestStep*)p = *(prodml22__ConstantCompositionExpansionTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlashedGas type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlashedGas*)p = *(prodml23__FlashedGas*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ConstantVolumeDepletionTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ConstantVolumeDepletionTest*)p = *(prodml22__ConstantVolumeDepletionTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlashedLiquid type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlashedLiquid*)p = *(prodml23__FlashedLiquid*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DifferentialLiberationTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DifferentialLiberationTest*)p = *(prodml22__DifferentialLiberationTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidAnalysisReport type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidAnalysisReport*)p = *(prodml23__FluidAnalysisReport*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlashedGas type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlashedGas*)p = *(prodml22__FlashedGas*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCvdTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCvdTestStep*)p = *(prodml23__FluidCvdTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlashedLiquid type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlashedLiquid*)p = *(prodml22__FlashedLiquid*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidDifferentialLiberationTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidDifferentialLiberationTestStep*)p = *(prodml23__FluidDifferentialLiberationTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidAnalysisReport type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidAnalysisReport*)p = *(prodml22__FluidAnalysisReport*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSeparatorTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSeparatorTest*)p = *(prodml23__FluidSeparatorTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCvdTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCvdTestStep*)p = *(prodml22__FluidCvdTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSeparatorTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSeparatorTestStep*)p = *(prodml23__FluidSeparatorTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidDifferentialLiberationTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidDifferentialLiberationTestStep*)p = *(prodml22__FluidDifferentialLiberationTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidVolumeReference type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidVolumeReference*)p = *(prodml23__FluidVolumeReference*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSeparatorTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSeparatorTest*)p = *(prodml22__FluidSeparatorTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InjectedGas type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InjectedGas*)p = *(prodml23__InjectedGas*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSeparatorTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSeparatorTestStep*)p = *(prodml22__FluidSeparatorTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InterfacialTensionTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InterfacialTensionTest*)p = *(prodml23__InterfacialTensionTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidVolumeReference type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidVolumeReference*)p = *(prodml22__FluidVolumeReference*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InterfacialTensionTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InterfacialTensionTestStep*)p = *(prodml23__InterfacialTensionTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InjectedGas type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InjectedGas*)p = *(prodml22__InjectedGas*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MassBalance type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MassBalance*)p = *(prodml23__MassBalance*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InterfacialTensionTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InterfacialTensionTest*)p = *(prodml22__InterfacialTensionTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MassIn type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MassIn*)p = *(prodml23__MassIn*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InterfacialTensionTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InterfacialTensionTestStep*)p = *(prodml22__InterfacialTensionTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MassOut type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MassOut*)p = *(prodml23__MassOut*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MassBalance type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MassBalance*)p = *(prodml22__MassBalance*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MultipleContactMiscibilityTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MultipleContactMiscibilityTest*)p = *(prodml23__MultipleContactMiscibilityTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MassIn type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MassIn*)p = *(prodml22__MassIn*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NonHydrocarbonTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NonHydrocarbonTest*)p = *(prodml23__NonHydrocarbonTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MassOut type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MassOut*)p = *(prodml22__MassOut*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OilCompressibility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OilCompressibility*)p = *(prodml23__OilCompressibility*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MultipleContactMiscibilityTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MultipleContactMiscibilityTest*)p = *(prodml22__MultipleContactMiscibilityTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OtherMeasurementTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OtherMeasurementTest*)p = *(prodml23__OtherMeasurementTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NonHydrocarbonTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NonHydrocarbonTest*)p = *(prodml22__NonHydrocarbonTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OtherMeasurementTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OtherMeasurementTestStep*)p = *(prodml23__OtherMeasurementTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OtherMeasurementTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OtherMeasurementTest*)p = *(prodml22__OtherMeasurementTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PhaseDensity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PhaseDensity*)p = *(prodml23__PhaseDensity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OtherMeasurementTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OtherMeasurementTestStep*)p = *(prodml22__OtherMeasurementTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PhaseViscosity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PhaseViscosity*)p = *(prodml23__PhaseViscosity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PhaseDensity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PhaseDensity*)p = *(prodml22__PhaseDensity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProducedGasProperties type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProducedGasProperties*)p = *(prodml23__ProducedGasProperties*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PhaseViscosity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PhaseViscosity*)p = *(prodml22__PhaseViscosity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProducedOilProperties type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProducedOilProperties*)p = *(prodml23__ProducedOilProperties*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProducedGasProperties type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProducedGasProperties*)p = *(prodml22__ProducedGasProperties*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RefInjectedGasAdded type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RefInjectedGasAdded*)p = *(prodml23__RefInjectedGasAdded*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProducedOilProperties type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProducedOilProperties*)p = *(prodml22__ProducedOilProperties*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RelativeVolumeRatio type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RelativeVolumeRatio*)p = *(prodml23__RelativeVolumeRatio*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReportLocation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReportLocation*)p = *(prodml22__ReportLocation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReportLocation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReportLocation*)p = *(prodml23__ReportLocation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SampleContaminant type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SampleContaminant*)p = *(prodml22__SampleContaminant*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SampleContaminant type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SampleContaminant*)p = *(prodml23__SampleContaminant*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SampleIntegrityAndPreparation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SampleIntegrityAndPreparation*)p = *(prodml22__SampleIntegrityAndPreparation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SampleIntegrityAndPreparation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SampleIntegrityAndPreparation*)p = *(prodml23__SampleIntegrityAndPreparation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SampleRestoration type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SampleRestoration*)p = *(prodml22__SampleRestoration*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SampleRestoration type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SampleRestoration*)p = *(prodml23__SampleRestoration*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Sara: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Sara type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Sara*)p = *(prodml22__Sara*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Sara: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Sara type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Sara*)p = *(prodml23__Sara*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SaturationTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SaturationTest*)p = *(prodml22__SaturationTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SaturationPressure type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SaturationPressure*)p = *(prodml23__SaturationPressure*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SeparatorConditions type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SeparatorConditions*)p = *(prodml22__SeparatorConditions*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SaturationTemperature type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SaturationTemperature*)p = *(prodml23__SaturationTemperature*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SlimTubeSpecification type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SlimTubeSpecification*)p = *(prodml22__SlimTubeSpecification*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SaturationTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SaturationTest*)p = *(prodml23__SaturationTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SlimTubeTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SlimTubeTest*)p = *(prodml22__SlimTubeTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SeparatorConditions type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SeparatorConditions*)p = *(prodml23__SeparatorConditions*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SlimTubeTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SlimTubeTestStep*)p = *(prodml22__SlimTubeTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SlimTubeSpecification type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SlimTubeSpecification*)p = *(prodml23__SlimTubeSpecification*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SlimTubeTestVolumeStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SlimTubeTestVolumeStep*)p = *(prodml22__SlimTubeTestVolumeStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SlimTubeTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SlimTubeTest*)p = *(prodml23__SlimTubeTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__STOAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__STOAnalysis*)p = *(prodml22__STOAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SlimTubeTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SlimTubeTestStep*)p = *(prodml23__SlimTubeTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__STOFlashedLiquid type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__STOFlashedLiquid*)p = *(prodml22__STOFlashedLiquid*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SlimTubeTestVolumeStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SlimTubeTestVolumeStep*)p = *(prodml23__SlimTubeTestVolumeStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SwellingTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SwellingTest*)p = *(prodml22__SwellingTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__STOAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__STOAnalysis*)p = *(prodml23__STOAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SwellingTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SwellingTestStep*)p = *(prodml22__SwellingTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__STOFlashedLiquid type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__STOFlashedLiquid*)p = *(prodml23__STOFlashedLiquid*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__VaporLiquidEquilibriumTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__VaporLiquidEquilibriumTest*)p = *(prodml22__VaporLiquidEquilibriumTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SwellingTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SwellingTest*)p = *(prodml23__SwellingTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ViscosityAtTemperature type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ViscosityAtTemperature*)p = *(prodml22__ViscosityAtTemperature*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SwellingTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SwellingTestStep*)p = *(prodml23__SwellingTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WaterAnalysisTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WaterAnalysisTest*)p = *(prodml22__WaterAnalysisTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__VaporLiquidEquilibriumTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__VaporLiquidEquilibriumTest*)p = *(prodml23__VaporLiquidEquilibriumTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WaterAnalysisTestStep type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WaterAnalysisTestStep*)p = *(prodml22__WaterAnalysisTestStep*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ViscosityAtTemperature type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ViscosityAtTemperature*)p = *(prodml23__ViscosityAtTemperature*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WaterSampleComponent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WaterSampleComponent*)p = *(prodml22__WaterSampleComponent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WaterAnalysisTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WaterAnalysisTest*)p = *(prodml23__WaterAnalysisTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractFlowTestData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractFlowTestData*)p = *(prodml22__AbstractFlowTestData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WaterAnalysisTestStep type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WaterAnalysisTestStep*)p = *(prodml23__WaterAnalysisTestStep*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlowTestLocation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlowTestLocation*)p = *(prodml22__FlowTestLocation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WaterSampleComponent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WaterSampleComponent*)p = *(prodml23__WaterSampleComponent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlowTestMeasurementSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlowTestMeasurementSet*)p = *(prodml22__FlowTestMeasurementSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractFlowTestData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractFlowTestData*)p = *(prodml23__AbstractFlowTestData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductRate type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductRate*)p = *(prodml22__ProductRate*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlowTestLocation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlowTestLocation*)p = *(prodml23__FlowTestLocation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TestPeriod type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TestPeriod*)p = *(prodml22__TestPeriod*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlowTestMeasurementSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlowTestMeasurementSet*)p = *(prodml23__FlowTestMeasurementSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellFlowingCondition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellFlowingCondition*)p = *(prodml22__WellFlowingCondition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductRate type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductRate*)p = *(prodml23__ProductRate*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReportingHierarchyNode type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReportingHierarchyNode*)p = *(prodml22__ReportingHierarchyNode*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TestPeriod type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TestPeriod*)p = *(prodml23__TestPeriod*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractAnalysis*)p = *(prodml22__AbstractAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellFlowingCondition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellFlowingCondition*)p = *(prodml23__WellFlowingCondition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractDeconvolutionOutput type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractDeconvolutionOutput*)p = *(prodml22__AbstractDeconvolutionOutput*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReportingHierarchyNode type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReportingHierarchyNode*)p = *(prodml23__ReportingHierarchyNode*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractRateHistory type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractRateHistory*)p = *(prodml22__AbstractRateHistory*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractAnalysis*)p = *(prodml23__AbstractAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AnalysisLine type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AnalysisLine*)p = *(prodml22__AnalysisLine*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractDeconvolutionOutput type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractDeconvolutionOutput*)p = *(prodml23__AbstractDeconvolutionOutput*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CompressibilityParameters type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CompressibilityParameters*)p = *(prodml22__CompressibilityParameters*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractRateHistory type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractRateHistory*)p = *(prodml23__AbstractRateHistory*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeconvolutionOutput type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeconvolutionOutput*)p = *(prodml22__DeconvolutionOutput*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AnalysisLine type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AnalysisLine*)p = *(prodml23__AnalysisLine*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistributedParametersSubModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistributedParametersSubModel*)p = *(prodml22__DistributedParametersSubModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CompressibilityParameters type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CompressibilityParameters*)p = *(prodml23__CompressibilityParameters*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InterferingFlowTestInterval type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InterferingFlowTestInterval*)p = *(prodml22__InterferingFlowTestInterval*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeconvolutionOutput type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeconvolutionOutput*)p = *(prodml23__DeconvolutionOutput*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InternalFaultSubModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InternalFaultSubModel*)p = *(prodml22__InternalFaultSubModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistributedParametersSubModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistributedParametersSubModel*)p = *(prodml23__DistributedParametersSubModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LayerModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LayerModel*)p = *(prodml22__LayerModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InterferingFlowTestInterval type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InterferingFlowTestInterval*)p = *(prodml23__InterferingFlowTestInterval*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LayerToLayerConnection type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LayerToLayerConnection*)p = *(prodml22__LayerToLayerConnection*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InternalFaultSubModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InternalFaultSubModel*)p = *(prodml23__InternalFaultSubModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LocationIn2D type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LocationIn2D*)p = *(prodml22__LocationIn2D*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LayerModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LayerModel*)p = *(prodml23__LayerModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LogLogAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LogLogAnalysis*)p = *(prodml22__LogLogAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LayerToLayerConnection type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LayerToLayerConnection*)p = *(prodml23__LayerToLayerConnection*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReservoirZoneSubModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReservoirZoneSubModel*)p = *(prodml22__ReservoirZoneSubModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LocationIn2D type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LocationIn2D*)p = *(prodml23__LocationIn2D*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ResqmlModelRef type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ResqmlModelRef*)p = *(prodml22__ResqmlModelRef*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LogLogAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LogLogAnalysis*)p = *(prodml23__LogLogAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SingleBoundarySubModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SingleBoundarySubModel*)p = *(prodml22__SingleBoundarySubModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReservoirZoneSubModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReservoirZoneSubModel*)p = *(prodml23__ReservoirZoneSubModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SingleFractureSubModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SingleFractureSubModel*)p = *(prodml22__SingleFractureSubModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ResqmlModelRef type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ResqmlModelRef*)p = *(prodml23__ResqmlModelRef*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SpecializedAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SpecializedAnalysis*)p = *(prodml22__SpecializedAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SingleBoundarySubModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SingleBoundarySubModel*)p = *(prodml23__SingleBoundarySubModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractModelSection type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractModelSection*)p = *(prodml22__AbstractModelSection*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SingleFractureSubModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SingleFractureSubModel*)p = *(prodml23__SingleFractureSubModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractParameter*)p = *(prodml22__AbstractParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SpecializedAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SpecializedAnalysis*)p = *(prodml23__SpecializedAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleAcquisitionJobSource type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleAcquisitionJobSource*)p = *(prodml22__FluidSampleAcquisitionJobSource*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractModelSection type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractModelSection*)p = *(prodml23__AbstractModelSection*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleChainOfCustodyEvent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleChainOfCustodyEvent*)p = *(prodml22__FluidSampleChainOfCustodyEvent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractParameter*)p = *(prodml23__AbstractParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RecombinedSampleFraction type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RecombinedSampleFraction*)p = *(prodml22__RecombinedSampleFraction*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleAcquisitionJobSource type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleAcquisitionJobSource*)p = *(prodml23__FluidSampleAcquisitionJobSource*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SampleRecombinationSpecification type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SampleRecombinationSpecification*)p = *(prodml22__SampleRecombinationSpecification*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleChainOfCustodyEvent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleChainOfCustodyEvent*)p = *(prodml23__FluidSampleChainOfCustodyEvent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleAcquisition*)p = *(prodml22__FluidSampleAcquisition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RecombinedSampleFraction type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RecombinedSampleFraction*)p = *(prodml23__RecombinedSampleFraction*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CommonPropertiesProductVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CommonPropertiesProductVolume*)p = *(prodml22__CommonPropertiesProductVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SampleRecombinationSpecification type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SampleRecombinationSpecification*)p = *(prodml23__SampleRecombinationSpecification*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractMeasureData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractMeasureData*)p = *(prodml22__AbstractMeasureData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleAcquisition*)p = *(prodml23__FluidSampleAcquisition*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__union_AbstractRefProductFlow: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy union _prodml22__union_AbstractRefProductFlow type=%d location=%p object=%p\n", t, p, q)); - *(union _prodml22__union_AbstractRefProductFlow*)p = *(union _prodml22__union_AbstractRefProductFlow*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CommonPropertiesProductVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CommonPropertiesProductVolume*)p = *(prodml23__CommonPropertiesProductVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractRefProductFlow type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractRefProductFlow*)p = *(prodml22__AbstractRefProductFlow*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractMeasureData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractMeasureData*)p = *(prodml23__AbstractMeasureData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractRelatedFacilityObject type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractRelatedFacilityObject*)p = *(prodml22__AbstractRelatedFacilityObject*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__union_AbstractRefProductFlow: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy union _prodml23__union_AbstractRefProductFlow type=%d location=%p object=%p\n", t, p, q)); + *(union _prodml23__union_AbstractRefProductFlow*)p = *(union _prodml23__union_AbstractRefProductFlow*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CurveDefinition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CurveDefinition*)p = *(prodml22__CurveDefinition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractRefProductFlow type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractRefProductFlow*)p = *(prodml23__AbstractRefProductFlow*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OwnershipBusinessAcct type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OwnershipBusinessAcct*)p = *(prodml22__OwnershipBusinessAcct*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractRelatedFacilityObject type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractRelatedFacilityObject*)p = *(prodml23__AbstractRelatedFacilityObject*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeAlert type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeAlert*)p = *(prodml22__ProductVolumeAlert*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CurveDefinition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CurveDefinition*)p = *(prodml23__CurveDefinition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeBalanceDetail type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeBalanceDetail*)p = *(prodml22__ProductVolumeBalanceDetail*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OwnershipBusinessAcct type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OwnershipBusinessAcct*)p = *(prodml23__OwnershipBusinessAcct*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeBalanceEvent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeBalanceEvent*)p = *(prodml22__ProductVolumeBalanceEvent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeAlert type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeAlert*)p = *(prodml23__ProductVolumeAlert*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeBalanceSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeBalanceSet*)p = *(prodml22__ProductVolumeBalanceSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeBalanceDetail type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeBalanceDetail*)p = *(prodml23__ProductVolumeBalanceDetail*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeBusinessSubUnit type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeBusinessSubUnit*)p = *(prodml22__ProductVolumeBusinessSubUnit*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeBalanceEvent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeBalanceEvent*)p = *(prodml23__ProductVolumeBalanceEvent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeBusinessUnit type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeBusinessUnit*)p = *(prodml22__ProductVolumeBusinessUnit*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeBalanceSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeBalanceSet*)p = *(prodml23__ProductVolumeBalanceSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeComponentContent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeComponentContent*)p = *(prodml22__ProductVolumeComponentContent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeBusinessSubUnit type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeBusinessSubUnit*)p = *(prodml23__ProductVolumeBusinessSubUnit*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeDestination type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeDestination*)p = *(prodml22__ProductVolumeDestination*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeBusinessUnit type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeBusinessUnit*)p = *(prodml23__ProductVolumeBusinessUnit*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeFacility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeFacility*)p = *(prodml22__ProductVolumeFacility*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeComponentContent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeComponentContent*)p = *(prodml23__ProductVolumeComponentContent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeFlow type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeFlow*)p = *(prodml22__ProductVolumeFlow*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeDestination type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeDestination*)p = *(prodml23__ProductVolumeDestination*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeParameterSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeParameterSet*)p = *(prodml22__ProductVolumeParameterSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeFacility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeFacility*)p = *(prodml23__ProductVolumeFacility*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeParameterValue type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeParameterValue*)p = *(prodml22__ProductVolumeParameterValue*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeFlow type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeFlow*)p = *(prodml23__ProductVolumeFlow*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumePeriod type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumePeriod*)p = *(prodml22__ProductVolumePeriod*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeParameterSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeParameterSet*)p = *(prodml23__ProductVolumeParameterSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumePortDifference type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumePortDifference*)p = *(prodml22__ProductVolumePortDifference*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeParameterValue type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeParameterValue*)p = *(prodml23__ProductVolumeParameterValue*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeProduct type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeProduct*)p = *(prodml22__ProductVolumeProduct*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumePeriod type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumePeriod*)p = *(prodml23__ProductVolumePeriod*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolumeRelatedFacility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolumeRelatedFacility*)p = *(prodml22__ProductVolumeRelatedFacility*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumePortDifference type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumePortDifference*)p = *(prodml23__ProductVolumePortDifference*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ConnectedNode type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ConnectedNode*)p = *(prodml22__ConnectedNode*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeProduct type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeProduct*)p = *(prodml23__ProductVolumeProduct*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ExpectedFlowQualifier type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ExpectedFlowQualifier*)p = *(prodml22__ExpectedFlowQualifier*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolumeRelatedFacility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolumeRelatedFacility*)p = *(prodml23__ProductVolumeRelatedFacility*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowChangeLog type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowChangeLog*)p = *(prodml22__ProductFlowChangeLog*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ConnectedNode type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ConnectedNode*)p = *(prodml23__ConnectedNode*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowExpectedUnitProperty type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowExpectedUnitProperty*)p = *(prodml22__ProductFlowExpectedUnitProperty*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ExpectedFlowQualifier type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ExpectedFlowQualifier*)p = *(prodml23__ExpectedFlowQualifier*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowExternalPort type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowExternalPort*)p = *(prodml22__ProductFlowExternalPort*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowChangeLog type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowChangeLog*)p = *(prodml23__ProductFlowChangeLog*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowNetworkPlan type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowNetworkPlan*)p = *(prodml22__ProductFlowNetworkPlan*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowExpectedUnitProperty type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowExpectedUnitProperty*)p = *(prodml23__ProductFlowExpectedUnitProperty*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowPort type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowPort*)p = *(prodml22__ProductFlowPort*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowExternalPort type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowExternalPort*)p = *(prodml23__ProductFlowExternalPort*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowUnit type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowUnit*)p = *(prodml22__ProductFlowUnit*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowNetworkPlan type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowNetworkPlan*)p = *(prodml23__ProductFlowNetworkPlan*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RelativeCoordinate type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RelativeCoordinate*)p = *(prodml22__RelativeCoordinate*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowPort type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowPort*)p = *(prodml23__ProductFlowPort*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractValue type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractValue*)p = *(prodml22__AbstractValue*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowUnit type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowUnit*)p = *(prodml23__ProductFlowUnit*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesThreshold type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesThreshold*)p = *(prodml22__TimeSeriesThreshold*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RelativeCoordinate type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RelativeCoordinate*)p = *(prodml23__RelativeCoordinate*)q; + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractValue type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractValue*)p = *(prodml23__AbstractValue*)q; + break; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesThreshold type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesThreshold*)p = *(prodml23__TimeSeriesThreshold*)q; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGeometry: DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy resqml22__AbstractGeometry type=%d location=%p object=%p\n", t, p, q)); @@ -54248,561 +54263,561 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy eml23__GraphicalInformationSet type=%d location=%p object=%p\n", t, p, q)); *(eml23__GraphicalInformationSet*)p = *(eml23__GraphicalInformationSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCompositionalModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCompositionalModel*)p = *(prodml22__AbstractCompositionalModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCompositionalModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCompositionalModel*)p = *(prodml23__AbstractCompositionalModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCorrelationModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCorrelationModel*)p = *(prodml22__AbstractCorrelationModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCorrelationModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCorrelationModel*)p = *(prodml23__AbstractCorrelationModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterization type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterization*)p = *(prodml22__FluidCharacterization*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterization type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterization*)p = *(prodml23__FluidCharacterization*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FormationWater type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FormationWater*)p = *(prodml22__FormationWater*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FormationWater type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FormationWater*)p = *(prodml23__FormationWater*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__GeneralQualifiedMeasure type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__GeneralQualifiedMeasure*)p = *(prodml22__GeneralQualifiedMeasure*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__GeneralQualifiedMeasure type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__GeneralQualifiedMeasure*)p = *(prodml23__GeneralQualifiedMeasure*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__IntegerQualifiedCount type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__IntegerQualifiedCount*)p = *(prodml22__IntegerQualifiedCount*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__IntegerQualifiedCount type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__IntegerQualifiedCount*)p = *(prodml23__IntegerQualifiedCount*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__KindQualifiedString type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__KindQualifiedString*)p = *(prodml22__KindQualifiedString*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__KindQualifiedString type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__KindQualifiedString*)p = *(prodml23__KindQualifiedString*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NaturalGas type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NaturalGas*)p = *(prodml22__NaturalGas*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NaturalGas type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NaturalGas*)p = *(prodml23__NaturalGas*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PlusFluidComponent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PlusFluidComponent*)p = *(prodml22__PlusFluidComponent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PlusFluidComponent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PlusFluidComponent*)p = *(prodml23__PlusFluidComponent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFluid type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFluid*)p = *(prodml22__ProductFluid*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFluid type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFluid*)p = *(prodml23__ProductFluid*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PseudoFluidComponent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PseudoFluidComponent*)p = *(prodml22__PseudoFluidComponent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PseudoFluidComponent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PseudoFluidComponent*)p = *(prodml23__PseudoFluidComponent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PureFluidComponent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PureFluidComponent*)p = *(prodml22__PureFluidComponent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PureFluidComponent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PureFluidComponent*)p = *(prodml23__PureFluidComponent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ServiceFluid type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ServiceFluid*)p = *(prodml22__ServiceFluid*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ServiceFluid type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ServiceFluid*)p = *(prodml23__ServiceFluid*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__StartEndDate type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__StartEndDate*)p = *(prodml22__StartEndDate*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__StartEndDate type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__StartEndDate*)p = *(prodml23__StartEndDate*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__StartEndTime type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__StartEndTime*)p = *(prodml22__StartEndTime*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__StartEndTime type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__StartEndTime*)p = *(prodml23__StartEndTime*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__StockTankOil type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__StockTankOil*)p = *(prodml22__StockTankOil*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__StockTankOil type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__StockTankOil*)p = *(prodml23__StockTankOil*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SulfurFluidComponent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SulfurFluidComponent*)p = *(prodml22__SulfurFluidComponent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SulfurFluidComponent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SulfurFluidComponent*)p = *(prodml23__SulfurFluidComponent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CumulativeGasProducedRatioStd type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CumulativeGasProducedRatioStd*)p = *(prodml22__CumulativeGasProducedRatioStd*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CumulativeGasProducedRatioStd type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CumulativeGasProducedRatioStd*)p = *(prodml23__CumulativeGasProducedRatioStd*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CumulativeGasProducedVol type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CumulativeGasProducedVol*)p = *(prodml22__CumulativeGasProducedVol*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CumulativeGasProducedVol type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CumulativeGasProducedVol*)p = *(prodml23__CumulativeGasProducedVol*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidAnalysis*)p = *(prodml22__FluidAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidAnalysis*)p = *(prodml23__FluidAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LiquidDropoutFraction type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LiquidDropoutFraction*)p = *(prodml22__LiquidDropoutFraction*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LiquidDropoutFraction type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LiquidDropoutFraction*)p = *(prodml23__LiquidDropoutFraction*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LiquidVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LiquidVolume*)p = *(prodml22__LiquidVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LiquidVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LiquidVolume*)p = *(prodml23__LiquidVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OilShrinkageFactor type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OilShrinkageFactor*)p = *(prodml22__OilShrinkageFactor*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OilShrinkageFactor type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OilShrinkageFactor*)p = *(prodml23__OilShrinkageFactor*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OilVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OilVolume*)p = *(prodml22__OilVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OilVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OilVolume*)p = *(prodml23__OilVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSystem type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSystem*)p = *(prodml22__FluidSystem*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSystem type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSystem*)p = *(prodml23__FluidSystem*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractPtaFlowData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractPtaFlowData*)p = *(prodml22__AbstractPtaFlowData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractPtaFlowData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractPtaFlowData*)p = *(prodml23__AbstractPtaFlowData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Channel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Channel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Channel*)p = *(prodml22__Channel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Channel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Channel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Channel*)p = *(prodml23__Channel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChannelSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChannelSet*)p = *(prodml22__ChannelSet*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChannelSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChannelSet*)p = *(prodml23__ChannelSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlowTestActivity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlowTestActivity*)p = *(prodml22__FlowTestActivity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlowTestActivity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlowTestActivity*)p = *(prodml23__FlowTestActivity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OtherData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OtherData*)p = *(prodml22__OtherData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OtherData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OtherData*)p = *(prodml23__OtherData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Facility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Facility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Facility*)p = *(prodml22__Facility*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Facility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Facility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Facility*)p = *(prodml23__Facility*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReportingEntity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReportingEntity*)p = *(prodml22__ReportingEntity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReportingEntity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReportingEntity*)p = *(prodml23__ReportingEntity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReportingHierarchy type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReportingHierarchy*)p = *(prodml22__ReportingHierarchy*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReportingHierarchy type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReportingHierarchy*)p = *(prodml23__ReportingHierarchy*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractPtaPressureData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractPtaPressureData*)p = *(prodml22__AbstractPtaPressureData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractPtaPressureData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractPtaPressureData*)p = *(prodml23__AbstractPtaPressureData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChannelFlowrateData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChannelFlowrateData*)p = *(prodml22__ChannelFlowrateData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChannelFlowrateData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChannelFlowrateData*)p = *(prodml23__ChannelFlowrateData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeconvolutionMultipleOutput type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeconvolutionMultipleOutput*)p = *(prodml22__DeconvolutionMultipleOutput*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeconvolutionMultipleOutput type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeconvolutionMultipleOutput*)p = *(prodml23__DeconvolutionMultipleOutput*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeconvolutionSingleOutput type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeconvolutionSingleOutput*)p = *(prodml22__DeconvolutionSingleOutput*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeconvolutionSingleOutput type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeconvolutionSingleOutput*)p = *(prodml23__DeconvolutionSingleOutput*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PressureTransientAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PressureTransientAnalysis*)p = *(prodml22__PressureTransientAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PressureTransientAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PressureTransientAnalysis*)p = *(prodml23__PressureTransientAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PtaAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PtaAnalysis*)p = *(prodml22__PtaAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PtaAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PtaAnalysis*)p = *(prodml23__PtaAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PtaDataPreProcess type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PtaDataPreProcess*)p = *(prodml22__PtaDataPreProcess*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PtaDataPreProcess type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PtaDataPreProcess*)p = *(prodml23__PtaDataPreProcess*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PtaDeconvolution type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PtaDeconvolution*)p = *(prodml22__PtaDeconvolution*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PtaDeconvolution type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PtaDeconvolution*)p = *(prodml23__PtaDeconvolution*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RtaAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RtaAnalysis*)p = *(prodml22__RtaAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RtaAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RtaAnalysis*)p = *(prodml23__RtaAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SingleFlowrateData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SingleFlowrateData*)p = *(prodml22__SingleFlowrateData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SingleFlowrateData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SingleFlowrateData*)p = *(prodml23__SingleFlowrateData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TestPeriodsFlowrateData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TestPeriodsFlowrateData*)p = *(prodml22__TestPeriodsFlowrateData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TestPeriodsFlowrateData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TestPeriodsFlowrateData*)p = *(prodml23__TestPeriodsFlowrateData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__BoundaryBaseModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__BoundaryBaseModel*)p = *(prodml22__BoundaryBaseModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__BoundaryBaseModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__BoundaryBaseModel*)p = *(prodml23__BoundaryBaseModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NearWellboreBaseModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NearWellboreBaseModel*)p = *(prodml22__NearWellboreBaseModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NearWellboreBaseModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NearWellboreBaseModel*)p = *(prodml23__NearWellboreBaseModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReservoirBaseModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReservoirBaseModel*)p = *(prodml22__ReservoirBaseModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReservoirBaseModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReservoirBaseModel*)p = *(prodml23__ReservoirBaseModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellboreBaseModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellboreBaseModel*)p = *(prodml22__WellboreBaseModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellboreBaseModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellboreBaseModel*)p = *(prodml23__WellboreBaseModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AngleBetweenBoundaries type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AngleBetweenBoundaries*)p = *(prodml22__AngleBetweenBoundaries*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AngleBetweenBoundaries type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AngleBetweenBoundaries*)p = *(prodml23__AngleBetweenBoundaries*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AveragePressure type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AveragePressure*)p = *(prodml22__AveragePressure*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AveragePressure type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AveragePressure*)p = *(prodml23__AveragePressure*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ConvergenceSkinRelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ConvergenceSkinRelativeToTotalThickness*)p = *(prodml22__ConvergenceSkinRelativeToTotalThickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ConvergenceSkinRelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ConvergenceSkinRelativeToTotalThickness*)p = *(prodml23__ConvergenceSkinRelativeToTotalThickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomParameter*)p = *(prodml22__CustomParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomParameter*)p = *(prodml23__CustomParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeltaPressureTotalSkin type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeltaPressureTotalSkin*)p = *(prodml22__DeltaPressureTotalSkin*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeltaPressureTotalSkin type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeltaPressureTotalSkin*)p = *(prodml23__DeltaPressureTotalSkin*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeltaTimeStorageChanges type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeltaTimeStorageChanges*)p = *(prodml22__DeltaTimeStorageChanges*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeltaTimeStorageChanges type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeltaTimeStorageChanges*)p = *(prodml23__DeltaTimeStorageChanges*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceFractureToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceFractureToBottomBoundary*)p = *(prodml22__DistanceFractureToBottomBoundary*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceFractureToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceFractureToBottomBoundary*)p = *(prodml23__DistanceFractureToBottomBoundary*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceMidFractureHeightToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceMidFractureHeightToBottomBoundary*)p = *(prodml22__DistanceMidFractureHeightToBottomBoundary*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceMidFractureHeightToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceMidFractureHeightToBottomBoundary*)p = *(prodml23__DistanceMidFractureHeightToBottomBoundary*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceMidPerforationsToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceMidPerforationsToBottomBoundary*)p = *(prodml22__DistanceMidPerforationsToBottomBoundary*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceMidPerforationsToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceMidPerforationsToBottomBoundary*)p = *(prodml23__DistanceMidPerforationsToBottomBoundary*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceToBoundary1 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceToBoundary1*)p = *(prodml22__DistanceToBoundary1*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceToBoundary1 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceToBoundary1*)p = *(prodml23__DistanceToBoundary1*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceToBoundary2 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceToBoundary2*)p = *(prodml22__DistanceToBoundary2*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceToBoundary2 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceToBoundary2*)p = *(prodml23__DistanceToBoundary2*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceToBoundary3 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceToBoundary3*)p = *(prodml22__DistanceToBoundary3*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceToBoundary3 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceToBoundary3*)p = *(prodml23__DistanceToBoundary3*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceToBoundary4 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceToBoundary4*)p = *(prodml22__DistanceToBoundary4*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceToBoundary4 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceToBoundary4*)p = *(prodml23__DistanceToBoundary4*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceToMobilityInterface type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceToMobilityInterface*)p = *(prodml22__DistanceToMobilityInterface*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceToMobilityInterface type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceToMobilityInterface*)p = *(prodml23__DistanceToMobilityInterface*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceToPinchOut type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceToPinchOut*)p = *(prodml22__DistanceToPinchOut*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceToPinchOut type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceToPinchOut*)p = *(prodml23__DistanceToPinchOut*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DistanceWellboreToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DistanceWellboreToBottomBoundary*)p = *(prodml22__DistanceWellboreToBottomBoundary*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DistanceWellboreToBottomBoundary type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DistanceWellboreToBottomBoundary*)p = *(prodml23__DistanceWellboreToBottomBoundary*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DrainageAreaMeasured type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DrainageAreaMeasured*)p = *(prodml22__DrainageAreaMeasured*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DrainageAreaMeasured type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DrainageAreaMeasured*)p = *(prodml23__DrainageAreaMeasured*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FaultConductivity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FaultConductivity*)p = *(prodml22__FaultConductivity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FaultConductivity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FaultConductivity*)p = *(prodml23__FaultConductivity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidDensity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidDensity*)p = *(prodml22__FluidDensity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidDensity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidDensity*)p = *(prodml23__FluidDensity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureAngleToWellbore type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureAngleToWellbore*)p = *(prodml22__FractureAngleToWellbore*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureAngleToWellbore type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureAngleToWellbore*)p = *(prodml23__FractureAngleToWellbore*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureConductivity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureConductivity*)p = *(prodml22__FractureConductivity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureConductivity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureConductivity*)p = *(prodml23__FractureConductivity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureFaceSkin type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureFaceSkin*)p = *(prodml22__FractureFaceSkin*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureFaceSkin type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureFaceSkin*)p = *(prodml23__FractureFaceSkin*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureHalfLength type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureHalfLength*)p = *(prodml22__FractureHalfLength*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureHalfLength type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureHalfLength*)p = *(prodml23__FractureHalfLength*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureHeight type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureHeight*)p = *(prodml22__FractureHeight*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureHeight type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureHeight*)p = *(prodml23__FractureHeight*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureRadius type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureRadius*)p = *(prodml22__FractureRadius*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureRadius type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureRadius*)p = *(prodml23__FractureRadius*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FractureStorativityRatio type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FractureStorativityRatio*)p = *(prodml22__FractureStorativityRatio*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FractureStorativityRatio type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FractureStorativityRatio*)p = *(prodml23__FractureStorativityRatio*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HorizontalAnisotropyKxToKy type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HorizontalAnisotropyKxToKy*)p = *(prodml22__HorizontalAnisotropyKxToKy*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HorizontalAnisotropyKxToKy type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HorizontalAnisotropyKxToKy*)p = *(prodml23__HorizontalAnisotropyKxToKy*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HorizontalRadialPermeability type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HorizontalRadialPermeability*)p = *(prodml22__HorizontalRadialPermeability*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HorizontalRadialPermeability type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HorizontalRadialPermeability*)p = *(prodml23__HorizontalRadialPermeability*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InitialPressure type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InitialPressure*)p = *(prodml22__InitialPressure*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InitialPressure type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InitialPressure*)p = *(prodml23__InitialPressure*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InnerToOuterZoneDiffusivityRatio type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InnerToOuterZoneDiffusivityRatio*)p = *(prodml22__InnerToOuterZoneDiffusivityRatio*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InnerToOuterZoneDiffusivityRatio type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InnerToOuterZoneDiffusivityRatio*)p = *(prodml23__InnerToOuterZoneDiffusivityRatio*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InnerToOuterZoneMobilityRatio type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InnerToOuterZoneMobilityRatio*)p = *(prodml22__InnerToOuterZoneMobilityRatio*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InnerToOuterZoneMobilityRatio type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InnerToOuterZoneMobilityRatio*)p = *(prodml23__InnerToOuterZoneMobilityRatio*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InterporosityFlowParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InterporosityFlowParameter*)p = *(prodml22__InterporosityFlowParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InterporosityFlowParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InterporosityFlowParameter*)p = *(prodml23__InterporosityFlowParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Layer2Thickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Layer2Thickness*)p = *(prodml22__Layer2Thickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Layer2Thickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Layer2Thickness*)p = *(prodml23__Layer2Thickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LeakSkin type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LeakSkin*)p = *(prodml22__LeakSkin*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LeakSkin type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LeakSkin*)p = *(prodml23__LeakSkin*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LengthHorizontalWellboreFlowing type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LengthHorizontalWellboreFlowing*)p = *(prodml22__LengthHorizontalWellboreFlowing*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LengthHorizontalWellboreFlowing type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LengthHorizontalWellboreFlowing*)p = *(prodml23__LengthHorizontalWellboreFlowing*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MechanicalSkinRelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MechanicalSkinRelativeToTotalThickness*)p = *(prodml22__MechanicalSkinRelativeToTotalThickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MechanicalSkinRelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MechanicalSkinRelativeToTotalThickness*)p = *(prodml23__MechanicalSkinRelativeToTotalThickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ModelName type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ModelName*)p = *(prodml22__ModelName*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ModelName type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ModelName*)p = *(prodml23__ModelName*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NumberOfFractures type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NumberOfFractures*)p = *(prodml22__NumberOfFractures*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NumberOfFractures type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NumberOfFractures*)p = *(prodml23__NumberOfFractures*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OrientationOfAnisotropyXDirection type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OrientationOfAnisotropyXDirection*)p = *(prodml22__OrientationOfAnisotropyXDirection*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OrientationOfAnisotropyXDirection type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OrientationOfAnisotropyXDirection*)p = *(prodml23__OrientationOfAnisotropyXDirection*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OrientationOfFracturePlane type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OrientationOfFracturePlane*)p = *(prodml22__OrientationOfFracturePlane*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OrientationOfFracturePlane type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OrientationOfFracturePlane*)p = *(prodml23__OrientationOfFracturePlane*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OrientationOfLinearFront type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OrientationOfLinearFront*)p = *(prodml22__OrientationOfLinearFront*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OrientationOfLinearFront type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OrientationOfLinearFront*)p = *(prodml23__OrientationOfLinearFront*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OrientationOfNormalToBoundary1 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OrientationOfNormalToBoundary1*)p = *(prodml22__OrientationOfNormalToBoundary1*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OrientationOfNormalToBoundary1 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OrientationOfNormalToBoundary1*)p = *(prodml23__OrientationOfNormalToBoundary1*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OrientationWellTrajectory type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OrientationWellTrajectory*)p = *(prodml22__OrientationWellTrajectory*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OrientationWellTrajectory type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OrientationWellTrajectory*)p = *(prodml23__OrientationWellTrajectory*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PerforatedLength type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PerforatedLength*)p = *(prodml22__PerforatedLength*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PerforatedLength type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PerforatedLength*)p = *(prodml23__PerforatedLength*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PermeabilityThicknessProduct type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PermeabilityThicknessProduct*)p = *(prodml22__PermeabilityThicknessProduct*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PermeabilityThicknessProduct type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PermeabilityThicknessProduct*)p = *(prodml23__PermeabilityThicknessProduct*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PoreVolumeMeasured type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PoreVolumeMeasured*)p = *(prodml22__PoreVolumeMeasured*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PoreVolumeMeasured type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PoreVolumeMeasured*)p = *(prodml23__PoreVolumeMeasured*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PoreVolumeOfInvestigation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PoreVolumeOfInvestigation*)p = *(prodml22__PoreVolumeOfInvestigation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PoreVolumeOfInvestigation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PoreVolumeOfInvestigation*)p = *(prodml23__PoreVolumeOfInvestigation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Porosity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Porosity*)p = *(prodml22__Porosity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Porosity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Porosity*)p = *(prodml23__Porosity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PressureDatumTVD type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PressureDatumTVD*)p = *(prodml22__PressureDatumTVD*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PressureDatumTVD type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PressureDatumTVD*)p = *(prodml23__PressureDatumTVD*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RadiusOfInvestigation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RadiusOfInvestigation*)p = *(prodml22__RadiusOfInvestigation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RadiusOfInvestigation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RadiusOfInvestigation*)p = *(prodml23__RadiusOfInvestigation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RateDependentSkinFactor type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RateDependentSkinFactor*)p = *(prodml22__RateDependentSkinFactor*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RateDependentSkinFactor type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RateDependentSkinFactor*)p = *(prodml23__RateDependentSkinFactor*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RatioDpSkinToTotalDrawdown type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RatioDpSkinToTotalDrawdown*)p = *(prodml22__RatioDpSkinToTotalDrawdown*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RatioDpSkinToTotalDrawdown type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RatioDpSkinToTotalDrawdown*)p = *(prodml23__RatioDpSkinToTotalDrawdown*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RatioInitialToFinalWellboreStorage type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RatioInitialToFinalWellboreStorage*)p = *(prodml22__RatioInitialToFinalWellboreStorage*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RatioInitialToFinalWellboreStorage type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RatioInitialToFinalWellboreStorage*)p = *(prodml23__RatioInitialToFinalWellboreStorage*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct*)p = *(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct*)p = *(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Region2Thickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Region2Thickness*)p = *(prodml22__Region2Thickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Region2Thickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Region2Thickness*)p = *(prodml23__Region2Thickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SkinLayer2RelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SkinLayer2RelativeToTotalThickness*)p = *(prodml22__SkinLayer2RelativeToTotalThickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SkinLayer2RelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SkinLayer2RelativeToTotalThickness*)p = *(prodml23__SkinLayer2RelativeToTotalThickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SkinRelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SkinRelativeToTotalThickness*)p = *(prodml22__SkinRelativeToTotalThickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SkinRelativeToTotalThickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SkinRelativeToTotalThickness*)p = *(prodml23__SkinRelativeToTotalThickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__StorativityRatio type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__StorativityRatio*)p = *(prodml22__StorativityRatio*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__StorativityRatio type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__StorativityRatio*)p = *(prodml23__StorativityRatio*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TotalThickness type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TotalThickness*)p = *(prodml22__TotalThickness*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TotalThickness type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TotalThickness*)p = *(prodml23__TotalThickness*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TransmissibilityReductionFactorOfLinearFront type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TransmissibilityReductionFactorOfLinearFront*)p = *(prodml22__TransmissibilityReductionFactorOfLinearFront*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TransmissibilityReductionFactorOfLinearFront type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TransmissibilityReductionFactorOfLinearFront*)p = *(prodml23__TransmissibilityReductionFactorOfLinearFront*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TubingInteralDiameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TubingInteralDiameter*)p = *(prodml22__TubingInteralDiameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TubingInteralDiameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TubingInteralDiameter*)p = *(prodml23__TubingInteralDiameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__VerticalAnisotropyKvToKr type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__VerticalAnisotropyKvToKr*)p = *(prodml22__VerticalAnisotropyKvToKr*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__VerticalAnisotropyKvToKr type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__VerticalAnisotropyKvToKr*)p = *(prodml23__VerticalAnisotropyKvToKr*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellboreDeviationAngle type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellboreDeviationAngle*)p = *(prodml22__WellboreDeviationAngle*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellboreDeviationAngle type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellboreDeviationAngle*)p = *(prodml23__WellboreDeviationAngle*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellboreFluidCompressibility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellboreFluidCompressibility*)p = *(prodml22__WellboreFluidCompressibility*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellboreFluidCompressibility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellboreFluidCompressibility*)p = *(prodml23__WellboreFluidCompressibility*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellboreRadius type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellboreRadius*)p = *(prodml22__WellboreRadius*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellboreRadius type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellboreRadius*)p = *(prodml23__WellboreRadius*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellboreStorageCoefficient type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellboreStorageCoefficient*)p = *(prodml22__WellboreStorageCoefficient*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellboreStorageCoefficient type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellboreStorageCoefficient*)p = *(prodml23__WellboreStorageCoefficient*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellboreVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellboreVolume*)p = *(prodml22__WellboreVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellboreVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellboreVolume*)p = *(prodml23__WellboreVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSample type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSample*)p = *(prodml22__FluidSample*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSample type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSample*)p = *(prodml23__FluidSample*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleContainer type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleContainer*)p = *(prodml22__FluidSampleContainer*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleContainer type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleContainer*)p = *(prodml23__FluidSampleContainer*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DownholeSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DownholeSampleAcquisition*)p = *(prodml22__DownholeSampleAcquisition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DownholeSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DownholeSampleAcquisition*)p = *(prodml23__DownholeSampleAcquisition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FacilitySampleAcquisition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FacilitySampleAcquisition*)p = *(prodml22__FacilitySampleAcquisition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FacilitySampleAcquisition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FacilitySampleAcquisition*)p = *(prodml23__FacilitySampleAcquisition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleAcquisitionJob type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleAcquisitionJob*)p = *(prodml22__FluidSampleAcquisitionJob*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleAcquisitionJob type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleAcquisitionJob*)p = *(prodml23__FluidSampleAcquisitionJob*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FormationTesterSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FormationTesterSampleAcquisition*)p = *(prodml22__FormationTesterSampleAcquisition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FormationTesterSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FormationTesterSampleAcquisition*)p = *(prodml23__FormationTesterSampleAcquisition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SeparatorSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SeparatorSampleAcquisition*)p = *(prodml22__SeparatorSampleAcquisition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SeparatorSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SeparatorSampleAcquisition*)p = *(prodml23__SeparatorSampleAcquisition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WellheadSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WellheadSampleAcquisition*)p = *(prodml22__WellheadSampleAcquisition*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WellheadSampleAcquisition type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WellheadSampleAcquisition*)p = *(prodml23__WellheadSampleAcquisition*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlowTestJob type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlowTestJob*)p = *(prodml22__FlowTestJob*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlowTestJob type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlowTestJob*)p = *(prodml23__FlowTestJob*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CurveData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CurveData*)p = *(prodml22__CurveData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CurveData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CurveData*)p = *(prodml23__CurveData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FacilityParent type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FacilityParent*)p = *(prodml22__FacilityParent*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FacilityParent type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FacilityParent*)p = *(prodml23__FacilityParent*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FacilityUnitPort type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FacilityUnitPort*)p = *(prodml22__FacilityUnitPort*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FacilityUnitPort type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FacilityUnitPort*)p = *(prodml23__FacilityUnitPort*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__IntegerData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__IntegerData*)p = *(prodml22__IntegerData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__IntegerData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__IntegerData*)p = *(prodml23__IntegerData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Parentfacility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Parentfacility*)p = *(prodml22__Parentfacility*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Parentfacility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Parentfacility*)p = *(prodml23__Parentfacility*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolume*)p = *(prodml22__ProductVolume*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolume*)p = *(prodml23__ProductVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReferenceFlow type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReferenceFlow*)p = *(prodml22__ReferenceFlow*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReferenceFlow type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReferenceFlow*)p = *(prodml23__ReferenceFlow*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__StringData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__StringData*)p = *(prodml22__StringData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__StringData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__StringData*)p = *(prodml23__StringData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowModel*)p = *(prodml22__ProductFlowModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowModel*)p = *(prodml23__ProductFlowModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowQualifierExpected type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowQualifierExpected*)p = *(prodml22__ProductFlowQualifierExpected*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowQualifierExpected type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowQualifierExpected*)p = *(prodml23__ProductFlowQualifierExpected*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Qualifier type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Qualifier*)p = *(prodml22__Qualifier*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Qualifier type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Qualifier*)p = *(prodml23__Qualifier*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DoubleValue type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DoubleValue*)p = *(prodml22__DoubleValue*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DoubleValue type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DoubleValue*)p = *(prodml23__DoubleValue*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__StringValue type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__StringValue*)p = *(prodml22__StringValue*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__StringValue type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__StringValue*)p = *(prodml23__StringValue*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesData*)p = *(prodml22__TimeSeriesData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesData*)p = *(prodml23__TimeSeriesData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesStatistic type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesStatistic*)p = *(prodml22__TimeSeriesStatistic*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesStatistic type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesStatistic*)p = *(prodml23__TimeSeriesStatistic*)q; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractFeature: DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy resqml22__AbstractFeature type=%d location=%p object=%p\n", t, p, q)); @@ -56716,313 +56731,313 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy eml23__ReferencePressure type=%d location=%p object=%p\n", t, p, q)); *(eml23__ReferencePressure*)p = *(eml23__ReferencePressure*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterizationTableRow type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterizationTableRow*)p = *(prodml22__FluidCharacterizationTableRow*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterizationTableRow type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterizationTableRow*)p = *(prodml23__FluidCharacterizationTableRow*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCompositionalEoSModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCompositionalEoSModel*)p = *(prodml22__AbstractCompositionalEoSModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCompositionalEoSModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCompositionalEoSModel*)p = *(prodml23__AbstractCompositionalEoSModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCompositionalViscosityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCompositionalViscosityModel*)p = *(prodml22__AbstractCompositionalViscosityModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCompositionalViscosityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCompositionalViscosityModel*)p = *(prodml23__AbstractCompositionalViscosityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCorrelationViscosityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCorrelationViscosityModel*)p = *(prodml22__AbstractCorrelationViscosityModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCorrelationViscosityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCorrelationViscosityModel*)p = *(prodml23__AbstractCorrelationViscosityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__BinaryInteractionCoefficient type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__BinaryInteractionCoefficient*)p = *(prodml22__BinaryInteractionCoefficient*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__BinaryInteractionCoefficient type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__BinaryInteractionCoefficient*)p = *(prodml23__BinaryInteractionCoefficient*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CompositionalThermalModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CompositionalThermalModel*)p = *(prodml22__CompositionalThermalModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CompositionalThermalModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CompositionalThermalModel*)p = *(prodml23__CompositionalThermalModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CorrelationThermalModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CorrelationThermalModel*)p = *(prodml22__CorrelationThermalModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CorrelationThermalModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CorrelationThermalModel*)p = *(prodml23__CorrelationThermalModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PvtModelParameter type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PvtModelParameter*)p = *(prodml22__PvtModelParameter*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PvtModelParameter type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PvtModelParameter*)p = *(prodml23__PvtModelParameter*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MeasuredDepthCoord type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MeasuredDepthCoord*)p = *(prodml22__MeasuredDepthCoord*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MeasuredDepthCoord type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MeasuredDepthCoord*)p = *(prodml23__MeasuredDepthCoord*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HydrocarbonAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HydrocarbonAnalysis*)p = *(prodml22__HydrocarbonAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HydrocarbonAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HydrocarbonAnalysis*)p = *(prodml23__HydrocarbonAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NonHydrocarbonAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NonHydrocarbonAnalysis*)p = *(prodml22__NonHydrocarbonAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NonHydrocarbonAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NonHydrocarbonAnalysis*)p = *(prodml23__NonHydrocarbonAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WaterAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WaterAnalysis*)p = *(prodml22__WaterAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WaterAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WaterAnalysis*)p = *(prodml23__WaterAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DrillStemTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DrillStemTest*)p = *(prodml22__DrillStemTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DrillStemTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DrillStemTest*)p = *(prodml23__DrillStemTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FormationTesterStation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FormationTesterStation*)p = *(prodml22__FormationTesterStation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FormationTesterStation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FormationTesterStation*)p = *(prodml23__FormationTesterStation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InjectionFlowTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InjectionFlowTest*)p = *(prodml22__InjectionFlowTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InjectionFlowTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InjectionFlowTest*)p = *(prodml23__InjectionFlowTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InterwellTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InterwellTest*)p = *(prodml22__InterwellTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InterwellTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InterwellTest*)p = *(prodml23__InterwellTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductionFlowTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductionFlowTest*)p = *(prodml22__ProductionFlowTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductionFlowTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductionFlowTest*)p = *(prodml23__ProductionFlowTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductionTransientTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductionTransientTest*)p = *(prodml22__ProductionTransientTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductionTransientTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductionTransientTest*)p = *(prodml23__ProductionTransientTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__VerticalInterferenceTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__VerticalInterferenceTest*)p = *(prodml22__VerticalInterferenceTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__VerticalInterferenceTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__VerticalInterferenceTest*)p = *(prodml23__VerticalInterferenceTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WaterLevelTest type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WaterLevelTest*)p = *(prodml22__WaterLevelTest*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WaterLevelTest type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WaterLevelTest*)p = *(prodml23__WaterLevelTest*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeconvolvedFlowData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeconvolvedFlowData*)p = *(prodml22__DeconvolvedFlowData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeconvolvedFlowData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeconvolvedFlowData*)p = *(prodml23__DeconvolvedFlowData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeconvolvedPressureData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeconvolvedPressureData*)p = *(prodml22__DeconvolvedPressureData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeconvolvedPressureData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeconvolvedPressureData*)p = *(prodml23__DeconvolvedPressureData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MeasuredFlowData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MeasuredFlowData*)p = *(prodml22__MeasuredFlowData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MeasuredFlowData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MeasuredFlowData*)p = *(prodml23__MeasuredFlowData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__MeasuredPressureData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__MeasuredPressureData*)p = *(prodml22__MeasuredPressureData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__MeasuredPressureData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__MeasuredPressureData*)p = *(prodml23__MeasuredPressureData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OutputFlowData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OutputFlowData*)p = *(prodml22__OutputFlowData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OutputFlowData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OutputFlowData*)p = *(prodml23__OutputFlowData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OutputPressureData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OutputPressureData*)p = *(prodml22__OutputPressureData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__OutputPressureData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__OutputPressureData*)p = *(prodml23__OutputPressureData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PreProcessedFlowData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PreProcessedFlowData*)p = *(prodml22__PreProcessedFlowData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PreProcessedFlowData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PreProcessedFlowData*)p = *(prodml23__PreProcessedFlowData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PreProcessedPressureData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PreProcessedPressureData*)p = *(prodml22__PreProcessedPressureData*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PreProcessedPressureData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PreProcessedPressureData*)p = *(prodml23__PreProcessedPressureData*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChangingStorageFairModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChangingStorageFairModel*)p = *(prodml22__ChangingStorageFairModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChangingStorageFairModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChangingStorageFairModel*)p = *(prodml23__ChangingStorageFairModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChangingStorageHegemanModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChangingStorageHegemanModel*)p = *(prodml22__ChangingStorageHegemanModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChangingStorageHegemanModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChangingStorageHegemanModel*)p = *(prodml23__ChangingStorageHegemanModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChangingStorageSpiveyFissuresModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChangingStorageSpiveyFissuresModel*)p = *(prodml22__ChangingStorageSpiveyFissuresModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChangingStorageSpiveyFissuresModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChangingStorageSpiveyFissuresModel*)p = *(prodml23__ChangingStorageSpiveyFissuresModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChangingStorageSpiveyPackerModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChangingStorageSpiveyPackerModel*)p = *(prodml22__ChangingStorageSpiveyPackerModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChangingStorageSpiveyPackerModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChangingStorageSpiveyPackerModel*)p = *(prodml23__ChangingStorageSpiveyPackerModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ClosedCircleModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ClosedCircleModel*)p = *(prodml22__ClosedCircleModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ClosedCircleModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ClosedCircleModel*)p = *(prodml23__ClosedCircleModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ClosedRectangleModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ClosedRectangleModel*)p = *(prodml22__ClosedRectangleModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ClosedRectangleModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ClosedRectangleModel*)p = *(prodml23__ClosedRectangleModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ConstantStorageModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ConstantStorageModel*)p = *(prodml22__ConstantStorageModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ConstantStorageModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ConstantStorageModel*)p = *(prodml23__ConstantStorageModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomBoundaryModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomBoundaryModel*)p = *(prodml22__CustomBoundaryModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomBoundaryModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomBoundaryModel*)p = *(prodml23__CustomBoundaryModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomNearWellboreModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomNearWellboreModel*)p = *(prodml22__CustomNearWellboreModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomNearWellboreModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomNearWellboreModel*)p = *(prodml23__CustomNearWellboreModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomReservoirModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomReservoirModel*)p = *(prodml22__CustomReservoirModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomReservoirModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomReservoirModel*)p = *(prodml23__CustomReservoirModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CustomWellboreModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CustomWellboreModel*)p = *(prodml22__CustomWellboreModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CustomWellboreModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CustomWellboreModel*)p = *(prodml23__CustomWellboreModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DualPermeabilityWithCrossflowModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DualPermeabilityWithCrossflowModel*)p = *(prodml22__DualPermeabilityWithCrossflowModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DualPermeabilityWithCrossflowModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DualPermeabilityWithCrossflowModel*)p = *(prodml23__DualPermeabilityWithCrossflowModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DualPorosityPseudoSteadyStateModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DualPorosityPseudoSteadyStateModel*)p = *(prodml22__DualPorosityPseudoSteadyStateModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DualPorosityPseudoSteadyStateModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DualPorosityPseudoSteadyStateModel*)p = *(prodml23__DualPorosityPseudoSteadyStateModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DualPorosityTransientSlabsModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DualPorosityTransientSlabsModel*)p = *(prodml22__DualPorosityTransientSlabsModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DualPorosityTransientSlabsModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DualPorosityTransientSlabsModel*)p = *(prodml23__DualPorosityTransientSlabsModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DualPorosityTransientSpheresModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DualPorosityTransientSpheresModel*)p = *(prodml22__DualPorosityTransientSpheresModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DualPorosityTransientSpheresModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DualPorosityTransientSpheresModel*)p = *(prodml23__DualPorosityTransientSpheresModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FiniteRadiusModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FiniteRadiusModel*)p = *(prodml22__FiniteRadiusModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FiniteRadiusModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FiniteRadiusModel*)p = *(prodml23__FiniteRadiusModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FracturedFiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FracturedFiniteConductivityModel*)p = *(prodml22__FracturedFiniteConductivityModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FracturedFiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FracturedFiniteConductivityModel*)p = *(prodml23__FracturedFiniteConductivityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FracturedHorizontalFiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FracturedHorizontalFiniteConductivityModel*)p = *(prodml22__FracturedHorizontalFiniteConductivityModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FracturedHorizontalFiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FracturedHorizontalFiniteConductivityModel*)p = *(prodml23__FracturedHorizontalFiniteConductivityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FracturedHorizontalInfiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FracturedHorizontalInfiniteConductivityModel*)p = *(prodml22__FracturedHorizontalInfiniteConductivityModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FracturedHorizontalInfiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FracturedHorizontalInfiniteConductivityModel*)p = *(prodml23__FracturedHorizontalInfiniteConductivityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FracturedHorizontalUniformFluxModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FracturedHorizontalUniformFluxModel*)p = *(prodml22__FracturedHorizontalUniformFluxModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FracturedHorizontalUniformFluxModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FracturedHorizontalUniformFluxModel*)p = *(prodml23__FracturedHorizontalUniformFluxModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FracturedInfiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FracturedInfiniteConductivityModel*)p = *(prodml22__FracturedInfiniteConductivityModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FracturedInfiniteConductivityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FracturedInfiniteConductivityModel*)p = *(prodml23__FracturedInfiniteConductivityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FracturedUniformFluxModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FracturedUniformFluxModel*)p = *(prodml22__FracturedUniformFluxModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FracturedUniformFluxModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FracturedUniformFluxModel*)p = *(prodml23__FracturedUniformFluxModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HomogeneousModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HomogeneousModel*)p = *(prodml22__HomogeneousModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HomogeneousModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HomogeneousModel*)p = *(prodml23__HomogeneousModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HorizontalWellbore2LayerModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HorizontalWellbore2LayerModel*)p = *(prodml22__HorizontalWellbore2LayerModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HorizontalWellbore2LayerModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HorizontalWellbore2LayerModel*)p = *(prodml23__HorizontalWellbore2LayerModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HorizontalWellboreModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HorizontalWellboreModel*)p = *(prodml22__HorizontalWellboreModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HorizontalWellboreModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HorizontalWellboreModel*)p = *(prodml23__HorizontalWellboreModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HorizontalWellboreMultipleEqualFracturedModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HorizontalWellboreMultipleEqualFracturedModel*)p = *(prodml22__HorizontalWellboreMultipleEqualFracturedModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HorizontalWellboreMultipleEqualFracturedModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HorizontalWellboreMultipleEqualFracturedModel*)p = *(prodml23__HorizontalWellboreMultipleEqualFracturedModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HorizontalWellboreMultipleVariableFracturedModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HorizontalWellboreMultipleVariableFracturedModel*)p = *(prodml22__HorizontalWellboreMultipleVariableFracturedModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HorizontalWellboreMultipleVariableFracturedModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HorizontalWellboreMultipleVariableFracturedModel*)p = *(prodml23__HorizontalWellboreMultipleVariableFracturedModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__InfiniteBoundaryModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__InfiniteBoundaryModel*)p = *(prodml22__InfiniteBoundaryModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__InfiniteBoundaryModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__InfiniteBoundaryModel*)p = *(prodml23__InfiniteBoundaryModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LinearCompositeModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LinearCompositeModel*)p = *(prodml22__LinearCompositeModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LinearCompositeModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LinearCompositeModel*)p = *(prodml23__LinearCompositeModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel*)p = *(prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel*)p = *(prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LinearCompositeWithConductiveFaultModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LinearCompositeWithConductiveFaultModel*)p = *(prodml22__LinearCompositeWithConductiveFaultModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LinearCompositeWithConductiveFaultModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LinearCompositeWithConductiveFaultModel*)p = *(prodml23__LinearCompositeWithConductiveFaultModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LinearCompositeWithLeakyFaultModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LinearCompositeWithLeakyFaultModel*)p = *(prodml22__LinearCompositeWithLeakyFaultModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LinearCompositeWithLeakyFaultModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LinearCompositeWithLeakyFaultModel*)p = *(prodml23__LinearCompositeWithLeakyFaultModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NumericalBoundaryModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NumericalBoundaryModel*)p = *(prodml22__NumericalBoundaryModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NumericalBoundaryModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NumericalBoundaryModel*)p = *(prodml23__NumericalBoundaryModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NumericalDualPorosityReservoirModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NumericalDualPorosityReservoirModel*)p = *(prodml22__NumericalDualPorosityReservoirModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NumericalDualPorosityReservoirModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NumericalDualPorosityReservoirModel*)p = *(prodml23__NumericalDualPorosityReservoirModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__NumericalHomogeneousReservoirModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__NumericalHomogeneousReservoirModel*)p = *(prodml22__NumericalHomogeneousReservoirModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__NumericalHomogeneousReservoirModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__NumericalHomogeneousReservoirModel*)p = *(prodml23__NumericalHomogeneousReservoirModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PartiallyPenetratingModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PartiallyPenetratingModel*)p = *(prodml22__PartiallyPenetratingModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PartiallyPenetratingModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PartiallyPenetratingModel*)p = *(prodml23__PartiallyPenetratingModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PinchOutModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PinchOutModel*)p = *(prodml22__PinchOutModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PinchOutModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PinchOutModel*)p = *(prodml23__PinchOutModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RadialCompositeModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RadialCompositeModel*)p = *(prodml22__RadialCompositeModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__RadialCompositeModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__RadialCompositeModel*)p = *(prodml23__RadialCompositeModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SingleFaultModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SingleFaultModel*)p = *(prodml22__SingleFaultModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SingleFaultModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SingleFaultModel*)p = *(prodml23__SingleFaultModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SlantedFullyPenetratingModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SlantedFullyPenetratingModel*)p = *(prodml22__SlantedFullyPenetratingModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SlantedFullyPenetratingModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SlantedFullyPenetratingModel*)p = *(prodml23__SlantedFullyPenetratingModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SlantedPartiallyPenetratingModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SlantedPartiallyPenetratingModel*)p = *(prodml22__SlantedPartiallyPenetratingModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__SlantedPartiallyPenetratingModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__SlantedPartiallyPenetratingModel*)p = *(prodml23__SlantedPartiallyPenetratingModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TwoIntersectingFaultsModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TwoIntersectingFaultsModel*)p = *(prodml22__TwoIntersectingFaultsModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TwoIntersectingFaultsModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TwoIntersectingFaultsModel*)p = *(prodml23__TwoIntersectingFaultsModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TwoParallelFaultsModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TwoParallelFaultsModel*)p = *(prodml22__TwoParallelFaultsModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TwoParallelFaultsModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TwoParallelFaultsModel*)p = *(prodml23__TwoParallelFaultsModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__UShapedFaultsModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__UShapedFaultsModel*)p = *(prodml22__UShapedFaultsModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__UShapedFaultsModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__UShapedFaultsModel*)p = *(prodml23__UShapedFaultsModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesDoubleSample type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesDoubleSample*)p = *(prodml22__TimeSeriesDoubleSample*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesDoubleSample type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesDoubleSample*)p = *(prodml23__TimeSeriesDoubleSample*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesStringSample type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesStringSample*)p = *(prodml22__TimeSeriesStringSample*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesStringSample type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesStringSample*)p = *(prodml23__TimeSeriesStringSample*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__EndpointDateTime type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__EndpointDateTime*)p = *(prodml22__EndpointDateTime*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__EndpointDateTime type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__EndpointDateTime*)p = *(prodml23__EndpointDateTime*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__EndpointQuantity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__EndpointQuantity*)p = *(prodml22__EndpointQuantity*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__EndpointQuantity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__EndpointQuantity*)p = *(prodml23__EndpointQuantity*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__KeywordValueStruct type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__KeywordValueStruct*)p = *(prodml22__KeywordValueStruct*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__KeywordValueStruct type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__KeywordValueStruct*)p = *(prodml23__KeywordValueStruct*)q; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractTechnicalFeature: DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy resqml22__AbstractTechnicalFeature type=%d location=%p object=%p\n", t, p, q)); @@ -57260,69 +57275,49 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy eml23__NameStruct type=%d location=%p object=%p\n", t, p, q)); *(eml23__NameStruct*)p = *(eml23__NameStruct*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCorrelationViscosityDeadModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCorrelationViscosityDeadModel*)p = *(prodml22__AbstractCorrelationViscosityDeadModel*)q; - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCorrelationGasViscosityModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCorrelationGasViscosityModel*)p = *(prodml22__AbstractCorrelationGasViscosityModel*)q; - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCorrelationViscosityBubblePointModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCorrelationViscosityBubblePointModel*)p = *(prodml22__AbstractCorrelationViscosityBubblePointModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCorrelationViscosityDeadModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCorrelationViscosityDeadModel*)p = *(prodml23__AbstractCorrelationViscosityDeadModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__AbstractCorrelationViscosityUndersaturatedModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__AbstractCorrelationViscosityUndersaturatedModel*)p = *(prodml22__AbstractCorrelationViscosityUndersaturatedModel*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCorrelationGasViscosityModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCorrelationGasViscosityModel*)p = *(prodml23__AbstractCorrelationGasViscosityModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CSPedersen84 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CSPedersen84*)p = *(prodml22__CSPedersen84*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCorrelationViscosityBubblePointModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCorrelationViscosityBubblePointModel*)p = *(prodml23__AbstractCorrelationViscosityBubblePointModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CSPedersen87 type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CSPedersen87*)p = *(prodml22__CSPedersen87*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__AbstractCorrelationViscosityUndersaturatedModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__AbstractCorrelationViscosityUndersaturatedModel*)p = *(prodml23__AbstractCorrelationViscosityUndersaturatedModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FrictionTheory type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FrictionTheory*)p = *(prodml22__FrictionTheory*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CSPedersen84 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CSPedersen84*)p = *(prodml23__CSPedersen84*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Lohrenz_Bray_ClarkCorrelation type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Lohrenz_Bray_ClarkCorrelation*)p = *(prodml22__Lohrenz_Bray_ClarkCorrelation*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CSPedersen87 type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CSPedersen87*)p = *(prodml23__CSPedersen87*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PengRobinson76_USCOREEOS type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PengRobinson76_USCOREEOS*)p = *(prodml22__PengRobinson76_USCOREEOS*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FrictionTheory type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FrictionTheory*)p = *(prodml23__FrictionTheory*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PengRobinson78_USCOREEOS type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PengRobinson78_USCOREEOS*)p = *(prodml22__PengRobinson78_USCOREEOS*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Lohrenz_Bray_ClarkCorrelation type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Lohrenz_Bray_ClarkCorrelation*)p = *(prodml23__Lohrenz_Bray_ClarkCorrelation*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Srk_USCOREEOS type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Srk_USCOREEOS*)p = *(prodml22__Srk_USCOREEOS*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PengRobinson76_USCOREEOS type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PengRobinson76_USCOREEOS*)p = *(prodml23__PengRobinson76_USCOREEOS*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__OilCompressibility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__OilCompressibility*)p = *(prodml22__OilCompressibility*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PengRobinson78_USCOREEOS type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PengRobinson78_USCOREEOS*)p = *(prodml23__PengRobinson78_USCOREEOS*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RefInjectedGasAdded type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RefInjectedGasAdded*)p = *(prodml22__RefInjectedGasAdded*)q; - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__RelativeVolumeRatio type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__RelativeVolumeRatio*)p = *(prodml22__RelativeVolumeRatio*)q; - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SaturationPressure type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SaturationPressure*)p = *(prodml22__SaturationPressure*)q; - break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__SaturationTemperature type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__SaturationTemperature*)p = *(prodml22__SaturationTemperature*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Srk_USCOREEOS type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Srk_USCOREEOS*)p = *(prodml23__Srk_USCOREEOS*)q; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeature: DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy resqml22__CulturalFeature type=%d location=%p object=%p\n", t, p, q)); @@ -57484,81 +57479,81 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy witsml21__WellboreGeometry type=%d location=%p object=%p\n", t, p, q)); *(witsml21__WellboreGeometry*)p = *(witsml21__WellboreGeometry*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__BerganAndSutton_Undersaturated type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__BerganAndSutton_Undersaturated*)p = *(prodml22__BerganAndSutton_Undersaturated*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__BerganAndSutton_Undersaturated type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__BerganAndSutton_Undersaturated*)p = *(prodml23__BerganAndSutton_Undersaturated*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__BerganSutton_Dead type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__BerganSutton_Dead*)p = *(prodml22__BerganSutton_Dead*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__BerganSutton_Dead type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__BerganSutton_Dead*)p = *(prodml23__BerganSutton_Dead*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__BergmanSutton_BubblePoint type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__BergmanSutton_BubblePoint*)p = *(prodml22__BergmanSutton_BubblePoint*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__BergmanSutton_BubblePoint type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__BergmanSutton_BubblePoint*)p = *(prodml23__BergmanSutton_BubblePoint*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__CarrDempsey type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__CarrDempsey*)p = *(prodml22__CarrDempsey*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__CarrDempsey type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__CarrDempsey*)p = *(prodml23__CarrDempsey*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeGhetto_BubblePoint type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeGhetto_BubblePoint*)p = *(prodml22__DeGhetto_BubblePoint*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeGhetto_BubblePoint type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeGhetto_BubblePoint*)p = *(prodml23__DeGhetto_BubblePoint*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeGhetto_Dead type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeGhetto_Dead*)p = *(prodml22__DeGhetto_Dead*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeGhetto_Dead type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeGhetto_Dead*)p = *(prodml23__DeGhetto_Dead*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DeGhetto_Undersaturated type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DeGhetto_Undersaturated*)p = *(prodml22__DeGhetto_Undersaturated*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DeGhetto_Undersaturated type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DeGhetto_Undersaturated*)p = *(prodml23__DeGhetto_Undersaturated*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DindorukChristman_BubblePoint type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DindorukChristman_BubblePoint*)p = *(prodml22__DindorukChristman_BubblePoint*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DindorukChristman_BubblePoint type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DindorukChristman_BubblePoint*)p = *(prodml23__DindorukChristman_BubblePoint*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DindorukChristman_Dead type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DindorukChristman_Dead*)p = *(prodml22__DindorukChristman_Dead*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DindorukChristman_Dead type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DindorukChristman_Dead*)p = *(prodml23__DindorukChristman_Dead*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__DindorukChristman_Undersaturated type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__DindorukChristman_Undersaturated*)p = *(prodml22__DindorukChristman_Undersaturated*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__DindorukChristman_Undersaturated type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__DindorukChristman_Undersaturated*)p = *(prodml23__DindorukChristman_Undersaturated*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LeeGonzalez type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LeeGonzalez*)p = *(prodml22__LeeGonzalez*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LeeGonzalez type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LeeGonzalez*)p = *(prodml23__LeeGonzalez*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__LondonoArcherBlasinggame type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__LondonoArcherBlasinggame*)p = *(prodml22__LondonoArcherBlasinggame*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__LondonoArcherBlasinggame type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__LondonoArcherBlasinggame*)p = *(prodml23__LondonoArcherBlasinggame*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Lucas type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Lucas*)p = *(prodml22__Lucas*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Lucas type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Lucas*)p = *(prodml23__Lucas*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PetroskyFarshad_BubblePoint type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PetroskyFarshad_BubblePoint*)p = *(prodml22__PetroskyFarshad_BubblePoint*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PetroskyFarshad_BubblePoint type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PetroskyFarshad_BubblePoint*)p = *(prodml23__PetroskyFarshad_BubblePoint*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PetroskyFarshad_Dead type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PetroskyFarshad_Dead*)p = *(prodml22__PetroskyFarshad_Dead*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PetroskyFarshad_Dead type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PetroskyFarshad_Dead*)p = *(prodml23__PetroskyFarshad_Dead*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PetroskyFarshad_Undersaturated type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PetroskyFarshad_Undersaturated*)p = *(prodml22__PetroskyFarshad_Undersaturated*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PetroskyFarshad_Undersaturated type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PetroskyFarshad_Undersaturated*)p = *(prodml23__PetroskyFarshad_Undersaturated*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Standing_BubblePoint type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Standing_BubblePoint*)p = *(prodml22__Standing_BubblePoint*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Standing_BubblePoint type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Standing_BubblePoint*)p = *(prodml23__Standing_BubblePoint*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Standing_Dead type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Standing_Dead*)p = *(prodml22__Standing_Dead*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Standing_Dead type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Standing_Dead*)p = *(prodml23__Standing_Dead*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Standing_Undersaturated type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Standing_Undersaturated*)p = *(prodml22__Standing_Undersaturated*)q; + case SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Standing_Undersaturated type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Standing_Undersaturated*)p = *(prodml23__Standing_Undersaturated*)q; break; case SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSeismicLineFeature: DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy resqml22__AbstractSeismicLineFeature type=%d location=%p object=%p\n", t, p, q)); @@ -58602,71 +58597,71 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt 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_gsoap_eml2_3_prodml22__OutputFluidPropertyExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt: 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_gsoap_eml2_3_prodml22__PvtModelParameterKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt: 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_gsoap_eml2_3_prodml22__FacilityKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt: 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_gsoap_eml2_3_prodml22__PlusComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt: 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_gsoap_eml2_3_prodml22__ProductFluidKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt: 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_gsoap_eml2_3_prodml22__PseudoComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt: 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_gsoap_eml2_3_prodml22__PureComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt: 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_gsoap_eml2_3_prodml22__ReportingDurationKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt: 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_gsoap_eml2_3_prodml22__ReportingFacilityExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt: 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_gsoap_eml2_3_prodml22__ServiceFluidKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt: 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_gsoap_eml2_3_prodml22__SulfurComponentKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt: 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_gsoap_eml2_3_prodml22__AnionKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt: 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_gsoap_eml2_3_prodml22__CationKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt: 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_gsoap_eml2_3_prodml22__OrganicAcidKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt: 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_gsoap_eml2_3_prodml22__VolumeReferenceKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt: 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_gsoap_eml2_3_prodml22__DataConditioningExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt: 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_gsoap_eml2_3_prodml22__FluidSampleKindExt: + case SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt: 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; @@ -58722,7 +58717,7 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy struct tm type=%d location=%p object=%p\n", t, p, q)); *(struct tm*)p = *(struct tm*)q; break; - case SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier: + case SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier: 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; @@ -58774,7 +58769,7 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt 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_gsoap_eml2_3_prodml22__CalendarMonth: + case SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth: 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; @@ -59058,93 +59053,93 @@ SOAP_FMAC3 void SOAP_FMAC4 gsoap_eml2_3_finsert(struct soap *soap, int t, int tt DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy eml23__GraphicalInformationSet type=%d location=%p object=%p\n", t, p, q)); *(eml23__GraphicalInformationSet*)p = *(eml23__GraphicalInformationSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidCharacterization type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidCharacterization*)p = *(prodml22__FluidCharacterization*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidCharacterization type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidCharacterization*)p = *(prodml23__FluidCharacterization*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidAnalysis*)p = *(prodml22__FluidAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidAnalysis*)p = *(prodml23__FluidAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__HydrocarbonAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__HydrocarbonAnalysis*)p = *(prodml22__HydrocarbonAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__HydrocarbonAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__HydrocarbonAnalysis*)p = *(prodml23__HydrocarbonAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__WaterAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__WaterAnalysis*)p = *(prodml22__WaterAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__WaterAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__WaterAnalysis*)p = *(prodml23__WaterAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSystem type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSystem*)p = *(prodml22__FluidSystem*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSystem type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSystem*)p = *(prodml23__FluidSystem*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__Channel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Channel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Channel*)p = *(prodml22__Channel*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__Channel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Channel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Channel*)p = *(prodml23__Channel*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ChannelSet type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ChannelSet*)p = *(prodml22__ChannelSet*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ChannelSet type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ChannelSet*)p = *(prodml23__ChannelSet*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlowTestActivity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlowTestActivity*)p = *(prodml22__FlowTestActivity*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlowTestActivity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlowTestActivity*)p = *(prodml23__FlowTestActivity*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__Facility: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__Facility type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__Facility*)p = *(prodml22__Facility*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__Facility: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__Facility type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__Facility*)p = *(prodml23__Facility*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReportingEntity type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReportingEntity*)p = *(prodml22__ReportingEntity*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReportingEntity type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReportingEntity*)p = *(prodml23__ReportingEntity*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ReportingHierarchy type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ReportingHierarchy*)p = *(prodml22__ReportingHierarchy*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ReportingHierarchy type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ReportingHierarchy*)p = *(prodml23__ReportingHierarchy*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PressureTransientAnalysis type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PressureTransientAnalysis*)p = *(prodml22__PressureTransientAnalysis*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PressureTransientAnalysis type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PressureTransientAnalysis*)p = *(prodml23__PressureTransientAnalysis*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PtaDataPreProcess type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PtaDataPreProcess*)p = *(prodml22__PtaDataPreProcess*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PtaDataPreProcess type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PtaDataPreProcess*)p = *(prodml23__PtaDataPreProcess*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__PtaDeconvolution type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__PtaDeconvolution*)p = *(prodml22__PtaDeconvolution*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__PtaDeconvolution type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__PtaDeconvolution*)p = *(prodml23__PtaDeconvolution*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSample type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSample*)p = *(prodml22__FluidSample*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSample type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSample*)p = *(prodml23__FluidSample*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleContainer type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleContainer*)p = *(prodml22__FluidSampleContainer*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleContainer type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleContainer*)p = *(prodml23__FluidSampleContainer*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FluidSampleAcquisitionJob type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FluidSampleAcquisitionJob*)p = *(prodml22__FluidSampleAcquisitionJob*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FluidSampleAcquisitionJob type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FluidSampleAcquisitionJob*)p = *(prodml23__FluidSampleAcquisitionJob*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__FlowTestJob type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__FlowTestJob*)p = *(prodml22__FlowTestJob*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__FlowTestJob type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__FlowTestJob*)p = *(prodml23__FlowTestJob*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductVolume type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductVolume*)p = *(prodml22__ProductVolume*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductVolume type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductVolume*)p = *(prodml23__ProductVolume*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__ProductFlowModel type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__ProductFlowModel*)p = *(prodml22__ProductFlowModel*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__ProductFlowModel type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__ProductFlowModel*)p = *(prodml23__ProductFlowModel*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesData type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesData*)p = *(prodml22__TimeSeriesData*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesData type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesData*)p = *(prodml23__TimeSeriesData*)q; break; - case SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic: - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml22__TimeSeriesStatistic type=%d location=%p object=%p\n", t, p, q)); - *(prodml22__TimeSeriesStatistic*)p = *(prodml22__TimeSeriesStatistic*)q; + case SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic: + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy prodml23__TimeSeriesStatistic type=%d location=%p object=%p\n", t, p, q)); + *(prodml23__TimeSeriesStatistic*)p = *(prodml23__TimeSeriesStatistic*)q; break; case SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature: DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copy resqml22__BoundaryFeature type=%d location=%p object=%p\n", t, p, q)); @@ -59712,14 +59707,14 @@ SOAP_FMAC3 LONG64 * SOAP_FMAC4 soap_get_LONG64(struct soap *soap, LONG64 *p, con return p; } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonNegativeFraction(struct soap *soap, const char *tag, int id, const float *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NonNegativeFraction(struct soap *soap, const char *tag, int id, const float *a, const char *type) { if (!type) - type = "prodml22:NonNegativeFraction"; - return soap_outfloat(soap, tag, id, a, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction); + type = "prodml23:NonNegativeFraction"; + return soap_outfloat(soap, tag, id, a, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__NonNegativeFraction(struct soap *soap, const char *s, float *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__NonNegativeFraction(struct soap *soap, const char *s, float *a) { int err = soap_s2float(soap, s, a); if (!err) @@ -59732,9 +59727,9 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__NonNegativeFraction(struct soap *so return err; } -SOAP_FMAC3 float * SOAP_FMAC4 soap_in_prodml22__NonNegativeFraction(struct soap *soap, const char *tag, float *a, const char *type) +SOAP_FMAC3 float * SOAP_FMAC4 soap_in_prodml23__NonNegativeFraction(struct soap *soap, const char *tag, float *a, const char *type) { - a = soap_infloat(soap, tag, a, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction); + a = soap_infloat(soap, tag, a, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction); if (a && *a < 0) { soap->error = SOAP_LENGTH; return NULL; @@ -59746,16 +59741,16 @@ SOAP_FMAC3 float * SOAP_FMAC4 soap_in_prodml22__NonNegativeFraction(struct soap return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__NonNegativeFraction(struct soap *soap, const float *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__NonNegativeFraction(struct soap *soap, const float *a, const char *tag, const char *type) { - if (soap_out_prodml22__NonNegativeFraction(soap, tag ? tag : "prodml22:NonNegativeFraction", -2, a, type)) + if (soap_out_prodml23__NonNegativeFraction(soap, tag ? tag : "prodml23:NonNegativeFraction", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 float * SOAP_FMAC4 soap_get_prodml22__NonNegativeFraction(struct soap *soap, float *p, const char *tag, const char *type) +SOAP_FMAC3 float * SOAP_FMAC4 soap_get_prodml23__NonNegativeFraction(struct soap *soap, float *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NonNegativeFraction(soap, tag, p, type))) + if ((p = soap_in_prodml23__NonNegativeFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -63242,41 +63237,41 @@ SOAP_FMAC3 resqml22__CulturalFeatureKind * SOAP_FMAC4 soap_get_resqml22__Cultura return p; } -static const struct soap_code_map soap_codes_prodml22__TimeSeriesKeyword[] = -{ { (LONG64)prodml22__TimeSeriesKeyword::asset_x0020identifier, "asset identifier" }, - { (LONG64)prodml22__TimeSeriesKeyword::flow, "flow" }, - { (LONG64)prodml22__TimeSeriesKeyword::product, "product" }, - { (LONG64)prodml22__TimeSeriesKeyword::qualifier, "qualifier" }, - { (LONG64)prodml22__TimeSeriesKeyword::subqualifier, "subqualifier" }, - { (LONG64)prodml22__TimeSeriesKeyword::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__TimeSeriesKeyword[] = +{ { (LONG64)prodml23__TimeSeriesKeyword::asset_x0020identifier, "asset identifier" }, + { (LONG64)prodml23__TimeSeriesKeyword::flow, "flow" }, + { (LONG64)prodml23__TimeSeriesKeyword::product, "product" }, + { (LONG64)prodml23__TimeSeriesKeyword::qualifier, "qualifier" }, + { (LONG64)prodml23__TimeSeriesKeyword::subqualifier, "subqualifier" }, + { (LONG64)prodml23__TimeSeriesKeyword::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TimeSeriesKeyword2s(struct soap *soap, prodml22__TimeSeriesKeyword n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TimeSeriesKeyword2s(struct soap *soap, prodml23__TimeSeriesKeyword n) { - const char *s = soap_code_str(soap_codes_prodml22__TimeSeriesKeyword, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__TimeSeriesKeyword, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesKeyword(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesKeyword *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesKeyword(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesKeyword *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesKeyword"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword), type) || soap_send(soap, soap_prodml22__TimeSeriesKeyword2s(soap, *a))) + type = "prodml23:TimeSeriesKeyword"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword), type) || soap_send(soap, soap_prodml23__TimeSeriesKeyword2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeSeriesKeyword(struct soap *soap, const char *s, prodml22__TimeSeriesKeyword *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TimeSeriesKeyword(struct soap *soap, const char *s, prodml23__TimeSeriesKeyword *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__TimeSeriesKeyword, s); + map = soap_code(soap_codes_prodml23__TimeSeriesKeyword, s); if (map) - *a = (prodml22__TimeSeriesKeyword)map->code; + *a = (prodml23__TimeSeriesKeyword)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63284,81 +63279,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeSeriesKeyword(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesKeyword * SOAP_FMAC4 soap_in_prodml22__TimeSeriesKeyword(struct soap *soap, const char *tag, prodml22__TimeSeriesKeyword *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesKeyword * SOAP_FMAC4 soap_in_prodml23__TimeSeriesKeyword(struct soap *soap, const char *tag, prodml23__TimeSeriesKeyword *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__TimeSeriesKeyword*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword, sizeof(prodml22__TimeSeriesKeyword), NULL, NULL, NULL, NULL); + a = (prodml23__TimeSeriesKeyword*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword, sizeof(prodml23__TimeSeriesKeyword), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__TimeSeriesKeyword(soap, soap_value(soap), a); + { int err = soap_s2prodml23__TimeSeriesKeyword(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__TimeSeriesKeyword *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword, sizeof(prodml22__TimeSeriesKeyword), 0, NULL, NULL); + { a = (prodml23__TimeSeriesKeyword *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword, sizeof(prodml23__TimeSeriesKeyword), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__TimeSeriesKeyword * SOAP_FMAC4 soap_new_prodml22__TimeSeriesKeyword(struct soap *soap, int n) +SOAP_FMAC3 prodml23__TimeSeriesKeyword * SOAP_FMAC4 soap_new_prodml23__TimeSeriesKeyword(struct soap *soap, int n) { - prodml22__TimeSeriesKeyword *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__TimeSeriesKeyword))); - for (prodml22__TimeSeriesKeyword *p = a; p && n--; ++p) - soap_default_prodml22__TimeSeriesKeyword(soap, p); + prodml23__TimeSeriesKeyword *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__TimeSeriesKeyword))); + for (prodml23__TimeSeriesKeyword *p = a; p && n--; ++p) + soap_default_prodml23__TimeSeriesKeyword(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TimeSeriesKeyword(struct soap *soap, const prodml22__TimeSeriesKeyword *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TimeSeriesKeyword(struct soap *soap, const prodml23__TimeSeriesKeyword *a, const char *tag, const char *type) { - if (soap_out_prodml22__TimeSeriesKeyword(soap, tag ? tag : "prodml22:TimeSeriesKeyword", -2, a, type)) + if (soap_out_prodml23__TimeSeriesKeyword(soap, tag ? tag : "prodml23:TimeSeriesKeyword", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeSeriesKeyword * SOAP_FMAC4 soap_get_prodml22__TimeSeriesKeyword(struct soap *soap, prodml22__TimeSeriesKeyword *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesKeyword * SOAP_FMAC4 soap_get_prodml23__TimeSeriesKeyword(struct soap *soap, prodml23__TimeSeriesKeyword *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesKeyword(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesKeyword(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__EndpointQualifierInterval[] = -{ { (LONG64)prodml22__EndpointQualifierInterval::exclusive, "exclusive" }, - { (LONG64)prodml22__EndpointQualifierInterval::inclusive, "inclusive" }, - { (LONG64)prodml22__EndpointQualifierInterval::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__EndpointQualifierInterval[] = +{ { (LONG64)prodml23__EndpointQualifierInterval::exclusive, "exclusive" }, + { (LONG64)prodml23__EndpointQualifierInterval::inclusive, "inclusive" }, + { (LONG64)prodml23__EndpointQualifierInterval::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__EndpointQualifierInterval2s(struct soap *soap, prodml22__EndpointQualifierInterval n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__EndpointQualifierInterval2s(struct soap *soap, prodml23__EndpointQualifierInterval n) { - const char *s = soap_code_str(soap_codes_prodml22__EndpointQualifierInterval, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__EndpointQualifierInterval, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifierInterval(struct soap *soap, const char *tag, int id, const prodml22__EndpointQualifierInterval *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifierInterval(struct soap *soap, const char *tag, int id, const prodml23__EndpointQualifierInterval *a, const char *type) { if (!type) - type = "prodml22:EndpointQualifierInterval"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval), type) || soap_send(soap, soap_prodml22__EndpointQualifierInterval2s(soap, *a))) + type = "prodml23:EndpointQualifierInterval"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval), type) || soap_send(soap, soap_prodml23__EndpointQualifierInterval2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__EndpointQualifierInterval(struct soap *soap, const char *s, prodml22__EndpointQualifierInterval *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__EndpointQualifierInterval(struct soap *soap, const char *s, prodml23__EndpointQualifierInterval *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__EndpointQualifierInterval, s); + map = soap_code(soap_codes_prodml23__EndpointQualifierInterval, s); if (map) - *a = (prodml22__EndpointQualifierInterval)map->code; + *a = (prodml23__EndpointQualifierInterval)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63366,89 +63361,89 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__EndpointQualifierInterval(struct so return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQualifierInterval * SOAP_FMAC4 soap_in_prodml22__EndpointQualifierInterval(struct soap *soap, const char *tag, prodml22__EndpointQualifierInterval *a, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifierInterval * SOAP_FMAC4 soap_in_prodml23__EndpointQualifierInterval(struct soap *soap, const char *tag, prodml23__EndpointQualifierInterval *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__EndpointQualifierInterval*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval, sizeof(prodml22__EndpointQualifierInterval), NULL, NULL, NULL, NULL); + a = (prodml23__EndpointQualifierInterval*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval, sizeof(prodml23__EndpointQualifierInterval), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__EndpointQualifierInterval(soap, soap_value(soap), a); + { int err = soap_s2prodml23__EndpointQualifierInterval(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__EndpointQualifierInterval *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval, sizeof(prodml22__EndpointQualifierInterval), 0, NULL, NULL); + { a = (prodml23__EndpointQualifierInterval *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval, sizeof(prodml23__EndpointQualifierInterval), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__EndpointQualifierInterval * SOAP_FMAC4 soap_new_prodml22__EndpointQualifierInterval(struct soap *soap, int n) +SOAP_FMAC3 prodml23__EndpointQualifierInterval * SOAP_FMAC4 soap_new_prodml23__EndpointQualifierInterval(struct soap *soap, int n) { - prodml22__EndpointQualifierInterval *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__EndpointQualifierInterval))); - for (prodml22__EndpointQualifierInterval *p = a; p && n--; ++p) - soap_default_prodml22__EndpointQualifierInterval(soap, p); + prodml23__EndpointQualifierInterval *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__EndpointQualifierInterval))); + for (prodml23__EndpointQualifierInterval *p = a; p && n--; ++p) + soap_default_prodml23__EndpointQualifierInterval(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__EndpointQualifierInterval(struct soap *soap, const prodml22__EndpointQualifierInterval *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__EndpointQualifierInterval(struct soap *soap, const prodml23__EndpointQualifierInterval *a, const char *tag, const char *type) { - if (soap_out_prodml22__EndpointQualifierInterval(soap, tag ? tag : "prodml22:EndpointQualifierInterval", -2, a, type)) + if (soap_out_prodml23__EndpointQualifierInterval(soap, tag ? tag : "prodml23:EndpointQualifierInterval", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__EndpointQualifierInterval * SOAP_FMAC4 soap_get_prodml22__EndpointQualifierInterval(struct soap *soap, prodml22__EndpointQualifierInterval *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifierInterval * SOAP_FMAC4 soap_get_prodml23__EndpointQualifierInterval(struct soap *soap, prodml23__EndpointQualifierInterval *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__EndpointQualifierInterval(soap, tag, p, type))) + if ((p = soap_in_prodml23__EndpointQualifierInterval(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__WellOperationMethod[] = -{ { (LONG64)prodml22__WellOperationMethod::continuous_x0020gas_x0020lift, "continuous gas lift" }, - { (LONG64)prodml22__WellOperationMethod::electric_x0020submersible_x0020pump_x0020lift, "electric submersible pump lift" }, - { (LONG64)prodml22__WellOperationMethod::foam_x0020lift, "foam lift" }, - { (LONG64)prodml22__WellOperationMethod::hydraulic_x0020pump_x0020lift, "hydraulic pump lift" }, - { (LONG64)prodml22__WellOperationMethod::intermittent_x0020gas_x0020lift, "intermittent gas lift" }, - { (LONG64)prodml22__WellOperationMethod::jet_x0020pump_x0020lift, "jet pump lift" }, - { (LONG64)prodml22__WellOperationMethod::natural_x0020flow, "natural flow" }, - { (LONG64)prodml22__WellOperationMethod::plunger_x0020gas_x0020lift, "plunger gas lift" }, - { (LONG64)prodml22__WellOperationMethod::progressive_x0020cavity_x0020pump_x0020lift, "progressive cavity pump lift" }, - { (LONG64)prodml22__WellOperationMethod::sucker_x0020rod_x0020pump_x0020lift, "sucker rod pump lift" }, - { (LONG64)prodml22__WellOperationMethod::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__WellOperationMethod[] = +{ { (LONG64)prodml23__WellOperationMethod::continuous_x0020gas_x0020lift, "continuous gas lift" }, + { (LONG64)prodml23__WellOperationMethod::electric_x0020submersible_x0020pump_x0020lift, "electric submersible pump lift" }, + { (LONG64)prodml23__WellOperationMethod::foam_x0020lift, "foam lift" }, + { (LONG64)prodml23__WellOperationMethod::hydraulic_x0020pump_x0020lift, "hydraulic pump lift" }, + { (LONG64)prodml23__WellOperationMethod::intermittent_x0020gas_x0020lift, "intermittent gas lift" }, + { (LONG64)prodml23__WellOperationMethod::jet_x0020pump_x0020lift, "jet pump lift" }, + { (LONG64)prodml23__WellOperationMethod::natural_x0020flow, "natural flow" }, + { (LONG64)prodml23__WellOperationMethod::plunger_x0020gas_x0020lift, "plunger gas lift" }, + { (LONG64)prodml23__WellOperationMethod::progressive_x0020cavity_x0020pump_x0020lift, "progressive cavity pump lift" }, + { (LONG64)prodml23__WellOperationMethod::sucker_x0020rod_x0020pump_x0020lift, "sucker rod pump lift" }, + { (LONG64)prodml23__WellOperationMethod::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellOperationMethod2s(struct soap *soap, prodml22__WellOperationMethod n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellOperationMethod2s(struct soap *soap, prodml23__WellOperationMethod n) { - const char *s = soap_code_str(soap_codes_prodml22__WellOperationMethod, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__WellOperationMethod, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellOperationMethod(struct soap *soap, const char *tag, int id, const prodml22__WellOperationMethod *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellOperationMethod(struct soap *soap, const char *tag, int id, const prodml23__WellOperationMethod *a, const char *type) { if (!type) - type = "prodml22:WellOperationMethod"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod), type) || soap_send(soap, soap_prodml22__WellOperationMethod2s(soap, *a))) + type = "prodml23:WellOperationMethod"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod), type) || soap_send(soap, soap_prodml23__WellOperationMethod2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellOperationMethod(struct soap *soap, const char *s, prodml22__WellOperationMethod *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellOperationMethod(struct soap *soap, const char *s, prodml23__WellOperationMethod *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__WellOperationMethod, s); + map = soap_code(soap_codes_prodml23__WellOperationMethod, s); if (map) - *a = (prodml22__WellOperationMethod)map->code; + *a = (prodml23__WellOperationMethod)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63456,174 +63451,174 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellOperationMethod(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__WellOperationMethod * SOAP_FMAC4 soap_in_prodml22__WellOperationMethod(struct soap *soap, const char *tag, prodml22__WellOperationMethod *a, const char *type) +SOAP_FMAC3 prodml23__WellOperationMethod * SOAP_FMAC4 soap_in_prodml23__WellOperationMethod(struct soap *soap, const char *tag, prodml23__WellOperationMethod *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__WellOperationMethod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod, sizeof(prodml22__WellOperationMethod), NULL, NULL, NULL, NULL); + a = (prodml23__WellOperationMethod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod, sizeof(prodml23__WellOperationMethod), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__WellOperationMethod(soap, soap_value(soap), a); + { int err = soap_s2prodml23__WellOperationMethod(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__WellOperationMethod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod, sizeof(prodml22__WellOperationMethod), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 prodml22__WellOperationMethod * SOAP_FMAC4 soap_new_prodml22__WellOperationMethod(struct soap *soap, int n) -{ - prodml22__WellOperationMethod *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__WellOperationMethod))); - for (prodml22__WellOperationMethod *p = a; p && n--; ++p) - soap_default_prodml22__WellOperationMethod(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellOperationMethod(struct soap *soap, const prodml22__WellOperationMethod *a, const char *tag, const char *type) -{ - if (soap_out_prodml22__WellOperationMethod(soap, tag ? tag : "prodml22:WellOperationMethod", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 prodml22__WellOperationMethod * SOAP_FMAC4 soap_get_prodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod *p, const char *tag, const char *type) -{ - if ((p = soap_in_prodml22__WellOperationMethod(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_prodml22__FluidComponentBasis[] = -{ { (LONG64)prodml22__FluidComponentBasis::_1, "1" }, - { (LONG64)prodml22__FluidComponentBasis::_2, "2" }, - { (LONG64)prodml22__FluidComponentBasis::_3, "3" }, - { (LONG64)prodml22__FluidComponentBasis::_1_dimethylcyclopentane, "1-dimethylcyclopentane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_x0020dimethylbenzene, "2 dimethylbenzene" }, - { (LONG64)prodml22__FluidComponentBasis::_2_x0020dimethylpropane, "2 dimethylpropane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_dimethylbutane, "2-dimethylbutane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_dimethylcyclopentane, "2-dimethylcyclopentane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_dimethylhexane, "2-dimethylhexane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_dimethylpentane, "2-dimethylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_methylbutane, "2-methylbutane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_methylhexane, "2-methylhexane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_methylpentane, "2-methylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_2_methylpropane, "2-methylpropane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_x0020dimethylbenzene, "3 dimethylbenzene" }, - { (LONG64)prodml22__FluidComponentBasis::_3_dimethylbutane, "3-dimethylbutane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_dimethylcyclopentane, "3-dimethylcyclopentane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_dimethylpentane, "3-dimethylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_ethylpentane, "3-ethylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_methylhexane, "3-methylhexane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_methylpentane, "3-methylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_trimethylbutane, "3-trimethylbutane" }, - { (LONG64)prodml22__FluidComponentBasis::_3_trimethylpentane, "3-trimethylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_4_dimethylbenzene, "4-dimethylbenzene" }, - { (LONG64)prodml22__FluidComponentBasis::_4_dimethylhexane, "4-dimethylhexane" }, - { (LONG64)prodml22__FluidComponentBasis::_4_Dimethylpentane, "4-Dimethylpentane" }, - { (LONG64)prodml22__FluidComponentBasis::_4_trimethylbenzene, "4-trimethylbenzene" }, - { (LONG64)prodml22__FluidComponentBasis::_5_dimethylhexane, "5-dimethylhexane" }, - { (LONG64)prodml22__FluidComponentBasis::argon, "argon" }, - { (LONG64)prodml22__FluidComponentBasis::benzene, "benzene" }, - { (LONG64)prodml22__FluidComponentBasis::butane, "butane" }, - { (LONG64)prodml22__FluidComponentBasis::c11_x0020fraction, "c11 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c12_x0020fraction, "c12 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c13_x0020fraction, "c13 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c14_x0020fraction, "c14 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c15_x0020fraction, "c15 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c16_x0020fraction, "c16 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c17_x0020fraction, "c17 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c18_x0020fraction, "c18 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c19_x0020fraction, "c19 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c20_x0020fraction, "c20 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c21_x0020fraction, "c21 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c22_x0020fraction, "c22 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c23_x0020fraction, "c23 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c24_x0020fraction, "c24 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c25_x0020fraction, "c25 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c26_x0020fraction, "c26 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c27_x0020fraction, "c27 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c28_x0020fraction, "c28 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c29_x0020fraction, "c29 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c30_x0020fraction, "c30 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c31_x0020fraction, "c31 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c32_x0020fraction, "c32 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c33_x0020fraction, "c33 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c34_x0020fraction, "c34 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c35_x0020fraction, "c35 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c36_x0020fraction, "c36 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c37_x0020fraction, "c37 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c38_x0020fraction, "c38 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c39_x0020fraction, "c39 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c40_x0020fraction, "c40 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c41_x0020fraction, "c41 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c42_x0020fraction, "c42 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c43_x0020fraction, "c43 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c44_x0020fraction, "c44 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c45_x0020fraction, "c45 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c46_x0020fraction, "c46 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c47_x0020fraction, "c47 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c48_x0020fraction, "c48 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::c49_x0020fraction, "c49 fraction" }, - { (LONG64)prodml22__FluidComponentBasis::carbon_x0020dioxide, "carbon dioxide" }, - { (LONG64)prodml22__FluidComponentBasis::cis_1, "cis-1" }, - { (LONG64)prodml22__FluidComponentBasis::cyclohexane, "cyclohexane" }, - { (LONG64)prodml22__FluidComponentBasis::cyclopentane, "cyclopentane" }, - { (LONG64)prodml22__FluidComponentBasis::decanes, "decanes" }, - { (LONG64)prodml22__FluidComponentBasis::ethane, "ethane" }, - { (LONG64)prodml22__FluidComponentBasis::ethylbenzene, "ethylbenzene" }, - { (LONG64)prodml22__FluidComponentBasis::ethylcyclopentane, "ethylcyclopentane" }, - { (LONG64)prodml22__FluidComponentBasis::heptanes, "heptanes" }, - { (LONG64)prodml22__FluidComponentBasis::hexane, "hexane" }, - { (LONG64)prodml22__FluidComponentBasis::hexanes, "hexanes" }, - { (LONG64)prodml22__FluidComponentBasis::hydrogen, "hydrogen" }, - { (LONG64)prodml22__FluidComponentBasis::hydrogen_x0020sulfide, "hydrogen sulfide" }, - { (LONG64)prodml22__FluidComponentBasis::methane, "methane" }, - { (LONG64)prodml22__FluidComponentBasis::methylbenzene, "methylbenzene" }, - { (LONG64)prodml22__FluidComponentBasis::methylcyclohexane, "methylcyclohexane" }, - { (LONG64)prodml22__FluidComponentBasis::methylcyclopentane, "methylcyclopentane" }, - { (LONG64)prodml22__FluidComponentBasis::nitrogen, "nitrogen" }, - { (LONG64)prodml22__FluidComponentBasis::nonanes, "nonanes" }, - { (LONG64)prodml22__FluidComponentBasis::octanes, "octanes" }, - { (LONG64)prodml22__FluidComponentBasis::oxygen, "oxygen" }, - { (LONG64)prodml22__FluidComponentBasis::pentane, "pentane" }, - { (LONG64)prodml22__FluidComponentBasis::propane, "propane" }, - { (LONG64)prodml22__FluidComponentBasis::trans_1, "trans-1" }, - { (LONG64)prodml22__FluidComponentBasis::unknown, "unknown" }, - { (LONG64)prodml22__FluidComponentBasis::water, "water" }, + { a = (prodml23__WellOperationMethod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod, sizeof(prodml23__WellOperationMethod), 0, NULL, NULL); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } + return a; +} + +SOAP_FMAC3 prodml23__WellOperationMethod * SOAP_FMAC4 soap_new_prodml23__WellOperationMethod(struct soap *soap, int n) +{ + prodml23__WellOperationMethod *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__WellOperationMethod))); + for (prodml23__WellOperationMethod *p = a; p && n--; ++p) + soap_default_prodml23__WellOperationMethod(soap, p); + return a; +} + +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellOperationMethod(struct soap *soap, const prodml23__WellOperationMethod *a, const char *tag, const char *type) +{ + if (soap_out_prodml23__WellOperationMethod(soap, tag ? tag : "prodml23:WellOperationMethod", -2, a, type)) + return soap->error; + return soap_putindependent(soap); +} + +SOAP_FMAC3 prodml23__WellOperationMethod * SOAP_FMAC4 soap_get_prodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod *p, const char *tag, const char *type) +{ + if ((p = soap_in_prodml23__WellOperationMethod(soap, tag, p, type))) + if (soap_getindependent(soap)) + return NULL; + return p; +} + +static const struct soap_code_map soap_codes_prodml23__FluidComponentBasis[] = +{ { (LONG64)prodml23__FluidComponentBasis::_1, "1" }, + { (LONG64)prodml23__FluidComponentBasis::_2, "2" }, + { (LONG64)prodml23__FluidComponentBasis::_3, "3" }, + { (LONG64)prodml23__FluidComponentBasis::_1_dimethylcyclopentane, "1-dimethylcyclopentane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_x0020dimethylbenzene, "2 dimethylbenzene" }, + { (LONG64)prodml23__FluidComponentBasis::_2_x0020dimethylpropane, "2 dimethylpropane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_dimethylbutane, "2-dimethylbutane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_dimethylcyclopentane, "2-dimethylcyclopentane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_dimethylhexane, "2-dimethylhexane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_dimethylpentane, "2-dimethylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_methylbutane, "2-methylbutane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_methylhexane, "2-methylhexane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_methylpentane, "2-methylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_2_methylpropane, "2-methylpropane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_x0020dimethylbenzene, "3 dimethylbenzene" }, + { (LONG64)prodml23__FluidComponentBasis::_3_dimethylbutane, "3-dimethylbutane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_dimethylcyclopentane, "3-dimethylcyclopentane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_dimethylpentane, "3-dimethylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_ethylpentane, "3-ethylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_methylhexane, "3-methylhexane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_methylpentane, "3-methylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_trimethylbutane, "3-trimethylbutane" }, + { (LONG64)prodml23__FluidComponentBasis::_3_trimethylpentane, "3-trimethylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_4_dimethylbenzene, "4-dimethylbenzene" }, + { (LONG64)prodml23__FluidComponentBasis::_4_dimethylhexane, "4-dimethylhexane" }, + { (LONG64)prodml23__FluidComponentBasis::_4_Dimethylpentane, "4-Dimethylpentane" }, + { (LONG64)prodml23__FluidComponentBasis::_4_trimethylbenzene, "4-trimethylbenzene" }, + { (LONG64)prodml23__FluidComponentBasis::_5_dimethylhexane, "5-dimethylhexane" }, + { (LONG64)prodml23__FluidComponentBasis::argon, "argon" }, + { (LONG64)prodml23__FluidComponentBasis::benzene, "benzene" }, + { (LONG64)prodml23__FluidComponentBasis::butane, "butane" }, + { (LONG64)prodml23__FluidComponentBasis::c11_x0020fraction, "c11 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c12_x0020fraction, "c12 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c13_x0020fraction, "c13 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c14_x0020fraction, "c14 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c15_x0020fraction, "c15 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c16_x0020fraction, "c16 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c17_x0020fraction, "c17 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c18_x0020fraction, "c18 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c19_x0020fraction, "c19 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c20_x0020fraction, "c20 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c21_x0020fraction, "c21 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c22_x0020fraction, "c22 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c23_x0020fraction, "c23 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c24_x0020fraction, "c24 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c25_x0020fraction, "c25 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c26_x0020fraction, "c26 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c27_x0020fraction, "c27 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c28_x0020fraction, "c28 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c29_x0020fraction, "c29 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c30_x0020fraction, "c30 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c31_x0020fraction, "c31 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c32_x0020fraction, "c32 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c33_x0020fraction, "c33 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c34_x0020fraction, "c34 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c35_x0020fraction, "c35 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c36_x0020fraction, "c36 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c37_x0020fraction, "c37 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c38_x0020fraction, "c38 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c39_x0020fraction, "c39 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c40_x0020fraction, "c40 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c41_x0020fraction, "c41 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c42_x0020fraction, "c42 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c43_x0020fraction, "c43 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c44_x0020fraction, "c44 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c45_x0020fraction, "c45 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c46_x0020fraction, "c46 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c47_x0020fraction, "c47 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c48_x0020fraction, "c48 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::c49_x0020fraction, "c49 fraction" }, + { (LONG64)prodml23__FluidComponentBasis::carbon_x0020dioxide, "carbon dioxide" }, + { (LONG64)prodml23__FluidComponentBasis::cis_1, "cis-1" }, + { (LONG64)prodml23__FluidComponentBasis::cyclohexane, "cyclohexane" }, + { (LONG64)prodml23__FluidComponentBasis::cyclopentane, "cyclopentane" }, + { (LONG64)prodml23__FluidComponentBasis::decanes, "decanes" }, + { (LONG64)prodml23__FluidComponentBasis::ethane, "ethane" }, + { (LONG64)prodml23__FluidComponentBasis::ethylbenzene, "ethylbenzene" }, + { (LONG64)prodml23__FluidComponentBasis::ethylcyclopentane, "ethylcyclopentane" }, + { (LONG64)prodml23__FluidComponentBasis::heptanes, "heptanes" }, + { (LONG64)prodml23__FluidComponentBasis::hexane, "hexane" }, + { (LONG64)prodml23__FluidComponentBasis::hexanes, "hexanes" }, + { (LONG64)prodml23__FluidComponentBasis::hydrogen, "hydrogen" }, + { (LONG64)prodml23__FluidComponentBasis::hydrogen_x0020sulfide, "hydrogen sulfide" }, + { (LONG64)prodml23__FluidComponentBasis::methane, "methane" }, + { (LONG64)prodml23__FluidComponentBasis::methylbenzene, "methylbenzene" }, + { (LONG64)prodml23__FluidComponentBasis::methylcyclohexane, "methylcyclohexane" }, + { (LONG64)prodml23__FluidComponentBasis::methylcyclopentane, "methylcyclopentane" }, + { (LONG64)prodml23__FluidComponentBasis::nitrogen, "nitrogen" }, + { (LONG64)prodml23__FluidComponentBasis::nonanes, "nonanes" }, + { (LONG64)prodml23__FluidComponentBasis::octanes, "octanes" }, + { (LONG64)prodml23__FluidComponentBasis::oxygen, "oxygen" }, + { (LONG64)prodml23__FluidComponentBasis::pentane, "pentane" }, + { (LONG64)prodml23__FluidComponentBasis::propane, "propane" }, + { (LONG64)prodml23__FluidComponentBasis::trans_1, "trans-1" }, + { (LONG64)prodml23__FluidComponentBasis::unknown, "unknown" }, + { (LONG64)prodml23__FluidComponentBasis::water, "water" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidComponentBasis2s(struct soap *soap, prodml22__FluidComponentBasis n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidComponentBasis2s(struct soap *soap, prodml23__FluidComponentBasis n) { - const char *s = soap_code_str(soap_codes_prodml22__FluidComponentBasis, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FluidComponentBasis, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentBasis(struct soap *soap, const char *tag, int id, const prodml22__FluidComponentBasis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentBasis(struct soap *soap, const char *tag, int id, const prodml23__FluidComponentBasis *a, const char *type) { if (!type) - type = "prodml22:FluidComponentBasis"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis), type) || soap_send(soap, soap_prodml22__FluidComponentBasis2s(soap, *a))) + type = "prodml23:FluidComponentBasis"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis), type) || soap_send(soap, soap_prodml23__FluidComponentBasis2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidComponentBasis(struct soap *soap, const char *s, prodml22__FluidComponentBasis *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidComponentBasis(struct soap *soap, const char *s, prodml23__FluidComponentBasis *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FluidComponentBasis, s); + map = soap_code(soap_codes_prodml23__FluidComponentBasis, s); if (map) - *a = (prodml22__FluidComponentBasis)map->code; + *a = (prodml23__FluidComponentBasis)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63631,81 +63626,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidComponentBasis(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidComponentBasis * SOAP_FMAC4 soap_in_prodml22__FluidComponentBasis(struct soap *soap, const char *tag, prodml22__FluidComponentBasis *a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentBasis * SOAP_FMAC4 soap_in_prodml23__FluidComponentBasis(struct soap *soap, const char *tag, prodml23__FluidComponentBasis *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FluidComponentBasis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis, sizeof(prodml22__FluidComponentBasis), NULL, NULL, NULL, NULL); + a = (prodml23__FluidComponentBasis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis, sizeof(prodml23__FluidComponentBasis), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FluidComponentBasis(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FluidComponentBasis(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FluidComponentBasis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis, sizeof(prodml22__FluidComponentBasis), 0, NULL, NULL); + { a = (prodml23__FluidComponentBasis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis, sizeof(prodml23__FluidComponentBasis), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FluidComponentBasis * SOAP_FMAC4 soap_new_prodml22__FluidComponentBasis(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FluidComponentBasis * SOAP_FMAC4 soap_new_prodml23__FluidComponentBasis(struct soap *soap, int n) { - prodml22__FluidComponentBasis *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FluidComponentBasis))); - for (prodml22__FluidComponentBasis *p = a; p && n--; ++p) - soap_default_prodml22__FluidComponentBasis(soap, p); + prodml23__FluidComponentBasis *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FluidComponentBasis))); + for (prodml23__FluidComponentBasis *p = a; p && n--; ++p) + soap_default_prodml23__FluidComponentBasis(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidComponentBasis(struct soap *soap, const prodml22__FluidComponentBasis *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidComponentBasis(struct soap *soap, const prodml23__FluidComponentBasis *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidComponentBasis(soap, tag ? tag : "prodml22:FluidComponentBasis", -2, a, type)) + if (soap_out_prodml23__FluidComponentBasis(soap, tag ? tag : "prodml23:FluidComponentBasis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidComponentBasis * SOAP_FMAC4 soap_get_prodml22__FluidComponentBasis(struct soap *soap, prodml22__FluidComponentBasis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentBasis * SOAP_FMAC4 soap_get_prodml23__FluidComponentBasis(struct soap *soap, prodml23__FluidComponentBasis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidComponentBasis(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidComponentBasis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__CalculationMethod[] = -{ { (LONG64)prodml22__CalculationMethod::none, "none" }, - { (LONG64)prodml22__CalculationMethod::step_x0020wise_x0020constant, "step wise constant" }, - { (LONG64)prodml22__CalculationMethod::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__CalculationMethod[] = +{ { (LONG64)prodml23__CalculationMethod::none, "none" }, + { (LONG64)prodml23__CalculationMethod::step_x0020wise_x0020constant, "step wise constant" }, + { (LONG64)prodml23__CalculationMethod::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__CalculationMethod2s(struct soap *soap, prodml22__CalculationMethod n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__CalculationMethod2s(struct soap *soap, prodml23__CalculationMethod n) { - const char *s = soap_code_str(soap_codes_prodml22__CalculationMethod, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__CalculationMethod, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CalculationMethod(struct soap *soap, const char *tag, int id, const prodml22__CalculationMethod *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CalculationMethod(struct soap *soap, const char *tag, int id, const prodml23__CalculationMethod *a, const char *type) { if (!type) - type = "prodml22:CalculationMethod"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod), type) || soap_send(soap, soap_prodml22__CalculationMethod2s(soap, *a))) + type = "prodml23:CalculationMethod"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod), type) || soap_send(soap, soap_prodml23__CalculationMethod2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CalculationMethod(struct soap *soap, const char *s, prodml22__CalculationMethod *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__CalculationMethod(struct soap *soap, const char *s, prodml23__CalculationMethod *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__CalculationMethod, s); + map = soap_code(soap_codes_prodml23__CalculationMethod, s); if (map) - *a = (prodml22__CalculationMethod)map->code; + *a = (prodml23__CalculationMethod)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63713,100 +63708,100 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CalculationMethod(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__CalculationMethod * SOAP_FMAC4 soap_in_prodml22__CalculationMethod(struct soap *soap, const char *tag, prodml22__CalculationMethod *a, const char *type) +SOAP_FMAC3 prodml23__CalculationMethod * SOAP_FMAC4 soap_in_prodml23__CalculationMethod(struct soap *soap, const char *tag, prodml23__CalculationMethod *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__CalculationMethod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod, sizeof(prodml22__CalculationMethod), NULL, NULL, NULL, NULL); + a = (prodml23__CalculationMethod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod, sizeof(prodml23__CalculationMethod), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__CalculationMethod(soap, soap_value(soap), a); + { int err = soap_s2prodml23__CalculationMethod(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__CalculationMethod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod, sizeof(prodml22__CalculationMethod), 0, NULL, NULL); + { a = (prodml23__CalculationMethod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod, sizeof(prodml23__CalculationMethod), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__CalculationMethod * SOAP_FMAC4 soap_new_prodml22__CalculationMethod(struct soap *soap, int n) +SOAP_FMAC3 prodml23__CalculationMethod * SOAP_FMAC4 soap_new_prodml23__CalculationMethod(struct soap *soap, int n) { - prodml22__CalculationMethod *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__CalculationMethod))); - for (prodml22__CalculationMethod *p = a; p && n--; ++p) - soap_default_prodml22__CalculationMethod(soap, p); + prodml23__CalculationMethod *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__CalculationMethod))); + for (prodml23__CalculationMethod *p = a; p && n--; ++p) + soap_default_prodml23__CalculationMethod(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CalculationMethod(struct soap *soap, const prodml22__CalculationMethod *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CalculationMethod(struct soap *soap, const prodml23__CalculationMethod *a, const char *tag, const char *type) { - if (soap_out_prodml22__CalculationMethod(soap, tag ? tag : "prodml22:CalculationMethod", -2, a, type)) + if (soap_out_prodml23__CalculationMethod(soap, tag ? tag : "prodml23:CalculationMethod", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CalculationMethod * SOAP_FMAC4 soap_get_prodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CalculationMethod * SOAP_FMAC4 soap_get_prodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CalculationMethod(soap, tag, p, type))) + if ((p = soap_in_prodml23__CalculationMethod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__BalanceFlowPart[] = -{ { (LONG64)prodml22__BalanceFlowPart::adjusted_x0020closing, "adjusted closing" }, - { (LONG64)prodml22__BalanceFlowPart::closing_x0020balance, "closing balance" }, - { (LONG64)prodml22__BalanceFlowPart::closing_x0020storage_x0020inventory, "closing storage inventory" }, - { (LONG64)prodml22__BalanceFlowPart::completed_x0020lifting, "completed lifting" }, - { (LONG64)prodml22__BalanceFlowPart::gain_x002floss, "gain/loss" }, - { (LONG64)prodml22__BalanceFlowPart::input_x0020to_x0020storage, "input to storage" }, - { (LONG64)prodml22__BalanceFlowPart::lifted, "lifted" }, - { (LONG64)prodml22__BalanceFlowPart::lifting_x0020entitlement, "lifting entitlement" }, - { (LONG64)prodml22__BalanceFlowPart::lifting_x0020entitlement_x0020remaining, "lifting entitlement remaining" }, - { (LONG64)prodml22__BalanceFlowPart::linepack, "linepack" }, - { (LONG64)prodml22__BalanceFlowPart::opening_x0020balance, "opening balance" }, - { (LONG64)prodml22__BalanceFlowPart::opflex, "opflex" }, - { (LONG64)prodml22__BalanceFlowPart::partial_x0020lifting, "partial lifting" }, - { (LONG64)prodml22__BalanceFlowPart::pipeline_x0020lifting, "pipeline lifting" }, - { (LONG64)prodml22__BalanceFlowPart::production_x0020__x0020mass_x0020adjustment, "production - mass adjustment" }, - { (LONG64)prodml22__BalanceFlowPart::production_x0020_x002d__x0020value_x0020adjustment, "production -- value adjustment" }, - { (LONG64)prodml22__BalanceFlowPart::production_x0020imbalance, "production imbalance" }, - { (LONG64)prodml22__BalanceFlowPart::swap, "swap" }, - { (LONG64)prodml22__BalanceFlowPart::tanker_x0020lifting, "tanker lifting" }, - { (LONG64)prodml22__BalanceFlowPart::transaction, "transaction" }, - { (LONG64)prodml22__BalanceFlowPart::transfer, "transfer" }, - { (LONG64)prodml22__BalanceFlowPart::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__BalanceFlowPart[] = +{ { (LONG64)prodml23__BalanceFlowPart::adjusted_x0020closing, "adjusted closing" }, + { (LONG64)prodml23__BalanceFlowPart::closing_x0020balance, "closing balance" }, + { (LONG64)prodml23__BalanceFlowPart::closing_x0020storage_x0020inventory, "closing storage inventory" }, + { (LONG64)prodml23__BalanceFlowPart::completed_x0020lifting, "completed lifting" }, + { (LONG64)prodml23__BalanceFlowPart::gain_x002floss, "gain/loss" }, + { (LONG64)prodml23__BalanceFlowPart::input_x0020to_x0020storage, "input to storage" }, + { (LONG64)prodml23__BalanceFlowPart::lifted, "lifted" }, + { (LONG64)prodml23__BalanceFlowPart::lifting_x0020entitlement, "lifting entitlement" }, + { (LONG64)prodml23__BalanceFlowPart::lifting_x0020entitlement_x0020remaining, "lifting entitlement remaining" }, + { (LONG64)prodml23__BalanceFlowPart::linepack, "linepack" }, + { (LONG64)prodml23__BalanceFlowPart::opening_x0020balance, "opening balance" }, + { (LONG64)prodml23__BalanceFlowPart::opflex, "opflex" }, + { (LONG64)prodml23__BalanceFlowPart::partial_x0020lifting, "partial lifting" }, + { (LONG64)prodml23__BalanceFlowPart::pipeline_x0020lifting, "pipeline lifting" }, + { (LONG64)prodml23__BalanceFlowPart::production_x0020__x0020mass_x0020adjustment, "production - mass adjustment" }, + { (LONG64)prodml23__BalanceFlowPart::production_x0020_x002d__x0020value_x0020adjustment, "production -- value adjustment" }, + { (LONG64)prodml23__BalanceFlowPart::production_x0020imbalance, "production imbalance" }, + { (LONG64)prodml23__BalanceFlowPart::swap, "swap" }, + { (LONG64)prodml23__BalanceFlowPart::tanker_x0020lifting, "tanker lifting" }, + { (LONG64)prodml23__BalanceFlowPart::transaction, "transaction" }, + { (LONG64)prodml23__BalanceFlowPart::transfer, "transfer" }, + { (LONG64)prodml23__BalanceFlowPart::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BalanceFlowPart2s(struct soap *soap, prodml22__BalanceFlowPart n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BalanceFlowPart2s(struct soap *soap, prodml23__BalanceFlowPart n) { - const char *s = soap_code_str(soap_codes_prodml22__BalanceFlowPart, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__BalanceFlowPart, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BalanceFlowPart(struct soap *soap, const char *tag, int id, const prodml22__BalanceFlowPart *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BalanceFlowPart(struct soap *soap, const char *tag, int id, const prodml23__BalanceFlowPart *a, const char *type) { if (!type) - type = "prodml22:BalanceFlowPart"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart), type) || soap_send(soap, soap_prodml22__BalanceFlowPart2s(soap, *a))) + type = "prodml23:BalanceFlowPart"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart), type) || soap_send(soap, soap_prodml23__BalanceFlowPart2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceFlowPart(struct soap *soap, const char *s, prodml22__BalanceFlowPart *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BalanceFlowPart(struct soap *soap, const char *s, prodml23__BalanceFlowPart *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__BalanceFlowPart, s); + map = soap_code(soap_codes_prodml23__BalanceFlowPart, s); if (map) - *a = (prodml22__BalanceFlowPart)map->code; + *a = (prodml23__BalanceFlowPart)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63814,81 +63809,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceFlowPart(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__BalanceFlowPart * SOAP_FMAC4 soap_in_prodml22__BalanceFlowPart(struct soap *soap, const char *tag, prodml22__BalanceFlowPart *a, const char *type) +SOAP_FMAC3 prodml23__BalanceFlowPart * SOAP_FMAC4 soap_in_prodml23__BalanceFlowPart(struct soap *soap, const char *tag, prodml23__BalanceFlowPart *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__BalanceFlowPart*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart, sizeof(prodml22__BalanceFlowPart), NULL, NULL, NULL, NULL); + a = (prodml23__BalanceFlowPart*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart, sizeof(prodml23__BalanceFlowPart), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__BalanceFlowPart(soap, soap_value(soap), a); + { int err = soap_s2prodml23__BalanceFlowPart(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__BalanceFlowPart *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart, sizeof(prodml22__BalanceFlowPart), 0, NULL, NULL); + { a = (prodml23__BalanceFlowPart *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart, sizeof(prodml23__BalanceFlowPart), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__BalanceFlowPart * SOAP_FMAC4 soap_new_prodml22__BalanceFlowPart(struct soap *soap, int n) +SOAP_FMAC3 prodml23__BalanceFlowPart * SOAP_FMAC4 soap_new_prodml23__BalanceFlowPart(struct soap *soap, int n) { - prodml22__BalanceFlowPart *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__BalanceFlowPart))); - for (prodml22__BalanceFlowPart *p = a; p && n--; ++p) - soap_default_prodml22__BalanceFlowPart(soap, p); + prodml23__BalanceFlowPart *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__BalanceFlowPart))); + for (prodml23__BalanceFlowPart *p = a; p && n--; ++p) + soap_default_prodml23__BalanceFlowPart(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BalanceFlowPart(struct soap *soap, const prodml22__BalanceFlowPart *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BalanceFlowPart(struct soap *soap, const prodml23__BalanceFlowPart *a, const char *tag, const char *type) { - if (soap_out_prodml22__BalanceFlowPart(soap, tag ? tag : "prodml22:BalanceFlowPart", -2, a, type)) + if (soap_out_prodml23__BalanceFlowPart(soap, tag ? tag : "prodml23:BalanceFlowPart", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BalanceFlowPart * SOAP_FMAC4 soap_get_prodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BalanceFlowPart * SOAP_FMAC4 soap_get_prodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BalanceFlowPart(soap, tag, p, type))) + if ((p = soap_in_prodml23__BalanceFlowPart(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__BalanceEventKind[] = -{ { (LONG64)prodml22__BalanceEventKind::bill_x0020of_x0020lading, "bill of lading" }, - { (LONG64)prodml22__BalanceEventKind::transaction_x0020date, "transaction date" }, - { (LONG64)prodml22__BalanceEventKind::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__BalanceEventKind[] = +{ { (LONG64)prodml23__BalanceEventKind::bill_x0020of_x0020lading, "bill of lading" }, + { (LONG64)prodml23__BalanceEventKind::transaction_x0020date, "transaction date" }, + { (LONG64)prodml23__BalanceEventKind::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BalanceEventKind2s(struct soap *soap, prodml22__BalanceEventKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BalanceEventKind2s(struct soap *soap, prodml23__BalanceEventKind n) { - const char *s = soap_code_str(soap_codes_prodml22__BalanceEventKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__BalanceEventKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BalanceEventKind(struct soap *soap, const char *tag, int id, const prodml22__BalanceEventKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BalanceEventKind(struct soap *soap, const char *tag, int id, const prodml23__BalanceEventKind *a, const char *type) { if (!type) - type = "prodml22:BalanceEventKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind), type) || soap_send(soap, soap_prodml22__BalanceEventKind2s(soap, *a))) + type = "prodml23:BalanceEventKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind), type) || soap_send(soap, soap_prodml23__BalanceEventKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceEventKind(struct soap *soap, const char *s, prodml22__BalanceEventKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BalanceEventKind(struct soap *soap, const char *s, prodml23__BalanceEventKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__BalanceEventKind, s); + map = soap_code(soap_codes_prodml23__BalanceEventKind, s); if (map) - *a = (prodml22__BalanceEventKind)map->code; + *a = (prodml23__BalanceEventKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63896,81 +63891,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceEventKind(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__BalanceEventKind * SOAP_FMAC4 soap_in_prodml22__BalanceEventKind(struct soap *soap, const char *tag, prodml22__BalanceEventKind *a, const char *type) +SOAP_FMAC3 prodml23__BalanceEventKind * SOAP_FMAC4 soap_in_prodml23__BalanceEventKind(struct soap *soap, const char *tag, prodml23__BalanceEventKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__BalanceEventKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind, sizeof(prodml22__BalanceEventKind), NULL, NULL, NULL, NULL); + a = (prodml23__BalanceEventKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind, sizeof(prodml23__BalanceEventKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__BalanceEventKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__BalanceEventKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__BalanceEventKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind, sizeof(prodml22__BalanceEventKind), 0, NULL, NULL); + { a = (prodml23__BalanceEventKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind, sizeof(prodml23__BalanceEventKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__BalanceEventKind * SOAP_FMAC4 soap_new_prodml22__BalanceEventKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__BalanceEventKind * SOAP_FMAC4 soap_new_prodml23__BalanceEventKind(struct soap *soap, int n) { - prodml22__BalanceEventKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__BalanceEventKind))); - for (prodml22__BalanceEventKind *p = a; p && n--; ++p) - soap_default_prodml22__BalanceEventKind(soap, p); + prodml23__BalanceEventKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__BalanceEventKind))); + for (prodml23__BalanceEventKind *p = a; p && n--; ++p) + soap_default_prodml23__BalanceEventKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BalanceEventKind(struct soap *soap, const prodml22__BalanceEventKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BalanceEventKind(struct soap *soap, const prodml23__BalanceEventKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__BalanceEventKind(soap, tag ? tag : "prodml22:BalanceEventKind", -2, a, type)) + if (soap_out_prodml23__BalanceEventKind(soap, tag ? tag : "prodml23:BalanceEventKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BalanceEventKind * SOAP_FMAC4 soap_get_prodml22__BalanceEventKind(struct soap *soap, prodml22__BalanceEventKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BalanceEventKind * SOAP_FMAC4 soap_get_prodml23__BalanceEventKind(struct soap *soap, prodml23__BalanceEventKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BalanceEventKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__BalanceEventKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__BalanceDestinationType[] = -{ { (LONG64)prodml22__BalanceDestinationType::harbor, "harbor" }, - { (LONG64)prodml22__BalanceDestinationType::terminal, "terminal" }, - { (LONG64)prodml22__BalanceDestinationType::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__BalanceDestinationType[] = +{ { (LONG64)prodml23__BalanceDestinationType::harbor, "harbor" }, + { (LONG64)prodml23__BalanceDestinationType::terminal, "terminal" }, + { (LONG64)prodml23__BalanceDestinationType::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BalanceDestinationType2s(struct soap *soap, prodml22__BalanceDestinationType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BalanceDestinationType2s(struct soap *soap, prodml23__BalanceDestinationType n) { - const char *s = soap_code_str(soap_codes_prodml22__BalanceDestinationType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__BalanceDestinationType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BalanceDestinationType(struct soap *soap, const char *tag, int id, const prodml22__BalanceDestinationType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BalanceDestinationType(struct soap *soap, const char *tag, int id, const prodml23__BalanceDestinationType *a, const char *type) { if (!type) - type = "prodml22:BalanceDestinationType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType), type) || soap_send(soap, soap_prodml22__BalanceDestinationType2s(soap, *a))) + type = "prodml23:BalanceDestinationType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType), type) || soap_send(soap, soap_prodml23__BalanceDestinationType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceDestinationType(struct soap *soap, const char *s, prodml22__BalanceDestinationType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BalanceDestinationType(struct soap *soap, const char *s, prodml23__BalanceDestinationType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__BalanceDestinationType, s); + map = soap_code(soap_codes_prodml23__BalanceDestinationType, s); if (map) - *a = (prodml22__BalanceDestinationType)map->code; + *a = (prodml23__BalanceDestinationType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -63978,84 +63973,84 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceDestinationType(struct soap return SOAP_OK; } -SOAP_FMAC3 prodml22__BalanceDestinationType * SOAP_FMAC4 soap_in_prodml22__BalanceDestinationType(struct soap *soap, const char *tag, prodml22__BalanceDestinationType *a, const char *type) +SOAP_FMAC3 prodml23__BalanceDestinationType * SOAP_FMAC4 soap_in_prodml23__BalanceDestinationType(struct soap *soap, const char *tag, prodml23__BalanceDestinationType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__BalanceDestinationType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType, sizeof(prodml22__BalanceDestinationType), NULL, NULL, NULL, NULL); + a = (prodml23__BalanceDestinationType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType, sizeof(prodml23__BalanceDestinationType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__BalanceDestinationType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__BalanceDestinationType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__BalanceDestinationType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType, sizeof(prodml22__BalanceDestinationType), 0, NULL, NULL); + { a = (prodml23__BalanceDestinationType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType, sizeof(prodml23__BalanceDestinationType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__BalanceDestinationType * SOAP_FMAC4 soap_new_prodml22__BalanceDestinationType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__BalanceDestinationType * SOAP_FMAC4 soap_new_prodml23__BalanceDestinationType(struct soap *soap, int n) { - prodml22__BalanceDestinationType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__BalanceDestinationType))); - for (prodml22__BalanceDestinationType *p = a; p && n--; ++p) - soap_default_prodml22__BalanceDestinationType(soap, p); + prodml23__BalanceDestinationType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__BalanceDestinationType))); + for (prodml23__BalanceDestinationType *p = a; p && n--; ++p) + soap_default_prodml23__BalanceDestinationType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BalanceDestinationType(struct soap *soap, const prodml22__BalanceDestinationType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BalanceDestinationType(struct soap *soap, const prodml23__BalanceDestinationType *a, const char *tag, const char *type) { - if (soap_out_prodml22__BalanceDestinationType(soap, tag ? tag : "prodml22:BalanceDestinationType", -2, a, type)) + if (soap_out_prodml23__BalanceDestinationType(soap, tag ? tag : "prodml23:BalanceDestinationType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BalanceDestinationType * SOAP_FMAC4 soap_get_prodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BalanceDestinationType * SOAP_FMAC4 soap_get_prodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BalanceDestinationType(soap, tag, p, type))) + if ((p = soap_in_prodml23__BalanceDestinationType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__SampleAction[] = -{ { (LONG64)prodml22__SampleAction::custodyTransfer, "custodyTransfer" }, - { (LONG64)prodml22__SampleAction::destroyed, "destroyed" }, - { (LONG64)prodml22__SampleAction::sampleTransfer, "sampleTransfer" }, - { (LONG64)prodml22__SampleAction::stored, "stored" }, - { (LONG64)prodml22__SampleAction::subSample_x0020Dead, "subSample Dead" }, - { (LONG64)prodml22__SampleAction::subSample_x0020Live, "subSample Live" }, +static const struct soap_code_map soap_codes_prodml23__SampleAction[] = +{ { (LONG64)prodml23__SampleAction::custodyTransfer, "custodyTransfer" }, + { (LONG64)prodml23__SampleAction::destroyed, "destroyed" }, + { (LONG64)prodml23__SampleAction::sampleTransfer, "sampleTransfer" }, + { (LONG64)prodml23__SampleAction::stored, "stored" }, + { (LONG64)prodml23__SampleAction::subSample_x0020Dead, "subSample Dead" }, + { (LONG64)prodml23__SampleAction::subSample_x0020Live, "subSample Live" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SampleAction2s(struct soap *soap, prodml22__SampleAction n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SampleAction2s(struct soap *soap, prodml23__SampleAction n) { - const char *s = soap_code_str(soap_codes_prodml22__SampleAction, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__SampleAction, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleAction(struct soap *soap, const char *tag, int id, const prodml22__SampleAction *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleAction(struct soap *soap, const char *tag, int id, const prodml23__SampleAction *a, const char *type) { if (!type) - type = "prodml22:SampleAction"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction), type) || soap_send(soap, soap_prodml22__SampleAction2s(soap, *a))) + type = "prodml23:SampleAction"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction), type) || soap_send(soap, soap_prodml23__SampleAction2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SampleAction(struct soap *soap, const char *s, prodml22__SampleAction *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SampleAction(struct soap *soap, const char *s, prodml23__SampleAction *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__SampleAction, s); + map = soap_code(soap_codes_prodml23__SampleAction, s); if (map) - *a = (prodml22__SampleAction)map->code; + *a = (prodml23__SampleAction)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64063,114 +64058,114 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SampleAction(struct soap *soap, con return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleAction * SOAP_FMAC4 soap_in_prodml22__SampleAction(struct soap *soap, const char *tag, prodml22__SampleAction *a, const char *type) +SOAP_FMAC3 prodml23__SampleAction * SOAP_FMAC4 soap_in_prodml23__SampleAction(struct soap *soap, const char *tag, prodml23__SampleAction *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__SampleAction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction, sizeof(prodml22__SampleAction), NULL, NULL, NULL, NULL); + a = (prodml23__SampleAction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction, sizeof(prodml23__SampleAction), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__SampleAction(soap, soap_value(soap), a); + { int err = soap_s2prodml23__SampleAction(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__SampleAction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction, sizeof(prodml22__SampleAction), 0, NULL, NULL); + { a = (prodml23__SampleAction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction, sizeof(prodml23__SampleAction), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__SampleAction * SOAP_FMAC4 soap_new_prodml22__SampleAction(struct soap *soap, int n) +SOAP_FMAC3 prodml23__SampleAction * SOAP_FMAC4 soap_new_prodml23__SampleAction(struct soap *soap, int n) { - prodml22__SampleAction *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__SampleAction))); - for (prodml22__SampleAction *p = a; p && n--; ++p) - soap_default_prodml22__SampleAction(soap, p); + prodml23__SampleAction *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__SampleAction))); + for (prodml23__SampleAction *p = a; p && n--; ++p) + soap_default_prodml23__SampleAction(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SampleAction(struct soap *soap, const prodml22__SampleAction *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SampleAction(struct soap *soap, const prodml23__SampleAction *a, const char *tag, const char *type) { - if (soap_out_prodml22__SampleAction(soap, tag ? tag : "prodml22:SampleAction", -2, a, type)) + if (soap_out_prodml23__SampleAction(soap, tag ? tag : "prodml23:SampleAction", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleAction * SOAP_FMAC4 soap_get_prodml22__SampleAction(struct soap *soap, prodml22__SampleAction *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleAction * SOAP_FMAC4 soap_get_prodml23__SampleAction(struct soap *soap, prodml23__SampleAction *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SampleAction(soap, tag, p, type))) + if ((p = soap_in_prodml23__SampleAction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FluidSampleKind[] = -{ { (LONG64)prodml22__FluidSampleKind::bhs_x0020_x0020samples, "bhs samples" }, - { (LONG64)prodml22__FluidSampleKind::blend_gas, "blend-gas" }, - { (LONG64)prodml22__FluidSampleKind::blend_liquid, "blend-liquid" }, - { (LONG64)prodml22__FluidSampleKind::brine, "brine" }, - { (LONG64)prodml22__FluidSampleKind::condensate, "condensate" }, - { (LONG64)prodml22__FluidSampleKind::filtrate, "filtrate" }, - { (LONG64)prodml22__FluidSampleKind::gas, "gas" }, - { (LONG64)prodml22__FluidSampleKind::gas_dry, "gas-dry" }, - { (LONG64)prodml22__FluidSampleKind::mud_x0020filtrate, "mud filtrate" }, - { (LONG64)prodml22__FluidSampleKind::mud_x0020sample, "mud sample" }, - { (LONG64)prodml22__FluidSampleKind::oil_x0020_x0026_x0020water, "oil & water" }, - { (LONG64)prodml22__FluidSampleKind::oil_base, "oil-base" }, - { (LONG64)prodml22__FluidSampleKind::oil_black, "oil-black" }, - { (LONG64)prodml22__FluidSampleKind::oil_dead, "oil-dead" }, - { (LONG64)prodml22__FluidSampleKind::oil_heavy, "oil-heavy" }, - { (LONG64)prodml22__FluidSampleKind::oil_unknown, "oil-unknown" }, - { (LONG64)prodml22__FluidSampleKind::oil_volatile, "oil-volatile" }, - { (LONG64)prodml22__FluidSampleKind::other, "other" }, - { (LONG64)prodml22__FluidSampleKind::recomb_fluid, "recomb-fluid" }, - { (LONG64)prodml22__FluidSampleKind::recomb_gas, "recomb-gas" }, - { (LONG64)prodml22__FluidSampleKind::rinse_post, "rinse-post" }, - { (LONG64)prodml22__FluidSampleKind::rinse_pre, "rinse-pre" }, - { (LONG64)prodml22__FluidSampleKind::solid, "solid" }, - { (LONG64)prodml22__FluidSampleKind::sto, "sto" }, - { (LONG64)prodml22__FluidSampleKind::toluene, "toluene" }, - { (LONG64)prodml22__FluidSampleKind::water, "water" }, - { (LONG64)prodml22__FluidSampleKind::water_x002fcondensate, "water/condensate" }, - { (LONG64)prodml22__FluidSampleKind::synthetic, "synthetic" }, - { (LONG64)prodml22__FluidSampleKind::separator_x0020water, "separator water" }, - { (LONG64)prodml22__FluidSampleKind::separator_x0020oil, "separator oil" }, - { (LONG64)prodml22__FluidSampleKind::separator_x0020gas, "separator gas" }, - { (LONG64)prodml22__FluidSampleKind::downhole_x0020cased, "downhole cased" }, - { (LONG64)prodml22__FluidSampleKind::downhole_x0020open, "downhole open" }, - { (LONG64)prodml22__FluidSampleKind::recombined, "recombined" }, - { (LONG64)prodml22__FluidSampleKind::wellhead, "wellhead" }, - { (LONG64)prodml22__FluidSampleKind::commingled, "commingled" }, +static const struct soap_code_map soap_codes_prodml23__FluidSampleKind[] = +{ { (LONG64)prodml23__FluidSampleKind::bhs_x0020_x0020samples, "bhs samples" }, + { (LONG64)prodml23__FluidSampleKind::blend_gas, "blend-gas" }, + { (LONG64)prodml23__FluidSampleKind::blend_liquid, "blend-liquid" }, + { (LONG64)prodml23__FluidSampleKind::brine, "brine" }, + { (LONG64)prodml23__FluidSampleKind::condensate, "condensate" }, + { (LONG64)prodml23__FluidSampleKind::filtrate, "filtrate" }, + { (LONG64)prodml23__FluidSampleKind::gas, "gas" }, + { (LONG64)prodml23__FluidSampleKind::gas_dry, "gas-dry" }, + { (LONG64)prodml23__FluidSampleKind::mud_x0020filtrate, "mud filtrate" }, + { (LONG64)prodml23__FluidSampleKind::mud_x0020sample, "mud sample" }, + { (LONG64)prodml23__FluidSampleKind::oil_x0020_x0026_x0020water, "oil & water" }, + { (LONG64)prodml23__FluidSampleKind::oil_base, "oil-base" }, + { (LONG64)prodml23__FluidSampleKind::oil_black, "oil-black" }, + { (LONG64)prodml23__FluidSampleKind::oil_dead, "oil-dead" }, + { (LONG64)prodml23__FluidSampleKind::oil_heavy, "oil-heavy" }, + { (LONG64)prodml23__FluidSampleKind::oil_unknown, "oil-unknown" }, + { (LONG64)prodml23__FluidSampleKind::oil_volatile, "oil-volatile" }, + { (LONG64)prodml23__FluidSampleKind::other, "other" }, + { (LONG64)prodml23__FluidSampleKind::recomb_fluid, "recomb-fluid" }, + { (LONG64)prodml23__FluidSampleKind::recomb_gas, "recomb-gas" }, + { (LONG64)prodml23__FluidSampleKind::rinse_post, "rinse-post" }, + { (LONG64)prodml23__FluidSampleKind::rinse_pre, "rinse-pre" }, + { (LONG64)prodml23__FluidSampleKind::solid, "solid" }, + { (LONG64)prodml23__FluidSampleKind::sto, "sto" }, + { (LONG64)prodml23__FluidSampleKind::toluene, "toluene" }, + { (LONG64)prodml23__FluidSampleKind::water, "water" }, + { (LONG64)prodml23__FluidSampleKind::water_x002fcondensate, "water/condensate" }, + { (LONG64)prodml23__FluidSampleKind::synthetic, "synthetic" }, + { (LONG64)prodml23__FluidSampleKind::separator_x0020water, "separator water" }, + { (LONG64)prodml23__FluidSampleKind::separator_x0020oil, "separator oil" }, + { (LONG64)prodml23__FluidSampleKind::separator_x0020gas, "separator gas" }, + { (LONG64)prodml23__FluidSampleKind::downhole_x0020cased, "downhole cased" }, + { (LONG64)prodml23__FluidSampleKind::downhole_x0020open, "downhole open" }, + { (LONG64)prodml23__FluidSampleKind::recombined, "recombined" }, + { (LONG64)prodml23__FluidSampleKind::wellhead, "wellhead" }, + { (LONG64)prodml23__FluidSampleKind::commingled, "commingled" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidSampleKind2s(struct soap *soap, prodml22__FluidSampleKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidSampleKind2s(struct soap *soap, prodml23__FluidSampleKind n) { - const char *s = soap_code_str(soap_codes_prodml22__FluidSampleKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FluidSampleKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleKind(struct soap *soap, const char *tag, int id, const prodml22__FluidSampleKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleKind(struct soap *soap, const char *tag, int id, const prodml23__FluidSampleKind *a, const char *type) { if (!type) - type = "prodml22:FluidSampleKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind), type) || soap_send(soap, soap_prodml22__FluidSampleKind2s(soap, *a))) + type = "prodml23:FluidSampleKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind), type) || soap_send(soap, soap_prodml23__FluidSampleKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidSampleKind(struct soap *soap, const char *s, prodml22__FluidSampleKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidSampleKind(struct soap *soap, const char *s, prodml23__FluidSampleKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FluidSampleKind, s); + map = soap_code(soap_codes_prodml23__FluidSampleKind, s); if (map) - *a = (prodml22__FluidSampleKind)map->code; + *a = (prodml23__FluidSampleKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64178,81 +64173,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidSampleKind(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleKind * SOAP_FMAC4 soap_in_prodml22__FluidSampleKind(struct soap *soap, const char *tag, prodml22__FluidSampleKind *a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleKind * SOAP_FMAC4 soap_in_prodml23__FluidSampleKind(struct soap *soap, const char *tag, prodml23__FluidSampleKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FluidSampleKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind, sizeof(prodml22__FluidSampleKind), NULL, NULL, NULL, NULL); + a = (prodml23__FluidSampleKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind, sizeof(prodml23__FluidSampleKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FluidSampleKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FluidSampleKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FluidSampleKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind, sizeof(prodml22__FluidSampleKind), 0, NULL, NULL); + { a = (prodml23__FluidSampleKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind, sizeof(prodml23__FluidSampleKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FluidSampleKind * SOAP_FMAC4 soap_new_prodml22__FluidSampleKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FluidSampleKind * SOAP_FMAC4 soap_new_prodml23__FluidSampleKind(struct soap *soap, int n) { - prodml22__FluidSampleKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FluidSampleKind))); - for (prodml22__FluidSampleKind *p = a; p && n--; ++p) - soap_default_prodml22__FluidSampleKind(soap, p); + prodml23__FluidSampleKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FluidSampleKind))); + for (prodml23__FluidSampleKind *p = a; p && n--; ++p) + soap_default_prodml23__FluidSampleKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidSampleKind(struct soap *soap, const prodml22__FluidSampleKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidSampleKind(struct soap *soap, const prodml23__FluidSampleKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidSampleKind(soap, tag ? tag : "prodml22:FluidSampleKind", -2, a, type)) + if (soap_out_prodml23__FluidSampleKind(soap, tag ? tag : "prodml23:FluidSampleKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidSampleKind * SOAP_FMAC4 soap_get_prodml22__FluidSampleKind(struct soap *soap, prodml22__FluidSampleKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleKind * SOAP_FMAC4 soap_get_prodml23__FluidSampleKind(struct soap *soap, prodml23__FluidSampleKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__WellboreStorageMechanismType[] = -{ { (LONG64)prodml22__WellboreStorageMechanismType::closed_x0020chamber, "closed chamber" }, - { (LONG64)prodml22__WellboreStorageMechanismType::full_x0020well, "full well" }, - { (LONG64)prodml22__WellboreStorageMechanismType::rising_x0020level, "rising level" }, +static const struct soap_code_map soap_codes_prodml23__WellboreStorageMechanismType[] = +{ { (LONG64)prodml23__WellboreStorageMechanismType::closed_x0020chamber, "closed chamber" }, + { (LONG64)prodml23__WellboreStorageMechanismType::full_x0020well, "full well" }, + { (LONG64)prodml23__WellboreStorageMechanismType::rising_x0020level, "rising level" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellboreStorageMechanismType2s(struct soap *soap, prodml22__WellboreStorageMechanismType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellboreStorageMechanismType2s(struct soap *soap, prodml23__WellboreStorageMechanismType n) { - const char *s = soap_code_str(soap_codes_prodml22__WellboreStorageMechanismType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__WellboreStorageMechanismType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreStorageMechanismType(struct soap *soap, const char *tag, int id, const prodml22__WellboreStorageMechanismType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreStorageMechanismType(struct soap *soap, const char *tag, int id, const prodml23__WellboreStorageMechanismType *a, const char *type) { if (!type) - type = "prodml22:WellboreStorageMechanismType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType), type) || soap_send(soap, soap_prodml22__WellboreStorageMechanismType2s(soap, *a))) + type = "prodml23:WellboreStorageMechanismType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType), type) || soap_send(soap, soap_prodml23__WellboreStorageMechanismType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellboreStorageMechanismType(struct soap *soap, const char *s, prodml22__WellboreStorageMechanismType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellboreStorageMechanismType(struct soap *soap, const char *s, prodml23__WellboreStorageMechanismType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__WellboreStorageMechanismType, s); + map = soap_code(soap_codes_prodml23__WellboreStorageMechanismType, s); if (map) - *a = (prodml22__WellboreStorageMechanismType)map->code; + *a = (prodml23__WellboreStorageMechanismType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64260,80 +64255,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellboreStorageMechanismType(struct return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreStorageMechanismType * SOAP_FMAC4 soap_in_prodml22__WellboreStorageMechanismType(struct soap *soap, const char *tag, prodml22__WellboreStorageMechanismType *a, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageMechanismType * SOAP_FMAC4 soap_in_prodml23__WellboreStorageMechanismType(struct soap *soap, const char *tag, prodml23__WellboreStorageMechanismType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__WellboreStorageMechanismType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType, sizeof(prodml22__WellboreStorageMechanismType), NULL, NULL, NULL, NULL); + a = (prodml23__WellboreStorageMechanismType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType, sizeof(prodml23__WellboreStorageMechanismType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__WellboreStorageMechanismType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__WellboreStorageMechanismType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__WellboreStorageMechanismType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType, sizeof(prodml22__WellboreStorageMechanismType), 0, NULL, NULL); + { a = (prodml23__WellboreStorageMechanismType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType, sizeof(prodml23__WellboreStorageMechanismType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__WellboreStorageMechanismType * SOAP_FMAC4 soap_new_prodml22__WellboreStorageMechanismType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__WellboreStorageMechanismType * SOAP_FMAC4 soap_new_prodml23__WellboreStorageMechanismType(struct soap *soap, int n) { - prodml22__WellboreStorageMechanismType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__WellboreStorageMechanismType))); - for (prodml22__WellboreStorageMechanismType *p = a; p && n--; ++p) - soap_default_prodml22__WellboreStorageMechanismType(soap, p); + prodml23__WellboreStorageMechanismType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__WellboreStorageMechanismType))); + for (prodml23__WellboreStorageMechanismType *p = a; p && n--; ++p) + soap_default_prodml23__WellboreStorageMechanismType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellboreStorageMechanismType(struct soap *soap, const prodml22__WellboreStorageMechanismType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellboreStorageMechanismType(struct soap *soap, const prodml23__WellboreStorageMechanismType *a, const char *tag, const char *type) { - if (soap_out_prodml22__WellboreStorageMechanismType(soap, tag ? tag : "prodml22:WellboreStorageMechanismType", -2, a, type)) + if (soap_out_prodml23__WellboreStorageMechanismType(soap, tag ? tag : "prodml23:WellboreStorageMechanismType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreStorageMechanismType * SOAP_FMAC4 soap_get_prodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageMechanismType * SOAP_FMAC4 soap_get_prodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreStorageMechanismType(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreStorageMechanismType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__UpperBoundaryType[] = -{ { (LONG64)prodml22__UpperBoundaryType::constant_x0020pressure, "constant pressure" }, - { (LONG64)prodml22__UpperBoundaryType::no_flow, "no-flow" }, +static const struct soap_code_map soap_codes_prodml23__UpperBoundaryType[] = +{ { (LONG64)prodml23__UpperBoundaryType::constant_x0020pressure, "constant pressure" }, + { (LONG64)prodml23__UpperBoundaryType::no_flow, "no-flow" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__UpperBoundaryType2s(struct soap *soap, prodml22__UpperBoundaryType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__UpperBoundaryType2s(struct soap *soap, prodml23__UpperBoundaryType n) { - const char *s = soap_code_str(soap_codes_prodml22__UpperBoundaryType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__UpperBoundaryType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__UpperBoundaryType(struct soap *soap, const char *tag, int id, const prodml22__UpperBoundaryType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__UpperBoundaryType(struct soap *soap, const char *tag, int id, const prodml23__UpperBoundaryType *a, const char *type) { if (!type) - type = "prodml22:UpperBoundaryType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType), type) || soap_send(soap, soap_prodml22__UpperBoundaryType2s(soap, *a))) + type = "prodml23:UpperBoundaryType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType), type) || soap_send(soap, soap_prodml23__UpperBoundaryType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__UpperBoundaryType(struct soap *soap, const char *s, prodml22__UpperBoundaryType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__UpperBoundaryType(struct soap *soap, const char *s, prodml23__UpperBoundaryType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__UpperBoundaryType, s); + map = soap_code(soap_codes_prodml23__UpperBoundaryType, s); if (map) - *a = (prodml22__UpperBoundaryType)map->code; + *a = (prodml23__UpperBoundaryType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64341,80 +64336,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__UpperBoundaryType(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__UpperBoundaryType * SOAP_FMAC4 soap_in_prodml22__UpperBoundaryType(struct soap *soap, const char *tag, prodml22__UpperBoundaryType *a, const char *type) +SOAP_FMAC3 prodml23__UpperBoundaryType * SOAP_FMAC4 soap_in_prodml23__UpperBoundaryType(struct soap *soap, const char *tag, prodml23__UpperBoundaryType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__UpperBoundaryType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType, sizeof(prodml22__UpperBoundaryType), NULL, NULL, NULL, NULL); + a = (prodml23__UpperBoundaryType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType, sizeof(prodml23__UpperBoundaryType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__UpperBoundaryType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__UpperBoundaryType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__UpperBoundaryType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType, sizeof(prodml22__UpperBoundaryType), 0, NULL, NULL); + { a = (prodml23__UpperBoundaryType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType, sizeof(prodml23__UpperBoundaryType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__UpperBoundaryType * SOAP_FMAC4 soap_new_prodml22__UpperBoundaryType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__UpperBoundaryType * SOAP_FMAC4 soap_new_prodml23__UpperBoundaryType(struct soap *soap, int n) { - prodml22__UpperBoundaryType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__UpperBoundaryType))); - for (prodml22__UpperBoundaryType *p = a; p && n--; ++p) - soap_default_prodml22__UpperBoundaryType(soap, p); + prodml23__UpperBoundaryType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__UpperBoundaryType))); + for (prodml23__UpperBoundaryType *p = a; p && n--; ++p) + soap_default_prodml23__UpperBoundaryType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__UpperBoundaryType(struct soap *soap, const prodml22__UpperBoundaryType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__UpperBoundaryType(struct soap *soap, const prodml23__UpperBoundaryType *a, const char *tag, const char *type) { - if (soap_out_prodml22__UpperBoundaryType(soap, tag ? tag : "prodml22:UpperBoundaryType", -2, a, type)) + if (soap_out_prodml23__UpperBoundaryType(soap, tag ? tag : "prodml23:UpperBoundaryType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__UpperBoundaryType * SOAP_FMAC4 soap_get_prodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__UpperBoundaryType * SOAP_FMAC4 soap_get_prodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__UpperBoundaryType(soap, tag, p, type))) + if ((p = soap_in_prodml23__UpperBoundaryType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ParameterDirection[] = -{ { (LONG64)prodml22__ParameterDirection::input, "input" }, - { (LONG64)prodml22__ParameterDirection::output, "output" }, +static const struct soap_code_map soap_codes_prodml23__ParameterDirection[] = +{ { (LONG64)prodml23__ParameterDirection::input, "input" }, + { (LONG64)prodml23__ParameterDirection::output, "output" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ParameterDirection2s(struct soap *soap, prodml22__ParameterDirection n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ParameterDirection2s(struct soap *soap, prodml23__ParameterDirection n) { - const char *s = soap_code_str(soap_codes_prodml22__ParameterDirection, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ParameterDirection, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ParameterDirection(struct soap *soap, const char *tag, int id, const prodml22__ParameterDirection *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ParameterDirection(struct soap *soap, const char *tag, int id, const prodml23__ParameterDirection *a, const char *type) { if (!type) - type = "prodml22:ParameterDirection"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection), type) || soap_send(soap, soap_prodml22__ParameterDirection2s(soap, *a))) + type = "prodml23:ParameterDirection"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection), type) || soap_send(soap, soap_prodml23__ParameterDirection2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ParameterDirection(struct soap *soap, const char *s, prodml22__ParameterDirection *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ParameterDirection(struct soap *soap, const char *s, prodml23__ParameterDirection *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ParameterDirection, s); + map = soap_code(soap_codes_prodml23__ParameterDirection, s); if (map) - *a = (prodml22__ParameterDirection)map->code; + *a = (prodml23__ParameterDirection)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64422,80 +64417,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ParameterDirection(struct soap *soa return SOAP_OK; } -SOAP_FMAC3 prodml22__ParameterDirection * SOAP_FMAC4 soap_in_prodml22__ParameterDirection(struct soap *soap, const char *tag, prodml22__ParameterDirection *a, const char *type) +SOAP_FMAC3 prodml23__ParameterDirection * SOAP_FMAC4 soap_in_prodml23__ParameterDirection(struct soap *soap, const char *tag, prodml23__ParameterDirection *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ParameterDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection, sizeof(prodml22__ParameterDirection), NULL, NULL, NULL, NULL); + a = (prodml23__ParameterDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection, sizeof(prodml23__ParameterDirection), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ParameterDirection(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ParameterDirection(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ParameterDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection, SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection, sizeof(prodml22__ParameterDirection), 0, NULL, NULL); + { a = (prodml23__ParameterDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection, SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection, sizeof(prodml23__ParameterDirection), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ParameterDirection * SOAP_FMAC4 soap_new_prodml22__ParameterDirection(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ParameterDirection * SOAP_FMAC4 soap_new_prodml23__ParameterDirection(struct soap *soap, int n) { - prodml22__ParameterDirection *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ParameterDirection))); - for (prodml22__ParameterDirection *p = a; p && n--; ++p) - soap_default_prodml22__ParameterDirection(soap, p); + prodml23__ParameterDirection *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ParameterDirection))); + for (prodml23__ParameterDirection *p = a; p && n--; ++p) + soap_default_prodml23__ParameterDirection(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ParameterDirection(struct soap *soap, const prodml22__ParameterDirection *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ParameterDirection(struct soap *soap, const prodml23__ParameterDirection *a, const char *tag, const char *type) { - if (soap_out_prodml22__ParameterDirection(soap, tag ? tag : "prodml22:ParameterDirection", -2, a, type)) + if (soap_out_prodml23__ParameterDirection(soap, tag ? tag : "prodml23:ParameterDirection", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ParameterDirection * SOAP_FMAC4 soap_get_prodml22__ParameterDirection(struct soap *soap, prodml22__ParameterDirection *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ParameterDirection * SOAP_FMAC4 soap_get_prodml23__ParameterDirection(struct soap *soap, prodml23__ParameterDirection *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ParameterDirection(soap, tag, p, type))) + if ((p = soap_in_prodml23__ParameterDirection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__LowerBoundaryType[] = -{ { (LONG64)prodml22__LowerBoundaryType::constant_x0020pressure, "constant pressure" }, - { (LONG64)prodml22__LowerBoundaryType::no_flow, "no-flow" }, +static const struct soap_code_map soap_codes_prodml23__LowerBoundaryType[] = +{ { (LONG64)prodml23__LowerBoundaryType::constant_x0020pressure, "constant pressure" }, + { (LONG64)prodml23__LowerBoundaryType::no_flow, "no-flow" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__LowerBoundaryType2s(struct soap *soap, prodml22__LowerBoundaryType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__LowerBoundaryType2s(struct soap *soap, prodml23__LowerBoundaryType n) { - const char *s = soap_code_str(soap_codes_prodml22__LowerBoundaryType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__LowerBoundaryType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LowerBoundaryType(struct soap *soap, const char *tag, int id, const prodml22__LowerBoundaryType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LowerBoundaryType(struct soap *soap, const char *tag, int id, const prodml23__LowerBoundaryType *a, const char *type) { if (!type) - type = "prodml22:LowerBoundaryType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType), type) || soap_send(soap, soap_prodml22__LowerBoundaryType2s(soap, *a))) + type = "prodml23:LowerBoundaryType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType), type) || soap_send(soap, soap_prodml23__LowerBoundaryType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LowerBoundaryType(struct soap *soap, const char *s, prodml22__LowerBoundaryType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__LowerBoundaryType(struct soap *soap, const char *s, prodml23__LowerBoundaryType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__LowerBoundaryType, s); + map = soap_code(soap_codes_prodml23__LowerBoundaryType, s); if (map) - *a = (prodml22__LowerBoundaryType)map->code; + *a = (prodml23__LowerBoundaryType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64503,82 +64498,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LowerBoundaryType(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__LowerBoundaryType * SOAP_FMAC4 soap_in_prodml22__LowerBoundaryType(struct soap *soap, const char *tag, prodml22__LowerBoundaryType *a, const char *type) +SOAP_FMAC3 prodml23__LowerBoundaryType * SOAP_FMAC4 soap_in_prodml23__LowerBoundaryType(struct soap *soap, const char *tag, prodml23__LowerBoundaryType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__LowerBoundaryType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType, sizeof(prodml22__LowerBoundaryType), NULL, NULL, NULL, NULL); + a = (prodml23__LowerBoundaryType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType, sizeof(prodml23__LowerBoundaryType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__LowerBoundaryType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__LowerBoundaryType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__LowerBoundaryType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType, sizeof(prodml22__LowerBoundaryType), 0, NULL, NULL); + { a = (prodml23__LowerBoundaryType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType, sizeof(prodml23__LowerBoundaryType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__LowerBoundaryType * SOAP_FMAC4 soap_new_prodml22__LowerBoundaryType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__LowerBoundaryType * SOAP_FMAC4 soap_new_prodml23__LowerBoundaryType(struct soap *soap, int n) { - prodml22__LowerBoundaryType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__LowerBoundaryType))); - for (prodml22__LowerBoundaryType *p = a; p && n--; ++p) - soap_default_prodml22__LowerBoundaryType(soap, p); + prodml23__LowerBoundaryType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__LowerBoundaryType))); + for (prodml23__LowerBoundaryType *p = a; p && n--; ++p) + soap_default_prodml23__LowerBoundaryType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__LowerBoundaryType(struct soap *soap, const prodml22__LowerBoundaryType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__LowerBoundaryType(struct soap *soap, const prodml23__LowerBoundaryType *a, const char *tag, const char *type) { - if (soap_out_prodml22__LowerBoundaryType(soap, tag ? tag : "prodml22:LowerBoundaryType", -2, a, type)) + if (soap_out_prodml23__LowerBoundaryType(soap, tag ? tag : "prodml23:LowerBoundaryType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LowerBoundaryType * SOAP_FMAC4 soap_get_prodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LowerBoundaryType * SOAP_FMAC4 soap_get_prodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LowerBoundaryType(soap, tag, p, type))) + if ((p = soap_in_prodml23__LowerBoundaryType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FractureModelType[] = -{ { (LONG64)prodml22__FractureModelType::compressible_x0020finite_x0020conductivity, "compressible finite conductivity" }, - { (LONG64)prodml22__FractureModelType::finite_x0020conductivity, "finite conductivity" }, - { (LONG64)prodml22__FractureModelType::infinite_x0020conductivity, "infinite conductivity" }, - { (LONG64)prodml22__FractureModelType::uniform_x0020flux, "uniform flux" }, +static const struct soap_code_map soap_codes_prodml23__FractureModelType[] = +{ { (LONG64)prodml23__FractureModelType::compressible_x0020finite_x0020conductivity, "compressible finite conductivity" }, + { (LONG64)prodml23__FractureModelType::finite_x0020conductivity, "finite conductivity" }, + { (LONG64)prodml23__FractureModelType::infinite_x0020conductivity, "infinite conductivity" }, + { (LONG64)prodml23__FractureModelType::uniform_x0020flux, "uniform flux" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FractureModelType2s(struct soap *soap, prodml22__FractureModelType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FractureModelType2s(struct soap *soap, prodml23__FractureModelType n) { - const char *s = soap_code_str(soap_codes_prodml22__FractureModelType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FractureModelType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureModelType(struct soap *soap, const char *tag, int id, const prodml22__FractureModelType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureModelType(struct soap *soap, const char *tag, int id, const prodml23__FractureModelType *a, const char *type) { if (!type) - type = "prodml22:FractureModelType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType), type) || soap_send(soap, soap_prodml22__FractureModelType2s(soap, *a))) + type = "prodml23:FractureModelType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType), type) || soap_send(soap, soap_prodml23__FractureModelType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FractureModelType(struct soap *soap, const char *s, prodml22__FractureModelType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FractureModelType(struct soap *soap, const char *s, prodml23__FractureModelType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FractureModelType, s); + map = soap_code(soap_codes_prodml23__FractureModelType, s); if (map) - *a = (prodml22__FractureModelType)map->code; + *a = (prodml23__FractureModelType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64586,80 +64581,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FractureModelType(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureModelType * SOAP_FMAC4 soap_in_prodml22__FractureModelType(struct soap *soap, const char *tag, prodml22__FractureModelType *a, const char *type) +SOAP_FMAC3 prodml23__FractureModelType * SOAP_FMAC4 soap_in_prodml23__FractureModelType(struct soap *soap, const char *tag, prodml23__FractureModelType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FractureModelType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType, sizeof(prodml22__FractureModelType), NULL, NULL, NULL, NULL); + a = (prodml23__FractureModelType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType, sizeof(prodml23__FractureModelType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FractureModelType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FractureModelType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FractureModelType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType, sizeof(prodml22__FractureModelType), 0, NULL, NULL); + { a = (prodml23__FractureModelType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType, sizeof(prodml23__FractureModelType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FractureModelType * SOAP_FMAC4 soap_new_prodml22__FractureModelType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FractureModelType * SOAP_FMAC4 soap_new_prodml23__FractureModelType(struct soap *soap, int n) { - prodml22__FractureModelType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FractureModelType))); - for (prodml22__FractureModelType *p = a; p && n--; ++p) - soap_default_prodml22__FractureModelType(soap, p); + prodml23__FractureModelType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FractureModelType))); + for (prodml23__FractureModelType *p = a; p && n--; ++p) + soap_default_prodml23__FractureModelType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FractureModelType(struct soap *soap, const prodml22__FractureModelType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FractureModelType(struct soap *soap, const prodml23__FractureModelType *a, const char *tag, const char *type) { - if (soap_out_prodml22__FractureModelType(soap, tag ? tag : "prodml22:FractureModelType", -2, a, type)) + if (soap_out_prodml23__FractureModelType(soap, tag ? tag : "prodml23:FractureModelType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureModelType * SOAP_FMAC4 soap_get_prodml22__FractureModelType(struct soap *soap, prodml22__FractureModelType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureModelType * SOAP_FMAC4 soap_get_prodml23__FractureModelType(struct soap *soap, prodml23__FractureModelType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureModelType(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureModelType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__Boundary4Type[] = -{ { (LONG64)prodml22__Boundary4Type::constant_x0020pressure, "constant pressure" }, - { (LONG64)prodml22__Boundary4Type::no_flow, "no-flow" }, +static const struct soap_code_map soap_codes_prodml23__Boundary4Type[] = +{ { (LONG64)prodml23__Boundary4Type::constant_x0020pressure, "constant pressure" }, + { (LONG64)prodml23__Boundary4Type::no_flow, "no-flow" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary4Type2s(struct soap *soap, prodml22__Boundary4Type n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary4Type2s(struct soap *soap, prodml23__Boundary4Type n) { - const char *s = soap_code_str(soap_codes_prodml22__Boundary4Type, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__Boundary4Type, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary4Type(struct soap *soap, const char *tag, int id, const prodml22__Boundary4Type *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary4Type(struct soap *soap, const char *tag, int id, const prodml23__Boundary4Type *a, const char *type) { if (!type) - type = "prodml22:Boundary4Type"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type), type) || soap_send(soap, soap_prodml22__Boundary4Type2s(soap, *a))) + type = "prodml23:Boundary4Type"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type), type) || soap_send(soap, soap_prodml23__Boundary4Type2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary4Type(struct soap *soap, const char *s, prodml22__Boundary4Type *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary4Type(struct soap *soap, const char *s, prodml23__Boundary4Type *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__Boundary4Type, s); + map = soap_code(soap_codes_prodml23__Boundary4Type, s); if (map) - *a = (prodml22__Boundary4Type)map->code; + *a = (prodml23__Boundary4Type)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64667,80 +64662,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary4Type(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary4Type * SOAP_FMAC4 soap_in_prodml22__Boundary4Type(struct soap *soap, const char *tag, prodml22__Boundary4Type *a, const char *type) +SOAP_FMAC3 prodml23__Boundary4Type * SOAP_FMAC4 soap_in_prodml23__Boundary4Type(struct soap *soap, const char *tag, prodml23__Boundary4Type *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__Boundary4Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type, sizeof(prodml22__Boundary4Type), NULL, NULL, NULL, NULL); + a = (prodml23__Boundary4Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type, sizeof(prodml23__Boundary4Type), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__Boundary4Type(soap, soap_value(soap), a); + { int err = soap_s2prodml23__Boundary4Type(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__Boundary4Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type, sizeof(prodml22__Boundary4Type), 0, NULL, NULL); + { a = (prodml23__Boundary4Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type, sizeof(prodml23__Boundary4Type), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__Boundary4Type * SOAP_FMAC4 soap_new_prodml22__Boundary4Type(struct soap *soap, int n) +SOAP_FMAC3 prodml23__Boundary4Type * SOAP_FMAC4 soap_new_prodml23__Boundary4Type(struct soap *soap, int n) { - prodml22__Boundary4Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__Boundary4Type))); - for (prodml22__Boundary4Type *p = a; p && n--; ++p) - soap_default_prodml22__Boundary4Type(soap, p); + prodml23__Boundary4Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__Boundary4Type))); + for (prodml23__Boundary4Type *p = a; p && n--; ++p) + soap_default_prodml23__Boundary4Type(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary4Type(struct soap *soap, const prodml22__Boundary4Type *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary4Type(struct soap *soap, const prodml23__Boundary4Type *a, const char *tag, const char *type) { - if (soap_out_prodml22__Boundary4Type(soap, tag ? tag : "prodml22:Boundary4Type", -2, a, type)) + if (soap_out_prodml23__Boundary4Type(soap, tag ? tag : "prodml23:Boundary4Type", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Boundary4Type * SOAP_FMAC4 soap_get_prodml22__Boundary4Type(struct soap *soap, prodml22__Boundary4Type *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Boundary4Type * SOAP_FMAC4 soap_get_prodml23__Boundary4Type(struct soap *soap, prodml23__Boundary4Type *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Boundary4Type(soap, tag, p, type))) + if ((p = soap_in_prodml23__Boundary4Type(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__Boundary3Type[] = -{ { (LONG64)prodml22__Boundary3Type::constant_x0020pressure, "constant pressure" }, - { (LONG64)prodml22__Boundary3Type::no_flow, "no-flow" }, +static const struct soap_code_map soap_codes_prodml23__Boundary3Type[] = +{ { (LONG64)prodml23__Boundary3Type::constant_x0020pressure, "constant pressure" }, + { (LONG64)prodml23__Boundary3Type::no_flow, "no-flow" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary3Type2s(struct soap *soap, prodml22__Boundary3Type n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary3Type2s(struct soap *soap, prodml23__Boundary3Type n) { - const char *s = soap_code_str(soap_codes_prodml22__Boundary3Type, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__Boundary3Type, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary3Type(struct soap *soap, const char *tag, int id, const prodml22__Boundary3Type *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary3Type(struct soap *soap, const char *tag, int id, const prodml23__Boundary3Type *a, const char *type) { if (!type) - type = "prodml22:Boundary3Type"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type), type) || soap_send(soap, soap_prodml22__Boundary3Type2s(soap, *a))) + type = "prodml23:Boundary3Type"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type), type) || soap_send(soap, soap_prodml23__Boundary3Type2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary3Type(struct soap *soap, const char *s, prodml22__Boundary3Type *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary3Type(struct soap *soap, const char *s, prodml23__Boundary3Type *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__Boundary3Type, s); + map = soap_code(soap_codes_prodml23__Boundary3Type, s); if (map) - *a = (prodml22__Boundary3Type)map->code; + *a = (prodml23__Boundary3Type)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64748,80 +64743,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary3Type(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary3Type * SOAP_FMAC4 soap_in_prodml22__Boundary3Type(struct soap *soap, const char *tag, prodml22__Boundary3Type *a, const char *type) +SOAP_FMAC3 prodml23__Boundary3Type * SOAP_FMAC4 soap_in_prodml23__Boundary3Type(struct soap *soap, const char *tag, prodml23__Boundary3Type *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__Boundary3Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type, sizeof(prodml22__Boundary3Type), NULL, NULL, NULL, NULL); + a = (prodml23__Boundary3Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type, sizeof(prodml23__Boundary3Type), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__Boundary3Type(soap, soap_value(soap), a); + { int err = soap_s2prodml23__Boundary3Type(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__Boundary3Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type, sizeof(prodml22__Boundary3Type), 0, NULL, NULL); + { a = (prodml23__Boundary3Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type, sizeof(prodml23__Boundary3Type), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__Boundary3Type * SOAP_FMAC4 soap_new_prodml22__Boundary3Type(struct soap *soap, int n) +SOAP_FMAC3 prodml23__Boundary3Type * SOAP_FMAC4 soap_new_prodml23__Boundary3Type(struct soap *soap, int n) { - prodml22__Boundary3Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__Boundary3Type))); - for (prodml22__Boundary3Type *p = a; p && n--; ++p) - soap_default_prodml22__Boundary3Type(soap, p); + prodml23__Boundary3Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__Boundary3Type))); + for (prodml23__Boundary3Type *p = a; p && n--; ++p) + soap_default_prodml23__Boundary3Type(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary3Type(struct soap *soap, const prodml22__Boundary3Type *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary3Type(struct soap *soap, const prodml23__Boundary3Type *a, const char *tag, const char *type) { - if (soap_out_prodml22__Boundary3Type(soap, tag ? tag : "prodml22:Boundary3Type", -2, a, type)) + if (soap_out_prodml23__Boundary3Type(soap, tag ? tag : "prodml23:Boundary3Type", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Boundary3Type * SOAP_FMAC4 soap_get_prodml22__Boundary3Type(struct soap *soap, prodml22__Boundary3Type *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Boundary3Type * SOAP_FMAC4 soap_get_prodml23__Boundary3Type(struct soap *soap, prodml23__Boundary3Type *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Boundary3Type(soap, tag, p, type))) + if ((p = soap_in_prodml23__Boundary3Type(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__Boundary2Type[] = -{ { (LONG64)prodml22__Boundary2Type::constant_x0020pressure, "constant pressure" }, - { (LONG64)prodml22__Boundary2Type::no_flow, "no-flow" }, +static const struct soap_code_map soap_codes_prodml23__Boundary2Type[] = +{ { (LONG64)prodml23__Boundary2Type::constant_x0020pressure, "constant pressure" }, + { (LONG64)prodml23__Boundary2Type::no_flow, "no-flow" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary2Type2s(struct soap *soap, prodml22__Boundary2Type n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary2Type2s(struct soap *soap, prodml23__Boundary2Type n) { - const char *s = soap_code_str(soap_codes_prodml22__Boundary2Type, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__Boundary2Type, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary2Type(struct soap *soap, const char *tag, int id, const prodml22__Boundary2Type *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary2Type(struct soap *soap, const char *tag, int id, const prodml23__Boundary2Type *a, const char *type) { if (!type) - type = "prodml22:Boundary2Type"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type), type) || soap_send(soap, soap_prodml22__Boundary2Type2s(soap, *a))) + type = "prodml23:Boundary2Type"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type), type) || soap_send(soap, soap_prodml23__Boundary2Type2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary2Type(struct soap *soap, const char *s, prodml22__Boundary2Type *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary2Type(struct soap *soap, const char *s, prodml23__Boundary2Type *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__Boundary2Type, s); + map = soap_code(soap_codes_prodml23__Boundary2Type, s); if (map) - *a = (prodml22__Boundary2Type)map->code; + *a = (prodml23__Boundary2Type)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64829,80 +64824,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary2Type(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary2Type * SOAP_FMAC4 soap_in_prodml22__Boundary2Type(struct soap *soap, const char *tag, prodml22__Boundary2Type *a, const char *type) +SOAP_FMAC3 prodml23__Boundary2Type * SOAP_FMAC4 soap_in_prodml23__Boundary2Type(struct soap *soap, const char *tag, prodml23__Boundary2Type *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__Boundary2Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type, sizeof(prodml22__Boundary2Type), NULL, NULL, NULL, NULL); + a = (prodml23__Boundary2Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type, sizeof(prodml23__Boundary2Type), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__Boundary2Type(soap, soap_value(soap), a); + { int err = soap_s2prodml23__Boundary2Type(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__Boundary2Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type, sizeof(prodml22__Boundary2Type), 0, NULL, NULL); + { a = (prodml23__Boundary2Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type, sizeof(prodml23__Boundary2Type), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__Boundary2Type * SOAP_FMAC4 soap_new_prodml22__Boundary2Type(struct soap *soap, int n) +SOAP_FMAC3 prodml23__Boundary2Type * SOAP_FMAC4 soap_new_prodml23__Boundary2Type(struct soap *soap, int n) { - prodml22__Boundary2Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__Boundary2Type))); - for (prodml22__Boundary2Type *p = a; p && n--; ++p) - soap_default_prodml22__Boundary2Type(soap, p); + prodml23__Boundary2Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__Boundary2Type))); + for (prodml23__Boundary2Type *p = a; p && n--; ++p) + soap_default_prodml23__Boundary2Type(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary2Type(struct soap *soap, const prodml22__Boundary2Type *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary2Type(struct soap *soap, const prodml23__Boundary2Type *a, const char *tag, const char *type) { - if (soap_out_prodml22__Boundary2Type(soap, tag ? tag : "prodml22:Boundary2Type", -2, a, type)) + if (soap_out_prodml23__Boundary2Type(soap, tag ? tag : "prodml23:Boundary2Type", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Boundary2Type * SOAP_FMAC4 soap_get_prodml22__Boundary2Type(struct soap *soap, prodml22__Boundary2Type *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Boundary2Type * SOAP_FMAC4 soap_get_prodml23__Boundary2Type(struct soap *soap, prodml23__Boundary2Type *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Boundary2Type(soap, tag, p, type))) + if ((p = soap_in_prodml23__Boundary2Type(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__Boundary1Type[] = -{ { (LONG64)prodml22__Boundary1Type::constant_x0020pressure, "constant pressure" }, - { (LONG64)prodml22__Boundary1Type::no_flow, "no-flow" }, +static const struct soap_code_map soap_codes_prodml23__Boundary1Type[] = +{ { (LONG64)prodml23__Boundary1Type::constant_x0020pressure, "constant pressure" }, + { (LONG64)prodml23__Boundary1Type::no_flow, "no-flow" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary1Type2s(struct soap *soap, prodml22__Boundary1Type n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary1Type2s(struct soap *soap, prodml23__Boundary1Type n) { - const char *s = soap_code_str(soap_codes_prodml22__Boundary1Type, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__Boundary1Type, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary1Type(struct soap *soap, const char *tag, int id, const prodml22__Boundary1Type *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary1Type(struct soap *soap, const char *tag, int id, const prodml23__Boundary1Type *a, const char *type) { if (!type) - type = "prodml22:Boundary1Type"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type), type) || soap_send(soap, soap_prodml22__Boundary1Type2s(soap, *a))) + type = "prodml23:Boundary1Type"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type), type) || soap_send(soap, soap_prodml23__Boundary1Type2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary1Type(struct soap *soap, const char *s, prodml22__Boundary1Type *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary1Type(struct soap *soap, const char *s, prodml23__Boundary1Type *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__Boundary1Type, s); + map = soap_code(soap_codes_prodml23__Boundary1Type, s); if (map) - *a = (prodml22__Boundary1Type)map->code; + *a = (prodml23__Boundary1Type)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64910,81 +64905,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary1Type(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary1Type * SOAP_FMAC4 soap_in_prodml22__Boundary1Type(struct soap *soap, const char *tag, prodml22__Boundary1Type *a, const char *type) +SOAP_FMAC3 prodml23__Boundary1Type * SOAP_FMAC4 soap_in_prodml23__Boundary1Type(struct soap *soap, const char *tag, prodml23__Boundary1Type *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__Boundary1Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type, sizeof(prodml22__Boundary1Type), NULL, NULL, NULL, NULL); + a = (prodml23__Boundary1Type*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type, sizeof(prodml23__Boundary1Type), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__Boundary1Type(soap, soap_value(soap), a); + { int err = soap_s2prodml23__Boundary1Type(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__Boundary1Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type, SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type, sizeof(prodml22__Boundary1Type), 0, NULL, NULL); + { a = (prodml23__Boundary1Type *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type, SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type, sizeof(prodml23__Boundary1Type), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__Boundary1Type * SOAP_FMAC4 soap_new_prodml22__Boundary1Type(struct soap *soap, int n) +SOAP_FMAC3 prodml23__Boundary1Type * SOAP_FMAC4 soap_new_prodml23__Boundary1Type(struct soap *soap, int n) { - prodml22__Boundary1Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__Boundary1Type))); - for (prodml22__Boundary1Type *p = a; p && n--; ++p) - soap_default_prodml22__Boundary1Type(soap, p); + prodml23__Boundary1Type *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__Boundary1Type))); + for (prodml23__Boundary1Type *p = a; p && n--; ++p) + soap_default_prodml23__Boundary1Type(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary1Type(struct soap *soap, const prodml22__Boundary1Type *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary1Type(struct soap *soap, const prodml23__Boundary1Type *a, const char *tag, const char *type) { - if (soap_out_prodml22__Boundary1Type(soap, tag ? tag : "prodml22:Boundary1Type", -2, a, type)) + if (soap_out_prodml23__Boundary1Type(soap, tag ? tag : "prodml23:Boundary1Type", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Boundary1Type * SOAP_FMAC4 soap_get_prodml22__Boundary1Type(struct soap *soap, prodml22__Boundary1Type *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Boundary1Type * SOAP_FMAC4 soap_get_prodml23__Boundary1Type(struct soap *soap, prodml23__Boundary1Type *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Boundary1Type(soap, tag, p, type))) + if ((p = soap_in_prodml23__Boundary1Type(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__TimeNonLinearTransformKind[] = -{ { (LONG64)prodml22__TimeNonLinearTransformKind::material_x0020balance_x0020pseudo_time, "material balance pseudo-time" }, - { (LONG64)prodml22__TimeNonLinearTransformKind::pseudo_time_x0020transform, "pseudo-time transform" }, - { (LONG64)prodml22__TimeNonLinearTransformKind::time_x0020_x0028un_transformed_x0029, "time (un-transformed)" }, +static const struct soap_code_map soap_codes_prodml23__TimeNonLinearTransformKind[] = +{ { (LONG64)prodml23__TimeNonLinearTransformKind::material_x0020balance_x0020pseudo_time, "material balance pseudo-time" }, + { (LONG64)prodml23__TimeNonLinearTransformKind::pseudo_time_x0020transform, "pseudo-time transform" }, + { (LONG64)prodml23__TimeNonLinearTransformKind::time_x0020_x0028un_transformed_x0029, "time (un-transformed)" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TimeNonLinearTransformKind2s(struct soap *soap, prodml22__TimeNonLinearTransformKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TimeNonLinearTransformKind2s(struct soap *soap, prodml23__TimeNonLinearTransformKind n) { - const char *s = soap_code_str(soap_codes_prodml22__TimeNonLinearTransformKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__TimeNonLinearTransformKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *tag, int id, const prodml22__TimeNonLinearTransformKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *tag, int id, const prodml23__TimeNonLinearTransformKind *a, const char *type) { if (!type) - type = "prodml22:TimeNonLinearTransformKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind), type) || soap_send(soap, soap_prodml22__TimeNonLinearTransformKind2s(soap, *a))) + type = "prodml23:TimeNonLinearTransformKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind), type) || soap_send(soap, soap_prodml23__TimeNonLinearTransformKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *s, prodml22__TimeNonLinearTransformKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *s, prodml23__TimeNonLinearTransformKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__TimeNonLinearTransformKind, s); + map = soap_code(soap_codes_prodml23__TimeNonLinearTransformKind, s); if (map) - *a = (prodml22__TimeNonLinearTransformKind)map->code; + *a = (prodml23__TimeNonLinearTransformKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -64992,83 +64987,83 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeNonLinearTransformKind(struct s return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *tag, prodml22__TimeNonLinearTransformKind *a, const char *type) +SOAP_FMAC3 prodml23__TimeNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *tag, prodml23__TimeNonLinearTransformKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__TimeNonLinearTransformKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind, sizeof(prodml22__TimeNonLinearTransformKind), NULL, NULL, NULL, NULL); + a = (prodml23__TimeNonLinearTransformKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind, sizeof(prodml23__TimeNonLinearTransformKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__TimeNonLinearTransformKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__TimeNonLinearTransformKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__TimeNonLinearTransformKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind, sizeof(prodml22__TimeNonLinearTransformKind), 0, NULL, NULL); + { a = (prodml23__TimeNonLinearTransformKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind, sizeof(prodml23__TimeNonLinearTransformKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__TimeNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml22__TimeNonLinearTransformKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__TimeNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml23__TimeNonLinearTransformKind(struct soap *soap, int n) { - prodml22__TimeNonLinearTransformKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__TimeNonLinearTransformKind))); - for (prodml22__TimeNonLinearTransformKind *p = a; p && n--; ++p) - soap_default_prodml22__TimeNonLinearTransformKind(soap, p); + prodml23__TimeNonLinearTransformKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__TimeNonLinearTransformKind))); + for (prodml23__TimeNonLinearTransformKind *p = a; p && n--; ++p) + soap_default_prodml23__TimeNonLinearTransformKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TimeNonLinearTransformKind(struct soap *soap, const prodml22__TimeNonLinearTransformKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TimeNonLinearTransformKind(struct soap *soap, const prodml23__TimeNonLinearTransformKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__TimeNonLinearTransformKind(soap, tag ? tag : "prodml22:TimeNonLinearTransformKind", -2, a, type)) + if (soap_out_prodml23__TimeNonLinearTransformKind(soap, tag ? tag : "prodml23:TimeNonLinearTransformKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml22__TimeNonLinearTransformKind(struct soap *soap, prodml22__TimeNonLinearTransformKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml23__TimeNonLinearTransformKind(struct soap *soap, prodml23__TimeNonLinearTransformKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeNonLinearTransformKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeNonLinearTransformKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PseudoPressureEffectApplied[] = -{ { (LONG64)prodml22__PseudoPressureEffectApplied::gas_x0020properties_x0020with_x0020pressure, "gas properties with pressure" }, - { (LONG64)prodml22__PseudoPressureEffectApplied::multiphase_x0020flow_x0020properties_x0020with_x0020pressure, "multiphase flow properties with pressure" }, - { (LONG64)prodml22__PseudoPressureEffectApplied::other, "other" }, - { (LONG64)prodml22__PseudoPressureEffectApplied::variable_x0020desorption_x0020with_x0020pressure, "variable desorption with pressure" }, - { (LONG64)prodml22__PseudoPressureEffectApplied::variable_x0020poroperm_x0020with_x0020pressure, "variable poroperm with pressure" }, +static const struct soap_code_map soap_codes_prodml23__PseudoPressureEffectApplied[] = +{ { (LONG64)prodml23__PseudoPressureEffectApplied::gas_x0020properties_x0020with_x0020pressure, "gas properties with pressure" }, + { (LONG64)prodml23__PseudoPressureEffectApplied::multiphase_x0020flow_x0020properties_x0020with_x0020pressure, "multiphase flow properties with pressure" }, + { (LONG64)prodml23__PseudoPressureEffectApplied::other, "other" }, + { (LONG64)prodml23__PseudoPressureEffectApplied::variable_x0020desorption_x0020with_x0020pressure, "variable desorption with pressure" }, + { (LONG64)prodml23__PseudoPressureEffectApplied::variable_x0020poroperm_x0020with_x0020pressure, "variable poroperm with pressure" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PseudoPressureEffectApplied2s(struct soap *soap, prodml22__PseudoPressureEffectApplied n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PseudoPressureEffectApplied2s(struct soap *soap, prodml23__PseudoPressureEffectApplied n) { - const char *s = soap_code_str(soap_codes_prodml22__PseudoPressureEffectApplied, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PseudoPressureEffectApplied, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *tag, int id, const prodml22__PseudoPressureEffectApplied *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *tag, int id, const prodml23__PseudoPressureEffectApplied *a, const char *type) { if (!type) - type = "prodml22:PseudoPressureEffectApplied"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied), type) || soap_send(soap, soap_prodml22__PseudoPressureEffectApplied2s(soap, *a))) + type = "prodml23:PseudoPressureEffectApplied"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied), type) || soap_send(soap, soap_prodml23__PseudoPressureEffectApplied2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *s, prodml22__PseudoPressureEffectApplied *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *s, prodml23__PseudoPressureEffectApplied *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PseudoPressureEffectApplied, s); + map = soap_code(soap_codes_prodml23__PseudoPressureEffectApplied, s); if (map) - *a = (prodml22__PseudoPressureEffectApplied)map->code; + *a = (prodml23__PseudoPressureEffectApplied)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65076,83 +65071,83 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PseudoPressureEffectApplied(struct return SOAP_OK; } -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied * SOAP_FMAC4 soap_in_prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *tag, prodml22__PseudoPressureEffectApplied *a, const char *type) +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied * SOAP_FMAC4 soap_in_prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *tag, prodml23__PseudoPressureEffectApplied *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PseudoPressureEffectApplied*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied, sizeof(prodml22__PseudoPressureEffectApplied), NULL, NULL, NULL, NULL); + a = (prodml23__PseudoPressureEffectApplied*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied, sizeof(prodml23__PseudoPressureEffectApplied), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PseudoPressureEffectApplied(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PseudoPressureEffectApplied(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PseudoPressureEffectApplied *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied, sizeof(prodml22__PseudoPressureEffectApplied), 0, NULL, NULL); + { a = (prodml23__PseudoPressureEffectApplied *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied, sizeof(prodml23__PseudoPressureEffectApplied), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied * SOAP_FMAC4 soap_new_prodml22__PseudoPressureEffectApplied(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied * SOAP_FMAC4 soap_new_prodml23__PseudoPressureEffectApplied(struct soap *soap, int n) { - prodml22__PseudoPressureEffectApplied *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PseudoPressureEffectApplied))); - for (prodml22__PseudoPressureEffectApplied *p = a; p && n--; ++p) - soap_default_prodml22__PseudoPressureEffectApplied(soap, p); + prodml23__PseudoPressureEffectApplied *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PseudoPressureEffectApplied))); + for (prodml23__PseudoPressureEffectApplied *p = a; p && n--; ++p) + soap_default_prodml23__PseudoPressureEffectApplied(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PseudoPressureEffectApplied(struct soap *soap, const prodml22__PseudoPressureEffectApplied *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PseudoPressureEffectApplied(struct soap *soap, const prodml23__PseudoPressureEffectApplied *a, const char *tag, const char *type) { - if (soap_out_prodml22__PseudoPressureEffectApplied(soap, tag ? tag : "prodml22:PseudoPressureEffectApplied", -2, a, type)) + if (soap_out_prodml23__PseudoPressureEffectApplied(soap, tag ? tag : "prodml23:PseudoPressureEffectApplied", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied * SOAP_FMAC4 soap_get_prodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied * SOAP_FMAC4 soap_get_prodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PseudoPressureEffectApplied(soap, tag, p, type))) + if ((p = soap_in_prodml23__PseudoPressureEffectApplied(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PressureNonLinearTransformKind[] = -{ { (LONG64)prodml22__PressureNonLinearTransformKind::pressure_x0020_x0028un_transformed_x0029, "pressure (un-transformed)" }, - { (LONG64)prodml22__PressureNonLinearTransformKind::pressure_x0020squared, "pressure squared" }, - { (LONG64)prodml22__PressureNonLinearTransformKind::gas_x0020pseudo_pressure, "gas pseudo-pressure" }, - { (LONG64)prodml22__PressureNonLinearTransformKind::normalised_x0020gas_x0020pseudo_pressure, "normalised gas pseudo-pressure" }, - { (LONG64)prodml22__PressureNonLinearTransformKind::normalised_x0020multi_phase_x0020pseudo_pressure, "normalised multi-phase pseudo-pressure" }, +static const struct soap_code_map soap_codes_prodml23__PressureNonLinearTransformKind[] = +{ { (LONG64)prodml23__PressureNonLinearTransformKind::pressure_x0020_x0028un_transformed_x0029, "pressure (un-transformed)" }, + { (LONG64)prodml23__PressureNonLinearTransformKind::pressure_x0020squared, "pressure squared" }, + { (LONG64)prodml23__PressureNonLinearTransformKind::gas_x0020pseudo_pressure, "gas pseudo-pressure" }, + { (LONG64)prodml23__PressureNonLinearTransformKind::normalised_x0020gas_x0020pseudo_pressure, "normalised gas pseudo-pressure" }, + { (LONG64)prodml23__PressureNonLinearTransformKind::normalised_x0020multi_phase_x0020pseudo_pressure, "normalised multi-phase pseudo-pressure" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PressureNonLinearTransformKind2s(struct soap *soap, prodml22__PressureNonLinearTransformKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PressureNonLinearTransformKind2s(struct soap *soap, prodml23__PressureNonLinearTransformKind n) { - const char *s = soap_code_str(soap_codes_prodml22__PressureNonLinearTransformKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PressureNonLinearTransformKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *tag, int id, const prodml22__PressureNonLinearTransformKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *tag, int id, const prodml23__PressureNonLinearTransformKind *a, const char *type) { if (!type) - type = "prodml22:PressureNonLinearTransformKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind), type) || soap_send(soap, soap_prodml22__PressureNonLinearTransformKind2s(soap, *a))) + type = "prodml23:PressureNonLinearTransformKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind), type) || soap_send(soap, soap_prodml23__PressureNonLinearTransformKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *s, prodml22__PressureNonLinearTransformKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *s, prodml23__PressureNonLinearTransformKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PressureNonLinearTransformKind, s); + map = soap_code(soap_codes_prodml23__PressureNonLinearTransformKind, s); if (map) - *a = (prodml22__PressureNonLinearTransformKind)map->code; + *a = (prodml23__PressureNonLinearTransformKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65160,82 +65155,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PressureNonLinearTransformKind(stru return SOAP_OK; } -SOAP_FMAC3 prodml22__PressureNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *tag, prodml22__PressureNonLinearTransformKind *a, const char *type) +SOAP_FMAC3 prodml23__PressureNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *tag, prodml23__PressureNonLinearTransformKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PressureNonLinearTransformKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind, sizeof(prodml22__PressureNonLinearTransformKind), NULL, NULL, NULL, NULL); + a = (prodml23__PressureNonLinearTransformKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind, sizeof(prodml23__PressureNonLinearTransformKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PressureNonLinearTransformKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PressureNonLinearTransformKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PressureNonLinearTransformKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind, sizeof(prodml22__PressureNonLinearTransformKind), 0, NULL, NULL); + { a = (prodml23__PressureNonLinearTransformKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind, sizeof(prodml23__PressureNonLinearTransformKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PressureNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml22__PressureNonLinearTransformKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PressureNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml23__PressureNonLinearTransformKind(struct soap *soap, int n) { - prodml22__PressureNonLinearTransformKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PressureNonLinearTransformKind))); - for (prodml22__PressureNonLinearTransformKind *p = a; p && n--; ++p) - soap_default_prodml22__PressureNonLinearTransformKind(soap, p); + prodml23__PressureNonLinearTransformKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PressureNonLinearTransformKind))); + for (prodml23__PressureNonLinearTransformKind *p = a; p && n--; ++p) + soap_default_prodml23__PressureNonLinearTransformKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PressureNonLinearTransformKind(struct soap *soap, const prodml22__PressureNonLinearTransformKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PressureNonLinearTransformKind(struct soap *soap, const prodml23__PressureNonLinearTransformKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__PressureNonLinearTransformKind(soap, tag ? tag : "prodml22:PressureNonLinearTransformKind", -2, a, type)) + if (soap_out_prodml23__PressureNonLinearTransformKind(soap, tag ? tag : "prodml23:PressureNonLinearTransformKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PressureNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml22__PressureNonLinearTransformKind(struct soap *soap, prodml22__PressureNonLinearTransformKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PressureNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml23__PressureNonLinearTransformKind(struct soap *soap, prodml23__PressureNonLinearTransformKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PressureNonLinearTransformKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__PressureNonLinearTransformKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__LogLogTimeTransform[] = -{ { (LONG64)prodml22__LogLogTimeTransform::agarwal_x0020time, "agarwal time" }, - { (LONG64)prodml22__LogLogTimeTransform::delta_x0020time, "delta time" }, - { (LONG64)prodml22__LogLogTimeTransform::equivalent_x0020time_x0020cumulative_x002fflowrate, "equivalent time cumulative/flowrate" }, - { (LONG64)prodml22__LogLogTimeTransform::superposition_x0020time, "superposition time" }, +static const struct soap_code_map soap_codes_prodml23__LogLogTimeTransform[] = +{ { (LONG64)prodml23__LogLogTimeTransform::agarwal_x0020time, "agarwal time" }, + { (LONG64)prodml23__LogLogTimeTransform::delta_x0020time, "delta time" }, + { (LONG64)prodml23__LogLogTimeTransform::equivalent_x0020time_x0020cumulative_x002fflowrate, "equivalent time cumulative/flowrate" }, + { (LONG64)prodml23__LogLogTimeTransform::superposition_x0020time, "superposition time" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__LogLogTimeTransform2s(struct soap *soap, prodml22__LogLogTimeTransform n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__LogLogTimeTransform2s(struct soap *soap, prodml23__LogLogTimeTransform n) { - const char *s = soap_code_str(soap_codes_prodml22__LogLogTimeTransform, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__LogLogTimeTransform, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LogLogTimeTransform(struct soap *soap, const char *tag, int id, const prodml22__LogLogTimeTransform *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LogLogTimeTransform(struct soap *soap, const char *tag, int id, const prodml23__LogLogTimeTransform *a, const char *type) { if (!type) - type = "prodml22:LogLogTimeTransform"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform), type) || soap_send(soap, soap_prodml22__LogLogTimeTransform2s(soap, *a))) + type = "prodml23:LogLogTimeTransform"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform), type) || soap_send(soap, soap_prodml23__LogLogTimeTransform2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LogLogTimeTransform(struct soap *soap, const char *s, prodml22__LogLogTimeTransform *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__LogLogTimeTransform(struct soap *soap, const char *s, prodml23__LogLogTimeTransform *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__LogLogTimeTransform, s); + map = soap_code(soap_codes_prodml23__LogLogTimeTransform, s); if (map) - *a = (prodml22__LogLogTimeTransform)map->code; + *a = (prodml23__LogLogTimeTransform)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65243,83 +65238,83 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LogLogTimeTransform(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__LogLogTimeTransform * SOAP_FMAC4 soap_in_prodml22__LogLogTimeTransform(struct soap *soap, const char *tag, prodml22__LogLogTimeTransform *a, const char *type) +SOAP_FMAC3 prodml23__LogLogTimeTransform * SOAP_FMAC4 soap_in_prodml23__LogLogTimeTransform(struct soap *soap, const char *tag, prodml23__LogLogTimeTransform *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__LogLogTimeTransform*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform, sizeof(prodml22__LogLogTimeTransform), NULL, NULL, NULL, NULL); + a = (prodml23__LogLogTimeTransform*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform, sizeof(prodml23__LogLogTimeTransform), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__LogLogTimeTransform(soap, soap_value(soap), a); + { int err = soap_s2prodml23__LogLogTimeTransform(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__LogLogTimeTransform *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform, sizeof(prodml22__LogLogTimeTransform), 0, NULL, NULL); + { a = (prodml23__LogLogTimeTransform *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform, sizeof(prodml23__LogLogTimeTransform), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__LogLogTimeTransform * SOAP_FMAC4 soap_new_prodml22__LogLogTimeTransform(struct soap *soap, int n) +SOAP_FMAC3 prodml23__LogLogTimeTransform * SOAP_FMAC4 soap_new_prodml23__LogLogTimeTransform(struct soap *soap, int n) { - prodml22__LogLogTimeTransform *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__LogLogTimeTransform))); - for (prodml22__LogLogTimeTransform *p = a; p && n--; ++p) - soap_default_prodml22__LogLogTimeTransform(soap, p); + prodml23__LogLogTimeTransform *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__LogLogTimeTransform))); + for (prodml23__LogLogTimeTransform *p = a; p && n--; ++p) + soap_default_prodml23__LogLogTimeTransform(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__LogLogTimeTransform(struct soap *soap, const prodml22__LogLogTimeTransform *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__LogLogTimeTransform(struct soap *soap, const prodml23__LogLogTimeTransform *a, const char *tag, const char *type) { - if (soap_out_prodml22__LogLogTimeTransform(soap, tag ? tag : "prodml22:LogLogTimeTransform", -2, a, type)) + if (soap_out_prodml23__LogLogTimeTransform(soap, tag ? tag : "prodml23:LogLogTimeTransform", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LogLogTimeTransform * SOAP_FMAC4 soap_get_prodml22__LogLogTimeTransform(struct soap *soap, prodml22__LogLogTimeTransform *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LogLogTimeTransform * SOAP_FMAC4 soap_get_prodml23__LogLogTimeTransform(struct soap *soap, prodml23__LogLogTimeTransform *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LogLogTimeTransform(soap, tag, p, type))) + if ((p = soap_in_prodml23__LogLogTimeTransform(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__LogLogPressureTransform[] = -{ { (LONG64)prodml22__LogLogPressureTransform::delta_x0020pressure_x0020function, "delta pressure function" }, - { (LONG64)prodml22__LogLogPressureTransform::delta_x0020pressure_x0020function_x002frate, "delta pressure function/rate" }, - { (LONG64)prodml22__LogLogPressureTransform::integral_x0020rate_x0020normal_x0020delta_x0020p_x0020funct_x002ftime, "integral rate normal delta p funct/time" }, - { (LONG64)prodml22__LogLogPressureTransform::rate_x0020normalized_x0020delta_x0020p_x0020function_x002frate, "rate normalized delta p function/rate" }, - { (LONG64)prodml22__LogLogPressureTransform::other, "other" }, +static const struct soap_code_map soap_codes_prodml23__LogLogPressureTransform[] = +{ { (LONG64)prodml23__LogLogPressureTransform::delta_x0020pressure_x0020function, "delta pressure function" }, + { (LONG64)prodml23__LogLogPressureTransform::delta_x0020pressure_x0020function_x002frate, "delta pressure function/rate" }, + { (LONG64)prodml23__LogLogPressureTransform::integral_x0020rate_x0020normal_x0020delta_x0020p_x0020funct_x002ftime, "integral rate normal delta p funct/time" }, + { (LONG64)prodml23__LogLogPressureTransform::rate_x0020normalized_x0020delta_x0020p_x0020function_x002frate, "rate normalized delta p function/rate" }, + { (LONG64)prodml23__LogLogPressureTransform::other, "other" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__LogLogPressureTransform2s(struct soap *soap, prodml22__LogLogPressureTransform n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__LogLogPressureTransform2s(struct soap *soap, prodml23__LogLogPressureTransform n) { - const char *s = soap_code_str(soap_codes_prodml22__LogLogPressureTransform, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__LogLogPressureTransform, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LogLogPressureTransform(struct soap *soap, const char *tag, int id, const prodml22__LogLogPressureTransform *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LogLogPressureTransform(struct soap *soap, const char *tag, int id, const prodml23__LogLogPressureTransform *a, const char *type) { if (!type) - type = "prodml22:LogLogPressureTransform"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform), type) || soap_send(soap, soap_prodml22__LogLogPressureTransform2s(soap, *a))) + type = "prodml23:LogLogPressureTransform"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform), type) || soap_send(soap, soap_prodml23__LogLogPressureTransform2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LogLogPressureTransform(struct soap *soap, const char *s, prodml22__LogLogPressureTransform *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__LogLogPressureTransform(struct soap *soap, const char *s, prodml23__LogLogPressureTransform *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__LogLogPressureTransform, s); + map = soap_code(soap_codes_prodml23__LogLogPressureTransform, s); if (map) - *a = (prodml22__LogLogPressureTransform)map->code; + *a = (prodml23__LogLogPressureTransform)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65327,85 +65322,85 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LogLogPressureTransform(struct soap return SOAP_OK; } -SOAP_FMAC3 prodml22__LogLogPressureTransform * SOAP_FMAC4 soap_in_prodml22__LogLogPressureTransform(struct soap *soap, const char *tag, prodml22__LogLogPressureTransform *a, const char *type) +SOAP_FMAC3 prodml23__LogLogPressureTransform * SOAP_FMAC4 soap_in_prodml23__LogLogPressureTransform(struct soap *soap, const char *tag, prodml23__LogLogPressureTransform *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__LogLogPressureTransform*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform, sizeof(prodml22__LogLogPressureTransform), NULL, NULL, NULL, NULL); + a = (prodml23__LogLogPressureTransform*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform, sizeof(prodml23__LogLogPressureTransform), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__LogLogPressureTransform(soap, soap_value(soap), a); + { int err = soap_s2prodml23__LogLogPressureTransform(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__LogLogPressureTransform *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform, sizeof(prodml22__LogLogPressureTransform), 0, NULL, NULL); + { a = (prodml23__LogLogPressureTransform *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform, sizeof(prodml23__LogLogPressureTransform), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__LogLogPressureTransform * SOAP_FMAC4 soap_new_prodml22__LogLogPressureTransform(struct soap *soap, int n) +SOAP_FMAC3 prodml23__LogLogPressureTransform * SOAP_FMAC4 soap_new_prodml23__LogLogPressureTransform(struct soap *soap, int n) { - prodml22__LogLogPressureTransform *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__LogLogPressureTransform))); - for (prodml22__LogLogPressureTransform *p = a; p && n--; ++p) - soap_default_prodml22__LogLogPressureTransform(soap, p); + prodml23__LogLogPressureTransform *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__LogLogPressureTransform))); + for (prodml23__LogLogPressureTransform *p = a; p && n--; ++p) + soap_default_prodml23__LogLogPressureTransform(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__LogLogPressureTransform(struct soap *soap, const prodml22__LogLogPressureTransform *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__LogLogPressureTransform(struct soap *soap, const prodml23__LogLogPressureTransform *a, const char *tag, const char *type) { - if (soap_out_prodml22__LogLogPressureTransform(soap, tag ? tag : "prodml22:LogLogPressureTransform", -2, a, type)) + if (soap_out_prodml23__LogLogPressureTransform(soap, tag ? tag : "prodml23:LogLogPressureTransform", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LogLogPressureTransform * SOAP_FMAC4 soap_get_prodml22__LogLogPressureTransform(struct soap *soap, prodml22__LogLogPressureTransform *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LogLogPressureTransform * SOAP_FMAC4 soap_get_prodml23__LogLogPressureTransform(struct soap *soap, prodml23__LogLogPressureTransform *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LogLogPressureTransform(soap, tag, p, type))) + if ((p = soap_in_prodml23__LogLogPressureTransform(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FluidPhaseKind[] = -{ { (LONG64)prodml22__FluidPhaseKind::multiphase_x0020gas_x002bwater, "multiphase gas+water" }, - { (LONG64)prodml22__FluidPhaseKind::multiphase_x0020oil_x002bgas, "multiphase oil+gas" }, - { (LONG64)prodml22__FluidPhaseKind::multiphase_x0020oil_x002bwater, "multiphase oil+water" }, - { (LONG64)prodml22__FluidPhaseKind::multiphase_x0020oil_x002bwater_x002bgas, "multiphase oil+water+gas" }, - { (LONG64)prodml22__FluidPhaseKind::single_x0020phase_x0020gas, "single phase gas" }, - { (LONG64)prodml22__FluidPhaseKind::single_x0020phase_x0020oil, "single phase oil" }, - { (LONG64)prodml22__FluidPhaseKind::single_x0020phase_x0020water, "single phase water" }, +static const struct soap_code_map soap_codes_prodml23__FluidPhaseKind[] = +{ { (LONG64)prodml23__FluidPhaseKind::multiphase_x0020gas_x002bwater, "multiphase gas+water" }, + { (LONG64)prodml23__FluidPhaseKind::multiphase_x0020oil_x002bgas, "multiphase oil+gas" }, + { (LONG64)prodml23__FluidPhaseKind::multiphase_x0020oil_x002bwater, "multiphase oil+water" }, + { (LONG64)prodml23__FluidPhaseKind::multiphase_x0020oil_x002bwater_x002bgas, "multiphase oil+water+gas" }, + { (LONG64)prodml23__FluidPhaseKind::single_x0020phase_x0020gas, "single phase gas" }, + { (LONG64)prodml23__FluidPhaseKind::single_x0020phase_x0020oil, "single phase oil" }, + { (LONG64)prodml23__FluidPhaseKind::single_x0020phase_x0020water, "single phase water" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidPhaseKind2s(struct soap *soap, prodml22__FluidPhaseKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidPhaseKind2s(struct soap *soap, prodml23__FluidPhaseKind n) { - const char *s = soap_code_str(soap_codes_prodml22__FluidPhaseKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FluidPhaseKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidPhaseKind(struct soap *soap, const char *tag, int id, const prodml22__FluidPhaseKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidPhaseKind(struct soap *soap, const char *tag, int id, const prodml23__FluidPhaseKind *a, const char *type) { if (!type) - type = "prodml22:FluidPhaseKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind), type) || soap_send(soap, soap_prodml22__FluidPhaseKind2s(soap, *a))) + type = "prodml23:FluidPhaseKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind), type) || soap_send(soap, soap_prodml23__FluidPhaseKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidPhaseKind(struct soap *soap, const char *s, prodml22__FluidPhaseKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidPhaseKind(struct soap *soap, const char *s, prodml23__FluidPhaseKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FluidPhaseKind, s); + map = soap_code(soap_codes_prodml23__FluidPhaseKind, s); if (map) - *a = (prodml22__FluidPhaseKind)map->code; + *a = (prodml23__FluidPhaseKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65413,80 +65408,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidPhaseKind(struct soap *soap, c return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidPhaseKind * SOAP_FMAC4 soap_in_prodml22__FluidPhaseKind(struct soap *soap, const char *tag, prodml22__FluidPhaseKind *a, const char *type) +SOAP_FMAC3 prodml23__FluidPhaseKind * SOAP_FMAC4 soap_in_prodml23__FluidPhaseKind(struct soap *soap, const char *tag, prodml23__FluidPhaseKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FluidPhaseKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind, sizeof(prodml22__FluidPhaseKind), NULL, NULL, NULL, NULL); + a = (prodml23__FluidPhaseKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind, sizeof(prodml23__FluidPhaseKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FluidPhaseKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FluidPhaseKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FluidPhaseKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind, sizeof(prodml22__FluidPhaseKind), 0, NULL, NULL); + { a = (prodml23__FluidPhaseKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind, sizeof(prodml23__FluidPhaseKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FluidPhaseKind * SOAP_FMAC4 soap_new_prodml22__FluidPhaseKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FluidPhaseKind * SOAP_FMAC4 soap_new_prodml23__FluidPhaseKind(struct soap *soap, int n) { - prodml22__FluidPhaseKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FluidPhaseKind))); - for (prodml22__FluidPhaseKind *p = a; p && n--; ++p) - soap_default_prodml22__FluidPhaseKind(soap, p); + prodml23__FluidPhaseKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FluidPhaseKind))); + for (prodml23__FluidPhaseKind *p = a; p && n--; ++p) + soap_default_prodml23__FluidPhaseKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidPhaseKind(struct soap *soap, const prodml22__FluidPhaseKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidPhaseKind(struct soap *soap, const prodml23__FluidPhaseKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidPhaseKind(soap, tag ? tag : "prodml22:FluidPhaseKind", -2, a, type)) + if (soap_out_prodml23__FluidPhaseKind(soap, tag ? tag : "prodml23:FluidPhaseKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidPhaseKind * SOAP_FMAC4 soap_get_prodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidPhaseKind * SOAP_FMAC4 soap_get_prodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidPhaseKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidPhaseKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__TimeSeriesPointRepresentation[] = -{ { (LONG64)prodml22__TimeSeriesPointRepresentation::point_x0020by_x0020point, "point by point" }, - { (LONG64)prodml22__TimeSeriesPointRepresentation::stepwise_x0020value_x0020at_x0020end_x0020of_x0020period, "stepwise value at end of period" }, +static const struct soap_code_map soap_codes_prodml23__TimeSeriesPointRepresentation[] = +{ { (LONG64)prodml23__TimeSeriesPointRepresentation::point_x0020by_x0020point, "point by point" }, + { (LONG64)prodml23__TimeSeriesPointRepresentation::stepwise_x0020value_x0020at_x0020end_x0020of_x0020period, "stepwise value at end of period" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TimeSeriesPointRepresentation2s(struct soap *soap, prodml22__TimeSeriesPointRepresentation n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TimeSeriesPointRepresentation2s(struct soap *soap, prodml23__TimeSeriesPointRepresentation n) { - const char *s = soap_code_str(soap_codes_prodml22__TimeSeriesPointRepresentation, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__TimeSeriesPointRepresentation, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesPointRepresentation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesPointRepresentation *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesPointRepresentation"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation), type) || soap_send(soap, soap_prodml22__TimeSeriesPointRepresentation2s(soap, *a))) + type = "prodml23:TimeSeriesPointRepresentation"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation), type) || soap_send(soap, soap_prodml23__TimeSeriesPointRepresentation2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *s, prodml22__TimeSeriesPointRepresentation *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *s, prodml23__TimeSeriesPointRepresentation *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__TimeSeriesPointRepresentation, s); + map = soap_code(soap_codes_prodml23__TimeSeriesPointRepresentation, s); if (map) - *a = (prodml22__TimeSeriesPointRepresentation)map->code; + *a = (prodml23__TimeSeriesPointRepresentation)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65494,88 +65489,88 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeSeriesPointRepresentation(struc return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_in_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, prodml22__TimeSeriesPointRepresentation *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_in_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, prodml23__TimeSeriesPointRepresentation *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__TimeSeriesPointRepresentation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation, sizeof(prodml22__TimeSeriesPointRepresentation), NULL, NULL, NULL, NULL); + a = (prodml23__TimeSeriesPointRepresentation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation, sizeof(prodml23__TimeSeriesPointRepresentation), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__TimeSeriesPointRepresentation(soap, soap_value(soap), a); + { int err = soap_s2prodml23__TimeSeriesPointRepresentation(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__TimeSeriesPointRepresentation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation, sizeof(prodml22__TimeSeriesPointRepresentation), 0, NULL, NULL); + { a = (prodml23__TimeSeriesPointRepresentation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation, sizeof(prodml23__TimeSeriesPointRepresentation), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_new_prodml22__TimeSeriesPointRepresentation(struct soap *soap, int n) +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_new_prodml23__TimeSeriesPointRepresentation(struct soap *soap, int n) { - prodml22__TimeSeriesPointRepresentation *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__TimeSeriesPointRepresentation))); - for (prodml22__TimeSeriesPointRepresentation *p = a; p && n--; ++p) - soap_default_prodml22__TimeSeriesPointRepresentation(soap, p); + prodml23__TimeSeriesPointRepresentation *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__TimeSeriesPointRepresentation))); + for (prodml23__TimeSeriesPointRepresentation *p = a; p && n--; ++p) + soap_default_prodml23__TimeSeriesPointRepresentation(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const prodml22__TimeSeriesPointRepresentation *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const prodml23__TimeSeriesPointRepresentation *a, const char *tag, const char *type) { - if (soap_out_prodml22__TimeSeriesPointRepresentation(soap, tag ? tag : "prodml22:TimeSeriesPointRepresentation", -2, a, type)) + if (soap_out_prodml23__TimeSeriesPointRepresentation(soap, tag ? tag : "prodml23:TimeSeriesPointRepresentation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_get_prodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_get_prodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesPointRepresentation(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesPointRepresentation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__TestPeriodKind[] = -{ { (LONG64)prodml22__TestPeriodKind::buildup, "buildup" }, - { (LONG64)prodml22__TestPeriodKind::constant_x0020rate_x0020injection, "constant rate injection" }, - { (LONG64)prodml22__TestPeriodKind::fall_off, "fall-off" }, - { (LONG64)prodml22__TestPeriodKind::post_test_x0020pull_x0020out_x0020of_x0020hole, "post-test pull out of hole" }, - { (LONG64)prodml22__TestPeriodKind::pre_test_x0020run_x0020in_x0020hole, "pre-test run in hole" }, - { (LONG64)prodml22__TestPeriodKind::production_x0020well_x0020test, "production well test" }, - { (LONG64)prodml22__TestPeriodKind::variable_x0020rate_x0020injection, "variable rate injection" }, - { (LONG64)prodml22__TestPeriodKind::constant_x0020rate_x0020drawdown, "constant rate drawdown" }, - { (LONG64)prodml22__TestPeriodKind::shut_in_x0020observation, "shut-in observation" }, - { (LONG64)prodml22__TestPeriodKind::variable_x0020rate_x0020drawdown, "variable rate drawdown" }, +static const struct soap_code_map soap_codes_prodml23__TestPeriodKind[] = +{ { (LONG64)prodml23__TestPeriodKind::buildup, "buildup" }, + { (LONG64)prodml23__TestPeriodKind::constant_x0020rate_x0020injection, "constant rate injection" }, + { (LONG64)prodml23__TestPeriodKind::fall_off, "fall-off" }, + { (LONG64)prodml23__TestPeriodKind::post_test_x0020pull_x0020out_x0020of_x0020hole, "post-test pull out of hole" }, + { (LONG64)prodml23__TestPeriodKind::pre_test_x0020run_x0020in_x0020hole, "pre-test run in hole" }, + { (LONG64)prodml23__TestPeriodKind::production_x0020well_x0020test, "production well test" }, + { (LONG64)prodml23__TestPeriodKind::variable_x0020rate_x0020injection, "variable rate injection" }, + { (LONG64)prodml23__TestPeriodKind::constant_x0020rate_x0020drawdown, "constant rate drawdown" }, + { (LONG64)prodml23__TestPeriodKind::shut_in_x0020observation, "shut-in observation" }, + { (LONG64)prodml23__TestPeriodKind::variable_x0020rate_x0020drawdown, "variable rate drawdown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TestPeriodKind2s(struct soap *soap, prodml22__TestPeriodKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TestPeriodKind2s(struct soap *soap, prodml23__TestPeriodKind n) { - const char *s = soap_code_str(soap_codes_prodml22__TestPeriodKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__TestPeriodKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TestPeriodKind(struct soap *soap, const char *tag, int id, const prodml22__TestPeriodKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TestPeriodKind(struct soap *soap, const char *tag, int id, const prodml23__TestPeriodKind *a, const char *type) { if (!type) - type = "prodml22:TestPeriodKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind), type) || soap_send(soap, soap_prodml22__TestPeriodKind2s(soap, *a))) + type = "prodml23:TestPeriodKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind), type) || soap_send(soap, soap_prodml23__TestPeriodKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TestPeriodKind(struct soap *soap, const char *s, prodml22__TestPeriodKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TestPeriodKind(struct soap *soap, const char *s, prodml23__TestPeriodKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__TestPeriodKind, s); + map = soap_code(soap_codes_prodml23__TestPeriodKind, s); if (map) - *a = (prodml22__TestPeriodKind)map->code; + *a = (prodml23__TestPeriodKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65583,83 +65578,83 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TestPeriodKind(struct soap *soap, c return SOAP_OK; } -SOAP_FMAC3 prodml22__TestPeriodKind * SOAP_FMAC4 soap_in_prodml22__TestPeriodKind(struct soap *soap, const char *tag, prodml22__TestPeriodKind *a, const char *type) +SOAP_FMAC3 prodml23__TestPeriodKind * SOAP_FMAC4 soap_in_prodml23__TestPeriodKind(struct soap *soap, const char *tag, prodml23__TestPeriodKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__TestPeriodKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind, sizeof(prodml22__TestPeriodKind), NULL, NULL, NULL, NULL); + a = (prodml23__TestPeriodKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind, sizeof(prodml23__TestPeriodKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__TestPeriodKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__TestPeriodKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__TestPeriodKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind, sizeof(prodml22__TestPeriodKind), 0, NULL, NULL); + { a = (prodml23__TestPeriodKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind, sizeof(prodml23__TestPeriodKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__TestPeriodKind * SOAP_FMAC4 soap_new_prodml22__TestPeriodKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__TestPeriodKind * SOAP_FMAC4 soap_new_prodml23__TestPeriodKind(struct soap *soap, int n) { - prodml22__TestPeriodKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__TestPeriodKind))); - for (prodml22__TestPeriodKind *p = a; p && n--; ++p) - soap_default_prodml22__TestPeriodKind(soap, p); + prodml23__TestPeriodKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__TestPeriodKind))); + for (prodml23__TestPeriodKind *p = a; p && n--; ++p) + soap_default_prodml23__TestPeriodKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TestPeriodKind(struct soap *soap, const prodml22__TestPeriodKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TestPeriodKind(struct soap *soap, const prodml23__TestPeriodKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__TestPeriodKind(soap, tag ? tag : "prodml22:TestPeriodKind", -2, a, type)) + if (soap_out_prodml23__TestPeriodKind(soap, tag ? tag : "prodml23:TestPeriodKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TestPeriodKind * SOAP_FMAC4 soap_get_prodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TestPeriodKind * SOAP_FMAC4 soap_get_prodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TestPeriodKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__TestPeriodKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FluidPhaseMeasuredKind[] = -{ { (LONG64)prodml22__FluidPhaseMeasuredKind::_3_x0020phase, "3 phase" }, - { (LONG64)prodml22__FluidPhaseMeasuredKind::gas, "gas" }, - { (LONG64)prodml22__FluidPhaseMeasuredKind::oil, "oil" }, - { (LONG64)prodml22__FluidPhaseMeasuredKind::oil_x002bwater, "oil+water" }, - { (LONG64)prodml22__FluidPhaseMeasuredKind::water, "water" }, +static const struct soap_code_map soap_codes_prodml23__FluidPhaseMeasuredKind[] = +{ { (LONG64)prodml23__FluidPhaseMeasuredKind::_3_x0020phase, "3 phase" }, + { (LONG64)prodml23__FluidPhaseMeasuredKind::gas, "gas" }, + { (LONG64)prodml23__FluidPhaseMeasuredKind::oil, "oil" }, + { (LONG64)prodml23__FluidPhaseMeasuredKind::oil_x002bwater, "oil+water" }, + { (LONG64)prodml23__FluidPhaseMeasuredKind::water, "water" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidPhaseMeasuredKind2s(struct soap *soap, prodml22__FluidPhaseMeasuredKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidPhaseMeasuredKind2s(struct soap *soap, prodml23__FluidPhaseMeasuredKind n) { - const char *s = soap_code_str(soap_codes_prodml22__FluidPhaseMeasuredKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FluidPhaseMeasuredKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *tag, int id, const prodml22__FluidPhaseMeasuredKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *tag, int id, const prodml23__FluidPhaseMeasuredKind *a, const char *type) { if (!type) - type = "prodml22:FluidPhaseMeasuredKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind), type) || soap_send(soap, soap_prodml22__FluidPhaseMeasuredKind2s(soap, *a))) + type = "prodml23:FluidPhaseMeasuredKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind), type) || soap_send(soap, soap_prodml23__FluidPhaseMeasuredKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *s, prodml22__FluidPhaseMeasuredKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *s, prodml23__FluidPhaseMeasuredKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FluidPhaseMeasuredKind, s); + map = soap_code(soap_codes_prodml23__FluidPhaseMeasuredKind, s); if (map) - *a = (prodml22__FluidPhaseMeasuredKind)map->code; + *a = (prodml23__FluidPhaseMeasuredKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65667,96 +65662,96 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidPhaseMeasuredKind(struct soap return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_in_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *tag, prodml22__FluidPhaseMeasuredKind *a, const char *type) +SOAP_FMAC3 prodml23__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_in_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *tag, prodml23__FluidPhaseMeasuredKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FluidPhaseMeasuredKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind, sizeof(prodml22__FluidPhaseMeasuredKind), NULL, NULL, NULL, NULL); + a = (prodml23__FluidPhaseMeasuredKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind, sizeof(prodml23__FluidPhaseMeasuredKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FluidPhaseMeasuredKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FluidPhaseMeasuredKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FluidPhaseMeasuredKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind, sizeof(prodml22__FluidPhaseMeasuredKind), 0, NULL, NULL); + { a = (prodml23__FluidPhaseMeasuredKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind, sizeof(prodml23__FluidPhaseMeasuredKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_new_prodml22__FluidPhaseMeasuredKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_new_prodml23__FluidPhaseMeasuredKind(struct soap *soap, int n) { - prodml22__FluidPhaseMeasuredKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FluidPhaseMeasuredKind))); - for (prodml22__FluidPhaseMeasuredKind *p = a; p && n--; ++p) - soap_default_prodml22__FluidPhaseMeasuredKind(soap, p); + prodml23__FluidPhaseMeasuredKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FluidPhaseMeasuredKind))); + for (prodml23__FluidPhaseMeasuredKind *p = a; p && n--; ++p) + soap_default_prodml23__FluidPhaseMeasuredKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const prodml22__FluidPhaseMeasuredKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const prodml23__FluidPhaseMeasuredKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidPhaseMeasuredKind(soap, tag ? tag : "prodml22:FluidPhaseMeasuredKind", -2, a, type)) + if (soap_out_prodml23__FluidPhaseMeasuredKind(soap, tag ? tag : "prodml23:FluidPhaseMeasuredKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_get_prodml22__FluidPhaseMeasuredKind(struct soap *soap, prodml22__FluidPhaseMeasuredKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_get_prodml23__FluidPhaseMeasuredKind(struct soap *soap, prodml23__FluidPhaseMeasuredKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidPhaseMeasuredKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidPhaseMeasuredKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__DataConditioning[] = -{ { (LONG64)prodml22__DataConditioning::data_x0020outliers_x0020removed, "data outliers removed" }, - { (LONG64)prodml22__DataConditioning::data_x0020reduced, "data reduced" }, - { (LONG64)prodml22__DataConditioning::data_x0020smoothed, "data smoothed" }, - { (LONG64)prodml22__DataConditioning::data_x0020time_x0020shifted, "data time shifted" }, - { (LONG64)prodml22__DataConditioning::tide_x0020corrected, "tide corrected" }, - { (LONG64)prodml22__DataConditioning::trend_x0020removal, "trend removal" }, - { (LONG64)prodml22__DataConditioning::data_x0020value_x0020shifted, "data value shifted" }, - { (LONG64)prodml22__DataConditioning::flow_x0020to_x0020volume, "flow to volume" }, - { (LONG64)prodml22__DataConditioning::fluid_x0020level_x0020to_x0020pressure, "fluid level to pressure" }, - { (LONG64)prodml22__DataConditioning::fluid_x0020level_x0020to_x0020volume, "fluid level to volume" }, - { (LONG64)prodml22__DataConditioning::gauge_x0020to_x0020datum_x0020pressure, "gauge to datum pressure" }, - { (LONG64)prodml22__DataConditioning::pressure_x0020to_x0020flow, "pressure to flow" }, - { (LONG64)prodml22__DataConditioning::volume_x0020to_x0020flow, "volume to flow" }, - { (LONG64)prodml22__DataConditioning::data_x0020difference, "data difference" }, - { (LONG64)prodml22__DataConditioning::data_x0020channel_x0020spliced, "data channel spliced" }, - { (LONG64)prodml22__DataConditioning::data_x0020channels_x0020averaged, "data channels averaged" }, - { (LONG64)prodml22__DataConditioning::rate_x0020reallocation, "rate reallocation" }, - { (LONG64)prodml22__DataConditioning::total_x0020rate_x0020calculation_x0020from_x0020phase_x0020rates, "total rate calculation from phase rates" }, +static const struct soap_code_map soap_codes_prodml23__DataConditioning[] = +{ { (LONG64)prodml23__DataConditioning::data_x0020outliers_x0020removed, "data outliers removed" }, + { (LONG64)prodml23__DataConditioning::data_x0020reduced, "data reduced" }, + { (LONG64)prodml23__DataConditioning::data_x0020smoothed, "data smoothed" }, + { (LONG64)prodml23__DataConditioning::data_x0020time_x0020shifted, "data time shifted" }, + { (LONG64)prodml23__DataConditioning::tide_x0020corrected, "tide corrected" }, + { (LONG64)prodml23__DataConditioning::trend_x0020removal, "trend removal" }, + { (LONG64)prodml23__DataConditioning::data_x0020value_x0020shifted, "data value shifted" }, + { (LONG64)prodml23__DataConditioning::flow_x0020to_x0020volume, "flow to volume" }, + { (LONG64)prodml23__DataConditioning::fluid_x0020level_x0020to_x0020pressure, "fluid level to pressure" }, + { (LONG64)prodml23__DataConditioning::fluid_x0020level_x0020to_x0020volume, "fluid level to volume" }, + { (LONG64)prodml23__DataConditioning::gauge_x0020to_x0020datum_x0020pressure, "gauge to datum pressure" }, + { (LONG64)prodml23__DataConditioning::pressure_x0020to_x0020flow, "pressure to flow" }, + { (LONG64)prodml23__DataConditioning::volume_x0020to_x0020flow, "volume to flow" }, + { (LONG64)prodml23__DataConditioning::data_x0020difference, "data difference" }, + { (LONG64)prodml23__DataConditioning::data_x0020channel_x0020spliced, "data channel spliced" }, + { (LONG64)prodml23__DataConditioning::data_x0020channels_x0020averaged, "data channels averaged" }, + { (LONG64)prodml23__DataConditioning::rate_x0020reallocation, "rate reallocation" }, + { (LONG64)prodml23__DataConditioning::total_x0020rate_x0020calculation_x0020from_x0020phase_x0020rates, "total rate calculation from phase rates" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__DataConditioning2s(struct soap *soap, prodml22__DataConditioning n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__DataConditioning2s(struct soap *soap, prodml23__DataConditioning n) { - const char *s = soap_code_str(soap_codes_prodml22__DataConditioning, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__DataConditioning, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DataConditioning(struct soap *soap, const char *tag, int id, const prodml22__DataConditioning *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DataConditioning(struct soap *soap, const char *tag, int id, const prodml23__DataConditioning *a, const char *type) { if (!type) - type = "prodml22:DataConditioning"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning), type) || soap_send(soap, soap_prodml22__DataConditioning2s(soap, *a))) + type = "prodml23:DataConditioning"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning), type) || soap_send(soap, soap_prodml23__DataConditioning2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__DataConditioning(struct soap *soap, const char *s, prodml22__DataConditioning *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__DataConditioning(struct soap *soap, const char *s, prodml23__DataConditioning *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__DataConditioning, s); + map = soap_code(soap_codes_prodml23__DataConditioning, s); if (map) - *a = (prodml22__DataConditioning)map->code; + *a = (prodml23__DataConditioning)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65764,84 +65759,84 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__DataConditioning(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__DataConditioning * SOAP_FMAC4 soap_in_prodml22__DataConditioning(struct soap *soap, const char *tag, prodml22__DataConditioning *a, const char *type) +SOAP_FMAC3 prodml23__DataConditioning * SOAP_FMAC4 soap_in_prodml23__DataConditioning(struct soap *soap, const char *tag, prodml23__DataConditioning *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__DataConditioning*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning, sizeof(prodml22__DataConditioning), NULL, NULL, NULL, NULL); + a = (prodml23__DataConditioning*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning, sizeof(prodml23__DataConditioning), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__DataConditioning(soap, soap_value(soap), a); + { int err = soap_s2prodml23__DataConditioning(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__DataConditioning *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning, sizeof(prodml22__DataConditioning), 0, NULL, NULL); + { a = (prodml23__DataConditioning *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning, sizeof(prodml23__DataConditioning), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__DataConditioning * SOAP_FMAC4 soap_new_prodml22__DataConditioning(struct soap *soap, int n) +SOAP_FMAC3 prodml23__DataConditioning * SOAP_FMAC4 soap_new_prodml23__DataConditioning(struct soap *soap, int n) { - prodml22__DataConditioning *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__DataConditioning))); - for (prodml22__DataConditioning *p = a; p && n--; ++p) - soap_default_prodml22__DataConditioning(soap, p); + prodml23__DataConditioning *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__DataConditioning))); + for (prodml23__DataConditioning *p = a; p && n--; ++p) + soap_default_prodml23__DataConditioning(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__DataConditioning(struct soap *soap, const prodml22__DataConditioning *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__DataConditioning(struct soap *soap, const prodml23__DataConditioning *a, const char *tag, const char *type) { - if (soap_out_prodml22__DataConditioning(soap, tag ? tag : "prodml22:DataConditioning", -2, a, type)) + if (soap_out_prodml23__DataConditioning(soap, tag ? tag : "prodml23:DataConditioning", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DataConditioning * SOAP_FMAC4 soap_get_prodml22__DataConditioning(struct soap *soap, prodml22__DataConditioning *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DataConditioning * SOAP_FMAC4 soap_get_prodml23__DataConditioning(struct soap *soap, prodml23__DataConditioning *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DataConditioning(soap, tag, p, type))) + if ((p = soap_in_prodml23__DataConditioning(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ReservoirLifeCycleState[] = -{ { (LONG64)prodml22__ReservoirLifeCycleState::abandoned, "abandoned" }, - { (LONG64)prodml22__ReservoirLifeCycleState::primary_x0020production, "primary production" }, - { (LONG64)prodml22__ReservoirLifeCycleState::prospect, "prospect" }, - { (LONG64)prodml22__ReservoirLifeCycleState::tertiary_x0020production, "tertiary production" }, - { (LONG64)prodml22__ReservoirLifeCycleState::undeveloped, "undeveloped" }, - { (LONG64)prodml22__ReservoirLifeCycleState::secondary_x0020recovery, "secondary recovery" }, +static const struct soap_code_map soap_codes_prodml23__ReservoirLifeCycleState[] = +{ { (LONG64)prodml23__ReservoirLifeCycleState::abandoned, "abandoned" }, + { (LONG64)prodml23__ReservoirLifeCycleState::primary_x0020production, "primary production" }, + { (LONG64)prodml23__ReservoirLifeCycleState::prospect, "prospect" }, + { (LONG64)prodml23__ReservoirLifeCycleState::tertiary_x0020production, "tertiary production" }, + { (LONG64)prodml23__ReservoirLifeCycleState::undeveloped, "undeveloped" }, + { (LONG64)prodml23__ReservoirLifeCycleState::secondary_x0020recovery, "secondary recovery" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReservoirLifeCycleState2s(struct soap *soap, prodml22__ReservoirLifeCycleState n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReservoirLifeCycleState2s(struct soap *soap, prodml23__ReservoirLifeCycleState n) { - const char *s = soap_code_str(soap_codes_prodml22__ReservoirLifeCycleState, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReservoirLifeCycleState, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirLifeCycleState(struct soap *soap, const char *tag, int id, const prodml22__ReservoirLifeCycleState *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirLifeCycleState(struct soap *soap, const char *tag, int id, const prodml23__ReservoirLifeCycleState *a, const char *type) { if (!type) - type = "prodml22:ReservoirLifeCycleState"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState), type) || soap_send(soap, soap_prodml22__ReservoirLifeCycleState2s(soap, *a))) + type = "prodml23:ReservoirLifeCycleState"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState), type) || soap_send(soap, soap_prodml23__ReservoirLifeCycleState2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReservoirLifeCycleState(struct soap *soap, const char *s, prodml22__ReservoirLifeCycleState *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReservoirLifeCycleState(struct soap *soap, const char *s, prodml23__ReservoirLifeCycleState *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReservoirLifeCycleState, s); + map = soap_code(soap_codes_prodml23__ReservoirLifeCycleState, s); if (map) - *a = (prodml22__ReservoirLifeCycleState)map->code; + *a = (prodml23__ReservoirLifeCycleState)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65849,85 +65844,85 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReservoirLifeCycleState(struct soap return SOAP_OK; } -SOAP_FMAC3 prodml22__ReservoirLifeCycleState * SOAP_FMAC4 soap_in_prodml22__ReservoirLifeCycleState(struct soap *soap, const char *tag, prodml22__ReservoirLifeCycleState *a, const char *type) +SOAP_FMAC3 prodml23__ReservoirLifeCycleState * SOAP_FMAC4 soap_in_prodml23__ReservoirLifeCycleState(struct soap *soap, const char *tag, prodml23__ReservoirLifeCycleState *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReservoirLifeCycleState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState, sizeof(prodml22__ReservoirLifeCycleState), NULL, NULL, NULL, NULL); + a = (prodml23__ReservoirLifeCycleState*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState, sizeof(prodml23__ReservoirLifeCycleState), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReservoirLifeCycleState(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReservoirLifeCycleState(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReservoirLifeCycleState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState, sizeof(prodml22__ReservoirLifeCycleState), 0, NULL, NULL); + { a = (prodml23__ReservoirLifeCycleState *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState, sizeof(prodml23__ReservoirLifeCycleState), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ReservoirLifeCycleState * SOAP_FMAC4 soap_new_prodml22__ReservoirLifeCycleState(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ReservoirLifeCycleState * SOAP_FMAC4 soap_new_prodml23__ReservoirLifeCycleState(struct soap *soap, int n) { - prodml22__ReservoirLifeCycleState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReservoirLifeCycleState))); - for (prodml22__ReservoirLifeCycleState *p = a; p && n--; ++p) - soap_default_prodml22__ReservoirLifeCycleState(soap, p); + prodml23__ReservoirLifeCycleState *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReservoirLifeCycleState))); + for (prodml23__ReservoirLifeCycleState *p = a; p && n--; ++p) + soap_default_prodml23__ReservoirLifeCycleState(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReservoirLifeCycleState(struct soap *soap, const prodml22__ReservoirLifeCycleState *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReservoirLifeCycleState(struct soap *soap, const prodml23__ReservoirLifeCycleState *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReservoirLifeCycleState(soap, tag ? tag : "prodml22:ReservoirLifeCycleState", -2, a, type)) + if (soap_out_prodml23__ReservoirLifeCycleState(soap, tag ? tag : "prodml23:ReservoirLifeCycleState", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReservoirLifeCycleState * SOAP_FMAC4 soap_get_prodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReservoirLifeCycleState * SOAP_FMAC4 soap_get_prodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReservoirLifeCycleState(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReservoirLifeCycleState(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PhasePresent[] = -{ { (LONG64)prodml22__PhasePresent::gas_x0020and_x0020oil_x0020and_x0020water, "gas and oil and water" }, - { (LONG64)prodml22__PhasePresent::water, "water" }, - { (LONG64)prodml22__PhasePresent::gas, "gas" }, - { (LONG64)prodml22__PhasePresent::oil, "oil" }, - { (LONG64)prodml22__PhasePresent::oil_x0020and_x0020gas, "oil and gas" }, - { (LONG64)prodml22__PhasePresent::oil_x0020and_x0020water, "oil and water" }, - { (LONG64)prodml22__PhasePresent::gas_x0020and_x0020water, "gas and water" }, +static const struct soap_code_map soap_codes_prodml23__PhasePresent[] = +{ { (LONG64)prodml23__PhasePresent::gas_x0020and_x0020oil_x0020and_x0020water, "gas and oil and water" }, + { (LONG64)prodml23__PhasePresent::water, "water" }, + { (LONG64)prodml23__PhasePresent::gas, "gas" }, + { (LONG64)prodml23__PhasePresent::oil, "oil" }, + { (LONG64)prodml23__PhasePresent::oil_x0020and_x0020gas, "oil and gas" }, + { (LONG64)prodml23__PhasePresent::oil_x0020and_x0020water, "oil and water" }, + { (LONG64)prodml23__PhasePresent::gas_x0020and_x0020water, "gas and water" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PhasePresent2s(struct soap *soap, prodml22__PhasePresent n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PhasePresent2s(struct soap *soap, prodml23__PhasePresent n) { - const char *s = soap_code_str(soap_codes_prodml22__PhasePresent, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PhasePresent, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PhasePresent(struct soap *soap, const char *tag, int id, const prodml22__PhasePresent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PhasePresent(struct soap *soap, const char *tag, int id, const prodml23__PhasePresent *a, const char *type) { if (!type) - type = "prodml22:PhasePresent"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent), type) || soap_send(soap, soap_prodml22__PhasePresent2s(soap, *a))) + type = "prodml23:PhasePresent"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent), type) || soap_send(soap, soap_prodml23__PhasePresent2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PhasePresent(struct soap *soap, const char *s, prodml22__PhasePresent *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PhasePresent(struct soap *soap, const char *s, prodml23__PhasePresent *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PhasePresent, s); + map = soap_code(soap_codes_prodml23__PhasePresent, s); if (map) - *a = (prodml22__PhasePresent)map->code; + *a = (prodml23__PhasePresent)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -65935,94 +65930,94 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PhasePresent(struct soap *soap, con return SOAP_OK; } -SOAP_FMAC3 prodml22__PhasePresent * SOAP_FMAC4 soap_in_prodml22__PhasePresent(struct soap *soap, const char *tag, prodml22__PhasePresent *a, const char *type) +SOAP_FMAC3 prodml23__PhasePresent * SOAP_FMAC4 soap_in_prodml23__PhasePresent(struct soap *soap, const char *tag, prodml23__PhasePresent *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PhasePresent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent, sizeof(prodml22__PhasePresent), NULL, NULL, NULL, NULL); + a = (prodml23__PhasePresent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent, sizeof(prodml23__PhasePresent), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PhasePresent(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PhasePresent(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PhasePresent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent, sizeof(prodml22__PhasePresent), 0, NULL, NULL); + { a = (prodml23__PhasePresent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent, sizeof(prodml23__PhasePresent), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PhasePresent * SOAP_FMAC4 soap_new_prodml22__PhasePresent(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PhasePresent * SOAP_FMAC4 soap_new_prodml23__PhasePresent(struct soap *soap, int n) { - prodml22__PhasePresent *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PhasePresent))); - for (prodml22__PhasePresent *p = a; p && n--; ++p) - soap_default_prodml22__PhasePresent(soap, p); + prodml23__PhasePresent *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PhasePresent))); + for (prodml23__PhasePresent *p = a; p && n--; ++p) + soap_default_prodml23__PhasePresent(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PhasePresent(struct soap *soap, const prodml22__PhasePresent *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PhasePresent(struct soap *soap, const prodml23__PhasePresent *a, const char *tag, const char *type) { - if (soap_out_prodml22__PhasePresent(soap, tag ? tag : "prodml22:PhasePresent", -2, a, type)) + if (soap_out_prodml23__PhasePresent(soap, tag ? tag : "prodml23:PhasePresent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PhasePresent * SOAP_FMAC4 soap_get_prodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PhasePresent * SOAP_FMAC4 soap_get_prodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PhasePresent(soap, tag, p, type))) + if ((p = soap_in_prodml23__PhasePresent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__VolumeReferenceKind[] = -{ { (LONG64)prodml22__VolumeReferenceKind::reservoir, "reservoir" }, - { (LONG64)prodml22__VolumeReferenceKind::saturation_calculated, "saturation-calculated" }, - { (LONG64)prodml22__VolumeReferenceKind::saturation_measured, "saturation-measured" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00201, "separator stage 1" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x002010, "separator stage 10" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00202, "separator stage 2" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00203, "separator stage 3" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00204, "separator stage 4" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00205, "separator stage 5" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00206, "separator stage 6" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00207, "separator stage 7" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00208, "separator stage 8" }, - { (LONG64)prodml22__VolumeReferenceKind::separator_x0020stage_x00209, "separator stage 9" }, - { (LONG64)prodml22__VolumeReferenceKind::stock_x0020tank, "stock tank" }, - { (LONG64)prodml22__VolumeReferenceKind::test_x0020step, "test step" }, - { (LONG64)prodml22__VolumeReferenceKind::other, "other" }, +static const struct soap_code_map soap_codes_prodml23__VolumeReferenceKind[] = +{ { (LONG64)prodml23__VolumeReferenceKind::reservoir, "reservoir" }, + { (LONG64)prodml23__VolumeReferenceKind::saturation_calculated, "saturation-calculated" }, + { (LONG64)prodml23__VolumeReferenceKind::saturation_measured, "saturation-measured" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00201, "separator stage 1" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x002010, "separator stage 10" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00202, "separator stage 2" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00203, "separator stage 3" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00204, "separator stage 4" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00205, "separator stage 5" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00206, "separator stage 6" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00207, "separator stage 7" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00208, "separator stage 8" }, + { (LONG64)prodml23__VolumeReferenceKind::separator_x0020stage_x00209, "separator stage 9" }, + { (LONG64)prodml23__VolumeReferenceKind::stock_x0020tank, "stock tank" }, + { (LONG64)prodml23__VolumeReferenceKind::test_x0020step, "test step" }, + { (LONG64)prodml23__VolumeReferenceKind::other, "other" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__VolumeReferenceKind2s(struct soap *soap, prodml22__VolumeReferenceKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__VolumeReferenceKind2s(struct soap *soap, prodml23__VolumeReferenceKind n) { - const char *s = soap_code_str(soap_codes_prodml22__VolumeReferenceKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__VolumeReferenceKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VolumeReferenceKind(struct soap *soap, const char *tag, int id, const prodml22__VolumeReferenceKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VolumeReferenceKind(struct soap *soap, const char *tag, int id, const prodml23__VolumeReferenceKind *a, const char *type) { if (!type) - type = "prodml22:VolumeReferenceKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind), type) || soap_send(soap, soap_prodml22__VolumeReferenceKind2s(soap, *a))) + type = "prodml23:VolumeReferenceKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind), type) || soap_send(soap, soap_prodml23__VolumeReferenceKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__VolumeReferenceKind(struct soap *soap, const char *s, prodml22__VolumeReferenceKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__VolumeReferenceKind(struct soap *soap, const char *s, prodml23__VolumeReferenceKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__VolumeReferenceKind, s); + map = soap_code(soap_codes_prodml23__VolumeReferenceKind, s); if (map) - *a = (prodml22__VolumeReferenceKind)map->code; + *a = (prodml23__VolumeReferenceKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66030,82 +66025,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__VolumeReferenceKind(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__VolumeReferenceKind * SOAP_FMAC4 soap_in_prodml22__VolumeReferenceKind(struct soap *soap, const char *tag, prodml22__VolumeReferenceKind *a, const char *type) +SOAP_FMAC3 prodml23__VolumeReferenceKind * SOAP_FMAC4 soap_in_prodml23__VolumeReferenceKind(struct soap *soap, const char *tag, prodml23__VolumeReferenceKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__VolumeReferenceKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind, sizeof(prodml22__VolumeReferenceKind), NULL, NULL, NULL, NULL); + a = (prodml23__VolumeReferenceKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind, sizeof(prodml23__VolumeReferenceKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__VolumeReferenceKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__VolumeReferenceKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__VolumeReferenceKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind, sizeof(prodml22__VolumeReferenceKind), 0, NULL, NULL); + { a = (prodml23__VolumeReferenceKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind, sizeof(prodml23__VolumeReferenceKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__VolumeReferenceKind * SOAP_FMAC4 soap_new_prodml22__VolumeReferenceKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__VolumeReferenceKind * SOAP_FMAC4 soap_new_prodml23__VolumeReferenceKind(struct soap *soap, int n) { - prodml22__VolumeReferenceKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__VolumeReferenceKind))); - for (prodml22__VolumeReferenceKind *p = a; p && n--; ++p) - soap_default_prodml22__VolumeReferenceKind(soap, p); + prodml23__VolumeReferenceKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__VolumeReferenceKind))); + for (prodml23__VolumeReferenceKind *p = a; p && n--; ++p) + soap_default_prodml23__VolumeReferenceKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__VolumeReferenceKind(struct soap *soap, const prodml22__VolumeReferenceKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__VolumeReferenceKind(struct soap *soap, const prodml23__VolumeReferenceKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__VolumeReferenceKind(soap, tag ? tag : "prodml22:VolumeReferenceKind", -2, a, type)) + if (soap_out_prodml23__VolumeReferenceKind(soap, tag ? tag : "prodml23:VolumeReferenceKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__VolumeReferenceKind * SOAP_FMAC4 soap_get_prodml22__VolumeReferenceKind(struct soap *soap, prodml22__VolumeReferenceKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VolumeReferenceKind * SOAP_FMAC4 soap_get_prodml23__VolumeReferenceKind(struct soap *soap, prodml23__VolumeReferenceKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__VolumeReferenceKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__VolumeReferenceKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ThermodynamicPhase[] = -{ { (LONG64)prodml22__ThermodynamicPhase::aqueous, "aqueous" }, - { (LONG64)prodml22__ThermodynamicPhase::oleic, "oleic" }, - { (LONG64)prodml22__ThermodynamicPhase::vapor, "vapor" }, - { (LONG64)prodml22__ThermodynamicPhase::total_x0020hydrocarbon, "total hydrocarbon" }, +static const struct soap_code_map soap_codes_prodml23__ThermodynamicPhase[] = +{ { (LONG64)prodml23__ThermodynamicPhase::aqueous, "aqueous" }, + { (LONG64)prodml23__ThermodynamicPhase::oleic, "oleic" }, + { (LONG64)prodml23__ThermodynamicPhase::vapor, "vapor" }, + { (LONG64)prodml23__ThermodynamicPhase::total_x0020hydrocarbon, "total hydrocarbon" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ThermodynamicPhase2s(struct soap *soap, prodml22__ThermodynamicPhase n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ThermodynamicPhase2s(struct soap *soap, prodml23__ThermodynamicPhase n) { - const char *s = soap_code_str(soap_codes_prodml22__ThermodynamicPhase, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ThermodynamicPhase, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ThermodynamicPhase(struct soap *soap, const char *tag, int id, const prodml22__ThermodynamicPhase *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ThermodynamicPhase(struct soap *soap, const char *tag, int id, const prodml23__ThermodynamicPhase *a, const char *type) { if (!type) - type = "prodml22:ThermodynamicPhase"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase), type) || soap_send(soap, soap_prodml22__ThermodynamicPhase2s(soap, *a))) + type = "prodml23:ThermodynamicPhase"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase), type) || soap_send(soap, soap_prodml23__ThermodynamicPhase2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ThermodynamicPhase(struct soap *soap, const char *s, prodml22__ThermodynamicPhase *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ThermodynamicPhase(struct soap *soap, const char *s, prodml23__ThermodynamicPhase *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ThermodynamicPhase, s); + map = soap_code(soap_codes_prodml23__ThermodynamicPhase, s); if (map) - *a = (prodml22__ThermodynamicPhase)map->code; + *a = (prodml23__ThermodynamicPhase)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66113,81 +66108,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ThermodynamicPhase(struct soap *soa return SOAP_OK; } -SOAP_FMAC3 prodml22__ThermodynamicPhase * SOAP_FMAC4 soap_in_prodml22__ThermodynamicPhase(struct soap *soap, const char *tag, prodml22__ThermodynamicPhase *a, const char *type) +SOAP_FMAC3 prodml23__ThermodynamicPhase * SOAP_FMAC4 soap_in_prodml23__ThermodynamicPhase(struct soap *soap, const char *tag, prodml23__ThermodynamicPhase *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ThermodynamicPhase*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase, sizeof(prodml22__ThermodynamicPhase), NULL, NULL, NULL, NULL); + a = (prodml23__ThermodynamicPhase*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase, sizeof(prodml23__ThermodynamicPhase), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ThermodynamicPhase(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ThermodynamicPhase(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ThermodynamicPhase *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase, sizeof(prodml22__ThermodynamicPhase), 0, NULL, NULL); + { a = (prodml23__ThermodynamicPhase *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase, sizeof(prodml23__ThermodynamicPhase), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ThermodynamicPhase * SOAP_FMAC4 soap_new_prodml22__ThermodynamicPhase(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ThermodynamicPhase * SOAP_FMAC4 soap_new_prodml23__ThermodynamicPhase(struct soap *soap, int n) { - prodml22__ThermodynamicPhase *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ThermodynamicPhase))); - for (prodml22__ThermodynamicPhase *p = a; p && n--; ++p) - soap_default_prodml22__ThermodynamicPhase(soap, p); + prodml23__ThermodynamicPhase *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ThermodynamicPhase))); + for (prodml23__ThermodynamicPhase *p = a; p && n--; ++p) + soap_default_prodml23__ThermodynamicPhase(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ThermodynamicPhase(struct soap *soap, const prodml22__ThermodynamicPhase *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ThermodynamicPhase(struct soap *soap, const prodml23__ThermodynamicPhase *a, const char *tag, const char *type) { - if (soap_out_prodml22__ThermodynamicPhase(soap, tag ? tag : "prodml22:ThermodynamicPhase", -2, a, type)) + if (soap_out_prodml23__ThermodynamicPhase(soap, tag ? tag : "prodml23:ThermodynamicPhase", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ThermodynamicPhase * SOAP_FMAC4 soap_get_prodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ThermodynamicPhase * SOAP_FMAC4 soap_get_prodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ThermodynamicPhase(soap, tag, p, type))) + if ((p = soap_in_prodml23__ThermodynamicPhase(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__SampleQuality[] = -{ { (LONG64)prodml22__SampleQuality::invalid, "invalid" }, - { (LONG64)prodml22__SampleQuality::unknown, "unknown" }, - { (LONG64)prodml22__SampleQuality::valid, "valid" }, +static const struct soap_code_map soap_codes_prodml23__SampleQuality[] = +{ { (LONG64)prodml23__SampleQuality::invalid, "invalid" }, + { (LONG64)prodml23__SampleQuality::unknown, "unknown" }, + { (LONG64)prodml23__SampleQuality::valid, "valid" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SampleQuality2s(struct soap *soap, prodml22__SampleQuality n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SampleQuality2s(struct soap *soap, prodml23__SampleQuality n) { - const char *s = soap_code_str(soap_codes_prodml22__SampleQuality, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__SampleQuality, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleQuality(struct soap *soap, const char *tag, int id, const prodml22__SampleQuality *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleQuality(struct soap *soap, const char *tag, int id, const prodml23__SampleQuality *a, const char *type) { if (!type) - type = "prodml22:SampleQuality"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality), type) || soap_send(soap, soap_prodml22__SampleQuality2s(soap, *a))) + type = "prodml23:SampleQuality"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality), type) || soap_send(soap, soap_prodml23__SampleQuality2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SampleQuality(struct soap *soap, const char *s, prodml22__SampleQuality *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SampleQuality(struct soap *soap, const char *s, prodml23__SampleQuality *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__SampleQuality, s); + map = soap_code(soap_codes_prodml23__SampleQuality, s); if (map) - *a = (prodml22__SampleQuality)map->code; + *a = (prodml23__SampleQuality)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66195,88 +66190,88 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SampleQuality(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleQuality * SOAP_FMAC4 soap_in_prodml22__SampleQuality(struct soap *soap, const char *tag, prodml22__SampleQuality *a, const char *type) +SOAP_FMAC3 prodml23__SampleQuality * SOAP_FMAC4 soap_in_prodml23__SampleQuality(struct soap *soap, const char *tag, prodml23__SampleQuality *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__SampleQuality*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality, sizeof(prodml22__SampleQuality), NULL, NULL, NULL, NULL); + a = (prodml23__SampleQuality*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality, sizeof(prodml23__SampleQuality), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__SampleQuality(soap, soap_value(soap), a); + { int err = soap_s2prodml23__SampleQuality(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__SampleQuality *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality, sizeof(prodml22__SampleQuality), 0, NULL, NULL); + { a = (prodml23__SampleQuality *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality, sizeof(prodml23__SampleQuality), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__SampleQuality * SOAP_FMAC4 soap_new_prodml22__SampleQuality(struct soap *soap, int n) +SOAP_FMAC3 prodml23__SampleQuality * SOAP_FMAC4 soap_new_prodml23__SampleQuality(struct soap *soap, int n) { - prodml22__SampleQuality *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__SampleQuality))); - for (prodml22__SampleQuality *p = a; p && n--; ++p) - soap_default_prodml22__SampleQuality(soap, p); + prodml23__SampleQuality *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__SampleQuality))); + for (prodml23__SampleQuality *p = a; p && n--; ++p) + soap_default_prodml23__SampleQuality(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SampleQuality(struct soap *soap, const prodml22__SampleQuality *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SampleQuality(struct soap *soap, const prodml23__SampleQuality *a, const char *tag, const char *type) { - if (soap_out_prodml22__SampleQuality(soap, tag ? tag : "prodml22:SampleQuality", -2, a, type)) + if (soap_out_prodml23__SampleQuality(soap, tag ? tag : "prodml23:SampleQuality", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleQuality * SOAP_FMAC4 soap_get_prodml22__SampleQuality(struct soap *soap, prodml22__SampleQuality *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleQuality * SOAP_FMAC4 soap_get_prodml23__SampleQuality(struct soap *soap, prodml23__SampleQuality *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SampleQuality(soap, tag, p, type))) + if ((p = soap_in_prodml23__SampleQuality(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__OrganicAcidKind[] = -{ { (LONG64)prodml22__OrganicAcidKind::_x0028COO_x002922_x002d, "(COO)22-" }, - { (LONG64)prodml22__OrganicAcidKind::C2H5OCOO_x002d, "C2H5OCOO-" }, - { (LONG64)prodml22__OrganicAcidKind::C3H5O_x0028COO_x002933_x002d, "C3H5O(COO)33-" }, - { (LONG64)prodml22__OrganicAcidKind::CH2_x0028COO_x002922_x002d, "CH2(COO)22-" }, - { (LONG64)prodml22__OrganicAcidKind::CH2OHCOO_x002d, "CH2OHCOO-" }, - { (LONG64)prodml22__OrganicAcidKind::CH3_x0028CH2_x00292COO_x002d, "CH3(CH2)2COO-" }, - { (LONG64)prodml22__OrganicAcidKind::CH3_x0028CH2_x00293COO_x002d, "CH3(CH2)3COO-" }, - { (LONG64)prodml22__OrganicAcidKind::CH3CH2COO_x002d, "CH3CH2COO-" }, - { (LONG64)prodml22__OrganicAcidKind::CH3COO_x002d, "CH3COO-" }, - { (LONG64)prodml22__OrganicAcidKind::HCOO_x002d, "HCOO-" }, +static const struct soap_code_map soap_codes_prodml23__OrganicAcidKind[] = +{ { (LONG64)prodml23__OrganicAcidKind::_x0028COO_x002922_x002d, "(COO)22-" }, + { (LONG64)prodml23__OrganicAcidKind::C2H5OCOO_x002d, "C2H5OCOO-" }, + { (LONG64)prodml23__OrganicAcidKind::C3H5O_x0028COO_x002933_x002d, "C3H5O(COO)33-" }, + { (LONG64)prodml23__OrganicAcidKind::CH2_x0028COO_x002922_x002d, "CH2(COO)22-" }, + { (LONG64)prodml23__OrganicAcidKind::CH2OHCOO_x002d, "CH2OHCOO-" }, + { (LONG64)prodml23__OrganicAcidKind::CH3_x0028CH2_x00292COO_x002d, "CH3(CH2)2COO-" }, + { (LONG64)prodml23__OrganicAcidKind::CH3_x0028CH2_x00293COO_x002d, "CH3(CH2)3COO-" }, + { (LONG64)prodml23__OrganicAcidKind::CH3CH2COO_x002d, "CH3CH2COO-" }, + { (LONG64)prodml23__OrganicAcidKind::CH3COO_x002d, "CH3COO-" }, + { (LONG64)prodml23__OrganicAcidKind::HCOO_x002d, "HCOO-" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__OrganicAcidKind2s(struct soap *soap, prodml22__OrganicAcidKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__OrganicAcidKind2s(struct soap *soap, prodml23__OrganicAcidKind n) { - const char *s = soap_code_str(soap_codes_prodml22__OrganicAcidKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__OrganicAcidKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrganicAcidKind(struct soap *soap, const char *tag, int id, const prodml22__OrganicAcidKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrganicAcidKind(struct soap *soap, const char *tag, int id, const prodml23__OrganicAcidKind *a, const char *type) { if (!type) - type = "prodml22:OrganicAcidKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind), type) || soap_send(soap, soap_prodml22__OrganicAcidKind2s(soap, *a))) + type = "prodml23:OrganicAcidKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind), type) || soap_send(soap, soap_prodml23__OrganicAcidKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__OrganicAcidKind(struct soap *soap, const char *s, prodml22__OrganicAcidKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__OrganicAcidKind(struct soap *soap, const char *s, prodml23__OrganicAcidKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__OrganicAcidKind, s); + map = soap_code(soap_codes_prodml23__OrganicAcidKind, s); if (map) - *a = (prodml22__OrganicAcidKind)map->code; + *a = (prodml23__OrganicAcidKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66284,88 +66279,88 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__OrganicAcidKind(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__OrganicAcidKind * SOAP_FMAC4 soap_in_prodml22__OrganicAcidKind(struct soap *soap, const char *tag, prodml22__OrganicAcidKind *a, const char *type) +SOAP_FMAC3 prodml23__OrganicAcidKind * SOAP_FMAC4 soap_in_prodml23__OrganicAcidKind(struct soap *soap, const char *tag, prodml23__OrganicAcidKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__OrganicAcidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind, sizeof(prodml22__OrganicAcidKind), NULL, NULL, NULL, NULL); + a = (prodml23__OrganicAcidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind, sizeof(prodml23__OrganicAcidKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__OrganicAcidKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__OrganicAcidKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__OrganicAcidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind, sizeof(prodml22__OrganicAcidKind), 0, NULL, NULL); + { a = (prodml23__OrganicAcidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind, sizeof(prodml23__OrganicAcidKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__OrganicAcidKind * SOAP_FMAC4 soap_new_prodml22__OrganicAcidKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__OrganicAcidKind * SOAP_FMAC4 soap_new_prodml23__OrganicAcidKind(struct soap *soap, int n) { - prodml22__OrganicAcidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__OrganicAcidKind))); - for (prodml22__OrganicAcidKind *p = a; p && n--; ++p) - soap_default_prodml22__OrganicAcidKind(soap, p); + prodml23__OrganicAcidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__OrganicAcidKind))); + for (prodml23__OrganicAcidKind *p = a; p && n--; ++p) + soap_default_prodml23__OrganicAcidKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OrganicAcidKind(struct soap *soap, const prodml22__OrganicAcidKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OrganicAcidKind(struct soap *soap, const prodml23__OrganicAcidKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__OrganicAcidKind(soap, tag ? tag : "prodml22:OrganicAcidKind", -2, a, type)) + if (soap_out_prodml23__OrganicAcidKind(soap, tag ? tag : "prodml23:OrganicAcidKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OrganicAcidKind * SOAP_FMAC4 soap_get_prodml22__OrganicAcidKind(struct soap *soap, prodml22__OrganicAcidKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrganicAcidKind * SOAP_FMAC4 soap_get_prodml23__OrganicAcidKind(struct soap *soap, prodml23__OrganicAcidKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrganicAcidKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrganicAcidKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FluidContaminant[] = -{ { (LONG64)prodml22__FluidContaminant::cement_x0020fluids, "cement fluids" }, - { (LONG64)prodml22__FluidContaminant::completion_x0020fluid, "completion fluid" }, - { (LONG64)prodml22__FluidContaminant::drilling_x0020mud, "drilling mud" }, - { (LONG64)prodml22__FluidContaminant::extraneous_x0020gas, "extraneous gas" }, - { (LONG64)prodml22__FluidContaminant::extraneous_x0020oil, "extraneous oil" }, - { (LONG64)prodml22__FluidContaminant::extraneous_x0020water, "extraneous water" }, - { (LONG64)prodml22__FluidContaminant::formation_x0020water, "formation water" }, - { (LONG64)prodml22__FluidContaminant::treatment_x0020chemicals, "treatment chemicals" }, - { (LONG64)prodml22__FluidContaminant::solid, "solid" }, - { (LONG64)prodml22__FluidContaminant::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__FluidContaminant[] = +{ { (LONG64)prodml23__FluidContaminant::cement_x0020fluids, "cement fluids" }, + { (LONG64)prodml23__FluidContaminant::completion_x0020fluid, "completion fluid" }, + { (LONG64)prodml23__FluidContaminant::drilling_x0020mud, "drilling mud" }, + { (LONG64)prodml23__FluidContaminant::extraneous_x0020gas, "extraneous gas" }, + { (LONG64)prodml23__FluidContaminant::extraneous_x0020oil, "extraneous oil" }, + { (LONG64)prodml23__FluidContaminant::extraneous_x0020water, "extraneous water" }, + { (LONG64)prodml23__FluidContaminant::formation_x0020water, "formation water" }, + { (LONG64)prodml23__FluidContaminant::treatment_x0020chemicals, "treatment chemicals" }, + { (LONG64)prodml23__FluidContaminant::solid, "solid" }, + { (LONG64)prodml23__FluidContaminant::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidContaminant2s(struct soap *soap, prodml22__FluidContaminant n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidContaminant2s(struct soap *soap, prodml23__FluidContaminant n) { - const char *s = soap_code_str(soap_codes_prodml22__FluidContaminant, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FluidContaminant, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidContaminant(struct soap *soap, const char *tag, int id, const prodml22__FluidContaminant *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidContaminant(struct soap *soap, const char *tag, int id, const prodml23__FluidContaminant *a, const char *type) { if (!type) - type = "prodml22:FluidContaminant"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant), type) || soap_send(soap, soap_prodml22__FluidContaminant2s(soap, *a))) + type = "prodml23:FluidContaminant"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant), type) || soap_send(soap, soap_prodml23__FluidContaminant2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidContaminant(struct soap *soap, const char *s, prodml22__FluidContaminant *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidContaminant(struct soap *soap, const char *s, prodml23__FluidContaminant *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FluidContaminant, s); + map = soap_code(soap_codes_prodml23__FluidContaminant, s); if (map) - *a = (prodml22__FluidContaminant)map->code; + *a = (prodml23__FluidContaminant)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66373,82 +66368,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidContaminant(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidContaminant * SOAP_FMAC4 soap_in_prodml22__FluidContaminant(struct soap *soap, const char *tag, prodml22__FluidContaminant *a, const char *type) +SOAP_FMAC3 prodml23__FluidContaminant * SOAP_FMAC4 soap_in_prodml23__FluidContaminant(struct soap *soap, const char *tag, prodml23__FluidContaminant *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FluidContaminant*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant, sizeof(prodml22__FluidContaminant), NULL, NULL, NULL, NULL); + a = (prodml23__FluidContaminant*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant, sizeof(prodml23__FluidContaminant), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FluidContaminant(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FluidContaminant(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FluidContaminant *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant, sizeof(prodml22__FluidContaminant), 0, NULL, NULL); + { a = (prodml23__FluidContaminant *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant, sizeof(prodml23__FluidContaminant), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FluidContaminant * SOAP_FMAC4 soap_new_prodml22__FluidContaminant(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FluidContaminant * SOAP_FMAC4 soap_new_prodml23__FluidContaminant(struct soap *soap, int n) { - prodml22__FluidContaminant *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FluidContaminant))); - for (prodml22__FluidContaminant *p = a; p && n--; ++p) - soap_default_prodml22__FluidContaminant(soap, p); + prodml23__FluidContaminant *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FluidContaminant))); + for (prodml23__FluidContaminant *p = a; p && n--; ++p) + soap_default_prodml23__FluidContaminant(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidContaminant(struct soap *soap, const prodml22__FluidContaminant *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidContaminant(struct soap *soap, const prodml23__FluidContaminant *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidContaminant(soap, tag ? tag : "prodml22:FluidContaminant", -2, a, type)) + if (soap_out_prodml23__FluidContaminant(soap, tag ? tag : "prodml23:FluidContaminant", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidContaminant * SOAP_FMAC4 soap_get_prodml22__FluidContaminant(struct soap *soap, prodml22__FluidContaminant *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidContaminant * SOAP_FMAC4 soap_get_prodml23__FluidContaminant(struct soap *soap, prodml23__FluidContaminant *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidContaminant(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidContaminant(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FluidAnalysisStepCondition[] = -{ { (LONG64)prodml22__FluidAnalysisStepCondition::current_x0020reservoir_x0020conditions, "current reservoir conditions" }, - { (LONG64)prodml22__FluidAnalysisStepCondition::initial_x0020reservoir_x0020conditions, "initial reservoir conditions" }, - { (LONG64)prodml22__FluidAnalysisStepCondition::initial_x0020saturation_x0020conditions, "initial saturation conditions" }, - { (LONG64)prodml22__FluidAnalysisStepCondition::stock_x0020tank_x0020conditions, "stock tank conditions" }, +static const struct soap_code_map soap_codes_prodml23__FluidAnalysisStepCondition[] = +{ { (LONG64)prodml23__FluidAnalysisStepCondition::current_x0020reservoir_x0020conditions, "current reservoir conditions" }, + { (LONG64)prodml23__FluidAnalysisStepCondition::initial_x0020reservoir_x0020conditions, "initial reservoir conditions" }, + { (LONG64)prodml23__FluidAnalysisStepCondition::initial_x0020saturation_x0020conditions, "initial saturation conditions" }, + { (LONG64)prodml23__FluidAnalysisStepCondition::stock_x0020tank_x0020conditions, "stock tank conditions" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidAnalysisStepCondition2s(struct soap *soap, prodml22__FluidAnalysisStepCondition n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidAnalysisStepCondition2s(struct soap *soap, prodml23__FluidAnalysisStepCondition n) { - const char *s = soap_code_str(soap_codes_prodml22__FluidAnalysisStepCondition, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FluidAnalysisStepCondition, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *tag, int id, const prodml22__FluidAnalysisStepCondition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *tag, int id, const prodml23__FluidAnalysisStepCondition *a, const char *type) { if (!type) - type = "prodml22:FluidAnalysisStepCondition"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition), type) || soap_send(soap, soap_prodml22__FluidAnalysisStepCondition2s(soap, *a))) + type = "prodml23:FluidAnalysisStepCondition"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition), type) || soap_send(soap, soap_prodml23__FluidAnalysisStepCondition2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *s, prodml22__FluidAnalysisStepCondition *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *s, prodml23__FluidAnalysisStepCondition *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FluidAnalysisStepCondition, s); + map = soap_code(soap_codes_prodml23__FluidAnalysisStepCondition, s); if (map) - *a = (prodml22__FluidAnalysisStepCondition)map->code; + *a = (prodml23__FluidAnalysisStepCondition)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66456,80 +66451,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidAnalysisStepCondition(struct s return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition * SOAP_FMAC4 soap_in_prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *tag, prodml22__FluidAnalysisStepCondition *a, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition * SOAP_FMAC4 soap_in_prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *tag, prodml23__FluidAnalysisStepCondition *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FluidAnalysisStepCondition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition, sizeof(prodml22__FluidAnalysisStepCondition), NULL, NULL, NULL, NULL); + a = (prodml23__FluidAnalysisStepCondition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition, sizeof(prodml23__FluidAnalysisStepCondition), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FluidAnalysisStepCondition(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FluidAnalysisStepCondition(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FluidAnalysisStepCondition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition, sizeof(prodml22__FluidAnalysisStepCondition), 0, NULL, NULL); + { a = (prodml23__FluidAnalysisStepCondition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition, sizeof(prodml23__FluidAnalysisStepCondition), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition * SOAP_FMAC4 soap_new_prodml22__FluidAnalysisStepCondition(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition * SOAP_FMAC4 soap_new_prodml23__FluidAnalysisStepCondition(struct soap *soap, int n) { - prodml22__FluidAnalysisStepCondition *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FluidAnalysisStepCondition))); - for (prodml22__FluidAnalysisStepCondition *p = a; p && n--; ++p) - soap_default_prodml22__FluidAnalysisStepCondition(soap, p); + prodml23__FluidAnalysisStepCondition *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FluidAnalysisStepCondition))); + for (prodml23__FluidAnalysisStepCondition *p = a; p && n--; ++p) + soap_default_prodml23__FluidAnalysisStepCondition(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidAnalysisStepCondition(struct soap *soap, const prodml22__FluidAnalysisStepCondition *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidAnalysisStepCondition(struct soap *soap, const prodml23__FluidAnalysisStepCondition *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidAnalysisStepCondition(soap, tag ? tag : "prodml22:FluidAnalysisStepCondition", -2, a, type)) + if (soap_out_prodml23__FluidAnalysisStepCondition(soap, tag ? tag : "prodml23:FluidAnalysisStepCondition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition * SOAP_FMAC4 soap_get_prodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition * SOAP_FMAC4 soap_get_prodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidAnalysisStepCondition(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidAnalysisStepCondition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__DetectableLimitRelativeStateKind[] = -{ { (LONG64)prodml22__DetectableLimitRelativeStateKind::ADL, "ADL" }, - { (LONG64)prodml22__DetectableLimitRelativeStateKind::BDL, "BDL" }, +static const struct soap_code_map soap_codes_prodml23__DetectableLimitRelativeStateKind[] = +{ { (LONG64)prodml23__DetectableLimitRelativeStateKind::ADL, "ADL" }, + { (LONG64)prodml23__DetectableLimitRelativeStateKind::BDL, "BDL" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__DetectableLimitRelativeStateKind2s(struct soap *soap, prodml22__DetectableLimitRelativeStateKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__DetectableLimitRelativeStateKind2s(struct soap *soap, prodml23__DetectableLimitRelativeStateKind n) { - const char *s = soap_code_str(soap_codes_prodml22__DetectableLimitRelativeStateKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__DetectableLimitRelativeStateKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, int id, const prodml22__DetectableLimitRelativeStateKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, int id, const prodml23__DetectableLimitRelativeStateKind *a, const char *type) { if (!type) - type = "prodml22:DetectableLimitRelativeStateKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind), type) || soap_send(soap, soap_prodml22__DetectableLimitRelativeStateKind2s(soap, *a))) + type = "prodml23:DetectableLimitRelativeStateKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind), type) || soap_send(soap, soap_prodml23__DetectableLimitRelativeStateKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *s, prodml22__DetectableLimitRelativeStateKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *s, prodml23__DetectableLimitRelativeStateKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__DetectableLimitRelativeStateKind, s); + map = soap_code(soap_codes_prodml23__DetectableLimitRelativeStateKind, s); if (map) - *a = (prodml22__DetectableLimitRelativeStateKind)map->code; + *a = (prodml23__DetectableLimitRelativeStateKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66537,80 +66532,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__DetectableLimitRelativeStateKind(st return SOAP_OK; } -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_in_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, prodml22__DetectableLimitRelativeStateKind *a, const char *type) +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_in_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, prodml23__DetectableLimitRelativeStateKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__DetectableLimitRelativeStateKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind, sizeof(prodml22__DetectableLimitRelativeStateKind), NULL, NULL, NULL, NULL); + a = (prodml23__DetectableLimitRelativeStateKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind, sizeof(prodml23__DetectableLimitRelativeStateKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__DetectableLimitRelativeStateKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__DetectableLimitRelativeStateKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__DetectableLimitRelativeStateKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind, sizeof(prodml22__DetectableLimitRelativeStateKind), 0, NULL, NULL); + { a = (prodml23__DetectableLimitRelativeStateKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind, sizeof(prodml23__DetectableLimitRelativeStateKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_new_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_new_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, int n) { - prodml22__DetectableLimitRelativeStateKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__DetectableLimitRelativeStateKind))); - for (prodml22__DetectableLimitRelativeStateKind *p = a; p && n--; ++p) - soap_default_prodml22__DetectableLimitRelativeStateKind(soap, p); + prodml23__DetectableLimitRelativeStateKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__DetectableLimitRelativeStateKind))); + for (prodml23__DetectableLimitRelativeStateKind *p = a; p && n--; ++p) + soap_default_prodml23__DetectableLimitRelativeStateKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const prodml22__DetectableLimitRelativeStateKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const prodml23__DetectableLimitRelativeStateKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__DetectableLimitRelativeStateKind(soap, tag ? tag : "prodml22:DetectableLimitRelativeStateKind", -2, a, type)) + if (soap_out_prodml23__DetectableLimitRelativeStateKind(soap, tag ? tag : "prodml23:DetectableLimitRelativeStateKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_get_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_get_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DetectableLimitRelativeStateKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__DetectableLimitRelativeStateKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__CompressibilityKind[] = -{ { (LONG64)prodml22__CompressibilityKind::average, "average" }, - { (LONG64)prodml22__CompressibilityKind::point, "point" }, +static const struct soap_code_map soap_codes_prodml23__CompressibilityKind[] = +{ { (LONG64)prodml23__CompressibilityKind::average, "average" }, + { (LONG64)prodml23__CompressibilityKind::point, "point" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__CompressibilityKind2s(struct soap *soap, prodml22__CompressibilityKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__CompressibilityKind2s(struct soap *soap, prodml23__CompressibilityKind n) { - const char *s = soap_code_str(soap_codes_prodml22__CompressibilityKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__CompressibilityKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CompressibilityKind(struct soap *soap, const char *tag, int id, const prodml22__CompressibilityKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CompressibilityKind(struct soap *soap, const char *tag, int id, const prodml23__CompressibilityKind *a, const char *type) { if (!type) - type = "prodml22:CompressibilityKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind), type) || soap_send(soap, soap_prodml22__CompressibilityKind2s(soap, *a))) + type = "prodml23:CompressibilityKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind), type) || soap_send(soap, soap_prodml23__CompressibilityKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CompressibilityKind(struct soap *soap, const char *s, prodml22__CompressibilityKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__CompressibilityKind(struct soap *soap, const char *s, prodml23__CompressibilityKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__CompressibilityKind, s); + map = soap_code(soap_codes_prodml23__CompressibilityKind, s); if (map) - *a = (prodml22__CompressibilityKind)map->code; + *a = (prodml23__CompressibilityKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66618,108 +66613,108 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CompressibilityKind(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__CompressibilityKind * SOAP_FMAC4 soap_in_prodml22__CompressibilityKind(struct soap *soap, const char *tag, prodml22__CompressibilityKind *a, const char *type) +SOAP_FMAC3 prodml23__CompressibilityKind * SOAP_FMAC4 soap_in_prodml23__CompressibilityKind(struct soap *soap, const char *tag, prodml23__CompressibilityKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__CompressibilityKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind, sizeof(prodml22__CompressibilityKind), NULL, NULL, NULL, NULL); + a = (prodml23__CompressibilityKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind, sizeof(prodml23__CompressibilityKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__CompressibilityKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__CompressibilityKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__CompressibilityKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind, sizeof(prodml22__CompressibilityKind), 0, NULL, NULL); + { a = (prodml23__CompressibilityKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind, sizeof(prodml23__CompressibilityKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__CompressibilityKind * SOAP_FMAC4 soap_new_prodml22__CompressibilityKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__CompressibilityKind * SOAP_FMAC4 soap_new_prodml23__CompressibilityKind(struct soap *soap, int n) { - prodml22__CompressibilityKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__CompressibilityKind))); - for (prodml22__CompressibilityKind *p = a; p && n--; ++p) - soap_default_prodml22__CompressibilityKind(soap, p); + prodml23__CompressibilityKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__CompressibilityKind))); + for (prodml23__CompressibilityKind *p = a; p && n--; ++p) + soap_default_prodml23__CompressibilityKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CompressibilityKind(struct soap *soap, const prodml22__CompressibilityKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CompressibilityKind(struct soap *soap, const prodml23__CompressibilityKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__CompressibilityKind(soap, tag ? tag : "prodml22:CompressibilityKind", -2, a, type)) + if (soap_out_prodml23__CompressibilityKind(soap, tag ? tag : "prodml23:CompressibilityKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CompressibilityKind * SOAP_FMAC4 soap_get_prodml22__CompressibilityKind(struct soap *soap, prodml22__CompressibilityKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CompressibilityKind * SOAP_FMAC4 soap_get_prodml23__CompressibilityKind(struct soap *soap, prodml23__CompressibilityKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CompressibilityKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__CompressibilityKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__CationKind[] = -{ { (LONG64)prodml22__CationKind::Al_x002b3, "Al+3" }, - { (LONG64)prodml22__CationKind::B_x002b3, "B+3" }, - { (LONG64)prodml22__CationKind::Ba_x002b2, "Ba+2" }, - { (LONG64)prodml22__CationKind::Be_x002b2, "Be+2" }, - { (LONG64)prodml22__CationKind::Ca_x002b2, "Ca+2" }, - { (LONG64)prodml22__CationKind::Cd_x002b2, "Cd+2" }, - { (LONG64)prodml22__CationKind::Co_x002b2, "Co+2" }, - { (LONG64)prodml22__CationKind::Cr_x002b3, "Cr+3" }, - { (LONG64)prodml22__CationKind::Cu_x002b2, "Cu+2" }, - { (LONG64)prodml22__CationKind::Fe_x002b2, "Fe+2" }, - { (LONG64)prodml22__CationKind::Fe_x002b3, "Fe+3" }, - { (LONG64)prodml22__CationKind::K_x002b, "K+" }, - { (LONG64)prodml22__CationKind::Li_x002b, "Li+" }, - { (LONG64)prodml22__CationKind::Mg_x002b2, "Mg+2" }, - { (LONG64)prodml22__CationKind::Mn_x002b2, "Mn+2" }, - { (LONG64)prodml22__CationKind::Mo_x002b6, "Mo+6" }, - { (LONG64)prodml22__CationKind::Na_x002b, "Na+" }, - { (LONG64)prodml22__CationKind::NH4_x002b, "NH4+" }, - { (LONG64)prodml22__CationKind::Ni_x002b2, "Ni+2" }, - { (LONG64)prodml22__CationKind::P_x002b3, "P+3" }, - { (LONG64)prodml22__CationKind::Pb_x002b2, "Pb+2" }, - { (LONG64)prodml22__CationKind::Rb_x002b1, "Rb+1" }, - { (LONG64)prodml22__CationKind::Se_x002b4, "Se+4" }, - { (LONG64)prodml22__CationKind::Si_x002b4, "Si+4" }, - { (LONG64)prodml22__CationKind::Sn_x002b4, "Sn+4" }, - { (LONG64)prodml22__CationKind::Sr_x002b2, "Sr+2" }, - { (LONG64)prodml22__CationKind::Ti_x002b4, "Ti+4" }, - { (LONG64)prodml22__CationKind::Tl_x002b1, "Tl+1" }, - { (LONG64)prodml22__CationKind::V_x002b2, "V+2" }, - { (LONG64)prodml22__CationKind::Zn_x002b2, "Zn+2" }, +static const struct soap_code_map soap_codes_prodml23__CationKind[] = +{ { (LONG64)prodml23__CationKind::Al_x002b3, "Al+3" }, + { (LONG64)prodml23__CationKind::B_x002b3, "B+3" }, + { (LONG64)prodml23__CationKind::Ba_x002b2, "Ba+2" }, + { (LONG64)prodml23__CationKind::Be_x002b2, "Be+2" }, + { (LONG64)prodml23__CationKind::Ca_x002b2, "Ca+2" }, + { (LONG64)prodml23__CationKind::Cd_x002b2, "Cd+2" }, + { (LONG64)prodml23__CationKind::Co_x002b2, "Co+2" }, + { (LONG64)prodml23__CationKind::Cr_x002b3, "Cr+3" }, + { (LONG64)prodml23__CationKind::Cu_x002b2, "Cu+2" }, + { (LONG64)prodml23__CationKind::Fe_x002b2, "Fe+2" }, + { (LONG64)prodml23__CationKind::Fe_x002b3, "Fe+3" }, + { (LONG64)prodml23__CationKind::K_x002b, "K+" }, + { (LONG64)prodml23__CationKind::Li_x002b, "Li+" }, + { (LONG64)prodml23__CationKind::Mg_x002b2, "Mg+2" }, + { (LONG64)prodml23__CationKind::Mn_x002b2, "Mn+2" }, + { (LONG64)prodml23__CationKind::Mo_x002b6, "Mo+6" }, + { (LONG64)prodml23__CationKind::Na_x002b, "Na+" }, + { (LONG64)prodml23__CationKind::NH4_x002b, "NH4+" }, + { (LONG64)prodml23__CationKind::Ni_x002b2, "Ni+2" }, + { (LONG64)prodml23__CationKind::P_x002b3, "P+3" }, + { (LONG64)prodml23__CationKind::Pb_x002b2, "Pb+2" }, + { (LONG64)prodml23__CationKind::Rb_x002b1, "Rb+1" }, + { (LONG64)prodml23__CationKind::Se_x002b4, "Se+4" }, + { (LONG64)prodml23__CationKind::Si_x002b4, "Si+4" }, + { (LONG64)prodml23__CationKind::Sn_x002b4, "Sn+4" }, + { (LONG64)prodml23__CationKind::Sr_x002b2, "Sr+2" }, + { (LONG64)prodml23__CationKind::Ti_x002b4, "Ti+4" }, + { (LONG64)prodml23__CationKind::Tl_x002b1, "Tl+1" }, + { (LONG64)prodml23__CationKind::V_x002b2, "V+2" }, + { (LONG64)prodml23__CationKind::Zn_x002b2, "Zn+2" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__CationKind2s(struct soap *soap, prodml22__CationKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__CationKind2s(struct soap *soap, prodml23__CationKind n) { - const char *s = soap_code_str(soap_codes_prodml22__CationKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__CationKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CationKind(struct soap *soap, const char *tag, int id, const prodml22__CationKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CationKind(struct soap *soap, const char *tag, int id, const prodml23__CationKind *a, const char *type) { if (!type) - type = "prodml22:CationKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind), type) || soap_send(soap, soap_prodml22__CationKind2s(soap, *a))) + type = "prodml23:CationKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind), type) || soap_send(soap, soap_prodml23__CationKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CationKind(struct soap *soap, const char *s, prodml22__CationKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__CationKind(struct soap *soap, const char *s, prodml23__CationKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__CationKind, s); + map = soap_code(soap_codes_prodml23__CationKind, s); if (map) - *a = (prodml22__CationKind)map->code; + *a = (prodml23__CationKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66727,92 +66722,92 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CationKind(struct soap *soap, const return SOAP_OK; } -SOAP_FMAC3 prodml22__CationKind * SOAP_FMAC4 soap_in_prodml22__CationKind(struct soap *soap, const char *tag, prodml22__CationKind *a, const char *type) +SOAP_FMAC3 prodml23__CationKind * SOAP_FMAC4 soap_in_prodml23__CationKind(struct soap *soap, const char *tag, prodml23__CationKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__CationKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind, sizeof(prodml22__CationKind), NULL, NULL, NULL, NULL); + a = (prodml23__CationKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind, sizeof(prodml23__CationKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__CationKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__CationKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__CationKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind, sizeof(prodml22__CationKind), 0, NULL, NULL); + { a = (prodml23__CationKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind, sizeof(prodml23__CationKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__CationKind * SOAP_FMAC4 soap_new_prodml22__CationKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__CationKind * SOAP_FMAC4 soap_new_prodml23__CationKind(struct soap *soap, int n) { - prodml22__CationKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__CationKind))); - for (prodml22__CationKind *p = a; p && n--; ++p) - soap_default_prodml22__CationKind(soap, p); + prodml23__CationKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__CationKind))); + for (prodml23__CationKind *p = a; p && n--; ++p) + soap_default_prodml23__CationKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CationKind(struct soap *soap, const prodml22__CationKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CationKind(struct soap *soap, const prodml23__CationKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__CationKind(soap, tag ? tag : "prodml22:CationKind", -2, a, type)) + if (soap_out_prodml23__CationKind(soap, tag ? tag : "prodml23:CationKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CationKind * SOAP_FMAC4 soap_get_prodml22__CationKind(struct soap *soap, prodml22__CationKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CationKind * SOAP_FMAC4 soap_get_prodml23__CationKind(struct soap *soap, prodml23__CationKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CationKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__CationKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__AnionKind[] = -{ { (LONG64)prodml22__AnionKind::B_x0028OH_x00294_x002d, "B(OH)4-" }, - { (LONG64)prodml22__AnionKind::Br_x002d, "Br-" }, - { (LONG64)prodml22__AnionKind::Cl_x002d, "Cl-" }, - { (LONG64)prodml22__AnionKind::CO3_2, "CO3-2" }, - { (LONG64)prodml22__AnionKind::F_x002d, "F-" }, - { (LONG64)prodml22__AnionKind::HCO3_x002d, "HCO3-" }, - { (LONG64)prodml22__AnionKind::HS_x002d, "HS-" }, - { (LONG64)prodml22__AnionKind::I_x002d, "I-" }, - { (LONG64)prodml22__AnionKind::NO2_x002d, "NO2-" }, - { (LONG64)prodml22__AnionKind::NO3_2, "NO3-2" }, - { (LONG64)prodml22__AnionKind::OH_x002d, "OH-" }, - { (LONG64)prodml22__AnionKind::PO4_3, "PO4-3" }, - { (LONG64)prodml22__AnionKind::S_2, "S-2" }, - { (LONG64)prodml22__AnionKind::SO4_2, "SO4-2" }, +static const struct soap_code_map soap_codes_prodml23__AnionKind[] = +{ { (LONG64)prodml23__AnionKind::B_x0028OH_x00294_x002d, "B(OH)4-" }, + { (LONG64)prodml23__AnionKind::Br_x002d, "Br-" }, + { (LONG64)prodml23__AnionKind::Cl_x002d, "Cl-" }, + { (LONG64)prodml23__AnionKind::CO3_2, "CO3-2" }, + { (LONG64)prodml23__AnionKind::F_x002d, "F-" }, + { (LONG64)prodml23__AnionKind::HCO3_x002d, "HCO3-" }, + { (LONG64)prodml23__AnionKind::HS_x002d, "HS-" }, + { (LONG64)prodml23__AnionKind::I_x002d, "I-" }, + { (LONG64)prodml23__AnionKind::NO2_x002d, "NO2-" }, + { (LONG64)prodml23__AnionKind::NO3_2, "NO3-2" }, + { (LONG64)prodml23__AnionKind::OH_x002d, "OH-" }, + { (LONG64)prodml23__AnionKind::PO4_3, "PO4-3" }, + { (LONG64)prodml23__AnionKind::S_2, "S-2" }, + { (LONG64)prodml23__AnionKind::SO4_2, "SO4-2" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__AnionKind2s(struct soap *soap, prodml22__AnionKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__AnionKind2s(struct soap *soap, prodml23__AnionKind n) { - const char *s = soap_code_str(soap_codes_prodml22__AnionKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__AnionKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AnionKind(struct soap *soap, const char *tag, int id, const prodml22__AnionKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AnionKind(struct soap *soap, const char *tag, int id, const prodml23__AnionKind *a, const char *type) { if (!type) - type = "prodml22:AnionKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind), type) || soap_send(soap, soap_prodml22__AnionKind2s(soap, *a))) + type = "prodml23:AnionKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind), type) || soap_send(soap, soap_prodml23__AnionKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__AnionKind(struct soap *soap, const char *s, prodml22__AnionKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__AnionKind(struct soap *soap, const char *s, prodml23__AnionKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__AnionKind, s); + map = soap_code(soap_codes_prodml23__AnionKind, s); if (map) - *a = (prodml22__AnionKind)map->code; + *a = (prodml23__AnionKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66820,92 +66815,92 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__AnionKind(struct soap *soap, const return SOAP_OK; } -SOAP_FMAC3 prodml22__AnionKind * SOAP_FMAC4 soap_in_prodml22__AnionKind(struct soap *soap, const char *tag, prodml22__AnionKind *a, const char *type) +SOAP_FMAC3 prodml23__AnionKind * SOAP_FMAC4 soap_in_prodml23__AnionKind(struct soap *soap, const char *tag, prodml23__AnionKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__AnionKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind, sizeof(prodml22__AnionKind), NULL, NULL, NULL, NULL); + a = (prodml23__AnionKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind, sizeof(prodml23__AnionKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__AnionKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__AnionKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__AnionKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind, sizeof(prodml22__AnionKind), 0, NULL, NULL); + { a = (prodml23__AnionKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind, sizeof(prodml23__AnionKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__AnionKind * SOAP_FMAC4 soap_new_prodml22__AnionKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__AnionKind * SOAP_FMAC4 soap_new_prodml23__AnionKind(struct soap *soap, int n) { - prodml22__AnionKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__AnionKind))); - for (prodml22__AnionKind *p = a; p && n--; ++p) - soap_default_prodml22__AnionKind(soap, p); + prodml23__AnionKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__AnionKind))); + for (prodml23__AnionKind *p = a; p && n--; ++p) + soap_default_prodml23__AnionKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__AnionKind(struct soap *soap, const prodml22__AnionKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__AnionKind(struct soap *soap, const prodml23__AnionKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__AnionKind(soap, tag ? tag : "prodml22:AnionKind", -2, a, type)) + if (soap_out_prodml23__AnionKind(soap, tag ? tag : "prodml23:AnionKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AnionKind * SOAP_FMAC4 soap_get_prodml22__AnionKind(struct soap *soap, prodml22__AnionKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AnionKind * SOAP_FMAC4 soap_get_prodml23__AnionKind(struct soap *soap, prodml23__AnionKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AnionKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__AnionKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__WellFluid[] = -{ { (LONG64)prodml22__WellFluid::air, "air" }, - { (LONG64)prodml22__WellFluid::condensate, "condensate" }, - { (LONG64)prodml22__WellFluid::dry, "dry" }, - { (LONG64)prodml22__WellFluid::gas, "gas" }, - { (LONG64)prodml22__WellFluid::gas_water, "gas-water" }, - { (LONG64)prodml22__WellFluid::non_x0020HC_x0020gas, "non HC gas" }, - { (LONG64)prodml22__WellFluid::non_x0020HC_x0020gas_x0020_x002d__x0020CO2, "non HC gas -- CO2" }, - { (LONG64)prodml22__WellFluid::oil, "oil" }, - { (LONG64)prodml22__WellFluid::oil_gas, "oil-gas" }, - { (LONG64)prodml22__WellFluid::oil_water, "oil-water" }, - { (LONG64)prodml22__WellFluid::steam, "steam" }, - { (LONG64)prodml22__WellFluid::water, "water" }, - { (LONG64)prodml22__WellFluid::water_x0020_x002d__x0020brine, "water -- brine" }, - { (LONG64)prodml22__WellFluid::water_x0020_x002d__x0020fresh_x0020water, "water -- fresh water" }, +static const struct soap_code_map soap_codes_prodml23__WellFluid[] = +{ { (LONG64)prodml23__WellFluid::air, "air" }, + { (LONG64)prodml23__WellFluid::condensate, "condensate" }, + { (LONG64)prodml23__WellFluid::dry, "dry" }, + { (LONG64)prodml23__WellFluid::gas, "gas" }, + { (LONG64)prodml23__WellFluid::gas_water, "gas-water" }, + { (LONG64)prodml23__WellFluid::non_x0020HC_x0020gas, "non HC gas" }, + { (LONG64)prodml23__WellFluid::non_x0020HC_x0020gas_x0020_x002d__x0020CO2, "non HC gas -- CO2" }, + { (LONG64)prodml23__WellFluid::oil, "oil" }, + { (LONG64)prodml23__WellFluid::oil_gas, "oil-gas" }, + { (LONG64)prodml23__WellFluid::oil_water, "oil-water" }, + { (LONG64)prodml23__WellFluid::steam, "steam" }, + { (LONG64)prodml23__WellFluid::water, "water" }, + { (LONG64)prodml23__WellFluid::water_x0020_x002d__x0020brine, "water -- brine" }, + { (LONG64)prodml23__WellFluid::water_x0020_x002d__x0020fresh_x0020water, "water -- fresh water" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellFluid2s(struct soap *soap, prodml22__WellFluid n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellFluid2s(struct soap *soap, prodml23__WellFluid n) { - const char *s = soap_code_str(soap_codes_prodml22__WellFluid, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__WellFluid, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellFluid(struct soap *soap, const char *tag, int id, const prodml22__WellFluid *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellFluid(struct soap *soap, const char *tag, int id, const prodml23__WellFluid *a, const char *type) { if (!type) - type = "prodml22:WellFluid"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid), type) || soap_send(soap, soap_prodml22__WellFluid2s(soap, *a))) + type = "prodml23:WellFluid"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid), type) || soap_send(soap, soap_prodml23__WellFluid2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellFluid(struct soap *soap, const char *s, prodml22__WellFluid *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellFluid(struct soap *soap, const char *s, prodml23__WellFluid *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__WellFluid, s); + map = soap_code(soap_codes_prodml23__WellFluid, s); if (map) - *a = (prodml22__WellFluid)map->code; + *a = (prodml23__WellFluid)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66913,82 +66908,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellFluid(struct soap *soap, const return SOAP_OK; } -SOAP_FMAC3 prodml22__WellFluid * SOAP_FMAC4 soap_in_prodml22__WellFluid(struct soap *soap, const char *tag, prodml22__WellFluid *a, const char *type) +SOAP_FMAC3 prodml23__WellFluid * SOAP_FMAC4 soap_in_prodml23__WellFluid(struct soap *soap, const char *tag, prodml23__WellFluid *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__WellFluid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid, sizeof(prodml22__WellFluid), NULL, NULL, NULL, NULL); + a = (prodml23__WellFluid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid, sizeof(prodml23__WellFluid), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__WellFluid(soap, soap_value(soap), a); + { int err = soap_s2prodml23__WellFluid(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__WellFluid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid, sizeof(prodml22__WellFluid), 0, NULL, NULL); + { a = (prodml23__WellFluid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid, sizeof(prodml23__WellFluid), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__WellFluid * SOAP_FMAC4 soap_new_prodml22__WellFluid(struct soap *soap, int n) +SOAP_FMAC3 prodml23__WellFluid * SOAP_FMAC4 soap_new_prodml23__WellFluid(struct soap *soap, int n) { - prodml22__WellFluid *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__WellFluid))); - for (prodml22__WellFluid *p = a; p && n--; ++p) - soap_default_prodml22__WellFluid(soap, p); + prodml23__WellFluid *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__WellFluid))); + for (prodml23__WellFluid *p = a; p && n--; ++p) + soap_default_prodml23__WellFluid(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellFluid(struct soap *soap, const prodml22__WellFluid *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellFluid(struct soap *soap, const prodml23__WellFluid *a, const char *tag, const char *type) { - if (soap_out_prodml22__WellFluid(soap, tag ? tag : "prodml22:WellFluid", -2, a, type)) + if (soap_out_prodml23__WellFluid(soap, tag ? tag : "prodml23:WellFluid", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellFluid * SOAP_FMAC4 soap_get_prodml22__WellFluid(struct soap *soap, prodml22__WellFluid *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellFluid * SOAP_FMAC4 soap_get_prodml23__WellFluid(struct soap *soap, prodml23__WellFluid *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellFluid(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellFluid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__WellDirection[] = -{ { (LONG64)prodml22__WellDirection::huff_n_puff, "huff-n-puff" }, - { (LONG64)prodml22__WellDirection::injector, "injector" }, - { (LONG64)prodml22__WellDirection::producer, "producer" }, - { (LONG64)prodml22__WellDirection::uncertain, "uncertain" }, +static const struct soap_code_map soap_codes_prodml23__WellDirection[] = +{ { (LONG64)prodml23__WellDirection::huff_n_puff, "huff-n-puff" }, + { (LONG64)prodml23__WellDirection::injector, "injector" }, + { (LONG64)prodml23__WellDirection::producer, "producer" }, + { (LONG64)prodml23__WellDirection::uncertain, "uncertain" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellDirection2s(struct soap *soap, prodml22__WellDirection n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellDirection2s(struct soap *soap, prodml23__WellDirection n) { - const char *s = soap_code_str(soap_codes_prodml22__WellDirection, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__WellDirection, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellDirection(struct soap *soap, const char *tag, int id, const prodml22__WellDirection *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellDirection(struct soap *soap, const char *tag, int id, const prodml23__WellDirection *a, const char *type) { if (!type) - type = "prodml22:WellDirection"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection), type) || soap_send(soap, soap_prodml22__WellDirection2s(soap, *a))) + type = "prodml23:WellDirection"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection), type) || soap_send(soap, soap_prodml23__WellDirection2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellDirection(struct soap *soap, const char *s, prodml22__WellDirection *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellDirection(struct soap *soap, const char *s, prodml23__WellDirection *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__WellDirection, s); + map = soap_code(soap_codes_prodml23__WellDirection, s); if (map) - *a = (prodml22__WellDirection)map->code; + *a = (prodml23__WellDirection)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -66996,92 +66991,92 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellDirection(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__WellDirection * SOAP_FMAC4 soap_in_prodml22__WellDirection(struct soap *soap, const char *tag, prodml22__WellDirection *a, const char *type) +SOAP_FMAC3 prodml23__WellDirection * SOAP_FMAC4 soap_in_prodml23__WellDirection(struct soap *soap, const char *tag, prodml23__WellDirection *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__WellDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection, sizeof(prodml22__WellDirection), NULL, NULL, NULL, NULL); + a = (prodml23__WellDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection, sizeof(prodml23__WellDirection), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__WellDirection(soap, soap_value(soap), a); + { int err = soap_s2prodml23__WellDirection(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__WellDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection, SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection, sizeof(prodml22__WellDirection), 0, NULL, NULL); + { a = (prodml23__WellDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection, SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection, sizeof(prodml23__WellDirection), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__WellDirection * SOAP_FMAC4 soap_new_prodml22__WellDirection(struct soap *soap, int n) +SOAP_FMAC3 prodml23__WellDirection * SOAP_FMAC4 soap_new_prodml23__WellDirection(struct soap *soap, int n) { - prodml22__WellDirection *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__WellDirection))); - for (prodml22__WellDirection *p = a; p && n--; ++p) - soap_default_prodml22__WellDirection(soap, p); + prodml23__WellDirection *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__WellDirection))); + for (prodml23__WellDirection *p = a; p && n--; ++p) + soap_default_prodml23__WellDirection(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellDirection(struct soap *soap, const prodml22__WellDirection *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellDirection(struct soap *soap, const prodml23__WellDirection *a, const char *tag, const char *type) { - if (soap_out_prodml22__WellDirection(soap, tag ? tag : "prodml22:WellDirection", -2, a, type)) + if (soap_out_prodml23__WellDirection(soap, tag ? tag : "prodml23:WellDirection", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellDirection * SOAP_FMAC4 soap_get_prodml22__WellDirection(struct soap *soap, prodml22__WellDirection *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellDirection * SOAP_FMAC4 soap_get_prodml23__WellDirection(struct soap *soap, prodml23__WellDirection *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellDirection(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellDirection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ValueStatus[] = -{ { (LONG64)prodml22__ValueStatus::access_x0020denied, "access denied" }, - { (LONG64)prodml22__ValueStatus::bad, "bad" }, - { (LONG64)prodml22__ValueStatus::bad_x0020calibration, "bad calibration" }, - { (LONG64)prodml22__ValueStatus::calculation_x0020failure, "calculation failure" }, - { (LONG64)prodml22__ValueStatus::comm_x0020failure, "comm failure" }, - { (LONG64)prodml22__ValueStatus::device_x0020failure, "device failure" }, - { (LONG64)prodml22__ValueStatus::frozen, "frozen" }, - { (LONG64)prodml22__ValueStatus::not_x0020available, "not available" }, - { (LONG64)prodml22__ValueStatus::overflow, "overflow" }, - { (LONG64)prodml22__ValueStatus::questionable, "questionable" }, - { (LONG64)prodml22__ValueStatus::range_x0020limit, "range limit" }, - { (LONG64)prodml22__ValueStatus::sensor_x0020failure, "sensor failure" }, - { (LONG64)prodml22__ValueStatus::substituted, "substituted" }, - { (LONG64)prodml22__ValueStatus::timeout, "timeout" }, +static const struct soap_code_map soap_codes_prodml23__ValueStatus[] = +{ { (LONG64)prodml23__ValueStatus::access_x0020denied, "access denied" }, + { (LONG64)prodml23__ValueStatus::bad, "bad" }, + { (LONG64)prodml23__ValueStatus::bad_x0020calibration, "bad calibration" }, + { (LONG64)prodml23__ValueStatus::calculation_x0020failure, "calculation failure" }, + { (LONG64)prodml23__ValueStatus::comm_x0020failure, "comm failure" }, + { (LONG64)prodml23__ValueStatus::device_x0020failure, "device failure" }, + { (LONG64)prodml23__ValueStatus::frozen, "frozen" }, + { (LONG64)prodml23__ValueStatus::not_x0020available, "not available" }, + { (LONG64)prodml23__ValueStatus::overflow, "overflow" }, + { (LONG64)prodml23__ValueStatus::questionable, "questionable" }, + { (LONG64)prodml23__ValueStatus::range_x0020limit, "range limit" }, + { (LONG64)prodml23__ValueStatus::sensor_x0020failure, "sensor failure" }, + { (LONG64)prodml23__ValueStatus::substituted, "substituted" }, + { (LONG64)prodml23__ValueStatus::timeout, "timeout" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ValueStatus2s(struct soap *soap, prodml22__ValueStatus n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ValueStatus2s(struct soap *soap, prodml23__ValueStatus n) { - const char *s = soap_code_str(soap_codes_prodml22__ValueStatus, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ValueStatus, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ValueStatus(struct soap *soap, const char *tag, int id, const prodml22__ValueStatus *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ValueStatus(struct soap *soap, const char *tag, int id, const prodml23__ValueStatus *a, const char *type) { if (!type) - type = "prodml22:ValueStatus"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus), type) || soap_send(soap, soap_prodml22__ValueStatus2s(soap, *a))) + type = "prodml23:ValueStatus"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus), type) || soap_send(soap, soap_prodml23__ValueStatus2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ValueStatus(struct soap *soap, const char *s, prodml22__ValueStatus *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ValueStatus(struct soap *soap, const char *s, prodml23__ValueStatus *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ValueStatus, s); + map = soap_code(soap_codes_prodml23__ValueStatus, s); if (map) - *a = (prodml22__ValueStatus)map->code; + *a = (prodml23__ValueStatus)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67089,117 +67084,117 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ValueStatus(struct soap *soap, cons return SOAP_OK; } -SOAP_FMAC3 prodml22__ValueStatus * SOAP_FMAC4 soap_in_prodml22__ValueStatus(struct soap *soap, const char *tag, prodml22__ValueStatus *a, const char *type) +SOAP_FMAC3 prodml23__ValueStatus * SOAP_FMAC4 soap_in_prodml23__ValueStatus(struct soap *soap, const char *tag, prodml23__ValueStatus *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ValueStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus, sizeof(prodml22__ValueStatus), NULL, NULL, NULL, NULL); + a = (prodml23__ValueStatus*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus, sizeof(prodml23__ValueStatus), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ValueStatus(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ValueStatus(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ValueStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus, sizeof(prodml22__ValueStatus), 0, NULL, NULL); + { a = (prodml23__ValueStatus *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus, sizeof(prodml23__ValueStatus), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ValueStatus * SOAP_FMAC4 soap_new_prodml22__ValueStatus(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ValueStatus * SOAP_FMAC4 soap_new_prodml23__ValueStatus(struct soap *soap, int n) { - prodml22__ValueStatus *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ValueStatus))); - for (prodml22__ValueStatus *p = a; p && n--; ++p) - soap_default_prodml22__ValueStatus(soap, p); + prodml23__ValueStatus *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ValueStatus))); + for (prodml23__ValueStatus *p = a; p && n--; ++p) + soap_default_prodml23__ValueStatus(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ValueStatus(struct soap *soap, const prodml22__ValueStatus *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ValueStatus(struct soap *soap, const prodml23__ValueStatus *a, const char *tag, const char *type) { - if (soap_out_prodml22__ValueStatus(soap, tag ? tag : "prodml22:ValueStatus", -2, a, type)) + if (soap_out_prodml23__ValueStatus(soap, tag ? tag : "prodml23:ValueStatus", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ValueStatus * SOAP_FMAC4 soap_get_prodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ValueStatus * SOAP_FMAC4 soap_get_prodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ValueStatus(soap, tag, p, type))) + if ((p = soap_in_prodml23__ValueStatus(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__SulfurComponentKind[] = -{ { (LONG64)prodml22__SulfurComponentKind::_2_3_x0020_x0026_x00202_4_x0020dimethyl_x0020thiophene, "2-3 & 2-4 dimethyl thiophene" }, - { (LONG64)prodml22__SulfurComponentKind::_2_5_dimethyl_x0020thiophene, "2-5-dimethyl thiophene" }, - { (LONG64)prodml22__SulfurComponentKind::_2_ethyl_x0020thiophene, "2-ethyl thiophene" }, - { (LONG64)prodml22__SulfurComponentKind::_2_methyl_x00201_butanethiol, "2-methyl 1-butanethiol" }, - { (LONG64)prodml22__SulfurComponentKind::_2_methyl_x0020thipophene, "2-methyl thipophene" }, - { (LONG64)prodml22__SulfurComponentKind::_3_4_dimethyl_x0020thiophene, "3-4-dimethyl thiophene" }, - { (LONG64)prodml22__SulfurComponentKind::_3_ethyl_x0020thiophene, "3-ethyl thiophene" }, - { (LONG64)prodml22__SulfurComponentKind::_3_methyl_x0020thipophene, "3-methyl thipophene" }, - { (LONG64)prodml22__SulfurComponentKind::benzothiophene, "benzothiophene" }, - { (LONG64)prodml22__SulfurComponentKind::carbon_x0020disulfide, "carbon disulfide" }, - { (LONG64)prodml22__SulfurComponentKind::carbonyl_x0020sulfide, "carbonyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::dibutyl_x0020sulfide, "dibutyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::diethyl_x0020disulfide, "diethyl disulfide" }, - { (LONG64)prodml22__SulfurComponentKind::diethyl_x0020sulfide, "diethyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::dimethyl_x0020disulfide, "dimethyl disulfide" }, - { (LONG64)prodml22__SulfurComponentKind::dimethyl_x0020sulfide, "dimethyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::dipropyl_x0020sulfide, "dipropyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::di_sec_x002ebutyl_x0020sulfide, "di-sec.butyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::ditert_x002ebutyl_x0020sulfide, "ditert.butyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::ethyl_x0020isopropyl_x0020disulfide, "ethyl isopropyl disulfide" }, - { (LONG64)prodml22__SulfurComponentKind::ethyl_x0020mercaptan, "ethyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::ethyl_methyl_x0020sulfide, "ethyl-methyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::hydrogen_x0020sulfide, "hydrogen sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::isobutyl_x0020mercaptan, "isobutyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::isopentyl_x0020mercaptan, "isopentyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::isopropyl_x0020mercaptan, "isopropyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::methyl_x0020isopropyl_x0020sulfide, "methyl isopropyl sulfide" }, - { (LONG64)prodml22__SulfurComponentKind::methyl_x0020mercaptan, "methyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_butyl_x0020mercaptan, "n-butyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_heptyl_x0020mercaptan, "n-heptyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_hexyl_x0020mercaptan, "n-hexyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_nonyl_x0020mercaptan, "n-nonyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_octyl_x0020mercaptan, "n-octyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_pentyl_x0020mercaptan, "n-pentyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::n_propyl_x0020mercaptan, "n-propyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::sec_butyl_x0020mercaptan, "sec-butyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::tert_butyl_x0020mercaptan, "tert-butyl mercaptan" }, - { (LONG64)prodml22__SulfurComponentKind::tetra_hydro_x0020thiophene, "tetra-hydro thiophene" }, - { (LONG64)prodml22__SulfurComponentKind::thiophene, "thiophene" }, +static const struct soap_code_map soap_codes_prodml23__SulfurComponentKind[] = +{ { (LONG64)prodml23__SulfurComponentKind::_2_3_x0020_x0026_x00202_4_x0020dimethyl_x0020thiophene, "2-3 & 2-4 dimethyl thiophene" }, + { (LONG64)prodml23__SulfurComponentKind::_2_5_dimethyl_x0020thiophene, "2-5-dimethyl thiophene" }, + { (LONG64)prodml23__SulfurComponentKind::_2_ethyl_x0020thiophene, "2-ethyl thiophene" }, + { (LONG64)prodml23__SulfurComponentKind::_2_methyl_x00201_butanethiol, "2-methyl 1-butanethiol" }, + { (LONG64)prodml23__SulfurComponentKind::_2_methyl_x0020thipophene, "2-methyl thipophene" }, + { (LONG64)prodml23__SulfurComponentKind::_3_4_dimethyl_x0020thiophene, "3-4-dimethyl thiophene" }, + { (LONG64)prodml23__SulfurComponentKind::_3_ethyl_x0020thiophene, "3-ethyl thiophene" }, + { (LONG64)prodml23__SulfurComponentKind::_3_methyl_x0020thipophene, "3-methyl thipophene" }, + { (LONG64)prodml23__SulfurComponentKind::benzothiophene, "benzothiophene" }, + { (LONG64)prodml23__SulfurComponentKind::carbon_x0020disulfide, "carbon disulfide" }, + { (LONG64)prodml23__SulfurComponentKind::carbonyl_x0020sulfide, "carbonyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::dibutyl_x0020sulfide, "dibutyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::diethyl_x0020disulfide, "diethyl disulfide" }, + { (LONG64)prodml23__SulfurComponentKind::diethyl_x0020sulfide, "diethyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::dimethyl_x0020disulfide, "dimethyl disulfide" }, + { (LONG64)prodml23__SulfurComponentKind::dimethyl_x0020sulfide, "dimethyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::dipropyl_x0020sulfide, "dipropyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::di_sec_x002ebutyl_x0020sulfide, "di-sec.butyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::ditert_x002ebutyl_x0020sulfide, "ditert.butyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::ethyl_x0020isopropyl_x0020disulfide, "ethyl isopropyl disulfide" }, + { (LONG64)prodml23__SulfurComponentKind::ethyl_x0020mercaptan, "ethyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::ethyl_methyl_x0020sulfide, "ethyl-methyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::hydrogen_x0020sulfide, "hydrogen sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::isobutyl_x0020mercaptan, "isobutyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::isopentyl_x0020mercaptan, "isopentyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::isopropyl_x0020mercaptan, "isopropyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::methyl_x0020isopropyl_x0020sulfide, "methyl isopropyl sulfide" }, + { (LONG64)prodml23__SulfurComponentKind::methyl_x0020mercaptan, "methyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_butyl_x0020mercaptan, "n-butyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_heptyl_x0020mercaptan, "n-heptyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_hexyl_x0020mercaptan, "n-hexyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_nonyl_x0020mercaptan, "n-nonyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_octyl_x0020mercaptan, "n-octyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_pentyl_x0020mercaptan, "n-pentyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::n_propyl_x0020mercaptan, "n-propyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::sec_butyl_x0020mercaptan, "sec-butyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::tert_butyl_x0020mercaptan, "tert-butyl mercaptan" }, + { (LONG64)prodml23__SulfurComponentKind::tetra_hydro_x0020thiophene, "tetra-hydro thiophene" }, + { (LONG64)prodml23__SulfurComponentKind::thiophene, "thiophene" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SulfurComponentKind2s(struct soap *soap, prodml22__SulfurComponentKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SulfurComponentKind2s(struct soap *soap, prodml23__SulfurComponentKind n) { - const char *s = soap_code_str(soap_codes_prodml22__SulfurComponentKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__SulfurComponentKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SulfurComponentKind(struct soap *soap, const char *tag, int id, const prodml22__SulfurComponentKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SulfurComponentKind(struct soap *soap, const char *tag, int id, const prodml23__SulfurComponentKind *a, const char *type) { if (!type) - type = "prodml22:SulfurComponentKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind), type) || soap_send(soap, soap_prodml22__SulfurComponentKind2s(soap, *a))) + type = "prodml23:SulfurComponentKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind), type) || soap_send(soap, soap_prodml23__SulfurComponentKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SulfurComponentKind(struct soap *soap, const char *s, prodml22__SulfurComponentKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SulfurComponentKind(struct soap *soap, const char *s, prodml23__SulfurComponentKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__SulfurComponentKind, s); + map = soap_code(soap_codes_prodml23__SulfurComponentKind, s); if (map) - *a = (prodml22__SulfurComponentKind)map->code; + *a = (prodml23__SulfurComponentKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67207,105 +67202,105 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SulfurComponentKind(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__SulfurComponentKind * SOAP_FMAC4 soap_in_prodml22__SulfurComponentKind(struct soap *soap, const char *tag, prodml22__SulfurComponentKind *a, const char *type) +SOAP_FMAC3 prodml23__SulfurComponentKind * SOAP_FMAC4 soap_in_prodml23__SulfurComponentKind(struct soap *soap, const char *tag, prodml23__SulfurComponentKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__SulfurComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind, sizeof(prodml22__SulfurComponentKind), NULL, NULL, NULL, NULL); + a = (prodml23__SulfurComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind, sizeof(prodml23__SulfurComponentKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__SulfurComponentKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__SulfurComponentKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__SulfurComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind, sizeof(prodml22__SulfurComponentKind), 0, NULL, NULL); + { a = (prodml23__SulfurComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind, sizeof(prodml23__SulfurComponentKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__SulfurComponentKind * SOAP_FMAC4 soap_new_prodml22__SulfurComponentKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__SulfurComponentKind * SOAP_FMAC4 soap_new_prodml23__SulfurComponentKind(struct soap *soap, int n) { - prodml22__SulfurComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__SulfurComponentKind))); - for (prodml22__SulfurComponentKind *p = a; p && n--; ++p) - soap_default_prodml22__SulfurComponentKind(soap, p); + prodml23__SulfurComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__SulfurComponentKind))); + for (prodml23__SulfurComponentKind *p = a; p && n--; ++p) + soap_default_prodml23__SulfurComponentKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SulfurComponentKind(struct soap *soap, const prodml22__SulfurComponentKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SulfurComponentKind(struct soap *soap, const prodml23__SulfurComponentKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__SulfurComponentKind(soap, tag ? tag : "prodml22:SulfurComponentKind", -2, a, type)) + if (soap_out_prodml23__SulfurComponentKind(soap, tag ? tag : "prodml23:SulfurComponentKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SulfurComponentKind * SOAP_FMAC4 soap_get_prodml22__SulfurComponentKind(struct soap *soap, prodml22__SulfurComponentKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SulfurComponentKind * SOAP_FMAC4 soap_get_prodml23__SulfurComponentKind(struct soap *soap, prodml23__SulfurComponentKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SulfurComponentKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__SulfurComponentKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ServiceFluidKind[] = -{ { (LONG64)prodml22__ServiceFluidKind::alkaline_x0020solutions, "alkaline solutions" }, - { (LONG64)prodml22__ServiceFluidKind::biocide, "biocide" }, - { (LONG64)prodml22__ServiceFluidKind::carbon_x0020dioxide, "carbon dioxide" }, - { (LONG64)prodml22__ServiceFluidKind::carbon_x0020monoxide, "carbon monoxide" }, - { (LONG64)prodml22__ServiceFluidKind::corrosion_x0020inhibitor, "corrosion inhibitor" }, - { (LONG64)prodml22__ServiceFluidKind::demulsifier, "demulsifier" }, - { (LONG64)prodml22__ServiceFluidKind::diesel, "diesel" }, - { (LONG64)prodml22__ServiceFluidKind::diethylene_x0020glycol, "diethylene glycol" }, - { (LONG64)prodml22__ServiceFluidKind::dispersant, "dispersant" }, - { (LONG64)prodml22__ServiceFluidKind::drag_x0020reducing_x0020agent, "drag reducing agent" }, - { (LONG64)prodml22__ServiceFluidKind::emulsifier, "emulsifier" }, - { (LONG64)prodml22__ServiceFluidKind::flocculant, "flocculant" }, - { (LONG64)prodml22__ServiceFluidKind::hydraulic_x0020control_x0020fluid, "hydraulic control fluid" }, - { (LONG64)prodml22__ServiceFluidKind::isopropanol, "isopropanol" }, - { (LONG64)prodml22__ServiceFluidKind::lubricant, "lubricant" }, - { (LONG64)prodml22__ServiceFluidKind::methanol, "methanol" }, - { (LONG64)prodml22__ServiceFluidKind::monoethylene_x0020glycol, "monoethylene glycol" }, - { (LONG64)prodml22__ServiceFluidKind::oil, "oil" }, - { (LONG64)prodml22__ServiceFluidKind::other_x0020chemical, "other chemical" }, - { (LONG64)prodml22__ServiceFluidKind::other_x0020hydrate_x0020inhibitor, "other hydrate inhibitor" }, - { (LONG64)prodml22__ServiceFluidKind::polymer, "polymer" }, - { (LONG64)prodml22__ServiceFluidKind::scale_x0020inhibitor, "scale inhibitor" }, - { (LONG64)prodml22__ServiceFluidKind::solvent, "solvent" }, - { (LONG64)prodml22__ServiceFluidKind::stabilizing_x0020agent, "stabilizing agent" }, - { (LONG64)prodml22__ServiceFluidKind::surfactant, "surfactant" }, - { (LONG64)prodml22__ServiceFluidKind::thinner, "thinner" }, - { (LONG64)prodml22__ServiceFluidKind::triethylene_x0020glycol, "triethylene glycol" }, +static const struct soap_code_map soap_codes_prodml23__ServiceFluidKind[] = +{ { (LONG64)prodml23__ServiceFluidKind::alkaline_x0020solutions, "alkaline solutions" }, + { (LONG64)prodml23__ServiceFluidKind::biocide, "biocide" }, + { (LONG64)prodml23__ServiceFluidKind::carbon_x0020dioxide, "carbon dioxide" }, + { (LONG64)prodml23__ServiceFluidKind::carbon_x0020monoxide, "carbon monoxide" }, + { (LONG64)prodml23__ServiceFluidKind::corrosion_x0020inhibitor, "corrosion inhibitor" }, + { (LONG64)prodml23__ServiceFluidKind::demulsifier, "demulsifier" }, + { (LONG64)prodml23__ServiceFluidKind::diesel, "diesel" }, + { (LONG64)prodml23__ServiceFluidKind::diethylene_x0020glycol, "diethylene glycol" }, + { (LONG64)prodml23__ServiceFluidKind::dispersant, "dispersant" }, + { (LONG64)prodml23__ServiceFluidKind::drag_x0020reducing_x0020agent, "drag reducing agent" }, + { (LONG64)prodml23__ServiceFluidKind::emulsifier, "emulsifier" }, + { (LONG64)prodml23__ServiceFluidKind::flocculant, "flocculant" }, + { (LONG64)prodml23__ServiceFluidKind::hydraulic_x0020control_x0020fluid, "hydraulic control fluid" }, + { (LONG64)prodml23__ServiceFluidKind::isopropanol, "isopropanol" }, + { (LONG64)prodml23__ServiceFluidKind::lubricant, "lubricant" }, + { (LONG64)prodml23__ServiceFluidKind::methanol, "methanol" }, + { (LONG64)prodml23__ServiceFluidKind::monoethylene_x0020glycol, "monoethylene glycol" }, + { (LONG64)prodml23__ServiceFluidKind::oil, "oil" }, + { (LONG64)prodml23__ServiceFluidKind::other_x0020chemical, "other chemical" }, + { (LONG64)prodml23__ServiceFluidKind::other_x0020hydrate_x0020inhibitor, "other hydrate inhibitor" }, + { (LONG64)prodml23__ServiceFluidKind::polymer, "polymer" }, + { (LONG64)prodml23__ServiceFluidKind::scale_x0020inhibitor, "scale inhibitor" }, + { (LONG64)prodml23__ServiceFluidKind::solvent, "solvent" }, + { (LONG64)prodml23__ServiceFluidKind::stabilizing_x0020agent, "stabilizing agent" }, + { (LONG64)prodml23__ServiceFluidKind::surfactant, "surfactant" }, + { (LONG64)prodml23__ServiceFluidKind::thinner, "thinner" }, + { (LONG64)prodml23__ServiceFluidKind::triethylene_x0020glycol, "triethylene glycol" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ServiceFluidKind2s(struct soap *soap, prodml22__ServiceFluidKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ServiceFluidKind2s(struct soap *soap, prodml23__ServiceFluidKind n) { - const char *s = soap_code_str(soap_codes_prodml22__ServiceFluidKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ServiceFluidKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ServiceFluidKind(struct soap *soap, const char *tag, int id, const prodml22__ServiceFluidKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ServiceFluidKind(struct soap *soap, const char *tag, int id, const prodml23__ServiceFluidKind *a, const char *type) { if (!type) - type = "prodml22:ServiceFluidKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind), type) || soap_send(soap, soap_prodml22__ServiceFluidKind2s(soap, *a))) + type = "prodml23:ServiceFluidKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind), type) || soap_send(soap, soap_prodml23__ServiceFluidKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ServiceFluidKind(struct soap *soap, const char *s, prodml22__ServiceFluidKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ServiceFluidKind(struct soap *soap, const char *s, prodml23__ServiceFluidKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ServiceFluidKind, s); + map = soap_code(soap_codes_prodml23__ServiceFluidKind, s); if (map) - *a = (prodml22__ServiceFluidKind)map->code; + *a = (prodml23__ServiceFluidKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67313,82 +67308,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ServiceFluidKind(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__ServiceFluidKind * SOAP_FMAC4 soap_in_prodml22__ServiceFluidKind(struct soap *soap, const char *tag, prodml22__ServiceFluidKind *a, const char *type) +SOAP_FMAC3 prodml23__ServiceFluidKind * SOAP_FMAC4 soap_in_prodml23__ServiceFluidKind(struct soap *soap, const char *tag, prodml23__ServiceFluidKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ServiceFluidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind, sizeof(prodml22__ServiceFluidKind), NULL, NULL, NULL, NULL); + a = (prodml23__ServiceFluidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind, sizeof(prodml23__ServiceFluidKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ServiceFluidKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ServiceFluidKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ServiceFluidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind, sizeof(prodml22__ServiceFluidKind), 0, NULL, NULL); + { a = (prodml23__ServiceFluidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind, sizeof(prodml23__ServiceFluidKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ServiceFluidKind * SOAP_FMAC4 soap_new_prodml22__ServiceFluidKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ServiceFluidKind * SOAP_FMAC4 soap_new_prodml23__ServiceFluidKind(struct soap *soap, int n) { - prodml22__ServiceFluidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ServiceFluidKind))); - for (prodml22__ServiceFluidKind *p = a; p && n--; ++p) - soap_default_prodml22__ServiceFluidKind(soap, p); + prodml23__ServiceFluidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ServiceFluidKind))); + for (prodml23__ServiceFluidKind *p = a; p && n--; ++p) + soap_default_prodml23__ServiceFluidKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ServiceFluidKind(struct soap *soap, const prodml22__ServiceFluidKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ServiceFluidKind(struct soap *soap, const prodml23__ServiceFluidKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__ServiceFluidKind(soap, tag ? tag : "prodml22:ServiceFluidKind", -2, a, type)) + if (soap_out_prodml23__ServiceFluidKind(soap, tag ? tag : "prodml23:ServiceFluidKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ServiceFluidKind * SOAP_FMAC4 soap_get_prodml22__ServiceFluidKind(struct soap *soap, prodml22__ServiceFluidKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ServiceFluidKind * SOAP_FMAC4 soap_get_prodml23__ServiceFluidKind(struct soap *soap, prodml23__ServiceFluidKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ServiceFluidKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__ServiceFluidKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__SaturationPointKind[] = -{ { (LONG64)prodml22__SaturationPointKind::bubble_x0020point, "bubble point" }, - { (LONG64)prodml22__SaturationPointKind::dew_x0020point, "dew point" }, - { (LONG64)prodml22__SaturationPointKind::retrograde_x0020dew_x0020point, "retrograde dew point" }, - { (LONG64)prodml22__SaturationPointKind::critical_x0020point, "critical point" }, +static const struct soap_code_map soap_codes_prodml23__SaturationPointKind[] = +{ { (LONG64)prodml23__SaturationPointKind::bubble_x0020point, "bubble point" }, + { (LONG64)prodml23__SaturationPointKind::dew_x0020point, "dew point" }, + { (LONG64)prodml23__SaturationPointKind::retrograde_x0020dew_x0020point, "retrograde dew point" }, + { (LONG64)prodml23__SaturationPointKind::critical_x0020point, "critical point" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SaturationPointKind2s(struct soap *soap, prodml22__SaturationPointKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SaturationPointKind2s(struct soap *soap, prodml23__SaturationPointKind n) { - const char *s = soap_code_str(soap_codes_prodml22__SaturationPointKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__SaturationPointKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationPointKind(struct soap *soap, const char *tag, int id, const prodml22__SaturationPointKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationPointKind(struct soap *soap, const char *tag, int id, const prodml23__SaturationPointKind *a, const char *type) { if (!type) - type = "prodml22:SaturationPointKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind), type) || soap_send(soap, soap_prodml22__SaturationPointKind2s(soap, *a))) + type = "prodml23:SaturationPointKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind), type) || soap_send(soap, soap_prodml23__SaturationPointKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SaturationPointKind(struct soap *soap, const char *s, prodml22__SaturationPointKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SaturationPointKind(struct soap *soap, const char *s, prodml23__SaturationPointKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__SaturationPointKind, s); + map = soap_code(soap_codes_prodml23__SaturationPointKind, s); if (map) - *a = (prodml22__SaturationPointKind)map->code; + *a = (prodml23__SaturationPointKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67396,99 +67391,99 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SaturationPointKind(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationPointKind * SOAP_FMAC4 soap_in_prodml22__SaturationPointKind(struct soap *soap, const char *tag, prodml22__SaturationPointKind *a, const char *type) +SOAP_FMAC3 prodml23__SaturationPointKind * SOAP_FMAC4 soap_in_prodml23__SaturationPointKind(struct soap *soap, const char *tag, prodml23__SaturationPointKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__SaturationPointKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind, sizeof(prodml22__SaturationPointKind), NULL, NULL, NULL, NULL); + a = (prodml23__SaturationPointKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind, sizeof(prodml23__SaturationPointKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__SaturationPointKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__SaturationPointKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__SaturationPointKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind, sizeof(prodml22__SaturationPointKind), 0, NULL, NULL); + { a = (prodml23__SaturationPointKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind, sizeof(prodml23__SaturationPointKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__SaturationPointKind * SOAP_FMAC4 soap_new_prodml22__SaturationPointKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__SaturationPointKind * SOAP_FMAC4 soap_new_prodml23__SaturationPointKind(struct soap *soap, int n) { - prodml22__SaturationPointKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__SaturationPointKind))); - for (prodml22__SaturationPointKind *p = a; p && n--; ++p) - soap_default_prodml22__SaturationPointKind(soap, p); + prodml23__SaturationPointKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__SaturationPointKind))); + for (prodml23__SaturationPointKind *p = a; p && n--; ++p) + soap_default_prodml23__SaturationPointKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SaturationPointKind(struct soap *soap, const prodml22__SaturationPointKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SaturationPointKind(struct soap *soap, const prodml23__SaturationPointKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__SaturationPointKind(soap, tag ? tag : "prodml22:SaturationPointKind", -2, a, type)) + if (soap_out_prodml23__SaturationPointKind(soap, tag ? tag : "prodml23:SaturationPointKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SaturationPointKind * SOAP_FMAC4 soap_get_prodml22__SaturationPointKind(struct soap *soap, prodml22__SaturationPointKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationPointKind * SOAP_FMAC4 soap_get_prodml23__SaturationPointKind(struct soap *soap, prodml23__SaturationPointKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SaturationPointKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__SaturationPointKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__SafetyType[] = -{ { (LONG64)prodml22__SafetyType::drill_x0020or_x0020exercise, "drill or exercise" }, - { (LONG64)prodml22__SafetyType::fire, "fire" }, - { (LONG64)prodml22__SafetyType::first_x0020aid, "first aid" }, - { (LONG64)prodml22__SafetyType::hazard_x0020report_x0020card, "hazard report card" }, - { (LONG64)prodml22__SafetyType::job_x0020observation, "job observation" }, - { (LONG64)prodml22__SafetyType::lost_x0020time_x0020accident, "lost time accident" }, - { (LONG64)prodml22__SafetyType::lost_x0020time_x0020incident, "lost time incident" }, - { (LONG64)prodml22__SafetyType::miscellaneous, "miscellaneous" }, - { (LONG64)prodml22__SafetyType::near_x0020miss, "near miss" }, - { (LONG64)prodml22__SafetyType::permit_x0020with_x0020SJA, "permit with SJA" }, - { (LONG64)prodml22__SafetyType::released_x0020to_x0020air, "released to air" }, - { (LONG64)prodml22__SafetyType::released_x0020to_x0020water, "released to water" }, - { (LONG64)prodml22__SafetyType::restricted_x0020work, "restricted work" }, - { (LONG64)prodml22__SafetyType::safety_x0020meeting, "safety meeting" }, - { (LONG64)prodml22__SafetyType::sent_x0020ashore, "sent ashore" }, - { (LONG64)prodml22__SafetyType::severe_x0020accident, "severe accident" }, - { (LONG64)prodml22__SafetyType::sick_x0020on_x0020board, "sick on board" }, - { (LONG64)prodml22__SafetyType::spill_x0020or_x0020leak, "spill or leak" }, - { (LONG64)prodml22__SafetyType::total_x0020permits, "total permits" }, - { (LONG64)prodml22__SafetyType::traffic_x0020accident, "traffic accident" }, - { (LONG64)prodml22__SafetyType::year_to_date_x0020incidents, "year-to-date incidents" }, +static const struct soap_code_map soap_codes_prodml23__SafetyType[] = +{ { (LONG64)prodml23__SafetyType::drill_x0020or_x0020exercise, "drill or exercise" }, + { (LONG64)prodml23__SafetyType::fire, "fire" }, + { (LONG64)prodml23__SafetyType::first_x0020aid, "first aid" }, + { (LONG64)prodml23__SafetyType::hazard_x0020report_x0020card, "hazard report card" }, + { (LONG64)prodml23__SafetyType::job_x0020observation, "job observation" }, + { (LONG64)prodml23__SafetyType::lost_x0020time_x0020accident, "lost time accident" }, + { (LONG64)prodml23__SafetyType::lost_x0020time_x0020incident, "lost time incident" }, + { (LONG64)prodml23__SafetyType::miscellaneous, "miscellaneous" }, + { (LONG64)prodml23__SafetyType::near_x0020miss, "near miss" }, + { (LONG64)prodml23__SafetyType::permit_x0020with_x0020SJA, "permit with SJA" }, + { (LONG64)prodml23__SafetyType::released_x0020to_x0020air, "released to air" }, + { (LONG64)prodml23__SafetyType::released_x0020to_x0020water, "released to water" }, + { (LONG64)prodml23__SafetyType::restricted_x0020work, "restricted work" }, + { (LONG64)prodml23__SafetyType::safety_x0020meeting, "safety meeting" }, + { (LONG64)prodml23__SafetyType::sent_x0020ashore, "sent ashore" }, + { (LONG64)prodml23__SafetyType::severe_x0020accident, "severe accident" }, + { (LONG64)prodml23__SafetyType::sick_x0020on_x0020board, "sick on board" }, + { (LONG64)prodml23__SafetyType::spill_x0020or_x0020leak, "spill or leak" }, + { (LONG64)prodml23__SafetyType::total_x0020permits, "total permits" }, + { (LONG64)prodml23__SafetyType::traffic_x0020accident, "traffic accident" }, + { (LONG64)prodml23__SafetyType::year_to_date_x0020incidents, "year-to-date incidents" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SafetyType2s(struct soap *soap, prodml22__SafetyType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SafetyType2s(struct soap *soap, prodml23__SafetyType n) { - const char *s = soap_code_str(soap_codes_prodml22__SafetyType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__SafetyType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SafetyType(struct soap *soap, const char *tag, int id, const prodml22__SafetyType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SafetyType(struct soap *soap, const char *tag, int id, const prodml23__SafetyType *a, const char *type) { if (!type) - type = "prodml22:SafetyType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType), type) || soap_send(soap, soap_prodml22__SafetyType2s(soap, *a))) + type = "prodml23:SafetyType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType), type) || soap_send(soap, soap_prodml23__SafetyType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SafetyType(struct soap *soap, const char *s, prodml22__SafetyType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SafetyType(struct soap *soap, const char *s, prodml23__SafetyType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__SafetyType, s); + map = soap_code(soap_codes_prodml23__SafetyType, s); if (map) - *a = (prodml22__SafetyType)map->code; + *a = (prodml23__SafetyType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67496,85 +67491,85 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SafetyType(struct soap *soap, const return SOAP_OK; } -SOAP_FMAC3 prodml22__SafetyType * SOAP_FMAC4 soap_in_prodml22__SafetyType(struct soap *soap, const char *tag, prodml22__SafetyType *a, const char *type) +SOAP_FMAC3 prodml23__SafetyType * SOAP_FMAC4 soap_in_prodml23__SafetyType(struct soap *soap, const char *tag, prodml23__SafetyType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__SafetyType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType, sizeof(prodml22__SafetyType), NULL, NULL, NULL, NULL); + a = (prodml23__SafetyType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType, sizeof(prodml23__SafetyType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__SafetyType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__SafetyType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__SafetyType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType, SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType, sizeof(prodml22__SafetyType), 0, NULL, NULL); + { a = (prodml23__SafetyType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType, SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType, sizeof(prodml23__SafetyType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__SafetyType * SOAP_FMAC4 soap_new_prodml22__SafetyType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__SafetyType * SOAP_FMAC4 soap_new_prodml23__SafetyType(struct soap *soap, int n) { - prodml22__SafetyType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__SafetyType))); - for (prodml22__SafetyType *p = a; p && n--; ++p) - soap_default_prodml22__SafetyType(soap, p); + prodml23__SafetyType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__SafetyType))); + for (prodml23__SafetyType *p = a; p && n--; ++p) + soap_default_prodml23__SafetyType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SafetyType(struct soap *soap, const prodml22__SafetyType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SafetyType(struct soap *soap, const prodml23__SafetyType *a, const char *tag, const char *type) { - if (soap_out_prodml22__SafetyType(soap, tag ? tag : "prodml22:SafetyType", -2, a, type)) + if (soap_out_prodml23__SafetyType(soap, tag ? tag : "prodml23:SafetyType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SafetyType * SOAP_FMAC4 soap_get_prodml22__SafetyType(struct soap *soap, prodml22__SafetyType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SafetyType * SOAP_FMAC4 soap_get_prodml23__SafetyType(struct soap *soap, prodml23__SafetyType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SafetyType(soap, tag, p, type))) + if ((p = soap_in_prodml23__SafetyType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ReservoirFluidKind[] = -{ { (LONG64)prodml22__ReservoirFluidKind::black_x0020oil, "black oil" }, - { (LONG64)prodml22__ReservoirFluidKind::critical_x0020or_x0020near_x0020critical, "critical or near critical" }, - { (LONG64)prodml22__ReservoirFluidKind::dry_x0020gas, "dry gas" }, - { (LONG64)prodml22__ReservoirFluidKind::heavy_x0020oil, "heavy oil" }, - { (LONG64)prodml22__ReservoirFluidKind::wet_x0020gas_x0020or_x0020condensate, "wet gas or condensate" }, - { (LONG64)prodml22__ReservoirFluidKind::volatile_x0020oil, "volatile oil" }, - { (LONG64)prodml22__ReservoirFluidKind::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__ReservoirFluidKind[] = +{ { (LONG64)prodml23__ReservoirFluidKind::black_x0020oil, "black oil" }, + { (LONG64)prodml23__ReservoirFluidKind::critical_x0020or_x0020near_x0020critical, "critical or near critical" }, + { (LONG64)prodml23__ReservoirFluidKind::dry_x0020gas, "dry gas" }, + { (LONG64)prodml23__ReservoirFluidKind::heavy_x0020oil, "heavy oil" }, + { (LONG64)prodml23__ReservoirFluidKind::wet_x0020gas_x0020or_x0020condensate, "wet gas or condensate" }, + { (LONG64)prodml23__ReservoirFluidKind::volatile_x0020oil, "volatile oil" }, + { (LONG64)prodml23__ReservoirFluidKind::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReservoirFluidKind2s(struct soap *soap, prodml22__ReservoirFluidKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReservoirFluidKind2s(struct soap *soap, prodml23__ReservoirFluidKind n) { - const char *s = soap_code_str(soap_codes_prodml22__ReservoirFluidKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReservoirFluidKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirFluidKind(struct soap *soap, const char *tag, int id, const prodml22__ReservoirFluidKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirFluidKind(struct soap *soap, const char *tag, int id, const prodml23__ReservoirFluidKind *a, const char *type) { if (!type) - type = "prodml22:ReservoirFluidKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind), type) || soap_send(soap, soap_prodml22__ReservoirFluidKind2s(soap, *a))) + type = "prodml23:ReservoirFluidKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind), type) || soap_send(soap, soap_prodml23__ReservoirFluidKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReservoirFluidKind(struct soap *soap, const char *s, prodml22__ReservoirFluidKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReservoirFluidKind(struct soap *soap, const char *s, prodml23__ReservoirFluidKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReservoirFluidKind, s); + map = soap_code(soap_codes_prodml23__ReservoirFluidKind, s); if (map) - *a = (prodml22__ReservoirFluidKind)map->code; + *a = (prodml23__ReservoirFluidKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67582,163 +67577,163 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReservoirFluidKind(struct soap *soa return SOAP_OK; } -SOAP_FMAC3 prodml22__ReservoirFluidKind * SOAP_FMAC4 soap_in_prodml22__ReservoirFluidKind(struct soap *soap, const char *tag, prodml22__ReservoirFluidKind *a, const char *type) +SOAP_FMAC3 prodml23__ReservoirFluidKind * SOAP_FMAC4 soap_in_prodml23__ReservoirFluidKind(struct soap *soap, const char *tag, prodml23__ReservoirFluidKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReservoirFluidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind, sizeof(prodml22__ReservoirFluidKind), NULL, NULL, NULL, NULL); + a = (prodml23__ReservoirFluidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind, sizeof(prodml23__ReservoirFluidKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReservoirFluidKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReservoirFluidKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReservoirFluidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind, sizeof(prodml22__ReservoirFluidKind), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 prodml22__ReservoirFluidKind * SOAP_FMAC4 soap_new_prodml22__ReservoirFluidKind(struct soap *soap, int n) -{ - prodml22__ReservoirFluidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReservoirFluidKind))); - for (prodml22__ReservoirFluidKind *p = a; p && n--; ++p) - soap_default_prodml22__ReservoirFluidKind(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReservoirFluidKind(struct soap *soap, const prodml22__ReservoirFluidKind *a, const char *tag, const char *type) -{ - if (soap_out_prodml22__ReservoirFluidKind(soap, tag ? tag : "prodml22:ReservoirFluidKind", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 prodml22__ReservoirFluidKind * SOAP_FMAC4 soap_get_prodml22__ReservoirFluidKind(struct soap *soap, prodml22__ReservoirFluidKind *p, const char *tag, const char *type) -{ - if ((p = soap_in_prodml22__ReservoirFluidKind(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_prodml22__ReportingProduct[] = -{ { (LONG64)prodml22__ReportingProduct::aqueous, "aqueous" }, - { (LONG64)prodml22__ReportingProduct::c10, "c10" }, - { (LONG64)prodml22__ReportingProduct::c10_x002d, "c10-" }, - { (LONG64)prodml22__ReportingProduct::c10_x002b, "c10+" }, - { (LONG64)prodml22__ReportingProduct::c2_x002d, "c2-" }, - { (LONG64)prodml22__ReportingProduct::c2_x002b, "c2+" }, - { (LONG64)prodml22__ReportingProduct::c3_x002d, "c3-" }, - { (LONG64)prodml22__ReportingProduct::c3_x002b, "c3+" }, - { (LONG64)prodml22__ReportingProduct::c4_x002d, "c4-" }, - { (LONG64)prodml22__ReportingProduct::c4_x002b, "c4+" }, - { (LONG64)prodml22__ReportingProduct::c5_x002d, "c5-" }, - { (LONG64)prodml22__ReportingProduct::c5_x002b, "c5+" }, - { (LONG64)prodml22__ReportingProduct::c6_x002d, "c6-" }, - { (LONG64)prodml22__ReportingProduct::c6_x002b, "c6+" }, - { (LONG64)prodml22__ReportingProduct::c7, "c7" }, - { (LONG64)prodml22__ReportingProduct::c7_x002d, "c7-" }, - { (LONG64)prodml22__ReportingProduct::c7_x002b, "c7+" }, - { (LONG64)prodml22__ReportingProduct::c8, "c8" }, - { (LONG64)prodml22__ReportingProduct::c8_x002d, "c8-" }, - { (LONG64)prodml22__ReportingProduct::c8_x002b, "c8+" }, - { (LONG64)prodml22__ReportingProduct::c9, "c9" }, - { (LONG64)prodml22__ReportingProduct::c9_x002d, "c9-" }, - { (LONG64)prodml22__ReportingProduct::c9_x002b, "c9+" }, - { (LONG64)prodml22__ReportingProduct::carbon_x0020dioxide_x0020gas, "carbon dioxide gas" }, - { (LONG64)prodml22__ReportingProduct::carbon_x0020monoxide_x0020gas, "carbon monoxide gas" }, - { (LONG64)prodml22__ReportingProduct::chemical, "chemical" }, - { (LONG64)prodml22__ReportingProduct::condensate, "condensate" }, - { (LONG64)prodml22__ReportingProduct::condensate_x0020__x0020gross, "condensate - gross" }, - { (LONG64)prodml22__ReportingProduct::condensate_x0020__x0020net, "condensate - net" }, - { (LONG64)prodml22__ReportingProduct::crude_x0020__x0020stabilized, "crude - stabilized" }, - { (LONG64)prodml22__ReportingProduct::cuttings, "cuttings" }, - { (LONG64)prodml22__ReportingProduct::diesel, "diesel" }, - { (LONG64)prodml22__ReportingProduct::diethylene_x0020glycol, "diethylene glycol" }, - { (LONG64)prodml22__ReportingProduct::dioxygen, "dioxygen" }, - { (LONG64)prodml22__ReportingProduct::electric_x0020power, "electric power" }, - { (LONG64)prodml22__ReportingProduct::ethane, "ethane" }, - { (LONG64)prodml22__ReportingProduct::ethane_x0020__x0020component, "ethane - component" }, - { (LONG64)prodml22__ReportingProduct::gas, "gas" }, - { (LONG64)prodml22__ReportingProduct::gas_x0020__x0020component_x0020in_x0020oil, "gas - component in oil" }, - { (LONG64)prodml22__ReportingProduct::gas_x0020__x0020dry, "gas - dry" }, - { (LONG64)prodml22__ReportingProduct::gas_x0020__x0020rich, "gas - rich" }, - { (LONG64)prodml22__ReportingProduct::gas_x0020__x0020wet, "gas - wet" }, - { (LONG64)prodml22__ReportingProduct::helium_x0020gas, "helium gas" }, - { (LONG64)prodml22__ReportingProduct::heptane, "heptane" }, - { (LONG64)prodml22__ReportingProduct::hydraulic_x0020control_x0020fluid, "hydraulic control fluid" }, - { (LONG64)prodml22__ReportingProduct::hydrogen_x0020gas, "hydrogen gas" }, - { (LONG64)prodml22__ReportingProduct::hydrogen_x0020sulfide, "hydrogen sulfide" }, - { (LONG64)prodml22__ReportingProduct::i_butane_x0020__x0020component, "i-butane - component" }, - { (LONG64)prodml22__ReportingProduct::isobutane, "isobutane" }, - { (LONG64)prodml22__ReportingProduct::isopentane, "isopentane" }, - { (LONG64)prodml22__ReportingProduct::liquefied_x0020natural_x0020gas, "liquefied natural gas" }, - { (LONG64)prodml22__ReportingProduct::liquefied_x0020petroleum_x0020gas, "liquefied petroleum gas" }, - { (LONG64)prodml22__ReportingProduct::liquid, "liquid" }, - { (LONG64)prodml22__ReportingProduct::methane, "methane" }, - { (LONG64)prodml22__ReportingProduct::methane_x0020__x0020component, "methane - component" }, - { (LONG64)prodml22__ReportingProduct::methanol, "methanol" }, - { (LONG64)prodml22__ReportingProduct::mixed_x0020butane, "mixed butane" }, - { (LONG64)prodml22__ReportingProduct::monoethylene_x0020glycol, "monoethylene glycol" }, - { (LONG64)prodml22__ReportingProduct::naphtha, "naphtha" }, - { (LONG64)prodml22__ReportingProduct::natural_x0020gas_x0020liquid, "natural gas liquid" }, - { (LONG64)prodml22__ReportingProduct::n_butane_x0020__x0020component, "n-butane - component" }, - { (LONG64)prodml22__ReportingProduct::neopentane, "neopentane" }, - { (LONG64)prodml22__ReportingProduct::NGL_x0020__x0020component_x0020in_x0020gas, "NGL - component in gas" }, - { (LONG64)prodml22__ReportingProduct::nitrogen_x0020gas, "nitrogen gas" }, - { (LONG64)prodml22__ReportingProduct::nitrogen_x0020oxide_x0020gas, "nitrogen oxide gas" }, - { (LONG64)prodml22__ReportingProduct::normal_x0020butane, "normal butane" }, - { (LONG64)prodml22__ReportingProduct::normal_x0020pentane, "normal pentane" }, - { (LONG64)prodml22__ReportingProduct::oil, "oil" }, - { (LONG64)prodml22__ReportingProduct::oil_x0020__x0020component_x0020in_x0020water, "oil - component in water" }, - { (LONG64)prodml22__ReportingProduct::oil_x0020__x0020gross, "oil - gross" }, - { (LONG64)prodml22__ReportingProduct::oil_x0020__x0020net, "oil - net" }, - { (LONG64)prodml22__ReportingProduct::oil_x0020and_x0020gas, "oil and gas" }, - { (LONG64)prodml22__ReportingProduct::oleic, "oleic" }, - { (LONG64)prodml22__ReportingProduct::pentane_x0020__x0020component, "pentane - component" }, - { (LONG64)prodml22__ReportingProduct::petroleum_x0020gas_x0020liquid, "petroleum gas liquid" }, - { (LONG64)prodml22__ReportingProduct::propane, "propane" }, - { (LONG64)prodml22__ReportingProduct::propane_x0020__x0020component, "propane - component" }, - { (LONG64)prodml22__ReportingProduct::salt, "salt" }, - { (LONG64)prodml22__ReportingProduct::sand_x0020__x0020component, "sand - component" }, - { (LONG64)prodml22__ReportingProduct::triethylene_x0020glycol, "triethylene glycol" }, - { (LONG64)prodml22__ReportingProduct::unknown, "unknown" }, - { (LONG64)prodml22__ReportingProduct::vapor, "vapor" }, - { (LONG64)prodml22__ReportingProduct::water, "water" }, - { (LONG64)prodml22__ReportingProduct::water_x0020__x0020discharge, "water - discharge" }, - { (LONG64)prodml22__ReportingProduct::water_x0020__x0020processed, "water - processed" }, + { a = (prodml23__ReservoirFluidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind, sizeof(prodml23__ReservoirFluidKind), 0, NULL, NULL); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } + return a; +} + +SOAP_FMAC3 prodml23__ReservoirFluidKind * SOAP_FMAC4 soap_new_prodml23__ReservoirFluidKind(struct soap *soap, int n) +{ + prodml23__ReservoirFluidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReservoirFluidKind))); + for (prodml23__ReservoirFluidKind *p = a; p && n--; ++p) + soap_default_prodml23__ReservoirFluidKind(soap, p); + return a; +} + +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReservoirFluidKind(struct soap *soap, const prodml23__ReservoirFluidKind *a, const char *tag, const char *type) +{ + if (soap_out_prodml23__ReservoirFluidKind(soap, tag ? tag : "prodml23:ReservoirFluidKind", -2, a, type)) + return soap->error; + return soap_putindependent(soap); +} + +SOAP_FMAC3 prodml23__ReservoirFluidKind * SOAP_FMAC4 soap_get_prodml23__ReservoirFluidKind(struct soap *soap, prodml23__ReservoirFluidKind *p, const char *tag, const char *type) +{ + if ((p = soap_in_prodml23__ReservoirFluidKind(soap, tag, p, type))) + if (soap_getindependent(soap)) + return NULL; + return p; +} + +static const struct soap_code_map soap_codes_prodml23__ReportingProduct[] = +{ { (LONG64)prodml23__ReportingProduct::aqueous, "aqueous" }, + { (LONG64)prodml23__ReportingProduct::c10, "c10" }, + { (LONG64)prodml23__ReportingProduct::c10_x002d, "c10-" }, + { (LONG64)prodml23__ReportingProduct::c10_x002b, "c10+" }, + { (LONG64)prodml23__ReportingProduct::c2_x002d, "c2-" }, + { (LONG64)prodml23__ReportingProduct::c2_x002b, "c2+" }, + { (LONG64)prodml23__ReportingProduct::c3_x002d, "c3-" }, + { (LONG64)prodml23__ReportingProduct::c3_x002b, "c3+" }, + { (LONG64)prodml23__ReportingProduct::c4_x002d, "c4-" }, + { (LONG64)prodml23__ReportingProduct::c4_x002b, "c4+" }, + { (LONG64)prodml23__ReportingProduct::c5_x002d, "c5-" }, + { (LONG64)prodml23__ReportingProduct::c5_x002b, "c5+" }, + { (LONG64)prodml23__ReportingProduct::c6_x002d, "c6-" }, + { (LONG64)prodml23__ReportingProduct::c6_x002b, "c6+" }, + { (LONG64)prodml23__ReportingProduct::c7, "c7" }, + { (LONG64)prodml23__ReportingProduct::c7_x002d, "c7-" }, + { (LONG64)prodml23__ReportingProduct::c7_x002b, "c7+" }, + { (LONG64)prodml23__ReportingProduct::c8, "c8" }, + { (LONG64)prodml23__ReportingProduct::c8_x002d, "c8-" }, + { (LONG64)prodml23__ReportingProduct::c8_x002b, "c8+" }, + { (LONG64)prodml23__ReportingProduct::c9, "c9" }, + { (LONG64)prodml23__ReportingProduct::c9_x002d, "c9-" }, + { (LONG64)prodml23__ReportingProduct::c9_x002b, "c9+" }, + { (LONG64)prodml23__ReportingProduct::carbon_x0020dioxide_x0020gas, "carbon dioxide gas" }, + { (LONG64)prodml23__ReportingProduct::carbon_x0020monoxide_x0020gas, "carbon monoxide gas" }, + { (LONG64)prodml23__ReportingProduct::chemical, "chemical" }, + { (LONG64)prodml23__ReportingProduct::condensate, "condensate" }, + { (LONG64)prodml23__ReportingProduct::condensate_x0020__x0020gross, "condensate - gross" }, + { (LONG64)prodml23__ReportingProduct::condensate_x0020__x0020net, "condensate - net" }, + { (LONG64)prodml23__ReportingProduct::crude_x0020__x0020stabilized, "crude - stabilized" }, + { (LONG64)prodml23__ReportingProduct::cuttings, "cuttings" }, + { (LONG64)prodml23__ReportingProduct::diesel, "diesel" }, + { (LONG64)prodml23__ReportingProduct::diethylene_x0020glycol, "diethylene glycol" }, + { (LONG64)prodml23__ReportingProduct::dioxygen, "dioxygen" }, + { (LONG64)prodml23__ReportingProduct::electric_x0020power, "electric power" }, + { (LONG64)prodml23__ReportingProduct::ethane, "ethane" }, + { (LONG64)prodml23__ReportingProduct::ethane_x0020__x0020component, "ethane - component" }, + { (LONG64)prodml23__ReportingProduct::gas, "gas" }, + { (LONG64)prodml23__ReportingProduct::gas_x0020__x0020component_x0020in_x0020oil, "gas - component in oil" }, + { (LONG64)prodml23__ReportingProduct::gas_x0020__x0020dry, "gas - dry" }, + { (LONG64)prodml23__ReportingProduct::gas_x0020__x0020rich, "gas - rich" }, + { (LONG64)prodml23__ReportingProduct::gas_x0020__x0020wet, "gas - wet" }, + { (LONG64)prodml23__ReportingProduct::helium_x0020gas, "helium gas" }, + { (LONG64)prodml23__ReportingProduct::heptane, "heptane" }, + { (LONG64)prodml23__ReportingProduct::hydraulic_x0020control_x0020fluid, "hydraulic control fluid" }, + { (LONG64)prodml23__ReportingProduct::hydrogen_x0020gas, "hydrogen gas" }, + { (LONG64)prodml23__ReportingProduct::hydrogen_x0020sulfide, "hydrogen sulfide" }, + { (LONG64)prodml23__ReportingProduct::i_butane_x0020__x0020component, "i-butane - component" }, + { (LONG64)prodml23__ReportingProduct::isobutane, "isobutane" }, + { (LONG64)prodml23__ReportingProduct::isopentane, "isopentane" }, + { (LONG64)prodml23__ReportingProduct::liquefied_x0020natural_x0020gas, "liquefied natural gas" }, + { (LONG64)prodml23__ReportingProduct::liquefied_x0020petroleum_x0020gas, "liquefied petroleum gas" }, + { (LONG64)prodml23__ReportingProduct::liquid, "liquid" }, + { (LONG64)prodml23__ReportingProduct::methane, "methane" }, + { (LONG64)prodml23__ReportingProduct::methane_x0020__x0020component, "methane - component" }, + { (LONG64)prodml23__ReportingProduct::methanol, "methanol" }, + { (LONG64)prodml23__ReportingProduct::mixed_x0020butane, "mixed butane" }, + { (LONG64)prodml23__ReportingProduct::monoethylene_x0020glycol, "monoethylene glycol" }, + { (LONG64)prodml23__ReportingProduct::naphtha, "naphtha" }, + { (LONG64)prodml23__ReportingProduct::natural_x0020gas_x0020liquid, "natural gas liquid" }, + { (LONG64)prodml23__ReportingProduct::n_butane_x0020__x0020component, "n-butane - component" }, + { (LONG64)prodml23__ReportingProduct::neopentane, "neopentane" }, + { (LONG64)prodml23__ReportingProduct::NGL_x0020__x0020component_x0020in_x0020gas, "NGL - component in gas" }, + { (LONG64)prodml23__ReportingProduct::nitrogen_x0020gas, "nitrogen gas" }, + { (LONG64)prodml23__ReportingProduct::nitrogen_x0020oxide_x0020gas, "nitrogen oxide gas" }, + { (LONG64)prodml23__ReportingProduct::normal_x0020butane, "normal butane" }, + { (LONG64)prodml23__ReportingProduct::normal_x0020pentane, "normal pentane" }, + { (LONG64)prodml23__ReportingProduct::oil, "oil" }, + { (LONG64)prodml23__ReportingProduct::oil_x0020__x0020component_x0020in_x0020water, "oil - component in water" }, + { (LONG64)prodml23__ReportingProduct::oil_x0020__x0020gross, "oil - gross" }, + { (LONG64)prodml23__ReportingProduct::oil_x0020__x0020net, "oil - net" }, + { (LONG64)prodml23__ReportingProduct::oil_x0020and_x0020gas, "oil and gas" }, + { (LONG64)prodml23__ReportingProduct::oleic, "oleic" }, + { (LONG64)prodml23__ReportingProduct::pentane_x0020__x0020component, "pentane - component" }, + { (LONG64)prodml23__ReportingProduct::petroleum_x0020gas_x0020liquid, "petroleum gas liquid" }, + { (LONG64)prodml23__ReportingProduct::propane, "propane" }, + { (LONG64)prodml23__ReportingProduct::propane_x0020__x0020component, "propane - component" }, + { (LONG64)prodml23__ReportingProduct::salt, "salt" }, + { (LONG64)prodml23__ReportingProduct::sand_x0020__x0020component, "sand - component" }, + { (LONG64)prodml23__ReportingProduct::triethylene_x0020glycol, "triethylene glycol" }, + { (LONG64)prodml23__ReportingProduct::unknown, "unknown" }, + { (LONG64)prodml23__ReportingProduct::vapor, "vapor" }, + { (LONG64)prodml23__ReportingProduct::water, "water" }, + { (LONG64)prodml23__ReportingProduct::water_x0020__x0020discharge, "water - discharge" }, + { (LONG64)prodml23__ReportingProduct::water_x0020__x0020processed, "water - processed" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingProduct2s(struct soap *soap, prodml22__ReportingProduct n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingProduct2s(struct soap *soap, prodml23__ReportingProduct n) { - const char *s = soap_code_str(soap_codes_prodml22__ReportingProduct, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReportingProduct, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingProduct(struct soap *soap, const char *tag, int id, const prodml22__ReportingProduct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingProduct(struct soap *soap, const char *tag, int id, const prodml23__ReportingProduct *a, const char *type) { if (!type) - type = "prodml22:ReportingProduct"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct), type) || soap_send(soap, soap_prodml22__ReportingProduct2s(soap, *a))) + type = "prodml23:ReportingProduct"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct), type) || soap_send(soap, soap_prodml23__ReportingProduct2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingProduct(struct soap *soap, const char *s, prodml22__ReportingProduct *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingProduct(struct soap *soap, const char *s, prodml23__ReportingProduct *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReportingProduct, s); + map = soap_code(soap_codes_prodml23__ReportingProduct, s); if (map) - *a = (prodml22__ReportingProduct)map->code; + *a = (prodml23__ReportingProduct)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67746,103 +67741,103 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingProduct(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingProduct * SOAP_FMAC4 soap_in_prodml22__ReportingProduct(struct soap *soap, const char *tag, prodml22__ReportingProduct *a, const char *type) +SOAP_FMAC3 prodml23__ReportingProduct * SOAP_FMAC4 soap_in_prodml23__ReportingProduct(struct soap *soap, const char *tag, prodml23__ReportingProduct *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReportingProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct, sizeof(prodml22__ReportingProduct), NULL, NULL, NULL, NULL); + a = (prodml23__ReportingProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct, sizeof(prodml23__ReportingProduct), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReportingProduct(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReportingProduct(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReportingProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct, sizeof(prodml22__ReportingProduct), 0, NULL, NULL); + { a = (prodml23__ReportingProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct, sizeof(prodml23__ReportingProduct), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ReportingProduct * SOAP_FMAC4 soap_new_prodml22__ReportingProduct(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ReportingProduct * SOAP_FMAC4 soap_new_prodml23__ReportingProduct(struct soap *soap, int n) { - prodml22__ReportingProduct *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReportingProduct))); - for (prodml22__ReportingProduct *p = a; p && n--; ++p) - soap_default_prodml22__ReportingProduct(soap, p); + prodml23__ReportingProduct *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReportingProduct))); + for (prodml23__ReportingProduct *p = a; p && n--; ++p) + soap_default_prodml23__ReportingProduct(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingProduct(struct soap *soap, const prodml22__ReportingProduct *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingProduct(struct soap *soap, const prodml23__ReportingProduct *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingProduct(soap, tag ? tag : "prodml22:ReportingProduct", -2, a, type)) + if (soap_out_prodml23__ReportingProduct(soap, tag ? tag : "prodml23:ReportingProduct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingProduct * SOAP_FMAC4 soap_get_prodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingProduct * SOAP_FMAC4 soap_get_prodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingProduct(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ReportingFlow[] = -{ { (LONG64)prodml22__ReportingFlow::consume, "consume" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020black_x0020start, "consume - black start" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020compressor, "consume - compressor" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020emitted, "consume - emitted" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020flare, "consume - flare" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020fuel, "consume - fuel" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020HP_x0020flare, "consume - HP flare" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020LP_x0020flare, "consume - LP flare" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020non_x0020compressor, "consume - non compressor" }, - { (LONG64)prodml22__ReportingFlow::consume_x0020__x0020venting, "consume - venting" }, - { (LONG64)prodml22__ReportingFlow::disposal, "disposal" }, - { (LONG64)prodml22__ReportingFlow::export_, "export" }, - { (LONG64)prodml22__ReportingFlow::export_x0020__x0020nominated, "export - nominated" }, - { (LONG64)prodml22__ReportingFlow::export_x0020__x0020requested, "export - requested" }, - { (LONG64)prodml22__ReportingFlow::export_x0020__x0020shortfall, "export - shortfall" }, - { (LONG64)prodml22__ReportingFlow::gas_x0020lift, "gas lift" }, - { (LONG64)prodml22__ReportingFlow::hydrocarbon_x0020accounting, "hydrocarbon accounting" }, - { (LONG64)prodml22__ReportingFlow::import, "import" }, - { (LONG64)prodml22__ReportingFlow::injection, "injection" }, - { (LONG64)prodml22__ReportingFlow::inventory, "inventory" }, - { (LONG64)prodml22__ReportingFlow::overboard, "overboard" }, - { (LONG64)prodml22__ReportingFlow::production, "production" }, - { (LONG64)prodml22__ReportingFlow::sale, "sale" }, - { (LONG64)prodml22__ReportingFlow::storage, "storage" }, - { (LONG64)prodml22__ReportingFlow::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__ReportingFlow[] = +{ { (LONG64)prodml23__ReportingFlow::consume, "consume" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020black_x0020start, "consume - black start" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020compressor, "consume - compressor" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020emitted, "consume - emitted" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020flare, "consume - flare" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020fuel, "consume - fuel" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020HP_x0020flare, "consume - HP flare" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020LP_x0020flare, "consume - LP flare" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020non_x0020compressor, "consume - non compressor" }, + { (LONG64)prodml23__ReportingFlow::consume_x0020__x0020venting, "consume - venting" }, + { (LONG64)prodml23__ReportingFlow::disposal, "disposal" }, + { (LONG64)prodml23__ReportingFlow::export_, "export" }, + { (LONG64)prodml23__ReportingFlow::export_x0020__x0020nominated, "export - nominated" }, + { (LONG64)prodml23__ReportingFlow::export_x0020__x0020requested, "export - requested" }, + { (LONG64)prodml23__ReportingFlow::export_x0020__x0020shortfall, "export - shortfall" }, + { (LONG64)prodml23__ReportingFlow::gas_x0020lift, "gas lift" }, + { (LONG64)prodml23__ReportingFlow::hydrocarbon_x0020accounting, "hydrocarbon accounting" }, + { (LONG64)prodml23__ReportingFlow::import, "import" }, + { (LONG64)prodml23__ReportingFlow::injection, "injection" }, + { (LONG64)prodml23__ReportingFlow::inventory, "inventory" }, + { (LONG64)prodml23__ReportingFlow::overboard, "overboard" }, + { (LONG64)prodml23__ReportingFlow::production, "production" }, + { (LONG64)prodml23__ReportingFlow::sale, "sale" }, + { (LONG64)prodml23__ReportingFlow::storage, "storage" }, + { (LONG64)prodml23__ReportingFlow::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingFlow2s(struct soap *soap, prodml22__ReportingFlow n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingFlow2s(struct soap *soap, prodml23__ReportingFlow n) { - const char *s = soap_code_str(soap_codes_prodml22__ReportingFlow, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReportingFlow, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingFlow(struct soap *soap, const char *tag, int id, const prodml22__ReportingFlow *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingFlow(struct soap *soap, const char *tag, int id, const prodml23__ReportingFlow *a, const char *type) { if (!type) - type = "prodml22:ReportingFlow"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow), type) || soap_send(soap, soap_prodml22__ReportingFlow2s(soap, *a))) + type = "prodml23:ReportingFlow"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow), type) || soap_send(soap, soap_prodml23__ReportingFlow2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingFlow(struct soap *soap, const char *s, prodml22__ReportingFlow *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingFlow(struct soap *soap, const char *s, prodml23__ReportingFlow *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReportingFlow, s); + map = soap_code(soap_codes_prodml23__ReportingFlow, s); if (map) - *a = (prodml22__ReportingFlow)map->code; + *a = (prodml23__ReportingFlow)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67850,138 +67845,138 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingFlow(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingFlow * SOAP_FMAC4 soap_in_prodml22__ReportingFlow(struct soap *soap, const char *tag, prodml22__ReportingFlow *a, const char *type) +SOAP_FMAC3 prodml23__ReportingFlow * SOAP_FMAC4 soap_in_prodml23__ReportingFlow(struct soap *soap, const char *tag, prodml23__ReportingFlow *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReportingFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow, sizeof(prodml22__ReportingFlow), NULL, NULL, NULL, NULL); + a = (prodml23__ReportingFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow, sizeof(prodml23__ReportingFlow), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReportingFlow(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReportingFlow(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReportingFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow, sizeof(prodml22__ReportingFlow), 0, NULL, NULL); + { a = (prodml23__ReportingFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow, sizeof(prodml23__ReportingFlow), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ReportingFlow * SOAP_FMAC4 soap_new_prodml22__ReportingFlow(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ReportingFlow * SOAP_FMAC4 soap_new_prodml23__ReportingFlow(struct soap *soap, int n) { - prodml22__ReportingFlow *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReportingFlow))); - for (prodml22__ReportingFlow *p = a; p && n--; ++p) - soap_default_prodml22__ReportingFlow(soap, p); + prodml23__ReportingFlow *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReportingFlow))); + for (prodml23__ReportingFlow *p = a; p && n--; ++p) + soap_default_prodml23__ReportingFlow(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingFlow(struct soap *soap, const prodml22__ReportingFlow *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingFlow(struct soap *soap, const prodml23__ReportingFlow *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingFlow(soap, tag ? tag : "prodml22:ReportingFlow", -2, a, type)) + if (soap_out_prodml23__ReportingFlow(soap, tag ? tag : "prodml23:ReportingFlow", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingFlow * SOAP_FMAC4 soap_get_prodml22__ReportingFlow(struct soap *soap, prodml22__ReportingFlow *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingFlow * SOAP_FMAC4 soap_get_prodml23__ReportingFlow(struct soap *soap, prodml23__ReportingFlow *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingFlow(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingFlow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ReportingFacility[] = -{ { (LONG64)prodml22__ReportingFacility::block_x0020valve, "block valve" }, - { (LONG64)prodml22__ReportingFacility::bottomhole, "bottomhole" }, - { (LONG64)prodml22__ReportingFacility::casing, "casing" }, - { (LONG64)prodml22__ReportingFacility::choke, "choke" }, - { (LONG64)prodml22__ReportingFacility::cluster, "cluster" }, - { (LONG64)prodml22__ReportingFacility::commercial_x0020entity, "commercial entity" }, - { (LONG64)prodml22__ReportingFacility::company, "company" }, - { (LONG64)prodml22__ReportingFacility::completion, "completion" }, - { (LONG64)prodml22__ReportingFacility::compressor, "compressor" }, - { (LONG64)prodml22__ReportingFacility::controller, "controller" }, - { (LONG64)prodml22__ReportingFacility::controller_x0020_x002d__x0020lift, "controller -- lift" }, - { (LONG64)prodml22__ReportingFacility::country, "country" }, - { (LONG64)prodml22__ReportingFacility::county, "county" }, - { (LONG64)prodml22__ReportingFacility::downhole_x0020monitoring_x0020system, "downhole monitoring system" }, - { (LONG64)prodml22__ReportingFacility::electric_x0020submersible_x0020pump, "electric submersible pump" }, - { (LONG64)prodml22__ReportingFacility::field, "field" }, - { (LONG64)prodml22__ReportingFacility::field_x0020__x0020area, "field - area" }, - { (LONG64)prodml22__ReportingFacility::field_x0020__x0020group, "field - group" }, - { (LONG64)prodml22__ReportingFacility::field_x0020__x0020part, "field - part" }, - { (LONG64)prodml22__ReportingFacility::flow_x0020meter, "flow meter" }, - { (LONG64)prodml22__ReportingFacility::flowline, "flowline" }, - { (LONG64)prodml22__ReportingFacility::formation, "formation" }, - { (LONG64)prodml22__ReportingFacility::gas_x0020lift_x0020valve_x0020mandrel, "gas lift valve mandrel" }, - { (LONG64)prodml22__ReportingFacility::generator, "generator" }, - { (LONG64)prodml22__ReportingFacility::installation, "installation" }, - { (LONG64)prodml22__ReportingFacility::lease, "lease" }, - { (LONG64)prodml22__ReportingFacility::license, "license" }, - { (LONG64)prodml22__ReportingFacility::manifold, "manifold" }, - { (LONG64)prodml22__ReportingFacility::organizational_x0020unit, "organizational unit" }, - { (LONG64)prodml22__ReportingFacility::packer, "packer" }, - { (LONG64)prodml22__ReportingFacility::perforated_x0020interval, "perforated interval" }, - { (LONG64)prodml22__ReportingFacility::pipeline, "pipeline" }, - { (LONG64)prodml22__ReportingFacility::plant_x0020__x0020processing, "plant - processing" }, - { (LONG64)prodml22__ReportingFacility::platform, "platform" }, - { (LONG64)prodml22__ReportingFacility::pressure_x0020meter, "pressure meter" }, - { (LONG64)prodml22__ReportingFacility::processing_x0020facility, "processing facility" }, - { (LONG64)prodml22__ReportingFacility::production_x0020tubing, "production tubing" }, - { (LONG64)prodml22__ReportingFacility::pump, "pump" }, - { (LONG64)prodml22__ReportingFacility::rectifier, "rectifier" }, - { (LONG64)prodml22__ReportingFacility::regulating_x0020valve, "regulating valve" }, - { (LONG64)prodml22__ReportingFacility::remote_x0020terminal_x0020unit, "remote terminal unit" }, - { (LONG64)prodml22__ReportingFacility::reservoir, "reservoir" }, - { (LONG64)prodml22__ReportingFacility::separator, "separator" }, - { (LONG64)prodml22__ReportingFacility::sleeve_x0020valve, "sleeve valve" }, - { (LONG64)prodml22__ReportingFacility::state, "state" }, - { (LONG64)prodml22__ReportingFacility::storage, "storage" }, - { (LONG64)prodml22__ReportingFacility::tank, "tank" }, - { (LONG64)prodml22__ReportingFacility::temperature_x0020meter, "temperature meter" }, - { (LONG64)prodml22__ReportingFacility::template_, "template" }, - { (LONG64)prodml22__ReportingFacility::terminal, "terminal" }, - { (LONG64)prodml22__ReportingFacility::trap, "trap" }, - { (LONG64)prodml22__ReportingFacility::trunkline, "trunkline" }, - { (LONG64)prodml22__ReportingFacility::tubing_x0020head, "tubing head" }, - { (LONG64)prodml22__ReportingFacility::turbine, "turbine" }, - { (LONG64)prodml22__ReportingFacility::unknown, "unknown" }, - { (LONG64)prodml22__ReportingFacility::well, "well" }, - { (LONG64)prodml22__ReportingFacility::well_x0020group, "well group" }, - { (LONG64)prodml22__ReportingFacility::wellbore, "wellbore" }, - { (LONG64)prodml22__ReportingFacility::wellhead, "wellhead" }, - { (LONG64)prodml22__ReportingFacility::zone, "zone" }, +static const struct soap_code_map soap_codes_prodml23__ReportingFacility[] = +{ { (LONG64)prodml23__ReportingFacility::block_x0020valve, "block valve" }, + { (LONG64)prodml23__ReportingFacility::bottomhole, "bottomhole" }, + { (LONG64)prodml23__ReportingFacility::casing, "casing" }, + { (LONG64)prodml23__ReportingFacility::choke, "choke" }, + { (LONG64)prodml23__ReportingFacility::cluster, "cluster" }, + { (LONG64)prodml23__ReportingFacility::commercial_x0020entity, "commercial entity" }, + { (LONG64)prodml23__ReportingFacility::company, "company" }, + { (LONG64)prodml23__ReportingFacility::completion, "completion" }, + { (LONG64)prodml23__ReportingFacility::compressor, "compressor" }, + { (LONG64)prodml23__ReportingFacility::controller, "controller" }, + { (LONG64)prodml23__ReportingFacility::controller_x0020_x002d__x0020lift, "controller -- lift" }, + { (LONG64)prodml23__ReportingFacility::country, "country" }, + { (LONG64)prodml23__ReportingFacility::county, "county" }, + { (LONG64)prodml23__ReportingFacility::downhole_x0020monitoring_x0020system, "downhole monitoring system" }, + { (LONG64)prodml23__ReportingFacility::electric_x0020submersible_x0020pump, "electric submersible pump" }, + { (LONG64)prodml23__ReportingFacility::field, "field" }, + { (LONG64)prodml23__ReportingFacility::field_x0020__x0020area, "field - area" }, + { (LONG64)prodml23__ReportingFacility::field_x0020__x0020group, "field - group" }, + { (LONG64)prodml23__ReportingFacility::field_x0020__x0020part, "field - part" }, + { (LONG64)prodml23__ReportingFacility::flow_x0020meter, "flow meter" }, + { (LONG64)prodml23__ReportingFacility::flowline, "flowline" }, + { (LONG64)prodml23__ReportingFacility::formation, "formation" }, + { (LONG64)prodml23__ReportingFacility::gas_x0020lift_x0020valve_x0020mandrel, "gas lift valve mandrel" }, + { (LONG64)prodml23__ReportingFacility::generator, "generator" }, + { (LONG64)prodml23__ReportingFacility::installation, "installation" }, + { (LONG64)prodml23__ReportingFacility::lease, "lease" }, + { (LONG64)prodml23__ReportingFacility::license, "license" }, + { (LONG64)prodml23__ReportingFacility::manifold, "manifold" }, + { (LONG64)prodml23__ReportingFacility::organizational_x0020unit, "organizational unit" }, + { (LONG64)prodml23__ReportingFacility::packer, "packer" }, + { (LONG64)prodml23__ReportingFacility::perforated_x0020interval, "perforated interval" }, + { (LONG64)prodml23__ReportingFacility::pipeline, "pipeline" }, + { (LONG64)prodml23__ReportingFacility::plant_x0020__x0020processing, "plant - processing" }, + { (LONG64)prodml23__ReportingFacility::platform, "platform" }, + { (LONG64)prodml23__ReportingFacility::pressure_x0020meter, "pressure meter" }, + { (LONG64)prodml23__ReportingFacility::processing_x0020facility, "processing facility" }, + { (LONG64)prodml23__ReportingFacility::production_x0020tubing, "production tubing" }, + { (LONG64)prodml23__ReportingFacility::pump, "pump" }, + { (LONG64)prodml23__ReportingFacility::rectifier, "rectifier" }, + { (LONG64)prodml23__ReportingFacility::regulating_x0020valve, "regulating valve" }, + { (LONG64)prodml23__ReportingFacility::remote_x0020terminal_x0020unit, "remote terminal unit" }, + { (LONG64)prodml23__ReportingFacility::reservoir, "reservoir" }, + { (LONG64)prodml23__ReportingFacility::separator, "separator" }, + { (LONG64)prodml23__ReportingFacility::sleeve_x0020valve, "sleeve valve" }, + { (LONG64)prodml23__ReportingFacility::state, "state" }, + { (LONG64)prodml23__ReportingFacility::storage, "storage" }, + { (LONG64)prodml23__ReportingFacility::tank, "tank" }, + { (LONG64)prodml23__ReportingFacility::temperature_x0020meter, "temperature meter" }, + { (LONG64)prodml23__ReportingFacility::template_, "template" }, + { (LONG64)prodml23__ReportingFacility::terminal, "terminal" }, + { (LONG64)prodml23__ReportingFacility::trap, "trap" }, + { (LONG64)prodml23__ReportingFacility::trunkline, "trunkline" }, + { (LONG64)prodml23__ReportingFacility::tubing_x0020head, "tubing head" }, + { (LONG64)prodml23__ReportingFacility::turbine, "turbine" }, + { (LONG64)prodml23__ReportingFacility::unknown, "unknown" }, + { (LONG64)prodml23__ReportingFacility::well, "well" }, + { (LONG64)prodml23__ReportingFacility::well_x0020group, "well group" }, + { (LONG64)prodml23__ReportingFacility::wellbore, "wellbore" }, + { (LONG64)prodml23__ReportingFacility::wellhead, "wellhead" }, + { (LONG64)prodml23__ReportingFacility::zone, "zone" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingFacility2s(struct soap *soap, prodml22__ReportingFacility n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingFacility2s(struct soap *soap, prodml23__ReportingFacility n) { - const char *s = soap_code_str(soap_codes_prodml22__ReportingFacility, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReportingFacility, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingFacility(struct soap *soap, const char *tag, int id, const prodml22__ReportingFacility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingFacility(struct soap *soap, const char *tag, int id, const prodml23__ReportingFacility *a, const char *type) { if (!type) - type = "prodml22:ReportingFacility"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility), type) || soap_send(soap, soap_prodml22__ReportingFacility2s(soap, *a))) + type = "prodml23:ReportingFacility"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility), type) || soap_send(soap, soap_prodml23__ReportingFacility2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingFacility(struct soap *soap, const char *s, prodml22__ReportingFacility *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingFacility(struct soap *soap, const char *s, prodml23__ReportingFacility *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReportingFacility, s); + map = soap_code(soap_codes_prodml23__ReportingFacility, s); if (map) - *a = (prodml22__ReportingFacility)map->code; + *a = (prodml23__ReportingFacility)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -67989,108 +67984,108 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingFacility(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingFacility * SOAP_FMAC4 soap_in_prodml22__ReportingFacility(struct soap *soap, const char *tag, prodml22__ReportingFacility *a, const char *type) +SOAP_FMAC3 prodml23__ReportingFacility * SOAP_FMAC4 soap_in_prodml23__ReportingFacility(struct soap *soap, const char *tag, prodml23__ReportingFacility *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReportingFacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility, sizeof(prodml22__ReportingFacility), NULL, NULL, NULL, NULL); + a = (prodml23__ReportingFacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility, sizeof(prodml23__ReportingFacility), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReportingFacility(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReportingFacility(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReportingFacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility, sizeof(prodml22__ReportingFacility), 0, NULL, NULL); + { a = (prodml23__ReportingFacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility, sizeof(prodml23__ReportingFacility), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ReportingFacility * SOAP_FMAC4 soap_new_prodml22__ReportingFacility(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ReportingFacility * SOAP_FMAC4 soap_new_prodml23__ReportingFacility(struct soap *soap, int n) { - prodml22__ReportingFacility *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReportingFacility))); - for (prodml22__ReportingFacility *p = a; p && n--; ++p) - soap_default_prodml22__ReportingFacility(soap, p); + prodml23__ReportingFacility *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReportingFacility))); + for (prodml23__ReportingFacility *p = a; p && n--; ++p) + soap_default_prodml23__ReportingFacility(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingFacility(struct soap *soap, const prodml22__ReportingFacility *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingFacility(struct soap *soap, const prodml23__ReportingFacility *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingFacility(soap, tag ? tag : "prodml22:ReportingFacility", -2, a, type)) + if (soap_out_prodml23__ReportingFacility(soap, tag ? tag : "prodml23:ReportingFacility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingFacility * SOAP_FMAC4 soap_get_prodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingFacility * SOAP_FMAC4 soap_get_prodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingFacility(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingFacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ReportingEntityKind[] = -{ { (LONG64)prodml22__ReportingEntityKind::business_x0020unit, "business unit" }, - { (LONG64)prodml22__ReportingEntityKind::fpso, "fpso" }, - { (LONG64)prodml22__ReportingEntityKind::well_x0020completion, "well completion" }, - { (LONG64)prodml22__ReportingEntityKind::wellbore_x0020completion, "wellbore completion" }, - { (LONG64)prodml22__ReportingEntityKind::commercial_x0020entity, "commercial entity" }, - { (LONG64)prodml22__ReportingEntityKind::company, "company" }, - { (LONG64)prodml22__ReportingEntityKind::contact_x0020interval, "contact interval" }, - { (LONG64)prodml22__ReportingEntityKind::country, "country" }, - { (LONG64)prodml22__ReportingEntityKind::county, "county" }, - { (LONG64)prodml22__ReportingEntityKind::facility, "facility" }, - { (LONG64)prodml22__ReportingEntityKind::field, "field" }, - { (LONG64)prodml22__ReportingEntityKind::field_x0020__x0020part, "field - part" }, - { (LONG64)prodml22__ReportingEntityKind::flow_x0020meter, "flow meter" }, - { (LONG64)prodml22__ReportingEntityKind::formation, "formation" }, - { (LONG64)prodml22__ReportingEntityKind::gas_x0020plant, "gas plant" }, - { (LONG64)prodml22__ReportingEntityKind::lease, "lease" }, - { (LONG64)prodml22__ReportingEntityKind::license, "license" }, - { (LONG64)prodml22__ReportingEntityKind::pipeline, "pipeline" }, - { (LONG64)prodml22__ReportingEntityKind::platform, "platform" }, - { (LONG64)prodml22__ReportingEntityKind::production_x0020processing_x0020facility, "production processing facility" }, - { (LONG64)prodml22__ReportingEntityKind::reservoir, "reservoir" }, - { (LONG64)prodml22__ReportingEntityKind::rock_fluid_x0020unit_x0020feature, "rock-fluid unit feature" }, - { (LONG64)prodml22__ReportingEntityKind::state, "state" }, - { (LONG64)prodml22__ReportingEntityKind::tank, "tank" }, - { (LONG64)prodml22__ReportingEntityKind::terminal, "terminal" }, - { (LONG64)prodml22__ReportingEntityKind::well, "well" }, - { (LONG64)prodml22__ReportingEntityKind::well_x0020group, "well group" }, - { (LONG64)prodml22__ReportingEntityKind::wellbore, "wellbore" }, - { (LONG64)prodml22__ReportingEntityKind::oil_x0020tanker, "oil tanker" }, - { (LONG64)prodml22__ReportingEntityKind::tanker_x0020truck, "tanker truck" }, +static const struct soap_code_map soap_codes_prodml23__ReportingEntityKind[] = +{ { (LONG64)prodml23__ReportingEntityKind::business_x0020unit, "business unit" }, + { (LONG64)prodml23__ReportingEntityKind::fpso, "fpso" }, + { (LONG64)prodml23__ReportingEntityKind::well_x0020completion, "well completion" }, + { (LONG64)prodml23__ReportingEntityKind::wellbore_x0020completion, "wellbore completion" }, + { (LONG64)prodml23__ReportingEntityKind::commercial_x0020entity, "commercial entity" }, + { (LONG64)prodml23__ReportingEntityKind::company, "company" }, + { (LONG64)prodml23__ReportingEntityKind::contact_x0020interval, "contact interval" }, + { (LONG64)prodml23__ReportingEntityKind::country, "country" }, + { (LONG64)prodml23__ReportingEntityKind::county, "county" }, + { (LONG64)prodml23__ReportingEntityKind::facility, "facility" }, + { (LONG64)prodml23__ReportingEntityKind::field, "field" }, + { (LONG64)prodml23__ReportingEntityKind::field_x0020__x0020part, "field - part" }, + { (LONG64)prodml23__ReportingEntityKind::flow_x0020meter, "flow meter" }, + { (LONG64)prodml23__ReportingEntityKind::formation, "formation" }, + { (LONG64)prodml23__ReportingEntityKind::gas_x0020plant, "gas plant" }, + { (LONG64)prodml23__ReportingEntityKind::lease, "lease" }, + { (LONG64)prodml23__ReportingEntityKind::license, "license" }, + { (LONG64)prodml23__ReportingEntityKind::pipeline, "pipeline" }, + { (LONG64)prodml23__ReportingEntityKind::platform, "platform" }, + { (LONG64)prodml23__ReportingEntityKind::production_x0020processing_x0020facility, "production processing facility" }, + { (LONG64)prodml23__ReportingEntityKind::reservoir, "reservoir" }, + { (LONG64)prodml23__ReportingEntityKind::rock_fluid_x0020unit_x0020feature, "rock-fluid unit feature" }, + { (LONG64)prodml23__ReportingEntityKind::state, "state" }, + { (LONG64)prodml23__ReportingEntityKind::tank, "tank" }, + { (LONG64)prodml23__ReportingEntityKind::terminal, "terminal" }, + { (LONG64)prodml23__ReportingEntityKind::well, "well" }, + { (LONG64)prodml23__ReportingEntityKind::well_x0020group, "well group" }, + { (LONG64)prodml23__ReportingEntityKind::wellbore, "wellbore" }, + { (LONG64)prodml23__ReportingEntityKind::oil_x0020tanker, "oil tanker" }, + { (LONG64)prodml23__ReportingEntityKind::tanker_x0020truck, "tanker truck" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingEntityKind2s(struct soap *soap, prodml22__ReportingEntityKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingEntityKind2s(struct soap *soap, prodml23__ReportingEntityKind n) { - const char *s = soap_code_str(soap_codes_prodml22__ReportingEntityKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReportingEntityKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingEntityKind(struct soap *soap, const char *tag, int id, const prodml22__ReportingEntityKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingEntityKind(struct soap *soap, const char *tag, int id, const prodml23__ReportingEntityKind *a, const char *type) { if (!type) - type = "prodml22:ReportingEntityKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind), type) || soap_send(soap, soap_prodml22__ReportingEntityKind2s(soap, *a))) + type = "prodml23:ReportingEntityKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind), type) || soap_send(soap, soap_prodml23__ReportingEntityKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingEntityKind(struct soap *soap, const char *s, prodml22__ReportingEntityKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingEntityKind(struct soap *soap, const char *s, prodml23__ReportingEntityKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReportingEntityKind, s); + map = soap_code(soap_codes_prodml23__ReportingEntityKind, s); if (map) - *a = (prodml22__ReportingEntityKind)map->code; + *a = (prodml23__ReportingEntityKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68098,86 +68093,86 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingEntityKind(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingEntityKind * SOAP_FMAC4 soap_in_prodml22__ReportingEntityKind(struct soap *soap, const char *tag, prodml22__ReportingEntityKind *a, const char *type) +SOAP_FMAC3 prodml23__ReportingEntityKind * SOAP_FMAC4 soap_in_prodml23__ReportingEntityKind(struct soap *soap, const char *tag, prodml23__ReportingEntityKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReportingEntityKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind, sizeof(prodml22__ReportingEntityKind), NULL, NULL, NULL, NULL); + a = (prodml23__ReportingEntityKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind, sizeof(prodml23__ReportingEntityKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReportingEntityKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReportingEntityKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReportingEntityKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind, sizeof(prodml22__ReportingEntityKind), 0, NULL, NULL); + { a = (prodml23__ReportingEntityKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind, sizeof(prodml23__ReportingEntityKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ReportingEntityKind * SOAP_FMAC4 soap_new_prodml22__ReportingEntityKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ReportingEntityKind * SOAP_FMAC4 soap_new_prodml23__ReportingEntityKind(struct soap *soap, int n) { - prodml22__ReportingEntityKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReportingEntityKind))); - for (prodml22__ReportingEntityKind *p = a; p && n--; ++p) - soap_default_prodml22__ReportingEntityKind(soap, p); + prodml23__ReportingEntityKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReportingEntityKind))); + for (prodml23__ReportingEntityKind *p = a; p && n--; ++p) + soap_default_prodml23__ReportingEntityKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingEntityKind(struct soap *soap, const prodml22__ReportingEntityKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingEntityKind(struct soap *soap, const prodml23__ReportingEntityKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingEntityKind(soap, tag ? tag : "prodml22:ReportingEntityKind", -2, a, type)) + if (soap_out_prodml23__ReportingEntityKind(soap, tag ? tag : "prodml23:ReportingEntityKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingEntityKind * SOAP_FMAC4 soap_get_prodml22__ReportingEntityKind(struct soap *soap, prodml22__ReportingEntityKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingEntityKind * SOAP_FMAC4 soap_get_prodml23__ReportingEntityKind(struct soap *soap, prodml23__ReportingEntityKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingEntityKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingEntityKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ReportingDurationKind[] = -{ { (LONG64)prodml22__ReportingDurationKind::day, "day" }, - { (LONG64)prodml22__ReportingDurationKind::life_x0020to_x0020date, "life to date" }, - { (LONG64)prodml22__ReportingDurationKind::month, "month" }, - { (LONG64)prodml22__ReportingDurationKind::month_x0020to_x0020date, "month to date" }, - { (LONG64)prodml22__ReportingDurationKind::total_x0020cumulative, "total cumulative" }, - { (LONG64)prodml22__ReportingDurationKind::week, "week" }, - { (LONG64)prodml22__ReportingDurationKind::year, "year" }, - { (LONG64)prodml22__ReportingDurationKind::year_x0020to_x0020date, "year to date" }, +static const struct soap_code_map soap_codes_prodml23__ReportingDurationKind[] = +{ { (LONG64)prodml23__ReportingDurationKind::day, "day" }, + { (LONG64)prodml23__ReportingDurationKind::life_x0020to_x0020date, "life to date" }, + { (LONG64)prodml23__ReportingDurationKind::month, "month" }, + { (LONG64)prodml23__ReportingDurationKind::month_x0020to_x0020date, "month to date" }, + { (LONG64)prodml23__ReportingDurationKind::total_x0020cumulative, "total cumulative" }, + { (LONG64)prodml23__ReportingDurationKind::week, "week" }, + { (LONG64)prodml23__ReportingDurationKind::year, "year" }, + { (LONG64)prodml23__ReportingDurationKind::year_x0020to_x0020date, "year to date" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingDurationKind2s(struct soap *soap, prodml22__ReportingDurationKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingDurationKind2s(struct soap *soap, prodml23__ReportingDurationKind n) { - const char *s = soap_code_str(soap_codes_prodml22__ReportingDurationKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ReportingDurationKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingDurationKind(struct soap *soap, const char *tag, int id, const prodml22__ReportingDurationKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingDurationKind(struct soap *soap, const char *tag, int id, const prodml23__ReportingDurationKind *a, const char *type) { if (!type) - type = "prodml22:ReportingDurationKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind), type) || soap_send(soap, soap_prodml22__ReportingDurationKind2s(soap, *a))) + type = "prodml23:ReportingDurationKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind), type) || soap_send(soap, soap_prodml23__ReportingDurationKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingDurationKind(struct soap *soap, const char *s, prodml22__ReportingDurationKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingDurationKind(struct soap *soap, const char *s, prodml23__ReportingDurationKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ReportingDurationKind, s); + map = soap_code(soap_codes_prodml23__ReportingDurationKind, s); if (map) - *a = (prodml22__ReportingDurationKind)map->code; + *a = (prodml23__ReportingDurationKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68185,120 +68180,120 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingDurationKind(struct soap * return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingDurationKind * SOAP_FMAC4 soap_in_prodml22__ReportingDurationKind(struct soap *soap, const char *tag, prodml22__ReportingDurationKind *a, const char *type) +SOAP_FMAC3 prodml23__ReportingDurationKind * SOAP_FMAC4 soap_in_prodml23__ReportingDurationKind(struct soap *soap, const char *tag, prodml23__ReportingDurationKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ReportingDurationKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind, sizeof(prodml22__ReportingDurationKind), NULL, NULL, NULL, NULL); + a = (prodml23__ReportingDurationKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind, sizeof(prodml23__ReportingDurationKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ReportingDurationKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ReportingDurationKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ReportingDurationKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind, sizeof(prodml22__ReportingDurationKind), 0, NULL, NULL); + { a = (prodml23__ReportingDurationKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind, sizeof(prodml23__ReportingDurationKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ReportingDurationKind * SOAP_FMAC4 soap_new_prodml22__ReportingDurationKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ReportingDurationKind * SOAP_FMAC4 soap_new_prodml23__ReportingDurationKind(struct soap *soap, int n) { - prodml22__ReportingDurationKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ReportingDurationKind))); - for (prodml22__ReportingDurationKind *p = a; p && n--; ++p) - soap_default_prodml22__ReportingDurationKind(soap, p); + prodml23__ReportingDurationKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ReportingDurationKind))); + for (prodml23__ReportingDurationKind *p = a; p && n--; ++p) + soap_default_prodml23__ReportingDurationKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingDurationKind(struct soap *soap, const prodml22__ReportingDurationKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingDurationKind(struct soap *soap, const prodml23__ReportingDurationKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingDurationKind(soap, tag ? tag : "prodml22:ReportingDurationKind", -2, a, type)) + if (soap_out_prodml23__ReportingDurationKind(soap, tag ? tag : "prodml23:ReportingDurationKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingDurationKind * SOAP_FMAC4 soap_get_prodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingDurationKind * SOAP_FMAC4 soap_get_prodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingDurationKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingDurationKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PureComponentKind[] = -{ { (LONG64)prodml22__PureComponentKind::_1_2_4_trimethylbenzene, "1-2-4-trimethylbenzene" }, - { (LONG64)prodml22__PureComponentKind::_2_dimethylbutane, "2-dimethylbutane" }, - { (LONG64)prodml22__PureComponentKind::_3_dimethylbutane, "3-dimethylbutane" }, - { (LONG64)prodml22__PureComponentKind::ar, "ar" }, - { (LONG64)prodml22__PureComponentKind::c1, "c1" }, - { (LONG64)prodml22__PureComponentKind::c2, "c2" }, - { (LONG64)prodml22__PureComponentKind::c3, "c3" }, - { (LONG64)prodml22__PureComponentKind::co2, "co2" }, - { (LONG64)prodml22__PureComponentKind::cos, "cos" }, - { (LONG64)prodml22__PureComponentKind::h2, "h2" }, - { (LONG64)prodml22__PureComponentKind::h2o, "h2o" }, - { (LONG64)prodml22__PureComponentKind::h2s, "h2s" }, - { (LONG64)prodml22__PureComponentKind::he, "he" }, - { (LONG64)prodml22__PureComponentKind::hg, "hg" }, - { (LONG64)prodml22__PureComponentKind::i_c4, "i-c4" }, - { (LONG64)prodml22__PureComponentKind::i_c5, "i-c5" }, - { (LONG64)prodml22__PureComponentKind::n2, "n2" }, - { (LONG64)prodml22__PureComponentKind::n_c10, "n-c10" }, - { (LONG64)prodml22__PureComponentKind::n_c4, "n-c4" }, - { (LONG64)prodml22__PureComponentKind::n_c5, "n-c5" }, - { (LONG64)prodml22__PureComponentKind::n_c6, "n-c6" }, - { (LONG64)prodml22__PureComponentKind::n_c7, "n-c7" }, - { (LONG64)prodml22__PureComponentKind::n_c8, "n-c8" }, - { (LONG64)prodml22__PureComponentKind::n_c9, "n-c9" }, - { (LONG64)prodml22__PureComponentKind::neo_c5, "neo-c5" }, - { (LONG64)prodml22__PureComponentKind::ra, "ra" }, - { (LONG64)prodml22__PureComponentKind::benzene, "benzene" }, - { (LONG64)prodml22__PureComponentKind::_2_methylpentane, "2-methylpentane" }, - { (LONG64)prodml22__PureComponentKind::_3_methylpentane, "3-methylpentane" }, - { (LONG64)prodml22__PureComponentKind::_2_methylhexane, "2-methylhexane" }, - { (LONG64)prodml22__PureComponentKind::_3_methylhexane, "3-methylhexane" }, - { (LONG64)prodml22__PureComponentKind::_2_methylheptane, "2-methylheptane" }, - { (LONG64)prodml22__PureComponentKind::_3_methylheptane, "3-methylheptane" }, - { (LONG64)prodml22__PureComponentKind::cyclohexane, "cyclohexane" }, - { (LONG64)prodml22__PureComponentKind::ethylbenzene, "ethylbenzene" }, - { (LONG64)prodml22__PureComponentKind::ethylcyclohexane, "ethylcyclohexane" }, - { (LONG64)prodml22__PureComponentKind::methylcyclohexane, "methylcyclohexane" }, - { (LONG64)prodml22__PureComponentKind::methylcyclopentane, "methylcyclopentane" }, - { (LONG64)prodml22__PureComponentKind::toluene, "toluene" }, - { (LONG64)prodml22__PureComponentKind::m_xylene, "m-xylene" }, - { (LONG64)prodml22__PureComponentKind::o_xylene, "o-xylene" }, - { (LONG64)prodml22__PureComponentKind::p_xylene, "p-xylene" }, +static const struct soap_code_map soap_codes_prodml23__PureComponentKind[] = +{ { (LONG64)prodml23__PureComponentKind::_1_2_4_trimethylbenzene, "1-2-4-trimethylbenzene" }, + { (LONG64)prodml23__PureComponentKind::_2_dimethylbutane, "2-dimethylbutane" }, + { (LONG64)prodml23__PureComponentKind::_3_dimethylbutane, "3-dimethylbutane" }, + { (LONG64)prodml23__PureComponentKind::ar, "ar" }, + { (LONG64)prodml23__PureComponentKind::c1, "c1" }, + { (LONG64)prodml23__PureComponentKind::c2, "c2" }, + { (LONG64)prodml23__PureComponentKind::c3, "c3" }, + { (LONG64)prodml23__PureComponentKind::co2, "co2" }, + { (LONG64)prodml23__PureComponentKind::cos, "cos" }, + { (LONG64)prodml23__PureComponentKind::h2, "h2" }, + { (LONG64)prodml23__PureComponentKind::h2o, "h2o" }, + { (LONG64)prodml23__PureComponentKind::h2s, "h2s" }, + { (LONG64)prodml23__PureComponentKind::he, "he" }, + { (LONG64)prodml23__PureComponentKind::hg, "hg" }, + { (LONG64)prodml23__PureComponentKind::i_c4, "i-c4" }, + { (LONG64)prodml23__PureComponentKind::i_c5, "i-c5" }, + { (LONG64)prodml23__PureComponentKind::n2, "n2" }, + { (LONG64)prodml23__PureComponentKind::n_c10, "n-c10" }, + { (LONG64)prodml23__PureComponentKind::n_c4, "n-c4" }, + { (LONG64)prodml23__PureComponentKind::n_c5, "n-c5" }, + { (LONG64)prodml23__PureComponentKind::n_c6, "n-c6" }, + { (LONG64)prodml23__PureComponentKind::n_c7, "n-c7" }, + { (LONG64)prodml23__PureComponentKind::n_c8, "n-c8" }, + { (LONG64)prodml23__PureComponentKind::n_c9, "n-c9" }, + { (LONG64)prodml23__PureComponentKind::neo_c5, "neo-c5" }, + { (LONG64)prodml23__PureComponentKind::ra, "ra" }, + { (LONG64)prodml23__PureComponentKind::benzene, "benzene" }, + { (LONG64)prodml23__PureComponentKind::_2_methylpentane, "2-methylpentane" }, + { (LONG64)prodml23__PureComponentKind::_3_methylpentane, "3-methylpentane" }, + { (LONG64)prodml23__PureComponentKind::_2_methylhexane, "2-methylhexane" }, + { (LONG64)prodml23__PureComponentKind::_3_methylhexane, "3-methylhexane" }, + { (LONG64)prodml23__PureComponentKind::_2_methylheptane, "2-methylheptane" }, + { (LONG64)prodml23__PureComponentKind::_3_methylheptane, "3-methylheptane" }, + { (LONG64)prodml23__PureComponentKind::cyclohexane, "cyclohexane" }, + { (LONG64)prodml23__PureComponentKind::ethylbenzene, "ethylbenzene" }, + { (LONG64)prodml23__PureComponentKind::ethylcyclohexane, "ethylcyclohexane" }, + { (LONG64)prodml23__PureComponentKind::methylcyclohexane, "methylcyclohexane" }, + { (LONG64)prodml23__PureComponentKind::methylcyclopentane, "methylcyclopentane" }, + { (LONG64)prodml23__PureComponentKind::toluene, "toluene" }, + { (LONG64)prodml23__PureComponentKind::m_xylene, "m-xylene" }, + { (LONG64)prodml23__PureComponentKind::o_xylene, "o-xylene" }, + { (LONG64)prodml23__PureComponentKind::p_xylene, "p-xylene" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PureComponentKind2s(struct soap *soap, prodml22__PureComponentKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PureComponentKind2s(struct soap *soap, prodml23__PureComponentKind n) { - const char *s = soap_code_str(soap_codes_prodml22__PureComponentKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PureComponentKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PureComponentKind(struct soap *soap, const char *tag, int id, const prodml22__PureComponentKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PureComponentKind(struct soap *soap, const char *tag, int id, const prodml23__PureComponentKind *a, const char *type) { if (!type) - type = "prodml22:PureComponentKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind), type) || soap_send(soap, soap_prodml22__PureComponentKind2s(soap, *a))) + type = "prodml23:PureComponentKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind), type) || soap_send(soap, soap_prodml23__PureComponentKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PureComponentKind(struct soap *soap, const char *s, prodml22__PureComponentKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PureComponentKind(struct soap *soap, const char *s, prodml23__PureComponentKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PureComponentKind, s); + map = soap_code(soap_codes_prodml23__PureComponentKind, s); if (map) - *a = (prodml22__PureComponentKind)map->code; + *a = (prodml23__PureComponentKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68306,112 +68301,112 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PureComponentKind(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__PureComponentKind * SOAP_FMAC4 soap_in_prodml22__PureComponentKind(struct soap *soap, const char *tag, prodml22__PureComponentKind *a, const char *type) +SOAP_FMAC3 prodml23__PureComponentKind * SOAP_FMAC4 soap_in_prodml23__PureComponentKind(struct soap *soap, const char *tag, prodml23__PureComponentKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PureComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind, sizeof(prodml22__PureComponentKind), NULL, NULL, NULL, NULL); + a = (prodml23__PureComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind, sizeof(prodml23__PureComponentKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PureComponentKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PureComponentKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PureComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind, sizeof(prodml22__PureComponentKind), 0, NULL, NULL); + { a = (prodml23__PureComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind, sizeof(prodml23__PureComponentKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PureComponentKind * SOAP_FMAC4 soap_new_prodml22__PureComponentKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PureComponentKind * SOAP_FMAC4 soap_new_prodml23__PureComponentKind(struct soap *soap, int n) { - prodml22__PureComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PureComponentKind))); - for (prodml22__PureComponentKind *p = a; p && n--; ++p) - soap_default_prodml22__PureComponentKind(soap, p); + prodml23__PureComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PureComponentKind))); + for (prodml23__PureComponentKind *p = a; p && n--; ++p) + soap_default_prodml23__PureComponentKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PureComponentKind(struct soap *soap, const prodml22__PureComponentKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PureComponentKind(struct soap *soap, const prodml23__PureComponentKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__PureComponentKind(soap, tag ? tag : "prodml22:PureComponentKind", -2, a, type)) + if (soap_out_prodml23__PureComponentKind(soap, tag ? tag : "prodml23:PureComponentKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PureComponentKind * SOAP_FMAC4 soap_get_prodml22__PureComponentKind(struct soap *soap, prodml22__PureComponentKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PureComponentKind * SOAP_FMAC4 soap_get_prodml23__PureComponentKind(struct soap *soap, prodml23__PureComponentKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PureComponentKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__PureComponentKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PseudoComponentKind[] = -{ { (LONG64)prodml22__PseudoComponentKind::c10, "c10" }, - { (LONG64)prodml22__PseudoComponentKind::c11, "c11" }, - { (LONG64)prodml22__PseudoComponentKind::c12, "c12" }, - { (LONG64)prodml22__PseudoComponentKind::c13, "c13" }, - { (LONG64)prodml22__PseudoComponentKind::c14, "c14" }, - { (LONG64)prodml22__PseudoComponentKind::c15, "c15" }, - { (LONG64)prodml22__PseudoComponentKind::c16, "c16" }, - { (LONG64)prodml22__PseudoComponentKind::c17, "c17" }, - { (LONG64)prodml22__PseudoComponentKind::c18, "c18" }, - { (LONG64)prodml22__PseudoComponentKind::c19, "c19" }, - { (LONG64)prodml22__PseudoComponentKind::c20, "c20" }, - { (LONG64)prodml22__PseudoComponentKind::c21, "c21" }, - { (LONG64)prodml22__PseudoComponentKind::c22, "c22" }, - { (LONG64)prodml22__PseudoComponentKind::c23, "c23" }, - { (LONG64)prodml22__PseudoComponentKind::c24, "c24" }, - { (LONG64)prodml22__PseudoComponentKind::c25, "c25" }, - { (LONG64)prodml22__PseudoComponentKind::c26, "c26" }, - { (LONG64)prodml22__PseudoComponentKind::c27, "c27" }, - { (LONG64)prodml22__PseudoComponentKind::c28, "c28" }, - { (LONG64)prodml22__PseudoComponentKind::c29, "c29" }, - { (LONG64)prodml22__PseudoComponentKind::c2_c4_x002bn2, "c2-c4+n2" }, - { (LONG64)prodml22__PseudoComponentKind::c30, "c30" }, - { (LONG64)prodml22__PseudoComponentKind::c31, "c31" }, - { (LONG64)prodml22__PseudoComponentKind::c32, "c32" }, - { (LONG64)prodml22__PseudoComponentKind::c33, "c33" }, - { (LONG64)prodml22__PseudoComponentKind::c34, "c34" }, - { (LONG64)prodml22__PseudoComponentKind::c35, "c35" }, - { (LONG64)prodml22__PseudoComponentKind::c4, "c4" }, - { (LONG64)prodml22__PseudoComponentKind::c5, "c5" }, - { (LONG64)prodml22__PseudoComponentKind::c6, "c6" }, - { (LONG64)prodml22__PseudoComponentKind::c7, "c7" }, - { (LONG64)prodml22__PseudoComponentKind::c8, "c8" }, - { (LONG64)prodml22__PseudoComponentKind::c9, "c9" }, - { (LONG64)prodml22__PseudoComponentKind::rsh, "rsh" }, +static const struct soap_code_map soap_codes_prodml23__PseudoComponentKind[] = +{ { (LONG64)prodml23__PseudoComponentKind::c10, "c10" }, + { (LONG64)prodml23__PseudoComponentKind::c11, "c11" }, + { (LONG64)prodml23__PseudoComponentKind::c12, "c12" }, + { (LONG64)prodml23__PseudoComponentKind::c13, "c13" }, + { (LONG64)prodml23__PseudoComponentKind::c14, "c14" }, + { (LONG64)prodml23__PseudoComponentKind::c15, "c15" }, + { (LONG64)prodml23__PseudoComponentKind::c16, "c16" }, + { (LONG64)prodml23__PseudoComponentKind::c17, "c17" }, + { (LONG64)prodml23__PseudoComponentKind::c18, "c18" }, + { (LONG64)prodml23__PseudoComponentKind::c19, "c19" }, + { (LONG64)prodml23__PseudoComponentKind::c20, "c20" }, + { (LONG64)prodml23__PseudoComponentKind::c21, "c21" }, + { (LONG64)prodml23__PseudoComponentKind::c22, "c22" }, + { (LONG64)prodml23__PseudoComponentKind::c23, "c23" }, + { (LONG64)prodml23__PseudoComponentKind::c24, "c24" }, + { (LONG64)prodml23__PseudoComponentKind::c25, "c25" }, + { (LONG64)prodml23__PseudoComponentKind::c26, "c26" }, + { (LONG64)prodml23__PseudoComponentKind::c27, "c27" }, + { (LONG64)prodml23__PseudoComponentKind::c28, "c28" }, + { (LONG64)prodml23__PseudoComponentKind::c29, "c29" }, + { (LONG64)prodml23__PseudoComponentKind::c2_c4_x002bn2, "c2-c4+n2" }, + { (LONG64)prodml23__PseudoComponentKind::c30, "c30" }, + { (LONG64)prodml23__PseudoComponentKind::c31, "c31" }, + { (LONG64)prodml23__PseudoComponentKind::c32, "c32" }, + { (LONG64)prodml23__PseudoComponentKind::c33, "c33" }, + { (LONG64)prodml23__PseudoComponentKind::c34, "c34" }, + { (LONG64)prodml23__PseudoComponentKind::c35, "c35" }, + { (LONG64)prodml23__PseudoComponentKind::c4, "c4" }, + { (LONG64)prodml23__PseudoComponentKind::c5, "c5" }, + { (LONG64)prodml23__PseudoComponentKind::c6, "c6" }, + { (LONG64)prodml23__PseudoComponentKind::c7, "c7" }, + { (LONG64)prodml23__PseudoComponentKind::c8, "c8" }, + { (LONG64)prodml23__PseudoComponentKind::c9, "c9" }, + { (LONG64)prodml23__PseudoComponentKind::rsh, "rsh" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PseudoComponentKind2s(struct soap *soap, prodml22__PseudoComponentKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PseudoComponentKind2s(struct soap *soap, prodml23__PseudoComponentKind n) { - const char *s = soap_code_str(soap_codes_prodml22__PseudoComponentKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PseudoComponentKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoComponentKind(struct soap *soap, const char *tag, int id, const prodml22__PseudoComponentKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoComponentKind(struct soap *soap, const char *tag, int id, const prodml23__PseudoComponentKind *a, const char *type) { if (!type) - type = "prodml22:PseudoComponentKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind), type) || soap_send(soap, soap_prodml22__PseudoComponentKind2s(soap, *a))) + type = "prodml23:PseudoComponentKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind), type) || soap_send(soap, soap_prodml23__PseudoComponentKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PseudoComponentKind(struct soap *soap, const char *s, prodml22__PseudoComponentKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PseudoComponentKind(struct soap *soap, const char *s, prodml23__PseudoComponentKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PseudoComponentKind, s); + map = soap_code(soap_codes_prodml23__PseudoComponentKind, s); if (map) - *a = (prodml22__PseudoComponentKind)map->code; + *a = (prodml23__PseudoComponentKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68419,101 +68414,101 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PseudoComponentKind(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__PseudoComponentKind * SOAP_FMAC4 soap_in_prodml22__PseudoComponentKind(struct soap *soap, const char *tag, prodml22__PseudoComponentKind *a, const char *type) +SOAP_FMAC3 prodml23__PseudoComponentKind * SOAP_FMAC4 soap_in_prodml23__PseudoComponentKind(struct soap *soap, const char *tag, prodml23__PseudoComponentKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PseudoComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind, sizeof(prodml22__PseudoComponentKind), NULL, NULL, NULL, NULL); + a = (prodml23__PseudoComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind, sizeof(prodml23__PseudoComponentKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PseudoComponentKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PseudoComponentKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PseudoComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind, sizeof(prodml22__PseudoComponentKind), 0, NULL, NULL); + { a = (prodml23__PseudoComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind, sizeof(prodml23__PseudoComponentKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PseudoComponentKind * SOAP_FMAC4 soap_new_prodml22__PseudoComponentKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PseudoComponentKind * SOAP_FMAC4 soap_new_prodml23__PseudoComponentKind(struct soap *soap, int n) { - prodml22__PseudoComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PseudoComponentKind))); - for (prodml22__PseudoComponentKind *p = a; p && n--; ++p) - soap_default_prodml22__PseudoComponentKind(soap, p); + prodml23__PseudoComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PseudoComponentKind))); + for (prodml23__PseudoComponentKind *p = a; p && n--; ++p) + soap_default_prodml23__PseudoComponentKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PseudoComponentKind(struct soap *soap, const prodml22__PseudoComponentKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PseudoComponentKind(struct soap *soap, const prodml23__PseudoComponentKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__PseudoComponentKind(soap, tag ? tag : "prodml22:PseudoComponentKind", -2, a, type)) + if (soap_out_prodml23__PseudoComponentKind(soap, tag ? tag : "prodml23:PseudoComponentKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PseudoComponentKind * SOAP_FMAC4 soap_get_prodml22__PseudoComponentKind(struct soap *soap, prodml22__PseudoComponentKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PseudoComponentKind * SOAP_FMAC4 soap_get_prodml23__PseudoComponentKind(struct soap *soap, prodml23__PseudoComponentKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PseudoComponentKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__PseudoComponentKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ProductFluidKind[] = -{ { (LONG64)prodml22__ProductFluidKind::condensate, "condensate" }, - { (LONG64)prodml22__ProductFluidKind::condensate_x0020__x0020gross, "condensate - gross" }, - { (LONG64)prodml22__ProductFluidKind::condensate_x0020__x0020net, "condensate - net" }, - { (LONG64)prodml22__ProductFluidKind::crude_x0020__x0020stabilized, "crude - stabilized" }, - { (LONG64)prodml22__ProductFluidKind::gas_x0020__x0020component_x0020in_x0020oil, "gas - component in oil" }, - { (LONG64)prodml22__ProductFluidKind::gas_x0020__x0020dry, "gas - dry" }, - { (LONG64)prodml22__ProductFluidKind::gas_x0020__x0020rich, "gas - rich" }, - { (LONG64)prodml22__ProductFluidKind::gas_x0020__x0020wet, "gas - wet" }, - { (LONG64)prodml22__ProductFluidKind::liquefied_x0020natural_x0020gas, "liquefied natural gas" }, - { (LONG64)prodml22__ProductFluidKind::liquefied_x0020petroleum_x0020gas, "liquefied petroleum gas" }, - { (LONG64)prodml22__ProductFluidKind::liquid, "liquid" }, - { (LONG64)prodml22__ProductFluidKind::naphtha, "naphtha" }, - { (LONG64)prodml22__ProductFluidKind::natural_x0020gas_x0020liquid, "natural gas liquid" }, - { (LONG64)prodml22__ProductFluidKind::NGL_x0020__x0020component_x0020in_x0020gas, "NGL - component in gas" }, - { (LONG64)prodml22__ProductFluidKind::oil_x0020__x0020component_x0020in_x0020water, "oil - component in water" }, - { (LONG64)prodml22__ProductFluidKind::oil_x0020__x0020gross, "oil - gross" }, - { (LONG64)prodml22__ProductFluidKind::oil_x0020__x0020net, "oil - net" }, - { (LONG64)prodml22__ProductFluidKind::oil_x0020and_x0020gas, "oil and gas" }, - { (LONG64)prodml22__ProductFluidKind::petroleum_x0020gas_x0020liquid, "petroleum gas liquid" }, - { (LONG64)prodml22__ProductFluidKind::vapor, "vapor" }, - { (LONG64)prodml22__ProductFluidKind::sand, "sand" }, - { (LONG64)prodml22__ProductFluidKind::water_x0020__x0020discharge, "water - discharge" }, - { (LONG64)prodml22__ProductFluidKind::water_x0020__x0020processed, "water - processed" }, +static const struct soap_code_map soap_codes_prodml23__ProductFluidKind[] = +{ { (LONG64)prodml23__ProductFluidKind::condensate, "condensate" }, + { (LONG64)prodml23__ProductFluidKind::condensate_x0020__x0020gross, "condensate - gross" }, + { (LONG64)prodml23__ProductFluidKind::condensate_x0020__x0020net, "condensate - net" }, + { (LONG64)prodml23__ProductFluidKind::crude_x0020__x0020stabilized, "crude - stabilized" }, + { (LONG64)prodml23__ProductFluidKind::gas_x0020__x0020component_x0020in_x0020oil, "gas - component in oil" }, + { (LONG64)prodml23__ProductFluidKind::gas_x0020__x0020dry, "gas - dry" }, + { (LONG64)prodml23__ProductFluidKind::gas_x0020__x0020rich, "gas - rich" }, + { (LONG64)prodml23__ProductFluidKind::gas_x0020__x0020wet, "gas - wet" }, + { (LONG64)prodml23__ProductFluidKind::liquefied_x0020natural_x0020gas, "liquefied natural gas" }, + { (LONG64)prodml23__ProductFluidKind::liquefied_x0020petroleum_x0020gas, "liquefied petroleum gas" }, + { (LONG64)prodml23__ProductFluidKind::liquid, "liquid" }, + { (LONG64)prodml23__ProductFluidKind::naphtha, "naphtha" }, + { (LONG64)prodml23__ProductFluidKind::natural_x0020gas_x0020liquid, "natural gas liquid" }, + { (LONG64)prodml23__ProductFluidKind::NGL_x0020__x0020component_x0020in_x0020gas, "NGL - component in gas" }, + { (LONG64)prodml23__ProductFluidKind::oil_x0020__x0020component_x0020in_x0020water, "oil - component in water" }, + { (LONG64)prodml23__ProductFluidKind::oil_x0020__x0020gross, "oil - gross" }, + { (LONG64)prodml23__ProductFluidKind::oil_x0020__x0020net, "oil - net" }, + { (LONG64)prodml23__ProductFluidKind::oil_x0020and_x0020gas, "oil and gas" }, + { (LONG64)prodml23__ProductFluidKind::petroleum_x0020gas_x0020liquid, "petroleum gas liquid" }, + { (LONG64)prodml23__ProductFluidKind::vapor, "vapor" }, + { (LONG64)prodml23__ProductFluidKind::sand, "sand" }, + { (LONG64)prodml23__ProductFluidKind::water_x0020__x0020discharge, "water - discharge" }, + { (LONG64)prodml23__ProductFluidKind::water_x0020__x0020processed, "water - processed" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ProductFluidKind2s(struct soap *soap, prodml22__ProductFluidKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ProductFluidKind2s(struct soap *soap, prodml23__ProductFluidKind n) { - const char *s = soap_code_str(soap_codes_prodml22__ProductFluidKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ProductFluidKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFluidKind(struct soap *soap, const char *tag, int id, const prodml22__ProductFluidKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFluidKind(struct soap *soap, const char *tag, int id, const prodml23__ProductFluidKind *a, const char *type) { if (!type) - type = "prodml22:ProductFluidKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind), type) || soap_send(soap, soap_prodml22__ProductFluidKind2s(soap, *a))) + type = "prodml23:ProductFluidKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind), type) || soap_send(soap, soap_prodml23__ProductFluidKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ProductFluidKind(struct soap *soap, const char *s, prodml22__ProductFluidKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ProductFluidKind(struct soap *soap, const char *s, prodml23__ProductFluidKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ProductFluidKind, s); + map = soap_code(soap_codes_prodml23__ProductFluidKind, s); if (map) - *a = (prodml22__ProductFluidKind)map->code; + *a = (prodml23__ProductFluidKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68521,81 +68516,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ProductFluidKind(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFluidKind * SOAP_FMAC4 soap_in_prodml22__ProductFluidKind(struct soap *soap, const char *tag, prodml22__ProductFluidKind *a, const char *type) +SOAP_FMAC3 prodml23__ProductFluidKind * SOAP_FMAC4 soap_in_prodml23__ProductFluidKind(struct soap *soap, const char *tag, prodml23__ProductFluidKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ProductFluidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind, sizeof(prodml22__ProductFluidKind), NULL, NULL, NULL, NULL); + a = (prodml23__ProductFluidKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind, sizeof(prodml23__ProductFluidKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ProductFluidKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ProductFluidKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ProductFluidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind, sizeof(prodml22__ProductFluidKind), 0, NULL, NULL); + { a = (prodml23__ProductFluidKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind, sizeof(prodml23__ProductFluidKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ProductFluidKind * SOAP_FMAC4 soap_new_prodml22__ProductFluidKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ProductFluidKind * SOAP_FMAC4 soap_new_prodml23__ProductFluidKind(struct soap *soap, int n) { - prodml22__ProductFluidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ProductFluidKind))); - for (prodml22__ProductFluidKind *p = a; p && n--; ++p) - soap_default_prodml22__ProductFluidKind(soap, p); + prodml23__ProductFluidKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ProductFluidKind))); + for (prodml23__ProductFluidKind *p = a; p && n--; ++p) + soap_default_prodml23__ProductFluidKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ProductFluidKind(struct soap *soap, const prodml22__ProductFluidKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ProductFluidKind(struct soap *soap, const prodml23__ProductFluidKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__ProductFluidKind(soap, tag ? tag : "prodml22:ProductFluidKind", -2, a, type)) + if (soap_out_prodml23__ProductFluidKind(soap, tag ? tag : "prodml23:ProductFluidKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFluidKind * SOAP_FMAC4 soap_get_prodml22__ProductFluidKind(struct soap *soap, prodml22__ProductFluidKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFluidKind * SOAP_FMAC4 soap_get_prodml23__ProductFluidKind(struct soap *soap, prodml23__ProductFluidKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFluidKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFluidKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__ProductFlowPortType[] = -{ { (LONG64)prodml22__ProductFlowPortType::inlet, "inlet" }, - { (LONG64)prodml22__ProductFlowPortType::outlet, "outlet" }, - { (LONG64)prodml22__ProductFlowPortType::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__ProductFlowPortType[] = +{ { (LONG64)prodml23__ProductFlowPortType::inlet, "inlet" }, + { (LONG64)prodml23__ProductFlowPortType::outlet, "outlet" }, + { (LONG64)prodml23__ProductFlowPortType::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ProductFlowPortType2s(struct soap *soap, prodml22__ProductFlowPortType n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ProductFlowPortType2s(struct soap *soap, prodml23__ProductFlowPortType n) { - const char *s = soap_code_str(soap_codes_prodml22__ProductFlowPortType, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__ProductFlowPortType, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowPortType(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowPortType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowPortType(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowPortType *a, const char *type) { if (!type) - type = "prodml22:ProductFlowPortType"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType), type) || soap_send(soap, soap_prodml22__ProductFlowPortType2s(soap, *a))) + type = "prodml23:ProductFlowPortType"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType), type) || soap_send(soap, soap_prodml23__ProductFlowPortType2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ProductFlowPortType(struct soap *soap, const char *s, prodml22__ProductFlowPortType *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ProductFlowPortType(struct soap *soap, const char *s, prodml23__ProductFlowPortType *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__ProductFlowPortType, s); + map = soap_code(soap_codes_prodml23__ProductFlowPortType, s); if (map) - *a = (prodml22__ProductFlowPortType)map->code; + *a = (prodml23__ProductFlowPortType)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68603,90 +68598,90 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ProductFlowPortType(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowPortType * SOAP_FMAC4 soap_in_prodml22__ProductFlowPortType(struct soap *soap, const char *tag, prodml22__ProductFlowPortType *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPortType * SOAP_FMAC4 soap_in_prodml23__ProductFlowPortType(struct soap *soap, const char *tag, prodml23__ProductFlowPortType *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__ProductFlowPortType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType, sizeof(prodml22__ProductFlowPortType), NULL, NULL, NULL, NULL); + a = (prodml23__ProductFlowPortType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType, sizeof(prodml23__ProductFlowPortType), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__ProductFlowPortType(soap, soap_value(soap), a); + { int err = soap_s2prodml23__ProductFlowPortType(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__ProductFlowPortType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType, sizeof(prodml22__ProductFlowPortType), 0, NULL, NULL); + { a = (prodml23__ProductFlowPortType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType, sizeof(prodml23__ProductFlowPortType), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__ProductFlowPortType * SOAP_FMAC4 soap_new_prodml22__ProductFlowPortType(struct soap *soap, int n) +SOAP_FMAC3 prodml23__ProductFlowPortType * SOAP_FMAC4 soap_new_prodml23__ProductFlowPortType(struct soap *soap, int n) { - prodml22__ProductFlowPortType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__ProductFlowPortType))); - for (prodml22__ProductFlowPortType *p = a; p && n--; ++p) - soap_default_prodml22__ProductFlowPortType(soap, p); + prodml23__ProductFlowPortType *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__ProductFlowPortType))); + for (prodml23__ProductFlowPortType *p = a; p && n--; ++p) + soap_default_prodml23__ProductFlowPortType(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ProductFlowPortType(struct soap *soap, const prodml22__ProductFlowPortType *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ProductFlowPortType(struct soap *soap, const prodml23__ProductFlowPortType *a, const char *tag, const char *type) { - if (soap_out_prodml22__ProductFlowPortType(soap, tag ? tag : "prodml22:ProductFlowPortType", -2, a, type)) + if (soap_out_prodml23__ProductFlowPortType(soap, tag ? tag : "prodml23:ProductFlowPortType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowPortType * SOAP_FMAC4 soap_get_prodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPortType * SOAP_FMAC4 soap_get_prodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowPortType(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowPortType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PlusComponentKind[] = -{ { (LONG64)prodml22__PlusComponentKind::c10_x002b, "c10+" }, - { (LONG64)prodml22__PlusComponentKind::c11_x002b, "c11+" }, - { (LONG64)prodml22__PlusComponentKind::c12_x002b, "c12+" }, - { (LONG64)prodml22__PlusComponentKind::c20_x002b, "c20+" }, - { (LONG64)prodml22__PlusComponentKind::c25_x002b, "c25+" }, - { (LONG64)prodml22__PlusComponentKind::c30_x002b, "c30+" }, - { (LONG64)prodml22__PlusComponentKind::c36_x002b, "c36+" }, - { (LONG64)prodml22__PlusComponentKind::c5_x002b, "c5+" }, - { (LONG64)prodml22__PlusComponentKind::c6_x002b, "c6+" }, - { (LONG64)prodml22__PlusComponentKind::c7_x002b, "c7+" }, - { (LONG64)prodml22__PlusComponentKind::c8_x002b, "c8+" }, - { (LONG64)prodml22__PlusComponentKind::c9_x002b, "c9+" }, +static const struct soap_code_map soap_codes_prodml23__PlusComponentKind[] = +{ { (LONG64)prodml23__PlusComponentKind::c10_x002b, "c10+" }, + { (LONG64)prodml23__PlusComponentKind::c11_x002b, "c11+" }, + { (LONG64)prodml23__PlusComponentKind::c12_x002b, "c12+" }, + { (LONG64)prodml23__PlusComponentKind::c20_x002b, "c20+" }, + { (LONG64)prodml23__PlusComponentKind::c25_x002b, "c25+" }, + { (LONG64)prodml23__PlusComponentKind::c30_x002b, "c30+" }, + { (LONG64)prodml23__PlusComponentKind::c36_x002b, "c36+" }, + { (LONG64)prodml23__PlusComponentKind::c5_x002b, "c5+" }, + { (LONG64)prodml23__PlusComponentKind::c6_x002b, "c6+" }, + { (LONG64)prodml23__PlusComponentKind::c7_x002b, "c7+" }, + { (LONG64)prodml23__PlusComponentKind::c8_x002b, "c8+" }, + { (LONG64)prodml23__PlusComponentKind::c9_x002b, "c9+" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PlusComponentKind2s(struct soap *soap, prodml22__PlusComponentKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PlusComponentKind2s(struct soap *soap, prodml23__PlusComponentKind n) { - const char *s = soap_code_str(soap_codes_prodml22__PlusComponentKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PlusComponentKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PlusComponentKind(struct soap *soap, const char *tag, int id, const prodml22__PlusComponentKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PlusComponentKind(struct soap *soap, const char *tag, int id, const prodml23__PlusComponentKind *a, const char *type) { if (!type) - type = "prodml22:PlusComponentKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind), type) || soap_send(soap, soap_prodml22__PlusComponentKind2s(soap, *a))) + type = "prodml23:PlusComponentKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind), type) || soap_send(soap, soap_prodml23__PlusComponentKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PlusComponentKind(struct soap *soap, const char *s, prodml22__PlusComponentKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PlusComponentKind(struct soap *soap, const char *s, prodml23__PlusComponentKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PlusComponentKind, s); + map = soap_code(soap_codes_prodml23__PlusComponentKind, s); if (map) - *a = (prodml22__PlusComponentKind)map->code; + *a = (prodml23__PlusComponentKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68694,87 +68689,87 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PlusComponentKind(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__PlusComponentKind * SOAP_FMAC4 soap_in_prodml22__PlusComponentKind(struct soap *soap, const char *tag, prodml22__PlusComponentKind *a, const char *type) +SOAP_FMAC3 prodml23__PlusComponentKind * SOAP_FMAC4 soap_in_prodml23__PlusComponentKind(struct soap *soap, const char *tag, prodml23__PlusComponentKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PlusComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind, sizeof(prodml22__PlusComponentKind), NULL, NULL, NULL, NULL); + a = (prodml23__PlusComponentKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind, sizeof(prodml23__PlusComponentKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PlusComponentKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PlusComponentKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PlusComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind, sizeof(prodml22__PlusComponentKind), 0, NULL, NULL); + { a = (prodml23__PlusComponentKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind, sizeof(prodml23__PlusComponentKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PlusComponentKind * SOAP_FMAC4 soap_new_prodml22__PlusComponentKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PlusComponentKind * SOAP_FMAC4 soap_new_prodml23__PlusComponentKind(struct soap *soap, int n) { - prodml22__PlusComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PlusComponentKind))); - for (prodml22__PlusComponentKind *p = a; p && n--; ++p) - soap_default_prodml22__PlusComponentKind(soap, p); + prodml23__PlusComponentKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PlusComponentKind))); + for (prodml23__PlusComponentKind *p = a; p && n--; ++p) + soap_default_prodml23__PlusComponentKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PlusComponentKind(struct soap *soap, const prodml22__PlusComponentKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PlusComponentKind(struct soap *soap, const prodml23__PlusComponentKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__PlusComponentKind(soap, tag ? tag : "prodml22:PlusComponentKind", -2, a, type)) + if (soap_out_prodml23__PlusComponentKind(soap, tag ? tag : "prodml23:PlusComponentKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PlusComponentKind * SOAP_FMAC4 soap_get_prodml22__PlusComponentKind(struct soap *soap, prodml22__PlusComponentKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PlusComponentKind * SOAP_FMAC4 soap_get_prodml23__PlusComponentKind(struct soap *soap, prodml23__PlusComponentKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PlusComponentKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__PlusComponentKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FlowSubQualifier[] = -{ { (LONG64)prodml22__FlowSubQualifier::decline_x0020curve, "decline curve" }, - { (LONG64)prodml22__FlowSubQualifier::difference, "difference" }, - { (LONG64)prodml22__FlowSubQualifier::fiscal, "fiscal" }, - { (LONG64)prodml22__FlowSubQualifier::fixed, "fixed" }, - { (LONG64)prodml22__FlowSubQualifier::maximum, "maximum" }, - { (LONG64)prodml22__FlowSubQualifier::minimum, "minimum" }, - { (LONG64)prodml22__FlowSubQualifier::raw, "raw" }, - { (LONG64)prodml22__FlowSubQualifier::recalibrated, "recalibrated" }, - { (LONG64)prodml22__FlowSubQualifier::standard, "standard" }, +static const struct soap_code_map soap_codes_prodml23__FlowSubQualifier[] = +{ { (LONG64)prodml23__FlowSubQualifier::decline_x0020curve, "decline curve" }, + { (LONG64)prodml23__FlowSubQualifier::difference, "difference" }, + { (LONG64)prodml23__FlowSubQualifier::fiscal, "fiscal" }, + { (LONG64)prodml23__FlowSubQualifier::fixed, "fixed" }, + { (LONG64)prodml23__FlowSubQualifier::maximum, "maximum" }, + { (LONG64)prodml23__FlowSubQualifier::minimum, "minimum" }, + { (LONG64)prodml23__FlowSubQualifier::raw, "raw" }, + { (LONG64)prodml23__FlowSubQualifier::recalibrated, "recalibrated" }, + { (LONG64)prodml23__FlowSubQualifier::standard, "standard" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FlowSubQualifier2s(struct soap *soap, prodml22__FlowSubQualifier n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FlowSubQualifier2s(struct soap *soap, prodml23__FlowSubQualifier n) { - const char *s = soap_code_str(soap_codes_prodml22__FlowSubQualifier, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FlowSubQualifier, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowSubQualifier(struct soap *soap, const char *tag, int id, const prodml22__FlowSubQualifier *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowSubQualifier(struct soap *soap, const char *tag, int id, const prodml23__FlowSubQualifier *a, const char *type) { if (!type) - type = "prodml22:FlowSubQualifier"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier), type) || soap_send(soap, soap_prodml22__FlowSubQualifier2s(soap, *a))) + type = "prodml23:FlowSubQualifier"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier), type) || soap_send(soap, soap_prodml23__FlowSubQualifier2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FlowSubQualifier(struct soap *soap, const char *s, prodml22__FlowSubQualifier *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FlowSubQualifier(struct soap *soap, const char *s, prodml23__FlowSubQualifier *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FlowSubQualifier, s); + map = soap_code(soap_codes_prodml23__FlowSubQualifier, s); if (map) - *a = (prodml22__FlowSubQualifier)map->code; + *a = (prodml23__FlowSubQualifier)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68782,98 +68777,98 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FlowSubQualifier(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowSubQualifier * SOAP_FMAC4 soap_in_prodml22__FlowSubQualifier(struct soap *soap, const char *tag, prodml22__FlowSubQualifier *a, const char *type) +SOAP_FMAC3 prodml23__FlowSubQualifier * SOAP_FMAC4 soap_in_prodml23__FlowSubQualifier(struct soap *soap, const char *tag, prodml23__FlowSubQualifier *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FlowSubQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier, sizeof(prodml22__FlowSubQualifier), NULL, NULL, NULL, NULL); + a = (prodml23__FlowSubQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier, sizeof(prodml23__FlowSubQualifier), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FlowSubQualifier(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FlowSubQualifier(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FlowSubQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier, sizeof(prodml22__FlowSubQualifier), 0, NULL, NULL); + { a = (prodml23__FlowSubQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier, sizeof(prodml23__FlowSubQualifier), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FlowSubQualifier * SOAP_FMAC4 soap_new_prodml22__FlowSubQualifier(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FlowSubQualifier * SOAP_FMAC4 soap_new_prodml23__FlowSubQualifier(struct soap *soap, int n) { - prodml22__FlowSubQualifier *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FlowSubQualifier))); - for (prodml22__FlowSubQualifier *p = a; p && n--; ++p) - soap_default_prodml22__FlowSubQualifier(soap, p); + prodml23__FlowSubQualifier *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FlowSubQualifier))); + for (prodml23__FlowSubQualifier *p = a; p && n--; ++p) + soap_default_prodml23__FlowSubQualifier(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FlowSubQualifier(struct soap *soap, const prodml22__FlowSubQualifier *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FlowSubQualifier(struct soap *soap, const prodml23__FlowSubQualifier *a, const char *tag, const char *type) { - if (soap_out_prodml22__FlowSubQualifier(soap, tag ? tag : "prodml22:FlowSubQualifier", -2, a, type)) + if (soap_out_prodml23__FlowSubQualifier(soap, tag ? tag : "prodml23:FlowSubQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlowSubQualifier * SOAP_FMAC4 soap_get_prodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowSubQualifier * SOAP_FMAC4 soap_get_prodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlowSubQualifier(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlowSubQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FlowQualifier[] = -{ { (LONG64)prodml22__FlowQualifier::allocated, "allocated" }, - { (LONG64)prodml22__FlowQualifier::budget, "budget" }, - { (LONG64)prodml22__FlowQualifier::constraint, "constraint" }, - { (LONG64)prodml22__FlowQualifier::derived, "derived" }, - { (LONG64)prodml22__FlowQualifier::difference, "difference" }, - { (LONG64)prodml22__FlowQualifier::estimate, "estimate" }, - { (LONG64)prodml22__FlowQualifier::forecast, "forecast" }, - { (LONG64)prodml22__FlowQualifier::mass_x0020adjusted, "mass adjusted" }, - { (LONG64)prodml22__FlowQualifier::measured, "measured" }, - { (LONG64)prodml22__FlowQualifier::metered, "metered" }, - { (LONG64)prodml22__FlowQualifier::metered_x0020__x0020fiscal, "metered - fiscal" }, - { (LONG64)prodml22__FlowQualifier::nominated, "nominated" }, - { (LONG64)prodml22__FlowQualifier::potential, "potential" }, - { (LONG64)prodml22__FlowQualifier::processed, "processed" }, - { (LONG64)prodml22__FlowQualifier::quota, "quota" }, - { (LONG64)prodml22__FlowQualifier::recommended, "recommended" }, - { (LONG64)prodml22__FlowQualifier::simulated, "simulated" }, - { (LONG64)prodml22__FlowQualifier::target, "target" }, - { (LONG64)prodml22__FlowQualifier::tariff_x0020basis, "tariff basis" }, - { (LONG64)prodml22__FlowQualifier::value_x0020adjusted, "value adjusted" }, +static const struct soap_code_map soap_codes_prodml23__FlowQualifier[] = +{ { (LONG64)prodml23__FlowQualifier::allocated, "allocated" }, + { (LONG64)prodml23__FlowQualifier::budget, "budget" }, + { (LONG64)prodml23__FlowQualifier::constraint, "constraint" }, + { (LONG64)prodml23__FlowQualifier::derived, "derived" }, + { (LONG64)prodml23__FlowQualifier::difference, "difference" }, + { (LONG64)prodml23__FlowQualifier::estimate, "estimate" }, + { (LONG64)prodml23__FlowQualifier::forecast, "forecast" }, + { (LONG64)prodml23__FlowQualifier::mass_x0020adjusted, "mass adjusted" }, + { (LONG64)prodml23__FlowQualifier::measured, "measured" }, + { (LONG64)prodml23__FlowQualifier::metered, "metered" }, + { (LONG64)prodml23__FlowQualifier::metered_x0020__x0020fiscal, "metered - fiscal" }, + { (LONG64)prodml23__FlowQualifier::nominated, "nominated" }, + { (LONG64)prodml23__FlowQualifier::potential, "potential" }, + { (LONG64)prodml23__FlowQualifier::processed, "processed" }, + { (LONG64)prodml23__FlowQualifier::quota, "quota" }, + { (LONG64)prodml23__FlowQualifier::recommended, "recommended" }, + { (LONG64)prodml23__FlowQualifier::simulated, "simulated" }, + { (LONG64)prodml23__FlowQualifier::target, "target" }, + { (LONG64)prodml23__FlowQualifier::tariff_x0020basis, "tariff basis" }, + { (LONG64)prodml23__FlowQualifier::value_x0020adjusted, "value adjusted" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FlowQualifier2s(struct soap *soap, prodml22__FlowQualifier n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FlowQualifier2s(struct soap *soap, prodml23__FlowQualifier n) { - const char *s = soap_code_str(soap_codes_prodml22__FlowQualifier, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FlowQualifier, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowQualifier(struct soap *soap, const char *tag, int id, const prodml22__FlowQualifier *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowQualifier(struct soap *soap, const char *tag, int id, const prodml23__FlowQualifier *a, const char *type) { if (!type) - type = "prodml22:FlowQualifier"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier), type) || soap_send(soap, soap_prodml22__FlowQualifier2s(soap, *a))) + type = "prodml23:FlowQualifier"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier), type) || soap_send(soap, soap_prodml23__FlowQualifier2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FlowQualifier(struct soap *soap, const char *s, prodml22__FlowQualifier *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FlowQualifier(struct soap *soap, const char *s, prodml23__FlowQualifier *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FlowQualifier, s); + map = soap_code(soap_codes_prodml23__FlowQualifier, s); if (map) - *a = (prodml22__FlowQualifier)map->code; + *a = (prodml23__FlowQualifier)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68881,81 +68876,81 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FlowQualifier(struct soap *soap, co return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowQualifier * SOAP_FMAC4 soap_in_prodml22__FlowQualifier(struct soap *soap, const char *tag, prodml22__FlowQualifier *a, const char *type) +SOAP_FMAC3 prodml23__FlowQualifier * SOAP_FMAC4 soap_in_prodml23__FlowQualifier(struct soap *soap, const char *tag, prodml23__FlowQualifier *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FlowQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier, sizeof(prodml22__FlowQualifier), NULL, NULL, NULL, NULL); + a = (prodml23__FlowQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier, sizeof(prodml23__FlowQualifier), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FlowQualifier(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FlowQualifier(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FlowQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier, sizeof(prodml22__FlowQualifier), 0, NULL, NULL); + { a = (prodml23__FlowQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier, sizeof(prodml23__FlowQualifier), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FlowQualifier * SOAP_FMAC4 soap_new_prodml22__FlowQualifier(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FlowQualifier * SOAP_FMAC4 soap_new_prodml23__FlowQualifier(struct soap *soap, int n) { - prodml22__FlowQualifier *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FlowQualifier))); - for (prodml22__FlowQualifier *p = a; p && n--; ++p) - soap_default_prodml22__FlowQualifier(soap, p); + prodml23__FlowQualifier *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FlowQualifier))); + for (prodml23__FlowQualifier *p = a; p && n--; ++p) + soap_default_prodml23__FlowQualifier(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FlowQualifier(struct soap *soap, const prodml22__FlowQualifier *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FlowQualifier(struct soap *soap, const prodml23__FlowQualifier *a, const char *tag, const char *type) { - if (soap_out_prodml22__FlowQualifier(soap, tag ? tag : "prodml22:FlowQualifier", -2, a, type)) + if (soap_out_prodml23__FlowQualifier(soap, tag ? tag : "prodml23:FlowQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlowQualifier * SOAP_FMAC4 soap_get_prodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowQualifier * SOAP_FMAC4 soap_get_prodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlowQualifier(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlowQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__FiberMode[] = -{ { (LONG64)prodml22__FiberMode::multimode, "multimode" }, - { (LONG64)prodml22__FiberMode::other, "other" }, - { (LONG64)prodml22__FiberMode::singlemode, "singlemode" }, +static const struct soap_code_map soap_codes_prodml23__FiberMode[] = +{ { (LONG64)prodml23__FiberMode::multimode, "multimode" }, + { (LONG64)prodml23__FiberMode::other, "other" }, + { (LONG64)prodml23__FiberMode::singlemode, "singlemode" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FiberMode2s(struct soap *soap, prodml22__FiberMode n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FiberMode2s(struct soap *soap, prodml23__FiberMode n) { - const char *s = soap_code_str(soap_codes_prodml22__FiberMode, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FiberMode, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FiberMode(struct soap *soap, const char *tag, int id, const prodml22__FiberMode *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FiberMode(struct soap *soap, const char *tag, int id, const prodml23__FiberMode *a, const char *type) { if (!type) - type = "prodml22:FiberMode"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode), type) || soap_send(soap, soap_prodml22__FiberMode2s(soap, *a))) + type = "prodml23:FiberMode"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode), type) || soap_send(soap, soap_prodml23__FiberMode2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FiberMode(struct soap *soap, const char *s, prodml22__FiberMode *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FiberMode(struct soap *soap, const char *s, prodml23__FiberMode *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FiberMode, s); + map = soap_code(soap_codes_prodml23__FiberMode, s); if (map) - *a = (prodml22__FiberMode)map->code; + *a = (prodml23__FiberMode)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -68963,323 +68958,323 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FiberMode(struct soap *soap, const return SOAP_OK; } -SOAP_FMAC3 prodml22__FiberMode * SOAP_FMAC4 soap_in_prodml22__FiberMode(struct soap *soap, const char *tag, prodml22__FiberMode *a, const char *type) +SOAP_FMAC3 prodml23__FiberMode * SOAP_FMAC4 soap_in_prodml23__FiberMode(struct soap *soap, const char *tag, prodml23__FiberMode *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FiberMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode, sizeof(prodml22__FiberMode), NULL, NULL, NULL, NULL); + a = (prodml23__FiberMode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode, sizeof(prodml23__FiberMode), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FiberMode(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FiberMode(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FiberMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode, SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode, sizeof(prodml22__FiberMode), 0, NULL, NULL); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC3 prodml22__FiberMode * SOAP_FMAC4 soap_new_prodml22__FiberMode(struct soap *soap, int n) -{ - prodml22__FiberMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FiberMode))); - for (prodml22__FiberMode *p = a; p && n--; ++p) - soap_default_prodml22__FiberMode(soap, p); - return a; -} - -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FiberMode(struct soap *soap, const prodml22__FiberMode *a, const char *tag, const char *type) -{ - if (soap_out_prodml22__FiberMode(soap, tag ? tag : "prodml22:FiberMode", -2, a, type)) - return soap->error; - return soap_putindependent(soap); -} - -SOAP_FMAC3 prodml22__FiberMode * SOAP_FMAC4 soap_get_prodml22__FiberMode(struct soap *soap, prodml22__FiberMode *p, const char *tag, const char *type) -{ - if ((p = soap_in_prodml22__FiberMode(soap, tag, p, type))) - if (soap_getindependent(soap)) - return NULL; - return p; -} - -static const struct soap_code_map soap_codes_prodml22__FacilityParameter[] = -{ { (LONG64)prodml22__FacilityParameter::absorbed_x0020dose_x0020class, "absorbed dose class" }, - { (LONG64)prodml22__FacilityParameter::acceleration_x0020linear_x0020class, "acceleration linear class" }, - { (LONG64)prodml22__FacilityParameter::activity_x0020_x0028of_x0020radioactivity_x0029_x0020class, "activity (of radioactivity) class" }, - { (LONG64)prodml22__FacilityParameter::alarm_x0020absolute_x0020pressure, "alarm absolute pressure" }, - { (LONG64)prodml22__FacilityParameter::amount_x0020of_x0020substance_x0020class, "amount of substance class" }, - { (LONG64)prodml22__FacilityParameter::angle_x0020per_x0020length, "angle per length" }, - { (LONG64)prodml22__FacilityParameter::angle_x0020per_x0020time, "angle per time" }, - { (LONG64)prodml22__FacilityParameter::angle_x0020per_x0020volume, "angle per volume" }, - { (LONG64)prodml22__FacilityParameter::angular_x0020acceleration_x0020class, "angular acceleration class" }, - { (LONG64)prodml22__FacilityParameter::annulus_x0020inner_x0020diameter, "annulus inner diameter" }, - { (LONG64)prodml22__FacilityParameter::annulus_x0020outer_x0020diameter, "annulus outer diameter" }, - { (LONG64)prodml22__FacilityParameter::area_x0020class, "area class" }, - { (LONG64)prodml22__FacilityParameter::area_x0020per_x0020area, "area per area" }, - { (LONG64)prodml22__FacilityParameter::area_x0020per_x0020volume, "area per volume" }, - { (LONG64)prodml22__FacilityParameter::atmospheric_x0020pressure, "atmospheric pressure" }, - { (LONG64)prodml22__FacilityParameter::attenuation_x0020class, "attenuation class" }, - { (LONG64)prodml22__FacilityParameter::attenuation_x0020per_x0020length, "attenuation per length" }, - { (LONG64)prodml22__FacilityParameter::available, "available" }, - { (LONG64)prodml22__FacilityParameter::available_x0020room, "available room" }, - { (LONG64)prodml22__FacilityParameter::block_x0020valve_x0020status, "block valve status" }, - { (LONG64)prodml22__FacilityParameter::capacitance_x0020class, "capacitance class" }, - { (LONG64)prodml22__FacilityParameter::categorical, "categorical" }, - { (LONG64)prodml22__FacilityParameter::cathodic_x0020protection_x0020output_x0020current, "cathodic protection output current" }, - { (LONG64)prodml22__FacilityParameter::cathodic_x0020protection_x0020output_x0020voltage, "cathodic protection output voltage" }, - { (LONG64)prodml22__FacilityParameter::charge_x0020density_x0020class, "charge density class" }, - { (LONG64)prodml22__FacilityParameter::chemical_x0020potential_x0020class, "chemical potential class" }, - { (LONG64)prodml22__FacilityParameter::choke_x0020position, "choke position" }, - { (LONG64)prodml22__FacilityParameter::choke_x0020setting, "choke setting" }, - { (LONG64)prodml22__FacilityParameter::code, "code" }, - { (LONG64)prodml22__FacilityParameter::compressibility_x0020class, "compressibility class" }, - { (LONG64)prodml22__FacilityParameter::concentration_x0020of_x0020B_x0020class, "concentration of B class" }, - { (LONG64)prodml22__FacilityParameter::conductivity_x0020class, "conductivity class" }, - { (LONG64)prodml22__FacilityParameter::continuous, "continuous" }, - { (LONG64)prodml22__FacilityParameter::cross_x0020section_x0020absorption_x0020class, "cross section absorption class" }, - { (LONG64)prodml22__FacilityParameter::current_x0020density_x0020class, "current density class" }, - { (LONG64)prodml22__FacilityParameter::darcy_x0020flow_x0020coefficient_x0020class, "darcy flow coefficient class" }, - { (LONG64)prodml22__FacilityParameter::data_x0020transmission_x0020speed_x0020class, "data transmission speed class" }, - { (LONG64)prodml22__FacilityParameter::delta_x0020temperature_x0020class, "delta temperature class" }, - { (LONG64)prodml22__FacilityParameter::density, "density" }, - { (LONG64)prodml22__FacilityParameter::density_x0020class, "density class" }, - { (LONG64)prodml22__FacilityParameter::density_x0020flow_x0020rate, "density flow rate" }, - { (LONG64)prodml22__FacilityParameter::density_x0020standard, "density standard" }, - { (LONG64)prodml22__FacilityParameter::dewpoint_x0020temperature, "dewpoint temperature" }, - { (LONG64)prodml22__FacilityParameter::differential_x0020pressure, "differential pressure" }, - { (LONG64)prodml22__FacilityParameter::differential_x0020temperature, "differential temperature" }, - { (LONG64)prodml22__FacilityParameter::diffusion_x0020coefficient_x0020class, "diffusion coefficient class" }, - { (LONG64)prodml22__FacilityParameter::digital_x0020storage_x0020class, "digital storage class" }, - { (LONG64)prodml22__FacilityParameter::dimensionless_x0020class, "dimensionless class" }, - { (LONG64)prodml22__FacilityParameter::discrete, "discrete" }, - { (LONG64)prodml22__FacilityParameter::dose_x0020equivalent_x0020class, "dose equivalent class" }, - { (LONG64)prodml22__FacilityParameter::dose_x0020equivalent_x0020rate_x0020class, "dose equivalent rate class" }, - { (LONG64)prodml22__FacilityParameter::dynamic_x0020viscosity_x0020class, "dynamic viscosity class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020charge_x0020class, "electric charge class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020conductance_x0020class, "electric conductance class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020current_x0020class, "electric current class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020dipole_x0020moment_x0020class, "electric dipole moment class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020field_x0020strength_x0020class, "electric field strength class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020polarization_x0020class, "electric polarization class" }, - { (LONG64)prodml22__FacilityParameter::electric_x0020potential_x0020class, "electric potential class" }, - { (LONG64)prodml22__FacilityParameter::electrical_x0020resistivity_x0020class, "electrical resistivity class" }, - { (LONG64)prodml22__FacilityParameter::electrochemical_x0020equivalent_x0020class, "electrochemical equivalent class" }, - { (LONG64)prodml22__FacilityParameter::electromagnetic_x0020moment_x0020class, "electromagnetic moment class" }, - { (LONG64)prodml22__FacilityParameter::energy_x0020length_x0020per_x0020area, "energy length per area" }, - { (LONG64)prodml22__FacilityParameter::energy_x0020length_x0020per_x0020time_x0020area_x0020temperature, "energy length per time area temperature" }, - { (LONG64)prodml22__FacilityParameter::energy_x0020per_x0020area, "energy per area" }, - { (LONG64)prodml22__FacilityParameter::energy_x0020per_x0020length, "energy per length" }, - { (LONG64)prodml22__FacilityParameter::equivalent_x0020per_x0020mass, "equivalent per mass" }, - { (LONG64)prodml22__FacilityParameter::equivalent_x0020per_x0020volume, "equivalent per volume" }, - { (LONG64)prodml22__FacilityParameter::exposure_x0020_x0028radioactivity_x0029_x0020class, "exposure (radioactivity) class" }, - { (LONG64)prodml22__FacilityParameter::facility_x0020uptime, "facility uptime" }, - { (LONG64)prodml22__FacilityParameter::flow_x0020rate, "flow rate" }, - { (LONG64)prodml22__FacilityParameter::flow_x0020rate_x0020standard, "flow rate standard" }, - { (LONG64)prodml22__FacilityParameter::force_x0020area_x0020class, "force area class" }, - { (LONG64)prodml22__FacilityParameter::force_x0020class, "force class" }, - { (LONG64)prodml22__FacilityParameter::force_x0020length_x0020per_x0020length, "force length per length" }, - { (LONG64)prodml22__FacilityParameter::force_x0020per_x0020force, "force per force" }, - { (LONG64)prodml22__FacilityParameter::force_x0020per_x0020length, "force per length" }, - { (LONG64)prodml22__FacilityParameter::force_x0020per_x0020volume, "force per volume" }, - { (LONG64)prodml22__FacilityParameter::frequency_x0020class, "frequency class" }, - { (LONG64)prodml22__FacilityParameter::frequency_x0020interval_x0020class, "frequency interval class" }, - { (LONG64)prodml22__FacilityParameter::gamma_x0020ray_x0020API_x0020unit_x0020class, "gamma ray API unit class" }, - { (LONG64)prodml22__FacilityParameter::gas_x0020liquid_x0020ratio, "gas liquid ratio" }, - { (LONG64)prodml22__FacilityParameter::gas_x0020oil_x0020ratio, "gas oil ratio" }, - { (LONG64)prodml22__FacilityParameter::gross_x0020calorific_x0020value_x0020standard, "gross calorific value standard" }, - { (LONG64)prodml22__FacilityParameter::heat_x0020capacity_x0020class, "heat capacity class" }, - { (LONG64)prodml22__FacilityParameter::heat_x0020flow_x0020rate_x0020class, "heat flow rate class" }, - { (LONG64)prodml22__FacilityParameter::heat_x0020transfer_x0020coefficient_x0020class, "heat transfer coefficient class" }, - { (LONG64)prodml22__FacilityParameter::illuminance_x0020class, "illuminance class" }, - { (LONG64)prodml22__FacilityParameter::internal_x0020control_x0020valve_x0020status, "internal control valve status" }, - { (LONG64)prodml22__FacilityParameter::irradiance_x0020class, "irradiance class" }, - { (LONG64)prodml22__FacilityParameter::isothermal_x0020compressibility_x0020class, "isothermal compressibility class" }, - { (LONG64)prodml22__FacilityParameter::kinematic_x0020viscosity_x0020class, "kinematic viscosity class" }, - { (LONG64)prodml22__FacilityParameter::length_x0020class, "length class" }, - { (LONG64)prodml22__FacilityParameter::length_x0020per_x0020length, "length per length" }, - { (LONG64)prodml22__FacilityParameter::length_x0020per_x0020temperature, "length per temperature" }, - { (LONG64)prodml22__FacilityParameter::length_x0020per_x0020volume, "length per volume" }, - { (LONG64)prodml22__FacilityParameter::level_x0020of_x0020power_x0020intensity_x0020class, "level of power intensity class" }, - { (LONG64)prodml22__FacilityParameter::light_x0020exposure_x0020class, "light exposure class" }, - { (LONG64)prodml22__FacilityParameter::linear_x0020thermal_x0020expansion_x0020class, "linear thermal expansion class" }, - { (LONG64)prodml22__FacilityParameter::luminance_x0020class, "luminance class" }, - { (LONG64)prodml22__FacilityParameter::luminous_x0020efficacy_x0020class, "luminous efficacy class" }, - { (LONG64)prodml22__FacilityParameter::luminous_x0020flux_x0020class, "luminous flux class" }, - { (LONG64)prodml22__FacilityParameter::luminous_x0020intensity_x0020class, "luminous intensity class" }, - { (LONG64)prodml22__FacilityParameter::magnetic_x0020dipole_x0020moment_x0020class, "magnetic dipole moment class" }, - { (LONG64)prodml22__FacilityParameter::magnetic_x0020field_x0020strength_x0020class, "magnetic field strength class" }, - { (LONG64)prodml22__FacilityParameter::magnetic_x0020flux_x0020class, "magnetic flux class" }, - { (LONG64)prodml22__FacilityParameter::magnetic_x0020induction_x0020class, "magnetic induction class" }, - { (LONG64)prodml22__FacilityParameter::magnetic_x0020permeability_x0020class, "magnetic permeability class" }, - { (LONG64)prodml22__FacilityParameter::magnetic_x0020vector_x0020potential_x0020class, "magnetic vector potential class" }, - { (LONG64)prodml22__FacilityParameter::mass, "mass" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020attenuation_x0020coefficient_x0020class, "mass attenuation coefficient class" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020class, "mass class" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020concentration, "mass concentration" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020concentration_x0020class, "mass concentration class" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020flow_x0020rate_x0020class, "mass flow rate class" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020length_x0020class, "mass length class" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020per_x0020energy, "mass per energy" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020per_x0020length, "mass per length" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020per_x0020time_x0020per_x0020area, "mass per time per area" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020per_x0020time_x0020per_x0020length, "mass per time per length" }, - { (LONG64)prodml22__FacilityParameter::mass_x0020per_x0020volume_x0020per_x0020length, "mass per volume per length" }, - { (LONG64)prodml22__FacilityParameter::measured_x0020depth, "measured depth" }, - { (LONG64)prodml22__FacilityParameter::mobility_x0020class, "mobility class" }, - { (LONG64)prodml22__FacilityParameter::modulus_x0020of_x0020compression_x0020class, "modulus of compression class" }, - { (LONG64)prodml22__FacilityParameter::molar_x0020concentration, "molar concentration" }, - { (LONG64)prodml22__FacilityParameter::molar_x0020fraction, "molar fraction" }, - { (LONG64)prodml22__FacilityParameter::molar_x0020heat_x0020capacity_x0020class, "molar heat capacity class" }, - { (LONG64)prodml22__FacilityParameter::molar_x0020volume_x0020class, "molar volume class" }, - { (LONG64)prodml22__FacilityParameter::mole_x0020per_x0020area, "mole per area" }, - { (LONG64)prodml22__FacilityParameter::mole_x0020per_x0020time, "mole per time" }, - { (LONG64)prodml22__FacilityParameter::mole_x0020per_x0020time_x0020per_x0020area, "mole per time per area" }, - { (LONG64)prodml22__FacilityParameter::molecular_x0020weight, "molecular weight" }, - { (LONG64)prodml22__FacilityParameter::moment_x0020of_x0020force_x0020class, "moment of force class" }, - { (LONG64)prodml22__FacilityParameter::moment_x0020of_x0020inertia_x0020class, "moment of inertia class" }, - { (LONG64)prodml22__FacilityParameter::moment_x0020of_x0020section_x0020class, "moment of section class" }, - { (LONG64)prodml22__FacilityParameter::momentum_x0020class, "momentum class" }, - { (LONG64)prodml22__FacilityParameter::motor_x0020current, "motor current" }, - { (LONG64)prodml22__FacilityParameter::motor_x0020current_x0020leakage, "motor current leakage" }, - { (LONG64)prodml22__FacilityParameter::motor_x0020speed, "motor speed" }, - { (LONG64)prodml22__FacilityParameter::motor_x0020temperature, "motor temperature" }, - { (LONG64)prodml22__FacilityParameter::motor_x0020vibration, "motor vibration" }, - { (LONG64)prodml22__FacilityParameter::motor_x0020voltage, "motor voltage" }, - { (LONG64)prodml22__FacilityParameter::neutron_x0020API_x0020unit_x0020class, "neutron API unit class" }, - { (LONG64)prodml22__FacilityParameter::nonDarcy_x0020flow_x0020coefficient_x0020class, "nonDarcy flow coefficient class" }, - { (LONG64)prodml22__FacilityParameter::opening_x0020size, "opening size" }, - { (LONG64)prodml22__FacilityParameter::operations_x0020per_x0020time, "operations per time" }, - { (LONG64)prodml22__FacilityParameter::parachor_x0020class, "parachor class" }, - { (LONG64)prodml22__FacilityParameter::per_x0020area, "per area" }, - { (LONG64)prodml22__FacilityParameter::per_x0020electric_x0020potential, "per electric potential" }, - { (LONG64)prodml22__FacilityParameter::per_x0020force, "per force" }, - { (LONG64)prodml22__FacilityParameter::per_x0020length, "per length" }, - { (LONG64)prodml22__FacilityParameter::per_x0020mass, "per mass" }, - { (LONG64)prodml22__FacilityParameter::per_x0020volume, "per volume" }, - { (LONG64)prodml22__FacilityParameter::permeability_x0020length_x0020class, "permeability length class" }, - { (LONG64)prodml22__FacilityParameter::permeability_x0020rock_x0020class, "permeability rock class" }, - { (LONG64)prodml22__FacilityParameter::permeance_x0020class, "permeance class" }, - { (LONG64)prodml22__FacilityParameter::permittivity_x0020class, "permittivity class" }, - { (LONG64)prodml22__FacilityParameter::pH_x0020class, "pH class" }, - { (LONG64)prodml22__FacilityParameter::plane_x0020angle_x0020class, "plane angle class" }, - { (LONG64)prodml22__FacilityParameter::potential_x0020difference_x0020per_x0020power_x0020drop, "potential difference per power drop" }, - { (LONG64)prodml22__FacilityParameter::power_x0020class, "power class" }, - { (LONG64)prodml22__FacilityParameter::power_x0020per_x0020volume, "power per volume" }, - { (LONG64)prodml22__FacilityParameter::pressure, "pressure" }, - { (LONG64)prodml22__FacilityParameter::pressure_x0020class, "pressure class" }, - { (LONG64)prodml22__FacilityParameter::pressure_x0020per_x0020time, "pressure per time" }, - { (LONG64)prodml22__FacilityParameter::pressure_x0020squared_x0020class, "pressure squared class" }, - { (LONG64)prodml22__FacilityParameter::pressure_x0020squared_x0020per_x0020force_x0020time_x0020per_x0020area, "pressure squared per force time per area" }, - { (LONG64)prodml22__FacilityParameter::pressure_x0020time_x0020per_x0020volume, "pressure time per volume" }, - { (LONG64)prodml22__FacilityParameter::productivity_x0020index_x0020class, "productivity index class" }, - { (LONG64)prodml22__FacilityParameter::pump_x0020count_x0020online, "pump count online" }, - { (LONG64)prodml22__FacilityParameter::pump_x0020status, "pump status" }, - { (LONG64)prodml22__FacilityParameter::quantity, "quantity" }, - { (LONG64)prodml22__FacilityParameter::quantity_x0020of_x0020light_x0020class, "quantity of light class" }, - { (LONG64)prodml22__FacilityParameter::radiance_x0020class, "radiance class" }, - { (LONG64)prodml22__FacilityParameter::radiant_x0020intensity_x0020class, "radiant intensity class" }, - { (LONG64)prodml22__FacilityParameter::reciprocating_x0020speed, "reciprocating speed" }, - { (LONG64)prodml22__FacilityParameter::rectifier_x0020structure_x0020potential, "rectifier structure potential" }, - { (LONG64)prodml22__FacilityParameter::reid_x0020vapor_x0020pressure, "reid vapor pressure" }, - { (LONG64)prodml22__FacilityParameter::relative_x0020opening_x0020size, "relative opening size" }, - { (LONG64)prodml22__FacilityParameter::relative_x0020power_x0020class, "relative power class" }, - { (LONG64)prodml22__FacilityParameter::relative_x0020tank_x0020level, "relative tank level" }, - { (LONG64)prodml22__FacilityParameter::relative_x0020time_x0020class, "relative time class" }, - { (LONG64)prodml22__FacilityParameter::relative_x0020valve_x0020opening, "relative valve opening" }, - { (LONG64)prodml22__FacilityParameter::reluctance_x0020class, "reluctance class" }, - { (LONG64)prodml22__FacilityParameter::resistance_x0020class, "resistance class" }, - { (LONG64)prodml22__FacilityParameter::resistivity_x0020per_x0020length, "resistivity per length" }, - { (LONG64)prodml22__FacilityParameter::root_x0020property, "root property" }, - { (LONG64)prodml22__FacilityParameter::scheduled_x0020downtime, "scheduled downtime" }, - { (LONG64)prodml22__FacilityParameter::second_x0020moment_x0020of_x0020area_x0020class, "second moment of area class" }, - { (LONG64)prodml22__FacilityParameter::shutdown_x0020order, "shutdown order" }, - { (LONG64)prodml22__FacilityParameter::shutin_x0020pressure, "shutin pressure" }, - { (LONG64)prodml22__FacilityParameter::shutin_x0020temperature, "shutin temperature" }, - { (LONG64)prodml22__FacilityParameter::solid_x0020angle_x0020class, "solid angle class" }, - { (LONG64)prodml22__FacilityParameter::specific_x0020activity_x0020_x0028of_x0020radioactivity_x0029, "specific activity (of radioactivity)" }, - { (LONG64)prodml22__FacilityParameter::specific_x0020energy_x0020class, "specific energy class" }, - { (LONG64)prodml22__FacilityParameter::specific_x0020gravity, "specific gravity" }, - { (LONG64)prodml22__FacilityParameter::specific_x0020heat_x0020capacity_x0020class, "specific heat capacity class" }, - { (LONG64)prodml22__FacilityParameter::specific_x0020productivity_x0020index_x0020class, "specific productivity index class" }, - { (LONG64)prodml22__FacilityParameter::specific_x0020volume_x0020class, "specific volume class" }, - { (LONG64)prodml22__FacilityParameter::sub_x0020surface_x0020safety_x0020valve_x0020status, "sub surface safety valve status" }, - { (LONG64)prodml22__FacilityParameter::surface_x0020density_x0020class, "surface density class" }, - { (LONG64)prodml22__FacilityParameter::surface_x0020safety_x0020valve_x0020status, "surface safety valve status" }, - { (LONG64)prodml22__FacilityParameter::tank_x0020fluid_x0020level, "tank fluid level" }, - { (LONG64)prodml22__FacilityParameter::tank_x0020product_x0020standard_x0020volume, "tank product standard volume" }, - { (LONG64)prodml22__FacilityParameter::tank_x0020product_x0020volume, "tank product volume" }, - { (LONG64)prodml22__FacilityParameter::temperature, "temperature" }, - { (LONG64)prodml22__FacilityParameter::temperature_x0020per_x0020length, "temperature per length" }, - { (LONG64)prodml22__FacilityParameter::temperature_x0020per_x0020time, "temperature per time" }, - { (LONG64)prodml22__FacilityParameter::thermal_x0020conductance_x0020class, "thermal conductance class" }, - { (LONG64)prodml22__FacilityParameter::thermal_x0020conductivity_x0020class, "thermal conductivity class" }, - { (LONG64)prodml22__FacilityParameter::thermal_x0020diffusivity_x0020class, "thermal diffusivity class" }, - { (LONG64)prodml22__FacilityParameter::thermal_x0020insulance_x0020class, "thermal insulance class" }, - { (LONG64)prodml22__FacilityParameter::thermal_x0020resistance_x0020class, "thermal resistance class" }, - { (LONG64)prodml22__FacilityParameter::thermodynamic_x0020temperature_x0020class, "thermodynamic temperature class" }, - { (LONG64)prodml22__FacilityParameter::time_x0020class, "time class" }, - { (LONG64)prodml22__FacilityParameter::time_x0020per_x0020length, "time per length" }, - { (LONG64)prodml22__FacilityParameter::time_x0020per_x0020volume, "time per volume" }, - { (LONG64)prodml22__FacilityParameter::true_x0020vapor_x0020pressure, "true vapor pressure" }, - { (LONG64)prodml22__FacilityParameter::unit_x0020productivity_x0020index_x0020class, "unit productivity index class" }, - { (LONG64)prodml22__FacilityParameter::unitless, "unitless" }, - { (LONG64)prodml22__FacilityParameter::unknown, "unknown" }, - { (LONG64)prodml22__FacilityParameter::valve_x0020opening, "valve opening" }, - { (LONG64)prodml22__FacilityParameter::valve_x0020status, "valve status" }, - { (LONG64)prodml22__FacilityParameter::velocity_x0020class, "velocity class" }, - { (LONG64)prodml22__FacilityParameter::volume, "volume" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020class, "volume class" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020concentration, "volume concentration" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020flow_x0020rate_x0020class, "volume flow rate class" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020length_x0020per_x0020time, "volume length per time" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020area, "volume per area" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020length, "volume per length" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020area, "volume per time per area" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020length, "volume per time per length" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020time, "volume per time per time" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020volume, "volume per time per volume" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020per_x0020volume, "volume per volume" }, - { (LONG64)prodml22__FacilityParameter::volume_x0020standard, "volume standard" }, - { (LONG64)prodml22__FacilityParameter::volumetric_x0020efficiency, "volumetric efficiency" }, - { (LONG64)prodml22__FacilityParameter::volumetric_x0020heat_x0020transfer_x0020coefficient, "volumetric heat transfer coefficient" }, - { (LONG64)prodml22__FacilityParameter::volumetric_x0020thermal_x0020expansion_x0020class, "volumetric thermal expansion class" }, - { (LONG64)prodml22__FacilityParameter::well_x0020operating_x0020status, "well operating status" }, - { (LONG64)prodml22__FacilityParameter::well_x0020operation_x0020type, "well operation type" }, - { (LONG64)prodml22__FacilityParameter::wobbe_x0020index, "wobbe index" }, - { (LONG64)prodml22__FacilityParameter::work, "work" }, - { (LONG64)prodml22__FacilityParameter::work_x0020class, "work class" }, + { a = (prodml23__FiberMode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode, SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode, sizeof(prodml23__FiberMode), 0, NULL, NULL); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } + return a; +} + +SOAP_FMAC3 prodml23__FiberMode * SOAP_FMAC4 soap_new_prodml23__FiberMode(struct soap *soap, int n) +{ + prodml23__FiberMode *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FiberMode))); + for (prodml23__FiberMode *p = a; p && n--; ++p) + soap_default_prodml23__FiberMode(soap, p); + return a; +} + +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FiberMode(struct soap *soap, const prodml23__FiberMode *a, const char *tag, const char *type) +{ + if (soap_out_prodml23__FiberMode(soap, tag ? tag : "prodml23:FiberMode", -2, a, type)) + return soap->error; + return soap_putindependent(soap); +} + +SOAP_FMAC3 prodml23__FiberMode * SOAP_FMAC4 soap_get_prodml23__FiberMode(struct soap *soap, prodml23__FiberMode *p, const char *tag, const char *type) +{ + if ((p = soap_in_prodml23__FiberMode(soap, tag, p, type))) + if (soap_getindependent(soap)) + return NULL; + return p; +} + +static const struct soap_code_map soap_codes_prodml23__FacilityParameter[] = +{ { (LONG64)prodml23__FacilityParameter::absorbed_x0020dose_x0020class, "absorbed dose class" }, + { (LONG64)prodml23__FacilityParameter::acceleration_x0020linear_x0020class, "acceleration linear class" }, + { (LONG64)prodml23__FacilityParameter::activity_x0020_x0028of_x0020radioactivity_x0029_x0020class, "activity (of radioactivity) class" }, + { (LONG64)prodml23__FacilityParameter::alarm_x0020absolute_x0020pressure, "alarm absolute pressure" }, + { (LONG64)prodml23__FacilityParameter::amount_x0020of_x0020substance_x0020class, "amount of substance class" }, + { (LONG64)prodml23__FacilityParameter::angle_x0020per_x0020length, "angle per length" }, + { (LONG64)prodml23__FacilityParameter::angle_x0020per_x0020time, "angle per time" }, + { (LONG64)prodml23__FacilityParameter::angle_x0020per_x0020volume, "angle per volume" }, + { (LONG64)prodml23__FacilityParameter::angular_x0020acceleration_x0020class, "angular acceleration class" }, + { (LONG64)prodml23__FacilityParameter::annulus_x0020inner_x0020diameter, "annulus inner diameter" }, + { (LONG64)prodml23__FacilityParameter::annulus_x0020outer_x0020diameter, "annulus outer diameter" }, + { (LONG64)prodml23__FacilityParameter::area_x0020class, "area class" }, + { (LONG64)prodml23__FacilityParameter::area_x0020per_x0020area, "area per area" }, + { (LONG64)prodml23__FacilityParameter::area_x0020per_x0020volume, "area per volume" }, + { (LONG64)prodml23__FacilityParameter::atmospheric_x0020pressure, "atmospheric pressure" }, + { (LONG64)prodml23__FacilityParameter::attenuation_x0020class, "attenuation class" }, + { (LONG64)prodml23__FacilityParameter::attenuation_x0020per_x0020length, "attenuation per length" }, + { (LONG64)prodml23__FacilityParameter::available, "available" }, + { (LONG64)prodml23__FacilityParameter::available_x0020room, "available room" }, + { (LONG64)prodml23__FacilityParameter::block_x0020valve_x0020status, "block valve status" }, + { (LONG64)prodml23__FacilityParameter::capacitance_x0020class, "capacitance class" }, + { (LONG64)prodml23__FacilityParameter::categorical, "categorical" }, + { (LONG64)prodml23__FacilityParameter::cathodic_x0020protection_x0020output_x0020current, "cathodic protection output current" }, + { (LONG64)prodml23__FacilityParameter::cathodic_x0020protection_x0020output_x0020voltage, "cathodic protection output voltage" }, + { (LONG64)prodml23__FacilityParameter::charge_x0020density_x0020class, "charge density class" }, + { (LONG64)prodml23__FacilityParameter::chemical_x0020potential_x0020class, "chemical potential class" }, + { (LONG64)prodml23__FacilityParameter::choke_x0020position, "choke position" }, + { (LONG64)prodml23__FacilityParameter::choke_x0020setting, "choke setting" }, + { (LONG64)prodml23__FacilityParameter::code, "code" }, + { (LONG64)prodml23__FacilityParameter::compressibility_x0020class, "compressibility class" }, + { (LONG64)prodml23__FacilityParameter::concentration_x0020of_x0020B_x0020class, "concentration of B class" }, + { (LONG64)prodml23__FacilityParameter::conductivity_x0020class, "conductivity class" }, + { (LONG64)prodml23__FacilityParameter::continuous, "continuous" }, + { (LONG64)prodml23__FacilityParameter::cross_x0020section_x0020absorption_x0020class, "cross section absorption class" }, + { (LONG64)prodml23__FacilityParameter::current_x0020density_x0020class, "current density class" }, + { (LONG64)prodml23__FacilityParameter::darcy_x0020flow_x0020coefficient_x0020class, "darcy flow coefficient class" }, + { (LONG64)prodml23__FacilityParameter::data_x0020transmission_x0020speed_x0020class, "data transmission speed class" }, + { (LONG64)prodml23__FacilityParameter::delta_x0020temperature_x0020class, "delta temperature class" }, + { (LONG64)prodml23__FacilityParameter::density, "density" }, + { (LONG64)prodml23__FacilityParameter::density_x0020class, "density class" }, + { (LONG64)prodml23__FacilityParameter::density_x0020flow_x0020rate, "density flow rate" }, + { (LONG64)prodml23__FacilityParameter::density_x0020standard, "density standard" }, + { (LONG64)prodml23__FacilityParameter::dewpoint_x0020temperature, "dewpoint temperature" }, + { (LONG64)prodml23__FacilityParameter::differential_x0020pressure, "differential pressure" }, + { (LONG64)prodml23__FacilityParameter::differential_x0020temperature, "differential temperature" }, + { (LONG64)prodml23__FacilityParameter::diffusion_x0020coefficient_x0020class, "diffusion coefficient class" }, + { (LONG64)prodml23__FacilityParameter::digital_x0020storage_x0020class, "digital storage class" }, + { (LONG64)prodml23__FacilityParameter::dimensionless_x0020class, "dimensionless class" }, + { (LONG64)prodml23__FacilityParameter::discrete, "discrete" }, + { (LONG64)prodml23__FacilityParameter::dose_x0020equivalent_x0020class, "dose equivalent class" }, + { (LONG64)prodml23__FacilityParameter::dose_x0020equivalent_x0020rate_x0020class, "dose equivalent rate class" }, + { (LONG64)prodml23__FacilityParameter::dynamic_x0020viscosity_x0020class, "dynamic viscosity class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020charge_x0020class, "electric charge class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020conductance_x0020class, "electric conductance class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020current_x0020class, "electric current class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020dipole_x0020moment_x0020class, "electric dipole moment class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020field_x0020strength_x0020class, "electric field strength class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020polarization_x0020class, "electric polarization class" }, + { (LONG64)prodml23__FacilityParameter::electric_x0020potential_x0020class, "electric potential class" }, + { (LONG64)prodml23__FacilityParameter::electrical_x0020resistivity_x0020class, "electrical resistivity class" }, + { (LONG64)prodml23__FacilityParameter::electrochemical_x0020equivalent_x0020class, "electrochemical equivalent class" }, + { (LONG64)prodml23__FacilityParameter::electromagnetic_x0020moment_x0020class, "electromagnetic moment class" }, + { (LONG64)prodml23__FacilityParameter::energy_x0020length_x0020per_x0020area, "energy length per area" }, + { (LONG64)prodml23__FacilityParameter::energy_x0020length_x0020per_x0020time_x0020area_x0020temperature, "energy length per time area temperature" }, + { (LONG64)prodml23__FacilityParameter::energy_x0020per_x0020area, "energy per area" }, + { (LONG64)prodml23__FacilityParameter::energy_x0020per_x0020length, "energy per length" }, + { (LONG64)prodml23__FacilityParameter::equivalent_x0020per_x0020mass, "equivalent per mass" }, + { (LONG64)prodml23__FacilityParameter::equivalent_x0020per_x0020volume, "equivalent per volume" }, + { (LONG64)prodml23__FacilityParameter::exposure_x0020_x0028radioactivity_x0029_x0020class, "exposure (radioactivity) class" }, + { (LONG64)prodml23__FacilityParameter::facility_x0020uptime, "facility uptime" }, + { (LONG64)prodml23__FacilityParameter::flow_x0020rate, "flow rate" }, + { (LONG64)prodml23__FacilityParameter::flow_x0020rate_x0020standard, "flow rate standard" }, + { (LONG64)prodml23__FacilityParameter::force_x0020area_x0020class, "force area class" }, + { (LONG64)prodml23__FacilityParameter::force_x0020class, "force class" }, + { (LONG64)prodml23__FacilityParameter::force_x0020length_x0020per_x0020length, "force length per length" }, + { (LONG64)prodml23__FacilityParameter::force_x0020per_x0020force, "force per force" }, + { (LONG64)prodml23__FacilityParameter::force_x0020per_x0020length, "force per length" }, + { (LONG64)prodml23__FacilityParameter::force_x0020per_x0020volume, "force per volume" }, + { (LONG64)prodml23__FacilityParameter::frequency_x0020class, "frequency class" }, + { (LONG64)prodml23__FacilityParameter::frequency_x0020interval_x0020class, "frequency interval class" }, + { (LONG64)prodml23__FacilityParameter::gamma_x0020ray_x0020API_x0020unit_x0020class, "gamma ray API unit class" }, + { (LONG64)prodml23__FacilityParameter::gas_x0020liquid_x0020ratio, "gas liquid ratio" }, + { (LONG64)prodml23__FacilityParameter::gas_x0020oil_x0020ratio, "gas oil ratio" }, + { (LONG64)prodml23__FacilityParameter::gross_x0020calorific_x0020value_x0020standard, "gross calorific value standard" }, + { (LONG64)prodml23__FacilityParameter::heat_x0020capacity_x0020class, "heat capacity class" }, + { (LONG64)prodml23__FacilityParameter::heat_x0020flow_x0020rate_x0020class, "heat flow rate class" }, + { (LONG64)prodml23__FacilityParameter::heat_x0020transfer_x0020coefficient_x0020class, "heat transfer coefficient class" }, + { (LONG64)prodml23__FacilityParameter::illuminance_x0020class, "illuminance class" }, + { (LONG64)prodml23__FacilityParameter::internal_x0020control_x0020valve_x0020status, "internal control valve status" }, + { (LONG64)prodml23__FacilityParameter::irradiance_x0020class, "irradiance class" }, + { (LONG64)prodml23__FacilityParameter::isothermal_x0020compressibility_x0020class, "isothermal compressibility class" }, + { (LONG64)prodml23__FacilityParameter::kinematic_x0020viscosity_x0020class, "kinematic viscosity class" }, + { (LONG64)prodml23__FacilityParameter::length_x0020class, "length class" }, + { (LONG64)prodml23__FacilityParameter::length_x0020per_x0020length, "length per length" }, + { (LONG64)prodml23__FacilityParameter::length_x0020per_x0020temperature, "length per temperature" }, + { (LONG64)prodml23__FacilityParameter::length_x0020per_x0020volume, "length per volume" }, + { (LONG64)prodml23__FacilityParameter::level_x0020of_x0020power_x0020intensity_x0020class, "level of power intensity class" }, + { (LONG64)prodml23__FacilityParameter::light_x0020exposure_x0020class, "light exposure class" }, + { (LONG64)prodml23__FacilityParameter::linear_x0020thermal_x0020expansion_x0020class, "linear thermal expansion class" }, + { (LONG64)prodml23__FacilityParameter::luminance_x0020class, "luminance class" }, + { (LONG64)prodml23__FacilityParameter::luminous_x0020efficacy_x0020class, "luminous efficacy class" }, + { (LONG64)prodml23__FacilityParameter::luminous_x0020flux_x0020class, "luminous flux class" }, + { (LONG64)prodml23__FacilityParameter::luminous_x0020intensity_x0020class, "luminous intensity class" }, + { (LONG64)prodml23__FacilityParameter::magnetic_x0020dipole_x0020moment_x0020class, "magnetic dipole moment class" }, + { (LONG64)prodml23__FacilityParameter::magnetic_x0020field_x0020strength_x0020class, "magnetic field strength class" }, + { (LONG64)prodml23__FacilityParameter::magnetic_x0020flux_x0020class, "magnetic flux class" }, + { (LONG64)prodml23__FacilityParameter::magnetic_x0020induction_x0020class, "magnetic induction class" }, + { (LONG64)prodml23__FacilityParameter::magnetic_x0020permeability_x0020class, "magnetic permeability class" }, + { (LONG64)prodml23__FacilityParameter::magnetic_x0020vector_x0020potential_x0020class, "magnetic vector potential class" }, + { (LONG64)prodml23__FacilityParameter::mass, "mass" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020attenuation_x0020coefficient_x0020class, "mass attenuation coefficient class" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020class, "mass class" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020concentration, "mass concentration" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020concentration_x0020class, "mass concentration class" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020flow_x0020rate_x0020class, "mass flow rate class" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020length_x0020class, "mass length class" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020per_x0020energy, "mass per energy" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020per_x0020length, "mass per length" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020per_x0020time_x0020per_x0020area, "mass per time per area" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020per_x0020time_x0020per_x0020length, "mass per time per length" }, + { (LONG64)prodml23__FacilityParameter::mass_x0020per_x0020volume_x0020per_x0020length, "mass per volume per length" }, + { (LONG64)prodml23__FacilityParameter::measured_x0020depth, "measured depth" }, + { (LONG64)prodml23__FacilityParameter::mobility_x0020class, "mobility class" }, + { (LONG64)prodml23__FacilityParameter::modulus_x0020of_x0020compression_x0020class, "modulus of compression class" }, + { (LONG64)prodml23__FacilityParameter::molar_x0020concentration, "molar concentration" }, + { (LONG64)prodml23__FacilityParameter::molar_x0020fraction, "molar fraction" }, + { (LONG64)prodml23__FacilityParameter::molar_x0020heat_x0020capacity_x0020class, "molar heat capacity class" }, + { (LONG64)prodml23__FacilityParameter::molar_x0020volume_x0020class, "molar volume class" }, + { (LONG64)prodml23__FacilityParameter::mole_x0020per_x0020area, "mole per area" }, + { (LONG64)prodml23__FacilityParameter::mole_x0020per_x0020time, "mole per time" }, + { (LONG64)prodml23__FacilityParameter::mole_x0020per_x0020time_x0020per_x0020area, "mole per time per area" }, + { (LONG64)prodml23__FacilityParameter::molecular_x0020weight, "molecular weight" }, + { (LONG64)prodml23__FacilityParameter::moment_x0020of_x0020force_x0020class, "moment of force class" }, + { (LONG64)prodml23__FacilityParameter::moment_x0020of_x0020inertia_x0020class, "moment of inertia class" }, + { (LONG64)prodml23__FacilityParameter::moment_x0020of_x0020section_x0020class, "moment of section class" }, + { (LONG64)prodml23__FacilityParameter::momentum_x0020class, "momentum class" }, + { (LONG64)prodml23__FacilityParameter::motor_x0020current, "motor current" }, + { (LONG64)prodml23__FacilityParameter::motor_x0020current_x0020leakage, "motor current leakage" }, + { (LONG64)prodml23__FacilityParameter::motor_x0020speed, "motor speed" }, + { (LONG64)prodml23__FacilityParameter::motor_x0020temperature, "motor temperature" }, + { (LONG64)prodml23__FacilityParameter::motor_x0020vibration, "motor vibration" }, + { (LONG64)prodml23__FacilityParameter::motor_x0020voltage, "motor voltage" }, + { (LONG64)prodml23__FacilityParameter::neutron_x0020API_x0020unit_x0020class, "neutron API unit class" }, + { (LONG64)prodml23__FacilityParameter::nonDarcy_x0020flow_x0020coefficient_x0020class, "nonDarcy flow coefficient class" }, + { (LONG64)prodml23__FacilityParameter::opening_x0020size, "opening size" }, + { (LONG64)prodml23__FacilityParameter::operations_x0020per_x0020time, "operations per time" }, + { (LONG64)prodml23__FacilityParameter::parachor_x0020class, "parachor class" }, + { (LONG64)prodml23__FacilityParameter::per_x0020area, "per area" }, + { (LONG64)prodml23__FacilityParameter::per_x0020electric_x0020potential, "per electric potential" }, + { (LONG64)prodml23__FacilityParameter::per_x0020force, "per force" }, + { (LONG64)prodml23__FacilityParameter::per_x0020length, "per length" }, + { (LONG64)prodml23__FacilityParameter::per_x0020mass, "per mass" }, + { (LONG64)prodml23__FacilityParameter::per_x0020volume, "per volume" }, + { (LONG64)prodml23__FacilityParameter::permeability_x0020length_x0020class, "permeability length class" }, + { (LONG64)prodml23__FacilityParameter::permeability_x0020rock_x0020class, "permeability rock class" }, + { (LONG64)prodml23__FacilityParameter::permeance_x0020class, "permeance class" }, + { (LONG64)prodml23__FacilityParameter::permittivity_x0020class, "permittivity class" }, + { (LONG64)prodml23__FacilityParameter::pH_x0020class, "pH class" }, + { (LONG64)prodml23__FacilityParameter::plane_x0020angle_x0020class, "plane angle class" }, + { (LONG64)prodml23__FacilityParameter::potential_x0020difference_x0020per_x0020power_x0020drop, "potential difference per power drop" }, + { (LONG64)prodml23__FacilityParameter::power_x0020class, "power class" }, + { (LONG64)prodml23__FacilityParameter::power_x0020per_x0020volume, "power per volume" }, + { (LONG64)prodml23__FacilityParameter::pressure, "pressure" }, + { (LONG64)prodml23__FacilityParameter::pressure_x0020class, "pressure class" }, + { (LONG64)prodml23__FacilityParameter::pressure_x0020per_x0020time, "pressure per time" }, + { (LONG64)prodml23__FacilityParameter::pressure_x0020squared_x0020class, "pressure squared class" }, + { (LONG64)prodml23__FacilityParameter::pressure_x0020squared_x0020per_x0020force_x0020time_x0020per_x0020area, "pressure squared per force time per area" }, + { (LONG64)prodml23__FacilityParameter::pressure_x0020time_x0020per_x0020volume, "pressure time per volume" }, + { (LONG64)prodml23__FacilityParameter::productivity_x0020index_x0020class, "productivity index class" }, + { (LONG64)prodml23__FacilityParameter::pump_x0020count_x0020online, "pump count online" }, + { (LONG64)prodml23__FacilityParameter::pump_x0020status, "pump status" }, + { (LONG64)prodml23__FacilityParameter::quantity, "quantity" }, + { (LONG64)prodml23__FacilityParameter::quantity_x0020of_x0020light_x0020class, "quantity of light class" }, + { (LONG64)prodml23__FacilityParameter::radiance_x0020class, "radiance class" }, + { (LONG64)prodml23__FacilityParameter::radiant_x0020intensity_x0020class, "radiant intensity class" }, + { (LONG64)prodml23__FacilityParameter::reciprocating_x0020speed, "reciprocating speed" }, + { (LONG64)prodml23__FacilityParameter::rectifier_x0020structure_x0020potential, "rectifier structure potential" }, + { (LONG64)prodml23__FacilityParameter::reid_x0020vapor_x0020pressure, "reid vapor pressure" }, + { (LONG64)prodml23__FacilityParameter::relative_x0020opening_x0020size, "relative opening size" }, + { (LONG64)prodml23__FacilityParameter::relative_x0020power_x0020class, "relative power class" }, + { (LONG64)prodml23__FacilityParameter::relative_x0020tank_x0020level, "relative tank level" }, + { (LONG64)prodml23__FacilityParameter::relative_x0020time_x0020class, "relative time class" }, + { (LONG64)prodml23__FacilityParameter::relative_x0020valve_x0020opening, "relative valve opening" }, + { (LONG64)prodml23__FacilityParameter::reluctance_x0020class, "reluctance class" }, + { (LONG64)prodml23__FacilityParameter::resistance_x0020class, "resistance class" }, + { (LONG64)prodml23__FacilityParameter::resistivity_x0020per_x0020length, "resistivity per length" }, + { (LONG64)prodml23__FacilityParameter::root_x0020property, "root property" }, + { (LONG64)prodml23__FacilityParameter::scheduled_x0020downtime, "scheduled downtime" }, + { (LONG64)prodml23__FacilityParameter::second_x0020moment_x0020of_x0020area_x0020class, "second moment of area class" }, + { (LONG64)prodml23__FacilityParameter::shutdown_x0020order, "shutdown order" }, + { (LONG64)prodml23__FacilityParameter::shutin_x0020pressure, "shutin pressure" }, + { (LONG64)prodml23__FacilityParameter::shutin_x0020temperature, "shutin temperature" }, + { (LONG64)prodml23__FacilityParameter::solid_x0020angle_x0020class, "solid angle class" }, + { (LONG64)prodml23__FacilityParameter::specific_x0020activity_x0020_x0028of_x0020radioactivity_x0029, "specific activity (of radioactivity)" }, + { (LONG64)prodml23__FacilityParameter::specific_x0020energy_x0020class, "specific energy class" }, + { (LONG64)prodml23__FacilityParameter::specific_x0020gravity, "specific gravity" }, + { (LONG64)prodml23__FacilityParameter::specific_x0020heat_x0020capacity_x0020class, "specific heat capacity class" }, + { (LONG64)prodml23__FacilityParameter::specific_x0020productivity_x0020index_x0020class, "specific productivity index class" }, + { (LONG64)prodml23__FacilityParameter::specific_x0020volume_x0020class, "specific volume class" }, + { (LONG64)prodml23__FacilityParameter::sub_x0020surface_x0020safety_x0020valve_x0020status, "sub surface safety valve status" }, + { (LONG64)prodml23__FacilityParameter::surface_x0020density_x0020class, "surface density class" }, + { (LONG64)prodml23__FacilityParameter::surface_x0020safety_x0020valve_x0020status, "surface safety valve status" }, + { (LONG64)prodml23__FacilityParameter::tank_x0020fluid_x0020level, "tank fluid level" }, + { (LONG64)prodml23__FacilityParameter::tank_x0020product_x0020standard_x0020volume, "tank product standard volume" }, + { (LONG64)prodml23__FacilityParameter::tank_x0020product_x0020volume, "tank product volume" }, + { (LONG64)prodml23__FacilityParameter::temperature, "temperature" }, + { (LONG64)prodml23__FacilityParameter::temperature_x0020per_x0020length, "temperature per length" }, + { (LONG64)prodml23__FacilityParameter::temperature_x0020per_x0020time, "temperature per time" }, + { (LONG64)prodml23__FacilityParameter::thermal_x0020conductance_x0020class, "thermal conductance class" }, + { (LONG64)prodml23__FacilityParameter::thermal_x0020conductivity_x0020class, "thermal conductivity class" }, + { (LONG64)prodml23__FacilityParameter::thermal_x0020diffusivity_x0020class, "thermal diffusivity class" }, + { (LONG64)prodml23__FacilityParameter::thermal_x0020insulance_x0020class, "thermal insulance class" }, + { (LONG64)prodml23__FacilityParameter::thermal_x0020resistance_x0020class, "thermal resistance class" }, + { (LONG64)prodml23__FacilityParameter::thermodynamic_x0020temperature_x0020class, "thermodynamic temperature class" }, + { (LONG64)prodml23__FacilityParameter::time_x0020class, "time class" }, + { (LONG64)prodml23__FacilityParameter::time_x0020per_x0020length, "time per length" }, + { (LONG64)prodml23__FacilityParameter::time_x0020per_x0020volume, "time per volume" }, + { (LONG64)prodml23__FacilityParameter::true_x0020vapor_x0020pressure, "true vapor pressure" }, + { (LONG64)prodml23__FacilityParameter::unit_x0020productivity_x0020index_x0020class, "unit productivity index class" }, + { (LONG64)prodml23__FacilityParameter::unitless, "unitless" }, + { (LONG64)prodml23__FacilityParameter::unknown, "unknown" }, + { (LONG64)prodml23__FacilityParameter::valve_x0020opening, "valve opening" }, + { (LONG64)prodml23__FacilityParameter::valve_x0020status, "valve status" }, + { (LONG64)prodml23__FacilityParameter::velocity_x0020class, "velocity class" }, + { (LONG64)prodml23__FacilityParameter::volume, "volume" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020class, "volume class" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020concentration, "volume concentration" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020flow_x0020rate_x0020class, "volume flow rate class" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020length_x0020per_x0020time, "volume length per time" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020area, "volume per area" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020length, "volume per length" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020area, "volume per time per area" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020length, "volume per time per length" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020time, "volume per time per time" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020time_x0020per_x0020volume, "volume per time per volume" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020per_x0020volume, "volume per volume" }, + { (LONG64)prodml23__FacilityParameter::volume_x0020standard, "volume standard" }, + { (LONG64)prodml23__FacilityParameter::volumetric_x0020efficiency, "volumetric efficiency" }, + { (LONG64)prodml23__FacilityParameter::volumetric_x0020heat_x0020transfer_x0020coefficient, "volumetric heat transfer coefficient" }, + { (LONG64)prodml23__FacilityParameter::volumetric_x0020thermal_x0020expansion_x0020class, "volumetric thermal expansion class" }, + { (LONG64)prodml23__FacilityParameter::well_x0020operating_x0020status, "well operating status" }, + { (LONG64)prodml23__FacilityParameter::well_x0020operation_x0020type, "well operation type" }, + { (LONG64)prodml23__FacilityParameter::wobbe_x0020index, "wobbe index" }, + { (LONG64)prodml23__FacilityParameter::work, "work" }, + { (LONG64)prodml23__FacilityParameter::work_x0020class, "work class" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FacilityParameter2s(struct soap *soap, prodml22__FacilityParameter n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FacilityParameter2s(struct soap *soap, prodml23__FacilityParameter n) { - const char *s = soap_code_str(soap_codes_prodml22__FacilityParameter, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__FacilityParameter, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityParameter(struct soap *soap, const char *tag, int id, const prodml22__FacilityParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityParameter(struct soap *soap, const char *tag, int id, const prodml23__FacilityParameter *a, const char *type) { if (!type) - type = "prodml22:FacilityParameter"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter), type) || soap_send(soap, soap_prodml22__FacilityParameter2s(soap, *a))) + type = "prodml23:FacilityParameter"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter), type) || soap_send(soap, soap_prodml23__FacilityParameter2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FacilityParameter(struct soap *soap, const char *s, prodml22__FacilityParameter *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FacilityParameter(struct soap *soap, const char *s, prodml23__FacilityParameter *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__FacilityParameter, s); + map = soap_code(soap_codes_prodml23__FacilityParameter, s); if (map) - *a = (prodml22__FacilityParameter)map->code; + *a = (prodml23__FacilityParameter)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69287,82 +69282,82 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FacilityParameter(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilityParameter * SOAP_FMAC4 soap_in_prodml22__FacilityParameter(struct soap *soap, const char *tag, prodml22__FacilityParameter *a, const char *type) +SOAP_FMAC3 prodml23__FacilityParameter * SOAP_FMAC4 soap_in_prodml23__FacilityParameter(struct soap *soap, const char *tag, prodml23__FacilityParameter *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__FacilityParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter, sizeof(prodml22__FacilityParameter), NULL, NULL, NULL, NULL); + a = (prodml23__FacilityParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter, sizeof(prodml23__FacilityParameter), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__FacilityParameter(soap, soap_value(soap), a); + { int err = soap_s2prodml23__FacilityParameter(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__FacilityParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter, sizeof(prodml22__FacilityParameter), 0, NULL, NULL); + { a = (prodml23__FacilityParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter, sizeof(prodml23__FacilityParameter), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__FacilityParameter * SOAP_FMAC4 soap_new_prodml22__FacilityParameter(struct soap *soap, int n) +SOAP_FMAC3 prodml23__FacilityParameter * SOAP_FMAC4 soap_new_prodml23__FacilityParameter(struct soap *soap, int n) { - prodml22__FacilityParameter *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__FacilityParameter))); - for (prodml22__FacilityParameter *p = a; p && n--; ++p) - soap_default_prodml22__FacilityParameter(soap, p); + prodml23__FacilityParameter *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__FacilityParameter))); + for (prodml23__FacilityParameter *p = a; p && n--; ++p) + soap_default_prodml23__FacilityParameter(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FacilityParameter(struct soap *soap, const prodml22__FacilityParameter *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FacilityParameter(struct soap *soap, const prodml23__FacilityParameter *a, const char *tag, const char *type) { - if (soap_out_prodml22__FacilityParameter(soap, tag ? tag : "prodml22:FacilityParameter", -2, a, type)) + if (soap_out_prodml23__FacilityParameter(soap, tag ? tag : "prodml23:FacilityParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FacilityParameter * SOAP_FMAC4 soap_get_prodml22__FacilityParameter(struct soap *soap, prodml22__FacilityParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityParameter * SOAP_FMAC4 soap_get_prodml23__FacilityParameter(struct soap *soap, prodml23__FacilityParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilityParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilityParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__EndpointQualifier[] = -{ { (LONG64)prodml22__EndpointQualifier::exclusive, "exclusive" }, - { (LONG64)prodml22__EndpointQualifier::extensive, "extensive" }, - { (LONG64)prodml22__EndpointQualifier::inclusive, "inclusive" }, - { (LONG64)prodml22__EndpointQualifier::overlap_x0020extensive, "overlap extensive" }, +static const struct soap_code_map soap_codes_prodml23__EndpointQualifier[] = +{ { (LONG64)prodml23__EndpointQualifier::exclusive, "exclusive" }, + { (LONG64)prodml23__EndpointQualifier::extensive, "extensive" }, + { (LONG64)prodml23__EndpointQualifier::inclusive, "inclusive" }, + { (LONG64)prodml23__EndpointQualifier::overlap_x0020extensive, "overlap extensive" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__EndpointQualifier2s(struct soap *soap, prodml22__EndpointQualifier n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__EndpointQualifier2s(struct soap *soap, prodml23__EndpointQualifier n) { - const char *s = soap_code_str(soap_codes_prodml22__EndpointQualifier, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__EndpointQualifier, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifier(struct soap *soap, const char *tag, int id, const prodml22__EndpointQualifier *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifier(struct soap *soap, const char *tag, int id, const prodml23__EndpointQualifier *a, const char *type) { if (!type) - type = "prodml22:EndpointQualifier"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier), type) || soap_send(soap, soap_prodml22__EndpointQualifier2s(soap, *a))) + type = "prodml23:EndpointQualifier"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier), type) || soap_send(soap, soap_prodml23__EndpointQualifier2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__EndpointQualifier(struct soap *soap, const char *s, prodml22__EndpointQualifier *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__EndpointQualifier(struct soap *soap, const char *s, prodml23__EndpointQualifier *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__EndpointQualifier, s); + map = soap_code(soap_codes_prodml23__EndpointQualifier, s); if (map) - *a = (prodml22__EndpointQualifier)map->code; + *a = (prodml23__EndpointQualifier)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69370,85 +69365,85 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__EndpointQualifier(struct soap *soap return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQualifier * SOAP_FMAC4 soap_in_prodml22__EndpointQualifier(struct soap *soap, const char *tag, prodml22__EndpointQualifier *a, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifier * SOAP_FMAC4 soap_in_prodml23__EndpointQualifier(struct soap *soap, const char *tag, prodml23__EndpointQualifier *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__EndpointQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier, sizeof(prodml22__EndpointQualifier), NULL, NULL, NULL, NULL); + a = (prodml23__EndpointQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier, sizeof(prodml23__EndpointQualifier), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__EndpointQualifier(soap, soap_value(soap), a); + { int err = soap_s2prodml23__EndpointQualifier(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__EndpointQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier, sizeof(prodml22__EndpointQualifier), 0, NULL, NULL); + { a = (prodml23__EndpointQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier, sizeof(prodml23__EndpointQualifier), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__EndpointQualifier * SOAP_FMAC4 soap_new_prodml22__EndpointQualifier(struct soap *soap, int n) +SOAP_FMAC3 prodml23__EndpointQualifier * SOAP_FMAC4 soap_new_prodml23__EndpointQualifier(struct soap *soap, int n) { - prodml22__EndpointQualifier *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__EndpointQualifier))); - for (prodml22__EndpointQualifier *p = a; p && n--; ++p) - soap_default_prodml22__EndpointQualifier(soap, p); + prodml23__EndpointQualifier *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__EndpointQualifier))); + for (prodml23__EndpointQualifier *p = a; p && n--; ++p) + soap_default_prodml23__EndpointQualifier(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__EndpointQualifier(struct soap *soap, const prodml22__EndpointQualifier *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__EndpointQualifier(struct soap *soap, const prodml23__EndpointQualifier *a, const char *tag, const char *type) { - if (soap_out_prodml22__EndpointQualifier(soap, tag ? tag : "prodml22:EndpointQualifier", -2, a, type)) + if (soap_out_prodml23__EndpointQualifier(soap, tag ? tag : "prodml23:EndpointQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__EndpointQualifier * SOAP_FMAC4 soap_get_prodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifier * SOAP_FMAC4 soap_get_prodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__EndpointQualifier(soap, tag, p, type))) + if ((p = soap_in_prodml23__EndpointQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__BusinessUnitKind[] = -{ { (LONG64)prodml22__BusinessUnitKind::businessarea, "businessarea" }, - { (LONG64)prodml22__BusinessUnitKind::company, "company" }, - { (LONG64)prodml22__BusinessUnitKind::field, "field" }, - { (LONG64)prodml22__BusinessUnitKind::license, "license" }, - { (LONG64)prodml22__BusinessUnitKind::platform, "platform" }, - { (LONG64)prodml22__BusinessUnitKind::terminal, "terminal" }, - { (LONG64)prodml22__BusinessUnitKind::unknown, "unknown" }, +static const struct soap_code_map soap_codes_prodml23__BusinessUnitKind[] = +{ { (LONG64)prodml23__BusinessUnitKind::businessarea, "businessarea" }, + { (LONG64)prodml23__BusinessUnitKind::company, "company" }, + { (LONG64)prodml23__BusinessUnitKind::field, "field" }, + { (LONG64)prodml23__BusinessUnitKind::license, "license" }, + { (LONG64)prodml23__BusinessUnitKind::platform, "platform" }, + { (LONG64)prodml23__BusinessUnitKind::terminal, "terminal" }, + { (LONG64)prodml23__BusinessUnitKind::unknown, "unknown" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BusinessUnitKind2s(struct soap *soap, prodml22__BusinessUnitKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BusinessUnitKind2s(struct soap *soap, prodml23__BusinessUnitKind n) { - const char *s = soap_code_str(soap_codes_prodml22__BusinessUnitKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__BusinessUnitKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BusinessUnitKind(struct soap *soap, const char *tag, int id, const prodml22__BusinessUnitKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BusinessUnitKind(struct soap *soap, const char *tag, int id, const prodml23__BusinessUnitKind *a, const char *type) { if (!type) - type = "prodml22:BusinessUnitKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind), type) || soap_send(soap, soap_prodml22__BusinessUnitKind2s(soap, *a))) + type = "prodml23:BusinessUnitKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind), type) || soap_send(soap, soap_prodml23__BusinessUnitKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BusinessUnitKind(struct soap *soap, const char *s, prodml22__BusinessUnitKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BusinessUnitKind(struct soap *soap, const char *s, prodml23__BusinessUnitKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__BusinessUnitKind, s); + map = soap_code(soap_codes_prodml23__BusinessUnitKind, s); if (map) - *a = (prodml22__BusinessUnitKind)map->code; + *a = (prodml23__BusinessUnitKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69456,80 +69451,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BusinessUnitKind(struct soap *soap, return SOAP_OK; } -SOAP_FMAC3 prodml22__BusinessUnitKind * SOAP_FMAC4 soap_in_prodml22__BusinessUnitKind(struct soap *soap, const char *tag, prodml22__BusinessUnitKind *a, const char *type) +SOAP_FMAC3 prodml23__BusinessUnitKind * SOAP_FMAC4 soap_in_prodml23__BusinessUnitKind(struct soap *soap, const char *tag, prodml23__BusinessUnitKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__BusinessUnitKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind, sizeof(prodml22__BusinessUnitKind), NULL, NULL, NULL, NULL); + a = (prodml23__BusinessUnitKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind, sizeof(prodml23__BusinessUnitKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__BusinessUnitKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__BusinessUnitKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__BusinessUnitKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind, SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind, sizeof(prodml22__BusinessUnitKind), 0, NULL, NULL); + { a = (prodml23__BusinessUnitKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind, SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind, sizeof(prodml23__BusinessUnitKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__BusinessUnitKind * SOAP_FMAC4 soap_new_prodml22__BusinessUnitKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__BusinessUnitKind * SOAP_FMAC4 soap_new_prodml23__BusinessUnitKind(struct soap *soap, int n) { - prodml22__BusinessUnitKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__BusinessUnitKind))); - for (prodml22__BusinessUnitKind *p = a; p && n--; ++p) - soap_default_prodml22__BusinessUnitKind(soap, p); + prodml23__BusinessUnitKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__BusinessUnitKind))); + for (prodml23__BusinessUnitKind *p = a; p && n--; ++p) + soap_default_prodml23__BusinessUnitKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BusinessUnitKind(struct soap *soap, const prodml22__BusinessUnitKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BusinessUnitKind(struct soap *soap, const prodml23__BusinessUnitKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__BusinessUnitKind(soap, tag ? tag : "prodml22:BusinessUnitKind", -2, a, type)) + if (soap_out_prodml23__BusinessUnitKind(soap, tag ? tag : "prodml23:BusinessUnitKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BusinessUnitKind * SOAP_FMAC4 soap_get_prodml22__BusinessUnitKind(struct soap *soap, prodml22__BusinessUnitKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BusinessUnitKind * SOAP_FMAC4 soap_get_prodml23__BusinessUnitKind(struct soap *soap, prodml23__BusinessUnitKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BusinessUnitKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__BusinessUnitKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__SaturationKind[] = -{ { (LONG64)prodml22__SaturationKind::saturated, "saturated" }, - { (LONG64)prodml22__SaturationKind::undersaturated, "undersaturated" }, +static const struct soap_code_map soap_codes_prodml23__SaturationKind[] = +{ { (LONG64)prodml23__SaturationKind::saturated, "saturated" }, + { (LONG64)prodml23__SaturationKind::undersaturated, "undersaturated" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SaturationKind2s(struct soap *soap, prodml22__SaturationKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SaturationKind2s(struct soap *soap, prodml23__SaturationKind n) { - const char *s = soap_code_str(soap_codes_prodml22__SaturationKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__SaturationKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationKind(struct soap *soap, const char *tag, int id, const prodml22__SaturationKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationKind(struct soap *soap, const char *tag, int id, const prodml23__SaturationKind *a, const char *type) { if (!type) - type = "prodml22:SaturationKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind), type) || soap_send(soap, soap_prodml22__SaturationKind2s(soap, *a))) + type = "prodml23:SaturationKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind), type) || soap_send(soap, soap_prodml23__SaturationKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SaturationKind(struct soap *soap, const char *s, prodml22__SaturationKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SaturationKind(struct soap *soap, const char *s, prodml23__SaturationKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__SaturationKind, s); + map = soap_code(soap_codes_prodml23__SaturationKind, s); if (map) - *a = (prodml22__SaturationKind)map->code; + *a = (prodml23__SaturationKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69537,110 +69532,110 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SaturationKind(struct soap *soap, c return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationKind * SOAP_FMAC4 soap_in_prodml22__SaturationKind(struct soap *soap, const char *tag, prodml22__SaturationKind *a, const char *type) +SOAP_FMAC3 prodml23__SaturationKind * SOAP_FMAC4 soap_in_prodml23__SaturationKind(struct soap *soap, const char *tag, prodml23__SaturationKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__SaturationKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind, sizeof(prodml22__SaturationKind), NULL, NULL, NULL, NULL); + a = (prodml23__SaturationKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind, sizeof(prodml23__SaturationKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__SaturationKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__SaturationKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__SaturationKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind, sizeof(prodml22__SaturationKind), 0, NULL, NULL); + { a = (prodml23__SaturationKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind, sizeof(prodml23__SaturationKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__SaturationKind * SOAP_FMAC4 soap_new_prodml22__SaturationKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__SaturationKind * SOAP_FMAC4 soap_new_prodml23__SaturationKind(struct soap *soap, int n) { - prodml22__SaturationKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__SaturationKind))); - for (prodml22__SaturationKind *p = a; p && n--; ++p) - soap_default_prodml22__SaturationKind(soap, p); + prodml23__SaturationKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__SaturationKind))); + for (prodml23__SaturationKind *p = a; p && n--; ++p) + soap_default_prodml23__SaturationKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SaturationKind(struct soap *soap, const prodml22__SaturationKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SaturationKind(struct soap *soap, const prodml23__SaturationKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__SaturationKind(soap, tag ? tag : "prodml22:SaturationKind", -2, a, type)) + if (soap_out_prodml23__SaturationKind(soap, tag ? tag : "prodml23:SaturationKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SaturationKind * SOAP_FMAC4 soap_get_prodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationKind * SOAP_FMAC4 soap_get_prodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SaturationKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__SaturationKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__PvtModelParameterKind[] = -{ { (LONG64)prodml22__PvtModelParameterKind::b0, "b0" }, - { (LONG64)prodml22__PvtModelParameterKind::b1, "b1" }, - { (LONG64)prodml22__PvtModelParameterKind::b2, "b2" }, - { (LONG64)prodml22__PvtModelParameterKind::c1, "c1" }, - { (LONG64)prodml22__PvtModelParameterKind::c2, "c2" }, - { (LONG64)prodml22__PvtModelParameterKind::d1, "d1" }, - { (LONG64)prodml22__PvtModelParameterKind::d2, "d2" }, - { (LONG64)prodml22__PvtModelParameterKind::e1, "e1" }, - { (LONG64)prodml22__PvtModelParameterKind::e2, "e2" }, - { (LONG64)prodml22__PvtModelParameterKind::f1, "f1" }, - { (LONG64)prodml22__PvtModelParameterKind::f2, "f2" }, - { (LONG64)prodml22__PvtModelParameterKind::g1, "g1" }, - { (LONG64)prodml22__PvtModelParameterKind::g2, "g2" }, - { (LONG64)prodml22__PvtModelParameterKind::h1, "h1" }, - { (LONG64)prodml22__PvtModelParameterKind::h2, "h2" }, - { (LONG64)prodml22__PvtModelParameterKind::a0, "a0" }, - { (LONG64)prodml22__PvtModelParameterKind::a1, "a1" }, - { (LONG64)prodml22__PvtModelParameterKind::a2, "a2" }, - { (LONG64)prodml22__PvtModelParameterKind::a3, "a3" }, - { (LONG64)prodml22__PvtModelParameterKind::a4, "a4" }, - { (LONG64)prodml22__PvtModelParameterKind::a5, "a5" }, - { (LONG64)prodml22__PvtModelParameterKind::a6, "a6" }, - { (LONG64)prodml22__PvtModelParameterKind::a7, "a7" }, - { (LONG64)prodml22__PvtModelParameterKind::a8, "a8" }, - { (LONG64)prodml22__PvtModelParameterKind::a9, "a9" }, - { (LONG64)prodml22__PvtModelParameterKind::a10, "a10" }, - { (LONG64)prodml22__PvtModelParameterKind::c0, "c0" }, - { (LONG64)prodml22__PvtModelParameterKind::d0, "d0" }, - { (LONG64)prodml22__PvtModelParameterKind::e0, "e0" }, - { (LONG64)prodml22__PvtModelParameterKind::f0, "f0" }, - { (LONG64)prodml22__PvtModelParameterKind::g0, "g0" }, - { (LONG64)prodml22__PvtModelParameterKind::h0, "h0" }, +static const struct soap_code_map soap_codes_prodml23__PvtModelParameterKind[] = +{ { (LONG64)prodml23__PvtModelParameterKind::b0, "b0" }, + { (LONG64)prodml23__PvtModelParameterKind::b1, "b1" }, + { (LONG64)prodml23__PvtModelParameterKind::b2, "b2" }, + { (LONG64)prodml23__PvtModelParameterKind::c1, "c1" }, + { (LONG64)prodml23__PvtModelParameterKind::c2, "c2" }, + { (LONG64)prodml23__PvtModelParameterKind::d1, "d1" }, + { (LONG64)prodml23__PvtModelParameterKind::d2, "d2" }, + { (LONG64)prodml23__PvtModelParameterKind::e1, "e1" }, + { (LONG64)prodml23__PvtModelParameterKind::e2, "e2" }, + { (LONG64)prodml23__PvtModelParameterKind::f1, "f1" }, + { (LONG64)prodml23__PvtModelParameterKind::f2, "f2" }, + { (LONG64)prodml23__PvtModelParameterKind::g1, "g1" }, + { (LONG64)prodml23__PvtModelParameterKind::g2, "g2" }, + { (LONG64)prodml23__PvtModelParameterKind::h1, "h1" }, + { (LONG64)prodml23__PvtModelParameterKind::h2, "h2" }, + { (LONG64)prodml23__PvtModelParameterKind::a0, "a0" }, + { (LONG64)prodml23__PvtModelParameterKind::a1, "a1" }, + { (LONG64)prodml23__PvtModelParameterKind::a2, "a2" }, + { (LONG64)prodml23__PvtModelParameterKind::a3, "a3" }, + { (LONG64)prodml23__PvtModelParameterKind::a4, "a4" }, + { (LONG64)prodml23__PvtModelParameterKind::a5, "a5" }, + { (LONG64)prodml23__PvtModelParameterKind::a6, "a6" }, + { (LONG64)prodml23__PvtModelParameterKind::a7, "a7" }, + { (LONG64)prodml23__PvtModelParameterKind::a8, "a8" }, + { (LONG64)prodml23__PvtModelParameterKind::a9, "a9" }, + { (LONG64)prodml23__PvtModelParameterKind::a10, "a10" }, + { (LONG64)prodml23__PvtModelParameterKind::c0, "c0" }, + { (LONG64)prodml23__PvtModelParameterKind::d0, "d0" }, + { (LONG64)prodml23__PvtModelParameterKind::e0, "e0" }, + { (LONG64)prodml23__PvtModelParameterKind::f0, "f0" }, + { (LONG64)prodml23__PvtModelParameterKind::g0, "g0" }, + { (LONG64)prodml23__PvtModelParameterKind::h0, "h0" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PvtModelParameterKind2s(struct soap *soap, prodml22__PvtModelParameterKind n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PvtModelParameterKind2s(struct soap *soap, prodml23__PvtModelParameterKind n) { - const char *s = soap_code_str(soap_codes_prodml22__PvtModelParameterKind, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__PvtModelParameterKind, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameterKind(struct soap *soap, const char *tag, int id, const prodml22__PvtModelParameterKind *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameterKind(struct soap *soap, const char *tag, int id, const prodml23__PvtModelParameterKind *a, const char *type) { if (!type) - type = "prodml22:PvtModelParameterKind"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind), type) || soap_send(soap, soap_prodml22__PvtModelParameterKind2s(soap, *a))) + type = "prodml23:PvtModelParameterKind"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind), type) || soap_send(soap, soap_prodml23__PvtModelParameterKind2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PvtModelParameterKind(struct soap *soap, const char *s, prodml22__PvtModelParameterKind *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PvtModelParameterKind(struct soap *soap, const char *s, prodml23__PvtModelParameterKind *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__PvtModelParameterKind, s); + map = soap_code(soap_codes_prodml23__PvtModelParameterKind, s); if (map) - *a = (prodml22__PvtModelParameterKind)map->code; + *a = (prodml23__PvtModelParameterKind)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69648,112 +69643,112 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PvtModelParameterKind(struct soap * return SOAP_OK; } -SOAP_FMAC3 prodml22__PvtModelParameterKind * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterKind(struct soap *soap, const char *tag, prodml22__PvtModelParameterKind *a, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameterKind * SOAP_FMAC4 soap_in_prodml23__PvtModelParameterKind(struct soap *soap, const char *tag, prodml23__PvtModelParameterKind *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__PvtModelParameterKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind, sizeof(prodml22__PvtModelParameterKind), NULL, NULL, NULL, NULL); + a = (prodml23__PvtModelParameterKind*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind, sizeof(prodml23__PvtModelParameterKind), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__PvtModelParameterKind(soap, soap_value(soap), a); + { int err = soap_s2prodml23__PvtModelParameterKind(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__PvtModelParameterKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind, sizeof(prodml22__PvtModelParameterKind), 0, NULL, NULL); + { a = (prodml23__PvtModelParameterKind *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind, sizeof(prodml23__PvtModelParameterKind), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__PvtModelParameterKind * SOAP_FMAC4 soap_new_prodml22__PvtModelParameterKind(struct soap *soap, int n) +SOAP_FMAC3 prodml23__PvtModelParameterKind * SOAP_FMAC4 soap_new_prodml23__PvtModelParameterKind(struct soap *soap, int n) { - prodml22__PvtModelParameterKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__PvtModelParameterKind))); - for (prodml22__PvtModelParameterKind *p = a; p && n--; ++p) - soap_default_prodml22__PvtModelParameterKind(soap, p); + prodml23__PvtModelParameterKind *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__PvtModelParameterKind))); + for (prodml23__PvtModelParameterKind *p = a; p && n--; ++p) + soap_default_prodml23__PvtModelParameterKind(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PvtModelParameterKind(struct soap *soap, const prodml22__PvtModelParameterKind *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PvtModelParameterKind(struct soap *soap, const prodml23__PvtModelParameterKind *a, const char *tag, const char *type) { - if (soap_out_prodml22__PvtModelParameterKind(soap, tag ? tag : "prodml22:PvtModelParameterKind", -2, a, type)) + if (soap_out_prodml23__PvtModelParameterKind(soap, tag ? tag : "prodml23:PvtModelParameterKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PvtModelParameterKind * SOAP_FMAC4 soap_get_prodml22__PvtModelParameterKind(struct soap *soap, prodml22__PvtModelParameterKind *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameterKind * SOAP_FMAC4 soap_get_prodml23__PvtModelParameterKind(struct soap *soap, prodml23__PvtModelParameterKind *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PvtModelParameterKind(soap, tag, p, type))) + if ((p = soap_in_prodml23__PvtModelParameterKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__OutputFluidProperty[] = -{ { (LONG64)prodml22__OutputFluidProperty::Compressibility, "Compressibility" }, - { (LONG64)prodml22__OutputFluidProperty::Density, "Density" }, - { (LONG64)prodml22__OutputFluidProperty::Derivative_x0020of_x0020Density_x0020w_x002er_x002et_x0020Pressure, "Derivative of Density w.r.t Pressure" }, - { (LONG64)prodml22__OutputFluidProperty::Derivative_x0020of_x0020Density_x0020w_x002er_x002et_x0020Temperature, "Derivative of Density w.r.t Temperature" }, - { (LONG64)prodml22__OutputFluidProperty::Enthalpy, "Enthalpy" }, - { (LONG64)prodml22__OutputFluidProperty::Entropy, "Entropy" }, - { (LONG64)prodml22__OutputFluidProperty::Expansion_x0020Factor, "Expansion Factor" }, - { (LONG64)prodml22__OutputFluidProperty::Formation_x0020Volume_x0020Factor, "Formation Volume Factor" }, - { (LONG64)prodml22__OutputFluidProperty::Gas_Oil_x0020Interfacial_x0020Tension, "Gas-Oil Interfacial Tension" }, - { (LONG64)prodml22__OutputFluidProperty::Gas_Water_x0020Interfacial_x0020Tension, "Gas-Water Interfacial Tension" }, - { (LONG64)prodml22__OutputFluidProperty::Index, "Index" }, - { (LONG64)prodml22__OutputFluidProperty::K_x0020value, "K value" }, - { (LONG64)prodml22__OutputFluidProperty::Misc_x0020Bank_x0020Critical_x0020Solvent_x0020Saturation, "Misc Bank Critical Solvent Saturation" }, - { (LONG64)prodml22__OutputFluidProperty::Misc_x0020Bank_x0020Phase_x0020Density, "Misc Bank Phase Density" }, - { (LONG64)prodml22__OutputFluidProperty::Misc_x0020Bank_x0020Phase_x0020Viscosity, "Misc Bank Phase Viscosity" }, - { (LONG64)prodml22__OutputFluidProperty::Miscibility_x0020Parameter_x0020_x0028Alpha_x0029, "Miscibility Parameter (Alpha)" }, - { (LONG64)prodml22__OutputFluidProperty::Mixing_x0020Parameter_x0020Oil_Gas, "Mixing Parameter Oil-Gas" }, - { (LONG64)prodml22__OutputFluidProperty::Normalized_x0020Pseudo_x0020Pressure, "Normalized Pseudo Pressure" }, - { (LONG64)prodml22__OutputFluidProperty::Oil_Gas_x0020Ratio, "Oil-Gas Ratio" }, - { (LONG64)prodml22__OutputFluidProperty::Oil_Water_x0020Interfacial_x0020Tension, "Oil-Water Interfacial Tension" }, - { (LONG64)prodml22__OutputFluidProperty::Parachor, "Parachor" }, - { (LONG64)prodml22__OutputFluidProperty::Pressure, "Pressure" }, - { (LONG64)prodml22__OutputFluidProperty::Pseudo_x0020Pressure, "Pseudo Pressure" }, - { (LONG64)prodml22__OutputFluidProperty::P_T_x0020Cross_x0020Term, "P-T Cross Term" }, - { (LONG64)prodml22__OutputFluidProperty::Saturation_x0020Pressure, "Saturation Pressure" }, - { (LONG64)prodml22__OutputFluidProperty::Solution_x0020GOR, "Solution GOR" }, - { (LONG64)prodml22__OutputFluidProperty::Solvent_x0020Density, "Solvent Density" }, - { (LONG64)prodml22__OutputFluidProperty::Specific_x0020Heat, "Specific Heat" }, - { (LONG64)prodml22__OutputFluidProperty::Temperature, "Temperature" }, - { (LONG64)prodml22__OutputFluidProperty::Thermal_x0020Conductivity, "Thermal Conductivity" }, - { (LONG64)prodml22__OutputFluidProperty::Viscosity, "Viscosity" }, - { (LONG64)prodml22__OutputFluidProperty::Viscosity_x0020Compressibility, "Viscosity Compressibility" }, - { (LONG64)prodml22__OutputFluidProperty::Water_x0020vapor_x0020mass_x0020fraction_x0020in_x0020gas_x0020phase, "Water vapor mass fraction in gas phase" }, - { (LONG64)prodml22__OutputFluidProperty::Z_x0020Factor, "Z Factor" }, +static const struct soap_code_map soap_codes_prodml23__OutputFluidProperty[] = +{ { (LONG64)prodml23__OutputFluidProperty::Compressibility, "Compressibility" }, + { (LONG64)prodml23__OutputFluidProperty::Density, "Density" }, + { (LONG64)prodml23__OutputFluidProperty::Derivative_x0020of_x0020Density_x0020w_x002er_x002et_x0020Pressure, "Derivative of Density w.r.t Pressure" }, + { (LONG64)prodml23__OutputFluidProperty::Derivative_x0020of_x0020Density_x0020w_x002er_x002et_x0020Temperature, "Derivative of Density w.r.t Temperature" }, + { (LONG64)prodml23__OutputFluidProperty::Enthalpy, "Enthalpy" }, + { (LONG64)prodml23__OutputFluidProperty::Entropy, "Entropy" }, + { (LONG64)prodml23__OutputFluidProperty::Expansion_x0020Factor, "Expansion Factor" }, + { (LONG64)prodml23__OutputFluidProperty::Formation_x0020Volume_x0020Factor, "Formation Volume Factor" }, + { (LONG64)prodml23__OutputFluidProperty::Gas_Oil_x0020Interfacial_x0020Tension, "Gas-Oil Interfacial Tension" }, + { (LONG64)prodml23__OutputFluidProperty::Gas_Water_x0020Interfacial_x0020Tension, "Gas-Water Interfacial Tension" }, + { (LONG64)prodml23__OutputFluidProperty::Index, "Index" }, + { (LONG64)prodml23__OutputFluidProperty::K_x0020value, "K value" }, + { (LONG64)prodml23__OutputFluidProperty::Misc_x0020Bank_x0020Critical_x0020Solvent_x0020Saturation, "Misc Bank Critical Solvent Saturation" }, + { (LONG64)prodml23__OutputFluidProperty::Misc_x0020Bank_x0020Phase_x0020Density, "Misc Bank Phase Density" }, + { (LONG64)prodml23__OutputFluidProperty::Misc_x0020Bank_x0020Phase_x0020Viscosity, "Misc Bank Phase Viscosity" }, + { (LONG64)prodml23__OutputFluidProperty::Miscibility_x0020Parameter_x0020_x0028Alpha_x0029, "Miscibility Parameter (Alpha)" }, + { (LONG64)prodml23__OutputFluidProperty::Mixing_x0020Parameter_x0020Oil_Gas, "Mixing Parameter Oil-Gas" }, + { (LONG64)prodml23__OutputFluidProperty::Normalized_x0020Pseudo_x0020Pressure, "Normalized Pseudo Pressure" }, + { (LONG64)prodml23__OutputFluidProperty::Oil_Gas_x0020Ratio, "Oil-Gas Ratio" }, + { (LONG64)prodml23__OutputFluidProperty::Oil_Water_x0020Interfacial_x0020Tension, "Oil-Water Interfacial Tension" }, + { (LONG64)prodml23__OutputFluidProperty::Parachor, "Parachor" }, + { (LONG64)prodml23__OutputFluidProperty::Pressure, "Pressure" }, + { (LONG64)prodml23__OutputFluidProperty::Pseudo_x0020Pressure, "Pseudo Pressure" }, + { (LONG64)prodml23__OutputFluidProperty::P_T_x0020Cross_x0020Term, "P-T Cross Term" }, + { (LONG64)prodml23__OutputFluidProperty::Saturation_x0020Pressure, "Saturation Pressure" }, + { (LONG64)prodml23__OutputFluidProperty::Solution_x0020GOR, "Solution GOR" }, + { (LONG64)prodml23__OutputFluidProperty::Solvent_x0020Density, "Solvent Density" }, + { (LONG64)prodml23__OutputFluidProperty::Specific_x0020Heat, "Specific Heat" }, + { (LONG64)prodml23__OutputFluidProperty::Temperature, "Temperature" }, + { (LONG64)prodml23__OutputFluidProperty::Thermal_x0020Conductivity, "Thermal Conductivity" }, + { (LONG64)prodml23__OutputFluidProperty::Viscosity, "Viscosity" }, + { (LONG64)prodml23__OutputFluidProperty::Viscosity_x0020Compressibility, "Viscosity Compressibility" }, + { (LONG64)prodml23__OutputFluidProperty::Water_x0020vapor_x0020mass_x0020fraction_x0020in_x0020gas_x0020phase, "Water vapor mass fraction in gas phase" }, + { (LONG64)prodml23__OutputFluidProperty::Z_x0020Factor, "Z Factor" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__OutputFluidProperty2s(struct soap *soap, prodml22__OutputFluidProperty n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__OutputFluidProperty2s(struct soap *soap, prodml23__OutputFluidProperty n) { - const char *s = soap_code_str(soap_codes_prodml22__OutputFluidProperty, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__OutputFluidProperty, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputFluidProperty(struct soap *soap, const char *tag, int id, const prodml22__OutputFluidProperty *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputFluidProperty(struct soap *soap, const char *tag, int id, const prodml23__OutputFluidProperty *a, const char *type) { if (!type) - type = "prodml22:OutputFluidProperty"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty), type) || soap_send(soap, soap_prodml22__OutputFluidProperty2s(soap, *a))) + type = "prodml23:OutputFluidProperty"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty), type) || soap_send(soap, soap_prodml23__OutputFluidProperty2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__OutputFluidProperty(struct soap *soap, const char *s, prodml22__OutputFluidProperty *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__OutputFluidProperty(struct soap *soap, const char *s, prodml23__OutputFluidProperty *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__OutputFluidProperty, s); + map = soap_code(soap_codes_prodml23__OutputFluidProperty, s); if (map) - *a = (prodml22__OutputFluidProperty)map->code; + *a = (prodml23__OutputFluidProperty)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69761,80 +69756,80 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__OutputFluidProperty(struct soap *so return SOAP_OK; } -SOAP_FMAC3 prodml22__OutputFluidProperty * SOAP_FMAC4 soap_in_prodml22__OutputFluidProperty(struct soap *soap, const char *tag, prodml22__OutputFluidProperty *a, const char *type) +SOAP_FMAC3 prodml23__OutputFluidProperty * SOAP_FMAC4 soap_in_prodml23__OutputFluidProperty(struct soap *soap, const char *tag, prodml23__OutputFluidProperty *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__OutputFluidProperty*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty, sizeof(prodml22__OutputFluidProperty), NULL, NULL, NULL, NULL); + a = (prodml23__OutputFluidProperty*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty, sizeof(prodml23__OutputFluidProperty), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__OutputFluidProperty(soap, soap_value(soap), a); + { int err = soap_s2prodml23__OutputFluidProperty(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__OutputFluidProperty *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty, sizeof(prodml22__OutputFluidProperty), 0, NULL, NULL); + { a = (prodml23__OutputFluidProperty *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty, sizeof(prodml23__OutputFluidProperty), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__OutputFluidProperty * SOAP_FMAC4 soap_new_prodml22__OutputFluidProperty(struct soap *soap, int n) +SOAP_FMAC3 prodml23__OutputFluidProperty * SOAP_FMAC4 soap_new_prodml23__OutputFluidProperty(struct soap *soap, int n) { - prodml22__OutputFluidProperty *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__OutputFluidProperty))); - for (prodml22__OutputFluidProperty *p = a; p && n--; ++p) - soap_default_prodml22__OutputFluidProperty(soap, p); + prodml23__OutputFluidProperty *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__OutputFluidProperty))); + for (prodml23__OutputFluidProperty *p = a; p && n--; ++p) + soap_default_prodml23__OutputFluidProperty(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OutputFluidProperty(struct soap *soap, const prodml22__OutputFluidProperty *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OutputFluidProperty(struct soap *soap, const prodml23__OutputFluidProperty *a, const char *tag, const char *type) { - if (soap_out_prodml22__OutputFluidProperty(soap, tag ? tag : "prodml22:OutputFluidProperty", -2, a, type)) + if (soap_out_prodml23__OutputFluidProperty(soap, tag ? tag : "prodml23:OutputFluidProperty", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OutputFluidProperty * SOAP_FMAC4 soap_get_prodml22__OutputFluidProperty(struct soap *soap, prodml22__OutputFluidProperty *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OutputFluidProperty * SOAP_FMAC4 soap_get_prodml23__OutputFluidProperty(struct soap *soap, prodml23__OutputFluidProperty *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OutputFluidProperty(soap, tag, p, type))) + if ((p = soap_in_prodml23__OutputFluidProperty(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -static const struct soap_code_map soap_codes_prodml22__MixingRule[] = -{ { (LONG64)prodml22__MixingRule::asymmetric, "asymmetric" }, - { (LONG64)prodml22__MixingRule::classical, "classical" }, +static const struct soap_code_map soap_codes_prodml23__MixingRule[] = +{ { (LONG64)prodml23__MixingRule::asymmetric, "asymmetric" }, + { (LONG64)prodml23__MixingRule::classical, "classical" }, { 0, NULL } }; -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__MixingRule2s(struct soap *soap, prodml22__MixingRule n) +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__MixingRule2s(struct soap *soap, prodml23__MixingRule n) { - const char *s = soap_code_str(soap_codes_prodml22__MixingRule, (long)n); + const char *s = soap_code_str(soap_codes_prodml23__MixingRule, (long)n); if (s) return s; return soap_long2s(soap, (long)n); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MixingRule(struct soap *soap, const char *tag, int id, const prodml22__MixingRule *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MixingRule(struct soap *soap, const char *tag, int id, const prodml23__MixingRule *a, const char *type) { if (!type) - type = "prodml22:MixingRule"; - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule), type) || soap_send(soap, soap_prodml22__MixingRule2s(soap, *a))) + type = "prodml23:MixingRule"; + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule), type) || soap_send(soap, soap_prodml23__MixingRule2s(soap, *a))) return soap->error; return soap_element_end_out(soap, tag); } -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__MixingRule(struct soap *soap, const char *s, prodml22__MixingRule *a) +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__MixingRule(struct soap *soap, const char *s, prodml23__MixingRule *a) { const struct soap_code_map *map; if (!s) return soap->error; - map = soap_code(soap_codes_prodml22__MixingRule, s); + map = soap_code(soap_codes_prodml23__MixingRule, s); if (map) - *a = (prodml22__MixingRule)map->code; + *a = (prodml23__MixingRule)map->code; else if (!*s) return soap->error = SOAP_EMPTY; else @@ -69842,44 +69837,44 @@ SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__MixingRule(struct soap *soap, const return SOAP_OK; } -SOAP_FMAC3 prodml22__MixingRule * SOAP_FMAC4 soap_in_prodml22__MixingRule(struct soap *soap, const char *tag, prodml22__MixingRule *a, const char *type) +SOAP_FMAC3 prodml23__MixingRule * SOAP_FMAC4 soap_in_prodml23__MixingRule(struct soap *soap, const char *tag, prodml23__MixingRule *a, const char *type) { if (soap_element_begin_in(soap, tag, 0, type)) return NULL; - a = (prodml22__MixingRule*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule, sizeof(prodml22__MixingRule), NULL, NULL, NULL, NULL); + a = (prodml23__MixingRule*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule, sizeof(prodml23__MixingRule), NULL, NULL, NULL, NULL); if (!a) return NULL; if (*soap->href != '#') - { int err = soap_s2prodml22__MixingRule(soap, soap_value(soap), a); + { int err = soap_s2prodml23__MixingRule(soap, soap_value(soap), a); if ((soap->body && soap_element_end_in(soap, tag)) || err) return NULL; } else - { a = (prodml22__MixingRule *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule, sizeof(prodml22__MixingRule), 0, NULL, NULL); + { a = (prodml23__MixingRule *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule, sizeof(prodml23__MixingRule), 0, NULL, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 prodml22__MixingRule * SOAP_FMAC4 soap_new_prodml22__MixingRule(struct soap *soap, int n) +SOAP_FMAC3 prodml23__MixingRule * SOAP_FMAC4 soap_new_prodml23__MixingRule(struct soap *soap, int n) { - prodml22__MixingRule *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml22__MixingRule))); - for (prodml22__MixingRule *p = a; p && n--; ++p) - soap_default_prodml22__MixingRule(soap, p); + prodml23__MixingRule *a = static_cast(soap_malloc(soap, (n = (n < 0 ? 1 : n)) * sizeof(prodml23__MixingRule))); + for (prodml23__MixingRule *p = a; p && n--; ++p) + soap_default_prodml23__MixingRule(soap, p); return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__MixingRule(struct soap *soap, const prodml22__MixingRule *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__MixingRule(struct soap *soap, const prodml23__MixingRule *a, const char *tag, const char *type) { - if (soap_out_prodml22__MixingRule(soap, tag ? tag : "prodml22:MixingRule", -2, a, type)) + if (soap_out_prodml23__MixingRule(soap, tag ? tag : "prodml23:MixingRule", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MixingRule * SOAP_FMAC4 soap_get_prodml22__MixingRule(struct soap *soap, prodml22__MixingRule *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MixingRule * SOAP_FMAC4 soap_get_prodml23__MixingRule(struct soap *soap, prodml23__MixingRule *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MixingRule(soap, tag, p, type))) + if ((p = soap_in_prodml23__MixingRule(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -104696,156 +104691,156 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put__resqml22__BoundaryFeature(struct soap *soap, return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__TimeSeriesStatistic(struct soap *soap, const prodml22__TimeSeriesStatistic *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__TimeSeriesStatistic(struct soap *soap, const prodml23__TimeSeriesStatistic *a, const char *tag, const char *type) { - if (soap_out__prodml22__TimeSeriesStatistic(soap, tag ? tag : "prodml22:TimeSeriesStatistic", -2, a, type)) + if (soap_out__prodml23__TimeSeriesStatistic(soap, tag ? tag : "prodml23:TimeSeriesStatistic", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__TimeSeriesData(struct soap *soap, const prodml22__TimeSeriesData *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__TimeSeriesData(struct soap *soap, const prodml23__TimeSeriesData *a, const char *tag, const char *type) { - if (soap_out__prodml22__TimeSeriesData(soap, tag ? tag : "prodml22:TimeSeriesData", -2, a, type)) + if (soap_out__prodml23__TimeSeriesData(soap, tag ? tag : "prodml23:TimeSeriesData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ProductFlowModel(struct soap *soap, const prodml22__ProductFlowModel *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ProductFlowModel(struct soap *soap, const prodml23__ProductFlowModel *a, const char *tag, const char *type) { - if (soap_out__prodml22__ProductFlowModel(soap, tag ? tag : "prodml22:ProductFlowModel", -2, a, type)) + if (soap_out__prodml23__ProductFlowModel(soap, tag ? tag : "prodml23:ProductFlowModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ProductVolume(struct soap *soap, const prodml22__ProductVolume *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ProductVolume(struct soap *soap, const prodml23__ProductVolume *a, const char *tag, const char *type) { - if (soap_out__prodml22__ProductVolume(soap, tag ? tag : "prodml22:ProductVolume", -2, a, type)) + if (soap_out__prodml23__ProductVolume(soap, tag ? tag : "prodml23:ProductVolume", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FlowTestJob(struct soap *soap, const prodml22__FlowTestJob *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FlowTestJob(struct soap *soap, const prodml23__FlowTestJob *a, const char *tag, const char *type) { - if (soap_out__prodml22__FlowTestJob(soap, tag ? tag : "prodml22:FlowTestJob", -2, a, type)) + if (soap_out__prodml23__FlowTestJob(soap, tag ? tag : "prodml23:FlowTestJob", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSampleAcquisitionJob(struct soap *soap, const prodml22__FluidSampleAcquisitionJob *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSampleAcquisitionJob(struct soap *soap, const prodml23__FluidSampleAcquisitionJob *a, const char *tag, const char *type) { - if (soap_out__prodml22__FluidSampleAcquisitionJob(soap, tag ? tag : "prodml22:FluidSampleAcquisitionJob", -2, a, type)) + if (soap_out__prodml23__FluidSampleAcquisitionJob(soap, tag ? tag : "prodml23:FluidSampleAcquisitionJob", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSampleContainer(struct soap *soap, const prodml22__FluidSampleContainer *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSampleContainer(struct soap *soap, const prodml23__FluidSampleContainer *a, const char *tag, const char *type) { - if (soap_out__prodml22__FluidSampleContainer(soap, tag ? tag : "prodml22:FluidSampleContainer", -2, a, type)) + if (soap_out__prodml23__FluidSampleContainer(soap, tag ? tag : "prodml23:FluidSampleContainer", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSample(struct soap *soap, const prodml22__FluidSample *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSample(struct soap *soap, const prodml23__FluidSample *a, const char *tag, const char *type) { - if (soap_out__prodml22__FluidSample(soap, tag ? tag : "prodml22:FluidSample", -2, a, type)) + if (soap_out__prodml23__FluidSample(soap, tag ? tag : "prodml23:FluidSample", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__PtaDeconvolution(struct soap *soap, const prodml22__PtaDeconvolution *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__PtaDeconvolution(struct soap *soap, const prodml23__PtaDeconvolution *a, const char *tag, const char *type) { - if (soap_out__prodml22__PtaDeconvolution(soap, tag ? tag : "prodml22:PtaDeconvolution", -2, a, type)) + if (soap_out__prodml23__PtaDeconvolution(soap, tag ? tag : "prodml23:PtaDeconvolution", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__PtaDataPreProcess(struct soap *soap, const prodml22__PtaDataPreProcess *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__PtaDataPreProcess(struct soap *soap, const prodml23__PtaDataPreProcess *a, const char *tag, const char *type) { - if (soap_out__prodml22__PtaDataPreProcess(soap, tag ? tag : "prodml22:PtaDataPreProcess", -2, a, type)) + if (soap_out__prodml23__PtaDataPreProcess(soap, tag ? tag : "prodml23:PtaDataPreProcess", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__PressureTransientAnalysis(struct soap *soap, const prodml22__PressureTransientAnalysis *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__PressureTransientAnalysis(struct soap *soap, const prodml23__PressureTransientAnalysis *a, const char *tag, const char *type) { - if (soap_out__prodml22__PressureTransientAnalysis(soap, tag ? tag : "prodml22:PressureTransientAnalysis", -2, a, type)) + if (soap_out__prodml23__PressureTransientAnalysis(soap, tag ? tag : "prodml23:PressureTransientAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ReportingHierarchy(struct soap *soap, const prodml22__ReportingHierarchy *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ReportingHierarchy(struct soap *soap, const prodml23__ReportingHierarchy *a, const char *tag, const char *type) { - if (soap_out__prodml22__ReportingHierarchy(soap, tag ? tag : "prodml22:ReportingHierarchy", -2, a, type)) + if (soap_out__prodml23__ReportingHierarchy(soap, tag ? tag : "prodml23:ReportingHierarchy", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ReportingEntity(struct soap *soap, const prodml22__ReportingEntity *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ReportingEntity(struct soap *soap, const prodml23__ReportingEntity *a, const char *tag, const char *type) { - if (soap_out__prodml22__ReportingEntity(soap, tag ? tag : "prodml22:ReportingEntity", -2, a, type)) + if (soap_out__prodml23__ReportingEntity(soap, tag ? tag : "prodml23:ReportingEntity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__Facility(struct soap *soap, const prodml22__Facility *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__Facility(struct soap *soap, const prodml23__Facility *a, const char *tag, const char *type) { - if (soap_out__prodml22__Facility(soap, tag ? tag : "prodml22:Facility", -2, a, type)) + if (soap_out__prodml23__Facility(soap, tag ? tag : "prodml23:Facility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FlowTestActivity(struct soap *soap, const prodml22__FlowTestActivity *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FlowTestActivity(struct soap *soap, const prodml23__FlowTestActivity *a, const char *tag, const char *type) { - if (soap_out__prodml22__FlowTestActivity(soap, tag ? tag : "prodml22:FlowTestActivity", -2, a, type)) + if (soap_out__prodml23__FlowTestActivity(soap, tag ? tag : "prodml23:FlowTestActivity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ChannelSet(struct soap *soap, const prodml22__ChannelSet *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ChannelSet(struct soap *soap, const prodml23__ChannelSet *a, const char *tag, const char *type) { - if (soap_out__prodml22__ChannelSet(soap, tag ? tag : "prodml22:ChannelSet", -2, a, type)) + if (soap_out__prodml23__ChannelSet(soap, tag ? tag : "prodml23:ChannelSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__Channel(struct soap *soap, const prodml22__Channel *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__Channel(struct soap *soap, const prodml23__Channel *a, const char *tag, const char *type) { - if (soap_out__prodml22__Channel(soap, tag ? tag : "prodml22:Channel", -2, a, type)) + if (soap_out__prodml23__Channel(soap, tag ? tag : "prodml23:Channel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSystem(struct soap *soap, const prodml22__FluidSystem *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSystem(struct soap *soap, const prodml23__FluidSystem *a, const char *tag, const char *type) { - if (soap_out__prodml22__FluidSystem(soap, tag ? tag : "prodml22:FluidSystem", -2, a, type)) + if (soap_out__prodml23__FluidSystem(soap, tag ? tag : "prodml23:FluidSystem", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__WaterAnalysis(struct soap *soap, const prodml22__WaterAnalysis *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__WaterAnalysis(struct soap *soap, const prodml23__WaterAnalysis *a, const char *tag, const char *type) { - if (soap_out__prodml22__WaterAnalysis(soap, tag ? tag : "prodml22:WaterAnalysis", -2, a, type)) + if (soap_out__prodml23__WaterAnalysis(soap, tag ? tag : "prodml23:WaterAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__HydrocarbonAnalysis(struct soap *soap, const prodml22__HydrocarbonAnalysis *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__HydrocarbonAnalysis(struct soap *soap, const prodml23__HydrocarbonAnalysis *a, const char *tag, const char *type) { - if (soap_out__prodml22__HydrocarbonAnalysis(soap, tag ? tag : "prodml22:HydrocarbonAnalysis", -2, a, type)) + if (soap_out__prodml23__HydrocarbonAnalysis(soap, tag ? tag : "prodml23:HydrocarbonAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidAnalysis(struct soap *soap, const prodml22__FluidAnalysis *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidAnalysis(struct soap *soap, const prodml23__FluidAnalysis *a, const char *tag, const char *type) { - if (soap_out__prodml22__FluidAnalysis(soap, tag ? tag : "prodml22:FluidAnalysis", -2, a, type)) + if (soap_out__prodml23__FluidAnalysis(soap, tag ? tag : "prodml23:FluidAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidCharacterization(struct soap *soap, const prodml22__FluidCharacterization *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidCharacterization(struct soap *soap, const prodml23__FluidCharacterization *a, const char *tag, const char *type) { - if (soap_out__prodml22__FluidCharacterization(soap, tag ? tag : "prodml22:FluidCharacterization", -2, a, type)) + if (soap_out__prodml23__FluidCharacterization(soap, tag ? tag : "prodml23:FluidCharacterization", -2, a, type)) return soap->error; return soap_putindependent(soap); } @@ -105340,16 +105335,16 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put__witsml21__Well(struct soap *soap, const wits return soap_putindependent(soap); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CalendarMonth(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CalendarMonth(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_gsoap_eml2_3_prodml22__CalendarMonth), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth), 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_prodml22__CalendarMonth(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__CalendarMonth(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)) @@ -105361,7 +105356,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__CalendarMonth(struct soap s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, 64, "([1-9][0-9][0-9][0-9])-(([0][0-9])|([1][0-2]))"))) return NULL; @@ -105369,22 +105364,22 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__CalendarMonth(struct soap } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CalendarMonth(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CalendarMonth(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__CalendarMonth(soap, tag ? tag : "prodml22:CalendarMonth", -2, a, type)) + if (soap_out_prodml23__CalendarMonth(soap, tag ? tag : "prodml23:CalendarMonth", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__CalendarMonth(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__CalendarMonth(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CalendarMonth(soap, tag, p, type))) + if ((p = soap_in_prodml23__CalendarMonth(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -106588,20 +106583,20 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_resqml22__CulturalFeatureKindExt(st return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__FluidSampleKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__FluidSampleKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleKindExt(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_gsoap_eml2_3_prodml22__FluidSampleKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt), 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_prodml22__FluidSampleKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__FluidSampleKindExt(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)) @@ -106613,7 +106608,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__FluidSampleKindExt(struct s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106621,41 +106616,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__FluidSampleKindExt(struct } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidSampleKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidSampleKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__FluidSampleKindExt(soap, tag ? tag : "prodml22:FluidSampleKindExt", -2, a, type)) + if (soap_out_prodml23__FluidSampleKindExt(soap, tag ? tag : "prodml23:FluidSampleKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__FluidSampleKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__FluidSampleKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__DataConditioningExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__DataConditioningExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DataConditioningExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DataConditioningExt(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_gsoap_eml2_3_prodml22__DataConditioningExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt), 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_prodml22__DataConditioningExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__DataConditioningExt(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)) @@ -106667,7 +106662,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__DataConditioningExt(struct s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106675,41 +106670,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__DataConditioningExt(struct } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt, SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__DataConditioningExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__DataConditioningExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__DataConditioningExt(soap, tag ? tag : "prodml22:DataConditioningExt", -2, a, type)) + if (soap_out_prodml23__DataConditioningExt(soap, tag ? tag : "prodml23:DataConditioningExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__DataConditioningExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__DataConditioningExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DataConditioningExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__DataConditioningExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__VolumeReferenceKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__VolumeReferenceKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VolumeReferenceKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VolumeReferenceKindExt(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_gsoap_eml2_3_prodml22__VolumeReferenceKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt), 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_prodml22__VolumeReferenceKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__VolumeReferenceKindExt(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)) @@ -106721,7 +106716,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__VolumeReferenceKindExt(str s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106729,41 +106724,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__VolumeReferenceKindExt(str } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__VolumeReferenceKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__VolumeReferenceKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__VolumeReferenceKindExt(soap, tag ? tag : "prodml22:VolumeReferenceKindExt", -2, a, type)) + if (soap_out_prodml23__VolumeReferenceKindExt(soap, tag ? tag : "prodml23:VolumeReferenceKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__VolumeReferenceKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__VolumeReferenceKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__VolumeReferenceKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__VolumeReferenceKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__OrganicAcidKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__OrganicAcidKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrganicAcidKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrganicAcidKindExt(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_gsoap_eml2_3_prodml22__OrganicAcidKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt), 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_prodml22__OrganicAcidKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__OrganicAcidKindExt(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)) @@ -106775,7 +106770,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__OrganicAcidKindExt(struct s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106783,41 +106778,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__OrganicAcidKindExt(struct } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OrganicAcidKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OrganicAcidKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__OrganicAcidKindExt(soap, tag ? tag : "prodml22:OrganicAcidKindExt", -2, a, type)) + if (soap_out_prodml23__OrganicAcidKindExt(soap, tag ? tag : "prodml23:OrganicAcidKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__OrganicAcidKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__OrganicAcidKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrganicAcidKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrganicAcidKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__CationKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__CationKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CationKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CationKindExt(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_gsoap_eml2_3_prodml22__CationKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt), 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_prodml22__CationKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__CationKindExt(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)) @@ -106829,7 +106824,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__CationKindExt(struct soap s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106837,41 +106832,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__CationKindExt(struct soap } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CationKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CationKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__CationKindExt(soap, tag ? tag : "prodml22:CationKindExt", -2, a, type)) + if (soap_out_prodml23__CationKindExt(soap, tag ? tag : "prodml23:CationKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__CationKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__CationKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CationKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__CationKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__AnionKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__AnionKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AnionKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AnionKindExt(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_gsoap_eml2_3_prodml22__AnionKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt), 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_prodml22__AnionKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__AnionKindExt(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)) @@ -106883,7 +106878,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__AnionKindExt(struct soap * s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106891,41 +106886,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__AnionKindExt(struct soap * } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__AnionKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__AnionKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__AnionKindExt(soap, tag ? tag : "prodml22:AnionKindExt", -2, a, type)) + if (soap_out_prodml23__AnionKindExt(soap, tag ? tag : "prodml23:AnionKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__AnionKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__AnionKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AnionKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__AnionKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__SulfurComponentKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__SulfurComponentKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SulfurComponentKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SulfurComponentKindExt(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_gsoap_eml2_3_prodml22__SulfurComponentKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt), 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_prodml22__SulfurComponentKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__SulfurComponentKindExt(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)) @@ -106937,7 +106932,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__SulfurComponentKindExt(str s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106945,41 +106940,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__SulfurComponentKindExt(str } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SulfurComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SulfurComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__SulfurComponentKindExt(soap, tag ? tag : "prodml22:SulfurComponentKindExt", -2, a, type)) + if (soap_out_prodml23__SulfurComponentKindExt(soap, tag ? tag : "prodml23:SulfurComponentKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__SulfurComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__SulfurComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SulfurComponentKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__SulfurComponentKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ServiceFluidKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ServiceFluidKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ServiceFluidKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ServiceFluidKindExt(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_gsoap_eml2_3_prodml22__ServiceFluidKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt), 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_prodml22__ServiceFluidKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ServiceFluidKindExt(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)) @@ -106991,7 +106986,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ServiceFluidKindExt(struct s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -106999,41 +106994,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ServiceFluidKindExt(struct } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ServiceFluidKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ServiceFluidKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__ServiceFluidKindExt(soap, tag ? tag : "prodml22:ServiceFluidKindExt", -2, a, type)) + if (soap_out_prodml23__ServiceFluidKindExt(soap, tag ? tag : "prodml23:ServiceFluidKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ServiceFluidKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ServiceFluidKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ServiceFluidKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__ServiceFluidKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ReportingFacilityExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ReportingFacilityExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingFacilityExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingFacilityExt(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_gsoap_eml2_3_prodml22__ReportingFacilityExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt), 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_prodml22__ReportingFacilityExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ReportingFacilityExt(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)) @@ -107045,7 +107040,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ReportingFacilityExt(struc s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107053,41 +107048,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ReportingFacilityExt(struc } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingFacilityExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingFacilityExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingFacilityExt(soap, tag ? tag : "prodml22:ReportingFacilityExt", -2, a, type)) + if (soap_out_prodml23__ReportingFacilityExt(soap, tag ? tag : "prodml23:ReportingFacilityExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ReportingFacilityExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ReportingFacilityExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingFacilityExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingFacilityExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ReportingDurationKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ReportingDurationKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingDurationKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingDurationKindExt(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_gsoap_eml2_3_prodml22__ReportingDurationKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt), 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_prodml22__ReportingDurationKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ReportingDurationKindExt(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)) @@ -107099,7 +107094,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ReportingDurationKindExt(s s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107107,41 +107102,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ReportingDurationKindExt(s } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingDurationKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingDurationKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__ReportingDurationKindExt(soap, tag ? tag : "prodml22:ReportingDurationKindExt", -2, a, type)) + if (soap_out_prodml23__ReportingDurationKindExt(soap, tag ? tag : "prodml23:ReportingDurationKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ReportingDurationKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ReportingDurationKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingDurationKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingDurationKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PureComponentKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PureComponentKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PureComponentKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PureComponentKindExt(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_gsoap_eml2_3_prodml22__PureComponentKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt), 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_prodml22__PureComponentKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PureComponentKindExt(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)) @@ -107153,7 +107148,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PureComponentKindExt(struc s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107161,41 +107156,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PureComponentKindExt(struc } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PureComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PureComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__PureComponentKindExt(soap, tag ? tag : "prodml22:PureComponentKindExt", -2, a, type)) + if (soap_out_prodml23__PureComponentKindExt(soap, tag ? tag : "prodml23:PureComponentKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PureComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PureComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PureComponentKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__PureComponentKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PseudoComponentKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PseudoComponentKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoComponentKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoComponentKindExt(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_gsoap_eml2_3_prodml22__PseudoComponentKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt), 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_prodml22__PseudoComponentKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PseudoComponentKindExt(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)) @@ -107207,7 +107202,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PseudoComponentKindExt(str s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107215,41 +107210,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PseudoComponentKindExt(str } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PseudoComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PseudoComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__PseudoComponentKindExt(soap, tag ? tag : "prodml22:PseudoComponentKindExt", -2, a, type)) + if (soap_out_prodml23__PseudoComponentKindExt(soap, tag ? tag : "prodml23:PseudoComponentKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PseudoComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PseudoComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PseudoComponentKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__PseudoComponentKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ProductFluidKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ProductFluidKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFluidKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFluidKindExt(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_gsoap_eml2_3_prodml22__ProductFluidKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt), 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_prodml22__ProductFluidKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ProductFluidKindExt(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)) @@ -107261,7 +107256,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ProductFluidKindExt(struct s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107269,41 +107264,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ProductFluidKindExt(struct } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ProductFluidKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ProductFluidKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__ProductFluidKindExt(soap, tag ? tag : "prodml22:ProductFluidKindExt", -2, a, type)) + if (soap_out_prodml23__ProductFluidKindExt(soap, tag ? tag : "prodml23:ProductFluidKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ProductFluidKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ProductFluidKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFluidKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFluidKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PlusComponentKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PlusComponentKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PlusComponentKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PlusComponentKindExt(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_gsoap_eml2_3_prodml22__PlusComponentKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt), 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_prodml22__PlusComponentKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PlusComponentKindExt(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)) @@ -107315,7 +107310,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PlusComponentKindExt(struc s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107323,41 +107318,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PlusComponentKindExt(struc } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PlusComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PlusComponentKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__PlusComponentKindExt(soap, tag ? tag : "prodml22:PlusComponentKindExt", -2, a, type)) + if (soap_out_prodml23__PlusComponentKindExt(soap, tag ? tag : "prodml23:PlusComponentKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PlusComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PlusComponentKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PlusComponentKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__PlusComponentKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__FacilityKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__FacilityKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityKindExt(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_gsoap_eml2_3_prodml22__FacilityKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt), 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_prodml22__FacilityKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__FacilityKindExt(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)) @@ -107369,7 +107364,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__FacilityKindExt(struct soa s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107377,41 +107372,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__FacilityKindExt(struct soa } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FacilityKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FacilityKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__FacilityKindExt(soap, tag ? tag : "prodml22:FacilityKindExt", -2, a, type)) + if (soap_out_prodml23__FacilityKindExt(soap, tag ? tag : "prodml23:FacilityKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__FacilityKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__FacilityKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilityKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilityKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PvtModelParameterKindExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PvtModelParameterKindExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameterKindExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameterKindExt(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_gsoap_eml2_3_prodml22__PvtModelParameterKindExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt), 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_prodml22__PvtModelParameterKindExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PvtModelParameterKindExt(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)) @@ -107423,7 +107418,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterKindExt(s s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107431,41 +107426,41 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterKindExt(s } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PvtModelParameterKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PvtModelParameterKindExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__PvtModelParameterKindExt(soap, tag ? tag : "prodml22:PvtModelParameterKindExt", -2, a, type)) + if (soap_out_prodml23__PvtModelParameterKindExt(soap, tag ? tag : "prodml23:PvtModelParameterKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PvtModelParameterKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PvtModelParameterKindExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PvtModelParameterKindExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__PvtModelParameterKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__OutputFluidPropertyExt(struct soap *soap, const std::string *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__OutputFluidPropertyExt(struct soap *soap, const std::string *a) { (void)soap; (void)a; /* appease -Wall -Werror */ } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputFluidPropertyExt(struct soap *soap, const char *tag, int id, const std::string *s, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputFluidPropertyExt(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_gsoap_eml2_3_prodml22__OutputFluidPropertyExt), type) || soap_string_out(soap, s->c_str(), 0) || soap_element_end_out(soap, tag)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt), 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_prodml22__OutputFluidPropertyExt(struct soap *soap, const char *tag, std::string *s, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__OutputFluidPropertyExt(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)) @@ -107477,7 +107472,7 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__OutputFluidPropertyExt(str s->erase(); if (soap->body && *soap->href != '#') { char *t; - s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + s = (std::string*)soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (s) { if (!(t = soap_string_in(soap, 1, 0, -1, NULL))) return NULL; @@ -107485,22 +107480,22 @@ SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__OutputFluidPropertyExt(str } } else - s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); + s = (std::string*)soap_id_forward(soap, soap->href, soap_id_enter(soap, soap->id, s, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt, sizeof(std::string), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase), 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; return s; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OutputFluidPropertyExt(struct soap *soap, const std::string *a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OutputFluidPropertyExt(struct soap *soap, const std::string *a, const char *tag, const char *type) { - if (soap_out_prodml22__OutputFluidPropertyExt(soap, tag ? tag : "prodml22:OutputFluidPropertyExt", -2, a, type)) + if (soap_out_prodml23__OutputFluidPropertyExt(soap, tag ? tag : "prodml23:OutputFluidPropertyExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__OutputFluidPropertyExt(struct soap *soap, std::string *p, const char *tag, const char *type) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__OutputFluidPropertyExt(struct soap *soap, std::string *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OutputFluidPropertyExt(soap, tag, p, type))) + if ((p = soap_in_prodml23__OutputFluidPropertyExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -164317,66 +164312,66 @@ SOAP_FMAC3 resqml22__AbstractFeature * SOAP_FMAC4 soap_get_resqml22__AbstractFea return p; } -void prodml22__TimeSeriesThreshold::soap_default(struct soap *soap) +void prodml23__TimeSeriesThreshold::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__TimeSeriesThreshold::ThresholdMinimum = NULL; - this->prodml22__TimeSeriesThreshold::ThresholdMaximum = NULL; - this->prodml22__TimeSeriesThreshold::Duration = NULL; + this->prodml23__TimeSeriesThreshold::ThresholdMinimum = NULL; + this->prodml23__TimeSeriesThreshold::ThresholdMaximum = NULL; + this->prodml23__TimeSeriesThreshold::Duration = NULL; } -void prodml22__TimeSeriesThreshold::soap_serialize(struct soap *soap) const +void prodml23__TimeSeriesThreshold::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__EndpointQuantity(soap, &this->prodml22__TimeSeriesThreshold::ThresholdMinimum); - soap_serialize_PointerToprodml22__EndpointQuantity(soap, &this->prodml22__TimeSeriesThreshold::ThresholdMaximum); - soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml22__TimeSeriesThreshold::Duration); + soap_serialize_PointerToprodml23__EndpointQuantity(soap, &this->prodml23__TimeSeriesThreshold::ThresholdMinimum); + soap_serialize_PointerToprodml23__EndpointQuantity(soap, &this->prodml23__TimeSeriesThreshold::ThresholdMaximum); + soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml23__TimeSeriesThreshold::Duration); #endif } -int prodml22__TimeSeriesThreshold::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TimeSeriesThreshold::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TimeSeriesThreshold(soap, tag, id, this, type); + return soap_out_prodml23__TimeSeriesThreshold(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesThreshold(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesThreshold *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesThreshold(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesThreshold *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesThreshold"; + type = "prodml23:TimeSeriesThreshold"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold), type)) return soap->error; - if (soap_out_PointerToprodml22__EndpointQuantity(soap, "prodml22:ThresholdMinimum", -1, &a->prodml22__TimeSeriesThreshold::ThresholdMinimum, "prodml22:EndpointQuantity")) + if (soap_out_PointerToprodml23__EndpointQuantity(soap, "prodml23:ThresholdMinimum", -1, &a->prodml23__TimeSeriesThreshold::ThresholdMinimum, "prodml23:EndpointQuantity")) return soap->error; - if (soap_out_PointerToprodml22__EndpointQuantity(soap, "prodml22:ThresholdMaximum", -1, &a->prodml22__TimeSeriesThreshold::ThresholdMaximum, "prodml22:EndpointQuantity")) + if (soap_out_PointerToprodml23__EndpointQuantity(soap, "prodml23:ThresholdMaximum", -1, &a->prodml23__TimeSeriesThreshold::ThresholdMaximum, "prodml23:EndpointQuantity")) return soap->error; - if (!a->prodml22__TimeSeriesThreshold::Duration) - { if (soap_element_empty(soap, "prodml22:Duration", 0, NULL)) + if (!a->prodml23__TimeSeriesThreshold::Duration) + { if (soap_element_empty(soap, "prodml23:Duration", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml22:Duration", -1, &a->prodml22__TimeSeriesThreshold::Duration, "eml23:TimeMeasure")) + else if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml23:Duration", -1, &a->prodml23__TimeSeriesThreshold::Duration, "eml23:TimeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TimeSeriesThreshold::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesThreshold::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TimeSeriesThreshold(soap, tag, this, type); + return soap_in_prodml23__TimeSeriesThreshold(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml22__TimeSeriesThreshold(struct soap *soap, const char *tag, prodml22__TimeSeriesThreshold *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml23__TimeSeriesThreshold(struct soap *soap, const char *tag, prodml23__TimeSeriesThreshold *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TimeSeriesThreshold*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold, sizeof(prodml22__TimeSeriesThreshold), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TimeSeriesThreshold*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold, sizeof(prodml23__TimeSeriesThreshold), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TimeSeriesThreshold *)a->soap_in(soap, tag, type); + return (prodml23__TimeSeriesThreshold *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -164388,19 +164383,19 @@ SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml22__TimeSeri for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ThresholdMinimum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQuantity(soap, "prodml22:ThresholdMinimum", &a->prodml22__TimeSeriesThreshold::ThresholdMinimum, "prodml22:EndpointQuantity")) + { if (soap_in_PointerToprodml23__EndpointQuantity(soap, "prodml23:ThresholdMinimum", &a->prodml23__TimeSeriesThreshold::ThresholdMinimum, "prodml23:EndpointQuantity")) { soap_flag_ThresholdMinimum1--; continue; } } if (soap_flag_ThresholdMaximum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQuantity(soap, "prodml22:ThresholdMaximum", &a->prodml22__TimeSeriesThreshold::ThresholdMaximum, "prodml22:EndpointQuantity")) + { if (soap_in_PointerToprodml23__EndpointQuantity(soap, "prodml23:ThresholdMaximum", &a->prodml23__TimeSeriesThreshold::ThresholdMaximum, "prodml23:EndpointQuantity")) { soap_flag_ThresholdMaximum1--; continue; } } if (soap_flag_Duration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml22:Duration", &a->prodml22__TimeSeriesThreshold::Duration, "eml23:TimeMeasure")) + { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml23:Duration", &a->prodml23__TimeSeriesThreshold::Duration, "eml23:TimeMeasure")) { soap_flag_Duration1--; continue; } @@ -164414,7 +164409,7 @@ SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml22__TimeSeri } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__TimeSeriesThreshold::Duration)) + if ((!a->prodml23__TimeSeriesThreshold::Duration)) { soap->error = SOAP_OCCURS; return NULL; } @@ -164424,35 +164419,35 @@ SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml22__TimeSeri return NULL; } else - { a = (prodml22__TimeSeriesThreshold *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold, sizeof(prodml22__TimeSeriesThreshold), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TimeSeriesThreshold *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold, sizeof(prodml23__TimeSeriesThreshold), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesThreshold(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesThreshold(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TimeSeriesThreshold(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TimeSeriesThreshold(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TimeSeriesThreshold *p; - size_t k = sizeof(prodml22__TimeSeriesThreshold); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold, n, gsoap_eml2_3_fdelete); + prodml23__TimeSeriesThreshold *p; + size_t k = sizeof(prodml23__TimeSeriesThreshold); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TimeSeriesThreshold); + { p = SOAP_NEW(soap, prodml23__TimeSeriesThreshold); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TimeSeriesThreshold, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TimeSeriesThreshold, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TimeSeriesThreshold location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TimeSeriesThreshold location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -164462,82 +164457,82 @@ SOAP_FMAC1 prodml22__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__TimeSeriesThreshold::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TimeSeriesThreshold::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TimeSeriesThreshold(soap, tag ? tag : "prodml22:TimeSeriesThreshold", -2, this, type)) + if (soap_out_prodml23__TimeSeriesThreshold(soap, tag ? tag : "prodml23:TimeSeriesThreshold", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TimeSeriesThreshold::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesThreshold::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TimeSeriesThreshold(soap, this, tag, type); + return soap_get_prodml23__TimeSeriesThreshold(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_get_prodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesThreshold * SOAP_FMAC4 soap_get_prodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesThreshold(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesThreshold(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TimeSeriesStatistic::soap_default(struct soap *soap) +void prodml23__TimeSeriesStatistic::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, &this->prodml22__TimeSeriesStatistic::Key); - this->prodml22__TimeSeriesStatistic::Uom = NULL; - this->prodml22__TimeSeriesStatistic::MeasureClass = NULL; - this->prodml22__TimeSeriesStatistic::Comment = NULL; - this->prodml22__TimeSeriesStatistic::Minimum = NULL; - this->prodml22__TimeSeriesStatistic::Maximum = NULL; - this->prodml22__TimeSeriesStatistic::Sum = NULL; - this->prodml22__TimeSeriesStatistic::Mean = NULL; - this->prodml22__TimeSeriesStatistic::Median = NULL; - this->prodml22__TimeSeriesStatistic::StandardDeviation = NULL; - this->prodml22__TimeSeriesStatistic::DTimMin = NULL; - this->prodml22__TimeSeriesStatistic::DTimMax = NULL; - this->prodml22__TimeSeriesStatistic::TimeAtThreshold = NULL; -} - -void prodml22__TimeSeriesStatistic::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, &this->prodml22__TimeSeriesStatistic::Key); - soap_serialize_PointerToeml23__UnitOfMeasureExt(soap, &this->prodml22__TimeSeriesStatistic::Uom); - soap_serialize_PointerToeml23__MeasureClass(soap, &this->prodml22__TimeSeriesStatistic::MeasureClass); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__TimeSeriesStatistic::Comment); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__TimeSeriesStatistic::Minimum); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__TimeSeriesStatistic::Maximum); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__TimeSeriesStatistic::Sum); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__TimeSeriesStatistic::Mean); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__TimeSeriesStatistic::Median); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__TimeSeriesStatistic::StandardDeviation); - soap_serialize_PointerToprodml22__EndpointDateTime(soap, &this->prodml22__TimeSeriesStatistic::DTimMin); - soap_serialize_PointerToprodml22__EndpointDateTime(soap, &this->prodml22__TimeSeriesStatistic::DTimMax); - soap_serialize_PointerToprodml22__TimeSeriesThreshold(soap, &this->prodml22__TimeSeriesStatistic::TimeAtThreshold); + soap_default_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, &this->prodml23__TimeSeriesStatistic::Key); + this->prodml23__TimeSeriesStatistic::Uom = NULL; + this->prodml23__TimeSeriesStatistic::MeasureClass = NULL; + this->prodml23__TimeSeriesStatistic::Comment = NULL; + this->prodml23__TimeSeriesStatistic::Minimum = NULL; + this->prodml23__TimeSeriesStatistic::Maximum = NULL; + this->prodml23__TimeSeriesStatistic::Sum = NULL; + this->prodml23__TimeSeriesStatistic::Mean = NULL; + this->prodml23__TimeSeriesStatistic::Median = NULL; + this->prodml23__TimeSeriesStatistic::StandardDeviation = NULL; + this->prodml23__TimeSeriesStatistic::DTimMin = NULL; + this->prodml23__TimeSeriesStatistic::DTimMax = NULL; + this->prodml23__TimeSeriesStatistic::TimeAtThreshold = NULL; +} + +void prodml23__TimeSeriesStatistic::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, &this->prodml23__TimeSeriesStatistic::Key); + soap_serialize_PointerToeml23__UnitOfMeasureExt(soap, &this->prodml23__TimeSeriesStatistic::Uom); + soap_serialize_PointerToeml23__MeasureClass(soap, &this->prodml23__TimeSeriesStatistic::MeasureClass); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__TimeSeriesStatistic::Comment); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__TimeSeriesStatistic::Minimum); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__TimeSeriesStatistic::Maximum); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__TimeSeriesStatistic::Sum); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__TimeSeriesStatistic::Mean); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__TimeSeriesStatistic::Median); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__TimeSeriesStatistic::StandardDeviation); + soap_serialize_PointerToprodml23__EndpointDateTime(soap, &this->prodml23__TimeSeriesStatistic::DTimMin); + soap_serialize_PointerToprodml23__EndpointDateTime(soap, &this->prodml23__TimeSeriesStatistic::DTimMax); + soap_serialize_PointerToprodml23__TimeSeriesThreshold(soap, &this->prodml23__TimeSeriesStatistic::TimeAtThreshold); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__TimeSeriesStatistic::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TimeSeriesStatistic::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TimeSeriesStatistic(soap, tag, id, this, type); + return soap_out_prodml23__TimeSeriesStatistic(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesStatistic(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesStatistic *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesStatistic(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesStatistic *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesStatistic"; + type = "prodml23:TimeSeriesStatistic"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__TimeSeriesStatistic), type ? type : "prodml22:TimeSeriesStatistic")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic), type ? type : "prodml23:TimeSeriesStatistic")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -164559,60 +164554,60 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesStatistic(struct soap *so return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, "prodml22:Key", -1, &a->prodml22__TimeSeriesStatistic::Key, "prodml22:KeywordValueStruct")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, "prodml23:Key", -1, &a->prodml23__TimeSeriesStatistic::Key, "prodml23:KeywordValueStruct")) return soap->error; - if (soap_out_PointerToeml23__UnitOfMeasureExt(soap, "prodml22:Uom", -1, &a->prodml22__TimeSeriesStatistic::Uom, "eml23:UnitOfMeasureExt")) + if (soap_out_PointerToeml23__UnitOfMeasureExt(soap, "prodml23:Uom", -1, &a->prodml23__TimeSeriesStatistic::Uom, "eml23:UnitOfMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MeasureClass(soap, "prodml22:MeasureClass", -1, &a->prodml22__TimeSeriesStatistic::MeasureClass, "eml23:MeasureClass")) + if (soap_out_PointerToeml23__MeasureClass(soap, "prodml23:MeasureClass", -1, &a->prodml23__TimeSeriesStatistic::MeasureClass, "eml23:MeasureClass")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__TimeSeriesStatistic::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__TimeSeriesStatistic::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Minimum", -1, &a->prodml22__TimeSeriesStatistic::Minimum, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Minimum", -1, &a->prodml23__TimeSeriesStatistic::Minimum, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Maximum", -1, &a->prodml22__TimeSeriesStatistic::Maximum, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Maximum", -1, &a->prodml23__TimeSeriesStatistic::Maximum, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Sum", -1, &a->prodml22__TimeSeriesStatistic::Sum, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Sum", -1, &a->prodml23__TimeSeriesStatistic::Sum, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Mean", -1, &a->prodml22__TimeSeriesStatistic::Mean, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Mean", -1, &a->prodml23__TimeSeriesStatistic::Mean, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Median", -1, &a->prodml22__TimeSeriesStatistic::Median, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Median", -1, &a->prodml23__TimeSeriesStatistic::Median, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:StandardDeviation", -1, &a->prodml22__TimeSeriesStatistic::StandardDeviation, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:StandardDeviation", -1, &a->prodml23__TimeSeriesStatistic::StandardDeviation, "eml23:DimensionlessMeasure")) return soap->error; - if (!a->prodml22__TimeSeriesStatistic::DTimMin) - { if (soap_element_empty(soap, "prodml22:DTimMin", 0, NULL)) + if (!a->prodml23__TimeSeriesStatistic::DTimMin) + { if (soap_element_empty(soap, "prodml23:DTimMin", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__EndpointDateTime(soap, "prodml22:DTimMin", -1, &a->prodml22__TimeSeriesStatistic::DTimMin, "prodml22:EndpointDateTime")) + else if (soap_out_PointerToprodml23__EndpointDateTime(soap, "prodml23:DTimMin", -1, &a->prodml23__TimeSeriesStatistic::DTimMin, "prodml23:EndpointDateTime")) return soap->error; - if (!a->prodml22__TimeSeriesStatistic::DTimMax) - { if (soap_element_empty(soap, "prodml22:DTimMax", 0, NULL)) + if (!a->prodml23__TimeSeriesStatistic::DTimMax) + { if (soap_element_empty(soap, "prodml23:DTimMax", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__EndpointDateTime(soap, "prodml22:DTimMax", -1, &a->prodml22__TimeSeriesStatistic::DTimMax, "prodml22:EndpointDateTime")) + else if (soap_out_PointerToprodml23__EndpointDateTime(soap, "prodml23:DTimMax", -1, &a->prodml23__TimeSeriesStatistic::DTimMax, "prodml23:EndpointDateTime")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesThreshold(soap, "prodml22:TimeAtThreshold", -1, &a->prodml22__TimeSeriesStatistic::TimeAtThreshold, "prodml22:TimeSeriesThreshold")) + if (soap_out_PointerToprodml23__TimeSeriesThreshold(soap, "prodml23:TimeAtThreshold", -1, &a->prodml23__TimeSeriesStatistic::TimeAtThreshold, "prodml23:TimeSeriesThreshold")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TimeSeriesStatistic::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesStatistic::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TimeSeriesStatistic(soap, tag, this, type); + return soap_in_prodml23__TimeSeriesStatistic(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml22__TimeSeriesStatistic(struct soap *soap, const char *tag, prodml22__TimeSeriesStatistic *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml23__TimeSeriesStatistic(struct soap *soap, const char *tag, prodml23__TimeSeriesStatistic *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TimeSeriesStatistic*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic, sizeof(prodml22__TimeSeriesStatistic), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TimeSeriesStatistic*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic, sizeof(prodml23__TimeSeriesStatistic), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TimeSeriesStatistic *)a->soap_in(soap, tag, type); + return (prodml23__TimeSeriesStatistic *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -164696,77 +164691,77 @@ SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml22__TimeSeri continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, "prodml22:Key", &a->prodml22__TimeSeriesStatistic::Key, "prodml22:KeywordValueStruct")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, "prodml23:Key", &a->prodml23__TimeSeriesStatistic::Key, "prodml23:KeywordValueStruct")) continue; } if (soap_flag_Uom1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__UnitOfMeasureExt(soap, "prodml22:Uom", &a->prodml22__TimeSeriesStatistic::Uom, "eml23:UnitOfMeasureExt")) + { if (soap_in_PointerToeml23__UnitOfMeasureExt(soap, "prodml23:Uom", &a->prodml23__TimeSeriesStatistic::Uom, "eml23:UnitOfMeasureExt")) { soap_flag_Uom1--; continue; } } if (soap_flag_MeasureClass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasureClass(soap, "prodml22:MeasureClass", &a->prodml22__TimeSeriesStatistic::MeasureClass, "eml23:MeasureClass")) + { if (soap_in_PointerToeml23__MeasureClass(soap, "prodml23:MeasureClass", &a->prodml23__TimeSeriesStatistic::MeasureClass, "eml23:MeasureClass")) { soap_flag_MeasureClass1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__TimeSeriesStatistic::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__TimeSeriesStatistic::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap_flag_Minimum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Minimum", &a->prodml22__TimeSeriesStatistic::Minimum, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Minimum", &a->prodml23__TimeSeriesStatistic::Minimum, "eml23:DimensionlessMeasure")) { soap_flag_Minimum1--; continue; } } if (soap_flag_Maximum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Maximum", &a->prodml22__TimeSeriesStatistic::Maximum, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Maximum", &a->prodml23__TimeSeriesStatistic::Maximum, "eml23:DimensionlessMeasure")) { soap_flag_Maximum1--; continue; } } if (soap_flag_Sum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Sum", &a->prodml22__TimeSeriesStatistic::Sum, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Sum", &a->prodml23__TimeSeriesStatistic::Sum, "eml23:DimensionlessMeasure")) { soap_flag_Sum1--; continue; } } if (soap_flag_Mean1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Mean", &a->prodml22__TimeSeriesStatistic::Mean, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Mean", &a->prodml23__TimeSeriesStatistic::Mean, "eml23:DimensionlessMeasure")) { soap_flag_Mean1--; continue; } } if (soap_flag_Median1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Median", &a->prodml22__TimeSeriesStatistic::Median, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Median", &a->prodml23__TimeSeriesStatistic::Median, "eml23:DimensionlessMeasure")) { soap_flag_Median1--; continue; } } if (soap_flag_StandardDeviation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:StandardDeviation", &a->prodml22__TimeSeriesStatistic::StandardDeviation, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:StandardDeviation", &a->prodml23__TimeSeriesStatistic::StandardDeviation, "eml23:DimensionlessMeasure")) { soap_flag_StandardDeviation1--; continue; } } if (soap_flag_DTimMin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointDateTime(soap, "prodml22:DTimMin", &a->prodml22__TimeSeriesStatistic::DTimMin, "prodml22:EndpointDateTime")) + { if (soap_in_PointerToprodml23__EndpointDateTime(soap, "prodml23:DTimMin", &a->prodml23__TimeSeriesStatistic::DTimMin, "prodml23:EndpointDateTime")) { soap_flag_DTimMin1--; continue; } } if (soap_flag_DTimMax1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointDateTime(soap, "prodml22:DTimMax", &a->prodml22__TimeSeriesStatistic::DTimMax, "prodml22:EndpointDateTime")) + { if (soap_in_PointerToprodml23__EndpointDateTime(soap, "prodml23:DTimMax", &a->prodml23__TimeSeriesStatistic::DTimMax, "prodml23:EndpointDateTime")) { soap_flag_DTimMax1--; continue; } } if (soap_flag_TimeAtThreshold1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesThreshold(soap, "prodml22:TimeAtThreshold", &a->prodml22__TimeSeriesStatistic::TimeAtThreshold, "prodml22:TimeSeriesThreshold")) + { if (soap_in_PointerToprodml23__TimeSeriesThreshold(soap, "prodml23:TimeAtThreshold", &a->prodml23__TimeSeriesStatistic::TimeAtThreshold, "prodml23:TimeSeriesThreshold")) { soap_flag_TimeAtThreshold1--; continue; } @@ -164780,7 +164775,7 @@ SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml22__TimeSeri } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__TimeSeriesStatistic::DTimMin || !a->prodml22__TimeSeriesStatistic::DTimMax)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__TimeSeriesStatistic::DTimMin || !a->prodml23__TimeSeriesStatistic::DTimMax)) { soap->error = SOAP_OCCURS; return NULL; } @@ -164790,35 +164785,35 @@ SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml22__TimeSeri return NULL; } else - { a = (prodml22__TimeSeriesStatistic *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic, sizeof(prodml22__TimeSeriesStatistic), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TimeSeriesStatistic *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic, sizeof(prodml23__TimeSeriesStatistic), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesStatistic(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesStatistic(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TimeSeriesStatistic(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TimeSeriesStatistic(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TimeSeriesStatistic *p; - size_t k = sizeof(prodml22__TimeSeriesStatistic); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic, n, gsoap_eml2_3_fdelete); + prodml23__TimeSeriesStatistic *p; + size_t k = sizeof(prodml23__TimeSeriesStatistic); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TimeSeriesStatistic); + { p = SOAP_NEW(soap, prodml23__TimeSeriesStatistic); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TimeSeriesStatistic, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TimeSeriesStatistic, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TimeSeriesStatistic location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TimeSeriesStatistic location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -164828,104 +164823,104 @@ SOAP_FMAC1 prodml22__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__TimeSeriesStatistic::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TimeSeriesStatistic::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TimeSeriesStatistic(soap, tag ? tag : "prodml22:TimeSeriesStatistic", -2, this, type)) + if (soap_out_prodml23__TimeSeriesStatistic(soap, tag ? tag : "prodml23:TimeSeriesStatistic", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TimeSeriesStatistic::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesStatistic::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TimeSeriesStatistic(soap, this, tag, type); + return soap_get_prodml23__TimeSeriesStatistic(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_get_prodml22__TimeSeriesStatistic(struct soap *soap, prodml22__TimeSeriesStatistic *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesStatistic * SOAP_FMAC4 soap_get_prodml23__TimeSeriesStatistic(struct soap *soap, prodml23__TimeSeriesStatistic *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesStatistic(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesStatistic(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__KeywordValueStruct::soap_default(struct soap *soap) +void prodml23__KeywordValueStruct::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractString(soap, &this->prodml22__KeywordValueStruct::__item); - soap_default_prodml22__TimeSeriesKeyword(soap, &this->prodml22__KeywordValueStruct::keyword); + soap_default_eml23__AbstractString(soap, &this->prodml23__KeywordValueStruct::__item); + soap_default_prodml23__TimeSeriesKeyword(soap, &this->prodml23__KeywordValueStruct::keyword); } -void prodml22__KeywordValueStruct::soap_serialize(struct soap *soap) const +void prodml23__KeywordValueStruct::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_eml23__AbstractString(soap, &this->prodml22__KeywordValueStruct::__item); + soap_serialize_eml23__AbstractString(soap, &this->prodml23__KeywordValueStruct::__item); #endif } -int prodml22__KeywordValueStruct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__KeywordValueStruct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__KeywordValueStruct(soap, tag, id, this, type); + return soap_out_prodml23__KeywordValueStruct(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__KeywordValueStruct(struct soap *soap, const char *tag, int id, const prodml22__KeywordValueStruct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__KeywordValueStruct(struct soap *soap, const char *tag, int id, const prodml23__KeywordValueStruct *a, const char *type) { if (!type) - type = "prodml22:KeywordValueStruct"; - soap_set_attr(soap, "keyword", soap_prodml22__TimeSeriesKeyword2s(soap, ((prodml22__KeywordValueStruct*)a)->keyword), 1); + type = "prodml23:KeywordValueStruct"; + soap_set_attr(soap, "keyword", soap_prodml23__TimeSeriesKeyword2s(soap, ((prodml23__KeywordValueStruct*)a)->keyword), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractString(soap, tag, id, &a->prodml22__KeywordValueStruct::__item, "prodml22:KeywordValueStruct"); + return soap_out_eml23__AbstractString(soap, tag, id, &a->prodml23__KeywordValueStruct::__item, "prodml23:KeywordValueStruct"); } -void *prodml22__KeywordValueStruct::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__KeywordValueStruct::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__KeywordValueStruct(soap, tag, this, type); + return soap_in_prodml23__KeywordValueStruct(soap, tag, this, type); } -SOAP_FMAC3 prodml22__KeywordValueStruct * SOAP_FMAC4 soap_in_prodml22__KeywordValueStruct(struct soap *soap, const char *tag, prodml22__KeywordValueStruct *a, const char *type) +SOAP_FMAC3 prodml23__KeywordValueStruct * SOAP_FMAC4 soap_in_prodml23__KeywordValueStruct(struct soap *soap, const char *tag, prodml23__KeywordValueStruct *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__KeywordValueStruct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct, sizeof(prodml22__KeywordValueStruct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__KeywordValueStruct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct, sizeof(prodml23__KeywordValueStruct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct) - return (prodml22__KeywordValueStruct *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct) + return (prodml23__KeywordValueStruct *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__TimeSeriesKeyword(soap, soap_attr_value(soap, "keyword", 5, 3), &((prodml22__KeywordValueStruct*)a)->keyword)) + if (soap_s2prodml23__TimeSeriesKeyword(soap, soap_attr_value(soap, "keyword", 5, 3), &((prodml23__KeywordValueStruct*)a)->keyword)) return NULL; - if (!soap_in_eml23__AbstractString(soap, tag, &a->prodml22__KeywordValueStruct::__item, "prodml22:KeywordValueStruct")) + if (!soap_in_eml23__AbstractString(soap, tag, &a->prodml23__KeywordValueStruct::__item, "prodml23:KeywordValueStruct")) return NULL; return a; } -SOAP_FMAC1 prodml22__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml22__KeywordValueStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml23__KeywordValueStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__KeywordValueStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__KeywordValueStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__KeywordValueStruct *p; - size_t k = sizeof(prodml22__KeywordValueStruct); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct, n, gsoap_eml2_3_fdelete); + prodml23__KeywordValueStruct *p; + size_t k = sizeof(prodml23__KeywordValueStruct); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__KeywordValueStruct); + { p = SOAP_NEW(soap, prodml23__KeywordValueStruct); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__KeywordValueStruct, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__KeywordValueStruct, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__KeywordValueStruct location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__KeywordValueStruct location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -164935,103 +164930,103 @@ SOAP_FMAC1 prodml22__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__KeywordValueStruct::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__KeywordValueStruct::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__KeywordValueStruct(soap, tag ? tag : "prodml22:KeywordValueStruct", -2, this, type)) + if (soap_out_prodml23__KeywordValueStruct(soap, tag ? tag : "prodml23:KeywordValueStruct", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__KeywordValueStruct::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__KeywordValueStruct::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__KeywordValueStruct(soap, this, tag, type); + return soap_get_prodml23__KeywordValueStruct(soap, this, tag, type); } -SOAP_FMAC3 prodml22__KeywordValueStruct * SOAP_FMAC4 soap_get_prodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__KeywordValueStruct * SOAP_FMAC4 soap_get_prodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__KeywordValueStruct(soap, tag, p, type))) + if ((p = soap_in_prodml23__KeywordValueStruct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__EndpointQuantity::soap_default(struct soap *soap) +void prodml23__EndpointQuantity::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractMeasure(soap, &this->prodml22__EndpointQuantity::__item); - soap_default_prodml22__EndpointQualifierInterval(soap, &this->prodml22__EndpointQuantity::endpoint); + soap_default_eml23__AbstractMeasure(soap, &this->prodml23__EndpointQuantity::__item); + soap_default_prodml23__EndpointQualifierInterval(soap, &this->prodml23__EndpointQuantity::endpoint); } -void prodml22__EndpointQuantity::soap_serialize(struct soap *soap) const +void prodml23__EndpointQuantity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__EndpointQuantity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__EndpointQuantity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__EndpointQuantity(soap, tag, id, this, type); + return soap_out_prodml23__EndpointQuantity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQuantity(struct soap *soap, const char *tag, int id, const prodml22__EndpointQuantity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQuantity(struct soap *soap, const char *tag, int id, const prodml23__EndpointQuantity *a, const char *type) { if (!type) - type = "prodml22:EndpointQuantity"; - soap_set_attr(soap, "endpoint", soap_prodml22__EndpointQualifierInterval2s(soap, ((prodml22__EndpointQuantity*)a)->endpoint), 1); + type = "prodml23:EndpointQuantity"; + soap_set_attr(soap, "endpoint", soap_prodml23__EndpointQualifierInterval2s(soap, ((prodml23__EndpointQuantity*)a)->endpoint), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml22__EndpointQuantity::__item, "prodml22:EndpointQuantity"); + return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml23__EndpointQuantity::__item, "prodml23:EndpointQuantity"); } -void *prodml22__EndpointQuantity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointQuantity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__EndpointQuantity(soap, tag, this, type); + return soap_in_prodml23__EndpointQuantity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__EndpointQuantity * SOAP_FMAC4 soap_in_prodml22__EndpointQuantity(struct soap *soap, const char *tag, prodml22__EndpointQuantity *a, const char *type) +SOAP_FMAC3 prodml23__EndpointQuantity * SOAP_FMAC4 soap_in_prodml23__EndpointQuantity(struct soap *soap, const char *tag, prodml23__EndpointQuantity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__EndpointQuantity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity, sizeof(prodml22__EndpointQuantity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__EndpointQuantity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity, sizeof(prodml23__EndpointQuantity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity) - return (prodml22__EndpointQuantity *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity) + return (prodml23__EndpointQuantity *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__EndpointQualifierInterval(soap, soap_attr_value(soap, "endpoint", 5, 3), &((prodml22__EndpointQuantity*)a)->endpoint)) + if (soap_s2prodml23__EndpointQualifierInterval(soap, soap_attr_value(soap, "endpoint", 5, 3), &((prodml23__EndpointQuantity*)a)->endpoint)) return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml22__EndpointQuantity::__item, "prodml22:EndpointQuantity")) + if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml23__EndpointQuantity::__item, "prodml23:EndpointQuantity")) return NULL; return a; } -SOAP_FMAC1 prodml22__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQuantity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQuantity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__EndpointQuantity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__EndpointQuantity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__EndpointQuantity *p; - size_t k = sizeof(prodml22__EndpointQuantity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity, n, gsoap_eml2_3_fdelete); + prodml23__EndpointQuantity *p; + size_t k = sizeof(prodml23__EndpointQuantity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__EndpointQuantity); + { p = SOAP_NEW(soap, prodml23__EndpointQuantity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__EndpointQuantity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__EndpointQuantity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__EndpointQuantity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__EndpointQuantity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165041,105 +165036,105 @@ SOAP_FMAC1 prodml22__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml22__En return p; } -int prodml22__EndpointQuantity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__EndpointQuantity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__EndpointQuantity(soap, tag ? tag : "prodml22:EndpointQuantity", -2, this, type)) + if (soap_out_prodml23__EndpointQuantity(soap, tag ? tag : "prodml23:EndpointQuantity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__EndpointQuantity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointQuantity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__EndpointQuantity(soap, this, tag, type); + return soap_get_prodml23__EndpointQuantity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__EndpointQuantity * SOAP_FMAC4 soap_get_prodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQuantity * SOAP_FMAC4 soap_get_prodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__EndpointQuantity(soap, tag, p, type))) + if ((p = soap_in_prodml23__EndpointQuantity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__EndpointDateTime::soap_default(struct soap *soap) +void prodml23__EndpointDateTime::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__TimeStamp(soap, &this->prodml22__EndpointDateTime::__item); - soap_default_prodml22__EndpointQualifierInterval(soap, &this->prodml22__EndpointDateTime::endpoint); + soap_default_eml23__TimeStamp(soap, &this->prodml23__EndpointDateTime::__item); + soap_default_prodml23__EndpointQualifierInterval(soap, &this->prodml23__EndpointDateTime::endpoint); } -void prodml22__EndpointDateTime::soap_serialize(struct soap *soap) const +void prodml23__EndpointDateTime::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__EndpointDateTime::__item, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__EndpointDateTime::__item); + soap_embedded(soap, &this->prodml23__EndpointDateTime::__item, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__EndpointDateTime::__item); #endif } -int prodml22__EndpointDateTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__EndpointDateTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__EndpointDateTime(soap, tag, id, this, type); + return soap_out_prodml23__EndpointDateTime(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointDateTime(struct soap *soap, const char *tag, int id, const prodml22__EndpointDateTime *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointDateTime(struct soap *soap, const char *tag, int id, const prodml23__EndpointDateTime *a, const char *type) { if (!type) - type = "prodml22:EndpointDateTime"; - soap_set_attr(soap, "endpoint", soap_prodml22__EndpointQualifierInterval2s(soap, ((prodml22__EndpointDateTime*)a)->endpoint), 1); + type = "prodml23:EndpointDateTime"; + soap_set_attr(soap, "endpoint", soap_prodml23__EndpointQualifierInterval2s(soap, ((prodml23__EndpointDateTime*)a)->endpoint), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__TimeStamp(soap, tag, id, &a->prodml22__EndpointDateTime::__item, "prodml22:EndpointDateTime"); + return soap_out_eml23__TimeStamp(soap, tag, id, &a->prodml23__EndpointDateTime::__item, "prodml23:EndpointDateTime"); } -void *prodml22__EndpointDateTime::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointDateTime::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__EndpointDateTime(soap, tag, this, type); + return soap_in_prodml23__EndpointDateTime(soap, tag, this, type); } -SOAP_FMAC3 prodml22__EndpointDateTime * SOAP_FMAC4 soap_in_prodml22__EndpointDateTime(struct soap *soap, const char *tag, prodml22__EndpointDateTime *a, const char *type) +SOAP_FMAC3 prodml23__EndpointDateTime * SOAP_FMAC4 soap_in_prodml23__EndpointDateTime(struct soap *soap, const char *tag, prodml23__EndpointDateTime *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__EndpointDateTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime, sizeof(prodml22__EndpointDateTime), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__EndpointDateTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime, sizeof(prodml23__EndpointDateTime), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime) - return (prodml22__EndpointDateTime *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime) + return (prodml23__EndpointDateTime *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__EndpointQualifierInterval(soap, soap_attr_value(soap, "endpoint", 5, 3), &((prodml22__EndpointDateTime*)a)->endpoint)) + if (soap_s2prodml23__EndpointQualifierInterval(soap, soap_attr_value(soap, "endpoint", 5, 3), &((prodml23__EndpointDateTime*)a)->endpoint)) return NULL; - if (!soap_in_eml23__TimeStamp(soap, tag, &a->prodml22__EndpointDateTime::__item, "prodml22:EndpointDateTime")) + if (!soap_in_eml23__TimeStamp(soap, tag, &a->prodml23__EndpointDateTime::__item, "prodml23:EndpointDateTime")) return NULL; return a; } -SOAP_FMAC1 prodml22__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml22__EndpointDateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml23__EndpointDateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__EndpointDateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__EndpointDateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__EndpointDateTime *p; - size_t k = sizeof(prodml22__EndpointDateTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime, n, gsoap_eml2_3_fdelete); + prodml23__EndpointDateTime *p; + size_t k = sizeof(prodml23__EndpointDateTime); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__EndpointDateTime); + { p = SOAP_NEW(soap, prodml23__EndpointDateTime); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__EndpointDateTime, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__EndpointDateTime, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__EndpointDateTime location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__EndpointDateTime location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165149,116 +165144,116 @@ SOAP_FMAC1 prodml22__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml22__En return p; } -int prodml22__EndpointDateTime::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__EndpointDateTime::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__EndpointDateTime(soap, tag ? tag : "prodml22:EndpointDateTime", -2, this, type)) + if (soap_out_prodml23__EndpointDateTime(soap, tag ? tag : "prodml23:EndpointDateTime", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__EndpointDateTime::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointDateTime::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__EndpointDateTime(soap, this, tag, type); + return soap_get_prodml23__EndpointDateTime(soap, this, tag, type); } -SOAP_FMAC3 prodml22__EndpointDateTime * SOAP_FMAC4 soap_get_prodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointDateTime * SOAP_FMAC4 soap_get_prodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__EndpointDateTime(soap, tag, p, type))) + if ((p = soap_in_prodml23__EndpointDateTime(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TimeSeriesStringSample::soap_default(struct soap *soap) +void prodml23__TimeSeriesStringSample::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractString(soap, &this->prodml22__TimeSeriesStringSample::__item); - this->prodml22__TimeSeriesStringSample::dTim = NULL; + soap_default_eml23__AbstractString(soap, &this->prodml23__TimeSeriesStringSample::__item); + this->prodml23__TimeSeriesStringSample::dTim = NULL; } -void prodml22__TimeSeriesStringSample::soap_serialize(struct soap *soap) const +void prodml23__TimeSeriesStringSample::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_eml23__AbstractString(soap, &this->prodml22__TimeSeriesStringSample::__item); + soap_serialize_eml23__AbstractString(soap, &this->prodml23__TimeSeriesStringSample::__item); #endif } -int prodml22__TimeSeriesStringSample::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TimeSeriesStringSample::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TimeSeriesStringSample(soap, tag, id, this, type); + return soap_out_prodml23__TimeSeriesStringSample(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesStringSample(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesStringSample *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesStringSample(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesStringSample *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesStringSample"; - if (((prodml22__TimeSeriesStringSample*)a)->dTim) - { soap_set_attr(soap, "dTim", soap_eml23__TimeStamp2s(soap, *((prodml22__TimeSeriesStringSample*)a)->dTim), 1); + type = "prodml23:TimeSeriesStringSample"; + if (((prodml23__TimeSeriesStringSample*)a)->dTim) + { soap_set_attr(soap, "dTim", soap_eml23__TimeStamp2s(soap, *((prodml23__TimeSeriesStringSample*)a)->dTim), 1); } (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractString(soap, tag, id, &a->prodml22__TimeSeriesStringSample::__item, "prodml22:TimeSeriesStringSample"); + return soap_out_eml23__AbstractString(soap, tag, id, &a->prodml23__TimeSeriesStringSample::__item, "prodml23:TimeSeriesStringSample"); } -void *prodml22__TimeSeriesStringSample::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesStringSample::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TimeSeriesStringSample(soap, tag, this, type); + return soap_in_prodml23__TimeSeriesStringSample(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TimeSeriesStringSample * SOAP_FMAC4 soap_in_prodml22__TimeSeriesStringSample(struct soap *soap, const char *tag, prodml22__TimeSeriesStringSample *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesStringSample * SOAP_FMAC4 soap_in_prodml23__TimeSeriesStringSample(struct soap *soap, const char *tag, prodml23__TimeSeriesStringSample *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__TimeSeriesStringSample*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample, sizeof(prodml22__TimeSeriesStringSample), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__TimeSeriesStringSample*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample, sizeof(prodml23__TimeSeriesStringSample), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample) - return (prodml22__TimeSeriesStringSample *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample) + return (prodml23__TimeSeriesStringSample *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); { const char *t = soap_attr_value(soap, "dTim", 5, 0); if (t) { - if (!(((prodml22__TimeSeriesStringSample*)a)->dTim = (struct tm *)soap_malloc(soap, sizeof(struct tm)))) + if (!(((prodml23__TimeSeriesStringSample*)a)->dTim = (struct tm *)soap_malloc(soap, sizeof(struct tm)))) return NULL; - if (soap_s2eml23__TimeStamp(soap, t, ((prodml22__TimeSeriesStringSample*)a)->dTim)) + if (soap_s2eml23__TimeStamp(soap, t, ((prodml23__TimeSeriesStringSample*)a)->dTim)) return NULL; } else if (soap->error) return NULL; } - if (!soap_in_eml23__AbstractString(soap, tag, &a->prodml22__TimeSeriesStringSample::__item, "prodml22:TimeSeriesStringSample")) + if (!soap_in_eml23__AbstractString(soap, tag, &a->prodml23__TimeSeriesStringSample::__item, "prodml23:TimeSeriesStringSample")) return NULL; return a; } -SOAP_FMAC1 prodml22__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesStringSample(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesStringSample(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TimeSeriesStringSample(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TimeSeriesStringSample(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TimeSeriesStringSample *p; - size_t k = sizeof(prodml22__TimeSeriesStringSample); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample, n, gsoap_eml2_3_fdelete); + prodml23__TimeSeriesStringSample *p; + size_t k = sizeof(prodml23__TimeSeriesStringSample); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TimeSeriesStringSample); + { p = SOAP_NEW(soap, prodml23__TimeSeriesStringSample); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TimeSeriesStringSample, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TimeSeriesStringSample, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TimeSeriesStringSample location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TimeSeriesStringSample location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165268,87 +165263,87 @@ SOAP_FMAC1 prodml22__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__TimeSeriesStringSample::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TimeSeriesStringSample::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TimeSeriesStringSample(soap, tag ? tag : "prodml22:TimeSeriesStringSample", -2, this, type)) + if (soap_out_prodml23__TimeSeriesStringSample(soap, tag ? tag : "prodml23:TimeSeriesStringSample", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TimeSeriesStringSample::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesStringSample::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TimeSeriesStringSample(soap, this, tag, type); + return soap_get_prodml23__TimeSeriesStringSample(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TimeSeriesStringSample * SOAP_FMAC4 soap_get_prodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesStringSample * SOAP_FMAC4 soap_get_prodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesStringSample(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesStringSample(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TimeSeriesDoubleSample::soap_default(struct soap *soap) +void prodml23__TimeSeriesDoubleSample::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractMeasure(soap, &this->prodml22__TimeSeriesDoubleSample::__item); - this->prodml22__TimeSeriesDoubleSample::dTim = NULL; - this->prodml22__TimeSeriesDoubleSample::status = NULL; + soap_default_eml23__AbstractMeasure(soap, &this->prodml23__TimeSeriesDoubleSample::__item); + this->prodml23__TimeSeriesDoubleSample::dTim = NULL; + this->prodml23__TimeSeriesDoubleSample::status = NULL; } -void prodml22__TimeSeriesDoubleSample::soap_serialize(struct soap *soap) const +void prodml23__TimeSeriesDoubleSample::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__TimeSeriesDoubleSample::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TimeSeriesDoubleSample::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TimeSeriesDoubleSample(soap, tag, id, this, type); + return soap_out_prodml23__TimeSeriesDoubleSample(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesDoubleSample(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesDoubleSample *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesDoubleSample(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesDoubleSample *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesDoubleSample"; - if (((prodml22__TimeSeriesDoubleSample*)a)->dTim) - { soap_set_attr(soap, "dTim", soap_eml23__TimeStamp2s(soap, *((prodml22__TimeSeriesDoubleSample*)a)->dTim), 1); + type = "prodml23:TimeSeriesDoubleSample"; + if (((prodml23__TimeSeriesDoubleSample*)a)->dTim) + { soap_set_attr(soap, "dTim", soap_eml23__TimeStamp2s(soap, *((prodml23__TimeSeriesDoubleSample*)a)->dTim), 1); } - if (((prodml22__TimeSeriesDoubleSample*)a)->status) - { soap_set_attr(soap, "status", soap_prodml22__ValueStatus2s(soap, *((prodml22__TimeSeriesDoubleSample*)a)->status), 1); + if (((prodml23__TimeSeriesDoubleSample*)a)->status) + { soap_set_attr(soap, "status", soap_prodml23__ValueStatus2s(soap, *((prodml23__TimeSeriesDoubleSample*)a)->status), 1); } (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml22__TimeSeriesDoubleSample::__item, "prodml22:TimeSeriesDoubleSample"); + return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml23__TimeSeriesDoubleSample::__item, "prodml23:TimeSeriesDoubleSample"); } -void *prodml22__TimeSeriesDoubleSample::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesDoubleSample::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TimeSeriesDoubleSample(soap, tag, this, type); + return soap_in_prodml23__TimeSeriesDoubleSample(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample * SOAP_FMAC4 soap_in_prodml22__TimeSeriesDoubleSample(struct soap *soap, const char *tag, prodml22__TimeSeriesDoubleSample *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample * SOAP_FMAC4 soap_in_prodml23__TimeSeriesDoubleSample(struct soap *soap, const char *tag, prodml23__TimeSeriesDoubleSample *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__TimeSeriesDoubleSample*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample, sizeof(prodml22__TimeSeriesDoubleSample), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__TimeSeriesDoubleSample*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample, sizeof(prodml23__TimeSeriesDoubleSample), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample) - return (prodml22__TimeSeriesDoubleSample *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample) + return (prodml23__TimeSeriesDoubleSample *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); { const char *t = soap_attr_value(soap, "dTim", 5, 0); if (t) { - if (!(((prodml22__TimeSeriesDoubleSample*)a)->dTim = (struct tm *)soap_malloc(soap, sizeof(struct tm)))) + if (!(((prodml23__TimeSeriesDoubleSample*)a)->dTim = (struct tm *)soap_malloc(soap, sizeof(struct tm)))) return NULL; - if (soap_s2eml23__TimeStamp(soap, t, ((prodml22__TimeSeriesDoubleSample*)a)->dTim)) + if (soap_s2eml23__TimeStamp(soap, t, ((prodml23__TimeSeriesDoubleSample*)a)->dTim)) return NULL; } else if (soap->error) @@ -165358,41 +165353,41 @@ SOAP_FMAC3 prodml22__TimeSeriesDoubleSample * SOAP_FMAC4 soap_in_prodml22__TimeS const char *t = soap_attr_value(soap, "status", 5, 0); if (t) { - if (!(((prodml22__TimeSeriesDoubleSample*)a)->status = (prodml22__ValueStatus *)soap_malloc(soap, sizeof(prodml22__ValueStatus)))) + if (!(((prodml23__TimeSeriesDoubleSample*)a)->status = (prodml23__ValueStatus *)soap_malloc(soap, sizeof(prodml23__ValueStatus)))) return NULL; - if (soap_s2prodml22__ValueStatus(soap, t, ((prodml22__TimeSeriesDoubleSample*)a)->status)) + if (soap_s2prodml23__ValueStatus(soap, t, ((prodml23__TimeSeriesDoubleSample*)a)->status)) return NULL; } else if (soap->error) return NULL; } - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml22__TimeSeriesDoubleSample::__item, "prodml22:TimeSeriesDoubleSample")) + if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml23__TimeSeriesDoubleSample::__item, "prodml23:TimeSeriesDoubleSample")) return NULL; return a; } -SOAP_FMAC1 prodml22__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesDoubleSample(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesDoubleSample(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TimeSeriesDoubleSample(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TimeSeriesDoubleSample(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TimeSeriesDoubleSample *p; - size_t k = sizeof(prodml22__TimeSeriesDoubleSample); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample, n, gsoap_eml2_3_fdelete); + prodml23__TimeSeriesDoubleSample *p; + size_t k = sizeof(prodml23__TimeSeriesDoubleSample); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TimeSeriesDoubleSample); + { p = SOAP_NEW(soap, prodml23__TimeSeriesDoubleSample); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TimeSeriesDoubleSample, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TimeSeriesDoubleSample, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TimeSeriesDoubleSample location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TimeSeriesDoubleSample location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165402,66 +165397,66 @@ SOAP_FMAC1 prodml22__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__TimeSeriesDoubleSample::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TimeSeriesDoubleSample::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TimeSeriesDoubleSample(soap, tag ? tag : "prodml22:TimeSeriesDoubleSample", -2, this, type)) + if (soap_out_prodml23__TimeSeriesDoubleSample(soap, tag ? tag : "prodml23:TimeSeriesDoubleSample", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TimeSeriesDoubleSample::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesDoubleSample::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TimeSeriesDoubleSample(soap, this, tag, type); + return soap_get_prodml23__TimeSeriesDoubleSample(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample * SOAP_FMAC4 soap_get_prodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample * SOAP_FMAC4 soap_get_prodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesDoubleSample(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesDoubleSample(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TimeSeriesData::soap_default(struct soap *soap) +void prodml23__TimeSeriesData::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, &this->prodml22__TimeSeriesData::Key); - this->prodml22__TimeSeriesData::Uom = NULL; - this->prodml22__TimeSeriesData::MeasureClass = NULL; - this->prodml22__TimeSeriesData::Comment = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap, &this->prodml22__TimeSeriesData::DataValue); + soap_default_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, &this->prodml23__TimeSeriesData::Key); + this->prodml23__TimeSeriesData::Uom = NULL; + this->prodml23__TimeSeriesData::MeasureClass = NULL; + this->prodml23__TimeSeriesData::Comment = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap, &this->prodml23__TimeSeriesData::DataValue); } -void prodml22__TimeSeriesData::soap_serialize(struct soap *soap) const +void prodml23__TimeSeriesData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, &this->prodml22__TimeSeriesData::Key); - soap_serialize_PointerToeml23__UnitOfMeasureExt(soap, &this->prodml22__TimeSeriesData::Uom); - soap_serialize_PointerToeml23__MeasureClass(soap, &this->prodml22__TimeSeriesData::MeasureClass); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__TimeSeriesData::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap, &this->prodml22__TimeSeriesData::DataValue); + soap_serialize_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, &this->prodml23__TimeSeriesData::Key); + soap_serialize_PointerToeml23__UnitOfMeasureExt(soap, &this->prodml23__TimeSeriesData::Uom); + soap_serialize_PointerToeml23__MeasureClass(soap, &this->prodml23__TimeSeriesData::MeasureClass); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__TimeSeriesData::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap, &this->prodml23__TimeSeriesData::DataValue); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__TimeSeriesData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TimeSeriesData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TimeSeriesData(soap, tag, id, this, type); + return soap_out_prodml23__TimeSeriesData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesData(struct soap *soap, const char *tag, int id, const prodml22__TimeSeriesData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesData(struct soap *soap, const char *tag, int id, const prodml23__TimeSeriesData *a, const char *type) { if (!type) - type = "prodml22:TimeSeriesData"; + type = "prodml23:TimeSeriesData"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__TimeSeriesData), type ? type : "prodml22:TimeSeriesData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData), type ? type : "prodml23:TimeSeriesData")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -165483,36 +165478,36 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesData(struct soap *soap, c return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, "prodml22:Key", -1, &a->prodml22__TimeSeriesData::Key, "prodml22:KeywordValueStruct")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, "prodml23:Key", -1, &a->prodml23__TimeSeriesData::Key, "prodml23:KeywordValueStruct")) return soap->error; - if (soap_out_PointerToeml23__UnitOfMeasureExt(soap, "prodml22:Uom", -1, &a->prodml22__TimeSeriesData::Uom, "eml23:UnitOfMeasureExt")) + if (soap_out_PointerToeml23__UnitOfMeasureExt(soap, "prodml23:Uom", -1, &a->prodml23__TimeSeriesData::Uom, "eml23:UnitOfMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MeasureClass(soap, "prodml22:MeasureClass", -1, &a->prodml22__TimeSeriesData::MeasureClass, "eml23:MeasureClass")) + if (soap_out_PointerToeml23__MeasureClass(soap, "prodml23:MeasureClass", -1, &a->prodml23__TimeSeriesData::MeasureClass, "eml23:MeasureClass")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__TimeSeriesData::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__TimeSeriesData::Comment, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap, "prodml22:DataValue", -1, &a->prodml22__TimeSeriesData::DataValue, "prodml22:AbstractValue")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap, "prodml23:DataValue", -1, &a->prodml23__TimeSeriesData::DataValue, "prodml23:AbstractValue")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TimeSeriesData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TimeSeriesData(soap, tag, this, type); + return soap_in_prodml23__TimeSeriesData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TimeSeriesData * SOAP_FMAC4 soap_in_prodml22__TimeSeriesData(struct soap *soap, const char *tag, prodml22__TimeSeriesData *a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesData * SOAP_FMAC4 soap_in_prodml23__TimeSeriesData(struct soap *soap, const char *tag, prodml23__TimeSeriesData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TimeSeriesData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData, sizeof(prodml22__TimeSeriesData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TimeSeriesData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData, sizeof(prodml23__TimeSeriesData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TimeSeriesData *)a->soap_in(soap, tag, type); + return (prodml23__TimeSeriesData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -165587,29 +165582,29 @@ SOAP_FMAC3 prodml22__TimeSeriesData * SOAP_FMAC4 soap_in_prodml22__TimeSeriesDat continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, "prodml22:Key", &a->prodml22__TimeSeriesData::Key, "prodml22:KeywordValueStruct")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, "prodml23:Key", &a->prodml23__TimeSeriesData::Key, "prodml23:KeywordValueStruct")) continue; } if (soap_flag_Uom1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__UnitOfMeasureExt(soap, "prodml22:Uom", &a->prodml22__TimeSeriesData::Uom, "eml23:UnitOfMeasureExt")) + { if (soap_in_PointerToeml23__UnitOfMeasureExt(soap, "prodml23:Uom", &a->prodml23__TimeSeriesData::Uom, "eml23:UnitOfMeasureExt")) { soap_flag_Uom1--; continue; } } if (soap_flag_MeasureClass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasureClass(soap, "prodml22:MeasureClass", &a->prodml22__TimeSeriesData::MeasureClass, "eml23:MeasureClass")) + { if (soap_in_PointerToeml23__MeasureClass(soap, "prodml23:MeasureClass", &a->prodml23__TimeSeriesData::MeasureClass, "eml23:MeasureClass")) { soap_flag_MeasureClass1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__TimeSeriesData::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__TimeSeriesData::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap, "prodml22:DataValue", &a->prodml22__TimeSeriesData::DataValue, "prodml22:AbstractValue")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap, "prodml23:DataValue", &a->prodml23__TimeSeriesData::DataValue, "prodml23:AbstractValue")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -165631,35 +165626,35 @@ SOAP_FMAC3 prodml22__TimeSeriesData * SOAP_FMAC4 soap_in_prodml22__TimeSeriesDat return NULL; } else - { a = (prodml22__TimeSeriesData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData, sizeof(prodml22__TimeSeriesData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TimeSeriesData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData, sizeof(prodml23__TimeSeriesData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TimeSeriesData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TimeSeriesData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TimeSeriesData *p; - size_t k = sizeof(prodml22__TimeSeriesData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData, n, gsoap_eml2_3_fdelete); + prodml23__TimeSeriesData *p; + size_t k = sizeof(prodml23__TimeSeriesData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TimeSeriesData); + { p = SOAP_NEW(soap, prodml23__TimeSeriesData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TimeSeriesData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TimeSeriesData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TimeSeriesData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TimeSeriesData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165669,80 +165664,80 @@ SOAP_FMAC1 prodml22__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml22__Time return p; } -int prodml22__TimeSeriesData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TimeSeriesData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TimeSeriesData(soap, tag ? tag : "prodml22:TimeSeriesData", -2, this, type)) + if (soap_out_prodml23__TimeSeriesData(soap, tag ? tag : "prodml23:TimeSeriesData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TimeSeriesData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TimeSeriesData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TimeSeriesData(soap, this, tag, type); + return soap_get_prodml23__TimeSeriesData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TimeSeriesData * SOAP_FMAC4 soap_get_prodml22__TimeSeriesData(struct soap *soap, prodml22__TimeSeriesData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesData * SOAP_FMAC4 soap_get_prodml23__TimeSeriesData(struct soap *soap, prodml23__TimeSeriesData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TimeSeriesData(soap, tag, p, type))) + if ((p = soap_in_prodml23__TimeSeriesData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__StringValue::soap_default(struct soap *soap) +void prodml23__StringValue::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractValue::soap_default(soap); - this->prodml22__StringValue::StringValue = NULL; + this->prodml23__AbstractValue::soap_default(soap); + this->prodml23__StringValue::StringValue = NULL; } -void prodml22__StringValue::soap_serialize(struct soap *soap) const +void prodml23__StringValue::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__TimeSeriesStringSample(soap, &this->prodml22__StringValue::StringValue); - this->prodml22__AbstractValue::soap_serialize(soap); + soap_serialize_PointerToprodml23__TimeSeriesStringSample(soap, &this->prodml23__StringValue::StringValue); + this->prodml23__AbstractValue::soap_serialize(soap); #endif } -int prodml22__StringValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__StringValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__StringValue(soap, tag, id, this, type); + return soap_out_prodml23__StringValue(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StringValue(struct soap *soap, const char *tag, int id, const prodml22__StringValue *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StringValue(struct soap *soap, const char *tag, int id, const prodml23__StringValue *a, const char *type) { if (!type) - type = "prodml22:StringValue"; + type = "prodml23:StringValue"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue), type ? type : "prodml22:StringValue")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue), type ? type : "prodml23:StringValue")) return soap->error; - if (!a->prodml22__StringValue::StringValue) - { if (soap_element_empty(soap, "prodml22:StringValue", 0, NULL)) + if (!a->prodml23__StringValue::StringValue) + { if (soap_element_empty(soap, "prodml23:StringValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TimeSeriesStringSample(soap, "prodml22:StringValue", -1, &a->prodml22__StringValue::StringValue, "prodml22:TimeSeriesStringSample")) + else if (soap_out_PointerToprodml23__TimeSeriesStringSample(soap, "prodml23:StringValue", -1, &a->prodml23__StringValue::StringValue, "prodml23:TimeSeriesStringSample")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__StringValue::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__StringValue::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__StringValue(soap, tag, this, type); + return soap_in_prodml23__StringValue(soap, tag, this, type); } -SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_in_prodml22__StringValue(struct soap *soap, const char *tag, prodml22__StringValue *a, const char *type) +SOAP_FMAC3 prodml23__StringValue * SOAP_FMAC4 soap_in_prodml23__StringValue(struct soap *soap, const char *tag, prodml23__StringValue *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__StringValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue, sizeof(prodml22__StringValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__StringValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue, sizeof(prodml23__StringValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__StringValue *)a->soap_in(soap, tag, type); + return (prodml23__StringValue *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -165752,7 +165747,7 @@ SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_in_prodml22__StringValue(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StringValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesStringSample(soap, "prodml22:StringValue", &a->prodml22__StringValue::StringValue, "prodml22:TimeSeriesStringSample")) + { if (soap_in_PointerToprodml23__TimeSeriesStringSample(soap, "prodml23:StringValue", &a->prodml23__StringValue::StringValue, "prodml23:TimeSeriesStringSample")) { soap_flag_StringValue1--; continue; } @@ -165766,7 +165761,7 @@ SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_in_prodml22__StringValue(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__StringValue::StringValue)) + if ((!a->prodml23__StringValue::StringValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -165776,35 +165771,35 @@ SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_in_prodml22__StringValue(stru return NULL; } else - { a = (prodml22__StringValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue, SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue, sizeof(prodml22__StringValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__StringValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue, SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue, sizeof(prodml23__StringValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__StringValue * SOAP_FMAC2 soap_instantiate_prodml22__StringValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__StringValue * SOAP_FMAC2 soap_instantiate_prodml23__StringValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__StringValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__StringValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__StringValue *p; - size_t k = sizeof(prodml22__StringValue); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue, n, gsoap_eml2_3_fdelete); + prodml23__StringValue *p; + size_t k = sizeof(prodml23__StringValue); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__StringValue); + { p = SOAP_NEW(soap, prodml23__StringValue); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__StringValue, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__StringValue, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__StringValue location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__StringValue location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165814,80 +165809,80 @@ SOAP_FMAC1 prodml22__StringValue * SOAP_FMAC2 soap_instantiate_prodml22__StringV return p; } -int prodml22__StringValue::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__StringValue::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__StringValue(soap, tag ? tag : "prodml22:StringValue", -2, this, type)) + if (soap_out_prodml23__StringValue(soap, tag ? tag : "prodml23:StringValue", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__StringValue::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__StringValue::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__StringValue(soap, this, tag, type); + return soap_get_prodml23__StringValue(soap, this, tag, type); } -SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_get_prodml22__StringValue(struct soap *soap, prodml22__StringValue *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StringValue * SOAP_FMAC4 soap_get_prodml23__StringValue(struct soap *soap, prodml23__StringValue *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__StringValue(soap, tag, p, type))) + if ((p = soap_in_prodml23__StringValue(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DoubleValue::soap_default(struct soap *soap) +void prodml23__DoubleValue::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractValue::soap_default(soap); - this->prodml22__DoubleValue::DoubleValue = NULL; + this->prodml23__AbstractValue::soap_default(soap); + this->prodml23__DoubleValue::DoubleValue = NULL; } -void prodml22__DoubleValue::soap_serialize(struct soap *soap) const +void prodml23__DoubleValue::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__TimeSeriesDoubleSample(soap, &this->prodml22__DoubleValue::DoubleValue); - this->prodml22__AbstractValue::soap_serialize(soap); + soap_serialize_PointerToprodml23__TimeSeriesDoubleSample(soap, &this->prodml23__DoubleValue::DoubleValue); + this->prodml23__AbstractValue::soap_serialize(soap); #endif } -int prodml22__DoubleValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DoubleValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DoubleValue(soap, tag, id, this, type); + return soap_out_prodml23__DoubleValue(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DoubleValue(struct soap *soap, const char *tag, int id, const prodml22__DoubleValue *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DoubleValue(struct soap *soap, const char *tag, int id, const prodml23__DoubleValue *a, const char *type) { if (!type) - type = "prodml22:DoubleValue"; + type = "prodml23:DoubleValue"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue), type ? type : "prodml22:DoubleValue")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue), type ? type : "prodml23:DoubleValue")) return soap->error; - if (!a->prodml22__DoubleValue::DoubleValue) - { if (soap_element_empty(soap, "prodml22:DoubleValue", 0, NULL)) + if (!a->prodml23__DoubleValue::DoubleValue) + { if (soap_element_empty(soap, "prodml23:DoubleValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TimeSeriesDoubleSample(soap, "prodml22:DoubleValue", -1, &a->prodml22__DoubleValue::DoubleValue, "prodml22:TimeSeriesDoubleSample")) + else if (soap_out_PointerToprodml23__TimeSeriesDoubleSample(soap, "prodml23:DoubleValue", -1, &a->prodml23__DoubleValue::DoubleValue, "prodml23:TimeSeriesDoubleSample")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DoubleValue::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DoubleValue::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DoubleValue(soap, tag, this, type); + return soap_in_prodml23__DoubleValue(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_in_prodml22__DoubleValue(struct soap *soap, const char *tag, prodml22__DoubleValue *a, const char *type) +SOAP_FMAC3 prodml23__DoubleValue * SOAP_FMAC4 soap_in_prodml23__DoubleValue(struct soap *soap, const char *tag, prodml23__DoubleValue *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DoubleValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue, sizeof(prodml22__DoubleValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DoubleValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue, sizeof(prodml23__DoubleValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DoubleValue *)a->soap_in(soap, tag, type); + return (prodml23__DoubleValue *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -165897,7 +165892,7 @@ SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_in_prodml22__DoubleValue(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DoubleValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesDoubleSample(soap, "prodml22:DoubleValue", &a->prodml22__DoubleValue::DoubleValue, "prodml22:TimeSeriesDoubleSample")) + { if (soap_in_PointerToprodml23__TimeSeriesDoubleSample(soap, "prodml23:DoubleValue", &a->prodml23__DoubleValue::DoubleValue, "prodml23:TimeSeriesDoubleSample")) { soap_flag_DoubleValue1--; continue; } @@ -165911,7 +165906,7 @@ SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_in_prodml22__DoubleValue(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__DoubleValue::DoubleValue)) + if ((!a->prodml23__DoubleValue::DoubleValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -165921,35 +165916,35 @@ SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_in_prodml22__DoubleValue(stru return NULL; } else - { a = (prodml22__DoubleValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue, SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue, sizeof(prodml22__DoubleValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DoubleValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue, SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue, sizeof(prodml23__DoubleValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml22__DoubleValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml23__DoubleValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DoubleValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DoubleValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DoubleValue *p; - size_t k = sizeof(prodml22__DoubleValue); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue, n, gsoap_eml2_3_fdelete); + prodml23__DoubleValue *p; + size_t k = sizeof(prodml23__DoubleValue); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DoubleValue); + { p = SOAP_NEW(soap, prodml23__DoubleValue); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DoubleValue, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DoubleValue, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DoubleValue location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DoubleValue location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -165959,70 +165954,70 @@ SOAP_FMAC1 prodml22__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml22__DoubleV return p; } -int prodml22__DoubleValue::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DoubleValue::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DoubleValue(soap, tag ? tag : "prodml22:DoubleValue", -2, this, type)) + if (soap_out_prodml23__DoubleValue(soap, tag ? tag : "prodml23:DoubleValue", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DoubleValue::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DoubleValue::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DoubleValue(soap, this, tag, type); + return soap_get_prodml23__DoubleValue(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_get_prodml22__DoubleValue(struct soap *soap, prodml22__DoubleValue *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DoubleValue * SOAP_FMAC4 soap_get_prodml23__DoubleValue(struct soap *soap, prodml23__DoubleValue *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DoubleValue(soap, tag, p, type))) + if ((p = soap_in_prodml23__DoubleValue(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractValue::soap_default(struct soap *soap) +void prodml23__AbstractValue::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractValue::soap_serialize(struct soap *soap) const +void prodml23__AbstractValue::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractValue(soap, tag, id, this, type); + return soap_out_prodml23__AbstractValue(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractValue(struct soap *soap, const char *tag, int id, const prodml22__AbstractValue *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractValue(struct soap *soap, const char *tag, int id, const prodml23__AbstractValue *a, const char *type) { if (!type) - type = "prodml22:AbstractValue"; + type = "prodml23:AbstractValue"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractValue::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractValue::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractValue(soap, tag, this, type); + return soap_in_prodml23__AbstractValue(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractValue * SOAP_FMAC4 soap_in_prodml22__AbstractValue(struct soap *soap, const char *tag, prodml22__AbstractValue *a, const char *type) +SOAP_FMAC3 prodml23__AbstractValue * SOAP_FMAC4 soap_in_prodml23__AbstractValue(struct soap *soap, const char *tag, prodml23__AbstractValue *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, sizeof(prodml22__AbstractValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, sizeof(prodml23__AbstractValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractValue *)a->soap_in(soap, tag, type); + return (prodml23__AbstractValue *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -166041,39 +166036,39 @@ SOAP_FMAC3 prodml22__AbstractValue * SOAP_FMAC4 soap_in_prodml22__AbstractValue( return NULL; } else - { a = (prodml22__AbstractValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, sizeof(prodml22__AbstractValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, sizeof(prodml23__AbstractValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml22__AbstractValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml23__AbstractValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractValue(%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, "prodml22:DoubleValue")) - return soap_instantiate_prodml22__DoubleValue(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:StringValue")) - return soap_instantiate_prodml22__StringValue(soap, n, NULL, NULL, size); - prodml22__AbstractValue *p; - size_t k = sizeof(prodml22__AbstractValue); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DoubleValue")) + return soap_instantiate_prodml23__DoubleValue(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:StringValue")) + return soap_instantiate_prodml23__StringValue(soap, n, NULL, NULL, size); + prodml23__AbstractValue *p; + size_t k = sizeof(prodml23__AbstractValue); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractValue); + { p = SOAP_NEW(soap, prodml23__AbstractValue); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractValue, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractValue, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractValue location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractValue location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -166083,82 +166078,82 @@ SOAP_FMAC1 prodml22__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml22__Abstr return p; } -int prodml22__AbstractValue::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractValue::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractValue(soap, tag ? tag : "prodml22:AbstractValue", -2, this, type)) + if (soap_out_prodml23__AbstractValue(soap, tag ? tag : "prodml23:AbstractValue", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractValue::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractValue::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractValue(soap, this, tag, type); + return soap_get_prodml23__AbstractValue(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractValue * SOAP_FMAC4 soap_get_prodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractValue * SOAP_FMAC4 soap_get_prodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractValue(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractValue(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RelativeCoordinate::soap_default(struct soap *soap) +void prodml23__RelativeCoordinate::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__RelativeCoordinate::X = NULL; - this->prodml22__RelativeCoordinate::Y = NULL; - this->prodml22__RelativeCoordinate::Z = NULL; + this->prodml23__RelativeCoordinate::X = NULL; + this->prodml23__RelativeCoordinate::Y = NULL; + this->prodml23__RelativeCoordinate::Z = NULL; } -void prodml22__RelativeCoordinate::soap_serialize(struct soap *soap) const +void prodml23__RelativeCoordinate::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml22__RelativeCoordinate::X); - soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml22__RelativeCoordinate::Y); - soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml22__RelativeCoordinate::Z); + soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml23__RelativeCoordinate::X); + soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml23__RelativeCoordinate::Y); + soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml23__RelativeCoordinate::Z); #endif } -int prodml22__RelativeCoordinate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RelativeCoordinate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RelativeCoordinate(soap, tag, id, this, type); + return soap_out_prodml23__RelativeCoordinate(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RelativeCoordinate(struct soap *soap, const char *tag, int id, const prodml22__RelativeCoordinate *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RelativeCoordinate(struct soap *soap, const char *tag, int id, const prodml23__RelativeCoordinate *a, const char *type) { if (!type) - type = "prodml22:RelativeCoordinate"; + type = "prodml23:RelativeCoordinate"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate), type)) return soap->error; - if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:X", -1, &a->prodml22__RelativeCoordinate::X, "eml23:LengthPerLengthMeasure")) + if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:X", -1, &a->prodml23__RelativeCoordinate::X, "eml23:LengthPerLengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:Y", -1, &a->prodml22__RelativeCoordinate::Y, "eml23:LengthPerLengthMeasure")) + if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:Y", -1, &a->prodml23__RelativeCoordinate::Y, "eml23:LengthPerLengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:Z", -1, &a->prodml22__RelativeCoordinate::Z, "eml23:LengthPerLengthMeasure")) + if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:Z", -1, &a->prodml23__RelativeCoordinate::Z, "eml23:LengthPerLengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RelativeCoordinate::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RelativeCoordinate::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RelativeCoordinate(soap, tag, this, type); + return soap_in_prodml23__RelativeCoordinate(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RelativeCoordinate * SOAP_FMAC4 soap_in_prodml22__RelativeCoordinate(struct soap *soap, const char *tag, prodml22__RelativeCoordinate *a, const char *type) +SOAP_FMAC3 prodml23__RelativeCoordinate * SOAP_FMAC4 soap_in_prodml23__RelativeCoordinate(struct soap *soap, const char *tag, prodml23__RelativeCoordinate *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RelativeCoordinate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate, sizeof(prodml22__RelativeCoordinate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RelativeCoordinate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate, sizeof(prodml23__RelativeCoordinate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RelativeCoordinate *)a->soap_in(soap, tag, type); + return (prodml23__RelativeCoordinate *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -166170,19 +166165,19 @@ SOAP_FMAC3 prodml22__RelativeCoordinate * SOAP_FMAC4 soap_in_prodml22__RelativeC for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_X1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:X", &a->prodml22__RelativeCoordinate::X, "eml23:LengthPerLengthMeasure")) + { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:X", &a->prodml23__RelativeCoordinate::X, "eml23:LengthPerLengthMeasure")) { soap_flag_X1--; continue; } } if (soap_flag_Y1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:Y", &a->prodml22__RelativeCoordinate::Y, "eml23:LengthPerLengthMeasure")) + { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:Y", &a->prodml23__RelativeCoordinate::Y, "eml23:LengthPerLengthMeasure")) { soap_flag_Y1--; continue; } } if (soap_flag_Z1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:Z", &a->prodml22__RelativeCoordinate::Z, "eml23:LengthPerLengthMeasure")) + { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:Z", &a->prodml23__RelativeCoordinate::Z, "eml23:LengthPerLengthMeasure")) { soap_flag_Z1--; continue; } @@ -166198,35 +166193,35 @@ SOAP_FMAC3 prodml22__RelativeCoordinate * SOAP_FMAC4 soap_in_prodml22__RelativeC return NULL; } else - { a = (prodml22__RelativeCoordinate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate, sizeof(prodml22__RelativeCoordinate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RelativeCoordinate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate, sizeof(prodml23__RelativeCoordinate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml22__RelativeCoordinate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml23__RelativeCoordinate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RelativeCoordinate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RelativeCoordinate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RelativeCoordinate *p; - size_t k = sizeof(prodml22__RelativeCoordinate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate, n, gsoap_eml2_3_fdelete); + prodml23__RelativeCoordinate *p; + size_t k = sizeof(prodml23__RelativeCoordinate); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RelativeCoordinate); + { p = SOAP_NEW(soap, prodml23__RelativeCoordinate); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RelativeCoordinate, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RelativeCoordinate, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RelativeCoordinate location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RelativeCoordinate location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -166236,76 +166231,76 @@ SOAP_FMAC1 prodml22__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__RelativeCoordinate::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RelativeCoordinate::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RelativeCoordinate(soap, tag ? tag : "prodml22:RelativeCoordinate", -2, this, type)) + if (soap_out_prodml23__RelativeCoordinate(soap, tag ? tag : "prodml23:RelativeCoordinate", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RelativeCoordinate::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RelativeCoordinate::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RelativeCoordinate(soap, this, tag, type); + return soap_get_prodml23__RelativeCoordinate(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RelativeCoordinate * SOAP_FMAC4 soap_get_prodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RelativeCoordinate * SOAP_FMAC4 soap_get_prodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RelativeCoordinate(soap, tag, p, type))) + if ((p = soap_in_prodml23__RelativeCoordinate(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Qualifier::soap_default(struct soap *soap) +void prodml23__Qualifier::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ExpectedFlowQualifier::soap_default(soap); - soap_default_std__vectorTemplateOfprodml22__FlowQualifier(soap, &this->prodml22__Qualifier::Qualifier); + this->prodml23__ExpectedFlowQualifier::soap_default(soap); + soap_default_std__vectorTemplateOfprodml23__FlowQualifier(soap, &this->prodml23__Qualifier::Qualifier); } -void prodml22__Qualifier::soap_serialize(struct soap *soap) const +void prodml23__Qualifier::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfprodml22__FlowQualifier(soap, &this->prodml22__Qualifier::Qualifier); - this->prodml22__ExpectedFlowQualifier::soap_serialize(soap); + soap_serialize_std__vectorTemplateOfprodml23__FlowQualifier(soap, &this->prodml23__Qualifier::Qualifier); + this->prodml23__ExpectedFlowQualifier::soap_serialize(soap); #endif } -int prodml22__Qualifier::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Qualifier::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Qualifier(soap, tag, id, this, type); + return soap_out_prodml23__Qualifier(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Qualifier(struct soap *soap, const char *tag, int id, const prodml22__Qualifier *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Qualifier(struct soap *soap, const char *tag, int id, const prodml23__Qualifier *a, const char *type) { if (!type) - type = "prodml22:Qualifier"; + type = "prodml23:Qualifier"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier), type ? type : "prodml22:Qualifier")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier), type ? type : "prodml23:Qualifier")) return soap->error; - if (soap_out_std__vectorTemplateOfprodml22__FlowQualifier(soap, "prodml22:Qualifier", -1, &a->prodml22__Qualifier::Qualifier, "prodml22:FlowQualifier")) + if (soap_out_std__vectorTemplateOfprodml23__FlowQualifier(soap, "prodml23:Qualifier", -1, &a->prodml23__Qualifier::Qualifier, "prodml23:FlowQualifier")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Qualifier::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Qualifier::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Qualifier(soap, tag, this, type); + return soap_in_prodml23__Qualifier(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Qualifier * SOAP_FMAC4 soap_in_prodml22__Qualifier(struct soap *soap, const char *tag, prodml22__Qualifier *a, const char *type) +SOAP_FMAC3 prodml23__Qualifier * SOAP_FMAC4 soap_in_prodml23__Qualifier(struct soap *soap, const char *tag, prodml23__Qualifier *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Qualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier, sizeof(prodml22__Qualifier), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Qualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier, sizeof(prodml23__Qualifier), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Qualifier *)a->soap_in(soap, tag, type); + return (prodml23__Qualifier *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -166314,7 +166309,7 @@ SOAP_FMAC3 prodml22__Qualifier * SOAP_FMAC4 soap_in_prodml22__Qualifier(struct s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfprodml22__FlowQualifier(soap, "prodml22:Qualifier", &a->prodml22__Qualifier::Qualifier, "prodml22:FlowQualifier")) + { if (soap_in_std__vectorTemplateOfprodml23__FlowQualifier(soap, "prodml23:Qualifier", &a->prodml23__Qualifier::Qualifier, "prodml23:FlowQualifier")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -166328,35 +166323,35 @@ SOAP_FMAC3 prodml22__Qualifier * SOAP_FMAC4 soap_in_prodml22__Qualifier(struct s return NULL; } else - { a = (prodml22__Qualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier, SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier, sizeof(prodml22__Qualifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Qualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier, SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier, sizeof(prodml23__Qualifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Qualifier * SOAP_FMAC2 soap_instantiate_prodml22__Qualifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Qualifier * SOAP_FMAC2 soap_instantiate_prodml23__Qualifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Qualifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Qualifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Qualifier *p; - size_t k = sizeof(prodml22__Qualifier); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier, n, gsoap_eml2_3_fdelete); + prodml23__Qualifier *p; + size_t k = sizeof(prodml23__Qualifier); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Qualifier); + { p = SOAP_NEW(soap, prodml23__Qualifier); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Qualifier, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Qualifier, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Qualifier location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Qualifier location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -166366,124 +166361,124 @@ SOAP_FMAC1 prodml22__Qualifier * SOAP_FMAC2 soap_instantiate_prodml22__Qualifier return p; } -int prodml22__Qualifier::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Qualifier::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Qualifier(soap, tag ? tag : "prodml22:Qualifier", -2, this, type)) + if (soap_out_prodml23__Qualifier(soap, tag ? tag : "prodml23:Qualifier", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Qualifier::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Qualifier::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Qualifier(soap, this, tag, type); + return soap_get_prodml23__Qualifier(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Qualifier * SOAP_FMAC4 soap_get_prodml22__Qualifier(struct soap *soap, prodml22__Qualifier *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Qualifier * SOAP_FMAC4 soap_get_prodml23__Qualifier(struct soap *soap, prodml23__Qualifier *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Qualifier(soap, tag, p, type))) + if ((p = soap_in_prodml23__Qualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowUnit::soap_default(struct soap *soap) +void prodml23__ProductFlowUnit::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductFlowUnit::Name = NULL; - this->prodml22__ProductFlowUnit::PlanName = NULL; - this->prodml22__ProductFlowUnit::InternalNetworkReference = NULL; - this->prodml22__ProductFlowUnit::Facility = NULL; - this->prodml22__ProductFlowUnit::FacilityParent1 = NULL; - this->prodml22__ProductFlowUnit::FacilityParent2 = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowUnit::ContextFacility); - this->prodml22__ProductFlowUnit::Comment = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, &this->prodml22__ProductFlowUnit::ExpectedProperty); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap, &this->prodml22__ProductFlowUnit::Port); - this->prodml22__ProductFlowUnit::RelativeCoordinate = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductFlowUnit::FacilityAlias); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowUnit::uid); + this->prodml23__ProductFlowUnit::Name = NULL; + this->prodml23__ProductFlowUnit::PlanName = NULL; + this->prodml23__ProductFlowUnit::InternalNetworkReference = NULL; + this->prodml23__ProductFlowUnit::Facility = NULL; + this->prodml23__ProductFlowUnit::FacilityParent1 = NULL; + this->prodml23__ProductFlowUnit::FacilityParent2 = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowUnit::ContextFacility); + this->prodml23__ProductFlowUnit::Comment = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, &this->prodml23__ProductFlowUnit::ExpectedProperty); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap, &this->prodml23__ProductFlowUnit::Port); + this->prodml23__ProductFlowUnit::RelativeCoordinate = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductFlowUnit::FacilityAlias); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowUnit::uid); } -void prodml22__ProductFlowUnit::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowUnit::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductFlowUnit::Name); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductFlowUnit::PlanName); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductFlowUnit::InternalNetworkReference); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowUnit::Facility); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowUnit::FacilityParent1); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowUnit::FacilityParent2); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowUnit::ContextFacility); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowUnit::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, &this->prodml22__ProductFlowUnit::ExpectedProperty); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap, &this->prodml22__ProductFlowUnit::Port); - soap_serialize_PointerToprodml22__RelativeCoordinate(soap, &this->prodml22__ProductFlowUnit::RelativeCoordinate); - soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductFlowUnit::FacilityAlias); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductFlowUnit::Name); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductFlowUnit::PlanName); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductFlowUnit::InternalNetworkReference); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowUnit::Facility); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowUnit::FacilityParent1); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowUnit::FacilityParent2); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowUnit::ContextFacility); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowUnit::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, &this->prodml23__ProductFlowUnit::ExpectedProperty); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap, &this->prodml23__ProductFlowUnit::Port); + soap_serialize_PointerToprodml23__RelativeCoordinate(soap, &this->prodml23__ProductFlowUnit::RelativeCoordinate); + soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductFlowUnit::FacilityAlias); #endif } -int prodml22__ProductFlowUnit::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowUnit::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowUnit(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowUnit(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowUnit(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowUnit *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowUnit(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowUnit *a, const char *type) { if (!type) - type = "prodml22:ProductFlowUnit"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowUnit*)a)->uid), 1); + type = "prodml23:ProductFlowUnit"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowUnit*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowUnit), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductFlowUnit::Name, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductFlowUnit::Name, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PlanName", -1, &a->prodml22__ProductFlowUnit::PlanName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PlanName", -1, &a->prodml23__ProductFlowUnit::PlanName, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:InternalNetworkReference", -1, &a->prodml22__ProductFlowUnit::InternalNetworkReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:InternalNetworkReference", -1, &a->prodml23__ProductFlowUnit::InternalNetworkReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Facility", -1, &a->prodml22__ProductFlowUnit::Facility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Facility", -1, &a->prodml23__ProductFlowUnit::Facility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent1", -1, &a->prodml22__ProductFlowUnit::FacilityParent1, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent1", -1, &a->prodml23__ProductFlowUnit::FacilityParent1, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent2", -1, &a->prodml22__ProductFlowUnit::FacilityParent2, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent2", -1, &a->prodml23__ProductFlowUnit::FacilityParent2, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", -1, &a->prodml22__ProductFlowUnit::ContextFacility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", -1, &a->prodml23__ProductFlowUnit::ContextFacility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductFlowUnit::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductFlowUnit::Comment, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, "prodml22:ExpectedProperty", -1, &a->prodml22__ProductFlowUnit::ExpectedProperty, "prodml22:ProductFlowExpectedUnitProperty")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, "prodml23:ExpectedProperty", -1, &a->prodml23__ProductFlowUnit::ExpectedProperty, "prodml23:ProductFlowExpectedUnitProperty")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap, "prodml22:Port", -1, &a->prodml22__ProductFlowUnit::Port, "prodml22:ProductFlowPort")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap, "prodml23:Port", -1, &a->prodml23__ProductFlowUnit::Port, "prodml23:ProductFlowPort")) return soap->error; - if (soap_out_PointerToprodml22__RelativeCoordinate(soap, "prodml22:RelativeCoordinate", -1, &a->prodml22__ProductFlowUnit::RelativeCoordinate, "prodml22:RelativeCoordinate")) + if (soap_out_PointerToprodml23__RelativeCoordinate(soap, "prodml23:RelativeCoordinate", -1, &a->prodml23__ProductFlowUnit::RelativeCoordinate, "prodml23:RelativeCoordinate")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", -1, &a->prodml22__ProductFlowUnit::FacilityAlias, "eml23:NameStruct")) + if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", -1, &a->prodml23__ProductFlowUnit::FacilityAlias, "eml23:NameStruct")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowUnit::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowUnit::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowUnit(soap, tag, this, type); + return soap_in_prodml23__ProductFlowUnit(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowUnit * SOAP_FMAC4 soap_in_prodml22__ProductFlowUnit(struct soap *soap, const char *tag, prodml22__ProductFlowUnit *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowUnit * SOAP_FMAC4 soap_in_prodml23__ProductFlowUnit(struct soap *soap, const char *tag, prodml23__ProductFlowUnit *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowUnit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, sizeof(prodml22__ProductFlowUnit), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowUnit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, sizeof(prodml23__ProductFlowUnit), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowUnit *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowUnit *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowUnit*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowUnit*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_PlanName1 = 1; @@ -166498,67 +166493,67 @@ SOAP_FMAC3 prodml22__ProductFlowUnit * SOAP_FMAC4 soap_in_prodml22__ProductFlowU for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Name", &a->prodml22__ProductFlowUnit::Name, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Name", &a->prodml23__ProductFlowUnit::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_PlanName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PlanName", &a->prodml22__ProductFlowUnit::PlanName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PlanName", &a->prodml23__ProductFlowUnit::PlanName, "eml23:String64")) { soap_flag_PlanName1--; continue; } } if (soap_flag_InternalNetworkReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:InternalNetworkReference", &a->prodml22__ProductFlowUnit::InternalNetworkReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:InternalNetworkReference", &a->prodml23__ProductFlowUnit::InternalNetworkReference, "eml23:String64")) { soap_flag_InternalNetworkReference1--; continue; } } if (soap_flag_Facility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Facility", &a->prodml22__ProductFlowUnit::Facility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Facility", &a->prodml23__ProductFlowUnit::Facility, "prodml23:FacilityIdentifierStruct")) { soap_flag_Facility1--; continue; } } if (soap_flag_FacilityParent11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent1", &a->prodml22__ProductFlowUnit::FacilityParent1, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent1", &a->prodml23__ProductFlowUnit::FacilityParent1, "prodml23:FacilityIdentifierStruct")) { soap_flag_FacilityParent11--; continue; } } if (soap_flag_FacilityParent21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent2", &a->prodml22__ProductFlowUnit::FacilityParent2, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent2", &a->prodml23__ProductFlowUnit::FacilityParent2, "prodml23:FacilityIdentifierStruct")) { soap_flag_FacilityParent21--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", &a->prodml22__ProductFlowUnit::ContextFacility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", &a->prodml23__ProductFlowUnit::ContextFacility, "prodml23:FacilityIdentifierStruct")) continue; } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductFlowUnit::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductFlowUnit::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, "prodml22:ExpectedProperty", &a->prodml22__ProductFlowUnit::ExpectedProperty, "prodml22:ProductFlowExpectedUnitProperty")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, "prodml23:ExpectedProperty", &a->prodml23__ProductFlowUnit::ExpectedProperty, "prodml23:ProductFlowExpectedUnitProperty")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap, "prodml22:Port", &a->prodml22__ProductFlowUnit::Port, "prodml22:ProductFlowPort")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap, "prodml23:Port", &a->prodml23__ProductFlowUnit::Port, "prodml23:ProductFlowPort")) continue; } if (soap_flag_RelativeCoordinate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RelativeCoordinate(soap, "prodml22:RelativeCoordinate", &a->prodml22__ProductFlowUnit::RelativeCoordinate, "prodml22:RelativeCoordinate")) + { if (soap_in_PointerToprodml23__RelativeCoordinate(soap, "prodml23:RelativeCoordinate", &a->prodml23__ProductFlowUnit::RelativeCoordinate, "prodml23:RelativeCoordinate")) { soap_flag_RelativeCoordinate1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", &a->prodml22__ProductFlowUnit::FacilityAlias, "eml23:NameStruct")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", &a->prodml23__ProductFlowUnit::FacilityAlias, "eml23:NameStruct")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -166572,35 +166567,35 @@ SOAP_FMAC3 prodml22__ProductFlowUnit * SOAP_FMAC4 soap_in_prodml22__ProductFlowU return NULL; } else - { a = (prodml22__ProductFlowUnit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, sizeof(prodml22__ProductFlowUnit), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowUnit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, sizeof(prodml23__ProductFlowUnit), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowUnit *p; - size_t k = sizeof(prodml22__ProductFlowUnit); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowUnit *p; + size_t k = sizeof(prodml23__ProductFlowUnit); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowUnit); + { p = SOAP_NEW(soap, prodml23__ProductFlowUnit); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowUnit, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowUnit, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowUnit location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowUnit location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -166610,89 +166605,89 @@ SOAP_FMAC1 prodml22__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml22__Pro return p; } -int prodml22__ProductFlowUnit::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowUnit::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowUnit(soap, tag ? tag : "prodml22:ProductFlowUnit", -2, this, type)) + if (soap_out_prodml23__ProductFlowUnit(soap, tag ? tag : "prodml23:ProductFlowUnit", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowUnit::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowUnit::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowUnit(soap, this, tag, type); + return soap_get_prodml23__ProductFlowUnit(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowUnit * SOAP_FMAC4 soap_get_prodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowUnit * SOAP_FMAC4 soap_get_prodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowUnit(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowUnit(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowQualifierExpected::soap_default(struct soap *soap) +void prodml23__ProductFlowQualifierExpected::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ExpectedFlowQualifier::soap_default(soap); - soap_default_prodml22__ReportingFlow(soap, &this->prodml22__ProductFlowQualifierExpected::Flow); - this->prodml22__ProductFlowQualifierExpected::Product = NULL; - soap_default_std__vectorTemplateOfprodml22__FlowQualifier(soap, &this->prodml22__ProductFlowQualifierExpected::Qualifier); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowQualifierExpected::uid); + this->prodml23__ExpectedFlowQualifier::soap_default(soap); + soap_default_prodml23__ReportingFlow(soap, &this->prodml23__ProductFlowQualifierExpected::Flow); + this->prodml23__ProductFlowQualifierExpected::Product = NULL; + soap_default_std__vectorTemplateOfprodml23__FlowQualifier(soap, &this->prodml23__ProductFlowQualifierExpected::Qualifier); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowQualifierExpected::uid); } -void prodml22__ProductFlowQualifierExpected::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowQualifierExpected::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ReportingProduct(soap, &this->prodml22__ProductFlowQualifierExpected::Product); - soap_serialize_std__vectorTemplateOfprodml22__FlowQualifier(soap, &this->prodml22__ProductFlowQualifierExpected::Qualifier); - this->prodml22__ExpectedFlowQualifier::soap_serialize(soap); + soap_serialize_PointerToprodml23__ReportingProduct(soap, &this->prodml23__ProductFlowQualifierExpected::Product); + soap_serialize_std__vectorTemplateOfprodml23__FlowQualifier(soap, &this->prodml23__ProductFlowQualifierExpected::Qualifier); + this->prodml23__ExpectedFlowQualifier::soap_serialize(soap); #endif } -int prodml22__ProductFlowQualifierExpected::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowQualifierExpected::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowQualifierExpected(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowQualifierExpected(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowQualifierExpected(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowQualifierExpected *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowQualifierExpected(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowQualifierExpected *a, const char *type) { if (!type) - type = "prodml22:ProductFlowQualifierExpected"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowQualifierExpected*)a)->uid), 1); + type = "prodml23:ProductFlowQualifierExpected"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowQualifierExpected*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected), type ? type : "prodml22:ProductFlowQualifierExpected")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected), type ? type : "prodml23:ProductFlowQualifierExpected")) return soap->error; - if (soap_out_prodml22__ReportingFlow(soap, "prodml22:Flow", -1, &a->prodml22__ProductFlowQualifierExpected::Flow, "prodml22:ReportingFlow")) + if (soap_out_prodml23__ReportingFlow(soap, "prodml23:Flow", -1, &a->prodml23__ProductFlowQualifierExpected::Flow, "prodml23:ReportingFlow")) return soap->error; - if (soap_out_PointerToprodml22__ReportingProduct(soap, "prodml22:Product", -1, &a->prodml22__ProductFlowQualifierExpected::Product, "prodml22:ReportingProduct")) + if (soap_out_PointerToprodml23__ReportingProduct(soap, "prodml23:Product", -1, &a->prodml23__ProductFlowQualifierExpected::Product, "prodml23:ReportingProduct")) return soap->error; - if (soap_out_std__vectorTemplateOfprodml22__FlowQualifier(soap, "prodml22:Qualifier", -1, &a->prodml22__ProductFlowQualifierExpected::Qualifier, "prodml22:FlowQualifier")) + if (soap_out_std__vectorTemplateOfprodml23__FlowQualifier(soap, "prodml23:Qualifier", -1, &a->prodml23__ProductFlowQualifierExpected::Qualifier, "prodml23:FlowQualifier")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowQualifierExpected::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowQualifierExpected::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowQualifierExpected(soap, tag, this, type); + return soap_in_prodml23__ProductFlowQualifierExpected(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected * SOAP_FMAC4 soap_in_prodml22__ProductFlowQualifierExpected(struct soap *soap, const char *tag, prodml22__ProductFlowQualifierExpected *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected * SOAP_FMAC4 soap_in_prodml23__ProductFlowQualifierExpected(struct soap *soap, const char *tag, prodml23__ProductFlowQualifierExpected *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowQualifierExpected*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, sizeof(prodml22__ProductFlowQualifierExpected), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowQualifierExpected*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, sizeof(prodml23__ProductFlowQualifierExpected), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowQualifierExpected *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowQualifierExpected *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowQualifierExpected*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowQualifierExpected*)a)->uid)) return NULL; size_t soap_flag_Flow1 = 1; size_t soap_flag_Product1 = 1; @@ -166701,19 +166696,19 @@ SOAP_FMAC3 prodml22__ProductFlowQualifierExpected * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Flow1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ReportingFlow(soap, "prodml22:Flow", &a->prodml22__ProductFlowQualifierExpected::Flow, "prodml22:ReportingFlow")) + { if (soap_in_prodml23__ReportingFlow(soap, "prodml23:Flow", &a->prodml23__ProductFlowQualifierExpected::Flow, "prodml23:ReportingFlow")) { soap_flag_Flow1--; continue; } } if (soap_flag_Product1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingProduct(soap, "prodml22:Product", &a->prodml22__ProductFlowQualifierExpected::Product, "prodml22:ReportingProduct")) + { if (soap_in_PointerToprodml23__ReportingProduct(soap, "prodml23:Product", &a->prodml23__ProductFlowQualifierExpected::Product, "prodml23:ReportingProduct")) { soap_flag_Product1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfprodml22__FlowQualifier(soap, "prodml22:Qualifier", &a->prodml22__ProductFlowQualifierExpected::Qualifier, "prodml22:FlowQualifier")) + { if (soap_in_std__vectorTemplateOfprodml23__FlowQualifier(soap, "prodml23:Qualifier", &a->prodml23__ProductFlowQualifierExpected::Qualifier, "prodml23:FlowQualifier")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -166735,35 +166730,35 @@ SOAP_FMAC3 prodml22__ProductFlowQualifierExpected * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__ProductFlowQualifierExpected *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, sizeof(prodml22__ProductFlowQualifierExpected), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowQualifierExpected *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, sizeof(prodml23__ProductFlowQualifierExpected), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowQualifierExpected(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowQualifierExpected(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowQualifierExpected(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowQualifierExpected(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowQualifierExpected *p; - size_t k = sizeof(prodml22__ProductFlowQualifierExpected); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowQualifierExpected *p; + size_t k = sizeof(prodml23__ProductFlowQualifierExpected); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowQualifierExpected); + { p = SOAP_NEW(soap, prodml23__ProductFlowQualifierExpected); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowQualifierExpected, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowQualifierExpected, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowQualifierExpected location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowQualifierExpected location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -166773,117 +166768,117 @@ SOAP_FMAC1 prodml22__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__ProductFlowQualifierExpected::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowQualifierExpected::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowQualifierExpected(soap, tag ? tag : "prodml22:ProductFlowQualifierExpected", -2, this, type)) + if (soap_out_prodml23__ProductFlowQualifierExpected(soap, tag ? tag : "prodml23:ProductFlowQualifierExpected", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowQualifierExpected::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowQualifierExpected::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowQualifierExpected(soap, this, tag, type); + return soap_get_prodml23__ProductFlowQualifierExpected(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected * SOAP_FMAC4 soap_get_prodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected * SOAP_FMAC4 soap_get_prodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowQualifierExpected(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowQualifierExpected(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowPort::soap_default(struct soap *soap) +void prodml23__ProductFlowPort::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__ProductFlowPortType(soap, &this->prodml22__ProductFlowPort::Direction); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowPort::Name); - this->prodml22__ProductFlowPort::PlanName = NULL; - this->prodml22__ProductFlowPort::Facility = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductFlowPort::FacilityAlias); - this->prodml22__ProductFlowPort::Exposed = NULL; - this->prodml22__ProductFlowPort::Comment = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap, &this->prodml22__ProductFlowPort::ConnectedNode); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, &this->prodml22__ProductFlowPort::ExpectedFlowProperty); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, &this->prodml22__ProductFlowPort::ExpectedFlowProduct); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowPort::uid); + soap_default_prodml23__ProductFlowPortType(soap, &this->prodml23__ProductFlowPort::Direction); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowPort::Name); + this->prodml23__ProductFlowPort::PlanName = NULL; + this->prodml23__ProductFlowPort::Facility = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductFlowPort::FacilityAlias); + this->prodml23__ProductFlowPort::Exposed = NULL; + this->prodml23__ProductFlowPort::Comment = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap, &this->prodml23__ProductFlowPort::ConnectedNode); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, &this->prodml23__ProductFlowPort::ExpectedFlowProperty); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, &this->prodml23__ProductFlowPort::ExpectedFlowProduct); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowPort::uid); } -void prodml22__ProductFlowPort::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowPort::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductFlowPort::Direction, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType); - soap_embedded(soap, &this->prodml22__ProductFlowPort::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowPort::Name); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductFlowPort::PlanName); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowPort::Facility); - soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductFlowPort::FacilityAlias); - soap_serialize_PointerTobool(soap, &this->prodml22__ProductFlowPort::Exposed); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowPort::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap, &this->prodml22__ProductFlowPort::ConnectedNode); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, &this->prodml22__ProductFlowPort::ExpectedFlowProperty); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, &this->prodml22__ProductFlowPort::ExpectedFlowProduct); + soap_embedded(soap, &this->prodml23__ProductFlowPort::Direction, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType); + soap_embedded(soap, &this->prodml23__ProductFlowPort::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowPort::Name); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductFlowPort::PlanName); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowPort::Facility); + soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductFlowPort::FacilityAlias); + soap_serialize_PointerTobool(soap, &this->prodml23__ProductFlowPort::Exposed); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowPort::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap, &this->prodml23__ProductFlowPort::ConnectedNode); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, &this->prodml23__ProductFlowPort::ExpectedFlowProperty); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, &this->prodml23__ProductFlowPort::ExpectedFlowProduct); #endif } -int prodml22__ProductFlowPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowPort(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowPort(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowPort(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowPort *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowPort(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowPort *a, const char *type) { if (!type) - type = "prodml22:ProductFlowPort"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowPort*)a)->uid), 1); + type = "prodml23:ProductFlowPort"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowPort*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowPort), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort), type)) return soap->error; - if (soap_out_prodml22__ProductFlowPortType(soap, "prodml22:Direction", -1, &a->prodml22__ProductFlowPort::Direction, "prodml22:ProductFlowPortType")) + if (soap_out_prodml23__ProductFlowPortType(soap, "prodml23:Direction", -1, &a->prodml23__ProductFlowPort::Direction, "prodml23:ProductFlowPortType")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductFlowPort::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductFlowPort::Name, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PlanName", -1, &a->prodml22__ProductFlowPort::PlanName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PlanName", -1, &a->prodml23__ProductFlowPort::PlanName, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Facility", -1, &a->prodml22__ProductFlowPort::Facility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Facility", -1, &a->prodml23__ProductFlowPort::Facility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", -1, &a->prodml22__ProductFlowPort::FacilityAlias, "eml23:NameStruct")) + if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", -1, &a->prodml23__ProductFlowPort::FacilityAlias, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:Exposed", -1, &a->prodml22__ProductFlowPort::Exposed, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:Exposed", -1, &a->prodml23__ProductFlowPort::Exposed, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductFlowPort::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductFlowPort::Comment, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap, "prodml22:ConnectedNode", -1, &a->prodml22__ProductFlowPort::ConnectedNode, "prodml22:ConnectedNode")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap, "prodml23:ConnectedNode", -1, &a->prodml23__ProductFlowPort::ConnectedNode, "prodml23:ConnectedNode")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, "prodml22:ExpectedFlowProperty", -1, &a->prodml22__ProductFlowPort::ExpectedFlowProperty, "prodml22:ProductFlowExpectedUnitProperty")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, "prodml23:ExpectedFlowProperty", -1, &a->prodml23__ProductFlowPort::ExpectedFlowProperty, "prodml23:ProductFlowExpectedUnitProperty")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, "prodml22:ExpectedFlowProduct", -1, &a->prodml22__ProductFlowPort::ExpectedFlowProduct, "prodml22:ProductFlowQualifierExpected")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, "prodml23:ExpectedFlowProduct", -1, &a->prodml23__ProductFlowPort::ExpectedFlowProduct, "prodml23:ProductFlowQualifierExpected")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowPort::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowPort::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowPort(soap, tag, this, type); + return soap_in_prodml23__ProductFlowPort(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowPort(struct soap *soap, const char *tag, prodml22__ProductFlowPort *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPort * SOAP_FMAC4 soap_in_prodml23__ProductFlowPort(struct soap *soap, const char *tag, prodml23__ProductFlowPort *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, sizeof(prodml22__ProductFlowPort), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, sizeof(prodml23__ProductFlowPort), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowPort *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowPort *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowPort*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowPort*)a)->uid)) return NULL; size_t soap_flag_Direction1 = 1; size_t soap_flag_Name1 = 1; @@ -166896,55 +166891,55 @@ SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowP for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Direction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ProductFlowPortType(soap, "prodml22:Direction", &a->prodml22__ProductFlowPort::Direction, "prodml22:ProductFlowPortType")) + { if (soap_in_prodml23__ProductFlowPortType(soap, "prodml23:Direction", &a->prodml23__ProductFlowPort::Direction, "prodml23:ProductFlowPortType")) { soap_flag_Direction1--; continue; } } if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__ProductFlowPort::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__ProductFlowPort::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_PlanName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PlanName", &a->prodml22__ProductFlowPort::PlanName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PlanName", &a->prodml23__ProductFlowPort::PlanName, "eml23:String64")) { soap_flag_PlanName1--; continue; } } if (soap_flag_Facility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Facility", &a->prodml22__ProductFlowPort::Facility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Facility", &a->prodml23__ProductFlowPort::Facility, "prodml23:FacilityIdentifierStruct")) { soap_flag_Facility1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", &a->prodml22__ProductFlowPort::FacilityAlias, "eml23:NameStruct")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", &a->prodml23__ProductFlowPort::FacilityAlias, "eml23:NameStruct")) continue; } if (soap_flag_Exposed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:Exposed", &a->prodml22__ProductFlowPort::Exposed, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:Exposed", &a->prodml23__ProductFlowPort::Exposed, "xsd:boolean")) { soap_flag_Exposed1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductFlowPort::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductFlowPort::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap, "prodml22:ConnectedNode", &a->prodml22__ProductFlowPort::ConnectedNode, "prodml22:ConnectedNode")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap, "prodml23:ConnectedNode", &a->prodml23__ProductFlowPort::ConnectedNode, "prodml23:ConnectedNode")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, "prodml22:ExpectedFlowProperty", &a->prodml22__ProductFlowPort::ExpectedFlowProperty, "prodml22:ProductFlowExpectedUnitProperty")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, "prodml23:ExpectedFlowProperty", &a->prodml23__ProductFlowPort::ExpectedFlowProperty, "prodml23:ProductFlowExpectedUnitProperty")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, "prodml22:ExpectedFlowProduct", &a->prodml22__ProductFlowPort::ExpectedFlowProduct, "prodml22:ProductFlowQualifierExpected")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, "prodml23:ExpectedFlowProduct", &a->prodml23__ProductFlowPort::ExpectedFlowProduct, "prodml23:ProductFlowQualifierExpected")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -166956,7 +166951,7 @@ SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowP } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Direction1 > 0 || soap_flag_Name1 > 0 || a->prodml22__ProductFlowPort::ConnectedNode.size() < 1)) + if ((soap_flag_Direction1 > 0 || soap_flag_Name1 > 0 || a->prodml23__ProductFlowPort::ConnectedNode.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -166966,35 +166961,35 @@ SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowP return NULL; } else - { a = (prodml22__ProductFlowPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, sizeof(prodml22__ProductFlowPort), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, sizeof(prodml23__ProductFlowPort), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowPort *p; - size_t k = sizeof(prodml22__ProductFlowPort); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowPort *p; + size_t k = sizeof(prodml23__ProductFlowPort); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowPort); + { p = SOAP_NEW(soap, prodml23__ProductFlowPort); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowPort, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowPort, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowPort location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowPort location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -167004,94 +166999,94 @@ SOAP_FMAC1 prodml22__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml22__Pro return p; } -int prodml22__ProductFlowPort::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowPort::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowPort(soap, tag ? tag : "prodml22:ProductFlowPort", -2, this, type)) + if (soap_out_prodml23__ProductFlowPort(soap, tag ? tag : "prodml23:ProductFlowPort", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowPort::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowPort::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowPort(soap, this, tag, type); + return soap_get_prodml23__ProductFlowPort(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_get_prodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPort * SOAP_FMAC4 soap_get_prodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowPort(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowPort(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowNetworkPlan::soap_default(struct soap *soap) +void prodml23__ProductFlowNetworkPlan::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowNetworkPlan::Name); - soap_default_eml23__TimeStamp(soap, &this->prodml22__ProductFlowNetworkPlan::DTimStart); - this->prodml22__ProductFlowNetworkPlan::Purpose = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, &this->prodml22__ProductFlowNetworkPlan::ChangeLog); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowNetworkPlan::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowNetworkPlan::Name); + soap_default_eml23__TimeStamp(soap, &this->prodml23__ProductFlowNetworkPlan::DTimStart); + this->prodml23__ProductFlowNetworkPlan::Purpose = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, &this->prodml23__ProductFlowNetworkPlan::ChangeLog); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowNetworkPlan::uid); } -void prodml22__ProductFlowNetworkPlan::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowNetworkPlan::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductFlowNetworkPlan::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowNetworkPlan::Name); - soap_embedded(soap, &this->prodml22__ProductFlowNetworkPlan::DTimStart, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__ProductFlowNetworkPlan::DTimStart); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowNetworkPlan::Purpose); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, &this->prodml22__ProductFlowNetworkPlan::ChangeLog); + soap_embedded(soap, &this->prodml23__ProductFlowNetworkPlan::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowNetworkPlan::Name); + soap_embedded(soap, &this->prodml23__ProductFlowNetworkPlan::DTimStart, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__ProductFlowNetworkPlan::DTimStart); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowNetworkPlan::Purpose); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, &this->prodml23__ProductFlowNetworkPlan::ChangeLog); #endif } -int prodml22__ProductFlowNetworkPlan::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowNetworkPlan::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowNetworkPlan(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowNetworkPlan(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowNetworkPlan(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowNetworkPlan *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowNetworkPlan(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowNetworkPlan *a, const char *type) { if (!type) - type = "prodml22:ProductFlowNetworkPlan"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowNetworkPlan*)a)->uid), 1); + type = "prodml23:ProductFlowNetworkPlan"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowNetworkPlan*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductFlowNetworkPlan::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductFlowNetworkPlan::Name, "eml23:String64")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:DTimStart", -1, &a->prodml22__ProductFlowNetworkPlan::DTimStart, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:DTimStart", -1, &a->prodml23__ProductFlowNetworkPlan::DTimStart, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Purpose", -1, &a->prodml22__ProductFlowNetworkPlan::Purpose, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Purpose", -1, &a->prodml23__ProductFlowNetworkPlan::Purpose, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, "prodml22:ChangeLog", -1, &a->prodml22__ProductFlowNetworkPlan::ChangeLog, "prodml22:ProductFlowChangeLog")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, "prodml23:ChangeLog", -1, &a->prodml23__ProductFlowNetworkPlan::ChangeLog, "prodml23:ProductFlowChangeLog")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowNetworkPlan::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowNetworkPlan::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowNetworkPlan(soap, tag, this, type); + return soap_in_prodml23__ProductFlowNetworkPlan(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan * SOAP_FMAC4 soap_in_prodml22__ProductFlowNetworkPlan(struct soap *soap, const char *tag, prodml22__ProductFlowNetworkPlan *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan * SOAP_FMAC4 soap_in_prodml23__ProductFlowNetworkPlan(struct soap *soap, const char *tag, prodml23__ProductFlowNetworkPlan *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowNetworkPlan*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, sizeof(prodml22__ProductFlowNetworkPlan), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowNetworkPlan*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, sizeof(prodml23__ProductFlowNetworkPlan), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowNetworkPlan *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowNetworkPlan *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowNetworkPlan*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowNetworkPlan*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_DTimStart1 = 1; @@ -167101,25 +167096,25 @@ SOAP_FMAC3 prodml22__ProductFlowNetworkPlan * SOAP_FMAC4 soap_in_prodml22__Produ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__ProductFlowNetworkPlan::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__ProductFlowNetworkPlan::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_DTimStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:DTimStart", &a->prodml22__ProductFlowNetworkPlan::DTimStart, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:DTimStart", &a->prodml23__ProductFlowNetworkPlan::DTimStart, "eml23:TimeStamp")) { soap_flag_DTimStart1--; continue; } } if (soap_flag_Purpose1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Purpose", &a->prodml22__ProductFlowNetworkPlan::Purpose, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Purpose", &a->prodml23__ProductFlowNetworkPlan::Purpose, "eml23:String2000")) { soap_flag_Purpose1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, "prodml22:ChangeLog", &a->prodml22__ProductFlowNetworkPlan::ChangeLog, "prodml22:ProductFlowChangeLog")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, "prodml23:ChangeLog", &a->prodml23__ProductFlowNetworkPlan::ChangeLog, "prodml23:ProductFlowChangeLog")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -167141,35 +167136,35 @@ SOAP_FMAC3 prodml22__ProductFlowNetworkPlan * SOAP_FMAC4 soap_in_prodml22__Produ return NULL; } else - { a = (prodml22__ProductFlowNetworkPlan *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, sizeof(prodml22__ProductFlowNetworkPlan), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowNetworkPlan *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, sizeof(prodml23__ProductFlowNetworkPlan), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowNetworkPlan(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowNetworkPlan(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowNetworkPlan(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowNetworkPlan(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowNetworkPlan *p; - size_t k = sizeof(prodml22__ProductFlowNetworkPlan); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowNetworkPlan *p; + size_t k = sizeof(prodml23__ProductFlowNetworkPlan); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowNetworkPlan); + { p = SOAP_NEW(soap, prodml23__ProductFlowNetworkPlan); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowNetworkPlan, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowNetworkPlan, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowNetworkPlan location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowNetworkPlan location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -167179,76 +167174,76 @@ SOAP_FMAC1 prodml22__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__ProductFlowNetworkPlan::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowNetworkPlan::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowNetworkPlan(soap, tag ? tag : "prodml22:ProductFlowNetworkPlan", -2, this, type)) + if (soap_out_prodml23__ProductFlowNetworkPlan(soap, tag ? tag : "prodml23:ProductFlowNetworkPlan", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowNetworkPlan::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowNetworkPlan::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowNetworkPlan(soap, this, tag, type); + return soap_get_prodml23__ProductFlowNetworkPlan(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan * SOAP_FMAC4 soap_get_prodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan * SOAP_FMAC4 soap_get_prodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowNetworkPlan(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowNetworkPlan(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowModel::soap_default(struct soap *soap) +void prodml23__ProductFlowModel::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__ProductFlowModel::Installation = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowModel::ContextFacility); - this->prodml22__ProductFlowModel::DTimStart = NULL; - this->prodml22__ProductFlowModel::DTimEnd = NULL; - this->prodml22__ProductFlowModel::ExistenceTime = NULL; - this->prodml22__ProductFlowModel::DTimMin = NULL; - this->prodml22__ProductFlowModel::DTimMax = NULL; - this->prodml22__ProductFlowModel::Comment = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap, &this->prodml22__ProductFlowModel::ExternalConnect); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap, &this->prodml22__ProductFlowModel::Network); -} - -void prodml22__ProductFlowModel::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowModel::Installation); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowModel::ContextFacility); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductFlowModel::DTimStart); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductFlowModel::DTimEnd); - soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(soap, &this->prodml22__ProductFlowModel::ExistenceTime); - soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(soap, &this->prodml22__ProductFlowModel::DTimMin); - soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(soap, &this->prodml22__ProductFlowModel::DTimMax); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowModel::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap, &this->prodml22__ProductFlowModel::ExternalConnect); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap, &this->prodml22__ProductFlowModel::Network); + this->prodml23__ProductFlowModel::Installation = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowModel::ContextFacility); + this->prodml23__ProductFlowModel::DTimStart = NULL; + this->prodml23__ProductFlowModel::DTimEnd = NULL; + this->prodml23__ProductFlowModel::ExistenceTime = NULL; + this->prodml23__ProductFlowModel::DTimMin = NULL; + this->prodml23__ProductFlowModel::DTimMax = NULL; + this->prodml23__ProductFlowModel::Comment = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap, &this->prodml23__ProductFlowModel::ExternalConnect); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap, &this->prodml23__ProductFlowModel::Network); +} + +void prodml23__ProductFlowModel::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowModel::Installation); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowModel::ContextFacility); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductFlowModel::DTimStart); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductFlowModel::DTimEnd); + soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(soap, &this->prodml23__ProductFlowModel::ExistenceTime); + soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(soap, &this->prodml23__ProductFlowModel::DTimMin); + soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(soap, &this->prodml23__ProductFlowModel::DTimMax); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowModel::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap, &this->prodml23__ProductFlowModel::ExternalConnect); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap, &this->prodml23__ProductFlowModel::Network); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__ProductFlowModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowModel(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowModel(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowModel(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowModel *a, const char *type) { if (!type) - type = "prodml22:ProductFlowModel"; + type = "prodml23:ProductFlowModel"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ProductFlowModel), type ? type : "prodml22:ProductFlowModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel), type ? type : "prodml23:ProductFlowModel")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -167270,46 +167265,46 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowModel(struct soap *soap, return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Installation", -1, &a->prodml22__ProductFlowModel::Installation, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Installation", -1, &a->prodml23__ProductFlowModel::Installation, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", -1, &a->prodml22__ProductFlowModel::ContextFacility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", -1, &a->prodml23__ProductFlowModel::ContextFacility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimStart", -1, &a->prodml22__ProductFlowModel::DTimStart, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimStart", -1, &a->prodml23__ProductFlowModel::DTimStart, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", -1, &a->prodml22__ProductFlowModel::DTimEnd, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", -1, &a->prodml23__ProductFlowModel::DTimEnd, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:ExistenceTime", -1, &a->prodml22__ProductFlowModel::ExistenceTime, "prodml22:EndpointQualifiedDateTime")) + if (soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:ExistenceTime", -1, &a->prodml23__ProductFlowModel::ExistenceTime, "prodml23:EndpointQualifiedDateTime")) return soap->error; - if (soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMin", -1, &a->prodml22__ProductFlowModel::DTimMin, "prodml22:EndpointQualifiedDateTime")) + if (soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMin", -1, &a->prodml23__ProductFlowModel::DTimMin, "prodml23:EndpointQualifiedDateTime")) return soap->error; - if (soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMax", -1, &a->prodml22__ProductFlowModel::DTimMax, "prodml22:EndpointQualifiedDateTime")) + if (soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMax", -1, &a->prodml23__ProductFlowModel::DTimMax, "prodml23:EndpointQualifiedDateTime")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductFlowModel::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductFlowModel::Comment, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap, "prodml22:ExternalConnect", -1, &a->prodml22__ProductFlowModel::ExternalConnect, "prodml22:ProductFlowExternalReference")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap, "prodml23:ExternalConnect", -1, &a->prodml23__ProductFlowModel::ExternalConnect, "prodml23:ProductFlowExternalReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap, "prodml22:Network", -1, &a->prodml22__ProductFlowModel::Network, "prodml22:ProductFlowNetwork")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap, "prodml23:Network", -1, &a->prodml23__ProductFlowModel::Network, "prodml23:ProductFlowNetwork")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowModel(soap, tag, this, type); + return soap_in_prodml23__ProductFlowModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_in_prodml22__ProductFlowModel(struct soap *soap, const char *tag, prodml22__ProductFlowModel *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowModel * SOAP_FMAC4 soap_in_prodml23__ProductFlowModel(struct soap *soap, const char *tag, prodml23__ProductFlowModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel, sizeof(prodml22__ProductFlowModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel, sizeof(prodml23__ProductFlowModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowModel *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -167388,57 +167383,57 @@ SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_in_prodml22__ProductFlow continue; } if (soap_flag_Installation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Installation", &a->prodml22__ProductFlowModel::Installation, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Installation", &a->prodml23__ProductFlowModel::Installation, "prodml23:FacilityIdentifierStruct")) { soap_flag_Installation1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", &a->prodml22__ProductFlowModel::ContextFacility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", &a->prodml23__ProductFlowModel::ContextFacility, "prodml23:FacilityIdentifierStruct")) continue; } if (soap_flag_DTimStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimStart", &a->prodml22__ProductFlowModel::DTimStart, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimStart", &a->prodml23__ProductFlowModel::DTimStart, "eml23:TimeStamp")) { soap_flag_DTimStart1--; continue; } } if (soap_flag_DTimEnd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", &a->prodml22__ProductFlowModel::DTimEnd, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", &a->prodml23__ProductFlowModel::DTimEnd, "eml23:TimeStamp")) { soap_flag_DTimEnd1--; continue; } } if (soap_flag_ExistenceTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:ExistenceTime", &a->prodml22__ProductFlowModel::ExistenceTime, "prodml22:EndpointQualifiedDateTime")) + { if (soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:ExistenceTime", &a->prodml23__ProductFlowModel::ExistenceTime, "prodml23:EndpointQualifiedDateTime")) { soap_flag_ExistenceTime1--; continue; } } if (soap_flag_DTimMin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMin", &a->prodml22__ProductFlowModel::DTimMin, "prodml22:EndpointQualifiedDateTime")) + { if (soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMin", &a->prodml23__ProductFlowModel::DTimMin, "prodml23:EndpointQualifiedDateTime")) { soap_flag_DTimMin1--; continue; } } if (soap_flag_DTimMax1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMax", &a->prodml22__ProductFlowModel::DTimMax, "prodml22:EndpointQualifiedDateTime")) + { if (soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMax", &a->prodml23__ProductFlowModel::DTimMax, "prodml23:EndpointQualifiedDateTime")) { soap_flag_DTimMax1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductFlowModel::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductFlowModel::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap, "prodml22:ExternalConnect", &a->prodml22__ProductFlowModel::ExternalConnect, "prodml22:ProductFlowExternalReference")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap, "prodml23:ExternalConnect", &a->prodml23__ProductFlowModel::ExternalConnect, "prodml23:ProductFlowExternalReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap, "prodml22:Network", &a->prodml22__ProductFlowModel::Network, "prodml22:ProductFlowNetwork")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap, "prodml23:Network", &a->prodml23__ProductFlowModel::Network, "prodml23:ProductFlowNetwork")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -167450,7 +167445,7 @@ SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_in_prodml22__ProductFlow } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || a->prodml22__ProductFlowModel::Network.size() < 1)) + if ((!a->eml23__AbstractObject::Citation || a->prodml23__ProductFlowModel::Network.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -167460,35 +167455,35 @@ SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_in_prodml22__ProductFlow return NULL; } else - { a = (prodml22__ProductFlowModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel, sizeof(prodml22__ProductFlowModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel, sizeof(prodml23__ProductFlowModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowModel *p; - size_t k = sizeof(prodml22__ProductFlowModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowModel *p; + size_t k = sizeof(prodml23__ProductFlowModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowModel); + { p = SOAP_NEW(soap, prodml23__ProductFlowModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -167498,98 +167493,98 @@ SOAP_FMAC1 prodml22__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml22__Pr return p; } -int prodml22__ProductFlowModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowModel(soap, tag ? tag : "prodml22:ProductFlowModel", -2, this, type)) + if (soap_out_prodml23__ProductFlowModel(soap, tag ? tag : "prodml23:ProductFlowModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowModel(soap, this, tag, type); + return soap_get_prodml23__ProductFlowModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_get_prodml22__ProductFlowModel(struct soap *soap, prodml22__ProductFlowModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowModel * SOAP_FMAC4 soap_get_prodml23__ProductFlowModel(struct soap *soap, prodml23__ProductFlowModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowExternalPort::soap_default(struct soap *soap) +void prodml23__ProductFlowExternalPort::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalPort::Name); - soap_default_prodml22__ProductFlowPortType(soap, &this->prodml22__ProductFlowExternalPort::Direction); - this->prodml22__ProductFlowExternalPort::Exposed = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalPort::ConnectedNode); - this->prodml22__ProductFlowExternalPort::Comment = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalPort::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalPort::Name); + soap_default_prodml23__ProductFlowPortType(soap, &this->prodml23__ProductFlowExternalPort::Direction); + this->prodml23__ProductFlowExternalPort::Exposed = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalPort::ConnectedNode); + this->prodml23__ProductFlowExternalPort::Comment = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalPort::uid); } -void prodml22__ProductFlowExternalPort::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowExternalPort::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductFlowExternalPort::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowExternalPort::Name); - soap_embedded(soap, &this->prodml22__ProductFlowExternalPort::Direction, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType); - soap_serialize_PointerTobool(soap, &this->prodml22__ProductFlowExternalPort::Exposed); - soap_embedded(soap, &this->prodml22__ProductFlowExternalPort::ConnectedNode, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowExternalPort::ConnectedNode); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowExternalPort::Comment); + soap_embedded(soap, &this->prodml23__ProductFlowExternalPort::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowExternalPort::Name); + soap_embedded(soap, &this->prodml23__ProductFlowExternalPort::Direction, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType); + soap_serialize_PointerTobool(soap, &this->prodml23__ProductFlowExternalPort::Exposed); + soap_embedded(soap, &this->prodml23__ProductFlowExternalPort::ConnectedNode, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowExternalPort::ConnectedNode); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowExternalPort::Comment); #endif } -int prodml22__ProductFlowExternalPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowExternalPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowExternalPort(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowExternalPort(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowExternalPort(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowExternalPort *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowExternalPort(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowExternalPort *a, const char *type) { if (!type) - type = "prodml22:ProductFlowExternalPort"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowExternalPort*)a)->uid), 1); + type = "prodml23:ProductFlowExternalPort"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowExternalPort*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowExternalPort), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductFlowExternalPort::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductFlowExternalPort::Name, "eml23:String64")) return soap->error; - if (soap_out_prodml22__ProductFlowPortType(soap, "prodml22:Direction", -1, &a->prodml22__ProductFlowExternalPort::Direction, "prodml22:ProductFlowPortType")) + if (soap_out_prodml23__ProductFlowPortType(soap, "prodml23:Direction", -1, &a->prodml23__ProductFlowExternalPort::Direction, "prodml23:ProductFlowPortType")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:Exposed", -1, &a->prodml22__ProductFlowExternalPort::Exposed, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:Exposed", -1, &a->prodml23__ProductFlowExternalPort::Exposed, "xsd:boolean")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:ConnectedNode", -1, &a->prodml22__ProductFlowExternalPort::ConnectedNode, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:ConnectedNode", -1, &a->prodml23__ProductFlowExternalPort::ConnectedNode, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductFlowExternalPort::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductFlowExternalPort::Comment, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowExternalPort::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowExternalPort::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowExternalPort(soap, tag, this, type); + return soap_in_prodml23__ProductFlowExternalPort(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowExternalPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowExternalPort(struct soap *soap, const char *tag, prodml22__ProductFlowExternalPort *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalPort * SOAP_FMAC4 soap_in_prodml23__ProductFlowExternalPort(struct soap *soap, const char *tag, prodml23__ProductFlowExternalPort *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowExternalPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, sizeof(prodml22__ProductFlowExternalPort), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowExternalPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, sizeof(prodml23__ProductFlowExternalPort), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowExternalPort *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowExternalPort *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowExternalPort*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowExternalPort*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_Direction1 = 1; @@ -167601,31 +167596,31 @@ SOAP_FMAC3 prodml22__ProductFlowExternalPort * SOAP_FMAC4 soap_in_prodml22__Prod for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__ProductFlowExternalPort::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__ProductFlowExternalPort::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_Direction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ProductFlowPortType(soap, "prodml22:Direction", &a->prodml22__ProductFlowExternalPort::Direction, "prodml22:ProductFlowPortType")) + { if (soap_in_prodml23__ProductFlowPortType(soap, "prodml23:Direction", &a->prodml23__ProductFlowExternalPort::Direction, "prodml23:ProductFlowPortType")) { soap_flag_Direction1--; continue; } } if (soap_flag_Exposed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:Exposed", &a->prodml22__ProductFlowExternalPort::Exposed, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:Exposed", &a->prodml23__ProductFlowExternalPort::Exposed, "xsd:boolean")) { soap_flag_Exposed1--; continue; } } if (soap_flag_ConnectedNode1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:ConnectedNode", &a->prodml22__ProductFlowExternalPort::ConnectedNode, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:ConnectedNode", &a->prodml23__ProductFlowExternalPort::ConnectedNode, "eml23:String64")) { soap_flag_ConnectedNode1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductFlowExternalPort::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductFlowExternalPort::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } @@ -167649,35 +167644,35 @@ SOAP_FMAC3 prodml22__ProductFlowExternalPort * SOAP_FMAC4 soap_in_prodml22__Prod return NULL; } else - { a = (prodml22__ProductFlowExternalPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, sizeof(prodml22__ProductFlowExternalPort), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowExternalPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, sizeof(prodml23__ProductFlowExternalPort), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExternalPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExternalPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowExternalPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowExternalPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowExternalPort *p; - size_t k = sizeof(prodml22__ProductFlowExternalPort); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowExternalPort *p; + size_t k = sizeof(prodml23__ProductFlowExternalPort); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowExternalPort); + { p = SOAP_NEW(soap, prodml23__ProductFlowExternalPort); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowExternalPort, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowExternalPort, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowExternalPort location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowExternalPort location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -167687,107 +167682,107 @@ SOAP_FMAC1 prodml22__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__ProductFlowExternalPort::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowExternalPort::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowExternalPort(soap, tag ? tag : "prodml22:ProductFlowExternalPort", -2, this, type)) + if (soap_out_prodml23__ProductFlowExternalPort(soap, tag ? tag : "prodml23:ProductFlowExternalPort", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowExternalPort::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowExternalPort::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowExternalPort(soap, this, tag, type); + return soap_get_prodml23__ProductFlowExternalPort(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowExternalPort * SOAP_FMAC4 soap_get_prodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalPort * SOAP_FMAC4 soap_get_prodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowExternalPort(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowExternalPort(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowExpectedUnitProperty::soap_default(struct soap *soap) +void prodml23__ProductFlowExpectedUnitProperty::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__FacilityParameter(soap, &this->prodml22__ProductFlowExpectedUnitProperty::Property); - this->prodml22__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductFlowExpectedUnitProperty::TagAlias); - this->prodml22__ProductFlowExpectedUnitProperty::Deadband = NULL; - this->prodml22__ProductFlowExpectedUnitProperty::MaximumFrequency = NULL; - this->prodml22__ProductFlowExpectedUnitProperty::Comment = NULL; - this->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, &this->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowProduct); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExpectedUnitProperty::uid); + soap_default_prodml23__FacilityParameter(soap, &this->prodml23__ProductFlowExpectedUnitProperty::Property); + this->prodml23__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductFlowExpectedUnitProperty::TagAlias); + this->prodml23__ProductFlowExpectedUnitProperty::Deadband = NULL; + this->prodml23__ProductFlowExpectedUnitProperty::MaximumFrequency = NULL; + this->prodml23__ProductFlowExpectedUnitProperty::Comment = NULL; + this->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, &this->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowProduct); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExpectedUnitProperty::uid); } -void prodml22__ProductFlowExpectedUnitProperty::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowExpectedUnitProperty::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ProdmlRelativeIdentifier(soap, &this->prodml22__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier); - soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductFlowExpectedUnitProperty::TagAlias); - soap_serialize_PointerToprodml22__GeneralMeasureType(soap, &this->prodml22__ProductFlowExpectedUnitProperty::Deadband); - soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml22__ProductFlowExpectedUnitProperty::MaximumFrequency); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowExpectedUnitProperty::Comment); - soap_serialize_PointerToprodml22__ExpectedFlowQualifier(soap, &this->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, &this->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowProduct); + soap_serialize_PointerToprodml23__ProdmlRelativeIdentifier(soap, &this->prodml23__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier); + soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductFlowExpectedUnitProperty::TagAlias); + soap_serialize_PointerToprodml23__GeneralMeasureType(soap, &this->prodml23__ProductFlowExpectedUnitProperty::Deadband); + soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml23__ProductFlowExpectedUnitProperty::MaximumFrequency); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowExpectedUnitProperty::Comment); + soap_serialize_PointerToprodml23__ExpectedFlowQualifier(soap, &this->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, &this->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowProduct); #endif } -int prodml22__ProductFlowExpectedUnitProperty::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowExpectedUnitProperty::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowExpectedUnitProperty(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowExpectedUnitProperty(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowExpectedUnitProperty *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowExpectedUnitProperty *a, const char *type) { if (!type) - type = "prodml22:ProductFlowExpectedUnitProperty"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowExpectedUnitProperty*)a)->uid), 1); + type = "prodml23:ProductFlowExpectedUnitProperty"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowExpectedUnitProperty*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty), type)) return soap->error; - if (soap_out_prodml22__FacilityParameter(soap, "prodml22:Property", -1, &a->prodml22__ProductFlowExpectedUnitProperty::Property, "prodml22:FacilityParameter")) + if (soap_out_prodml23__FacilityParameter(soap, "prodml23:Property", -1, &a->prodml23__ProductFlowExpectedUnitProperty::Property, "prodml23:FacilityParameter")) return soap->error; - if (soap_out_PointerToprodml22__ProdmlRelativeIdentifier(soap, "prodml22:ChildFacilityIdentifier", -1, &a->prodml22__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier, "prodml22:ProdmlRelativeIdentifier")) + if (soap_out_PointerToprodml23__ProdmlRelativeIdentifier(soap, "prodml23:ChildFacilityIdentifier", -1, &a->prodml23__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier, "prodml23:ProdmlRelativeIdentifier")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:TagAlias", -1, &a->prodml22__ProductFlowExpectedUnitProperty::TagAlias, "eml23:NameStruct")) + if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:TagAlias", -1, &a->prodml23__ProductFlowExpectedUnitProperty::TagAlias, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToprodml22__GeneralMeasureType(soap, "prodml22:Deadband", -1, &a->prodml22__ProductFlowExpectedUnitProperty::Deadband, "prodml22:GeneralMeasureType")) + if (soap_out_PointerToprodml23__GeneralMeasureType(soap, "prodml23:Deadband", -1, &a->prodml23__ProductFlowExpectedUnitProperty::Deadband, "prodml23:GeneralMeasureType")) return soap->error; - if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml22:MaximumFrequency", -1, &a->prodml22__ProductFlowExpectedUnitProperty::MaximumFrequency, "eml23:TimeMeasure")) + if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml23:MaximumFrequency", -1, &a->prodml23__ProductFlowExpectedUnitProperty::MaximumFrequency, "eml23:TimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductFlowExpectedUnitProperty::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductFlowExpectedUnitProperty::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__ExpectedFlowQualifier(soap, "prodml22:ExpectedFlowQualifier", -1, &a->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier, "prodml22:ExpectedFlowQualifier")) + if (soap_out_PointerToprodml23__ExpectedFlowQualifier(soap, "prodml23:ExpectedFlowQualifier", -1, &a->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier, "prodml23:ExpectedFlowQualifier")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, "prodml22:ExpectedFlowProduct", -1, &a->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowProduct, "prodml22:ProductFlowQualifierExpected")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, "prodml23:ExpectedFlowProduct", -1, &a->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowProduct, "prodml23:ProductFlowQualifierExpected")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowExpectedUnitProperty::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowExpectedUnitProperty::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowExpectedUnitProperty(soap, tag, this, type); + return soap_in_prodml23__ProductFlowExpectedUnitProperty(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_in_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, prodml22__ProductFlowExpectedUnitProperty *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_in_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, prodml23__ProductFlowExpectedUnitProperty *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowExpectedUnitProperty*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, sizeof(prodml22__ProductFlowExpectedUnitProperty), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowExpectedUnitProperty*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, sizeof(prodml23__ProductFlowExpectedUnitProperty), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowExpectedUnitProperty *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowExpectedUnitProperty *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowExpectedUnitProperty*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowExpectedUnitProperty*)a)->uid)) return NULL; size_t soap_flag_Property1 = 1; size_t soap_flag_ChildFacilityIdentifier1 = 1; @@ -167800,47 +167795,47 @@ SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_in_prodml for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Property1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__FacilityParameter(soap, "prodml22:Property", &a->prodml22__ProductFlowExpectedUnitProperty::Property, "prodml22:FacilityParameter")) + { if (soap_in_prodml23__FacilityParameter(soap, "prodml23:Property", &a->prodml23__ProductFlowExpectedUnitProperty::Property, "prodml23:FacilityParameter")) { soap_flag_Property1--; continue; } } if (soap_flag_ChildFacilityIdentifier1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__ProdmlRelativeIdentifier(soap, "prodml22:ChildFacilityIdentifier", &a->prodml22__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier, "prodml22:ProdmlRelativeIdentifier")) + { if (soap_in_PointerToprodml23__ProdmlRelativeIdentifier(soap, "prodml23:ChildFacilityIdentifier", &a->prodml23__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier, "prodml23:ProdmlRelativeIdentifier")) { soap_flag_ChildFacilityIdentifier1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:TagAlias", &a->prodml22__ProductFlowExpectedUnitProperty::TagAlias, "eml23:NameStruct")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:TagAlias", &a->prodml23__ProductFlowExpectedUnitProperty::TagAlias, "eml23:NameStruct")) continue; } if (soap_flag_Deadband1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__GeneralMeasureType(soap, "prodml22:Deadband", &a->prodml22__ProductFlowExpectedUnitProperty::Deadband, "prodml22:GeneralMeasureType")) + { if (soap_in_PointerToprodml23__GeneralMeasureType(soap, "prodml23:Deadband", &a->prodml23__ProductFlowExpectedUnitProperty::Deadband, "prodml23:GeneralMeasureType")) { soap_flag_Deadband1--; continue; } } if (soap_flag_MaximumFrequency1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml22:MaximumFrequency", &a->prodml22__ProductFlowExpectedUnitProperty::MaximumFrequency, "eml23:TimeMeasure")) + { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml23:MaximumFrequency", &a->prodml23__ProductFlowExpectedUnitProperty::MaximumFrequency, "eml23:TimeMeasure")) { soap_flag_MaximumFrequency1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductFlowExpectedUnitProperty::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductFlowExpectedUnitProperty::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap_flag_ExpectedFlowQualifier1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ExpectedFlowQualifier(soap, "prodml22:ExpectedFlowQualifier", &a->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier, "prodml22:ExpectedFlowQualifier")) + { if (soap_in_PointerToprodml23__ExpectedFlowQualifier(soap, "prodml23:ExpectedFlowQualifier", &a->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier, "prodml23:ExpectedFlowQualifier")) { soap_flag_ExpectedFlowQualifier1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, "prodml22:ExpectedFlowProduct", &a->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowProduct, "prodml22:ProductFlowQualifierExpected")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, "prodml23:ExpectedFlowProduct", &a->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowProduct, "prodml23:ProductFlowQualifierExpected")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -167862,35 +167857,35 @@ SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_in_prodml return NULL; } else - { a = (prodml22__ProductFlowExpectedUnitProperty *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, sizeof(prodml22__ProductFlowExpectedUnitProperty), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowExpectedUnitProperty *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, sizeof(prodml23__ProductFlowExpectedUnitProperty), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowExpectedUnitProperty *p; - size_t k = sizeof(prodml22__ProductFlowExpectedUnitProperty); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowExpectedUnitProperty *p; + size_t k = sizeof(prodml23__ProductFlowExpectedUnitProperty); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowExpectedUnitProperty); + { p = SOAP_NEW(soap, prodml23__ProductFlowExpectedUnitProperty); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowExpectedUnitProperty, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowExpectedUnitProperty, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowExpectedUnitProperty location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowExpectedUnitProperty location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -167900,90 +167895,90 @@ SOAP_FMAC1 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantia return p; } -int prodml22__ProductFlowExpectedUnitProperty::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowExpectedUnitProperty::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowExpectedUnitProperty(soap, tag ? tag : "prodml22:ProductFlowExpectedUnitProperty", -2, this, type)) + if (soap_out_prodml23__ProductFlowExpectedUnitProperty(soap, tag ? tag : "prodml23:ProductFlowExpectedUnitProperty", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowExpectedUnitProperty::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowExpectedUnitProperty::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowExpectedUnitProperty(soap, this, tag, type); + return soap_get_prodml23__ProductFlowExpectedUnitProperty(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_get_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_get_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowExpectedUnitProperty(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowExpectedUnitProperty(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowChangeLog::soap_default(struct soap *soap) +void prodml23__ProductFlowChangeLog::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowChangeLog::Name); - soap_default_eml23__TimeStamp(soap, &this->prodml22__ProductFlowChangeLog::DTim); - this->prodml22__ProductFlowChangeLog::Reason = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowChangeLog::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowChangeLog::Name); + soap_default_eml23__TimeStamp(soap, &this->prodml23__ProductFlowChangeLog::DTim); + this->prodml23__ProductFlowChangeLog::Reason = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowChangeLog::uid); } -void prodml22__ProductFlowChangeLog::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowChangeLog::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductFlowChangeLog::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowChangeLog::Name); - soap_embedded(soap, &this->prodml22__ProductFlowChangeLog::DTim, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__ProductFlowChangeLog::DTim); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowChangeLog::Reason); + soap_embedded(soap, &this->prodml23__ProductFlowChangeLog::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowChangeLog::Name); + soap_embedded(soap, &this->prodml23__ProductFlowChangeLog::DTim, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__ProductFlowChangeLog::DTim); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowChangeLog::Reason); #endif } -int prodml22__ProductFlowChangeLog::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowChangeLog::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowChangeLog(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowChangeLog(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowChangeLog(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowChangeLog *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowChangeLog(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowChangeLog *a, const char *type) { if (!type) - type = "prodml22:ProductFlowChangeLog"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowChangeLog*)a)->uid), 1); + type = "prodml23:ProductFlowChangeLog"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowChangeLog*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowChangeLog), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductFlowChangeLog::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductFlowChangeLog::Name, "eml23:String64")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:DTim", -1, &a->prodml22__ProductFlowChangeLog::DTim, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:DTim", -1, &a->prodml23__ProductFlowChangeLog::DTim, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Reason", -1, &a->prodml22__ProductFlowChangeLog::Reason, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Reason", -1, &a->prodml23__ProductFlowChangeLog::Reason, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowChangeLog::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowChangeLog::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowChangeLog(soap, tag, this, type); + return soap_in_prodml23__ProductFlowChangeLog(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowChangeLog * SOAP_FMAC4 soap_in_prodml22__ProductFlowChangeLog(struct soap *soap, const char *tag, prodml22__ProductFlowChangeLog *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowChangeLog * SOAP_FMAC4 soap_in_prodml23__ProductFlowChangeLog(struct soap *soap, const char *tag, prodml23__ProductFlowChangeLog *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowChangeLog*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, sizeof(prodml22__ProductFlowChangeLog), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowChangeLog*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, sizeof(prodml23__ProductFlowChangeLog), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowChangeLog *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowChangeLog *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowChangeLog*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowChangeLog*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_DTim1 = 1; @@ -167993,19 +167988,19 @@ SOAP_FMAC3 prodml22__ProductFlowChangeLog * SOAP_FMAC4 soap_in_prodml22__Product for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__ProductFlowChangeLog::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__ProductFlowChangeLog::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_DTim1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:DTim", &a->prodml22__ProductFlowChangeLog::DTim, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:DTim", &a->prodml23__ProductFlowChangeLog::DTim, "eml23:TimeStamp")) { soap_flag_DTim1--; continue; } } if (soap_flag_Reason1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Reason", &a->prodml22__ProductFlowChangeLog::Reason, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Reason", &a->prodml23__ProductFlowChangeLog::Reason, "eml23:String2000")) { soap_flag_Reason1--; continue; } @@ -168029,35 +168024,35 @@ SOAP_FMAC3 prodml22__ProductFlowChangeLog * SOAP_FMAC4 soap_in_prodml22__Product return NULL; } else - { a = (prodml22__ProductFlowChangeLog *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, sizeof(prodml22__ProductFlowChangeLog), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowChangeLog *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, sizeof(prodml23__ProductFlowChangeLog), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowChangeLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowChangeLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowChangeLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowChangeLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowChangeLog *p; - size_t k = sizeof(prodml22__ProductFlowChangeLog); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowChangeLog *p; + size_t k = sizeof(prodml23__ProductFlowChangeLog); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowChangeLog); + { p = SOAP_NEW(soap, prodml23__ProductFlowChangeLog); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowChangeLog, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowChangeLog, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowChangeLog location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowChangeLog location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -168067,70 +168062,70 @@ SOAP_FMAC1 prodml22__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__ProductFlowChangeLog::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowChangeLog::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowChangeLog(soap, tag ? tag : "prodml22:ProductFlowChangeLog", -2, this, type)) + if (soap_out_prodml23__ProductFlowChangeLog(soap, tag ? tag : "prodml23:ProductFlowChangeLog", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowChangeLog::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowChangeLog::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowChangeLog(soap, this, tag, type); + return soap_get_prodml23__ProductFlowChangeLog(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowChangeLog * SOAP_FMAC4 soap_get_prodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowChangeLog * SOAP_FMAC4 soap_get_prodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowChangeLog(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowChangeLog(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ExpectedFlowQualifier::soap_default(struct soap *soap) +void prodml23__ExpectedFlowQualifier::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__ExpectedFlowQualifier::soap_serialize(struct soap *soap) const +void prodml23__ExpectedFlowQualifier::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__ExpectedFlowQualifier::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ExpectedFlowQualifier::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ExpectedFlowQualifier(soap, tag, id, this, type); + return soap_out_prodml23__ExpectedFlowQualifier(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ExpectedFlowQualifier(struct soap *soap, const char *tag, int id, const prodml22__ExpectedFlowQualifier *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ExpectedFlowQualifier(struct soap *soap, const char *tag, int id, const prodml23__ExpectedFlowQualifier *a, const char *type) { if (!type) - type = "prodml22:ExpectedFlowQualifier"; + type = "prodml23:ExpectedFlowQualifier"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ExpectedFlowQualifier::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ExpectedFlowQualifier::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ExpectedFlowQualifier(soap, tag, this, type); + return soap_in_prodml23__ExpectedFlowQualifier(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ExpectedFlowQualifier * SOAP_FMAC4 soap_in_prodml22__ExpectedFlowQualifier(struct soap *soap, const char *tag, prodml22__ExpectedFlowQualifier *a, const char *type) +SOAP_FMAC3 prodml23__ExpectedFlowQualifier * SOAP_FMAC4 soap_in_prodml23__ExpectedFlowQualifier(struct soap *soap, const char *tag, prodml23__ExpectedFlowQualifier *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ExpectedFlowQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier, sizeof(prodml22__ExpectedFlowQualifier), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ExpectedFlowQualifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier, sizeof(prodml23__ExpectedFlowQualifier), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ExpectedFlowQualifier *)a->soap_in(soap, tag, type); + return (prodml23__ExpectedFlowQualifier *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -168149,39 +168144,39 @@ SOAP_FMAC3 prodml22__ExpectedFlowQualifier * SOAP_FMAC4 soap_in_prodml22__Expect return NULL; } else - { a = (prodml22__ExpectedFlowQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier, sizeof(prodml22__ExpectedFlowQualifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ExpectedFlowQualifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier, sizeof(prodml23__ExpectedFlowQualifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml22__ExpectedFlowQualifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml23__ExpectedFlowQualifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ExpectedFlowQualifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ExpectedFlowQualifier(%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, "prodml22:ProductFlowQualifierExpected")) - return soap_instantiate_prodml22__ProductFlowQualifierExpected(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Qualifier")) - return soap_instantiate_prodml22__Qualifier(soap, n, NULL, NULL, size); - prodml22__ExpectedFlowQualifier *p; - size_t k = sizeof(prodml22__ExpectedFlowQualifier); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductFlowQualifierExpected")) + return soap_instantiate_prodml23__ProductFlowQualifierExpected(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Qualifier")) + return soap_instantiate_prodml23__Qualifier(soap, n, NULL, NULL, size); + prodml23__ExpectedFlowQualifier *p; + size_t k = sizeof(prodml23__ExpectedFlowQualifier); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ExpectedFlowQualifier); + { p = SOAP_NEW(soap, prodml23__ExpectedFlowQualifier); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ExpectedFlowQualifier, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ExpectedFlowQualifier, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ExpectedFlowQualifier location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ExpectedFlowQualifier location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -168191,97 +168186,97 @@ SOAP_FMAC1 prodml22__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__ExpectedFlowQualifier::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ExpectedFlowQualifier::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ExpectedFlowQualifier(soap, tag ? tag : "prodml22:ExpectedFlowQualifier", -2, this, type)) + if (soap_out_prodml23__ExpectedFlowQualifier(soap, tag ? tag : "prodml23:ExpectedFlowQualifier", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ExpectedFlowQualifier::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ExpectedFlowQualifier::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ExpectedFlowQualifier(soap, this, tag, type); + return soap_get_prodml23__ExpectedFlowQualifier(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ExpectedFlowQualifier * SOAP_FMAC4 soap_get_prodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ExpectedFlowQualifier * SOAP_FMAC4 soap_get_prodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ExpectedFlowQualifier(soap, tag, p, type))) + if ((p = soap_in_prodml23__ExpectedFlowQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ConnectedNode::soap_default(struct soap *soap) +void prodml23__ConnectedNode::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ConnectedNode::Node); - this->prodml22__ConnectedNode::PlanName = NULL; - this->prodml22__ConnectedNode::DTimStart = NULL; - this->prodml22__ConnectedNode::DTimEnd = NULL; - this->prodml22__ConnectedNode::Comment = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ConnectedNode::uid); + soap_default_eml23__String64(soap, &this->prodml23__ConnectedNode::Node); + this->prodml23__ConnectedNode::PlanName = NULL; + this->prodml23__ConnectedNode::DTimStart = NULL; + this->prodml23__ConnectedNode::DTimEnd = NULL; + this->prodml23__ConnectedNode::Comment = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ConnectedNode::uid); } -void prodml22__ConnectedNode::soap_serialize(struct soap *soap) const +void prodml23__ConnectedNode::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ConnectedNode::Node, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ConnectedNode::Node); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ConnectedNode::PlanName); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ConnectedNode::DTimStart); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ConnectedNode::DTimEnd); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ConnectedNode::Comment); + soap_embedded(soap, &this->prodml23__ConnectedNode::Node, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ConnectedNode::Node); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ConnectedNode::PlanName); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ConnectedNode::DTimStart); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ConnectedNode::DTimEnd); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ConnectedNode::Comment); #endif } -int prodml22__ConnectedNode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ConnectedNode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ConnectedNode(soap, tag, id, this, type); + return soap_out_prodml23__ConnectedNode(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConnectedNode(struct soap *soap, const char *tag, int id, const prodml22__ConnectedNode *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConnectedNode(struct soap *soap, const char *tag, int id, const prodml23__ConnectedNode *a, const char *type) { if (!type) - type = "prodml22:ConnectedNode"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ConnectedNode*)a)->uid), 1); + type = "prodml23:ConnectedNode"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ConnectedNode*)a)->uid), 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_gsoap_eml2_3_prodml22__ConnectedNode), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Node", -1, &a->prodml22__ConnectedNode::Node, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Node", -1, &a->prodml23__ConnectedNode::Node, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PlanName", -1, &a->prodml22__ConnectedNode::PlanName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PlanName", -1, &a->prodml23__ConnectedNode::PlanName, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimStart", -1, &a->prodml22__ConnectedNode::DTimStart, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimStart", -1, &a->prodml23__ConnectedNode::DTimStart, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", -1, &a->prodml22__ConnectedNode::DTimEnd, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", -1, &a->prodml23__ConnectedNode::DTimEnd, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ConnectedNode::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ConnectedNode::Comment, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ConnectedNode::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConnectedNode::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ConnectedNode(soap, tag, this, type); + return soap_in_prodml23__ConnectedNode(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ConnectedNode * SOAP_FMAC4 soap_in_prodml22__ConnectedNode(struct soap *soap, const char *tag, prodml22__ConnectedNode *a, const char *type) +SOAP_FMAC3 prodml23__ConnectedNode * SOAP_FMAC4 soap_in_prodml23__ConnectedNode(struct soap *soap, const char *tag, prodml23__ConnectedNode *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ConnectedNode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, sizeof(prodml22__ConnectedNode), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ConnectedNode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, sizeof(prodml23__ConnectedNode), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ConnectedNode *)a->soap_in(soap, tag, type); + return (prodml23__ConnectedNode *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ConnectedNode*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ConnectedNode*)a)->uid)) return NULL; size_t soap_flag_Node1 = 1; size_t soap_flag_PlanName1 = 1; @@ -168293,31 +168288,31 @@ SOAP_FMAC3 prodml22__ConnectedNode * SOAP_FMAC4 soap_in_prodml22__ConnectedNode( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Node1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Node", &a->prodml22__ConnectedNode::Node, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Node", &a->prodml23__ConnectedNode::Node, "eml23:String64")) { soap_flag_Node1--; continue; } } if (soap_flag_PlanName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PlanName", &a->prodml22__ConnectedNode::PlanName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PlanName", &a->prodml23__ConnectedNode::PlanName, "eml23:String64")) { soap_flag_PlanName1--; continue; } } if (soap_flag_DTimStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimStart", &a->prodml22__ConnectedNode::DTimStart, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimStart", &a->prodml23__ConnectedNode::DTimStart, "eml23:TimeStamp")) { soap_flag_DTimStart1--; continue; } } if (soap_flag_DTimEnd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", &a->prodml22__ConnectedNode::DTimEnd, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", &a->prodml23__ConnectedNode::DTimEnd, "eml23:TimeStamp")) { soap_flag_DTimEnd1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ConnectedNode::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ConnectedNode::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } @@ -168341,35 +168336,35 @@ SOAP_FMAC3 prodml22__ConnectedNode * SOAP_FMAC4 soap_in_prodml22__ConnectedNode( return NULL; } else - { a = (prodml22__ConnectedNode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, sizeof(prodml22__ConnectedNode), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ConnectedNode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, sizeof(prodml23__ConnectedNode), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml22__ConnectedNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml23__ConnectedNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ConnectedNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ConnectedNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ConnectedNode *p; - size_t k = sizeof(prodml22__ConnectedNode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, n, gsoap_eml2_3_fdelete); + prodml23__ConnectedNode *p; + size_t k = sizeof(prodml23__ConnectedNode); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ConnectedNode); + { p = SOAP_NEW(soap, prodml23__ConnectedNode); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ConnectedNode, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ConnectedNode, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ConnectedNode location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ConnectedNode location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -168379,80 +168374,80 @@ SOAP_FMAC1 prodml22__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml22__Conne return p; } -int prodml22__ConnectedNode::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ConnectedNode::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ConnectedNode(soap, tag ? tag : "prodml22:ConnectedNode", -2, this, type)) + if (soap_out_prodml23__ConnectedNode(soap, tag ? tag : "prodml23:ConnectedNode", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ConnectedNode::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConnectedNode::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ConnectedNode(soap, this, tag, type); + return soap_get_prodml23__ConnectedNode(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ConnectedNode * SOAP_FMAC4 soap_get_prodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConnectedNode * SOAP_FMAC4 soap_get_prodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ConnectedNode(soap, tag, p, type))) + if ((p = soap_in_prodml23__ConnectedNode(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__StringData::soap_default(struct soap *soap) +void prodml23__StringData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractMeasureData::soap_default(soap); - this->prodml22__StringData::StringValue = NULL; + this->prodml23__AbstractMeasureData::soap_default(soap); + this->prodml23__StringData::StringValue = NULL; } -void prodml22__StringData::soap_serialize(struct soap *soap) const +void prodml23__StringData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__KindQualifiedString(soap, &this->prodml22__StringData::StringValue); - this->prodml22__AbstractMeasureData::soap_serialize(soap); + soap_serialize_PointerToprodml23__KindQualifiedString(soap, &this->prodml23__StringData::StringValue); + this->prodml23__AbstractMeasureData::soap_serialize(soap); #endif } -int prodml22__StringData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__StringData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__StringData(soap, tag, id, this, type); + return soap_out_prodml23__StringData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StringData(struct soap *soap, const char *tag, int id, const prodml22__StringData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StringData(struct soap *soap, const char *tag, int id, const prodml23__StringData *a, const char *type) { if (!type) - type = "prodml22:StringData"; + type = "prodml23:StringData"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StringData), type ? type : "prodml22:StringData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StringData), type ? type : "prodml23:StringData")) return soap->error; - if (!a->prodml22__StringData::StringValue) - { if (soap_element_empty(soap, "prodml22:StringValue", 0, NULL)) + if (!a->prodml23__StringData::StringValue) + { if (soap_element_empty(soap, "prodml23:StringValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__KindQualifiedString(soap, "prodml22:StringValue", -1, &a->prodml22__StringData::StringValue, "prodml22:KindQualifiedString")) + else if (soap_out_PointerToprodml23__KindQualifiedString(soap, "prodml23:StringValue", -1, &a->prodml23__StringData::StringValue, "prodml23:KindQualifiedString")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__StringData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__StringData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__StringData(soap, tag, this, type); + return soap_in_prodml23__StringData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_in_prodml22__StringData(struct soap *soap, const char *tag, prodml22__StringData *a, const char *type) +SOAP_FMAC3 prodml23__StringData * SOAP_FMAC4 soap_in_prodml23__StringData(struct soap *soap, const char *tag, prodml23__StringData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__StringData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StringData, sizeof(prodml22__StringData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__StringData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StringData, sizeof(prodml23__StringData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__StringData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__StringData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__StringData *)a->soap_in(soap, tag, type); + return (prodml23__StringData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -168462,7 +168457,7 @@ SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_in_prodml22__StringData(struct for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StringValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__KindQualifiedString(soap, "prodml22:StringValue", &a->prodml22__StringData::StringValue, "prodml22:KindQualifiedString")) + { if (soap_in_PointerToprodml23__KindQualifiedString(soap, "prodml23:StringValue", &a->prodml23__StringData::StringValue, "prodml23:KindQualifiedString")) { soap_flag_StringValue1--; continue; } @@ -168476,7 +168471,7 @@ SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_in_prodml22__StringData(struct } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__StringData::StringValue)) + if ((!a->prodml23__StringData::StringValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -168486,35 +168481,35 @@ SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_in_prodml22__StringData(struct return NULL; } else - { a = (prodml22__StringData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__StringData, SOAP_TYPE_gsoap_eml2_3_prodml22__StringData, sizeof(prodml22__StringData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__StringData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__StringData, SOAP_TYPE_gsoap_eml2_3_prodml23__StringData, sizeof(prodml23__StringData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__StringData * SOAP_FMAC2 soap_instantiate_prodml22__StringData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__StringData * SOAP_FMAC2 soap_instantiate_prodml23__StringData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__StringData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__StringData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__StringData *p; - size_t k = sizeof(prodml22__StringData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__StringData, n, gsoap_eml2_3_fdelete); + prodml23__StringData *p; + size_t k = sizeof(prodml23__StringData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__StringData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__StringData); + { p = SOAP_NEW(soap, prodml23__StringData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__StringData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__StringData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__StringData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__StringData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -168524,79 +168519,79 @@ SOAP_FMAC1 prodml22__StringData * SOAP_FMAC2 soap_instantiate_prodml22__StringDa return p; } -int prodml22__StringData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__StringData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__StringData(soap, tag ? tag : "prodml22:StringData", -2, this, type)) + if (soap_out_prodml23__StringData(soap, tag ? tag : "prodml23:StringData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__StringData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__StringData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__StringData(soap, this, tag, type); + return soap_get_prodml23__StringData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_get_prodml22__StringData(struct soap *soap, prodml22__StringData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StringData * SOAP_FMAC4 soap_get_prodml23__StringData(struct soap *soap, prodml23__StringData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__StringData(soap, tag, p, type))) + if ((p = soap_in_prodml23__StringData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReferenceFlow::soap_default(struct soap *soap) +void prodml23__ReferenceFlow::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRefProductFlow::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__ReferenceFlow::FlowReference); + this->prodml23__AbstractRefProductFlow::soap_default(soap); + soap_default_eml23__String64(soap, &this->prodml23__ReferenceFlow::FlowReference); } -void prodml22__ReferenceFlow::soap_serialize(struct soap *soap) const +void prodml23__ReferenceFlow::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ReferenceFlow::FlowReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ReferenceFlow::FlowReference); - this->prodml22__AbstractRefProductFlow::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__ReferenceFlow::FlowReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ReferenceFlow::FlowReference); + this->prodml23__AbstractRefProductFlow::soap_serialize(soap); #endif } -int prodml22__ReferenceFlow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReferenceFlow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReferenceFlow(soap, tag, id, this, type); + return soap_out_prodml23__ReferenceFlow(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReferenceFlow(struct soap *soap, const char *tag, int id, const prodml22__ReferenceFlow *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReferenceFlow(struct soap *soap, const char *tag, int id, const prodml23__ReferenceFlow *a, const char *type) { if (!type) - type = "prodml22:ReferenceFlow"; + type = "prodml23:ReferenceFlow"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow), type ? type : "prodml22:ReferenceFlow")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow), type ? type : "prodml23:ReferenceFlow")) return soap->error; - if (soap_out__prodml22__union_AbstractRefProductFlow(soap, a->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow)) + if (soap_out__prodml23__union_AbstractRefProductFlow(soap, a->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:FlowReference", -1, &a->prodml22__ReferenceFlow::FlowReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:FlowReference", -1, &a->prodml23__ReferenceFlow::FlowReference, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReferenceFlow::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReferenceFlow::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReferenceFlow(soap, tag, this, type); + return soap_in_prodml23__ReferenceFlow(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReferenceFlow * SOAP_FMAC4 soap_in_prodml22__ReferenceFlow(struct soap *soap, const char *tag, prodml22__ReferenceFlow *a, const char *type) +SOAP_FMAC3 prodml23__ReferenceFlow * SOAP_FMAC4 soap_in_prodml23__ReferenceFlow(struct soap *soap, const char *tag, prodml23__ReferenceFlow *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReferenceFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow, sizeof(prodml22__ReferenceFlow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReferenceFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow, sizeof(prodml23__ReferenceFlow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReferenceFlow *)a->soap_in(soap, tag, type); + return (prodml23__ReferenceFlow *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -168607,13 +168602,13 @@ SOAP_FMAC3 prodml22__ReferenceFlow * SOAP_FMAC4 soap_in_prodml22__ReferenceFlow( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_union_AbstractRefProductFlow2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__prodml22__union_AbstractRefProductFlow(soap, &a->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow)) + { if (soap_in__prodml23__union_AbstractRefProductFlow(soap, &a->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow)) { soap_flag_union_AbstractRefProductFlow2 = 0; continue; } } if (soap_flag_FlowReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:FlowReference", &a->prodml22__ReferenceFlow::FlowReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:FlowReference", &a->prodml23__ReferenceFlow::FlowReference, "eml23:String64")) { soap_flag_FlowReference1--; continue; } @@ -168637,35 +168632,35 @@ SOAP_FMAC3 prodml22__ReferenceFlow * SOAP_FMAC4 soap_in_prodml22__ReferenceFlow( return NULL; } else - { a = (prodml22__ReferenceFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow, sizeof(prodml22__ReferenceFlow), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReferenceFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow, sizeof(prodml23__ReferenceFlow), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml22__ReferenceFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml23__ReferenceFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReferenceFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReferenceFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReferenceFlow *p; - size_t k = sizeof(prodml22__ReferenceFlow); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow, n, gsoap_eml2_3_fdelete); + prodml23__ReferenceFlow *p; + size_t k = sizeof(prodml23__ReferenceFlow); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReferenceFlow); + { p = SOAP_NEW(soap, prodml23__ReferenceFlow); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReferenceFlow, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReferenceFlow, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReferenceFlow location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReferenceFlow location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -168675,78 +168670,78 @@ SOAP_FMAC1 prodml22__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml22__Refer return p; } -int prodml22__ReferenceFlow::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReferenceFlow::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReferenceFlow(soap, tag ? tag : "prodml22:ReferenceFlow", -2, this, type)) + if (soap_out_prodml23__ReferenceFlow(soap, tag ? tag : "prodml23:ReferenceFlow", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReferenceFlow::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReferenceFlow::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReferenceFlow(soap, this, tag, type); + return soap_get_prodml23__ReferenceFlow(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReferenceFlow * SOAP_FMAC4 soap_get_prodml22__ReferenceFlow(struct soap *soap, prodml22__ReferenceFlow *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReferenceFlow * SOAP_FMAC4 soap_get_prodml23__ReferenceFlow(struct soap *soap, prodml23__ReferenceFlow *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReferenceFlow(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReferenceFlow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeRelatedFacility::soap_default(struct soap *soap) +void prodml23__ProductVolumeRelatedFacility::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeRelatedFacility::Kind = NULL; - this->prodml22__ProductVolumeRelatedFacility::RelatedFacilityObject = NULL; + this->prodml23__ProductVolumeRelatedFacility::Kind = NULL; + this->prodml23__ProductVolumeRelatedFacility::RelatedFacilityObject = NULL; } -void prodml22__ProductVolumeRelatedFacility::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeRelatedFacility::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ReportingFacility(soap, &this->prodml22__ProductVolumeRelatedFacility::Kind); - soap_serialize_PointerToprodml22__AbstractRelatedFacilityObject(soap, &this->prodml22__ProductVolumeRelatedFacility::RelatedFacilityObject); + soap_serialize_PointerToprodml23__ReportingFacility(soap, &this->prodml23__ProductVolumeRelatedFacility::Kind); + soap_serialize_PointerToprodml23__AbstractRelatedFacilityObject(soap, &this->prodml23__ProductVolumeRelatedFacility::RelatedFacilityObject); #endif } -int prodml22__ProductVolumeRelatedFacility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeRelatedFacility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeRelatedFacility(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeRelatedFacility(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeRelatedFacility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeRelatedFacility *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeRelatedFacility"; + type = "prodml23:ProductVolumeRelatedFacility"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility), type)) return soap->error; - if (soap_out_PointerToprodml22__ReportingFacility(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeRelatedFacility::Kind, "prodml22:ReportingFacility")) + if (soap_out_PointerToprodml23__ReportingFacility(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeRelatedFacility::Kind, "prodml23:ReportingFacility")) return soap->error; - if (soap_out_PointerToprodml22__AbstractRelatedFacilityObject(soap, "prodml22:RelatedFacilityObject", -1, &a->prodml22__ProductVolumeRelatedFacility::RelatedFacilityObject, "prodml22:AbstractRelatedFacilityObject")) + if (soap_out_PointerToprodml23__AbstractRelatedFacilityObject(soap, "prodml23:RelatedFacilityObject", -1, &a->prodml23__ProductVolumeRelatedFacility::RelatedFacilityObject, "prodml23:AbstractRelatedFacilityObject")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeRelatedFacility::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeRelatedFacility::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeRelatedFacility(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeRelatedFacility(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_in_prodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, prodml22__ProductVolumeRelatedFacility *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_in_prodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, prodml23__ProductVolumeRelatedFacility *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeRelatedFacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility, sizeof(prodml22__ProductVolumeRelatedFacility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeRelatedFacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility, sizeof(prodml23__ProductVolumeRelatedFacility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeRelatedFacility *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeRelatedFacility *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -168757,13 +168752,13 @@ SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingFacility(soap, "prodml22:Kind", &a->prodml22__ProductVolumeRelatedFacility::Kind, "prodml22:ReportingFacility")) + { if (soap_in_PointerToprodml23__ReportingFacility(soap, "prodml23:Kind", &a->prodml23__ProductVolumeRelatedFacility::Kind, "prodml23:ReportingFacility")) { soap_flag_Kind1--; continue; } } if (soap_flag_RelatedFacilityObject1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractRelatedFacilityObject(soap, "prodml22:RelatedFacilityObject", &a->prodml22__ProductVolumeRelatedFacility::RelatedFacilityObject, "prodml22:AbstractRelatedFacilityObject")) + { if (soap_in_PointerToprodml23__AbstractRelatedFacilityObject(soap, "prodml23:RelatedFacilityObject", &a->prodml23__ProductVolumeRelatedFacility::RelatedFacilityObject, "prodml23:AbstractRelatedFacilityObject")) { soap_flag_RelatedFacilityObject1--; continue; } @@ -168779,35 +168774,35 @@ SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__ProductVolumeRelatedFacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility, sizeof(prodml22__ProductVolumeRelatedFacility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeRelatedFacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility, sizeof(prodml23__ProductVolumeRelatedFacility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeRelatedFacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeRelatedFacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeRelatedFacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeRelatedFacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeRelatedFacility *p; - size_t k = sizeof(prodml22__ProductVolumeRelatedFacility); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeRelatedFacility *p; + size_t k = sizeof(prodml23__ProductVolumeRelatedFacility); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeRelatedFacility); + { p = SOAP_NEW(soap, prodml23__ProductVolumeRelatedFacility); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeRelatedFacility, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeRelatedFacility, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeRelatedFacility location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeRelatedFacility location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -168817,112 +168812,112 @@ SOAP_FMAC1 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__ProductVolumeRelatedFacility::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeRelatedFacility::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeRelatedFacility(soap, tag ? tag : "prodml22:ProductVolumeRelatedFacility", -2, this, type)) + if (soap_out_prodml23__ProductVolumeRelatedFacility(soap, tag ? tag : "prodml23:ProductVolumeRelatedFacility", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeRelatedFacility::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeRelatedFacility::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeRelatedFacility(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeRelatedFacility(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_get_prodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_get_prodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeRelatedFacility(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeRelatedFacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeProduct::soap_default(struct soap *soap) +void prodml23__ProductVolumeProduct::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__ReportingProduct(soap, &this->prodml22__ProductVolumeProduct::Kind); - this->prodml22__ProductVolumeProduct::Name = NULL; - this->prodml22__ProductVolumeProduct::SplitFactor = NULL; - this->prodml22__ProductVolumeProduct::MassFraction = NULL; - this->prodml22__ProductVolumeProduct::MoleFraction = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, &this->prodml22__ProductVolumeProduct::ComponentContent); - this->prodml22__ProductVolumeProduct::SourceFlow = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap, &this->prodml22__ProductVolumeProduct::Period); - this->prodml22__ProductVolumeProduct::Properties = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeProduct::uid); + soap_default_prodml23__ReportingProduct(soap, &this->prodml23__ProductVolumeProduct::Kind); + this->prodml23__ProductVolumeProduct::Name = NULL; + this->prodml23__ProductVolumeProduct::SplitFactor = NULL; + this->prodml23__ProductVolumeProduct::MassFraction = NULL; + this->prodml23__ProductVolumeProduct::MoleFraction = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, &this->prodml23__ProductVolumeProduct::ComponentContent); + this->prodml23__ProductVolumeProduct::SourceFlow = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap, &this->prodml23__ProductVolumeProduct::Period); + this->prodml23__ProductVolumeProduct::Properties = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeProduct::uid); } -void prodml22__ProductVolumeProduct::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeProduct::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductVolumeProduct::Kind, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct); - soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml22__ProductVolumeProduct::Name); - soap_serialize_PointerToprodml22__NonNegativeFraction(soap, &this->prodml22__ProductVolumeProduct::SplitFactor); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__ProductVolumeProduct::MassFraction); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__ProductVolumeProduct::MoleFraction); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, &this->prodml22__ProductVolumeProduct::ComponentContent); - soap_serialize_PointerToprodml22__AbstractRefProductFlow(soap, &this->prodml22__ProductVolumeProduct::SourceFlow); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap, &this->prodml22__ProductVolumeProduct::Period); - soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(soap, &this->prodml22__ProductVolumeProduct::Properties); + soap_embedded(soap, &this->prodml23__ProductVolumeProduct::Kind, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct); + soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml23__ProductVolumeProduct::Name); + soap_serialize_PointerToprodml23__NonNegativeFraction(soap, &this->prodml23__ProductVolumeProduct::SplitFactor); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__ProductVolumeProduct::MassFraction); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__ProductVolumeProduct::MoleFraction); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, &this->prodml23__ProductVolumeProduct::ComponentContent); + soap_serialize_PointerToprodml23__AbstractRefProductFlow(soap, &this->prodml23__ProductVolumeProduct::SourceFlow); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap, &this->prodml23__ProductVolumeProduct::Period); + soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(soap, &this->prodml23__ProductVolumeProduct::Properties); #endif } -int prodml22__ProductVolumeProduct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeProduct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeProduct(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeProduct(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeProduct(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeProduct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeProduct(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeProduct *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeProduct"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeProduct*)a)->uid), 1); + type = "prodml23:ProductVolumeProduct"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeProduct*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeProduct), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct), type)) return soap->error; - if (soap_out_prodml22__ReportingProduct(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeProduct::Kind, "prodml22:ReportingProduct")) + if (soap_out_prodml23__ReportingProduct(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeProduct::Kind, "prodml23:ReportingProduct")) return soap->error; - if (soap_out_PointerToeml23__NameStruct(soap, "prodml22:Name", -1, &a->prodml22__ProductVolumeProduct::Name, "eml23:NameStruct")) + if (soap_out_PointerToeml23__NameStruct(soap, "prodml23:Name", -1, &a->prodml23__ProductVolumeProduct::Name, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToprodml22__NonNegativeFraction(soap, "prodml22:SplitFactor", -1, &a->prodml22__ProductVolumeProduct::SplitFactor, "prodml22:NonNegativeFraction")) + if (soap_out_PointerToprodml23__NonNegativeFraction(soap, "prodml23:SplitFactor", -1, &a->prodml23__ProductVolumeProduct::SplitFactor, "prodml23:NonNegativeFraction")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__ProductVolumeProduct::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__ProductVolumeProduct::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__ProductVolumeProduct::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__ProductVolumeProduct::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, "prodml22:ComponentContent", -1, &a->prodml22__ProductVolumeProduct::ComponentContent, "prodml22:ProductVolumeComponentContent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, "prodml23:ComponentContent", -1, &a->prodml23__ProductVolumeProduct::ComponentContent, "prodml23:ProductVolumeComponentContent")) return soap->error; - if (soap_out_PointerToprodml22__AbstractRefProductFlow(soap, "prodml22:SourceFlow", -1, &a->prodml22__ProductVolumeProduct::SourceFlow, "prodml22:AbstractRefProductFlow")) + if (soap_out_PointerToprodml23__AbstractRefProductFlow(soap, "prodml23:SourceFlow", -1, &a->prodml23__ProductVolumeProduct::SourceFlow, "prodml23:AbstractRefProductFlow")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap, "prodml22:Period", -1, &a->prodml22__ProductVolumeProduct::Period, "prodml22:ProductVolumePeriod")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap, "prodml23:Period", -1, &a->prodml23__ProductVolumeProduct::Period, "prodml23:ProductVolumePeriod")) return soap->error; - if (soap_out_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", -1, &a->prodml22__ProductVolumeProduct::Properties, "prodml22:CommonPropertiesProductVolume")) + if (soap_out_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", -1, &a->prodml23__ProductVolumeProduct::Properties, "prodml23:CommonPropertiesProductVolume")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeProduct::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeProduct::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeProduct(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeProduct(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml22__ProductVolumeProduct(struct soap *soap, const char *tag, prodml22__ProductVolumeProduct *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml23__ProductVolumeProduct(struct soap *soap, const char *tag, prodml23__ProductVolumeProduct *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, sizeof(prodml22__ProductVolumeProduct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, sizeof(prodml23__ProductVolumeProduct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeProduct *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeProduct *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeProduct*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeProduct*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_Name1 = 1; @@ -168936,51 +168931,51 @@ SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml22__Product for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ReportingProduct(soap, "prodml22:Kind", &a->prodml22__ProductVolumeProduct::Kind, "prodml22:ReportingProduct")) + { if (soap_in_prodml23__ReportingProduct(soap, "prodml23:Kind", &a->prodml23__ProductVolumeProduct::Kind, "prodml23:ReportingProduct")) { soap_flag_Kind1--; continue; } } if (soap_flag_Name1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NameStruct(soap, "prodml22:Name", &a->prodml22__ProductVolumeProduct::Name, "eml23:NameStruct")) + { if (soap_in_PointerToeml23__NameStruct(soap, "prodml23:Name", &a->prodml23__ProductVolumeProduct::Name, "eml23:NameStruct")) { soap_flag_Name1--; continue; } } if (soap_flag_SplitFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__NonNegativeFraction(soap, "prodml22:SplitFactor", &a->prodml22__ProductVolumeProduct::SplitFactor, "prodml22:NonNegativeFraction")) + { if (soap_in_PointerToprodml23__NonNegativeFraction(soap, "prodml23:SplitFactor", &a->prodml23__ProductVolumeProduct::SplitFactor, "prodml23:NonNegativeFraction")) { soap_flag_SplitFactor1--; continue; } } if (soap_flag_MassFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__ProductVolumeProduct::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__ProductVolumeProduct::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction1--; continue; } } if (soap_flag_MoleFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__ProductVolumeProduct::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__ProductVolumeProduct::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, "prodml22:ComponentContent", &a->prodml22__ProductVolumeProduct::ComponentContent, "prodml22:ProductVolumeComponentContent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, "prodml23:ComponentContent", &a->prodml23__ProductVolumeProduct::ComponentContent, "prodml23:ProductVolumeComponentContent")) continue; } if (soap_flag_SourceFlow1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractRefProductFlow(soap, "prodml22:SourceFlow", &a->prodml22__ProductVolumeProduct::SourceFlow, "prodml22:AbstractRefProductFlow")) + { if (soap_in_PointerToprodml23__AbstractRefProductFlow(soap, "prodml23:SourceFlow", &a->prodml23__ProductVolumeProduct::SourceFlow, "prodml23:AbstractRefProductFlow")) { soap_flag_SourceFlow1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap, "prodml22:Period", &a->prodml22__ProductVolumeProduct::Period, "prodml22:ProductVolumePeriod")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap, "prodml23:Period", &a->prodml23__ProductVolumeProduct::Period, "prodml23:ProductVolumePeriod")) continue; } if (soap_flag_Properties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", &a->prodml22__ProductVolumeProduct::Properties, "prodml22:CommonPropertiesProductVolume")) + { if (soap_in_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", &a->prodml23__ProductVolumeProduct::Properties, "prodml23:CommonPropertiesProductVolume")) { soap_flag_Properties1--; continue; } @@ -168994,7 +168989,7 @@ SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml22__Product } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Kind1 > 0 || a->prodml22__ProductVolumeProduct::Period.size() < 1)) + if ((soap_flag_Kind1 > 0 || a->prodml23__ProductVolumeProduct::Period.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -169004,35 +168999,35 @@ SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml22__Product return NULL; } else - { a = (prodml22__ProductVolumeProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, sizeof(prodml22__ProductVolumeProduct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, sizeof(prodml23__ProductVolumeProduct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeProduct *p; - size_t k = sizeof(prodml22__ProductVolumeProduct); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeProduct *p; + size_t k = sizeof(prodml23__ProductVolumeProduct); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeProduct); + { p = SOAP_NEW(soap, prodml23__ProductVolumeProduct); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeProduct, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeProduct, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeProduct location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeProduct location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -169042,96 +169037,96 @@ SOAP_FMAC1 prodml22__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__ProductVolumeProduct::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeProduct::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeProduct(soap, tag ? tag : "prodml22:ProductVolumeProduct", -2, this, type)) + if (soap_out_prodml23__ProductVolumeProduct(soap, tag ? tag : "prodml23:ProductVolumeProduct", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeProduct::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeProduct::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeProduct(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeProduct(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_get_prodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeProduct * SOAP_FMAC4 soap_get_prodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeProduct(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumePortDifference::soap_default(struct soap *soap) +void prodml23__ProductVolumePortDifference::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumePortDifference::PortReference = NULL; - this->prodml22__ProductVolumePortDifference::PresDiff = NULL; - this->prodml22__ProductVolumePortDifference::TempDiff = NULL; - this->prodml22__ProductVolumePortDifference::ChokeSize = NULL; - this->prodml22__ProductVolumePortDifference::ChokeRelative = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumePortDifference::uid); + this->prodml23__ProductVolumePortDifference::PortReference = NULL; + this->prodml23__ProductVolumePortDifference::PresDiff = NULL; + this->prodml23__ProductVolumePortDifference::TempDiff = NULL; + this->prodml23__ProductVolumePortDifference::ChokeSize = NULL; + this->prodml23__ProductVolumePortDifference::ChokeRelative = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumePortDifference::uid); } -void prodml22__ProductVolumePortDifference::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumePortDifference::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumePortDifference::PortReference); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__ProductVolumePortDifference::PresDiff); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__ProductVolumePortDifference::TempDiff); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__ProductVolumePortDifference::ChokeSize); - soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml22__ProductVolumePortDifference::ChokeRelative); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumePortDifference::PortReference); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__ProductVolumePortDifference::PresDiff); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__ProductVolumePortDifference::TempDiff); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__ProductVolumePortDifference::ChokeSize); + soap_serialize_PointerToeml23__LengthPerLengthMeasure(soap, &this->prodml23__ProductVolumePortDifference::ChokeRelative); #endif } -int prodml22__ProductVolumePortDifference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumePortDifference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumePortDifference(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumePortDifference(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumePortDifference(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumePortDifference *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumePortDifference(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumePortDifference *a, const char *type) { if (!type) - type = "prodml22:ProductVolumePortDifference"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumePortDifference*)a)->uid), 1); + type = "prodml23:ProductVolumePortDifference"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumePortDifference*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumePortDifference), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PortReference", -1, &a->prodml22__ProductVolumePortDifference::PortReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PortReference", -1, &a->prodml23__ProductVolumePortDifference::PortReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:PresDiff", -1, &a->prodml22__ProductVolumePortDifference::PresDiff, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:PresDiff", -1, &a->prodml23__ProductVolumePortDifference::PresDiff, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TempDiff", -1, &a->prodml22__ProductVolumePortDifference::TempDiff, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TempDiff", -1, &a->prodml23__ProductVolumePortDifference::TempDiff, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:ChokeSize", -1, &a->prodml22__ProductVolumePortDifference::ChokeSize, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:ChokeSize", -1, &a->prodml23__ProductVolumePortDifference::ChokeSize, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:ChokeRelative", -1, &a->prodml22__ProductVolumePortDifference::ChokeRelative, "eml23:LengthPerLengthMeasure")) + if (soap_out_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:ChokeRelative", -1, &a->prodml23__ProductVolumePortDifference::ChokeRelative, "eml23:LengthPerLengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumePortDifference::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumePortDifference::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumePortDifference(soap, tag, this, type); + return soap_in_prodml23__ProductVolumePortDifference(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumePortDifference * SOAP_FMAC4 soap_in_prodml22__ProductVolumePortDifference(struct soap *soap, const char *tag, prodml22__ProductVolumePortDifference *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePortDifference * SOAP_FMAC4 soap_in_prodml23__ProductVolumePortDifference(struct soap *soap, const char *tag, prodml23__ProductVolumePortDifference *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumePortDifference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, sizeof(prodml22__ProductVolumePortDifference), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumePortDifference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, sizeof(prodml23__ProductVolumePortDifference), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumePortDifference *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumePortDifference *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumePortDifference*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumePortDifference*)a)->uid)) return NULL; size_t soap_flag_PortReference1 = 1; size_t soap_flag_PresDiff1 = 1; @@ -169143,31 +169138,31 @@ SOAP_FMAC3 prodml22__ProductVolumePortDifference * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_PortReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PortReference", &a->prodml22__ProductVolumePortDifference::PortReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PortReference", &a->prodml23__ProductVolumePortDifference::PortReference, "eml23:String64")) { soap_flag_PortReference1--; continue; } } if (soap_flag_PresDiff1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:PresDiff", &a->prodml22__ProductVolumePortDifference::PresDiff, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:PresDiff", &a->prodml23__ProductVolumePortDifference::PresDiff, "eml23:PressureMeasure")) { soap_flag_PresDiff1--; continue; } } if (soap_flag_TempDiff1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TempDiff", &a->prodml22__ProductVolumePortDifference::TempDiff, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TempDiff", &a->prodml23__ProductVolumePortDifference::TempDiff, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TempDiff1--; continue; } } if (soap_flag_ChokeSize1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:ChokeSize", &a->prodml22__ProductVolumePortDifference::ChokeSize, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:ChokeSize", &a->prodml23__ProductVolumePortDifference::ChokeSize, "eml23:LengthMeasure")) { soap_flag_ChokeSize1--; continue; } } if (soap_flag_ChokeRelative1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml22:ChokeRelative", &a->prodml22__ProductVolumePortDifference::ChokeRelative, "eml23:LengthPerLengthMeasure")) + { if (soap_in_PointerToeml23__LengthPerLengthMeasure(soap, "prodml23:ChokeRelative", &a->prodml23__ProductVolumePortDifference::ChokeRelative, "eml23:LengthPerLengthMeasure")) { soap_flag_ChokeRelative1--; continue; } @@ -169183,35 +169178,35 @@ SOAP_FMAC3 prodml22__ProductVolumePortDifference * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__ProductVolumePortDifference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, sizeof(prodml22__ProductVolumePortDifference), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumePortDifference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, sizeof(prodml23__ProductVolumePortDifference), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumePortDifference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumePortDifference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumePortDifference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumePortDifference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumePortDifference *p; - size_t k = sizeof(prodml22__ProductVolumePortDifference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumePortDifference *p; + size_t k = sizeof(prodml23__ProductVolumePortDifference); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumePortDifference); + { p = SOAP_NEW(soap, prodml23__ProductVolumePortDifference); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumePortDifference, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumePortDifference, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumePortDifference location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumePortDifference location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -169221,104 +169216,104 @@ SOAP_FMAC1 prodml22__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__ProductVolumePortDifference::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumePortDifference::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumePortDifference(soap, tag ? tag : "prodml22:ProductVolumePortDifference", -2, this, type)) + if (soap_out_prodml23__ProductVolumePortDifference(soap, tag ? tag : "prodml23:ProductVolumePortDifference", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumePortDifference::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumePortDifference::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumePortDifference(soap, this, tag, type); + return soap_get_prodml23__ProductVolumePortDifference(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumePortDifference * SOAP_FMAC4 soap_get_prodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePortDifference * SOAP_FMAC4 soap_get_prodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumePortDifference(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumePortDifference(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumePeriod::soap_default(struct soap *soap) +void prodml23__ProductVolumePeriod::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumePeriod::Kind = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, &this->prodml22__ProductVolumePeriod::Comment); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap, &this->prodml22__ProductVolumePeriod::BalanceSet); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, &this->prodml22__ProductVolumePeriod::ComponentContent); - this->prodml22__ProductVolumePeriod::Properties = NULL; - this->prodml22__ProductVolumePeriod::Alert = NULL; - this->prodml22__ProductVolumePeriod::DateTime = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumePeriod::uid); + this->prodml23__ProductVolumePeriod::Kind = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, &this->prodml23__ProductVolumePeriod::Comment); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap, &this->prodml23__ProductVolumePeriod::BalanceSet); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, &this->prodml23__ProductVolumePeriod::ComponentContent); + this->prodml23__ProductVolumePeriod::Properties = NULL; + this->prodml23__ProductVolumePeriod::Alert = NULL; + this->prodml23__ProductVolumePeriod::DateTime = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumePeriod::uid); } -void prodml22__ProductVolumePeriod::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumePeriod::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ReportingDurationKind(soap, &this->prodml22__ProductVolumePeriod::Kind); - soap_serialize_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, &this->prodml22__ProductVolumePeriod::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap, &this->prodml22__ProductVolumePeriod::BalanceSet); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, &this->prodml22__ProductVolumePeriod::ComponentContent); - soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(soap, &this->prodml22__ProductVolumePeriod::Properties); - soap_serialize_PointerToprodml22__ProductVolumeAlert(soap, &this->prodml22__ProductVolumePeriod::Alert); - soap_serialize_PointerToprodml22__AbstractDateTimeClass(soap, &this->prodml22__ProductVolumePeriod::DateTime); + soap_serialize_PointerToprodml23__ReportingDurationKind(soap, &this->prodml23__ProductVolumePeriod::Kind); + soap_serialize_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, &this->prodml23__ProductVolumePeriod::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap, &this->prodml23__ProductVolumePeriod::BalanceSet); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, &this->prodml23__ProductVolumePeriod::ComponentContent); + soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(soap, &this->prodml23__ProductVolumePeriod::Properties); + soap_serialize_PointerToprodml23__ProductVolumeAlert(soap, &this->prodml23__ProductVolumePeriod::Alert); + soap_serialize_PointerToprodml23__AbstractDateTimeClass(soap, &this->prodml23__ProductVolumePeriod::DateTime); #endif } -int prodml22__ProductVolumePeriod::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumePeriod::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumePeriod(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumePeriod(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumePeriod(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumePeriod *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumePeriod(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumePeriod *a, const char *type) { if (!type) - type = "prodml22:ProductVolumePeriod"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumePeriod*)a)->uid), 1); + type = "prodml23:ProductVolumePeriod"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumePeriod*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumePeriod), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod), type)) return soap->error; - if (soap_out_PointerToprodml22__ReportingDurationKind(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumePeriod::Kind, "prodml22:ReportingDurationKind")) + if (soap_out_PointerToprodml23__ReportingDurationKind(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumePeriod::Kind, "prodml23:ReportingDurationKind")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, "prodml22:Comment", -1, &a->prodml22__ProductVolumePeriod::Comment, "prodml22:DatedComment")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, "prodml23:Comment", -1, &a->prodml23__ProductVolumePeriod::Comment, "prodml23:DatedComment")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap, "prodml22:BalanceSet", -1, &a->prodml22__ProductVolumePeriod::BalanceSet, "prodml22:ProductVolumeBalanceSet")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap, "prodml23:BalanceSet", -1, &a->prodml23__ProductVolumePeriod::BalanceSet, "prodml23:ProductVolumeBalanceSet")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, "prodml22:ComponentContent", -1, &a->prodml22__ProductVolumePeriod::ComponentContent, "prodml22:ProductVolumeComponentContent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, "prodml23:ComponentContent", -1, &a->prodml23__ProductVolumePeriod::ComponentContent, "prodml23:ProductVolumeComponentContent")) return soap->error; - if (soap_out_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", -1, &a->prodml22__ProductVolumePeriod::Properties, "prodml22:CommonPropertiesProductVolume")) + if (soap_out_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", -1, &a->prodml23__ProductVolumePeriod::Properties, "prodml23:CommonPropertiesProductVolume")) return soap->error; - if (soap_out_PointerToprodml22__ProductVolumeAlert(soap, "prodml22:Alert", -1, &a->prodml22__ProductVolumePeriod::Alert, "prodml22:ProductVolumeAlert")) + if (soap_out_PointerToprodml23__ProductVolumeAlert(soap, "prodml23:Alert", -1, &a->prodml23__ProductVolumePeriod::Alert, "prodml23:ProductVolumeAlert")) return soap->error; - if (soap_out_PointerToprodml22__AbstractDateTimeClass(soap, "prodml22:DateTime", -1, &a->prodml22__ProductVolumePeriod::DateTime, "prodml22:AbstractDateTimeClass")) + if (soap_out_PointerToprodml23__AbstractDateTimeClass(soap, "prodml23:DateTime", -1, &a->prodml23__ProductVolumePeriod::DateTime, "prodml23:AbstractDateTimeClass")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumePeriod::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumePeriod::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumePeriod(soap, tag, this, type); + return soap_in_prodml23__ProductVolumePeriod(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumePeriod * SOAP_FMAC4 soap_in_prodml22__ProductVolumePeriod(struct soap *soap, const char *tag, prodml22__ProductVolumePeriod *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePeriod * SOAP_FMAC4 soap_in_prodml23__ProductVolumePeriod(struct soap *soap, const char *tag, prodml23__ProductVolumePeriod *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumePeriod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, sizeof(prodml22__ProductVolumePeriod), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumePeriod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, sizeof(prodml23__ProductVolumePeriod), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumePeriod *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumePeriod *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumePeriod*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumePeriod*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_Properties1 = 1; @@ -169329,37 +169324,37 @@ SOAP_FMAC3 prodml22__ProductVolumePeriod * SOAP_FMAC4 soap_in_prodml22__ProductV for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingDurationKind(soap, "prodml22:Kind", &a->prodml22__ProductVolumePeriod::Kind, "prodml22:ReportingDurationKind")) + { if (soap_in_PointerToprodml23__ReportingDurationKind(soap, "prodml23:Kind", &a->prodml23__ProductVolumePeriod::Kind, "prodml23:ReportingDurationKind")) { soap_flag_Kind1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, "prodml22:Comment", &a->prodml22__ProductVolumePeriod::Comment, "prodml22:DatedComment")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, "prodml23:Comment", &a->prodml23__ProductVolumePeriod::Comment, "prodml23:DatedComment")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap, "prodml22:BalanceSet", &a->prodml22__ProductVolumePeriod::BalanceSet, "prodml22:ProductVolumeBalanceSet")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap, "prodml23:BalanceSet", &a->prodml23__ProductVolumePeriod::BalanceSet, "prodml23:ProductVolumeBalanceSet")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, "prodml22:ComponentContent", &a->prodml22__ProductVolumePeriod::ComponentContent, "prodml22:ProductVolumeComponentContent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, "prodml23:ComponentContent", &a->prodml23__ProductVolumePeriod::ComponentContent, "prodml23:ProductVolumeComponentContent")) continue; } if (soap_flag_Properties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", &a->prodml22__ProductVolumePeriod::Properties, "prodml22:CommonPropertiesProductVolume")) + { if (soap_in_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", &a->prodml23__ProductVolumePeriod::Properties, "prodml23:CommonPropertiesProductVolume")) { soap_flag_Properties1--; continue; } } if (soap_flag_Alert1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProductVolumeAlert(soap, "prodml22:Alert", &a->prodml22__ProductVolumePeriod::Alert, "prodml22:ProductVolumeAlert")) + { if (soap_in_PointerToprodml23__ProductVolumeAlert(soap, "prodml23:Alert", &a->prodml23__ProductVolumePeriod::Alert, "prodml23:ProductVolumeAlert")) { soap_flag_Alert1--; continue; } } if (soap_flag_DateTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractDateTimeClass(soap, "prodml22:DateTime", &a->prodml22__ProductVolumePeriod::DateTime, "prodml22:AbstractDateTimeClass")) + { if (soap_in_PointerToprodml23__AbstractDateTimeClass(soap, "prodml23:DateTime", &a->prodml23__ProductVolumePeriod::DateTime, "prodml23:AbstractDateTimeClass")) { soap_flag_DateTime1--; continue; } @@ -169375,35 +169370,35 @@ SOAP_FMAC3 prodml22__ProductVolumePeriod * SOAP_FMAC4 soap_in_prodml22__ProductV return NULL; } else - { a = (prodml22__ProductVolumePeriod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, sizeof(prodml22__ProductVolumePeriod), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumePeriod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, sizeof(prodml23__ProductVolumePeriod), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumePeriod(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumePeriod(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumePeriod(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumePeriod(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumePeriod *p; - size_t k = sizeof(prodml22__ProductVolumePeriod); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumePeriod *p; + size_t k = sizeof(prodml23__ProductVolumePeriod); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumePeriod); + { p = SOAP_NEW(soap, prodml23__ProductVolumePeriod); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumePeriod, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumePeriod, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumePeriod location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumePeriod location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -169413,100 +169408,100 @@ SOAP_FMAC1 prodml22__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__ProductVolumePeriod::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumePeriod::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumePeriod(soap, tag ? tag : "prodml22:ProductVolumePeriod", -2, this, type)) + if (soap_out_prodml23__ProductVolumePeriod(soap, tag ? tag : "prodml23:ProductVolumePeriod", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumePeriod::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumePeriod::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumePeriod(soap, this, tag, type); + return soap_get_prodml23__ProductVolumePeriod(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumePeriod * SOAP_FMAC4 soap_get_prodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePeriod * SOAP_FMAC4 soap_get_prodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumePeriod(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumePeriod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeParameterValue::soap_default(struct soap *soap) +void prodml23__ProductVolumeParameterValue::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeParameterValue::DTim = NULL; - this->prodml22__ProductVolumeParameterValue::DTimEnd = NULL; - this->prodml22__ProductVolumeParameterValue::Port = NULL; - this->prodml22__ProductVolumeParameterValue::Unit = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap, &this->prodml22__ProductVolumeParameterValue::MeasureDataType); - this->prodml22__ProductVolumeParameterValue::Alert = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeParameterValue::uid); + this->prodml23__ProductVolumeParameterValue::DTim = NULL; + this->prodml23__ProductVolumeParameterValue::DTimEnd = NULL; + this->prodml23__ProductVolumeParameterValue::Port = NULL; + this->prodml23__ProductVolumeParameterValue::Unit = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap, &this->prodml23__ProductVolumeParameterValue::MeasureDataType); + this->prodml23__ProductVolumeParameterValue::Alert = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeParameterValue::uid); } -void prodml22__ProductVolumeParameterValue::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeParameterValue::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductVolumeParameterValue::DTim); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductVolumeParameterValue::DTimEnd); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeParameterValue::Port); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeParameterValue::Unit); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap, &this->prodml22__ProductVolumeParameterValue::MeasureDataType); - soap_serialize_PointerToprodml22__ProductVolumeAlert(soap, &this->prodml22__ProductVolumeParameterValue::Alert); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductVolumeParameterValue::DTim); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductVolumeParameterValue::DTimEnd); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeParameterValue::Port); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeParameterValue::Unit); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap, &this->prodml23__ProductVolumeParameterValue::MeasureDataType); + soap_serialize_PointerToprodml23__ProductVolumeAlert(soap, &this->prodml23__ProductVolumeParameterValue::Alert); #endif } -int prodml22__ProductVolumeParameterValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeParameterValue::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeParameterValue(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeParameterValue(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeParameterValue(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeParameterValue *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeParameterValue(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeParameterValue *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeParameterValue"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeParameterValue*)a)->uid), 1); + type = "prodml23:ProductVolumeParameterValue"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeParameterValue*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeParameterValue), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue), type)) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTim", -1, &a->prodml22__ProductVolumeParameterValue::DTim, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTim", -1, &a->prodml23__ProductVolumeParameterValue::DTim, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", -1, &a->prodml22__ProductVolumeParameterValue::DTimEnd, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", -1, &a->prodml23__ProductVolumeParameterValue::DTimEnd, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Port", -1, &a->prodml22__ProductVolumeParameterValue::Port, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Port", -1, &a->prodml23__ProductVolumeParameterValue::Port, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Unit", -1, &a->prodml22__ProductVolumeParameterValue::Unit, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Unit", -1, &a->prodml23__ProductVolumeParameterValue::Unit, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap, "prodml22:MeasureDataType", -1, &a->prodml22__ProductVolumeParameterValue::MeasureDataType, "prodml22:AbstractMeasureData")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap, "prodml23:MeasureDataType", -1, &a->prodml23__ProductVolumeParameterValue::MeasureDataType, "prodml23:AbstractMeasureData")) return soap->error; - if (soap_out_PointerToprodml22__ProductVolumeAlert(soap, "prodml22:Alert", -1, &a->prodml22__ProductVolumeParameterValue::Alert, "prodml22:ProductVolumeAlert")) + if (soap_out_PointerToprodml23__ProductVolumeAlert(soap, "prodml23:Alert", -1, &a->prodml23__ProductVolumeParameterValue::Alert, "prodml23:ProductVolumeAlert")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeParameterValue::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeParameterValue::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeParameterValue(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeParameterValue(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml22__ProductVolumeParameterValue(struct soap *soap, const char *tag, prodml22__ProductVolumeParameterValue *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml23__ProductVolumeParameterValue(struct soap *soap, const char *tag, prodml23__ProductVolumeParameterValue *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeParameterValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, sizeof(prodml22__ProductVolumeParameterValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeParameterValue*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, sizeof(prodml23__ProductVolumeParameterValue), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeParameterValue *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeParameterValue *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeParameterValue*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeParameterValue*)a)->uid)) return NULL; size_t soap_flag_DTim1 = 1; size_t soap_flag_DTimEnd1 = 1; @@ -169518,35 +169513,35 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DTim1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTim", &a->prodml22__ProductVolumeParameterValue::DTim, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTim", &a->prodml23__ProductVolumeParameterValue::DTim, "eml23:TimeStamp")) { soap_flag_DTim1--; continue; } } if (soap_flag_DTimEnd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", &a->prodml22__ProductVolumeParameterValue::DTimEnd, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", &a->prodml23__ProductVolumeParameterValue::DTimEnd, "eml23:TimeStamp")) { soap_flag_DTimEnd1--; continue; } } if (soap_flag_Port1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Port", &a->prodml22__ProductVolumeParameterValue::Port, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Port", &a->prodml23__ProductVolumeParameterValue::Port, "eml23:String64")) { soap_flag_Port1--; continue; } } if (soap_flag_Unit1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Unit", &a->prodml22__ProductVolumeParameterValue::Unit, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Unit", &a->prodml23__ProductVolumeParameterValue::Unit, "eml23:String64")) { soap_flag_Unit1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap, "prodml22:MeasureDataType", &a->prodml22__ProductVolumeParameterValue::MeasureDataType, "prodml22:AbstractMeasureData")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap, "prodml23:MeasureDataType", &a->prodml23__ProductVolumeParameterValue::MeasureDataType, "prodml23:AbstractMeasureData")) continue; } if (soap_flag_Alert1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProductVolumeAlert(soap, "prodml22:Alert", &a->prodml22__ProductVolumeParameterValue::Alert, "prodml22:ProductVolumeAlert")) + { if (soap_in_PointerToprodml23__ProductVolumeAlert(soap, "prodml23:Alert", &a->prodml23__ProductVolumeParameterValue::Alert, "prodml23:ProductVolumeAlert")) { soap_flag_Alert1--; continue; } @@ -169560,7 +169555,7 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml22__ } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__ProductVolumeParameterValue::MeasureDataType.size() < 1)) + if ((a->prodml23__ProductVolumeParameterValue::MeasureDataType.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -169570,35 +169565,35 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__ProductVolumeParameterValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, sizeof(prodml22__ProductVolumeParameterValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeParameterValue *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, sizeof(prodml23__ProductVolumeParameterValue), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeParameterValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeParameterValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeParameterValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeParameterValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeParameterValue *p; - size_t k = sizeof(prodml22__ProductVolumeParameterValue); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeParameterValue *p; + size_t k = sizeof(prodml23__ProductVolumeParameterValue); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeParameterValue); + { p = SOAP_NEW(soap, prodml23__ProductVolumeParameterValue); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeParameterValue, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeParameterValue, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeParameterValue location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeParameterValue location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -169608,131 +169603,131 @@ SOAP_FMAC1 prodml22__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__ProductVolumeParameterValue::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeParameterValue::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeParameterValue(soap, tag ? tag : "prodml22:ProductVolumeParameterValue", -2, this, type)) + if (soap_out_prodml23__ProductVolumeParameterValue(soap, tag ? tag : "prodml23:ProductVolumeParameterValue", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeParameterValue::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeParameterValue::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeParameterValue(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeParameterValue(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_get_prodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterValue * SOAP_FMAC4 soap_get_prodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeParameterValue(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeParameterValue(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeParameterSet::soap_default(struct soap *soap) +void prodml23__ProductVolumeParameterSet::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__FacilityParameter(soap, &this->prodml22__ProductVolumeParameterSet::Name); - this->prodml22__ProductVolumeParameterSet::ChildFacilityIdentifier = NULL; - this->prodml22__ProductVolumeParameterSet::Port = NULL; - this->prodml22__ProductVolumeParameterSet::MeasureClass = NULL; - this->prodml22__ProductVolumeParameterSet::CoordinateReferenceSystem = NULL; - this->prodml22__ProductVolumeParameterSet::Qualifier = NULL; - this->prodml22__ProductVolumeParameterSet::SubQualifier = NULL; - this->prodml22__ProductVolumeParameterSet::Version = NULL; - this->prodml22__ProductVolumeParameterSet::VersionSource = NULL; - this->prodml22__ProductVolumeParameterSet::Product = NULL; - this->prodml22__ProductVolumeParameterSet::PeriodKind = NULL; - this->prodml22__ProductVolumeParameterSet::Comment = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap, &this->prodml22__ProductVolumeParameterSet::Parameter); - soap_default_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap, &this->prodml22__ProductVolumeParameterSet::CurveDefinition); - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeParameterSet::uid); + soap_default_prodml23__FacilityParameter(soap, &this->prodml23__ProductVolumeParameterSet::Name); + this->prodml23__ProductVolumeParameterSet::ChildFacilityIdentifier = NULL; + this->prodml23__ProductVolumeParameterSet::Port = NULL; + this->prodml23__ProductVolumeParameterSet::MeasureClass = NULL; + this->prodml23__ProductVolumeParameterSet::CoordinateReferenceSystem = NULL; + this->prodml23__ProductVolumeParameterSet::Qualifier = NULL; + this->prodml23__ProductVolumeParameterSet::SubQualifier = NULL; + this->prodml23__ProductVolumeParameterSet::Version = NULL; + this->prodml23__ProductVolumeParameterSet::VersionSource = NULL; + this->prodml23__ProductVolumeParameterSet::Product = NULL; + this->prodml23__ProductVolumeParameterSet::PeriodKind = NULL; + this->prodml23__ProductVolumeParameterSet::Comment = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap, &this->prodml23__ProductVolumeParameterSet::Parameter); + soap_default_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap, &this->prodml23__ProductVolumeParameterSet::CurveDefinition); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeParameterSet::uid); } -void prodml22__ProductVolumeParameterSet::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeParameterSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ProdmlRelativeIdentifier(soap, &this->prodml22__ProductVolumeParameterSet::ChildFacilityIdentifier); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeParameterSet::Port); - soap_serialize_PointerToeml23__MeasureClass(soap, &this->prodml22__ProductVolumeParameterSet::MeasureClass); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeParameterSet::CoordinateReferenceSystem); - soap_serialize_PointerToprodml22__FlowQualifier(soap, &this->prodml22__ProductVolumeParameterSet::Qualifier); - soap_serialize_PointerToprodml22__FlowSubQualifier(soap, &this->prodml22__ProductVolumeParameterSet::SubQualifier); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductVolumeParameterSet::Version); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeParameterSet::VersionSource); - soap_serialize_PointerToprodml22__ReportingProduct(soap, &this->prodml22__ProductVolumeParameterSet::Product); - soap_serialize_PointerToprodml22__ReportingDurationKind(soap, &this->prodml22__ProductVolumeParameterSet::PeriodKind); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductVolumeParameterSet::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap, &this->prodml22__ProductVolumeParameterSet::Parameter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap, &this->prodml22__ProductVolumeParameterSet::CurveDefinition); + soap_serialize_PointerToprodml23__ProdmlRelativeIdentifier(soap, &this->prodml23__ProductVolumeParameterSet::ChildFacilityIdentifier); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeParameterSet::Port); + soap_serialize_PointerToeml23__MeasureClass(soap, &this->prodml23__ProductVolumeParameterSet::MeasureClass); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeParameterSet::CoordinateReferenceSystem); + soap_serialize_PointerToprodml23__FlowQualifier(soap, &this->prodml23__ProductVolumeParameterSet::Qualifier); + soap_serialize_PointerToprodml23__FlowSubQualifier(soap, &this->prodml23__ProductVolumeParameterSet::SubQualifier); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductVolumeParameterSet::Version); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeParameterSet::VersionSource); + soap_serialize_PointerToprodml23__ReportingProduct(soap, &this->prodml23__ProductVolumeParameterSet::Product); + soap_serialize_PointerToprodml23__ReportingDurationKind(soap, &this->prodml23__ProductVolumeParameterSet::PeriodKind); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductVolumeParameterSet::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap, &this->prodml23__ProductVolumeParameterSet::Parameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap, &this->prodml23__ProductVolumeParameterSet::CurveDefinition); #endif } -int prodml22__ProductVolumeParameterSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeParameterSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeParameterSet(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeParameterSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeParameterSet(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeParameterSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeParameterSet(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeParameterSet *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeParameterSet"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeParameterSet*)a)->uid), 1); + type = "prodml23:ProductVolumeParameterSet"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeParameterSet*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeParameterSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet), type)) return soap->error; - if (soap_out_prodml22__FacilityParameter(soap, "prodml22:Name", -1, &a->prodml22__ProductVolumeParameterSet::Name, "prodml22:FacilityParameter")) + if (soap_out_prodml23__FacilityParameter(soap, "prodml23:Name", -1, &a->prodml23__ProductVolumeParameterSet::Name, "prodml23:FacilityParameter")) return soap->error; - if (soap_out_PointerToprodml22__ProdmlRelativeIdentifier(soap, "prodml22:ChildFacilityIdentifier", -1, &a->prodml22__ProductVolumeParameterSet::ChildFacilityIdentifier, "prodml22:ProdmlRelativeIdentifier")) + if (soap_out_PointerToprodml23__ProdmlRelativeIdentifier(soap, "prodml23:ChildFacilityIdentifier", -1, &a->prodml23__ProductVolumeParameterSet::ChildFacilityIdentifier, "prodml23:ProdmlRelativeIdentifier")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Port", -1, &a->prodml22__ProductVolumeParameterSet::Port, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Port", -1, &a->prodml23__ProductVolumeParameterSet::Port, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__MeasureClass(soap, "prodml22:MeasureClass", -1, &a->prodml22__ProductVolumeParameterSet::MeasureClass, "eml23:MeasureClass")) + if (soap_out_PointerToeml23__MeasureClass(soap, "prodml23:MeasureClass", -1, &a->prodml23__ProductVolumeParameterSet::MeasureClass, "eml23:MeasureClass")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:CoordinateReferenceSystem", -1, &a->prodml22__ProductVolumeParameterSet::CoordinateReferenceSystem, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:CoordinateReferenceSystem", -1, &a->prodml23__ProductVolumeParameterSet::CoordinateReferenceSystem, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__FlowQualifier(soap, "prodml22:Qualifier", -1, &a->prodml22__ProductVolumeParameterSet::Qualifier, "prodml22:FlowQualifier")) + if (soap_out_PointerToprodml23__FlowQualifier(soap, "prodml23:Qualifier", -1, &a->prodml23__ProductVolumeParameterSet::Qualifier, "prodml23:FlowQualifier")) return soap->error; - if (soap_out_PointerToprodml22__FlowSubQualifier(soap, "prodml22:SubQualifier", -1, &a->prodml22__ProductVolumeParameterSet::SubQualifier, "prodml22:FlowSubQualifier")) + if (soap_out_PointerToprodml23__FlowSubQualifier(soap, "prodml23:SubQualifier", -1, &a->prodml23__ProductVolumeParameterSet::SubQualifier, "prodml23:FlowSubQualifier")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:Version", -1, &a->prodml22__ProductVolumeParameterSet::Version, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:Version", -1, &a->prodml23__ProductVolumeParameterSet::Version, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:VersionSource", -1, &a->prodml22__ProductVolumeParameterSet::VersionSource, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:VersionSource", -1, &a->prodml23__ProductVolumeParameterSet::VersionSource, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__ReportingProduct(soap, "prodml22:Product", -1, &a->prodml22__ProductVolumeParameterSet::Product, "prodml22:ReportingProduct")) + if (soap_out_PointerToprodml23__ReportingProduct(soap, "prodml23:Product", -1, &a->prodml23__ProductVolumeParameterSet::Product, "prodml23:ReportingProduct")) return soap->error; - if (soap_out_PointerToprodml22__ReportingDurationKind(soap, "prodml22:PeriodKind", -1, &a->prodml22__ProductVolumeParameterSet::PeriodKind, "prodml22:ReportingDurationKind")) + if (soap_out_PointerToprodml23__ReportingDurationKind(soap, "prodml23:PeriodKind", -1, &a->prodml23__ProductVolumeParameterSet::PeriodKind, "prodml23:ReportingDurationKind")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductVolumeParameterSet::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductVolumeParameterSet::Comment, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap, "prodml22:Parameter", -1, &a->prodml22__ProductVolumeParameterSet::Parameter, "prodml22:ProductVolumeParameterValue")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap, "prodml23:Parameter", -1, &a->prodml23__ProductVolumeParameterSet::Parameter, "prodml23:ProductVolumeParameterValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap, "prodml22:CurveDefinition", -1, &a->prodml22__ProductVolumeParameterSet::CurveDefinition, "prodml22:CurveDefinition")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap, "prodml23:CurveDefinition", -1, &a->prodml23__ProductVolumeParameterSet::CurveDefinition, "prodml23:CurveDefinition")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeParameterSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeParameterSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeParameterSet(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeParameterSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml22__ProductVolumeParameterSet(struct soap *soap, const char *tag, prodml22__ProductVolumeParameterSet *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml23__ProductVolumeParameterSet(struct soap *soap, const char *tag, prodml23__ProductVolumeParameterSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeParameterSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, sizeof(prodml22__ProductVolumeParameterSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeParameterSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, sizeof(prodml23__ProductVolumeParameterSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeParameterSet *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeParameterSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeParameterSet*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeParameterSet*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_ChildFacilityIdentifier1 = 1; @@ -169751,83 +169746,83 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml22__Pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__FacilityParameter(soap, "prodml22:Name", &a->prodml22__ProductVolumeParameterSet::Name, "prodml22:FacilityParameter")) + { if (soap_in_prodml23__FacilityParameter(soap, "prodml23:Name", &a->prodml23__ProductVolumeParameterSet::Name, "prodml23:FacilityParameter")) { soap_flag_Name1--; continue; } } if (soap_flag_ChildFacilityIdentifier1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__ProdmlRelativeIdentifier(soap, "prodml22:ChildFacilityIdentifier", &a->prodml22__ProductVolumeParameterSet::ChildFacilityIdentifier, "prodml22:ProdmlRelativeIdentifier")) + { if (soap_in_PointerToprodml23__ProdmlRelativeIdentifier(soap, "prodml23:ChildFacilityIdentifier", &a->prodml23__ProductVolumeParameterSet::ChildFacilityIdentifier, "prodml23:ProdmlRelativeIdentifier")) { soap_flag_ChildFacilityIdentifier1--; continue; } } if (soap_flag_Port1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Port", &a->prodml22__ProductVolumeParameterSet::Port, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Port", &a->prodml23__ProductVolumeParameterSet::Port, "eml23:String64")) { soap_flag_Port1--; continue; } } if (soap_flag_MeasureClass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasureClass(soap, "prodml22:MeasureClass", &a->prodml22__ProductVolumeParameterSet::MeasureClass, "eml23:MeasureClass")) + { if (soap_in_PointerToeml23__MeasureClass(soap, "prodml23:MeasureClass", &a->prodml23__ProductVolumeParameterSet::MeasureClass, "eml23:MeasureClass")) { soap_flag_MeasureClass1--; continue; } } if (soap_flag_CoordinateReferenceSystem1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:CoordinateReferenceSystem", &a->prodml22__ProductVolumeParameterSet::CoordinateReferenceSystem, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:CoordinateReferenceSystem", &a->prodml23__ProductVolumeParameterSet::CoordinateReferenceSystem, "eml23:String64")) { soap_flag_CoordinateReferenceSystem1--; continue; } } if (soap_flag_Qualifier1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowQualifier(soap, "prodml22:Qualifier", &a->prodml22__ProductVolumeParameterSet::Qualifier, "prodml22:FlowQualifier")) + { if (soap_in_PointerToprodml23__FlowQualifier(soap, "prodml23:Qualifier", &a->prodml23__ProductVolumeParameterSet::Qualifier, "prodml23:FlowQualifier")) { soap_flag_Qualifier1--; continue; } } if (soap_flag_SubQualifier1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowSubQualifier(soap, "prodml22:SubQualifier", &a->prodml22__ProductVolumeParameterSet::SubQualifier, "prodml22:FlowSubQualifier")) + { if (soap_in_PointerToprodml23__FlowSubQualifier(soap, "prodml23:SubQualifier", &a->prodml23__ProductVolumeParameterSet::SubQualifier, "prodml23:FlowSubQualifier")) { soap_flag_SubQualifier1--; continue; } } if (soap_flag_Version1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:Version", &a->prodml22__ProductVolumeParameterSet::Version, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:Version", &a->prodml23__ProductVolumeParameterSet::Version, "eml23:TimeStamp")) { soap_flag_Version1--; continue; } } if (soap_flag_VersionSource1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:VersionSource", &a->prodml22__ProductVolumeParameterSet::VersionSource, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:VersionSource", &a->prodml23__ProductVolumeParameterSet::VersionSource, "eml23:String64")) { soap_flag_VersionSource1--; continue; } } if (soap_flag_Product1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingProduct(soap, "prodml22:Product", &a->prodml22__ProductVolumeParameterSet::Product, "prodml22:ReportingProduct")) + { if (soap_in_PointerToprodml23__ReportingProduct(soap, "prodml23:Product", &a->prodml23__ProductVolumeParameterSet::Product, "prodml23:ReportingProduct")) { soap_flag_Product1--; continue; } } if (soap_flag_PeriodKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingDurationKind(soap, "prodml22:PeriodKind", &a->prodml22__ProductVolumeParameterSet::PeriodKind, "prodml22:ReportingDurationKind")) + { if (soap_in_PointerToprodml23__ReportingDurationKind(soap, "prodml23:PeriodKind", &a->prodml23__ProductVolumeParameterSet::PeriodKind, "prodml23:ReportingDurationKind")) { soap_flag_PeriodKind1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductVolumeParameterSet::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductVolumeParameterSet::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap, "prodml22:Parameter", &a->prodml22__ProductVolumeParameterSet::Parameter, "prodml22:ProductVolumeParameterValue")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap, "prodml23:Parameter", &a->prodml23__ProductVolumeParameterSet::Parameter, "prodml23:ProductVolumeParameterValue")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap, "prodml22:CurveDefinition", &a->prodml22__ProductVolumeParameterSet::CurveDefinition, "prodml22:CurveDefinition")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap, "prodml23:CurveDefinition", &a->prodml23__ProductVolumeParameterSet::CurveDefinition, "prodml23:CurveDefinition")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -169839,7 +169834,7 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml22__Pr } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Name1 > 0 || a->prodml22__ProductVolumeParameterSet::Parameter.size() < 1)) + if ((soap_flag_Name1 > 0 || a->prodml23__ProductVolumeParameterSet::Parameter.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -169849,35 +169844,35 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml22__Pr return NULL; } else - { a = (prodml22__ProductVolumeParameterSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, sizeof(prodml22__ProductVolumeParameterSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeParameterSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, sizeof(prodml23__ProductVolumeParameterSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeParameterSet *p; - size_t k = sizeof(prodml22__ProductVolumeParameterSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeParameterSet *p; + size_t k = sizeof(prodml23__ProductVolumeParameterSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeParameterSet); + { p = SOAP_NEW(soap, prodml23__ProductVolumeParameterSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeParameterSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeParameterSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeParameterSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeParameterSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -169887,131 +169882,131 @@ SOAP_FMAC1 prodml22__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__ProductVolumeParameterSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeParameterSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeParameterSet(soap, tag ? tag : "prodml22:ProductVolumeParameterSet", -2, this, type)) + if (soap_out_prodml23__ProductVolumeParameterSet(soap, tag ? tag : "prodml23:ProductVolumeParameterSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeParameterSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeParameterSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeParameterSet(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeParameterSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_get_prodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterSet * SOAP_FMAC4 soap_get_prodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeParameterSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeParameterSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeFlow::soap_default(struct soap *soap) +void prodml23__ProductVolumeFlow::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeFlow::Name = NULL; - soap_default_prodml22__ReportingFlow(soap, &this->prodml22__ProductVolumeFlow::Kind); - this->prodml22__ProductVolumeFlow::Port = NULL; - this->prodml22__ProductVolumeFlow::Direction = NULL; - this->prodml22__ProductVolumeFlow::Facility = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductVolumeFlow::FacilityAlias); - this->prodml22__ProductVolumeFlow::Qualifier = NULL; - this->prodml22__ProductVolumeFlow::SubQualifier = NULL; - this->prodml22__ProductVolumeFlow::Version = NULL; - this->prodml22__ProductVolumeFlow::VersionSource = NULL; - this->prodml22__ProductVolumeFlow::SourceFlow = NULL; - this->prodml22__ProductVolumeFlow::RelatedFacility = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap, &this->prodml22__ProductVolumeFlow::Product); - this->prodml22__ProductVolumeFlow::Properties = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeFlow::uid); + this->prodml23__ProductVolumeFlow::Name = NULL; + soap_default_prodml23__ReportingFlow(soap, &this->prodml23__ProductVolumeFlow::Kind); + this->prodml23__ProductVolumeFlow::Port = NULL; + this->prodml23__ProductVolumeFlow::Direction = NULL; + this->prodml23__ProductVolumeFlow::Facility = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductVolumeFlow::FacilityAlias); + this->prodml23__ProductVolumeFlow::Qualifier = NULL; + this->prodml23__ProductVolumeFlow::SubQualifier = NULL; + this->prodml23__ProductVolumeFlow::Version = NULL; + this->prodml23__ProductVolumeFlow::VersionSource = NULL; + this->prodml23__ProductVolumeFlow::SourceFlow = NULL; + this->prodml23__ProductVolumeFlow::RelatedFacility = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap, &this->prodml23__ProductVolumeFlow::Product); + this->prodml23__ProductVolumeFlow::Properties = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeFlow::uid); } -void prodml22__ProductVolumeFlow::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeFlow::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeFlow::Name); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeFlow::Port); - soap_serialize_PointerToprodml22__ProductFlowPortType(soap, &this->prodml22__ProductVolumeFlow::Direction); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolumeFlow::Facility); - soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductVolumeFlow::FacilityAlias); - soap_serialize_PointerToprodml22__FlowQualifier(soap, &this->prodml22__ProductVolumeFlow::Qualifier); - soap_serialize_PointerToprodml22__FlowSubQualifier(soap, &this->prodml22__ProductVolumeFlow::SubQualifier); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductVolumeFlow::Version); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeFlow::VersionSource); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeFlow::SourceFlow); - soap_serialize_PointerToprodml22__ProductVolumeRelatedFacility(soap, &this->prodml22__ProductVolumeFlow::RelatedFacility); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap, &this->prodml22__ProductVolumeFlow::Product); - soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(soap, &this->prodml22__ProductVolumeFlow::Properties); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeFlow::Name); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeFlow::Port); + soap_serialize_PointerToprodml23__ProductFlowPortType(soap, &this->prodml23__ProductVolumeFlow::Direction); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolumeFlow::Facility); + soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductVolumeFlow::FacilityAlias); + soap_serialize_PointerToprodml23__FlowQualifier(soap, &this->prodml23__ProductVolumeFlow::Qualifier); + soap_serialize_PointerToprodml23__FlowSubQualifier(soap, &this->prodml23__ProductVolumeFlow::SubQualifier); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductVolumeFlow::Version); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeFlow::VersionSource); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeFlow::SourceFlow); + soap_serialize_PointerToprodml23__ProductVolumeRelatedFacility(soap, &this->prodml23__ProductVolumeFlow::RelatedFacility); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap, &this->prodml23__ProductVolumeFlow::Product); + soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(soap, &this->prodml23__ProductVolumeFlow::Properties); #endif } -int prodml22__ProductVolumeFlow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeFlow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeFlow(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeFlow(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeFlow(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeFlow *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeFlow(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeFlow *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeFlow"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeFlow*)a)->uid), 1); + type = "prodml23:ProductVolumeFlow"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeFlow*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeFlow), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductVolumeFlow::Name, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductVolumeFlow::Name, "eml23:String64")) return soap->error; - if (soap_out_prodml22__ReportingFlow(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeFlow::Kind, "prodml22:ReportingFlow")) + if (soap_out_prodml23__ReportingFlow(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeFlow::Kind, "prodml23:ReportingFlow")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Port", -1, &a->prodml22__ProductVolumeFlow::Port, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Port", -1, &a->prodml23__ProductVolumeFlow::Port, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__ProductFlowPortType(soap, "prodml22:Direction", -1, &a->prodml22__ProductVolumeFlow::Direction, "prodml22:ProductFlowPortType")) + if (soap_out_PointerToprodml23__ProductFlowPortType(soap, "prodml23:Direction", -1, &a->prodml23__ProductVolumeFlow::Direction, "prodml23:ProductFlowPortType")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Facility", -1, &a->prodml22__ProductVolumeFlow::Facility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Facility", -1, &a->prodml23__ProductVolumeFlow::Facility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", -1, &a->prodml22__ProductVolumeFlow::FacilityAlias, "eml23:NameStruct")) + if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", -1, &a->prodml23__ProductVolumeFlow::FacilityAlias, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToprodml22__FlowQualifier(soap, "prodml22:Qualifier", -1, &a->prodml22__ProductVolumeFlow::Qualifier, "prodml22:FlowQualifier")) + if (soap_out_PointerToprodml23__FlowQualifier(soap, "prodml23:Qualifier", -1, &a->prodml23__ProductVolumeFlow::Qualifier, "prodml23:FlowQualifier")) return soap->error; - if (soap_out_PointerToprodml22__FlowSubQualifier(soap, "prodml22:SubQualifier", -1, &a->prodml22__ProductVolumeFlow::SubQualifier, "prodml22:FlowSubQualifier")) + if (soap_out_PointerToprodml23__FlowSubQualifier(soap, "prodml23:SubQualifier", -1, &a->prodml23__ProductVolumeFlow::SubQualifier, "prodml23:FlowSubQualifier")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:Version", -1, &a->prodml22__ProductVolumeFlow::Version, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:Version", -1, &a->prodml23__ProductVolumeFlow::Version, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:VersionSource", -1, &a->prodml22__ProductVolumeFlow::VersionSource, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:VersionSource", -1, &a->prodml23__ProductVolumeFlow::VersionSource, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceFlow", -1, &a->prodml22__ProductVolumeFlow::SourceFlow, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceFlow", -1, &a->prodml23__ProductVolumeFlow::SourceFlow, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__ProductVolumeRelatedFacility(soap, "prodml22:RelatedFacility", -1, &a->prodml22__ProductVolumeFlow::RelatedFacility, "prodml22:ProductVolumeRelatedFacility")) + if (soap_out_PointerToprodml23__ProductVolumeRelatedFacility(soap, "prodml23:RelatedFacility", -1, &a->prodml23__ProductVolumeFlow::RelatedFacility, "prodml23:ProductVolumeRelatedFacility")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap, "prodml22:Product", -1, &a->prodml22__ProductVolumeFlow::Product, "prodml22:ProductVolumeProduct")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap, "prodml23:Product", -1, &a->prodml23__ProductVolumeFlow::Product, "prodml23:ProductVolumeProduct")) return soap->error; - if (soap_out_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", -1, &a->prodml22__ProductVolumeFlow::Properties, "prodml22:CommonPropertiesProductVolume")) + if (soap_out_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", -1, &a->prodml23__ProductVolumeFlow::Properties, "prodml23:CommonPropertiesProductVolume")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeFlow::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeFlow::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeFlow(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeFlow(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeFlow * SOAP_FMAC4 soap_in_prodml22__ProductVolumeFlow(struct soap *soap, const char *tag, prodml22__ProductVolumeFlow *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFlow * SOAP_FMAC4 soap_in_prodml23__ProductVolumeFlow(struct soap *soap, const char *tag, prodml23__ProductVolumeFlow *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, sizeof(prodml22__ProductVolumeFlow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, sizeof(prodml23__ProductVolumeFlow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeFlow *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeFlow *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeFlow*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeFlow*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_Kind1 = 1; @@ -170030,81 +170025,81 @@ SOAP_FMAC3 prodml22__ProductVolumeFlow * SOAP_FMAC4 soap_in_prodml22__ProductVol for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Name", &a->prodml22__ProductVolumeFlow::Name, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Name", &a->prodml23__ProductVolumeFlow::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ReportingFlow(soap, "prodml22:Kind", &a->prodml22__ProductVolumeFlow::Kind, "prodml22:ReportingFlow")) + { if (soap_in_prodml23__ReportingFlow(soap, "prodml23:Kind", &a->prodml23__ProductVolumeFlow::Kind, "prodml23:ReportingFlow")) { soap_flag_Kind1--; continue; } } if (soap_flag_Port1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Port", &a->prodml22__ProductVolumeFlow::Port, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Port", &a->prodml23__ProductVolumeFlow::Port, "eml23:String64")) { soap_flag_Port1--; continue; } } if (soap_flag_Direction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProductFlowPortType(soap, "prodml22:Direction", &a->prodml22__ProductVolumeFlow::Direction, "prodml22:ProductFlowPortType")) + { if (soap_in_PointerToprodml23__ProductFlowPortType(soap, "prodml23:Direction", &a->prodml23__ProductVolumeFlow::Direction, "prodml23:ProductFlowPortType")) { soap_flag_Direction1--; continue; } } if (soap_flag_Facility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Facility", &a->prodml22__ProductVolumeFlow::Facility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Facility", &a->prodml23__ProductVolumeFlow::Facility, "prodml23:FacilityIdentifierStruct")) { soap_flag_Facility1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", &a->prodml22__ProductVolumeFlow::FacilityAlias, "eml23:NameStruct")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", &a->prodml23__ProductVolumeFlow::FacilityAlias, "eml23:NameStruct")) continue; } if (soap_flag_Qualifier1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowQualifier(soap, "prodml22:Qualifier", &a->prodml22__ProductVolumeFlow::Qualifier, "prodml22:FlowQualifier")) + { if (soap_in_PointerToprodml23__FlowQualifier(soap, "prodml23:Qualifier", &a->prodml23__ProductVolumeFlow::Qualifier, "prodml23:FlowQualifier")) { soap_flag_Qualifier1--; continue; } } if (soap_flag_SubQualifier1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowSubQualifier(soap, "prodml22:SubQualifier", &a->prodml22__ProductVolumeFlow::SubQualifier, "prodml22:FlowSubQualifier")) + { if (soap_in_PointerToprodml23__FlowSubQualifier(soap, "prodml23:SubQualifier", &a->prodml23__ProductVolumeFlow::SubQualifier, "prodml23:FlowSubQualifier")) { soap_flag_SubQualifier1--; continue; } } if (soap_flag_Version1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:Version", &a->prodml22__ProductVolumeFlow::Version, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:Version", &a->prodml23__ProductVolumeFlow::Version, "eml23:TimeStamp")) { soap_flag_Version1--; continue; } } if (soap_flag_VersionSource1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:VersionSource", &a->prodml22__ProductVolumeFlow::VersionSource, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:VersionSource", &a->prodml23__ProductVolumeFlow::VersionSource, "eml23:String64")) { soap_flag_VersionSource1--; continue; } } if (soap_flag_SourceFlow1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceFlow", &a->prodml22__ProductVolumeFlow::SourceFlow, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceFlow", &a->prodml23__ProductVolumeFlow::SourceFlow, "eml23:String64")) { soap_flag_SourceFlow1--; continue; } } if (soap_flag_RelatedFacility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProductVolumeRelatedFacility(soap, "prodml22:RelatedFacility", &a->prodml22__ProductVolumeFlow::RelatedFacility, "prodml22:ProductVolumeRelatedFacility")) + { if (soap_in_PointerToprodml23__ProductVolumeRelatedFacility(soap, "prodml23:RelatedFacility", &a->prodml23__ProductVolumeFlow::RelatedFacility, "prodml23:ProductVolumeRelatedFacility")) { soap_flag_RelatedFacility1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap, "prodml22:Product", &a->prodml22__ProductVolumeFlow::Product, "prodml22:ProductVolumeProduct")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap, "prodml23:Product", &a->prodml23__ProductVolumeFlow::Product, "prodml23:ProductVolumeProduct")) continue; } if (soap_flag_Properties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", &a->prodml22__ProductVolumeFlow::Properties, "prodml22:CommonPropertiesProductVolume")) + { if (soap_in_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", &a->prodml23__ProductVolumeFlow::Properties, "prodml23:CommonPropertiesProductVolume")) { soap_flag_Properties1--; continue; } @@ -170128,35 +170123,35 @@ SOAP_FMAC3 prodml22__ProductVolumeFlow * SOAP_FMAC4 soap_in_prodml22__ProductVol return NULL; } else - { a = (prodml22__ProductVolumeFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, sizeof(prodml22__ProductVolumeFlow), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, sizeof(prodml23__ProductVolumeFlow), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeFlow *p; - size_t k = sizeof(prodml22__ProductVolumeFlow); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeFlow *p; + size_t k = sizeof(prodml23__ProductVolumeFlow); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeFlow); + { p = SOAP_NEW(soap, prodml23__ProductVolumeFlow); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeFlow, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeFlow, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeFlow location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeFlow location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -170166,148 +170161,148 @@ SOAP_FMAC1 prodml22__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml22__P return p; } -int prodml22__ProductVolumeFlow::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeFlow::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeFlow(soap, tag ? tag : "prodml22:ProductVolumeFlow", -2, this, type)) + if (soap_out_prodml23__ProductVolumeFlow(soap, tag ? tag : "prodml23:ProductVolumeFlow", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeFlow::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeFlow::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeFlow(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeFlow(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeFlow * SOAP_FMAC4 soap_get_prodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFlow * SOAP_FMAC4 soap_get_prodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeFlow(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeFlow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeFacility::soap_default(struct soap *soap) +void prodml23__ProductVolumeFacility::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeFacility::FacilityParent = NULL; - this->prodml22__ProductVolumeFacility::FacilityParent2 = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductVolumeFacility::FacilityAlias); - this->prodml22__ProductVolumeFacility::Unit = NULL; - this->prodml22__ProductVolumeFacility::NetWork = NULL; - this->prodml22__ProductVolumeFacility::Name = NULL; - this->prodml22__ProductVolumeFacility::StatusWell = NULL; - this->prodml22__ProductVolumeFacility::FluidWell = NULL; - this->prodml22__ProductVolumeFacility::OperatingMethod = NULL; - this->prodml22__ProductVolumeFacility::WellProducing = NULL; - this->prodml22__ProductVolumeFacility::WellInjecting = NULL; - this->prodml22__ProductVolumeFacility::Capacity = NULL; - this->prodml22__ProductVolumeFacility::OperationTime = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap, &this->prodml22__ProductVolumeFacility::Flow); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap, &this->prodml22__ProductVolumeFacility::ParameterSet); - soap_default_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, &this->prodml22__ProductVolumeFacility::Comment); - soap_default_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, &this->prodml22__ProductVolumeFacility::DowntimeReason); - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeFacility::uid); + this->prodml23__ProductVolumeFacility::FacilityParent = NULL; + this->prodml23__ProductVolumeFacility::FacilityParent2 = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductVolumeFacility::FacilityAlias); + this->prodml23__ProductVolumeFacility::Unit = NULL; + this->prodml23__ProductVolumeFacility::NetWork = NULL; + this->prodml23__ProductVolumeFacility::Name = NULL; + this->prodml23__ProductVolumeFacility::StatusWell = NULL; + this->prodml23__ProductVolumeFacility::FluidWell = NULL; + this->prodml23__ProductVolumeFacility::OperatingMethod = NULL; + this->prodml23__ProductVolumeFacility::WellProducing = NULL; + this->prodml23__ProductVolumeFacility::WellInjecting = NULL; + this->prodml23__ProductVolumeFacility::Capacity = NULL; + this->prodml23__ProductVolumeFacility::OperationTime = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap, &this->prodml23__ProductVolumeFacility::Flow); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap, &this->prodml23__ProductVolumeFacility::ParameterSet); + soap_default_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, &this->prodml23__ProductVolumeFacility::Comment); + soap_default_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, &this->prodml23__ProductVolumeFacility::DowntimeReason); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeFacility::uid); } -void prodml22__ProductVolumeFacility::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeFacility::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolumeFacility::FacilityParent); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolumeFacility::FacilityParent2); - soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml22__ProductVolumeFacility::FacilityAlias); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeFacility::Unit); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeFacility::NetWork); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolumeFacility::Name); - soap_serialize_PointerToeml23__WellStatus(soap, &this->prodml22__ProductVolumeFacility::StatusWell); - soap_serialize_PointerToprodml22__WellFluid(soap, &this->prodml22__ProductVolumeFacility::FluidWell); - soap_serialize_PointerToprodml22__WellOperationMethod(soap, &this->prodml22__ProductVolumeFacility::OperatingMethod); - soap_serialize_PointerTobool(soap, &this->prodml22__ProductVolumeFacility::WellProducing); - soap_serialize_PointerTobool(soap, &this->prodml22__ProductVolumeFacility::WellInjecting); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__ProductVolumeFacility::Capacity); - soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml22__ProductVolumeFacility::OperationTime); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap, &this->prodml22__ProductVolumeFacility::Flow); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap, &this->prodml22__ProductVolumeFacility::ParameterSet); - soap_serialize_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, &this->prodml22__ProductVolumeFacility::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, &this->prodml22__ProductVolumeFacility::DowntimeReason); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolumeFacility::FacilityParent); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolumeFacility::FacilityParent2); + soap_serialize_std__vectorTemplateOfPointerToeml23__NameStruct(soap, &this->prodml23__ProductVolumeFacility::FacilityAlias); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeFacility::Unit); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeFacility::NetWork); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolumeFacility::Name); + soap_serialize_PointerToeml23__WellStatus(soap, &this->prodml23__ProductVolumeFacility::StatusWell); + soap_serialize_PointerToprodml23__WellFluid(soap, &this->prodml23__ProductVolumeFacility::FluidWell); + soap_serialize_PointerToprodml23__WellOperationMethod(soap, &this->prodml23__ProductVolumeFacility::OperatingMethod); + soap_serialize_PointerTobool(soap, &this->prodml23__ProductVolumeFacility::WellProducing); + soap_serialize_PointerTobool(soap, &this->prodml23__ProductVolumeFacility::WellInjecting); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__ProductVolumeFacility::Capacity); + soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml23__ProductVolumeFacility::OperationTime); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap, &this->prodml23__ProductVolumeFacility::Flow); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap, &this->prodml23__ProductVolumeFacility::ParameterSet); + soap_serialize_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, &this->prodml23__ProductVolumeFacility::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, &this->prodml23__ProductVolumeFacility::DowntimeReason); #endif } -int prodml22__ProductVolumeFacility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeFacility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeFacility(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeFacility(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeFacility(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeFacility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeFacility(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeFacility *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeFacility"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeFacility*)a)->uid), 1); + type = "prodml23:ProductVolumeFacility"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeFacility*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeFacility), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility), type)) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent", -1, &a->prodml22__ProductVolumeFacility::FacilityParent, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent", -1, &a->prodml23__ProductVolumeFacility::FacilityParent, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent2", -1, &a->prodml22__ProductVolumeFacility::FacilityParent2, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent2", -1, &a->prodml23__ProductVolumeFacility::FacilityParent2, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", -1, &a->prodml22__ProductVolumeFacility::FacilityAlias, "eml23:NameStruct")) + if (soap_out_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", -1, &a->prodml23__ProductVolumeFacility::FacilityAlias, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Unit", -1, &a->prodml22__ProductVolumeFacility::Unit, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Unit", -1, &a->prodml23__ProductVolumeFacility::Unit, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:NetWork", -1, &a->prodml22__ProductVolumeFacility::NetWork, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:NetWork", -1, &a->prodml23__ProductVolumeFacility::NetWork, "eml23:String64")) return soap->error; - if (!a->prodml22__ProductVolumeFacility::Name) - { if (soap_element_empty(soap, "prodml22:Name", 0, NULL)) + if (!a->prodml23__ProductVolumeFacility::Name) + { if (soap_element_empty(soap, "prodml23:Name", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Name", -1, &a->prodml22__ProductVolumeFacility::Name, "prodml22:FacilityIdentifierStruct")) + else if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Name", -1, &a->prodml23__ProductVolumeFacility::Name, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToeml23__WellStatus(soap, "prodml22:StatusWell", -1, &a->prodml22__ProductVolumeFacility::StatusWell, "eml23:WellStatus")) + if (soap_out_PointerToeml23__WellStatus(soap, "prodml23:StatusWell", -1, &a->prodml23__ProductVolumeFacility::StatusWell, "eml23:WellStatus")) return soap->error; - if (soap_out_PointerToprodml22__WellFluid(soap, "prodml22:FluidWell", -1, &a->prodml22__ProductVolumeFacility::FluidWell, "prodml22:WellFluid")) + if (soap_out_PointerToprodml23__WellFluid(soap, "prodml23:FluidWell", -1, &a->prodml23__ProductVolumeFacility::FluidWell, "prodml23:WellFluid")) return soap->error; - if (soap_out_PointerToprodml22__WellOperationMethod(soap, "prodml22:OperatingMethod", -1, &a->prodml22__ProductVolumeFacility::OperatingMethod, "prodml22:WellOperationMethod")) + if (soap_out_PointerToprodml23__WellOperationMethod(soap, "prodml23:OperatingMethod", -1, &a->prodml23__ProductVolumeFacility::OperatingMethod, "prodml23:WellOperationMethod")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:WellProducing", -1, &a->prodml22__ProductVolumeFacility::WellProducing, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:WellProducing", -1, &a->prodml23__ProductVolumeFacility::WellProducing, "xsd:boolean")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:WellInjecting", -1, &a->prodml22__ProductVolumeFacility::WellInjecting, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:WellInjecting", -1, &a->prodml23__ProductVolumeFacility::WellInjecting, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:Capacity", -1, &a->prodml22__ProductVolumeFacility::Capacity, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:Capacity", -1, &a->prodml23__ProductVolumeFacility::Capacity, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml22:OperationTime", -1, &a->prodml22__ProductVolumeFacility::OperationTime, "eml23:TimeMeasure")) + if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml23:OperationTime", -1, &a->prodml23__ProductVolumeFacility::OperationTime, "eml23:TimeMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap, "prodml22:Flow", -1, &a->prodml22__ProductVolumeFacility::Flow, "prodml22:ProductVolumeFlow")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap, "prodml23:Flow", -1, &a->prodml23__ProductVolumeFacility::Flow, "prodml23:ProductVolumeFlow")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap, "prodml22:ParameterSet", -1, &a->prodml22__ProductVolumeFacility::ParameterSet, "prodml22:ProductVolumeParameterSet")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap, "prodml23:ParameterSet", -1, &a->prodml23__ProductVolumeFacility::ParameterSet, "prodml23:ProductVolumeParameterSet")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, "prodml22:Comment", -1, &a->prodml22__ProductVolumeFacility::Comment, "prodml22:DatedComment")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, "prodml23:Comment", -1, &a->prodml23__ProductVolumeFacility::Comment, "prodml23:DatedComment")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, "prodml22:DowntimeReason", -1, &a->prodml22__ProductVolumeFacility::DowntimeReason, "prodml22:DatedComment")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, "prodml23:DowntimeReason", -1, &a->prodml23__ProductVolumeFacility::DowntimeReason, "prodml23:DatedComment")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeFacility::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeFacility::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeFacility(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeFacility(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml22__ProductVolumeFacility(struct soap *soap, const char *tag, prodml22__ProductVolumeFacility *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml23__ProductVolumeFacility(struct soap *soap, const char *tag, prodml23__ProductVolumeFacility *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeFacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, sizeof(prodml22__ProductVolumeFacility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeFacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, sizeof(prodml23__ProductVolumeFacility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeFacility *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeFacility *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeFacility*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeFacility*)a)->uid)) return NULL; size_t soap_flag_FacilityParent1 = 1; size_t soap_flag_FacilityParent21 = 1; @@ -170326,95 +170321,95 @@ SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml22__Produc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FacilityParent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent", &a->prodml22__ProductVolumeFacility::FacilityParent, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent", &a->prodml23__ProductVolumeFacility::FacilityParent, "prodml23:FacilityIdentifierStruct")) { soap_flag_FacilityParent1--; continue; } } if (soap_flag_FacilityParent21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent2", &a->prodml22__ProductVolumeFacility::FacilityParent2, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent2", &a->prodml23__ProductVolumeFacility::FacilityParent2, "prodml23:FacilityIdentifierStruct")) { soap_flag_FacilityParent21--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml22:FacilityAlias", &a->prodml22__ProductVolumeFacility::FacilityAlias, "eml23:NameStruct")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__NameStruct(soap, "prodml23:FacilityAlias", &a->prodml23__ProductVolumeFacility::FacilityAlias, "eml23:NameStruct")) continue; } if (soap_flag_Unit1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Unit", &a->prodml22__ProductVolumeFacility::Unit, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Unit", &a->prodml23__ProductVolumeFacility::Unit, "eml23:String64")) { soap_flag_Unit1--; continue; } } if (soap_flag_NetWork1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:NetWork", &a->prodml22__ProductVolumeFacility::NetWork, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:NetWork", &a->prodml23__ProductVolumeFacility::NetWork, "eml23:String64")) { soap_flag_NetWork1--; continue; } } if (soap_flag_Name1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Name", &a->prodml22__ProductVolumeFacility::Name, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Name", &a->prodml23__ProductVolumeFacility::Name, "prodml23:FacilityIdentifierStruct")) { soap_flag_Name1--; continue; } } if (soap_flag_StatusWell1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__WellStatus(soap, "prodml22:StatusWell", &a->prodml22__ProductVolumeFacility::StatusWell, "eml23:WellStatus")) + { if (soap_in_PointerToeml23__WellStatus(soap, "prodml23:StatusWell", &a->prodml23__ProductVolumeFacility::StatusWell, "eml23:WellStatus")) { soap_flag_StatusWell1--; continue; } } if (soap_flag_FluidWell1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellFluid(soap, "prodml22:FluidWell", &a->prodml22__ProductVolumeFacility::FluidWell, "prodml22:WellFluid")) + { if (soap_in_PointerToprodml23__WellFluid(soap, "prodml23:FluidWell", &a->prodml23__ProductVolumeFacility::FluidWell, "prodml23:WellFluid")) { soap_flag_FluidWell1--; continue; } } if (soap_flag_OperatingMethod1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellOperationMethod(soap, "prodml22:OperatingMethod", &a->prodml22__ProductVolumeFacility::OperatingMethod, "prodml22:WellOperationMethod")) + { if (soap_in_PointerToprodml23__WellOperationMethod(soap, "prodml23:OperatingMethod", &a->prodml23__ProductVolumeFacility::OperatingMethod, "prodml23:WellOperationMethod")) { soap_flag_OperatingMethod1--; continue; } } if (soap_flag_WellProducing1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:WellProducing", &a->prodml22__ProductVolumeFacility::WellProducing, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:WellProducing", &a->prodml23__ProductVolumeFacility::WellProducing, "xsd:boolean")) { soap_flag_WellProducing1--; continue; } } if (soap_flag_WellInjecting1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:WellInjecting", &a->prodml22__ProductVolumeFacility::WellInjecting, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:WellInjecting", &a->prodml23__ProductVolumeFacility::WellInjecting, "xsd:boolean")) { soap_flag_WellInjecting1--; continue; } } if (soap_flag_Capacity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:Capacity", &a->prodml22__ProductVolumeFacility::Capacity, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:Capacity", &a->prodml23__ProductVolumeFacility::Capacity, "eml23:VolumeMeasure")) { soap_flag_Capacity1--; continue; } } if (soap_flag_OperationTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml22:OperationTime", &a->prodml22__ProductVolumeFacility::OperationTime, "eml23:TimeMeasure")) + { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml23:OperationTime", &a->prodml23__ProductVolumeFacility::OperationTime, "eml23:TimeMeasure")) { soap_flag_OperationTime1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap, "prodml22:Flow", &a->prodml22__ProductVolumeFacility::Flow, "prodml22:ProductVolumeFlow")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap, "prodml23:Flow", &a->prodml23__ProductVolumeFacility::Flow, "prodml23:ProductVolumeFlow")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap, "prodml22:ParameterSet", &a->prodml22__ProductVolumeFacility::ParameterSet, "prodml22:ProductVolumeParameterSet")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap, "prodml23:ParameterSet", &a->prodml23__ProductVolumeFacility::ParameterSet, "prodml23:ProductVolumeParameterSet")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, "prodml22:Comment", &a->prodml22__ProductVolumeFacility::Comment, "prodml22:DatedComment")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, "prodml23:Comment", &a->prodml23__ProductVolumeFacility::Comment, "prodml23:DatedComment")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, "prodml22:DowntimeReason", &a->prodml22__ProductVolumeFacility::DowntimeReason, "prodml22:DatedComment")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, "prodml23:DowntimeReason", &a->prodml23__ProductVolumeFacility::DowntimeReason, "prodml23:DatedComment")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -170426,7 +170421,7 @@ SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml22__Produc } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ProductVolumeFacility::Name)) + if ((!a->prodml23__ProductVolumeFacility::Name)) { soap->error = SOAP_OCCURS; return NULL; } @@ -170436,35 +170431,35 @@ SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml22__Produc return NULL; } else - { a = (prodml22__ProductVolumeFacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, sizeof(prodml22__ProductVolumeFacility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeFacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, sizeof(prodml23__ProductVolumeFacility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeFacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeFacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeFacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeFacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeFacility *p; - size_t k = sizeof(prodml22__ProductVolumeFacility); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeFacility *p; + size_t k = sizeof(prodml23__ProductVolumeFacility); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeFacility); + { p = SOAP_NEW(soap, prodml23__ProductVolumeFacility); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeFacility, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeFacility, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeFacility location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeFacility location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -170474,82 +170469,82 @@ SOAP_FMAC1 prodml22__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__ProductVolumeFacility::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeFacility::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeFacility(soap, tag ? tag : "prodml22:ProductVolumeFacility", -2, this, type)) + if (soap_out_prodml23__ProductVolumeFacility(soap, tag ? tag : "prodml23:ProductVolumeFacility", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeFacility::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeFacility::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeFacility(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeFacility(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_get_prodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFacility * SOAP_FMAC4 soap_get_prodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeFacility(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeFacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeDestination::soap_default(struct soap *soap) +void prodml23__ProductVolumeDestination::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeDestination::Name = NULL; - this->prodml22__ProductVolumeDestination::Type = NULL; - this->prodml22__ProductVolumeDestination::Country = NULL; + this->prodml23__ProductVolumeDestination::Name = NULL; + this->prodml23__ProductVolumeDestination::Type = NULL; + this->prodml23__ProductVolumeDestination::Country = NULL; } -void prodml22__ProductVolumeDestination::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeDestination::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeDestination::Name); - soap_serialize_PointerToprodml22__BalanceDestinationType(soap, &this->prodml22__ProductVolumeDestination::Type); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeDestination::Country); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeDestination::Name); + soap_serialize_PointerToprodml23__BalanceDestinationType(soap, &this->prodml23__ProductVolumeDestination::Type); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeDestination::Country); #endif } -int prodml22__ProductVolumeDestination::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeDestination::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeDestination(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeDestination(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeDestination(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeDestination *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeDestination(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeDestination *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeDestination"; + type = "prodml23:ProductVolumeDestination"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductVolumeDestination::Name, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductVolumeDestination::Name, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__BalanceDestinationType(soap, "prodml22:Type", -1, &a->prodml22__ProductVolumeDestination::Type, "prodml22:BalanceDestinationType")) + if (soap_out_PointerToprodml23__BalanceDestinationType(soap, "prodml23:Type", -1, &a->prodml23__ProductVolumeDestination::Type, "prodml23:BalanceDestinationType")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Country", -1, &a->prodml22__ProductVolumeDestination::Country, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Country", -1, &a->prodml23__ProductVolumeDestination::Country, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeDestination::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeDestination::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeDestination(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeDestination(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeDestination * SOAP_FMAC4 soap_in_prodml22__ProductVolumeDestination(struct soap *soap, const char *tag, prodml22__ProductVolumeDestination *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeDestination * SOAP_FMAC4 soap_in_prodml23__ProductVolumeDestination(struct soap *soap, const char *tag, prodml23__ProductVolumeDestination *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeDestination*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination, sizeof(prodml22__ProductVolumeDestination), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeDestination*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination, sizeof(prodml23__ProductVolumeDestination), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeDestination *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeDestination *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -170561,19 +170556,19 @@ SOAP_FMAC3 prodml22__ProductVolumeDestination * SOAP_FMAC4 soap_in_prodml22__Pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Name", &a->prodml22__ProductVolumeDestination::Name, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Name", &a->prodml23__ProductVolumeDestination::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BalanceDestinationType(soap, "prodml22:Type", &a->prodml22__ProductVolumeDestination::Type, "prodml22:BalanceDestinationType")) + { if (soap_in_PointerToprodml23__BalanceDestinationType(soap, "prodml23:Type", &a->prodml23__ProductVolumeDestination::Type, "prodml23:BalanceDestinationType")) { soap_flag_Type1--; continue; } } if (soap_flag_Country1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Country", &a->prodml22__ProductVolumeDestination::Country, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Country", &a->prodml23__ProductVolumeDestination::Country, "eml23:String64")) { soap_flag_Country1--; continue; } @@ -170589,35 +170584,35 @@ SOAP_FMAC3 prodml22__ProductVolumeDestination * SOAP_FMAC4 soap_in_prodml22__Pro return NULL; } else - { a = (prodml22__ProductVolumeDestination *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination, sizeof(prodml22__ProductVolumeDestination), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeDestination *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination, sizeof(prodml23__ProductVolumeDestination), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeDestination(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeDestination(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeDestination(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeDestination(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeDestination *p; - size_t k = sizeof(prodml22__ProductVolumeDestination); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeDestination *p; + size_t k = sizeof(prodml23__ProductVolumeDestination); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeDestination); + { p = SOAP_NEW(soap, prodml23__ProductVolumeDestination); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeDestination, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeDestination, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeDestination location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeDestination location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -170627,88 +170622,88 @@ SOAP_FMAC1 prodml22__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__ProductVolumeDestination::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeDestination::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeDestination(soap, tag ? tag : "prodml22:ProductVolumeDestination", -2, this, type)) + if (soap_out_prodml23__ProductVolumeDestination(soap, tag ? tag : "prodml23:ProductVolumeDestination", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeDestination::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeDestination::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeDestination(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeDestination(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeDestination * SOAP_FMAC4 soap_get_prodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeDestination * SOAP_FMAC4 soap_get_prodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeDestination(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeDestination(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeComponentContent::soap_default(struct soap *soap) +void prodml23__ProductVolumeComponentContent::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__ReportingProduct(soap, &this->prodml22__ProductVolumeComponentContent::Kind); - this->prodml22__ProductVolumeComponentContent::ReferenceKind = NULL; - this->prodml22__ProductVolumeComponentContent::Properties = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeComponentContent::uid); + soap_default_prodml23__ReportingProduct(soap, &this->prodml23__ProductVolumeComponentContent::Kind); + this->prodml23__ProductVolumeComponentContent::ReferenceKind = NULL; + this->prodml23__ProductVolumeComponentContent::Properties = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeComponentContent::uid); } -void prodml22__ProductVolumeComponentContent::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeComponentContent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductVolumeComponentContent::Kind, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct); - soap_serialize_PointerToprodml22__ReportingProduct(soap, &this->prodml22__ProductVolumeComponentContent::ReferenceKind); - soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(soap, &this->prodml22__ProductVolumeComponentContent::Properties); + soap_embedded(soap, &this->prodml23__ProductVolumeComponentContent::Kind, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct); + soap_serialize_PointerToprodml23__ReportingProduct(soap, &this->prodml23__ProductVolumeComponentContent::ReferenceKind); + soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(soap, &this->prodml23__ProductVolumeComponentContent::Properties); #endif } -int prodml22__ProductVolumeComponentContent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeComponentContent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeComponentContent(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeComponentContent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeComponentContent(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeComponentContent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeComponentContent(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeComponentContent *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeComponentContent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeComponentContent*)a)->uid), 1); + type = "prodml23:ProductVolumeComponentContent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeComponentContent*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeComponentContent), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent), type)) return soap->error; - if (soap_out_prodml22__ReportingProduct(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeComponentContent::Kind, "prodml22:ReportingProduct")) + if (soap_out_prodml23__ReportingProduct(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeComponentContent::Kind, "prodml23:ReportingProduct")) return soap->error; - if (soap_out_PointerToprodml22__ReportingProduct(soap, "prodml22:ReferenceKind", -1, &a->prodml22__ProductVolumeComponentContent::ReferenceKind, "prodml22:ReportingProduct")) + if (soap_out_PointerToprodml23__ReportingProduct(soap, "prodml23:ReferenceKind", -1, &a->prodml23__ProductVolumeComponentContent::ReferenceKind, "prodml23:ReportingProduct")) return soap->error; - if (soap_out_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", -1, &a->prodml22__ProductVolumeComponentContent::Properties, "prodml22:CommonPropertiesProductVolume")) + if (soap_out_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", -1, &a->prodml23__ProductVolumeComponentContent::Properties, "prodml23:CommonPropertiesProductVolume")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeComponentContent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeComponentContent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeComponentContent(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeComponentContent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeComponentContent * SOAP_FMAC4 soap_in_prodml22__ProductVolumeComponentContent(struct soap *soap, const char *tag, prodml22__ProductVolumeComponentContent *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeComponentContent * SOAP_FMAC4 soap_in_prodml23__ProductVolumeComponentContent(struct soap *soap, const char *tag, prodml23__ProductVolumeComponentContent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeComponentContent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, sizeof(prodml22__ProductVolumeComponentContent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeComponentContent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, sizeof(prodml23__ProductVolumeComponentContent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeComponentContent *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeComponentContent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeComponentContent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeComponentContent*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_ReferenceKind1 = 1; @@ -170718,19 +170713,19 @@ SOAP_FMAC3 prodml22__ProductVolumeComponentContent * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ReportingProduct(soap, "prodml22:Kind", &a->prodml22__ProductVolumeComponentContent::Kind, "prodml22:ReportingProduct")) + { if (soap_in_prodml23__ReportingProduct(soap, "prodml23:Kind", &a->prodml23__ProductVolumeComponentContent::Kind, "prodml23:ReportingProduct")) { soap_flag_Kind1--; continue; } } if (soap_flag_ReferenceKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingProduct(soap, "prodml22:ReferenceKind", &a->prodml22__ProductVolumeComponentContent::ReferenceKind, "prodml22:ReportingProduct")) + { if (soap_in_PointerToprodml23__ReportingProduct(soap, "prodml23:ReferenceKind", &a->prodml23__ProductVolumeComponentContent::ReferenceKind, "prodml23:ReportingProduct")) { soap_flag_ReferenceKind1--; continue; } } if (soap_flag_Properties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CommonPropertiesProductVolume(soap, "prodml22:Properties", &a->prodml22__ProductVolumeComponentContent::Properties, "prodml22:CommonPropertiesProductVolume")) + { if (soap_in_PointerToprodml23__CommonPropertiesProductVolume(soap, "prodml23:Properties", &a->prodml23__ProductVolumeComponentContent::Properties, "prodml23:CommonPropertiesProductVolume")) { soap_flag_Properties1--; continue; } @@ -170754,35 +170749,35 @@ SOAP_FMAC3 prodml22__ProductVolumeComponentContent * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__ProductVolumeComponentContent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, sizeof(prodml22__ProductVolumeComponentContent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeComponentContent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, sizeof(prodml23__ProductVolumeComponentContent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeComponentContent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeComponentContent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeComponentContent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeComponentContent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeComponentContent *p; - size_t k = sizeof(prodml22__ProductVolumeComponentContent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeComponentContent *p; + size_t k = sizeof(prodml23__ProductVolumeComponentContent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeComponentContent); + { p = SOAP_NEW(soap, prodml23__ProductVolumeComponentContent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeComponentContent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeComponentContent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeComponentContent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeComponentContent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -170792,91 +170787,91 @@ SOAP_FMAC1 prodml22__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__ProductVolumeComponentContent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeComponentContent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeComponentContent(soap, tag ? tag : "prodml22:ProductVolumeComponentContent", -2, this, type)) + if (soap_out_prodml23__ProductVolumeComponentContent(soap, tag ? tag : "prodml23:ProductVolumeComponentContent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeComponentContent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeComponentContent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeComponentContent(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeComponentContent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeComponentContent * SOAP_FMAC4 soap_get_prodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeComponentContent * SOAP_FMAC4 soap_get_prodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeComponentContent(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeComponentContent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeBusinessUnit::soap_default(struct soap *soap) +void prodml23__ProductVolumeBusinessUnit::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__BusinessUnitKind(soap, &this->prodml22__ProductVolumeBusinessUnit::Kind); - this->prodml22__ProductVolumeBusinessUnit::Name = NULL; - this->prodml22__ProductVolumeBusinessUnit::Description = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap, &this->prodml22__ProductVolumeBusinessUnit::SubUnit); - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBusinessUnit::uid); + soap_default_prodml23__BusinessUnitKind(soap, &this->prodml23__ProductVolumeBusinessUnit::Kind); + this->prodml23__ProductVolumeBusinessUnit::Name = NULL; + this->prodml23__ProductVolumeBusinessUnit::Description = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap, &this->prodml23__ProductVolumeBusinessUnit::SubUnit); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBusinessUnit::uid); } -void prodml22__ProductVolumeBusinessUnit::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeBusinessUnit::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeBusinessUnit::Name); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductVolumeBusinessUnit::Description); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap, &this->prodml22__ProductVolumeBusinessUnit::SubUnit); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeBusinessUnit::Name); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductVolumeBusinessUnit::Description); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap, &this->prodml23__ProductVolumeBusinessUnit::SubUnit); #endif } -int prodml22__ProductVolumeBusinessUnit::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeBusinessUnit::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeBusinessUnit(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeBusinessUnit(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeBusinessUnit *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeBusinessUnit *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeBusinessUnit"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeBusinessUnit*)a)->uid), 1); + type = "prodml23:ProductVolumeBusinessUnit"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeBusinessUnit*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit), type)) return soap->error; - if (soap_out_prodml22__BusinessUnitKind(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeBusinessUnit::Kind, "prodml22:BusinessUnitKind")) + if (soap_out_prodml23__BusinessUnitKind(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeBusinessUnit::Kind, "prodml23:BusinessUnitKind")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductVolumeBusinessUnit::Name, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductVolumeBusinessUnit::Name, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Description", -1, &a->prodml22__ProductVolumeBusinessUnit::Description, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Description", -1, &a->prodml23__ProductVolumeBusinessUnit::Description, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap, "prodml22:SubUnit", -1, &a->prodml22__ProductVolumeBusinessUnit::SubUnit, "prodml22:ProductVolumeBusinessSubUnit")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap, "prodml23:SubUnit", -1, &a->prodml23__ProductVolumeBusinessUnit::SubUnit, "prodml23:ProductVolumeBusinessSubUnit")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeBusinessUnit::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBusinessUnit::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeBusinessUnit(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeBusinessUnit(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, prodml22__ProductVolumeBusinessUnit *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, prodml23__ProductVolumeBusinessUnit *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeBusinessUnit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, sizeof(prodml22__ProductVolumeBusinessUnit), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeBusinessUnit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, sizeof(prodml23__ProductVolumeBusinessUnit), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeBusinessUnit *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeBusinessUnit *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeBusinessUnit*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeBusinessUnit*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_Name1 = 1; @@ -170886,25 +170881,25 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_in_prodml22__Pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__BusinessUnitKind(soap, "prodml22:Kind", &a->prodml22__ProductVolumeBusinessUnit::Kind, "prodml22:BusinessUnitKind")) + { if (soap_in_prodml23__BusinessUnitKind(soap, "prodml23:Kind", &a->prodml23__ProductVolumeBusinessUnit::Kind, "prodml23:BusinessUnitKind")) { soap_flag_Kind1--; continue; } } if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Name", &a->prodml22__ProductVolumeBusinessUnit::Name, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Name", &a->prodml23__ProductVolumeBusinessUnit::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Description", &a->prodml22__ProductVolumeBusinessUnit::Description, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Description", &a->prodml23__ProductVolumeBusinessUnit::Description, "eml23:String2000")) { soap_flag_Description1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap, "prodml22:SubUnit", &a->prodml22__ProductVolumeBusinessUnit::SubUnit, "prodml22:ProductVolumeBusinessSubUnit")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap, "prodml23:SubUnit", &a->prodml23__ProductVolumeBusinessUnit::SubUnit, "prodml23:ProductVolumeBusinessSubUnit")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -170926,35 +170921,35 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_in_prodml22__Pr return NULL; } else - { a = (prodml22__ProductVolumeBusinessUnit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, sizeof(prodml22__ProductVolumeBusinessUnit), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBusinessUnit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, sizeof(prodml23__ProductVolumeBusinessUnit), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBusinessUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBusinessUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeBusinessUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeBusinessUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeBusinessUnit *p; - size_t k = sizeof(prodml22__ProductVolumeBusinessUnit); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeBusinessUnit *p; + size_t k = sizeof(prodml23__ProductVolumeBusinessUnit); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeBusinessUnit); + { p = SOAP_NEW(soap, prodml23__ProductVolumeBusinessUnit); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeBusinessUnit, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeBusinessUnit, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeBusinessUnit location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeBusinessUnit location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -170964,89 +170959,89 @@ SOAP_FMAC1 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__ProductVolumeBusinessUnit::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeBusinessUnit::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeBusinessUnit(soap, tag ? tag : "prodml22:ProductVolumeBusinessUnit", -2, this, type)) + if (soap_out_prodml23__ProductVolumeBusinessUnit(soap, tag ? tag : "prodml23:ProductVolumeBusinessUnit", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeBusinessUnit::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBusinessUnit::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeBusinessUnit(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeBusinessUnit(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeBusinessUnit(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeBusinessUnit(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeBusinessSubUnit::soap_default(struct soap *soap) +void prodml23__ProductVolumeBusinessSubUnit::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBusinessSubUnit::Kind); - this->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBusinessSubUnit::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBusinessSubUnit::Kind); + this->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBusinessSubUnit::uid); } -void prodml22__ProductVolumeBusinessSubUnit::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeBusinessSubUnit::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductVolumeBusinessSubUnit::Kind, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductVolumeBusinessSubUnit::Kind); - soap_serialize_PointerToprodml22__OwnershipBusinessAcct(soap, &this->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct); + soap_embedded(soap, &this->prodml23__ProductVolumeBusinessSubUnit::Kind, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductVolumeBusinessSubUnit::Kind); + soap_serialize_PointerToprodml23__OwnershipBusinessAcct(soap, &this->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct); #endif } -int prodml22__ProductVolumeBusinessSubUnit::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeBusinessSubUnit::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeBusinessSubUnit(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeBusinessSubUnit(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeBusinessSubUnit *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeBusinessSubUnit *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeBusinessSubUnit"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeBusinessSubUnit*)a)->uid), 1); + type = "prodml23:ProductVolumeBusinessSubUnit"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeBusinessSubUnit*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeBusinessSubUnit::Kind, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeBusinessSubUnit::Kind, "eml23:String64")) return soap->error; - if (!a->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct) - { if (soap_element_empty(soap, "prodml22:OwnershipBusinessAcct", 0, NULL)) + if (!a->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct) + { if (soap_element_empty(soap, "prodml23:OwnershipBusinessAcct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__OwnershipBusinessAcct(soap, "prodml22:OwnershipBusinessAcct", -1, &a->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct, "prodml22:OwnershipBusinessAcct")) + else if (soap_out_PointerToprodml23__OwnershipBusinessAcct(soap, "prodml23:OwnershipBusinessAcct", -1, &a->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct, "prodml23:OwnershipBusinessAcct")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeBusinessSubUnit::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBusinessSubUnit::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeBusinessSubUnit(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeBusinessSubUnit(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, prodml22__ProductVolumeBusinessSubUnit *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, prodml23__ProductVolumeBusinessSubUnit *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeBusinessSubUnit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, sizeof(prodml22__ProductVolumeBusinessSubUnit), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeBusinessSubUnit*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, sizeof(prodml23__ProductVolumeBusinessSubUnit), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeBusinessSubUnit *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeBusinessSubUnit *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeBusinessSubUnit*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeBusinessSubUnit*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_OwnershipBusinessAcct1 = 1; @@ -171055,13 +171050,13 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Kind", &a->prodml22__ProductVolumeBusinessSubUnit::Kind, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Kind", &a->prodml23__ProductVolumeBusinessSubUnit::Kind, "eml23:String64")) { soap_flag_Kind1--; continue; } } if (soap_flag_OwnershipBusinessAcct1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OwnershipBusinessAcct(soap, "prodml22:OwnershipBusinessAcct", &a->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct, "prodml22:OwnershipBusinessAcct")) + { if (soap_in_PointerToprodml23__OwnershipBusinessAcct(soap, "prodml23:OwnershipBusinessAcct", &a->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct, "prodml23:OwnershipBusinessAcct")) { soap_flag_OwnershipBusinessAcct1--; continue; } @@ -171075,7 +171070,7 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml22_ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Kind1 > 0 || !a->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct)) + if ((soap_flag_Kind1 > 0 || !a->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct)) { soap->error = SOAP_OCCURS; return NULL; } @@ -171085,35 +171080,35 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__ProductVolumeBusinessSubUnit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, sizeof(prodml22__ProductVolumeBusinessSubUnit), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBusinessSubUnit *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, sizeof(prodml23__ProductVolumeBusinessSubUnit), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeBusinessSubUnit *p; - size_t k = sizeof(prodml22__ProductVolumeBusinessSubUnit); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeBusinessSubUnit *p; + size_t k = sizeof(prodml23__ProductVolumeBusinessSubUnit); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeBusinessSubUnit); + { p = SOAP_NEW(soap, prodml23__ProductVolumeBusinessSubUnit); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeBusinessSubUnit, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeBusinessSubUnit, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeBusinessSubUnit location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeBusinessSubUnit location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -171123,100 +171118,100 @@ SOAP_FMAC1 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__ProductVolumeBusinessSubUnit::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeBusinessSubUnit::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeBusinessSubUnit(soap, tag ? tag : "prodml22:ProductVolumeBusinessSubUnit", -2, this, type)) + if (soap_out_prodml23__ProductVolumeBusinessSubUnit(soap, tag ? tag : "prodml23:ProductVolumeBusinessSubUnit", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeBusinessSubUnit::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBusinessSubUnit::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeBusinessSubUnit(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeBusinessSubUnit(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeBusinessSubUnit(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeBusinessSubUnit(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeBalanceSet::soap_default(struct soap *soap) +void prodml23__ProductVolumeBalanceSet::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeBalanceSet::Kind = NULL; - this->prodml22__ProductVolumeBalanceSet::CargoNumber = NULL; - this->prodml22__ProductVolumeBalanceSet::CargoBatchNumber = NULL; - this->prodml22__ProductVolumeBalanceSet::Shipper = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap, &this->prodml22__ProductVolumeBalanceSet::BalanceDetail); - this->prodml22__ProductVolumeBalanceSet::Destination = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBalanceSet::uid); + this->prodml23__ProductVolumeBalanceSet::Kind = NULL; + this->prodml23__ProductVolumeBalanceSet::CargoNumber = NULL; + this->prodml23__ProductVolumeBalanceSet::CargoBatchNumber = NULL; + this->prodml23__ProductVolumeBalanceSet::Shipper = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap, &this->prodml23__ProductVolumeBalanceSet::BalanceDetail); + this->prodml23__ProductVolumeBalanceSet::Destination = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBalanceSet::uid); } -void prodml22__ProductVolumeBalanceSet::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeBalanceSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__BalanceFlowPart(soap, &this->prodml22__ProductVolumeBalanceSet::Kind); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeBalanceSet::CargoNumber); - soap_serialize_PointerToxsd__nonNegativeInteger(soap, &this->prodml22__ProductVolumeBalanceSet::CargoBatchNumber); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeBalanceSet::Shipper); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap, &this->prodml22__ProductVolumeBalanceSet::BalanceDetail); - soap_serialize_PointerToprodml22__ProductVolumeDestination(soap, &this->prodml22__ProductVolumeBalanceSet::Destination); + soap_serialize_PointerToprodml23__BalanceFlowPart(soap, &this->prodml23__ProductVolumeBalanceSet::Kind); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeBalanceSet::CargoNumber); + soap_serialize_PointerToxsd__nonNegativeInteger(soap, &this->prodml23__ProductVolumeBalanceSet::CargoBatchNumber); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeBalanceSet::Shipper); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap, &this->prodml23__ProductVolumeBalanceSet::BalanceDetail); + soap_serialize_PointerToprodml23__ProductVolumeDestination(soap, &this->prodml23__ProductVolumeBalanceSet::Destination); #endif } -int prodml22__ProductVolumeBalanceSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeBalanceSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeBalanceSet(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeBalanceSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBalanceSet(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeBalanceSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBalanceSet(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeBalanceSet *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeBalanceSet"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeBalanceSet*)a)->uid), 1); + type = "prodml23:ProductVolumeBalanceSet"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeBalanceSet*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet), type)) return soap->error; - if (soap_out_PointerToprodml22__BalanceFlowPart(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeBalanceSet::Kind, "prodml22:BalanceFlowPart")) + if (soap_out_PointerToprodml23__BalanceFlowPart(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeBalanceSet::Kind, "prodml23:BalanceFlowPart")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:CargoNumber", -1, &a->prodml22__ProductVolumeBalanceSet::CargoNumber, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:CargoNumber", -1, &a->prodml23__ProductVolumeBalanceSet::CargoNumber, "eml23:String64")) return soap->error; - if (soap_out_PointerToxsd__nonNegativeInteger(soap, "prodml22:CargoBatchNumber", -1, &a->prodml22__ProductVolumeBalanceSet::CargoBatchNumber, "xsd:nonNegativeInteger")) + if (soap_out_PointerToxsd__nonNegativeInteger(soap, "prodml23:CargoBatchNumber", -1, &a->prodml23__ProductVolumeBalanceSet::CargoBatchNumber, "xsd:nonNegativeInteger")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Shipper", -1, &a->prodml22__ProductVolumeBalanceSet::Shipper, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Shipper", -1, &a->prodml23__ProductVolumeBalanceSet::Shipper, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap, "prodml22:BalanceDetail", -1, &a->prodml22__ProductVolumeBalanceSet::BalanceDetail, "prodml22:ProductVolumeBalanceDetail")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap, "prodml23:BalanceDetail", -1, &a->prodml23__ProductVolumeBalanceSet::BalanceDetail, "prodml23:ProductVolumeBalanceDetail")) return soap->error; - if (soap_out_PointerToprodml22__ProductVolumeDestination(soap, "prodml22:Destination", -1, &a->prodml22__ProductVolumeBalanceSet::Destination, "prodml22:ProductVolumeDestination")) + if (soap_out_PointerToprodml23__ProductVolumeDestination(soap, "prodml23:Destination", -1, &a->prodml23__ProductVolumeBalanceSet::Destination, "prodml23:ProductVolumeDestination")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeBalanceSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBalanceSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeBalanceSet(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeBalanceSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBalanceSet(struct soap *soap, const char *tag, prodml22__ProductVolumeBalanceSet *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBalanceSet(struct soap *soap, const char *tag, prodml23__ProductVolumeBalanceSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeBalanceSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, sizeof(prodml22__ProductVolumeBalanceSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeBalanceSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, sizeof(prodml23__ProductVolumeBalanceSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeBalanceSet *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeBalanceSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeBalanceSet*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeBalanceSet*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_CargoNumber1 = 1; @@ -171228,35 +171223,35 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceSet * SOAP_FMAC4 soap_in_prodml22__Prod for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BalanceFlowPart(soap, "prodml22:Kind", &a->prodml22__ProductVolumeBalanceSet::Kind, "prodml22:BalanceFlowPart")) + { if (soap_in_PointerToprodml23__BalanceFlowPart(soap, "prodml23:Kind", &a->prodml23__ProductVolumeBalanceSet::Kind, "prodml23:BalanceFlowPart")) { soap_flag_Kind1--; continue; } } if (soap_flag_CargoNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:CargoNumber", &a->prodml22__ProductVolumeBalanceSet::CargoNumber, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:CargoNumber", &a->prodml23__ProductVolumeBalanceSet::CargoNumber, "eml23:String64")) { soap_flag_CargoNumber1--; continue; } } if (soap_flag_CargoBatchNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToxsd__nonNegativeInteger(soap, "prodml22:CargoBatchNumber", &a->prodml22__ProductVolumeBalanceSet::CargoBatchNumber, "xsd:nonNegativeInteger")) + { if (soap_in_PointerToxsd__nonNegativeInteger(soap, "prodml23:CargoBatchNumber", &a->prodml23__ProductVolumeBalanceSet::CargoBatchNumber, "xsd:nonNegativeInteger")) { soap_flag_CargoBatchNumber1--; continue; } } if (soap_flag_Shipper1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Shipper", &a->prodml22__ProductVolumeBalanceSet::Shipper, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Shipper", &a->prodml23__ProductVolumeBalanceSet::Shipper, "eml23:String64")) { soap_flag_Shipper1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap, "prodml22:BalanceDetail", &a->prodml22__ProductVolumeBalanceSet::BalanceDetail, "prodml22:ProductVolumeBalanceDetail")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap, "prodml23:BalanceDetail", &a->prodml23__ProductVolumeBalanceSet::BalanceDetail, "prodml23:ProductVolumeBalanceDetail")) continue; } if (soap_flag_Destination1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProductVolumeDestination(soap, "prodml22:Destination", &a->prodml22__ProductVolumeBalanceSet::Destination, "prodml22:ProductVolumeDestination")) + { if (soap_in_PointerToprodml23__ProductVolumeDestination(soap, "prodml23:Destination", &a->prodml23__ProductVolumeBalanceSet::Destination, "prodml23:ProductVolumeDestination")) { soap_flag_Destination1--; continue; } @@ -171272,35 +171267,35 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceSet * SOAP_FMAC4 soap_in_prodml22__Prod return NULL; } else - { a = (prodml22__ProductVolumeBalanceSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, sizeof(prodml22__ProductVolumeBalanceSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBalanceSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, sizeof(prodml23__ProductVolumeBalanceSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeBalanceSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeBalanceSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeBalanceSet *p; - size_t k = sizeof(prodml22__ProductVolumeBalanceSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeBalanceSet *p; + size_t k = sizeof(prodml23__ProductVolumeBalanceSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeBalanceSet); + { p = SOAP_NEW(soap, prodml23__ProductVolumeBalanceSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeBalanceSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeBalanceSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeBalanceSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeBalanceSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -171310,84 +171305,84 @@ SOAP_FMAC1 prodml22__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__ProductVolumeBalanceSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeBalanceSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeBalanceSet(soap, tag ? tag : "prodml22:ProductVolumeBalanceSet", -2, this, type)) + if (soap_out_prodml23__ProductVolumeBalanceSet(soap, tag ? tag : "prodml23:ProductVolumeBalanceSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeBalanceSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBalanceSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeBalanceSet(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeBalanceSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeBalanceSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeBalanceSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeBalanceEvent::soap_default(struct soap *soap) +void prodml23__ProductVolumeBalanceEvent::soap_default(struct soap *soap) { this->soap = soap; - soap_default_xsd__date(soap, &this->prodml22__ProductVolumeBalanceEvent::Date); - soap_default_prodml22__BalanceEventKind(soap, &this->prodml22__ProductVolumeBalanceEvent::Kind); - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBalanceEvent::uid); + soap_default_xsd__date(soap, &this->prodml23__ProductVolumeBalanceEvent::Date); + soap_default_prodml23__BalanceEventKind(soap, &this->prodml23__ProductVolumeBalanceEvent::Kind); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBalanceEvent::uid); } -void prodml22__ProductVolumeBalanceEvent::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeBalanceEvent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductVolumeBalanceEvent::Date, SOAP_TYPE_gsoap_eml2_3_xsd__date); - soap_serialize_xsd__date(soap, &this->prodml22__ProductVolumeBalanceEvent::Date); + soap_embedded(soap, &this->prodml23__ProductVolumeBalanceEvent::Date, SOAP_TYPE_gsoap_eml2_3_xsd__date); + soap_serialize_xsd__date(soap, &this->prodml23__ProductVolumeBalanceEvent::Date); #endif } -int prodml22__ProductVolumeBalanceEvent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeBalanceEvent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeBalanceEvent(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeBalanceEvent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeBalanceEvent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeBalanceEvent *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeBalanceEvent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeBalanceEvent*)a)->uid), 1); + type = "prodml23:ProductVolumeBalanceEvent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeBalanceEvent*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent), type)) return soap->error; - if (soap_out_xsd__date(soap, "prodml22:Date", -1, &a->prodml22__ProductVolumeBalanceEvent::Date, "xsd:date")) + if (soap_out_xsd__date(soap, "prodml23:Date", -1, &a->prodml23__ProductVolumeBalanceEvent::Date, "xsd:date")) return soap->error; - if (soap_out_prodml22__BalanceEventKind(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolumeBalanceEvent::Kind, "prodml22:BalanceEventKind")) + if (soap_out_prodml23__BalanceEventKind(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolumeBalanceEvent::Kind, "prodml23:BalanceEventKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeBalanceEvent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBalanceEvent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeBalanceEvent(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeBalanceEvent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, prodml22__ProductVolumeBalanceEvent *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, prodml23__ProductVolumeBalanceEvent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeBalanceEvent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, sizeof(prodml22__ProductVolumeBalanceEvent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeBalanceEvent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, sizeof(prodml23__ProductVolumeBalanceEvent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeBalanceEvent *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeBalanceEvent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeBalanceEvent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeBalanceEvent*)a)->uid)) return NULL; size_t soap_flag_Date1 = 1; size_t soap_flag_Kind1 = 1; @@ -171396,13 +171391,13 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_in_prodml22__Pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Date1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__date(soap, "prodml22:Date", &a->prodml22__ProductVolumeBalanceEvent::Date, "xsd:date")) + { if (soap_in_xsd__date(soap, "prodml23:Date", &a->prodml23__ProductVolumeBalanceEvent::Date, "xsd:date")) { soap_flag_Date1--; continue; } } if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__BalanceEventKind(soap, "prodml22:Kind", &a->prodml22__ProductVolumeBalanceEvent::Kind, "prodml22:BalanceEventKind")) + { if (soap_in_prodml23__BalanceEventKind(soap, "prodml23:Kind", &a->prodml23__ProductVolumeBalanceEvent::Kind, "prodml23:BalanceEventKind")) { soap_flag_Kind1--; continue; } @@ -171426,35 +171421,35 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_in_prodml22__Pr return NULL; } else - { a = (prodml22__ProductVolumeBalanceEvent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, sizeof(prodml22__ProductVolumeBalanceEvent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBalanceEvent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, sizeof(prodml23__ProductVolumeBalanceEvent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeBalanceEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeBalanceEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeBalanceEvent *p; - size_t k = sizeof(prodml22__ProductVolumeBalanceEvent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeBalanceEvent *p; + size_t k = sizeof(prodml23__ProductVolumeBalanceEvent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeBalanceEvent); + { p = SOAP_NEW(soap, prodml23__ProductVolumeBalanceEvent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeBalanceEvent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeBalanceEvent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeBalanceEvent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeBalanceEvent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -171464,109 +171459,109 @@ SOAP_FMAC1 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__ProductVolumeBalanceEvent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeBalanceEvent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeBalanceEvent(soap, tag ? tag : "prodml22:ProductVolumeBalanceEvent", -2, this, type)) + if (soap_out_prodml23__ProductVolumeBalanceEvent(soap, tag ? tag : "prodml23:ProductVolumeBalanceEvent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeBalanceEvent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBalanceEvent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeBalanceEvent(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeBalanceEvent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeBalanceEvent(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeBalanceEvent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeBalanceDetail::soap_default(struct soap *soap) +void prodml23__ProductVolumeBalanceDetail::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::Owner); - this->prodml22__ProductVolumeBalanceDetail::SourceUnit = NULL; - this->prodml22__ProductVolumeBalanceDetail::Share = NULL; - this->prodml22__ProductVolumeBalanceDetail::AccountNumber = NULL; - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::SampleAnalysisResult); - soap_default_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml22__ProductVolumeBalanceDetail::VolumeValue); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, &this->prodml22__ProductVolumeBalanceDetail::ComponentContent); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap, &this->prodml22__ProductVolumeBalanceDetail::Event); - soap_default_eml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::Owner); + this->prodml23__ProductVolumeBalanceDetail::SourceUnit = NULL; + this->prodml23__ProductVolumeBalanceDetail::Share = NULL; + this->prodml23__ProductVolumeBalanceDetail::AccountNumber = NULL; + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::SampleAnalysisResult); + soap_default_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml23__ProductVolumeBalanceDetail::VolumeValue); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, &this->prodml23__ProductVolumeBalanceDetail::ComponentContent); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap, &this->prodml23__ProductVolumeBalanceDetail::Event); + soap_default_eml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::uid); } -void prodml22__ProductVolumeBalanceDetail::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeBalanceDetail::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductVolumeBalanceDetail::Owner, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::Owner); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::SourceUnit); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__ProductVolumeBalanceDetail::Share); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::AccountNumber); - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__ProductVolumeBalanceDetail::SampleAnalysisResult); - soap_serialize_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml22__ProductVolumeBalanceDetail::VolumeValue); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, &this->prodml22__ProductVolumeBalanceDetail::ComponentContent); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap, &this->prodml22__ProductVolumeBalanceDetail::Event); + soap_embedded(soap, &this->prodml23__ProductVolumeBalanceDetail::Owner, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::Owner); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::SourceUnit); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__ProductVolumeBalanceDetail::Share); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::AccountNumber); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__ProductVolumeBalanceDetail::SampleAnalysisResult); + soap_serialize_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml23__ProductVolumeBalanceDetail::VolumeValue); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, &this->prodml23__ProductVolumeBalanceDetail::ComponentContent); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap, &this->prodml23__ProductVolumeBalanceDetail::Event); #endif } -int prodml22__ProductVolumeBalanceDetail::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeBalanceDetail::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeBalanceDetail(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeBalanceDetail(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeBalanceDetail *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeBalanceDetail *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeBalanceDetail"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductVolumeBalanceDetail*)a)->uid), 1); + type = "prodml23:ProductVolumeBalanceDetail"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductVolumeBalanceDetail*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Owner", -1, &a->prodml22__ProductVolumeBalanceDetail::Owner, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Owner", -1, &a->prodml23__ProductVolumeBalanceDetail::Owner, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceUnit", -1, &a->prodml22__ProductVolumeBalanceDetail::SourceUnit, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceUnit", -1, &a->prodml23__ProductVolumeBalanceDetail::SourceUnit, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Share", -1, &a->prodml22__ProductVolumeBalanceDetail::Share, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Share", -1, &a->prodml23__ProductVolumeBalanceDetail::Share, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:AccountNumber", -1, &a->prodml22__ProductVolumeBalanceDetail::AccountNumber, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:AccountNumber", -1, &a->prodml23__ProductVolumeBalanceDetail::AccountNumber, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:SampleAnalysisResult", -1, &a->prodml22__ProductVolumeBalanceDetail::SampleAnalysisResult, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:SampleAnalysisResult", -1, &a->prodml23__ProductVolumeBalanceDetail::SampleAnalysisResult, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml22:VolumeValue", -1, &a->prodml22__ProductVolumeBalanceDetail::VolumeValue, "eml23:VolumeValue")) + if (soap_out_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml23:VolumeValue", -1, &a->prodml23__ProductVolumeBalanceDetail::VolumeValue, "eml23:VolumeValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, "prodml22:ComponentContent", -1, &a->prodml22__ProductVolumeBalanceDetail::ComponentContent, "prodml22:ProductVolumeComponentContent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, "prodml23:ComponentContent", -1, &a->prodml23__ProductVolumeBalanceDetail::ComponentContent, "prodml23:ProductVolumeComponentContent")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap, "prodml22:Event", -1, &a->prodml22__ProductVolumeBalanceDetail::Event, "prodml22:ProductVolumeBalanceEvent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap, "prodml23:Event", -1, &a->prodml23__ProductVolumeBalanceDetail::Event, "prodml23:ProductVolumeBalanceEvent")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeBalanceDetail::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBalanceDetail::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeBalanceDetail(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeBalanceDetail(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, prodml22__ProductVolumeBalanceDetail *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, prodml23__ProductVolumeBalanceDetail *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeBalanceDetail*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, sizeof(prodml22__ProductVolumeBalanceDetail), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeBalanceDetail*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, sizeof(prodml23__ProductVolumeBalanceDetail), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeBalanceDetail *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeBalanceDetail *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductVolumeBalanceDetail*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductVolumeBalanceDetail*)a)->uid)) return NULL; size_t soap_flag_Owner1 = 1; size_t soap_flag_SourceUnit1 = 1; @@ -171577,43 +171572,43 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_in_prodml22__P for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Owner1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Owner", &a->prodml22__ProductVolumeBalanceDetail::Owner, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Owner", &a->prodml23__ProductVolumeBalanceDetail::Owner, "eml23:String64")) { soap_flag_Owner1--; continue; } } if (soap_flag_SourceUnit1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceUnit", &a->prodml22__ProductVolumeBalanceDetail::SourceUnit, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceUnit", &a->prodml23__ProductVolumeBalanceDetail::SourceUnit, "eml23:String64")) { soap_flag_SourceUnit1--; continue; } } if (soap_flag_Share1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Share", &a->prodml22__ProductVolumeBalanceDetail::Share, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Share", &a->prodml23__ProductVolumeBalanceDetail::Share, "eml23:VolumePerVolumeMeasure")) { soap_flag_Share1--; continue; } } if (soap_flag_AccountNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:AccountNumber", &a->prodml22__ProductVolumeBalanceDetail::AccountNumber, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:AccountNumber", &a->prodml23__ProductVolumeBalanceDetail::AccountNumber, "eml23:String64")) { soap_flag_AccountNumber1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:SampleAnalysisResult", &a->prodml22__ProductVolumeBalanceDetail::SampleAnalysisResult, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:SampleAnalysisResult", &a->prodml23__ProductVolumeBalanceDetail::SampleAnalysisResult, "eml23:String64")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml22:VolumeValue", &a->prodml22__ProductVolumeBalanceDetail::VolumeValue, "eml23:VolumeValue")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml23:VolumeValue", &a->prodml23__ProductVolumeBalanceDetail::VolumeValue, "eml23:VolumeValue")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, "prodml22:ComponentContent", &a->prodml22__ProductVolumeBalanceDetail::ComponentContent, "prodml22:ProductVolumeComponentContent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, "prodml23:ComponentContent", &a->prodml23__ProductVolumeBalanceDetail::ComponentContent, "prodml23:ProductVolumeComponentContent")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap, "prodml22:Event", &a->prodml22__ProductVolumeBalanceDetail::Event, "prodml22:ProductVolumeBalanceEvent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap, "prodml23:Event", &a->prodml23__ProductVolumeBalanceDetail::Event, "prodml23:ProductVolumeBalanceEvent")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -171635,35 +171630,35 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_in_prodml22__P return NULL; } else - { a = (prodml22__ProductVolumeBalanceDetail *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, sizeof(prodml22__ProductVolumeBalanceDetail), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBalanceDetail *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, sizeof(prodml23__ProductVolumeBalanceDetail), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceDetail(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceDetail(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeBalanceDetail(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeBalanceDetail(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeBalanceDetail *p; - size_t k = sizeof(prodml22__ProductVolumeBalanceDetail); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeBalanceDetail *p; + size_t k = sizeof(prodml23__ProductVolumeBalanceDetail); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeBalanceDetail); + { p = SOAP_NEW(soap, prodml23__ProductVolumeBalanceDetail); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeBalanceDetail, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeBalanceDetail, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeBalanceDetail location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeBalanceDetail location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -171673,86 +171668,86 @@ SOAP_FMAC1 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__ProductVolumeBalanceDetail::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeBalanceDetail::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeBalanceDetail(soap, tag ? tag : "prodml22:ProductVolumeBalanceDetail", -2, this, type)) + if (soap_out_prodml23__ProductVolumeBalanceDetail(soap, tag ? tag : "prodml23:ProductVolumeBalanceDetail", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeBalanceDetail::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeBalanceDetail::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeBalanceDetail(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeBalanceDetail(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeBalanceDetail(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeBalanceDetail(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolumeAlert::soap_default(struct soap *soap) +void prodml23__ProductVolumeAlert::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProductVolumeAlert::Target = NULL; - this->prodml22__ProductVolumeAlert::Level = NULL; - this->prodml22__ProductVolumeAlert::Type = NULL; - this->prodml22__ProductVolumeAlert::Description = NULL; + this->prodml23__ProductVolumeAlert::Target = NULL; + this->prodml23__ProductVolumeAlert::Level = NULL; + this->prodml23__ProductVolumeAlert::Type = NULL; + this->prodml23__ProductVolumeAlert::Description = NULL; } -void prodml22__ProductVolumeAlert::soap_serialize(struct soap *soap) const +void prodml23__ProductVolumeAlert::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductVolumeAlert::Target); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeAlert::Level); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolumeAlert::Type); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductVolumeAlert::Description); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductVolumeAlert::Target); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeAlert::Level); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolumeAlert::Type); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductVolumeAlert::Description); #endif } -int prodml22__ProductVolumeAlert::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolumeAlert::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolumeAlert(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolumeAlert(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeAlert(struct soap *soap, const char *tag, int id, const prodml22__ProductVolumeAlert *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeAlert(struct soap *soap, const char *tag, int id, const prodml23__ProductVolumeAlert *a, const char *type) { if (!type) - type = "prodml22:ProductVolumeAlert"; + type = "prodml23:ProductVolumeAlert"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Target", -1, &a->prodml22__ProductVolumeAlert::Target, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Target", -1, &a->prodml23__ProductVolumeAlert::Target, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Level", -1, &a->prodml22__ProductVolumeAlert::Level, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Level", -1, &a->prodml23__ProductVolumeAlert::Level, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Type", -1, &a->prodml22__ProductVolumeAlert::Type, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Type", -1, &a->prodml23__ProductVolumeAlert::Type, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Description", -1, &a->prodml22__ProductVolumeAlert::Description, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Description", -1, &a->prodml23__ProductVolumeAlert::Description, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolumeAlert::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeAlert::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolumeAlert(soap, tag, this, type); + return soap_in_prodml23__ProductVolumeAlert(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolumeAlert * SOAP_FMAC4 soap_in_prodml22__ProductVolumeAlert(struct soap *soap, const char *tag, prodml22__ProductVolumeAlert *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeAlert * SOAP_FMAC4 soap_in_prodml23__ProductVolumeAlert(struct soap *soap, const char *tag, prodml23__ProductVolumeAlert *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolumeAlert*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert, sizeof(prodml22__ProductVolumeAlert), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolumeAlert*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert, sizeof(prodml23__ProductVolumeAlert), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolumeAlert *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolumeAlert *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -171765,25 +171760,25 @@ SOAP_FMAC3 prodml22__ProductVolumeAlert * SOAP_FMAC4 soap_in_prodml22__ProductVo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Target1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Target", &a->prodml22__ProductVolumeAlert::Target, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Target", &a->prodml23__ProductVolumeAlert::Target, "eml23:String2000")) { soap_flag_Target1--; continue; } } if (soap_flag_Level1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Level", &a->prodml22__ProductVolumeAlert::Level, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Level", &a->prodml23__ProductVolumeAlert::Level, "eml23:String64")) { soap_flag_Level1--; continue; } } if (soap_flag_Type1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Type", &a->prodml22__ProductVolumeAlert::Type, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Type", &a->prodml23__ProductVolumeAlert::Type, "eml23:String64")) { soap_flag_Type1--; continue; } } if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Description", &a->prodml22__ProductVolumeAlert::Description, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Description", &a->prodml23__ProductVolumeAlert::Description, "eml23:String2000")) { soap_flag_Description1--; continue; } @@ -171799,35 +171794,35 @@ SOAP_FMAC3 prodml22__ProductVolumeAlert * SOAP_FMAC4 soap_in_prodml22__ProductVo return NULL; } else - { a = (prodml22__ProductVolumeAlert *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert, sizeof(prodml22__ProductVolumeAlert), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeAlert *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert, sizeof(prodml23__ProductVolumeAlert), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeAlert(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeAlert(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolumeAlert(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolumeAlert(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolumeAlert *p; - size_t k = sizeof(prodml22__ProductVolumeAlert); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolumeAlert *p; + size_t k = sizeof(prodml23__ProductVolumeAlert); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolumeAlert); + { p = SOAP_NEW(soap, prodml23__ProductVolumeAlert); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolumeAlert, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolumeAlert, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolumeAlert location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolumeAlert location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -171837,96 +171832,96 @@ SOAP_FMAC1 prodml22__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__ProductVolumeAlert::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolumeAlert::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolumeAlert(soap, tag ? tag : "prodml22:ProductVolumeAlert", -2, this, type)) + if (soap_out_prodml23__ProductVolumeAlert(soap, tag ? tag : "prodml23:ProductVolumeAlert", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolumeAlert::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolumeAlert::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolumeAlert(soap, this, tag, type); + return soap_get_prodml23__ProductVolumeAlert(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolumeAlert * SOAP_FMAC4 soap_get_prodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeAlert * SOAP_FMAC4 soap_get_prodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolumeAlert(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolumeAlert(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductVolume::soap_default(struct soap *soap) +void prodml23__ProductVolume::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__ProductVolume::Installation = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolume::ContextFacility); - this->prodml22__ProductVolume::Kind = NULL; - this->prodml22__ProductVolume::PeriodKind = NULL; - this->prodml22__ProductVolume::DTimMin = NULL; - this->prodml22__ProductVolume::DTimMax = NULL; - this->prodml22__ProductVolume::DTimCurrent = NULL; - this->prodml22__ProductVolume::CalculationMethod = NULL; - this->prodml22__ProductVolume::Operator = NULL; - this->prodml22__ProductVolume::Title = NULL; - this->prodml22__ProductVolume::GeographicContext = NULL; - this->prodml22__ProductVolume::IssueDate = NULL; - this->prodml22__ProductVolume::IssuedBy = NULL; - this->prodml22__ProductVolume::ApprovalDate = NULL; - this->prodml22__ProductVolume::Approver = NULL; - this->prodml22__ProductVolume::StandardTempPres = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap, &this->prodml22__ProductVolume::Facility); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap, &this->prodml22__ProductVolume::BusinessUnit); - this->prodml22__ProductVolume::ProductFlowModel = NULL; - this->prodml22__ProductVolume::DateTime = NULL; -} - -void prodml22__ProductVolume::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolume::Installation); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductVolume::ContextFacility); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductVolume::Kind); - soap_serialize_PointerToprodml22__ReportingDurationKind(soap, &this->prodml22__ProductVolume::PeriodKind); - soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(soap, &this->prodml22__ProductVolume::DTimMin); - soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(soap, &this->prodml22__ProductVolume::DTimMax); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductVolume::DTimCurrent); - soap_serialize_PointerToprodml22__CalculationMethod(soap, &this->prodml22__ProductVolume::CalculationMethod); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ProductVolume::Operator); - soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml22__ProductVolume::Title); - soap_serialize_PointerToprodml22__GeographicContext(soap, &this->prodml22__ProductVolume::GeographicContext); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__ProductVolume::IssueDate); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ProductVolume::IssuedBy); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__ProductVolume::ApprovalDate); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ProductVolume::Approver); - soap_serialize_PointerToeml23__ReferenceCondition(soap, &this->prodml22__ProductVolume::StandardTempPres); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap, &this->prodml22__ProductVolume::Facility); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap, &this->prodml22__ProductVolume::BusinessUnit); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ProductVolume::ProductFlowModel); - soap_serialize_PointerToprodml22__AbstractDateTimeClass(soap, &this->prodml22__ProductVolume::DateTime); + this->prodml23__ProductVolume::Installation = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolume::ContextFacility); + this->prodml23__ProductVolume::Kind = NULL; + this->prodml23__ProductVolume::PeriodKind = NULL; + this->prodml23__ProductVolume::DTimMin = NULL; + this->prodml23__ProductVolume::DTimMax = NULL; + this->prodml23__ProductVolume::DTimCurrent = NULL; + this->prodml23__ProductVolume::CalculationMethod = NULL; + this->prodml23__ProductVolume::Operator = NULL; + this->prodml23__ProductVolume::Title = NULL; + this->prodml23__ProductVolume::GeographicContext = NULL; + this->prodml23__ProductVolume::IssueDate = NULL; + this->prodml23__ProductVolume::IssuedBy = NULL; + this->prodml23__ProductVolume::ApprovalDate = NULL; + this->prodml23__ProductVolume::Approver = NULL; + this->prodml23__ProductVolume::StandardTempPres = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap, &this->prodml23__ProductVolume::Facility); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap, &this->prodml23__ProductVolume::BusinessUnit); + this->prodml23__ProductVolume::ProductFlowModel = NULL; + this->prodml23__ProductVolume::DateTime = NULL; +} + +void prodml23__ProductVolume::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolume::Installation); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductVolume::ContextFacility); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductVolume::Kind); + soap_serialize_PointerToprodml23__ReportingDurationKind(soap, &this->prodml23__ProductVolume::PeriodKind); + soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(soap, &this->prodml23__ProductVolume::DTimMin); + soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(soap, &this->prodml23__ProductVolume::DTimMax); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductVolume::DTimCurrent); + soap_serialize_PointerToprodml23__CalculationMethod(soap, &this->prodml23__ProductVolume::CalculationMethod); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ProductVolume::Operator); + soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml23__ProductVolume::Title); + soap_serialize_PointerToprodml23__GeographicContext(soap, &this->prodml23__ProductVolume::GeographicContext); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__ProductVolume::IssueDate); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ProductVolume::IssuedBy); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__ProductVolume::ApprovalDate); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ProductVolume::Approver); + soap_serialize_PointerToeml23__ReferenceCondition(soap, &this->prodml23__ProductVolume::StandardTempPres); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap, &this->prodml23__ProductVolume::Facility); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap, &this->prodml23__ProductVolume::BusinessUnit); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ProductVolume::ProductFlowModel); + soap_serialize_PointerToprodml23__AbstractDateTimeClass(soap, &this->prodml23__ProductVolume::DateTime); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__ProductVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductVolume(soap, tag, id, this, type); + return soap_out_prodml23__ProductVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolume(struct soap *soap, const char *tag, int id, const prodml22__ProductVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolume(struct soap *soap, const char *tag, int id, const prodml23__ProductVolume *a, const char *type) { if (!type) - type = "prodml22:ProductVolume"; + type = "prodml23:ProductVolume"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ProductVolume), type ? type : "prodml22:ProductVolume")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume), type ? type : "prodml23:ProductVolume")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -171948,66 +171943,66 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolume(struct soap *soap, co return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Installation", -1, &a->prodml22__ProductVolume::Installation, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Installation", -1, &a->prodml23__ProductVolume::Installation, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", -1, &a->prodml22__ProductVolume::ContextFacility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", -1, &a->prodml23__ProductVolume::ContextFacility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Kind", -1, &a->prodml22__ProductVolume::Kind, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Kind", -1, &a->prodml23__ProductVolume::Kind, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__ReportingDurationKind(soap, "prodml22:PeriodKind", -1, &a->prodml22__ProductVolume::PeriodKind, "prodml22:ReportingDurationKind")) + if (soap_out_PointerToprodml23__ReportingDurationKind(soap, "prodml23:PeriodKind", -1, &a->prodml23__ProductVolume::PeriodKind, "prodml23:ReportingDurationKind")) return soap->error; - if (soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMin", -1, &a->prodml22__ProductVolume::DTimMin, "prodml22:EndpointQualifiedDateTime")) + if (soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMin", -1, &a->prodml23__ProductVolume::DTimMin, "prodml23:EndpointQualifiedDateTime")) return soap->error; - if (soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMax", -1, &a->prodml22__ProductVolume::DTimMax, "prodml22:EndpointQualifiedDateTime")) + if (soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMax", -1, &a->prodml23__ProductVolume::DTimMax, "prodml23:EndpointQualifiedDateTime")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimCurrent", -1, &a->prodml22__ProductVolume::DTimCurrent, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimCurrent", -1, &a->prodml23__ProductVolume::DTimCurrent, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToprodml22__CalculationMethod(soap, "prodml22:CalculationMethod", -1, &a->prodml22__ProductVolume::CalculationMethod, "prodml22:CalculationMethod")) + if (soap_out_PointerToprodml23__CalculationMethod(soap, "prodml23:CalculationMethod", -1, &a->prodml23__ProductVolume::CalculationMethod, "prodml23:CalculationMethod")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Operator", -1, &a->prodml22__ProductVolume::Operator, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Operator", -1, &a->prodml23__ProductVolume::Operator, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__NameStruct(soap, "prodml22:Title", -1, &a->prodml22__ProductVolume::Title, "eml23:NameStruct")) + if (soap_out_PointerToeml23__NameStruct(soap, "prodml23:Title", -1, &a->prodml23__ProductVolume::Title, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToprodml22__GeographicContext(soap, "prodml22:GeographicContext", -1, &a->prodml22__ProductVolume::GeographicContext, "prodml22:GeographicContext")) + if (soap_out_PointerToprodml23__GeographicContext(soap, "prodml23:GeographicContext", -1, &a->prodml23__ProductVolume::GeographicContext, "prodml23:GeographicContext")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:IssueDate", -1, &a->prodml22__ProductVolume::IssueDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:IssueDate", -1, &a->prodml23__ProductVolume::IssueDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:IssuedBy", -1, &a->prodml22__ProductVolume::IssuedBy, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:IssuedBy", -1, &a->prodml23__ProductVolume::IssuedBy, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:ApprovalDate", -1, &a->prodml22__ProductVolume::ApprovalDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:ApprovalDate", -1, &a->prodml23__ProductVolume::ApprovalDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Approver", -1, &a->prodml22__ProductVolume::Approver, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Approver", -1, &a->prodml23__ProductVolume::Approver, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__ReferenceCondition(soap, "prodml22:StandardTempPres", -1, &a->prodml22__ProductVolume::StandardTempPres, "eml23:ReferenceCondition")) + if (soap_out_PointerToeml23__ReferenceCondition(soap, "prodml23:StandardTempPres", -1, &a->prodml23__ProductVolume::StandardTempPres, "eml23:ReferenceCondition")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap, "prodml22:Facility", -1, &a->prodml22__ProductVolume::Facility, "prodml22:ProductVolumeFacility")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap, "prodml23:Facility", -1, &a->prodml23__ProductVolume::Facility, "prodml23:ProductVolumeFacility")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap, "prodml22:BusinessUnit", -1, &a->prodml22__ProductVolume::BusinessUnit, "prodml22:ProductVolumeBusinessUnit")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap, "prodml23:BusinessUnit", -1, &a->prodml23__ProductVolume::BusinessUnit, "prodml23:ProductVolumeBusinessUnit")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ProductFlowModel", -1, &a->prodml22__ProductVolume::ProductFlowModel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ProductFlowModel", -1, &a->prodml23__ProductVolume::ProductFlowModel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__AbstractDateTimeClass(soap, "prodml22:DateTime", -1, &a->prodml22__ProductVolume::DateTime, "prodml22:AbstractDateTimeClass")) + if (soap_out_PointerToprodml23__AbstractDateTimeClass(soap, "prodml23:DateTime", -1, &a->prodml23__ProductVolume::DateTime, "prodml23:AbstractDateTimeClass")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductVolume(soap, tag, this, type); + return soap_in_prodml23__ProductVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_in_prodml22__ProductVolume(struct soap *soap, const char *tag, prodml22__ProductVolume *a, const char *type) +SOAP_FMAC3 prodml23__ProductVolume * SOAP_FMAC4 soap_in_prodml23__ProductVolume(struct soap *soap, const char *tag, prodml23__ProductVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume, sizeof(prodml22__ProductVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume, sizeof(prodml23__ProductVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductVolume *)a->soap_in(soap, tag, type); + return (prodml23__ProductVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -172096,115 +172091,115 @@ SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_in_prodml22__ProductVolume( continue; } if (soap_flag_Installation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Installation", &a->prodml22__ProductVolume::Installation, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Installation", &a->prodml23__ProductVolume::Installation, "prodml23:FacilityIdentifierStruct")) { soap_flag_Installation1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", &a->prodml22__ProductVolume::ContextFacility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", &a->prodml23__ProductVolume::ContextFacility, "prodml23:FacilityIdentifierStruct")) continue; } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Kind", &a->prodml22__ProductVolume::Kind, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Kind", &a->prodml23__ProductVolume::Kind, "eml23:String64")) { soap_flag_Kind1--; continue; } } if (soap_flag_PeriodKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReportingDurationKind(soap, "prodml22:PeriodKind", &a->prodml22__ProductVolume::PeriodKind, "prodml22:ReportingDurationKind")) + { if (soap_in_PointerToprodml23__ReportingDurationKind(soap, "prodml23:PeriodKind", &a->prodml23__ProductVolume::PeriodKind, "prodml23:ReportingDurationKind")) { soap_flag_PeriodKind1--; continue; } } if (soap_flag_DTimMin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMin", &a->prodml22__ProductVolume::DTimMin, "prodml22:EndpointQualifiedDateTime")) + { if (soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMin", &a->prodml23__ProductVolume::DTimMin, "prodml23:EndpointQualifiedDateTime")) { soap_flag_DTimMin1--; continue; } } if (soap_flag_DTimMax1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, "prodml22:DTimMax", &a->prodml22__ProductVolume::DTimMax, "prodml22:EndpointQualifiedDateTime")) + { if (soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, "prodml23:DTimMax", &a->prodml23__ProductVolume::DTimMax, "prodml23:EndpointQualifiedDateTime")) { soap_flag_DTimMax1--; continue; } } if (soap_flag_DTimCurrent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimCurrent", &a->prodml22__ProductVolume::DTimCurrent, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimCurrent", &a->prodml23__ProductVolume::DTimCurrent, "eml23:TimeStamp")) { soap_flag_DTimCurrent1--; continue; } } if (soap_flag_CalculationMethod1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CalculationMethod(soap, "prodml22:CalculationMethod", &a->prodml22__ProductVolume::CalculationMethod, "prodml22:CalculationMethod")) + { if (soap_in_PointerToprodml23__CalculationMethod(soap, "prodml23:CalculationMethod", &a->prodml23__ProductVolume::CalculationMethod, "prodml23:CalculationMethod")) { soap_flag_CalculationMethod1--; continue; } } if (soap_flag_Operator1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Operator", &a->prodml22__ProductVolume::Operator, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Operator", &a->prodml23__ProductVolume::Operator, "eml23:DataObjectReference")) { soap_flag_Operator1--; continue; } } if (soap_flag_Title1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NameStruct(soap, "prodml22:Title", &a->prodml22__ProductVolume::Title, "eml23:NameStruct")) + { if (soap_in_PointerToeml23__NameStruct(soap, "prodml23:Title", &a->prodml23__ProductVolume::Title, "eml23:NameStruct")) { soap_flag_Title1--; continue; } } if (soap_flag_GeographicContext1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__GeographicContext(soap, "prodml22:GeographicContext", &a->prodml22__ProductVolume::GeographicContext, "prodml22:GeographicContext")) + { if (soap_in_PointerToprodml23__GeographicContext(soap, "prodml23:GeographicContext", &a->prodml23__ProductVolume::GeographicContext, "prodml23:GeographicContext")) { soap_flag_GeographicContext1--; continue; } } if (soap_flag_IssueDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:IssueDate", &a->prodml22__ProductVolume::IssueDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:IssueDate", &a->prodml23__ProductVolume::IssueDate, "xsd:date")) { soap_flag_IssueDate1--; continue; } } if (soap_flag_IssuedBy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:IssuedBy", &a->prodml22__ProductVolume::IssuedBy, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:IssuedBy", &a->prodml23__ProductVolume::IssuedBy, "eml23:DataObjectReference")) { soap_flag_IssuedBy1--; continue; } } if (soap_flag_ApprovalDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:ApprovalDate", &a->prodml22__ProductVolume::ApprovalDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:ApprovalDate", &a->prodml23__ProductVolume::ApprovalDate, "xsd:date")) { soap_flag_ApprovalDate1--; continue; } } if (soap_flag_Approver1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Approver", &a->prodml22__ProductVolume::Approver, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Approver", &a->prodml23__ProductVolume::Approver, "eml23:DataObjectReference")) { soap_flag_Approver1--; continue; } } if (soap_flag_StandardTempPres1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferenceCondition(soap, "prodml22:StandardTempPres", &a->prodml22__ProductVolume::StandardTempPres, "eml23:ReferenceCondition")) + { if (soap_in_PointerToeml23__ReferenceCondition(soap, "prodml23:StandardTempPres", &a->prodml23__ProductVolume::StandardTempPres, "eml23:ReferenceCondition")) { soap_flag_StandardTempPres1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap, "prodml22:Facility", &a->prodml22__ProductVolume::Facility, "prodml22:ProductVolumeFacility")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap, "prodml23:Facility", &a->prodml23__ProductVolume::Facility, "prodml23:ProductVolumeFacility")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap, "prodml22:BusinessUnit", &a->prodml22__ProductVolume::BusinessUnit, "prodml22:ProductVolumeBusinessUnit")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap, "prodml23:BusinessUnit", &a->prodml23__ProductVolume::BusinessUnit, "prodml23:ProductVolumeBusinessUnit")) continue; } if (soap_flag_ProductFlowModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ProductFlowModel", &a->prodml22__ProductVolume::ProductFlowModel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ProductFlowModel", &a->prodml23__ProductVolume::ProductFlowModel, "eml23:DataObjectReference")) { soap_flag_ProductFlowModel1--; continue; } } if (soap_flag_DateTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractDateTimeClass(soap, "prodml22:DateTime", &a->prodml22__ProductVolume::DateTime, "prodml22:AbstractDateTimeClass")) + { if (soap_in_PointerToprodml23__AbstractDateTimeClass(soap, "prodml23:DateTime", &a->prodml23__ProductVolume::DateTime, "prodml23:AbstractDateTimeClass")) { soap_flag_DateTime1--; continue; } @@ -172218,7 +172213,7 @@ SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_in_prodml22__ProductVolume( } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || a->prodml22__ProductVolume::Facility.size() < 1)) + if ((!a->eml23__AbstractObject::Citation || a->prodml23__ProductVolume::Facility.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -172228,35 +172223,35 @@ SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_in_prodml22__ProductVolume( return NULL; } else - { a = (prodml22__ProductVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume, sizeof(prodml22__ProductVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume, sizeof(prodml23__ProductVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductVolume *p; - size_t k = sizeof(prodml22__ProductVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume, n, gsoap_eml2_3_fdelete); + prodml23__ProductVolume *p; + size_t k = sizeof(prodml23__ProductVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductVolume); + { p = SOAP_NEW(soap, prodml23__ProductVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -172266,79 +172261,79 @@ SOAP_FMAC1 prodml22__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__Produ return p; } -int prodml22__ProductVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductVolume(soap, tag ? tag : "prodml22:ProductVolume", -2, this, type)) + if (soap_out_prodml23__ProductVolume(soap, tag ? tag : "prodml23:ProductVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductVolume(soap, this, tag, type); + return soap_get_prodml23__ProductVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_get_prodml22__ProductVolume(struct soap *soap, prodml22__ProductVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolume * SOAP_FMAC4 soap_get_prodml23__ProductVolume(struct soap *soap, prodml23__ProductVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Parentfacility::soap_default(struct soap *soap) +void prodml23__Parentfacility::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRefProductFlow::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__Parentfacility::ParentfacilityReference); + this->prodml23__AbstractRefProductFlow::soap_default(soap); + soap_default_eml23__String64(soap, &this->prodml23__Parentfacility::ParentfacilityReference); } -void prodml22__Parentfacility::soap_serialize(struct soap *soap) const +void prodml23__Parentfacility::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__Parentfacility::ParentfacilityReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__Parentfacility::ParentfacilityReference); - this->prodml22__AbstractRefProductFlow::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__Parentfacility::ParentfacilityReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__Parentfacility::ParentfacilityReference); + this->prodml23__AbstractRefProductFlow::soap_serialize(soap); #endif } -int prodml22__Parentfacility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Parentfacility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Parentfacility(soap, tag, id, this, type); + return soap_out_prodml23__Parentfacility(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Parentfacility(struct soap *soap, const char *tag, int id, const prodml22__Parentfacility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Parentfacility(struct soap *soap, const char *tag, int id, const prodml23__Parentfacility *a, const char *type) { if (!type) - type = "prodml22:Parentfacility"; + type = "prodml23:Parentfacility"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility), type ? type : "prodml22:Parentfacility")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility), type ? type : "prodml23:Parentfacility")) return soap->error; - if (soap_out__prodml22__union_AbstractRefProductFlow(soap, a->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow)) + if (soap_out__prodml23__union_AbstractRefProductFlow(soap, a->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:ParentfacilityReference", -1, &a->prodml22__Parentfacility::ParentfacilityReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:ParentfacilityReference", -1, &a->prodml23__Parentfacility::ParentfacilityReference, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Parentfacility::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Parentfacility::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Parentfacility(soap, tag, this, type); + return soap_in_prodml23__Parentfacility(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Parentfacility * SOAP_FMAC4 soap_in_prodml22__Parentfacility(struct soap *soap, const char *tag, prodml22__Parentfacility *a, const char *type) +SOAP_FMAC3 prodml23__Parentfacility * SOAP_FMAC4 soap_in_prodml23__Parentfacility(struct soap *soap, const char *tag, prodml23__Parentfacility *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Parentfacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility, sizeof(prodml22__Parentfacility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Parentfacility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility, sizeof(prodml23__Parentfacility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Parentfacility *)a->soap_in(soap, tag, type); + return (prodml23__Parentfacility *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -172349,13 +172344,13 @@ SOAP_FMAC3 prodml22__Parentfacility * SOAP_FMAC4 soap_in_prodml22__Parentfacilit for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_union_AbstractRefProductFlow2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in__prodml22__union_AbstractRefProductFlow(soap, &a->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow)) + { if (soap_in__prodml23__union_AbstractRefProductFlow(soap, &a->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow)) { soap_flag_union_AbstractRefProductFlow2 = 0; continue; } } if (soap_flag_ParentfacilityReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:ParentfacilityReference", &a->prodml22__Parentfacility::ParentfacilityReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:ParentfacilityReference", &a->prodml23__Parentfacility::ParentfacilityReference, "eml23:String64")) { soap_flag_ParentfacilityReference1--; continue; } @@ -172379,35 +172374,35 @@ SOAP_FMAC3 prodml22__Parentfacility * SOAP_FMAC4 soap_in_prodml22__Parentfacilit return NULL; } else - { a = (prodml22__Parentfacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility, SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility, sizeof(prodml22__Parentfacility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Parentfacility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility, SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility, sizeof(prodml23__Parentfacility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml22__Parentfacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml23__Parentfacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Parentfacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Parentfacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Parentfacility *p; - size_t k = sizeof(prodml22__Parentfacility); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility, n, gsoap_eml2_3_fdelete); + prodml23__Parentfacility *p; + size_t k = sizeof(prodml23__Parentfacility); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Parentfacility); + { p = SOAP_NEW(soap, prodml23__Parentfacility); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Parentfacility, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Parentfacility, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Parentfacility location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Parentfacility location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -172417,70 +172412,70 @@ SOAP_FMAC1 prodml22__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml22__Pare return p; } -int prodml22__Parentfacility::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Parentfacility::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Parentfacility(soap, tag ? tag : "prodml22:Parentfacility", -2, this, type)) + if (soap_out_prodml23__Parentfacility(soap, tag ? tag : "prodml23:Parentfacility", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Parentfacility::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Parentfacility::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Parentfacility(soap, this, tag, type); + return soap_get_prodml23__Parentfacility(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Parentfacility * SOAP_FMAC4 soap_get_prodml22__Parentfacility(struct soap *soap, prodml22__Parentfacility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Parentfacility * SOAP_FMAC4 soap_get_prodml23__Parentfacility(struct soap *soap, prodml23__Parentfacility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Parentfacility(soap, tag, p, type))) + if ((p = soap_in_prodml23__Parentfacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OwnershipBusinessAcct::soap_default(struct soap *soap) +void prodml23__OwnershipBusinessAcct::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__OwnershipBusinessAcct::soap_serialize(struct soap *soap) const +void prodml23__OwnershipBusinessAcct::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__OwnershipBusinessAcct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OwnershipBusinessAcct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OwnershipBusinessAcct(soap, tag, id, this, type); + return soap_out_prodml23__OwnershipBusinessAcct(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OwnershipBusinessAcct(struct soap *soap, const char *tag, int id, const prodml22__OwnershipBusinessAcct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OwnershipBusinessAcct(struct soap *soap, const char *tag, int id, const prodml23__OwnershipBusinessAcct *a, const char *type) { if (!type) - type = "prodml22:OwnershipBusinessAcct"; + type = "prodml23:OwnershipBusinessAcct"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OwnershipBusinessAcct::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OwnershipBusinessAcct::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OwnershipBusinessAcct(soap, tag, this, type); + return soap_in_prodml23__OwnershipBusinessAcct(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OwnershipBusinessAcct * SOAP_FMAC4 soap_in_prodml22__OwnershipBusinessAcct(struct soap *soap, const char *tag, prodml22__OwnershipBusinessAcct *a, const char *type) +SOAP_FMAC3 prodml23__OwnershipBusinessAcct * SOAP_FMAC4 soap_in_prodml23__OwnershipBusinessAcct(struct soap *soap, const char *tag, prodml23__OwnershipBusinessAcct *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OwnershipBusinessAcct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct, sizeof(prodml22__OwnershipBusinessAcct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OwnershipBusinessAcct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct, sizeof(prodml23__OwnershipBusinessAcct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OwnershipBusinessAcct *)a->soap_in(soap, tag, type); + return (prodml23__OwnershipBusinessAcct *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -172499,35 +172494,35 @@ SOAP_FMAC3 prodml22__OwnershipBusinessAcct * SOAP_FMAC4 soap_in_prodml22__Owners return NULL; } else - { a = (prodml22__OwnershipBusinessAcct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct, sizeof(prodml22__OwnershipBusinessAcct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OwnershipBusinessAcct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct, sizeof(prodml23__OwnershipBusinessAcct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml22__OwnershipBusinessAcct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml23__OwnershipBusinessAcct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OwnershipBusinessAcct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OwnershipBusinessAcct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OwnershipBusinessAcct *p; - size_t k = sizeof(prodml22__OwnershipBusinessAcct); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct, n, gsoap_eml2_3_fdelete); + prodml23__OwnershipBusinessAcct *p; + size_t k = sizeof(prodml23__OwnershipBusinessAcct); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OwnershipBusinessAcct); + { p = SOAP_NEW(soap, prodml23__OwnershipBusinessAcct); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OwnershipBusinessAcct, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OwnershipBusinessAcct, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OwnershipBusinessAcct location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OwnershipBusinessAcct location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -172537,80 +172532,80 @@ SOAP_FMAC1 prodml22__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__OwnershipBusinessAcct::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OwnershipBusinessAcct::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OwnershipBusinessAcct(soap, tag ? tag : "prodml22:OwnershipBusinessAcct", -2, this, type)) + if (soap_out_prodml23__OwnershipBusinessAcct(soap, tag ? tag : "prodml23:OwnershipBusinessAcct", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OwnershipBusinessAcct::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OwnershipBusinessAcct::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OwnershipBusinessAcct(soap, this, tag, type); + return soap_get_prodml23__OwnershipBusinessAcct(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OwnershipBusinessAcct * SOAP_FMAC4 soap_get_prodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OwnershipBusinessAcct * SOAP_FMAC4 soap_get_prodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OwnershipBusinessAcct(soap, tag, p, type))) + if ((p = soap_in_prodml23__OwnershipBusinessAcct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__IntegerData::soap_default(struct soap *soap) +void prodml23__IntegerData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractMeasureData::soap_default(soap); - this->prodml22__IntegerData::IntegerValue = NULL; + this->prodml23__AbstractMeasureData::soap_default(soap); + this->prodml23__IntegerData::IntegerValue = NULL; } -void prodml22__IntegerData::soap_serialize(struct soap *soap) const +void prodml23__IntegerData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__IntegerQualifiedCount(soap, &this->prodml22__IntegerData::IntegerValue); - this->prodml22__AbstractMeasureData::soap_serialize(soap); + soap_serialize_PointerToprodml23__IntegerQualifiedCount(soap, &this->prodml23__IntegerData::IntegerValue); + this->prodml23__AbstractMeasureData::soap_serialize(soap); #endif } -int prodml22__IntegerData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__IntegerData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__IntegerData(soap, tag, id, this, type); + return soap_out_prodml23__IntegerData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__IntegerData(struct soap *soap, const char *tag, int id, const prodml22__IntegerData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__IntegerData(struct soap *soap, const char *tag, int id, const prodml23__IntegerData *a, const char *type) { if (!type) - type = "prodml22:IntegerData"; + type = "prodml23:IntegerData"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData), type ? type : "prodml22:IntegerData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData), type ? type : "prodml23:IntegerData")) return soap->error; - if (!a->prodml22__IntegerData::IntegerValue) - { if (soap_element_empty(soap, "prodml22:IntegerValue", 0, NULL)) + if (!a->prodml23__IntegerData::IntegerValue) + { if (soap_element_empty(soap, "prodml23:IntegerValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__IntegerQualifiedCount(soap, "prodml22:IntegerValue", -1, &a->prodml22__IntegerData::IntegerValue, "prodml22:IntegerQualifiedCount")) + else if (soap_out_PointerToprodml23__IntegerQualifiedCount(soap, "prodml23:IntegerValue", -1, &a->prodml23__IntegerData::IntegerValue, "prodml23:IntegerQualifiedCount")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__IntegerData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__IntegerData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__IntegerData(soap, tag, this, type); + return soap_in_prodml23__IntegerData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_in_prodml22__IntegerData(struct soap *soap, const char *tag, prodml22__IntegerData *a, const char *type) +SOAP_FMAC3 prodml23__IntegerData * SOAP_FMAC4 soap_in_prodml23__IntegerData(struct soap *soap, const char *tag, prodml23__IntegerData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__IntegerData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData, sizeof(prodml22__IntegerData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__IntegerData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData, sizeof(prodml23__IntegerData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__IntegerData *)a->soap_in(soap, tag, type); + return (prodml23__IntegerData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -172620,7 +172615,7 @@ SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_in_prodml22__IntegerData(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_IntegerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__IntegerQualifiedCount(soap, "prodml22:IntegerValue", &a->prodml22__IntegerData::IntegerValue, "prodml22:IntegerQualifiedCount")) + { if (soap_in_PointerToprodml23__IntegerQualifiedCount(soap, "prodml23:IntegerValue", &a->prodml23__IntegerData::IntegerValue, "prodml23:IntegerQualifiedCount")) { soap_flag_IntegerValue1--; continue; } @@ -172634,7 +172629,7 @@ SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_in_prodml22__IntegerData(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__IntegerData::IntegerValue)) + if ((!a->prodml23__IntegerData::IntegerValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -172644,35 +172639,35 @@ SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_in_prodml22__IntegerData(stru return NULL; } else - { a = (prodml22__IntegerData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData, sizeof(prodml22__IntegerData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__IntegerData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData, sizeof(prodml23__IntegerData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__IntegerData * SOAP_FMAC2 soap_instantiate_prodml22__IntegerData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__IntegerData * SOAP_FMAC2 soap_instantiate_prodml23__IntegerData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__IntegerData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__IntegerData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__IntegerData *p; - size_t k = sizeof(prodml22__IntegerData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData, n, gsoap_eml2_3_fdelete); + prodml23__IntegerData *p; + size_t k = sizeof(prodml23__IntegerData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__IntegerData); + { p = SOAP_NEW(soap, prodml23__IntegerData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__IntegerData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__IntegerData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__IntegerData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__IntegerData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -172682,92 +172677,92 @@ SOAP_FMAC1 prodml22__IntegerData * SOAP_FMAC2 soap_instantiate_prodml22__Integer return p; } -int prodml22__IntegerData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__IntegerData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__IntegerData(soap, tag ? tag : "prodml22:IntegerData", -2, this, type)) + if (soap_out_prodml23__IntegerData(soap, tag ? tag : "prodml23:IntegerData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__IntegerData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__IntegerData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__IntegerData(soap, this, tag, type); + return soap_get_prodml23__IntegerData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_get_prodml22__IntegerData(struct soap *soap, prodml22__IntegerData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__IntegerData * SOAP_FMAC4 soap_get_prodml23__IntegerData(struct soap *soap, prodml23__IntegerData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__IntegerData(soap, tag, p, type))) + if ((p = soap_in_prodml23__IntegerData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FacilityUnitPort::soap_default(struct soap *soap) +void prodml23__FacilityUnitPort::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRelatedFacilityObject::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__FacilityUnitPort::PortReference); - soap_default_eml23__String64(soap, &this->prodml22__FacilityUnitPort::UnitReference); - this->prodml22__FacilityUnitPort::NetworkReference = NULL; + this->prodml23__AbstractRelatedFacilityObject::soap_default(soap); + soap_default_eml23__String64(soap, &this->prodml23__FacilityUnitPort::PortReference); + soap_default_eml23__String64(soap, &this->prodml23__FacilityUnitPort::UnitReference); + this->prodml23__FacilityUnitPort::NetworkReference = NULL; } -void prodml22__FacilityUnitPort::soap_serialize(struct soap *soap) const +void prodml23__FacilityUnitPort::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FacilityUnitPort::PortReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FacilityUnitPort::PortReference); - soap_embedded(soap, &this->prodml22__FacilityUnitPort::UnitReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FacilityUnitPort::UnitReference); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FacilityUnitPort::NetworkReference); - this->prodml22__AbstractRelatedFacilityObject::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FacilityUnitPort::PortReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FacilityUnitPort::PortReference); + soap_embedded(soap, &this->prodml23__FacilityUnitPort::UnitReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FacilityUnitPort::UnitReference); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FacilityUnitPort::NetworkReference); + this->prodml23__AbstractRelatedFacilityObject::soap_serialize(soap); #endif } -int prodml22__FacilityUnitPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FacilityUnitPort::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FacilityUnitPort(soap, tag, id, this, type); + return soap_out_prodml23__FacilityUnitPort(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityUnitPort(struct soap *soap, const char *tag, int id, const prodml22__FacilityUnitPort *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityUnitPort(struct soap *soap, const char *tag, int id, const prodml23__FacilityUnitPort *a, const char *type) { if (!type) - type = "prodml22:FacilityUnitPort"; + type = "prodml23:FacilityUnitPort"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort), type ? type : "prodml22:FacilityUnitPort")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort), type ? type : "prodml23:FacilityUnitPort")) return soap->error; - if (!a->prodml22__AbstractRelatedFacilityObject::FacilityParent) - { if (soap_element_empty(soap, "prodml22:FacilityParent", 0, NULL)) + if (!a->prodml23__AbstractRelatedFacilityObject::FacilityParent) + { if (soap_element_empty(soap, "prodml23:FacilityParent", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FacilityParent(soap, "prodml22:FacilityParent", -1, &a->prodml22__AbstractRelatedFacilityObject::FacilityParent, "prodml22:FacilityParent")) + else if (soap_out_PointerToprodml23__FacilityParent(soap, "prodml23:FacilityParent", -1, &a->prodml23__AbstractRelatedFacilityObject::FacilityParent, "prodml23:FacilityParent")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:PortReference", -1, &a->prodml22__FacilityUnitPort::PortReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:PortReference", -1, &a->prodml23__FacilityUnitPort::PortReference, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:UnitReference", -1, &a->prodml22__FacilityUnitPort::UnitReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:UnitReference", -1, &a->prodml23__FacilityUnitPort::UnitReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:NetworkReference", -1, &a->prodml22__FacilityUnitPort::NetworkReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:NetworkReference", -1, &a->prodml23__FacilityUnitPort::NetworkReference, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FacilityUnitPort::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityUnitPort::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FacilityUnitPort(soap, tag, this, type); + return soap_in_prodml23__FacilityUnitPort(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml22__FacilityUnitPort(struct soap *soap, const char *tag, prodml22__FacilityUnitPort *a, const char *type) +SOAP_FMAC3 prodml23__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml23__FacilityUnitPort(struct soap *soap, const char *tag, prodml23__FacilityUnitPort *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FacilityUnitPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort, sizeof(prodml22__FacilityUnitPort), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FacilityUnitPort*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort, sizeof(prodml23__FacilityUnitPort), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FacilityUnitPort *)a->soap_in(soap, tag, type); + return (prodml23__FacilityUnitPort *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -172780,25 +172775,25 @@ SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml22__FacilityUni for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FacilityParent2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityParent(soap, "prodml22:FacilityParent", &a->prodml22__AbstractRelatedFacilityObject::FacilityParent, "prodml22:FacilityParent")) + { if (soap_in_PointerToprodml23__FacilityParent(soap, "prodml23:FacilityParent", &a->prodml23__AbstractRelatedFacilityObject::FacilityParent, "prodml23:FacilityParent")) { soap_flag_FacilityParent2--; continue; } } if (soap_flag_PortReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:PortReference", &a->prodml22__FacilityUnitPort::PortReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:PortReference", &a->prodml23__FacilityUnitPort::PortReference, "eml23:String64")) { soap_flag_PortReference1--; continue; } } if (soap_flag_UnitReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:UnitReference", &a->prodml22__FacilityUnitPort::UnitReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:UnitReference", &a->prodml23__FacilityUnitPort::UnitReference, "eml23:String64")) { soap_flag_UnitReference1--; continue; } } if (soap_flag_NetworkReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:NetworkReference", &a->prodml22__FacilityUnitPort::NetworkReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:NetworkReference", &a->prodml23__FacilityUnitPort::NetworkReference, "eml23:String64")) { soap_flag_NetworkReference1--; continue; } @@ -172812,7 +172807,7 @@ SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml22__FacilityUni } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractRelatedFacilityObject::FacilityParent || soap_flag_PortReference1 > 0 || soap_flag_UnitReference1 > 0)) + if ((!a->prodml23__AbstractRelatedFacilityObject::FacilityParent || soap_flag_PortReference1 > 0 || soap_flag_UnitReference1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -172822,35 +172817,35 @@ SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml22__FacilityUni return NULL; } else - { a = (prodml22__FacilityUnitPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort, sizeof(prodml22__FacilityUnitPort), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FacilityUnitPort *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort, sizeof(prodml23__FacilityUnitPort), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml22__FacilityUnitPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml23__FacilityUnitPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FacilityUnitPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FacilityUnitPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FacilityUnitPort *p; - size_t k = sizeof(prodml22__FacilityUnitPort); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort, n, gsoap_eml2_3_fdelete); + prodml23__FacilityUnitPort *p; + size_t k = sizeof(prodml23__FacilityUnitPort); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FacilityUnitPort); + { p = SOAP_NEW(soap, prodml23__FacilityUnitPort); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FacilityUnitPort, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FacilityUnitPort, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FacilityUnitPort location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FacilityUnitPort location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -172860,94 +172855,94 @@ SOAP_FMAC1 prodml22__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml22__Fa return p; } -int prodml22__FacilityUnitPort::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FacilityUnitPort::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FacilityUnitPort(soap, tag ? tag : "prodml22:FacilityUnitPort", -2, this, type)) + if (soap_out_prodml23__FacilityUnitPort(soap, tag ? tag : "prodml23:FacilityUnitPort", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FacilityUnitPort::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityUnitPort::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FacilityUnitPort(soap, this, tag, type); + return soap_get_prodml23__FacilityUnitPort(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_get_prodml22__FacilityUnitPort(struct soap *soap, prodml22__FacilityUnitPort *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityUnitPort * SOAP_FMAC4 soap_get_prodml23__FacilityUnitPort(struct soap *soap, prodml23__FacilityUnitPort *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilityUnitPort(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilityUnitPort(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FacilityParent::soap_default(struct soap *soap) +void prodml23__FacilityParent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRelatedFacilityObject::soap_default(soap); - this->prodml22__FacilityParent::Name = NULL; - this->prodml22__FacilityParent::FacilityParent1 = NULL; - this->prodml22__FacilityParent::FacilityParent2 = NULL; + this->prodml23__AbstractRelatedFacilityObject::soap_default(soap); + this->prodml23__FacilityParent::Name = NULL; + this->prodml23__FacilityParent::FacilityParent1 = NULL; + this->prodml23__FacilityParent::FacilityParent2 = NULL; } -void prodml22__FacilityParent::soap_serialize(struct soap *soap) const +void prodml23__FacilityParent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__FacilityParent::Name); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__FacilityParent::FacilityParent1); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__FacilityParent::FacilityParent2); - this->prodml22__AbstractRelatedFacilityObject::soap_serialize(soap); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__FacilityParent::Name); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__FacilityParent::FacilityParent1); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__FacilityParent::FacilityParent2); + this->prodml23__AbstractRelatedFacilityObject::soap_serialize(soap); #endif } -int prodml22__FacilityParent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FacilityParent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FacilityParent(soap, tag, id, this, type); + return soap_out_prodml23__FacilityParent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityParent(struct soap *soap, const char *tag, int id, const prodml22__FacilityParent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityParent(struct soap *soap, const char *tag, int id, const prodml23__FacilityParent *a, const char *type) { if (!type) - type = "prodml22:FacilityParent"; + type = "prodml23:FacilityParent"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent), type ? type : "prodml22:FacilityParent")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent), type ? type : "prodml23:FacilityParent")) return soap->error; - if (!a->prodml22__AbstractRelatedFacilityObject::FacilityParent) - { if (soap_element_empty(soap, "prodml22:FacilityParent", 0, NULL)) + if (!a->prodml23__AbstractRelatedFacilityObject::FacilityParent) + { if (soap_element_empty(soap, "prodml23:FacilityParent", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FacilityParent(soap, "prodml22:FacilityParent", -1, &a->prodml22__AbstractRelatedFacilityObject::FacilityParent, "prodml22:FacilityParent")) + else if (soap_out_PointerToprodml23__FacilityParent(soap, "prodml23:FacilityParent", -1, &a->prodml23__AbstractRelatedFacilityObject::FacilityParent, "prodml23:FacilityParent")) return soap->error; - if (!a->prodml22__FacilityParent::Name) - { if (soap_element_empty(soap, "prodml22:Name", 0, NULL)) + if (!a->prodml23__FacilityParent::Name) + { if (soap_element_empty(soap, "prodml23:Name", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Name", -1, &a->prodml22__FacilityParent::Name, "prodml22:FacilityIdentifierStruct")) + else if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Name", -1, &a->prodml23__FacilityParent::Name, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent1", -1, &a->prodml22__FacilityParent::FacilityParent1, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent1", -1, &a->prodml23__FacilityParent::FacilityParent1, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent2", -1, &a->prodml22__FacilityParent::FacilityParent2, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent2", -1, &a->prodml23__FacilityParent::FacilityParent2, "prodml23:FacilityIdentifierStruct")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FacilityParent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityParent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FacilityParent(soap, tag, this, type); + return soap_in_prodml23__FacilityParent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_in_prodml22__FacilityParent(struct soap *soap, const char *tag, prodml22__FacilityParent *a, const char *type) +SOAP_FMAC3 prodml23__FacilityParent * SOAP_FMAC4 soap_in_prodml23__FacilityParent(struct soap *soap, const char *tag, prodml23__FacilityParent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FacilityParent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent, sizeof(prodml22__FacilityParent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FacilityParent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent, sizeof(prodml23__FacilityParent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FacilityParent *)a->soap_in(soap, tag, type); + return (prodml23__FacilityParent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -172960,25 +172955,25 @@ SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_in_prodml22__FacilityParen for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FacilityParent2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityParent(soap, "prodml22:FacilityParent", &a->prodml22__AbstractRelatedFacilityObject::FacilityParent, "prodml22:FacilityParent")) + { if (soap_in_PointerToprodml23__FacilityParent(soap, "prodml23:FacilityParent", &a->prodml23__AbstractRelatedFacilityObject::FacilityParent, "prodml23:FacilityParent")) { soap_flag_FacilityParent2--; continue; } } if (soap_flag_Name1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Name", &a->prodml22__FacilityParent::Name, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Name", &a->prodml23__FacilityParent::Name, "prodml23:FacilityIdentifierStruct")) { soap_flag_Name1--; continue; } } if (soap_flag_FacilityParent11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent1", &a->prodml22__FacilityParent::FacilityParent1, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent1", &a->prodml23__FacilityParent::FacilityParent1, "prodml23:FacilityIdentifierStruct")) { soap_flag_FacilityParent11--; continue; } } if (soap_flag_FacilityParent21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:FacilityParent2", &a->prodml22__FacilityParent::FacilityParent2, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:FacilityParent2", &a->prodml23__FacilityParent::FacilityParent2, "prodml23:FacilityIdentifierStruct")) { soap_flag_FacilityParent21--; continue; } @@ -172992,7 +172987,7 @@ SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_in_prodml22__FacilityParen } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractRelatedFacilityObject::FacilityParent || !a->prodml22__FacilityParent::Name)) + if ((!a->prodml23__AbstractRelatedFacilityObject::FacilityParent || !a->prodml23__FacilityParent::Name)) { soap->error = SOAP_OCCURS; return NULL; } @@ -173002,35 +172997,35 @@ SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_in_prodml22__FacilityParen return NULL; } else - { a = (prodml22__FacilityParent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent, sizeof(prodml22__FacilityParent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FacilityParent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent, sizeof(prodml23__FacilityParent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml22__FacilityParent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml23__FacilityParent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FacilityParent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FacilityParent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FacilityParent *p; - size_t k = sizeof(prodml22__FacilityParent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent, n, gsoap_eml2_3_fdelete); + prodml23__FacilityParent *p; + size_t k = sizeof(prodml23__FacilityParent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FacilityParent); + { p = SOAP_NEW(soap, prodml23__FacilityParent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FacilityParent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FacilityParent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FacilityParent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FacilityParent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -173040,98 +173035,98 @@ SOAP_FMAC1 prodml22__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml22__Faci return p; } -int prodml22__FacilityParent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FacilityParent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FacilityParent(soap, tag ? tag : "prodml22:FacilityParent", -2, this, type)) + if (soap_out_prodml23__FacilityParent(soap, tag ? tag : "prodml23:FacilityParent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FacilityParent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityParent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FacilityParent(soap, this, tag, type); + return soap_get_prodml23__FacilityParent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_get_prodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityParent * SOAP_FMAC4 soap_get_prodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilityParent(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilityParent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CurveDefinition::soap_default(struct soap *soap) +void prodml23__CurveDefinition::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__CurveDefinition::Order); - soap_default_eml23__String64(soap, &this->prodml22__CurveDefinition::Parameter); - this->prodml22__CurveDefinition::IsIndex = NULL; - soap_default_eml23__MeasureClass(soap, &this->prodml22__CurveDefinition::MeasureClass); - soap_default_eml23__UomEnum(soap, &this->prodml22__CurveDefinition::Unit); - soap_default_eml23__String64(soap, &this->prodml22__CurveDefinition::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__CurveDefinition::Order); + soap_default_eml23__String64(soap, &this->prodml23__CurveDefinition::Parameter); + this->prodml23__CurveDefinition::IsIndex = NULL; + soap_default_eml23__MeasureClass(soap, &this->prodml23__CurveDefinition::MeasureClass); + soap_default_eml23__UomEnum(soap, &this->prodml23__CurveDefinition::Unit); + soap_default_eml23__String64(soap, &this->prodml23__CurveDefinition::uid); } -void prodml22__CurveDefinition::soap_serialize(struct soap *soap) const +void prodml23__CurveDefinition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__CurveDefinition::Order, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_embedded(soap, &this->prodml22__CurveDefinition::Parameter, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__CurveDefinition::Parameter); - soap_serialize_PointerTobool(soap, &this->prodml22__CurveDefinition::IsIndex); - soap_embedded(soap, &this->prodml22__CurveDefinition::MeasureClass, SOAP_TYPE_gsoap_eml2_3_eml23__MeasureClass); - soap_embedded(soap, &this->prodml22__CurveDefinition::Unit, SOAP_TYPE_gsoap_eml2_3_eml23__UomEnum); - soap_serialize_eml23__UomEnum(soap, &this->prodml22__CurveDefinition::Unit); + soap_embedded(soap, &this->prodml23__CurveDefinition::Order, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_embedded(soap, &this->prodml23__CurveDefinition::Parameter, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__CurveDefinition::Parameter); + soap_serialize_PointerTobool(soap, &this->prodml23__CurveDefinition::IsIndex); + soap_embedded(soap, &this->prodml23__CurveDefinition::MeasureClass, SOAP_TYPE_gsoap_eml2_3_eml23__MeasureClass); + soap_embedded(soap, &this->prodml23__CurveDefinition::Unit, SOAP_TYPE_gsoap_eml2_3_eml23__UomEnum); + soap_serialize_eml23__UomEnum(soap, &this->prodml23__CurveDefinition::Unit); #endif } -int prodml22__CurveDefinition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CurveDefinition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CurveDefinition(soap, tag, id, this, type); + return soap_out_prodml23__CurveDefinition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CurveDefinition(struct soap *soap, const char *tag, int id, const prodml22__CurveDefinition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CurveDefinition(struct soap *soap, const char *tag, int id, const prodml23__CurveDefinition *a, const char *type) { if (!type) - type = "prodml22:CurveDefinition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__CurveDefinition*)a)->uid), 1); + type = "prodml23:CurveDefinition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__CurveDefinition*)a)->uid), 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_gsoap_eml2_3_prodml22__CurveDefinition), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:Order", -1, &a->prodml22__CurveDefinition::Order, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:Order", -1, &a->prodml23__CurveDefinition::Order, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Parameter", -1, &a->prodml22__CurveDefinition::Parameter, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Parameter", -1, &a->prodml23__CurveDefinition::Parameter, "eml23:String64")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:IsIndex", -1, &a->prodml22__CurveDefinition::IsIndex, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:IsIndex", -1, &a->prodml23__CurveDefinition::IsIndex, "xsd:boolean")) return soap->error; - if (soap_out_eml23__MeasureClass(soap, "prodml22:MeasureClass", -1, &a->prodml22__CurveDefinition::MeasureClass, "eml23:MeasureClass")) + if (soap_out_eml23__MeasureClass(soap, "prodml23:MeasureClass", -1, &a->prodml23__CurveDefinition::MeasureClass, "eml23:MeasureClass")) return soap->error; - if (soap_out_eml23__UomEnum(soap, "prodml22:Unit", -1, &a->prodml22__CurveDefinition::Unit, "eml23:UomEnum")) + if (soap_out_eml23__UomEnum(soap, "prodml23:Unit", -1, &a->prodml23__CurveDefinition::Unit, "eml23:UomEnum")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CurveDefinition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CurveDefinition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CurveDefinition(soap, tag, this, type); + return soap_in_prodml23__CurveDefinition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CurveDefinition * SOAP_FMAC4 soap_in_prodml22__CurveDefinition(struct soap *soap, const char *tag, prodml22__CurveDefinition *a, const char *type) +SOAP_FMAC3 prodml23__CurveDefinition * SOAP_FMAC4 soap_in_prodml23__CurveDefinition(struct soap *soap, const char *tag, prodml23__CurveDefinition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CurveDefinition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, sizeof(prodml22__CurveDefinition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CurveDefinition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, sizeof(prodml23__CurveDefinition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CurveDefinition *)a->soap_in(soap, tag, type); + return (prodml23__CurveDefinition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__CurveDefinition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__CurveDefinition*)a)->uid)) return NULL; size_t soap_flag_Order1 = 1; size_t soap_flag_Parameter1 = 1; @@ -173143,31 +173138,31 @@ SOAP_FMAC3 prodml22__CurveDefinition * SOAP_FMAC4 soap_in_prodml22__CurveDefinit for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Order1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:Order", &a->prodml22__CurveDefinition::Order, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:Order", &a->prodml23__CurveDefinition::Order, "eml23:NonNegativeLong")) { soap_flag_Order1--; continue; } } if (soap_flag_Parameter1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Parameter", &a->prodml22__CurveDefinition::Parameter, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Parameter", &a->prodml23__CurveDefinition::Parameter, "eml23:String64")) { soap_flag_Parameter1--; continue; } } if (soap_flag_IsIndex1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:IsIndex", &a->prodml22__CurveDefinition::IsIndex, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:IsIndex", &a->prodml23__CurveDefinition::IsIndex, "xsd:boolean")) { soap_flag_IsIndex1--; continue; } } if (soap_flag_MeasureClass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__MeasureClass(soap, "prodml22:MeasureClass", &a->prodml22__CurveDefinition::MeasureClass, "eml23:MeasureClass")) + { if (soap_in_eml23__MeasureClass(soap, "prodml23:MeasureClass", &a->prodml23__CurveDefinition::MeasureClass, "eml23:MeasureClass")) { soap_flag_MeasureClass1--; continue; } } if (soap_flag_Unit1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__UomEnum(soap, "prodml22:Unit", &a->prodml22__CurveDefinition::Unit, "eml23:UomEnum")) + { if (soap_in_eml23__UomEnum(soap, "prodml23:Unit", &a->prodml23__CurveDefinition::Unit, "eml23:UomEnum")) { soap_flag_Unit1--; continue; } @@ -173191,35 +173186,35 @@ SOAP_FMAC3 prodml22__CurveDefinition * SOAP_FMAC4 soap_in_prodml22__CurveDefinit return NULL; } else - { a = (prodml22__CurveDefinition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, sizeof(prodml22__CurveDefinition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CurveDefinition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, sizeof(prodml23__CurveDefinition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml22__CurveDefinition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml23__CurveDefinition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CurveDefinition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CurveDefinition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CurveDefinition *p; - size_t k = sizeof(prodml22__CurveDefinition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, n, gsoap_eml2_3_fdelete); + prodml23__CurveDefinition *p; + size_t k = sizeof(prodml23__CurveDefinition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CurveDefinition); + { p = SOAP_NEW(soap, prodml23__CurveDefinition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CurveDefinition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CurveDefinition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CurveDefinition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CurveDefinition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -173229,97 +173224,97 @@ SOAP_FMAC1 prodml22__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml22__Cur return p; } -int prodml22__CurveDefinition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CurveDefinition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CurveDefinition(soap, tag ? tag : "prodml22:CurveDefinition", -2, this, type)) + if (soap_out_prodml23__CurveDefinition(soap, tag ? tag : "prodml23:CurveDefinition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CurveDefinition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CurveDefinition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CurveDefinition(soap, this, tag, type); + return soap_get_prodml23__CurveDefinition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CurveDefinition * SOAP_FMAC4 soap_get_prodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CurveDefinition * SOAP_FMAC4 soap_get_prodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CurveDefinition(soap, tag, p, type))) + if ((p = soap_in_prodml23__CurveDefinition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CurveData::soap_default(struct soap *soap) +void prodml23__CurveData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractMeasureData::soap_default(soap); - soap_default_std__vectorTemplateOfeml23__PositiveLong(soap, &this->prodml22__CurveData::Index); - soap_default_std__vectorTemplateOfdouble(soap, &this->prodml22__CurveData::Value); - soap_default_eml23__String64(soap, &this->prodml22__CurveData::uid); + this->prodml23__AbstractMeasureData::soap_default(soap); + soap_default_std__vectorTemplateOfeml23__PositiveLong(soap, &this->prodml23__CurveData::Index); + soap_default_std__vectorTemplateOfdouble(soap, &this->prodml23__CurveData::Value); + soap_default_eml23__String64(soap, &this->prodml23__CurveData::uid); } -void prodml22__CurveData::soap_serialize(struct soap *soap) const +void prodml23__CurveData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfeml23__PositiveLong(soap, &this->prodml22__CurveData::Index); - soap_serialize_std__vectorTemplateOfdouble(soap, &this->prodml22__CurveData::Value); - this->prodml22__AbstractMeasureData::soap_serialize(soap); + soap_serialize_std__vectorTemplateOfeml23__PositiveLong(soap, &this->prodml23__CurveData::Index); + soap_serialize_std__vectorTemplateOfdouble(soap, &this->prodml23__CurveData::Value); + this->prodml23__AbstractMeasureData::soap_serialize(soap); #endif } -int prodml22__CurveData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CurveData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CurveData(soap, tag, id, this, type); + return soap_out_prodml23__CurveData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CurveData(struct soap *soap, const char *tag, int id, const prodml22__CurveData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CurveData(struct soap *soap, const char *tag, int id, const prodml23__CurveData *a, const char *type) { if (!type) - type = "prodml22:CurveData"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__CurveData*)a)->uid), 1); + type = "prodml23:CurveData"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__CurveData*)a)->uid), 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_gsoap_eml2_3_prodml22__CurveData), type ? type : "prodml22:CurveData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData), type ? type : "prodml23:CurveData")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__PositiveLong(soap, "prodml22:Index", -1, &a->prodml22__CurveData::Index, "eml23:PositiveLong")) + if (soap_out_std__vectorTemplateOfeml23__PositiveLong(soap, "prodml23:Index", -1, &a->prodml23__CurveData::Index, "eml23:PositiveLong")) return soap->error; - if (soap_out_std__vectorTemplateOfdouble(soap, "prodml22:Value", -1, &a->prodml22__CurveData::Value, "xsd:double")) + if (soap_out_std__vectorTemplateOfdouble(soap, "prodml23:Value", -1, &a->prodml23__CurveData::Value, "xsd:double")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CurveData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CurveData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CurveData(soap, tag, this, type); + return soap_in_prodml23__CurveData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CurveData * SOAP_FMAC4 soap_in_prodml22__CurveData(struct soap *soap, const char *tag, prodml22__CurveData *a, const char *type) +SOAP_FMAC3 prodml23__CurveData * SOAP_FMAC4 soap_in_prodml23__CurveData(struct soap *soap, const char *tag, prodml23__CurveData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CurveData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData, sizeof(prodml22__CurveData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CurveData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData, sizeof(prodml23__CurveData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CurveData *)a->soap_in(soap, tag, type); + return (prodml23__CurveData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__CurveData*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__CurveData*)a)->uid)) return NULL; if (soap->body && *soap->href != '#') { for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__PositiveLong(soap, "prodml22:Index", &a->prodml22__CurveData::Index, "eml23:PositiveLong")) + { if (soap_in_std__vectorTemplateOfeml23__PositiveLong(soap, "prodml23:Index", &a->prodml23__CurveData::Index, "eml23:PositiveLong")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfdouble(soap, "prodml22:Value", &a->prodml22__CurveData::Value, "xsd:double")) + { if (soap_in_std__vectorTemplateOfdouble(soap, "prodml23:Value", &a->prodml23__CurveData::Value, "xsd:double")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -173331,7 +173326,7 @@ SOAP_FMAC3 prodml22__CurveData * SOAP_FMAC4 soap_in_prodml22__CurveData(struct s } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__CurveData::Index.size() < 1 || a->prodml22__CurveData::Value.size() < 1)) + if ((a->prodml23__CurveData::Index.size() < 1 || a->prodml23__CurveData::Value.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -173341,35 +173336,35 @@ SOAP_FMAC3 prodml22__CurveData * SOAP_FMAC4 soap_in_prodml22__CurveData(struct s return NULL; } else - { a = (prodml22__CurveData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData, sizeof(prodml22__CurveData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CurveData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData, sizeof(prodml23__CurveData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CurveData * SOAP_FMAC2 soap_instantiate_prodml22__CurveData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CurveData * SOAP_FMAC2 soap_instantiate_prodml23__CurveData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CurveData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CurveData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CurveData *p; - size_t k = sizeof(prodml22__CurveData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData, n, gsoap_eml2_3_fdelete); + prodml23__CurveData *p; + size_t k = sizeof(prodml23__CurveData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CurveData); + { p = SOAP_NEW(soap, prodml23__CurveData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CurveData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CurveData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CurveData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CurveData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -173379,78 +173374,78 @@ SOAP_FMAC1 prodml22__CurveData * SOAP_FMAC2 soap_instantiate_prodml22__CurveData return p; } -int prodml22__CurveData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CurveData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CurveData(soap, tag ? tag : "prodml22:CurveData", -2, this, type)) + if (soap_out_prodml23__CurveData(soap, tag ? tag : "prodml23:CurveData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CurveData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CurveData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CurveData(soap, this, tag, type); + return soap_get_prodml23__CurveData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CurveData * SOAP_FMAC4 soap_get_prodml22__CurveData(struct soap *soap, prodml22__CurveData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CurveData * SOAP_FMAC4 soap_get_prodml23__CurveData(struct soap *soap, prodml23__CurveData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CurveData(soap, tag, p, type))) + if ((p = soap_in_prodml23__CurveData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractRelatedFacilityObject::soap_default(struct soap *soap) +void prodml23__AbstractRelatedFacilityObject::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRelatedFacilityObject::FacilityParent = NULL; + this->prodml23__AbstractRelatedFacilityObject::FacilityParent = NULL; } -void prodml22__AbstractRelatedFacilityObject::soap_serialize(struct soap *soap) const +void prodml23__AbstractRelatedFacilityObject::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FacilityParent(soap, &this->prodml22__AbstractRelatedFacilityObject::FacilityParent); + soap_serialize_PointerToprodml23__FacilityParent(soap, &this->prodml23__AbstractRelatedFacilityObject::FacilityParent); #endif } -int prodml22__AbstractRelatedFacilityObject::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractRelatedFacilityObject::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractRelatedFacilityObject(soap, tag, id, this, type); + return soap_out_prodml23__AbstractRelatedFacilityObject(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, int id, const prodml22__AbstractRelatedFacilityObject *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, int id, const prodml23__AbstractRelatedFacilityObject *a, const char *type) { if (!type) - type = "prodml22:AbstractRelatedFacilityObject"; + type = "prodml23:AbstractRelatedFacilityObject"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject), type)) return soap->error; - if (!a->prodml22__AbstractRelatedFacilityObject::FacilityParent) - { if (soap_element_empty(soap, "prodml22:FacilityParent", 0, NULL)) + if (!a->prodml23__AbstractRelatedFacilityObject::FacilityParent) + { if (soap_element_empty(soap, "prodml23:FacilityParent", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FacilityParent(soap, "prodml22:FacilityParent", -1, &a->prodml22__AbstractRelatedFacilityObject::FacilityParent, "prodml22:FacilityParent")) + else if (soap_out_PointerToprodml23__FacilityParent(soap, "prodml23:FacilityParent", -1, &a->prodml23__AbstractRelatedFacilityObject::FacilityParent, "prodml23:FacilityParent")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractRelatedFacilityObject::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractRelatedFacilityObject::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractRelatedFacilityObject(soap, tag, this, type); + return soap_in_prodml23__AbstractRelatedFacilityObject(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, prodml22__AbstractRelatedFacilityObject *a, const char *type) +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, prodml23__AbstractRelatedFacilityObject *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractRelatedFacilityObject*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject, sizeof(prodml22__AbstractRelatedFacilityObject), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractRelatedFacilityObject*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject, sizeof(prodml23__AbstractRelatedFacilityObject), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractRelatedFacilityObject *)a->soap_in(soap, tag, type); + return (prodml23__AbstractRelatedFacilityObject *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -173460,7 +173455,7 @@ SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FacilityParent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityParent(soap, "prodml22:FacilityParent", &a->prodml22__AbstractRelatedFacilityObject::FacilityParent, "prodml22:FacilityParent")) + { if (soap_in_PointerToprodml23__FacilityParent(soap, "prodml23:FacilityParent", &a->prodml23__AbstractRelatedFacilityObject::FacilityParent, "prodml23:FacilityParent")) { soap_flag_FacilityParent1--; continue; } @@ -173474,7 +173469,7 @@ SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml22 } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractRelatedFacilityObject::FacilityParent)) + if ((!a->prodml23__AbstractRelatedFacilityObject::FacilityParent)) { soap->error = SOAP_OCCURS; return NULL; } @@ -173484,39 +173479,39 @@ SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__AbstractRelatedFacilityObject *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject, sizeof(prodml22__AbstractRelatedFacilityObject), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractRelatedFacilityObject *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject, sizeof(prodml23__AbstractRelatedFacilityObject), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRelatedFacilityObject(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRelatedFacilityObject(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractRelatedFacilityObject(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractRelatedFacilityObject(%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, "prodml22:FacilityParent")) - return soap_instantiate_prodml22__FacilityParent(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FacilityUnitPort")) - return soap_instantiate_prodml22__FacilityUnitPort(soap, n, NULL, NULL, size); - prodml22__AbstractRelatedFacilityObject *p; - size_t k = sizeof(prodml22__AbstractRelatedFacilityObject); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FacilityParent")) + return soap_instantiate_prodml23__FacilityParent(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FacilityUnitPort")) + return soap_instantiate_prodml23__FacilityUnitPort(soap, n, NULL, NULL, size); + prodml23__AbstractRelatedFacilityObject *p; + size_t k = sizeof(prodml23__AbstractRelatedFacilityObject); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractRelatedFacilityObject); + { p = SOAP_NEW(soap, prodml23__AbstractRelatedFacilityObject); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractRelatedFacilityObject, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractRelatedFacilityObject, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractRelatedFacilityObject location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractRelatedFacilityObject location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -173526,75 +173521,75 @@ SOAP_FMAC1 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__AbstractRelatedFacilityObject::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractRelatedFacilityObject::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractRelatedFacilityObject(soap, tag ? tag : "prodml22:AbstractRelatedFacilityObject", -2, this, type)) + if (soap_out_prodml23__AbstractRelatedFacilityObject(soap, tag ? tag : "prodml23:AbstractRelatedFacilityObject", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractRelatedFacilityObject::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractRelatedFacilityObject::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractRelatedFacilityObject(soap, this, tag, type); + return soap_get_prodml23__AbstractRelatedFacilityObject(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_get_prodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_get_prodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractRelatedFacilityObject(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractRelatedFacilityObject(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractRefProductFlow::soap_default(struct soap *soap) +void prodml23__AbstractRefProductFlow::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow = -1; + this->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow = -1; } -void prodml22__AbstractRefProductFlow::soap_serialize(struct soap *soap) const +void prodml23__AbstractRefProductFlow::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize__prodml22__union_AbstractRefProductFlow(soap, this->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow, &this->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow); + soap_serialize__prodml23__union_AbstractRefProductFlow(soap, this->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow, &this->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow); #endif } -int prodml22__AbstractRefProductFlow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractRefProductFlow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractRefProductFlow(soap, tag, id, this, type); + return soap_out_prodml23__AbstractRefProductFlow(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractRefProductFlow(struct soap *soap, const char *tag, int id, const prodml22__AbstractRefProductFlow *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractRefProductFlow(struct soap *soap, const char *tag, int id, const prodml23__AbstractRefProductFlow *a, const char *type) { if (!type) - type = "prodml22:AbstractRefProductFlow"; + type = "prodml23:AbstractRefProductFlow"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow), type)) return soap->error; - if (soap_out__prodml22__union_AbstractRefProductFlow(soap, a->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow)) + if (soap_out__prodml23__union_AbstractRefProductFlow(soap, a->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow, &a->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractRefProductFlow::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractRefProductFlow::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractRefProductFlow(soap, tag, this, type); + return soap_in_prodml23__AbstractRefProductFlow(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractRefProductFlow * SOAP_FMAC4 soap_in_prodml22__AbstractRefProductFlow(struct soap *soap, const char *tag, prodml22__AbstractRefProductFlow *a, const char *type) +SOAP_FMAC3 prodml23__AbstractRefProductFlow * SOAP_FMAC4 soap_in_prodml23__AbstractRefProductFlow(struct soap *soap, const char *tag, prodml23__AbstractRefProductFlow *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractRefProductFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow, sizeof(prodml22__AbstractRefProductFlow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractRefProductFlow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow, sizeof(prodml23__AbstractRefProductFlow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; if (soap->alloced) a->soap_default(soap); if (!tag || *tag == '-' || (soap->body && *soap->href != '#')) { - if (!soap_in__prodml22__union_AbstractRefProductFlow(soap, &a->__union_AbstractRefProductFlow, &a->union_AbstractRefProductFlow)) + if (!soap_in__prodml23__union_AbstractRefProductFlow(soap, &a->__union_AbstractRefProductFlow, &a->union_AbstractRefProductFlow)) return NULL; if (tag && *tag != '-') { soap->error = soap_ignore_element(soap); @@ -173603,39 +173598,39 @@ SOAP_FMAC3 prodml22__AbstractRefProductFlow * SOAP_FMAC4 soap_in_prodml22__Abstr } } else - { a = (prodml22__AbstractRefProductFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow, sizeof(prodml22__AbstractRefProductFlow), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractRefProductFlow *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow, sizeof(prodml23__AbstractRefProductFlow), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRefProductFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRefProductFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractRefProductFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractRefProductFlow(%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, "prodml22:Parentfacility")) - return soap_instantiate_prodml22__Parentfacility(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ReferenceFlow")) - return soap_instantiate_prodml22__ReferenceFlow(soap, n, NULL, NULL, size); - prodml22__AbstractRefProductFlow *p; - size_t k = sizeof(prodml22__AbstractRefProductFlow); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Parentfacility")) + return soap_instantiate_prodml23__Parentfacility(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ReferenceFlow")) + return soap_instantiate_prodml23__ReferenceFlow(soap, n, NULL, NULL, size); + prodml23__AbstractRefProductFlow *p; + size_t k = sizeof(prodml23__AbstractRefProductFlow); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractRefProductFlow); + { p = SOAP_NEW(soap, prodml23__AbstractRefProductFlow); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractRefProductFlow, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractRefProductFlow, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractRefProductFlow location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractRefProductFlow location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -173645,70 +173640,70 @@ SOAP_FMAC1 prodml22__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__AbstractRefProductFlow::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractRefProductFlow::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractRefProductFlow(soap, tag ? tag : "prodml22:AbstractRefProductFlow", -2, this, type)) + if (soap_out_prodml23__AbstractRefProductFlow(soap, tag ? tag : "prodml23:AbstractRefProductFlow", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractRefProductFlow::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractRefProductFlow::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractRefProductFlow(soap, this, tag, type); + return soap_get_prodml23__AbstractRefProductFlow(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractRefProductFlow * SOAP_FMAC4 soap_get_prodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractRefProductFlow * SOAP_FMAC4 soap_get_prodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractRefProductFlow(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractRefProductFlow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractMeasureData::soap_default(struct soap *soap) +void prodml23__AbstractMeasureData::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractMeasureData::soap_serialize(struct soap *soap) const +void prodml23__AbstractMeasureData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractMeasureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractMeasureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractMeasureData(soap, tag, id, this, type); + return soap_out_prodml23__AbstractMeasureData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractMeasureData(struct soap *soap, const char *tag, int id, const prodml22__AbstractMeasureData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractMeasureData(struct soap *soap, const char *tag, int id, const prodml23__AbstractMeasureData *a, const char *type) { if (!type) - type = "prodml22:AbstractMeasureData"; + type = "prodml23:AbstractMeasureData"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractMeasureData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractMeasureData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractMeasureData(soap, tag, this, type); + return soap_in_prodml23__AbstractMeasureData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractMeasureData * SOAP_FMAC4 soap_in_prodml22__AbstractMeasureData(struct soap *soap, const char *tag, prodml22__AbstractMeasureData *a, const char *type) +SOAP_FMAC3 prodml23__AbstractMeasureData * SOAP_FMAC4 soap_in_prodml23__AbstractMeasureData(struct soap *soap, const char *tag, prodml23__AbstractMeasureData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractMeasureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, sizeof(prodml22__AbstractMeasureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractMeasureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, sizeof(prodml23__AbstractMeasureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractMeasureData *)a->soap_in(soap, tag, type); + return (prodml23__AbstractMeasureData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -173727,47 +173722,47 @@ SOAP_FMAC3 prodml22__AbstractMeasureData * SOAP_FMAC4 soap_in_prodml22__Abstract return NULL; } else - { a = (prodml22__AbstractMeasureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, sizeof(prodml22__AbstractMeasureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractMeasureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, sizeof(prodml23__AbstractMeasureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractMeasureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractMeasureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractMeasureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractMeasureData(%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, "prodml22:GeneralQualifiedMeasure")) - return soap_instantiate_prodml22__GeneralQualifiedMeasure(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:IntegerQualifiedCount")) - return soap_instantiate_prodml22__IntegerQualifiedCount(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:KindQualifiedString")) - return soap_instantiate_prodml22__KindQualifiedString(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CurveData")) - return soap_instantiate_prodml22__CurveData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:IntegerData")) - return soap_instantiate_prodml22__IntegerData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:StringData")) - return soap_instantiate_prodml22__StringData(soap, n, NULL, NULL, size); - prodml22__AbstractMeasureData *p; - size_t k = sizeof(prodml22__AbstractMeasureData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:GeneralQualifiedMeasure")) + return soap_instantiate_prodml23__GeneralQualifiedMeasure(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:IntegerQualifiedCount")) + return soap_instantiate_prodml23__IntegerQualifiedCount(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:KindQualifiedString")) + return soap_instantiate_prodml23__KindQualifiedString(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CurveData")) + return soap_instantiate_prodml23__CurveData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:IntegerData")) + return soap_instantiate_prodml23__IntegerData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:StringData")) + return soap_instantiate_prodml23__StringData(soap, n, NULL, NULL, size); + prodml23__AbstractMeasureData *p; + size_t k = sizeof(prodml23__AbstractMeasureData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractMeasureData); + { p = SOAP_NEW(soap, prodml23__AbstractMeasureData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractMeasureData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractMeasureData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractMeasureData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractMeasureData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -173777,206 +173772,206 @@ SOAP_FMAC1 prodml22__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__AbstractMeasureData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractMeasureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractMeasureData(soap, tag ? tag : "prodml22:AbstractMeasureData", -2, this, type)) + if (soap_out_prodml23__AbstractMeasureData(soap, tag ? tag : "prodml23:AbstractMeasureData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractMeasureData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractMeasureData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractMeasureData(soap, this, tag, type); + return soap_get_prodml23__AbstractMeasureData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractMeasureData * SOAP_FMAC4 soap_get_prodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractMeasureData * SOAP_FMAC4 soap_get_prodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractMeasureData(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractMeasureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CommonPropertiesProductVolume::soap_default(struct soap *soap) +void prodml23__CommonPropertiesProductVolume::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__CommonPropertiesProductVolume::Gor = NULL; - this->prodml22__CommonPropertiesProductVolume::GorMTD = NULL; - this->prodml22__CommonPropertiesProductVolume::GasLiquidRatio = NULL; - this->prodml22__CommonPropertiesProductVolume::WaterConcMass = NULL; - this->prodml22__CommonPropertiesProductVolume::WaterConcVol = NULL; - this->prodml22__CommonPropertiesProductVolume::Atmosphere = NULL; - this->prodml22__CommonPropertiesProductVolume::Temp = NULL; - this->prodml22__CommonPropertiesProductVolume::Pres = NULL; - this->prodml22__CommonPropertiesProductVolume::AbsoluteMinPres = NULL; - this->prodml22__CommonPropertiesProductVolume::Mass = NULL; - this->prodml22__CommonPropertiesProductVolume::Work = NULL; - this->prodml22__CommonPropertiesProductVolume::Efficiency = NULL; - this->prodml22__CommonPropertiesProductVolume::Rvp = NULL; - this->prodml22__CommonPropertiesProductVolume::Tvp = NULL; - this->prodml22__CommonPropertiesProductVolume::Bsw = NULL; - this->prodml22__CommonPropertiesProductVolume::BswPrevious = NULL; - this->prodml22__CommonPropertiesProductVolume::DensityFlowRate = NULL; - this->prodml22__CommonPropertiesProductVolume::Concentration = NULL; - this->prodml22__CommonPropertiesProductVolume::MolecularWeight = NULL; - this->prodml22__CommonPropertiesProductVolume::WeightPercent = NULL; - this->prodml22__CommonPropertiesProductVolume::MolePercent = NULL; - this->prodml22__CommonPropertiesProductVolume::MoleAmt = NULL; - this->prodml22__CommonPropertiesProductVolume::Sg = NULL; - this->prodml22__CommonPropertiesProductVolume::HcDewpoint = NULL; - this->prodml22__CommonPropertiesProductVolume::WaterDewpoint = NULL; - this->prodml22__CommonPropertiesProductVolume::WobbeIndex = NULL; - this->prodml22__CommonPropertiesProductVolume::GrossCalorificValueStd = NULL; - this->prodml22__CommonPropertiesProductVolume::RvpStabilizedCrude = NULL; - this->prodml22__CommonPropertiesProductVolume::BswStabilizedCrude = NULL; - this->prodml22__CommonPropertiesProductVolume::DensityStabilizedCrude = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__DensityValue(soap, &this->prodml22__CommonPropertiesProductVolume::DensityValue); - soap_default_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml22__CommonPropertiesProductVolume::VolumeValue); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap, &this->prodml22__CommonPropertiesProductVolume::PortDiff); - soap_default_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, &this->prodml22__CommonPropertiesProductVolume::FlowRateValue); + this->prodml23__CommonPropertiesProductVolume::Gor = NULL; + this->prodml23__CommonPropertiesProductVolume::GorMTD = NULL; + this->prodml23__CommonPropertiesProductVolume::GasLiquidRatio = NULL; + this->prodml23__CommonPropertiesProductVolume::WaterConcMass = NULL; + this->prodml23__CommonPropertiesProductVolume::WaterConcVol = NULL; + this->prodml23__CommonPropertiesProductVolume::Atmosphere = NULL; + this->prodml23__CommonPropertiesProductVolume::Temp = NULL; + this->prodml23__CommonPropertiesProductVolume::Pres = NULL; + this->prodml23__CommonPropertiesProductVolume::AbsoluteMinPres = NULL; + this->prodml23__CommonPropertiesProductVolume::Mass = NULL; + this->prodml23__CommonPropertiesProductVolume::Work = NULL; + this->prodml23__CommonPropertiesProductVolume::Efficiency = NULL; + this->prodml23__CommonPropertiesProductVolume::Rvp = NULL; + this->prodml23__CommonPropertiesProductVolume::Tvp = NULL; + this->prodml23__CommonPropertiesProductVolume::Bsw = NULL; + this->prodml23__CommonPropertiesProductVolume::BswPrevious = NULL; + this->prodml23__CommonPropertiesProductVolume::DensityFlowRate = NULL; + this->prodml23__CommonPropertiesProductVolume::Concentration = NULL; + this->prodml23__CommonPropertiesProductVolume::MolecularWeight = NULL; + this->prodml23__CommonPropertiesProductVolume::WeightPercent = NULL; + this->prodml23__CommonPropertiesProductVolume::MolePercent = NULL; + this->prodml23__CommonPropertiesProductVolume::MoleAmt = NULL; + this->prodml23__CommonPropertiesProductVolume::Sg = NULL; + this->prodml23__CommonPropertiesProductVolume::HcDewpoint = NULL; + this->prodml23__CommonPropertiesProductVolume::WaterDewpoint = NULL; + this->prodml23__CommonPropertiesProductVolume::WobbeIndex = NULL; + this->prodml23__CommonPropertiesProductVolume::GrossCalorificValueStd = NULL; + this->prodml23__CommonPropertiesProductVolume::RvpStabilizedCrude = NULL; + this->prodml23__CommonPropertiesProductVolume::BswStabilizedCrude = NULL; + this->prodml23__CommonPropertiesProductVolume::DensityStabilizedCrude = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__DensityValue(soap, &this->prodml23__CommonPropertiesProductVolume::DensityValue); + soap_default_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml23__CommonPropertiesProductVolume::VolumeValue); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap, &this->prodml23__CommonPropertiesProductVolume::PortDiff); + soap_default_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, &this->prodml23__CommonPropertiesProductVolume::FlowRateValue); } -void prodml22__CommonPropertiesProductVolume::soap_serialize(struct soap *soap) const +void prodml23__CommonPropertiesProductVolume::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Gor); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::GorMTD); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::GasLiquidRatio); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::WaterConcMass); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::WaterConcVol); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Atmosphere); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Temp); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Pres); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::AbsoluteMinPres); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Mass); - soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Work); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Efficiency); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Rvp); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Tvp); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Bsw); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::BswPrevious); - soap_serialize_PointerToeml23__MassPerTimeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::DensityFlowRate); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Concentration); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::MolecularWeight); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::WeightPercent); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::MolePercent); - soap_serialize_PointerToeml23__AmountOfSubstanceMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::MoleAmt); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::Sg); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::HcDewpoint); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::WaterDewpoint); - soap_serialize_PointerToeml23__IsothermalCompressibilityMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::WobbeIndex); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::GrossCalorificValueStd); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::RvpStabilizedCrude); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::BswStabilizedCrude); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__CommonPropertiesProductVolume::DensityStabilizedCrude); - soap_serialize_std__vectorTemplateOfPointerToeml23__DensityValue(soap, &this->prodml22__CommonPropertiesProductVolume::DensityValue); - soap_serialize_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml22__CommonPropertiesProductVolume::VolumeValue); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap, &this->prodml22__CommonPropertiesProductVolume::PortDiff); - soap_serialize_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, &this->prodml22__CommonPropertiesProductVolume::FlowRateValue); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Gor); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::GorMTD); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::GasLiquidRatio); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::WaterConcMass); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::WaterConcVol); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Atmosphere); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Temp); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Pres); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::AbsoluteMinPres); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Mass); + soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Work); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Efficiency); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Rvp); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Tvp); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Bsw); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::BswPrevious); + soap_serialize_PointerToeml23__MassPerTimeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::DensityFlowRate); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Concentration); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::MolecularWeight); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::WeightPercent); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::MolePercent); + soap_serialize_PointerToeml23__AmountOfSubstanceMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::MoleAmt); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::Sg); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::HcDewpoint); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::WaterDewpoint); + soap_serialize_PointerToeml23__IsothermalCompressibilityMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::WobbeIndex); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::GrossCalorificValueStd); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::RvpStabilizedCrude); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::BswStabilizedCrude); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__CommonPropertiesProductVolume::DensityStabilizedCrude); + soap_serialize_std__vectorTemplateOfPointerToeml23__DensityValue(soap, &this->prodml23__CommonPropertiesProductVolume::DensityValue); + soap_serialize_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, &this->prodml23__CommonPropertiesProductVolume::VolumeValue); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap, &this->prodml23__CommonPropertiesProductVolume::PortDiff); + soap_serialize_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, &this->prodml23__CommonPropertiesProductVolume::FlowRateValue); #endif } -int prodml22__CommonPropertiesProductVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CommonPropertiesProductVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CommonPropertiesProductVolume(soap, tag, id, this, type); + return soap_out_prodml23__CommonPropertiesProductVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CommonPropertiesProductVolume(struct soap *soap, const char *tag, int id, const prodml22__CommonPropertiesProductVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CommonPropertiesProductVolume(struct soap *soap, const char *tag, int id, const prodml23__CommonPropertiesProductVolume *a, const char *type) { if (!type) - type = "prodml22:CommonPropertiesProductVolume"; + type = "prodml23:CommonPropertiesProductVolume"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume), type)) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Gor", -1, &a->prodml22__CommonPropertiesProductVolume::Gor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Gor", -1, &a->prodml23__CommonPropertiesProductVolume::Gor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GorMTD", -1, &a->prodml22__CommonPropertiesProductVolume::GorMTD, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GorMTD", -1, &a->prodml23__CommonPropertiesProductVolume::GorMTD, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasLiquidRatio", -1, &a->prodml22__CommonPropertiesProductVolume::GasLiquidRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasLiquidRatio", -1, &a->prodml23__CommonPropertiesProductVolume::GasLiquidRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WaterConcMass", -1, &a->prodml22__CommonPropertiesProductVolume::WaterConcMass, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WaterConcMass", -1, &a->prodml23__CommonPropertiesProductVolume::WaterConcMass, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:WaterConcVol", -1, &a->prodml22__CommonPropertiesProductVolume::WaterConcVol, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:WaterConcVol", -1, &a->prodml23__CommonPropertiesProductVolume::WaterConcVol, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Atmosphere", -1, &a->prodml22__CommonPropertiesProductVolume::Atmosphere, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Atmosphere", -1, &a->prodml23__CommonPropertiesProductVolume::Atmosphere, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:Temp", -1, &a->prodml22__CommonPropertiesProductVolume::Temp, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:Temp", -1, &a->prodml23__CommonPropertiesProductVolume::Temp, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pres", -1, &a->prodml22__CommonPropertiesProductVolume::Pres, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pres", -1, &a->prodml23__CommonPropertiesProductVolume::Pres, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:AbsoluteMinPres", -1, &a->prodml22__CommonPropertiesProductVolume::AbsoluteMinPres, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:AbsoluteMinPres", -1, &a->prodml23__CommonPropertiesProductVolume::AbsoluteMinPres, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:Mass", -1, &a->prodml22__CommonPropertiesProductVolume::Mass, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:Mass", -1, &a->prodml23__CommonPropertiesProductVolume::Mass, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml22:Work", -1, &a->prodml22__CommonPropertiesProductVolume::Work, "eml23:EnergyMeasure")) + if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml23:Work", -1, &a->prodml23__CommonPropertiesProductVolume::Work, "eml23:EnergyMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Efficiency", -1, &a->prodml22__CommonPropertiesProductVolume::Efficiency, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Efficiency", -1, &a->prodml23__CommonPropertiesProductVolume::Efficiency, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Rvp", -1, &a->prodml22__CommonPropertiesProductVolume::Rvp, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Rvp", -1, &a->prodml23__CommonPropertiesProductVolume::Rvp, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Tvp", -1, &a->prodml22__CommonPropertiesProductVolume::Tvp, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Tvp", -1, &a->prodml23__CommonPropertiesProductVolume::Tvp, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Bsw", -1, &a->prodml22__CommonPropertiesProductVolume::Bsw, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Bsw", -1, &a->prodml23__CommonPropertiesProductVolume::Bsw, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:BswPrevious", -1, &a->prodml22__CommonPropertiesProductVolume::BswPrevious, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:BswPrevious", -1, &a->prodml23__CommonPropertiesProductVolume::BswPrevious, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerTimeMeasure(soap, "prodml22:DensityFlowRate", -1, &a->prodml22__CommonPropertiesProductVolume::DensityFlowRate, "eml23:MassPerTimeMeasure")) + if (soap_out_PointerToeml23__MassPerTimeMeasure(soap, "prodml23:DensityFlowRate", -1, &a->prodml23__CommonPropertiesProductVolume::DensityFlowRate, "eml23:MassPerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Concentration", -1, &a->prodml22__CommonPropertiesProductVolume::Concentration, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Concentration", -1, &a->prodml23__CommonPropertiesProductVolume::Concentration, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__CommonPropertiesProductVolume::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__CommonPropertiesProductVolume::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WeightPercent", -1, &a->prodml22__CommonPropertiesProductVolume::WeightPercent, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WeightPercent", -1, &a->prodml23__CommonPropertiesProductVolume::WeightPercent, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MolePercent", -1, &a->prodml22__CommonPropertiesProductVolume::MolePercent, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MolePercent", -1, &a->prodml23__CommonPropertiesProductVolume::MolePercent, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:MoleAmt", -1, &a->prodml22__CommonPropertiesProductVolume::MoleAmt, "eml23:AmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:MoleAmt", -1, &a->prodml23__CommonPropertiesProductVolume::MoleAmt, "eml23:AmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Sg", -1, &a->prodml22__CommonPropertiesProductVolume::Sg, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Sg", -1, &a->prodml23__CommonPropertiesProductVolume::Sg, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:HcDewpoint", -1, &a->prodml22__CommonPropertiesProductVolume::HcDewpoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:HcDewpoint", -1, &a->prodml23__CommonPropertiesProductVolume::HcDewpoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:WaterDewpoint", -1, &a->prodml22__CommonPropertiesProductVolume::WaterDewpoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:WaterDewpoint", -1, &a->prodml23__CommonPropertiesProductVolume::WaterDewpoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__IsothermalCompressibilityMeasure(soap, "prodml22:WobbeIndex", -1, &a->prodml22__CommonPropertiesProductVolume::WobbeIndex, "eml23:IsothermalCompressibilityMeasure")) + if (soap_out_PointerToeml23__IsothermalCompressibilityMeasure(soap, "prodml23:WobbeIndex", -1, &a->prodml23__CommonPropertiesProductVolume::WobbeIndex, "eml23:IsothermalCompressibilityMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:GrossCalorificValueStd", -1, &a->prodml22__CommonPropertiesProductVolume::GrossCalorificValueStd, "eml23:EnergyPerVolumeMeasure")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:GrossCalorificValueStd", -1, &a->prodml23__CommonPropertiesProductVolume::GrossCalorificValueStd, "eml23:EnergyPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:RvpStabilizedCrude", -1, &a->prodml22__CommonPropertiesProductVolume::RvpStabilizedCrude, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:RvpStabilizedCrude", -1, &a->prodml23__CommonPropertiesProductVolume::RvpStabilizedCrude, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:BswStabilizedCrude", -1, &a->prodml22__CommonPropertiesProductVolume::BswStabilizedCrude, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:BswStabilizedCrude", -1, &a->prodml23__CommonPropertiesProductVolume::BswStabilizedCrude, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:DensityStabilizedCrude", -1, &a->prodml22__CommonPropertiesProductVolume::DensityStabilizedCrude, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:DensityStabilizedCrude", -1, &a->prodml23__CommonPropertiesProductVolume::DensityStabilizedCrude, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__DensityValue(soap, "prodml22:DensityValue", -1, &a->prodml22__CommonPropertiesProductVolume::DensityValue, "eml23:DensityValue")) + if (soap_out_std__vectorTemplateOfPointerToeml23__DensityValue(soap, "prodml23:DensityValue", -1, &a->prodml23__CommonPropertiesProductVolume::DensityValue, "eml23:DensityValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml22:VolumeValue", -1, &a->prodml22__CommonPropertiesProductVolume::VolumeValue, "eml23:VolumeValue")) + if (soap_out_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml23:VolumeValue", -1, &a->prodml23__CommonPropertiesProductVolume::VolumeValue, "eml23:VolumeValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap, "prodml22:PortDiff", -1, &a->prodml22__CommonPropertiesProductVolume::PortDiff, "prodml22:ProductVolumePortDifference")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap, "prodml23:PortDiff", -1, &a->prodml23__CommonPropertiesProductVolume::PortDiff, "prodml23:ProductVolumePortDifference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, "prodml22:FlowRateValue", -1, &a->prodml22__CommonPropertiesProductVolume::FlowRateValue, "eml23:FlowRateValue")) + if (soap_out_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, "prodml23:FlowRateValue", -1, &a->prodml23__CommonPropertiesProductVolume::FlowRateValue, "eml23:FlowRateValue")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CommonPropertiesProductVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CommonPropertiesProductVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CommonPropertiesProductVolume(soap, tag, this, type); + return soap_in_prodml23__CommonPropertiesProductVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume * SOAP_FMAC4 soap_in_prodml22__CommonPropertiesProductVolume(struct soap *soap, const char *tag, prodml22__CommonPropertiesProductVolume *a, const char *type) +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume * SOAP_FMAC4 soap_in_prodml23__CommonPropertiesProductVolume(struct soap *soap, const char *tag, prodml23__CommonPropertiesProductVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CommonPropertiesProductVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume, sizeof(prodml22__CommonPropertiesProductVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CommonPropertiesProductVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume, sizeof(prodml23__CommonPropertiesProductVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CommonPropertiesProductVolume *)a->soap_in(soap, tag, type); + return (prodml23__CommonPropertiesProductVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -174015,199 +174010,199 @@ SOAP_FMAC3 prodml22__CommonPropertiesProductVolume * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Gor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Gor", &a->prodml22__CommonPropertiesProductVolume::Gor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Gor", &a->prodml23__CommonPropertiesProductVolume::Gor, "eml23:VolumePerVolumeMeasure")) { soap_flag_Gor1--; continue; } } if (soap_flag_GorMTD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GorMTD", &a->prodml22__CommonPropertiesProductVolume::GorMTD, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GorMTD", &a->prodml23__CommonPropertiesProductVolume::GorMTD, "eml23:VolumePerVolumeMeasure")) { soap_flag_GorMTD1--; continue; } } if (soap_flag_GasLiquidRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasLiquidRatio", &a->prodml22__CommonPropertiesProductVolume::GasLiquidRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasLiquidRatio", &a->prodml23__CommonPropertiesProductVolume::GasLiquidRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_GasLiquidRatio1--; continue; } } if (soap_flag_WaterConcMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WaterConcMass", &a->prodml22__CommonPropertiesProductVolume::WaterConcMass, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WaterConcMass", &a->prodml23__CommonPropertiesProductVolume::WaterConcMass, "eml23:MassPerMassMeasure")) { soap_flag_WaterConcMass1--; continue; } } if (soap_flag_WaterConcVol1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:WaterConcVol", &a->prodml22__CommonPropertiesProductVolume::WaterConcVol, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:WaterConcVol", &a->prodml23__CommonPropertiesProductVolume::WaterConcVol, "eml23:VolumePerVolumeMeasure")) { soap_flag_WaterConcVol1--; continue; } } if (soap_flag_Atmosphere1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Atmosphere", &a->prodml22__CommonPropertiesProductVolume::Atmosphere, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Atmosphere", &a->prodml23__CommonPropertiesProductVolume::Atmosphere, "eml23:PressureMeasure")) { soap_flag_Atmosphere1--; continue; } } if (soap_flag_Temp1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:Temp", &a->prodml22__CommonPropertiesProductVolume::Temp, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:Temp", &a->prodml23__CommonPropertiesProductVolume::Temp, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_Temp1--; continue; } } if (soap_flag_Pres1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pres", &a->prodml22__CommonPropertiesProductVolume::Pres, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pres", &a->prodml23__CommonPropertiesProductVolume::Pres, "eml23:PressureMeasure")) { soap_flag_Pres1--; continue; } } if (soap_flag_AbsoluteMinPres1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:AbsoluteMinPres", &a->prodml22__CommonPropertiesProductVolume::AbsoluteMinPres, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:AbsoluteMinPres", &a->prodml23__CommonPropertiesProductVolume::AbsoluteMinPres, "eml23:PressureMeasure")) { soap_flag_AbsoluteMinPres1--; continue; } } if (soap_flag_Mass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:Mass", &a->prodml22__CommonPropertiesProductVolume::Mass, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:Mass", &a->prodml23__CommonPropertiesProductVolume::Mass, "eml23:MassMeasure")) { soap_flag_Mass1--; continue; } } if (soap_flag_Work1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml22:Work", &a->prodml22__CommonPropertiesProductVolume::Work, "eml23:EnergyMeasure")) + { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml23:Work", &a->prodml23__CommonPropertiesProductVolume::Work, "eml23:EnergyMeasure")) { soap_flag_Work1--; continue; } } if (soap_flag_Efficiency1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Efficiency", &a->prodml22__CommonPropertiesProductVolume::Efficiency, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Efficiency", &a->prodml23__CommonPropertiesProductVolume::Efficiency, "eml23:VolumePerVolumeMeasure")) { soap_flag_Efficiency1--; continue; } } if (soap_flag_Rvp1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Rvp", &a->prodml22__CommonPropertiesProductVolume::Rvp, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Rvp", &a->prodml23__CommonPropertiesProductVolume::Rvp, "eml23:PressureMeasure")) { soap_flag_Rvp1--; continue; } } if (soap_flag_Tvp1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Tvp", &a->prodml22__CommonPropertiesProductVolume::Tvp, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Tvp", &a->prodml23__CommonPropertiesProductVolume::Tvp, "eml23:PressureMeasure")) { soap_flag_Tvp1--; continue; } } if (soap_flag_Bsw1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Bsw", &a->prodml22__CommonPropertiesProductVolume::Bsw, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Bsw", &a->prodml23__CommonPropertiesProductVolume::Bsw, "eml23:VolumePerVolumeMeasure")) { soap_flag_Bsw1--; continue; } } if (soap_flag_BswPrevious1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:BswPrevious", &a->prodml22__CommonPropertiesProductVolume::BswPrevious, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:BswPrevious", &a->prodml23__CommonPropertiesProductVolume::BswPrevious, "eml23:VolumePerVolumeMeasure")) { soap_flag_BswPrevious1--; continue; } } if (soap_flag_DensityFlowRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerTimeMeasure(soap, "prodml22:DensityFlowRate", &a->prodml22__CommonPropertiesProductVolume::DensityFlowRate, "eml23:MassPerTimeMeasure")) + { if (soap_in_PointerToeml23__MassPerTimeMeasure(soap, "prodml23:DensityFlowRate", &a->prodml23__CommonPropertiesProductVolume::DensityFlowRate, "eml23:MassPerTimeMeasure")) { soap_flag_DensityFlowRate1--; continue; } } if (soap_flag_Concentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Concentration", &a->prodml22__CommonPropertiesProductVolume::Concentration, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Concentration", &a->prodml23__CommonPropertiesProductVolume::Concentration, "eml23:VolumePerVolumeMeasure")) { soap_flag_Concentration1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__CommonPropertiesProductVolume::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__CommonPropertiesProductVolume::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_WeightPercent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WeightPercent", &a->prodml22__CommonPropertiesProductVolume::WeightPercent, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WeightPercent", &a->prodml23__CommonPropertiesProductVolume::WeightPercent, "eml23:MassPerMassMeasure")) { soap_flag_WeightPercent1--; continue; } } if (soap_flag_MolePercent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MolePercent", &a->prodml22__CommonPropertiesProductVolume::MolePercent, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MolePercent", &a->prodml23__CommonPropertiesProductVolume::MolePercent, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MolePercent1--; continue; } } if (soap_flag_MoleAmt1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:MoleAmt", &a->prodml22__CommonPropertiesProductVolume::MoleAmt, "eml23:AmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:MoleAmt", &a->prodml23__CommonPropertiesProductVolume::MoleAmt, "eml23:AmountOfSubstanceMeasure")) { soap_flag_MoleAmt1--; continue; } } if (soap_flag_Sg1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Sg", &a->prodml22__CommonPropertiesProductVolume::Sg, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Sg", &a->prodml23__CommonPropertiesProductVolume::Sg, "eml23:DimensionlessMeasure")) { soap_flag_Sg1--; continue; } } if (soap_flag_HcDewpoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:HcDewpoint", &a->prodml22__CommonPropertiesProductVolume::HcDewpoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:HcDewpoint", &a->prodml23__CommonPropertiesProductVolume::HcDewpoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_HcDewpoint1--; continue; } } if (soap_flag_WaterDewpoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:WaterDewpoint", &a->prodml22__CommonPropertiesProductVolume::WaterDewpoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:WaterDewpoint", &a->prodml23__CommonPropertiesProductVolume::WaterDewpoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_WaterDewpoint1--; continue; } } if (soap_flag_WobbeIndex1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__IsothermalCompressibilityMeasure(soap, "prodml22:WobbeIndex", &a->prodml22__CommonPropertiesProductVolume::WobbeIndex, "eml23:IsothermalCompressibilityMeasure")) + { if (soap_in_PointerToeml23__IsothermalCompressibilityMeasure(soap, "prodml23:WobbeIndex", &a->prodml23__CommonPropertiesProductVolume::WobbeIndex, "eml23:IsothermalCompressibilityMeasure")) { soap_flag_WobbeIndex1--; continue; } } if (soap_flag_GrossCalorificValueStd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:GrossCalorificValueStd", &a->prodml22__CommonPropertiesProductVolume::GrossCalorificValueStd, "eml23:EnergyPerVolumeMeasure")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:GrossCalorificValueStd", &a->prodml23__CommonPropertiesProductVolume::GrossCalorificValueStd, "eml23:EnergyPerVolumeMeasure")) { soap_flag_GrossCalorificValueStd1--; continue; } } if (soap_flag_RvpStabilizedCrude1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:RvpStabilizedCrude", &a->prodml22__CommonPropertiesProductVolume::RvpStabilizedCrude, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:RvpStabilizedCrude", &a->prodml23__CommonPropertiesProductVolume::RvpStabilizedCrude, "eml23:PressureMeasure")) { soap_flag_RvpStabilizedCrude1--; continue; } } if (soap_flag_BswStabilizedCrude1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:BswStabilizedCrude", &a->prodml22__CommonPropertiesProductVolume::BswStabilizedCrude, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:BswStabilizedCrude", &a->prodml23__CommonPropertiesProductVolume::BswStabilizedCrude, "eml23:VolumePerVolumeMeasure")) { soap_flag_BswStabilizedCrude1--; continue; } } if (soap_flag_DensityStabilizedCrude1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:DensityStabilizedCrude", &a->prodml22__CommonPropertiesProductVolume::DensityStabilizedCrude, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:DensityStabilizedCrude", &a->prodml23__CommonPropertiesProductVolume::DensityStabilizedCrude, "eml23:MassPerVolumeMeasure")) { soap_flag_DensityStabilizedCrude1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__DensityValue(soap, "prodml22:DensityValue", &a->prodml22__CommonPropertiesProductVolume::DensityValue, "eml23:DensityValue")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__DensityValue(soap, "prodml23:DensityValue", &a->prodml23__CommonPropertiesProductVolume::DensityValue, "eml23:DensityValue")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml22:VolumeValue", &a->prodml22__CommonPropertiesProductVolume::VolumeValue, "eml23:VolumeValue")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__VolumeValue(soap, "prodml23:VolumeValue", &a->prodml23__CommonPropertiesProductVolume::VolumeValue, "eml23:VolumeValue")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap, "prodml22:PortDiff", &a->prodml22__CommonPropertiesProductVolume::PortDiff, "prodml22:ProductVolumePortDifference")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap, "prodml23:PortDiff", &a->prodml23__CommonPropertiesProductVolume::PortDiff, "prodml23:ProductVolumePortDifference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, "prodml22:FlowRateValue", &a->prodml22__CommonPropertiesProductVolume::FlowRateValue, "eml23:FlowRateValue")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap, "prodml23:FlowRateValue", &a->prodml23__CommonPropertiesProductVolume::FlowRateValue, "eml23:FlowRateValue")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -174221,35 +174216,35 @@ SOAP_FMAC3 prodml22__CommonPropertiesProductVolume * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__CommonPropertiesProductVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume, sizeof(prodml22__CommonPropertiesProductVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CommonPropertiesProductVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume, sizeof(prodml23__CommonPropertiesProductVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__CommonPropertiesProductVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate_prodml23__CommonPropertiesProductVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CommonPropertiesProductVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CommonPropertiesProductVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CommonPropertiesProductVolume *p; - size_t k = sizeof(prodml22__CommonPropertiesProductVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume, n, gsoap_eml2_3_fdelete); + prodml23__CommonPropertiesProductVolume *p; + size_t k = sizeof(prodml23__CommonPropertiesProductVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CommonPropertiesProductVolume); + { p = SOAP_NEW(soap, prodml23__CommonPropertiesProductVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CommonPropertiesProductVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CommonPropertiesProductVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CommonPropertiesProductVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CommonPropertiesProductVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -174259,74 +174254,74 @@ SOAP_FMAC1 prodml22__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__CommonPropertiesProductVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CommonPropertiesProductVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CommonPropertiesProductVolume(soap, tag ? tag : "prodml22:CommonPropertiesProductVolume", -2, this, type)) + if (soap_out_prodml23__CommonPropertiesProductVolume(soap, tag ? tag : "prodml23:CommonPropertiesProductVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CommonPropertiesProductVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CommonPropertiesProductVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CommonPropertiesProductVolume(soap, this, tag, type); + return soap_get_prodml23__CommonPropertiesProductVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume * SOAP_FMAC4 soap_get_prodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume * SOAP_FMAC4 soap_get_prodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CommonPropertiesProductVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__CommonPropertiesProductVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FlowTestJob::soap_default(struct soap *soap) +void prodml23__FlowTestJob::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__FlowTestJob::Client = NULL; - this->prodml22__FlowTestJob::ServiceCompany = NULL; - this->prodml22__FlowTestJob::StartTime = NULL; - this->prodml22__FlowTestJob::FluidSampleAcquisitionJob = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::PtaDataPreProcess); - soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::FlowTestActivity); - soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::PtaDeconvolution); - soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::PressureTransientAnalysis); - this->prodml22__FlowTestJob::EndTime = NULL; -} - -void prodml22__FlowTestJob::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::Client); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::ServiceCompany); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__FlowTestJob::StartTime); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::FluidSampleAcquisitionJob); - soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::PtaDataPreProcess); - soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::FlowTestActivity); - soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::PtaDeconvolution); - soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestJob::PressureTransientAnalysis); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__FlowTestJob::EndTime); + this->prodml23__FlowTestJob::Client = NULL; + this->prodml23__FlowTestJob::ServiceCompany = NULL; + this->prodml23__FlowTestJob::StartTime = NULL; + this->prodml23__FlowTestJob::FluidSampleAcquisitionJob = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::PtaDataPreProcess); + soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::FlowTestActivity); + soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::PtaDeconvolution); + soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::PressureTransientAnalysis); + this->prodml23__FlowTestJob::EndTime = NULL; +} + +void prodml23__FlowTestJob::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::Client); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::ServiceCompany); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__FlowTestJob::StartTime); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::FluidSampleAcquisitionJob); + soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::PtaDataPreProcess); + soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::FlowTestActivity); + soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::PtaDeconvolution); + soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestJob::PressureTransientAnalysis); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__FlowTestJob::EndTime); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FlowTestJob::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FlowTestJob::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FlowTestJob(soap, tag, id, this, type); + return soap_out_prodml23__FlowTestJob(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestJob(struct soap *soap, const char *tag, int id, const prodml22__FlowTestJob *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestJob(struct soap *soap, const char *tag, int id, const prodml23__FlowTestJob *a, const char *type) { if (!type) - type = "prodml22:FlowTestJob"; + type = "prodml23:FlowTestJob"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FlowTestJob), type ? type : "prodml22:FlowTestJob")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob), type ? type : "prodml23:FlowTestJob")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -174348,44 +174343,44 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestJob(struct soap *soap, cons return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Client", -1, &a->prodml22__FlowTestJob::Client, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Client", -1, &a->prodml23__FlowTestJob::Client, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ServiceCompany", -1, &a->prodml22__FlowTestJob::ServiceCompany, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ServiceCompany", -1, &a->prodml23__FlowTestJob::ServiceCompany, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FlowTestJob::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FlowTestJob::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleAcquisitionJob", -1, &a->prodml22__FlowTestJob::FluidSampleAcquisitionJob, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleAcquisitionJob", -1, &a->prodml23__FlowTestJob::FluidSampleAcquisitionJob, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:PtaDataPreProcess", -1, &a->prodml22__FlowTestJob::PtaDataPreProcess, "eml23:DataObjectReference")) + if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:PtaDataPreProcess", -1, &a->prodml23__FlowTestJob::PtaDataPreProcess, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__FlowTestJob::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__FlowTestJob::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:PtaDeconvolution", -1, &a->prodml22__FlowTestJob::PtaDeconvolution, "eml23:DataObjectReference")) + if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:PtaDeconvolution", -1, &a->prodml23__FlowTestJob::PtaDeconvolution, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:PressureTransientAnalysis", -1, &a->prodml22__FlowTestJob::PressureTransientAnalysis, "eml23:DataObjectReference")) + if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:PressureTransientAnalysis", -1, &a->prodml23__FlowTestJob::PressureTransientAnalysis, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FlowTestJob::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FlowTestJob::EndTime, "eml23:TimeStamp")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FlowTestJob::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestJob::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FlowTestJob(soap, tag, this, type); + return soap_in_prodml23__FlowTestJob(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FlowTestJob * SOAP_FMAC4 soap_in_prodml22__FlowTestJob(struct soap *soap, const char *tag, prodml22__FlowTestJob *a, const char *type) +SOAP_FMAC3 prodml23__FlowTestJob * SOAP_FMAC4 soap_in_prodml23__FlowTestJob(struct soap *soap, const char *tag, prodml23__FlowTestJob *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FlowTestJob*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob, sizeof(prodml22__FlowTestJob), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FlowTestJob*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob, sizeof(prodml23__FlowTestJob), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FlowTestJob *)a->soap_in(soap, tag, type); + return (prodml23__FlowTestJob *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -174462,47 +174457,47 @@ SOAP_FMAC3 prodml22__FlowTestJob * SOAP_FMAC4 soap_in_prodml22__FlowTestJob(stru continue; } if (soap_flag_Client1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Client", &a->prodml22__FlowTestJob::Client, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Client", &a->prodml23__FlowTestJob::Client, "eml23:DataObjectReference")) { soap_flag_Client1--; continue; } } if (soap_flag_ServiceCompany1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ServiceCompany", &a->prodml22__FlowTestJob::ServiceCompany, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ServiceCompany", &a->prodml23__FlowTestJob::ServiceCompany, "eml23:DataObjectReference")) { soap_flag_ServiceCompany1--; continue; } } if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FlowTestJob::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FlowTestJob::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_FluidSampleAcquisitionJob1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleAcquisitionJob", &a->prodml22__FlowTestJob::FluidSampleAcquisitionJob, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleAcquisitionJob", &a->prodml23__FlowTestJob::FluidSampleAcquisitionJob, "eml23:DataObjectReference")) { soap_flag_FluidSampleAcquisitionJob1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:PtaDataPreProcess", &a->prodml22__FlowTestJob::PtaDataPreProcess, "eml23:DataObjectReference")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:PtaDataPreProcess", &a->prodml23__FlowTestJob::PtaDataPreProcess, "eml23:DataObjectReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__FlowTestJob::FlowTestActivity, "eml23:DataObjectReference")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__FlowTestJob::FlowTestActivity, "eml23:DataObjectReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:PtaDeconvolution", &a->prodml22__FlowTestJob::PtaDeconvolution, "eml23:DataObjectReference")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:PtaDeconvolution", &a->prodml23__FlowTestJob::PtaDeconvolution, "eml23:DataObjectReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:PressureTransientAnalysis", &a->prodml22__FlowTestJob::PressureTransientAnalysis, "eml23:DataObjectReference")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:PressureTransientAnalysis", &a->prodml23__FlowTestJob::PressureTransientAnalysis, "eml23:DataObjectReference")) continue; } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FlowTestJob::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FlowTestJob::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } @@ -174526,35 +174521,35 @@ SOAP_FMAC3 prodml22__FlowTestJob * SOAP_FMAC4 soap_in_prodml22__FlowTestJob(stru return NULL; } else - { a = (prodml22__FlowTestJob *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob, sizeof(prodml22__FlowTestJob), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FlowTestJob *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob, sizeof(prodml23__FlowTestJob), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FlowTestJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FlowTestJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FlowTestJob *p; - size_t k = sizeof(prodml22__FlowTestJob); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob, n, gsoap_eml2_3_fdelete); + prodml23__FlowTestJob *p; + size_t k = sizeof(prodml23__FlowTestJob); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FlowTestJob); + { p = SOAP_NEW(soap, prodml23__FlowTestJob); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FlowTestJob, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FlowTestJob, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FlowTestJob location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FlowTestJob location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -174564,141 +174559,141 @@ SOAP_FMAC1 prodml22__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml22__FlowTes return p; } -int prodml22__FlowTestJob::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FlowTestJob::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FlowTestJob(soap, tag ? tag : "prodml22:FlowTestJob", -2, this, type)) + if (soap_out_prodml23__FlowTestJob(soap, tag ? tag : "prodml23:FlowTestJob", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FlowTestJob::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestJob::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FlowTestJob(soap, this, tag, type); + return soap_get_prodml23__FlowTestJob(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FlowTestJob * SOAP_FMAC4 soap_get_prodml22__FlowTestJob(struct soap *soap, prodml22__FlowTestJob *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowTestJob * SOAP_FMAC4 soap_get_prodml23__FlowTestJob(struct soap *soap, prodml23__FlowTestJob *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlowTestJob(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlowTestJob(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellheadSampleAcquisition::soap_default(struct soap *soap) +void prodml23__WellheadSampleAcquisition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidSampleAcquisition::soap_default(soap); - this->prodml22__WellheadSampleAcquisition::Well = NULL; - this->prodml22__WellheadSampleAcquisition::WellCompletion = NULL; - this->prodml22__WellheadSampleAcquisition::WellheadPressure = NULL; - this->prodml22__WellheadSampleAcquisition::WellheadTemperature = NULL; - this->prodml22__WellheadSampleAcquisition::SamplingPoint = NULL; - this->prodml22__WellheadSampleAcquisition::FlowTestActivity = NULL; + this->prodml23__FluidSampleAcquisition::soap_default(soap); + this->prodml23__WellheadSampleAcquisition::Well = NULL; + this->prodml23__WellheadSampleAcquisition::WellCompletion = NULL; + this->prodml23__WellheadSampleAcquisition::WellheadPressure = NULL; + this->prodml23__WellheadSampleAcquisition::WellheadTemperature = NULL; + this->prodml23__WellheadSampleAcquisition::SamplingPoint = NULL; + this->prodml23__WellheadSampleAcquisition::FlowTestActivity = NULL; } -void prodml22__WellheadSampleAcquisition::soap_serialize(struct soap *soap) const +void prodml23__WellheadSampleAcquisition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__WellheadSampleAcquisition::Well); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__WellheadSampleAcquisition::WellCompletion); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__WellheadSampleAcquisition::WellheadPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__WellheadSampleAcquisition::WellheadTemperature); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__WellheadSampleAcquisition::SamplingPoint); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__WellheadSampleAcquisition::FlowTestActivity); - this->prodml22__FluidSampleAcquisition::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__WellheadSampleAcquisition::Well); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__WellheadSampleAcquisition::WellCompletion); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__WellheadSampleAcquisition::WellheadPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__WellheadSampleAcquisition::WellheadTemperature); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__WellheadSampleAcquisition::SamplingPoint); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__WellheadSampleAcquisition::FlowTestActivity); + this->prodml23__FluidSampleAcquisition::soap_serialize(soap); #endif } -int prodml22__WellheadSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellheadSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellheadSampleAcquisition(soap, tag, id, this, type); + return soap_out_prodml23__WellheadSampleAcquisition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellheadSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml22__WellheadSampleAcquisition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellheadSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml23__WellheadSampleAcquisition *a, const char *type) { if (!type) - type = "prodml22:WellheadSampleAcquisition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleAcquisition*)a)->uid), 1); + type = "prodml23:WellheadSampleAcquisition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleAcquisition*)a)->uid), 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_gsoap_eml2_3_prodml22__WellheadSampleAcquisition), type ? type : "prodml22:WellheadSampleAcquisition")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition), type ? type : "prodml23:WellheadSampleAcquisition")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", -1, &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", -1, &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", -1, &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", -1, &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", -1, &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", -1, &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSampleContainer) - { if (soap_element_empty(soap, "prodml22:FluidSampleContainer", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSampleContainer) + { if (soap_element_empty(soap, "prodml23:FluidSampleContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", -1, &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", -1, &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Well", -1, &a->prodml22__WellheadSampleAcquisition::Well, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Well", -1, &a->prodml23__WellheadSampleAcquisition::Well, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:WellCompletion", -1, &a->prodml22__WellheadSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:WellCompletion", -1, &a->prodml23__WellheadSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__WellheadSampleAcquisition::WellheadPressure) - { if (soap_element_empty(soap, "prodml22:WellheadPressure", 0, NULL)) + if (!a->prodml23__WellheadSampleAcquisition::WellheadPressure) + { if (soap_element_empty(soap, "prodml23:WellheadPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:WellheadPressure", -1, &a->prodml22__WellheadSampleAcquisition::WellheadPressure, "eml23:AbstractPressureValue")) + else if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:WellheadPressure", -1, &a->prodml23__WellheadSampleAcquisition::WellheadPressure, "eml23:AbstractPressureValue")) return soap->error; - if (!a->prodml22__WellheadSampleAcquisition::WellheadTemperature) - { if (soap_element_empty(soap, "prodml22:WellheadTemperature", 0, NULL)) + if (!a->prodml23__WellheadSampleAcquisition::WellheadTemperature) + { if (soap_element_empty(soap, "prodml23:WellheadTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:WellheadTemperature", -1, &a->prodml22__WellheadSampleAcquisition::WellheadTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:WellheadTemperature", -1, &a->prodml23__WellheadSampleAcquisition::WellheadTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SamplingPoint", -1, &a->prodml22__WellheadSampleAcquisition::SamplingPoint, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SamplingPoint", -1, &a->prodml23__WellheadSampleAcquisition::SamplingPoint, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__WellheadSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__WellheadSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellheadSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellheadSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellheadSampleAcquisition(soap, tag, this, type); + return soap_in_prodml23__WellheadSampleAcquisition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__WellheadSampleAcquisition(struct soap *soap, const char *tag, prodml22__WellheadSampleAcquisition *a, const char *type) +SOAP_FMAC3 prodml23__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__WellheadSampleAcquisition(struct soap *soap, const char *tag, prodml23__WellheadSampleAcquisition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellheadSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition, sizeof(prodml22__WellheadSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellheadSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition, sizeof(prodml23__WellheadSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellheadSampleAcquisition *)a->soap_in(soap, tag, type); + return (prodml23__WellheadSampleAcquisition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleAcquisition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleAcquisition*)a)->uid)) return NULL; size_t soap_flag_StartTime2 = 1; size_t soap_flag_EndTime2 = 1; @@ -174723,109 +174718,109 @@ SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__We for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AcquisitionPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) { soap_flag_AcquisitionPressure2--; continue; } } if (soap_flag_AcquisitionTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AcquisitionTemperature2--; continue; } } if (soap_flag_AcquisitionVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) { soap_flag_AcquisitionVolume2--; continue; } } if (soap_flag_AcquisitionGOR2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_AcquisitionGOR2--; continue; } } if (soap_flag_FormationPressureTemperatureDatum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) { soap_flag_FormationPressureTemperatureDatum2--; continue; } } if (soap_flag_FormationPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) { soap_flag_FormationPressure2--; continue; } } if (soap_flag_FormationTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FormationTemperature2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_FluidSampleContainer2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) { soap_flag_FluidSampleContainer2--; continue; } } if (soap_flag_FluidSample2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample2--; continue; } } if (soap_flag_Well1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Well", &a->prodml22__WellheadSampleAcquisition::Well, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Well", &a->prodml23__WellheadSampleAcquisition::Well, "eml23:DataObjectReference")) { soap_flag_Well1--; continue; } } if (soap_flag_WellCompletion1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:WellCompletion", &a->prodml22__WellheadSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:WellCompletion", &a->prodml23__WellheadSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) { soap_flag_WellCompletion1--; continue; } } if (soap_flag_WellheadPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:WellheadPressure", &a->prodml22__WellheadSampleAcquisition::WellheadPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:WellheadPressure", &a->prodml23__WellheadSampleAcquisition::WellheadPressure, "eml23:AbstractPressureValue")) { soap_flag_WellheadPressure1--; continue; } } if (soap_flag_WellheadTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:WellheadTemperature", &a->prodml22__WellheadSampleAcquisition::WellheadTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:WellheadTemperature", &a->prodml23__WellheadSampleAcquisition::WellheadTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_WellheadTemperature1--; continue; } } if (soap_flag_SamplingPoint1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SamplingPoint", &a->prodml22__WellheadSampleAcquisition::SamplingPoint, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SamplingPoint", &a->prodml23__WellheadSampleAcquisition::SamplingPoint, "eml23:String64")) { soap_flag_SamplingPoint1--; continue; } } if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__WellheadSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__WellheadSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) { soap_flag_FlowTestActivity1--; continue; } @@ -174839,7 +174834,7 @@ SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__We } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml22__FluidSampleAcquisition::FluidSampleContainer || !a->prodml22__FluidSampleAcquisition::FluidSample || !a->prodml22__WellheadSampleAcquisition::WellheadPressure || !a->prodml22__WellheadSampleAcquisition::WellheadTemperature)) + if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml23__FluidSampleAcquisition::FluidSampleContainer || !a->prodml23__FluidSampleAcquisition::FluidSample || !a->prodml23__WellheadSampleAcquisition::WellheadPressure || !a->prodml23__WellheadSampleAcquisition::WellheadTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -174849,35 +174844,35 @@ SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__We return NULL; } else - { a = (prodml22__WellheadSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition, sizeof(prodml22__WellheadSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellheadSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition, sizeof(prodml23__WellheadSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__WellheadSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__WellheadSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellheadSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellheadSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellheadSampleAcquisition *p; - size_t k = sizeof(prodml22__WellheadSampleAcquisition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition, n, gsoap_eml2_3_fdelete); + prodml23__WellheadSampleAcquisition *p; + size_t k = sizeof(prodml23__WellheadSampleAcquisition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellheadSampleAcquisition); + { p = SOAP_NEW(soap, prodml23__WellheadSampleAcquisition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellheadSampleAcquisition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellheadSampleAcquisition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellheadSampleAcquisition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellheadSampleAcquisition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -174887,166 +174882,166 @@ SOAP_FMAC1 prodml22__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__WellheadSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellheadSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellheadSampleAcquisition(soap, tag ? tag : "prodml22:WellheadSampleAcquisition", -2, this, type)) + if (soap_out_prodml23__WellheadSampleAcquisition(soap, tag ? tag : "prodml23:WellheadSampleAcquisition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellheadSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellheadSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellheadSampleAcquisition(soap, this, tag, type); + return soap_get_prodml23__WellheadSampleAcquisition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__WellheadSampleAcquisition(struct soap *soap, prodml22__WellheadSampleAcquisition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellheadSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__WellheadSampleAcquisition(struct soap *soap, prodml23__WellheadSampleAcquisition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellheadSampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellheadSampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SeparatorSampleAcquisition::soap_default(struct soap *soap) +void prodml23__SeparatorSampleAcquisition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidSampleAcquisition::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__SeparatorSampleAcquisition::Separator); - this->prodml22__SeparatorSampleAcquisition::WellCompletion = NULL; - this->prodml22__SeparatorSampleAcquisition::SeparatorPressure = NULL; - this->prodml22__SeparatorSampleAcquisition::SeparatorTemperature = NULL; - this->prodml22__SeparatorSampleAcquisition::SamplingPoint = NULL; - this->prodml22__SeparatorSampleAcquisition::CorrectedOilRate = NULL; - this->prodml22__SeparatorSampleAcquisition::CorrectedGasRate = NULL; - this->prodml22__SeparatorSampleAcquisition::CorrectedWaterRate = NULL; - this->prodml22__SeparatorSampleAcquisition::MeasuredOilRate = NULL; - this->prodml22__SeparatorSampleAcquisition::MeasuredGasRate = NULL; - this->prodml22__SeparatorSampleAcquisition::MeasuredWaterRate = NULL; - this->prodml22__SeparatorSampleAcquisition::FlowTestActivity = NULL; + this->prodml23__FluidSampleAcquisition::soap_default(soap); + soap_default_eml23__String64(soap, &this->prodml23__SeparatorSampleAcquisition::Separator); + this->prodml23__SeparatorSampleAcquisition::WellCompletion = NULL; + this->prodml23__SeparatorSampleAcquisition::SeparatorPressure = NULL; + this->prodml23__SeparatorSampleAcquisition::SeparatorTemperature = NULL; + this->prodml23__SeparatorSampleAcquisition::SamplingPoint = NULL; + this->prodml23__SeparatorSampleAcquisition::CorrectedOilRate = NULL; + this->prodml23__SeparatorSampleAcquisition::CorrectedGasRate = NULL; + this->prodml23__SeparatorSampleAcquisition::CorrectedWaterRate = NULL; + this->prodml23__SeparatorSampleAcquisition::MeasuredOilRate = NULL; + this->prodml23__SeparatorSampleAcquisition::MeasuredGasRate = NULL; + this->prodml23__SeparatorSampleAcquisition::MeasuredWaterRate = NULL; + this->prodml23__SeparatorSampleAcquisition::FlowTestActivity = NULL; } -void prodml22__SeparatorSampleAcquisition::soap_serialize(struct soap *soap) const +void prodml23__SeparatorSampleAcquisition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SeparatorSampleAcquisition::Separator, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__SeparatorSampleAcquisition::Separator); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__SeparatorSampleAcquisition::WellCompletion); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__SeparatorSampleAcquisition::SeparatorPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::SeparatorTemperature); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__SeparatorSampleAcquisition::SamplingPoint); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::CorrectedOilRate); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::CorrectedGasRate); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::CorrectedWaterRate); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::MeasuredOilRate); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::MeasuredGasRate); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SeparatorSampleAcquisition::MeasuredWaterRate); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__SeparatorSampleAcquisition::FlowTestActivity); - this->prodml22__FluidSampleAcquisition::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__SeparatorSampleAcquisition::Separator, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__SeparatorSampleAcquisition::Separator); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__SeparatorSampleAcquisition::WellCompletion); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__SeparatorSampleAcquisition::SeparatorPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::SeparatorTemperature); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__SeparatorSampleAcquisition::SamplingPoint); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::CorrectedOilRate); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::CorrectedGasRate); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::CorrectedWaterRate); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::MeasuredOilRate); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::MeasuredGasRate); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SeparatorSampleAcquisition::MeasuredWaterRate); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__SeparatorSampleAcquisition::FlowTestActivity); + this->prodml23__FluidSampleAcquisition::soap_serialize(soap); #endif } -int prodml22__SeparatorSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SeparatorSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SeparatorSampleAcquisition(soap, tag, id, this, type); + return soap_out_prodml23__SeparatorSampleAcquisition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SeparatorSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml22__SeparatorSampleAcquisition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SeparatorSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml23__SeparatorSampleAcquisition *a, const char *type) { if (!type) - type = "prodml22:SeparatorSampleAcquisition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleAcquisition*)a)->uid), 1); + type = "prodml23:SeparatorSampleAcquisition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleAcquisition*)a)->uid), 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_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition), type ? type : "prodml22:SeparatorSampleAcquisition")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition), type ? type : "prodml23:SeparatorSampleAcquisition")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", -1, &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", -1, &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", -1, &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", -1, &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", -1, &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", -1, &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSampleContainer) - { if (soap_element_empty(soap, "prodml22:FluidSampleContainer", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSampleContainer) + { if (soap_element_empty(soap, "prodml23:FluidSampleContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", -1, &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", -1, &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Separator", -1, &a->prodml22__SeparatorSampleAcquisition::Separator, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Separator", -1, &a->prodml23__SeparatorSampleAcquisition::Separator, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:WellCompletion", -1, &a->prodml22__SeparatorSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:WellCompletion", -1, &a->prodml23__SeparatorSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__SeparatorSampleAcquisition::SeparatorPressure) - { if (soap_element_empty(soap, "prodml22:SeparatorPressure", 0, NULL)) + if (!a->prodml23__SeparatorSampleAcquisition::SeparatorPressure) + { if (soap_element_empty(soap, "prodml23:SeparatorPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:SeparatorPressure", -1, &a->prodml22__SeparatorSampleAcquisition::SeparatorPressure, "eml23:AbstractPressureValue")) + else if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:SeparatorPressure", -1, &a->prodml23__SeparatorSampleAcquisition::SeparatorPressure, "eml23:AbstractPressureValue")) return soap->error; - if (!a->prodml22__SeparatorSampleAcquisition::SeparatorTemperature) - { if (soap_element_empty(soap, "prodml22:SeparatorTemperature", 0, NULL)) + if (!a->prodml23__SeparatorSampleAcquisition::SeparatorTemperature) + { if (soap_element_empty(soap, "prodml23:SeparatorTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:SeparatorTemperature", -1, &a->prodml22__SeparatorSampleAcquisition::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:SeparatorTemperature", -1, &a->prodml23__SeparatorSampleAcquisition::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SamplingPoint", -1, &a->prodml22__SeparatorSampleAcquisition::SamplingPoint, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SamplingPoint", -1, &a->prodml23__SeparatorSampleAcquisition::SamplingPoint, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:CorrectedOilRate", -1, &a->prodml22__SeparatorSampleAcquisition::CorrectedOilRate, "eml23:VolumePerTimeMeasure")) + if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:CorrectedOilRate", -1, &a->prodml23__SeparatorSampleAcquisition::CorrectedOilRate, "eml23:VolumePerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:CorrectedGasRate", -1, &a->prodml22__SeparatorSampleAcquisition::CorrectedGasRate, "eml23:VolumePerTimeMeasure")) + if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:CorrectedGasRate", -1, &a->prodml23__SeparatorSampleAcquisition::CorrectedGasRate, "eml23:VolumePerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:CorrectedWaterRate", -1, &a->prodml22__SeparatorSampleAcquisition::CorrectedWaterRate, "eml23:VolumePerTimeMeasure")) + if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:CorrectedWaterRate", -1, &a->prodml23__SeparatorSampleAcquisition::CorrectedWaterRate, "eml23:VolumePerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:MeasuredOilRate", -1, &a->prodml22__SeparatorSampleAcquisition::MeasuredOilRate, "eml23:VolumePerTimeMeasure")) + if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:MeasuredOilRate", -1, &a->prodml23__SeparatorSampleAcquisition::MeasuredOilRate, "eml23:VolumePerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:MeasuredGasRate", -1, &a->prodml22__SeparatorSampleAcquisition::MeasuredGasRate, "eml23:VolumePerTimeMeasure")) + if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:MeasuredGasRate", -1, &a->prodml23__SeparatorSampleAcquisition::MeasuredGasRate, "eml23:VolumePerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:MeasuredWaterRate", -1, &a->prodml22__SeparatorSampleAcquisition::MeasuredWaterRate, "eml23:VolumePerTimeMeasure")) + if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:MeasuredWaterRate", -1, &a->prodml23__SeparatorSampleAcquisition::MeasuredWaterRate, "eml23:VolumePerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__SeparatorSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__SeparatorSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SeparatorSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SeparatorSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SeparatorSampleAcquisition(soap, tag, this, type); + return soap_in_prodml23__SeparatorSampleAcquisition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__SeparatorSampleAcquisition(struct soap *soap, const char *tag, prodml22__SeparatorSampleAcquisition *a, const char *type) +SOAP_FMAC3 prodml23__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__SeparatorSampleAcquisition(struct soap *soap, const char *tag, prodml23__SeparatorSampleAcquisition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SeparatorSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition, sizeof(prodml22__SeparatorSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SeparatorSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition, sizeof(prodml23__SeparatorSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SeparatorSampleAcquisition *)a->soap_in(soap, tag, type); + return (prodml23__SeparatorSampleAcquisition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleAcquisition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleAcquisition*)a)->uid)) return NULL; size_t soap_flag_StartTime2 = 1; size_t soap_flag_EndTime2 = 1; @@ -175077,145 +175072,145 @@ SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__S for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AcquisitionPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) { soap_flag_AcquisitionPressure2--; continue; } } if (soap_flag_AcquisitionTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AcquisitionTemperature2--; continue; } } if (soap_flag_AcquisitionVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) { soap_flag_AcquisitionVolume2--; continue; } } if (soap_flag_AcquisitionGOR2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_AcquisitionGOR2--; continue; } } if (soap_flag_FormationPressureTemperatureDatum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) { soap_flag_FormationPressureTemperatureDatum2--; continue; } } if (soap_flag_FormationPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) { soap_flag_FormationPressure2--; continue; } } if (soap_flag_FormationTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FormationTemperature2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_FluidSampleContainer2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) { soap_flag_FluidSampleContainer2--; continue; } } if (soap_flag_FluidSample2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample2--; continue; } } if (soap_flag_Separator1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Separator", &a->prodml22__SeparatorSampleAcquisition::Separator, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Separator", &a->prodml23__SeparatorSampleAcquisition::Separator, "eml23:String64")) { soap_flag_Separator1--; continue; } } if (soap_flag_WellCompletion1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:WellCompletion", &a->prodml22__SeparatorSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:WellCompletion", &a->prodml23__SeparatorSampleAcquisition::WellCompletion, "eml23:DataObjectReference")) { soap_flag_WellCompletion1--; continue; } } if (soap_flag_SeparatorPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:SeparatorPressure", &a->prodml22__SeparatorSampleAcquisition::SeparatorPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:SeparatorPressure", &a->prodml23__SeparatorSampleAcquisition::SeparatorPressure, "eml23:AbstractPressureValue")) { soap_flag_SeparatorPressure1--; continue; } } if (soap_flag_SeparatorTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:SeparatorTemperature", &a->prodml22__SeparatorSampleAcquisition::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:SeparatorTemperature", &a->prodml23__SeparatorSampleAcquisition::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_SeparatorTemperature1--; continue; } } if (soap_flag_SamplingPoint1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SamplingPoint", &a->prodml22__SeparatorSampleAcquisition::SamplingPoint, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SamplingPoint", &a->prodml23__SeparatorSampleAcquisition::SamplingPoint, "eml23:String64")) { soap_flag_SamplingPoint1--; continue; } } if (soap_flag_CorrectedOilRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:CorrectedOilRate", &a->prodml22__SeparatorSampleAcquisition::CorrectedOilRate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:CorrectedOilRate", &a->prodml23__SeparatorSampleAcquisition::CorrectedOilRate, "eml23:VolumePerTimeMeasure")) { soap_flag_CorrectedOilRate1--; continue; } } if (soap_flag_CorrectedGasRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:CorrectedGasRate", &a->prodml22__SeparatorSampleAcquisition::CorrectedGasRate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:CorrectedGasRate", &a->prodml23__SeparatorSampleAcquisition::CorrectedGasRate, "eml23:VolumePerTimeMeasure")) { soap_flag_CorrectedGasRate1--; continue; } } if (soap_flag_CorrectedWaterRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:CorrectedWaterRate", &a->prodml22__SeparatorSampleAcquisition::CorrectedWaterRate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:CorrectedWaterRate", &a->prodml23__SeparatorSampleAcquisition::CorrectedWaterRate, "eml23:VolumePerTimeMeasure")) { soap_flag_CorrectedWaterRate1--; continue; } } if (soap_flag_MeasuredOilRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:MeasuredOilRate", &a->prodml22__SeparatorSampleAcquisition::MeasuredOilRate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:MeasuredOilRate", &a->prodml23__SeparatorSampleAcquisition::MeasuredOilRate, "eml23:VolumePerTimeMeasure")) { soap_flag_MeasuredOilRate1--; continue; } } if (soap_flag_MeasuredGasRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:MeasuredGasRate", &a->prodml22__SeparatorSampleAcquisition::MeasuredGasRate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:MeasuredGasRate", &a->prodml23__SeparatorSampleAcquisition::MeasuredGasRate, "eml23:VolumePerTimeMeasure")) { soap_flag_MeasuredGasRate1--; continue; } } if (soap_flag_MeasuredWaterRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:MeasuredWaterRate", &a->prodml22__SeparatorSampleAcquisition::MeasuredWaterRate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:MeasuredWaterRate", &a->prodml23__SeparatorSampleAcquisition::MeasuredWaterRate, "eml23:VolumePerTimeMeasure")) { soap_flag_MeasuredWaterRate1--; continue; } } if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__SeparatorSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__SeparatorSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) { soap_flag_FlowTestActivity1--; continue; } @@ -175229,7 +175224,7 @@ SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__S } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml22__FluidSampleAcquisition::FluidSampleContainer || !a->prodml22__FluidSampleAcquisition::FluidSample || soap_flag_Separator1 > 0 || !a->prodml22__SeparatorSampleAcquisition::SeparatorPressure || !a->prodml22__SeparatorSampleAcquisition::SeparatorTemperature)) + if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml23__FluidSampleAcquisition::FluidSampleContainer || !a->prodml23__FluidSampleAcquisition::FluidSample || soap_flag_Separator1 > 0 || !a->prodml23__SeparatorSampleAcquisition::SeparatorPressure || !a->prodml23__SeparatorSampleAcquisition::SeparatorTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -175239,35 +175234,35 @@ SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__S return NULL; } else - { a = (prodml22__SeparatorSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition, sizeof(prodml22__SeparatorSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SeparatorSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition, sizeof(prodml23__SeparatorSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__SeparatorSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__SeparatorSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SeparatorSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SeparatorSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SeparatorSampleAcquisition *p; - size_t k = sizeof(prodml22__SeparatorSampleAcquisition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition, n, gsoap_eml2_3_fdelete); + prodml23__SeparatorSampleAcquisition *p; + size_t k = sizeof(prodml23__SeparatorSampleAcquisition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SeparatorSampleAcquisition); + { p = SOAP_NEW(soap, prodml23__SeparatorSampleAcquisition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SeparatorSampleAcquisition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SeparatorSampleAcquisition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SeparatorSampleAcquisition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SeparatorSampleAcquisition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -175277,153 +175272,153 @@ SOAP_FMAC1 prodml22__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__SeparatorSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SeparatorSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SeparatorSampleAcquisition(soap, tag ? tag : "prodml22:SeparatorSampleAcquisition", -2, this, type)) + if (soap_out_prodml23__SeparatorSampleAcquisition(soap, tag ? tag : "prodml23:SeparatorSampleAcquisition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SeparatorSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SeparatorSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SeparatorSampleAcquisition(soap, this, tag, type); + return soap_get_prodml23__SeparatorSampleAcquisition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__SeparatorSampleAcquisition(struct soap *soap, prodml22__SeparatorSampleAcquisition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SeparatorSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__SeparatorSampleAcquisition(struct soap *soap, prodml23__SeparatorSampleAcquisition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SeparatorSampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_prodml23__SeparatorSampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FormationTesterSampleAcquisition::soap_default(struct soap *soap) +void prodml23__FormationTesterSampleAcquisition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidSampleAcquisition::soap_default(soap); - this->prodml22__FormationTesterSampleAcquisition::Wellbore = NULL; - this->prodml22__FormationTesterSampleAcquisition::MdTop = NULL; - this->prodml22__FormationTesterSampleAcquisition::MdBase = NULL; - this->prodml22__FormationTesterSampleAcquisition::SampleContainerName = NULL; - this->prodml22__FormationTesterSampleAcquisition::SampleCarrierSlotName = NULL; - this->prodml22__FormationTesterSampleAcquisition::SampleContainerConfiguration = NULL; - this->prodml22__FormationTesterSampleAcquisition::CushionPressure = NULL; - this->prodml22__FormationTesterSampleAcquisition::GrossFluidKind = NULL; - this->prodml22__FormationTesterSampleAcquisition::ToolSerialNumber = NULL; - this->prodml22__FormationTesterSampleAcquisition::ToolSectionName = NULL; - this->prodml22__FormationTesterSampleAcquisition::FlowTestActivity = NULL; + this->prodml23__FluidSampleAcquisition::soap_default(soap); + this->prodml23__FormationTesterSampleAcquisition::Wellbore = NULL; + this->prodml23__FormationTesterSampleAcquisition::MdTop = NULL; + this->prodml23__FormationTesterSampleAcquisition::MdBase = NULL; + this->prodml23__FormationTesterSampleAcquisition::SampleContainerName = NULL; + this->prodml23__FormationTesterSampleAcquisition::SampleCarrierSlotName = NULL; + this->prodml23__FormationTesterSampleAcquisition::SampleContainerConfiguration = NULL; + this->prodml23__FormationTesterSampleAcquisition::CushionPressure = NULL; + this->prodml23__FormationTesterSampleAcquisition::GrossFluidKind = NULL; + this->prodml23__FormationTesterSampleAcquisition::ToolSerialNumber = NULL; + this->prodml23__FormationTesterSampleAcquisition::ToolSectionName = NULL; + this->prodml23__FormationTesterSampleAcquisition::FlowTestActivity = NULL; } -void prodml22__FormationTesterSampleAcquisition::soap_serialize(struct soap *soap) const +void prodml23__FormationTesterSampleAcquisition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FormationTesterSampleAcquisition::Wellbore); - soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml22__FormationTesterSampleAcquisition::MdTop); - soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml22__FormationTesterSampleAcquisition::MdBase); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FormationTesterSampleAcquisition::SampleContainerName); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FormationTesterSampleAcquisition::SampleCarrierSlotName); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FormationTesterSampleAcquisition::SampleContainerConfiguration); - soap_serialize_PointerToeml23__PressureMeasureExt(soap, &this->prodml22__FormationTesterSampleAcquisition::CushionPressure); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FormationTesterSampleAcquisition::GrossFluidKind); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FormationTesterSampleAcquisition::ToolSerialNumber); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FormationTesterSampleAcquisition::ToolSectionName); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FormationTesterSampleAcquisition::FlowTestActivity); - this->prodml22__FluidSampleAcquisition::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FormationTesterSampleAcquisition::Wellbore); + soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml23__FormationTesterSampleAcquisition::MdTop); + soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml23__FormationTesterSampleAcquisition::MdBase); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FormationTesterSampleAcquisition::SampleContainerName); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FormationTesterSampleAcquisition::SampleCarrierSlotName); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FormationTesterSampleAcquisition::SampleContainerConfiguration); + soap_serialize_PointerToeml23__PressureMeasureExt(soap, &this->prodml23__FormationTesterSampleAcquisition::CushionPressure); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FormationTesterSampleAcquisition::GrossFluidKind); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FormationTesterSampleAcquisition::ToolSerialNumber); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FormationTesterSampleAcquisition::ToolSectionName); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FormationTesterSampleAcquisition::FlowTestActivity); + this->prodml23__FluidSampleAcquisition::soap_serialize(soap); #endif } -int prodml22__FormationTesterSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FormationTesterSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FormationTesterSampleAcquisition(soap, tag, id, this, type); + return soap_out_prodml23__FormationTesterSampleAcquisition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationTesterSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml22__FormationTesterSampleAcquisition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FormationTesterSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml23__FormationTesterSampleAcquisition *a, const char *type) { if (!type) - type = "prodml22:FormationTesterSampleAcquisition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleAcquisition*)a)->uid), 1); + type = "prodml23:FormationTesterSampleAcquisition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleAcquisition*)a)->uid), 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_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition), type ? type : "prodml22:FormationTesterSampleAcquisition")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition), type ? type : "prodml23:FormationTesterSampleAcquisition")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", -1, &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", -1, &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", -1, &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", -1, &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", -1, &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", -1, &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSampleContainer) - { if (soap_element_empty(soap, "prodml22:FluidSampleContainer", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSampleContainer) + { if (soap_element_empty(soap, "prodml23:FluidSampleContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", -1, &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", -1, &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Wellbore", -1, &a->prodml22__FormationTesterSampleAcquisition::Wellbore, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Wellbore", -1, &a->prodml23__FormationTesterSampleAcquisition::Wellbore, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml22:MdTop", -1, &a->prodml22__FormationTesterSampleAcquisition::MdTop, "eml23:MeasuredDepth")) + if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml23:MdTop", -1, &a->prodml23__FormationTesterSampleAcquisition::MdTop, "eml23:MeasuredDepth")) return soap->error; - if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml22:MdBase", -1, &a->prodml22__FormationTesterSampleAcquisition::MdBase, "eml23:MeasuredDepth")) + if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml23:MdBase", -1, &a->prodml23__FormationTesterSampleAcquisition::MdBase, "eml23:MeasuredDepth")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SampleContainerName", -1, &a->prodml22__FormationTesterSampleAcquisition::SampleContainerName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SampleContainerName", -1, &a->prodml23__FormationTesterSampleAcquisition::SampleContainerName, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SampleCarrierSlotName", -1, &a->prodml22__FormationTesterSampleAcquisition::SampleCarrierSlotName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SampleCarrierSlotName", -1, &a->prodml23__FormationTesterSampleAcquisition::SampleCarrierSlotName, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SampleContainerConfiguration", -1, &a->prodml22__FormationTesterSampleAcquisition::SampleContainerConfiguration, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SampleContainerConfiguration", -1, &a->prodml23__FormationTesterSampleAcquisition::SampleContainerConfiguration, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasureExt(soap, "prodml22:CushionPressure", -1, &a->prodml22__FormationTesterSampleAcquisition::CushionPressure, "eml23:PressureMeasureExt")) + if (soap_out_PointerToeml23__PressureMeasureExt(soap, "prodml23:CushionPressure", -1, &a->prodml23__FormationTesterSampleAcquisition::CushionPressure, "eml23:PressureMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:GrossFluidKind", -1, &a->prodml22__FormationTesterSampleAcquisition::GrossFluidKind, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:GrossFluidKind", -1, &a->prodml23__FormationTesterSampleAcquisition::GrossFluidKind, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ToolSerialNumber", -1, &a->prodml22__FormationTesterSampleAcquisition::ToolSerialNumber, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ToolSerialNumber", -1, &a->prodml23__FormationTesterSampleAcquisition::ToolSerialNumber, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ToolSectionName", -1, &a->prodml22__FormationTesterSampleAcquisition::ToolSectionName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ToolSectionName", -1, &a->prodml23__FormationTesterSampleAcquisition::ToolSectionName, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__FormationTesterSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__FormationTesterSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FormationTesterSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FormationTesterSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FormationTesterSampleAcquisition(soap, tag, this, type); + return soap_in_prodml23__FormationTesterSampleAcquisition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__FormationTesterSampleAcquisition(struct soap *soap, const char *tag, prodml22__FormationTesterSampleAcquisition *a, const char *type) +SOAP_FMAC3 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__FormationTesterSampleAcquisition(struct soap *soap, const char *tag, prodml23__FormationTesterSampleAcquisition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FormationTesterSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition, sizeof(prodml22__FormationTesterSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FormationTesterSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition, sizeof(prodml23__FormationTesterSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FormationTesterSampleAcquisition *)a->soap_in(soap, tag, type); + return (prodml23__FormationTesterSampleAcquisition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleAcquisition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleAcquisition*)a)->uid)) return NULL; size_t soap_flag_StartTime2 = 1; size_t soap_flag_EndTime2 = 1; @@ -175453,139 +175448,139 @@ SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AcquisitionPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) { soap_flag_AcquisitionPressure2--; continue; } } if (soap_flag_AcquisitionTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AcquisitionTemperature2--; continue; } } if (soap_flag_AcquisitionVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) { soap_flag_AcquisitionVolume2--; continue; } } if (soap_flag_AcquisitionGOR2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_AcquisitionGOR2--; continue; } } if (soap_flag_FormationPressureTemperatureDatum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) { soap_flag_FormationPressureTemperatureDatum2--; continue; } } if (soap_flag_FormationPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) { soap_flag_FormationPressure2--; continue; } } if (soap_flag_FormationTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FormationTemperature2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_FluidSampleContainer2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) { soap_flag_FluidSampleContainer2--; continue; } } if (soap_flag_FluidSample2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample2--; continue; } } if (soap_flag_Wellbore1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Wellbore", &a->prodml22__FormationTesterSampleAcquisition::Wellbore, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Wellbore", &a->prodml23__FormationTesterSampleAcquisition::Wellbore, "eml23:DataObjectReference")) { soap_flag_Wellbore1--; continue; } } if (soap_flag_MdTop1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml22:MdTop", &a->prodml22__FormationTesterSampleAcquisition::MdTop, "eml23:MeasuredDepth")) + { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml23:MdTop", &a->prodml23__FormationTesterSampleAcquisition::MdTop, "eml23:MeasuredDepth")) { soap_flag_MdTop1--; continue; } } if (soap_flag_MdBase1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml22:MdBase", &a->prodml22__FormationTesterSampleAcquisition::MdBase, "eml23:MeasuredDepth")) + { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml23:MdBase", &a->prodml23__FormationTesterSampleAcquisition::MdBase, "eml23:MeasuredDepth")) { soap_flag_MdBase1--; continue; } } if (soap_flag_SampleContainerName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SampleContainerName", &a->prodml22__FormationTesterSampleAcquisition::SampleContainerName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SampleContainerName", &a->prodml23__FormationTesterSampleAcquisition::SampleContainerName, "eml23:String64")) { soap_flag_SampleContainerName1--; continue; } } if (soap_flag_SampleCarrierSlotName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SampleCarrierSlotName", &a->prodml22__FormationTesterSampleAcquisition::SampleCarrierSlotName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SampleCarrierSlotName", &a->prodml23__FormationTesterSampleAcquisition::SampleCarrierSlotName, "eml23:String64")) { soap_flag_SampleCarrierSlotName1--; continue; } } if (soap_flag_SampleContainerConfiguration1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SampleContainerConfiguration", &a->prodml22__FormationTesterSampleAcquisition::SampleContainerConfiguration, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SampleContainerConfiguration", &a->prodml23__FormationTesterSampleAcquisition::SampleContainerConfiguration, "eml23:String64")) { soap_flag_SampleContainerConfiguration1--; continue; } } if (soap_flag_CushionPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasureExt(soap, "prodml22:CushionPressure", &a->prodml22__FormationTesterSampleAcquisition::CushionPressure, "eml23:PressureMeasureExt")) + { if (soap_in_PointerToeml23__PressureMeasureExt(soap, "prodml23:CushionPressure", &a->prodml23__FormationTesterSampleAcquisition::CushionPressure, "eml23:PressureMeasureExt")) { soap_flag_CushionPressure1--; continue; } } if (soap_flag_GrossFluidKind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:GrossFluidKind", &a->prodml22__FormationTesterSampleAcquisition::GrossFluidKind, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:GrossFluidKind", &a->prodml23__FormationTesterSampleAcquisition::GrossFluidKind, "eml23:String64")) { soap_flag_GrossFluidKind1--; continue; } } if (soap_flag_ToolSerialNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ToolSerialNumber", &a->prodml22__FormationTesterSampleAcquisition::ToolSerialNumber, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ToolSerialNumber", &a->prodml23__FormationTesterSampleAcquisition::ToolSerialNumber, "eml23:String64")) { soap_flag_ToolSerialNumber1--; continue; } } if (soap_flag_ToolSectionName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ToolSectionName", &a->prodml22__FormationTesterSampleAcquisition::ToolSectionName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ToolSectionName", &a->prodml23__FormationTesterSampleAcquisition::ToolSectionName, "eml23:String64")) { soap_flag_ToolSectionName1--; continue; } } if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__FormationTesterSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__FormationTesterSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) { soap_flag_FlowTestActivity1--; continue; } @@ -175599,7 +175594,7 @@ SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml22__FluidSampleAcquisition::FluidSampleContainer || !a->prodml22__FluidSampleAcquisition::FluidSample)) + if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml23__FluidSampleAcquisition::FluidSampleContainer || !a->prodml23__FluidSampleAcquisition::FluidSample)) { soap->error = SOAP_OCCURS; return NULL; } @@ -175609,35 +175604,35 @@ SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__FormationTesterSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition, sizeof(prodml22__FormationTesterSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FormationTesterSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition, sizeof(prodml23__FormationTesterSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FormationTesterSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FormationTesterSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FormationTesterSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FormationTesterSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FormationTesterSampleAcquisition *p; - size_t k = sizeof(prodml22__FormationTesterSampleAcquisition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition, n, gsoap_eml2_3_fdelete); + prodml23__FormationTesterSampleAcquisition *p; + size_t k = sizeof(prodml23__FormationTesterSampleAcquisition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FormationTesterSampleAcquisition); + { p = SOAP_NEW(soap, prodml23__FormationTesterSampleAcquisition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FormationTesterSampleAcquisition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FormationTesterSampleAcquisition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FormationTesterSampleAcquisition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FormationTesterSampleAcquisition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -175647,70 +175642,70 @@ SOAP_FMAC1 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instanti return p; } -int prodml22__FormationTesterSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FormationTesterSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FormationTesterSampleAcquisition(soap, tag ? tag : "prodml22:FormationTesterSampleAcquisition", -2, this, type)) + if (soap_out_prodml23__FormationTesterSampleAcquisition(soap, tag ? tag : "prodml23:FormationTesterSampleAcquisition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FormationTesterSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FormationTesterSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FormationTesterSampleAcquisition(soap, this, tag, type); + return soap_get_prodml23__FormationTesterSampleAcquisition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__FormationTesterSampleAcquisition(struct soap *soap, prodml22__FormationTesterSampleAcquisition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__FormationTesterSampleAcquisition(struct soap *soap, prodml23__FormationTesterSampleAcquisition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FormationTesterSampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_prodml23__FormationTesterSampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSampleAcquisitionJob::soap_default(struct soap *soap) +void prodml23__FluidSampleAcquisitionJob::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__FluidSampleAcquisitionJob::Client = NULL; - this->prodml22__FluidSampleAcquisitionJob::StartTime = NULL; - this->prodml22__FluidSampleAcquisitionJob::EndTime = NULL; - this->prodml22__FluidSampleAcquisitionJob::FlowTestJob = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap, &this->prodml22__FluidSampleAcquisitionJob::FluidSampleAcquisition); - this->prodml22__FluidSampleAcquisitionJob::FluidSystem = NULL; - this->prodml22__FluidSampleAcquisitionJob::ServiceCompany = NULL; + this->prodml23__FluidSampleAcquisitionJob::Client = NULL; + this->prodml23__FluidSampleAcquisitionJob::StartTime = NULL; + this->prodml23__FluidSampleAcquisitionJob::EndTime = NULL; + this->prodml23__FluidSampleAcquisitionJob::FlowTestJob = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap, &this->prodml23__FluidSampleAcquisitionJob::FluidSampleAcquisition); + this->prodml23__FluidSampleAcquisitionJob::FluidSystem = NULL; + this->prodml23__FluidSampleAcquisitionJob::ServiceCompany = NULL; } -void prodml22__FluidSampleAcquisitionJob::soap_serialize(struct soap *soap) const +void prodml23__FluidSampleAcquisitionJob::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisitionJob::Client); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__FluidSampleAcquisitionJob::StartTime); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__FluidSampleAcquisitionJob::EndTime); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisitionJob::FlowTestJob); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap, &this->prodml22__FluidSampleAcquisitionJob::FluidSampleAcquisition); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisitionJob::FluidSystem); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisitionJob::ServiceCompany); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisitionJob::Client); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__FluidSampleAcquisitionJob::StartTime); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__FluidSampleAcquisitionJob::EndTime); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisitionJob::FlowTestJob); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap, &this->prodml23__FluidSampleAcquisitionJob::FluidSampleAcquisition); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisitionJob::FluidSystem); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisitionJob::ServiceCompany); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FluidSampleAcquisitionJob::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSampleAcquisitionJob::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSampleAcquisitionJob(soap, tag, id, this, type); + return soap_out_prodml23__FluidSampleAcquisitionJob(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *tag, int id, const prodml22__FluidSampleAcquisitionJob *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *tag, int id, const prodml23__FluidSampleAcquisitionJob *a, const char *type) { if (!type) - type = "prodml22:FluidSampleAcquisitionJob"; + type = "prodml23:FluidSampleAcquisitionJob"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob), type ? type : "prodml22:FluidSampleAcquisitionJob")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob), type ? type : "prodml23:FluidSampleAcquisitionJob")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -175732,44 +175727,44 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisitionJob(struct so return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Client", -1, &a->prodml22__FluidSampleAcquisitionJob::Client, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Client", -1, &a->prodml23__FluidSampleAcquisitionJob::Client, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisitionJob::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisitionJob::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisitionJob::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisitionJob::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestJob", -1, &a->prodml22__FluidSampleAcquisitionJob::FlowTestJob, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestJob", -1, &a->prodml23__FluidSampleAcquisitionJob::FlowTestJob, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap, "prodml22:FluidSampleAcquisition", -1, &a->prodml22__FluidSampleAcquisitionJob::FluidSampleAcquisition, "prodml22:FluidSampleAcquisition")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap, "prodml23:FluidSampleAcquisition", -1, &a->prodml23__FluidSampleAcquisitionJob::FluidSampleAcquisition, "prodml23:FluidSampleAcquisition")) return soap->error; - if (!a->prodml22__FluidSampleAcquisitionJob::FluidSystem) - { if (soap_element_empty(soap, "prodml22:FluidSystem", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisitionJob::FluidSystem) + { if (soap_element_empty(soap, "prodml23:FluidSystem", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSystem", -1, &a->prodml22__FluidSampleAcquisitionJob::FluidSystem, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSystem", -1, &a->prodml23__FluidSampleAcquisitionJob::FluidSystem, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ServiceCompany", -1, &a->prodml22__FluidSampleAcquisitionJob::ServiceCompany, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ServiceCompany", -1, &a->prodml23__FluidSampleAcquisitionJob::ServiceCompany, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSampleAcquisitionJob::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleAcquisitionJob::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSampleAcquisitionJob(soap, tag, this, type); + return soap_in_prodml23__FluidSampleAcquisitionJob(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *tag, prodml22__FluidSampleAcquisitionJob *a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *tag, prodml23__FluidSampleAcquisitionJob *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSampleAcquisitionJob*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob, sizeof(prodml22__FluidSampleAcquisitionJob), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSampleAcquisitionJob*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob, sizeof(prodml23__FluidSampleAcquisitionJob), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSampleAcquisitionJob *)a->soap_in(soap, tag, type); + return (prodml23__FluidSampleAcquisitionJob *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -175847,41 +175842,41 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml22__Fl continue; } if (soap_flag_Client1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Client", &a->prodml22__FluidSampleAcquisitionJob::Client, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Client", &a->prodml23__FluidSampleAcquisitionJob::Client, "eml23:DataObjectReference")) { soap_flag_Client1--; continue; } } if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisitionJob::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisitionJob::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisitionJob::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisitionJob::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } } if (soap_flag_FlowTestJob1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestJob", &a->prodml22__FluidSampleAcquisitionJob::FlowTestJob, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestJob", &a->prodml23__FluidSampleAcquisitionJob::FlowTestJob, "eml23:DataObjectReference")) { soap_flag_FlowTestJob1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap, "prodml22:FluidSampleAcquisition", &a->prodml22__FluidSampleAcquisitionJob::FluidSampleAcquisition, "prodml22:FluidSampleAcquisition")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap, "prodml23:FluidSampleAcquisition", &a->prodml23__FluidSampleAcquisitionJob::FluidSampleAcquisition, "prodml23:FluidSampleAcquisition")) continue; } if (soap_flag_FluidSystem1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSystem", &a->prodml22__FluidSampleAcquisitionJob::FluidSystem, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSystem", &a->prodml23__FluidSampleAcquisitionJob::FluidSystem, "eml23:DataObjectReference")) { soap_flag_FluidSystem1--; continue; } } if (soap_flag_ServiceCompany1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ServiceCompany", &a->prodml22__FluidSampleAcquisitionJob::ServiceCompany, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ServiceCompany", &a->prodml23__FluidSampleAcquisitionJob::ServiceCompany, "eml23:DataObjectReference")) { soap_flag_ServiceCompany1--; continue; } @@ -175895,7 +175890,7 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml22__Fl } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FluidSampleAcquisitionJob::FluidSystem)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FluidSampleAcquisitionJob::FluidSystem)) { soap->error = SOAP_OCCURS; return NULL; } @@ -175905,35 +175900,35 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml22__Fl return NULL; } else - { a = (prodml22__FluidSampleAcquisitionJob *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob, sizeof(prodml22__FluidSampleAcquisitionJob), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleAcquisitionJob *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob, sizeof(prodml23__FluidSampleAcquisitionJob), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisitionJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisitionJob(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSampleAcquisitionJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSampleAcquisitionJob(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSampleAcquisitionJob *p; - size_t k = sizeof(prodml22__FluidSampleAcquisitionJob); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob, n, gsoap_eml2_3_fdelete); + prodml23__FluidSampleAcquisitionJob *p; + size_t k = sizeof(prodml23__FluidSampleAcquisitionJob); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSampleAcquisitionJob); + { p = SOAP_NEW(soap, prodml23__FluidSampleAcquisitionJob); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSampleAcquisitionJob, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSampleAcquisitionJob, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSampleAcquisitionJob location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSampleAcquisitionJob location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -175943,135 +175938,135 @@ SOAP_FMAC1 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__FluidSampleAcquisitionJob::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSampleAcquisitionJob::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSampleAcquisitionJob(soap, tag ? tag : "prodml22:FluidSampleAcquisitionJob", -2, this, type)) + if (soap_out_prodml23__FluidSampleAcquisitionJob(soap, tag ? tag : "prodml23:FluidSampleAcquisitionJob", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSampleAcquisitionJob::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleAcquisitionJob::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSampleAcquisitionJob(soap, this, tag, type); + return soap_get_prodml23__FluidSampleAcquisitionJob(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_get_prodml22__FluidSampleAcquisitionJob(struct soap *soap, prodml22__FluidSampleAcquisitionJob *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_get_prodml23__FluidSampleAcquisitionJob(struct soap *soap, prodml23__FluidSampleAcquisitionJob *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleAcquisitionJob(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleAcquisitionJob(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSampleAcquisition::soap_default(struct soap *soap) +void prodml23__FluidSampleAcquisition::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__TimeStamp(soap, &this->prodml22__FluidSampleAcquisition::StartTime); - soap_default_eml23__TimeStamp(soap, &this->prodml22__FluidSampleAcquisition::EndTime); - this->prodml22__FluidSampleAcquisition::AcquisitionPressure = NULL; - this->prodml22__FluidSampleAcquisition::AcquisitionTemperature = NULL; - this->prodml22__FluidSampleAcquisition::AcquisitionVolume = NULL; - this->prodml22__FluidSampleAcquisition::AcquisitionGOR = NULL; - this->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = NULL; - this->prodml22__FluidSampleAcquisition::FormationPressure = NULL; - this->prodml22__FluidSampleAcquisition::FormationTemperature = NULL; - soap_default_eml23__String2000(soap, &this->prodml22__FluidSampleAcquisition::Remark); - this->prodml22__FluidSampleAcquisition::FluidSampleContainer = NULL; - this->prodml22__FluidSampleAcquisition::FluidSample = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidSampleAcquisition::uid); + soap_default_eml23__TimeStamp(soap, &this->prodml23__FluidSampleAcquisition::StartTime); + soap_default_eml23__TimeStamp(soap, &this->prodml23__FluidSampleAcquisition::EndTime); + this->prodml23__FluidSampleAcquisition::AcquisitionPressure = NULL; + this->prodml23__FluidSampleAcquisition::AcquisitionTemperature = NULL; + this->prodml23__FluidSampleAcquisition::AcquisitionVolume = NULL; + this->prodml23__FluidSampleAcquisition::AcquisitionGOR = NULL; + this->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = NULL; + this->prodml23__FluidSampleAcquisition::FormationPressure = NULL; + this->prodml23__FluidSampleAcquisition::FormationTemperature = NULL; + soap_default_eml23__String2000(soap, &this->prodml23__FluidSampleAcquisition::Remark); + this->prodml23__FluidSampleAcquisition::FluidSampleContainer = NULL; + this->prodml23__FluidSampleAcquisition::FluidSample = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidSampleAcquisition::uid); } -void prodml22__FluidSampleAcquisition::soap_serialize(struct soap *soap) const +void prodml23__FluidSampleAcquisition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidSampleAcquisition::StartTime, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__FluidSampleAcquisition::StartTime); - soap_embedded(soap, &this->prodml22__FluidSampleAcquisition::EndTime, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__FluidSampleAcquisition::EndTime); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__FluidSampleAcquisition::AcquisitionPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidSampleAcquisition::AcquisitionTemperature); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidSampleAcquisition::AcquisitionVolume); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSampleAcquisition::AcquisitionGOR); - soap_serialize_PointerToeml23__LengthMeasureExt(soap, &this->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidSampleAcquisition::FormationPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidSampleAcquisition::FormationTemperature); - soap_embedded(soap, &this->prodml22__FluidSampleAcquisition::Remark, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); - soap_serialize_eml23__String2000(soap, &this->prodml22__FluidSampleAcquisition::Remark); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisition::FluidSampleContainer); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisition::FluidSample); + soap_embedded(soap, &this->prodml23__FluidSampleAcquisition::StartTime, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__FluidSampleAcquisition::StartTime); + soap_embedded(soap, &this->prodml23__FluidSampleAcquisition::EndTime, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__FluidSampleAcquisition::EndTime); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__FluidSampleAcquisition::AcquisitionPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidSampleAcquisition::AcquisitionTemperature); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidSampleAcquisition::AcquisitionVolume); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSampleAcquisition::AcquisitionGOR); + soap_serialize_PointerToeml23__LengthMeasureExt(soap, &this->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidSampleAcquisition::FormationPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidSampleAcquisition::FormationTemperature); + soap_embedded(soap, &this->prodml23__FluidSampleAcquisition::Remark, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); + soap_serialize_eml23__String2000(soap, &this->prodml23__FluidSampleAcquisition::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisition::FluidSampleContainer); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisition::FluidSample); #endif } -int prodml22__FluidSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSampleAcquisition(soap, tag, id, this, type); + return soap_out_prodml23__FluidSampleAcquisition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml22__FluidSampleAcquisition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml23__FluidSampleAcquisition *a, const char *type) { if (!type) - type = "prodml22:FluidSampleAcquisition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleAcquisition*)a)->uid), 1); + type = "prodml23:FluidSampleAcquisition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleAcquisition*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidSampleAcquisition), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition), type)) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", -1, &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", -1, &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", -1, &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", -1, &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", -1, &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", -1, &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSampleContainer) - { if (soap_element_empty(soap, "prodml22:FluidSampleContainer", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSampleContainer) + { if (soap_element_empty(soap, "prodml23:FluidSampleContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", -1, &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", -1, &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSampleAcquisition(soap, tag, this, type); + return soap_in_prodml23__FluidSampleAcquisition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__FluidSampleAcquisition(struct soap *soap, const char *tag, prodml22__FluidSampleAcquisition *a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__FluidSampleAcquisition(struct soap *soap, const char *tag, prodml23__FluidSampleAcquisition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, sizeof(prodml22__FluidSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, sizeof(prodml23__FluidSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSampleAcquisition *)a->soap_in(soap, tag, type); + return (prodml23__FluidSampleAcquisition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleAcquisition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleAcquisition*)a)->uid)) return NULL; size_t soap_flag_StartTime1 = 1; size_t soap_flag_EndTime1 = 1; @@ -176090,73 +176085,73 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Fluid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } } if (soap_flag_AcquisitionPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) { soap_flag_AcquisitionPressure1--; continue; } } if (soap_flag_AcquisitionTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AcquisitionTemperature1--; continue; } } if (soap_flag_AcquisitionVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) { soap_flag_AcquisitionVolume1--; continue; } } if (soap_flag_AcquisitionGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_AcquisitionGOR1--; continue; } } if (soap_flag_FormationPressureTemperatureDatum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) { soap_flag_FormationPressureTemperatureDatum1--; continue; } } if (soap_flag_FormationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) { soap_flag_FormationPressure1--; continue; } } if (soap_flag_FormationTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FormationTemperature1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_FluidSampleContainer1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) { soap_flag_FluidSampleContainer1--; continue; } } if (soap_flag_FluidSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample1--; continue; } @@ -176170,7 +176165,7 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Fluid } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StartTime1 > 0 || soap_flag_EndTime1 > 0 || soap_flag_Remark1 > 0 || !a->prodml22__FluidSampleAcquisition::FluidSampleContainer || !a->prodml22__FluidSampleAcquisition::FluidSample)) + if ((soap_flag_StartTime1 > 0 || soap_flag_EndTime1 > 0 || soap_flag_Remark1 > 0 || !a->prodml23__FluidSampleAcquisition::FluidSampleContainer || !a->prodml23__FluidSampleAcquisition::FluidSample)) { soap->error = SOAP_OCCURS; return NULL; } @@ -176180,45 +176175,45 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Fluid return NULL; } else - { a = (prodml22__FluidSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, sizeof(prodml22__FluidSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, sizeof(prodml23__FluidSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSampleAcquisition(%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, "prodml22:DownholeSampleAcquisition")) - return soap_instantiate_prodml22__DownholeSampleAcquisition(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FacilitySampleAcquisition")) - return soap_instantiate_prodml22__FacilitySampleAcquisition(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FormationTesterSampleAcquisition")) - return soap_instantiate_prodml22__FormationTesterSampleAcquisition(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SeparatorSampleAcquisition")) - return soap_instantiate_prodml22__SeparatorSampleAcquisition(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellheadSampleAcquisition")) - return soap_instantiate_prodml22__WellheadSampleAcquisition(soap, n, NULL, NULL, size); - prodml22__FluidSampleAcquisition *p; - size_t k = sizeof(prodml22__FluidSampleAcquisition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DownholeSampleAcquisition")) + return soap_instantiate_prodml23__DownholeSampleAcquisition(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FacilitySampleAcquisition")) + return soap_instantiate_prodml23__FacilitySampleAcquisition(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FormationTesterSampleAcquisition")) + return soap_instantiate_prodml23__FormationTesterSampleAcquisition(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SeparatorSampleAcquisition")) + return soap_instantiate_prodml23__SeparatorSampleAcquisition(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellheadSampleAcquisition")) + return soap_instantiate_prodml23__WellheadSampleAcquisition(soap, n, NULL, NULL, size); + prodml23__FluidSampleAcquisition *p; + size_t k = sizeof(prodml23__FluidSampleAcquisition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSampleAcquisition); + { p = SOAP_NEW(soap, prodml23__FluidSampleAcquisition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSampleAcquisition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSampleAcquisition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSampleAcquisition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSampleAcquisition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -176228,133 +176223,133 @@ SOAP_FMAC1 prodml22__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__FluidSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSampleAcquisition(soap, tag ? tag : "prodml22:FluidSampleAcquisition", -2, this, type)) + if (soap_out_prodml23__FluidSampleAcquisition(soap, tag ? tag : "prodml23:FluidSampleAcquisition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSampleAcquisition(soap, this, tag, type); + return soap_get_prodml23__FluidSampleAcquisition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FacilitySampleAcquisition::soap_default(struct soap *soap) +void prodml23__FacilitySampleAcquisition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidSampleAcquisition::soap_default(soap); - this->prodml22__FacilitySampleAcquisition::SamplingPoint = NULL; - this->prodml22__FacilitySampleAcquisition::FacilityPressure = NULL; - this->prodml22__FacilitySampleAcquisition::FacilityTemperature = NULL; - this->prodml22__FacilitySampleAcquisition::Facility = NULL; + this->prodml23__FluidSampleAcquisition::soap_default(soap); + this->prodml23__FacilitySampleAcquisition::SamplingPoint = NULL; + this->prodml23__FacilitySampleAcquisition::FacilityPressure = NULL; + this->prodml23__FacilitySampleAcquisition::FacilityTemperature = NULL; + this->prodml23__FacilitySampleAcquisition::Facility = NULL; } -void prodml22__FacilitySampleAcquisition::soap_serialize(struct soap *soap) const +void prodml23__FacilitySampleAcquisition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FacilitySampleAcquisition::SamplingPoint); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__FacilitySampleAcquisition::FacilityPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FacilitySampleAcquisition::FacilityTemperature); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FacilitySampleAcquisition::Facility); - this->prodml22__FluidSampleAcquisition::soap_serialize(soap); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FacilitySampleAcquisition::SamplingPoint); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__FacilitySampleAcquisition::FacilityPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FacilitySampleAcquisition::FacilityTemperature); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FacilitySampleAcquisition::Facility); + this->prodml23__FluidSampleAcquisition::soap_serialize(soap); #endif } -int prodml22__FacilitySampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FacilitySampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FacilitySampleAcquisition(soap, tag, id, this, type); + return soap_out_prodml23__FacilitySampleAcquisition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilitySampleAcquisition(struct soap *soap, const char *tag, int id, const prodml22__FacilitySampleAcquisition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilitySampleAcquisition(struct soap *soap, const char *tag, int id, const prodml23__FacilitySampleAcquisition *a, const char *type) { if (!type) - type = "prodml22:FacilitySampleAcquisition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleAcquisition*)a)->uid), 1); + type = "prodml23:FacilitySampleAcquisition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleAcquisition*)a)->uid), 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_gsoap_eml2_3_prodml22__FacilitySampleAcquisition), type ? type : "prodml22:FacilitySampleAcquisition")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition), type ? type : "prodml23:FacilitySampleAcquisition")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", -1, &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", -1, &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", -1, &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", -1, &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", -1, &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", -1, &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSampleContainer) - { if (soap_element_empty(soap, "prodml22:FluidSampleContainer", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSampleContainer) + { if (soap_element_empty(soap, "prodml23:FluidSampleContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", -1, &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", -1, &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SamplingPoint", -1, &a->prodml22__FacilitySampleAcquisition::SamplingPoint, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SamplingPoint", -1, &a->prodml23__FacilitySampleAcquisition::SamplingPoint, "eml23:String64")) return soap->error; - if (!a->prodml22__FacilitySampleAcquisition::FacilityPressure) - { if (soap_element_empty(soap, "prodml22:FacilityPressure", 0, NULL)) + if (!a->prodml23__FacilitySampleAcquisition::FacilityPressure) + { if (soap_element_empty(soap, "prodml23:FacilityPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:FacilityPressure", -1, &a->prodml22__FacilitySampleAcquisition::FacilityPressure, "eml23:AbstractPressureValue")) + else if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:FacilityPressure", -1, &a->prodml23__FacilitySampleAcquisition::FacilityPressure, "eml23:AbstractPressureValue")) return soap->error; - if (!a->prodml22__FacilitySampleAcquisition::FacilityTemperature) - { if (soap_element_empty(soap, "prodml22:FacilityTemperature", 0, NULL)) + if (!a->prodml23__FacilitySampleAcquisition::FacilityTemperature) + { if (soap_element_empty(soap, "prodml23:FacilityTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FacilityTemperature", -1, &a->prodml22__FacilitySampleAcquisition::FacilityTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FacilityTemperature", -1, &a->prodml23__FacilitySampleAcquisition::FacilityTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Facility", -1, &a->prodml22__FacilitySampleAcquisition::Facility, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Facility", -1, &a->prodml23__FacilitySampleAcquisition::Facility, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FacilitySampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilitySampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FacilitySampleAcquisition(soap, tag, this, type); + return soap_in_prodml23__FacilitySampleAcquisition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml22__FacilitySampleAcquisition(struct soap *soap, const char *tag, prodml22__FacilitySampleAcquisition *a, const char *type) +SOAP_FMAC3 prodml23__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml23__FacilitySampleAcquisition(struct soap *soap, const char *tag, prodml23__FacilitySampleAcquisition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FacilitySampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition, sizeof(prodml22__FacilitySampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FacilitySampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition, sizeof(prodml23__FacilitySampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FacilitySampleAcquisition *)a->soap_in(soap, tag, type); + return (prodml23__FacilitySampleAcquisition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleAcquisition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleAcquisition*)a)->uid)) return NULL; size_t soap_flag_StartTime2 = 1; size_t soap_flag_EndTime2 = 1; @@ -176377,97 +176372,97 @@ SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Fa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AcquisitionPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) { soap_flag_AcquisitionPressure2--; continue; } } if (soap_flag_AcquisitionTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AcquisitionTemperature2--; continue; } } if (soap_flag_AcquisitionVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) { soap_flag_AcquisitionVolume2--; continue; } } if (soap_flag_AcquisitionGOR2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_AcquisitionGOR2--; continue; } } if (soap_flag_FormationPressureTemperatureDatum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) { soap_flag_FormationPressureTemperatureDatum2--; continue; } } if (soap_flag_FormationPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) { soap_flag_FormationPressure2--; continue; } } if (soap_flag_FormationTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FormationTemperature2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_FluidSampleContainer2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) { soap_flag_FluidSampleContainer2--; continue; } } if (soap_flag_FluidSample2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample2--; continue; } } if (soap_flag_SamplingPoint1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SamplingPoint", &a->prodml22__FacilitySampleAcquisition::SamplingPoint, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SamplingPoint", &a->prodml23__FacilitySampleAcquisition::SamplingPoint, "eml23:String64")) { soap_flag_SamplingPoint1--; continue; } } if (soap_flag_FacilityPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:FacilityPressure", &a->prodml22__FacilitySampleAcquisition::FacilityPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:FacilityPressure", &a->prodml23__FacilitySampleAcquisition::FacilityPressure, "eml23:AbstractPressureValue")) { soap_flag_FacilityPressure1--; continue; } } if (soap_flag_FacilityTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FacilityTemperature", &a->prodml22__FacilitySampleAcquisition::FacilityTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FacilityTemperature", &a->prodml23__FacilitySampleAcquisition::FacilityTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FacilityTemperature1--; continue; } } if (soap_flag_Facility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Facility", &a->prodml22__FacilitySampleAcquisition::Facility, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Facility", &a->prodml23__FacilitySampleAcquisition::Facility, "eml23:DataObjectReference")) { soap_flag_Facility1--; continue; } @@ -176481,7 +176476,7 @@ SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Fa } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml22__FluidSampleAcquisition::FluidSampleContainer || !a->prodml22__FluidSampleAcquisition::FluidSample || !a->prodml22__FacilitySampleAcquisition::FacilityPressure || !a->prodml22__FacilitySampleAcquisition::FacilityTemperature)) + if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml23__FluidSampleAcquisition::FluidSampleContainer || !a->prodml23__FluidSampleAcquisition::FluidSample || !a->prodml23__FacilitySampleAcquisition::FacilityPressure || !a->prodml23__FacilitySampleAcquisition::FacilityTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -176491,35 +176486,35 @@ SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Fa return NULL; } else - { a = (prodml22__FacilitySampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition, sizeof(prodml22__FacilitySampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FacilitySampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition, sizeof(prodml23__FacilitySampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FacilitySampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FacilitySampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FacilitySampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FacilitySampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FacilitySampleAcquisition *p; - size_t k = sizeof(prodml22__FacilitySampleAcquisition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition, n, gsoap_eml2_3_fdelete); + prodml23__FacilitySampleAcquisition *p; + size_t k = sizeof(prodml23__FacilitySampleAcquisition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FacilitySampleAcquisition); + { p = SOAP_NEW(soap, prodml23__FacilitySampleAcquisition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FacilitySampleAcquisition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FacilitySampleAcquisition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FacilitySampleAcquisition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FacilitySampleAcquisition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -176529,149 +176524,149 @@ SOAP_FMAC1 prodml22__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__FacilitySampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FacilitySampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FacilitySampleAcquisition(soap, tag ? tag : "prodml22:FacilitySampleAcquisition", -2, this, type)) + if (soap_out_prodml23__FacilitySampleAcquisition(soap, tag ? tag : "prodml23:FacilitySampleAcquisition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FacilitySampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilitySampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FacilitySampleAcquisition(soap, this, tag, type); + return soap_get_prodml23__FacilitySampleAcquisition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_get_prodml22__FacilitySampleAcquisition(struct soap *soap, prodml22__FacilitySampleAcquisition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilitySampleAcquisition * SOAP_FMAC4 soap_get_prodml23__FacilitySampleAcquisition(struct soap *soap, prodml23__FacilitySampleAcquisition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilitySampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilitySampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DownholeSampleAcquisition::soap_default(struct soap *soap) +void prodml23__DownholeSampleAcquisition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidSampleAcquisition::soap_default(soap); - this->prodml22__DownholeSampleAcquisition::Wellbore = NULL; - this->prodml22__DownholeSampleAcquisition::WellboreCompletion = NULL; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__DownholeSampleAcquisition::SamplingRun); - this->prodml22__DownholeSampleAcquisition::TopMD = NULL; - this->prodml22__DownholeSampleAcquisition::BaseMD = NULL; - this->prodml22__DownholeSampleAcquisition::ToolSerialNumber = NULL; - this->prodml22__DownholeSampleAcquisition::ToolKind = NULL; - this->prodml22__DownholeSampleAcquisition::FlowTestActivity = NULL; + this->prodml23__FluidSampleAcquisition::soap_default(soap); + this->prodml23__DownholeSampleAcquisition::Wellbore = NULL; + this->prodml23__DownholeSampleAcquisition::WellboreCompletion = NULL; + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__DownholeSampleAcquisition::SamplingRun); + this->prodml23__DownholeSampleAcquisition::TopMD = NULL; + this->prodml23__DownholeSampleAcquisition::BaseMD = NULL; + this->prodml23__DownholeSampleAcquisition::ToolSerialNumber = NULL; + this->prodml23__DownholeSampleAcquisition::ToolKind = NULL; + this->prodml23__DownholeSampleAcquisition::FlowTestActivity = NULL; } -void prodml22__DownholeSampleAcquisition::soap_serialize(struct soap *soap) const +void prodml23__DownholeSampleAcquisition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__DownholeSampleAcquisition::Wellbore); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__DownholeSampleAcquisition::WellboreCompletion); - soap_embedded(soap, &this->prodml22__DownholeSampleAcquisition::SamplingRun, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DownholeSampleAcquisition::TopMD); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DownholeSampleAcquisition::BaseMD); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__DownholeSampleAcquisition::ToolSerialNumber); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__DownholeSampleAcquisition::ToolKind); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__DownholeSampleAcquisition::FlowTestActivity); - this->prodml22__FluidSampleAcquisition::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__DownholeSampleAcquisition::Wellbore); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__DownholeSampleAcquisition::WellboreCompletion); + soap_embedded(soap, &this->prodml23__DownholeSampleAcquisition::SamplingRun, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DownholeSampleAcquisition::TopMD); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DownholeSampleAcquisition::BaseMD); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__DownholeSampleAcquisition::ToolSerialNumber); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__DownholeSampleAcquisition::ToolKind); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__DownholeSampleAcquisition::FlowTestActivity); + this->prodml23__FluidSampleAcquisition::soap_serialize(soap); #endif } -int prodml22__DownholeSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DownholeSampleAcquisition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DownholeSampleAcquisition(soap, tag, id, this, type); + return soap_out_prodml23__DownholeSampleAcquisition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DownholeSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml22__DownholeSampleAcquisition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DownholeSampleAcquisition(struct soap *soap, const char *tag, int id, const prodml23__DownholeSampleAcquisition *a, const char *type) { if (!type) - type = "prodml22:DownholeSampleAcquisition"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleAcquisition*)a)->uid), 1); + type = "prodml23:DownholeSampleAcquisition"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleAcquisition*)a)->uid), 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_gsoap_eml2_3_prodml22__DownholeSampleAcquisition), type ? type : "prodml22:DownholeSampleAcquisition")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition), type ? type : "prodml23:DownholeSampleAcquisition")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", -1, &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", -1, &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", -1, &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + if (soap_out_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", -1, &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", -1, &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", -1, &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", -1, &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", -1, &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSampleContainer) - { if (soap_element_empty(soap, "prodml22:FluidSampleContainer", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSampleContainer) + { if (soap_element_empty(soap, "prodml23:FluidSampleContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", -1, &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", -1, &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleAcquisition::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisition::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__DownholeSampleAcquisition::Wellbore) - { if (soap_element_empty(soap, "prodml22:Wellbore", 0, NULL)) + if (!a->prodml23__DownholeSampleAcquisition::Wellbore) + { if (soap_element_empty(soap, "prodml23:Wellbore", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Wellbore", -1, &a->prodml22__DownholeSampleAcquisition::Wellbore, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Wellbore", -1, &a->prodml23__DownholeSampleAcquisition::Wellbore, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:WellboreCompletion", -1, &a->prodml22__DownholeSampleAcquisition::WellboreCompletion, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:WellboreCompletion", -1, &a->prodml23__DownholeSampleAcquisition::WellboreCompletion, "eml23:DataObjectReference")) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:SamplingRun", -1, &a->prodml22__DownholeSampleAcquisition::SamplingRun, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:SamplingRun", -1, &a->prodml23__DownholeSampleAcquisition::SamplingRun, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__DownholeSampleAcquisition::TopMD) - { if (soap_element_empty(soap, "prodml22:TopMD", 0, NULL)) + if (!a->prodml23__DownholeSampleAcquisition::TopMD) + { if (soap_element_empty(soap, "prodml23:TopMD", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:TopMD", -1, &a->prodml22__DownholeSampleAcquisition::TopMD, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:TopMD", -1, &a->prodml23__DownholeSampleAcquisition::TopMD, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:BaseMD", -1, &a->prodml22__DownholeSampleAcquisition::BaseMD, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:BaseMD", -1, &a->prodml23__DownholeSampleAcquisition::BaseMD, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ToolSerialNumber", -1, &a->prodml22__DownholeSampleAcquisition::ToolSerialNumber, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ToolSerialNumber", -1, &a->prodml23__DownholeSampleAcquisition::ToolSerialNumber, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ToolKind", -1, &a->prodml22__DownholeSampleAcquisition::ToolKind, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ToolKind", -1, &a->prodml23__DownholeSampleAcquisition::ToolKind, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__DownholeSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__DownholeSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DownholeSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DownholeSampleAcquisition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DownholeSampleAcquisition(soap, tag, this, type); + return soap_in_prodml23__DownholeSampleAcquisition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__DownholeSampleAcquisition(struct soap *soap, const char *tag, prodml22__DownholeSampleAcquisition *a, const char *type) +SOAP_FMAC3 prodml23__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__DownholeSampleAcquisition(struct soap *soap, const char *tag, prodml23__DownholeSampleAcquisition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DownholeSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition, sizeof(prodml22__DownholeSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DownholeSampleAcquisition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition, sizeof(prodml23__DownholeSampleAcquisition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DownholeSampleAcquisition *)a->soap_in(soap, tag, type); + return (prodml23__DownholeSampleAcquisition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleAcquisition*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleAcquisition*)a)->uid)) return NULL; size_t soap_flag_StartTime2 = 1; size_t soap_flag_EndTime2 = 1; @@ -176698,121 +176693,121 @@ SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Do for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidSampleAcquisition::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidSampleAcquisition::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AcquisitionPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:AcquisitionPressure", &a->prodml22__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:AcquisitionPressure", &a->prodml23__FluidSampleAcquisition::AcquisitionPressure, "eml23:AbstractPressureValue")) { soap_flag_AcquisitionPressure2--; continue; } } if (soap_flag_AcquisitionTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AcquisitionTemperature", &a->prodml22__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AcquisitionTemperature", &a->prodml23__FluidSampleAcquisition::AcquisitionTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AcquisitionTemperature2--; continue; } } if (soap_flag_AcquisitionVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:AcquisitionVolume", &a->prodml22__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:AcquisitionVolume", &a->prodml23__FluidSampleAcquisition::AcquisitionVolume, "eml23:VolumeMeasure")) { soap_flag_AcquisitionVolume2--; continue; } } if (soap_flag_AcquisitionGOR2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:AcquisitionGOR", &a->prodml22__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:AcquisitionGOR", &a->prodml23__FluidSampleAcquisition::AcquisitionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_AcquisitionGOR2--; continue; } } if (soap_flag_FormationPressureTemperatureDatum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml22:FormationPressureTemperatureDatum", &a->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) + { if (soap_in_PointerToeml23__LengthMeasureExt(soap, "prodml23:FormationPressureTemperatureDatum", &a->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum, "eml23:LengthMeasureExt")) { soap_flag_FormationPressureTemperatureDatum2--; continue; } } if (soap_flag_FormationPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FormationPressure", &a->prodml22__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FormationPressure", &a->prodml23__FluidSampleAcquisition::FormationPressure, "eml23:PressureMeasure")) { soap_flag_FormationPressure2--; continue; } } if (soap_flag_FormationTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FormationTemperature", &a->prodml22__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FormationTemperature", &a->prodml23__FluidSampleAcquisition::FormationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FormationTemperature2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleAcquisition::Remark, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleAcquisition::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_FluidSampleContainer2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleContainer", &a->prodml22__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleContainer", &a->prodml23__FluidSampleAcquisition::FluidSampleContainer, "eml23:DataObjectReference")) { soap_flag_FluidSampleContainer2--; continue; } } if (soap_flag_FluidSample2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__FluidSampleAcquisition::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample2--; continue; } } if (soap_flag_Wellbore1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Wellbore", &a->prodml22__DownholeSampleAcquisition::Wellbore, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Wellbore", &a->prodml23__DownholeSampleAcquisition::Wellbore, "eml23:DataObjectReference")) { soap_flag_Wellbore1--; continue; } } if (soap_flag_WellboreCompletion1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:WellboreCompletion", &a->prodml22__DownholeSampleAcquisition::WellboreCompletion, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:WellboreCompletion", &a->prodml23__DownholeSampleAcquisition::WellboreCompletion, "eml23:DataObjectReference")) { soap_flag_WellboreCompletion1--; continue; } } if (soap_flag_SamplingRun1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:SamplingRun", &a->prodml22__DownholeSampleAcquisition::SamplingRun, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:SamplingRun", &a->prodml23__DownholeSampleAcquisition::SamplingRun, "eml23:NonNegativeLong")) { soap_flag_SamplingRun1--; continue; } } if (soap_flag_TopMD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:TopMD", &a->prodml22__DownholeSampleAcquisition::TopMD, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:TopMD", &a->prodml23__DownholeSampleAcquisition::TopMD, "eml23:LengthMeasure")) { soap_flag_TopMD1--; continue; } } if (soap_flag_BaseMD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:BaseMD", &a->prodml22__DownholeSampleAcquisition::BaseMD, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:BaseMD", &a->prodml23__DownholeSampleAcquisition::BaseMD, "eml23:LengthMeasure")) { soap_flag_BaseMD1--; continue; } } if (soap_flag_ToolSerialNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ToolSerialNumber", &a->prodml22__DownholeSampleAcquisition::ToolSerialNumber, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ToolSerialNumber", &a->prodml23__DownholeSampleAcquisition::ToolSerialNumber, "eml23:String64")) { soap_flag_ToolSerialNumber1--; continue; } } if (soap_flag_ToolKind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ToolKind", &a->prodml22__DownholeSampleAcquisition::ToolKind, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ToolKind", &a->prodml23__DownholeSampleAcquisition::ToolKind, "eml23:String64")) { soap_flag_ToolKind1--; continue; } } if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__DownholeSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__DownholeSampleAcquisition::FlowTestActivity, "eml23:DataObjectReference")) { soap_flag_FlowTestActivity1--; continue; } @@ -176826,7 +176821,7 @@ SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Do } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml22__FluidSampleAcquisition::FluidSampleContainer || !a->prodml22__FluidSampleAcquisition::FluidSample || !a->prodml22__DownholeSampleAcquisition::Wellbore || soap_flag_SamplingRun1 > 0 || !a->prodml22__DownholeSampleAcquisition::TopMD)) + if ((soap_flag_StartTime2 > 0 || soap_flag_EndTime2 > 0 || soap_flag_Remark2 > 0 || !a->prodml23__FluidSampleAcquisition::FluidSampleContainer || !a->prodml23__FluidSampleAcquisition::FluidSample || !a->prodml23__DownholeSampleAcquisition::Wellbore || soap_flag_SamplingRun1 > 0 || !a->prodml23__DownholeSampleAcquisition::TopMD)) { soap->error = SOAP_OCCURS; return NULL; } @@ -176836,35 +176831,35 @@ SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__Do return NULL; } else - { a = (prodml22__DownholeSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition, sizeof(prodml22__DownholeSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DownholeSampleAcquisition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition, sizeof(prodml23__DownholeSampleAcquisition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__DownholeSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__DownholeSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DownholeSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DownholeSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DownholeSampleAcquisition *p; - size_t k = sizeof(prodml22__DownholeSampleAcquisition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition, n, gsoap_eml2_3_fdelete); + prodml23__DownholeSampleAcquisition *p; + size_t k = sizeof(prodml23__DownholeSampleAcquisition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DownholeSampleAcquisition); + { p = SOAP_NEW(soap, prodml23__DownholeSampleAcquisition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DownholeSampleAcquisition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DownholeSampleAcquisition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DownholeSampleAcquisition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DownholeSampleAcquisition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -176874,82 +176869,82 @@ SOAP_FMAC1 prodml22__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__DownholeSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DownholeSampleAcquisition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DownholeSampleAcquisition(soap, tag ? tag : "prodml22:DownholeSampleAcquisition", -2, this, type)) + if (soap_out_prodml23__DownholeSampleAcquisition(soap, tag ? tag : "prodml23:DownholeSampleAcquisition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DownholeSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DownholeSampleAcquisition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DownholeSampleAcquisition(soap, this, tag, type); + return soap_get_prodml23__DownholeSampleAcquisition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__DownholeSampleAcquisition(struct soap *soap, prodml22__DownholeSampleAcquisition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DownholeSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__DownholeSampleAcquisition(struct soap *soap, prodml23__DownholeSampleAcquisition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DownholeSampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_prodml23__DownholeSampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSampleContainer::soap_default(struct soap *soap) +void prodml23__FluidSampleContainer::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__FluidSampleContainer::Make = NULL; - this->prodml22__FluidSampleContainer::Model = NULL; - this->prodml22__FluidSampleContainer::SerialNumber = NULL; - this->prodml22__FluidSampleContainer::BottleID = NULL; - this->prodml22__FluidSampleContainer::Capacity = NULL; - this->prodml22__FluidSampleContainer::Owner = NULL; - this->prodml22__FluidSampleContainer::Kind = NULL; - this->prodml22__FluidSampleContainer::Metallurgy = NULL; - this->prodml22__FluidSampleContainer::PressureRating = NULL; - this->prodml22__FluidSampleContainer::TemperatureRating = NULL; - this->prodml22__FluidSampleContainer::LastInspectionDate = NULL; - this->prodml22__FluidSampleContainer::TransportCertificateReference = NULL; - this->prodml22__FluidSampleContainer::Remark = NULL; -} - -void prodml22__FluidSampleContainer::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::Make); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::Model); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::SerialNumber); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::BottleID); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidSampleContainer::Capacity); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::Owner); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::Kind); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleContainer::Metallurgy); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidSampleContainer::PressureRating); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidSampleContainer::TemperatureRating); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__FluidSampleContainer::LastInspectionDate); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleContainer::TransportCertificateReference); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidSampleContainer::Remark); + this->prodml23__FluidSampleContainer::Make = NULL; + this->prodml23__FluidSampleContainer::Model = NULL; + this->prodml23__FluidSampleContainer::SerialNumber = NULL; + this->prodml23__FluidSampleContainer::BottleID = NULL; + this->prodml23__FluidSampleContainer::Capacity = NULL; + this->prodml23__FluidSampleContainer::Owner = NULL; + this->prodml23__FluidSampleContainer::Kind = NULL; + this->prodml23__FluidSampleContainer::Metallurgy = NULL; + this->prodml23__FluidSampleContainer::PressureRating = NULL; + this->prodml23__FluidSampleContainer::TemperatureRating = NULL; + this->prodml23__FluidSampleContainer::LastInspectionDate = NULL; + this->prodml23__FluidSampleContainer::TransportCertificateReference = NULL; + this->prodml23__FluidSampleContainer::Remark = NULL; +} + +void prodml23__FluidSampleContainer::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::Make); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::Model); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::SerialNumber); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::BottleID); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidSampleContainer::Capacity); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::Owner); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::Kind); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleContainer::Metallurgy); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidSampleContainer::PressureRating); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidSampleContainer::TemperatureRating); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__FluidSampleContainer::LastInspectionDate); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleContainer::TransportCertificateReference); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidSampleContainer::Remark); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FluidSampleContainer::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSampleContainer::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSampleContainer(soap, tag, id, this, type); + return soap_out_prodml23__FluidSampleContainer(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleContainer(struct soap *soap, const char *tag, int id, const prodml22__FluidSampleContainer *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleContainer(struct soap *soap, const char *tag, int id, const prodml23__FluidSampleContainer *a, const char *type) { if (!type) - type = "prodml22:FluidSampleContainer"; + type = "prodml23:FluidSampleContainer"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FluidSampleContainer), type ? type : "prodml22:FluidSampleContainer")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer), type ? type : "prodml23:FluidSampleContainer")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -176971,52 +176966,52 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleContainer(struct soap *s return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Make", -1, &a->prodml22__FluidSampleContainer::Make, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Make", -1, &a->prodml23__FluidSampleContainer::Make, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Model", -1, &a->prodml22__FluidSampleContainer::Model, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Model", -1, &a->prodml23__FluidSampleContainer::Model, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SerialNumber", -1, &a->prodml22__FluidSampleContainer::SerialNumber, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SerialNumber", -1, &a->prodml23__FluidSampleContainer::SerialNumber, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:BottleID", -1, &a->prodml22__FluidSampleContainer::BottleID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:BottleID", -1, &a->prodml23__FluidSampleContainer::BottleID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:Capacity", -1, &a->prodml22__FluidSampleContainer::Capacity, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:Capacity", -1, &a->prodml23__FluidSampleContainer::Capacity, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Owner", -1, &a->prodml22__FluidSampleContainer::Owner, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Owner", -1, &a->prodml23__FluidSampleContainer::Owner, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Kind", -1, &a->prodml22__FluidSampleContainer::Kind, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Kind", -1, &a->prodml23__FluidSampleContainer::Kind, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Metallurgy", -1, &a->prodml22__FluidSampleContainer::Metallurgy, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Metallurgy", -1, &a->prodml23__FluidSampleContainer::Metallurgy, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:PressureRating", -1, &a->prodml22__FluidSampleContainer::PressureRating, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:PressureRating", -1, &a->prodml23__FluidSampleContainer::PressureRating, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TemperatureRating", -1, &a->prodml22__FluidSampleContainer::TemperatureRating, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TemperatureRating", -1, &a->prodml23__FluidSampleContainer::TemperatureRating, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:LastInspectionDate", -1, &a->prodml22__FluidSampleContainer::LastInspectionDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:LastInspectionDate", -1, &a->prodml23__FluidSampleContainer::LastInspectionDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TransportCertificateReference", -1, &a->prodml22__FluidSampleContainer::TransportCertificateReference, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TransportCertificateReference", -1, &a->prodml23__FluidSampleContainer::TransportCertificateReference, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleContainer::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleContainer::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSampleContainer::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleContainer::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSampleContainer(soap, tag, this, type); + return soap_in_prodml23__FluidSampleContainer(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSampleContainer * SOAP_FMAC4 soap_in_prodml22__FluidSampleContainer(struct soap *soap, const char *tag, prodml22__FluidSampleContainer *a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleContainer * SOAP_FMAC4 soap_in_prodml23__FluidSampleContainer(struct soap *soap, const char *tag, prodml23__FluidSampleContainer *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSampleContainer*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer, sizeof(prodml22__FluidSampleContainer), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSampleContainer*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer, sizeof(prodml23__FluidSampleContainer), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSampleContainer *)a->soap_in(soap, tag, type); + return (prodml23__FluidSampleContainer *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -177101,79 +177096,79 @@ SOAP_FMAC3 prodml22__FluidSampleContainer * SOAP_FMAC4 soap_in_prodml22__FluidSa continue; } if (soap_flag_Make1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Make", &a->prodml22__FluidSampleContainer::Make, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Make", &a->prodml23__FluidSampleContainer::Make, "eml23:String64")) { soap_flag_Make1--; continue; } } if (soap_flag_Model1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Model", &a->prodml22__FluidSampleContainer::Model, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Model", &a->prodml23__FluidSampleContainer::Model, "eml23:String64")) { soap_flag_Model1--; continue; } } if (soap_flag_SerialNumber1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SerialNumber", &a->prodml22__FluidSampleContainer::SerialNumber, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SerialNumber", &a->prodml23__FluidSampleContainer::SerialNumber, "eml23:String64")) { soap_flag_SerialNumber1--; continue; } } if (soap_flag_BottleID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:BottleID", &a->prodml22__FluidSampleContainer::BottleID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:BottleID", &a->prodml23__FluidSampleContainer::BottleID, "eml23:String64")) { soap_flag_BottleID1--; continue; } } if (soap_flag_Capacity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:Capacity", &a->prodml22__FluidSampleContainer::Capacity, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:Capacity", &a->prodml23__FluidSampleContainer::Capacity, "eml23:VolumeMeasure")) { soap_flag_Capacity1--; continue; } } if (soap_flag_Owner1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Owner", &a->prodml22__FluidSampleContainer::Owner, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Owner", &a->prodml23__FluidSampleContainer::Owner, "eml23:String64")) { soap_flag_Owner1--; continue; } } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Kind", &a->prodml22__FluidSampleContainer::Kind, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Kind", &a->prodml23__FluidSampleContainer::Kind, "eml23:String64")) { soap_flag_Kind1--; continue; } } if (soap_flag_Metallurgy1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Metallurgy", &a->prodml22__FluidSampleContainer::Metallurgy, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Metallurgy", &a->prodml23__FluidSampleContainer::Metallurgy, "eml23:String64")) { soap_flag_Metallurgy1--; continue; } } if (soap_flag_PressureRating1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:PressureRating", &a->prodml22__FluidSampleContainer::PressureRating, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:PressureRating", &a->prodml23__FluidSampleContainer::PressureRating, "eml23:PressureMeasure")) { soap_flag_PressureRating1--; continue; } } if (soap_flag_TemperatureRating1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TemperatureRating", &a->prodml22__FluidSampleContainer::TemperatureRating, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TemperatureRating", &a->prodml23__FluidSampleContainer::TemperatureRating, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TemperatureRating1--; continue; } } if (soap_flag_LastInspectionDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:LastInspectionDate", &a->prodml22__FluidSampleContainer::LastInspectionDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:LastInspectionDate", &a->prodml23__FluidSampleContainer::LastInspectionDate, "xsd:date")) { soap_flag_LastInspectionDate1--; continue; } } if (soap_flag_TransportCertificateReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TransportCertificateReference", &a->prodml22__FluidSampleContainer::TransportCertificateReference, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TransportCertificateReference", &a->prodml23__FluidSampleContainer::TransportCertificateReference, "eml23:DataObjectReference")) { soap_flag_TransportCertificateReference1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleContainer::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleContainer::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -177197,35 +177192,35 @@ SOAP_FMAC3 prodml22__FluidSampleContainer * SOAP_FMAC4 soap_in_prodml22__FluidSa return NULL; } else - { a = (prodml22__FluidSampleContainer *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer, sizeof(prodml22__FluidSampleContainer), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleContainer *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer, sizeof(prodml23__FluidSampleContainer), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleContainer(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleContainer(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSampleContainer(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSampleContainer(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSampleContainer *p; - size_t k = sizeof(prodml22__FluidSampleContainer); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer, n, gsoap_eml2_3_fdelete); + prodml23__FluidSampleContainer *p; + size_t k = sizeof(prodml23__FluidSampleContainer); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSampleContainer); + { p = SOAP_NEW(soap, prodml23__FluidSampleContainer); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSampleContainer, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSampleContainer, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSampleContainer location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSampleContainer location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -177235,98 +177230,98 @@ SOAP_FMAC1 prodml22__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__FluidSampleContainer::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSampleContainer::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSampleContainer(soap, tag ? tag : "prodml22:FluidSampleContainer", -2, this, type)) + if (soap_out_prodml23__FluidSampleContainer(soap, tag ? tag : "prodml23:FluidSampleContainer", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSampleContainer::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleContainer::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSampleContainer(soap, this, tag, type); + return soap_get_prodml23__FluidSampleContainer(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSampleContainer * SOAP_FMAC4 soap_get_prodml22__FluidSampleContainer(struct soap *soap, prodml22__FluidSampleContainer *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleContainer * SOAP_FMAC4 soap_get_prodml23__FluidSampleContainer(struct soap *soap, prodml23__FluidSampleContainer *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleContainer(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleContainer(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SampleRecombinationSpecification::soap_default(struct soap *soap) +void prodml23__SampleRecombinationSpecification::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__SampleRecombinationSpecification::RecombinationPressure = NULL; - this->prodml22__SampleRecombinationSpecification::RecombinationTemperature = NULL; - this->prodml22__SampleRecombinationSpecification::RecombinationGOR = NULL; - this->prodml22__SampleRecombinationSpecification::RecombinationSaturationPressure = NULL; - this->prodml22__SampleRecombinationSpecification::OverallComposition = NULL; - this->prodml22__SampleRecombinationSpecification::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap, &this->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction); + this->prodml23__SampleRecombinationSpecification::RecombinationPressure = NULL; + this->prodml23__SampleRecombinationSpecification::RecombinationTemperature = NULL; + this->prodml23__SampleRecombinationSpecification::RecombinationGOR = NULL; + this->prodml23__SampleRecombinationSpecification::RecombinationSaturationPressure = NULL; + this->prodml23__SampleRecombinationSpecification::OverallComposition = NULL; + this->prodml23__SampleRecombinationSpecification::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap, &this->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction); } -void prodml22__SampleRecombinationSpecification::soap_serialize(struct soap *soap) const +void prodml23__SampleRecombinationSpecification::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__SampleRecombinationSpecification::RecombinationPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SampleRecombinationSpecification::RecombinationTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SampleRecombinationSpecification::RecombinationGOR); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__SampleRecombinationSpecification::RecombinationSaturationPressure); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__SampleRecombinationSpecification::OverallComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SampleRecombinationSpecification::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap, &this->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__SampleRecombinationSpecification::RecombinationPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SampleRecombinationSpecification::RecombinationTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SampleRecombinationSpecification::RecombinationGOR); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__SampleRecombinationSpecification::RecombinationSaturationPressure); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__SampleRecombinationSpecification::OverallComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SampleRecombinationSpecification::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap, &this->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction); #endif } -int prodml22__SampleRecombinationSpecification::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SampleRecombinationSpecification::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SampleRecombinationSpecification(soap, tag, id, this, type); + return soap_out_prodml23__SampleRecombinationSpecification(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleRecombinationSpecification(struct soap *soap, const char *tag, int id, const prodml22__SampleRecombinationSpecification *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleRecombinationSpecification(struct soap *soap, const char *tag, int id, const prodml23__SampleRecombinationSpecification *a, const char *type) { if (!type) - type = "prodml22:SampleRecombinationSpecification"; + type = "prodml23:SampleRecombinationSpecification"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification), type)) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:RecombinationPressure", -1, &a->prodml22__SampleRecombinationSpecification::RecombinationPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:RecombinationPressure", -1, &a->prodml23__SampleRecombinationSpecification::RecombinationPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:RecombinationTemperature", -1, &a->prodml22__SampleRecombinationSpecification::RecombinationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:RecombinationTemperature", -1, &a->prodml23__SampleRecombinationSpecification::RecombinationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:RecombinationGOR", -1, &a->prodml22__SampleRecombinationSpecification::RecombinationGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:RecombinationGOR", -1, &a->prodml23__SampleRecombinationSpecification::RecombinationGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:RecombinationSaturationPressure", -1, &a->prodml22__SampleRecombinationSpecification::RecombinationSaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:RecombinationSaturationPressure", -1, &a->prodml23__SampleRecombinationSpecification::RecombinationSaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__SampleRecombinationSpecification::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__SampleRecombinationSpecification::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SampleRecombinationSpecification::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SampleRecombinationSpecification::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap, "prodml22:RecombinedSampleFraction", -1, &a->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction, "prodml22:RecombinedSampleFraction")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap, "prodml23:RecombinedSampleFraction", -1, &a->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction, "prodml23:RecombinedSampleFraction")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SampleRecombinationSpecification::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleRecombinationSpecification::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SampleRecombinationSpecification(soap, tag, this, type); + return soap_in_prodml23__SampleRecombinationSpecification(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodml22__SampleRecombinationSpecification(struct soap *soap, const char *tag, prodml22__SampleRecombinationSpecification *a, const char *type) +SOAP_FMAC3 prodml23__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodml23__SampleRecombinationSpecification(struct soap *soap, const char *tag, prodml23__SampleRecombinationSpecification *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SampleRecombinationSpecification*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification, sizeof(prodml22__SampleRecombinationSpecification), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SampleRecombinationSpecification*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification, sizeof(prodml23__SampleRecombinationSpecification), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SampleRecombinationSpecification *)a->soap_in(soap, tag, type); + return (prodml23__SampleRecombinationSpecification *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -177341,43 +177336,43 @@ SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_RecombinationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:RecombinationPressure", &a->prodml22__SampleRecombinationSpecification::RecombinationPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:RecombinationPressure", &a->prodml23__SampleRecombinationSpecification::RecombinationPressure, "eml23:AbstractPressureValue")) { soap_flag_RecombinationPressure1--; continue; } } if (soap_flag_RecombinationTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:RecombinationTemperature", &a->prodml22__SampleRecombinationSpecification::RecombinationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:RecombinationTemperature", &a->prodml23__SampleRecombinationSpecification::RecombinationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_RecombinationTemperature1--; continue; } } if (soap_flag_RecombinationGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:RecombinationGOR", &a->prodml22__SampleRecombinationSpecification::RecombinationGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:RecombinationGOR", &a->prodml23__SampleRecombinationSpecification::RecombinationGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_RecombinationGOR1--; continue; } } if (soap_flag_RecombinationSaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:RecombinationSaturationPressure", &a->prodml22__SampleRecombinationSpecification::RecombinationSaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:RecombinationSaturationPressure", &a->prodml23__SampleRecombinationSpecification::RecombinationSaturationPressure, "prodml23:SaturationPressure")) { soap_flag_RecombinationSaturationPressure1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__SampleRecombinationSpecification::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__SampleRecombinationSpecification::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SampleRecombinationSpecification::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SampleRecombinationSpecification::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap, "prodml22:RecombinedSampleFraction", &a->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction, "prodml22:RecombinedSampleFraction")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap, "prodml23:RecombinedSampleFraction", &a->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction, "prodml23:RecombinedSampleFraction")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -177389,7 +177384,7 @@ SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction.size() < 2)) + if ((a->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction.size() < 2)) { soap->error = SOAP_OCCURS; return NULL; } @@ -177399,35 +177394,35 @@ SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__SampleRecombinationSpecification *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification, sizeof(prodml22__SampleRecombinationSpecification), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SampleRecombinationSpecification *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification, sizeof(prodml23__SampleRecombinationSpecification), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SampleRecombinationSpecification * SOAP_FMAC2 soap_instantiate_prodml22__SampleRecombinationSpecification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SampleRecombinationSpecification * SOAP_FMAC2 soap_instantiate_prodml23__SampleRecombinationSpecification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SampleRecombinationSpecification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SampleRecombinationSpecification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SampleRecombinationSpecification *p; - size_t k = sizeof(prodml22__SampleRecombinationSpecification); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification, n, gsoap_eml2_3_fdelete); + prodml23__SampleRecombinationSpecification *p; + size_t k = sizeof(prodml23__SampleRecombinationSpecification); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SampleRecombinationSpecification); + { p = SOAP_NEW(soap, prodml23__SampleRecombinationSpecification); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SampleRecombinationSpecification, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SampleRecombinationSpecification, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SampleRecombinationSpecification location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SampleRecombinationSpecification location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -177437,96 +177432,96 @@ SOAP_FMAC1 prodml22__SampleRecombinationSpecification * SOAP_FMAC2 soap_instanti return p; } -int prodml22__SampleRecombinationSpecification::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SampleRecombinationSpecification::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SampleRecombinationSpecification(soap, tag ? tag : "prodml22:SampleRecombinationSpecification", -2, this, type)) + if (soap_out_prodml23__SampleRecombinationSpecification(soap, tag ? tag : "prodml23:SampleRecombinationSpecification", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SampleRecombinationSpecification::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleRecombinationSpecification::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SampleRecombinationSpecification(soap, this, tag, type); + return soap_get_prodml23__SampleRecombinationSpecification(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_get_prodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleRecombinationSpecification * SOAP_FMAC4 soap_get_prodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SampleRecombinationSpecification(soap, tag, p, type))) + if ((p = soap_in_prodml23__SampleRecombinationSpecification(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RecombinedSampleFraction::soap_default(struct soap *soap) +void prodml23__RecombinedSampleFraction::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__RecombinedSampleFraction::VolumeFraction = NULL; - this->prodml22__RecombinedSampleFraction::MassFraction = NULL; - this->prodml22__RecombinedSampleFraction::MoleFraction = NULL; - this->prodml22__RecombinedSampleFraction::Remark = NULL; - this->prodml22__RecombinedSampleFraction::FluidSample = NULL; - soap_default_eml23__String64(soap, &this->prodml22__RecombinedSampleFraction::uid); + this->prodml23__RecombinedSampleFraction::VolumeFraction = NULL; + this->prodml23__RecombinedSampleFraction::MassFraction = NULL; + this->prodml23__RecombinedSampleFraction::MoleFraction = NULL; + this->prodml23__RecombinedSampleFraction::Remark = NULL; + this->prodml23__RecombinedSampleFraction::FluidSample = NULL; + soap_default_eml23__String64(soap, &this->prodml23__RecombinedSampleFraction::uid); } -void prodml22__RecombinedSampleFraction::soap_serialize(struct soap *soap) const +void prodml23__RecombinedSampleFraction::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__RecombinedSampleFraction::VolumeFraction); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__RecombinedSampleFraction::MassFraction); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__RecombinedSampleFraction::MoleFraction); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__RecombinedSampleFraction::Remark); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__RecombinedSampleFraction::FluidSample); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__RecombinedSampleFraction::VolumeFraction); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__RecombinedSampleFraction::MassFraction); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__RecombinedSampleFraction::MoleFraction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__RecombinedSampleFraction::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__RecombinedSampleFraction::FluidSample); #endif } -int prodml22__RecombinedSampleFraction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RecombinedSampleFraction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RecombinedSampleFraction(soap, tag, id, this, type); + return soap_out_prodml23__RecombinedSampleFraction(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RecombinedSampleFraction(struct soap *soap, const char *tag, int id, const prodml22__RecombinedSampleFraction *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RecombinedSampleFraction(struct soap *soap, const char *tag, int id, const prodml23__RecombinedSampleFraction *a, const char *type) { if (!type) - type = "prodml22:RecombinedSampleFraction"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__RecombinedSampleFraction*)a)->uid), 1); + type = "prodml23:RecombinedSampleFraction"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__RecombinedSampleFraction*)a)->uid), 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_gsoap_eml2_3_prodml22__RecombinedSampleFraction), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction), type)) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumeFraction", -1, &a->prodml22__RecombinedSampleFraction::VolumeFraction, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumeFraction", -1, &a->prodml23__RecombinedSampleFraction::VolumeFraction, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__RecombinedSampleFraction::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__RecombinedSampleFraction::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__RecombinedSampleFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__RecombinedSampleFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__RecombinedSampleFraction::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__RecombinedSampleFraction::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__RecombinedSampleFraction::FluidSample, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__RecombinedSampleFraction::FluidSample, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RecombinedSampleFraction::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RecombinedSampleFraction::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RecombinedSampleFraction(soap, tag, this, type); + return soap_in_prodml23__RecombinedSampleFraction(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RecombinedSampleFraction * SOAP_FMAC4 soap_in_prodml22__RecombinedSampleFraction(struct soap *soap, const char *tag, prodml22__RecombinedSampleFraction *a, const char *type) +SOAP_FMAC3 prodml23__RecombinedSampleFraction * SOAP_FMAC4 soap_in_prodml23__RecombinedSampleFraction(struct soap *soap, const char *tag, prodml23__RecombinedSampleFraction *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RecombinedSampleFraction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, sizeof(prodml22__RecombinedSampleFraction), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RecombinedSampleFraction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, sizeof(prodml23__RecombinedSampleFraction), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RecombinedSampleFraction *)a->soap_in(soap, tag, type); + return (prodml23__RecombinedSampleFraction *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__RecombinedSampleFraction*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__RecombinedSampleFraction*)a)->uid)) return NULL; size_t soap_flag_VolumeFraction1 = 1; size_t soap_flag_MassFraction1 = 1; @@ -177538,31 +177533,31 @@ SOAP_FMAC3 prodml22__RecombinedSampleFraction * SOAP_FMAC4 soap_in_prodml22__Rec for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_VolumeFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumeFraction", &a->prodml22__RecombinedSampleFraction::VolumeFraction, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumeFraction", &a->prodml23__RecombinedSampleFraction::VolumeFraction, "eml23:VolumePerVolumeMeasure")) { soap_flag_VolumeFraction1--; continue; } } if (soap_flag_MassFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__RecombinedSampleFraction::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__RecombinedSampleFraction::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction1--; continue; } } if (soap_flag_MoleFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__RecombinedSampleFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__RecombinedSampleFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__RecombinedSampleFraction::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__RecombinedSampleFraction::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_FluidSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__RecombinedSampleFraction::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__RecombinedSampleFraction::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample1--; continue; } @@ -177578,35 +177573,35 @@ SOAP_FMAC3 prodml22__RecombinedSampleFraction * SOAP_FMAC4 soap_in_prodml22__Rec return NULL; } else - { a = (prodml22__RecombinedSampleFraction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, sizeof(prodml22__RecombinedSampleFraction), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RecombinedSampleFraction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, sizeof(prodml23__RecombinedSampleFraction), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prodml22__RecombinedSampleFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prodml23__RecombinedSampleFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RecombinedSampleFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RecombinedSampleFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RecombinedSampleFraction *p; - size_t k = sizeof(prodml22__RecombinedSampleFraction); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, n, gsoap_eml2_3_fdelete); + prodml23__RecombinedSampleFraction *p; + size_t k = sizeof(prodml23__RecombinedSampleFraction); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RecombinedSampleFraction); + { p = SOAP_NEW(soap, prodml23__RecombinedSampleFraction); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RecombinedSampleFraction, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RecombinedSampleFraction, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RecombinedSampleFraction location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RecombinedSampleFraction location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -177616,131 +177611,131 @@ SOAP_FMAC1 prodml22__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__RecombinedSampleFraction::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RecombinedSampleFraction::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RecombinedSampleFraction(soap, tag ? tag : "prodml22:RecombinedSampleFraction", -2, this, type)) + if (soap_out_prodml23__RecombinedSampleFraction(soap, tag ? tag : "prodml23:RecombinedSampleFraction", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RecombinedSampleFraction::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RecombinedSampleFraction::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RecombinedSampleFraction(soap, this, tag, type); + return soap_get_prodml23__RecombinedSampleFraction(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RecombinedSampleFraction * SOAP_FMAC4 soap_get_prodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RecombinedSampleFraction * SOAP_FMAC4 soap_get_prodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RecombinedSampleFraction(soap, tag, p, type))) + if ((p = soap_in_prodml23__RecombinedSampleFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSampleChainOfCustodyEvent::soap_default(struct soap *soap) +void prodml23__FluidSampleChainOfCustodyEvent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidSampleChainOfCustodyEvent::TransferVolume = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::TransferPressure = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::TransferTemperature = NULL; - soap_default_prodml22__SampleQuality(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::SampleIntegrity); - this->prodml22__FluidSampleChainOfCustodyEvent::RemainingVolume = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::LostVolume = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::CustodyDate = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::CustodyAction = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::Custodian = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::ContainerLocation = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::Remark = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::PrevContainer = NULL; - this->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::uid); + this->prodml23__FluidSampleChainOfCustodyEvent::TransferVolume = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::TransferPressure = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::TransferTemperature = NULL; + soap_default_prodml23__SampleQuality(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::SampleIntegrity); + this->prodml23__FluidSampleChainOfCustodyEvent::RemainingVolume = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::LostVolume = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::CustodyDate = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::CustodyAction = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::Custodian = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::ContainerLocation = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::Remark = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::PrevContainer = NULL; + this->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::uid); } -void prodml22__FluidSampleChainOfCustodyEvent::soap_serialize(struct soap *soap) const +void prodml23__FluidSampleChainOfCustodyEvent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::TransferVolume); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::TransferPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::TransferTemperature); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::RemainingVolume); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::LostVolume); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::CustodyDate); - soap_serialize_PointerToprodml22__SampleAction(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::CustodyAction); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::Custodian); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::ContainerLocation); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::Remark); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::PrevContainer); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::TransferVolume); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::TransferPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::TransferTemperature); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::RemainingVolume); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::LostVolume); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::CustodyDate); + soap_serialize_PointerToprodml23__SampleAction(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::CustodyAction); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::Custodian); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::ContainerLocation); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::PrevContainer); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer); #endif } -int prodml22__FluidSampleChainOfCustodyEvent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSampleChainOfCustodyEvent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSampleChainOfCustodyEvent(soap, tag, id, this, type); + return soap_out_prodml23__FluidSampleChainOfCustodyEvent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, int id, const prodml22__FluidSampleChainOfCustodyEvent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, int id, const prodml23__FluidSampleChainOfCustodyEvent *a, const char *type) { if (!type) - type = "prodml22:FluidSampleChainOfCustodyEvent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSampleChainOfCustodyEvent*)a)->uid), 1); + type = "prodml23:FluidSampleChainOfCustodyEvent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSampleChainOfCustodyEvent*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent), type)) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:TransferVolume", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::TransferVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:TransferVolume", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::TransferVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:TransferPressure", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::TransferPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:TransferPressure", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::TransferPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TransferTemperature", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::TransferTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TransferTemperature", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::TransferTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_prodml22__SampleQuality(soap, "prodml22:SampleIntegrity", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::SampleIntegrity, "prodml22:SampleQuality")) + if (soap_out_prodml23__SampleQuality(soap, "prodml23:SampleIntegrity", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::SampleIntegrity, "prodml23:SampleQuality")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:RemainingVolume", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::RemainingVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:RemainingVolume", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::RemainingVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:LostVolume", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::LostVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:LostVolume", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::LostVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:CustodyDate", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::CustodyDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:CustodyDate", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::CustodyDate, "xsd:date")) return soap->error; - if (soap_out_PointerToprodml22__SampleAction(soap, "prodml22:CustodyAction", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::CustodyAction, "prodml22:SampleAction")) + if (soap_out_PointerToprodml23__SampleAction(soap, "prodml23:CustodyAction", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::CustodyAction, "prodml23:SampleAction")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Custodian", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::Custodian, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Custodian", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::Custodian, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ContainerLocation", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::ContainerLocation, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ContainerLocation", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::ContainerLocation, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PrevContainer", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::PrevContainer, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PrevContainer", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::PrevContainer, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer) - { if (soap_element_empty(soap, "prodml22:CurrentContainer", 0, NULL)) + if (!a->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer) + { if (soap_element_empty(soap, "prodml23:CurrentContainer", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:CurrentContainer", -1, &a->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:CurrentContainer", -1, &a->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSampleChainOfCustodyEvent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleChainOfCustodyEvent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSampleChainOfCustodyEvent(soap, tag, this, type); + return soap_in_prodml23__FluidSampleChainOfCustodyEvent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, prodml22__FluidSampleChainOfCustodyEvent *a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, prodml23__FluidSampleChainOfCustodyEvent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSampleChainOfCustodyEvent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, sizeof(prodml22__FluidSampleChainOfCustodyEvent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSampleChainOfCustodyEvent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, sizeof(prodml23__FluidSampleChainOfCustodyEvent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSampleChainOfCustodyEvent *)a->soap_in(soap, tag, type); + return (prodml23__FluidSampleChainOfCustodyEvent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSampleChainOfCustodyEvent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSampleChainOfCustodyEvent*)a)->uid)) return NULL; size_t soap_flag_TransferVolume1 = 1; size_t soap_flag_TransferPressure1 = 1; @@ -177760,79 +177755,79 @@ SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml2 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TransferVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:TransferVolume", &a->prodml22__FluidSampleChainOfCustodyEvent::TransferVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:TransferVolume", &a->prodml23__FluidSampleChainOfCustodyEvent::TransferVolume, "eml23:VolumeMeasure")) { soap_flag_TransferVolume1--; continue; } } if (soap_flag_TransferPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:TransferPressure", &a->prodml22__FluidSampleChainOfCustodyEvent::TransferPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:TransferPressure", &a->prodml23__FluidSampleChainOfCustodyEvent::TransferPressure, "eml23:AbstractPressureValue")) { soap_flag_TransferPressure1--; continue; } } if (soap_flag_TransferTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TransferTemperature", &a->prodml22__FluidSampleChainOfCustodyEvent::TransferTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TransferTemperature", &a->prodml23__FluidSampleChainOfCustodyEvent::TransferTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TransferTemperature1--; continue; } } if (soap_flag_SampleIntegrity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__SampleQuality(soap, "prodml22:SampleIntegrity", &a->prodml22__FluidSampleChainOfCustodyEvent::SampleIntegrity, "prodml22:SampleQuality")) + { if (soap_in_prodml23__SampleQuality(soap, "prodml23:SampleIntegrity", &a->prodml23__FluidSampleChainOfCustodyEvent::SampleIntegrity, "prodml23:SampleQuality")) { soap_flag_SampleIntegrity1--; continue; } } if (soap_flag_RemainingVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:RemainingVolume", &a->prodml22__FluidSampleChainOfCustodyEvent::RemainingVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:RemainingVolume", &a->prodml23__FluidSampleChainOfCustodyEvent::RemainingVolume, "eml23:VolumeMeasure")) { soap_flag_RemainingVolume1--; continue; } } if (soap_flag_LostVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:LostVolume", &a->prodml22__FluidSampleChainOfCustodyEvent::LostVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:LostVolume", &a->prodml23__FluidSampleChainOfCustodyEvent::LostVolume, "eml23:VolumeMeasure")) { soap_flag_LostVolume1--; continue; } } if (soap_flag_CustodyDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:CustodyDate", &a->prodml22__FluidSampleChainOfCustodyEvent::CustodyDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:CustodyDate", &a->prodml23__FluidSampleChainOfCustodyEvent::CustodyDate, "xsd:date")) { soap_flag_CustodyDate1--; continue; } } if (soap_flag_CustodyAction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SampleAction(soap, "prodml22:CustodyAction", &a->prodml22__FluidSampleChainOfCustodyEvent::CustodyAction, "prodml22:SampleAction")) + { if (soap_in_PointerToprodml23__SampleAction(soap, "prodml23:CustodyAction", &a->prodml23__FluidSampleChainOfCustodyEvent::CustodyAction, "prodml23:SampleAction")) { soap_flag_CustodyAction1--; continue; } } if (soap_flag_Custodian1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Custodian", &a->prodml22__FluidSampleChainOfCustodyEvent::Custodian, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Custodian", &a->prodml23__FluidSampleChainOfCustodyEvent::Custodian, "eml23:String64")) { soap_flag_Custodian1--; continue; } } if (soap_flag_ContainerLocation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ContainerLocation", &a->prodml22__FluidSampleChainOfCustodyEvent::ContainerLocation, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ContainerLocation", &a->prodml23__FluidSampleChainOfCustodyEvent::ContainerLocation, "eml23:String64")) { soap_flag_ContainerLocation1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSampleChainOfCustodyEvent::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSampleChainOfCustodyEvent::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_PrevContainer1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PrevContainer", &a->prodml22__FluidSampleChainOfCustodyEvent::PrevContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PrevContainer", &a->prodml23__FluidSampleChainOfCustodyEvent::PrevContainer, "eml23:DataObjectReference")) { soap_flag_PrevContainer1--; continue; } } if (soap_flag_CurrentContainer1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:CurrentContainer", &a->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:CurrentContainer", &a->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer, "eml23:DataObjectReference")) { soap_flag_CurrentContainer1--; continue; } @@ -177846,7 +177841,7 @@ SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml2 } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_SampleIntegrity1 > 0 || !a->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer)) + if ((soap_flag_SampleIntegrity1 > 0 || !a->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer)) { soap->error = SOAP_OCCURS; return NULL; } @@ -177856,35 +177851,35 @@ SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__FluidSampleChainOfCustodyEvent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, sizeof(prodml22__FluidSampleChainOfCustodyEvent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleChainOfCustodyEvent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, sizeof(prodml23__FluidSampleChainOfCustodyEvent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSampleChainOfCustodyEvent *p; - size_t k = sizeof(prodml22__FluidSampleChainOfCustodyEvent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, n, gsoap_eml2_3_fdelete); + prodml23__FluidSampleChainOfCustodyEvent *p; + size_t k = sizeof(prodml23__FluidSampleChainOfCustodyEvent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSampleChainOfCustodyEvent); + { p = SOAP_NEW(soap, prodml23__FluidSampleChainOfCustodyEvent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSampleChainOfCustodyEvent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSampleChainOfCustodyEvent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSampleChainOfCustodyEvent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSampleChainOfCustodyEvent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -177894,83 +177889,83 @@ SOAP_FMAC1 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__FluidSampleChainOfCustodyEvent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSampleChainOfCustodyEvent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSampleChainOfCustodyEvent(soap, tag ? tag : "prodml22:FluidSampleChainOfCustodyEvent", -2, this, type)) + if (soap_out_prodml23__FluidSampleChainOfCustodyEvent(soap, tag ? tag : "prodml23:FluidSampleChainOfCustodyEvent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSampleChainOfCustodyEvent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleChainOfCustodyEvent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSampleChainOfCustodyEvent(soap, this, tag, type); + return soap_get_prodml23__FluidSampleChainOfCustodyEvent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_get_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_get_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleChainOfCustodyEvent(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleChainOfCustodyEvent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSampleAcquisitionJobSource::soap_default(struct soap *soap) +void prodml23__FluidSampleAcquisitionJobSource::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference); - this->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference); + this->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference = NULL; } -void prodml22__FluidSampleAcquisitionJobSource::soap_serialize(struct soap *soap) const +void prodml23__FluidSampleAcquisitionJobSource::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference); + soap_embedded(soap, &this->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference); #endif } -int prodml22__FluidSampleAcquisitionJobSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSampleAcquisitionJobSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSampleAcquisitionJobSource(soap, tag, id, this, type); + return soap_out_prodml23__FluidSampleAcquisitionJobSource(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, int id, const prodml22__FluidSampleAcquisitionJobSource *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, int id, const prodml23__FluidSampleAcquisitionJobSource *a, const char *type) { if (!type) - type = "prodml22:FluidSampleAcquisitionJobSource"; + type = "prodml23:FluidSampleAcquisitionJobSource"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:FluidSampleAcquisitionReference", -1, &a->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:FluidSampleAcquisitionReference", -1, &a->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference, "eml23:String64")) return soap->error; - if (!a->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference) - { if (soap_element_empty(soap, "prodml22:FluidSampleAcquisitionJobReference", 0, NULL)) + if (!a->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference) + { if (soap_element_empty(soap, "prodml23:FluidSampleAcquisitionJobReference", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleAcquisitionJobReference", -1, &a->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleAcquisitionJobReference", -1, &a->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSampleAcquisitionJobSource::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleAcquisitionJobSource::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSampleAcquisitionJobSource(soap, tag, this, type); + return soap_in_prodml23__FluidSampleAcquisitionJobSource(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, prodml22__FluidSampleAcquisitionJobSource *a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, prodml23__FluidSampleAcquisitionJobSource *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSampleAcquisitionJobSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource, sizeof(prodml22__FluidSampleAcquisitionJobSource), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSampleAcquisitionJobSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource, sizeof(prodml23__FluidSampleAcquisitionJobSource), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSampleAcquisitionJobSource *)a->soap_in(soap, tag, type); + return (prodml23__FluidSampleAcquisitionJobSource *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -177981,13 +177976,13 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FluidSampleAcquisitionReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:FluidSampleAcquisitionReference", &a->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:FluidSampleAcquisitionReference", &a->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference, "eml23:String64")) { soap_flag_FluidSampleAcquisitionReference1--; continue; } } if (soap_flag_FluidSampleAcquisitionJobReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSampleAcquisitionJobReference", &a->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSampleAcquisitionJobReference", &a->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference, "eml23:DataObjectReference")) { soap_flag_FluidSampleAcquisitionJobReference1--; continue; } @@ -178001,7 +177996,7 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_FluidSampleAcquisitionReference1 > 0 || !a->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference)) + if ((soap_flag_FluidSampleAcquisitionReference1 > 0 || !a->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference)) { soap->error = SOAP_OCCURS; return NULL; } @@ -178011,35 +178006,35 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml return NULL; } else - { a = (prodml22__FluidSampleAcquisitionJobSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource, sizeof(prodml22__FluidSampleAcquisitionJobSource), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleAcquisitionJobSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource, sizeof(prodml23__FluidSampleAcquisitionJobSource), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSampleAcquisitionJobSource *p; - size_t k = sizeof(prodml22__FluidSampleAcquisitionJobSource); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource, n, gsoap_eml2_3_fdelete); + prodml23__FluidSampleAcquisitionJobSource *p; + size_t k = sizeof(prodml23__FluidSampleAcquisitionJobSource); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSampleAcquisitionJobSource); + { p = SOAP_NEW(soap, prodml23__FluidSampleAcquisitionJobSource); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSampleAcquisitionJobSource, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSampleAcquisitionJobSource, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSampleAcquisitionJobSource location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSampleAcquisitionJobSource location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -178049,78 +178044,78 @@ SOAP_FMAC1 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantia return p; } -int prodml22__FluidSampleAcquisitionJobSource::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSampleAcquisitionJobSource::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSampleAcquisitionJobSource(soap, tag ? tag : "prodml22:FluidSampleAcquisitionJobSource", -2, this, type)) + if (soap_out_prodml23__FluidSampleAcquisitionJobSource(soap, tag ? tag : "prodml23:FluidSampleAcquisitionJobSource", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSampleAcquisitionJobSource::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSampleAcquisitionJobSource::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSampleAcquisitionJobSource(soap, this, tag, type); + return soap_get_prodml23__FluidSampleAcquisitionJobSource(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_get_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_get_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSampleAcquisitionJobSource(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSampleAcquisitionJobSource(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSample::soap_default(struct soap *soap) +void prodml23__FluidSample::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__FluidSample::SampleKind = NULL; - this->prodml22__FluidSample::RockFluidUnitInterpretation = NULL; - this->prodml22__FluidSample::Representative = NULL; - this->prodml22__FluidSample::SampleDisposition = NULL; - this->prodml22__FluidSample::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap, &this->prodml22__FluidSample::FluidSampleChainOfCustodyEvent); - this->prodml22__FluidSample::OriginalSampleContainer = NULL; - this->prodml22__FluidSample::FluidSystem = NULL; - this->prodml22__FluidSample::FluidSampleAcquisitionJobSource = NULL; - this->prodml22__FluidSample::SampleRecombinationSpecification = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSample::AssociatedFluidSample); -} - -void prodml22__FluidSample::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FluidSampleKindExt(soap, &this->prodml22__FluidSample::SampleKind); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSample::RockFluidUnitInterpretation); - soap_serialize_PointerTobool(soap, &this->prodml22__FluidSample::Representative); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidSample::SampleDisposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidSample::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap, &this->prodml22__FluidSample::FluidSampleChainOfCustodyEvent); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSample::OriginalSampleContainer); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSample::FluidSystem); - soap_serialize_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, &this->prodml22__FluidSample::FluidSampleAcquisitionJobSource); - soap_serialize_PointerToprodml22__SampleRecombinationSpecification(soap, &this->prodml22__FluidSample::SampleRecombinationSpecification); - soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSample::AssociatedFluidSample); + this->prodml23__FluidSample::SampleKind = NULL; + this->prodml23__FluidSample::RockFluidUnitInterpretation = NULL; + this->prodml23__FluidSample::Representative = NULL; + this->prodml23__FluidSample::SampleDisposition = NULL; + this->prodml23__FluidSample::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap, &this->prodml23__FluidSample::FluidSampleChainOfCustodyEvent); + this->prodml23__FluidSample::OriginalSampleContainer = NULL; + this->prodml23__FluidSample::FluidSystem = NULL; + this->prodml23__FluidSample::FluidSampleAcquisitionJobSource = NULL; + this->prodml23__FluidSample::SampleRecombinationSpecification = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSample::AssociatedFluidSample); +} + +void prodml23__FluidSample::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToprodml23__FluidSampleKindExt(soap, &this->prodml23__FluidSample::SampleKind); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSample::RockFluidUnitInterpretation); + soap_serialize_PointerTobool(soap, &this->prodml23__FluidSample::Representative); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidSample::SampleDisposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidSample::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap, &this->prodml23__FluidSample::FluidSampleChainOfCustodyEvent); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSample::OriginalSampleContainer); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSample::FluidSystem); + soap_serialize_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, &this->prodml23__FluidSample::FluidSampleAcquisitionJobSource); + soap_serialize_PointerToprodml23__SampleRecombinationSpecification(soap, &this->prodml23__FluidSample::SampleRecombinationSpecification); + soap_serialize_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSample::AssociatedFluidSample); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FluidSample::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSample::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSample(soap, tag, id, this, type); + return soap_out_prodml23__FluidSample(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSample(struct soap *soap, const char *tag, int id, const prodml22__FluidSample *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSample(struct soap *soap, const char *tag, int id, const prodml23__FluidSample *a, const char *type) { if (!type) - type = "prodml22:FluidSample"; + type = "prodml23:FluidSample"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FluidSample), type ? type : "prodml22:FluidSample")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample), type ? type : "prodml23:FluidSample")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -178142,48 +178137,48 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSample(struct soap *soap, cons return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToprodml22__FluidSampleKindExt(soap, "prodml22:SampleKind", -1, &a->prodml22__FluidSample::SampleKind, "prodml22:FluidSampleKindExt")) + if (soap_out_PointerToprodml23__FluidSampleKindExt(soap, "prodml23:SampleKind", -1, &a->prodml23__FluidSample::SampleKind, "prodml23:FluidSampleKindExt")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:RockFluidUnitInterpretation", -1, &a->prodml22__FluidSample::RockFluidUnitInterpretation, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:RockFluidUnitInterpretation", -1, &a->prodml23__FluidSample::RockFluidUnitInterpretation, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:Representative", -1, &a->prodml22__FluidSample::Representative, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:Representative", -1, &a->prodml23__FluidSample::Representative, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SampleDisposition", -1, &a->prodml22__FluidSample::SampleDisposition, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SampleDisposition", -1, &a->prodml23__FluidSample::SampleDisposition, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSample::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSample::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap, "prodml22:FluidSampleChainOfCustodyEvent", -1, &a->prodml22__FluidSample::FluidSampleChainOfCustodyEvent, "prodml22:FluidSampleChainOfCustodyEvent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap, "prodml23:FluidSampleChainOfCustodyEvent", -1, &a->prodml23__FluidSample::FluidSampleChainOfCustodyEvent, "prodml23:FluidSampleChainOfCustodyEvent")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:OriginalSampleContainer", -1, &a->prodml22__FluidSample::OriginalSampleContainer, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:OriginalSampleContainer", -1, &a->prodml23__FluidSample::OriginalSampleContainer, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSystem", -1, &a->prodml22__FluidSample::FluidSystem, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSystem", -1, &a->prodml23__FluidSample::FluidSystem, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, "prodml22:FluidSampleAcquisitionJobSource", -1, &a->prodml22__FluidSample::FluidSampleAcquisitionJobSource, "prodml22:FluidSampleAcquisitionJobSource")) + if (soap_out_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, "prodml23:FluidSampleAcquisitionJobSource", -1, &a->prodml23__FluidSample::FluidSampleAcquisitionJobSource, "prodml23:FluidSampleAcquisitionJobSource")) return soap->error; - if (soap_out_PointerToprodml22__SampleRecombinationSpecification(soap, "prodml22:SampleRecombinationSpecification", -1, &a->prodml22__FluidSample::SampleRecombinationSpecification, "prodml22:SampleRecombinationSpecification")) + if (soap_out_PointerToprodml23__SampleRecombinationSpecification(soap, "prodml23:SampleRecombinationSpecification", -1, &a->prodml23__FluidSample::SampleRecombinationSpecification, "prodml23:SampleRecombinationSpecification")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:AssociatedFluidSample", -1, &a->prodml22__FluidSample::AssociatedFluidSample, "eml23:DataObjectReference")) + if (soap_out_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:AssociatedFluidSample", -1, &a->prodml23__FluidSample::AssociatedFluidSample, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSample::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSample::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSample(soap, tag, this, type); + return soap_in_prodml23__FluidSample(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSample * SOAP_FMAC4 soap_in_prodml22__FluidSample(struct soap *soap, const char *tag, prodml22__FluidSample *a, const char *type) +SOAP_FMAC3 prodml23__FluidSample * SOAP_FMAC4 soap_in_prodml23__FluidSample(struct soap *soap, const char *tag, prodml23__FluidSample *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSample*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample, sizeof(prodml22__FluidSample), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSample*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample, sizeof(prodml23__FluidSample), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSample *)a->soap_in(soap, tag, type); + return (prodml23__FluidSample *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -178264,65 +178259,65 @@ SOAP_FMAC3 prodml22__FluidSample * SOAP_FMAC4 soap_in_prodml22__FluidSample(stru continue; } if (soap_flag_SampleKind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__FluidSampleKindExt(soap, "prodml22:SampleKind", &a->prodml22__FluidSample::SampleKind, "prodml22:FluidSampleKindExt")) + { if (soap_in_PointerToprodml23__FluidSampleKindExt(soap, "prodml23:SampleKind", &a->prodml23__FluidSample::SampleKind, "prodml23:FluidSampleKindExt")) { soap_flag_SampleKind1--; continue; } } if (soap_flag_RockFluidUnitInterpretation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:RockFluidUnitInterpretation", &a->prodml22__FluidSample::RockFluidUnitInterpretation, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:RockFluidUnitInterpretation", &a->prodml23__FluidSample::RockFluidUnitInterpretation, "eml23:DataObjectReference")) { soap_flag_RockFluidUnitInterpretation1--; continue; } } if (soap_flag_Representative1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:Representative", &a->prodml22__FluidSample::Representative, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:Representative", &a->prodml23__FluidSample::Representative, "xsd:boolean")) { soap_flag_Representative1--; continue; } } if (soap_flag_SampleDisposition1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SampleDisposition", &a->prodml22__FluidSample::SampleDisposition, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SampleDisposition", &a->prodml23__FluidSample::SampleDisposition, "eml23:String64")) { soap_flag_SampleDisposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSample::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSample::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap, "prodml22:FluidSampleChainOfCustodyEvent", &a->prodml22__FluidSample::FluidSampleChainOfCustodyEvent, "prodml22:FluidSampleChainOfCustodyEvent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap, "prodml23:FluidSampleChainOfCustodyEvent", &a->prodml23__FluidSample::FluidSampleChainOfCustodyEvent, "prodml23:FluidSampleChainOfCustodyEvent")) continue; } if (soap_flag_OriginalSampleContainer1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:OriginalSampleContainer", &a->prodml22__FluidSample::OriginalSampleContainer, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:OriginalSampleContainer", &a->prodml23__FluidSample::OriginalSampleContainer, "eml23:DataObjectReference")) { soap_flag_OriginalSampleContainer1--; continue; } } if (soap_flag_FluidSystem1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSystem", &a->prodml22__FluidSample::FluidSystem, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSystem", &a->prodml23__FluidSample::FluidSystem, "eml23:DataObjectReference")) { soap_flag_FluidSystem1--; continue; } } if (soap_flag_FluidSampleAcquisitionJobSource1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, "prodml22:FluidSampleAcquisitionJobSource", &a->prodml22__FluidSample::FluidSampleAcquisitionJobSource, "prodml22:FluidSampleAcquisitionJobSource")) + { if (soap_in_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, "prodml23:FluidSampleAcquisitionJobSource", &a->prodml23__FluidSample::FluidSampleAcquisitionJobSource, "prodml23:FluidSampleAcquisitionJobSource")) { soap_flag_FluidSampleAcquisitionJobSource1--; continue; } } if (soap_flag_SampleRecombinationSpecification1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SampleRecombinationSpecification(soap, "prodml22:SampleRecombinationSpecification", &a->prodml22__FluidSample::SampleRecombinationSpecification, "prodml22:SampleRecombinationSpecification")) + { if (soap_in_PointerToprodml23__SampleRecombinationSpecification(soap, "prodml23:SampleRecombinationSpecification", &a->prodml23__FluidSample::SampleRecombinationSpecification, "prodml23:SampleRecombinationSpecification")) { soap_flag_SampleRecombinationSpecification1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml22:AssociatedFluidSample", &a->prodml22__FluidSample::AssociatedFluidSample, "eml23:DataObjectReference")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap, "prodml23:AssociatedFluidSample", &a->prodml23__FluidSample::AssociatedFluidSample, "eml23:DataObjectReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -178344,35 +178339,35 @@ SOAP_FMAC3 prodml22__FluidSample * SOAP_FMAC4 soap_in_prodml22__FluidSample(stru return NULL; } else - { a = (prodml22__FluidSample *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample, sizeof(prodml22__FluidSample), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSample *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample, sizeof(prodml23__FluidSample), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSample * SOAP_FMAC2 soap_instantiate_prodml22__FluidSample(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSample * SOAP_FMAC2 soap_instantiate_prodml23__FluidSample(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSample(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSample(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSample *p; - size_t k = sizeof(prodml22__FluidSample); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample, n, gsoap_eml2_3_fdelete); + prodml23__FluidSample *p; + size_t k = sizeof(prodml23__FluidSample); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSample); + { p = SOAP_NEW(soap, prodml23__FluidSample); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSample, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSample, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSample location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSample location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -178382,94 +178377,94 @@ SOAP_FMAC1 prodml22__FluidSample * SOAP_FMAC2 soap_instantiate_prodml22__FluidSa return p; } -int prodml22__FluidSample::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSample::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSample(soap, tag ? tag : "prodml22:FluidSample", -2, this, type)) + if (soap_out_prodml23__FluidSample(soap, tag ? tag : "prodml23:FluidSample", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSample::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSample::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSample(soap, this, tag, type); + return soap_get_prodml23__FluidSample(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSample * SOAP_FMAC4 soap_get_prodml22__FluidSample(struct soap *soap, prodml22__FluidSample *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSample * SOAP_FMAC4 soap_get_prodml23__FluidSample(struct soap *soap, prodml23__FluidSample *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSample(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSample(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellboreVolume::soap_default(struct soap *soap) +void prodml23__WellboreVolume::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__WellboreVolume::Abbreviation = "Vw"; - this->prodml22__WellboreVolume::Volume = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__WellboreVolume::Abbreviation = "Vw"; + this->prodml23__WellboreVolume::Volume = NULL; } -void prodml22__WellboreVolume::soap_serialize(struct soap *soap) const +void prodml23__WellboreVolume::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WellboreVolume::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__WellboreVolume::Abbreviation); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__WellboreVolume::Volume); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__WellboreVolume::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__WellboreVolume::Abbreviation); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__WellboreVolume::Volume); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__WellboreVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellboreVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellboreVolume(soap, tag, id, this, type); + return soap_out_prodml23__WellboreVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreVolume(struct soap *soap, const char *tag, int id, const prodml22__WellboreVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreVolume(struct soap *soap, const char *tag, int id, const prodml23__WellboreVolume *a, const char *type) { if (!type) - type = "prodml22:WellboreVolume"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:WellboreVolume"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__WellboreVolume), type ? type : "prodml22:WellboreVolume")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume), type ? type : "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__WellboreVolume::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__WellboreVolume::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreVolume::Volume) - { if (soap_element_empty(soap, "prodml22:Volume", 0, NULL)) + if (!a->prodml23__WellboreVolume::Volume) + { if (soap_element_empty(soap, "prodml23:Volume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:Volume", -1, &a->prodml22__WellboreVolume::Volume, "eml23:VolumeMeasure")) + else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:Volume", -1, &a->prodml23__WellboreVolume::Volume, "eml23:VolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellboreVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellboreVolume(soap, tag, this, type); + return soap_in_prodml23__WellboreVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_in_prodml22__WellboreVolume(struct soap *soap, const char *tag, prodml22__WellboreVolume *a, const char *type) +SOAP_FMAC3 prodml23__WellboreVolume * SOAP_FMAC4 soap_in_prodml23__WellboreVolume(struct soap *soap, const char *tag, prodml23__WellboreVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellboreVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume, sizeof(prodml22__WellboreVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellboreVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume, sizeof(prodml23__WellboreVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellboreVolume *)a->soap_in(soap, tag, type); + return (prodml23__WellboreVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -178480,21 +178475,21 @@ SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_in_prodml22__WellboreVolum for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__WellboreVolume::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__WellboreVolume::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__WellboreVolume::Abbreviation.compare("Vw"))) + if (*soap->href != '#' && (a->prodml23__WellboreVolume::Abbreviation.compare("Vw"))) { soap->error = SOAP_FIXED; return NULL; } @@ -178502,7 +178497,7 @@ SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_in_prodml22__WellboreVolum } } if (soap_flag_Volume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:Volume", &a->prodml22__WellboreVolume::Volume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:Volume", &a->prodml23__WellboreVolume::Volume, "eml23:VolumeMeasure")) { soap_flag_Volume1--; continue; } @@ -178516,7 +178511,7 @@ SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_in_prodml22__WellboreVolum } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__WellboreVolume::Volume)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__WellboreVolume::Volume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -178526,35 +178521,35 @@ SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_in_prodml22__WellboreVolum return NULL; } else - { a = (prodml22__WellboreVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume, sizeof(prodml22__WellboreVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume, sizeof(prodml23__WellboreVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml22__WellboreVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml23__WellboreVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellboreVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellboreVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellboreVolume *p; - size_t k = sizeof(prodml22__WellboreVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume, n, gsoap_eml2_3_fdelete); + prodml23__WellboreVolume *p; + size_t k = sizeof(prodml23__WellboreVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellboreVolume); + { p = SOAP_NEW(soap, prodml23__WellboreVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellboreVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellboreVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellboreVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellboreVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -178564,94 +178559,94 @@ SOAP_FMAC1 prodml22__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml22__Well return p; } -int prodml22__WellboreVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellboreVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellboreVolume(soap, tag ? tag : "prodml22:WellboreVolume", -2, this, type)) + if (soap_out_prodml23__WellboreVolume(soap, tag ? tag : "prodml23:WellboreVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellboreVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellboreVolume(soap, this, tag, type); + return soap_get_prodml23__WellboreVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_get_prodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreVolume * SOAP_FMAC4 soap_get_prodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellboreStorageCoefficient::soap_default(struct soap *soap) +void prodml23__WellboreStorageCoefficient::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__WellboreStorageCoefficient::Abbreviation = "Cs"; - this->prodml22__WellboreStorageCoefficient::VolumePerPressure = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__WellboreStorageCoefficient::Abbreviation = "Cs"; + this->prodml23__WellboreStorageCoefficient::VolumePerPressure = NULL; } -void prodml22__WellboreStorageCoefficient::soap_serialize(struct soap *soap) const +void prodml23__WellboreStorageCoefficient::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WellboreStorageCoefficient::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__WellboreStorageCoefficient::Abbreviation); - soap_serialize_PointerToeml23__VolumePerPressureMeasureExt(soap, &this->prodml22__WellboreStorageCoefficient::VolumePerPressure); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__WellboreStorageCoefficient::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__WellboreStorageCoefficient::Abbreviation); + soap_serialize_PointerToeml23__VolumePerPressureMeasureExt(soap, &this->prodml23__WellboreStorageCoefficient::VolumePerPressure); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__WellboreStorageCoefficient::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellboreStorageCoefficient::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellboreStorageCoefficient(soap, tag, id, this, type); + return soap_out_prodml23__WellboreStorageCoefficient(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreStorageCoefficient(struct soap *soap, const char *tag, int id, const prodml22__WellboreStorageCoefficient *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreStorageCoefficient(struct soap *soap, const char *tag, int id, const prodml23__WellboreStorageCoefficient *a, const char *type) { if (!type) - type = "prodml22:WellboreStorageCoefficient"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:WellboreStorageCoefficient"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__WellboreStorageCoefficient), type ? type : "prodml22:WellboreStorageCoefficient")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient), type ? type : "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__WellboreStorageCoefficient::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__WellboreStorageCoefficient::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreStorageCoefficient::VolumePerPressure) - { if (soap_element_empty(soap, "prodml22:VolumePerPressure", 0, NULL)) + if (!a->prodml23__WellboreStorageCoefficient::VolumePerPressure) + { if (soap_element_empty(soap, "prodml23:VolumePerPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerPressureMeasureExt(soap, "prodml22:VolumePerPressure", -1, &a->prodml22__WellboreStorageCoefficient::VolumePerPressure, "eml23:VolumePerPressureMeasureExt")) + else if (soap_out_PointerToeml23__VolumePerPressureMeasureExt(soap, "prodml23:VolumePerPressure", -1, &a->prodml23__WellboreStorageCoefficient::VolumePerPressure, "eml23:VolumePerPressureMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellboreStorageCoefficient::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreStorageCoefficient::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellboreStorageCoefficient(soap, tag, this, type); + return soap_in_prodml23__WellboreStorageCoefficient(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml22__WellboreStorageCoefficient(struct soap *soap, const char *tag, prodml22__WellboreStorageCoefficient *a, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml23__WellboreStorageCoefficient(struct soap *soap, const char *tag, prodml23__WellboreStorageCoefficient *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellboreStorageCoefficient*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient, sizeof(prodml22__WellboreStorageCoefficient), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellboreStorageCoefficient*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient, sizeof(prodml23__WellboreStorageCoefficient), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellboreStorageCoefficient *)a->soap_in(soap, tag, type); + return (prodml23__WellboreStorageCoefficient *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -178662,21 +178657,21 @@ SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml22__W for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__WellboreStorageCoefficient::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__WellboreStorageCoefficient::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__WellboreStorageCoefficient::Abbreviation.compare("Cs"))) + if (*soap->href != '#' && (a->prodml23__WellboreStorageCoefficient::Abbreviation.compare("Cs"))) { soap->error = SOAP_FIXED; return NULL; } @@ -178684,7 +178679,7 @@ SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml22__W } } if (soap_flag_VolumePerPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerPressureMeasureExt(soap, "prodml22:VolumePerPressure", &a->prodml22__WellboreStorageCoefficient::VolumePerPressure, "eml23:VolumePerPressureMeasureExt")) + { if (soap_in_PointerToeml23__VolumePerPressureMeasureExt(soap, "prodml23:VolumePerPressure", &a->prodml23__WellboreStorageCoefficient::VolumePerPressure, "eml23:VolumePerPressureMeasureExt")) { soap_flag_VolumePerPressure1--; continue; } @@ -178698,7 +178693,7 @@ SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml22__W } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__WellboreStorageCoefficient::VolumePerPressure)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__WellboreStorageCoefficient::VolumePerPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -178708,35 +178703,35 @@ SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml22__W return NULL; } else - { a = (prodml22__WellboreStorageCoefficient *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient, sizeof(prodml22__WellboreStorageCoefficient), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreStorageCoefficient *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient, sizeof(prodml23__WellboreStorageCoefficient), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_prodml22__WellboreStorageCoefficient(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_prodml23__WellboreStorageCoefficient(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellboreStorageCoefficient(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellboreStorageCoefficient(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellboreStorageCoefficient *p; - size_t k = sizeof(prodml22__WellboreStorageCoefficient); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient, n, gsoap_eml2_3_fdelete); + prodml23__WellboreStorageCoefficient *p; + size_t k = sizeof(prodml23__WellboreStorageCoefficient); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellboreStorageCoefficient); + { p = SOAP_NEW(soap, prodml23__WellboreStorageCoefficient); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellboreStorageCoefficient, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellboreStorageCoefficient, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellboreStorageCoefficient location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellboreStorageCoefficient location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -178746,94 +178741,94 @@ SOAP_FMAC1 prodml22__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__WellboreStorageCoefficient::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellboreStorageCoefficient::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellboreStorageCoefficient(soap, tag ? tag : "prodml22:WellboreStorageCoefficient", -2, this, type)) + if (soap_out_prodml23__WellboreStorageCoefficient(soap, tag ? tag : "prodml23:WellboreStorageCoefficient", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellboreStorageCoefficient::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreStorageCoefficient::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellboreStorageCoefficient(soap, this, tag, type); + return soap_get_prodml23__WellboreStorageCoefficient(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_get_prodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageCoefficient * SOAP_FMAC4 soap_get_prodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreStorageCoefficient(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreStorageCoefficient(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellboreRadius::soap_default(struct soap *soap) +void prodml23__WellboreRadius::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__WellboreRadius::Abbreviation = "Rw"; - this->prodml22__WellboreRadius::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__WellboreRadius::Abbreviation = "Rw"; + this->prodml23__WellboreRadius::Length = NULL; } -void prodml22__WellboreRadius::soap_serialize(struct soap *soap) const +void prodml23__WellboreRadius::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WellboreRadius::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__WellboreRadius::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__WellboreRadius::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__WellboreRadius::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__WellboreRadius::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__WellboreRadius::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__WellboreRadius::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellboreRadius::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellboreRadius(soap, tag, id, this, type); + return soap_out_prodml23__WellboreRadius(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreRadius(struct soap *soap, const char *tag, int id, const prodml22__WellboreRadius *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreRadius(struct soap *soap, const char *tag, int id, const prodml23__WellboreRadius *a, const char *type) { if (!type) - type = "prodml22:WellboreRadius"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:WellboreRadius"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__WellboreRadius), type ? type : "prodml22:WellboreRadius")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius), type ? type : "prodml23:WellboreRadius")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__WellboreRadius::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__WellboreRadius::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreRadius::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__WellboreRadius::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__WellboreRadius::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__WellboreRadius::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellboreRadius::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreRadius::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellboreRadius(soap, tag, this, type); + return soap_in_prodml23__WellboreRadius(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_in_prodml22__WellboreRadius(struct soap *soap, const char *tag, prodml22__WellboreRadius *a, const char *type) +SOAP_FMAC3 prodml23__WellboreRadius * SOAP_FMAC4 soap_in_prodml23__WellboreRadius(struct soap *soap, const char *tag, prodml23__WellboreRadius *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellboreRadius*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius, sizeof(prodml22__WellboreRadius), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellboreRadius*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius, sizeof(prodml23__WellboreRadius), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellboreRadius *)a->soap_in(soap, tag, type); + return (prodml23__WellboreRadius *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -178844,21 +178839,21 @@ SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_in_prodml22__WellboreRadiu for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__WellboreRadius::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__WellboreRadius::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__WellboreRadius::Abbreviation.compare("Rw"))) + if (*soap->href != '#' && (a->prodml23__WellboreRadius::Abbreviation.compare("Rw"))) { soap->error = SOAP_FIXED; return NULL; } @@ -178866,7 +178861,7 @@ SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_in_prodml22__WellboreRadiu } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__WellboreRadius::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__WellboreRadius::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -178880,7 +178875,7 @@ SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_in_prodml22__WellboreRadiu } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__WellboreRadius::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__WellboreRadius::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -178890,35 +178885,35 @@ SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_in_prodml22__WellboreRadiu return NULL; } else - { a = (prodml22__WellboreRadius *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius, sizeof(prodml22__WellboreRadius), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreRadius *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius, sizeof(prodml23__WellboreRadius), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml22__WellboreRadius(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml23__WellboreRadius(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellboreRadius(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellboreRadius(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellboreRadius *p; - size_t k = sizeof(prodml22__WellboreRadius); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius, n, gsoap_eml2_3_fdelete); + prodml23__WellboreRadius *p; + size_t k = sizeof(prodml23__WellboreRadius); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellboreRadius); + { p = SOAP_NEW(soap, prodml23__WellboreRadius); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellboreRadius, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellboreRadius, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellboreRadius location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellboreRadius location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -178928,94 +178923,94 @@ SOAP_FMAC1 prodml22__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml22__Well return p; } -int prodml22__WellboreRadius::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellboreRadius::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellboreRadius(soap, tag ? tag : "prodml22:WellboreRadius", -2, this, type)) + if (soap_out_prodml23__WellboreRadius(soap, tag ? tag : "prodml23:WellboreRadius", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellboreRadius::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreRadius::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellboreRadius(soap, this, tag, type); + return soap_get_prodml23__WellboreRadius(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_get_prodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreRadius * SOAP_FMAC4 soap_get_prodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreRadius(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreRadius(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellboreFluidCompressibility::soap_default(struct soap *soap) +void prodml23__WellboreFluidCompressibility::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__WellboreFluidCompressibility::Abbreviation = "Cw"; - this->prodml22__WellboreFluidCompressibility::Compressibility = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__WellboreFluidCompressibility::Abbreviation = "Cw"; + this->prodml23__WellboreFluidCompressibility::Compressibility = NULL; } -void prodml22__WellboreFluidCompressibility::soap_serialize(struct soap *soap) const +void prodml23__WellboreFluidCompressibility::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WellboreFluidCompressibility::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__WellboreFluidCompressibility::Abbreviation); - soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, &this->prodml22__WellboreFluidCompressibility::Compressibility); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__WellboreFluidCompressibility::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__WellboreFluidCompressibility::Abbreviation); + soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, &this->prodml23__WellboreFluidCompressibility::Compressibility); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__WellboreFluidCompressibility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellboreFluidCompressibility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellboreFluidCompressibility(soap, tag, id, this, type); + return soap_out_prodml23__WellboreFluidCompressibility(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreFluidCompressibility(struct soap *soap, const char *tag, int id, const prodml22__WellboreFluidCompressibility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreFluidCompressibility(struct soap *soap, const char *tag, int id, const prodml23__WellboreFluidCompressibility *a, const char *type) { if (!type) - type = "prodml22:WellboreFluidCompressibility"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:WellboreFluidCompressibility"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__WellboreFluidCompressibility), type ? type : "prodml22:WellboreFluidCompressibility")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility), type ? type : "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__WellboreFluidCompressibility::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__WellboreFluidCompressibility::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreFluidCompressibility::Compressibility) - { if (soap_element_empty(soap, "prodml22:Compressibility", 0, NULL)) + if (!a->prodml23__WellboreFluidCompressibility::Compressibility) + { if (soap_element_empty(soap, "prodml23:Compressibility", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml22:Compressibility", -1, &a->prodml22__WellboreFluidCompressibility::Compressibility, "eml23:ReciprocalPressureMeasureExt")) + else if (soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml23:Compressibility", -1, &a->prodml23__WellboreFluidCompressibility::Compressibility, "eml23:ReciprocalPressureMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellboreFluidCompressibility::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreFluidCompressibility::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellboreFluidCompressibility(soap, tag, this, type); + return soap_in_prodml23__WellboreFluidCompressibility(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml22__WellboreFluidCompressibility(struct soap *soap, const char *tag, prodml22__WellboreFluidCompressibility *a, const char *type) +SOAP_FMAC3 prodml23__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml23__WellboreFluidCompressibility(struct soap *soap, const char *tag, prodml23__WellboreFluidCompressibility *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellboreFluidCompressibility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility, sizeof(prodml22__WellboreFluidCompressibility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellboreFluidCompressibility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility, sizeof(prodml23__WellboreFluidCompressibility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellboreFluidCompressibility *)a->soap_in(soap, tag, type); + return (prodml23__WellboreFluidCompressibility *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -179026,21 +179021,21 @@ SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__WellboreFluidCompressibility::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__WellboreFluidCompressibility::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__WellboreFluidCompressibility::Abbreviation.compare("Cw"))) + if (*soap->href != '#' && (a->prodml23__WellboreFluidCompressibility::Abbreviation.compare("Cw"))) { soap->error = SOAP_FIXED; return NULL; } @@ -179048,7 +179043,7 @@ SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml22_ } } if (soap_flag_Compressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml22:Compressibility", &a->prodml22__WellboreFluidCompressibility::Compressibility, "eml23:ReciprocalPressureMeasureExt")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml23:Compressibility", &a->prodml23__WellboreFluidCompressibility::Compressibility, "eml23:ReciprocalPressureMeasureExt")) { soap_flag_Compressibility1--; continue; } @@ -179062,7 +179057,7 @@ SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml22_ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__WellboreFluidCompressibility::Compressibility)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__WellboreFluidCompressibility::Compressibility)) { soap->error = SOAP_OCCURS; return NULL; } @@ -179072,35 +179067,35 @@ SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__WellboreFluidCompressibility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility, sizeof(prodml22__WellboreFluidCompressibility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreFluidCompressibility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility, sizeof(prodml23__WellboreFluidCompressibility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__WellboreFluidCompressibility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_prodml23__WellboreFluidCompressibility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellboreFluidCompressibility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellboreFluidCompressibility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellboreFluidCompressibility *p; - size_t k = sizeof(prodml22__WellboreFluidCompressibility); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility, n, gsoap_eml2_3_fdelete); + prodml23__WellboreFluidCompressibility *p; + size_t k = sizeof(prodml23__WellboreFluidCompressibility); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellboreFluidCompressibility); + { p = SOAP_NEW(soap, prodml23__WellboreFluidCompressibility); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellboreFluidCompressibility, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellboreFluidCompressibility, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellboreFluidCompressibility location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellboreFluidCompressibility location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -179110,94 +179105,94 @@ SOAP_FMAC1 prodml22__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__WellboreFluidCompressibility::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellboreFluidCompressibility::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellboreFluidCompressibility(soap, tag ? tag : "prodml22:WellboreFluidCompressibility", -2, this, type)) + if (soap_out_prodml23__WellboreFluidCompressibility(soap, tag ? tag : "prodml23:WellboreFluidCompressibility", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellboreFluidCompressibility::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreFluidCompressibility::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellboreFluidCompressibility(soap, this, tag, type); + return soap_get_prodml23__WellboreFluidCompressibility(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_get_prodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreFluidCompressibility * SOAP_FMAC4 soap_get_prodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreFluidCompressibility(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreFluidCompressibility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellboreDeviationAngle::soap_default(struct soap *soap) +void prodml23__WellboreDeviationAngle::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__WellboreDeviationAngle::Abbreviation = "Deviation"; - this->prodml22__WellboreDeviationAngle::PlaneAngle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__WellboreDeviationAngle::Abbreviation = "Deviation"; + this->prodml23__WellboreDeviationAngle::PlaneAngle = NULL; } -void prodml22__WellboreDeviationAngle::soap_serialize(struct soap *soap) const +void prodml23__WellboreDeviationAngle::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WellboreDeviationAngle::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__WellboreDeviationAngle::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__WellboreDeviationAngle::PlaneAngle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__WellboreDeviationAngle::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__WellboreDeviationAngle::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__WellboreDeviationAngle::PlaneAngle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__WellboreDeviationAngle::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellboreDeviationAngle::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellboreDeviationAngle(soap, tag, id, this, type); + return soap_out_prodml23__WellboreDeviationAngle(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreDeviationAngle(struct soap *soap, const char *tag, int id, const prodml22__WellboreDeviationAngle *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreDeviationAngle(struct soap *soap, const char *tag, int id, const prodml23__WellboreDeviationAngle *a, const char *type) { if (!type) - type = "prodml22:WellboreDeviationAngle"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:WellboreDeviationAngle"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__WellboreDeviationAngle), type ? type : "prodml22:WellboreDeviationAngle")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle), type ? type : "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__WellboreDeviationAngle::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__WellboreDeviationAngle::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreDeviationAngle::PlaneAngle) - { if (soap_element_empty(soap, "prodml22:PlaneAngle", 0, NULL)) + if (!a->prodml23__WellboreDeviationAngle::PlaneAngle) + { if (soap_element_empty(soap, "prodml23:PlaneAngle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:PlaneAngle", -1, &a->prodml22__WellboreDeviationAngle::PlaneAngle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:PlaneAngle", -1, &a->prodml23__WellboreDeviationAngle::PlaneAngle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellboreDeviationAngle::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreDeviationAngle::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellboreDeviationAngle(soap, tag, this, type); + return soap_in_prodml23__WellboreDeviationAngle(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml22__WellboreDeviationAngle(struct soap *soap, const char *tag, prodml22__WellboreDeviationAngle *a, const char *type) +SOAP_FMAC3 prodml23__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml23__WellboreDeviationAngle(struct soap *soap, const char *tag, prodml23__WellboreDeviationAngle *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellboreDeviationAngle*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle, sizeof(prodml22__WellboreDeviationAngle), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellboreDeviationAngle*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle, sizeof(prodml23__WellboreDeviationAngle), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellboreDeviationAngle *)a->soap_in(soap, tag, type); + return (prodml23__WellboreDeviationAngle *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -179208,21 +179203,21 @@ SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml22__Wellb for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__WellboreDeviationAngle::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__WellboreDeviationAngle::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__WellboreDeviationAngle::Abbreviation.compare("Deviation"))) + if (*soap->href != '#' && (a->prodml23__WellboreDeviationAngle::Abbreviation.compare("Deviation"))) { soap->error = SOAP_FIXED; return NULL; } @@ -179230,7 +179225,7 @@ SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml22__Wellb } } if (soap_flag_PlaneAngle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:PlaneAngle", &a->prodml22__WellboreDeviationAngle::PlaneAngle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:PlaneAngle", &a->prodml23__WellboreDeviationAngle::PlaneAngle, "eml23:PlaneAngleMeasure")) { soap_flag_PlaneAngle1--; continue; } @@ -179244,7 +179239,7 @@ SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml22__Wellb } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__WellboreDeviationAngle::PlaneAngle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__WellboreDeviationAngle::PlaneAngle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -179254,35 +179249,35 @@ SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml22__Wellb return NULL; } else - { a = (prodml22__WellboreDeviationAngle *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle, sizeof(prodml22__WellboreDeviationAngle), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreDeviationAngle *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle, sizeof(prodml23__WellboreDeviationAngle), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml22__WellboreDeviationAngle(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml23__WellboreDeviationAngle(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellboreDeviationAngle(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellboreDeviationAngle(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellboreDeviationAngle *p; - size_t k = sizeof(prodml22__WellboreDeviationAngle); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle, n, gsoap_eml2_3_fdelete); + prodml23__WellboreDeviationAngle *p; + size_t k = sizeof(prodml23__WellboreDeviationAngle); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellboreDeviationAngle); + { p = SOAP_NEW(soap, prodml23__WellboreDeviationAngle); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellboreDeviationAngle, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellboreDeviationAngle, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellboreDeviationAngle location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellboreDeviationAngle location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -179292,94 +179287,94 @@ SOAP_FMAC1 prodml22__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__WellboreDeviationAngle::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellboreDeviationAngle::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellboreDeviationAngle(soap, tag ? tag : "prodml22:WellboreDeviationAngle", -2, this, type)) + if (soap_out_prodml23__WellboreDeviationAngle(soap, tag ? tag : "prodml23:WellboreDeviationAngle", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellboreDeviationAngle::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreDeviationAngle::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellboreDeviationAngle(soap, this, tag, type); + return soap_get_prodml23__WellboreDeviationAngle(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_get_prodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreDeviationAngle * SOAP_FMAC4 soap_get_prodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreDeviationAngle(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreDeviationAngle(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__VerticalAnisotropyKvToKr::soap_default(struct soap *soap) +void prodml23__VerticalAnisotropyKvToKr::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__VerticalAnisotropyKvToKr::Abbreviation = "kvTokr"; - this->prodml22__VerticalAnisotropyKvToKr::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__VerticalAnisotropyKvToKr::Abbreviation = "kvTokr"; + this->prodml23__VerticalAnisotropyKvToKr::Value = NULL; } -void prodml22__VerticalAnisotropyKvToKr::soap_serialize(struct soap *soap) const +void prodml23__VerticalAnisotropyKvToKr::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__VerticalAnisotropyKvToKr::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__VerticalAnisotropyKvToKr::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__VerticalAnisotropyKvToKr::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__VerticalAnisotropyKvToKr::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__VerticalAnisotropyKvToKr::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__VerticalAnisotropyKvToKr::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__VerticalAnisotropyKvToKr::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__VerticalAnisotropyKvToKr::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__VerticalAnisotropyKvToKr(soap, tag, id, this, type); + return soap_out_prodml23__VerticalAnisotropyKvToKr(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, int id, const prodml22__VerticalAnisotropyKvToKr *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, int id, const prodml23__VerticalAnisotropyKvToKr *a, const char *type) { if (!type) - type = "prodml22:VerticalAnisotropyKvToKr"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:VerticalAnisotropyKvToKr"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr), type ? type : "prodml22:VerticalAnisotropyKvToKr")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr), type ? type : "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__VerticalAnisotropyKvToKr::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__VerticalAnisotropyKvToKr::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__VerticalAnisotropyKvToKr::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__VerticalAnisotropyKvToKr::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__VerticalAnisotropyKvToKr::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__VerticalAnisotropyKvToKr::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__VerticalAnisotropyKvToKr::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__VerticalAnisotropyKvToKr::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__VerticalAnisotropyKvToKr(soap, tag, this, type); + return soap_in_prodml23__VerticalAnisotropyKvToKr(soap, tag, this, type); } -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, prodml22__VerticalAnisotropyKvToKr *a, const char *type) +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, prodml23__VerticalAnisotropyKvToKr *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__VerticalAnisotropyKvToKr*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr, sizeof(prodml22__VerticalAnisotropyKvToKr), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__VerticalAnisotropyKvToKr*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr, sizeof(prodml23__VerticalAnisotropyKvToKr), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__VerticalAnisotropyKvToKr *)a->soap_in(soap, tag, type); + return (prodml23__VerticalAnisotropyKvToKr *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -179390,21 +179385,21 @@ SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml22__Ver for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__VerticalAnisotropyKvToKr::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__VerticalAnisotropyKvToKr::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__VerticalAnisotropyKvToKr::Abbreviation.compare("kvTokr"))) + if (*soap->href != '#' && (a->prodml23__VerticalAnisotropyKvToKr::Abbreviation.compare("kvTokr"))) { soap->error = SOAP_FIXED; return NULL; } @@ -179412,7 +179407,7 @@ SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml22__Ver } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__VerticalAnisotropyKvToKr::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__VerticalAnisotropyKvToKr::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -179426,7 +179421,7 @@ SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml22__Ver } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__VerticalAnisotropyKvToKr::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__VerticalAnisotropyKvToKr::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -179436,35 +179431,35 @@ SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml22__Ver return NULL; } else - { a = (prodml22__VerticalAnisotropyKvToKr *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr, sizeof(prodml22__VerticalAnisotropyKvToKr), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__VerticalAnisotropyKvToKr *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr, sizeof(prodml23__VerticalAnisotropyKvToKr), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__VerticalAnisotropyKvToKr(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__VerticalAnisotropyKvToKr(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__VerticalAnisotropyKvToKr *p; - size_t k = sizeof(prodml22__VerticalAnisotropyKvToKr); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr, n, gsoap_eml2_3_fdelete); + prodml23__VerticalAnisotropyKvToKr *p; + size_t k = sizeof(prodml23__VerticalAnisotropyKvToKr); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__VerticalAnisotropyKvToKr); + { p = SOAP_NEW(soap, prodml23__VerticalAnisotropyKvToKr); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__VerticalAnisotropyKvToKr, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__VerticalAnisotropyKvToKr, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__VerticalAnisotropyKvToKr location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__VerticalAnisotropyKvToKr location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -179474,94 +179469,94 @@ SOAP_FMAC1 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__VerticalAnisotropyKvToKr::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__VerticalAnisotropyKvToKr::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__VerticalAnisotropyKvToKr(soap, tag ? tag : "prodml22:VerticalAnisotropyKvToKr", -2, this, type)) + if (soap_out_prodml23__VerticalAnisotropyKvToKr(soap, tag ? tag : "prodml23:VerticalAnisotropyKvToKr", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__VerticalAnisotropyKvToKr::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__VerticalAnisotropyKvToKr::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__VerticalAnisotropyKvToKr(soap, this, tag, type); + return soap_get_prodml23__VerticalAnisotropyKvToKr(soap, this, tag, type); } -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_get_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_get_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__VerticalAnisotropyKvToKr(soap, tag, p, type))) + if ((p = soap_in_prodml23__VerticalAnisotropyKvToKr(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TubingInteralDiameter::soap_default(struct soap *soap) +void prodml23__TubingInteralDiameter::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__TubingInteralDiameter::Abbreviation = "ID"; - this->prodml22__TubingInteralDiameter::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__TubingInteralDiameter::Abbreviation = "ID"; + this->prodml23__TubingInteralDiameter::Length = NULL; } -void prodml22__TubingInteralDiameter::soap_serialize(struct soap *soap) const +void prodml23__TubingInteralDiameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__TubingInteralDiameter::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__TubingInteralDiameter::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__TubingInteralDiameter::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__TubingInteralDiameter::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__TubingInteralDiameter::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__TubingInteralDiameter::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__TubingInteralDiameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TubingInteralDiameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TubingInteralDiameter(soap, tag, id, this, type); + return soap_out_prodml23__TubingInteralDiameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TubingInteralDiameter(struct soap *soap, const char *tag, int id, const prodml22__TubingInteralDiameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TubingInteralDiameter(struct soap *soap, const char *tag, int id, const prodml23__TubingInteralDiameter *a, const char *type) { if (!type) - type = "prodml22:TubingInteralDiameter"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:TubingInteralDiameter"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__TubingInteralDiameter), type ? type : "prodml22:TubingInteralDiameter")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter), type ? type : "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__TubingInteralDiameter::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__TubingInteralDiameter::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__TubingInteralDiameter::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__TubingInteralDiameter::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__TubingInteralDiameter::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__TubingInteralDiameter::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TubingInteralDiameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TubingInteralDiameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TubingInteralDiameter(soap, tag, this, type); + return soap_in_prodml23__TubingInteralDiameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml22__TubingInteralDiameter(struct soap *soap, const char *tag, prodml22__TubingInteralDiameter *a, const char *type) +SOAP_FMAC3 prodml23__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml23__TubingInteralDiameter(struct soap *soap, const char *tag, prodml23__TubingInteralDiameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TubingInteralDiameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter, sizeof(prodml22__TubingInteralDiameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TubingInteralDiameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter, sizeof(prodml23__TubingInteralDiameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TubingInteralDiameter *)a->soap_in(soap, tag, type); + return (prodml23__TubingInteralDiameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -179572,21 +179567,21 @@ SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml22__Tubing for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__TubingInteralDiameter::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__TubingInteralDiameter::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__TubingInteralDiameter::Abbreviation.compare("ID"))) + if (*soap->href != '#' && (a->prodml23__TubingInteralDiameter::Abbreviation.compare("ID"))) { soap->error = SOAP_FIXED; return NULL; } @@ -179594,7 +179589,7 @@ SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml22__Tubing } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__TubingInteralDiameter::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__TubingInteralDiameter::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -179608,7 +179603,7 @@ SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml22__Tubing } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__TubingInteralDiameter::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__TubingInteralDiameter::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -179618,35 +179613,35 @@ SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml22__Tubing return NULL; } else - { a = (prodml22__TubingInteralDiameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter, sizeof(prodml22__TubingInteralDiameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TubingInteralDiameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter, sizeof(prodml23__TubingInteralDiameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml22__TubingInteralDiameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml23__TubingInteralDiameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TubingInteralDiameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TubingInteralDiameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TubingInteralDiameter *p; - size_t k = sizeof(prodml22__TubingInteralDiameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter, n, gsoap_eml2_3_fdelete); + prodml23__TubingInteralDiameter *p; + size_t k = sizeof(prodml23__TubingInteralDiameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TubingInteralDiameter); + { p = SOAP_NEW(soap, prodml23__TubingInteralDiameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TubingInteralDiameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TubingInteralDiameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TubingInteralDiameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TubingInteralDiameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -179656,91 +179651,91 @@ SOAP_FMAC1 prodml22__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__TubingInteralDiameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TubingInteralDiameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TubingInteralDiameter(soap, tag ? tag : "prodml22:TubingInteralDiameter", -2, this, type)) + if (soap_out_prodml23__TubingInteralDiameter(soap, tag ? tag : "prodml23:TubingInteralDiameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TubingInteralDiameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TubingInteralDiameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TubingInteralDiameter(soap, this, tag, type); + return soap_get_prodml23__TubingInteralDiameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_get_prodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TubingInteralDiameter * SOAP_FMAC4 soap_get_prodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TubingInteralDiameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__TubingInteralDiameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TransmissibilityReductionFactorOfLinearFront::soap_default(struct soap *soap) +void prodml23__TransmissibilityReductionFactorOfLinearFront::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation = "Leakage"; - soap_default_std__string(soap, &this->prodml22__TransmissibilityReductionFactorOfLinearFront::value); + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation = "Leakage"; + soap_default_std__string(soap, &this->prodml23__TransmissibilityReductionFactorOfLinearFront::value); } -void prodml22__TransmissibilityReductionFactorOfLinearFront::soap_serialize(struct soap *soap) const +void prodml23__TransmissibilityReductionFactorOfLinearFront::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation, SOAP_TYPE_gsoap_eml2_3_std__string); - soap_serialize_std__string(soap, &this->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation); - soap_embedded(soap, &this->prodml22__TransmissibilityReductionFactorOfLinearFront::value, SOAP_TYPE_gsoap_eml2_3_std__string); - soap_serialize_std__string(soap, &this->prodml22__TransmissibilityReductionFactorOfLinearFront::value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation, SOAP_TYPE_gsoap_eml2_3_std__string); + soap_serialize_std__string(soap, &this->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation); + soap_embedded(soap, &this->prodml23__TransmissibilityReductionFactorOfLinearFront::value, SOAP_TYPE_gsoap_eml2_3_std__string); + soap_serialize_std__string(soap, &this->prodml23__TransmissibilityReductionFactorOfLinearFront::value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__TransmissibilityReductionFactorOfLinearFront::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TransmissibilityReductionFactorOfLinearFront::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, id, this, type); + return soap_out_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, int id, const prodml22__TransmissibilityReductionFactorOfLinearFront *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, int id, const prodml23__TransmissibilityReductionFactorOfLinearFront *a, const char *type) { if (!type) - type = "prodml22:TransmissibilityReductionFactorOfLinearFront"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:TransmissibilityReductionFactorOfLinearFront"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront), type ? type : "prodml22:TransmissibilityReductionFactorOfLinearFront")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront), type ? type : "prodml23:TransmissibilityReductionFactorOfLinearFront")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__string(soap, "prodml22:abbreviation", -1, &a->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation, "xsd:string")) + if (soap_out_std__string(soap, "prodml23:abbreviation", -1, &a->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation, "xsd:string")) return soap->error; - if (soap_out_std__string(soap, "prodml22:value", -1, &a->prodml22__TransmissibilityReductionFactorOfLinearFront::value, "xsd:string")) + if (soap_out_std__string(soap, "prodml23:value", -1, &a->prodml23__TransmissibilityReductionFactorOfLinearFront::value, "xsd:string")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TransmissibilityReductionFactorOfLinearFront::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TransmissibilityReductionFactorOfLinearFront::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, this, type); + return soap_in_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_in_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, prodml22__TransmissibilityReductionFactorOfLinearFront *a, const char *type) +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_in_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, prodml23__TransmissibilityReductionFactorOfLinearFront *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TransmissibilityReductionFactorOfLinearFront*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront, sizeof(prodml22__TransmissibilityReductionFactorOfLinearFront), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TransmissibilityReductionFactorOfLinearFront*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront, sizeof(prodml23__TransmissibilityReductionFactorOfLinearFront), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TransmissibilityReductionFactorOfLinearFront *)a->soap_in(soap, tag, type); + return (prodml23__TransmissibilityReductionFactorOfLinearFront *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -179751,21 +179746,21 @@ SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "prodml22:abbreviation", &a->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation, "xsd:string")) + { if (soap_in_std__string(soap, "prodml23:abbreviation", &a->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation, "xsd:string")) { soap_flag_abbreviation1--; - if (*soap->href != '#' && (a->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation.compare("Leakage"))) + if (*soap->href != '#' && (a->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation.compare("Leakage"))) { soap->error = SOAP_FIXED; return NULL; } @@ -179773,7 +179768,7 @@ SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 s } } if (soap_flag_value1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "prodml22:value", &a->prodml22__TransmissibilityReductionFactorOfLinearFront::value, "xsd:string")) + { if (soap_in_std__string(soap, "prodml23:value", &a->prodml23__TransmissibilityReductionFactorOfLinearFront::value, "xsd:string")) { soap_flag_value1--; continue; } @@ -179797,35 +179792,35 @@ SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 s return NULL; } else - { a = (prodml22__TransmissibilityReductionFactorOfLinearFront *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront, sizeof(prodml22__TransmissibilityReductionFactorOfLinearFront), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TransmissibilityReductionFactorOfLinearFront *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront, sizeof(prodml23__TransmissibilityReductionFactorOfLinearFront), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TransmissibilityReductionFactorOfLinearFront *p; - size_t k = sizeof(prodml22__TransmissibilityReductionFactorOfLinearFront); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront, n, gsoap_eml2_3_fdelete); + prodml23__TransmissibilityReductionFactorOfLinearFront *p; + size_t k = sizeof(prodml23__TransmissibilityReductionFactorOfLinearFront); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TransmissibilityReductionFactorOfLinearFront); + { p = SOAP_NEW(soap, prodml23__TransmissibilityReductionFactorOfLinearFront); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TransmissibilityReductionFactorOfLinearFront, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TransmissibilityReductionFactorOfLinearFront, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TransmissibilityReductionFactorOfLinearFront location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TransmissibilityReductionFactorOfLinearFront location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -179835,94 +179830,94 @@ SOAP_FMAC1 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 s return p; } -int prodml22__TransmissibilityReductionFactorOfLinearFront::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TransmissibilityReductionFactorOfLinearFront::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag ? tag : "prodml22:TransmissibilityReductionFactorOfLinearFront", -2, this, type)) + if (soap_out_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag ? tag : "prodml23:TransmissibilityReductionFactorOfLinearFront", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TransmissibilityReductionFactorOfLinearFront::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TransmissibilityReductionFactorOfLinearFront::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, this, tag, type); + return soap_get_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_get_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_get_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, p, type))) + if ((p = soap_in_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TotalThickness::soap_default(struct soap *soap) +void prodml23__TotalThickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__TotalThickness::Abbreviation = "h"; - this->prodml22__TotalThickness::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__TotalThickness::Abbreviation = "h"; + this->prodml23__TotalThickness::Length = NULL; } -void prodml22__TotalThickness::soap_serialize(struct soap *soap) const +void prodml23__TotalThickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__TotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__TotalThickness::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__TotalThickness::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__TotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__TotalThickness::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__TotalThickness::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__TotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TotalThickness(soap, tag, id, this, type); + return soap_out_prodml23__TotalThickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TotalThickness(struct soap *soap, const char *tag, int id, const prodml22__TotalThickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TotalThickness(struct soap *soap, const char *tag, int id, const prodml23__TotalThickness *a, const char *type) { if (!type) - type = "prodml22:TotalThickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:TotalThickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__TotalThickness), type ? type : "prodml22:TotalThickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness), type ? type : "prodml23:TotalThickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__TotalThickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__TotalThickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__TotalThickness::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__TotalThickness::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__TotalThickness::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__TotalThickness::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TotalThickness(soap, tag, this, type); + return soap_in_prodml23__TotalThickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_in_prodml22__TotalThickness(struct soap *soap, const char *tag, prodml22__TotalThickness *a, const char *type) +SOAP_FMAC3 prodml23__TotalThickness * SOAP_FMAC4 soap_in_prodml23__TotalThickness(struct soap *soap, const char *tag, prodml23__TotalThickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness, sizeof(prodml22__TotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness, sizeof(prodml23__TotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TotalThickness *)a->soap_in(soap, tag, type); + return (prodml23__TotalThickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -179933,21 +179928,21 @@ SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_in_prodml22__TotalThicknes for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__TotalThickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__TotalThickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__TotalThickness::Abbreviation.compare("h"))) + if (*soap->href != '#' && (a->prodml23__TotalThickness::Abbreviation.compare("h"))) { soap->error = SOAP_FIXED; return NULL; } @@ -179955,7 +179950,7 @@ SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_in_prodml22__TotalThicknes } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__TotalThickness::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__TotalThickness::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -179969,7 +179964,7 @@ SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_in_prodml22__TotalThicknes } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__TotalThickness::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__TotalThickness::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -179979,35 +179974,35 @@ SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_in_prodml22__TotalThicknes return NULL; } else - { a = (prodml22__TotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness, sizeof(prodml22__TotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness, sizeof(prodml23__TotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__TotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__TotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TotalThickness *p; - size_t k = sizeof(prodml22__TotalThickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness, n, gsoap_eml2_3_fdelete); + prodml23__TotalThickness *p; + size_t k = sizeof(prodml23__TotalThickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TotalThickness); + { p = SOAP_NEW(soap, prodml23__TotalThickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TotalThickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TotalThickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TotalThickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TotalThickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -180017,94 +180012,94 @@ SOAP_FMAC1 prodml22__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__Tota return p; } -int prodml22__TotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TotalThickness(soap, tag ? tag : "prodml22:TotalThickness", -2, this, type)) + if (soap_out_prodml23__TotalThickness(soap, tag ? tag : "prodml23:TotalThickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TotalThickness(soap, this, tag, type); + return soap_get_prodml23__TotalThickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_get_prodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TotalThickness * SOAP_FMAC4 soap_get_prodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TotalThickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__TotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__StorativityRatio::soap_default(struct soap *soap) +void prodml23__StorativityRatio::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__StorativityRatio::Abbreviation = "Omega"; - this->prodml22__StorativityRatio::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__StorativityRatio::Abbreviation = "Omega"; + this->prodml23__StorativityRatio::Value = NULL; } -void prodml22__StorativityRatio::soap_serialize(struct soap *soap) const +void prodml23__StorativityRatio::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__StorativityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__StorativityRatio::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__StorativityRatio::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__StorativityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__StorativityRatio::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__StorativityRatio::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__StorativityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__StorativityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__StorativityRatio(soap, tag, id, this, type); + return soap_out_prodml23__StorativityRatio(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StorativityRatio(struct soap *soap, const char *tag, int id, const prodml22__StorativityRatio *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StorativityRatio(struct soap *soap, const char *tag, int id, const prodml23__StorativityRatio *a, const char *type) { if (!type) - type = "prodml22:StorativityRatio"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:StorativityRatio"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__StorativityRatio), type ? type : "prodml22:StorativityRatio")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio), type ? type : "prodml23:StorativityRatio")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__StorativityRatio::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__StorativityRatio::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__StorativityRatio::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__StorativityRatio::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__StorativityRatio::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__StorativityRatio::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__StorativityRatio::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__StorativityRatio::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__StorativityRatio(soap, tag, this, type); + return soap_in_prodml23__StorativityRatio(soap, tag, this, type); } -SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_in_prodml22__StorativityRatio(struct soap *soap, const char *tag, prodml22__StorativityRatio *a, const char *type) +SOAP_FMAC3 prodml23__StorativityRatio * SOAP_FMAC4 soap_in_prodml23__StorativityRatio(struct soap *soap, const char *tag, prodml23__StorativityRatio *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__StorativityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio, sizeof(prodml22__StorativityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__StorativityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio, sizeof(prodml23__StorativityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__StorativityRatio *)a->soap_in(soap, tag, type); + return (prodml23__StorativityRatio *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -180115,21 +180110,21 @@ SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_in_prodml22__Storativity for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__StorativityRatio::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__StorativityRatio::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__StorativityRatio::Abbreviation.compare("Omega"))) + if (*soap->href != '#' && (a->prodml23__StorativityRatio::Abbreviation.compare("Omega"))) { soap->error = SOAP_FIXED; return NULL; } @@ -180137,7 +180132,7 @@ SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_in_prodml22__Storativity } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__StorativityRatio::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__StorativityRatio::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -180151,7 +180146,7 @@ SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_in_prodml22__Storativity } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__StorativityRatio::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__StorativityRatio::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -180161,35 +180156,35 @@ SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_in_prodml22__Storativity return NULL; } else - { a = (prodml22__StorativityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio, sizeof(prodml22__StorativityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__StorativityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio, sizeof(prodml23__StorativityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__StorativityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml23__StorativityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__StorativityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__StorativityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__StorativityRatio *p; - size_t k = sizeof(prodml22__StorativityRatio); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio, n, gsoap_eml2_3_fdelete); + prodml23__StorativityRatio *p; + size_t k = sizeof(prodml23__StorativityRatio); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__StorativityRatio); + { p = SOAP_NEW(soap, prodml23__StorativityRatio); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__StorativityRatio, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__StorativityRatio, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__StorativityRatio location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__StorativityRatio location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -180199,94 +180194,94 @@ SOAP_FMAC1 prodml22__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__St return p; } -int prodml22__StorativityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__StorativityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__StorativityRatio(soap, tag ? tag : "prodml22:StorativityRatio", -2, this, type)) + if (soap_out_prodml23__StorativityRatio(soap, tag ? tag : "prodml23:StorativityRatio", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__StorativityRatio::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__StorativityRatio::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__StorativityRatio(soap, this, tag, type); + return soap_get_prodml23__StorativityRatio(soap, this, tag, type); } -SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_get_prodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StorativityRatio * SOAP_FMAC4 soap_get_prodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__StorativityRatio(soap, tag, p, type))) + if ((p = soap_in_prodml23__StorativityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SkinRelativeToTotalThickness::soap_default(struct soap *soap) +void prodml23__SkinRelativeToTotalThickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__SkinRelativeToTotalThickness::Abbreviation = "S"; - this->prodml22__SkinRelativeToTotalThickness::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__SkinRelativeToTotalThickness::Abbreviation = "S"; + this->prodml23__SkinRelativeToTotalThickness::Value = NULL; } -void prodml22__SkinRelativeToTotalThickness::soap_serialize(struct soap *soap) const +void prodml23__SkinRelativeToTotalThickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SkinRelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__SkinRelativeToTotalThickness::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__SkinRelativeToTotalThickness::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__SkinRelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__SkinRelativeToTotalThickness::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__SkinRelativeToTotalThickness::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__SkinRelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SkinRelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SkinRelativeToTotalThickness(soap, tag, id, this, type); + return soap_out_prodml23__SkinRelativeToTotalThickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml22__SkinRelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml23__SkinRelativeToTotalThickness *a, const char *type) { if (!type) - type = "prodml22:SkinRelativeToTotalThickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:SkinRelativeToTotalThickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness), type ? type : "prodml22:SkinRelativeToTotalThickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness), type ? type : "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__SkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__SkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__SkinRelativeToTotalThickness::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__SkinRelativeToTotalThickness::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__SkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__SkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SkinRelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SkinRelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SkinRelativeToTotalThickness(soap, tag, this, type); + return soap_in_prodml23__SkinRelativeToTotalThickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__SkinRelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__SkinRelativeToTotalThickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SkinRelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness, sizeof(prodml22__SkinRelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SkinRelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness, sizeof(prodml23__SkinRelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SkinRelativeToTotalThickness *)a->soap_in(soap, tag, type); + return (prodml23__SkinRelativeToTotalThickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -180297,21 +180292,21 @@ SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__SkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__SkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__SkinRelativeToTotalThickness::Abbreviation.compare("S"))) + if (*soap->href != '#' && (a->prodml23__SkinRelativeToTotalThickness::Abbreviation.compare("S"))) { soap->error = SOAP_FIXED; return NULL; } @@ -180319,7 +180314,7 @@ SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22_ } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__SkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__SkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -180333,7 +180328,7 @@ SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22_ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__SkinRelativeToTotalThickness::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__SkinRelativeToTotalThickness::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -180343,35 +180338,35 @@ SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__SkinRelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness, sizeof(prodml22__SkinRelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SkinRelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness, sizeof(prodml23__SkinRelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__SkinRelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__SkinRelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SkinRelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SkinRelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SkinRelativeToTotalThickness *p; - size_t k = sizeof(prodml22__SkinRelativeToTotalThickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness, n, gsoap_eml2_3_fdelete); + prodml23__SkinRelativeToTotalThickness *p; + size_t k = sizeof(prodml23__SkinRelativeToTotalThickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SkinRelativeToTotalThickness); + { p = SOAP_NEW(soap, prodml23__SkinRelativeToTotalThickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SkinRelativeToTotalThickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SkinRelativeToTotalThickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SkinRelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SkinRelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -180381,94 +180376,94 @@ SOAP_FMAC1 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__SkinRelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SkinRelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SkinRelativeToTotalThickness(soap, tag ? tag : "prodml22:SkinRelativeToTotalThickness", -2, this, type)) + if (soap_out_prodml23__SkinRelativeToTotalThickness(soap, tag ? tag : "prodml23:SkinRelativeToTotalThickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SkinRelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SkinRelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SkinRelativeToTotalThickness(soap, this, tag, type); + return soap_get_prodml23__SkinRelativeToTotalThickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SkinRelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__SkinRelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SkinLayer2RelativeToTotalThickness::soap_default(struct soap *soap) +void prodml23__SkinLayer2RelativeToTotalThickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation = "S2"; - this->prodml22__SkinLayer2RelativeToTotalThickness::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation = "S2"; + this->prodml23__SkinLayer2RelativeToTotalThickness::Value = NULL; } -void prodml22__SkinLayer2RelativeToTotalThickness::soap_serialize(struct soap *soap) const +void prodml23__SkinLayer2RelativeToTotalThickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__SkinLayer2RelativeToTotalThickness::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__SkinLayer2RelativeToTotalThickness::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__SkinLayer2RelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SkinLayer2RelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SkinLayer2RelativeToTotalThickness(soap, tag, id, this, type); + return soap_out_prodml23__SkinLayer2RelativeToTotalThickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml22__SkinLayer2RelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml23__SkinLayer2RelativeToTotalThickness *a, const char *type) { if (!type) - type = "prodml22:SkinLayer2RelativeToTotalThickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:SkinLayer2RelativeToTotalThickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness), type ? type : "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness), type ? type : "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__SkinLayer2RelativeToTotalThickness::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__SkinLayer2RelativeToTotalThickness::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__SkinLayer2RelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__SkinLayer2RelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SkinLayer2RelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SkinLayer2RelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SkinLayer2RelativeToTotalThickness(soap, tag, this, type); + return soap_in_prodml23__SkinLayer2RelativeToTotalThickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__SkinLayer2RelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__SkinLayer2RelativeToTotalThickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SkinLayer2RelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness, sizeof(prodml22__SkinLayer2RelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SkinLayer2RelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness, sizeof(prodml23__SkinLayer2RelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SkinLayer2RelativeToTotalThickness *)a->soap_in(soap, tag, type); + return (prodml23__SkinLayer2RelativeToTotalThickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -180479,21 +180474,21 @@ SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation.compare("S2"))) + if (*soap->href != '#' && (a->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation.compare("S2"))) { soap->error = SOAP_FIXED; return NULL; } @@ -180501,7 +180496,7 @@ SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_pro } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__SkinLayer2RelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__SkinLayer2RelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -180515,7 +180510,7 @@ SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__SkinLayer2RelativeToTotalThickness::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__SkinLayer2RelativeToTotalThickness::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -180525,35 +180520,35 @@ SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__SkinLayer2RelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness, sizeof(prodml22__SkinLayer2RelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SkinLayer2RelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness, sizeof(prodml23__SkinLayer2RelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SkinLayer2RelativeToTotalThickness *p; - size_t k = sizeof(prodml22__SkinLayer2RelativeToTotalThickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness, n, gsoap_eml2_3_fdelete); + prodml23__SkinLayer2RelativeToTotalThickness *p; + size_t k = sizeof(prodml23__SkinLayer2RelativeToTotalThickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SkinLayer2RelativeToTotalThickness); + { p = SOAP_NEW(soap, prodml23__SkinLayer2RelativeToTotalThickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SkinLayer2RelativeToTotalThickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SkinLayer2RelativeToTotalThickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SkinLayer2RelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SkinLayer2RelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -180563,94 +180558,94 @@ SOAP_FMAC1 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instan return p; } -int prodml22__SkinLayer2RelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SkinLayer2RelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SkinLayer2RelativeToTotalThickness(soap, tag ? tag : "prodml22:SkinLayer2RelativeToTotalThickness", -2, this, type)) + if (soap_out_prodml23__SkinLayer2RelativeToTotalThickness(soap, tag ? tag : "prodml23:SkinLayer2RelativeToTotalThickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SkinLayer2RelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SkinLayer2RelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SkinLayer2RelativeToTotalThickness(soap, this, tag, type); + return soap_get_prodml23__SkinLayer2RelativeToTotalThickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SkinLayer2RelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__SkinLayer2RelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Region2Thickness::soap_default(struct soap *soap) +void prodml23__Region2Thickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__Region2Thickness::Abbreviation = "h region 2"; - this->prodml22__Region2Thickness::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__Region2Thickness::Abbreviation = "h region 2"; + this->prodml23__Region2Thickness::Length = NULL; } -void prodml22__Region2Thickness::soap_serialize(struct soap *soap) const +void prodml23__Region2Thickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__Region2Thickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__Region2Thickness::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__Region2Thickness::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__Region2Thickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__Region2Thickness::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__Region2Thickness::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__Region2Thickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Region2Thickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Region2Thickness(soap, tag, id, this, type); + return soap_out_prodml23__Region2Thickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Region2Thickness(struct soap *soap, const char *tag, int id, const prodml22__Region2Thickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Region2Thickness(struct soap *soap, const char *tag, int id, const prodml23__Region2Thickness *a, const char *type) { if (!type) - type = "prodml22:Region2Thickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:Region2Thickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__Region2Thickness), type ? type : "prodml22:Region2Thickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness), type ? type : "prodml23:Region2Thickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__Region2Thickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__Region2Thickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__Region2Thickness::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__Region2Thickness::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__Region2Thickness::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__Region2Thickness::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Region2Thickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Region2Thickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Region2Thickness(soap, tag, this, type); + return soap_in_prodml23__Region2Thickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_in_prodml22__Region2Thickness(struct soap *soap, const char *tag, prodml22__Region2Thickness *a, const char *type) +SOAP_FMAC3 prodml23__Region2Thickness * SOAP_FMAC4 soap_in_prodml23__Region2Thickness(struct soap *soap, const char *tag, prodml23__Region2Thickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Region2Thickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness, sizeof(prodml22__Region2Thickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Region2Thickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness, sizeof(prodml23__Region2Thickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Region2Thickness *)a->soap_in(soap, tag, type); + return (prodml23__Region2Thickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -180661,21 +180656,21 @@ SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_in_prodml22__Region2Thic for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__Region2Thickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__Region2Thickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__Region2Thickness::Abbreviation.compare("h region 2"))) + if (*soap->href != '#' && (a->prodml23__Region2Thickness::Abbreviation.compare("h region 2"))) { soap->error = SOAP_FIXED; return NULL; } @@ -180683,7 +180678,7 @@ SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_in_prodml22__Region2Thic } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__Region2Thickness::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__Region2Thickness::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -180697,7 +180692,7 @@ SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_in_prodml22__Region2Thic } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__Region2Thickness::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__Region2Thickness::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -180707,35 +180702,35 @@ SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_in_prodml22__Region2Thic return NULL; } else - { a = (prodml22__Region2Thickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness, sizeof(prodml22__Region2Thickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Region2Thickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness, sizeof(prodml23__Region2Thickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Region2Thickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml23__Region2Thickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Region2Thickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Region2Thickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Region2Thickness *p; - size_t k = sizeof(prodml22__Region2Thickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness, n, gsoap_eml2_3_fdelete); + prodml23__Region2Thickness *p; + size_t k = sizeof(prodml23__Region2Thickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Region2Thickness); + { p = SOAP_NEW(soap, prodml23__Region2Thickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Region2Thickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Region2Thickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Region2Thickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Region2Thickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -180745,94 +180740,94 @@ SOAP_FMAC1 prodml22__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Re return p; } -int prodml22__Region2Thickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Region2Thickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Region2Thickness(soap, tag ? tag : "prodml22:Region2Thickness", -2, this, type)) + if (soap_out_prodml23__Region2Thickness(soap, tag ? tag : "prodml23:Region2Thickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Region2Thickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Region2Thickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Region2Thickness(soap, this, tag, type); + return soap_get_prodml23__Region2Thickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_get_prodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Region2Thickness * SOAP_FMAC4 soap_get_prodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Region2Thickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__Region2Thickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_default(struct soap *soap) +void prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation = "Kappa"; - this->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation = "Kappa"; + this->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value = NULL; } -void prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_serialize(struct soap *soap) const +void prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, id, this, type); + return soap_out_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, const prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, const prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *a, const char *type) { if (!type) - type = "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct), type ? type : "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct), type ? type : "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, this, type); + return soap_in_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *a, const char *type) +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, sizeof(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, sizeof(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *)a->soap_in(soap, tag, type); + return (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -180843,21 +180838,21 @@ SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation.compare("Kappa"))) + if (*soap->href != '#' && (a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation.compare("Kappa"))) { soap->error = SOAP_FIXED; return NULL; } @@ -180865,7 +180860,7 @@ SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -180879,7 +180874,7 @@ SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -180889,35 +180884,35 @@ SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 return NULL; } else - { a = (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, sizeof(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, sizeof(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *p; - size_t k = sizeof(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, n, gsoap_eml2_3_fdelete); + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *p; + size_t k = sizeof(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct); + { p = SOAP_NEW(soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -180927,94 +180922,94 @@ SOAP_FMAC1 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 return p; } -int prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag ? tag : "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", -2, this, type)) + if (soap_out_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag ? tag : "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, this, tag, type); + return soap_get_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, p, type))) + if ((p = soap_in_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RatioInitialToFinalWellboreStorage::soap_default(struct soap *soap) +void prodml23__RatioInitialToFinalWellboreStorage::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation = "Ci/Cs"; - this->prodml22__RatioInitialToFinalWellboreStorage::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation = "Ci/Cs"; + this->prodml23__RatioInitialToFinalWellboreStorage::Value = NULL; } -void prodml22__RatioInitialToFinalWellboreStorage::soap_serialize(struct soap *soap) const +void prodml23__RatioInitialToFinalWellboreStorage::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__RatioInitialToFinalWellboreStorage::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__RatioInitialToFinalWellboreStorage::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__RatioInitialToFinalWellboreStorage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RatioInitialToFinalWellboreStorage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RatioInitialToFinalWellboreStorage(soap, tag, id, this, type); + return soap_out_prodml23__RatioInitialToFinalWellboreStorage(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, int id, const prodml22__RatioInitialToFinalWellboreStorage *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, int id, const prodml23__RatioInitialToFinalWellboreStorage *a, const char *type) { if (!type) - type = "prodml22:RatioInitialToFinalWellboreStorage"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:RatioInitialToFinalWellboreStorage"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage), type ? type : "prodml22:RatioInitialToFinalWellboreStorage")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage), type ? type : "prodml23:RatioInitialToFinalWellboreStorage")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__RatioInitialToFinalWellboreStorage::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__RatioInitialToFinalWellboreStorage::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__RatioInitialToFinalWellboreStorage::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__RatioInitialToFinalWellboreStorage::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RatioInitialToFinalWellboreStorage::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RatioInitialToFinalWellboreStorage::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RatioInitialToFinalWellboreStorage(soap, tag, this, type); + return soap_in_prodml23__RatioInitialToFinalWellboreStorage(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, prodml22__RatioInitialToFinalWellboreStorage *a, const char *type) +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, prodml23__RatioInitialToFinalWellboreStorage *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RatioInitialToFinalWellboreStorage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage, sizeof(prodml22__RatioInitialToFinalWellboreStorage), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RatioInitialToFinalWellboreStorage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage, sizeof(prodml23__RatioInitialToFinalWellboreStorage), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RatioInitialToFinalWellboreStorage *)a->soap_in(soap, tag, type); + return (prodml23__RatioInitialToFinalWellboreStorage *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -181025,21 +181020,21 @@ SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation.compare("Ci/Cs"))) + if (*soap->href != '#' && (a->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation.compare("Ci/Cs"))) { soap->error = SOAP_FIXED; return NULL; } @@ -181047,7 +181042,7 @@ SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_pro } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__RatioInitialToFinalWellboreStorage::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__RatioInitialToFinalWellboreStorage::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -181061,7 +181056,7 @@ SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__RatioInitialToFinalWellboreStorage::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__RatioInitialToFinalWellboreStorage::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -181071,35 +181066,35 @@ SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__RatioInitialToFinalWellboreStorage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage, sizeof(prodml22__RatioInitialToFinalWellboreStorage), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RatioInitialToFinalWellboreStorage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage, sizeof(prodml23__RatioInitialToFinalWellboreStorage), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RatioInitialToFinalWellboreStorage *p; - size_t k = sizeof(prodml22__RatioInitialToFinalWellboreStorage); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage, n, gsoap_eml2_3_fdelete); + prodml23__RatioInitialToFinalWellboreStorage *p; + size_t k = sizeof(prodml23__RatioInitialToFinalWellboreStorage); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RatioInitialToFinalWellboreStorage); + { p = SOAP_NEW(soap, prodml23__RatioInitialToFinalWellboreStorage); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RatioInitialToFinalWellboreStorage, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RatioInitialToFinalWellboreStorage, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RatioInitialToFinalWellboreStorage location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RatioInitialToFinalWellboreStorage location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -181109,94 +181104,94 @@ SOAP_FMAC1 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instan return p; } -int prodml22__RatioInitialToFinalWellboreStorage::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RatioInitialToFinalWellboreStorage::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RatioInitialToFinalWellboreStorage(soap, tag ? tag : "prodml22:RatioInitialToFinalWellboreStorage", -2, this, type)) + if (soap_out_prodml23__RatioInitialToFinalWellboreStorage(soap, tag ? tag : "prodml23:RatioInitialToFinalWellboreStorage", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RatioInitialToFinalWellboreStorage::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RatioInitialToFinalWellboreStorage::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RatioInitialToFinalWellboreStorage(soap, this, tag, type); + return soap_get_prodml23__RatioInitialToFinalWellboreStorage(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_get_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_get_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RatioInitialToFinalWellboreStorage(soap, tag, p, type))) + if ((p = soap_in_prodml23__RatioInitialToFinalWellboreStorage(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RatioDpSkinToTotalDrawdown::soap_default(struct soap *soap) +void prodml23__RatioDpSkinToTotalDrawdown::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation = "Ratio dP Skin To Total"; - this->prodml22__RatioDpSkinToTotalDrawdown::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation = "Ratio dP Skin To Total"; + this->prodml23__RatioDpSkinToTotalDrawdown::Value = NULL; } -void prodml22__RatioDpSkinToTotalDrawdown::soap_serialize(struct soap *soap) const +void prodml23__RatioDpSkinToTotalDrawdown::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__RatioDpSkinToTotalDrawdown::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__RatioDpSkinToTotalDrawdown::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__RatioDpSkinToTotalDrawdown::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RatioDpSkinToTotalDrawdown::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RatioDpSkinToTotalDrawdown(soap, tag, id, this, type); + return soap_out_prodml23__RatioDpSkinToTotalDrawdown(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, int id, const prodml22__RatioDpSkinToTotalDrawdown *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, int id, const prodml23__RatioDpSkinToTotalDrawdown *a, const char *type) { if (!type) - type = "prodml22:RatioDpSkinToTotalDrawdown"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:RatioDpSkinToTotalDrawdown"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown), type ? type : "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown), type ? type : "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__RatioDpSkinToTotalDrawdown::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__RatioDpSkinToTotalDrawdown::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__RatioDpSkinToTotalDrawdown::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__RatioDpSkinToTotalDrawdown::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RatioDpSkinToTotalDrawdown::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RatioDpSkinToTotalDrawdown::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RatioDpSkinToTotalDrawdown(soap, tag, this, type); + return soap_in_prodml23__RatioDpSkinToTotalDrawdown(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, prodml22__RatioDpSkinToTotalDrawdown *a, const char *type) +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, prodml23__RatioDpSkinToTotalDrawdown *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RatioDpSkinToTotalDrawdown*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown, sizeof(prodml22__RatioDpSkinToTotalDrawdown), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RatioDpSkinToTotalDrawdown*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown, sizeof(prodml23__RatioDpSkinToTotalDrawdown), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RatioDpSkinToTotalDrawdown *)a->soap_in(soap, tag, type); + return (prodml23__RatioDpSkinToTotalDrawdown *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -181207,21 +181202,21 @@ SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml22__R for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation.compare("Ratio dP Skin To Total"))) + if (*soap->href != '#' && (a->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation.compare("Ratio dP Skin To Total"))) { soap->error = SOAP_FIXED; return NULL; } @@ -181229,7 +181224,7 @@ SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml22__R } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__RatioDpSkinToTotalDrawdown::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__RatioDpSkinToTotalDrawdown::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -181243,7 +181238,7 @@ SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml22__R } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__RatioDpSkinToTotalDrawdown::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__RatioDpSkinToTotalDrawdown::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -181253,35 +181248,35 @@ SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml22__R return NULL; } else - { a = (prodml22__RatioDpSkinToTotalDrawdown *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown, sizeof(prodml22__RatioDpSkinToTotalDrawdown), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RatioDpSkinToTotalDrawdown *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown, sizeof(prodml23__RatioDpSkinToTotalDrawdown), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RatioDpSkinToTotalDrawdown *p; - size_t k = sizeof(prodml22__RatioDpSkinToTotalDrawdown); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown, n, gsoap_eml2_3_fdelete); + prodml23__RatioDpSkinToTotalDrawdown *p; + size_t k = sizeof(prodml23__RatioDpSkinToTotalDrawdown); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RatioDpSkinToTotalDrawdown); + { p = SOAP_NEW(soap, prodml23__RatioDpSkinToTotalDrawdown); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RatioDpSkinToTotalDrawdown, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RatioDpSkinToTotalDrawdown, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RatioDpSkinToTotalDrawdown location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RatioDpSkinToTotalDrawdown location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -181291,94 +181286,94 @@ SOAP_FMAC1 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__RatioDpSkinToTotalDrawdown::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RatioDpSkinToTotalDrawdown::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RatioDpSkinToTotalDrawdown(soap, tag ? tag : "prodml22:RatioDpSkinToTotalDrawdown", -2, this, type)) + if (soap_out_prodml23__RatioDpSkinToTotalDrawdown(soap, tag ? tag : "prodml23:RatioDpSkinToTotalDrawdown", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RatioDpSkinToTotalDrawdown::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RatioDpSkinToTotalDrawdown::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RatioDpSkinToTotalDrawdown(soap, this, tag, type); + return soap_get_prodml23__RatioDpSkinToTotalDrawdown(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_get_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_get_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RatioDpSkinToTotalDrawdown(soap, tag, p, type))) + if ((p = soap_in_prodml23__RatioDpSkinToTotalDrawdown(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RateDependentSkinFactor::soap_default(struct soap *soap) +void prodml23__RateDependentSkinFactor::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__RateDependentSkinFactor::Abbreviation = "D"; - this->prodml22__RateDependentSkinFactor::InverseFlowrate = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__RateDependentSkinFactor::Abbreviation = "D"; + this->prodml23__RateDependentSkinFactor::InverseFlowrate = NULL; } -void prodml22__RateDependentSkinFactor::soap_serialize(struct soap *soap) const +void prodml23__RateDependentSkinFactor::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__RateDependentSkinFactor::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__RateDependentSkinFactor::Abbreviation); - soap_serialize_PointerToeml23__TimePerVolumeMeasureExt(soap, &this->prodml22__RateDependentSkinFactor::InverseFlowrate); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__RateDependentSkinFactor::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__RateDependentSkinFactor::Abbreviation); + soap_serialize_PointerToeml23__TimePerVolumeMeasureExt(soap, &this->prodml23__RateDependentSkinFactor::InverseFlowrate); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__RateDependentSkinFactor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RateDependentSkinFactor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RateDependentSkinFactor(soap, tag, id, this, type); + return soap_out_prodml23__RateDependentSkinFactor(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RateDependentSkinFactor(struct soap *soap, const char *tag, int id, const prodml22__RateDependentSkinFactor *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RateDependentSkinFactor(struct soap *soap, const char *tag, int id, const prodml23__RateDependentSkinFactor *a, const char *type) { if (!type) - type = "prodml22:RateDependentSkinFactor"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:RateDependentSkinFactor"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__RateDependentSkinFactor), type ? type : "prodml22:RateDependentSkinFactor")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor), type ? type : "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__RateDependentSkinFactor::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__RateDependentSkinFactor::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__RateDependentSkinFactor::InverseFlowrate) - { if (soap_element_empty(soap, "prodml22:InverseFlowrate", 0, NULL)) + if (!a->prodml23__RateDependentSkinFactor::InverseFlowrate) + { if (soap_element_empty(soap, "prodml23:InverseFlowrate", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__TimePerVolumeMeasureExt(soap, "prodml22:InverseFlowrate", -1, &a->prodml22__RateDependentSkinFactor::InverseFlowrate, "eml23:TimePerVolumeMeasureExt")) + else if (soap_out_PointerToeml23__TimePerVolumeMeasureExt(soap, "prodml23:InverseFlowrate", -1, &a->prodml23__RateDependentSkinFactor::InverseFlowrate, "eml23:TimePerVolumeMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RateDependentSkinFactor::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RateDependentSkinFactor::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RateDependentSkinFactor(soap, tag, this, type); + return soap_in_prodml23__RateDependentSkinFactor(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml22__RateDependentSkinFactor(struct soap *soap, const char *tag, prodml22__RateDependentSkinFactor *a, const char *type) +SOAP_FMAC3 prodml23__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml23__RateDependentSkinFactor(struct soap *soap, const char *tag, prodml23__RateDependentSkinFactor *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RateDependentSkinFactor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor, sizeof(prodml22__RateDependentSkinFactor), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RateDependentSkinFactor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor, sizeof(prodml23__RateDependentSkinFactor), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RateDependentSkinFactor *)a->soap_in(soap, tag, type); + return (prodml23__RateDependentSkinFactor *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -181389,21 +181384,21 @@ SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml22__Rate for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__RateDependentSkinFactor::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__RateDependentSkinFactor::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__RateDependentSkinFactor::Abbreviation.compare("D"))) + if (*soap->href != '#' && (a->prodml23__RateDependentSkinFactor::Abbreviation.compare("D"))) { soap->error = SOAP_FIXED; return NULL; } @@ -181411,7 +181406,7 @@ SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml22__Rate } } if (soap_flag_InverseFlowrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimePerVolumeMeasureExt(soap, "prodml22:InverseFlowrate", &a->prodml22__RateDependentSkinFactor::InverseFlowrate, "eml23:TimePerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__TimePerVolumeMeasureExt(soap, "prodml23:InverseFlowrate", &a->prodml23__RateDependentSkinFactor::InverseFlowrate, "eml23:TimePerVolumeMeasureExt")) { soap_flag_InverseFlowrate1--; continue; } @@ -181425,7 +181420,7 @@ SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml22__Rate } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__RateDependentSkinFactor::InverseFlowrate)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__RateDependentSkinFactor::InverseFlowrate)) { soap->error = SOAP_OCCURS; return NULL; } @@ -181435,35 +181430,35 @@ SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml22__Rate return NULL; } else - { a = (prodml22__RateDependentSkinFactor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor, sizeof(prodml22__RateDependentSkinFactor), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RateDependentSkinFactor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor, sizeof(prodml23__RateDependentSkinFactor), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodml22__RateDependentSkinFactor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodml23__RateDependentSkinFactor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RateDependentSkinFactor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RateDependentSkinFactor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RateDependentSkinFactor *p; - size_t k = sizeof(prodml22__RateDependentSkinFactor); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor, n, gsoap_eml2_3_fdelete); + prodml23__RateDependentSkinFactor *p; + size_t k = sizeof(prodml23__RateDependentSkinFactor); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RateDependentSkinFactor); + { p = SOAP_NEW(soap, prodml23__RateDependentSkinFactor); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RateDependentSkinFactor, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RateDependentSkinFactor, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RateDependentSkinFactor location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RateDependentSkinFactor location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -181473,94 +181468,94 @@ SOAP_FMAC1 prodml22__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__RateDependentSkinFactor::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RateDependentSkinFactor::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RateDependentSkinFactor(soap, tag ? tag : "prodml22:RateDependentSkinFactor", -2, this, type)) + if (soap_out_prodml23__RateDependentSkinFactor(soap, tag ? tag : "prodml23:RateDependentSkinFactor", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RateDependentSkinFactor::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RateDependentSkinFactor::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RateDependentSkinFactor(soap, this, tag, type); + return soap_get_prodml23__RateDependentSkinFactor(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_get_prodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RateDependentSkinFactor * SOAP_FMAC4 soap_get_prodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RateDependentSkinFactor(soap, tag, p, type))) + if ((p = soap_in_prodml23__RateDependentSkinFactor(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RadiusOfInvestigation::soap_default(struct soap *soap) +void prodml23__RadiusOfInvestigation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__RadiusOfInvestigation::Abbreviation = "Ri"; - this->prodml22__RadiusOfInvestigation::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__RadiusOfInvestigation::Abbreviation = "Ri"; + this->prodml23__RadiusOfInvestigation::Length = NULL; } -void prodml22__RadiusOfInvestigation::soap_serialize(struct soap *soap) const +void prodml23__RadiusOfInvestigation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__RadiusOfInvestigation::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__RadiusOfInvestigation::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__RadiusOfInvestigation::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__RadiusOfInvestigation::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__RadiusOfInvestigation::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__RadiusOfInvestigation::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__RadiusOfInvestigation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RadiusOfInvestigation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RadiusOfInvestigation(soap, tag, id, this, type); + return soap_out_prodml23__RadiusOfInvestigation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RadiusOfInvestigation(struct soap *soap, const char *tag, int id, const prodml22__RadiusOfInvestigation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RadiusOfInvestigation(struct soap *soap, const char *tag, int id, const prodml23__RadiusOfInvestigation *a, const char *type) { if (!type) - type = "prodml22:RadiusOfInvestigation"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:RadiusOfInvestigation"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__RadiusOfInvestigation), type ? type : "prodml22:RadiusOfInvestigation")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation), type ? type : "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__RadiusOfInvestigation::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__RadiusOfInvestigation::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__RadiusOfInvestigation::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__RadiusOfInvestigation::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__RadiusOfInvestigation::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__RadiusOfInvestigation::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RadiusOfInvestigation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RadiusOfInvestigation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RadiusOfInvestigation(soap, tag, this, type); + return soap_in_prodml23__RadiusOfInvestigation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml22__RadiusOfInvestigation(struct soap *soap, const char *tag, prodml22__RadiusOfInvestigation *a, const char *type) +SOAP_FMAC3 prodml23__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml23__RadiusOfInvestigation(struct soap *soap, const char *tag, prodml23__RadiusOfInvestigation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RadiusOfInvestigation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation, sizeof(prodml22__RadiusOfInvestigation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RadiusOfInvestigation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation, sizeof(prodml23__RadiusOfInvestigation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RadiusOfInvestigation *)a->soap_in(soap, tag, type); + return (prodml23__RadiusOfInvestigation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -181571,21 +181566,21 @@ SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Radius for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__RadiusOfInvestigation::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__RadiusOfInvestigation::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__RadiusOfInvestigation::Abbreviation.compare("Ri"))) + if (*soap->href != '#' && (a->prodml23__RadiusOfInvestigation::Abbreviation.compare("Ri"))) { soap->error = SOAP_FIXED; return NULL; } @@ -181593,7 +181588,7 @@ SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Radius } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__RadiusOfInvestigation::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__RadiusOfInvestigation::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -181607,7 +181602,7 @@ SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Radius } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__RadiusOfInvestigation::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__RadiusOfInvestigation::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -181617,35 +181612,35 @@ SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Radius return NULL; } else - { a = (prodml22__RadiusOfInvestigation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation, sizeof(prodml22__RadiusOfInvestigation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RadiusOfInvestigation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation, sizeof(prodml23__RadiusOfInvestigation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml22__RadiusOfInvestigation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml23__RadiusOfInvestigation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RadiusOfInvestigation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RadiusOfInvestigation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RadiusOfInvestigation *p; - size_t k = sizeof(prodml22__RadiusOfInvestigation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation, n, gsoap_eml2_3_fdelete); + prodml23__RadiusOfInvestigation *p; + size_t k = sizeof(prodml23__RadiusOfInvestigation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RadiusOfInvestigation); + { p = SOAP_NEW(soap, prodml23__RadiusOfInvestigation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RadiusOfInvestigation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RadiusOfInvestigation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RadiusOfInvestigation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RadiusOfInvestigation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -181655,94 +181650,94 @@ SOAP_FMAC1 prodml22__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__RadiusOfInvestigation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RadiusOfInvestigation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RadiusOfInvestigation(soap, tag ? tag : "prodml22:RadiusOfInvestigation", -2, this, type)) + if (soap_out_prodml23__RadiusOfInvestigation(soap, tag ? tag : "prodml23:RadiusOfInvestigation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RadiusOfInvestigation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RadiusOfInvestigation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RadiusOfInvestigation(soap, this, tag, type); + return soap_get_prodml23__RadiusOfInvestigation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_get_prodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RadiusOfInvestigation * SOAP_FMAC4 soap_get_prodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RadiusOfInvestigation(soap, tag, p, type))) + if ((p = soap_in_prodml23__RadiusOfInvestigation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PressureDatumTVD::soap_default(struct soap *soap) +void prodml23__PressureDatumTVD::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__PressureDatumTVD::Abbreviation = "datum"; - this->prodml22__PressureDatumTVD::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__PressureDatumTVD::Abbreviation = "datum"; + this->prodml23__PressureDatumTVD::Length = NULL; } -void prodml22__PressureDatumTVD::soap_serialize(struct soap *soap) const +void prodml23__PressureDatumTVD::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PressureDatumTVD::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__PressureDatumTVD::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__PressureDatumTVD::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__PressureDatumTVD::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__PressureDatumTVD::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__PressureDatumTVD::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__PressureDatumTVD::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PressureDatumTVD::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PressureDatumTVD(soap, tag, id, this, type); + return soap_out_prodml23__PressureDatumTVD(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureDatumTVD(struct soap *soap, const char *tag, int id, const prodml22__PressureDatumTVD *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PressureDatumTVD(struct soap *soap, const char *tag, int id, const prodml23__PressureDatumTVD *a, const char *type) { if (!type) - type = "prodml22:PressureDatumTVD"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:PressureDatumTVD"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__PressureDatumTVD), type ? type : "prodml22:PressureDatumTVD")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD), type ? type : "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__PressureDatumTVD::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__PressureDatumTVD::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__PressureDatumTVD::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__PressureDatumTVD::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__PressureDatumTVD::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__PressureDatumTVD::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PressureDatumTVD::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PressureDatumTVD::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PressureDatumTVD(soap, tag, this, type); + return soap_in_prodml23__PressureDatumTVD(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml22__PressureDatumTVD(struct soap *soap, const char *tag, prodml22__PressureDatumTVD *a, const char *type) +SOAP_FMAC3 prodml23__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml23__PressureDatumTVD(struct soap *soap, const char *tag, prodml23__PressureDatumTVD *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PressureDatumTVD*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD, sizeof(prodml22__PressureDatumTVD), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PressureDatumTVD*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD, sizeof(prodml23__PressureDatumTVD), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PressureDatumTVD *)a->soap_in(soap, tag, type); + return (prodml23__PressureDatumTVD *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -181753,21 +181748,21 @@ SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml22__PressureDat for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__PressureDatumTVD::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__PressureDatumTVD::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__PressureDatumTVD::Abbreviation.compare("datum"))) + if (*soap->href != '#' && (a->prodml23__PressureDatumTVD::Abbreviation.compare("datum"))) { soap->error = SOAP_FIXED; return NULL; } @@ -181775,7 +181770,7 @@ SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml22__PressureDat } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__PressureDatumTVD::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__PressureDatumTVD::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -181789,7 +181784,7 @@ SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml22__PressureDat } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__PressureDatumTVD::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__PressureDatumTVD::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -181799,35 +181794,35 @@ SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml22__PressureDat return NULL; } else - { a = (prodml22__PressureDatumTVD *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD, sizeof(prodml22__PressureDatumTVD), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PressureDatumTVD *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD, sizeof(prodml23__PressureDatumTVD), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml22__PressureDatumTVD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml23__PressureDatumTVD(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PressureDatumTVD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PressureDatumTVD(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PressureDatumTVD *p; - size_t k = sizeof(prodml22__PressureDatumTVD); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD, n, gsoap_eml2_3_fdelete); + prodml23__PressureDatumTVD *p; + size_t k = sizeof(prodml23__PressureDatumTVD); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PressureDatumTVD); + { p = SOAP_NEW(soap, prodml23__PressureDatumTVD); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PressureDatumTVD, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PressureDatumTVD, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PressureDatumTVD location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PressureDatumTVD location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -181837,94 +181832,94 @@ SOAP_FMAC1 prodml22__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml22__Pr return p; } -int prodml22__PressureDatumTVD::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PressureDatumTVD::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PressureDatumTVD(soap, tag ? tag : "prodml22:PressureDatumTVD", -2, this, type)) + if (soap_out_prodml23__PressureDatumTVD(soap, tag ? tag : "prodml23:PressureDatumTVD", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PressureDatumTVD::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PressureDatumTVD::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PressureDatumTVD(soap, this, tag, type); + return soap_get_prodml23__PressureDatumTVD(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_get_prodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PressureDatumTVD * SOAP_FMAC4 soap_get_prodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PressureDatumTVD(soap, tag, p, type))) + if ((p = soap_in_prodml23__PressureDatumTVD(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Porosity::soap_default(struct soap *soap) +void prodml23__Porosity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__Porosity::Abbreviation = "Phi"; - this->prodml22__Porosity::VolumePerVolume = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__Porosity::Abbreviation = "Phi"; + this->prodml23__Porosity::VolumePerVolume = NULL; } -void prodml22__Porosity::soap_serialize(struct soap *soap) const +void prodml23__Porosity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__Porosity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__Porosity::Abbreviation); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__Porosity::VolumePerVolume); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__Porosity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__Porosity::Abbreviation); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__Porosity::VolumePerVolume); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__Porosity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Porosity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Porosity(soap, tag, id, this, type); + return soap_out_prodml23__Porosity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Porosity(struct soap *soap, const char *tag, int id, const prodml22__Porosity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Porosity(struct soap *soap, const char *tag, int id, const prodml23__Porosity *a, const char *type) { if (!type) - type = "prodml22:Porosity"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:Porosity"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__Porosity), type ? type : "prodml22:Porosity")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity), type ? type : "prodml23:Porosity")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__Porosity::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__Porosity::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__Porosity::VolumePerVolume) - { if (soap_element_empty(soap, "prodml22:VolumePerVolume", 0, NULL)) + if (!a->prodml23__Porosity::VolumePerVolume) + { if (soap_element_empty(soap, "prodml23:VolumePerVolume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumePerVolume", -1, &a->prodml22__Porosity::VolumePerVolume, "eml23:VolumePerVolumeMeasure")) + else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumePerVolume", -1, &a->prodml23__Porosity::VolumePerVolume, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Porosity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Porosity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Porosity(soap, tag, this, type); + return soap_in_prodml23__Porosity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_in_prodml22__Porosity(struct soap *soap, const char *tag, prodml22__Porosity *a, const char *type) +SOAP_FMAC3 prodml23__Porosity * SOAP_FMAC4 soap_in_prodml23__Porosity(struct soap *soap, const char *tag, prodml23__Porosity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Porosity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity, sizeof(prodml22__Porosity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Porosity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity, sizeof(prodml23__Porosity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Porosity *)a->soap_in(soap, tag, type); + return (prodml23__Porosity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -181935,21 +181930,21 @@ SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_in_prodml22__Porosity(struct soa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__Porosity::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__Porosity::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__Porosity::Abbreviation.compare("Phi"))) + if (*soap->href != '#' && (a->prodml23__Porosity::Abbreviation.compare("Phi"))) { soap->error = SOAP_FIXED; return NULL; } @@ -181957,7 +181952,7 @@ SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_in_prodml22__Porosity(struct soa } } if (soap_flag_VolumePerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumePerVolume", &a->prodml22__Porosity::VolumePerVolume, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumePerVolume", &a->prodml23__Porosity::VolumePerVolume, "eml23:VolumePerVolumeMeasure")) { soap_flag_VolumePerVolume1--; continue; } @@ -181971,7 +181966,7 @@ SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_in_prodml22__Porosity(struct soa } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__Porosity::VolumePerVolume)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__Porosity::VolumePerVolume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -181981,35 +181976,35 @@ SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_in_prodml22__Porosity(struct soa return NULL; } else - { a = (prodml22__Porosity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity, sizeof(prodml22__Porosity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Porosity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity, sizeof(prodml23__Porosity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Porosity * SOAP_FMAC2 soap_instantiate_prodml22__Porosity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Porosity * SOAP_FMAC2 soap_instantiate_prodml23__Porosity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Porosity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Porosity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Porosity *p; - size_t k = sizeof(prodml22__Porosity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity, n, gsoap_eml2_3_fdelete); + prodml23__Porosity *p; + size_t k = sizeof(prodml23__Porosity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Porosity); + { p = SOAP_NEW(soap, prodml23__Porosity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Porosity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Porosity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Porosity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Porosity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -182019,94 +182014,94 @@ SOAP_FMAC1 prodml22__Porosity * SOAP_FMAC2 soap_instantiate_prodml22__Porosity(s return p; } -int prodml22__Porosity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Porosity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Porosity(soap, tag ? tag : "prodml22:Porosity", -2, this, type)) + if (soap_out_prodml23__Porosity(soap, tag ? tag : "prodml23:Porosity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Porosity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Porosity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Porosity(soap, this, tag, type); + return soap_get_prodml23__Porosity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_get_prodml22__Porosity(struct soap *soap, prodml22__Porosity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Porosity * SOAP_FMAC4 soap_get_prodml23__Porosity(struct soap *soap, prodml23__Porosity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Porosity(soap, tag, p, type))) + if ((p = soap_in_prodml23__Porosity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PoreVolumeOfInvestigation::soap_default(struct soap *soap) +void prodml23__PoreVolumeOfInvestigation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__PoreVolumeOfInvestigation::Abbreviation = "PVinv"; - this->prodml22__PoreVolumeOfInvestigation::Volume = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__PoreVolumeOfInvestigation::Abbreviation = "PVinv"; + this->prodml23__PoreVolumeOfInvestigation::Volume = NULL; } -void prodml22__PoreVolumeOfInvestigation::soap_serialize(struct soap *soap) const +void prodml23__PoreVolumeOfInvestigation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PoreVolumeOfInvestigation::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__PoreVolumeOfInvestigation::Abbreviation); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__PoreVolumeOfInvestigation::Volume); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__PoreVolumeOfInvestigation::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__PoreVolumeOfInvestigation::Abbreviation); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__PoreVolumeOfInvestigation::Volume); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__PoreVolumeOfInvestigation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PoreVolumeOfInvestigation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PoreVolumeOfInvestigation(soap, tag, id, this, type); + return soap_out_prodml23__PoreVolumeOfInvestigation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, int id, const prodml22__PoreVolumeOfInvestigation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, int id, const prodml23__PoreVolumeOfInvestigation *a, const char *type) { if (!type) - type = "prodml22:PoreVolumeOfInvestigation"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:PoreVolumeOfInvestigation"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation), type ? type : "prodml22:PoreVolumeOfInvestigation")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation), type ? type : "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__PoreVolumeOfInvestigation::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__PoreVolumeOfInvestigation::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__PoreVolumeOfInvestigation::Volume) - { if (soap_element_empty(soap, "prodml22:Volume", 0, NULL)) + if (!a->prodml23__PoreVolumeOfInvestigation::Volume) + { if (soap_element_empty(soap, "prodml23:Volume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:Volume", -1, &a->prodml22__PoreVolumeOfInvestigation::Volume, "eml23:VolumeMeasure")) + else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:Volume", -1, &a->prodml23__PoreVolumeOfInvestigation::Volume, "eml23:VolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PoreVolumeOfInvestigation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PoreVolumeOfInvestigation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PoreVolumeOfInvestigation(soap, tag, this, type); + return soap_in_prodml23__PoreVolumeOfInvestigation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, prodml22__PoreVolumeOfInvestigation *a, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, prodml23__PoreVolumeOfInvestigation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PoreVolumeOfInvestigation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation, sizeof(prodml22__PoreVolumeOfInvestigation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PoreVolumeOfInvestigation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation, sizeof(prodml23__PoreVolumeOfInvestigation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PoreVolumeOfInvestigation *)a->soap_in(soap, tag, type); + return (prodml23__PoreVolumeOfInvestigation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -182117,21 +182112,21 @@ SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Po for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__PoreVolumeOfInvestigation::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__PoreVolumeOfInvestigation::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__PoreVolumeOfInvestigation::Abbreviation.compare("PVinv"))) + if (*soap->href != '#' && (a->prodml23__PoreVolumeOfInvestigation::Abbreviation.compare("PVinv"))) { soap->error = SOAP_FIXED; return NULL; } @@ -182139,7 +182134,7 @@ SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Po } } if (soap_flag_Volume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:Volume", &a->prodml22__PoreVolumeOfInvestigation::Volume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:Volume", &a->prodml23__PoreVolumeOfInvestigation::Volume, "eml23:VolumeMeasure")) { soap_flag_Volume1--; continue; } @@ -182153,7 +182148,7 @@ SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Po } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__PoreVolumeOfInvestigation::Volume)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__PoreVolumeOfInvestigation::Volume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -182163,35 +182158,35 @@ SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml22__Po return NULL; } else - { a = (prodml22__PoreVolumeOfInvestigation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation, sizeof(prodml22__PoreVolumeOfInvestigation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PoreVolumeOfInvestigation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation, sizeof(prodml23__PoreVolumeOfInvestigation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml22__PoreVolumeOfInvestigation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml23__PoreVolumeOfInvestigation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PoreVolumeOfInvestigation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PoreVolumeOfInvestigation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PoreVolumeOfInvestigation *p; - size_t k = sizeof(prodml22__PoreVolumeOfInvestigation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation, n, gsoap_eml2_3_fdelete); + prodml23__PoreVolumeOfInvestigation *p; + size_t k = sizeof(prodml23__PoreVolumeOfInvestigation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PoreVolumeOfInvestigation); + { p = SOAP_NEW(soap, prodml23__PoreVolumeOfInvestigation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PoreVolumeOfInvestigation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PoreVolumeOfInvestigation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PoreVolumeOfInvestigation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PoreVolumeOfInvestigation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -182201,94 +182196,94 @@ SOAP_FMAC1 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__PoreVolumeOfInvestigation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PoreVolumeOfInvestigation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PoreVolumeOfInvestigation(soap, tag ? tag : "prodml22:PoreVolumeOfInvestigation", -2, this, type)) + if (soap_out_prodml23__PoreVolumeOfInvestigation(soap, tag ? tag : "prodml23:PoreVolumeOfInvestigation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PoreVolumeOfInvestigation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PoreVolumeOfInvestigation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PoreVolumeOfInvestigation(soap, this, tag, type); + return soap_get_prodml23__PoreVolumeOfInvestigation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_get_prodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_get_prodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PoreVolumeOfInvestigation(soap, tag, p, type))) + if ((p = soap_in_prodml23__PoreVolumeOfInvestigation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PoreVolumeMeasured::soap_default(struct soap *soap) +void prodml23__PoreVolumeMeasured::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__PoreVolumeMeasured::Abbreviation = "PVmeas"; - this->prodml22__PoreVolumeMeasured::Volume = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__PoreVolumeMeasured::Abbreviation = "PVmeas"; + this->prodml23__PoreVolumeMeasured::Volume = NULL; } -void prodml22__PoreVolumeMeasured::soap_serialize(struct soap *soap) const +void prodml23__PoreVolumeMeasured::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PoreVolumeMeasured::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__PoreVolumeMeasured::Abbreviation); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__PoreVolumeMeasured::Volume); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__PoreVolumeMeasured::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__PoreVolumeMeasured::Abbreviation); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__PoreVolumeMeasured::Volume); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__PoreVolumeMeasured::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PoreVolumeMeasured::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PoreVolumeMeasured(soap, tag, id, this, type); + return soap_out_prodml23__PoreVolumeMeasured(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PoreVolumeMeasured(struct soap *soap, const char *tag, int id, const prodml22__PoreVolumeMeasured *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PoreVolumeMeasured(struct soap *soap, const char *tag, int id, const prodml23__PoreVolumeMeasured *a, const char *type) { if (!type) - type = "prodml22:PoreVolumeMeasured"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:PoreVolumeMeasured"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__PoreVolumeMeasured), type ? type : "prodml22:PoreVolumeMeasured")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured), type ? type : "prodml23:PoreVolumeMeasured")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__PoreVolumeMeasured::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__PoreVolumeMeasured::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__PoreVolumeMeasured::Volume) - { if (soap_element_empty(soap, "prodml22:Volume", 0, NULL)) + if (!a->prodml23__PoreVolumeMeasured::Volume) + { if (soap_element_empty(soap, "prodml23:Volume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:Volume", -1, &a->prodml22__PoreVolumeMeasured::Volume, "eml23:VolumeMeasure")) + else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:Volume", -1, &a->prodml23__PoreVolumeMeasured::Volume, "eml23:VolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PoreVolumeMeasured::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PoreVolumeMeasured::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PoreVolumeMeasured(soap, tag, this, type); + return soap_in_prodml23__PoreVolumeMeasured(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml22__PoreVolumeMeasured(struct soap *soap, const char *tag, prodml22__PoreVolumeMeasured *a, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml23__PoreVolumeMeasured(struct soap *soap, const char *tag, prodml23__PoreVolumeMeasured *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PoreVolumeMeasured*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured, sizeof(prodml22__PoreVolumeMeasured), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PoreVolumeMeasured*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured, sizeof(prodml23__PoreVolumeMeasured), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PoreVolumeMeasured *)a->soap_in(soap, tag, type); + return (prodml23__PoreVolumeMeasured *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -182299,21 +182294,21 @@ SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml22__PoreVolum for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__PoreVolumeMeasured::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__PoreVolumeMeasured::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__PoreVolumeMeasured::Abbreviation.compare("PVmeas"))) + if (*soap->href != '#' && (a->prodml23__PoreVolumeMeasured::Abbreviation.compare("PVmeas"))) { soap->error = SOAP_FIXED; return NULL; } @@ -182321,7 +182316,7 @@ SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml22__PoreVolum } } if (soap_flag_Volume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:Volume", &a->prodml22__PoreVolumeMeasured::Volume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:Volume", &a->prodml23__PoreVolumeMeasured::Volume, "eml23:VolumeMeasure")) { soap_flag_Volume1--; continue; } @@ -182335,7 +182330,7 @@ SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml22__PoreVolum } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__PoreVolumeMeasured::Volume)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__PoreVolumeMeasured::Volume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -182345,35 +182340,35 @@ SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml22__PoreVolum return NULL; } else - { a = (prodml22__PoreVolumeMeasured *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured, sizeof(prodml22__PoreVolumeMeasured), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PoreVolumeMeasured *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured, sizeof(prodml23__PoreVolumeMeasured), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml22__PoreVolumeMeasured(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml23__PoreVolumeMeasured(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PoreVolumeMeasured(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PoreVolumeMeasured(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PoreVolumeMeasured *p; - size_t k = sizeof(prodml22__PoreVolumeMeasured); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured, n, gsoap_eml2_3_fdelete); + prodml23__PoreVolumeMeasured *p; + size_t k = sizeof(prodml23__PoreVolumeMeasured); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PoreVolumeMeasured); + { p = SOAP_NEW(soap, prodml23__PoreVolumeMeasured); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PoreVolumeMeasured, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PoreVolumeMeasured, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PoreVolumeMeasured location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PoreVolumeMeasured location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -182383,94 +182378,94 @@ SOAP_FMAC1 prodml22__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__PoreVolumeMeasured::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PoreVolumeMeasured::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PoreVolumeMeasured(soap, tag ? tag : "prodml22:PoreVolumeMeasured", -2, this, type)) + if (soap_out_prodml23__PoreVolumeMeasured(soap, tag ? tag : "prodml23:PoreVolumeMeasured", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PoreVolumeMeasured::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PoreVolumeMeasured::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PoreVolumeMeasured(soap, this, tag, type); + return soap_get_prodml23__PoreVolumeMeasured(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_get_prodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeMeasured * SOAP_FMAC4 soap_get_prodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PoreVolumeMeasured(soap, tag, p, type))) + if ((p = soap_in_prodml23__PoreVolumeMeasured(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PermeabilityThicknessProduct::soap_default(struct soap *soap) +void prodml23__PermeabilityThicknessProduct::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__PermeabilityThicknessProduct::Abbreviation = "k.h"; - this->prodml22__PermeabilityThicknessProduct::PermeabilityLength = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__PermeabilityThicknessProduct::Abbreviation = "k.h"; + this->prodml23__PermeabilityThicknessProduct::PermeabilityLength = NULL; } -void prodml22__PermeabilityThicknessProduct::soap_serialize(struct soap *soap) const +void prodml23__PermeabilityThicknessProduct::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PermeabilityThicknessProduct::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__PermeabilityThicknessProduct::Abbreviation); - soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, &this->prodml22__PermeabilityThicknessProduct::PermeabilityLength); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__PermeabilityThicknessProduct::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__PermeabilityThicknessProduct::Abbreviation); + soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, &this->prodml23__PermeabilityThicknessProduct::PermeabilityLength); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__PermeabilityThicknessProduct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PermeabilityThicknessProduct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PermeabilityThicknessProduct(soap, tag, id, this, type); + return soap_out_prodml23__PermeabilityThicknessProduct(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, const prodml22__PermeabilityThicknessProduct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, const prodml23__PermeabilityThicknessProduct *a, const char *type) { if (!type) - type = "prodml22:PermeabilityThicknessProduct"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:PermeabilityThicknessProduct"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct), type ? type : "prodml22:PermeabilityThicknessProduct")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct), type ? type : "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__PermeabilityThicknessProduct::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__PermeabilityThicknessProduct::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__PermeabilityThicknessProduct::PermeabilityLength) - { if (soap_element_empty(soap, "prodml22:PermeabilityLength", 0, NULL)) + if (!a->prodml23__PermeabilityThicknessProduct::PermeabilityLength) + { if (soap_element_empty(soap, "prodml23:PermeabilityLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml22:PermeabilityLength", -1, &a->prodml22__PermeabilityThicknessProduct::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) + else if (soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml23:PermeabilityLength", -1, &a->prodml23__PermeabilityThicknessProduct::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PermeabilityThicknessProduct::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PermeabilityThicknessProduct::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PermeabilityThicknessProduct(soap, tag, this, type); + return soap_in_prodml23__PermeabilityThicknessProduct(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22__PermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml22__PermeabilityThicknessProduct *a, const char *type) +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml23__PermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml23__PermeabilityThicknessProduct *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PermeabilityThicknessProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct, sizeof(prodml22__PermeabilityThicknessProduct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PermeabilityThicknessProduct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct, sizeof(prodml23__PermeabilityThicknessProduct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PermeabilityThicknessProduct *)a->soap_in(soap, tag, type); + return (prodml23__PermeabilityThicknessProduct *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -182481,21 +182476,21 @@ SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__PermeabilityThicknessProduct::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__PermeabilityThicknessProduct::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__PermeabilityThicknessProduct::Abbreviation.compare("k.h"))) + if (*soap->href != '#' && (a->prodml23__PermeabilityThicknessProduct::Abbreviation.compare("k.h"))) { soap->error = SOAP_FIXED; return NULL; } @@ -182503,7 +182498,7 @@ SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22_ } } if (soap_flag_PermeabilityLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml22:PermeabilityLength", &a->prodml22__PermeabilityThicknessProduct::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) + { if (soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml23:PermeabilityLength", &a->prodml23__PermeabilityThicknessProduct::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) { soap_flag_PermeabilityLength1--; continue; } @@ -182517,7 +182512,7 @@ SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22_ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__PermeabilityThicknessProduct::PermeabilityLength)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__PermeabilityThicknessProduct::PermeabilityLength)) { soap->error = SOAP_OCCURS; return NULL; } @@ -182527,35 +182522,35 @@ SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__PermeabilityThicknessProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct, sizeof(prodml22__PermeabilityThicknessProduct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PermeabilityThicknessProduct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct, sizeof(prodml23__PermeabilityThicknessProduct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml22__PermeabilityThicknessProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml23__PermeabilityThicknessProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PermeabilityThicknessProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PermeabilityThicknessProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PermeabilityThicknessProduct *p; - size_t k = sizeof(prodml22__PermeabilityThicknessProduct); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct, n, gsoap_eml2_3_fdelete); + prodml23__PermeabilityThicknessProduct *p; + size_t k = sizeof(prodml23__PermeabilityThicknessProduct); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PermeabilityThicknessProduct); + { p = SOAP_NEW(soap, prodml23__PermeabilityThicknessProduct); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PermeabilityThicknessProduct, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PermeabilityThicknessProduct, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PermeabilityThicknessProduct location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PermeabilityThicknessProduct location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -182565,94 +182560,94 @@ SOAP_FMAC1 prodml22__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__PermeabilityThicknessProduct::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PermeabilityThicknessProduct::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PermeabilityThicknessProduct(soap, tag ? tag : "prodml22:PermeabilityThicknessProduct", -2, this, type)) + if (soap_out_prodml23__PermeabilityThicknessProduct(soap, tag ? tag : "prodml23:PermeabilityThicknessProduct", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PermeabilityThicknessProduct::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PermeabilityThicknessProduct::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PermeabilityThicknessProduct(soap, this, tag, type); + return soap_get_prodml23__PermeabilityThicknessProduct(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PermeabilityThicknessProduct(soap, tag, p, type))) + if ((p = soap_in_prodml23__PermeabilityThicknessProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PerforatedLength::soap_default(struct soap *soap) +void prodml23__PerforatedLength::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__PerforatedLength::Abbreviation = "hp"; - this->prodml22__PerforatedLength::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__PerforatedLength::Abbreviation = "hp"; + this->prodml23__PerforatedLength::Length = NULL; } -void prodml22__PerforatedLength::soap_serialize(struct soap *soap) const +void prodml23__PerforatedLength::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PerforatedLength::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__PerforatedLength::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__PerforatedLength::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__PerforatedLength::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__PerforatedLength::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__PerforatedLength::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__PerforatedLength::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PerforatedLength::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PerforatedLength(soap, tag, id, this, type); + return soap_out_prodml23__PerforatedLength(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PerforatedLength(struct soap *soap, const char *tag, int id, const prodml22__PerforatedLength *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PerforatedLength(struct soap *soap, const char *tag, int id, const prodml23__PerforatedLength *a, const char *type) { if (!type) - type = "prodml22:PerforatedLength"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:PerforatedLength"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__PerforatedLength), type ? type : "prodml22:PerforatedLength")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength), type ? type : "prodml23:PerforatedLength")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__PerforatedLength::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__PerforatedLength::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__PerforatedLength::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__PerforatedLength::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__PerforatedLength::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__PerforatedLength::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PerforatedLength::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PerforatedLength::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PerforatedLength(soap, tag, this, type); + return soap_in_prodml23__PerforatedLength(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_in_prodml22__PerforatedLength(struct soap *soap, const char *tag, prodml22__PerforatedLength *a, const char *type) +SOAP_FMAC3 prodml23__PerforatedLength * SOAP_FMAC4 soap_in_prodml23__PerforatedLength(struct soap *soap, const char *tag, prodml23__PerforatedLength *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PerforatedLength*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength, sizeof(prodml22__PerforatedLength), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PerforatedLength*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength, sizeof(prodml23__PerforatedLength), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PerforatedLength *)a->soap_in(soap, tag, type); + return (prodml23__PerforatedLength *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -182663,21 +182658,21 @@ SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_in_prodml22__PerforatedL for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__PerforatedLength::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__PerforatedLength::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__PerforatedLength::Abbreviation.compare("hp"))) + if (*soap->href != '#' && (a->prodml23__PerforatedLength::Abbreviation.compare("hp"))) { soap->error = SOAP_FIXED; return NULL; } @@ -182685,7 +182680,7 @@ SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_in_prodml22__PerforatedL } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__PerforatedLength::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__PerforatedLength::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -182699,7 +182694,7 @@ SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_in_prodml22__PerforatedL } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__PerforatedLength::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__PerforatedLength::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -182709,35 +182704,35 @@ SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_in_prodml22__PerforatedL return NULL; } else - { a = (prodml22__PerforatedLength *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength, sizeof(prodml22__PerforatedLength), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PerforatedLength *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength, sizeof(prodml23__PerforatedLength), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml22__PerforatedLength(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml23__PerforatedLength(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PerforatedLength(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PerforatedLength(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PerforatedLength *p; - size_t k = sizeof(prodml22__PerforatedLength); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength, n, gsoap_eml2_3_fdelete); + prodml23__PerforatedLength *p; + size_t k = sizeof(prodml23__PerforatedLength); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PerforatedLength); + { p = SOAP_NEW(soap, prodml23__PerforatedLength); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PerforatedLength, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PerforatedLength, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PerforatedLength location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PerforatedLength location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -182747,94 +182742,94 @@ SOAP_FMAC1 prodml22__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml22__Pe return p; } -int prodml22__PerforatedLength::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PerforatedLength::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PerforatedLength(soap, tag ? tag : "prodml22:PerforatedLength", -2, this, type)) + if (soap_out_prodml23__PerforatedLength(soap, tag ? tag : "prodml23:PerforatedLength", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PerforatedLength::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PerforatedLength::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PerforatedLength(soap, this, tag, type); + return soap_get_prodml23__PerforatedLength(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_get_prodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PerforatedLength * SOAP_FMAC4 soap_get_prodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PerforatedLength(soap, tag, p, type))) + if ((p = soap_in_prodml23__PerforatedLength(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OrientationWellTrajectory::soap_default(struct soap *soap) +void prodml23__OrientationWellTrajectory::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__OrientationWellTrajectory::Abbreviation = "OrientationWellTrajectory"; - this->prodml22__OrientationWellTrajectory::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__OrientationWellTrajectory::Abbreviation = "OrientationWellTrajectory"; + this->prodml23__OrientationWellTrajectory::Angle = NULL; } -void prodml22__OrientationWellTrajectory::soap_serialize(struct soap *soap) const +void prodml23__OrientationWellTrajectory::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OrientationWellTrajectory::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__OrientationWellTrajectory::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__OrientationWellTrajectory::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__OrientationWellTrajectory::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__OrientationWellTrajectory::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__OrientationWellTrajectory::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__OrientationWellTrajectory::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OrientationWellTrajectory::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OrientationWellTrajectory(soap, tag, id, this, type); + return soap_out_prodml23__OrientationWellTrajectory(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationWellTrajectory(struct soap *soap, const char *tag, int id, const prodml22__OrientationWellTrajectory *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationWellTrajectory(struct soap *soap, const char *tag, int id, const prodml23__OrientationWellTrajectory *a, const char *type) { if (!type) - type = "prodml22:OrientationWellTrajectory"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:OrientationWellTrajectory"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__OrientationWellTrajectory), type ? type : "prodml22:OrientationWellTrajectory")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory), type ? type : "prodml23:OrientationWellTrajectory")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__OrientationWellTrajectory::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__OrientationWellTrajectory::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__OrientationWellTrajectory::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__OrientationWellTrajectory::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__OrientationWellTrajectory::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__OrientationWellTrajectory::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OrientationWellTrajectory::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationWellTrajectory::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OrientationWellTrajectory(soap, tag, this, type); + return soap_in_prodml23__OrientationWellTrajectory(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml22__OrientationWellTrajectory(struct soap *soap, const char *tag, prodml22__OrientationWellTrajectory *a, const char *type) +SOAP_FMAC3 prodml23__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml23__OrientationWellTrajectory(struct soap *soap, const char *tag, prodml23__OrientationWellTrajectory *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OrientationWellTrajectory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory, sizeof(prodml22__OrientationWellTrajectory), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OrientationWellTrajectory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory, sizeof(prodml23__OrientationWellTrajectory), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OrientationWellTrajectory *)a->soap_in(soap, tag, type); + return (prodml23__OrientationWellTrajectory *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -182845,21 +182840,21 @@ SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml22__Or for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__OrientationWellTrajectory::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__OrientationWellTrajectory::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__OrientationWellTrajectory::Abbreviation.compare("OrientationWellTrajectory"))) + if (*soap->href != '#' && (a->prodml23__OrientationWellTrajectory::Abbreviation.compare("OrientationWellTrajectory"))) { soap->error = SOAP_FIXED; return NULL; } @@ -182867,7 +182862,7 @@ SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml22__Or } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__OrientationWellTrajectory::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__OrientationWellTrajectory::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -182881,7 +182876,7 @@ SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml22__Or } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__OrientationWellTrajectory::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__OrientationWellTrajectory::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -182891,35 +182886,35 @@ SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml22__Or return NULL; } else - { a = (prodml22__OrientationWellTrajectory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory, sizeof(prodml22__OrientationWellTrajectory), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationWellTrajectory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory, sizeof(prodml23__OrientationWellTrajectory), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_prodml22__OrientationWellTrajectory(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_prodml23__OrientationWellTrajectory(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OrientationWellTrajectory(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OrientationWellTrajectory(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OrientationWellTrajectory *p; - size_t k = sizeof(prodml22__OrientationWellTrajectory); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory, n, gsoap_eml2_3_fdelete); + prodml23__OrientationWellTrajectory *p; + size_t k = sizeof(prodml23__OrientationWellTrajectory); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OrientationWellTrajectory); + { p = SOAP_NEW(soap, prodml23__OrientationWellTrajectory); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OrientationWellTrajectory, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OrientationWellTrajectory, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OrientationWellTrajectory location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OrientationWellTrajectory location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -182929,94 +182924,94 @@ SOAP_FMAC1 prodml22__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__OrientationWellTrajectory::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OrientationWellTrajectory::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OrientationWellTrajectory(soap, tag ? tag : "prodml22:OrientationWellTrajectory", -2, this, type)) + if (soap_out_prodml23__OrientationWellTrajectory(soap, tag ? tag : "prodml23:OrientationWellTrajectory", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OrientationWellTrajectory::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationWellTrajectory::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OrientationWellTrajectory(soap, this, tag, type); + return soap_get_prodml23__OrientationWellTrajectory(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_get_prodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationWellTrajectory * SOAP_FMAC4 soap_get_prodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrientationWellTrajectory(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrientationWellTrajectory(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OrientationOfNormalToBoundary1::soap_default(struct soap *soap) +void prodml23__OrientationOfNormalToBoundary1::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__OrientationOfNormalToBoundary1::Abbreviation = "OrientationOfNormalToBoundary1"; - this->prodml22__OrientationOfNormalToBoundary1::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__OrientationOfNormalToBoundary1::Abbreviation = "OrientationOfNormalToBoundary1"; + this->prodml23__OrientationOfNormalToBoundary1::Angle = NULL; } -void prodml22__OrientationOfNormalToBoundary1::soap_serialize(struct soap *soap) const +void prodml23__OrientationOfNormalToBoundary1::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OrientationOfNormalToBoundary1::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__OrientationOfNormalToBoundary1::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__OrientationOfNormalToBoundary1::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__OrientationOfNormalToBoundary1::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__OrientationOfNormalToBoundary1::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__OrientationOfNormalToBoundary1::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__OrientationOfNormalToBoundary1::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OrientationOfNormalToBoundary1::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OrientationOfNormalToBoundary1(soap, tag, id, this, type); + return soap_out_prodml23__OrientationOfNormalToBoundary1(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, int id, const prodml22__OrientationOfNormalToBoundary1 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, int id, const prodml23__OrientationOfNormalToBoundary1 *a, const char *type) { if (!type) - type = "prodml22:OrientationOfNormalToBoundary1"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:OrientationOfNormalToBoundary1"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1), type ? type : "prodml22:OrientationOfNormalToBoundary1")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1), type ? type : "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__OrientationOfNormalToBoundary1::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__OrientationOfNormalToBoundary1::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__OrientationOfNormalToBoundary1::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__OrientationOfNormalToBoundary1::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__OrientationOfNormalToBoundary1::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__OrientationOfNormalToBoundary1::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OrientationOfNormalToBoundary1::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfNormalToBoundary1::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OrientationOfNormalToBoundary1(soap, tag, this, type); + return soap_in_prodml23__OrientationOfNormalToBoundary1(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, prodml22__OrientationOfNormalToBoundary1 *a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, prodml23__OrientationOfNormalToBoundary1 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OrientationOfNormalToBoundary1*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1, sizeof(prodml22__OrientationOfNormalToBoundary1), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OrientationOfNormalToBoundary1*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1, sizeof(prodml23__OrientationOfNormalToBoundary1), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OrientationOfNormalToBoundary1 *)a->soap_in(soap, tag, type); + return (prodml23__OrientationOfNormalToBoundary1 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -183027,21 +183022,21 @@ SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml2 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__OrientationOfNormalToBoundary1::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__OrientationOfNormalToBoundary1::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__OrientationOfNormalToBoundary1::Abbreviation.compare("OrientationOfNormalToBoundary1"))) + if (*soap->href != '#' && (a->prodml23__OrientationOfNormalToBoundary1::Abbreviation.compare("OrientationOfNormalToBoundary1"))) { soap->error = SOAP_FIXED; return NULL; } @@ -183049,7 +183044,7 @@ SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml2 } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__OrientationOfNormalToBoundary1::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__OrientationOfNormalToBoundary1::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -183063,7 +183058,7 @@ SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml2 } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__OrientationOfNormalToBoundary1::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__OrientationOfNormalToBoundary1::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -183073,35 +183068,35 @@ SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__OrientationOfNormalToBoundary1 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1, sizeof(prodml22__OrientationOfNormalToBoundary1), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfNormalToBoundary1 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1, sizeof(prodml23__OrientationOfNormalToBoundary1), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OrientationOfNormalToBoundary1(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OrientationOfNormalToBoundary1(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OrientationOfNormalToBoundary1 *p; - size_t k = sizeof(prodml22__OrientationOfNormalToBoundary1); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1, n, gsoap_eml2_3_fdelete); + prodml23__OrientationOfNormalToBoundary1 *p; + size_t k = sizeof(prodml23__OrientationOfNormalToBoundary1); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OrientationOfNormalToBoundary1); + { p = SOAP_NEW(soap, prodml23__OrientationOfNormalToBoundary1); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OrientationOfNormalToBoundary1, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OrientationOfNormalToBoundary1, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OrientationOfNormalToBoundary1 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OrientationOfNormalToBoundary1 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -183111,94 +183106,94 @@ SOAP_FMAC1 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__OrientationOfNormalToBoundary1::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OrientationOfNormalToBoundary1::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OrientationOfNormalToBoundary1(soap, tag ? tag : "prodml22:OrientationOfNormalToBoundary1", -2, this, type)) + if (soap_out_prodml23__OrientationOfNormalToBoundary1(soap, tag ? tag : "prodml23:OrientationOfNormalToBoundary1", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OrientationOfNormalToBoundary1::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfNormalToBoundary1::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OrientationOfNormalToBoundary1(soap, this, tag, type); + return soap_get_prodml23__OrientationOfNormalToBoundary1(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_get_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_get_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrientationOfNormalToBoundary1(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrientationOfNormalToBoundary1(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OrientationOfLinearFront::soap_default(struct soap *soap) +void prodml23__OrientationOfLinearFront::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__OrientationOfLinearFront::Abbreviation = "OrientationOfLinearFront"; - this->prodml22__OrientationOfLinearFront::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__OrientationOfLinearFront::Abbreviation = "OrientationOfLinearFront"; + this->prodml23__OrientationOfLinearFront::Angle = NULL; } -void prodml22__OrientationOfLinearFront::soap_serialize(struct soap *soap) const +void prodml23__OrientationOfLinearFront::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OrientationOfLinearFront::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__OrientationOfLinearFront::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__OrientationOfLinearFront::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__OrientationOfLinearFront::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__OrientationOfLinearFront::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__OrientationOfLinearFront::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__OrientationOfLinearFront::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OrientationOfLinearFront::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OrientationOfLinearFront(soap, tag, id, this, type); + return soap_out_prodml23__OrientationOfLinearFront(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfLinearFront(struct soap *soap, const char *tag, int id, const prodml22__OrientationOfLinearFront *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfLinearFront(struct soap *soap, const char *tag, int id, const prodml23__OrientationOfLinearFront *a, const char *type) { if (!type) - type = "prodml22:OrientationOfLinearFront"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:OrientationOfLinearFront"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__OrientationOfLinearFront), type ? type : "prodml22:OrientationOfLinearFront")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront), type ? type : "prodml23:OrientationOfLinearFront")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__OrientationOfLinearFront::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__OrientationOfLinearFront::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__OrientationOfLinearFront::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__OrientationOfLinearFront::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__OrientationOfLinearFront::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__OrientationOfLinearFront::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OrientationOfLinearFront::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfLinearFront::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OrientationOfLinearFront(soap, tag, this, type); + return soap_in_prodml23__OrientationOfLinearFront(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml22__OrientationOfLinearFront(struct soap *soap, const char *tag, prodml22__OrientationOfLinearFront *a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml23__OrientationOfLinearFront(struct soap *soap, const char *tag, prodml23__OrientationOfLinearFront *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OrientationOfLinearFront*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront, sizeof(prodml22__OrientationOfLinearFront), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OrientationOfLinearFront*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront, sizeof(prodml23__OrientationOfLinearFront), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OrientationOfLinearFront *)a->soap_in(soap, tag, type); + return (prodml23__OrientationOfLinearFront *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -183209,21 +183204,21 @@ SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml22__Ori for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__OrientationOfLinearFront::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__OrientationOfLinearFront::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__OrientationOfLinearFront::Abbreviation.compare("OrientationOfLinearFront"))) + if (*soap->href != '#' && (a->prodml23__OrientationOfLinearFront::Abbreviation.compare("OrientationOfLinearFront"))) { soap->error = SOAP_FIXED; return NULL; } @@ -183231,7 +183226,7 @@ SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml22__Ori } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__OrientationOfLinearFront::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__OrientationOfLinearFront::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -183245,7 +183240,7 @@ SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml22__Ori } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__OrientationOfLinearFront::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__OrientationOfLinearFront::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -183255,35 +183250,35 @@ SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml22__Ori return NULL; } else - { a = (prodml22__OrientationOfLinearFront *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront, sizeof(prodml22__OrientationOfLinearFront), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfLinearFront *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront, sizeof(prodml23__OrientationOfLinearFront), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfLinearFront(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfLinearFront(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OrientationOfLinearFront(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OrientationOfLinearFront(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OrientationOfLinearFront *p; - size_t k = sizeof(prodml22__OrientationOfLinearFront); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront, n, gsoap_eml2_3_fdelete); + prodml23__OrientationOfLinearFront *p; + size_t k = sizeof(prodml23__OrientationOfLinearFront); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OrientationOfLinearFront); + { p = SOAP_NEW(soap, prodml23__OrientationOfLinearFront); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OrientationOfLinearFront, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OrientationOfLinearFront, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OrientationOfLinearFront location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OrientationOfLinearFront location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -183293,94 +183288,94 @@ SOAP_FMAC1 prodml22__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__OrientationOfLinearFront::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OrientationOfLinearFront::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OrientationOfLinearFront(soap, tag ? tag : "prodml22:OrientationOfLinearFront", -2, this, type)) + if (soap_out_prodml23__OrientationOfLinearFront(soap, tag ? tag : "prodml23:OrientationOfLinearFront", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OrientationOfLinearFront::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfLinearFront::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OrientationOfLinearFront(soap, this, tag, type); + return soap_get_prodml23__OrientationOfLinearFront(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_get_prodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfLinearFront * SOAP_FMAC4 soap_get_prodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrientationOfLinearFront(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrientationOfLinearFront(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OrientationOfFracturePlane::soap_default(struct soap *soap) +void prodml23__OrientationOfFracturePlane::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__OrientationOfFracturePlane::Abbreviation = "OrientationOfFracturePlane"; - this->prodml22__OrientationOfFracturePlane::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__OrientationOfFracturePlane::Abbreviation = "OrientationOfFracturePlane"; + this->prodml23__OrientationOfFracturePlane::Angle = NULL; } -void prodml22__OrientationOfFracturePlane::soap_serialize(struct soap *soap) const +void prodml23__OrientationOfFracturePlane::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OrientationOfFracturePlane::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__OrientationOfFracturePlane::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__OrientationOfFracturePlane::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__OrientationOfFracturePlane::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__OrientationOfFracturePlane::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__OrientationOfFracturePlane::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__OrientationOfFracturePlane::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OrientationOfFracturePlane::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OrientationOfFracturePlane(soap, tag, id, this, type); + return soap_out_prodml23__OrientationOfFracturePlane(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfFracturePlane(struct soap *soap, const char *tag, int id, const prodml22__OrientationOfFracturePlane *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfFracturePlane(struct soap *soap, const char *tag, int id, const prodml23__OrientationOfFracturePlane *a, const char *type) { if (!type) - type = "prodml22:OrientationOfFracturePlane"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:OrientationOfFracturePlane"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__OrientationOfFracturePlane), type ? type : "prodml22:OrientationOfFracturePlane")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane), type ? type : "prodml23:OrientationOfFracturePlane")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__OrientationOfFracturePlane::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__OrientationOfFracturePlane::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__OrientationOfFracturePlane::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__OrientationOfFracturePlane::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__OrientationOfFracturePlane::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__OrientationOfFracturePlane::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OrientationOfFracturePlane::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfFracturePlane::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OrientationOfFracturePlane(soap, tag, this, type); + return soap_in_prodml23__OrientationOfFracturePlane(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml22__OrientationOfFracturePlane(struct soap *soap, const char *tag, prodml22__OrientationOfFracturePlane *a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml23__OrientationOfFracturePlane(struct soap *soap, const char *tag, prodml23__OrientationOfFracturePlane *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OrientationOfFracturePlane*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane, sizeof(prodml22__OrientationOfFracturePlane), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OrientationOfFracturePlane*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane, sizeof(prodml23__OrientationOfFracturePlane), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OrientationOfFracturePlane *)a->soap_in(soap, tag, type); + return (prodml23__OrientationOfFracturePlane *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -183391,21 +183386,21 @@ SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml22__O for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__OrientationOfFracturePlane::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__OrientationOfFracturePlane::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__OrientationOfFracturePlane::Abbreviation.compare("OrientationOfFracturePlane"))) + if (*soap->href != '#' && (a->prodml23__OrientationOfFracturePlane::Abbreviation.compare("OrientationOfFracturePlane"))) { soap->error = SOAP_FIXED; return NULL; } @@ -183413,7 +183408,7 @@ SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml22__O } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__OrientationOfFracturePlane::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__OrientationOfFracturePlane::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -183427,7 +183422,7 @@ SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml22__O } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__OrientationOfFracturePlane::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__OrientationOfFracturePlane::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -183437,35 +183432,35 @@ SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml22__O return NULL; } else - { a = (prodml22__OrientationOfFracturePlane *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane, sizeof(prodml22__OrientationOfFracturePlane), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfFracturePlane *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane, sizeof(prodml23__OrientationOfFracturePlane), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfFracturePlane(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfFracturePlane(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OrientationOfFracturePlane(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OrientationOfFracturePlane(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OrientationOfFracturePlane *p; - size_t k = sizeof(prodml22__OrientationOfFracturePlane); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane, n, gsoap_eml2_3_fdelete); + prodml23__OrientationOfFracturePlane *p; + size_t k = sizeof(prodml23__OrientationOfFracturePlane); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OrientationOfFracturePlane); + { p = SOAP_NEW(soap, prodml23__OrientationOfFracturePlane); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OrientationOfFracturePlane, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OrientationOfFracturePlane, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OrientationOfFracturePlane location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OrientationOfFracturePlane location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -183475,94 +183470,94 @@ SOAP_FMAC1 prodml22__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__OrientationOfFracturePlane::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OrientationOfFracturePlane::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OrientationOfFracturePlane(soap, tag ? tag : "prodml22:OrientationOfFracturePlane", -2, this, type)) + if (soap_out_prodml23__OrientationOfFracturePlane(soap, tag ? tag : "prodml23:OrientationOfFracturePlane", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OrientationOfFracturePlane::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfFracturePlane::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OrientationOfFracturePlane(soap, this, tag, type); + return soap_get_prodml23__OrientationOfFracturePlane(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_get_prodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfFracturePlane * SOAP_FMAC4 soap_get_prodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrientationOfFracturePlane(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrientationOfFracturePlane(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OrientationOfAnisotropyXDirection::soap_default(struct soap *soap) +void prodml23__OrientationOfAnisotropyXDirection::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__OrientationOfAnisotropyXDirection::Abbreviation = "OrientationOfAnisotropy_XDirection"; - this->prodml22__OrientationOfAnisotropyXDirection::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__OrientationOfAnisotropyXDirection::Abbreviation = "OrientationOfAnisotropy_XDirection"; + this->prodml23__OrientationOfAnisotropyXDirection::Angle = NULL; } -void prodml22__OrientationOfAnisotropyXDirection::soap_serialize(struct soap *soap) const +void prodml23__OrientationOfAnisotropyXDirection::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OrientationOfAnisotropyXDirection::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__OrientationOfAnisotropyXDirection::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__OrientationOfAnisotropyXDirection::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__OrientationOfAnisotropyXDirection::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__OrientationOfAnisotropyXDirection::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__OrientationOfAnisotropyXDirection::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__OrientationOfAnisotropyXDirection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OrientationOfAnisotropyXDirection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OrientationOfAnisotropyXDirection(soap, tag, id, this, type); + return soap_out_prodml23__OrientationOfAnisotropyXDirection(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, int id, const prodml22__OrientationOfAnisotropyXDirection *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, int id, const prodml23__OrientationOfAnisotropyXDirection *a, const char *type) { if (!type) - type = "prodml22:OrientationOfAnisotropyXDirection"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:OrientationOfAnisotropyXDirection"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection), type ? type : "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection), type ? type : "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__OrientationOfAnisotropyXDirection::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__OrientationOfAnisotropyXDirection::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__OrientationOfAnisotropyXDirection::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__OrientationOfAnisotropyXDirection::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__OrientationOfAnisotropyXDirection::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__OrientationOfAnisotropyXDirection::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OrientationOfAnisotropyXDirection::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfAnisotropyXDirection::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OrientationOfAnisotropyXDirection(soap, tag, this, type); + return soap_in_prodml23__OrientationOfAnisotropyXDirection(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, prodml22__OrientationOfAnisotropyXDirection *a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, prodml23__OrientationOfAnisotropyXDirection *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OrientationOfAnisotropyXDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection, sizeof(prodml22__OrientationOfAnisotropyXDirection), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OrientationOfAnisotropyXDirection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection, sizeof(prodml23__OrientationOfAnisotropyXDirection), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OrientationOfAnisotropyXDirection *)a->soap_in(soap, tag, type); + return (prodml23__OrientationOfAnisotropyXDirection *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -183573,21 +183568,21 @@ SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prod for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__OrientationOfAnisotropyXDirection::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__OrientationOfAnisotropyXDirection::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__OrientationOfAnisotropyXDirection::Abbreviation.compare("OrientationOfAnisotropy_XDirection"))) + if (*soap->href != '#' && (a->prodml23__OrientationOfAnisotropyXDirection::Abbreviation.compare("OrientationOfAnisotropy_XDirection"))) { soap->error = SOAP_FIXED; return NULL; } @@ -183595,7 +183590,7 @@ SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prod } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__OrientationOfAnisotropyXDirection::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__OrientationOfAnisotropyXDirection::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -183609,7 +183604,7 @@ SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prod } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__OrientationOfAnisotropyXDirection::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__OrientationOfAnisotropyXDirection::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -183619,35 +183614,35 @@ SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prod return NULL; } else - { a = (prodml22__OrientationOfAnisotropyXDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection, sizeof(prodml22__OrientationOfAnisotropyXDirection), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfAnisotropyXDirection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection, sizeof(prodml23__OrientationOfAnisotropyXDirection), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OrientationOfAnisotropyXDirection *p; - size_t k = sizeof(prodml22__OrientationOfAnisotropyXDirection); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection, n, gsoap_eml2_3_fdelete); + prodml23__OrientationOfAnisotropyXDirection *p; + size_t k = sizeof(prodml23__OrientationOfAnisotropyXDirection); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OrientationOfAnisotropyXDirection); + { p = SOAP_NEW(soap, prodml23__OrientationOfAnisotropyXDirection); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OrientationOfAnisotropyXDirection, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OrientationOfAnisotropyXDirection, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OrientationOfAnisotropyXDirection location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OrientationOfAnisotropyXDirection location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -183657,89 +183652,89 @@ SOAP_FMAC1 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instant return p; } -int prodml22__OrientationOfAnisotropyXDirection::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OrientationOfAnisotropyXDirection::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OrientationOfAnisotropyXDirection(soap, tag ? tag : "prodml22:OrientationOfAnisotropyXDirection", -2, this, type)) + if (soap_out_prodml23__OrientationOfAnisotropyXDirection(soap, tag ? tag : "prodml23:OrientationOfAnisotropyXDirection", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OrientationOfAnisotropyXDirection::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OrientationOfAnisotropyXDirection::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OrientationOfAnisotropyXDirection(soap, this, tag, type); + return soap_get_prodml23__OrientationOfAnisotropyXDirection(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_get_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_get_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OrientationOfAnisotropyXDirection(soap, tag, p, type))) + if ((p = soap_in_prodml23__OrientationOfAnisotropyXDirection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NumberOfFractures::soap_default(struct soap *soap) +void prodml23__NumberOfFractures::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__NumberOfFractures::Abbreviation = "Nf"; - soap_default_xsd__integer(soap, &this->prodml22__NumberOfFractures::Number); + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__NumberOfFractures::Abbreviation = "Nf"; + soap_default_xsd__integer(soap, &this->prodml23__NumberOfFractures::Number); } -void prodml22__NumberOfFractures::soap_serialize(struct soap *soap) const +void prodml23__NumberOfFractures::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__NumberOfFractures::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__NumberOfFractures::Abbreviation); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__NumberOfFractures::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__NumberOfFractures::Abbreviation); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__NumberOfFractures::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NumberOfFractures::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NumberOfFractures(soap, tag, id, this, type); + return soap_out_prodml23__NumberOfFractures(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumberOfFractures(struct soap *soap, const char *tag, int id, const prodml22__NumberOfFractures *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumberOfFractures(struct soap *soap, const char *tag, int id, const prodml23__NumberOfFractures *a, const char *type) { if (!type) - type = "prodml22:NumberOfFractures"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:NumberOfFractures"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__NumberOfFractures), type ? type : "prodml22:NumberOfFractures")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures), type ? type : "prodml23:NumberOfFractures")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__NumberOfFractures::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__NumberOfFractures::Abbreviation, "eml23:String64")) return soap->error; - if (soap_out_xsd__integer(soap, "prodml22:Number", -1, &a->prodml22__NumberOfFractures::Number, "xsd:integer")) + if (soap_out_xsd__integer(soap, "prodml23:Number", -1, &a->prodml23__NumberOfFractures::Number, "xsd:integer")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NumberOfFractures::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumberOfFractures::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NumberOfFractures(soap, tag, this, type); + return soap_in_prodml23__NumberOfFractures(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_in_prodml22__NumberOfFractures(struct soap *soap, const char *tag, prodml22__NumberOfFractures *a, const char *type) +SOAP_FMAC3 prodml23__NumberOfFractures * SOAP_FMAC4 soap_in_prodml23__NumberOfFractures(struct soap *soap, const char *tag, prodml23__NumberOfFractures *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NumberOfFractures*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures, sizeof(prodml22__NumberOfFractures), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NumberOfFractures*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures, sizeof(prodml23__NumberOfFractures), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NumberOfFractures *)a->soap_in(soap, tag, type); + return (prodml23__NumberOfFractures *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -183750,21 +183745,21 @@ SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_in_prodml22__NumberOfFr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__NumberOfFractures::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__NumberOfFractures::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__NumberOfFractures::Abbreviation.compare("Nf"))) + if (*soap->href != '#' && (a->prodml23__NumberOfFractures::Abbreviation.compare("Nf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -183772,7 +183767,7 @@ SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_in_prodml22__NumberOfFr } } if (soap_flag_Number1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_xsd__integer(soap, "prodml22:Number", &a->prodml22__NumberOfFractures::Number, "xsd:integer")) + { if (soap_in_xsd__integer(soap, "prodml23:Number", &a->prodml23__NumberOfFractures::Number, "xsd:integer")) { soap_flag_Number1--; continue; } @@ -183796,35 +183791,35 @@ SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_in_prodml22__NumberOfFr return NULL; } else - { a = (prodml22__NumberOfFractures *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures, sizeof(prodml22__NumberOfFractures), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NumberOfFractures *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures, sizeof(prodml23__NumberOfFractures), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml22__NumberOfFractures(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml23__NumberOfFractures(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NumberOfFractures(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NumberOfFractures(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NumberOfFractures *p; - size_t k = sizeof(prodml22__NumberOfFractures); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures, n, gsoap_eml2_3_fdelete); + prodml23__NumberOfFractures *p; + size_t k = sizeof(prodml23__NumberOfFractures); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NumberOfFractures); + { p = SOAP_NEW(soap, prodml23__NumberOfFractures); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NumberOfFractures, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NumberOfFractures, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NumberOfFractures location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NumberOfFractures location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -183834,91 +183829,91 @@ SOAP_FMAC1 prodml22__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml22__N return p; } -int prodml22__NumberOfFractures::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NumberOfFractures::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NumberOfFractures(soap, tag ? tag : "prodml22:NumberOfFractures", -2, this, type)) + if (soap_out_prodml23__NumberOfFractures(soap, tag ? tag : "prodml23:NumberOfFractures", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NumberOfFractures::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumberOfFractures::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NumberOfFractures(soap, this, tag, type); + return soap_get_prodml23__NumberOfFractures(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_get_prodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NumberOfFractures * SOAP_FMAC4 soap_get_prodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NumberOfFractures(soap, tag, p, type))) + if ((p = soap_in_prodml23__NumberOfFractures(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ModelName::soap_default(struct soap *soap) +void prodml23__ModelName::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__ModelName::Abbreviation = "ModelName"; - soap_default_eml23__String64(soap, &this->prodml22__ModelName::Name); + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__ModelName::Abbreviation = "ModelName"; + soap_default_eml23__String64(soap, &this->prodml23__ModelName::Name); } -void prodml22__ModelName::soap_serialize(struct soap *soap) const +void prodml23__ModelName::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ModelName::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ModelName::Abbreviation); - soap_embedded(soap, &this->prodml22__ModelName::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ModelName::Name); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__ModelName::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ModelName::Abbreviation); + soap_embedded(soap, &this->prodml23__ModelName::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ModelName::Name); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__ModelName::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ModelName::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ModelName(soap, tag, id, this, type); + return soap_out_prodml23__ModelName(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ModelName(struct soap *soap, const char *tag, int id, const prodml22__ModelName *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ModelName(struct soap *soap, const char *tag, int id, const prodml23__ModelName *a, const char *type) { if (!type) - type = "prodml22:ModelName"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:ModelName"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__ModelName), type ? type : "prodml22:ModelName")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName), type ? type : "prodml23:ModelName")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__ModelName::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__ModelName::Abbreviation, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ModelName::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ModelName::Name, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ModelName::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ModelName::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ModelName(soap, tag, this, type); + return soap_in_prodml23__ModelName(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_in_prodml22__ModelName(struct soap *soap, const char *tag, prodml22__ModelName *a, const char *type) +SOAP_FMAC3 prodml23__ModelName * SOAP_FMAC4 soap_in_prodml23__ModelName(struct soap *soap, const char *tag, prodml23__ModelName *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ModelName*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName, sizeof(prodml22__ModelName), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ModelName*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName, sizeof(prodml23__ModelName), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ModelName *)a->soap_in(soap, tag, type); + return (prodml23__ModelName *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -183929,21 +183924,21 @@ SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_in_prodml22__ModelName(struct s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__ModelName::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__ModelName::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__ModelName::Abbreviation.compare("ModelName"))) + if (*soap->href != '#' && (a->prodml23__ModelName::Abbreviation.compare("ModelName"))) { soap->error = SOAP_FIXED; return NULL; } @@ -183951,7 +183946,7 @@ SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_in_prodml22__ModelName(struct s } } if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__ModelName::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__ModelName::Name, "eml23:String64")) { soap_flag_Name1--; continue; } @@ -183975,35 +183970,35 @@ SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_in_prodml22__ModelName(struct s return NULL; } else - { a = (prodml22__ModelName *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName, sizeof(prodml22__ModelName), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ModelName *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName, sizeof(prodml23__ModelName), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ModelName * SOAP_FMAC2 soap_instantiate_prodml22__ModelName(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ModelName * SOAP_FMAC2 soap_instantiate_prodml23__ModelName(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ModelName(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ModelName(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ModelName *p; - size_t k = sizeof(prodml22__ModelName); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName, n, gsoap_eml2_3_fdelete); + prodml23__ModelName *p; + size_t k = sizeof(prodml23__ModelName); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ModelName); + { p = SOAP_NEW(soap, prodml23__ModelName); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ModelName, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ModelName, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ModelName location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ModelName location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -184013,94 +184008,94 @@ SOAP_FMAC1 prodml22__ModelName * SOAP_FMAC2 soap_instantiate_prodml22__ModelName return p; } -int prodml22__ModelName::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ModelName::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ModelName(soap, tag ? tag : "prodml22:ModelName", -2, this, type)) + if (soap_out_prodml23__ModelName(soap, tag ? tag : "prodml23:ModelName", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ModelName::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ModelName::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ModelName(soap, this, tag, type); + return soap_get_prodml23__ModelName(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_get_prodml22__ModelName(struct soap *soap, prodml22__ModelName *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ModelName * SOAP_FMAC4 soap_get_prodml23__ModelName(struct soap *soap, prodml23__ModelName *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ModelName(soap, tag, p, type))) + if ((p = soap_in_prodml23__ModelName(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MechanicalSkinRelativeToTotalThickness::soap_default(struct soap *soap) +void prodml23__MechanicalSkinRelativeToTotalThickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation = "Smech"; - this->prodml22__MechanicalSkinRelativeToTotalThickness::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation = "Smech"; + this->prodml23__MechanicalSkinRelativeToTotalThickness::Value = NULL; } -void prodml22__MechanicalSkinRelativeToTotalThickness::soap_serialize(struct soap *soap) const +void prodml23__MechanicalSkinRelativeToTotalThickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__MechanicalSkinRelativeToTotalThickness::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__MechanicalSkinRelativeToTotalThickness::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__MechanicalSkinRelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MechanicalSkinRelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, id, this, type); + return soap_out_prodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml22__MechanicalSkinRelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml23__MechanicalSkinRelativeToTotalThickness *a, const char *type) { if (!type) - type = "prodml22:MechanicalSkinRelativeToTotalThickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:MechanicalSkinRelativeToTotalThickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness), type ? type : "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness), type ? type : "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__MechanicalSkinRelativeToTotalThickness::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__MechanicalSkinRelativeToTotalThickness::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__MechanicalSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__MechanicalSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MechanicalSkinRelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MechanicalSkinRelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, this, type); + return soap_in_prodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__MechanicalSkinRelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__MechanicalSkinRelativeToTotalThickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MechanicalSkinRelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness, sizeof(prodml22__MechanicalSkinRelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MechanicalSkinRelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness, sizeof(prodml23__MechanicalSkinRelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MechanicalSkinRelativeToTotalThickness *)a->soap_in(soap, tag, type); + return (prodml23__MechanicalSkinRelativeToTotalThickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -184111,21 +184106,21 @@ SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation.compare("Smech"))) + if (*soap->href != '#' && (a->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation.compare("Smech"))) { soap->error = SOAP_FIXED; return NULL; } @@ -184133,7 +184128,7 @@ SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__MechanicalSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__MechanicalSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -184147,7 +184142,7 @@ SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__MechanicalSkinRelativeToTotalThickness::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__MechanicalSkinRelativeToTotalThickness::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -184157,35 +184152,35 @@ SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in return NULL; } else - { a = (prodml22__MechanicalSkinRelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness, sizeof(prodml22__MechanicalSkinRelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MechanicalSkinRelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness, sizeof(prodml23__MechanicalSkinRelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MechanicalSkinRelativeToTotalThickness *p; - size_t k = sizeof(prodml22__MechanicalSkinRelativeToTotalThickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness, n, gsoap_eml2_3_fdelete); + prodml23__MechanicalSkinRelativeToTotalThickness *p; + size_t k = sizeof(prodml23__MechanicalSkinRelativeToTotalThickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MechanicalSkinRelativeToTotalThickness); + { p = SOAP_NEW(soap, prodml23__MechanicalSkinRelativeToTotalThickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MechanicalSkinRelativeToTotalThickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MechanicalSkinRelativeToTotalThickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MechanicalSkinRelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MechanicalSkinRelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -184195,94 +184190,94 @@ SOAP_FMAC1 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_in return p; } -int prodml22__MechanicalSkinRelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MechanicalSkinRelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MechanicalSkinRelativeToTotalThickness(soap, tag ? tag : "prodml22:MechanicalSkinRelativeToTotalThickness", -2, this, type)) + if (soap_out_prodml23__MechanicalSkinRelativeToTotalThickness(soap, tag ? tag : "prodml23:MechanicalSkinRelativeToTotalThickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MechanicalSkinRelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MechanicalSkinRelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MechanicalSkinRelativeToTotalThickness(soap, this, tag, type); + return soap_get_prodml23__MechanicalSkinRelativeToTotalThickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LengthHorizontalWellboreFlowing::soap_default(struct soap *soap) +void prodml23__LengthHorizontalWellboreFlowing::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__LengthHorizontalWellboreFlowing::Abbreviation = "hw"; - this->prodml22__LengthHorizontalWellboreFlowing::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__LengthHorizontalWellboreFlowing::Abbreviation = "hw"; + this->prodml23__LengthHorizontalWellboreFlowing::Length = NULL; } -void prodml22__LengthHorizontalWellboreFlowing::soap_serialize(struct soap *soap) const +void prodml23__LengthHorizontalWellboreFlowing::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__LengthHorizontalWellboreFlowing::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__LengthHorizontalWellboreFlowing::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__LengthHorizontalWellboreFlowing::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__LengthHorizontalWellboreFlowing::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__LengthHorizontalWellboreFlowing::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__LengthHorizontalWellboreFlowing::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__LengthHorizontalWellboreFlowing::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LengthHorizontalWellboreFlowing::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LengthHorizontalWellboreFlowing(soap, tag, id, this, type); + return soap_out_prodml23__LengthHorizontalWellboreFlowing(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, int id, const prodml22__LengthHorizontalWellboreFlowing *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, int id, const prodml23__LengthHorizontalWellboreFlowing *a, const char *type) { if (!type) - type = "prodml22:LengthHorizontalWellboreFlowing"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:LengthHorizontalWellboreFlowing"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing), type ? type : "prodml22:LengthHorizontalWellboreFlowing")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing), type ? type : "prodml23:LengthHorizontalWellboreFlowing")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__LengthHorizontalWellboreFlowing::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__LengthHorizontalWellboreFlowing::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__LengthHorizontalWellboreFlowing::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__LengthHorizontalWellboreFlowing::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__LengthHorizontalWellboreFlowing::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__LengthHorizontalWellboreFlowing::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LengthHorizontalWellboreFlowing::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LengthHorizontalWellboreFlowing::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LengthHorizontalWellboreFlowing(soap, tag, this, type); + return soap_in_prodml23__LengthHorizontalWellboreFlowing(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, prodml22__LengthHorizontalWellboreFlowing *a, const char *type) +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, prodml23__LengthHorizontalWellboreFlowing *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LengthHorizontalWellboreFlowing*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing, sizeof(prodml22__LengthHorizontalWellboreFlowing), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LengthHorizontalWellboreFlowing*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing, sizeof(prodml23__LengthHorizontalWellboreFlowing), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LengthHorizontalWellboreFlowing *)a->soap_in(soap, tag, type); + return (prodml23__LengthHorizontalWellboreFlowing *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -184293,21 +184288,21 @@ SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__LengthHorizontalWellboreFlowing::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__LengthHorizontalWellboreFlowing::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__LengthHorizontalWellboreFlowing::Abbreviation.compare("hw"))) + if (*soap->href != '#' && (a->prodml23__LengthHorizontalWellboreFlowing::Abbreviation.compare("hw"))) { soap->error = SOAP_FIXED; return NULL; } @@ -184315,7 +184310,7 @@ SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__LengthHorizontalWellboreFlowing::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__LengthHorizontalWellboreFlowing::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -184329,7 +184324,7 @@ SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__LengthHorizontalWellboreFlowing::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__LengthHorizontalWellboreFlowing::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -184339,35 +184334,35 @@ SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml return NULL; } else - { a = (prodml22__LengthHorizontalWellboreFlowing *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing, sizeof(prodml22__LengthHorizontalWellboreFlowing), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LengthHorizontalWellboreFlowing *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing, sizeof(prodml23__LengthHorizontalWellboreFlowing), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LengthHorizontalWellboreFlowing *p; - size_t k = sizeof(prodml22__LengthHorizontalWellboreFlowing); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing, n, gsoap_eml2_3_fdelete); + prodml23__LengthHorizontalWellboreFlowing *p; + size_t k = sizeof(prodml23__LengthHorizontalWellboreFlowing); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LengthHorizontalWellboreFlowing); + { p = SOAP_NEW(soap, prodml23__LengthHorizontalWellboreFlowing); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LengthHorizontalWellboreFlowing, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LengthHorizontalWellboreFlowing, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LengthHorizontalWellboreFlowing location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LengthHorizontalWellboreFlowing location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -184377,94 +184372,94 @@ SOAP_FMAC1 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantia return p; } -int prodml22__LengthHorizontalWellboreFlowing::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LengthHorizontalWellboreFlowing::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LengthHorizontalWellboreFlowing(soap, tag ? tag : "prodml22:LengthHorizontalWellboreFlowing", -2, this, type)) + if (soap_out_prodml23__LengthHorizontalWellboreFlowing(soap, tag ? tag : "prodml23:LengthHorizontalWellboreFlowing", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LengthHorizontalWellboreFlowing::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LengthHorizontalWellboreFlowing::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LengthHorizontalWellboreFlowing(soap, this, tag, type); + return soap_get_prodml23__LengthHorizontalWellboreFlowing(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_get_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_get_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LengthHorizontalWellboreFlowing(soap, tag, p, type))) + if ((p = soap_in_prodml23__LengthHorizontalWellboreFlowing(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LeakSkin::soap_default(struct soap *soap) +void prodml23__LeakSkin::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__LeakSkin::Abbreviation = "Sl"; - this->prodml22__LeakSkin::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__LeakSkin::Abbreviation = "Sl"; + this->prodml23__LeakSkin::Value = NULL; } -void prodml22__LeakSkin::soap_serialize(struct soap *soap) const +void prodml23__LeakSkin::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__LeakSkin::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__LeakSkin::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__LeakSkin::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__LeakSkin::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__LeakSkin::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__LeakSkin::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__LeakSkin::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LeakSkin::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LeakSkin(soap, tag, id, this, type); + return soap_out_prodml23__LeakSkin(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LeakSkin(struct soap *soap, const char *tag, int id, const prodml22__LeakSkin *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LeakSkin(struct soap *soap, const char *tag, int id, const prodml23__LeakSkin *a, const char *type) { if (!type) - type = "prodml22:LeakSkin"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:LeakSkin"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__LeakSkin), type ? type : "prodml22:LeakSkin")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin), type ? type : "prodml23:LeakSkin")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__LeakSkin::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__LeakSkin::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__LeakSkin::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__LeakSkin::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__LeakSkin::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__LeakSkin::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LeakSkin::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LeakSkin::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LeakSkin(soap, tag, this, type); + return soap_in_prodml23__LeakSkin(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_in_prodml22__LeakSkin(struct soap *soap, const char *tag, prodml22__LeakSkin *a, const char *type) +SOAP_FMAC3 prodml23__LeakSkin * SOAP_FMAC4 soap_in_prodml23__LeakSkin(struct soap *soap, const char *tag, prodml23__LeakSkin *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LeakSkin*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin, sizeof(prodml22__LeakSkin), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LeakSkin*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin, sizeof(prodml23__LeakSkin), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LeakSkin *)a->soap_in(soap, tag, type); + return (prodml23__LeakSkin *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -184475,21 +184470,21 @@ SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_in_prodml22__LeakSkin(struct soa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__LeakSkin::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__LeakSkin::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__LeakSkin::Abbreviation.compare("Sl"))) + if (*soap->href != '#' && (a->prodml23__LeakSkin::Abbreviation.compare("Sl"))) { soap->error = SOAP_FIXED; return NULL; } @@ -184497,7 +184492,7 @@ SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_in_prodml22__LeakSkin(struct soa } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__LeakSkin::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__LeakSkin::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -184511,7 +184506,7 @@ SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_in_prodml22__LeakSkin(struct soa } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__LeakSkin::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__LeakSkin::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -184521,35 +184516,35 @@ SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_in_prodml22__LeakSkin(struct soa return NULL; } else - { a = (prodml22__LeakSkin *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin, sizeof(prodml22__LeakSkin), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LeakSkin *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin, sizeof(prodml23__LeakSkin), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml22__LeakSkin(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml23__LeakSkin(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LeakSkin(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LeakSkin(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LeakSkin *p; - size_t k = sizeof(prodml22__LeakSkin); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin, n, gsoap_eml2_3_fdelete); + prodml23__LeakSkin *p; + size_t k = sizeof(prodml23__LeakSkin); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LeakSkin); + { p = SOAP_NEW(soap, prodml23__LeakSkin); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LeakSkin, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LeakSkin, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LeakSkin location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LeakSkin location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -184559,94 +184554,94 @@ SOAP_FMAC1 prodml22__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml22__LeakSkin(s return p; } -int prodml22__LeakSkin::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LeakSkin::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LeakSkin(soap, tag ? tag : "prodml22:LeakSkin", -2, this, type)) + if (soap_out_prodml23__LeakSkin(soap, tag ? tag : "prodml23:LeakSkin", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LeakSkin::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LeakSkin::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LeakSkin(soap, this, tag, type); + return soap_get_prodml23__LeakSkin(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_get_prodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LeakSkin * SOAP_FMAC4 soap_get_prodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LeakSkin(soap, tag, p, type))) + if ((p = soap_in_prodml23__LeakSkin(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Layer2Thickness::soap_default(struct soap *soap) +void prodml23__Layer2Thickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__Layer2Thickness::Abbreviation = "h layer 2"; - this->prodml22__Layer2Thickness::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__Layer2Thickness::Abbreviation = "h layer 2"; + this->prodml23__Layer2Thickness::Length = NULL; } -void prodml22__Layer2Thickness::soap_serialize(struct soap *soap) const +void prodml23__Layer2Thickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__Layer2Thickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__Layer2Thickness::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__Layer2Thickness::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__Layer2Thickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__Layer2Thickness::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__Layer2Thickness::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__Layer2Thickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Layer2Thickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Layer2Thickness(soap, tag, id, this, type); + return soap_out_prodml23__Layer2Thickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Layer2Thickness(struct soap *soap, const char *tag, int id, const prodml22__Layer2Thickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Layer2Thickness(struct soap *soap, const char *tag, int id, const prodml23__Layer2Thickness *a, const char *type) { if (!type) - type = "prodml22:Layer2Thickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:Layer2Thickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__Layer2Thickness), type ? type : "prodml22:Layer2Thickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness), type ? type : "prodml23:Layer2Thickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__Layer2Thickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__Layer2Thickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__Layer2Thickness::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__Layer2Thickness::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__Layer2Thickness::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__Layer2Thickness::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Layer2Thickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Layer2Thickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Layer2Thickness(soap, tag, this, type); + return soap_in_prodml23__Layer2Thickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_in_prodml22__Layer2Thickness(struct soap *soap, const char *tag, prodml22__Layer2Thickness *a, const char *type) +SOAP_FMAC3 prodml23__Layer2Thickness * SOAP_FMAC4 soap_in_prodml23__Layer2Thickness(struct soap *soap, const char *tag, prodml23__Layer2Thickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Layer2Thickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness, sizeof(prodml22__Layer2Thickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Layer2Thickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness, sizeof(prodml23__Layer2Thickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Layer2Thickness *)a->soap_in(soap, tag, type); + return (prodml23__Layer2Thickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -184657,21 +184652,21 @@ SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_in_prodml22__Layer2Thickn for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__Layer2Thickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__Layer2Thickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__Layer2Thickness::Abbreviation.compare("h layer 2"))) + if (*soap->href != '#' && (a->prodml23__Layer2Thickness::Abbreviation.compare("h layer 2"))) { soap->error = SOAP_FIXED; return NULL; } @@ -184679,7 +184674,7 @@ SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_in_prodml22__Layer2Thickn } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__Layer2Thickness::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__Layer2Thickness::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -184693,7 +184688,7 @@ SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_in_prodml22__Layer2Thickn } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__Layer2Thickness::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__Layer2Thickness::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -184703,35 +184698,35 @@ SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_in_prodml22__Layer2Thickn return NULL; } else - { a = (prodml22__Layer2Thickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness, sizeof(prodml22__Layer2Thickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Layer2Thickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness, sizeof(prodml23__Layer2Thickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Layer2Thickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml23__Layer2Thickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Layer2Thickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Layer2Thickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Layer2Thickness *p; - size_t k = sizeof(prodml22__Layer2Thickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness, n, gsoap_eml2_3_fdelete); + prodml23__Layer2Thickness *p; + size_t k = sizeof(prodml23__Layer2Thickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Layer2Thickness); + { p = SOAP_NEW(soap, prodml23__Layer2Thickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Layer2Thickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Layer2Thickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Layer2Thickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Layer2Thickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -184741,94 +184736,94 @@ SOAP_FMAC1 prodml22__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Lay return p; } -int prodml22__Layer2Thickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Layer2Thickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Layer2Thickness(soap, tag ? tag : "prodml22:Layer2Thickness", -2, this, type)) + if (soap_out_prodml23__Layer2Thickness(soap, tag ? tag : "prodml23:Layer2Thickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Layer2Thickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Layer2Thickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Layer2Thickness(soap, this, tag, type); + return soap_get_prodml23__Layer2Thickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_get_prodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Layer2Thickness * SOAP_FMAC4 soap_get_prodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Layer2Thickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__Layer2Thickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InterporosityFlowParameter::soap_default(struct soap *soap) +void prodml23__InterporosityFlowParameter::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__InterporosityFlowParameter::Abbreviation = "Lambda"; - this->prodml22__InterporosityFlowParameter::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__InterporosityFlowParameter::Abbreviation = "Lambda"; + this->prodml23__InterporosityFlowParameter::Value = NULL; } -void prodml22__InterporosityFlowParameter::soap_serialize(struct soap *soap) const +void prodml23__InterporosityFlowParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InterporosityFlowParameter::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__InterporosityFlowParameter::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__InterporosityFlowParameter::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__InterporosityFlowParameter::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__InterporosityFlowParameter::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__InterporosityFlowParameter::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__InterporosityFlowParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InterporosityFlowParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InterporosityFlowParameter(soap, tag, id, this, type); + return soap_out_prodml23__InterporosityFlowParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterporosityFlowParameter(struct soap *soap, const char *tag, int id, const prodml22__InterporosityFlowParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterporosityFlowParameter(struct soap *soap, const char *tag, int id, const prodml23__InterporosityFlowParameter *a, const char *type) { if (!type) - type = "prodml22:InterporosityFlowParameter"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:InterporosityFlowParameter"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__InterporosityFlowParameter), type ? type : "prodml22:InterporosityFlowParameter")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter), type ? type : "prodml23:InterporosityFlowParameter")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__InterporosityFlowParameter::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__InterporosityFlowParameter::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__InterporosityFlowParameter::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__InterporosityFlowParameter::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__InterporosityFlowParameter::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__InterporosityFlowParameter::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InterporosityFlowParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterporosityFlowParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InterporosityFlowParameter(soap, tag, this, type); + return soap_in_prodml23__InterporosityFlowParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml22__InterporosityFlowParameter(struct soap *soap, const char *tag, prodml22__InterporosityFlowParameter *a, const char *type) +SOAP_FMAC3 prodml23__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml23__InterporosityFlowParameter(struct soap *soap, const char *tag, prodml23__InterporosityFlowParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InterporosityFlowParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter, sizeof(prodml22__InterporosityFlowParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InterporosityFlowParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter, sizeof(prodml23__InterporosityFlowParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InterporosityFlowParameter *)a->soap_in(soap, tag, type); + return (prodml23__InterporosityFlowParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -184839,21 +184834,21 @@ SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml22__I for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__InterporosityFlowParameter::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__InterporosityFlowParameter::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__InterporosityFlowParameter::Abbreviation.compare("Lambda"))) + if (*soap->href != '#' && (a->prodml23__InterporosityFlowParameter::Abbreviation.compare("Lambda"))) { soap->error = SOAP_FIXED; return NULL; } @@ -184861,7 +184856,7 @@ SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml22__I } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__InterporosityFlowParameter::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__InterporosityFlowParameter::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -184875,7 +184870,7 @@ SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml22__I } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__InterporosityFlowParameter::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__InterporosityFlowParameter::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -184885,35 +184880,35 @@ SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml22__I return NULL; } else - { a = (prodml22__InterporosityFlowParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter, sizeof(prodml22__InterporosityFlowParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InterporosityFlowParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter, sizeof(prodml23__InterporosityFlowParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_prodml22__InterporosityFlowParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_prodml23__InterporosityFlowParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InterporosityFlowParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InterporosityFlowParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InterporosityFlowParameter *p; - size_t k = sizeof(prodml22__InterporosityFlowParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter, n, gsoap_eml2_3_fdelete); + prodml23__InterporosityFlowParameter *p; + size_t k = sizeof(prodml23__InterporosityFlowParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InterporosityFlowParameter); + { p = SOAP_NEW(soap, prodml23__InterporosityFlowParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InterporosityFlowParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InterporosityFlowParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InterporosityFlowParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InterporosityFlowParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -184923,94 +184918,94 @@ SOAP_FMAC1 prodml22__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__InterporosityFlowParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InterporosityFlowParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InterporosityFlowParameter(soap, tag ? tag : "prodml22:InterporosityFlowParameter", -2, this, type)) + if (soap_out_prodml23__InterporosityFlowParameter(soap, tag ? tag : "prodml23:InterporosityFlowParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InterporosityFlowParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterporosityFlowParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InterporosityFlowParameter(soap, this, tag, type); + return soap_get_prodml23__InterporosityFlowParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_get_prodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterporosityFlowParameter * SOAP_FMAC4 soap_get_prodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InterporosityFlowParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__InterporosityFlowParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InnerToOuterZoneMobilityRatio::soap_default(struct soap *soap) +void prodml23__InnerToOuterZoneMobilityRatio::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation = "M"; - this->prodml22__InnerToOuterZoneMobilityRatio::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation = "M"; + this->prodml23__InnerToOuterZoneMobilityRatio::Value = NULL; } -void prodml22__InnerToOuterZoneMobilityRatio::soap_serialize(struct soap *soap) const +void prodml23__InnerToOuterZoneMobilityRatio::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__InnerToOuterZoneMobilityRatio::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__InnerToOuterZoneMobilityRatio::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__InnerToOuterZoneMobilityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InnerToOuterZoneMobilityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InnerToOuterZoneMobilityRatio(soap, tag, id, this, type); + return soap_out_prodml23__InnerToOuterZoneMobilityRatio(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, int id, const prodml22__InnerToOuterZoneMobilityRatio *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, int id, const prodml23__InnerToOuterZoneMobilityRatio *a, const char *type) { if (!type) - type = "prodml22:InnerToOuterZoneMobilityRatio"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:InnerToOuterZoneMobilityRatio"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio), type ? type : "prodml22:InnerToOuterZoneMobilityRatio")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio), type ? type : "prodml23:InnerToOuterZoneMobilityRatio")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__InnerToOuterZoneMobilityRatio::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__InnerToOuterZoneMobilityRatio::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__InnerToOuterZoneMobilityRatio::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__InnerToOuterZoneMobilityRatio::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InnerToOuterZoneMobilityRatio::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InnerToOuterZoneMobilityRatio::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InnerToOuterZoneMobilityRatio(soap, tag, this, type); + return soap_in_prodml23__InnerToOuterZoneMobilityRatio(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, prodml22__InnerToOuterZoneMobilityRatio *a, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, prodml23__InnerToOuterZoneMobilityRatio *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InnerToOuterZoneMobilityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio, sizeof(prodml22__InnerToOuterZoneMobilityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InnerToOuterZoneMobilityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio, sizeof(prodml23__InnerToOuterZoneMobilityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InnerToOuterZoneMobilityRatio *)a->soap_in(soap, tag, type); + return (prodml23__InnerToOuterZoneMobilityRatio *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -185021,21 +185016,21 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation.compare("M"))) + if (*soap->href != '#' && (a->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation.compare("M"))) { soap->error = SOAP_FIXED; return NULL; } @@ -185043,7 +185038,7 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml22 } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__InnerToOuterZoneMobilityRatio::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__InnerToOuterZoneMobilityRatio::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -185057,7 +185052,7 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml22 } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__InnerToOuterZoneMobilityRatio::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__InnerToOuterZoneMobilityRatio::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -185067,35 +185062,35 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__InnerToOuterZoneMobilityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio, sizeof(prodml22__InnerToOuterZoneMobilityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InnerToOuterZoneMobilityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio, sizeof(prodml23__InnerToOuterZoneMobilityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InnerToOuterZoneMobilityRatio *p; - size_t k = sizeof(prodml22__InnerToOuterZoneMobilityRatio); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio, n, gsoap_eml2_3_fdelete); + prodml23__InnerToOuterZoneMobilityRatio *p; + size_t k = sizeof(prodml23__InnerToOuterZoneMobilityRatio); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InnerToOuterZoneMobilityRatio); + { p = SOAP_NEW(soap, prodml23__InnerToOuterZoneMobilityRatio); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InnerToOuterZoneMobilityRatio, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InnerToOuterZoneMobilityRatio, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InnerToOuterZoneMobilityRatio location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InnerToOuterZoneMobilityRatio location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -185105,94 +185100,94 @@ SOAP_FMAC1 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__InnerToOuterZoneMobilityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InnerToOuterZoneMobilityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InnerToOuterZoneMobilityRatio(soap, tag ? tag : "prodml22:InnerToOuterZoneMobilityRatio", -2, this, type)) + if (soap_out_prodml23__InnerToOuterZoneMobilityRatio(soap, tag ? tag : "prodml23:InnerToOuterZoneMobilityRatio", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InnerToOuterZoneMobilityRatio::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InnerToOuterZoneMobilityRatio::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InnerToOuterZoneMobilityRatio(soap, this, tag, type); + return soap_get_prodml23__InnerToOuterZoneMobilityRatio(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_get_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_get_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InnerToOuterZoneMobilityRatio(soap, tag, p, type))) + if ((p = soap_in_prodml23__InnerToOuterZoneMobilityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InnerToOuterZoneDiffusivityRatio::soap_default(struct soap *soap) +void prodml23__InnerToOuterZoneDiffusivityRatio::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation = "D"; - this->prodml22__InnerToOuterZoneDiffusivityRatio::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation = "D"; + this->prodml23__InnerToOuterZoneDiffusivityRatio::Value = NULL; } -void prodml22__InnerToOuterZoneDiffusivityRatio::soap_serialize(struct soap *soap) const +void prodml23__InnerToOuterZoneDiffusivityRatio::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__InnerToOuterZoneDiffusivityRatio::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__InnerToOuterZoneDiffusivityRatio::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__InnerToOuterZoneDiffusivityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InnerToOuterZoneDiffusivityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, id, this, type); + return soap_out_prodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, int id, const prodml22__InnerToOuterZoneDiffusivityRatio *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, int id, const prodml23__InnerToOuterZoneDiffusivityRatio *a, const char *type) { if (!type) - type = "prodml22:InnerToOuterZoneDiffusivityRatio"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:InnerToOuterZoneDiffusivityRatio"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio), type ? type : "prodml22:InnerToOuterZoneDiffusivityRatio")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio), type ? type : "prodml23:InnerToOuterZoneDiffusivityRatio")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__InnerToOuterZoneDiffusivityRatio::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__InnerToOuterZoneDiffusivityRatio::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__InnerToOuterZoneDiffusivityRatio::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__InnerToOuterZoneDiffusivityRatio::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InnerToOuterZoneDiffusivityRatio::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InnerToOuterZoneDiffusivityRatio::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, this, type); + return soap_in_prodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, prodml22__InnerToOuterZoneDiffusivityRatio *a, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, prodml23__InnerToOuterZoneDiffusivityRatio *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InnerToOuterZoneDiffusivityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio, sizeof(prodml22__InnerToOuterZoneDiffusivityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InnerToOuterZoneDiffusivityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio, sizeof(prodml23__InnerToOuterZoneDiffusivityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InnerToOuterZoneDiffusivityRatio *)a->soap_in(soap, tag, type); + return (prodml23__InnerToOuterZoneDiffusivityRatio *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -185203,21 +185198,21 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation.compare("D"))) + if (*soap->href != '#' && (a->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation.compare("D"))) { soap->error = SOAP_FIXED; return NULL; } @@ -185225,7 +185220,7 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodm } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__InnerToOuterZoneDiffusivityRatio::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__InnerToOuterZoneDiffusivityRatio::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -185239,7 +185234,7 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__InnerToOuterZoneDiffusivityRatio::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__InnerToOuterZoneDiffusivityRatio::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -185249,35 +185244,35 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__InnerToOuterZoneDiffusivityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio, sizeof(prodml22__InnerToOuterZoneDiffusivityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InnerToOuterZoneDiffusivityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio, sizeof(prodml23__InnerToOuterZoneDiffusivityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InnerToOuterZoneDiffusivityRatio *p; - size_t k = sizeof(prodml22__InnerToOuterZoneDiffusivityRatio); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio, n, gsoap_eml2_3_fdelete); + prodml23__InnerToOuterZoneDiffusivityRatio *p; + size_t k = sizeof(prodml23__InnerToOuterZoneDiffusivityRatio); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InnerToOuterZoneDiffusivityRatio); + { p = SOAP_NEW(soap, prodml23__InnerToOuterZoneDiffusivityRatio); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InnerToOuterZoneDiffusivityRatio, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InnerToOuterZoneDiffusivityRatio, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InnerToOuterZoneDiffusivityRatio location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InnerToOuterZoneDiffusivityRatio location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -185287,94 +185282,94 @@ SOAP_FMAC1 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instanti return p; } -int prodml22__InnerToOuterZoneDiffusivityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InnerToOuterZoneDiffusivityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InnerToOuterZoneDiffusivityRatio(soap, tag ? tag : "prodml22:InnerToOuterZoneDiffusivityRatio", -2, this, type)) + if (soap_out_prodml23__InnerToOuterZoneDiffusivityRatio(soap, tag ? tag : "prodml23:InnerToOuterZoneDiffusivityRatio", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InnerToOuterZoneDiffusivityRatio::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InnerToOuterZoneDiffusivityRatio::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InnerToOuterZoneDiffusivityRatio(soap, this, tag, type); + return soap_get_prodml23__InnerToOuterZoneDiffusivityRatio(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_get_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_get_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, p, type))) + if ((p = soap_in_prodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InitialPressure::soap_default(struct soap *soap) +void prodml23__InitialPressure::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__InitialPressure::Abbreviation = "Pi"; - this->prodml22__InitialPressure::Pressure = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__InitialPressure::Abbreviation = "Pi"; + this->prodml23__InitialPressure::Pressure = NULL; } -void prodml22__InitialPressure::soap_serialize(struct soap *soap) const +void prodml23__InitialPressure::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InitialPressure::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__InitialPressure::Abbreviation); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__InitialPressure::Pressure); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__InitialPressure::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__InitialPressure::Abbreviation); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__InitialPressure::Pressure); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__InitialPressure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InitialPressure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InitialPressure(soap, tag, id, this, type); + return soap_out_prodml23__InitialPressure(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InitialPressure(struct soap *soap, const char *tag, int id, const prodml22__InitialPressure *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InitialPressure(struct soap *soap, const char *tag, int id, const prodml23__InitialPressure *a, const char *type) { if (!type) - type = "prodml22:InitialPressure"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:InitialPressure"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__InitialPressure), type ? type : "prodml22:InitialPressure")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure), type ? type : "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__InitialPressure::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__InitialPressure::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__InitialPressure::Pressure) - { if (soap_element_empty(soap, "prodml22:Pressure", 0, NULL)) + if (!a->prodml23__InitialPressure::Pressure) + { if (soap_element_empty(soap, "prodml23:Pressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__InitialPressure::Pressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__InitialPressure::Pressure, "eml23:PressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InitialPressure::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InitialPressure::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InitialPressure(soap, tag, this, type); + return soap_in_prodml23__InitialPressure(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_in_prodml22__InitialPressure(struct soap *soap, const char *tag, prodml22__InitialPressure *a, const char *type) +SOAP_FMAC3 prodml23__InitialPressure * SOAP_FMAC4 soap_in_prodml23__InitialPressure(struct soap *soap, const char *tag, prodml23__InitialPressure *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InitialPressure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure, sizeof(prodml22__InitialPressure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InitialPressure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure, sizeof(prodml23__InitialPressure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InitialPressure *)a->soap_in(soap, tag, type); + return (prodml23__InitialPressure *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -185385,21 +185380,21 @@ SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_in_prodml22__InitialPress for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__InitialPressure::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__InitialPressure::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__InitialPressure::Abbreviation.compare("Pi"))) + if (*soap->href != '#' && (a->prodml23__InitialPressure::Abbreviation.compare("Pi"))) { soap->error = SOAP_FIXED; return NULL; } @@ -185407,7 +185402,7 @@ SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_in_prodml22__InitialPress } } if (soap_flag_Pressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__InitialPressure::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__InitialPressure::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure1--; continue; } @@ -185421,7 +185416,7 @@ SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_in_prodml22__InitialPress } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__InitialPressure::Pressure)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__InitialPressure::Pressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -185431,35 +185426,35 @@ SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_in_prodml22__InitialPress return NULL; } else - { a = (prodml22__InitialPressure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure, sizeof(prodml22__InitialPressure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InitialPressure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure, sizeof(prodml23__InitialPressure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml22__InitialPressure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml23__InitialPressure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InitialPressure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InitialPressure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InitialPressure *p; - size_t k = sizeof(prodml22__InitialPressure); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure, n, gsoap_eml2_3_fdelete); + prodml23__InitialPressure *p; + size_t k = sizeof(prodml23__InitialPressure); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InitialPressure); + { p = SOAP_NEW(soap, prodml23__InitialPressure); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InitialPressure, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InitialPressure, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InitialPressure location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InitialPressure location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -185469,94 +185464,94 @@ SOAP_FMAC1 prodml22__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml22__Ini return p; } -int prodml22__InitialPressure::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InitialPressure::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InitialPressure(soap, tag ? tag : "prodml22:InitialPressure", -2, this, type)) + if (soap_out_prodml23__InitialPressure(soap, tag ? tag : "prodml23:InitialPressure", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InitialPressure::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InitialPressure::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InitialPressure(soap, this, tag, type); + return soap_get_prodml23__InitialPressure(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_get_prodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InitialPressure * SOAP_FMAC4 soap_get_prodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InitialPressure(soap, tag, p, type))) + if ((p = soap_in_prodml23__InitialPressure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HorizontalRadialPermeability::soap_default(struct soap *soap) +void prodml23__HorizontalRadialPermeability::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__HorizontalRadialPermeability::Abbreviation = "K"; - this->prodml22__HorizontalRadialPermeability::Permeability = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__HorizontalRadialPermeability::Abbreviation = "K"; + this->prodml23__HorizontalRadialPermeability::Permeability = NULL; } -void prodml22__HorizontalRadialPermeability::soap_serialize(struct soap *soap) const +void prodml23__HorizontalRadialPermeability::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__HorizontalRadialPermeability::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__HorizontalRadialPermeability::Abbreviation); - soap_serialize_PointerToeml23__PermeabilityRockMeasureExt(soap, &this->prodml22__HorizontalRadialPermeability::Permeability); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__HorizontalRadialPermeability::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__HorizontalRadialPermeability::Abbreviation); + soap_serialize_PointerToeml23__PermeabilityRockMeasureExt(soap, &this->prodml23__HorizontalRadialPermeability::Permeability); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__HorizontalRadialPermeability::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HorizontalRadialPermeability::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HorizontalRadialPermeability(soap, tag, id, this, type); + return soap_out_prodml23__HorizontalRadialPermeability(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalRadialPermeability(struct soap *soap, const char *tag, int id, const prodml22__HorizontalRadialPermeability *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalRadialPermeability(struct soap *soap, const char *tag, int id, const prodml23__HorizontalRadialPermeability *a, const char *type) { if (!type) - type = "prodml22:HorizontalRadialPermeability"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:HorizontalRadialPermeability"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__HorizontalRadialPermeability), type ? type : "prodml22:HorizontalRadialPermeability")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability), type ? type : "prodml23:HorizontalRadialPermeability")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__HorizontalRadialPermeability::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__HorizontalRadialPermeability::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__HorizontalRadialPermeability::Permeability) - { if (soap_element_empty(soap, "prodml22:Permeability", 0, NULL)) + if (!a->prodml23__HorizontalRadialPermeability::Permeability) + { if (soap_element_empty(soap, "prodml23:Permeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PermeabilityRockMeasureExt(soap, "prodml22:Permeability", -1, &a->prodml22__HorizontalRadialPermeability::Permeability, "eml23:PermeabilityRockMeasureExt")) + else if (soap_out_PointerToeml23__PermeabilityRockMeasureExt(soap, "prodml23:Permeability", -1, &a->prodml23__HorizontalRadialPermeability::Permeability, "eml23:PermeabilityRockMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HorizontalRadialPermeability::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalRadialPermeability::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HorizontalRadialPermeability(soap, tag, this, type); + return soap_in_prodml23__HorizontalRadialPermeability(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml22__HorizontalRadialPermeability(struct soap *soap, const char *tag, prodml22__HorizontalRadialPermeability *a, const char *type) +SOAP_FMAC3 prodml23__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml23__HorizontalRadialPermeability(struct soap *soap, const char *tag, prodml23__HorizontalRadialPermeability *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HorizontalRadialPermeability*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability, sizeof(prodml22__HorizontalRadialPermeability), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HorizontalRadialPermeability*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability, sizeof(prodml23__HorizontalRadialPermeability), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HorizontalRadialPermeability *)a->soap_in(soap, tag, type); + return (prodml23__HorizontalRadialPermeability *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -185567,21 +185562,21 @@ SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__HorizontalRadialPermeability::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__HorizontalRadialPermeability::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__HorizontalRadialPermeability::Abbreviation.compare("K"))) + if (*soap->href != '#' && (a->prodml23__HorizontalRadialPermeability::Abbreviation.compare("K"))) { soap->error = SOAP_FIXED; return NULL; } @@ -185589,7 +185584,7 @@ SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml22_ } } if (soap_flag_Permeability1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PermeabilityRockMeasureExt(soap, "prodml22:Permeability", &a->prodml22__HorizontalRadialPermeability::Permeability, "eml23:PermeabilityRockMeasureExt")) + { if (soap_in_PointerToeml23__PermeabilityRockMeasureExt(soap, "prodml23:Permeability", &a->prodml23__HorizontalRadialPermeability::Permeability, "eml23:PermeabilityRockMeasureExt")) { soap_flag_Permeability1--; continue; } @@ -185603,7 +185598,7 @@ SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml22_ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__HorizontalRadialPermeability::Permeability)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__HorizontalRadialPermeability::Permeability)) { soap->error = SOAP_OCCURS; return NULL; } @@ -185613,35 +185608,35 @@ SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__HorizontalRadialPermeability *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability, sizeof(prodml22__HorizontalRadialPermeability), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalRadialPermeability *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability, sizeof(prodml23__HorizontalRadialPermeability), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalRadialPermeability(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalRadialPermeability(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HorizontalRadialPermeability(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HorizontalRadialPermeability(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HorizontalRadialPermeability *p; - size_t k = sizeof(prodml22__HorizontalRadialPermeability); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability, n, gsoap_eml2_3_fdelete); + prodml23__HorizontalRadialPermeability *p; + size_t k = sizeof(prodml23__HorizontalRadialPermeability); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HorizontalRadialPermeability); + { p = SOAP_NEW(soap, prodml23__HorizontalRadialPermeability); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HorizontalRadialPermeability, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HorizontalRadialPermeability, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HorizontalRadialPermeability location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HorizontalRadialPermeability location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -185651,94 +185646,94 @@ SOAP_FMAC1 prodml22__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__HorizontalRadialPermeability::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HorizontalRadialPermeability::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HorizontalRadialPermeability(soap, tag ? tag : "prodml22:HorizontalRadialPermeability", -2, this, type)) + if (soap_out_prodml23__HorizontalRadialPermeability(soap, tag ? tag : "prodml23:HorizontalRadialPermeability", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HorizontalRadialPermeability::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalRadialPermeability::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HorizontalRadialPermeability(soap, this, tag, type); + return soap_get_prodml23__HorizontalRadialPermeability(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_get_prodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalRadialPermeability * SOAP_FMAC4 soap_get_prodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HorizontalRadialPermeability(soap, tag, p, type))) + if ((p = soap_in_prodml23__HorizontalRadialPermeability(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HorizontalAnisotropyKxToKy::soap_default(struct soap *soap) +void prodml23__HorizontalAnisotropyKxToKy::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__HorizontalAnisotropyKxToKy::Abbreviation = "kxToky"; - this->prodml22__HorizontalAnisotropyKxToKy::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__HorizontalAnisotropyKxToKy::Abbreviation = "kxToky"; + this->prodml23__HorizontalAnisotropyKxToKy::Value = NULL; } -void prodml22__HorizontalAnisotropyKxToKy::soap_serialize(struct soap *soap) const +void prodml23__HorizontalAnisotropyKxToKy::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__HorizontalAnisotropyKxToKy::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__HorizontalAnisotropyKxToKy::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__HorizontalAnisotropyKxToKy::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__HorizontalAnisotropyKxToKy::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__HorizontalAnisotropyKxToKy::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__HorizontalAnisotropyKxToKy::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__HorizontalAnisotropyKxToKy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HorizontalAnisotropyKxToKy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HorizontalAnisotropyKxToKy(soap, tag, id, this, type); + return soap_out_prodml23__HorizontalAnisotropyKxToKy(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, int id, const prodml22__HorizontalAnisotropyKxToKy *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, int id, const prodml23__HorizontalAnisotropyKxToKy *a, const char *type) { if (!type) - type = "prodml22:HorizontalAnisotropyKxToKy"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:HorizontalAnisotropyKxToKy"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy), type ? type : "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy), type ? type : "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__HorizontalAnisotropyKxToKy::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__HorizontalAnisotropyKxToKy::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__HorizontalAnisotropyKxToKy::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__HorizontalAnisotropyKxToKy::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__HorizontalAnisotropyKxToKy::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__HorizontalAnisotropyKxToKy::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HorizontalAnisotropyKxToKy::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalAnisotropyKxToKy::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HorizontalAnisotropyKxToKy(soap, tag, this, type); + return soap_in_prodml23__HorizontalAnisotropyKxToKy(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, prodml22__HorizontalAnisotropyKxToKy *a, const char *type) +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, prodml23__HorizontalAnisotropyKxToKy *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HorizontalAnisotropyKxToKy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy, sizeof(prodml22__HorizontalAnisotropyKxToKy), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HorizontalAnisotropyKxToKy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy, sizeof(prodml23__HorizontalAnisotropyKxToKy), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HorizontalAnisotropyKxToKy *)a->soap_in(soap, tag, type); + return (prodml23__HorizontalAnisotropyKxToKy *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -185749,21 +185744,21 @@ SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml22__H for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__HorizontalAnisotropyKxToKy::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__HorizontalAnisotropyKxToKy::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__HorizontalAnisotropyKxToKy::Abbreviation.compare("kxToky"))) + if (*soap->href != '#' && (a->prodml23__HorizontalAnisotropyKxToKy::Abbreviation.compare("kxToky"))) { soap->error = SOAP_FIXED; return NULL; } @@ -185771,7 +185766,7 @@ SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml22__H } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__HorizontalAnisotropyKxToKy::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__HorizontalAnisotropyKxToKy::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -185785,7 +185780,7 @@ SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml22__H } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__HorizontalAnisotropyKxToKy::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__HorizontalAnisotropyKxToKy::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -185795,35 +185790,35 @@ SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml22__H return NULL; } else - { a = (prodml22__HorizontalAnisotropyKxToKy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy, sizeof(prodml22__HorizontalAnisotropyKxToKy), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalAnisotropyKxToKy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy, sizeof(prodml23__HorizontalAnisotropyKxToKy), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HorizontalAnisotropyKxToKy *p; - size_t k = sizeof(prodml22__HorizontalAnisotropyKxToKy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy, n, gsoap_eml2_3_fdelete); + prodml23__HorizontalAnisotropyKxToKy *p; + size_t k = sizeof(prodml23__HorizontalAnisotropyKxToKy); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HorizontalAnisotropyKxToKy); + { p = SOAP_NEW(soap, prodml23__HorizontalAnisotropyKxToKy); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HorizontalAnisotropyKxToKy, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HorizontalAnisotropyKxToKy, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HorizontalAnisotropyKxToKy location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HorizontalAnisotropyKxToKy location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -185833,94 +185828,94 @@ SOAP_FMAC1 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__HorizontalAnisotropyKxToKy::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HorizontalAnisotropyKxToKy::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HorizontalAnisotropyKxToKy(soap, tag ? tag : "prodml22:HorizontalAnisotropyKxToKy", -2, this, type)) + if (soap_out_prodml23__HorizontalAnisotropyKxToKy(soap, tag ? tag : "prodml23:HorizontalAnisotropyKxToKy", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HorizontalAnisotropyKxToKy::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalAnisotropyKxToKy::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HorizontalAnisotropyKxToKy(soap, this, tag, type); + return soap_get_prodml23__HorizontalAnisotropyKxToKy(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_get_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_get_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HorizontalAnisotropyKxToKy(soap, tag, p, type))) + if ((p = soap_in_prodml23__HorizontalAnisotropyKxToKy(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureStorativityRatio::soap_default(struct soap *soap) +void prodml23__FractureStorativityRatio::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureStorativityRatio::Abbreviation = "etaD"; - this->prodml22__FractureStorativityRatio::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureStorativityRatio::Abbreviation = "etaD"; + this->prodml23__FractureStorativityRatio::Value = NULL; } -void prodml22__FractureStorativityRatio::soap_serialize(struct soap *soap) const +void prodml23__FractureStorativityRatio::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureStorativityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FractureStorativityRatio::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__FractureStorativityRatio::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureStorativityRatio::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FractureStorativityRatio::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__FractureStorativityRatio::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureStorativityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureStorativityRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureStorativityRatio(soap, tag, id, this, type); + return soap_out_prodml23__FractureStorativityRatio(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureStorativityRatio(struct soap *soap, const char *tag, int id, const prodml22__FractureStorativityRatio *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureStorativityRatio(struct soap *soap, const char *tag, int id, const prodml23__FractureStorativityRatio *a, const char *type) { if (!type) - type = "prodml22:FractureStorativityRatio"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureStorativityRatio"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureStorativityRatio), type ? type : "prodml22:FractureStorativityRatio")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio), type ? type : "prodml23:FractureStorativityRatio")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FractureStorativityRatio::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FractureStorativityRatio::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FractureStorativityRatio::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__FractureStorativityRatio::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__FractureStorativityRatio::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__FractureStorativityRatio::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureStorativityRatio::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureStorativityRatio::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureStorativityRatio(soap, tag, this, type); + return soap_in_prodml23__FractureStorativityRatio(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml22__FractureStorativityRatio(struct soap *soap, const char *tag, prodml22__FractureStorativityRatio *a, const char *type) +SOAP_FMAC3 prodml23__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml23__FractureStorativityRatio(struct soap *soap, const char *tag, prodml23__FractureStorativityRatio *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureStorativityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio, sizeof(prodml22__FractureStorativityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureStorativityRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio, sizeof(prodml23__FractureStorativityRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureStorativityRatio *)a->soap_in(soap, tag, type); + return (prodml23__FractureStorativityRatio *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -185931,21 +185926,21 @@ SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml22__Fra for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FractureStorativityRatio::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FractureStorativityRatio::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureStorativityRatio::Abbreviation.compare("etaD"))) + if (*soap->href != '#' && (a->prodml23__FractureStorativityRatio::Abbreviation.compare("etaD"))) { soap->error = SOAP_FIXED; return NULL; } @@ -185953,7 +185948,7 @@ SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml22__Fra } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__FractureStorativityRatio::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__FractureStorativityRatio::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -185967,7 +185962,7 @@ SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml22__Fra } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FractureStorativityRatio::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FractureStorativityRatio::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -185977,35 +185972,35 @@ SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml22__Fra return NULL; } else - { a = (prodml22__FractureStorativityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio, sizeof(prodml22__FractureStorativityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureStorativityRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio, sizeof(prodml23__FractureStorativityRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__FractureStorativityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prodml23__FractureStorativityRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureStorativityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureStorativityRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureStorativityRatio *p; - size_t k = sizeof(prodml22__FractureStorativityRatio); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio, n, gsoap_eml2_3_fdelete); + prodml23__FractureStorativityRatio *p; + size_t k = sizeof(prodml23__FractureStorativityRatio); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureStorativityRatio); + { p = SOAP_NEW(soap, prodml23__FractureStorativityRatio); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureStorativityRatio, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureStorativityRatio, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureStorativityRatio location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureStorativityRatio location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -186015,91 +186010,91 @@ SOAP_FMAC1 prodml22__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__FractureStorativityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureStorativityRatio::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureStorativityRatio(soap, tag ? tag : "prodml22:FractureStorativityRatio", -2, this, type)) + if (soap_out_prodml23__FractureStorativityRatio(soap, tag ? tag : "prodml23:FractureStorativityRatio", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureStorativityRatio::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureStorativityRatio::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureStorativityRatio(soap, this, tag, type); + return soap_get_prodml23__FractureStorativityRatio(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_get_prodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureStorativityRatio * SOAP_FMAC4 soap_get_prodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureStorativityRatio(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureStorativityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureRadius::soap_default(struct soap *soap) +void prodml23__FractureRadius::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureRadius::abbreviation = "Rf"; - soap_default_std__string(soap, &this->prodml22__FractureRadius::length); + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureRadius::abbreviation = "Rf"; + soap_default_std__string(soap, &this->prodml23__FractureRadius::length); } -void prodml22__FractureRadius::soap_serialize(struct soap *soap) const +void prodml23__FractureRadius::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureRadius::abbreviation, SOAP_TYPE_gsoap_eml2_3_std__string); - soap_serialize_std__string(soap, &this->prodml22__FractureRadius::abbreviation); - soap_embedded(soap, &this->prodml22__FractureRadius::length, SOAP_TYPE_gsoap_eml2_3_std__string); - soap_serialize_std__string(soap, &this->prodml22__FractureRadius::length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureRadius::abbreviation, SOAP_TYPE_gsoap_eml2_3_std__string); + soap_serialize_std__string(soap, &this->prodml23__FractureRadius::abbreviation); + soap_embedded(soap, &this->prodml23__FractureRadius::length, SOAP_TYPE_gsoap_eml2_3_std__string); + soap_serialize_std__string(soap, &this->prodml23__FractureRadius::length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureRadius::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureRadius::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureRadius(soap, tag, id, this, type); + return soap_out_prodml23__FractureRadius(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureRadius(struct soap *soap, const char *tag, int id, const prodml22__FractureRadius *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureRadius(struct soap *soap, const char *tag, int id, const prodml23__FractureRadius *a, const char *type) { if (!type) - type = "prodml22:FractureRadius"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureRadius"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureRadius), type ? type : "prodml22:FractureRadius")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius), type ? type : "prodml23:FractureRadius")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__string(soap, "prodml22:abbreviation", -1, &a->prodml22__FractureRadius::abbreviation, "xsd:string")) + if (soap_out_std__string(soap, "prodml23:abbreviation", -1, &a->prodml23__FractureRadius::abbreviation, "xsd:string")) return soap->error; - if (soap_out_std__string(soap, "prodml22:length", -1, &a->prodml22__FractureRadius::length, "xsd:string")) + if (soap_out_std__string(soap, "prodml23:length", -1, &a->prodml23__FractureRadius::length, "xsd:string")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureRadius::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureRadius::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureRadius(soap, tag, this, type); + return soap_in_prodml23__FractureRadius(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_in_prodml22__FractureRadius(struct soap *soap, const char *tag, prodml22__FractureRadius *a, const char *type) +SOAP_FMAC3 prodml23__FractureRadius * SOAP_FMAC4 soap_in_prodml23__FractureRadius(struct soap *soap, const char *tag, prodml23__FractureRadius *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureRadius*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius, sizeof(prodml22__FractureRadius), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureRadius*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius, sizeof(prodml23__FractureRadius), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureRadius *)a->soap_in(soap, tag, type); + return (prodml23__FractureRadius *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -186110,21 +186105,21 @@ SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_in_prodml22__FractureRadiu for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "prodml22:abbreviation", &a->prodml22__FractureRadius::abbreviation, "xsd:string")) + { if (soap_in_std__string(soap, "prodml23:abbreviation", &a->prodml23__FractureRadius::abbreviation, "xsd:string")) { soap_flag_abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureRadius::abbreviation.compare("Rf"))) + if (*soap->href != '#' && (a->prodml23__FractureRadius::abbreviation.compare("Rf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -186132,7 +186127,7 @@ SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_in_prodml22__FractureRadiu } } if (soap_flag_length1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_std__string(soap, "prodml22:length", &a->prodml22__FractureRadius::length, "xsd:string")) + { if (soap_in_std__string(soap, "prodml23:length", &a->prodml23__FractureRadius::length, "xsd:string")) { soap_flag_length1--; continue; } @@ -186156,35 +186151,35 @@ SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_in_prodml22__FractureRadiu return NULL; } else - { a = (prodml22__FractureRadius *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius, sizeof(prodml22__FractureRadius), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureRadius *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius, sizeof(prodml23__FractureRadius), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml22__FractureRadius(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml23__FractureRadius(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureRadius(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureRadius(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureRadius *p; - size_t k = sizeof(prodml22__FractureRadius); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius, n, gsoap_eml2_3_fdelete); + prodml23__FractureRadius *p; + size_t k = sizeof(prodml23__FractureRadius); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureRadius); + { p = SOAP_NEW(soap, prodml23__FractureRadius); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureRadius, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureRadius, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureRadius location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureRadius location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -186194,94 +186189,94 @@ SOAP_FMAC1 prodml22__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml22__Frac return p; } -int prodml22__FractureRadius::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureRadius::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureRadius(soap, tag ? tag : "prodml22:FractureRadius", -2, this, type)) + if (soap_out_prodml23__FractureRadius(soap, tag ? tag : "prodml23:FractureRadius", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureRadius::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureRadius::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureRadius(soap, this, tag, type); + return soap_get_prodml23__FractureRadius(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_get_prodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureRadius * SOAP_FMAC4 soap_get_prodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureRadius(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureRadius(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureHeight::soap_default(struct soap *soap) +void prodml23__FractureHeight::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureHeight::Abbreviation = "Hf"; - this->prodml22__FractureHeight::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureHeight::Abbreviation = "Hf"; + this->prodml23__FractureHeight::Length = NULL; } -void prodml22__FractureHeight::soap_serialize(struct soap *soap) const +void prodml23__FractureHeight::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureHeight::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FractureHeight::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__FractureHeight::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureHeight::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FractureHeight::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__FractureHeight::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureHeight::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureHeight::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureHeight(soap, tag, id, this, type); + return soap_out_prodml23__FractureHeight(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureHeight(struct soap *soap, const char *tag, int id, const prodml22__FractureHeight *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureHeight(struct soap *soap, const char *tag, int id, const prodml23__FractureHeight *a, const char *type) { if (!type) - type = "prodml22:FractureHeight"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureHeight"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureHeight), type ? type : "prodml22:FractureHeight")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight), type ? type : "prodml23:FractureHeight")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FractureHeight::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FractureHeight::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FractureHeight::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__FractureHeight::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__FractureHeight::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__FractureHeight::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureHeight::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureHeight::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureHeight(soap, tag, this, type); + return soap_in_prodml23__FractureHeight(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_in_prodml22__FractureHeight(struct soap *soap, const char *tag, prodml22__FractureHeight *a, const char *type) +SOAP_FMAC3 prodml23__FractureHeight * SOAP_FMAC4 soap_in_prodml23__FractureHeight(struct soap *soap, const char *tag, prodml23__FractureHeight *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureHeight*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight, sizeof(prodml22__FractureHeight), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureHeight*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight, sizeof(prodml23__FractureHeight), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureHeight *)a->soap_in(soap, tag, type); + return (prodml23__FractureHeight *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -186292,21 +186287,21 @@ SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_in_prodml22__FractureHeigh for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FractureHeight::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FractureHeight::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureHeight::Abbreviation.compare("Hf"))) + if (*soap->href != '#' && (a->prodml23__FractureHeight::Abbreviation.compare("Hf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -186314,7 +186309,7 @@ SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_in_prodml22__FractureHeigh } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__FractureHeight::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__FractureHeight::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -186328,7 +186323,7 @@ SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_in_prodml22__FractureHeigh } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FractureHeight::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FractureHeight::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -186338,35 +186333,35 @@ SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_in_prodml22__FractureHeigh return NULL; } else - { a = (prodml22__FractureHeight *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight, sizeof(prodml22__FractureHeight), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureHeight *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight, sizeof(prodml23__FractureHeight), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml22__FractureHeight(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml23__FractureHeight(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureHeight(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureHeight(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureHeight *p; - size_t k = sizeof(prodml22__FractureHeight); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight, n, gsoap_eml2_3_fdelete); + prodml23__FractureHeight *p; + size_t k = sizeof(prodml23__FractureHeight); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureHeight); + { p = SOAP_NEW(soap, prodml23__FractureHeight); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureHeight, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureHeight, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureHeight location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureHeight location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -186376,94 +186371,94 @@ SOAP_FMAC1 prodml22__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml22__Frac return p; } -int prodml22__FractureHeight::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureHeight::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureHeight(soap, tag ? tag : "prodml22:FractureHeight", -2, this, type)) + if (soap_out_prodml23__FractureHeight(soap, tag ? tag : "prodml23:FractureHeight", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureHeight::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureHeight::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureHeight(soap, this, tag, type); + return soap_get_prodml23__FractureHeight(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_get_prodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureHeight * SOAP_FMAC4 soap_get_prodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureHeight(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureHeight(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureHalfLength::soap_default(struct soap *soap) +void prodml23__FractureHalfLength::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureHalfLength::Abbreviation = "Xf"; - this->prodml22__FractureHalfLength::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureHalfLength::Abbreviation = "Xf"; + this->prodml23__FractureHalfLength::Length = NULL; } -void prodml22__FractureHalfLength::soap_serialize(struct soap *soap) const +void prodml23__FractureHalfLength::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureHalfLength::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FractureHalfLength::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__FractureHalfLength::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureHalfLength::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FractureHalfLength::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__FractureHalfLength::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureHalfLength::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureHalfLength::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureHalfLength(soap, tag, id, this, type); + return soap_out_prodml23__FractureHalfLength(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureHalfLength(struct soap *soap, const char *tag, int id, const prodml22__FractureHalfLength *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureHalfLength(struct soap *soap, const char *tag, int id, const prodml23__FractureHalfLength *a, const char *type) { if (!type) - type = "prodml22:FractureHalfLength"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureHalfLength"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureHalfLength), type ? type : "prodml22:FractureHalfLength")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength), type ? type : "prodml23:FractureHalfLength")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FractureHalfLength::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FractureHalfLength::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FractureHalfLength::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__FractureHalfLength::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__FractureHalfLength::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__FractureHalfLength::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureHalfLength::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureHalfLength::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureHalfLength(soap, tag, this, type); + return soap_in_prodml23__FractureHalfLength(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_in_prodml22__FractureHalfLength(struct soap *soap, const char *tag, prodml22__FractureHalfLength *a, const char *type) +SOAP_FMAC3 prodml23__FractureHalfLength * SOAP_FMAC4 soap_in_prodml23__FractureHalfLength(struct soap *soap, const char *tag, prodml23__FractureHalfLength *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureHalfLength*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength, sizeof(prodml22__FractureHalfLength), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureHalfLength*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength, sizeof(prodml23__FractureHalfLength), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureHalfLength *)a->soap_in(soap, tag, type); + return (prodml23__FractureHalfLength *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -186474,21 +186469,21 @@ SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_in_prodml22__FractureH for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FractureHalfLength::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FractureHalfLength::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureHalfLength::Abbreviation.compare("Xf"))) + if (*soap->href != '#' && (a->prodml23__FractureHalfLength::Abbreviation.compare("Xf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -186496,7 +186491,7 @@ SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_in_prodml22__FractureH } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__FractureHalfLength::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__FractureHalfLength::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -186510,7 +186505,7 @@ SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_in_prodml22__FractureH } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FractureHalfLength::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FractureHalfLength::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -186520,35 +186515,35 @@ SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_in_prodml22__FractureH return NULL; } else - { a = (prodml22__FractureHalfLength *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength, sizeof(prodml22__FractureHalfLength), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureHalfLength *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength, sizeof(prodml23__FractureHalfLength), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml22__FractureHalfLength(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml23__FractureHalfLength(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureHalfLength(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureHalfLength(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureHalfLength *p; - size_t k = sizeof(prodml22__FractureHalfLength); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength, n, gsoap_eml2_3_fdelete); + prodml23__FractureHalfLength *p; + size_t k = sizeof(prodml23__FractureHalfLength); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureHalfLength); + { p = SOAP_NEW(soap, prodml23__FractureHalfLength); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureHalfLength, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureHalfLength, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureHalfLength location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureHalfLength location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -186558,94 +186553,94 @@ SOAP_FMAC1 prodml22__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__FractureHalfLength::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureHalfLength::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureHalfLength(soap, tag ? tag : "prodml22:FractureHalfLength", -2, this, type)) + if (soap_out_prodml23__FractureHalfLength(soap, tag ? tag : "prodml23:FractureHalfLength", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureHalfLength::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureHalfLength::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureHalfLength(soap, this, tag, type); + return soap_get_prodml23__FractureHalfLength(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_get_prodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureHalfLength * SOAP_FMAC4 soap_get_prodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureHalfLength(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureHalfLength(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureFaceSkin::soap_default(struct soap *soap) +void prodml23__FractureFaceSkin::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureFaceSkin::Abbreviation = "Sf"; - this->prodml22__FractureFaceSkin::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureFaceSkin::Abbreviation = "Sf"; + this->prodml23__FractureFaceSkin::Value = NULL; } -void prodml22__FractureFaceSkin::soap_serialize(struct soap *soap) const +void prodml23__FractureFaceSkin::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureFaceSkin::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FractureFaceSkin::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__FractureFaceSkin::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureFaceSkin::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FractureFaceSkin::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__FractureFaceSkin::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureFaceSkin::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureFaceSkin::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureFaceSkin(soap, tag, id, this, type); + return soap_out_prodml23__FractureFaceSkin(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureFaceSkin(struct soap *soap, const char *tag, int id, const prodml22__FractureFaceSkin *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureFaceSkin(struct soap *soap, const char *tag, int id, const prodml23__FractureFaceSkin *a, const char *type) { if (!type) - type = "prodml22:FractureFaceSkin"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureFaceSkin"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureFaceSkin), type ? type : "prodml22:FractureFaceSkin")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin), type ? type : "prodml23:FractureFaceSkin")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FractureFaceSkin::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FractureFaceSkin::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FractureFaceSkin::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__FractureFaceSkin::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__FractureFaceSkin::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__FractureFaceSkin::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureFaceSkin::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureFaceSkin::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureFaceSkin(soap, tag, this, type); + return soap_in_prodml23__FractureFaceSkin(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml22__FractureFaceSkin(struct soap *soap, const char *tag, prodml22__FractureFaceSkin *a, const char *type) +SOAP_FMAC3 prodml23__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml23__FractureFaceSkin(struct soap *soap, const char *tag, prodml23__FractureFaceSkin *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureFaceSkin*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin, sizeof(prodml22__FractureFaceSkin), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureFaceSkin*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin, sizeof(prodml23__FractureFaceSkin), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureFaceSkin *)a->soap_in(soap, tag, type); + return (prodml23__FractureFaceSkin *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -186656,21 +186651,21 @@ SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml22__FractureFac for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FractureFaceSkin::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FractureFaceSkin::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureFaceSkin::Abbreviation.compare("Sf"))) + if (*soap->href != '#' && (a->prodml23__FractureFaceSkin::Abbreviation.compare("Sf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -186678,7 +186673,7 @@ SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml22__FractureFac } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__FractureFaceSkin::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__FractureFaceSkin::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -186692,7 +186687,7 @@ SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml22__FractureFac } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FractureFaceSkin::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FractureFaceSkin::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -186702,35 +186697,35 @@ SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml22__FractureFac return NULL; } else - { a = (prodml22__FractureFaceSkin *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin, sizeof(prodml22__FractureFaceSkin), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureFaceSkin *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin, sizeof(prodml23__FractureFaceSkin), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml22__FractureFaceSkin(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml23__FractureFaceSkin(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureFaceSkin(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureFaceSkin(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureFaceSkin *p; - size_t k = sizeof(prodml22__FractureFaceSkin); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin, n, gsoap_eml2_3_fdelete); + prodml23__FractureFaceSkin *p; + size_t k = sizeof(prodml23__FractureFaceSkin); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureFaceSkin); + { p = SOAP_NEW(soap, prodml23__FractureFaceSkin); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureFaceSkin, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureFaceSkin, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureFaceSkin location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureFaceSkin location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -186740,94 +186735,94 @@ SOAP_FMAC1 prodml22__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml22__Fr return p; } -int prodml22__FractureFaceSkin::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureFaceSkin::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureFaceSkin(soap, tag ? tag : "prodml22:FractureFaceSkin", -2, this, type)) + if (soap_out_prodml23__FractureFaceSkin(soap, tag ? tag : "prodml23:FractureFaceSkin", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureFaceSkin::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureFaceSkin::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureFaceSkin(soap, this, tag, type); + return soap_get_prodml23__FractureFaceSkin(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_get_prodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureFaceSkin * SOAP_FMAC4 soap_get_prodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureFaceSkin(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureFaceSkin(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureConductivity::soap_default(struct soap *soap) +void prodml23__FractureConductivity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureConductivity::Abbreviation = "Fc"; - this->prodml22__FractureConductivity::PermeabilityLength = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureConductivity::Abbreviation = "Fc"; + this->prodml23__FractureConductivity::PermeabilityLength = NULL; } -void prodml22__FractureConductivity::soap_serialize(struct soap *soap) const +void prodml23__FractureConductivity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureConductivity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FractureConductivity::Abbreviation); - soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, &this->prodml22__FractureConductivity::PermeabilityLength); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureConductivity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FractureConductivity::Abbreviation); + soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, &this->prodml23__FractureConductivity::PermeabilityLength); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureConductivity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureConductivity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureConductivity(soap, tag, id, this, type); + return soap_out_prodml23__FractureConductivity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureConductivity(struct soap *soap, const char *tag, int id, const prodml22__FractureConductivity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureConductivity(struct soap *soap, const char *tag, int id, const prodml23__FractureConductivity *a, const char *type) { if (!type) - type = "prodml22:FractureConductivity"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureConductivity"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureConductivity), type ? type : "prodml22:FractureConductivity")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity), type ? type : "prodml23:FractureConductivity")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FractureConductivity::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FractureConductivity::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FractureConductivity::PermeabilityLength) - { if (soap_element_empty(soap, "prodml22:PermeabilityLength", 0, NULL)) + if (!a->prodml23__FractureConductivity::PermeabilityLength) + { if (soap_element_empty(soap, "prodml23:PermeabilityLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml22:PermeabilityLength", -1, &a->prodml22__FractureConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) + else if (soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml23:PermeabilityLength", -1, &a->prodml23__FractureConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureConductivity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureConductivity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureConductivity(soap, tag, this, type); + return soap_in_prodml23__FractureConductivity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_in_prodml22__FractureConductivity(struct soap *soap, const char *tag, prodml22__FractureConductivity *a, const char *type) +SOAP_FMAC3 prodml23__FractureConductivity * SOAP_FMAC4 soap_in_prodml23__FractureConductivity(struct soap *soap, const char *tag, prodml23__FractureConductivity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureConductivity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity, sizeof(prodml22__FractureConductivity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureConductivity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity, sizeof(prodml23__FractureConductivity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureConductivity *)a->soap_in(soap, tag, type); + return (prodml23__FractureConductivity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -186838,21 +186833,21 @@ SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_in_prodml22__Fractur for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FractureConductivity::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FractureConductivity::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureConductivity::Abbreviation.compare("Fc"))) + if (*soap->href != '#' && (a->prodml23__FractureConductivity::Abbreviation.compare("Fc"))) { soap->error = SOAP_FIXED; return NULL; } @@ -186860,7 +186855,7 @@ SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_in_prodml22__Fractur } } if (soap_flag_PermeabilityLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml22:PermeabilityLength", &a->prodml22__FractureConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) + { if (soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml23:PermeabilityLength", &a->prodml23__FractureConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) { soap_flag_PermeabilityLength1--; continue; } @@ -186874,7 +186869,7 @@ SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_in_prodml22__Fractur } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FractureConductivity::PermeabilityLength)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FractureConductivity::PermeabilityLength)) { soap->error = SOAP_OCCURS; return NULL; } @@ -186884,35 +186879,35 @@ SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_in_prodml22__Fractur return NULL; } else - { a = (prodml22__FractureConductivity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity, sizeof(prodml22__FractureConductivity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureConductivity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity, sizeof(prodml23__FractureConductivity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml22__FractureConductivity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml23__FractureConductivity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureConductivity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureConductivity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureConductivity *p; - size_t k = sizeof(prodml22__FractureConductivity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity, n, gsoap_eml2_3_fdelete); + prodml23__FractureConductivity *p; + size_t k = sizeof(prodml23__FractureConductivity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureConductivity); + { p = SOAP_NEW(soap, prodml23__FractureConductivity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureConductivity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureConductivity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureConductivity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureConductivity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -186922,94 +186917,94 @@ SOAP_FMAC1 prodml22__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__FractureConductivity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureConductivity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureConductivity(soap, tag ? tag : "prodml22:FractureConductivity", -2, this, type)) + if (soap_out_prodml23__FractureConductivity(soap, tag ? tag : "prodml23:FractureConductivity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureConductivity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureConductivity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureConductivity(soap, this, tag, type); + return soap_get_prodml23__FractureConductivity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_get_prodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureConductivity * SOAP_FMAC4 soap_get_prodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureConductivity(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureConductivity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FractureAngleToWellbore::soap_default(struct soap *soap) +void prodml23__FractureAngleToWellbore::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FractureAngleToWellbore::Abbreviation = "FractureAngleToWellbore"; - this->prodml22__FractureAngleToWellbore::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FractureAngleToWellbore::Abbreviation = "FractureAngleToWellbore"; + this->prodml23__FractureAngleToWellbore::Angle = NULL; } -void prodml22__FractureAngleToWellbore::soap_serialize(struct soap *soap) const +void prodml23__FractureAngleToWellbore::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FractureAngleToWellbore::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FractureAngleToWellbore::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__FractureAngleToWellbore::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FractureAngleToWellbore::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FractureAngleToWellbore::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__FractureAngleToWellbore::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FractureAngleToWellbore::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FractureAngleToWellbore::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FractureAngleToWellbore(soap, tag, id, this, type); + return soap_out_prodml23__FractureAngleToWellbore(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureAngleToWellbore(struct soap *soap, const char *tag, int id, const prodml22__FractureAngleToWellbore *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureAngleToWellbore(struct soap *soap, const char *tag, int id, const prodml23__FractureAngleToWellbore *a, const char *type) { if (!type) - type = "prodml22:FractureAngleToWellbore"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FractureAngleToWellbore"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FractureAngleToWellbore), type ? type : "prodml22:FractureAngleToWellbore")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore), type ? type : "prodml23:FractureAngleToWellbore")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FractureAngleToWellbore::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FractureAngleToWellbore::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FractureAngleToWellbore::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__FractureAngleToWellbore::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__FractureAngleToWellbore::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__FractureAngleToWellbore::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FractureAngleToWellbore::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureAngleToWellbore::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FractureAngleToWellbore(soap, tag, this, type); + return soap_in_prodml23__FractureAngleToWellbore(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml22__FractureAngleToWellbore(struct soap *soap, const char *tag, prodml22__FractureAngleToWellbore *a, const char *type) +SOAP_FMAC3 prodml23__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml23__FractureAngleToWellbore(struct soap *soap, const char *tag, prodml23__FractureAngleToWellbore *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FractureAngleToWellbore*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore, sizeof(prodml22__FractureAngleToWellbore), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FractureAngleToWellbore*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore, sizeof(prodml23__FractureAngleToWellbore), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FractureAngleToWellbore *)a->soap_in(soap, tag, type); + return (prodml23__FractureAngleToWellbore *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -187020,21 +187015,21 @@ SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml22__Frac for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FractureAngleToWellbore::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FractureAngleToWellbore::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FractureAngleToWellbore::Abbreviation.compare("FractureAngleToWellbore"))) + if (*soap->href != '#' && (a->prodml23__FractureAngleToWellbore::Abbreviation.compare("FractureAngleToWellbore"))) { soap->error = SOAP_FIXED; return NULL; } @@ -187042,7 +187037,7 @@ SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml22__Frac } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__FractureAngleToWellbore::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__FractureAngleToWellbore::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -187056,7 +187051,7 @@ SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml22__Frac } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FractureAngleToWellbore::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FractureAngleToWellbore::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -187066,35 +187061,35 @@ SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml22__Frac return NULL; } else - { a = (prodml22__FractureAngleToWellbore *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore, sizeof(prodml22__FractureAngleToWellbore), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FractureAngleToWellbore *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore, sizeof(prodml23__FractureAngleToWellbore), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodml22__FractureAngleToWellbore(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodml23__FractureAngleToWellbore(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FractureAngleToWellbore(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FractureAngleToWellbore(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FractureAngleToWellbore *p; - size_t k = sizeof(prodml22__FractureAngleToWellbore); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore, n, gsoap_eml2_3_fdelete); + prodml23__FractureAngleToWellbore *p; + size_t k = sizeof(prodml23__FractureAngleToWellbore); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FractureAngleToWellbore); + { p = SOAP_NEW(soap, prodml23__FractureAngleToWellbore); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FractureAngleToWellbore, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FractureAngleToWellbore, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FractureAngleToWellbore location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FractureAngleToWellbore location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -187104,94 +187099,94 @@ SOAP_FMAC1 prodml22__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__FractureAngleToWellbore::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FractureAngleToWellbore::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FractureAngleToWellbore(soap, tag ? tag : "prodml22:FractureAngleToWellbore", -2, this, type)) + if (soap_out_prodml23__FractureAngleToWellbore(soap, tag ? tag : "prodml23:FractureAngleToWellbore", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FractureAngleToWellbore::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FractureAngleToWellbore::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FractureAngleToWellbore(soap, this, tag, type); + return soap_get_prodml23__FractureAngleToWellbore(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_get_prodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureAngleToWellbore * SOAP_FMAC4 soap_get_prodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FractureAngleToWellbore(soap, tag, p, type))) + if ((p = soap_in_prodml23__FractureAngleToWellbore(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidDensity::soap_default(struct soap *soap) +void prodml23__FluidDensity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FluidDensity::Abbreviation = "Rho"; - this->prodml22__FluidDensity::Density = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FluidDensity::Abbreviation = "Rho"; + this->prodml23__FluidDensity::Density = NULL; } -void prodml22__FluidDensity::soap_serialize(struct soap *soap) const +void prodml23__FluidDensity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidDensity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FluidDensity::Abbreviation); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidDensity::Density); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FluidDensity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FluidDensity::Abbreviation); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidDensity::Density); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FluidDensity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidDensity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidDensity(soap, tag, id, this, type); + return soap_out_prodml23__FluidDensity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidDensity(struct soap *soap, const char *tag, int id, const prodml22__FluidDensity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidDensity(struct soap *soap, const char *tag, int id, const prodml23__FluidDensity *a, const char *type) { if (!type) - type = "prodml22:FluidDensity"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FluidDensity"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FluidDensity), type ? type : "prodml22:FluidDensity")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity), type ? type : "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FluidDensity::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FluidDensity::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FluidDensity::Density) - { if (soap_element_empty(soap, "prodml22:Density", 0, NULL)) + if (!a->prodml23__FluidDensity::Density) + { if (soap_element_empty(soap, "prodml23:Density", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:Density", -1, &a->prodml22__FluidDensity::Density, "eml23:MassPerVolumeMeasure")) + else if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:Density", -1, &a->prodml23__FluidDensity::Density, "eml23:MassPerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidDensity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidDensity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidDensity(soap, tag, this, type); + return soap_in_prodml23__FluidDensity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_in_prodml22__FluidDensity(struct soap *soap, const char *tag, prodml22__FluidDensity *a, const char *type) +SOAP_FMAC3 prodml23__FluidDensity * SOAP_FMAC4 soap_in_prodml23__FluidDensity(struct soap *soap, const char *tag, prodml23__FluidDensity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidDensity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity, sizeof(prodml22__FluidDensity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidDensity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity, sizeof(prodml23__FluidDensity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidDensity *)a->soap_in(soap, tag, type); + return (prodml23__FluidDensity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -187202,21 +187197,21 @@ SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_in_prodml22__FluidDensity(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FluidDensity::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FluidDensity::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FluidDensity::Abbreviation.compare("Rho"))) + if (*soap->href != '#' && (a->prodml23__FluidDensity::Abbreviation.compare("Rho"))) { soap->error = SOAP_FIXED; return NULL; } @@ -187224,7 +187219,7 @@ SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_in_prodml22__FluidDensity(st } } if (soap_flag_Density1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:Density", &a->prodml22__FluidDensity::Density, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:Density", &a->prodml23__FluidDensity::Density, "eml23:MassPerVolumeMeasure")) { soap_flag_Density1--; continue; } @@ -187238,7 +187233,7 @@ SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_in_prodml22__FluidDensity(st } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FluidDensity::Density)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FluidDensity::Density)) { soap->error = SOAP_OCCURS; return NULL; } @@ -187248,35 +187243,35 @@ SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_in_prodml22__FluidDensity(st return NULL; } else - { a = (prodml22__FluidDensity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity, sizeof(prodml22__FluidDensity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidDensity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity, sizeof(prodml23__FluidDensity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml22__FluidDensity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml23__FluidDensity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidDensity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidDensity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidDensity *p; - size_t k = sizeof(prodml22__FluidDensity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity, n, gsoap_eml2_3_fdelete); + prodml23__FluidDensity *p; + size_t k = sizeof(prodml23__FluidDensity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidDensity); + { p = SOAP_NEW(soap, prodml23__FluidDensity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidDensity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidDensity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidDensity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidDensity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -187286,94 +187281,94 @@ SOAP_FMAC1 prodml22__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml22__FluidD return p; } -int prodml22__FluidDensity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidDensity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidDensity(soap, tag ? tag : "prodml22:FluidDensity", -2, this, type)) + if (soap_out_prodml23__FluidDensity(soap, tag ? tag : "prodml23:FluidDensity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidDensity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidDensity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidDensity(soap, this, tag, type); + return soap_get_prodml23__FluidDensity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_get_prodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidDensity * SOAP_FMAC4 soap_get_prodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidDensity(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidDensity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FaultConductivity::soap_default(struct soap *soap) +void prodml23__FaultConductivity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__FaultConductivity::Abbreviation = "Fc"; - this->prodml22__FaultConductivity::PermeabilityLength = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__FaultConductivity::Abbreviation = "Fc"; + this->prodml23__FaultConductivity::PermeabilityLength = NULL; } -void prodml22__FaultConductivity::soap_serialize(struct soap *soap) const +void prodml23__FaultConductivity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FaultConductivity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__FaultConductivity::Abbreviation); - soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, &this->prodml22__FaultConductivity::PermeabilityLength); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__FaultConductivity::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__FaultConductivity::Abbreviation); + soap_serialize_PointerToeml23__PermeabilityLengthMeasureExt(soap, &this->prodml23__FaultConductivity::PermeabilityLength); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__FaultConductivity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FaultConductivity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FaultConductivity(soap, tag, id, this, type); + return soap_out_prodml23__FaultConductivity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FaultConductivity(struct soap *soap, const char *tag, int id, const prodml22__FaultConductivity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FaultConductivity(struct soap *soap, const char *tag, int id, const prodml23__FaultConductivity *a, const char *type) { if (!type) - type = "prodml22:FaultConductivity"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:FaultConductivity"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__FaultConductivity), type ? type : "prodml22:FaultConductivity")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity), type ? type : "prodml23:FaultConductivity")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__FaultConductivity::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__FaultConductivity::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__FaultConductivity::PermeabilityLength) - { if (soap_element_empty(soap, "prodml22:PermeabilityLength", 0, NULL)) + if (!a->prodml23__FaultConductivity::PermeabilityLength) + { if (soap_element_empty(soap, "prodml23:PermeabilityLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml22:PermeabilityLength", -1, &a->prodml22__FaultConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) + else if (soap_out_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml23:PermeabilityLength", -1, &a->prodml23__FaultConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FaultConductivity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FaultConductivity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FaultConductivity(soap, tag, this, type); + return soap_in_prodml23__FaultConductivity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_in_prodml22__FaultConductivity(struct soap *soap, const char *tag, prodml22__FaultConductivity *a, const char *type) +SOAP_FMAC3 prodml23__FaultConductivity * SOAP_FMAC4 soap_in_prodml23__FaultConductivity(struct soap *soap, const char *tag, prodml23__FaultConductivity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FaultConductivity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity, sizeof(prodml22__FaultConductivity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FaultConductivity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity, sizeof(prodml23__FaultConductivity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FaultConductivity *)a->soap_in(soap, tag, type); + return (prodml23__FaultConductivity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -187384,21 +187379,21 @@ SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_in_prodml22__FaultCondu for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__FaultConductivity::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__FaultConductivity::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__FaultConductivity::Abbreviation.compare("Fc"))) + if (*soap->href != '#' && (a->prodml23__FaultConductivity::Abbreviation.compare("Fc"))) { soap->error = SOAP_FIXED; return NULL; } @@ -187406,7 +187401,7 @@ SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_in_prodml22__FaultCondu } } if (soap_flag_PermeabilityLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml22:PermeabilityLength", &a->prodml22__FaultConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) + { if (soap_in_PointerToeml23__PermeabilityLengthMeasureExt(soap, "prodml23:PermeabilityLength", &a->prodml23__FaultConductivity::PermeabilityLength, "eml23:PermeabilityLengthMeasureExt")) { soap_flag_PermeabilityLength1--; continue; } @@ -187420,7 +187415,7 @@ SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_in_prodml22__FaultCondu } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__FaultConductivity::PermeabilityLength)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__FaultConductivity::PermeabilityLength)) { soap->error = SOAP_OCCURS; return NULL; } @@ -187430,35 +187425,35 @@ SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_in_prodml22__FaultCondu return NULL; } else - { a = (prodml22__FaultConductivity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity, sizeof(prodml22__FaultConductivity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FaultConductivity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity, sizeof(prodml23__FaultConductivity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml22__FaultConductivity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml23__FaultConductivity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FaultConductivity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FaultConductivity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FaultConductivity *p; - size_t k = sizeof(prodml22__FaultConductivity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity, n, gsoap_eml2_3_fdelete); + prodml23__FaultConductivity *p; + size_t k = sizeof(prodml23__FaultConductivity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FaultConductivity); + { p = SOAP_NEW(soap, prodml23__FaultConductivity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FaultConductivity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FaultConductivity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FaultConductivity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FaultConductivity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -187468,94 +187463,94 @@ SOAP_FMAC1 prodml22__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml22__F return p; } -int prodml22__FaultConductivity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FaultConductivity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FaultConductivity(soap, tag ? tag : "prodml22:FaultConductivity", -2, this, type)) + if (soap_out_prodml23__FaultConductivity(soap, tag ? tag : "prodml23:FaultConductivity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FaultConductivity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FaultConductivity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FaultConductivity(soap, this, tag, type); + return soap_get_prodml23__FaultConductivity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_get_prodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FaultConductivity * SOAP_FMAC4 soap_get_prodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FaultConductivity(soap, tag, p, type))) + if ((p = soap_in_prodml23__FaultConductivity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DrainageAreaMeasured::soap_default(struct soap *soap) +void prodml23__DrainageAreaMeasured::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DrainageAreaMeasured::Abbreviation = "A"; - this->prodml22__DrainageAreaMeasured::Area = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DrainageAreaMeasured::Abbreviation = "A"; + this->prodml23__DrainageAreaMeasured::Area = NULL; } -void prodml22__DrainageAreaMeasured::soap_serialize(struct soap *soap) const +void prodml23__DrainageAreaMeasured::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DrainageAreaMeasured::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DrainageAreaMeasured::Abbreviation); - soap_serialize_PointerToeml23__AreaMeasure(soap, &this->prodml22__DrainageAreaMeasured::Area); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DrainageAreaMeasured::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DrainageAreaMeasured::Abbreviation); + soap_serialize_PointerToeml23__AreaMeasure(soap, &this->prodml23__DrainageAreaMeasured::Area); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DrainageAreaMeasured::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DrainageAreaMeasured::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DrainageAreaMeasured(soap, tag, id, this, type); + return soap_out_prodml23__DrainageAreaMeasured(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DrainageAreaMeasured(struct soap *soap, const char *tag, int id, const prodml22__DrainageAreaMeasured *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DrainageAreaMeasured(struct soap *soap, const char *tag, int id, const prodml23__DrainageAreaMeasured *a, const char *type) { if (!type) - type = "prodml22:DrainageAreaMeasured"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DrainageAreaMeasured"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DrainageAreaMeasured), type ? type : "prodml22:DrainageAreaMeasured")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured), type ? type : "prodml23:DrainageAreaMeasured")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DrainageAreaMeasured::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DrainageAreaMeasured::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DrainageAreaMeasured::Area) - { if (soap_element_empty(soap, "prodml22:Area", 0, NULL)) + if (!a->prodml23__DrainageAreaMeasured::Area) + { if (soap_element_empty(soap, "prodml23:Area", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AreaMeasure(soap, "prodml22:Area", -1, &a->prodml22__DrainageAreaMeasured::Area, "eml23:AreaMeasure")) + else if (soap_out_PointerToeml23__AreaMeasure(soap, "prodml23:Area", -1, &a->prodml23__DrainageAreaMeasured::Area, "eml23:AreaMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DrainageAreaMeasured::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DrainageAreaMeasured::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DrainageAreaMeasured(soap, tag, this, type); + return soap_in_prodml23__DrainageAreaMeasured(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml22__DrainageAreaMeasured(struct soap *soap, const char *tag, prodml22__DrainageAreaMeasured *a, const char *type) +SOAP_FMAC3 prodml23__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml23__DrainageAreaMeasured(struct soap *soap, const char *tag, prodml23__DrainageAreaMeasured *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DrainageAreaMeasured*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured, sizeof(prodml22__DrainageAreaMeasured), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DrainageAreaMeasured*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured, sizeof(prodml23__DrainageAreaMeasured), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DrainageAreaMeasured *)a->soap_in(soap, tag, type); + return (prodml23__DrainageAreaMeasured *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -187566,21 +187561,21 @@ SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml22__Drainag for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DrainageAreaMeasured::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DrainageAreaMeasured::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DrainageAreaMeasured::Abbreviation.compare("A"))) + if (*soap->href != '#' && (a->prodml23__DrainageAreaMeasured::Abbreviation.compare("A"))) { soap->error = SOAP_FIXED; return NULL; } @@ -187588,7 +187583,7 @@ SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml22__Drainag } } if (soap_flag_Area1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AreaMeasure(soap, "prodml22:Area", &a->prodml22__DrainageAreaMeasured::Area, "eml23:AreaMeasure")) + { if (soap_in_PointerToeml23__AreaMeasure(soap, "prodml23:Area", &a->prodml23__DrainageAreaMeasured::Area, "eml23:AreaMeasure")) { soap_flag_Area1--; continue; } @@ -187602,7 +187597,7 @@ SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml22__Drainag } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DrainageAreaMeasured::Area)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DrainageAreaMeasured::Area)) { soap->error = SOAP_OCCURS; return NULL; } @@ -187612,35 +187607,35 @@ SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml22__Drainag return NULL; } else - { a = (prodml22__DrainageAreaMeasured *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured, sizeof(prodml22__DrainageAreaMeasured), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DrainageAreaMeasured *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured, sizeof(prodml23__DrainageAreaMeasured), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml22__DrainageAreaMeasured(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml23__DrainageAreaMeasured(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DrainageAreaMeasured(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DrainageAreaMeasured(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DrainageAreaMeasured *p; - size_t k = sizeof(prodml22__DrainageAreaMeasured); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured, n, gsoap_eml2_3_fdelete); + prodml23__DrainageAreaMeasured *p; + size_t k = sizeof(prodml23__DrainageAreaMeasured); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DrainageAreaMeasured); + { p = SOAP_NEW(soap, prodml23__DrainageAreaMeasured); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DrainageAreaMeasured, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DrainageAreaMeasured, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DrainageAreaMeasured location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DrainageAreaMeasured location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -187650,94 +187645,94 @@ SOAP_FMAC1 prodml22__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__DrainageAreaMeasured::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DrainageAreaMeasured::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DrainageAreaMeasured(soap, tag ? tag : "prodml22:DrainageAreaMeasured", -2, this, type)) + if (soap_out_prodml23__DrainageAreaMeasured(soap, tag ? tag : "prodml23:DrainageAreaMeasured", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DrainageAreaMeasured::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DrainageAreaMeasured::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DrainageAreaMeasured(soap, this, tag, type); + return soap_get_prodml23__DrainageAreaMeasured(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_get_prodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DrainageAreaMeasured * SOAP_FMAC4 soap_get_prodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DrainageAreaMeasured(soap, tag, p, type))) + if ((p = soap_in_prodml23__DrainageAreaMeasured(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceWellboreToBottomBoundary::soap_default(struct soap *soap) +void prodml23__DistanceWellboreToBottomBoundary::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceWellboreToBottomBoundary::Abbreviation = "Zw"; - this->prodml22__DistanceWellboreToBottomBoundary::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceWellboreToBottomBoundary::Abbreviation = "Zw"; + this->prodml23__DistanceWellboreToBottomBoundary::Length = NULL; } -void prodml22__DistanceWellboreToBottomBoundary::soap_serialize(struct soap *soap) const +void prodml23__DistanceWellboreToBottomBoundary::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceWellboreToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceWellboreToBottomBoundary::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceWellboreToBottomBoundary::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceWellboreToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceWellboreToBottomBoundary::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceWellboreToBottomBoundary::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceWellboreToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceWellboreToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceWellboreToBottomBoundary(soap, tag, id, this, type); + return soap_out_prodml23__DistanceWellboreToBottomBoundary(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml22__DistanceWellboreToBottomBoundary *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml23__DistanceWellboreToBottomBoundary *a, const char *type) { if (!type) - type = "prodml22:DistanceWellboreToBottomBoundary"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceWellboreToBottomBoundary"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary), type ? type : "prodml22:DistanceWellboreToBottomBoundary")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary), type ? type : "prodml23:DistanceWellboreToBottomBoundary")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceWellboreToBottomBoundary::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceWellboreToBottomBoundary::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceWellboreToBottomBoundary::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceWellboreToBottomBoundary::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceWellboreToBottomBoundary::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceWellboreToBottomBoundary::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceWellboreToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceWellboreToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceWellboreToBottomBoundary(soap, tag, this, type); + return soap_in_prodml23__DistanceWellboreToBottomBoundary(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceWellboreToBottomBoundary *a, const char *type) +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceWellboreToBottomBoundary *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceWellboreToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary, sizeof(prodml22__DistanceWellboreToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceWellboreToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary, sizeof(prodml23__DistanceWellboreToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceWellboreToBottomBoundary *)a->soap_in(soap, tag, type); + return (prodml23__DistanceWellboreToBottomBoundary *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -187748,21 +187743,21 @@ SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceWellboreToBottomBoundary::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceWellboreToBottomBoundary::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceWellboreToBottomBoundary::Abbreviation.compare("Zw"))) + if (*soap->href != '#' && (a->prodml23__DistanceWellboreToBottomBoundary::Abbreviation.compare("Zw"))) { soap->error = SOAP_FIXED; return NULL; } @@ -187770,7 +187765,7 @@ SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodm } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceWellboreToBottomBoundary::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceWellboreToBottomBoundary::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -187784,7 +187779,7 @@ SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceWellboreToBottomBoundary::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceWellboreToBottomBoundary::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -187794,35 +187789,35 @@ SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__DistanceWellboreToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary, sizeof(prodml22__DistanceWellboreToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceWellboreToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary, sizeof(prodml23__DistanceWellboreToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceWellboreToBottomBoundary *p; - size_t k = sizeof(prodml22__DistanceWellboreToBottomBoundary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary, n, gsoap_eml2_3_fdelete); + prodml23__DistanceWellboreToBottomBoundary *p; + size_t k = sizeof(prodml23__DistanceWellboreToBottomBoundary); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceWellboreToBottomBoundary); + { p = SOAP_NEW(soap, prodml23__DistanceWellboreToBottomBoundary); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceWellboreToBottomBoundary, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceWellboreToBottomBoundary, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceWellboreToBottomBoundary location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceWellboreToBottomBoundary location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -187832,94 +187827,94 @@ SOAP_FMAC1 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instanti return p; } -int prodml22__DistanceWellboreToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceWellboreToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceWellboreToBottomBoundary(soap, tag ? tag : "prodml22:DistanceWellboreToBottomBoundary", -2, this, type)) + if (soap_out_prodml23__DistanceWellboreToBottomBoundary(soap, tag ? tag : "prodml23:DistanceWellboreToBottomBoundary", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceWellboreToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceWellboreToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceWellboreToBottomBoundary(soap, this, tag, type); + return soap_get_prodml23__DistanceWellboreToBottomBoundary(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceWellboreToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceWellboreToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceToPinchOut::soap_default(struct soap *soap) +void prodml23__DistanceToPinchOut::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceToPinchOut::Abbreviation = "Lpinch"; - this->prodml22__DistanceToPinchOut::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceToPinchOut::Abbreviation = "Lpinch"; + this->prodml23__DistanceToPinchOut::Length = NULL; } -void prodml22__DistanceToPinchOut::soap_serialize(struct soap *soap) const +void prodml23__DistanceToPinchOut::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceToPinchOut::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceToPinchOut::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceToPinchOut::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceToPinchOut::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceToPinchOut::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceToPinchOut::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceToPinchOut::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceToPinchOut::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceToPinchOut(soap, tag, id, this, type); + return soap_out_prodml23__DistanceToPinchOut(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToPinchOut(struct soap *soap, const char *tag, int id, const prodml22__DistanceToPinchOut *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToPinchOut(struct soap *soap, const char *tag, int id, const prodml23__DistanceToPinchOut *a, const char *type) { if (!type) - type = "prodml22:DistanceToPinchOut"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceToPinchOut"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceToPinchOut), type ? type : "prodml22:DistanceToPinchOut")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut), type ? type : "prodml23:DistanceToPinchOut")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceToPinchOut::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceToPinchOut::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceToPinchOut::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceToPinchOut::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceToPinchOut::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceToPinchOut::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceToPinchOut::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToPinchOut::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceToPinchOut(soap, tag, this, type); + return soap_in_prodml23__DistanceToPinchOut(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml22__DistanceToPinchOut(struct soap *soap, const char *tag, prodml22__DistanceToPinchOut *a, const char *type) +SOAP_FMAC3 prodml23__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml23__DistanceToPinchOut(struct soap *soap, const char *tag, prodml23__DistanceToPinchOut *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceToPinchOut*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut, sizeof(prodml22__DistanceToPinchOut), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceToPinchOut*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut, sizeof(prodml23__DistanceToPinchOut), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceToPinchOut *)a->soap_in(soap, tag, type); + return (prodml23__DistanceToPinchOut *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -187930,21 +187925,21 @@ SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml22__DistanceT for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceToPinchOut::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceToPinchOut::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceToPinchOut::Abbreviation.compare("Lpinch"))) + if (*soap->href != '#' && (a->prodml23__DistanceToPinchOut::Abbreviation.compare("Lpinch"))) { soap->error = SOAP_FIXED; return NULL; } @@ -187952,7 +187947,7 @@ SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml22__DistanceT } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceToPinchOut::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceToPinchOut::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -187966,7 +187961,7 @@ SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml22__DistanceT } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceToPinchOut::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceToPinchOut::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -187976,35 +187971,35 @@ SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml22__DistanceT return NULL; } else - { a = (prodml22__DistanceToPinchOut *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut, sizeof(prodml22__DistanceToPinchOut), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToPinchOut *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut, sizeof(prodml23__DistanceToPinchOut), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToPinchOut(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToPinchOut(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceToPinchOut(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceToPinchOut(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceToPinchOut *p; - size_t k = sizeof(prodml22__DistanceToPinchOut); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut, n, gsoap_eml2_3_fdelete); + prodml23__DistanceToPinchOut *p; + size_t k = sizeof(prodml23__DistanceToPinchOut); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceToPinchOut); + { p = SOAP_NEW(soap, prodml23__DistanceToPinchOut); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceToPinchOut, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceToPinchOut, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceToPinchOut location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceToPinchOut location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -188014,94 +188009,94 @@ SOAP_FMAC1 prodml22__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__DistanceToPinchOut::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceToPinchOut::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceToPinchOut(soap, tag ? tag : "prodml22:DistanceToPinchOut", -2, this, type)) + if (soap_out_prodml23__DistanceToPinchOut(soap, tag ? tag : "prodml23:DistanceToPinchOut", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceToPinchOut::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToPinchOut::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceToPinchOut(soap, this, tag, type); + return soap_get_prodml23__DistanceToPinchOut(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_get_prodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToPinchOut * SOAP_FMAC4 soap_get_prodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceToPinchOut(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceToPinchOut(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceToMobilityInterface::soap_default(struct soap *soap) +void prodml23__DistanceToMobilityInterface::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceToMobilityInterface::Abbreviation = "Li"; - this->prodml22__DistanceToMobilityInterface::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceToMobilityInterface::Abbreviation = "Li"; + this->prodml23__DistanceToMobilityInterface::Length = NULL; } -void prodml22__DistanceToMobilityInterface::soap_serialize(struct soap *soap) const +void prodml23__DistanceToMobilityInterface::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceToMobilityInterface::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceToMobilityInterface::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceToMobilityInterface::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceToMobilityInterface::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceToMobilityInterface::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceToMobilityInterface::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceToMobilityInterface::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceToMobilityInterface::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceToMobilityInterface(soap, tag, id, this, type); + return soap_out_prodml23__DistanceToMobilityInterface(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToMobilityInterface(struct soap *soap, const char *tag, int id, const prodml22__DistanceToMobilityInterface *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToMobilityInterface(struct soap *soap, const char *tag, int id, const prodml23__DistanceToMobilityInterface *a, const char *type) { if (!type) - type = "prodml22:DistanceToMobilityInterface"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceToMobilityInterface"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceToMobilityInterface), type ? type : "prodml22:DistanceToMobilityInterface")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface), type ? type : "prodml23:DistanceToMobilityInterface")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceToMobilityInterface::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceToMobilityInterface::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceToMobilityInterface::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceToMobilityInterface::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceToMobilityInterface::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceToMobilityInterface::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceToMobilityInterface::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToMobilityInterface::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceToMobilityInterface(soap, tag, this, type); + return soap_in_prodml23__DistanceToMobilityInterface(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml22__DistanceToMobilityInterface(struct soap *soap, const char *tag, prodml22__DistanceToMobilityInterface *a, const char *type) +SOAP_FMAC3 prodml23__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml23__DistanceToMobilityInterface(struct soap *soap, const char *tag, prodml23__DistanceToMobilityInterface *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceToMobilityInterface*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface, sizeof(prodml22__DistanceToMobilityInterface), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceToMobilityInterface*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface, sizeof(prodml23__DistanceToMobilityInterface), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceToMobilityInterface *)a->soap_in(soap, tag, type); + return (prodml23__DistanceToMobilityInterface *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -188112,21 +188107,21 @@ SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceToMobilityInterface::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceToMobilityInterface::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceToMobilityInterface::Abbreviation.compare("Li"))) + if (*soap->href != '#' && (a->prodml23__DistanceToMobilityInterface::Abbreviation.compare("Li"))) { soap->error = SOAP_FIXED; return NULL; } @@ -188134,7 +188129,7 @@ SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml22__ } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceToMobilityInterface::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceToMobilityInterface::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -188148,7 +188143,7 @@ SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml22__ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceToMobilityInterface::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceToMobilityInterface::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -188158,35 +188153,35 @@ SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__DistanceToMobilityInterface *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface, sizeof(prodml22__DistanceToMobilityInterface), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToMobilityInterface *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface, sizeof(prodml23__DistanceToMobilityInterface), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToMobilityInterface(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToMobilityInterface(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceToMobilityInterface(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceToMobilityInterface(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceToMobilityInterface *p; - size_t k = sizeof(prodml22__DistanceToMobilityInterface); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface, n, gsoap_eml2_3_fdelete); + prodml23__DistanceToMobilityInterface *p; + size_t k = sizeof(prodml23__DistanceToMobilityInterface); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceToMobilityInterface); + { p = SOAP_NEW(soap, prodml23__DistanceToMobilityInterface); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceToMobilityInterface, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceToMobilityInterface, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceToMobilityInterface location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceToMobilityInterface location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -188196,94 +188191,94 @@ SOAP_FMAC1 prodml22__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__DistanceToMobilityInterface::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceToMobilityInterface::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceToMobilityInterface(soap, tag ? tag : "prodml22:DistanceToMobilityInterface", -2, this, type)) + if (soap_out_prodml23__DistanceToMobilityInterface(soap, tag ? tag : "prodml23:DistanceToMobilityInterface", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceToMobilityInterface::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToMobilityInterface::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceToMobilityInterface(soap, this, tag, type); + return soap_get_prodml23__DistanceToMobilityInterface(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_get_prodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToMobilityInterface * SOAP_FMAC4 soap_get_prodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceToMobilityInterface(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceToMobilityInterface(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceToBoundary4::soap_default(struct soap *soap) +void prodml23__DistanceToBoundary4::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceToBoundary4::Abbreviation = "L4"; - this->prodml22__DistanceToBoundary4::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceToBoundary4::Abbreviation = "L4"; + this->prodml23__DistanceToBoundary4::Length = NULL; } -void prodml22__DistanceToBoundary4::soap_serialize(struct soap *soap) const +void prodml23__DistanceToBoundary4::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceToBoundary4::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceToBoundary4::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceToBoundary4::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceToBoundary4::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceToBoundary4::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceToBoundary4::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceToBoundary4::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceToBoundary4::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceToBoundary4(soap, tag, id, this, type); + return soap_out_prodml23__DistanceToBoundary4(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary4(struct soap *soap, const char *tag, int id, const prodml22__DistanceToBoundary4 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary4(struct soap *soap, const char *tag, int id, const prodml23__DistanceToBoundary4 *a, const char *type) { if (!type) - type = "prodml22:DistanceToBoundary4"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceToBoundary4"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceToBoundary4), type ? type : "prodml22:DistanceToBoundary4")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4), type ? type : "prodml23:DistanceToBoundary4")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceToBoundary4::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceToBoundary4::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceToBoundary4::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceToBoundary4::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceToBoundary4::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceToBoundary4::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceToBoundary4::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary4::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceToBoundary4(soap, tag, this, type); + return soap_in_prodml23__DistanceToBoundary4(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary4(struct soap *soap, const char *tag, prodml22__DistanceToBoundary4 *a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary4(struct soap *soap, const char *tag, prodml23__DistanceToBoundary4 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceToBoundary4*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4, sizeof(prodml22__DistanceToBoundary4), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceToBoundary4*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4, sizeof(prodml23__DistanceToBoundary4), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceToBoundary4 *)a->soap_in(soap, tag, type); + return (prodml23__DistanceToBoundary4 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -188294,21 +188289,21 @@ SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml22__Distance for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceToBoundary4::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceToBoundary4::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceToBoundary4::Abbreviation.compare("L4"))) + if (*soap->href != '#' && (a->prodml23__DistanceToBoundary4::Abbreviation.compare("L4"))) { soap->error = SOAP_FIXED; return NULL; } @@ -188316,7 +188311,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml22__Distance } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceToBoundary4::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceToBoundary4::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -188330,7 +188325,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml22__Distance } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceToBoundary4::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceToBoundary4::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -188340,35 +188335,35 @@ SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml22__Distance return NULL; } else - { a = (prodml22__DistanceToBoundary4 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4, sizeof(prodml22__DistanceToBoundary4), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary4 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4, sizeof(prodml23__DistanceToBoundary4), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary4(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary4(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceToBoundary4(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceToBoundary4(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceToBoundary4 *p; - size_t k = sizeof(prodml22__DistanceToBoundary4); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4, n, gsoap_eml2_3_fdelete); + prodml23__DistanceToBoundary4 *p; + size_t k = sizeof(prodml23__DistanceToBoundary4); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceToBoundary4); + { p = SOAP_NEW(soap, prodml23__DistanceToBoundary4); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceToBoundary4, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceToBoundary4, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceToBoundary4 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceToBoundary4 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -188378,94 +188373,94 @@ SOAP_FMAC1 prodml22__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__DistanceToBoundary4::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceToBoundary4::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceToBoundary4(soap, tag ? tag : "prodml22:DistanceToBoundary4", -2, this, type)) + if (soap_out_prodml23__DistanceToBoundary4(soap, tag ? tag : "prodml23:DistanceToBoundary4", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceToBoundary4::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary4::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceToBoundary4(soap, this, tag, type); + return soap_get_prodml23__DistanceToBoundary4(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary4 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceToBoundary4(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceToBoundary4(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceToBoundary3::soap_default(struct soap *soap) +void prodml23__DistanceToBoundary3::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceToBoundary3::Abbreviation = "L3"; - this->prodml22__DistanceToBoundary3::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceToBoundary3::Abbreviation = "L3"; + this->prodml23__DistanceToBoundary3::Length = NULL; } -void prodml22__DistanceToBoundary3::soap_serialize(struct soap *soap) const +void prodml23__DistanceToBoundary3::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceToBoundary3::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceToBoundary3::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceToBoundary3::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceToBoundary3::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceToBoundary3::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceToBoundary3::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceToBoundary3::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceToBoundary3::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceToBoundary3(soap, tag, id, this, type); + return soap_out_prodml23__DistanceToBoundary3(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary3(struct soap *soap, const char *tag, int id, const prodml22__DistanceToBoundary3 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary3(struct soap *soap, const char *tag, int id, const prodml23__DistanceToBoundary3 *a, const char *type) { if (!type) - type = "prodml22:DistanceToBoundary3"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceToBoundary3"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceToBoundary3), type ? type : "prodml22:DistanceToBoundary3")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3), type ? type : "prodml23:DistanceToBoundary3")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceToBoundary3::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceToBoundary3::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceToBoundary3::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceToBoundary3::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceToBoundary3::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceToBoundary3::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceToBoundary3::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary3::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceToBoundary3(soap, tag, this, type); + return soap_in_prodml23__DistanceToBoundary3(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary3(struct soap *soap, const char *tag, prodml22__DistanceToBoundary3 *a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary3(struct soap *soap, const char *tag, prodml23__DistanceToBoundary3 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceToBoundary3*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3, sizeof(prodml22__DistanceToBoundary3), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceToBoundary3*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3, sizeof(prodml23__DistanceToBoundary3), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceToBoundary3 *)a->soap_in(soap, tag, type); + return (prodml23__DistanceToBoundary3 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -188476,21 +188471,21 @@ SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml22__Distance for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceToBoundary3::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceToBoundary3::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceToBoundary3::Abbreviation.compare("L3"))) + if (*soap->href != '#' && (a->prodml23__DistanceToBoundary3::Abbreviation.compare("L3"))) { soap->error = SOAP_FIXED; return NULL; } @@ -188498,7 +188493,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml22__Distance } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceToBoundary3::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceToBoundary3::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -188512,7 +188507,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml22__Distance } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceToBoundary3::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceToBoundary3::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -188522,35 +188517,35 @@ SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml22__Distance return NULL; } else - { a = (prodml22__DistanceToBoundary3 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3, sizeof(prodml22__DistanceToBoundary3), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary3 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3, sizeof(prodml23__DistanceToBoundary3), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary3(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary3(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceToBoundary3(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceToBoundary3(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceToBoundary3 *p; - size_t k = sizeof(prodml22__DistanceToBoundary3); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3, n, gsoap_eml2_3_fdelete); + prodml23__DistanceToBoundary3 *p; + size_t k = sizeof(prodml23__DistanceToBoundary3); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceToBoundary3); + { p = SOAP_NEW(soap, prodml23__DistanceToBoundary3); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceToBoundary3, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceToBoundary3, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceToBoundary3 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceToBoundary3 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -188560,94 +188555,94 @@ SOAP_FMAC1 prodml22__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__DistanceToBoundary3::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceToBoundary3::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceToBoundary3(soap, tag ? tag : "prodml22:DistanceToBoundary3", -2, this, type)) + if (soap_out_prodml23__DistanceToBoundary3(soap, tag ? tag : "prodml23:DistanceToBoundary3", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceToBoundary3::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary3::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceToBoundary3(soap, this, tag, type); + return soap_get_prodml23__DistanceToBoundary3(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary3 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceToBoundary3(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceToBoundary3(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceToBoundary2::soap_default(struct soap *soap) +void prodml23__DistanceToBoundary2::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceToBoundary2::Abbreviation = "L2"; - this->prodml22__DistanceToBoundary2::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceToBoundary2::Abbreviation = "L2"; + this->prodml23__DistanceToBoundary2::Length = NULL; } -void prodml22__DistanceToBoundary2::soap_serialize(struct soap *soap) const +void prodml23__DistanceToBoundary2::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceToBoundary2::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceToBoundary2::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceToBoundary2::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceToBoundary2::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceToBoundary2::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceToBoundary2::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceToBoundary2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceToBoundary2::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceToBoundary2(soap, tag, id, this, type); + return soap_out_prodml23__DistanceToBoundary2(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary2(struct soap *soap, const char *tag, int id, const prodml22__DistanceToBoundary2 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary2(struct soap *soap, const char *tag, int id, const prodml23__DistanceToBoundary2 *a, const char *type) { if (!type) - type = "prodml22:DistanceToBoundary2"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceToBoundary2"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceToBoundary2), type ? type : "prodml22:DistanceToBoundary2")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2), type ? type : "prodml23:DistanceToBoundary2")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceToBoundary2::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceToBoundary2::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceToBoundary2::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceToBoundary2::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceToBoundary2::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceToBoundary2::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceToBoundary2::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary2::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceToBoundary2(soap, tag, this, type); + return soap_in_prodml23__DistanceToBoundary2(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary2(struct soap *soap, const char *tag, prodml22__DistanceToBoundary2 *a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary2(struct soap *soap, const char *tag, prodml23__DistanceToBoundary2 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceToBoundary2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2, sizeof(prodml22__DistanceToBoundary2), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceToBoundary2*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2, sizeof(prodml23__DistanceToBoundary2), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceToBoundary2 *)a->soap_in(soap, tag, type); + return (prodml23__DistanceToBoundary2 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -188658,21 +188653,21 @@ SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml22__Distance for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceToBoundary2::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceToBoundary2::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceToBoundary2::Abbreviation.compare("L2"))) + if (*soap->href != '#' && (a->prodml23__DistanceToBoundary2::Abbreviation.compare("L2"))) { soap->error = SOAP_FIXED; return NULL; } @@ -188680,7 +188675,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml22__Distance } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceToBoundary2::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceToBoundary2::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -188694,7 +188689,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml22__Distance } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceToBoundary2::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceToBoundary2::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -188704,35 +188699,35 @@ SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml22__Distance return NULL; } else - { a = (prodml22__DistanceToBoundary2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2, sizeof(prodml22__DistanceToBoundary2), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary2 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2, sizeof(prodml23__DistanceToBoundary2), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary2(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceToBoundary2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceToBoundary2(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceToBoundary2 *p; - size_t k = sizeof(prodml22__DistanceToBoundary2); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2, n, gsoap_eml2_3_fdelete); + prodml23__DistanceToBoundary2 *p; + size_t k = sizeof(prodml23__DistanceToBoundary2); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceToBoundary2); + { p = SOAP_NEW(soap, prodml23__DistanceToBoundary2); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceToBoundary2, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceToBoundary2, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceToBoundary2 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceToBoundary2 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -188742,94 +188737,94 @@ SOAP_FMAC1 prodml22__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__DistanceToBoundary2::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceToBoundary2::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceToBoundary2(soap, tag ? tag : "prodml22:DistanceToBoundary2", -2, this, type)) + if (soap_out_prodml23__DistanceToBoundary2(soap, tag ? tag : "prodml23:DistanceToBoundary2", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceToBoundary2::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary2::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceToBoundary2(soap, this, tag, type); + return soap_get_prodml23__DistanceToBoundary2(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary2 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceToBoundary2(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceToBoundary2(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceToBoundary1::soap_default(struct soap *soap) +void prodml23__DistanceToBoundary1::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceToBoundary1::Abbreviation = "L1"; - this->prodml22__DistanceToBoundary1::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceToBoundary1::Abbreviation = "L1"; + this->prodml23__DistanceToBoundary1::Length = NULL; } -void prodml22__DistanceToBoundary1::soap_serialize(struct soap *soap) const +void prodml23__DistanceToBoundary1::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceToBoundary1::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceToBoundary1::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceToBoundary1::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceToBoundary1::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceToBoundary1::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceToBoundary1::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceToBoundary1::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceToBoundary1::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceToBoundary1(soap, tag, id, this, type); + return soap_out_prodml23__DistanceToBoundary1(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary1(struct soap *soap, const char *tag, int id, const prodml22__DistanceToBoundary1 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary1(struct soap *soap, const char *tag, int id, const prodml23__DistanceToBoundary1 *a, const char *type) { if (!type) - type = "prodml22:DistanceToBoundary1"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceToBoundary1"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceToBoundary1), type ? type : "prodml22:DistanceToBoundary1")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1), type ? type : "prodml23:DistanceToBoundary1")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceToBoundary1::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceToBoundary1::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceToBoundary1::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceToBoundary1::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceToBoundary1::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceToBoundary1::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceToBoundary1::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary1::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceToBoundary1(soap, tag, this, type); + return soap_in_prodml23__DistanceToBoundary1(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary1(struct soap *soap, const char *tag, prodml22__DistanceToBoundary1 *a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary1(struct soap *soap, const char *tag, prodml23__DistanceToBoundary1 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceToBoundary1*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1, sizeof(prodml22__DistanceToBoundary1), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceToBoundary1*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1, sizeof(prodml23__DistanceToBoundary1), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceToBoundary1 *)a->soap_in(soap, tag, type); + return (prodml23__DistanceToBoundary1 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -188840,21 +188835,21 @@ SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml22__Distance for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceToBoundary1::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceToBoundary1::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceToBoundary1::Abbreviation.compare("L1"))) + if (*soap->href != '#' && (a->prodml23__DistanceToBoundary1::Abbreviation.compare("L1"))) { soap->error = SOAP_FIXED; return NULL; } @@ -188862,7 +188857,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml22__Distance } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceToBoundary1::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceToBoundary1::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -188876,7 +188871,7 @@ SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml22__Distance } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceToBoundary1::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceToBoundary1::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -188886,35 +188881,35 @@ SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml22__Distance return NULL; } else - { a = (prodml22__DistanceToBoundary1 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1, sizeof(prodml22__DistanceToBoundary1), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary1 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1, sizeof(prodml23__DistanceToBoundary1), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary1(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary1(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceToBoundary1(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceToBoundary1(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceToBoundary1 *p; - size_t k = sizeof(prodml22__DistanceToBoundary1); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1, n, gsoap_eml2_3_fdelete); + prodml23__DistanceToBoundary1 *p; + size_t k = sizeof(prodml23__DistanceToBoundary1); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceToBoundary1); + { p = SOAP_NEW(soap, prodml23__DistanceToBoundary1); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceToBoundary1, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceToBoundary1, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceToBoundary1 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceToBoundary1 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -188924,94 +188919,94 @@ SOAP_FMAC1 prodml22__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__DistanceToBoundary1::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceToBoundary1::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceToBoundary1(soap, tag ? tag : "prodml22:DistanceToBoundary1", -2, this, type)) + if (soap_out_prodml23__DistanceToBoundary1(soap, tag ? tag : "prodml23:DistanceToBoundary1", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceToBoundary1::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceToBoundary1::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceToBoundary1(soap, this, tag, type); + return soap_get_prodml23__DistanceToBoundary1(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary1 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceToBoundary1(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceToBoundary1(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceMidPerforationsToBottomBoundary::soap_default(struct soap *soap) +void prodml23__DistanceMidPerforationsToBottomBoundary::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation = "Zp"; - this->prodml22__DistanceMidPerforationsToBottomBoundary::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation = "Zp"; + this->prodml23__DistanceMidPerforationsToBottomBoundary::Length = NULL; } -void prodml22__DistanceMidPerforationsToBottomBoundary::soap_serialize(struct soap *soap) const +void prodml23__DistanceMidPerforationsToBottomBoundary::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceMidPerforationsToBottomBoundary::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceMidPerforationsToBottomBoundary::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceMidPerforationsToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceMidPerforationsToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, id, this, type); + return soap_out_prodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml22__DistanceMidPerforationsToBottomBoundary *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml23__DistanceMidPerforationsToBottomBoundary *a, const char *type) { if (!type) - type = "prodml22:DistanceMidPerforationsToBottomBoundary"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceMidPerforationsToBottomBoundary"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary), type ? type : "prodml22:DistanceMidPerforationsToBottomBoundary")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary), type ? type : "prodml23:DistanceMidPerforationsToBottomBoundary")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceMidPerforationsToBottomBoundary::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceMidPerforationsToBottomBoundary::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceMidPerforationsToBottomBoundary::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceMidPerforationsToBottomBoundary::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceMidPerforationsToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceMidPerforationsToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, this, type); + return soap_in_prodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceMidPerforationsToBottomBoundary *a, const char *type) +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceMidPerforationsToBottomBoundary *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceMidPerforationsToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary, sizeof(prodml22__DistanceMidPerforationsToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceMidPerforationsToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary, sizeof(prodml23__DistanceMidPerforationsToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceMidPerforationsToBottomBoundary *)a->soap_in(soap, tag, type); + return (prodml23__DistanceMidPerforationsToBottomBoundary *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -189022,21 +189017,21 @@ SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_i for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation.compare("Zp"))) + if (*soap->href != '#' && (a->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation.compare("Zp"))) { soap->error = SOAP_FIXED; return NULL; } @@ -189044,7 +189039,7 @@ SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_i } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceMidPerforationsToBottomBoundary::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceMidPerforationsToBottomBoundary::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -189058,7 +189053,7 @@ SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_i } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceMidPerforationsToBottomBoundary::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceMidPerforationsToBottomBoundary::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -189068,35 +189063,35 @@ SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_i return NULL; } else - { a = (prodml22__DistanceMidPerforationsToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary, sizeof(prodml22__DistanceMidPerforationsToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceMidPerforationsToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary, sizeof(prodml23__DistanceMidPerforationsToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceMidPerforationsToBottomBoundary *p; - size_t k = sizeof(prodml22__DistanceMidPerforationsToBottomBoundary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary, n, gsoap_eml2_3_fdelete); + prodml23__DistanceMidPerforationsToBottomBoundary *p; + size_t k = sizeof(prodml23__DistanceMidPerforationsToBottomBoundary); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceMidPerforationsToBottomBoundary); + { p = SOAP_NEW(soap, prodml23__DistanceMidPerforationsToBottomBoundary); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceMidPerforationsToBottomBoundary, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceMidPerforationsToBottomBoundary, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceMidPerforationsToBottomBoundary location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceMidPerforationsToBottomBoundary location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -189106,94 +189101,94 @@ SOAP_FMAC1 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_i return p; } -int prodml22__DistanceMidPerforationsToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceMidPerforationsToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceMidPerforationsToBottomBoundary(soap, tag ? tag : "prodml22:DistanceMidPerforationsToBottomBoundary", -2, this, type)) + if (soap_out_prodml23__DistanceMidPerforationsToBottomBoundary(soap, tag ? tag : "prodml23:DistanceMidPerforationsToBottomBoundary", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceMidPerforationsToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceMidPerforationsToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceMidPerforationsToBottomBoundary(soap, this, tag, type); + return soap_get_prodml23__DistanceMidPerforationsToBottomBoundary(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceMidFractureHeightToBottomBoundary::soap_default(struct soap *soap) +void prodml23__DistanceMidFractureHeightToBottomBoundary::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation = "Zf"; - this->prodml22__DistanceMidFractureHeightToBottomBoundary::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation = "Zf"; + this->prodml23__DistanceMidFractureHeightToBottomBoundary::Length = NULL; } -void prodml22__DistanceMidFractureHeightToBottomBoundary::soap_serialize(struct soap *soap) const +void prodml23__DistanceMidFractureHeightToBottomBoundary::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceMidFractureHeightToBottomBoundary::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceMidFractureHeightToBottomBoundary::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceMidFractureHeightToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceMidFractureHeightToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, id, this, type); + return soap_out_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml22__DistanceMidFractureHeightToBottomBoundary *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml23__DistanceMidFractureHeightToBottomBoundary *a, const char *type) { if (!type) - type = "prodml22:DistanceMidFractureHeightToBottomBoundary"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceMidFractureHeightToBottomBoundary"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary), type ? type : "prodml22:DistanceMidFractureHeightToBottomBoundary")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary), type ? type : "prodml23:DistanceMidFractureHeightToBottomBoundary")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceMidFractureHeightToBottomBoundary::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceMidFractureHeightToBottomBoundary::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceMidFractureHeightToBottomBoundary::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceMidFractureHeightToBottomBoundary::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceMidFractureHeightToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceMidFractureHeightToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, this, type); + return soap_in_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceMidFractureHeightToBottomBoundary *a, const char *type) +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceMidFractureHeightToBottomBoundary *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceMidFractureHeightToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary, sizeof(prodml22__DistanceMidFractureHeightToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceMidFractureHeightToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary, sizeof(prodml23__DistanceMidFractureHeightToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceMidFractureHeightToBottomBoundary *)a->soap_in(soap, tag, type); + return (prodml23__DistanceMidFractureHeightToBottomBoundary *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -189204,21 +189199,21 @@ SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation.compare("Zf"))) + if (*soap->href != '#' && (a->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation.compare("Zf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -189226,7 +189221,7 @@ SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceMidFractureHeightToBottomBoundary::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceMidFractureHeightToBottomBoundary::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -189240,7 +189235,7 @@ SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceMidFractureHeightToBottomBoundary::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceMidFractureHeightToBottomBoundary::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -189250,35 +189245,35 @@ SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap return NULL; } else - { a = (prodml22__DistanceMidFractureHeightToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary, sizeof(prodml22__DistanceMidFractureHeightToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceMidFractureHeightToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary, sizeof(prodml23__DistanceMidFractureHeightToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceMidFractureHeightToBottomBoundary *p; - size_t k = sizeof(prodml22__DistanceMidFractureHeightToBottomBoundary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary, n, gsoap_eml2_3_fdelete); + prodml23__DistanceMidFractureHeightToBottomBoundary *p; + size_t k = sizeof(prodml23__DistanceMidFractureHeightToBottomBoundary); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceMidFractureHeightToBottomBoundary); + { p = SOAP_NEW(soap, prodml23__DistanceMidFractureHeightToBottomBoundary); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceMidFractureHeightToBottomBoundary, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceMidFractureHeightToBottomBoundary, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceMidFractureHeightToBottomBoundary location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceMidFractureHeightToBottomBoundary location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -189288,94 +189283,94 @@ SOAP_FMAC1 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap return p; } -int prodml22__DistanceMidFractureHeightToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceMidFractureHeightToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag ? tag : "prodml22:DistanceMidFractureHeightToBottomBoundary", -2, this, type)) + if (soap_out_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag ? tag : "prodml23:DistanceMidFractureHeightToBottomBoundary", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceMidFractureHeightToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceMidFractureHeightToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, this, tag, type); + return soap_get_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistanceFractureToBottomBoundary::soap_default(struct soap *soap) +void prodml23__DistanceFractureToBottomBoundary::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DistanceFractureToBottomBoundary::Abbreviation = "Zf"; - this->prodml22__DistanceFractureToBottomBoundary::Length = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DistanceFractureToBottomBoundary::Abbreviation = "Zf"; + this->prodml23__DistanceFractureToBottomBoundary::Length = NULL; } -void prodml22__DistanceFractureToBottomBoundary::soap_serialize(struct soap *soap) const +void prodml23__DistanceFractureToBottomBoundary::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistanceFractureToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DistanceFractureToBottomBoundary::Abbreviation); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__DistanceFractureToBottomBoundary::Length); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DistanceFractureToBottomBoundary::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DistanceFractureToBottomBoundary::Abbreviation); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__DistanceFractureToBottomBoundary::Length); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DistanceFractureToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistanceFractureToBottomBoundary::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistanceFractureToBottomBoundary(soap, tag, id, this, type); + return soap_out_prodml23__DistanceFractureToBottomBoundary(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml22__DistanceFractureToBottomBoundary *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, int id, const prodml23__DistanceFractureToBottomBoundary *a, const char *type) { if (!type) - type = "prodml22:DistanceFractureToBottomBoundary"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DistanceFractureToBottomBoundary"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary), type ? type : "prodml22:DistanceFractureToBottomBoundary")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary), type ? type : "prodml23:DistanceFractureToBottomBoundary")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DistanceFractureToBottomBoundary::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DistanceFractureToBottomBoundary::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DistanceFractureToBottomBoundary::Length) - { if (soap_element_empty(soap, "prodml22:Length", 0, NULL)) + if (!a->prodml23__DistanceFractureToBottomBoundary::Length) + { if (soap_element_empty(soap, "prodml23:Length", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__DistanceFractureToBottomBoundary::Length, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__DistanceFractureToBottomBoundary::Length, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistanceFractureToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceFractureToBottomBoundary::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistanceFractureToBottomBoundary(soap, tag, this, type); + return soap_in_prodml23__DistanceFractureToBottomBoundary(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceFractureToBottomBoundary *a, const char *type) +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceFractureToBottomBoundary *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistanceFractureToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary, sizeof(prodml22__DistanceFractureToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistanceFractureToBottomBoundary*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary, sizeof(prodml23__DistanceFractureToBottomBoundary), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistanceFractureToBottomBoundary *)a->soap_in(soap, tag, type); + return (prodml23__DistanceFractureToBottomBoundary *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -189386,21 +189381,21 @@ SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DistanceFractureToBottomBoundary::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DistanceFractureToBottomBoundary::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DistanceFractureToBottomBoundary::Abbreviation.compare("Zf"))) + if (*soap->href != '#' && (a->prodml23__DistanceFractureToBottomBoundary::Abbreviation.compare("Zf"))) { soap->error = SOAP_FIXED; return NULL; } @@ -189408,7 +189403,7 @@ SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodm } } if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__DistanceFractureToBottomBoundary::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__DistanceFractureToBottomBoundary::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } @@ -189422,7 +189417,7 @@ SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DistanceFractureToBottomBoundary::Length)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DistanceFractureToBottomBoundary::Length)) { soap->error = SOAP_OCCURS; return NULL; } @@ -189432,35 +189427,35 @@ SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__DistanceFractureToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary, sizeof(prodml22__DistanceFractureToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceFractureToBottomBoundary *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary, sizeof(prodml23__DistanceFractureToBottomBoundary), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistanceFractureToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistanceFractureToBottomBoundary(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistanceFractureToBottomBoundary *p; - size_t k = sizeof(prodml22__DistanceFractureToBottomBoundary); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary, n, gsoap_eml2_3_fdelete); + prodml23__DistanceFractureToBottomBoundary *p; + size_t k = sizeof(prodml23__DistanceFractureToBottomBoundary); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistanceFractureToBottomBoundary); + { p = SOAP_NEW(soap, prodml23__DistanceFractureToBottomBoundary); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistanceFractureToBottomBoundary, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistanceFractureToBottomBoundary, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistanceFractureToBottomBoundary location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistanceFractureToBottomBoundary location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -189470,94 +189465,94 @@ SOAP_FMAC1 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instanti return p; } -int prodml22__DistanceFractureToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistanceFractureToBottomBoundary::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistanceFractureToBottomBoundary(soap, tag ? tag : "prodml22:DistanceFractureToBottomBoundary", -2, this, type)) + if (soap_out_prodml23__DistanceFractureToBottomBoundary(soap, tag ? tag : "prodml23:DistanceFractureToBottomBoundary", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistanceFractureToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistanceFractureToBottomBoundary::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistanceFractureToBottomBoundary(soap, this, tag, type); + return soap_get_prodml23__DistanceFractureToBottomBoundary(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistanceFractureToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistanceFractureToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeltaTimeStorageChanges::soap_default(struct soap *soap) +void prodml23__DeltaTimeStorageChanges::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DeltaTimeStorageChanges::Abbreviation = "dT"; - this->prodml22__DeltaTimeStorageChanges::Time = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DeltaTimeStorageChanges::Abbreviation = "dT"; + this->prodml23__DeltaTimeStorageChanges::Time = NULL; } -void prodml22__DeltaTimeStorageChanges::soap_serialize(struct soap *soap) const +void prodml23__DeltaTimeStorageChanges::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DeltaTimeStorageChanges::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DeltaTimeStorageChanges::Abbreviation); - soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml22__DeltaTimeStorageChanges::Time); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DeltaTimeStorageChanges::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DeltaTimeStorageChanges::Abbreviation); + soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml23__DeltaTimeStorageChanges::Time); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DeltaTimeStorageChanges::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeltaTimeStorageChanges::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeltaTimeStorageChanges(soap, tag, id, this, type); + return soap_out_prodml23__DeltaTimeStorageChanges(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeltaTimeStorageChanges(struct soap *soap, const char *tag, int id, const prodml22__DeltaTimeStorageChanges *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeltaTimeStorageChanges(struct soap *soap, const char *tag, int id, const prodml23__DeltaTimeStorageChanges *a, const char *type) { if (!type) - type = "prodml22:DeltaTimeStorageChanges"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DeltaTimeStorageChanges"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges), type ? type : "prodml22:DeltaTimeStorageChanges")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges), type ? type : "prodml23:DeltaTimeStorageChanges")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DeltaTimeStorageChanges::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DeltaTimeStorageChanges::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DeltaTimeStorageChanges::Time) - { if (soap_element_empty(soap, "prodml22:Time", 0, NULL)) + if (!a->prodml23__DeltaTimeStorageChanges::Time) + { if (soap_element_empty(soap, "prodml23:Time", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml22:Time", -1, &a->prodml22__DeltaTimeStorageChanges::Time, "eml23:TimeMeasure")) + else if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml23:Time", -1, &a->prodml23__DeltaTimeStorageChanges::Time, "eml23:TimeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeltaTimeStorageChanges::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeltaTimeStorageChanges::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeltaTimeStorageChanges(soap, tag, this, type); + return soap_in_prodml23__DeltaTimeStorageChanges(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml22__DeltaTimeStorageChanges(struct soap *soap, const char *tag, prodml22__DeltaTimeStorageChanges *a, const char *type) +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml23__DeltaTimeStorageChanges(struct soap *soap, const char *tag, prodml23__DeltaTimeStorageChanges *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeltaTimeStorageChanges*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges, sizeof(prodml22__DeltaTimeStorageChanges), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeltaTimeStorageChanges*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges, sizeof(prodml23__DeltaTimeStorageChanges), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeltaTimeStorageChanges *)a->soap_in(soap, tag, type); + return (prodml23__DeltaTimeStorageChanges *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -189568,21 +189563,21 @@ SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml22__Delt for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DeltaTimeStorageChanges::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DeltaTimeStorageChanges::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DeltaTimeStorageChanges::Abbreviation.compare("dT"))) + if (*soap->href != '#' && (a->prodml23__DeltaTimeStorageChanges::Abbreviation.compare("dT"))) { soap->error = SOAP_FIXED; return NULL; } @@ -189590,7 +189585,7 @@ SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml22__Delt } } if (soap_flag_Time1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml22:Time", &a->prodml22__DeltaTimeStorageChanges::Time, "eml23:TimeMeasure")) + { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml23:Time", &a->prodml23__DeltaTimeStorageChanges::Time, "eml23:TimeMeasure")) { soap_flag_Time1--; continue; } @@ -189604,7 +189599,7 @@ SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml22__Delt } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DeltaTimeStorageChanges::Time)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DeltaTimeStorageChanges::Time)) { soap->error = SOAP_OCCURS; return NULL; } @@ -189614,35 +189609,35 @@ SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml22__Delt return NULL; } else - { a = (prodml22__DeltaTimeStorageChanges *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges, sizeof(prodml22__DeltaTimeStorageChanges), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeltaTimeStorageChanges *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges, sizeof(prodml23__DeltaTimeStorageChanges), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodml22__DeltaTimeStorageChanges(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodml23__DeltaTimeStorageChanges(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeltaTimeStorageChanges(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeltaTimeStorageChanges(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeltaTimeStorageChanges *p; - size_t k = sizeof(prodml22__DeltaTimeStorageChanges); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges, n, gsoap_eml2_3_fdelete); + prodml23__DeltaTimeStorageChanges *p; + size_t k = sizeof(prodml23__DeltaTimeStorageChanges); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeltaTimeStorageChanges); + { p = SOAP_NEW(soap, prodml23__DeltaTimeStorageChanges); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeltaTimeStorageChanges, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeltaTimeStorageChanges, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeltaTimeStorageChanges location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeltaTimeStorageChanges location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -189652,94 +189647,94 @@ SOAP_FMAC1 prodml22__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__DeltaTimeStorageChanges::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeltaTimeStorageChanges::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeltaTimeStorageChanges(soap, tag ? tag : "prodml22:DeltaTimeStorageChanges", -2, this, type)) + if (soap_out_prodml23__DeltaTimeStorageChanges(soap, tag ? tag : "prodml23:DeltaTimeStorageChanges", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeltaTimeStorageChanges::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeltaTimeStorageChanges::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeltaTimeStorageChanges(soap, this, tag, type); + return soap_get_prodml23__DeltaTimeStorageChanges(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_get_prodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges * SOAP_FMAC4 soap_get_prodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeltaTimeStorageChanges(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeltaTimeStorageChanges(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeltaPressureTotalSkin::soap_default(struct soap *soap) +void prodml23__DeltaPressureTotalSkin::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__DeltaPressureTotalSkin::Abbreviation = "dP Skin"; - this->prodml22__DeltaPressureTotalSkin::Pressure = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__DeltaPressureTotalSkin::Abbreviation = "dP Skin"; + this->prodml23__DeltaPressureTotalSkin::Pressure = NULL; } -void prodml22__DeltaPressureTotalSkin::soap_serialize(struct soap *soap) const +void prodml23__DeltaPressureTotalSkin::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DeltaPressureTotalSkin::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DeltaPressureTotalSkin::Abbreviation); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__DeltaPressureTotalSkin::Pressure); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DeltaPressureTotalSkin::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DeltaPressureTotalSkin::Abbreviation); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__DeltaPressureTotalSkin::Pressure); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__DeltaPressureTotalSkin::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeltaPressureTotalSkin::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeltaPressureTotalSkin(soap, tag, id, this, type); + return soap_out_prodml23__DeltaPressureTotalSkin(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeltaPressureTotalSkin(struct soap *soap, const char *tag, int id, const prodml22__DeltaPressureTotalSkin *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeltaPressureTotalSkin(struct soap *soap, const char *tag, int id, const prodml23__DeltaPressureTotalSkin *a, const char *type) { if (!type) - type = "prodml22:DeltaPressureTotalSkin"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:DeltaPressureTotalSkin"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin), type ? type : "prodml22:DeltaPressureTotalSkin")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin), type ? type : "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__DeltaPressureTotalSkin::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__DeltaPressureTotalSkin::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__DeltaPressureTotalSkin::Pressure) - { if (soap_element_empty(soap, "prodml22:Pressure", 0, NULL)) + if (!a->prodml23__DeltaPressureTotalSkin::Pressure) + { if (soap_element_empty(soap, "prodml23:Pressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__DeltaPressureTotalSkin::Pressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__DeltaPressureTotalSkin::Pressure, "eml23:PressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeltaPressureTotalSkin::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeltaPressureTotalSkin::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeltaPressureTotalSkin(soap, tag, this, type); + return soap_in_prodml23__DeltaPressureTotalSkin(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml22__DeltaPressureTotalSkin(struct soap *soap, const char *tag, prodml22__DeltaPressureTotalSkin *a, const char *type) +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml23__DeltaPressureTotalSkin(struct soap *soap, const char *tag, prodml23__DeltaPressureTotalSkin *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeltaPressureTotalSkin*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin, sizeof(prodml22__DeltaPressureTotalSkin), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeltaPressureTotalSkin*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin, sizeof(prodml23__DeltaPressureTotalSkin), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeltaPressureTotalSkin *)a->soap_in(soap, tag, type); + return (prodml23__DeltaPressureTotalSkin *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -189750,21 +189745,21 @@ SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml22__Delta for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__DeltaPressureTotalSkin::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__DeltaPressureTotalSkin::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__DeltaPressureTotalSkin::Abbreviation.compare("dP Skin"))) + if (*soap->href != '#' && (a->prodml23__DeltaPressureTotalSkin::Abbreviation.compare("dP Skin"))) { soap->error = SOAP_FIXED; return NULL; } @@ -189772,7 +189767,7 @@ SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml22__Delta } } if (soap_flag_Pressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__DeltaPressureTotalSkin::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__DeltaPressureTotalSkin::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure1--; continue; } @@ -189786,7 +189781,7 @@ SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml22__Delta } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__DeltaPressureTotalSkin::Pressure)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__DeltaPressureTotalSkin::Pressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -189796,35 +189791,35 @@ SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml22__Delta return NULL; } else - { a = (prodml22__DeltaPressureTotalSkin *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin, sizeof(prodml22__DeltaPressureTotalSkin), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeltaPressureTotalSkin *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin, sizeof(prodml23__DeltaPressureTotalSkin), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml22__DeltaPressureTotalSkin(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml23__DeltaPressureTotalSkin(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeltaPressureTotalSkin(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeltaPressureTotalSkin(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeltaPressureTotalSkin *p; - size_t k = sizeof(prodml22__DeltaPressureTotalSkin); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin, n, gsoap_eml2_3_fdelete); + prodml23__DeltaPressureTotalSkin *p; + size_t k = sizeof(prodml23__DeltaPressureTotalSkin); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeltaPressureTotalSkin); + { p = SOAP_NEW(soap, prodml23__DeltaPressureTotalSkin); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeltaPressureTotalSkin, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeltaPressureTotalSkin, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeltaPressureTotalSkin location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeltaPressureTotalSkin location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -189834,99 +189829,99 @@ SOAP_FMAC1 prodml22__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__DeltaPressureTotalSkin::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeltaPressureTotalSkin::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeltaPressureTotalSkin(soap, tag ? tag : "prodml22:DeltaPressureTotalSkin", -2, this, type)) + if (soap_out_prodml23__DeltaPressureTotalSkin(soap, tag ? tag : "prodml23:DeltaPressureTotalSkin", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeltaPressureTotalSkin::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeltaPressureTotalSkin::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeltaPressureTotalSkin(soap, this, tag, type); + return soap_get_prodml23__DeltaPressureTotalSkin(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_get_prodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin * SOAP_FMAC4 soap_get_prodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeltaPressureTotalSkin(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeltaPressureTotalSkin(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomParameter::soap_default(struct soap *soap) +void prodml23__CustomParameter::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__CustomParameter::Name); - soap_default_eml23__String64(soap, &this->prodml22__CustomParameter::Abbreviation); - this->prodml22__CustomParameter::MeasureValue = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + soap_default_eml23__String64(soap, &this->prodml23__CustomParameter::Name); + soap_default_eml23__String64(soap, &this->prodml23__CustomParameter::Abbreviation); + this->prodml23__CustomParameter::MeasureValue = NULL; } -void prodml22__CustomParameter::soap_serialize(struct soap *soap) const +void prodml23__CustomParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__CustomParameter::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__CustomParameter::Name); - soap_embedded(soap, &this->prodml22__CustomParameter::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__CustomParameter::Abbreviation); - soap_serialize_PointerToprodml22__GeneralMeasureType(soap, &this->prodml22__CustomParameter::MeasureValue); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__CustomParameter::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__CustomParameter::Name); + soap_embedded(soap, &this->prodml23__CustomParameter::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__CustomParameter::Abbreviation); + soap_serialize_PointerToprodml23__GeneralMeasureType(soap, &this->prodml23__CustomParameter::MeasureValue); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__CustomParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomParameter(soap, tag, id, this, type); + return soap_out_prodml23__CustomParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomParameter(struct soap *soap, const char *tag, int id, const prodml22__CustomParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomParameter(struct soap *soap, const char *tag, int id, const prodml23__CustomParameter *a, const char *type) { if (!type) - type = "prodml22:CustomParameter"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:CustomParameter"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__CustomParameter), type ? type : "prodml22:CustomParameter")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter), type ? type : "prodml23:CustomParameter")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__CustomParameter::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__CustomParameter::Name, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__CustomParameter::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__CustomParameter::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__CustomParameter::MeasureValue) - { if (soap_element_empty(soap, "prodml22:MeasureValue", 0, NULL)) + if (!a->prodml23__CustomParameter::MeasureValue) + { if (soap_element_empty(soap, "prodml23:MeasureValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__GeneralMeasureType(soap, "prodml22:MeasureValue", -1, &a->prodml22__CustomParameter::MeasureValue, "prodml22:GeneralMeasureType")) + else if (soap_out_PointerToprodml23__GeneralMeasureType(soap, "prodml23:MeasureValue", -1, &a->prodml23__CustomParameter::MeasureValue, "prodml23:GeneralMeasureType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomParameter(soap, tag, this, type); + return soap_in_prodml23__CustomParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_in_prodml22__CustomParameter(struct soap *soap, const char *tag, prodml22__CustomParameter *a, const char *type) +SOAP_FMAC3 prodml23__CustomParameter * SOAP_FMAC4 soap_in_prodml23__CustomParameter(struct soap *soap, const char *tag, prodml23__CustomParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, sizeof(prodml22__CustomParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, sizeof(prodml23__CustomParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomParameter *)a->soap_in(soap, tag, type); + return (prodml23__CustomParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -189938,31 +189933,31 @@ SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_in_prodml22__CustomParame for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__CustomParameter::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__CustomParameter::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__CustomParameter::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__CustomParameter::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; continue; } } if (soap_flag_MeasureValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__GeneralMeasureType(soap, "prodml22:MeasureValue", &a->prodml22__CustomParameter::MeasureValue, "prodml22:GeneralMeasureType")) + { if (soap_in_PointerToprodml23__GeneralMeasureType(soap, "prodml23:MeasureValue", &a->prodml23__CustomParameter::MeasureValue, "prodml23:GeneralMeasureType")) { soap_flag_MeasureValue1--; continue; } @@ -189976,7 +189971,7 @@ SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_in_prodml22__CustomParame } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Name1 > 0 || soap_flag_Abbreviation1 > 0 || !a->prodml22__CustomParameter::MeasureValue)) + if ((soap_flag_Name1 > 0 || soap_flag_Abbreviation1 > 0 || !a->prodml23__CustomParameter::MeasureValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -189986,35 +189981,35 @@ SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_in_prodml22__CustomParame return NULL; } else - { a = (prodml22__CustomParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, sizeof(prodml22__CustomParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, sizeof(prodml23__CustomParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml22__CustomParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml23__CustomParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomParameter *p; - size_t k = sizeof(prodml22__CustomParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, n, gsoap_eml2_3_fdelete); + prodml23__CustomParameter *p; + size_t k = sizeof(prodml23__CustomParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomParameter); + { p = SOAP_NEW(soap, prodml23__CustomParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -190024,94 +190019,94 @@ SOAP_FMAC1 prodml22__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml22__Cus return p; } -int prodml22__CustomParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomParameter(soap, tag ? tag : "prodml22:CustomParameter", -2, this, type)) + if (soap_out_prodml23__CustomParameter(soap, tag ? tag : "prodml23:CustomParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomParameter(soap, this, tag, type); + return soap_get_prodml23__CustomParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_get_prodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomParameter * SOAP_FMAC4 soap_get_prodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ConvergenceSkinRelativeToTotalThickness::soap_default(struct soap *soap) +void prodml23__ConvergenceSkinRelativeToTotalThickness::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation = "Sconv"; - this->prodml22__ConvergenceSkinRelativeToTotalThickness::Value = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation = "Sconv"; + this->prodml23__ConvergenceSkinRelativeToTotalThickness::Value = NULL; } -void prodml22__ConvergenceSkinRelativeToTotalThickness::soap_serialize(struct soap *soap) const +void prodml23__ConvergenceSkinRelativeToTotalThickness::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__ConvergenceSkinRelativeToTotalThickness::Value); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__ConvergenceSkinRelativeToTotalThickness::Value); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__ConvergenceSkinRelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ConvergenceSkinRelativeToTotalThickness::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, id, this, type); + return soap_out_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml22__ConvergenceSkinRelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, const prodml23__ConvergenceSkinRelativeToTotalThickness *a, const char *type) { if (!type) - type = "prodml22:ConvergenceSkinRelativeToTotalThickness"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:ConvergenceSkinRelativeToTotalThickness"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness), type ? type : "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness), type ? type : "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__ConvergenceSkinRelativeToTotalThickness::Value) - { if (soap_element_empty(soap, "prodml22:Value", 0, NULL)) + if (!a->prodml23__ConvergenceSkinRelativeToTotalThickness::Value) + { if (soap_element_empty(soap, "prodml23:Value", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", -1, &a->prodml22__ConvergenceSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + else if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", -1, &a->prodml23__ConvergenceSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ConvergenceSkinRelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConvergenceSkinRelativeToTotalThickness::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, this, type); + return soap_in_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__ConvergenceSkinRelativeToTotalThickness *a, const char *type) +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__ConvergenceSkinRelativeToTotalThickness *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ConvergenceSkinRelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness, sizeof(prodml22__ConvergenceSkinRelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ConvergenceSkinRelativeToTotalThickness*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness, sizeof(prodml23__ConvergenceSkinRelativeToTotalThickness), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ConvergenceSkinRelativeToTotalThickness *)a->soap_in(soap, tag, type); + return (prodml23__ConvergenceSkinRelativeToTotalThickness *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -190122,21 +190117,21 @@ SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_i for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation.compare("Sconv"))) + if (*soap->href != '#' && (a->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation.compare("Sconv"))) { soap->error = SOAP_FIXED; return NULL; } @@ -190144,7 +190139,7 @@ SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_i } } if (soap_flag_Value1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:Value", &a->prodml22__ConvergenceSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:Value", &a->prodml23__ConvergenceSkinRelativeToTotalThickness::Value, "eml23:DimensionlessMeasure")) { soap_flag_Value1--; continue; } @@ -190158,7 +190153,7 @@ SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_i } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__ConvergenceSkinRelativeToTotalThickness::Value)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__ConvergenceSkinRelativeToTotalThickness::Value)) { soap->error = SOAP_OCCURS; return NULL; } @@ -190168,35 +190163,35 @@ SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_i return NULL; } else - { a = (prodml22__ConvergenceSkinRelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness, sizeof(prodml22__ConvergenceSkinRelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ConvergenceSkinRelativeToTotalThickness *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness, sizeof(prodml23__ConvergenceSkinRelativeToTotalThickness), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ConvergenceSkinRelativeToTotalThickness *p; - size_t k = sizeof(prodml22__ConvergenceSkinRelativeToTotalThickness); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness, n, gsoap_eml2_3_fdelete); + prodml23__ConvergenceSkinRelativeToTotalThickness *p; + size_t k = sizeof(prodml23__ConvergenceSkinRelativeToTotalThickness); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ConvergenceSkinRelativeToTotalThickness); + { p = SOAP_NEW(soap, prodml23__ConvergenceSkinRelativeToTotalThickness); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ConvergenceSkinRelativeToTotalThickness, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ConvergenceSkinRelativeToTotalThickness, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ConvergenceSkinRelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ConvergenceSkinRelativeToTotalThickness location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -190206,94 +190201,94 @@ SOAP_FMAC1 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_i return p; } -int prodml22__ConvergenceSkinRelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ConvergenceSkinRelativeToTotalThickness::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag ? tag : "prodml22:ConvergenceSkinRelativeToTotalThickness", -2, this, type)) + if (soap_out_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag ? tag : "prodml23:ConvergenceSkinRelativeToTotalThickness", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ConvergenceSkinRelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConvergenceSkinRelativeToTotalThickness::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, this, tag, type); + return soap_get_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AveragePressure::soap_default(struct soap *soap) +void prodml23__AveragePressure::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__AveragePressure::Abbreviation = "Pbar"; - this->prodml22__AveragePressure::Pressure = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__AveragePressure::Abbreviation = "Pbar"; + this->prodml23__AveragePressure::Pressure = NULL; } -void prodml22__AveragePressure::soap_serialize(struct soap *soap) const +void prodml23__AveragePressure::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__AveragePressure::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__AveragePressure::Abbreviation); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__AveragePressure::Pressure); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__AveragePressure::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__AveragePressure::Abbreviation); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__AveragePressure::Pressure); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__AveragePressure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AveragePressure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AveragePressure(soap, tag, id, this, type); + return soap_out_prodml23__AveragePressure(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AveragePressure(struct soap *soap, const char *tag, int id, const prodml22__AveragePressure *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AveragePressure(struct soap *soap, const char *tag, int id, const prodml23__AveragePressure *a, const char *type) { if (!type) - type = "prodml22:AveragePressure"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:AveragePressure"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__AveragePressure), type ? type : "prodml22:AveragePressure")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure), type ? type : "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__AveragePressure::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__AveragePressure::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__AveragePressure::Pressure) - { if (soap_element_empty(soap, "prodml22:Pressure", 0, NULL)) + if (!a->prodml23__AveragePressure::Pressure) + { if (soap_element_empty(soap, "prodml23:Pressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AveragePressure::Pressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AveragePressure::Pressure, "eml23:PressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AveragePressure::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AveragePressure::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AveragePressure(soap, tag, this, type); + return soap_in_prodml23__AveragePressure(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_in_prodml22__AveragePressure(struct soap *soap, const char *tag, prodml22__AveragePressure *a, const char *type) +SOAP_FMAC3 prodml23__AveragePressure * SOAP_FMAC4 soap_in_prodml23__AveragePressure(struct soap *soap, const char *tag, prodml23__AveragePressure *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AveragePressure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure, sizeof(prodml22__AveragePressure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AveragePressure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure, sizeof(prodml23__AveragePressure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AveragePressure *)a->soap_in(soap, tag, type); + return (prodml23__AveragePressure *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -190304,21 +190299,21 @@ SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_in_prodml22__AveragePress for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__AveragePressure::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__AveragePressure::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__AveragePressure::Abbreviation.compare("Pbar"))) + if (*soap->href != '#' && (a->prodml23__AveragePressure::Abbreviation.compare("Pbar"))) { soap->error = SOAP_FIXED; return NULL; } @@ -190326,7 +190321,7 @@ SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_in_prodml22__AveragePress } } if (soap_flag_Pressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AveragePressure::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AveragePressure::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure1--; continue; } @@ -190340,7 +190335,7 @@ SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_in_prodml22__AveragePress } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__AveragePressure::Pressure)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__AveragePressure::Pressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -190350,35 +190345,35 @@ SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_in_prodml22__AveragePress return NULL; } else - { a = (prodml22__AveragePressure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure, sizeof(prodml22__AveragePressure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AveragePressure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure, sizeof(prodml23__AveragePressure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml22__AveragePressure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml23__AveragePressure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AveragePressure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AveragePressure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__AveragePressure *p; - size_t k = sizeof(prodml22__AveragePressure); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure, n, gsoap_eml2_3_fdelete); + prodml23__AveragePressure *p; + size_t k = sizeof(prodml23__AveragePressure); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AveragePressure); + { p = SOAP_NEW(soap, prodml23__AveragePressure); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AveragePressure, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AveragePressure, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AveragePressure location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AveragePressure location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -190388,94 +190383,94 @@ SOAP_FMAC1 prodml22__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml22__Ave return p; } -int prodml22__AveragePressure::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AveragePressure::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AveragePressure(soap, tag ? tag : "prodml22:AveragePressure", -2, this, type)) + if (soap_out_prodml23__AveragePressure(soap, tag ? tag : "prodml23:AveragePressure", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AveragePressure::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AveragePressure::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AveragePressure(soap, this, tag, type); + return soap_get_prodml23__AveragePressure(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_get_prodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AveragePressure * SOAP_FMAC4 soap_get_prodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AveragePressure(soap, tag, p, type))) + if ((p = soap_in_prodml23__AveragePressure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AngleBetweenBoundaries::soap_default(struct soap *soap) +void prodml23__AngleBetweenBoundaries::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::soap_default(soap); - this->prodml22__AngleBetweenBoundaries::Abbreviation = "AngleBetweenBoundaries"; - this->prodml22__AngleBetweenBoundaries::Angle = NULL; + this->prodml23__AbstractParameter::soap_default(soap); + this->prodml23__AngleBetweenBoundaries::Abbreviation = "AngleBetweenBoundaries"; + this->prodml23__AngleBetweenBoundaries::Angle = NULL; } -void prodml22__AngleBetweenBoundaries::soap_serialize(struct soap *soap) const +void prodml23__AngleBetweenBoundaries::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__AngleBetweenBoundaries::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__AngleBetweenBoundaries::Abbreviation); - soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml22__AngleBetweenBoundaries::Angle); - this->prodml22__AbstractParameter::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__AngleBetweenBoundaries::Abbreviation, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__AngleBetweenBoundaries::Abbreviation); + soap_serialize_PointerToeml23__PlaneAngleMeasure(soap, &this->prodml23__AngleBetweenBoundaries::Angle); + this->prodml23__AbstractParameter::soap_serialize(soap); #endif } -int prodml22__AngleBetweenBoundaries::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AngleBetweenBoundaries::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AngleBetweenBoundaries(soap, tag, id, this, type); + return soap_out_prodml23__AngleBetweenBoundaries(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AngleBetweenBoundaries(struct soap *soap, const char *tag, int id, const prodml22__AngleBetweenBoundaries *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AngleBetweenBoundaries(struct soap *soap, const char *tag, int id, const prodml23__AngleBetweenBoundaries *a, const char *type) { if (!type) - type = "prodml22:AngleBetweenBoundaries"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:AngleBetweenBoundaries"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__AngleBetweenBoundaries), type ? type : "prodml22:AngleBetweenBoundaries")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries), type ? type : "prodml23:AngleBetweenBoundaries")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Abbreviation", -1, &a->prodml22__AngleBetweenBoundaries::Abbreviation, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Abbreviation", -1, &a->prodml23__AngleBetweenBoundaries::Abbreviation, "eml23:String64")) return soap->error; - if (!a->prodml22__AngleBetweenBoundaries::Angle) - { if (soap_element_empty(soap, "prodml22:Angle", 0, NULL)) + if (!a->prodml23__AngleBetweenBoundaries::Angle) + { if (soap_element_empty(soap, "prodml23:Angle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", -1, &a->prodml22__AngleBetweenBoundaries::Angle, "eml23:PlaneAngleMeasure")) + else if (soap_out_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", -1, &a->prodml23__AngleBetweenBoundaries::Angle, "eml23:PlaneAngleMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AngleBetweenBoundaries::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AngleBetweenBoundaries::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AngleBetweenBoundaries(soap, tag, this, type); + return soap_in_prodml23__AngleBetweenBoundaries(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml22__AngleBetweenBoundaries(struct soap *soap, const char *tag, prodml22__AngleBetweenBoundaries *a, const char *type) +SOAP_FMAC3 prodml23__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml23__AngleBetweenBoundaries(struct soap *soap, const char *tag, prodml23__AngleBetweenBoundaries *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AngleBetweenBoundaries*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries, sizeof(prodml22__AngleBetweenBoundaries), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AngleBetweenBoundaries*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries, sizeof(prodml23__AngleBetweenBoundaries), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AngleBetweenBoundaries *)a->soap_in(soap, tag, type); + return (prodml23__AngleBetweenBoundaries *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID2 = 1; size_t soap_flag_Remark2 = 1; @@ -190486,21 +190481,21 @@ SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml22__Angle for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_Abbreviation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Abbreviation", &a->prodml22__AngleBetweenBoundaries::Abbreviation, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Abbreviation", &a->prodml23__AngleBetweenBoundaries::Abbreviation, "eml23:String64")) { soap_flag_Abbreviation1--; - if (*soap->href != '#' && (a->prodml22__AngleBetweenBoundaries::Abbreviation.compare("AngleBetweenBoundaries"))) + if (*soap->href != '#' && (a->prodml23__AngleBetweenBoundaries::Abbreviation.compare("AngleBetweenBoundaries"))) { soap->error = SOAP_FIXED; return NULL; } @@ -190508,7 +190503,7 @@ SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml22__Angle } } if (soap_flag_Angle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml22:Angle", &a->prodml22__AngleBetweenBoundaries::Angle, "eml23:PlaneAngleMeasure")) + { if (soap_in_PointerToeml23__PlaneAngleMeasure(soap, "prodml23:Angle", &a->prodml23__AngleBetweenBoundaries::Angle, "eml23:PlaneAngleMeasure")) { soap_flag_Angle1--; continue; } @@ -190522,7 +190517,7 @@ SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml22__Angle } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Abbreviation1 > 0 || !a->prodml22__AngleBetweenBoundaries::Angle)) + if ((soap_flag_Abbreviation1 > 0 || !a->prodml23__AngleBetweenBoundaries::Angle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -190532,35 +190527,35 @@ SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml22__Angle return NULL; } else - { a = (prodml22__AngleBetweenBoundaries *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries, sizeof(prodml22__AngleBetweenBoundaries), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AngleBetweenBoundaries *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries, sizeof(prodml23__AngleBetweenBoundaries), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml22__AngleBetweenBoundaries(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml23__AngleBetweenBoundaries(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AngleBetweenBoundaries(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AngleBetweenBoundaries(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__AngleBetweenBoundaries *p; - size_t k = sizeof(prodml22__AngleBetweenBoundaries); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries, n, gsoap_eml2_3_fdelete); + prodml23__AngleBetweenBoundaries *p; + size_t k = sizeof(prodml23__AngleBetweenBoundaries); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AngleBetweenBoundaries); + { p = SOAP_NEW(soap, prodml23__AngleBetweenBoundaries); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AngleBetweenBoundaries, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AngleBetweenBoundaries, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AngleBetweenBoundaries location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AngleBetweenBoundaries location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -190570,84 +190565,84 @@ SOAP_FMAC1 prodml22__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__AngleBetweenBoundaries::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AngleBetweenBoundaries::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AngleBetweenBoundaries(soap, tag ? tag : "prodml22:AngleBetweenBoundaries", -2, this, type)) + if (soap_out_prodml23__AngleBetweenBoundaries(soap, tag ? tag : "prodml23:AngleBetweenBoundaries", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AngleBetweenBoundaries::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AngleBetweenBoundaries::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AngleBetweenBoundaries(soap, this, tag, type); + return soap_get_prodml23__AngleBetweenBoundaries(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_get_prodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AngleBetweenBoundaries * SOAP_FMAC4 soap_get_prodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AngleBetweenBoundaries(soap, tag, p, type))) + if ((p = soap_in_prodml23__AngleBetweenBoundaries(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractParameter::soap_default(struct soap *soap) +void prodml23__AbstractParameter::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractParameter::SourceResultRefID = NULL; - this->prodml22__AbstractParameter::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__AbstractParameter::Uid); + this->prodml23__AbstractParameter::SourceResultRefID = NULL; + this->prodml23__AbstractParameter::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__AbstractParameter::Uid); } -void prodml22__AbstractParameter::soap_serialize(struct soap *soap) const +void prodml23__AbstractParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__AbstractParameter::SourceResultRefID); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__AbstractParameter::Remark); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__AbstractParameter::SourceResultRefID); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__AbstractParameter::Remark); #endif } -int prodml22__AbstractParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractParameter(soap, tag, id, this, type); + return soap_out_prodml23__AbstractParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractParameter(struct soap *soap, const char *tag, int id, const prodml22__AbstractParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractParameter(struct soap *soap, const char *tag, int id, const prodml23__AbstractParameter *a, const char *type) { if (!type) - type = "prodml22:AbstractParameter"; - soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml22__AbstractParameter*)a)->Uid), 1); + type = "prodml23:AbstractParameter"; + soap_set_attr(soap, "Uid", soap_eml23__String642s(soap, ((prodml23__AbstractParameter*)a)->Uid), 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_gsoap_eml2_3_prodml22__AbstractParameter), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", -1, &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", -1, &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractParameter(soap, tag, this, type); + return soap_in_prodml23__AbstractParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractParameter * SOAP_FMAC4 soap_in_prodml22__AbstractParameter(struct soap *soap, const char *tag, prodml22__AbstractParameter *a, const char *type) +SOAP_FMAC3 prodml23__AbstractParameter * SOAP_FMAC4 soap_in_prodml23__AbstractParameter(struct soap *soap, const char *tag, prodml23__AbstractParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, sizeof(prodml22__AbstractParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, sizeof(prodml23__AbstractParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractParameter *)a->soap_in(soap, tag, type); + return (prodml23__AbstractParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml22__AbstractParameter*)a)->Uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "Uid", 1, 3), &((prodml23__AbstractParameter*)a)->Uid)) return NULL; size_t soap_flag_SourceResultRefID1 = 1; size_t soap_flag_Remark1 = 1; @@ -190656,13 +190651,13 @@ SOAP_FMAC3 prodml22__AbstractParameter * SOAP_FMAC4 soap_in_prodml22__AbstractPa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SourceResultRefID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:SourceResultRefID", &a->prodml22__AbstractParameter::SourceResultRefID, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:SourceResultRefID", &a->prodml23__AbstractParameter::SourceResultRefID, "eml23:String64")) { soap_flag_SourceResultRefID1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractParameter::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractParameter::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -190678,169 +190673,169 @@ SOAP_FMAC3 prodml22__AbstractParameter * SOAP_FMAC4 soap_in_prodml22__AbstractPa return NULL; } else - { a = (prodml22__AbstractParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, sizeof(prodml22__AbstractParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 prodml22__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml22__AbstractParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractParameter(%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, "prodml22:AngleBetweenBoundaries")) - return soap_instantiate_prodml22__AngleBetweenBoundaries(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AveragePressure")) - return soap_instantiate_prodml22__AveragePressure(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ConvergenceSkinRelativeToTotalThickness")) - return soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomParameter")) - return soap_instantiate_prodml22__CustomParameter(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeltaPressureTotalSkin")) - return soap_instantiate_prodml22__DeltaPressureTotalSkin(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeltaTimeStorageChanges")) - return soap_instantiate_prodml22__DeltaTimeStorageChanges(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceFractureToBottomBoundary")) - return soap_instantiate_prodml22__DistanceFractureToBottomBoundary(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceMidFractureHeightToBottomBoundary")) - return soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceMidPerforationsToBottomBoundary")) - return soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceToBoundary1")) - return soap_instantiate_prodml22__DistanceToBoundary1(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceToBoundary2")) - return soap_instantiate_prodml22__DistanceToBoundary2(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceToBoundary3")) - return soap_instantiate_prodml22__DistanceToBoundary3(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceToBoundary4")) - return soap_instantiate_prodml22__DistanceToBoundary4(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceToMobilityInterface")) - return soap_instantiate_prodml22__DistanceToMobilityInterface(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceToPinchOut")) - return soap_instantiate_prodml22__DistanceToPinchOut(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DistanceWellboreToBottomBoundary")) - return soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DrainageAreaMeasured")) - return soap_instantiate_prodml22__DrainageAreaMeasured(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FaultConductivity")) - return soap_instantiate_prodml22__FaultConductivity(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidDensity")) - return soap_instantiate_prodml22__FluidDensity(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureAngleToWellbore")) - return soap_instantiate_prodml22__FractureAngleToWellbore(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureConductivity")) - return soap_instantiate_prodml22__FractureConductivity(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureFaceSkin")) - return soap_instantiate_prodml22__FractureFaceSkin(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureHalfLength")) - return soap_instantiate_prodml22__FractureHalfLength(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureHeight")) - return soap_instantiate_prodml22__FractureHeight(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureRadius")) - return soap_instantiate_prodml22__FractureRadius(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FractureStorativityRatio")) - return soap_instantiate_prodml22__FractureStorativityRatio(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalAnisotropyKxToKy")) - return soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalRadialPermeability")) - return soap_instantiate_prodml22__HorizontalRadialPermeability(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InitialPressure")) - return soap_instantiate_prodml22__InitialPressure(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InnerToOuterZoneDiffusivityRatio")) - return soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InnerToOuterZoneMobilityRatio")) - return soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InterporosityFlowParameter")) - return soap_instantiate_prodml22__InterporosityFlowParameter(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Layer2Thickness")) - return soap_instantiate_prodml22__Layer2Thickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LeakSkin")) - return soap_instantiate_prodml22__LeakSkin(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LengthHorizontalWellboreFlowing")) - return soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:MechanicalSkinRelativeToTotalThickness")) - return soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ModelName")) - return soap_instantiate_prodml22__ModelName(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumberOfFractures")) - return soap_instantiate_prodml22__NumberOfFractures(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OrientationOfAnisotropyXDirection")) - return soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OrientationOfFracturePlane")) - return soap_instantiate_prodml22__OrientationOfFracturePlane(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OrientationOfLinearFront")) - return soap_instantiate_prodml22__OrientationOfLinearFront(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OrientationOfNormalToBoundary1")) - return soap_instantiate_prodml22__OrientationOfNormalToBoundary1(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OrientationWellTrajectory")) - return soap_instantiate_prodml22__OrientationWellTrajectory(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PerforatedLength")) - return soap_instantiate_prodml22__PerforatedLength(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PermeabilityThicknessProduct")) - return soap_instantiate_prodml22__PermeabilityThicknessProduct(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PoreVolumeMeasured")) - return soap_instantiate_prodml22__PoreVolumeMeasured(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PoreVolumeOfInvestigation")) - return soap_instantiate_prodml22__PoreVolumeOfInvestigation(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Porosity")) - return soap_instantiate_prodml22__Porosity(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PressureDatumTVD")) - return soap_instantiate_prodml22__PressureDatumTVD(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RadiusOfInvestigation")) - return soap_instantiate_prodml22__RadiusOfInvestigation(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RateDependentSkinFactor")) - return soap_instantiate_prodml22__RateDependentSkinFactor(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RatioDpSkinToTotalDrawdown")) - return soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RatioInitialToFinalWellboreStorage")) - return soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct")) - return soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Region2Thickness")) - return soap_instantiate_prodml22__Region2Thickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SkinLayer2RelativeToTotalThickness")) - return soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SkinRelativeToTotalThickness")) - return soap_instantiate_prodml22__SkinRelativeToTotalThickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:StorativityRatio")) - return soap_instantiate_prodml22__StorativityRatio(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TotalThickness")) - return soap_instantiate_prodml22__TotalThickness(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TransmissibilityReductionFactorOfLinearFront")) - return soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TubingInteralDiameter")) - return soap_instantiate_prodml22__TubingInteralDiameter(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:VerticalAnisotropyKvToKr")) - return soap_instantiate_prodml22__VerticalAnisotropyKvToKr(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellboreDeviationAngle")) - return soap_instantiate_prodml22__WellboreDeviationAngle(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellboreFluidCompressibility")) - return soap_instantiate_prodml22__WellboreFluidCompressibility(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellboreRadius")) - return soap_instantiate_prodml22__WellboreRadius(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellboreStorageCoefficient")) - return soap_instantiate_prodml22__WellboreStorageCoefficient(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellboreVolume")) - return soap_instantiate_prodml22__WellboreVolume(soap, n, NULL, NULL, size); - prodml22__AbstractParameter *p; - size_t k = sizeof(prodml22__AbstractParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, n, gsoap_eml2_3_fdelete); + { a = (prodml23__AbstractParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, sizeof(prodml23__AbstractParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } + return a; +} + +SOAP_FMAC1 prodml23__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml23__AbstractParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +{ + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractParameter(%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, "prodml23:AngleBetweenBoundaries")) + return soap_instantiate_prodml23__AngleBetweenBoundaries(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AveragePressure")) + return soap_instantiate_prodml23__AveragePressure(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ConvergenceSkinRelativeToTotalThickness")) + return soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomParameter")) + return soap_instantiate_prodml23__CustomParameter(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeltaPressureTotalSkin")) + return soap_instantiate_prodml23__DeltaPressureTotalSkin(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeltaTimeStorageChanges")) + return soap_instantiate_prodml23__DeltaTimeStorageChanges(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceFractureToBottomBoundary")) + return soap_instantiate_prodml23__DistanceFractureToBottomBoundary(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceMidFractureHeightToBottomBoundary")) + return soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceMidPerforationsToBottomBoundary")) + return soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceToBoundary1")) + return soap_instantiate_prodml23__DistanceToBoundary1(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceToBoundary2")) + return soap_instantiate_prodml23__DistanceToBoundary2(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceToBoundary3")) + return soap_instantiate_prodml23__DistanceToBoundary3(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceToBoundary4")) + return soap_instantiate_prodml23__DistanceToBoundary4(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceToMobilityInterface")) + return soap_instantiate_prodml23__DistanceToMobilityInterface(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceToPinchOut")) + return soap_instantiate_prodml23__DistanceToPinchOut(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DistanceWellboreToBottomBoundary")) + return soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DrainageAreaMeasured")) + return soap_instantiate_prodml23__DrainageAreaMeasured(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FaultConductivity")) + return soap_instantiate_prodml23__FaultConductivity(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidDensity")) + return soap_instantiate_prodml23__FluidDensity(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureAngleToWellbore")) + return soap_instantiate_prodml23__FractureAngleToWellbore(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureConductivity")) + return soap_instantiate_prodml23__FractureConductivity(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureFaceSkin")) + return soap_instantiate_prodml23__FractureFaceSkin(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureHalfLength")) + return soap_instantiate_prodml23__FractureHalfLength(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureHeight")) + return soap_instantiate_prodml23__FractureHeight(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureRadius")) + return soap_instantiate_prodml23__FractureRadius(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FractureStorativityRatio")) + return soap_instantiate_prodml23__FractureStorativityRatio(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalAnisotropyKxToKy")) + return soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalRadialPermeability")) + return soap_instantiate_prodml23__HorizontalRadialPermeability(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InitialPressure")) + return soap_instantiate_prodml23__InitialPressure(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InnerToOuterZoneDiffusivityRatio")) + return soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InnerToOuterZoneMobilityRatio")) + return soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InterporosityFlowParameter")) + return soap_instantiate_prodml23__InterporosityFlowParameter(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Layer2Thickness")) + return soap_instantiate_prodml23__Layer2Thickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LeakSkin")) + return soap_instantiate_prodml23__LeakSkin(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LengthHorizontalWellboreFlowing")) + return soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:MechanicalSkinRelativeToTotalThickness")) + return soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ModelName")) + return soap_instantiate_prodml23__ModelName(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumberOfFractures")) + return soap_instantiate_prodml23__NumberOfFractures(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OrientationOfAnisotropyXDirection")) + return soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OrientationOfFracturePlane")) + return soap_instantiate_prodml23__OrientationOfFracturePlane(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OrientationOfLinearFront")) + return soap_instantiate_prodml23__OrientationOfLinearFront(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OrientationOfNormalToBoundary1")) + return soap_instantiate_prodml23__OrientationOfNormalToBoundary1(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OrientationWellTrajectory")) + return soap_instantiate_prodml23__OrientationWellTrajectory(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PerforatedLength")) + return soap_instantiate_prodml23__PerforatedLength(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PermeabilityThicknessProduct")) + return soap_instantiate_prodml23__PermeabilityThicknessProduct(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PoreVolumeMeasured")) + return soap_instantiate_prodml23__PoreVolumeMeasured(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PoreVolumeOfInvestigation")) + return soap_instantiate_prodml23__PoreVolumeOfInvestigation(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Porosity")) + return soap_instantiate_prodml23__Porosity(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PressureDatumTVD")) + return soap_instantiate_prodml23__PressureDatumTVD(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RadiusOfInvestigation")) + return soap_instantiate_prodml23__RadiusOfInvestigation(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RateDependentSkinFactor")) + return soap_instantiate_prodml23__RateDependentSkinFactor(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RatioDpSkinToTotalDrawdown")) + return soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RatioInitialToFinalWellboreStorage")) + return soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct")) + return soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Region2Thickness")) + return soap_instantiate_prodml23__Region2Thickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SkinLayer2RelativeToTotalThickness")) + return soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SkinRelativeToTotalThickness")) + return soap_instantiate_prodml23__SkinRelativeToTotalThickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:StorativityRatio")) + return soap_instantiate_prodml23__StorativityRatio(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TotalThickness")) + return soap_instantiate_prodml23__TotalThickness(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TransmissibilityReductionFactorOfLinearFront")) + return soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TubingInteralDiameter")) + return soap_instantiate_prodml23__TubingInteralDiameter(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:VerticalAnisotropyKvToKr")) + return soap_instantiate_prodml23__VerticalAnisotropyKvToKr(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellboreDeviationAngle")) + return soap_instantiate_prodml23__WellboreDeviationAngle(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellboreFluidCompressibility")) + return soap_instantiate_prodml23__WellboreFluidCompressibility(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellboreRadius")) + return soap_instantiate_prodml23__WellboreRadius(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellboreStorageCoefficient")) + return soap_instantiate_prodml23__WellboreStorageCoefficient(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellboreVolume")) + return soap_instantiate_prodml23__WellboreVolume(soap, n, NULL, NULL, size); + prodml23__AbstractParameter *p; + size_t k = sizeof(prodml23__AbstractParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractParameter); + { p = SOAP_NEW(soap, prodml23__AbstractParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -190850,116 +190845,116 @@ SOAP_FMAC1 prodml22__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml22__A return p; } -int prodml22__AbstractParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractParameter(soap, tag ? tag : "prodml22:AbstractParameter", -2, this, type)) + if (soap_out_prodml23__AbstractParameter(soap, tag ? tag : "prodml23:AbstractParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractParameter(soap, this, tag, type); + return soap_get_prodml23__AbstractParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractParameter * SOAP_FMAC4 soap_get_prodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractParameter * SOAP_FMAC4 soap_get_prodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellboreBaseModel::soap_default(struct soap *soap) +void prodml23__WellboreBaseModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractModelSection::soap_default(soap); - this->prodml22__WellboreBaseModel::WellboreRadius = NULL; - this->prodml22__WellboreBaseModel::WellboreStorageCoefficient = NULL; - this->prodml22__WellboreBaseModel::WellboreVolume = NULL; - this->prodml22__WellboreBaseModel::WellboreFluidCompressibility = NULL; - this->prodml22__WellboreBaseModel::TubingInteralDiameter = NULL; - this->prodml22__WellboreBaseModel::FluidDensity = NULL; - this->prodml22__WellboreBaseModel::WellboreDeviationAngle = NULL; - this->prodml22__WellboreBaseModel::WellboreStorageMechanismType = NULL; + this->prodml23__AbstractModelSection::soap_default(soap); + this->prodml23__WellboreBaseModel::WellboreRadius = NULL; + this->prodml23__WellboreBaseModel::WellboreStorageCoefficient = NULL; + this->prodml23__WellboreBaseModel::WellboreVolume = NULL; + this->prodml23__WellboreBaseModel::WellboreFluidCompressibility = NULL; + this->prodml23__WellboreBaseModel::TubingInteralDiameter = NULL; + this->prodml23__WellboreBaseModel::FluidDensity = NULL; + this->prodml23__WellboreBaseModel::WellboreDeviationAngle = NULL; + this->prodml23__WellboreBaseModel::WellboreStorageMechanismType = NULL; } -void prodml22__WellboreBaseModel::soap_serialize(struct soap *soap) const +void prodml23__WellboreBaseModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__WellboreRadius(soap, &this->prodml22__WellboreBaseModel::WellboreRadius); - soap_serialize_PointerToprodml22__WellboreStorageCoefficient(soap, &this->prodml22__WellboreBaseModel::WellboreStorageCoefficient); - soap_serialize_PointerToprodml22__WellboreVolume(soap, &this->prodml22__WellboreBaseModel::WellboreVolume); - soap_serialize_PointerToprodml22__WellboreFluidCompressibility(soap, &this->prodml22__WellboreBaseModel::WellboreFluidCompressibility); - soap_serialize_PointerToprodml22__TubingInteralDiameter(soap, &this->prodml22__WellboreBaseModel::TubingInteralDiameter); - soap_serialize_PointerToprodml22__FluidDensity(soap, &this->prodml22__WellboreBaseModel::FluidDensity); - soap_serialize_PointerToprodml22__WellboreDeviationAngle(soap, &this->prodml22__WellboreBaseModel::WellboreDeviationAngle); - soap_serialize_PointerToprodml22__WellboreStorageMechanismType(soap, &this->prodml22__WellboreBaseModel::WellboreStorageMechanismType); - this->prodml22__AbstractModelSection::soap_serialize(soap); + soap_serialize_PointerToprodml23__WellboreRadius(soap, &this->prodml23__WellboreBaseModel::WellboreRadius); + soap_serialize_PointerToprodml23__WellboreStorageCoefficient(soap, &this->prodml23__WellboreBaseModel::WellboreStorageCoefficient); + soap_serialize_PointerToprodml23__WellboreVolume(soap, &this->prodml23__WellboreBaseModel::WellboreVolume); + soap_serialize_PointerToprodml23__WellboreFluidCompressibility(soap, &this->prodml23__WellboreBaseModel::WellboreFluidCompressibility); + soap_serialize_PointerToprodml23__TubingInteralDiameter(soap, &this->prodml23__WellboreBaseModel::TubingInteralDiameter); + soap_serialize_PointerToprodml23__FluidDensity(soap, &this->prodml23__WellboreBaseModel::FluidDensity); + soap_serialize_PointerToprodml23__WellboreDeviationAngle(soap, &this->prodml23__WellboreBaseModel::WellboreDeviationAngle); + soap_serialize_PointerToprodml23__WellboreStorageMechanismType(soap, &this->prodml23__WellboreBaseModel::WellboreStorageMechanismType); + this->prodml23__AbstractModelSection::soap_serialize(soap); #endif } -int prodml22__WellboreBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellboreBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellboreBaseModel(soap, tag, id, this, type); + return soap_out_prodml23__WellboreBaseModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreBaseModel(struct soap *soap, const char *tag, int id, const prodml22__WellboreBaseModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreBaseModel(struct soap *soap, const char *tag, int id, const prodml23__WellboreBaseModel *a, const char *type) { if (!type) - type = "prodml22:WellboreBaseModel"; + type = "prodml23:WellboreBaseModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel), type ? type : "prodml22:WellboreBaseModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel), type ? type : "prodml23:WellboreBaseModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellboreBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellboreBaseModel(soap, tag, this, type); + return soap_in_prodml23__WellboreBaseModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__WellboreBaseModel(struct soap *soap, const char *tag, prodml22__WellboreBaseModel *a, const char *type) +SOAP_FMAC3 prodml23__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml23__WellboreBaseModel(struct soap *soap, const char *tag, prodml23__WellboreBaseModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellboreBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel, sizeof(prodml22__WellboreBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellboreBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel, sizeof(prodml23__WellboreBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellboreBaseModel *)a->soap_in(soap, tag, type); + return (prodml23__WellboreBaseModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -190978,61 +190973,61 @@ SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__WellboreBa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment2--; continue; } } if (soap_flag_Method2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method2--; continue; } } if (soap_flag_WellboreRadius1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius1--; continue; } } if (soap_flag_WellboreStorageCoefficient1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient1--; continue; } } if (soap_flag_WellboreVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume1--; continue; } } if (soap_flag_WellboreFluidCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility1--; continue; } } if (soap_flag_TubingInteralDiameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter1--; continue; } } if (soap_flag_FluidDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity1--; continue; } } if (soap_flag_WellboreDeviationAngle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle1--; continue; } } if (soap_flag_WellboreStorageMechanismType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType1--; continue; } @@ -191046,7 +191041,7 @@ SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__WellboreBa } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient)) { soap->error = SOAP_OCCURS; return NULL; } @@ -191056,47 +191051,47 @@ SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__WellboreBa return NULL; } else - { a = (prodml22__WellboreBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel, sizeof(prodml22__WellboreBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel, sizeof(prodml23__WellboreBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__WellboreBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__WellboreBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellboreBaseModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellboreBaseModel(%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, "prodml22:ChangingStorageFairModel")) - return soap_instantiate_prodml22__ChangingStorageFairModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageHegemanModel")) - return soap_instantiate_prodml22__ChangingStorageHegemanModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageSpiveyFissuresModel")) - return soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageSpiveyPackerModel")) - return soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ConstantStorageModel")) - return soap_instantiate_prodml22__ConstantStorageModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomWellboreModel")) - return soap_instantiate_prodml22__CustomWellboreModel(soap, n, NULL, NULL, size); - prodml22__WellboreBaseModel *p; - size_t k = sizeof(prodml22__WellboreBaseModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageFairModel")) + return soap_instantiate_prodml23__ChangingStorageFairModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageHegemanModel")) + return soap_instantiate_prodml23__ChangingStorageHegemanModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageSpiveyFissuresModel")) + return soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageSpiveyPackerModel")) + return soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ConstantStorageModel")) + return soap_instantiate_prodml23__ConstantStorageModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomWellboreModel")) + return soap_instantiate_prodml23__CustomWellboreModel(soap, n, NULL, NULL, size); + prodml23__WellboreBaseModel *p; + size_t k = sizeof(prodml23__WellboreBaseModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellboreBaseModel); + { p = SOAP_NEW(soap, prodml23__WellboreBaseModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellboreBaseModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellboreBaseModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellboreBaseModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellboreBaseModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -191106,117 +191101,117 @@ SOAP_FMAC1 prodml22__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__W return p; } -int prodml22__WellboreBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellboreBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellboreBaseModel(soap, tag ? tag : "prodml22:WellboreBaseModel", -2, this, type)) + if (soap_out_prodml23__WellboreBaseModel(soap, tag ? tag : "prodml23:WellboreBaseModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellboreBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellboreBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellboreBaseModel(soap, this, tag, type); + return soap_get_prodml23__WellboreBaseModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_get_prodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreBaseModel * SOAP_FMAC4 soap_get_prodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellboreBaseModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellboreBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__UShapedFaultsModel::soap_default(struct soap *soap) +void prodml23__UShapedFaultsModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__UShapedFaultsModel::DistanceToBoundary1 = NULL; - this->prodml22__UShapedFaultsModel::DistanceToBoundary2 = NULL; - this->prodml22__UShapedFaultsModel::DistanceToBoundary3 = NULL; - this->prodml22__UShapedFaultsModel::OrientationOfNormalToBoundary1 = NULL; - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__UShapedFaultsModel::Boundary1Type); - soap_default_prodml22__Boundary2Type(soap, &this->prodml22__UShapedFaultsModel::Boundary2Type); - soap_default_prodml22__Boundary3Type(soap, &this->prodml22__UShapedFaultsModel::Boundary3Type); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__UShapedFaultsModel::DistanceToBoundary1 = NULL; + this->prodml23__UShapedFaultsModel::DistanceToBoundary2 = NULL; + this->prodml23__UShapedFaultsModel::DistanceToBoundary3 = NULL; + this->prodml23__UShapedFaultsModel::OrientationOfNormalToBoundary1 = NULL; + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__UShapedFaultsModel::Boundary1Type); + soap_default_prodml23__Boundary2Type(soap, &this->prodml23__UShapedFaultsModel::Boundary2Type); + soap_default_prodml23__Boundary3Type(soap, &this->prodml23__UShapedFaultsModel::Boundary3Type); } -void prodml22__UShapedFaultsModel::soap_serialize(struct soap *soap) const +void prodml23__UShapedFaultsModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DistanceToBoundary1(soap, &this->prodml22__UShapedFaultsModel::DistanceToBoundary1); - soap_serialize_PointerToprodml22__DistanceToBoundary2(soap, &this->prodml22__UShapedFaultsModel::DistanceToBoundary2); - soap_serialize_PointerToprodml22__DistanceToBoundary3(soap, &this->prodml22__UShapedFaultsModel::DistanceToBoundary3); - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, &this->prodml22__UShapedFaultsModel::OrientationOfNormalToBoundary1); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DistanceToBoundary1(soap, &this->prodml23__UShapedFaultsModel::DistanceToBoundary1); + soap_serialize_PointerToprodml23__DistanceToBoundary2(soap, &this->prodml23__UShapedFaultsModel::DistanceToBoundary2); + soap_serialize_PointerToprodml23__DistanceToBoundary3(soap, &this->prodml23__UShapedFaultsModel::DistanceToBoundary3); + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, &this->prodml23__UShapedFaultsModel::OrientationOfNormalToBoundary1); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__UShapedFaultsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__UShapedFaultsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__UShapedFaultsModel(soap, tag, id, this, type); + return soap_out_prodml23__UShapedFaultsModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__UShapedFaultsModel(struct soap *soap, const char *tag, int id, const prodml22__UShapedFaultsModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__UShapedFaultsModel(struct soap *soap, const char *tag, int id, const prodml23__UShapedFaultsModel *a, const char *type) { if (!type) - type = "prodml22:UShapedFaultsModel"; + type = "prodml23:UShapedFaultsModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel), type ? type : "prodml22:UShapedFaultsModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel), type ? type : "prodml23:UShapedFaultsModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (!a->prodml22__UShapedFaultsModel::DistanceToBoundary1) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary1", 0, NULL)) + if (!a->prodml23__UShapedFaultsModel::DistanceToBoundary1) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary1", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", -1, &a->prodml22__UShapedFaultsModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + else if (soap_out_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", -1, &a->prodml23__UShapedFaultsModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) return soap->error; - if (!a->prodml22__UShapedFaultsModel::DistanceToBoundary2) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary2", 0, NULL)) + if (!a->prodml23__UShapedFaultsModel::DistanceToBoundary2) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary2", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary2(soap, "prodml22:DistanceToBoundary2", -1, &a->prodml22__UShapedFaultsModel::DistanceToBoundary2, "prodml22:DistanceToBoundary2")) + else if (soap_out_PointerToprodml23__DistanceToBoundary2(soap, "prodml23:DistanceToBoundary2", -1, &a->prodml23__UShapedFaultsModel::DistanceToBoundary2, "prodml23:DistanceToBoundary2")) return soap->error; - if (!a->prodml22__UShapedFaultsModel::DistanceToBoundary3) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary3", 0, NULL)) + if (!a->prodml23__UShapedFaultsModel::DistanceToBoundary3) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary3", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary3(soap, "prodml22:DistanceToBoundary3", -1, &a->prodml22__UShapedFaultsModel::DistanceToBoundary3, "prodml22:DistanceToBoundary3")) + else if (soap_out_PointerToprodml23__DistanceToBoundary3(soap, "prodml23:DistanceToBoundary3", -1, &a->prodml23__UShapedFaultsModel::DistanceToBoundary3, "prodml23:DistanceToBoundary3")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", -1, &a->prodml22__UShapedFaultsModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", -1, &a->prodml23__UShapedFaultsModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", -1, &a->prodml22__UShapedFaultsModel::Boundary1Type, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", -1, &a->prodml23__UShapedFaultsModel::Boundary1Type, "prodml23:Boundary1Type")) return soap->error; - if (soap_out_prodml22__Boundary2Type(soap, "prodml22:Boundary2Type", -1, &a->prodml22__UShapedFaultsModel::Boundary2Type, "prodml22:Boundary2Type")) + if (soap_out_prodml23__Boundary2Type(soap, "prodml23:Boundary2Type", -1, &a->prodml23__UShapedFaultsModel::Boundary2Type, "prodml23:Boundary2Type")) return soap->error; - if (soap_out_prodml22__Boundary3Type(soap, "prodml22:Boundary3Type", -1, &a->prodml22__UShapedFaultsModel::Boundary3Type, "prodml22:Boundary3Type")) + if (soap_out_prodml23__Boundary3Type(soap, "prodml23:Boundary3Type", -1, &a->prodml23__UShapedFaultsModel::Boundary3Type, "prodml23:Boundary3Type")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__UShapedFaultsModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__UShapedFaultsModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__UShapedFaultsModel(soap, tag, this, type); + return soap_in_prodml23__UShapedFaultsModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml22__UShapedFaultsModel(struct soap *soap, const char *tag, prodml22__UShapedFaultsModel *a, const char *type) +SOAP_FMAC3 prodml23__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml23__UShapedFaultsModel(struct soap *soap, const char *tag, prodml23__UShapedFaultsModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__UShapedFaultsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel, sizeof(prodml22__UShapedFaultsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__UShapedFaultsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel, sizeof(prodml23__UShapedFaultsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__UShapedFaultsModel *)a->soap_in(soap, tag, type); + return (prodml23__UShapedFaultsModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -191236,67 +191231,67 @@ SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml22__UShapedFa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_DistanceToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", &a->prodml22__UShapedFaultsModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + { if (soap_in_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", &a->prodml23__UShapedFaultsModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) { soap_flag_DistanceToBoundary11--; continue; } } if (soap_flag_DistanceToBoundary21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary2(soap, "prodml22:DistanceToBoundary2", &a->prodml22__UShapedFaultsModel::DistanceToBoundary2, "prodml22:DistanceToBoundary2")) + { if (soap_in_PointerToprodml23__DistanceToBoundary2(soap, "prodml23:DistanceToBoundary2", &a->prodml23__UShapedFaultsModel::DistanceToBoundary2, "prodml23:DistanceToBoundary2")) { soap_flag_DistanceToBoundary21--; continue; } } if (soap_flag_DistanceToBoundary31 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary3(soap, "prodml22:DistanceToBoundary3", &a->prodml22__UShapedFaultsModel::DistanceToBoundary3, "prodml22:DistanceToBoundary3")) + { if (soap_in_PointerToprodml23__DistanceToBoundary3(soap, "prodml23:DistanceToBoundary3", &a->prodml23__UShapedFaultsModel::DistanceToBoundary3, "prodml23:DistanceToBoundary3")) { soap_flag_DistanceToBoundary31--; continue; } } if (soap_flag_OrientationOfNormalToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", &a->prodml22__UShapedFaultsModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + { if (soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", &a->prodml23__UShapedFaultsModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) { soap_flag_OrientationOfNormalToBoundary11--; continue; } } if (soap_flag_Boundary1Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", &a->prodml22__UShapedFaultsModel::Boundary1Type, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", &a->prodml23__UShapedFaultsModel::Boundary1Type, "prodml23:Boundary1Type")) { soap_flag_Boundary1Type1--; continue; } } if (soap_flag_Boundary2Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary2Type(soap, "prodml22:Boundary2Type", &a->prodml22__UShapedFaultsModel::Boundary2Type, "prodml22:Boundary2Type")) + { if (soap_in_prodml23__Boundary2Type(soap, "prodml23:Boundary2Type", &a->prodml23__UShapedFaultsModel::Boundary2Type, "prodml23:Boundary2Type")) { soap_flag_Boundary2Type1--; continue; } } if (soap_flag_Boundary3Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary3Type(soap, "prodml22:Boundary3Type", &a->prodml22__UShapedFaultsModel::Boundary3Type, "prodml22:Boundary3Type")) + { if (soap_in_prodml23__Boundary3Type(soap, "prodml23:Boundary3Type", &a->prodml23__UShapedFaultsModel::Boundary3Type, "prodml23:Boundary3Type")) { soap_flag_Boundary3Type1--; continue; } @@ -191310,7 +191305,7 @@ SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml22__UShapedFa } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__UShapedFaultsModel::DistanceToBoundary1 || !a->prodml22__UShapedFaultsModel::DistanceToBoundary2 || !a->prodml22__UShapedFaultsModel::DistanceToBoundary3 || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary2Type1 > 0 || soap_flag_Boundary3Type1 > 0)) + if ((!a->prodml23__UShapedFaultsModel::DistanceToBoundary1 || !a->prodml23__UShapedFaultsModel::DistanceToBoundary2 || !a->prodml23__UShapedFaultsModel::DistanceToBoundary3 || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary2Type1 > 0 || soap_flag_Boundary3Type1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -191320,35 +191315,35 @@ SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml22__UShapedFa return NULL; } else - { a = (prodml22__UShapedFaultsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel, SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel, sizeof(prodml22__UShapedFaultsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__UShapedFaultsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel, SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel, sizeof(prodml23__UShapedFaultsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__UShapedFaultsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__UShapedFaultsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__UShapedFaultsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__UShapedFaultsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__UShapedFaultsModel *p; - size_t k = sizeof(prodml22__UShapedFaultsModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel, n, gsoap_eml2_3_fdelete); + prodml23__UShapedFaultsModel *p; + size_t k = sizeof(prodml23__UShapedFaultsModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__UShapedFaultsModel); + { p = SOAP_NEW(soap, prodml23__UShapedFaultsModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__UShapedFaultsModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__UShapedFaultsModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__UShapedFaultsModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__UShapedFaultsModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -191358,106 +191353,106 @@ SOAP_FMAC1 prodml22__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__UShapedFaultsModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__UShapedFaultsModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__UShapedFaultsModel(soap, tag ? tag : "prodml22:UShapedFaultsModel", -2, this, type)) + if (soap_out_prodml23__UShapedFaultsModel(soap, tag ? tag : "prodml23:UShapedFaultsModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__UShapedFaultsModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__UShapedFaultsModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__UShapedFaultsModel(soap, this, tag, type); + return soap_get_prodml23__UShapedFaultsModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_get_prodml22__UShapedFaultsModel(struct soap *soap, prodml22__UShapedFaultsModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__UShapedFaultsModel * SOAP_FMAC4 soap_get_prodml23__UShapedFaultsModel(struct soap *soap, prodml23__UShapedFaultsModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__UShapedFaultsModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__UShapedFaultsModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TwoParallelFaultsModel::soap_default(struct soap *soap) +void prodml23__TwoParallelFaultsModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__TwoParallelFaultsModel::DistanceToBoundary1 = NULL; - this->prodml22__TwoParallelFaultsModel::DistanceToBoundary3 = NULL; - this->prodml22__TwoParallelFaultsModel::OrientationOfNormalToBoundary1 = NULL; - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__TwoParallelFaultsModel::Boundary1Type); - soap_default_prodml22__Boundary3Type(soap, &this->prodml22__TwoParallelFaultsModel::Boundary3Type); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__TwoParallelFaultsModel::DistanceToBoundary1 = NULL; + this->prodml23__TwoParallelFaultsModel::DistanceToBoundary3 = NULL; + this->prodml23__TwoParallelFaultsModel::OrientationOfNormalToBoundary1 = NULL; + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__TwoParallelFaultsModel::Boundary1Type); + soap_default_prodml23__Boundary3Type(soap, &this->prodml23__TwoParallelFaultsModel::Boundary3Type); } -void prodml22__TwoParallelFaultsModel::soap_serialize(struct soap *soap) const +void prodml23__TwoParallelFaultsModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DistanceToBoundary1(soap, &this->prodml22__TwoParallelFaultsModel::DistanceToBoundary1); - soap_serialize_PointerToprodml22__DistanceToBoundary3(soap, &this->prodml22__TwoParallelFaultsModel::DistanceToBoundary3); - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, &this->prodml22__TwoParallelFaultsModel::OrientationOfNormalToBoundary1); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DistanceToBoundary1(soap, &this->prodml23__TwoParallelFaultsModel::DistanceToBoundary1); + soap_serialize_PointerToprodml23__DistanceToBoundary3(soap, &this->prodml23__TwoParallelFaultsModel::DistanceToBoundary3); + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, &this->prodml23__TwoParallelFaultsModel::OrientationOfNormalToBoundary1); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__TwoParallelFaultsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TwoParallelFaultsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TwoParallelFaultsModel(soap, tag, id, this, type); + return soap_out_prodml23__TwoParallelFaultsModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TwoParallelFaultsModel(struct soap *soap, const char *tag, int id, const prodml22__TwoParallelFaultsModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TwoParallelFaultsModel(struct soap *soap, const char *tag, int id, const prodml23__TwoParallelFaultsModel *a, const char *type) { if (!type) - type = "prodml22:TwoParallelFaultsModel"; + type = "prodml23:TwoParallelFaultsModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel), type ? type : "prodml22:TwoParallelFaultsModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel), type ? type : "prodml23:TwoParallelFaultsModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (!a->prodml22__TwoParallelFaultsModel::DistanceToBoundary1) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary1", 0, NULL)) + if (!a->prodml23__TwoParallelFaultsModel::DistanceToBoundary1) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary1", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", -1, &a->prodml22__TwoParallelFaultsModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + else if (soap_out_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", -1, &a->prodml23__TwoParallelFaultsModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) return soap->error; - if (!a->prodml22__TwoParallelFaultsModel::DistanceToBoundary3) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary3", 0, NULL)) + if (!a->prodml23__TwoParallelFaultsModel::DistanceToBoundary3) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary3", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary3(soap, "prodml22:DistanceToBoundary3", -1, &a->prodml22__TwoParallelFaultsModel::DistanceToBoundary3, "prodml22:DistanceToBoundary3")) + else if (soap_out_PointerToprodml23__DistanceToBoundary3(soap, "prodml23:DistanceToBoundary3", -1, &a->prodml23__TwoParallelFaultsModel::DistanceToBoundary3, "prodml23:DistanceToBoundary3")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", -1, &a->prodml22__TwoParallelFaultsModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", -1, &a->prodml23__TwoParallelFaultsModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", -1, &a->prodml22__TwoParallelFaultsModel::Boundary1Type, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", -1, &a->prodml23__TwoParallelFaultsModel::Boundary1Type, "prodml23:Boundary1Type")) return soap->error; - if (soap_out_prodml22__Boundary3Type(soap, "prodml22:Boundary3Type", -1, &a->prodml22__TwoParallelFaultsModel::Boundary3Type, "prodml22:Boundary3Type")) + if (soap_out_prodml23__Boundary3Type(soap, "prodml23:Boundary3Type", -1, &a->prodml23__TwoParallelFaultsModel::Boundary3Type, "prodml23:Boundary3Type")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TwoParallelFaultsModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TwoParallelFaultsModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TwoParallelFaultsModel(soap, tag, this, type); + return soap_in_prodml23__TwoParallelFaultsModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoParallelFaultsModel(struct soap *soap, const char *tag, prodml22__TwoParallelFaultsModel *a, const char *type) +SOAP_FMAC3 prodml23__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml23__TwoParallelFaultsModel(struct soap *soap, const char *tag, prodml23__TwoParallelFaultsModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TwoParallelFaultsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel, sizeof(prodml22__TwoParallelFaultsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TwoParallelFaultsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel, sizeof(prodml23__TwoParallelFaultsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TwoParallelFaultsModel *)a->soap_in(soap, tag, type); + return (prodml23__TwoParallelFaultsModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -191475,55 +191470,55 @@ SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoPa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_DistanceToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", &a->prodml22__TwoParallelFaultsModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + { if (soap_in_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", &a->prodml23__TwoParallelFaultsModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) { soap_flag_DistanceToBoundary11--; continue; } } if (soap_flag_DistanceToBoundary31 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary3(soap, "prodml22:DistanceToBoundary3", &a->prodml22__TwoParallelFaultsModel::DistanceToBoundary3, "prodml22:DistanceToBoundary3")) + { if (soap_in_PointerToprodml23__DistanceToBoundary3(soap, "prodml23:DistanceToBoundary3", &a->prodml23__TwoParallelFaultsModel::DistanceToBoundary3, "prodml23:DistanceToBoundary3")) { soap_flag_DistanceToBoundary31--; continue; } } if (soap_flag_OrientationOfNormalToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", &a->prodml22__TwoParallelFaultsModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + { if (soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", &a->prodml23__TwoParallelFaultsModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) { soap_flag_OrientationOfNormalToBoundary11--; continue; } } if (soap_flag_Boundary1Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", &a->prodml22__TwoParallelFaultsModel::Boundary1Type, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", &a->prodml23__TwoParallelFaultsModel::Boundary1Type, "prodml23:Boundary1Type")) { soap_flag_Boundary1Type1--; continue; } } if (soap_flag_Boundary3Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary3Type(soap, "prodml22:Boundary3Type", &a->prodml22__TwoParallelFaultsModel::Boundary3Type, "prodml22:Boundary3Type")) + { if (soap_in_prodml23__Boundary3Type(soap, "prodml23:Boundary3Type", &a->prodml23__TwoParallelFaultsModel::Boundary3Type, "prodml23:Boundary3Type")) { soap_flag_Boundary3Type1--; continue; } @@ -191537,7 +191532,7 @@ SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoPa } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__TwoParallelFaultsModel::DistanceToBoundary1 || !a->prodml22__TwoParallelFaultsModel::DistanceToBoundary3 || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary3Type1 > 0)) + if ((!a->prodml23__TwoParallelFaultsModel::DistanceToBoundary1 || !a->prodml23__TwoParallelFaultsModel::DistanceToBoundary3 || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary3Type1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -191547,35 +191542,35 @@ SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoPa return NULL; } else - { a = (prodml22__TwoParallelFaultsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel, sizeof(prodml22__TwoParallelFaultsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TwoParallelFaultsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel, sizeof(prodml23__TwoParallelFaultsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__TwoParallelFaultsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__TwoParallelFaultsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TwoParallelFaultsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TwoParallelFaultsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TwoParallelFaultsModel *p; - size_t k = sizeof(prodml22__TwoParallelFaultsModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel, n, gsoap_eml2_3_fdelete); + prodml23__TwoParallelFaultsModel *p; + size_t k = sizeof(prodml23__TwoParallelFaultsModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TwoParallelFaultsModel); + { p = SOAP_NEW(soap, prodml23__TwoParallelFaultsModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TwoParallelFaultsModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TwoParallelFaultsModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TwoParallelFaultsModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TwoParallelFaultsModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -191585,114 +191580,114 @@ SOAP_FMAC1 prodml22__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__TwoParallelFaultsModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TwoParallelFaultsModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TwoParallelFaultsModel(soap, tag ? tag : "prodml22:TwoParallelFaultsModel", -2, this, type)) + if (soap_out_prodml23__TwoParallelFaultsModel(soap, tag ? tag : "prodml23:TwoParallelFaultsModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TwoParallelFaultsModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TwoParallelFaultsModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TwoParallelFaultsModel(soap, this, tag, type); + return soap_get_prodml23__TwoParallelFaultsModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_get_prodml22__TwoParallelFaultsModel(struct soap *soap, prodml22__TwoParallelFaultsModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TwoParallelFaultsModel * SOAP_FMAC4 soap_get_prodml23__TwoParallelFaultsModel(struct soap *soap, prodml23__TwoParallelFaultsModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TwoParallelFaultsModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__TwoParallelFaultsModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TwoIntersectingFaultsModel::soap_default(struct soap *soap) +void prodml23__TwoIntersectingFaultsModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1 = NULL; - this->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2 = NULL; - this->prodml22__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1 = NULL; - this->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries = NULL; - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__TwoIntersectingFaultsModel::Boundary1Type); - soap_default_prodml22__Boundary2Type(soap, &this->prodml22__TwoIntersectingFaultsModel::Boundary2Type); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1 = NULL; + this->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2 = NULL; + this->prodml23__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1 = NULL; + this->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries = NULL; + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__TwoIntersectingFaultsModel::Boundary1Type); + soap_default_prodml23__Boundary2Type(soap, &this->prodml23__TwoIntersectingFaultsModel::Boundary2Type); } -void prodml22__TwoIntersectingFaultsModel::soap_serialize(struct soap *soap) const +void prodml23__TwoIntersectingFaultsModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DistanceToBoundary1(soap, &this->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1); - soap_serialize_PointerToprodml22__DistanceToBoundary2(soap, &this->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2); - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, &this->prodml22__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1); - soap_serialize_PointerToprodml22__AngleBetweenBoundaries(soap, &this->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DistanceToBoundary1(soap, &this->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1); + soap_serialize_PointerToprodml23__DistanceToBoundary2(soap, &this->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2); + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, &this->prodml23__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1); + soap_serialize_PointerToprodml23__AngleBetweenBoundaries(soap, &this->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__TwoIntersectingFaultsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TwoIntersectingFaultsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TwoIntersectingFaultsModel(soap, tag, id, this, type); + return soap_out_prodml23__TwoIntersectingFaultsModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TwoIntersectingFaultsModel(struct soap *soap, const char *tag, int id, const prodml22__TwoIntersectingFaultsModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TwoIntersectingFaultsModel(struct soap *soap, const char *tag, int id, const prodml23__TwoIntersectingFaultsModel *a, const char *type) { if (!type) - type = "prodml22:TwoIntersectingFaultsModel"; + type = "prodml23:TwoIntersectingFaultsModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel), type ? type : "prodml22:TwoIntersectingFaultsModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel), type ? type : "prodml23:TwoIntersectingFaultsModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (!a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary1", 0, NULL)) + if (!a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary1", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", -1, &a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + else if (soap_out_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", -1, &a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) return soap->error; - if (!a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary2", 0, NULL)) + if (!a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary2", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary2(soap, "prodml22:DistanceToBoundary2", -1, &a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2, "prodml22:DistanceToBoundary2")) + else if (soap_out_PointerToprodml23__DistanceToBoundary2(soap, "prodml23:DistanceToBoundary2", -1, &a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2, "prodml23:DistanceToBoundary2")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", -1, &a->prodml22__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", -1, &a->prodml23__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (!a->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries) - { if (soap_element_empty(soap, "prodml22:AngleBetweenBoundaries", 0, NULL)) + if (!a->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries) + { if (soap_element_empty(soap, "prodml23:AngleBetweenBoundaries", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AngleBetweenBoundaries(soap, "prodml22:AngleBetweenBoundaries", -1, &a->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries, "prodml22:AngleBetweenBoundaries")) + else if (soap_out_PointerToprodml23__AngleBetweenBoundaries(soap, "prodml23:AngleBetweenBoundaries", -1, &a->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries, "prodml23:AngleBetweenBoundaries")) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", -1, &a->prodml22__TwoIntersectingFaultsModel::Boundary1Type, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", -1, &a->prodml23__TwoIntersectingFaultsModel::Boundary1Type, "prodml23:Boundary1Type")) return soap->error; - if (soap_out_prodml22__Boundary2Type(soap, "prodml22:Boundary2Type", -1, &a->prodml22__TwoIntersectingFaultsModel::Boundary2Type, "prodml22:Boundary2Type")) + if (soap_out_prodml23__Boundary2Type(soap, "prodml23:Boundary2Type", -1, &a->prodml23__TwoIntersectingFaultsModel::Boundary2Type, "prodml23:Boundary2Type")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TwoIntersectingFaultsModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TwoIntersectingFaultsModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TwoIntersectingFaultsModel(soap, tag, this, type); + return soap_in_prodml23__TwoIntersectingFaultsModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoIntersectingFaultsModel(struct soap *soap, const char *tag, prodml22__TwoIntersectingFaultsModel *a, const char *type) +SOAP_FMAC3 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml23__TwoIntersectingFaultsModel(struct soap *soap, const char *tag, prodml23__TwoIntersectingFaultsModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TwoIntersectingFaultsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel, sizeof(prodml22__TwoIntersectingFaultsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TwoIntersectingFaultsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel, sizeof(prodml23__TwoIntersectingFaultsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TwoIntersectingFaultsModel *)a->soap_in(soap, tag, type); + return (prodml23__TwoIntersectingFaultsModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -191711,61 +191706,61 @@ SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml22__T for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_DistanceToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", &a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + { if (soap_in_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", &a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) { soap_flag_DistanceToBoundary11--; continue; } } if (soap_flag_DistanceToBoundary21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary2(soap, "prodml22:DistanceToBoundary2", &a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2, "prodml22:DistanceToBoundary2")) + { if (soap_in_PointerToprodml23__DistanceToBoundary2(soap, "prodml23:DistanceToBoundary2", &a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2, "prodml23:DistanceToBoundary2")) { soap_flag_DistanceToBoundary21--; continue; } } if (soap_flag_OrientationOfNormalToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", &a->prodml22__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + { if (soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", &a->prodml23__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) { soap_flag_OrientationOfNormalToBoundary11--; continue; } } if (soap_flag_AngleBetweenBoundaries1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AngleBetweenBoundaries(soap, "prodml22:AngleBetweenBoundaries", &a->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries, "prodml22:AngleBetweenBoundaries")) + { if (soap_in_PointerToprodml23__AngleBetweenBoundaries(soap, "prodml23:AngleBetweenBoundaries", &a->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries, "prodml23:AngleBetweenBoundaries")) { soap_flag_AngleBetweenBoundaries1--; continue; } } if (soap_flag_Boundary1Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", &a->prodml22__TwoIntersectingFaultsModel::Boundary1Type, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", &a->prodml23__TwoIntersectingFaultsModel::Boundary1Type, "prodml23:Boundary1Type")) { soap_flag_Boundary1Type1--; continue; } } if (soap_flag_Boundary2Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary2Type(soap, "prodml22:Boundary2Type", &a->prodml22__TwoIntersectingFaultsModel::Boundary2Type, "prodml22:Boundary2Type")) + { if (soap_in_prodml23__Boundary2Type(soap, "prodml23:Boundary2Type", &a->prodml23__TwoIntersectingFaultsModel::Boundary2Type, "prodml23:Boundary2Type")) { soap_flag_Boundary2Type1--; continue; } @@ -191779,7 +191774,7 @@ SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml22__T } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1 || !a->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2 || !a->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary2Type1 > 0)) + if ((!a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1 || !a->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2 || !a->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary2Type1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -191789,35 +191784,35 @@ SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml22__T return NULL; } else - { a = (prodml22__TwoIntersectingFaultsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel, sizeof(prodml22__TwoIntersectingFaultsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TwoIntersectingFaultsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel, sizeof(prodml23__TwoIntersectingFaultsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__TwoIntersectingFaultsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__TwoIntersectingFaultsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TwoIntersectingFaultsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TwoIntersectingFaultsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TwoIntersectingFaultsModel *p; - size_t k = sizeof(prodml22__TwoIntersectingFaultsModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel, n, gsoap_eml2_3_fdelete); + prodml23__TwoIntersectingFaultsModel *p; + size_t k = sizeof(prodml23__TwoIntersectingFaultsModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TwoIntersectingFaultsModel); + { p = SOAP_NEW(soap, prodml23__TwoIntersectingFaultsModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TwoIntersectingFaultsModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TwoIntersectingFaultsModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TwoIntersectingFaultsModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TwoIntersectingFaultsModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -191827,128 +191822,128 @@ SOAP_FMAC1 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__TwoIntersectingFaultsModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TwoIntersectingFaultsModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TwoIntersectingFaultsModel(soap, tag ? tag : "prodml22:TwoIntersectingFaultsModel", -2, this, type)) + if (soap_out_prodml23__TwoIntersectingFaultsModel(soap, tag ? tag : "prodml23:TwoIntersectingFaultsModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TwoIntersectingFaultsModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TwoIntersectingFaultsModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TwoIntersectingFaultsModel(soap, this, tag, type); + return soap_get_prodml23__TwoIntersectingFaultsModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_get_prodml22__TwoIntersectingFaultsModel(struct soap *soap, prodml22__TwoIntersectingFaultsModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_get_prodml23__TwoIntersectingFaultsModel(struct soap *soap, prodml23__TwoIntersectingFaultsModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TwoIntersectingFaultsModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__TwoIntersectingFaultsModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SlantedPartiallyPenetratingModel::soap_default(struct soap *soap) +void prodml23__SlantedPartiallyPenetratingModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle = NULL; - this->prodml22__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = NULL; - this->prodml22__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength = NULL; - this->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = NULL; - this->prodml22__SlantedPartiallyPenetratingModel::OrientationWellTrajectory = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle = NULL; + this->prodml23__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength = NULL; + this->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = NULL; + this->prodml23__SlantedPartiallyPenetratingModel::OrientationWellTrajectory = NULL; } -void prodml22__SlantedPartiallyPenetratingModel::soap_serialize(struct soap *soap) const +void prodml23__SlantedPartiallyPenetratingModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__WellboreDeviationAngle(soap, &this->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle); - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness); - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__PerforatedLength(soap, &this->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength); - soap_serialize_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, &this->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary); - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, &this->prodml22__SlantedPartiallyPenetratingModel::OrientationWellTrajectory); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__WellboreDeviationAngle(soap, &this->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__PerforatedLength(soap, &this->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength); + soap_serialize_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, &this->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary); + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, &this->prodml23__SlantedPartiallyPenetratingModel::OrientationWellTrajectory); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__SlantedPartiallyPenetratingModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SlantedPartiallyPenetratingModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SlantedPartiallyPenetratingModel(soap, tag, id, this, type); + return soap_out_prodml23__SlantedPartiallyPenetratingModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, const char *tag, int id, const prodml22__SlantedPartiallyPenetratingModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, const char *tag, int id, const prodml23__SlantedPartiallyPenetratingModel *a, const char *type) { if (!type) - type = "prodml22:SlantedPartiallyPenetratingModel"; + type = "prodml23:SlantedPartiallyPenetratingModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel), type ? type : "prodml22:SlantedPartiallyPenetratingModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel), type ? type : "prodml23:SlantedPartiallyPenetratingModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (!a->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle) - { if (soap_element_empty(soap, "prodml22:WellboreDeviationAngle", 0, NULL)) + if (!a->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle) + { if (soap_element_empty(soap, "prodml23:WellboreDeviationAngle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + else if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (!a->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength) - { if (soap_element_empty(soap, "prodml22:PerforatedLength", 0, NULL)) + if (!a->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength) + { if (soap_element_empty(soap, "prodml23:PerforatedLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PerforatedLength(soap, "prodml22:PerforatedLength", -1, &a->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength, "prodml22:PerforatedLength")) + else if (soap_out_PointerToprodml23__PerforatedLength(soap, "prodml23:PerforatedLength", -1, &a->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength, "prodml23:PerforatedLength")) return soap->error; - if (!a->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", 0, NULL)) + if (!a->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", -1, &a->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml22:DistanceMidPerforationsToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", -1, &a->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml23:DistanceMidPerforationsToBottomBoundary")) return soap->error; - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", -1, &a->prodml22__SlantedPartiallyPenetratingModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", -1, &a->prodml23__SlantedPartiallyPenetratingModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SlantedPartiallyPenetratingModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlantedPartiallyPenetratingModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SlantedPartiallyPenetratingModel(soap, tag, this, type); + return soap_in_prodml23__SlantedPartiallyPenetratingModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, const char *tag, prodml22__SlantedPartiallyPenetratingModel *a, const char *type) +SOAP_FMAC3 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, const char *tag, prodml23__SlantedPartiallyPenetratingModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SlantedPartiallyPenetratingModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel, sizeof(prodml22__SlantedPartiallyPenetratingModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SlantedPartiallyPenetratingModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel, sizeof(prodml23__SlantedPartiallyPenetratingModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SlantedPartiallyPenetratingModel *)a->soap_in(soap, tag, type); + return (prodml23__SlantedPartiallyPenetratingModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -191970,79 +191965,79 @@ SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_WellboreDeviationAngle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle1--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_PerforatedLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PerforatedLength(soap, "prodml22:PerforatedLength", &a->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength, "prodml22:PerforatedLength")) + { if (soap_in_PointerToprodml23__PerforatedLength(soap, "prodml23:PerforatedLength", &a->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength, "prodml23:PerforatedLength")) { soap_flag_PerforatedLength1--; continue; } } if (soap_flag_DistanceMidPerforationsToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", &a->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml22:DistanceMidPerforationsToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", &a->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml23:DistanceMidPerforationsToBottomBoundary")) { soap_flag_DistanceMidPerforationsToBottomBoundary1--; continue; } } if (soap_flag_OrientationWellTrajectory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", &a->prodml22__SlantedPartiallyPenetratingModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + { if (soap_in_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", &a->prodml23__SlantedPartiallyPenetratingModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) { soap_flag_OrientationWellTrajectory1--; continue; } @@ -192056,7 +192051,7 @@ SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle || !a->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength || !a->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle || !a->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength || !a->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -192066,35 +192061,35 @@ SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__SlantedPartiallyPenetratingModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel, sizeof(prodml22__SlantedPartiallyPenetratingModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SlantedPartiallyPenetratingModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel, sizeof(prodml23__SlantedPartiallyPenetratingModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SlantedPartiallyPenetratingModel *p; - size_t k = sizeof(prodml22__SlantedPartiallyPenetratingModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel, n, gsoap_eml2_3_fdelete); + prodml23__SlantedPartiallyPenetratingModel *p; + size_t k = sizeof(prodml23__SlantedPartiallyPenetratingModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SlantedPartiallyPenetratingModel); + { p = SOAP_NEW(soap, prodml23__SlantedPartiallyPenetratingModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SlantedPartiallyPenetratingModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SlantedPartiallyPenetratingModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SlantedPartiallyPenetratingModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SlantedPartiallyPenetratingModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -192104,112 +192099,112 @@ SOAP_FMAC1 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instanti return p; } -int prodml22__SlantedPartiallyPenetratingModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SlantedPartiallyPenetratingModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SlantedPartiallyPenetratingModel(soap, tag ? tag : "prodml22:SlantedPartiallyPenetratingModel", -2, this, type)) + if (soap_out_prodml23__SlantedPartiallyPenetratingModel(soap, tag ? tag : "prodml23:SlantedPartiallyPenetratingModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SlantedPartiallyPenetratingModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlantedPartiallyPenetratingModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SlantedPartiallyPenetratingModel(soap, this, tag, type); + return soap_get_prodml23__SlantedPartiallyPenetratingModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, prodml22__SlantedPartiallyPenetratingModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, prodml23__SlantedPartiallyPenetratingModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SlantedPartiallyPenetratingModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__SlantedPartiallyPenetratingModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SlantedFullyPenetratingModel::soap_default(struct soap *soap) +void prodml23__SlantedFullyPenetratingModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle = NULL; - this->prodml22__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness = NULL; - this->prodml22__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__SlantedFullyPenetratingModel::OrientationWellTrajectory = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle = NULL; + this->prodml23__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__SlantedFullyPenetratingModel::OrientationWellTrajectory = NULL; } -void prodml22__SlantedFullyPenetratingModel::soap_serialize(struct soap *soap) const +void prodml23__SlantedFullyPenetratingModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__WellboreDeviationAngle(soap, &this->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle); - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness); - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, &this->prodml22__SlantedFullyPenetratingModel::OrientationWellTrajectory); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__WellboreDeviationAngle(soap, &this->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, &this->prodml23__SlantedFullyPenetratingModel::OrientationWellTrajectory); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__SlantedFullyPenetratingModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SlantedFullyPenetratingModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SlantedFullyPenetratingModel(soap, tag, id, this, type); + return soap_out_prodml23__SlantedFullyPenetratingModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlantedFullyPenetratingModel(struct soap *soap, const char *tag, int id, const prodml22__SlantedFullyPenetratingModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlantedFullyPenetratingModel(struct soap *soap, const char *tag, int id, const prodml23__SlantedFullyPenetratingModel *a, const char *type) { if (!type) - type = "prodml22:SlantedFullyPenetratingModel"; + type = "prodml23:SlantedFullyPenetratingModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel), type ? type : "prodml22:SlantedFullyPenetratingModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel), type ? type : "prodml23:SlantedFullyPenetratingModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (!a->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle) - { if (soap_element_empty(soap, "prodml22:WellboreDeviationAngle", 0, NULL)) + if (!a->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle) + { if (soap_element_empty(soap, "prodml23:WellboreDeviationAngle", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + else if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", -1, &a->prodml22__SlantedFullyPenetratingModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", -1, &a->prodml23__SlantedFullyPenetratingModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SlantedFullyPenetratingModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlantedFullyPenetratingModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SlantedFullyPenetratingModel(soap, tag, this, type); + return soap_in_prodml23__SlantedFullyPenetratingModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__SlantedFullyPenetratingModel(struct soap *soap, const char *tag, prodml22__SlantedFullyPenetratingModel *a, const char *type) +SOAP_FMAC3 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml23__SlantedFullyPenetratingModel(struct soap *soap, const char *tag, prodml23__SlantedFullyPenetratingModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SlantedFullyPenetratingModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel, sizeof(prodml22__SlantedFullyPenetratingModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SlantedFullyPenetratingModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel, sizeof(prodml23__SlantedFullyPenetratingModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SlantedFullyPenetratingModel *)a->soap_in(soap, tag, type); + return (prodml23__SlantedFullyPenetratingModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -192229,67 +192224,67 @@ SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_WellboreDeviationAngle1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle1--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_OrientationWellTrajectory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", &a->prodml22__SlantedFullyPenetratingModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + { if (soap_in_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", &a->prodml23__SlantedFullyPenetratingModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) { soap_flag_OrientationWellTrajectory1--; continue; } @@ -192303,7 +192298,7 @@ SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml22_ } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle)) { soap->error = SOAP_OCCURS; return NULL; } @@ -192313,35 +192308,35 @@ SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__SlantedFullyPenetratingModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel, sizeof(prodml22__SlantedFullyPenetratingModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SlantedFullyPenetratingModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel, sizeof(prodml23__SlantedFullyPenetratingModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__SlantedFullyPenetratingModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__SlantedFullyPenetratingModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SlantedFullyPenetratingModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SlantedFullyPenetratingModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SlantedFullyPenetratingModel *p; - size_t k = sizeof(prodml22__SlantedFullyPenetratingModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel, n, gsoap_eml2_3_fdelete); + prodml23__SlantedFullyPenetratingModel *p; + size_t k = sizeof(prodml23__SlantedFullyPenetratingModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SlantedFullyPenetratingModel); + { p = SOAP_NEW(soap, prodml23__SlantedFullyPenetratingModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SlantedFullyPenetratingModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SlantedFullyPenetratingModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SlantedFullyPenetratingModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SlantedFullyPenetratingModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -192351,95 +192346,95 @@ SOAP_FMAC1 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__SlantedFullyPenetratingModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SlantedFullyPenetratingModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SlantedFullyPenetratingModel(soap, tag ? tag : "prodml22:SlantedFullyPenetratingModel", -2, this, type)) + if (soap_out_prodml23__SlantedFullyPenetratingModel(soap, tag ? tag : "prodml23:SlantedFullyPenetratingModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SlantedFullyPenetratingModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlantedFullyPenetratingModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SlantedFullyPenetratingModel(soap, this, tag, type); + return soap_get_prodml23__SlantedFullyPenetratingModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_get_prodml22__SlantedFullyPenetratingModel(struct soap *soap, prodml22__SlantedFullyPenetratingModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_get_prodml23__SlantedFullyPenetratingModel(struct soap *soap, prodml23__SlantedFullyPenetratingModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SlantedFullyPenetratingModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__SlantedFullyPenetratingModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SingleFaultModel::soap_default(struct soap *soap) +void prodml23__SingleFaultModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__SingleFaultModel::DistanceToBoundary1 = NULL; - this->prodml22__SingleFaultModel::OrientationOfNormalToBoundary1 = NULL; - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__SingleFaultModel::Boundary1Type); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__SingleFaultModel::DistanceToBoundary1 = NULL; + this->prodml23__SingleFaultModel::OrientationOfNormalToBoundary1 = NULL; + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__SingleFaultModel::Boundary1Type); } -void prodml22__SingleFaultModel::soap_serialize(struct soap *soap) const +void prodml23__SingleFaultModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DistanceToBoundary1(soap, &this->prodml22__SingleFaultModel::DistanceToBoundary1); - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, &this->prodml22__SingleFaultModel::OrientationOfNormalToBoundary1); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DistanceToBoundary1(soap, &this->prodml23__SingleFaultModel::DistanceToBoundary1); + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, &this->prodml23__SingleFaultModel::OrientationOfNormalToBoundary1); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__SingleFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SingleFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SingleFaultModel(soap, tag, id, this, type); + return soap_out_prodml23__SingleFaultModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleFaultModel(struct soap *soap, const char *tag, int id, const prodml22__SingleFaultModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleFaultModel(struct soap *soap, const char *tag, int id, const prodml23__SingleFaultModel *a, const char *type) { if (!type) - type = "prodml22:SingleFaultModel"; + type = "prodml23:SingleFaultModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel), type ? type : "prodml22:SingleFaultModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel), type ? type : "prodml23:SingleFaultModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (!a->prodml22__SingleFaultModel::DistanceToBoundary1) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary1", 0, NULL)) + if (!a->prodml23__SingleFaultModel::DistanceToBoundary1) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary1", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", -1, &a->prodml22__SingleFaultModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + else if (soap_out_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", -1, &a->prodml23__SingleFaultModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", -1, &a->prodml22__SingleFaultModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", -1, &a->prodml23__SingleFaultModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", -1, &a->prodml22__SingleFaultModel::Boundary1Type, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", -1, &a->prodml23__SingleFaultModel::Boundary1Type, "prodml23:Boundary1Type")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SingleFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SingleFaultModel(soap, tag, this, type); + return soap_in_prodml23__SingleFaultModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_in_prodml22__SingleFaultModel(struct soap *soap, const char *tag, prodml22__SingleFaultModel *a, const char *type) +SOAP_FMAC3 prodml23__SingleFaultModel * SOAP_FMAC4 soap_in_prodml23__SingleFaultModel(struct soap *soap, const char *tag, prodml23__SingleFaultModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SingleFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel, sizeof(prodml22__SingleFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SingleFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel, sizeof(prodml23__SingleFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SingleFaultModel *)a->soap_in(soap, tag, type); + return (prodml23__SingleFaultModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -192455,43 +192450,43 @@ SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_in_prodml22__SingleFault for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_DistanceToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", &a->prodml22__SingleFaultModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + { if (soap_in_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", &a->prodml23__SingleFaultModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) { soap_flag_DistanceToBoundary11--; continue; } } if (soap_flag_OrientationOfNormalToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", &a->prodml22__SingleFaultModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + { if (soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", &a->prodml23__SingleFaultModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) { soap_flag_OrientationOfNormalToBoundary11--; continue; } } if (soap_flag_Boundary1Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", &a->prodml22__SingleFaultModel::Boundary1Type, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", &a->prodml23__SingleFaultModel::Boundary1Type, "prodml23:Boundary1Type")) { soap_flag_Boundary1Type1--; continue; } @@ -192505,7 +192500,7 @@ SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_in_prodml22__SingleFault } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__SingleFaultModel::DistanceToBoundary1 || soap_flag_Boundary1Type1 > 0)) + if ((!a->prodml23__SingleFaultModel::DistanceToBoundary1 || soap_flag_Boundary1Type1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -192515,35 +192510,35 @@ SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_in_prodml22__SingleFault return NULL; } else - { a = (prodml22__SingleFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel, sizeof(prodml22__SingleFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SingleFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel, sizeof(prodml23__SingleFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SingleFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SingleFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SingleFaultModel *p; - size_t k = sizeof(prodml22__SingleFaultModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel, n, gsoap_eml2_3_fdelete); + prodml23__SingleFaultModel *p; + size_t k = sizeof(prodml23__SingleFaultModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SingleFaultModel); + { p = SOAP_NEW(soap, prodml23__SingleFaultModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SingleFaultModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SingleFaultModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SingleFaultModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SingleFaultModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -192553,144 +192548,144 @@ SOAP_FMAC1 prodml22__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__Si return p; } -int prodml22__SingleFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SingleFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SingleFaultModel(soap, tag ? tag : "prodml22:SingleFaultModel", -2, this, type)) + if (soap_out_prodml23__SingleFaultModel(soap, tag ? tag : "prodml23:SingleFaultModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SingleFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SingleFaultModel(soap, this, tag, type); + return soap_get_prodml23__SingleFaultModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_get_prodml22__SingleFaultModel(struct soap *soap, prodml22__SingleFaultModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SingleFaultModel * SOAP_FMAC4 soap_get_prodml23__SingleFaultModel(struct soap *soap, prodml23__SingleFaultModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SingleFaultModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__SingleFaultModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReservoirBaseModel::soap_default(struct soap *soap) +void prodml23__ReservoirBaseModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractModelSection::soap_default(soap); - this->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = NULL; - this->prodml22__ReservoirBaseModel::TotalThickness = NULL; - this->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = NULL; - this->prodml22__ReservoirBaseModel::Porosity = NULL; - this->prodml22__ReservoirBaseModel::InitialPressure = NULL; - this->prodml22__ReservoirBaseModel::PressureDatumTVD = NULL; - this->prodml22__ReservoirBaseModel::AveragePressure = NULL; - this->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = NULL; - this->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = NULL; - this->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = NULL; - this->prodml22__ReservoirBaseModel::UpperBoundaryType = NULL; - this->prodml22__ReservoirBaseModel::LowerBoundaryType = NULL; + this->prodml23__AbstractModelSection::soap_default(soap); + this->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = NULL; + this->prodml23__ReservoirBaseModel::TotalThickness = NULL; + this->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = NULL; + this->prodml23__ReservoirBaseModel::Porosity = NULL; + this->prodml23__ReservoirBaseModel::InitialPressure = NULL; + this->prodml23__ReservoirBaseModel::PressureDatumTVD = NULL; + this->prodml23__ReservoirBaseModel::AveragePressure = NULL; + this->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = NULL; + this->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = NULL; + this->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = NULL; + this->prodml23__ReservoirBaseModel::UpperBoundaryType = NULL; + this->prodml23__ReservoirBaseModel::LowerBoundaryType = NULL; } -void prodml22__ReservoirBaseModel::soap_serialize(struct soap *soap) const +void prodml23__ReservoirBaseModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__HorizontalRadialPermeability(soap, &this->prodml22__ReservoirBaseModel::HorizontalRadialPermeability); - soap_serialize_PointerToprodml22__TotalThickness(soap, &this->prodml22__ReservoirBaseModel::TotalThickness); - soap_serialize_PointerToprodml22__PermeabilityThicknessProduct(soap, &this->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct); - soap_serialize_PointerToprodml22__Porosity(soap, &this->prodml22__ReservoirBaseModel::Porosity); - soap_serialize_PointerToprodml22__InitialPressure(soap, &this->prodml22__ReservoirBaseModel::InitialPressure); - soap_serialize_PointerToprodml22__PressureDatumTVD(soap, &this->prodml22__ReservoirBaseModel::PressureDatumTVD); - soap_serialize_PointerToprodml22__AveragePressure(soap, &this->prodml22__ReservoirBaseModel::AveragePressure); - soap_serialize_PointerToprodml22__VerticalAnisotropyKvToKr(soap, &this->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr); - soap_serialize_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, &this->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy); - soap_serialize_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, &this->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection); - soap_serialize_PointerToprodml22__UpperBoundaryType(soap, &this->prodml22__ReservoirBaseModel::UpperBoundaryType); - soap_serialize_PointerToprodml22__LowerBoundaryType(soap, &this->prodml22__ReservoirBaseModel::LowerBoundaryType); - this->prodml22__AbstractModelSection::soap_serialize(soap); + soap_serialize_PointerToprodml23__HorizontalRadialPermeability(soap, &this->prodml23__ReservoirBaseModel::HorizontalRadialPermeability); + soap_serialize_PointerToprodml23__TotalThickness(soap, &this->prodml23__ReservoirBaseModel::TotalThickness); + soap_serialize_PointerToprodml23__PermeabilityThicknessProduct(soap, &this->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct); + soap_serialize_PointerToprodml23__Porosity(soap, &this->prodml23__ReservoirBaseModel::Porosity); + soap_serialize_PointerToprodml23__InitialPressure(soap, &this->prodml23__ReservoirBaseModel::InitialPressure); + soap_serialize_PointerToprodml23__PressureDatumTVD(soap, &this->prodml23__ReservoirBaseModel::PressureDatumTVD); + soap_serialize_PointerToprodml23__AveragePressure(soap, &this->prodml23__ReservoirBaseModel::AveragePressure); + soap_serialize_PointerToprodml23__VerticalAnisotropyKvToKr(soap, &this->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr); + soap_serialize_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, &this->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy); + soap_serialize_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, &this->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection); + soap_serialize_PointerToprodml23__UpperBoundaryType(soap, &this->prodml23__ReservoirBaseModel::UpperBoundaryType); + soap_serialize_PointerToprodml23__LowerBoundaryType(soap, &this->prodml23__ReservoirBaseModel::LowerBoundaryType); + this->prodml23__AbstractModelSection::soap_serialize(soap); #endif } -int prodml22__ReservoirBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReservoirBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReservoirBaseModel(soap, tag, id, this, type); + return soap_out_prodml23__ReservoirBaseModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirBaseModel(struct soap *soap, const char *tag, int id, const prodml22__ReservoirBaseModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirBaseModel(struct soap *soap, const char *tag, int id, const prodml23__ReservoirBaseModel *a, const char *type) { if (!type) - type = "prodml22:ReservoirBaseModel"; + type = "prodml23:ReservoirBaseModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel), type ? type : "prodml22:ReservoirBaseModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel), type ? type : "prodml23:ReservoirBaseModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReservoirBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReservoirBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReservoirBaseModel(soap, tag, this, type); + return soap_in_prodml23__ReservoirBaseModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml22__ReservoirBaseModel(struct soap *soap, const char *tag, prodml22__ReservoirBaseModel *a, const char *type) +SOAP_FMAC3 prodml23__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml23__ReservoirBaseModel(struct soap *soap, const char *tag, prodml23__ReservoirBaseModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReservoirBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel, sizeof(prodml22__ReservoirBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReservoirBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel, sizeof(prodml23__ReservoirBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReservoirBaseModel *)a->soap_in(soap, tag, type); + return (prodml23__ReservoirBaseModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -192713,85 +192708,85 @@ SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml22__Reservoir for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment2--; continue; } } if (soap_flag_Method2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method2--; continue; } } if (soap_flag_HorizontalRadialPermeability1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability1--; continue; } } if (soap_flag_TotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness1--; continue; } } if (soap_flag_PermeabilityThicknessProduct1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct1--; continue; } } if (soap_flag_Porosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity1--; continue; } } if (soap_flag_InitialPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure1--; continue; } } if (soap_flag_PressureDatumTVD1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD1--; continue; } } if (soap_flag_AveragePressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure1--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr1--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy1--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection1--; continue; } } if (soap_flag_UpperBoundaryType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType1--; continue; } } if (soap_flag_LowerBoundaryType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType1--; continue; } @@ -192805,7 +192800,7 @@ SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml22__Reservoir } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -192815,61 +192810,61 @@ SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml22__Reservoir return NULL; } else - { a = (prodml22__ReservoirBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel, sizeof(prodml22__ReservoirBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReservoirBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel, sizeof(prodml23__ReservoirBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__ReservoirBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__ReservoirBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReservoirBaseModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReservoirBaseModel(%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, "prodml22:CustomReservoirModel")) - return soap_instantiate_prodml22__CustomReservoirModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPermeabilityWithCrossflowModel")) - return soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPorosityPseudoSteadyStateModel")) - return soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPorosityTransientSlabsModel")) - return soap_instantiate_prodml22__DualPorosityTransientSlabsModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPorosityTransientSpheresModel")) - return soap_instantiate_prodml22__DualPorosityTransientSpheresModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HomogeneousModel")) - return soap_instantiate_prodml22__HomogeneousModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeModel")) - return soap_instantiate_prodml22__LinearCompositeModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) - return soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeWithConductiveFaultModel")) - return soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeWithLeakyFaultModel")) - return soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumericalDualPorosityReservoirModel")) - return soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumericalHomogeneousReservoirModel")) - return soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RadialCompositeModel")) - return soap_instantiate_prodml22__RadialCompositeModel(soap, n, NULL, NULL, size); - prodml22__ReservoirBaseModel *p; - size_t k = sizeof(prodml22__ReservoirBaseModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomReservoirModel")) + return soap_instantiate_prodml23__CustomReservoirModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPermeabilityWithCrossflowModel")) + return soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPorosityPseudoSteadyStateModel")) + return soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPorosityTransientSlabsModel")) + return soap_instantiate_prodml23__DualPorosityTransientSlabsModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPorosityTransientSpheresModel")) + return soap_instantiate_prodml23__DualPorosityTransientSpheresModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HomogeneousModel")) + return soap_instantiate_prodml23__HomogeneousModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeModel")) + return soap_instantiate_prodml23__LinearCompositeModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) + return soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeWithConductiveFaultModel")) + return soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeWithLeakyFaultModel")) + return soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumericalDualPorosityReservoirModel")) + return soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumericalHomogeneousReservoirModel")) + return soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RadialCompositeModel")) + return soap_instantiate_prodml23__RadialCompositeModel(soap, n, NULL, NULL, size); + prodml23__ReservoirBaseModel *p; + size_t k = sizeof(prodml23__ReservoirBaseModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReservoirBaseModel); + { p = SOAP_NEW(soap, prodml23__ReservoirBaseModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReservoirBaseModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReservoirBaseModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReservoirBaseModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReservoirBaseModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -192879,144 +192874,144 @@ SOAP_FMAC1 prodml22__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__ReservoirBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReservoirBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReservoirBaseModel(soap, tag ? tag : "prodml22:ReservoirBaseModel", -2, this, type)) + if (soap_out_prodml23__ReservoirBaseModel(soap, tag ? tag : "prodml23:ReservoirBaseModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReservoirBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReservoirBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReservoirBaseModel(soap, this, tag, type); + return soap_get_prodml23__ReservoirBaseModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_get_prodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReservoirBaseModel * SOAP_FMAC4 soap_get_prodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReservoirBaseModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReservoirBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RadialCompositeModel::soap_default(struct soap *soap) +void prodml23__RadialCompositeModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio = NULL; - this->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio = NULL; - this->prodml22__RadialCompositeModel::DistanceToMobilityInterface = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio = NULL; + this->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio = NULL; + this->prodml23__RadialCompositeModel::DistanceToMobilityInterface = NULL; } -void prodml22__RadialCompositeModel::soap_serialize(struct soap *soap) const +void prodml23__RadialCompositeModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, &this->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio); - soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio); - soap_serialize_PointerToprodml22__DistanceToMobilityInterface(soap, &this->prodml22__RadialCompositeModel::DistanceToMobilityInterface); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, &this->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio); + soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio); + soap_serialize_PointerToprodml23__DistanceToMobilityInterface(soap, &this->prodml23__RadialCompositeModel::DistanceToMobilityInterface); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__RadialCompositeModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RadialCompositeModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RadialCompositeModel(soap, tag, id, this, type); + return soap_out_prodml23__RadialCompositeModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RadialCompositeModel(struct soap *soap, const char *tag, int id, const prodml22__RadialCompositeModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RadialCompositeModel(struct soap *soap, const char *tag, int id, const prodml23__RadialCompositeModel *a, const char *type) { if (!type) - type = "prodml22:RadialCompositeModel"; + type = "prodml23:RadialCompositeModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel), type ? type : "prodml22:RadialCompositeModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel), type ? type : "prodml23:RadialCompositeModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneMobilityRatio", 0, NULL)) + if (!a->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneMobilityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", -1, &a->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", -1, &a->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) return soap->error; - if (!a->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", 0, NULL)) + if (!a->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) return soap->error; - if (!a->prodml22__RadialCompositeModel::DistanceToMobilityInterface) - { if (soap_element_empty(soap, "prodml22:DistanceToMobilityInterface", 0, NULL)) + if (!a->prodml23__RadialCompositeModel::DistanceToMobilityInterface) + { if (soap_element_empty(soap, "prodml23:DistanceToMobilityInterface", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", -1, &a->prodml22__RadialCompositeModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + else if (soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", -1, &a->prodml23__RadialCompositeModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RadialCompositeModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RadialCompositeModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RadialCompositeModel(soap, tag, this, type); + return soap_in_prodml23__RadialCompositeModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml22__RadialCompositeModel(struct soap *soap, const char *tag, prodml22__RadialCompositeModel *a, const char *type) +SOAP_FMAC3 prodml23__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml23__RadialCompositeModel(struct soap *soap, const char *tag, prodml23__RadialCompositeModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RadialCompositeModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel, sizeof(prodml22__RadialCompositeModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RadialCompositeModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel, sizeof(prodml23__RadialCompositeModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RadialCompositeModel *)a->soap_in(soap, tag, type); + return (prodml23__RadialCompositeModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -193042,103 +193037,103 @@ SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml22__RadialC for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InnerToOuterZoneMobilityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", &a->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", &a->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) { soap_flag_InnerToOuterZoneMobilityRatio1--; continue; } } if (soap_flag_InnerToOuterZoneDiffusivityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", &a->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", &a->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) { soap_flag_InnerToOuterZoneDiffusivityRatio1--; continue; } } if (soap_flag_DistanceToMobilityInterface1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", &a->prodml22__RadialCompositeModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + { if (soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", &a->prodml23__RadialCompositeModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) { soap_flag_DistanceToMobilityInterface1--; continue; } @@ -193152,7 +193147,7 @@ SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml22__RadialC } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio || !a->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio || !a->prodml22__RadialCompositeModel::DistanceToMobilityInterface)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio || !a->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio || !a->prodml23__RadialCompositeModel::DistanceToMobilityInterface)) { soap->error = SOAP_OCCURS; return NULL; } @@ -193162,35 +193157,35 @@ SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml22__RadialC return NULL; } else - { a = (prodml22__RadialCompositeModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel, SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel, sizeof(prodml22__RadialCompositeModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RadialCompositeModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel, SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel, sizeof(prodml23__RadialCompositeModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22__RadialCompositeModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml23__RadialCompositeModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RadialCompositeModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RadialCompositeModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RadialCompositeModel *p; - size_t k = sizeof(prodml22__RadialCompositeModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel, n, gsoap_eml2_3_fdelete); + prodml23__RadialCompositeModel *p; + size_t k = sizeof(prodml23__RadialCompositeModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RadialCompositeModel); + { p = SOAP_NEW(soap, prodml23__RadialCompositeModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RadialCompositeModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RadialCompositeModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RadialCompositeModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RadialCompositeModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -193200,92 +193195,92 @@ SOAP_FMAC1 prodml22__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__RadialCompositeModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RadialCompositeModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RadialCompositeModel(soap, tag ? tag : "prodml22:RadialCompositeModel", -2, this, type)) + if (soap_out_prodml23__RadialCompositeModel(soap, tag ? tag : "prodml23:RadialCompositeModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RadialCompositeModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RadialCompositeModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RadialCompositeModel(soap, this, tag, type); + return soap_get_prodml23__RadialCompositeModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_get_prodml22__RadialCompositeModel(struct soap *soap, prodml22__RadialCompositeModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RadialCompositeModel * SOAP_FMAC4 soap_get_prodml23__RadialCompositeModel(struct soap *soap, prodml23__RadialCompositeModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RadialCompositeModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__RadialCompositeModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PinchOutModel::soap_default(struct soap *soap) +void prodml23__PinchOutModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__PinchOutModel::OrientationOfNormalToBoundary1 = NULL; - this->prodml22__PinchOutModel::DistanceToPinchOut = NULL; + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__PinchOutModel::OrientationOfNormalToBoundary1 = NULL; + this->prodml23__PinchOutModel::DistanceToPinchOut = NULL; } -void prodml22__PinchOutModel::soap_serialize(struct soap *soap) const +void prodml23__PinchOutModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, &this->prodml22__PinchOutModel::OrientationOfNormalToBoundary1); - soap_serialize_PointerToprodml22__DistanceToPinchOut(soap, &this->prodml22__PinchOutModel::DistanceToPinchOut); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, &this->prodml23__PinchOutModel::OrientationOfNormalToBoundary1); + soap_serialize_PointerToprodml23__DistanceToPinchOut(soap, &this->prodml23__PinchOutModel::DistanceToPinchOut); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__PinchOutModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PinchOutModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PinchOutModel(soap, tag, id, this, type); + return soap_out_prodml23__PinchOutModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PinchOutModel(struct soap *soap, const char *tag, int id, const prodml22__PinchOutModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PinchOutModel(struct soap *soap, const char *tag, int id, const prodml23__PinchOutModel *a, const char *type) { if (!type) - type = "prodml22:PinchOutModel"; + type = "prodml23:PinchOutModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel), type ? type : "prodml22:PinchOutModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel), type ? type : "prodml23:PinchOutModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", -1, &a->prodml22__PinchOutModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", -1, &a->prodml23__PinchOutModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (!a->prodml22__PinchOutModel::DistanceToPinchOut) - { if (soap_element_empty(soap, "prodml22:DistanceToPinchOut", 0, NULL)) + if (!a->prodml23__PinchOutModel::DistanceToPinchOut) + { if (soap_element_empty(soap, "prodml23:DistanceToPinchOut", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToPinchOut(soap, "prodml22:DistanceToPinchOut", -1, &a->prodml22__PinchOutModel::DistanceToPinchOut, "prodml22:DistanceToPinchOut")) + else if (soap_out_PointerToprodml23__DistanceToPinchOut(soap, "prodml23:DistanceToPinchOut", -1, &a->prodml23__PinchOutModel::DistanceToPinchOut, "prodml23:DistanceToPinchOut")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PinchOutModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PinchOutModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PinchOutModel(soap, tag, this, type); + return soap_in_prodml23__PinchOutModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_in_prodml22__PinchOutModel(struct soap *soap, const char *tag, prodml22__PinchOutModel *a, const char *type) +SOAP_FMAC3 prodml23__PinchOutModel * SOAP_FMAC4 soap_in_prodml23__PinchOutModel(struct soap *soap, const char *tag, prodml23__PinchOutModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PinchOutModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel, sizeof(prodml22__PinchOutModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PinchOutModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel, sizeof(prodml23__PinchOutModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PinchOutModel *)a->soap_in(soap, tag, type); + return (prodml23__PinchOutModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -193300,37 +193295,37 @@ SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_in_prodml22__PinchOutModel( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_OrientationOfNormalToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", &a->prodml22__PinchOutModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + { if (soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", &a->prodml23__PinchOutModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) { soap_flag_OrientationOfNormalToBoundary11--; continue; } } if (soap_flag_DistanceToPinchOut1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToPinchOut(soap, "prodml22:DistanceToPinchOut", &a->prodml22__PinchOutModel::DistanceToPinchOut, "prodml22:DistanceToPinchOut")) + { if (soap_in_PointerToprodml23__DistanceToPinchOut(soap, "prodml23:DistanceToPinchOut", &a->prodml23__PinchOutModel::DistanceToPinchOut, "prodml23:DistanceToPinchOut")) { soap_flag_DistanceToPinchOut1--; continue; } @@ -193344,7 +193339,7 @@ SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_in_prodml22__PinchOutModel( } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__PinchOutModel::DistanceToPinchOut)) + if ((!a->prodml23__PinchOutModel::DistanceToPinchOut)) { soap->error = SOAP_OCCURS; return NULL; } @@ -193354,35 +193349,35 @@ SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_in_prodml22__PinchOutModel( return NULL; } else - { a = (prodml22__PinchOutModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel, SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel, sizeof(prodml22__PinchOutModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PinchOutModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel, SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel, sizeof(prodml23__PinchOutModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml22__PinchOutModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml23__PinchOutModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PinchOutModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PinchOutModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PinchOutModel *p; - size_t k = sizeof(prodml22__PinchOutModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel, n, gsoap_eml2_3_fdelete); + prodml23__PinchOutModel *p; + size_t k = sizeof(prodml23__PinchOutModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PinchOutModel); + { p = SOAP_NEW(soap, prodml23__PinchOutModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PinchOutModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PinchOutModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PinchOutModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PinchOutModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -193392,116 +193387,116 @@ SOAP_FMAC1 prodml22__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml22__Pinch return p; } -int prodml22__PinchOutModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PinchOutModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PinchOutModel(soap, tag ? tag : "prodml22:PinchOutModel", -2, this, type)) + if (soap_out_prodml23__PinchOutModel(soap, tag ? tag : "prodml23:PinchOutModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PinchOutModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PinchOutModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PinchOutModel(soap, this, tag, type); + return soap_get_prodml23__PinchOutModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_get_prodml22__PinchOutModel(struct soap *soap, prodml22__PinchOutModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PinchOutModel * SOAP_FMAC4 soap_get_prodml23__PinchOutModel(struct soap *soap, prodml23__PinchOutModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PinchOutModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__PinchOutModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PartiallyPenetratingModel::soap_default(struct soap *soap) +void prodml23__PartiallyPenetratingModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = NULL; - this->prodml22__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__PartiallyPenetratingModel::PerforatedLength = NULL; - this->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__PartiallyPenetratingModel::PerforatedLength = NULL; + this->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = NULL; } -void prodml22__PartiallyPenetratingModel::soap_serialize(struct soap *soap) const +void prodml23__PartiallyPenetratingModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness); - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__PerforatedLength(soap, &this->prodml22__PartiallyPenetratingModel::PerforatedLength); - soap_serialize_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, &this->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__PerforatedLength(soap, &this->prodml23__PartiallyPenetratingModel::PerforatedLength); + soap_serialize_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, &this->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__PartiallyPenetratingModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PartiallyPenetratingModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PartiallyPenetratingModel(soap, tag, id, this, type); + return soap_out_prodml23__PartiallyPenetratingModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PartiallyPenetratingModel(struct soap *soap, const char *tag, int id, const prodml22__PartiallyPenetratingModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PartiallyPenetratingModel(struct soap *soap, const char *tag, int id, const prodml23__PartiallyPenetratingModel *a, const char *type) { if (!type) - type = "prodml22:PartiallyPenetratingModel"; + type = "prodml23:PartiallyPenetratingModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel), type ? type : "prodml22:PartiallyPenetratingModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel), type ? type : "prodml23:PartiallyPenetratingModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (!a->prodml22__PartiallyPenetratingModel::PerforatedLength) - { if (soap_element_empty(soap, "prodml22:PerforatedLength", 0, NULL)) + if (!a->prodml23__PartiallyPenetratingModel::PerforatedLength) + { if (soap_element_empty(soap, "prodml23:PerforatedLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PerforatedLength(soap, "prodml22:PerforatedLength", -1, &a->prodml22__PartiallyPenetratingModel::PerforatedLength, "prodml22:PerforatedLength")) + else if (soap_out_PointerToprodml23__PerforatedLength(soap, "prodml23:PerforatedLength", -1, &a->prodml23__PartiallyPenetratingModel::PerforatedLength, "prodml23:PerforatedLength")) return soap->error; - if (!a->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", 0, NULL)) + if (!a->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", -1, &a->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml22:DistanceMidPerforationsToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", -1, &a->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml23:DistanceMidPerforationsToBottomBoundary")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PartiallyPenetratingModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PartiallyPenetratingModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PartiallyPenetratingModel(soap, tag, this, type); + return soap_in_prodml23__PartiallyPenetratingModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__PartiallyPenetratingModel(struct soap *soap, const char *tag, prodml22__PartiallyPenetratingModel *a, const char *type) +SOAP_FMAC3 prodml23__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml23__PartiallyPenetratingModel(struct soap *soap, const char *tag, prodml23__PartiallyPenetratingModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PartiallyPenetratingModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel, sizeof(prodml22__PartiallyPenetratingModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PartiallyPenetratingModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel, sizeof(prodml23__PartiallyPenetratingModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PartiallyPenetratingModel *)a->soap_in(soap, tag, type); + return (prodml23__PartiallyPenetratingModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -193521,67 +193516,67 @@ SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__Pa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_PerforatedLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PerforatedLength(soap, "prodml22:PerforatedLength", &a->prodml22__PartiallyPenetratingModel::PerforatedLength, "prodml22:PerforatedLength")) + { if (soap_in_PointerToprodml23__PerforatedLength(soap, "prodml23:PerforatedLength", &a->prodml23__PartiallyPenetratingModel::PerforatedLength, "prodml23:PerforatedLength")) { soap_flag_PerforatedLength1--; continue; } } if (soap_flag_DistanceMidPerforationsToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", &a->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml22:DistanceMidPerforationsToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", &a->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary, "prodml23:DistanceMidPerforationsToBottomBoundary")) { soap_flag_DistanceMidPerforationsToBottomBoundary1--; continue; } @@ -193595,7 +193590,7 @@ SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__Pa } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__PartiallyPenetratingModel::PerforatedLength || !a->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__PartiallyPenetratingModel::PerforatedLength || !a->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -193605,35 +193600,35 @@ SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__Pa return NULL; } else - { a = (prodml22__PartiallyPenetratingModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel, SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel, sizeof(prodml22__PartiallyPenetratingModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PartiallyPenetratingModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel, SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel, sizeof(prodml23__PartiallyPenetratingModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__PartiallyPenetratingModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__PartiallyPenetratingModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PartiallyPenetratingModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PartiallyPenetratingModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PartiallyPenetratingModel *p; - size_t k = sizeof(prodml22__PartiallyPenetratingModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel, n, gsoap_eml2_3_fdelete); + prodml23__PartiallyPenetratingModel *p; + size_t k = sizeof(prodml23__PartiallyPenetratingModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PartiallyPenetratingModel); + { p = SOAP_NEW(soap, prodml23__PartiallyPenetratingModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PartiallyPenetratingModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PartiallyPenetratingModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PartiallyPenetratingModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PartiallyPenetratingModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -193643,136 +193638,136 @@ SOAP_FMAC1 prodml22__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__PartiallyPenetratingModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PartiallyPenetratingModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PartiallyPenetratingModel(soap, tag ? tag : "prodml22:PartiallyPenetratingModel", -2, this, type)) + if (soap_out_prodml23__PartiallyPenetratingModel(soap, tag ? tag : "prodml23:PartiallyPenetratingModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PartiallyPenetratingModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PartiallyPenetratingModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PartiallyPenetratingModel(soap, this, tag, type); + return soap_get_prodml23__PartiallyPenetratingModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml22__PartiallyPenetratingModel(struct soap *soap, prodml22__PartiallyPenetratingModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml23__PartiallyPenetratingModel(struct soap *soap, prodml23__PartiallyPenetratingModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PartiallyPenetratingModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__PartiallyPenetratingModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NumericalHomogeneousReservoirModel::soap_default(struct soap *soap) +void prodml23__NumericalHomogeneousReservoirModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - soap_default_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, &this->prodml22__NumericalHomogeneousReservoirModel::InternalFaultSubModel); - this->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, &this->prodml22__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel); + this->prodml23__ReservoirBaseModel::soap_default(soap); + soap_default_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, &this->prodml23__NumericalHomogeneousReservoirModel::InternalFaultSubModel); + this->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, &this->prodml23__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel); } -void prodml22__NumericalHomogeneousReservoirModel::soap_serialize(struct soap *soap) const +void prodml23__NumericalHomogeneousReservoirModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, &this->prodml22__NumericalHomogeneousReservoirModel::InternalFaultSubModel); - soap_serialize_PointerToprodml22__DistributedParametersSubModel(soap, &this->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, &this->prodml22__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, &this->prodml23__NumericalHomogeneousReservoirModel::InternalFaultSubModel); + soap_serialize_PointerToprodml23__DistributedParametersSubModel(soap, &this->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, &this->prodml23__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__NumericalHomogeneousReservoirModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NumericalHomogeneousReservoirModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NumericalHomogeneousReservoirModel(soap, tag, id, this, type); + return soap_out_prodml23__NumericalHomogeneousReservoirModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, const char *tag, int id, const prodml22__NumericalHomogeneousReservoirModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, const char *tag, int id, const prodml23__NumericalHomogeneousReservoirModel *a, const char *type) { if (!type) - type = "prodml22:NumericalHomogeneousReservoirModel"; + type = "prodml23:NumericalHomogeneousReservoirModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel), type ? type : "prodml22:NumericalHomogeneousReservoirModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel), type ? type : "prodml23:NumericalHomogeneousReservoirModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, "prodml22:InternalFaultSubModel", -1, &a->prodml22__NumericalHomogeneousReservoirModel::InternalFaultSubModel, "prodml22:InternalFaultSubModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, "prodml23:InternalFaultSubModel", -1, &a->prodml23__NumericalHomogeneousReservoirModel::InternalFaultSubModel, "prodml23:InternalFaultSubModel")) return soap->error; - if (!a->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel) - { if (soap_element_empty(soap, "prodml22:DistributedParametersSubModel", 0, NULL)) + if (!a->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel) + { if (soap_element_empty(soap, "prodml23:DistributedParametersSubModel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistributedParametersSubModel(soap, "prodml22:DistributedParametersSubModel", -1, &a->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel, "prodml22:DistributedParametersSubModel")) + else if (soap_out_PointerToprodml23__DistributedParametersSubModel(soap, "prodml23:DistributedParametersSubModel", -1, &a->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel, "prodml23:DistributedParametersSubModel")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, "prodml22:ReservoirZoneSubModel", -1, &a->prodml22__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel, "prodml22:ReservoirZoneSubModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, "prodml23:ReservoirZoneSubModel", -1, &a->prodml23__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel, "prodml23:ReservoirZoneSubModel")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NumericalHomogeneousReservoirModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumericalHomogeneousReservoirModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NumericalHomogeneousReservoirModel(soap, tag, this, type); + return soap_in_prodml23__NumericalHomogeneousReservoirModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, const char *tag, prodml22__NumericalHomogeneousReservoirModel *a, const char *type) +SOAP_FMAC3 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, const char *tag, prodml23__NumericalHomogeneousReservoirModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NumericalHomogeneousReservoirModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel, sizeof(prodml22__NumericalHomogeneousReservoirModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NumericalHomogeneousReservoirModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel, sizeof(prodml23__NumericalHomogeneousReservoirModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NumericalHomogeneousReservoirModel *)a->soap_in(soap, tag, type); + return (prodml23__NumericalHomogeneousReservoirModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -193796,101 +193791,101 @@ SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, "prodml22:InternalFaultSubModel", &a->prodml22__NumericalHomogeneousReservoirModel::InternalFaultSubModel, "prodml22:InternalFaultSubModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, "prodml23:InternalFaultSubModel", &a->prodml23__NumericalHomogeneousReservoirModel::InternalFaultSubModel, "prodml23:InternalFaultSubModel")) continue; } if (soap_flag_DistributedParametersSubModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistributedParametersSubModel(soap, "prodml22:DistributedParametersSubModel", &a->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel, "prodml22:DistributedParametersSubModel")) + { if (soap_in_PointerToprodml23__DistributedParametersSubModel(soap, "prodml23:DistributedParametersSubModel", &a->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel, "prodml23:DistributedParametersSubModel")) { soap_flag_DistributedParametersSubModel1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, "prodml22:ReservoirZoneSubModel", &a->prodml22__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel, "prodml22:ReservoirZoneSubModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, "prodml23:ReservoirZoneSubModel", &a->prodml23__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel, "prodml23:ReservoirZoneSubModel")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -193902,7 +193897,7 @@ SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -193912,35 +193907,35 @@ SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__NumericalHomogeneousReservoirModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel, sizeof(prodml22__NumericalHomogeneousReservoirModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NumericalHomogeneousReservoirModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel, sizeof(prodml23__NumericalHomogeneousReservoirModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NumericalHomogeneousReservoirModel *p; - size_t k = sizeof(prodml22__NumericalHomogeneousReservoirModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel, n, gsoap_eml2_3_fdelete); + prodml23__NumericalHomogeneousReservoirModel *p; + size_t k = sizeof(prodml23__NumericalHomogeneousReservoirModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NumericalHomogeneousReservoirModel); + { p = SOAP_NEW(soap, prodml23__NumericalHomogeneousReservoirModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NumericalHomogeneousReservoirModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NumericalHomogeneousReservoirModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NumericalHomogeneousReservoirModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NumericalHomogeneousReservoirModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -193950,152 +193945,152 @@ SOAP_FMAC1 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instan return p; } -int prodml22__NumericalHomogeneousReservoirModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NumericalHomogeneousReservoirModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NumericalHomogeneousReservoirModel(soap, tag ? tag : "prodml22:NumericalHomogeneousReservoirModel", -2, this, type)) + if (soap_out_prodml23__NumericalHomogeneousReservoirModel(soap, tag ? tag : "prodml23:NumericalHomogeneousReservoirModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NumericalHomogeneousReservoirModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumericalHomogeneousReservoirModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NumericalHomogeneousReservoirModel(soap, this, tag, type); + return soap_get_prodml23__NumericalHomogeneousReservoirModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_get_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, prodml22__NumericalHomogeneousReservoirModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_get_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, prodml23__NumericalHomogeneousReservoirModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NumericalHomogeneousReservoirModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__NumericalHomogeneousReservoirModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NumericalDualPorosityReservoirModel::soap_default(struct soap *soap) +void prodml23__NumericalDualPorosityReservoirModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter = NULL; - this->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, &this->prodml22__NumericalDualPorosityReservoirModel::InternalFaultSubModel); - this->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, &this->prodml22__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel); + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter = NULL; + this->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, &this->prodml23__NumericalDualPorosityReservoirModel::InternalFaultSubModel); + this->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, &this->prodml23__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel); } -void prodml22__NumericalDualPorosityReservoirModel::soap_serialize(struct soap *soap) const +void prodml23__NumericalDualPorosityReservoirModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, &this->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter); - soap_serialize_PointerToprodml22__StorativityRatio(soap, &this->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio); - soap_serialize_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, &this->prodml22__NumericalDualPorosityReservoirModel::InternalFaultSubModel); - soap_serialize_PointerToprodml22__DistributedParametersSubModel(soap, &this->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, &this->prodml22__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, &this->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter); + soap_serialize_PointerToprodml23__StorativityRatio(soap, &this->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, &this->prodml23__NumericalDualPorosityReservoirModel::InternalFaultSubModel); + soap_serialize_PointerToprodml23__DistributedParametersSubModel(soap, &this->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, &this->prodml23__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__NumericalDualPorosityReservoirModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NumericalDualPorosityReservoirModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NumericalDualPorosityReservoirModel(soap, tag, id, this, type); + return soap_out_prodml23__NumericalDualPorosityReservoirModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, const char *tag, int id, const prodml22__NumericalDualPorosityReservoirModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, const char *tag, int id, const prodml23__NumericalDualPorosityReservoirModel *a, const char *type) { if (!type) - type = "prodml22:NumericalDualPorosityReservoirModel"; + type = "prodml23:NumericalDualPorosityReservoirModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel), type ? type : "prodml22:NumericalDualPorosityReservoirModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel), type ? type : "prodml23:NumericalDualPorosityReservoirModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter) - { if (soap_element_empty(soap, "prodml22:InterporosityFlowParameter", 0, NULL)) + if (!a->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter) + { if (soap_element_empty(soap, "prodml23:InterporosityFlowParameter", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", -1, &a->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + else if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", -1, &a->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) return soap->error; - if (!a->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio) - { if (soap_element_empty(soap, "prodml22:StorativityRatio", 0, NULL)) + if (!a->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio) + { if (soap_element_empty(soap, "prodml23:StorativityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", -1, &a->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio, "prodml22:StorativityRatio")) + else if (soap_out_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", -1, &a->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio, "prodml23:StorativityRatio")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, "prodml22:InternalFaultSubModel", -1, &a->prodml22__NumericalDualPorosityReservoirModel::InternalFaultSubModel, "prodml22:InternalFaultSubModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, "prodml23:InternalFaultSubModel", -1, &a->prodml23__NumericalDualPorosityReservoirModel::InternalFaultSubModel, "prodml23:InternalFaultSubModel")) return soap->error; - if (!a->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel) - { if (soap_element_empty(soap, "prodml22:DistributedParametersSubModel", 0, NULL)) + if (!a->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel) + { if (soap_element_empty(soap, "prodml23:DistributedParametersSubModel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistributedParametersSubModel(soap, "prodml22:DistributedParametersSubModel", -1, &a->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel, "prodml22:DistributedParametersSubModel")) + else if (soap_out_PointerToprodml23__DistributedParametersSubModel(soap, "prodml23:DistributedParametersSubModel", -1, &a->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel, "prodml23:DistributedParametersSubModel")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, "prodml22:ReservoirZoneSubModel", -1, &a->prodml22__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel, "prodml22:ReservoirZoneSubModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, "prodml23:ReservoirZoneSubModel", -1, &a->prodml23__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel, "prodml23:ReservoirZoneSubModel")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NumericalDualPorosityReservoirModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumericalDualPorosityReservoirModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NumericalDualPorosityReservoirModel(soap, tag, this, type); + return soap_in_prodml23__NumericalDualPorosityReservoirModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, const char *tag, prodml22__NumericalDualPorosityReservoirModel *a, const char *type) +SOAP_FMAC3 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, const char *tag, prodml23__NumericalDualPorosityReservoirModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NumericalDualPorosityReservoirModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel, sizeof(prodml22__NumericalDualPorosityReservoirModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NumericalDualPorosityReservoirModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel, sizeof(prodml23__NumericalDualPorosityReservoirModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NumericalDualPorosityReservoirModel *)a->soap_in(soap, tag, type); + return (prodml23__NumericalDualPorosityReservoirModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -194121,113 +194116,113 @@ SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InterporosityFlowParameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", &a->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + { if (soap_in_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", &a->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) { soap_flag_InterporosityFlowParameter1--; continue; } } if (soap_flag_StorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", &a->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio, "prodml22:StorativityRatio")) + { if (soap_in_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", &a->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio, "prodml23:StorativityRatio")) { soap_flag_StorativityRatio1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, "prodml22:InternalFaultSubModel", &a->prodml22__NumericalDualPorosityReservoirModel::InternalFaultSubModel, "prodml22:InternalFaultSubModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, "prodml23:InternalFaultSubModel", &a->prodml23__NumericalDualPorosityReservoirModel::InternalFaultSubModel, "prodml23:InternalFaultSubModel")) continue; } if (soap_flag_DistributedParametersSubModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistributedParametersSubModel(soap, "prodml22:DistributedParametersSubModel", &a->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel, "prodml22:DistributedParametersSubModel")) + { if (soap_in_PointerToprodml23__DistributedParametersSubModel(soap, "prodml23:DistributedParametersSubModel", &a->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel, "prodml23:DistributedParametersSubModel")) { soap_flag_DistributedParametersSubModel1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, "prodml22:ReservoirZoneSubModel", &a->prodml22__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel, "prodml22:ReservoirZoneSubModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, "prodml23:ReservoirZoneSubModel", &a->prodml23__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel, "prodml23:ReservoirZoneSubModel")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -194239,7 +194234,7 @@ SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_pr } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter || !a->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio || !a->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter || !a->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio || !a->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -194249,35 +194244,35 @@ SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_pr return NULL; } else - { a = (prodml22__NumericalDualPorosityReservoirModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel, sizeof(prodml22__NumericalDualPorosityReservoirModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NumericalDualPorosityReservoirModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel, sizeof(prodml23__NumericalDualPorosityReservoirModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NumericalDualPorosityReservoirModel *p; - size_t k = sizeof(prodml22__NumericalDualPorosityReservoirModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel, n, gsoap_eml2_3_fdelete); + prodml23__NumericalDualPorosityReservoirModel *p; + size_t k = sizeof(prodml23__NumericalDualPorosityReservoirModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NumericalDualPorosityReservoirModel); + { p = SOAP_NEW(soap, prodml23__NumericalDualPorosityReservoirModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NumericalDualPorosityReservoirModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NumericalDualPorosityReservoirModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NumericalDualPorosityReservoirModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NumericalDualPorosityReservoirModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -194287,92 +194282,92 @@ SOAP_FMAC1 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_insta return p; } -int prodml22__NumericalDualPorosityReservoirModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NumericalDualPorosityReservoirModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NumericalDualPorosityReservoirModel(soap, tag ? tag : "prodml22:NumericalDualPorosityReservoirModel", -2, this, type)) + if (soap_out_prodml23__NumericalDualPorosityReservoirModel(soap, tag ? tag : "prodml23:NumericalDualPorosityReservoirModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NumericalDualPorosityReservoirModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumericalDualPorosityReservoirModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NumericalDualPorosityReservoirModel(soap, this, tag, type); + return soap_get_prodml23__NumericalDualPorosityReservoirModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_get_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, prodml22__NumericalDualPorosityReservoirModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_get_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, prodml23__NumericalDualPorosityReservoirModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NumericalDualPorosityReservoirModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__NumericalDualPorosityReservoirModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NumericalBoundaryModel::soap_default(struct soap *soap) +void prodml23__NumericalBoundaryModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__NumericalBoundaryModel::DrainageAreaMeasured = NULL; - this->prodml22__NumericalBoundaryModel::PoreVolumeMeasured = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap, &this->prodml22__NumericalBoundaryModel::SingleBoundarySubModel); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__NumericalBoundaryModel::DrainageAreaMeasured = NULL; + this->prodml23__NumericalBoundaryModel::PoreVolumeMeasured = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap, &this->prodml23__NumericalBoundaryModel::SingleBoundarySubModel); } -void prodml22__NumericalBoundaryModel::soap_serialize(struct soap *soap) const +void prodml23__NumericalBoundaryModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DrainageAreaMeasured(soap, &this->prodml22__NumericalBoundaryModel::DrainageAreaMeasured); - soap_serialize_PointerToprodml22__PoreVolumeMeasured(soap, &this->prodml22__NumericalBoundaryModel::PoreVolumeMeasured); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap, &this->prodml22__NumericalBoundaryModel::SingleBoundarySubModel); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DrainageAreaMeasured(soap, &this->prodml23__NumericalBoundaryModel::DrainageAreaMeasured); + soap_serialize_PointerToprodml23__PoreVolumeMeasured(soap, &this->prodml23__NumericalBoundaryModel::PoreVolumeMeasured); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap, &this->prodml23__NumericalBoundaryModel::SingleBoundarySubModel); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__NumericalBoundaryModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NumericalBoundaryModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NumericalBoundaryModel(soap, tag, id, this, type); + return soap_out_prodml23__NumericalBoundaryModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumericalBoundaryModel(struct soap *soap, const char *tag, int id, const prodml22__NumericalBoundaryModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumericalBoundaryModel(struct soap *soap, const char *tag, int id, const prodml23__NumericalBoundaryModel *a, const char *type) { if (!type) - type = "prodml22:NumericalBoundaryModel"; + type = "prodml23:NumericalBoundaryModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel), type ? type : "prodml22:NumericalBoundaryModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel), type ? type : "prodml23:NumericalBoundaryModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__DrainageAreaMeasured(soap, "prodml22:DrainageAreaMeasured", -1, &a->prodml22__NumericalBoundaryModel::DrainageAreaMeasured, "prodml22:DrainageAreaMeasured")) + if (soap_out_PointerToprodml23__DrainageAreaMeasured(soap, "prodml23:DrainageAreaMeasured", -1, &a->prodml23__NumericalBoundaryModel::DrainageAreaMeasured, "prodml23:DrainageAreaMeasured")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeMeasured(soap, "prodml22:PoreVolumeMeasured", -1, &a->prodml22__NumericalBoundaryModel::PoreVolumeMeasured, "prodml22:PoreVolumeMeasured")) + if (soap_out_PointerToprodml23__PoreVolumeMeasured(soap, "prodml23:PoreVolumeMeasured", -1, &a->prodml23__NumericalBoundaryModel::PoreVolumeMeasured, "prodml23:PoreVolumeMeasured")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap, "prodml22:SingleBoundarySubModel", -1, &a->prodml22__NumericalBoundaryModel::SingleBoundarySubModel, "prodml22:SingleBoundarySubModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap, "prodml23:SingleBoundarySubModel", -1, &a->prodml23__NumericalBoundaryModel::SingleBoundarySubModel, "prodml23:SingleBoundarySubModel")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NumericalBoundaryModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumericalBoundaryModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NumericalBoundaryModel(soap, tag, this, type); + return soap_in_prodml23__NumericalBoundaryModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NumericalBoundaryModel * SOAP_FMAC4 soap_in_prodml22__NumericalBoundaryModel(struct soap *soap, const char *tag, prodml22__NumericalBoundaryModel *a, const char *type) +SOAP_FMAC3 prodml23__NumericalBoundaryModel * SOAP_FMAC4 soap_in_prodml23__NumericalBoundaryModel(struct soap *soap, const char *tag, prodml23__NumericalBoundaryModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NumericalBoundaryModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel, sizeof(prodml22__NumericalBoundaryModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NumericalBoundaryModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel, sizeof(prodml23__NumericalBoundaryModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NumericalBoundaryModel *)a->soap_in(soap, tag, type); + return (prodml23__NumericalBoundaryModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -194387,43 +194382,43 @@ SOAP_FMAC3 prodml22__NumericalBoundaryModel * SOAP_FMAC4 soap_in_prodml22__Numer for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_DrainageAreaMeasured1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DrainageAreaMeasured(soap, "prodml22:DrainageAreaMeasured", &a->prodml22__NumericalBoundaryModel::DrainageAreaMeasured, "prodml22:DrainageAreaMeasured")) + { if (soap_in_PointerToprodml23__DrainageAreaMeasured(soap, "prodml23:DrainageAreaMeasured", &a->prodml23__NumericalBoundaryModel::DrainageAreaMeasured, "prodml23:DrainageAreaMeasured")) { soap_flag_DrainageAreaMeasured1--; continue; } } if (soap_flag_PoreVolumeMeasured1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeMeasured(soap, "prodml22:PoreVolumeMeasured", &a->prodml22__NumericalBoundaryModel::PoreVolumeMeasured, "prodml22:PoreVolumeMeasured")) + { if (soap_in_PointerToprodml23__PoreVolumeMeasured(soap, "prodml23:PoreVolumeMeasured", &a->prodml23__NumericalBoundaryModel::PoreVolumeMeasured, "prodml23:PoreVolumeMeasured")) { soap_flag_PoreVolumeMeasured1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap, "prodml22:SingleBoundarySubModel", &a->prodml22__NumericalBoundaryModel::SingleBoundarySubModel, "prodml22:SingleBoundarySubModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap, "prodml23:SingleBoundarySubModel", &a->prodml23__NumericalBoundaryModel::SingleBoundarySubModel, "prodml23:SingleBoundarySubModel")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -194437,35 +194432,35 @@ SOAP_FMAC3 prodml22__NumericalBoundaryModel * SOAP_FMAC4 soap_in_prodml22__Numer return NULL; } else - { a = (prodml22__NumericalBoundaryModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel, sizeof(prodml22__NumericalBoundaryModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NumericalBoundaryModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel, sizeof(prodml23__NumericalBoundaryModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalBoundaryModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalBoundaryModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NumericalBoundaryModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NumericalBoundaryModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NumericalBoundaryModel *p; - size_t k = sizeof(prodml22__NumericalBoundaryModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel, n, gsoap_eml2_3_fdelete); + prodml23__NumericalBoundaryModel *p; + size_t k = sizeof(prodml23__NumericalBoundaryModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NumericalBoundaryModel); + { p = SOAP_NEW(soap, prodml23__NumericalBoundaryModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NumericalBoundaryModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NumericalBoundaryModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NumericalBoundaryModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NumericalBoundaryModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -194475,96 +194470,96 @@ SOAP_FMAC1 prodml22__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__NumericalBoundaryModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NumericalBoundaryModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NumericalBoundaryModel(soap, tag ? tag : "prodml22:NumericalBoundaryModel", -2, this, type)) + if (soap_out_prodml23__NumericalBoundaryModel(soap, tag ? tag : "prodml23:NumericalBoundaryModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NumericalBoundaryModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NumericalBoundaryModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NumericalBoundaryModel(soap, this, tag, type); + return soap_get_prodml23__NumericalBoundaryModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NumericalBoundaryModel * SOAP_FMAC4 soap_get_prodml22__NumericalBoundaryModel(struct soap *soap, prodml22__NumericalBoundaryModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NumericalBoundaryModel * SOAP_FMAC4 soap_get_prodml23__NumericalBoundaryModel(struct soap *soap, prodml23__NumericalBoundaryModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NumericalBoundaryModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__NumericalBoundaryModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NearWellboreBaseModel::soap_default(struct soap *soap) +void prodml23__NearWellboreBaseModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractModelSection::soap_default(soap); - this->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = NULL; - this->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = NULL; - this->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = NULL; - this->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = NULL; + this->prodml23__AbstractModelSection::soap_default(soap); + this->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = NULL; + this->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = NULL; + this->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = NULL; + this->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = NULL; } -void prodml22__NearWellboreBaseModel::soap_serialize(struct soap *soap) const +void prodml23__NearWellboreBaseModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SkinRelativeToTotalThickness(soap, &this->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__RateDependentSkinFactor(soap, &this->prodml22__NearWellboreBaseModel::RateDependentSkinFactor); - soap_serialize_PointerToprodml22__DeltaPressureTotalSkin(soap, &this->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin); - soap_serialize_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, &this->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown); - this->prodml22__AbstractModelSection::soap_serialize(soap); + soap_serialize_PointerToprodml23__SkinRelativeToTotalThickness(soap, &this->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__RateDependentSkinFactor(soap, &this->prodml23__NearWellboreBaseModel::RateDependentSkinFactor); + soap_serialize_PointerToprodml23__DeltaPressureTotalSkin(soap, &this->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin); + soap_serialize_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, &this->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown); + this->prodml23__AbstractModelSection::soap_serialize(soap); #endif } -int prodml22__NearWellboreBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NearWellboreBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NearWellboreBaseModel(soap, tag, id, this, type); + return soap_out_prodml23__NearWellboreBaseModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NearWellboreBaseModel(struct soap *soap, const char *tag, int id, const prodml22__NearWellboreBaseModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NearWellboreBaseModel(struct soap *soap, const char *tag, int id, const prodml23__NearWellboreBaseModel *a, const char *type) { if (!type) - type = "prodml22:NearWellboreBaseModel"; + type = "prodml23:NearWellboreBaseModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel), type ? type : "prodml22:NearWellboreBaseModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel), type ? type : "prodml23:NearWellboreBaseModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NearWellboreBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NearWellboreBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NearWellboreBaseModel(soap, tag, this, type); + return soap_in_prodml23__NearWellboreBaseModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__NearWellboreBaseModel(struct soap *soap, const char *tag, prodml22__NearWellboreBaseModel *a, const char *type) +SOAP_FMAC3 prodml23__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml23__NearWellboreBaseModel(struct soap *soap, const char *tag, prodml23__NearWellboreBaseModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NearWellboreBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel, sizeof(prodml22__NearWellboreBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NearWellboreBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel, sizeof(prodml23__NearWellboreBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NearWellboreBaseModel *)a->soap_in(soap, tag, type); + return (prodml23__NearWellboreBaseModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -194579,37 +194574,37 @@ SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__NearWe for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment2--; continue; } } if (soap_flag_Method2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method2--; continue; } } if (soap_flag_SkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness1--; continue; } } if (soap_flag_RateDependentSkinFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor1--; continue; } } if (soap_flag_DeltaPressureTotalSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin1--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown1--; continue; } @@ -194623,7 +194618,7 @@ SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__NearWe } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness)) { soap->error = SOAP_OCCURS; return NULL; } @@ -194633,65 +194628,65 @@ SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__NearWe return NULL; } else - { a = (prodml22__NearWellboreBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel, sizeof(prodml22__NearWellboreBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NearWellboreBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel, sizeof(prodml23__NearWellboreBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__NearWellboreBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__NearWellboreBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NearWellboreBaseModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NearWellboreBaseModel(%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, "prodml22:CustomNearWellboreModel")) - return soap_instantiate_prodml22__CustomNearWellboreModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FiniteRadiusModel")) - return soap_instantiate_prodml22__FiniteRadiusModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedFiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedFiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedHorizontalFiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedHorizontalInfiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedHorizontalUniformFluxModel")) - return soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedInfiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedInfiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedUniformFluxModel")) - return soap_instantiate_prodml22__FracturedUniformFluxModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellbore2LayerModel")) - return soap_instantiate_prodml22__HorizontalWellbore2LayerModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellboreModel")) - return soap_instantiate_prodml22__HorizontalWellboreModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellboreMultipleEqualFracturedModel")) - return soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellboreMultipleVariableFracturedModel")) - return soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PartiallyPenetratingModel")) - return soap_instantiate_prodml22__PartiallyPenetratingModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SlantedFullyPenetratingModel")) - return soap_instantiate_prodml22__SlantedFullyPenetratingModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SlantedPartiallyPenetratingModel")) - return soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(soap, n, NULL, NULL, size); - prodml22__NearWellboreBaseModel *p; - size_t k = sizeof(prodml22__NearWellboreBaseModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomNearWellboreModel")) + return soap_instantiate_prodml23__CustomNearWellboreModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FiniteRadiusModel")) + return soap_instantiate_prodml23__FiniteRadiusModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedFiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedFiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedHorizontalFiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedHorizontalInfiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedHorizontalUniformFluxModel")) + return soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedInfiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedInfiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedUniformFluxModel")) + return soap_instantiate_prodml23__FracturedUniformFluxModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellbore2LayerModel")) + return soap_instantiate_prodml23__HorizontalWellbore2LayerModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellboreModel")) + return soap_instantiate_prodml23__HorizontalWellboreModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellboreMultipleEqualFracturedModel")) + return soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellboreMultipleVariableFracturedModel")) + return soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PartiallyPenetratingModel")) + return soap_instantiate_prodml23__PartiallyPenetratingModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SlantedFullyPenetratingModel")) + return soap_instantiate_prodml23__SlantedFullyPenetratingModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SlantedPartiallyPenetratingModel")) + return soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(soap, n, NULL, NULL, size); + prodml23__NearWellboreBaseModel *p; + size_t k = sizeof(prodml23__NearWellboreBaseModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NearWellboreBaseModel); + { p = SOAP_NEW(soap, prodml23__NearWellboreBaseModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NearWellboreBaseModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NearWellboreBaseModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NearWellboreBaseModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NearWellboreBaseModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -194701,156 +194696,156 @@ SOAP_FMAC1 prodml22__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__NearWellboreBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NearWellboreBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NearWellboreBaseModel(soap, tag ? tag : "prodml22:NearWellboreBaseModel", -2, this, type)) + if (soap_out_prodml23__NearWellboreBaseModel(soap, tag ? tag : "prodml23:NearWellboreBaseModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NearWellboreBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NearWellboreBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NearWellboreBaseModel(soap, this, tag, type); + return soap_get_prodml23__NearWellboreBaseModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_get_prodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NearWellboreBaseModel * SOAP_FMAC4 soap_get_prodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NearWellboreBaseModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__NearWellboreBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LinearCompositeWithLeakyFaultModel::soap_default(struct soap *soap) +void prodml23__LinearCompositeWithLeakyFaultModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio = NULL; - this->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio = NULL; - this->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface = NULL; - this->prodml22__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront = NULL; - this->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio = NULL; + this->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio = NULL; + this->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface = NULL; + this->prodml23__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront = NULL; + this->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = NULL; } -void prodml22__LinearCompositeWithLeakyFaultModel::soap_serialize(struct soap *soap) const +void prodml23__LinearCompositeWithLeakyFaultModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, &this->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio); - soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio); - soap_serialize_PointerToprodml22__DistanceToMobilityInterface(soap, &this->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface); - soap_serialize_PointerToprodml22__OrientationOfLinearFront(soap, &this->prodml22__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront); - soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, &this->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio); + soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio); + soap_serialize_PointerToprodml23__DistanceToMobilityInterface(soap, &this->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface); + soap_serialize_PointerToprodml23__OrientationOfLinearFront(soap, &this->prodml23__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront); + soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__LinearCompositeWithLeakyFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LinearCompositeWithLeakyFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LinearCompositeWithLeakyFaultModel(soap, tag, id, this, type); + return soap_out_prodml23__LinearCompositeWithLeakyFaultModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *tag, int id, const prodml22__LinearCompositeWithLeakyFaultModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *tag, int id, const prodml23__LinearCompositeWithLeakyFaultModel *a, const char *type) { if (!type) - type = "prodml22:LinearCompositeWithLeakyFaultModel"; + type = "prodml23:LinearCompositeWithLeakyFaultModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel), type ? type : "prodml22:LinearCompositeWithLeakyFaultModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel), type ? type : "prodml23:LinearCompositeWithLeakyFaultModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneMobilityRatio", 0, NULL)) + if (!a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneMobilityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", -1, &a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", -1, &a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) return soap->error; - if (!a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", 0, NULL)) + if (!a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) return soap->error; - if (!a->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface) - { if (soap_element_empty(soap, "prodml22:DistanceToMobilityInterface", 0, NULL)) + if (!a->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface) + { if (soap_element_empty(soap, "prodml23:DistanceToMobilityInterface", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", -1, &a->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + else if (soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", -1, &a->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", -1, &a->prodml22__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + if (soap_out_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", -1, &a->prodml23__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) return soap->error; - if (!a->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront) - { if (soap_element_empty(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", 0, NULL)) + if (!a->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront) + { if (soap_element_empty(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", -1, &a->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + else if (soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", -1, &a->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LinearCompositeWithLeakyFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeWithLeakyFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LinearCompositeWithLeakyFaultModel(soap, tag, this, type); + return soap_in_prodml23__LinearCompositeWithLeakyFaultModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *tag, prodml22__LinearCompositeWithLeakyFaultModel *a, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *tag, prodml23__LinearCompositeWithLeakyFaultModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LinearCompositeWithLeakyFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel, sizeof(prodml22__LinearCompositeWithLeakyFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LinearCompositeWithLeakyFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel, sizeof(prodml23__LinearCompositeWithLeakyFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LinearCompositeWithLeakyFaultModel *)a->soap_in(soap, tag, type); + return (prodml23__LinearCompositeWithLeakyFaultModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -194878,115 +194873,115 @@ SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InnerToOuterZoneMobilityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", &a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", &a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) { soap_flag_InnerToOuterZoneMobilityRatio1--; continue; } } if (soap_flag_InnerToOuterZoneDiffusivityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", &a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", &a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) { soap_flag_InnerToOuterZoneDiffusivityRatio1--; continue; } } if (soap_flag_DistanceToMobilityInterface1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", &a->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + { if (soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", &a->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) { soap_flag_DistanceToMobilityInterface1--; continue; } } if (soap_flag_OrientationOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", &a->prodml22__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + { if (soap_in_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", &a->prodml23__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) { soap_flag_OrientationOfLinearFront1--; continue; } } if (soap_flag_TransmissibilityReductionFactorOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", &a->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + { if (soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", &a->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) { soap_flag_TransmissibilityReductionFactorOfLinearFront1--; continue; } @@ -195000,7 +194995,7 @@ SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio || !a->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio || !a->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface || !a->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio || !a->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio || !a->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface || !a->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront)) { soap->error = SOAP_OCCURS; return NULL; } @@ -195010,35 +195005,35 @@ SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__LinearCompositeWithLeakyFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel, sizeof(prodml22__LinearCompositeWithLeakyFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LinearCompositeWithLeakyFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel, sizeof(prodml23__LinearCompositeWithLeakyFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LinearCompositeWithLeakyFaultModel *p; - size_t k = sizeof(prodml22__LinearCompositeWithLeakyFaultModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel, n, gsoap_eml2_3_fdelete); + prodml23__LinearCompositeWithLeakyFaultModel *p; + size_t k = sizeof(prodml23__LinearCompositeWithLeakyFaultModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LinearCompositeWithLeakyFaultModel); + { p = SOAP_NEW(soap, prodml23__LinearCompositeWithLeakyFaultModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LinearCompositeWithLeakyFaultModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LinearCompositeWithLeakyFaultModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LinearCompositeWithLeakyFaultModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LinearCompositeWithLeakyFaultModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -195048,164 +195043,164 @@ SOAP_FMAC1 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instan return p; } -int prodml22__LinearCompositeWithLeakyFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LinearCompositeWithLeakyFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LinearCompositeWithLeakyFaultModel(soap, tag ? tag : "prodml22:LinearCompositeWithLeakyFaultModel", -2, this, type)) + if (soap_out_prodml23__LinearCompositeWithLeakyFaultModel(soap, tag ? tag : "prodml23:LinearCompositeWithLeakyFaultModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LinearCompositeWithLeakyFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeWithLeakyFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LinearCompositeWithLeakyFaultModel(soap, this, tag, type); + return soap_get_prodml23__LinearCompositeWithLeakyFaultModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithLeakyFaultModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithLeakyFaultModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LinearCompositeWithLeakyFaultModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__LinearCompositeWithLeakyFaultModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LinearCompositeWithConductiveFaultModel::soap_default(struct soap *soap) +void prodml23__LinearCompositeWithConductiveFaultModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio = NULL; - this->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio = NULL; - this->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface = NULL; - this->prodml22__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront = NULL; - this->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront = NULL; - this->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio = NULL; + this->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio = NULL; + this->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface = NULL; + this->prodml23__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront = NULL; + this->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront = NULL; + this->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity = NULL; } -void prodml22__LinearCompositeWithConductiveFaultModel::soap_serialize(struct soap *soap) const +void prodml23__LinearCompositeWithConductiveFaultModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, &this->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio); - soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio); - soap_serialize_PointerToprodml22__DistanceToMobilityInterface(soap, &this->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface); - soap_serialize_PointerToprodml22__OrientationOfLinearFront(soap, &this->prodml22__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront); - soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront); - soap_serialize_PointerToprodml22__FaultConductivity(soap, &this->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, &this->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio); + soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio); + soap_serialize_PointerToprodml23__DistanceToMobilityInterface(soap, &this->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface); + soap_serialize_PointerToprodml23__OrientationOfLinearFront(soap, &this->prodml23__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront); + soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront); + soap_serialize_PointerToprodml23__FaultConductivity(soap, &this->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__LinearCompositeWithConductiveFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LinearCompositeWithConductiveFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LinearCompositeWithConductiveFaultModel(soap, tag, id, this, type); + return soap_out_prodml23__LinearCompositeWithConductiveFaultModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *tag, int id, const prodml22__LinearCompositeWithConductiveFaultModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *tag, int id, const prodml23__LinearCompositeWithConductiveFaultModel *a, const char *type) { if (!type) - type = "prodml22:LinearCompositeWithConductiveFaultModel"; + type = "prodml23:LinearCompositeWithConductiveFaultModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel), type ? type : "prodml22:LinearCompositeWithConductiveFaultModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel), type ? type : "prodml23:LinearCompositeWithConductiveFaultModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneMobilityRatio", 0, NULL)) + if (!a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneMobilityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", -1, &a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", -1, &a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) return soap->error; - if (!a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", 0, NULL)) + if (!a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) return soap->error; - if (!a->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface) - { if (soap_element_empty(soap, "prodml22:DistanceToMobilityInterface", 0, NULL)) + if (!a->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface) + { if (soap_element_empty(soap, "prodml23:DistanceToMobilityInterface", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", -1, &a->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + else if (soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", -1, &a->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", -1, &a->prodml22__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + if (soap_out_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", -1, &a->prodml23__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) return soap->error; - if (!a->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront) - { if (soap_element_empty(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", 0, NULL)) + if (!a->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront) + { if (soap_element_empty(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", -1, &a->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + else if (soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", -1, &a->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) return soap->error; - if (!a->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity) - { if (soap_element_empty(soap, "prodml22:FaultConductivity", 0, NULL)) + if (!a->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity) + { if (soap_element_empty(soap, "prodml23:FaultConductivity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FaultConductivity(soap, "prodml22:FaultConductivity", -1, &a->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity, "prodml22:FaultConductivity")) + else if (soap_out_PointerToprodml23__FaultConductivity(soap, "prodml23:FaultConductivity", -1, &a->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity, "prodml23:FaultConductivity")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LinearCompositeWithConductiveFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeWithConductiveFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LinearCompositeWithConductiveFaultModel(soap, tag, this, type); + return soap_in_prodml23__LinearCompositeWithConductiveFaultModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *tag, prodml22__LinearCompositeWithConductiveFaultModel *a, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *tag, prodml23__LinearCompositeWithConductiveFaultModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LinearCompositeWithConductiveFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel, sizeof(prodml22__LinearCompositeWithConductiveFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LinearCompositeWithConductiveFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel, sizeof(prodml23__LinearCompositeWithConductiveFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LinearCompositeWithConductiveFaultModel *)a->soap_in(soap, tag, type); + return (prodml23__LinearCompositeWithConductiveFaultModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -195234,121 +195229,121 @@ SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_i for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InnerToOuterZoneMobilityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", &a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", &a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) { soap_flag_InnerToOuterZoneMobilityRatio1--; continue; } } if (soap_flag_InnerToOuterZoneDiffusivityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", &a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", &a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) { soap_flag_InnerToOuterZoneDiffusivityRatio1--; continue; } } if (soap_flag_DistanceToMobilityInterface1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", &a->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + { if (soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", &a->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) { soap_flag_DistanceToMobilityInterface1--; continue; } } if (soap_flag_OrientationOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", &a->prodml22__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + { if (soap_in_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", &a->prodml23__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) { soap_flag_OrientationOfLinearFront1--; continue; } } if (soap_flag_TransmissibilityReductionFactorOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", &a->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + { if (soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", &a->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) { soap_flag_TransmissibilityReductionFactorOfLinearFront1--; continue; } } if (soap_flag_FaultConductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FaultConductivity(soap, "prodml22:FaultConductivity", &a->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity, "prodml22:FaultConductivity")) + { if (soap_in_PointerToprodml23__FaultConductivity(soap, "prodml23:FaultConductivity", &a->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity, "prodml23:FaultConductivity")) { soap_flag_FaultConductivity1--; continue; } @@ -195362,7 +195357,7 @@ SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_i } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio || !a->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio || !a->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface || !a->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront || !a->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio || !a->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio || !a->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface || !a->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront || !a->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity)) { soap->error = SOAP_OCCURS; return NULL; } @@ -195372,35 +195367,35 @@ SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_i return NULL; } else - { a = (prodml22__LinearCompositeWithConductiveFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel, sizeof(prodml22__LinearCompositeWithConductiveFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LinearCompositeWithConductiveFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel, sizeof(prodml23__LinearCompositeWithConductiveFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LinearCompositeWithConductiveFaultModel *p; - size_t k = sizeof(prodml22__LinearCompositeWithConductiveFaultModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel, n, gsoap_eml2_3_fdelete); + prodml23__LinearCompositeWithConductiveFaultModel *p; + size_t k = sizeof(prodml23__LinearCompositeWithConductiveFaultModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LinearCompositeWithConductiveFaultModel); + { p = SOAP_NEW(soap, prodml23__LinearCompositeWithConductiveFaultModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LinearCompositeWithConductiveFaultModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LinearCompositeWithConductiveFaultModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LinearCompositeWithConductiveFaultModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LinearCompositeWithConductiveFaultModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -195410,148 +195405,148 @@ SOAP_FMAC1 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_i return p; } -int prodml22__LinearCompositeWithConductiveFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LinearCompositeWithConductiveFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LinearCompositeWithConductiveFaultModel(soap, tag ? tag : "prodml22:LinearCompositeWithConductiveFaultModel", -2, this, type)) + if (soap_out_prodml23__LinearCompositeWithConductiveFaultModel(soap, tag ? tag : "prodml23:LinearCompositeWithConductiveFaultModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LinearCompositeWithConductiveFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeWithConductiveFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LinearCompositeWithConductiveFaultModel(soap, this, tag, type); + return soap_get_prodml23__LinearCompositeWithConductiveFaultModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml22__LinearCompositeWithConductiveFaultModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml23__LinearCompositeWithConductiveFaultModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LinearCompositeWithConductiveFaultModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__LinearCompositeWithConductiveFaultModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_default(struct soap *soap) +void prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface = NULL; - this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront = NULL; - this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = NULL; - this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface = NULL; + this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront = NULL; + this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = NULL; + this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness = NULL; } -void prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_serialize(struct soap *soap) const +void prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DistanceToMobilityInterface(soap, &this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface); - soap_serialize_PointerToprodml22__OrientationOfLinearFront(soap, &this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront); - soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront); - soap_serialize_PointerToprodml22__Region2Thickness(soap, &this->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DistanceToMobilityInterface(soap, &this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface); + soap_serialize_PointerToprodml23__OrientationOfLinearFront(soap, &this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront); + soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront); + soap_serialize_PointerToprodml23__Region2Thickness(soap, &this->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, id, this, type); + return soap_out_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *tag, int id, const prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *tag, int id, const prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *a, const char *type) { if (!type) - type = "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel"; + type = "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel), type ? type : "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel), type ? type : "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface) - { if (soap_element_empty(soap, "prodml22:DistanceToMobilityInterface", 0, NULL)) + if (!a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface) + { if (soap_element_empty(soap, "prodml23:DistanceToMobilityInterface", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", -1, &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + else if (soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", -1, &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", -1, &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + if (soap_out_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", -1, &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) return soap->error; - if (!a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront) - { if (soap_element_empty(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", 0, NULL)) + if (!a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront) + { if (soap_element_empty(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", -1, &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + else if (soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", -1, &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) return soap->error; - if (!a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness) - { if (soap_element_empty(soap, "prodml22:Region2Thickness", 0, NULL)) + if (!a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness) + { if (soap_element_empty(soap, "prodml23:Region2Thickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Region2Thickness(soap, "prodml22:Region2Thickness", -1, &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness, "prodml22:Region2Thickness")) + else if (soap_out_PointerToprodml23__Region2Thickness(soap, "prodml23:Region2Thickness", -1, &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness, "prodml23:Region2Thickness")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, this, type); + return soap_in_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *tag, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *a, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *tag, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, sizeof(prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, sizeof(prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)a->soap_in(soap, tag, type); + return (prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -195578,109 +195573,109 @@ SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_DistanceToMobilityInterface1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + { if (soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) { soap_flag_DistanceToMobilityInterface1--; continue; } } if (soap_flag_OrientationOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + { if (soap_in_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) { soap_flag_OrientationOfLinearFront1--; continue; } } if (soap_flag_TransmissibilityReductionFactorOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + { if (soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) { soap_flag_TransmissibilityReductionFactorOfLinearFront1--; continue; } } if (soap_flag_Region2Thickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Region2Thickness(soap, "prodml22:Region2Thickness", &a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness, "prodml22:Region2Thickness")) + { if (soap_in_PointerToprodml23__Region2Thickness(soap, "prodml23:Region2Thickness", &a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness, "prodml23:Region2Thickness")) { soap_flag_Region2Thickness1--; continue; } @@ -195694,7 +195689,7 @@ SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface || !a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront || !a->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface || !a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront || !a->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness)) { soap->error = SOAP_OCCURS; return NULL; } @@ -195704,35 +195699,35 @@ SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * return NULL; } else - { a = (prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, sizeof(prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, sizeof(prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p; - size_t k = sizeof(prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, n, gsoap_eml2_3_fdelete); + prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p; + size_t k = sizeof(prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); + { p = SOAP_NEW(soap, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -195742,148 +195737,148 @@ SOAP_FMAC1 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * return p; } -int prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag ? tag : "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", -2, this, type)) + if (soap_out_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag ? tag : "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, this, tag, type); + return soap_get_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LinearCompositeModel::soap_default(struct soap *soap) +void prodml23__LinearCompositeModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio = NULL; - this->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio = NULL; - this->prodml22__LinearCompositeModel::DistanceToMobilityInterface = NULL; - this->prodml22__LinearCompositeModel::OrientationOfLinearFront = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio = NULL; + this->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio = NULL; + this->prodml23__LinearCompositeModel::DistanceToMobilityInterface = NULL; + this->prodml23__LinearCompositeModel::OrientationOfLinearFront = NULL; } -void prodml22__LinearCompositeModel::soap_serialize(struct soap *soap) const +void prodml23__LinearCompositeModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, &this->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio); - soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio); - soap_serialize_PointerToprodml22__DistanceToMobilityInterface(soap, &this->prodml22__LinearCompositeModel::DistanceToMobilityInterface); - soap_serialize_PointerToprodml22__OrientationOfLinearFront(soap, &this->prodml22__LinearCompositeModel::OrientationOfLinearFront); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, &this->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio); + soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, &this->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio); + soap_serialize_PointerToprodml23__DistanceToMobilityInterface(soap, &this->prodml23__LinearCompositeModel::DistanceToMobilityInterface); + soap_serialize_PointerToprodml23__OrientationOfLinearFront(soap, &this->prodml23__LinearCompositeModel::OrientationOfLinearFront); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__LinearCompositeModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LinearCompositeModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LinearCompositeModel(soap, tag, id, this, type); + return soap_out_prodml23__LinearCompositeModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeModel(struct soap *soap, const char *tag, int id, const prodml22__LinearCompositeModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeModel(struct soap *soap, const char *tag, int id, const prodml23__LinearCompositeModel *a, const char *type) { if (!type) - type = "prodml22:LinearCompositeModel"; + type = "prodml23:LinearCompositeModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel), type ? type : "prodml22:LinearCompositeModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel), type ? type : "prodml23:LinearCompositeModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneMobilityRatio", 0, NULL)) + if (!a->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneMobilityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", -1, &a->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", -1, &a->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) return soap->error; - if (!a->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio) - { if (soap_element_empty(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", 0, NULL)) + if (!a->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio) + { if (soap_element_empty(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + else if (soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", -1, &a->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) return soap->error; - if (!a->prodml22__LinearCompositeModel::DistanceToMobilityInterface) - { if (soap_element_empty(soap, "prodml22:DistanceToMobilityInterface", 0, NULL)) + if (!a->prodml23__LinearCompositeModel::DistanceToMobilityInterface) + { if (soap_element_empty(soap, "prodml23:DistanceToMobilityInterface", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", -1, &a->prodml22__LinearCompositeModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + else if (soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", -1, &a->prodml23__LinearCompositeModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", -1, &a->prodml22__LinearCompositeModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + if (soap_out_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", -1, &a->prodml23__LinearCompositeModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LinearCompositeModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LinearCompositeModel(soap, tag, this, type); + return soap_in_prodml23__LinearCompositeModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeModel(struct soap *soap, const char *tag, prodml22__LinearCompositeModel *a, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeModel(struct soap *soap, const char *tag, prodml23__LinearCompositeModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LinearCompositeModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel, sizeof(prodml22__LinearCompositeModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LinearCompositeModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel, sizeof(prodml23__LinearCompositeModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LinearCompositeModel *)a->soap_in(soap, tag, type); + return (prodml23__LinearCompositeModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -195910,109 +195905,109 @@ SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml22__LinearC for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InnerToOuterZoneMobilityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, "prodml22:InnerToOuterZoneMobilityRatio", &a->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio, "prodml22:InnerToOuterZoneMobilityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, "prodml23:InnerToOuterZoneMobilityRatio", &a->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio, "prodml23:InnerToOuterZoneMobilityRatio")) { soap_flag_InnerToOuterZoneMobilityRatio1--; continue; } } if (soap_flag_InnerToOuterZoneDiffusivityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", &a->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml22:InnerToOuterZoneDiffusivityRatio")) + { if (soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", &a->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio, "prodml23:InnerToOuterZoneDiffusivityRatio")) { soap_flag_InnerToOuterZoneDiffusivityRatio1--; continue; } } if (soap_flag_DistanceToMobilityInterface1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, "prodml22:DistanceToMobilityInterface", &a->prodml22__LinearCompositeModel::DistanceToMobilityInterface, "prodml22:DistanceToMobilityInterface")) + { if (soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, "prodml23:DistanceToMobilityInterface", &a->prodml23__LinearCompositeModel::DistanceToMobilityInterface, "prodml23:DistanceToMobilityInterface")) { soap_flag_DistanceToMobilityInterface1--; continue; } } if (soap_flag_OrientationOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfLinearFront(soap, "prodml22:OrientationOfLinearFront", &a->prodml22__LinearCompositeModel::OrientationOfLinearFront, "prodml22:OrientationOfLinearFront")) + { if (soap_in_PointerToprodml23__OrientationOfLinearFront(soap, "prodml23:OrientationOfLinearFront", &a->prodml23__LinearCompositeModel::OrientationOfLinearFront, "prodml23:OrientationOfLinearFront")) { soap_flag_OrientationOfLinearFront1--; continue; } @@ -196026,7 +196021,7 @@ SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml22__LinearC } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio || !a->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio || !a->prodml22__LinearCompositeModel::DistanceToMobilityInterface)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio || !a->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio || !a->prodml23__LinearCompositeModel::DistanceToMobilityInterface)) { soap->error = SOAP_OCCURS; return NULL; } @@ -196036,35 +196031,35 @@ SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml22__LinearC return NULL; } else - { a = (prodml22__LinearCompositeModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel, sizeof(prodml22__LinearCompositeModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LinearCompositeModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel, sizeof(prodml23__LinearCompositeModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LinearCompositeModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LinearCompositeModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LinearCompositeModel *p; - size_t k = sizeof(prodml22__LinearCompositeModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel, n, gsoap_eml2_3_fdelete); + prodml23__LinearCompositeModel *p; + size_t k = sizeof(prodml23__LinearCompositeModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LinearCompositeModel); + { p = SOAP_NEW(soap, prodml23__LinearCompositeModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LinearCompositeModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LinearCompositeModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LinearCompositeModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LinearCompositeModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -196074,80 +196069,80 @@ SOAP_FMAC1 prodml22__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__LinearCompositeModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LinearCompositeModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LinearCompositeModel(soap, tag ? tag : "prodml22:LinearCompositeModel", -2, this, type)) + if (soap_out_prodml23__LinearCompositeModel(soap, tag ? tag : "prodml23:LinearCompositeModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LinearCompositeModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LinearCompositeModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LinearCompositeModel(soap, this, tag, type); + return soap_get_prodml23__LinearCompositeModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeModel(struct soap *soap, prodml22__LinearCompositeModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LinearCompositeModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeModel(struct soap *soap, prodml23__LinearCompositeModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LinearCompositeModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__LinearCompositeModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InfiniteBoundaryModel::soap_default(struct soap *soap) +void prodml23__InfiniteBoundaryModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); + this->prodml23__BoundaryBaseModel::soap_default(soap); } -void prodml22__InfiniteBoundaryModel::soap_serialize(struct soap *soap) const +void prodml23__InfiniteBoundaryModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__InfiniteBoundaryModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InfiniteBoundaryModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InfiniteBoundaryModel(soap, tag, id, this, type); + return soap_out_prodml23__InfiniteBoundaryModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InfiniteBoundaryModel(struct soap *soap, const char *tag, int id, const prodml22__InfiniteBoundaryModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InfiniteBoundaryModel(struct soap *soap, const char *tag, int id, const prodml23__InfiniteBoundaryModel *a, const char *type) { if (!type) - type = "prodml22:InfiniteBoundaryModel"; + type = "prodml23:InfiniteBoundaryModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel), type ? type : "prodml22:InfiniteBoundaryModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel), type ? type : "prodml23:InfiniteBoundaryModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InfiniteBoundaryModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InfiniteBoundaryModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InfiniteBoundaryModel(soap, tag, this, type); + return soap_in_prodml23__InfiniteBoundaryModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InfiniteBoundaryModel * SOAP_FMAC4 soap_in_prodml22__InfiniteBoundaryModel(struct soap *soap, const char *tag, prodml22__InfiniteBoundaryModel *a, const char *type) +SOAP_FMAC3 prodml23__InfiniteBoundaryModel * SOAP_FMAC4 soap_in_prodml23__InfiniteBoundaryModel(struct soap *soap, const char *tag, prodml23__InfiniteBoundaryModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InfiniteBoundaryModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel, sizeof(prodml22__InfiniteBoundaryModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InfiniteBoundaryModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel, sizeof(prodml23__InfiniteBoundaryModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InfiniteBoundaryModel *)a->soap_in(soap, tag, type); + return (prodml23__InfiniteBoundaryModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -196160,25 +196155,25 @@ SOAP_FMAC3 prodml22__InfiniteBoundaryModel * SOAP_FMAC4 soap_in_prodml22__Infini for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } @@ -196194,35 +196189,35 @@ SOAP_FMAC3 prodml22__InfiniteBoundaryModel * SOAP_FMAC4 soap_in_prodml22__Infini return NULL; } else - { a = (prodml22__InfiniteBoundaryModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel, SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel, sizeof(prodml22__InfiniteBoundaryModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InfiniteBoundaryModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel, SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel, sizeof(prodml23__InfiniteBoundaryModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__InfiniteBoundaryModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__InfiniteBoundaryModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InfiniteBoundaryModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InfiniteBoundaryModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InfiniteBoundaryModel *p; - size_t k = sizeof(prodml22__InfiniteBoundaryModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel, n, gsoap_eml2_3_fdelete); + prodml23__InfiniteBoundaryModel *p; + size_t k = sizeof(prodml23__InfiniteBoundaryModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InfiniteBoundaryModel); + { p = SOAP_NEW(soap, prodml23__InfiniteBoundaryModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InfiniteBoundaryModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InfiniteBoundaryModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InfiniteBoundaryModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InfiniteBoundaryModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -196232,124 +196227,124 @@ SOAP_FMAC1 prodml22__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__InfiniteBoundaryModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InfiniteBoundaryModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InfiniteBoundaryModel(soap, tag ? tag : "prodml22:InfiniteBoundaryModel", -2, this, type)) + if (soap_out_prodml23__InfiniteBoundaryModel(soap, tag ? tag : "prodml23:InfiniteBoundaryModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InfiniteBoundaryModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InfiniteBoundaryModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InfiniteBoundaryModel(soap, this, tag, type); + return soap_get_prodml23__InfiniteBoundaryModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InfiniteBoundaryModel * SOAP_FMAC4 soap_get_prodml22__InfiniteBoundaryModel(struct soap *soap, prodml22__InfiniteBoundaryModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InfiniteBoundaryModel * SOAP_FMAC4 soap_get_prodml23__InfiniteBoundaryModel(struct soap *soap, prodml23__InfiniteBoundaryModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InfiniteBoundaryModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__InfiniteBoundaryModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HorizontalWellboreMultipleVariableFracturedModel::soap_default(struct soap *soap) +void prodml23__HorizontalWellboreMultipleVariableFracturedModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory = NULL; - this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing = NULL; - this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary = NULL; - this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel); + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory = NULL; + this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing = NULL; + this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary = NULL; + this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel); } -void prodml22__HorizontalWellboreMultipleVariableFracturedModel::soap_serialize(struct soap *soap) const +void prodml23__HorizontalWellboreMultipleVariableFracturedModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory); - soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing); - soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary); - soap_serialize_PointerToprodml22__NumberOfFractures(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap, &this->prodml22__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory); + soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing); + soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary); + soap_serialize_PointerToprodml23__NumberOfFractures(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap, &this->prodml23__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__HorizontalWellboreMultipleVariableFracturedModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HorizontalWellboreMultipleVariableFracturedModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, id, this, type); + return soap_out_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *tag, int id, const prodml22__HorizontalWellboreMultipleVariableFracturedModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *tag, int id, const prodml23__HorizontalWellboreMultipleVariableFracturedModel *a, const char *type) { if (!type) - type = "prodml22:HorizontalWellboreMultipleVariableFracturedModel"; + type = "prodml23:HorizontalWellboreMultipleVariableFracturedModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel), type ? type : "prodml22:HorizontalWellboreMultipleVariableFracturedModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel), type ? type : "prodml23:HorizontalWellboreMultipleVariableFracturedModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) return soap->error; - if (!a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing) - { if (soap_element_empty(soap, "prodml22:LengthHorizontalWellboreFlowing", 0, NULL)) + if (!a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing) + { if (soap_element_empty(soap, "prodml23:LengthHorizontalWellboreFlowing", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + else if (soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) return soap->error; - if (soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) return soap->error; - if (!a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures) - { if (soap_element_empty(soap, "prodml22:NumberOfFractures", 0, NULL)) + if (!a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures) + { if (soap_element_empty(soap, "prodml23:NumberOfFractures", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__NumberOfFractures(soap, "prodml22:NumberOfFractures", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures, "prodml22:NumberOfFractures")) + else if (soap_out_PointerToprodml23__NumberOfFractures(soap, "prodml23:NumberOfFractures", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures, "prodml23:NumberOfFractures")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap, "prodml22:singleFractureSubModel", -1, &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel, "prodml22:SingleFractureSubModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap, "prodml23:singleFractureSubModel", -1, &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel, "prodml23:SingleFractureSubModel")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HorizontalWellboreMultipleVariableFracturedModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellboreMultipleVariableFracturedModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, this, type); + return soap_in_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *tag, prodml22__HorizontalWellboreMultipleVariableFracturedModel *a, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *tag, prodml23__HorizontalWellboreMultipleVariableFracturedModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HorizontalWellboreMultipleVariableFracturedModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel, sizeof(prodml22__HorizontalWellboreMultipleVariableFracturedModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HorizontalWellboreMultipleVariableFracturedModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel, sizeof(prodml23__HorizontalWellboreMultipleVariableFracturedModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HorizontalWellboreMultipleVariableFracturedModel *)a->soap_in(soap, tag, type); + return (prodml23__HorizontalWellboreMultipleVariableFracturedModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -196370,79 +196365,79 @@ SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMA for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_OrientationWellTrajectory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + { if (soap_in_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) { soap_flag_OrientationWellTrajectory1--; continue; } } if (soap_flag_LengthHorizontalWellboreFlowing1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + { if (soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) { soap_flag_LengthHorizontalWellboreFlowing1--; continue; } } if (soap_flag_DistanceWellboreToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) { soap_flag_DistanceWellboreToBottomBoundary1--; continue; } } if (soap_flag_NumberOfFractures1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__NumberOfFractures(soap, "prodml22:NumberOfFractures", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures, "prodml22:NumberOfFractures")) + { if (soap_in_PointerToprodml23__NumberOfFractures(soap, "prodml23:NumberOfFractures", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures, "prodml23:NumberOfFractures")) { soap_flag_NumberOfFractures1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap, "prodml22:singleFractureSubModel", &a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel, "prodml22:SingleFractureSubModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap, "prodml23:singleFractureSubModel", &a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel, "prodml23:SingleFractureSubModel")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -196454,7 +196449,7 @@ SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMA } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing || !a->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing || !a->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures)) { soap->error = SOAP_OCCURS; return NULL; } @@ -196464,35 +196459,35 @@ SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMA return NULL; } else - { a = (prodml22__HorizontalWellboreMultipleVariableFracturedModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel, sizeof(prodml22__HorizontalWellboreMultipleVariableFracturedModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalWellboreMultipleVariableFracturedModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel, sizeof(prodml23__HorizontalWellboreMultipleVariableFracturedModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HorizontalWellboreMultipleVariableFracturedModel *p; - size_t k = sizeof(prodml22__HorizontalWellboreMultipleVariableFracturedModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel, n, gsoap_eml2_3_fdelete); + prodml23__HorizontalWellboreMultipleVariableFracturedModel *p; + size_t k = sizeof(prodml23__HorizontalWellboreMultipleVariableFracturedModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HorizontalWellboreMultipleVariableFracturedModel); + { p = SOAP_NEW(soap, prodml23__HorizontalWellboreMultipleVariableFracturedModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HorizontalWellboreMultipleVariableFracturedModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HorizontalWellboreMultipleVariableFracturedModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HorizontalWellboreMultipleVariableFracturedModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HorizontalWellboreMultipleVariableFracturedModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -196502,159 +196497,159 @@ SOAP_FMAC1 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMA return p; } -int prodml22__HorizontalWellboreMultipleVariableFracturedModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HorizontalWellboreMultipleVariableFracturedModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, tag ? tag : "prodml22:HorizontalWellboreMultipleVariableFracturedModel", -2, this, type)) + if (soap_out_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, tag ? tag : "prodml23:HorizontalWellboreMultipleVariableFracturedModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HorizontalWellboreMultipleVariableFracturedModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellboreMultipleVariableFracturedModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, this, tag, type); + return soap_get_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleVariableFracturedModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleVariableFracturedModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HorizontalWellboreMultipleEqualFracturedModel::soap_default(struct soap *soap) +void prodml23__HorizontalWellboreMultipleEqualFracturedModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore = NULL; - this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio = NULL; - soap_default_prodml22__FractureModelType(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType); + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore = NULL; + this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio = NULL; + soap_default_prodml23__FractureModelType(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType); } -void prodml22__HorizontalWellboreMultipleEqualFracturedModel::soap_serialize(struct soap *soap) const +void prodml23__HorizontalWellboreMultipleEqualFracturedModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__FractureHalfLength(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength); - soap_serialize_PointerToprodml22__FractureFaceSkin(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin); - soap_serialize_PointerToprodml22__FractureConductivity(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity); - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory); - soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing); - soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary); - soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary); - soap_serialize_PointerToprodml22__NumberOfFractures(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures); - soap_serialize_PointerToprodml22__FractureHeight(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight); - soap_serialize_PointerToprodml22__FractureAngleToWellbore(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore); - soap_serialize_PointerToprodml22__FractureStorativityRatio(soap, &this->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__FractureHalfLength(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength); + soap_serialize_PointerToprodml23__FractureFaceSkin(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin); + soap_serialize_PointerToprodml23__FractureConductivity(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity); + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory); + soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing); + soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary); + soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary); + soap_serialize_PointerToprodml23__NumberOfFractures(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures); + soap_serialize_PointerToprodml23__FractureHeight(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight); + soap_serialize_PointerToprodml23__FractureAngleToWellbore(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore); + soap_serialize_PointerToprodml23__FractureStorativityRatio(soap, &this->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__HorizontalWellboreMultipleEqualFracturedModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HorizontalWellboreMultipleEqualFracturedModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, id, this, type); + return soap_out_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *tag, int id, const prodml22__HorizontalWellboreMultipleEqualFracturedModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *tag, int id, const prodml23__HorizontalWellboreMultipleEqualFracturedModel *a, const char *type) { if (!type) - type = "prodml22:HorizontalWellboreMultipleEqualFracturedModel"; + type = "prodml23:HorizontalWellboreMultipleEqualFracturedModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel), type ? type : "prodml22:HorizontalWellboreMultipleEqualFracturedModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel), type ? type : "prodml23:HorizontalWellboreMultipleEqualFracturedModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (!a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength) - { if (soap_element_empty(soap, "prodml22:FractureHalfLength", 0, NULL)) + if (!a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength) + { if (soap_element_empty(soap, "prodml23:FractureHalfLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength, "prodml22:FractureHalfLength")) + else if (soap_out_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength, "prodml23:FractureHalfLength")) return soap->error; - if (soap_out_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + if (soap_out_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) return soap->error; - if (soap_out_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity, "prodml22:FractureConductivity")) + if (soap_out_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity, "prodml23:FractureConductivity")) return soap->error; - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) return soap->error; - if (!a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing) - { if (soap_element_empty(soap, "prodml22:LengthHorizontalWellboreFlowing", 0, NULL)) + if (!a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing) + { if (soap_element_empty(soap, "prodml23:LengthHorizontalWellboreFlowing", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + else if (soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) return soap->error; - if (soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) return soap->error; - if (soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) return soap->error; - if (!a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures) - { if (soap_element_empty(soap, "prodml22:NumberOfFractures", 0, NULL)) + if (!a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures) + { if (soap_element_empty(soap, "prodml23:NumberOfFractures", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__NumberOfFractures(soap, "prodml22:NumberOfFractures", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures, "prodml22:NumberOfFractures")) + else if (soap_out_PointerToprodml23__NumberOfFractures(soap, "prodml23:NumberOfFractures", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures, "prodml23:NumberOfFractures")) return soap->error; - if (soap_out_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight, "prodml22:FractureHeight")) + if (soap_out_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight, "prodml23:FractureHeight")) return soap->error; - if (!a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore) - { if (soap_element_empty(soap, "prodml22:FractureAngleToWellbore", 0, NULL)) + if (!a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore) + { if (soap_element_empty(soap, "prodml23:FractureAngleToWellbore", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureAngleToWellbore(soap, "prodml22:FractureAngleToWellbore", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore, "prodml22:FractureAngleToWellbore")) + else if (soap_out_PointerToprodml23__FractureAngleToWellbore(soap, "prodml23:FractureAngleToWellbore", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore, "prodml23:FractureAngleToWellbore")) return soap->error; - if (soap_out_PointerToprodml22__FractureStorativityRatio(soap, "prodml22:FractureStorativityRatio", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio, "prodml22:FractureStorativityRatio")) + if (soap_out_PointerToprodml23__FractureStorativityRatio(soap, "prodml23:FractureStorativityRatio", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio, "prodml23:FractureStorativityRatio")) return soap->error; - if (soap_out_prodml22__FractureModelType(soap, "prodml22:FractureModelType", -1, &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType, "prodml22:FractureModelType")) + if (soap_out_prodml23__FractureModelType(soap, "prodml23:FractureModelType", -1, &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType, "prodml23:FractureModelType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HorizontalWellboreMultipleEqualFracturedModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellboreMultipleEqualFracturedModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, this, type); + return soap_in_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *tag, prodml22__HorizontalWellboreMultipleEqualFracturedModel *a, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *tag, prodml23__HorizontalWellboreMultipleEqualFracturedModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HorizontalWellboreMultipleEqualFracturedModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel, sizeof(prodml22__HorizontalWellboreMultipleEqualFracturedModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HorizontalWellboreMultipleEqualFracturedModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel, sizeof(prodml23__HorizontalWellboreMultipleEqualFracturedModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HorizontalWellboreMultipleEqualFracturedModel *)a->soap_in(soap, tag, type); + return (prodml23__HorizontalWellboreMultipleEqualFracturedModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -196683,121 +196678,121 @@ SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_FractureHalfLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength, "prodml22:FractureHalfLength")) + { if (soap_in_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength, "prodml23:FractureHalfLength")) { soap_flag_FractureHalfLength1--; continue; } } if (soap_flag_FractureFaceSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + { if (soap_in_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) { soap_flag_FractureFaceSkin1--; continue; } } if (soap_flag_FractureConductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity, "prodml22:FractureConductivity")) + { if (soap_in_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity, "prodml23:FractureConductivity")) { soap_flag_FractureConductivity1--; continue; } } if (soap_flag_OrientationWellTrajectory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + { if (soap_in_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) { soap_flag_OrientationWellTrajectory1--; continue; } } if (soap_flag_LengthHorizontalWellboreFlowing1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + { if (soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) { soap_flag_LengthHorizontalWellboreFlowing1--; continue; } } if (soap_flag_DistanceWellboreToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) { soap_flag_DistanceWellboreToBottomBoundary1--; continue; } } if (soap_flag_DistanceMidFractureHeightToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) { soap_flag_DistanceMidFractureHeightToBottomBoundary1--; continue; } } if (soap_flag_NumberOfFractures1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__NumberOfFractures(soap, "prodml22:NumberOfFractures", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures, "prodml22:NumberOfFractures")) + { if (soap_in_PointerToprodml23__NumberOfFractures(soap, "prodml23:NumberOfFractures", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures, "prodml23:NumberOfFractures")) { soap_flag_NumberOfFractures1--; continue; } } if (soap_flag_FractureHeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight, "prodml22:FractureHeight")) + { if (soap_in_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight, "prodml23:FractureHeight")) { soap_flag_FractureHeight1--; continue; } } if (soap_flag_FractureAngleToWellbore1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureAngleToWellbore(soap, "prodml22:FractureAngleToWellbore", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore, "prodml22:FractureAngleToWellbore")) + { if (soap_in_PointerToprodml23__FractureAngleToWellbore(soap, "prodml23:FractureAngleToWellbore", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore, "prodml23:FractureAngleToWellbore")) { soap_flag_FractureAngleToWellbore1--; continue; } } if (soap_flag_FractureStorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureStorativityRatio(soap, "prodml22:FractureStorativityRatio", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio, "prodml22:FractureStorativityRatio")) + { if (soap_in_PointerToprodml23__FractureStorativityRatio(soap, "prodml23:FractureStorativityRatio", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio, "prodml23:FractureStorativityRatio")) { soap_flag_FractureStorativityRatio1--; continue; } } if (soap_flag_FractureModelType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__FractureModelType(soap, "prodml22:FractureModelType", &a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType, "prodml22:FractureModelType")) + { if (soap_in_prodml23__FractureModelType(soap, "prodml23:FractureModelType", &a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType, "prodml23:FractureModelType")) { soap_flag_FractureModelType1--; continue; } @@ -196811,7 +196806,7 @@ SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength || !a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing || !a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures || !a->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore || soap_flag_FractureModelType1 > 0)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength || !a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing || !a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures || !a->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore || soap_flag_FractureModelType1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -196821,35 +196816,35 @@ SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 return NULL; } else - { a = (prodml22__HorizontalWellboreMultipleEqualFracturedModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel, sizeof(prodml22__HorizontalWellboreMultipleEqualFracturedModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalWellboreMultipleEqualFracturedModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel, sizeof(prodml23__HorizontalWellboreMultipleEqualFracturedModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HorizontalWellboreMultipleEqualFracturedModel *p; - size_t k = sizeof(prodml22__HorizontalWellboreMultipleEqualFracturedModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel, n, gsoap_eml2_3_fdelete); + prodml23__HorizontalWellboreMultipleEqualFracturedModel *p; + size_t k = sizeof(prodml23__HorizontalWellboreMultipleEqualFracturedModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HorizontalWellboreMultipleEqualFracturedModel); + { p = SOAP_NEW(soap, prodml23__HorizontalWellboreMultipleEqualFracturedModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HorizontalWellboreMultipleEqualFracturedModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HorizontalWellboreMultipleEqualFracturedModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HorizontalWellboreMultipleEqualFracturedModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HorizontalWellboreMultipleEqualFracturedModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -196859,116 +196854,116 @@ SOAP_FMAC1 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 return p; } -int prodml22__HorizontalWellboreMultipleEqualFracturedModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HorizontalWellboreMultipleEqualFracturedModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, tag ? tag : "prodml22:HorizontalWellboreMultipleEqualFracturedModel", -2, this, type)) + if (soap_out_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, tag ? tag : "prodml23:HorizontalWellboreMultipleEqualFracturedModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HorizontalWellboreMultipleEqualFracturedModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellboreMultipleEqualFracturedModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, this, tag, type); + return soap_get_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleEqualFracturedModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleEqualFracturedModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HorizontalWellboreModel::soap_default(struct soap *soap) +void prodml23__HorizontalWellboreModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellboreModel::OrientationWellTrajectory = NULL; - this->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing = NULL; - this->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellboreModel::OrientationWellTrajectory = NULL; + this->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing = NULL; + this->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary = NULL; } -void prodml22__HorizontalWellboreModel::soap_serialize(struct soap *soap) const +void prodml23__HorizontalWellboreModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, &this->prodml22__HorizontalWellboreModel::OrientationWellTrajectory); - soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, &this->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing); - soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, &this->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, &this->prodml23__HorizontalWellboreModel::OrientationWellTrajectory); + soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, &this->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing); + soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, &this->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__HorizontalWellboreModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HorizontalWellboreModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HorizontalWellboreModel(soap, tag, id, this, type); + return soap_out_prodml23__HorizontalWellboreModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellboreModel(struct soap *soap, const char *tag, int id, const prodml22__HorizontalWellboreModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellboreModel(struct soap *soap, const char *tag, int id, const prodml23__HorizontalWellboreModel *a, const char *type) { if (!type) - type = "prodml22:HorizontalWellboreModel"; + type = "prodml23:HorizontalWellboreModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel), type ? type : "prodml22:HorizontalWellboreModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel), type ? type : "prodml23:HorizontalWellboreModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", -1, &a->prodml22__HorizontalWellboreModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", -1, &a->prodml23__HorizontalWellboreModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) return soap->error; - if (!a->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing) - { if (soap_element_empty(soap, "prodml22:LengthHorizontalWellboreFlowing", 0, NULL)) + if (!a->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing) + { if (soap_element_empty(soap, "prodml23:LengthHorizontalWellboreFlowing", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", -1, &a->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + else if (soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", -1, &a->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) return soap->error; - if (!a->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceWellboreToBottomBoundary", 0, NULL)) + if (!a->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceWellboreToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", -1, &a->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", -1, &a->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HorizontalWellboreModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellboreModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HorizontalWellboreModel(soap, tag, this, type); + return soap_in_prodml23__HorizontalWellboreModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellboreModel(struct soap *soap, const char *tag, prodml22__HorizontalWellboreModel *a, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellboreModel(struct soap *soap, const char *tag, prodml23__HorizontalWellboreModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HorizontalWellboreModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel, sizeof(prodml22__HorizontalWellboreModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HorizontalWellboreModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel, sizeof(prodml23__HorizontalWellboreModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HorizontalWellboreModel *)a->soap_in(soap, tag, type); + return (prodml23__HorizontalWellboreModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -196988,67 +196983,67 @@ SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml22__Hori for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_OrientationWellTrajectory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", &a->prodml22__HorizontalWellboreModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + { if (soap_in_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", &a->prodml23__HorizontalWellboreModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) { soap_flag_OrientationWellTrajectory1--; continue; } } if (soap_flag_LengthHorizontalWellboreFlowing1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", &a->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + { if (soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", &a->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) { soap_flag_LengthHorizontalWellboreFlowing1--; continue; } } if (soap_flag_DistanceWellboreToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", &a->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", &a->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) { soap_flag_DistanceWellboreToBottomBoundary1--; continue; } @@ -197062,7 +197057,7 @@ SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml22__Hori } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing || !a->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing || !a->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -197072,35 +197067,35 @@ SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml22__Hori return NULL; } else - { a = (prodml22__HorizontalWellboreModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel, sizeof(prodml22__HorizontalWellboreModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalWellboreModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel, sizeof(prodml23__HorizontalWellboreModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HorizontalWellboreModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HorizontalWellboreModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HorizontalWellboreModel *p; - size_t k = sizeof(prodml22__HorizontalWellboreModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel, n, gsoap_eml2_3_fdelete); + prodml23__HorizontalWellboreModel *p; + size_t k = sizeof(prodml23__HorizontalWellboreModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HorizontalWellboreModel); + { p = SOAP_NEW(soap, prodml23__HorizontalWellboreModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HorizontalWellboreModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HorizontalWellboreModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HorizontalWellboreModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HorizontalWellboreModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -197110,116 +197105,116 @@ SOAP_FMAC1 prodml22__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__HorizontalWellboreModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HorizontalWellboreModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HorizontalWellboreModel(soap, tag ? tag : "prodml22:HorizontalWellboreModel", -2, this, type)) + if (soap_out_prodml23__HorizontalWellboreModel(soap, tag ? tag : "prodml23:HorizontalWellboreModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HorizontalWellboreModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellboreModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HorizontalWellboreModel(soap, this, tag, type); + return soap_get_prodml23__HorizontalWellboreModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellboreModel(struct soap *soap, prodml22__HorizontalWellboreModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellboreModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellboreModel(struct soap *soap, prodml23__HorizontalWellboreModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HorizontalWellboreModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__HorizontalWellboreModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HorizontalWellbore2LayerModel::soap_default(struct soap *soap) +void prodml23__HorizontalWellbore2LayerModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness = NULL; - this->prodml22__HorizontalWellbore2LayerModel::OrientationWellTrajectory = NULL; - this->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing = NULL; - this->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness = NULL; + this->prodml23__HorizontalWellbore2LayerModel::OrientationWellTrajectory = NULL; + this->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing = NULL; + this->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary = NULL; } -void prodml22__HorizontalWellbore2LayerModel::soap_serialize(struct soap *soap) const +void prodml23__HorizontalWellbore2LayerModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml22__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness); - soap_serialize_PointerToprodml22__OrientationWellTrajectory(soap, &this->prodml22__HorizontalWellbore2LayerModel::OrientationWellTrajectory); - soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, &this->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing); - soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, &this->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, &this->prodml23__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness); + soap_serialize_PointerToprodml23__OrientationWellTrajectory(soap, &this->prodml23__HorizontalWellbore2LayerModel::OrientationWellTrajectory); + soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, &this->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing); + soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, &this->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__HorizontalWellbore2LayerModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HorizontalWellbore2LayerModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HorizontalWellbore2LayerModel(soap, tag, id, this, type); + return soap_out_prodml23__HorizontalWellbore2LayerModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, const char *tag, int id, const prodml22__HorizontalWellbore2LayerModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, const char *tag, int id, const prodml23__HorizontalWellbore2LayerModel *a, const char *type) { if (!type) - type = "prodml22:HorizontalWellbore2LayerModel"; + type = "prodml23:HorizontalWellbore2LayerModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel), type ? type : "prodml22:HorizontalWellbore2LayerModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel), type ? type : "prodml23:HorizontalWellbore2LayerModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml22__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", -1, &a->prodml23__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", -1, &a->prodml22__HorizontalWellbore2LayerModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", -1, &a->prodml23__HorizontalWellbore2LayerModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) return soap->error; - if (!a->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing) - { if (soap_element_empty(soap, "prodml22:LengthHorizontalWellboreFlowing", 0, NULL)) + if (!a->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing) + { if (soap_element_empty(soap, "prodml23:LengthHorizontalWellboreFlowing", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", -1, &a->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + else if (soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", -1, &a->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) return soap->error; - if (!a->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceWellboreToBottomBoundary", 0, NULL)) + if (!a->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceWellboreToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", -1, &a->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", -1, &a->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HorizontalWellbore2LayerModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellbore2LayerModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HorizontalWellbore2LayerModel(soap, tag, this, type); + return soap_in_prodml23__HorizontalWellbore2LayerModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, const char *tag, prodml22__HorizontalWellbore2LayerModel *a, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, const char *tag, prodml23__HorizontalWellbore2LayerModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HorizontalWellbore2LayerModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel, sizeof(prodml22__HorizontalWellbore2LayerModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HorizontalWellbore2LayerModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel, sizeof(prodml23__HorizontalWellbore2LayerModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HorizontalWellbore2LayerModel *)a->soap_in(soap, tag, type); + return (prodml23__HorizontalWellbore2LayerModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -197239,67 +197234,67 @@ SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_ConvergenceSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness, "prodml22:ConvergenceSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness, "prodml23:ConvergenceSkinRelativeToTotalThickness")) { soap_flag_ConvergenceSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_MechanicalSkinRelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", &a->prodml22__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness, "prodml22:MechanicalSkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", &a->prodml23__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness, "prodml23:MechanicalSkinRelativeToTotalThickness")) { soap_flag_MechanicalSkinRelativeToTotalThickness1--; continue; } } if (soap_flag_OrientationWellTrajectory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationWellTrajectory(soap, "prodml22:OrientationWellTrajectory", &a->prodml22__HorizontalWellbore2LayerModel::OrientationWellTrajectory, "prodml22:OrientationWellTrajectory")) + { if (soap_in_PointerToprodml23__OrientationWellTrajectory(soap, "prodml23:OrientationWellTrajectory", &a->prodml23__HorizontalWellbore2LayerModel::OrientationWellTrajectory, "prodml23:OrientationWellTrajectory")) { soap_flag_OrientationWellTrajectory1--; continue; } } if (soap_flag_LengthHorizontalWellboreFlowing1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, "prodml22:LengthHorizontalWellboreFlowing", &a->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing, "prodml22:LengthHorizontalWellboreFlowing")) + { if (soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, "prodml23:LengthHorizontalWellboreFlowing", &a->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing, "prodml23:LengthHorizontalWellboreFlowing")) { soap_flag_LengthHorizontalWellboreFlowing1--; continue; } } if (soap_flag_DistanceWellboreToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, "prodml22:DistanceWellboreToBottomBoundary", &a->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary, "prodml22:DistanceWellboreToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, "prodml23:DistanceWellboreToBottomBoundary", &a->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary, "prodml23:DistanceWellboreToBottomBoundary")) { soap_flag_DistanceWellboreToBottomBoundary1--; continue; } @@ -197313,7 +197308,7 @@ SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml22 } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing || !a->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing || !a->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -197323,35 +197318,35 @@ SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__HorizontalWellbore2LayerModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel, sizeof(prodml22__HorizontalWellbore2LayerModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalWellbore2LayerModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel, sizeof(prodml23__HorizontalWellbore2LayerModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HorizontalWellbore2LayerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HorizontalWellbore2LayerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HorizontalWellbore2LayerModel *p; - size_t k = sizeof(prodml22__HorizontalWellbore2LayerModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel, n, gsoap_eml2_3_fdelete); + prodml23__HorizontalWellbore2LayerModel *p; + size_t k = sizeof(prodml23__HorizontalWellbore2LayerModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HorizontalWellbore2LayerModel); + { p = SOAP_NEW(soap, prodml23__HorizontalWellbore2LayerModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HorizontalWellbore2LayerModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HorizontalWellbore2LayerModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HorizontalWellbore2LayerModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HorizontalWellbore2LayerModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -197361,120 +197356,120 @@ SOAP_FMAC1 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__HorizontalWellbore2LayerModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HorizontalWellbore2LayerModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HorizontalWellbore2LayerModel(soap, tag ? tag : "prodml22:HorizontalWellbore2LayerModel", -2, this, type)) + if (soap_out_prodml23__HorizontalWellbore2LayerModel(soap, tag ? tag : "prodml23:HorizontalWellbore2LayerModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HorizontalWellbore2LayerModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HorizontalWellbore2LayerModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HorizontalWellbore2LayerModel(soap, this, tag, type); + return soap_get_prodml23__HorizontalWellbore2LayerModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, prodml22__HorizontalWellbore2LayerModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, prodml23__HorizontalWellbore2LayerModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HorizontalWellbore2LayerModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__HorizontalWellbore2LayerModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HomogeneousModel::soap_default(struct soap *soap) +void prodml23__HomogeneousModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); + this->prodml23__ReservoirBaseModel::soap_default(soap); } -void prodml22__HomogeneousModel::soap_serialize(struct soap *soap) const +void prodml23__HomogeneousModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__HomogeneousModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HomogeneousModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HomogeneousModel(soap, tag, id, this, type); + return soap_out_prodml23__HomogeneousModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HomogeneousModel(struct soap *soap, const char *tag, int id, const prodml22__HomogeneousModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HomogeneousModel(struct soap *soap, const char *tag, int id, const prodml23__HomogeneousModel *a, const char *type) { if (!type) - type = "prodml22:HomogeneousModel"; + type = "prodml23:HomogeneousModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel), type ? type : "prodml22:HomogeneousModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel), type ? type : "prodml23:HomogeneousModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HomogeneousModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HomogeneousModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HomogeneousModel(soap, tag, this, type); + return soap_in_prodml23__HomogeneousModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_in_prodml22__HomogeneousModel(struct soap *soap, const char *tag, prodml22__HomogeneousModel *a, const char *type) +SOAP_FMAC3 prodml23__HomogeneousModel * SOAP_FMAC4 soap_in_prodml23__HomogeneousModel(struct soap *soap, const char *tag, prodml23__HomogeneousModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HomogeneousModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel, sizeof(prodml22__HomogeneousModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HomogeneousModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel, sizeof(prodml23__HomogeneousModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HomogeneousModel *)a->soap_in(soap, tag, type); + return (prodml23__HomogeneousModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -197497,85 +197492,85 @@ SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_in_prodml22__Homogeneous for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } @@ -197589,7 +197584,7 @@ SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_in_prodml22__Homogeneous } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -197599,35 +197594,35 @@ SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_in_prodml22__Homogeneous return NULL; } else - { a = (prodml22__HomogeneousModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel, SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel, sizeof(prodml22__HomogeneousModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HomogeneousModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel, SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel, sizeof(prodml23__HomogeneousModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml22__HomogeneousModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml23__HomogeneousModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HomogeneousModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HomogeneousModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HomogeneousModel *p; - size_t k = sizeof(prodml22__HomogeneousModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel, n, gsoap_eml2_3_fdelete); + prodml23__HomogeneousModel *p; + size_t k = sizeof(prodml23__HomogeneousModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HomogeneousModel); + { p = SOAP_NEW(soap, prodml23__HomogeneousModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HomogeneousModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HomogeneousModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HomogeneousModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HomogeneousModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -197637,116 +197632,116 @@ SOAP_FMAC1 prodml22__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml22__Ho return p; } -int prodml22__HomogeneousModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HomogeneousModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HomogeneousModel(soap, tag ? tag : "prodml22:HomogeneousModel", -2, this, type)) + if (soap_out_prodml23__HomogeneousModel(soap, tag ? tag : "prodml23:HomogeneousModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HomogeneousModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HomogeneousModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HomogeneousModel(soap, this, tag, type); + return soap_get_prodml23__HomogeneousModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_get_prodml22__HomogeneousModel(struct soap *soap, prodml22__HomogeneousModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HomogeneousModel * SOAP_FMAC4 soap_get_prodml23__HomogeneousModel(struct soap *soap, prodml23__HomogeneousModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HomogeneousModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__HomogeneousModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FracturedUniformFluxModel::soap_default(struct soap *soap) +void prodml23__FracturedUniformFluxModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness = NULL; - this->prodml22__FracturedUniformFluxModel::FractureHalfLength = NULL; - this->prodml22__FracturedUniformFluxModel::FractureFaceSkin = NULL; - this->prodml22__FracturedUniformFluxModel::OrientationOfFracturePlane = NULL; - this->prodml22__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary = NULL; - this->prodml22__FracturedUniformFluxModel::FractureHeight = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__FracturedUniformFluxModel::FractureHalfLength = NULL; + this->prodml23__FracturedUniformFluxModel::FractureFaceSkin = NULL; + this->prodml23__FracturedUniformFluxModel::OrientationOfFracturePlane = NULL; + this->prodml23__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary = NULL; + this->prodml23__FracturedUniformFluxModel::FractureHeight = NULL; } -void prodml22__FracturedUniformFluxModel::soap_serialize(struct soap *soap) const +void prodml23__FracturedUniformFluxModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness); - soap_serialize_PointerToprodml22__FractureHalfLength(soap, &this->prodml22__FracturedUniformFluxModel::FractureHalfLength); - soap_serialize_PointerToprodml22__FractureFaceSkin(soap, &this->prodml22__FracturedUniformFluxModel::FractureFaceSkin); - soap_serialize_PointerToprodml22__OrientationOfFracturePlane(soap, &this->prodml22__FracturedUniformFluxModel::OrientationOfFracturePlane); - soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml22__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary); - soap_serialize_PointerToprodml22__FractureHeight(soap, &this->prodml22__FracturedUniformFluxModel::FractureHeight); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness); + soap_serialize_PointerToprodml23__FractureHalfLength(soap, &this->prodml23__FracturedUniformFluxModel::FractureHalfLength); + soap_serialize_PointerToprodml23__FractureFaceSkin(soap, &this->prodml23__FracturedUniformFluxModel::FractureFaceSkin); + soap_serialize_PointerToprodml23__OrientationOfFracturePlane(soap, &this->prodml23__FracturedUniformFluxModel::OrientationOfFracturePlane); + soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml23__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary); + soap_serialize_PointerToprodml23__FractureHeight(soap, &this->prodml23__FracturedUniformFluxModel::FractureHeight); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FracturedUniformFluxModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FracturedUniformFluxModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FracturedUniformFluxModel(soap, tag, id, this, type); + return soap_out_prodml23__FracturedUniformFluxModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedUniformFluxModel(struct soap *soap, const char *tag, int id, const prodml22__FracturedUniformFluxModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedUniformFluxModel(struct soap *soap, const char *tag, int id, const prodml23__FracturedUniformFluxModel *a, const char *type) { if (!type) - type = "prodml22:FracturedUniformFluxModel"; + type = "prodml23:FracturedUniformFluxModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel), type ? type : "prodml22:FracturedUniformFluxModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel), type ? type : "prodml23:FracturedUniformFluxModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (!a->prodml22__FracturedUniformFluxModel::FractureHalfLength) - { if (soap_element_empty(soap, "prodml22:FractureHalfLength", 0, NULL)) + if (!a->prodml23__FracturedUniformFluxModel::FractureHalfLength) + { if (soap_element_empty(soap, "prodml23:FractureHalfLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", -1, &a->prodml22__FracturedUniformFluxModel::FractureHalfLength, "prodml22:FractureHalfLength")) + else if (soap_out_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", -1, &a->prodml23__FracturedUniformFluxModel::FractureHalfLength, "prodml23:FractureHalfLength")) return soap->error; - if (soap_out_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", -1, &a->prodml22__FracturedUniformFluxModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + if (soap_out_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", -1, &a->prodml23__FracturedUniformFluxModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfFracturePlane(soap, "prodml22:OrientationOfFracturePlane", -1, &a->prodml22__FracturedUniformFluxModel::OrientationOfFracturePlane, "prodml22:OrientationOfFracturePlane")) + if (soap_out_PointerToprodml23__OrientationOfFracturePlane(soap, "prodml23:OrientationOfFracturePlane", -1, &a->prodml23__FracturedUniformFluxModel::OrientationOfFracturePlane, "prodml23:OrientationOfFracturePlane")) return soap->error; - if (soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml22__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml23__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) return soap->error; - if (soap_out_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", -1, &a->prodml22__FracturedUniformFluxModel::FractureHeight, "prodml22:FractureHeight")) + if (soap_out_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", -1, &a->prodml23__FracturedUniformFluxModel::FractureHeight, "prodml23:FractureHeight")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FracturedUniformFluxModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedUniformFluxModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FracturedUniformFluxModel(soap, tag, this, type); + return soap_in_prodml23__FracturedUniformFluxModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__FracturedUniformFluxModel(struct soap *soap, const char *tag, prodml22__FracturedUniformFluxModel *a, const char *type) +SOAP_FMAC3 prodml23__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml23__FracturedUniformFluxModel(struct soap *soap, const char *tag, prodml23__FracturedUniformFluxModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FracturedUniformFluxModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel, sizeof(prodml22__FracturedUniformFluxModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FracturedUniformFluxModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel, sizeof(prodml23__FracturedUniformFluxModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FracturedUniformFluxModel *)a->soap_in(soap, tag, type); + return (prodml23__FracturedUniformFluxModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -197767,73 +197762,73 @@ SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__Fr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } } if (soap_flag_FractureHalfLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", &a->prodml22__FracturedUniformFluxModel::FractureHalfLength, "prodml22:FractureHalfLength")) + { if (soap_in_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", &a->prodml23__FracturedUniformFluxModel::FractureHalfLength, "prodml23:FractureHalfLength")) { soap_flag_FractureHalfLength1--; continue; } } if (soap_flag_FractureFaceSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", &a->prodml22__FracturedUniformFluxModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + { if (soap_in_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", &a->prodml23__FracturedUniformFluxModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) { soap_flag_FractureFaceSkin1--; continue; } } if (soap_flag_OrientationOfFracturePlane1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfFracturePlane(soap, "prodml22:OrientationOfFracturePlane", &a->prodml22__FracturedUniformFluxModel::OrientationOfFracturePlane, "prodml22:OrientationOfFracturePlane")) + { if (soap_in_PointerToprodml23__OrientationOfFracturePlane(soap, "prodml23:OrientationOfFracturePlane", &a->prodml23__FracturedUniformFluxModel::OrientationOfFracturePlane, "prodml23:OrientationOfFracturePlane")) { soap_flag_OrientationOfFracturePlane1--; continue; } } if (soap_flag_DistanceMidFractureHeightToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", &a->prodml22__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", &a->prodml23__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) { soap_flag_DistanceMidFractureHeightToBottomBoundary1--; continue; } } if (soap_flag_FractureHeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", &a->prodml22__FracturedUniformFluxModel::FractureHeight, "prodml22:FractureHeight")) + { if (soap_in_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", &a->prodml23__FracturedUniformFluxModel::FractureHeight, "prodml23:FractureHeight")) { soap_flag_FractureHeight1--; continue; } @@ -197847,7 +197842,7 @@ SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__Fr } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__FracturedUniformFluxModel::FractureHalfLength)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__FracturedUniformFluxModel::FractureHalfLength)) { soap->error = SOAP_OCCURS; return NULL; } @@ -197857,35 +197852,35 @@ SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__Fr return NULL; } else - { a = (prodml22__FracturedUniformFluxModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel, sizeof(prodml22__FracturedUniformFluxModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FracturedUniformFluxModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel, sizeof(prodml23__FracturedUniformFluxModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedUniformFluxModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedUniformFluxModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FracturedUniformFluxModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FracturedUniformFluxModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FracturedUniformFluxModel *p; - size_t k = sizeof(prodml22__FracturedUniformFluxModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel, n, gsoap_eml2_3_fdelete); + prodml23__FracturedUniformFluxModel *p; + size_t k = sizeof(prodml23__FracturedUniformFluxModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FracturedUniformFluxModel); + { p = SOAP_NEW(soap, prodml23__FracturedUniformFluxModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FracturedUniformFluxModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FracturedUniformFluxModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FracturedUniformFluxModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FracturedUniformFluxModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -197895,116 +197890,116 @@ SOAP_FMAC1 prodml22__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__FracturedUniformFluxModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FracturedUniformFluxModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FracturedUniformFluxModel(soap, tag ? tag : "prodml22:FracturedUniformFluxModel", -2, this, type)) + if (soap_out_prodml23__FracturedUniformFluxModel(soap, tag ? tag : "prodml23:FracturedUniformFluxModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FracturedUniformFluxModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedUniformFluxModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FracturedUniformFluxModel(soap, this, tag, type); + return soap_get_prodml23__FracturedUniformFluxModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_get_prodml22__FracturedUniformFluxModel(struct soap *soap, prodml22__FracturedUniformFluxModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FracturedUniformFluxModel * SOAP_FMAC4 soap_get_prodml23__FracturedUniformFluxModel(struct soap *soap, prodml23__FracturedUniformFluxModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FracturedUniformFluxModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FracturedUniformFluxModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FracturedInfiniteConductivityModel::soap_default(struct soap *soap) +void prodml23__FracturedInfiniteConductivityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness = NULL; - this->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength = NULL; - this->prodml22__FracturedInfiniteConductivityModel::FractureFaceSkin = NULL; - this->prodml22__FracturedInfiniteConductivityModel::OrientationOfFracturePlane = NULL; - this->prodml22__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = NULL; - this->prodml22__FracturedInfiniteConductivityModel::FractureHeight = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength = NULL; + this->prodml23__FracturedInfiniteConductivityModel::FractureFaceSkin = NULL; + this->prodml23__FracturedInfiniteConductivityModel::OrientationOfFracturePlane = NULL; + this->prodml23__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = NULL; + this->prodml23__FracturedInfiniteConductivityModel::FractureHeight = NULL; } -void prodml22__FracturedInfiniteConductivityModel::soap_serialize(struct soap *soap) const +void prodml23__FracturedInfiniteConductivityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness); - soap_serialize_PointerToprodml22__FractureHalfLength(soap, &this->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength); - soap_serialize_PointerToprodml22__FractureFaceSkin(soap, &this->prodml22__FracturedInfiniteConductivityModel::FractureFaceSkin); - soap_serialize_PointerToprodml22__OrientationOfFracturePlane(soap, &this->prodml22__FracturedInfiniteConductivityModel::OrientationOfFracturePlane); - soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml22__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary); - soap_serialize_PointerToprodml22__FractureHeight(soap, &this->prodml22__FracturedInfiniteConductivityModel::FractureHeight); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness); + soap_serialize_PointerToprodml23__FractureHalfLength(soap, &this->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength); + soap_serialize_PointerToprodml23__FractureFaceSkin(soap, &this->prodml23__FracturedInfiniteConductivityModel::FractureFaceSkin); + soap_serialize_PointerToprodml23__OrientationOfFracturePlane(soap, &this->prodml23__FracturedInfiniteConductivityModel::OrientationOfFracturePlane); + soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml23__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary); + soap_serialize_PointerToprodml23__FractureHeight(soap, &this->prodml23__FracturedInfiniteConductivityModel::FractureHeight); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FracturedInfiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FracturedInfiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FracturedInfiniteConductivityModel(soap, tag, id, this, type); + return soap_out_prodml23__FracturedInfiniteConductivityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml22__FracturedInfiniteConductivityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml23__FracturedInfiniteConductivityModel *a, const char *type) { if (!type) - type = "prodml22:FracturedInfiniteConductivityModel"; + type = "prodml23:FracturedInfiniteConductivityModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel), type ? type : "prodml22:FracturedInfiniteConductivityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel), type ? type : "prodml23:FracturedInfiniteConductivityModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (!a->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength) - { if (soap_element_empty(soap, "prodml22:FractureHalfLength", 0, NULL)) + if (!a->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength) + { if (soap_element_empty(soap, "prodml23:FractureHalfLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", -1, &a->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength, "prodml22:FractureHalfLength")) + else if (soap_out_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", -1, &a->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength, "prodml23:FractureHalfLength")) return soap->error; - if (soap_out_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", -1, &a->prodml22__FracturedInfiniteConductivityModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + if (soap_out_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", -1, &a->prodml23__FracturedInfiniteConductivityModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfFracturePlane(soap, "prodml22:OrientationOfFracturePlane", -1, &a->prodml22__FracturedInfiniteConductivityModel::OrientationOfFracturePlane, "prodml22:OrientationOfFracturePlane")) + if (soap_out_PointerToprodml23__OrientationOfFracturePlane(soap, "prodml23:OrientationOfFracturePlane", -1, &a->prodml23__FracturedInfiniteConductivityModel::OrientationOfFracturePlane, "prodml23:OrientationOfFracturePlane")) return soap->error; - if (soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml22__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml23__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) return soap->error; - if (soap_out_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", -1, &a->prodml22__FracturedInfiniteConductivityModel::FractureHeight, "prodml22:FractureHeight")) + if (soap_out_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", -1, &a->prodml23__FracturedInfiniteConductivityModel::FractureHeight, "prodml23:FractureHeight")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FracturedInfiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedInfiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FracturedInfiniteConductivityModel(soap, tag, this, type); + return soap_in_prodml23__FracturedInfiniteConductivityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, const char *tag, prodml22__FracturedInfiniteConductivityModel *a, const char *type) +SOAP_FMAC3 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, const char *tag, prodml23__FracturedInfiniteConductivityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FracturedInfiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel, sizeof(prodml22__FracturedInfiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FracturedInfiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel, sizeof(prodml23__FracturedInfiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FracturedInfiniteConductivityModel *)a->soap_in(soap, tag, type); + return (prodml23__FracturedInfiniteConductivityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -198025,73 +198020,73 @@ SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } } if (soap_flag_FractureHalfLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", &a->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength, "prodml22:FractureHalfLength")) + { if (soap_in_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", &a->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength, "prodml23:FractureHalfLength")) { soap_flag_FractureHalfLength1--; continue; } } if (soap_flag_FractureFaceSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", &a->prodml22__FracturedInfiniteConductivityModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + { if (soap_in_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", &a->prodml23__FracturedInfiniteConductivityModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) { soap_flag_FractureFaceSkin1--; continue; } } if (soap_flag_OrientationOfFracturePlane1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfFracturePlane(soap, "prodml22:OrientationOfFracturePlane", &a->prodml22__FracturedInfiniteConductivityModel::OrientationOfFracturePlane, "prodml22:OrientationOfFracturePlane")) + { if (soap_in_PointerToprodml23__OrientationOfFracturePlane(soap, "prodml23:OrientationOfFracturePlane", &a->prodml23__FracturedInfiniteConductivityModel::OrientationOfFracturePlane, "prodml23:OrientationOfFracturePlane")) { soap_flag_OrientationOfFracturePlane1--; continue; } } if (soap_flag_DistanceMidFractureHeightToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", &a->prodml22__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", &a->prodml23__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) { soap_flag_DistanceMidFractureHeightToBottomBoundary1--; continue; } } if (soap_flag_FractureHeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", &a->prodml22__FracturedInfiniteConductivityModel::FractureHeight, "prodml22:FractureHeight")) + { if (soap_in_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", &a->prodml23__FracturedInfiniteConductivityModel::FractureHeight, "prodml23:FractureHeight")) { soap_flag_FractureHeight1--; continue; } @@ -198105,7 +198100,7 @@ SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength)) { soap->error = SOAP_OCCURS; return NULL; } @@ -198115,35 +198110,35 @@ SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__FracturedInfiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel, sizeof(prodml22__FracturedInfiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FracturedInfiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel, sizeof(prodml23__FracturedInfiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FracturedInfiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FracturedInfiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FracturedInfiniteConductivityModel *p; - size_t k = sizeof(prodml22__FracturedInfiniteConductivityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel, n, gsoap_eml2_3_fdelete); + prodml23__FracturedInfiniteConductivityModel *p; + size_t k = sizeof(prodml23__FracturedInfiniteConductivityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FracturedInfiniteConductivityModel); + { p = SOAP_NEW(soap, prodml23__FracturedInfiniteConductivityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FracturedInfiniteConductivityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FracturedInfiniteConductivityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FracturedInfiniteConductivityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FracturedInfiniteConductivityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -198153,104 +198148,104 @@ SOAP_FMAC1 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instan return p; } -int prodml22__FracturedInfiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FracturedInfiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FracturedInfiniteConductivityModel(soap, tag ? tag : "prodml22:FracturedInfiniteConductivityModel", -2, this, type)) + if (soap_out_prodml23__FracturedInfiniteConductivityModel(soap, tag ? tag : "prodml23:FracturedInfiniteConductivityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FracturedInfiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedInfiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FracturedInfiniteConductivityModel(soap, this, tag, type); + return soap_get_prodml23__FracturedInfiniteConductivityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, prodml22__FracturedInfiniteConductivityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, prodml23__FracturedInfiniteConductivityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FracturedInfiniteConductivityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FracturedInfiniteConductivityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FracturedHorizontalUniformFluxModel::soap_default(struct soap *soap) +void prodml23__FracturedHorizontalUniformFluxModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius = NULL; - this->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius = NULL; + this->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary = NULL; } -void prodml22__FracturedHorizontalUniformFluxModel::soap_serialize(struct soap *soap) const +void prodml23__FracturedHorizontalUniformFluxModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FractureRadius(soap, &this->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius); - soap_serialize_PointerToprodml22__DistanceFractureToBottomBoundary(soap, &this->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__FractureRadius(soap, &this->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius); + soap_serialize_PointerToprodml23__DistanceFractureToBottomBoundary(soap, &this->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FracturedHorizontalUniformFluxModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FracturedHorizontalUniformFluxModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FracturedHorizontalUniformFluxModel(soap, tag, id, this, type); + return soap_out_prodml23__FracturedHorizontalUniformFluxModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *tag, int id, const prodml22__FracturedHorizontalUniformFluxModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *tag, int id, const prodml23__FracturedHorizontalUniformFluxModel *a, const char *type) { if (!type) - type = "prodml22:FracturedHorizontalUniformFluxModel"; + type = "prodml23:FracturedHorizontalUniformFluxModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel), type ? type : "prodml22:FracturedHorizontalUniformFluxModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel), type ? type : "prodml23:FracturedHorizontalUniformFluxModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (!a->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius) - { if (soap_element_empty(soap, "prodml22:FractureRadius", 0, NULL)) + if (!a->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius) + { if (soap_element_empty(soap, "prodml23:FractureRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureRadius(soap, "prodml22:FractureRadius", -1, &a->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius, "prodml22:FractureRadius")) + else if (soap_out_PointerToprodml23__FractureRadius(soap, "prodml23:FractureRadius", -1, &a->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius, "prodml23:FractureRadius")) return soap->error; - if (!a->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceFractureToBottomBoundary", 0, NULL)) + if (!a->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceFractureToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(soap, "prodml22:DistanceFractureToBottomBoundary", -1, &a->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary, "prodml22:DistanceFractureToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(soap, "prodml23:DistanceFractureToBottomBoundary", -1, &a->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary, "prodml23:DistanceFractureToBottomBoundary")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FracturedHorizontalUniformFluxModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedHorizontalUniformFluxModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FracturedHorizontalUniformFluxModel(soap, tag, this, type); + return soap_in_prodml23__FracturedHorizontalUniformFluxModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *tag, prodml22__FracturedHorizontalUniformFluxModel *a, const char *type) +SOAP_FMAC3 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *tag, prodml23__FracturedHorizontalUniformFluxModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FracturedHorizontalUniformFluxModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel, sizeof(prodml22__FracturedHorizontalUniformFluxModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FracturedHorizontalUniformFluxModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel, sizeof(prodml23__FracturedHorizontalUniformFluxModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FracturedHorizontalUniformFluxModel *)a->soap_in(soap, tag, type); + return (prodml23__FracturedHorizontalUniformFluxModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -198267,49 +198262,49 @@ SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_FractureRadius1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureRadius(soap, "prodml22:FractureRadius", &a->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius, "prodml22:FractureRadius")) + { if (soap_in_PointerToprodml23__FractureRadius(soap, "prodml23:FractureRadius", &a->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius, "prodml23:FractureRadius")) { soap_flag_FractureRadius1--; continue; } } if (soap_flag_DistanceFractureToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(soap, "prodml22:DistanceFractureToBottomBoundary", &a->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary, "prodml22:DistanceFractureToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(soap, "prodml23:DistanceFractureToBottomBoundary", &a->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary, "prodml23:DistanceFractureToBottomBoundary")) { soap_flag_DistanceFractureToBottomBoundary1--; continue; } @@ -198323,7 +198318,7 @@ SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_pr } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius || !a->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius || !a->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -198333,35 +198328,35 @@ SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_pr return NULL; } else - { a = (prodml22__FracturedHorizontalUniformFluxModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel, sizeof(prodml22__FracturedHorizontalUniformFluxModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FracturedHorizontalUniformFluxModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel, sizeof(prodml23__FracturedHorizontalUniformFluxModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FracturedHorizontalUniformFluxModel *p; - size_t k = sizeof(prodml22__FracturedHorizontalUniformFluxModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel, n, gsoap_eml2_3_fdelete); + prodml23__FracturedHorizontalUniformFluxModel *p; + size_t k = sizeof(prodml23__FracturedHorizontalUniformFluxModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FracturedHorizontalUniformFluxModel); + { p = SOAP_NEW(soap, prodml23__FracturedHorizontalUniformFluxModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FracturedHorizontalUniformFluxModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FracturedHorizontalUniformFluxModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FracturedHorizontalUniformFluxModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FracturedHorizontalUniformFluxModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -198371,104 +198366,104 @@ SOAP_FMAC1 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_insta return p; } -int prodml22__FracturedHorizontalUniformFluxModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FracturedHorizontalUniformFluxModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FracturedHorizontalUniformFluxModel(soap, tag ? tag : "prodml22:FracturedHorizontalUniformFluxModel", -2, this, type)) + if (soap_out_prodml23__FracturedHorizontalUniformFluxModel(soap, tag ? tag : "prodml23:FracturedHorizontalUniformFluxModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FracturedHorizontalUniformFluxModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedHorizontalUniformFluxModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FracturedHorizontalUniformFluxModel(soap, this, tag, type); + return soap_get_prodml23__FracturedHorizontalUniformFluxModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_get_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml22__FracturedHorizontalUniformFluxModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_get_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml23__FracturedHorizontalUniformFluxModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FracturedHorizontalUniformFluxModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FracturedHorizontalUniformFluxModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FracturedHorizontalInfiniteConductivityModel::soap_default(struct soap *soap) +void prodml23__FracturedHorizontalInfiniteConductivityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius = NULL; - this->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius = NULL; + this->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary = NULL; } -void prodml22__FracturedHorizontalInfiniteConductivityModel::soap_serialize(struct soap *soap) const +void prodml23__FracturedHorizontalInfiniteConductivityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FractureRadius(soap, &this->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius); - soap_serialize_PointerToprodml22__DistanceFractureToBottomBoundary(soap, &this->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__FractureRadius(soap, &this->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius); + soap_serialize_PointerToprodml23__DistanceFractureToBottomBoundary(soap, &this->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FracturedHorizontalInfiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FracturedHorizontalInfiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, tag, id, this, type); + return soap_out_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml22__FracturedHorizontalInfiniteConductivityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml23__FracturedHorizontalInfiniteConductivityModel *a, const char *type) { if (!type) - type = "prodml22:FracturedHorizontalInfiniteConductivityModel"; + type = "prodml23:FracturedHorizontalInfiniteConductivityModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel), type ? type : "prodml22:FracturedHorizontalInfiniteConductivityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel), type ? type : "prodml23:FracturedHorizontalInfiniteConductivityModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (!a->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius) - { if (soap_element_empty(soap, "prodml22:FractureRadius", 0, NULL)) + if (!a->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius) + { if (soap_element_empty(soap, "prodml23:FractureRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureRadius(soap, "prodml22:FractureRadius", -1, &a->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius, "prodml22:FractureRadius")) + else if (soap_out_PointerToprodml23__FractureRadius(soap, "prodml23:FractureRadius", -1, &a->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius, "prodml23:FractureRadius")) return soap->error; - if (!a->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceFractureToBottomBoundary", 0, NULL)) + if (!a->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceFractureToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(soap, "prodml22:DistanceFractureToBottomBoundary", -1, &a->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml22:DistanceFractureToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(soap, "prodml23:DistanceFractureToBottomBoundary", -1, &a->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml23:DistanceFractureToBottomBoundary")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FracturedHorizontalInfiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedHorizontalInfiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, tag, this, type); + return soap_in_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *tag, prodml22__FracturedHorizontalInfiniteConductivityModel *a, const char *type) +SOAP_FMAC3 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *tag, prodml23__FracturedHorizontalInfiniteConductivityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FracturedHorizontalInfiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel, sizeof(prodml22__FracturedHorizontalInfiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FracturedHorizontalInfiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel, sizeof(prodml23__FracturedHorizontalInfiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FracturedHorizontalInfiniteConductivityModel *)a->soap_in(soap, tag, type); + return (prodml23__FracturedHorizontalInfiniteConductivityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -198485,49 +198480,49 @@ SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_FractureRadius1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureRadius(soap, "prodml22:FractureRadius", &a->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius, "prodml22:FractureRadius")) + { if (soap_in_PointerToprodml23__FractureRadius(soap, "prodml23:FractureRadius", &a->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius, "prodml23:FractureRadius")) { soap_flag_FractureRadius1--; continue; } } if (soap_flag_DistanceFractureToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(soap, "prodml22:DistanceFractureToBottomBoundary", &a->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml22:DistanceFractureToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(soap, "prodml23:DistanceFractureToBottomBoundary", &a->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml23:DistanceFractureToBottomBoundary")) { soap_flag_DistanceFractureToBottomBoundary1--; continue; } @@ -198541,7 +198536,7 @@ SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 s } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius || !a->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius || !a->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -198551,35 +198546,35 @@ SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 s return NULL; } else - { a = (prodml22__FracturedHorizontalInfiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel, sizeof(prodml22__FracturedHorizontalInfiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FracturedHorizontalInfiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel, sizeof(prodml23__FracturedHorizontalInfiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FracturedHorizontalInfiniteConductivityModel *p; - size_t k = sizeof(prodml22__FracturedHorizontalInfiniteConductivityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel, n, gsoap_eml2_3_fdelete); + prodml23__FracturedHorizontalInfiniteConductivityModel *p; + size_t k = sizeof(prodml23__FracturedHorizontalInfiniteConductivityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FracturedHorizontalInfiniteConductivityModel); + { p = SOAP_NEW(soap, prodml23__FracturedHorizontalInfiniteConductivityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FracturedHorizontalInfiniteConductivityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FracturedHorizontalInfiniteConductivityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FracturedHorizontalInfiniteConductivityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FracturedHorizontalInfiniteConductivityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -198589,112 +198584,112 @@ SOAP_FMAC1 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 s return p; } -int prodml22__FracturedHorizontalInfiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FracturedHorizontalInfiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, tag ? tag : "prodml22:FracturedHorizontalInfiniteConductivityModel", -2, this, type)) + if (soap_out_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, tag ? tag : "prodml23:FracturedHorizontalInfiniteConductivityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FracturedHorizontalInfiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedHorizontalInfiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, this, tag, type); + return soap_get_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalInfiniteConductivityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalInfiniteConductivityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FracturedHorizontalFiniteConductivityModel::soap_default(struct soap *soap) +void prodml23__FracturedHorizontalFiniteConductivityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity = NULL; - this->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius = NULL; - this->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity = NULL; + this->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius = NULL; + this->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary = NULL; } -void prodml22__FracturedHorizontalFiniteConductivityModel::soap_serialize(struct soap *soap) const +void prodml23__FracturedHorizontalFiniteConductivityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FractureConductivity(soap, &this->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity); - soap_serialize_PointerToprodml22__FractureRadius(soap, &this->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius); - soap_serialize_PointerToprodml22__DistanceFractureToBottomBoundary(soap, &this->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__FractureConductivity(soap, &this->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity); + soap_serialize_PointerToprodml23__FractureRadius(soap, &this->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius); + soap_serialize_PointerToprodml23__DistanceFractureToBottomBoundary(soap, &this->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FracturedHorizontalFiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FracturedHorizontalFiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FracturedHorizontalFiniteConductivityModel(soap, tag, id, this, type); + return soap_out_prodml23__FracturedHorizontalFiniteConductivityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml22__FracturedHorizontalFiniteConductivityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml23__FracturedHorizontalFiniteConductivityModel *a, const char *type) { if (!type) - type = "prodml22:FracturedHorizontalFiniteConductivityModel"; + type = "prodml23:FracturedHorizontalFiniteConductivityModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel), type ? type : "prodml22:FracturedHorizontalFiniteConductivityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel), type ? type : "prodml23:FracturedHorizontalFiniteConductivityModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (!a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity) - { if (soap_element_empty(soap, "prodml22:FractureConductivity", 0, NULL)) + if (!a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity) + { if (soap_element_empty(soap, "prodml23:FractureConductivity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", -1, &a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity, "prodml22:FractureConductivity")) + else if (soap_out_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", -1, &a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity, "prodml23:FractureConductivity")) return soap->error; - if (!a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius) - { if (soap_element_empty(soap, "prodml22:FractureRadius", 0, NULL)) + if (!a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius) + { if (soap_element_empty(soap, "prodml23:FractureRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureRadius(soap, "prodml22:FractureRadius", -1, &a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius, "prodml22:FractureRadius")) + else if (soap_out_PointerToprodml23__FractureRadius(soap, "prodml23:FractureRadius", -1, &a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius, "prodml23:FractureRadius")) return soap->error; - if (!a->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary) - { if (soap_element_empty(soap, "prodml22:DistanceFractureToBottomBoundary", 0, NULL)) + if (!a->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary) + { if (soap_element_empty(soap, "prodml23:DistanceFractureToBottomBoundary", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(soap, "prodml22:DistanceFractureToBottomBoundary", -1, &a->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml22:DistanceFractureToBottomBoundary")) + else if (soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(soap, "prodml23:DistanceFractureToBottomBoundary", -1, &a->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml23:DistanceFractureToBottomBoundary")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FracturedHorizontalFiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedHorizontalFiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FracturedHorizontalFiniteConductivityModel(soap, tag, this, type); + return soap_in_prodml23__FracturedHorizontalFiniteConductivityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *tag, prodml22__FracturedHorizontalFiniteConductivityModel *a, const char *type) +SOAP_FMAC3 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *tag, prodml23__FracturedHorizontalFiniteConductivityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FracturedHorizontalFiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel, sizeof(prodml22__FracturedHorizontalFiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FracturedHorizontalFiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel, sizeof(prodml23__FracturedHorizontalFiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FracturedHorizontalFiniteConductivityModel *)a->soap_in(soap, tag, type); + return (prodml23__FracturedHorizontalFiniteConductivityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -198712,55 +198707,55 @@ SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_FractureConductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", &a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity, "prodml22:FractureConductivity")) + { if (soap_in_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", &a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity, "prodml23:FractureConductivity")) { soap_flag_FractureConductivity1--; continue; } } if (soap_flag_FractureRadius1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureRadius(soap, "prodml22:FractureRadius", &a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius, "prodml22:FractureRadius")) + { if (soap_in_PointerToprodml23__FractureRadius(soap, "prodml23:FractureRadius", &a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius, "prodml23:FractureRadius")) { soap_flag_FractureRadius1--; continue; } } if (soap_flag_DistanceFractureToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(soap, "prodml22:DistanceFractureToBottomBoundary", &a->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml22:DistanceFractureToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(soap, "prodml23:DistanceFractureToBottomBoundary", &a->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary, "prodml23:DistanceFractureToBottomBoundary")) { soap_flag_DistanceFractureToBottomBoundary1--; continue; } @@ -198774,7 +198769,7 @@ SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soa } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity || !a->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius || !a->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity || !a->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius || !a->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary)) { soap->error = SOAP_OCCURS; return NULL; } @@ -198784,35 +198779,35 @@ SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soa return NULL; } else - { a = (prodml22__FracturedHorizontalFiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel, sizeof(prodml22__FracturedHorizontalFiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FracturedHorizontalFiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel, sizeof(prodml23__FracturedHorizontalFiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FracturedHorizontalFiniteConductivityModel *p; - size_t k = sizeof(prodml22__FracturedHorizontalFiniteConductivityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel, n, gsoap_eml2_3_fdelete); + prodml23__FracturedHorizontalFiniteConductivityModel *p; + size_t k = sizeof(prodml23__FracturedHorizontalFiniteConductivityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FracturedHorizontalFiniteConductivityModel); + { p = SOAP_NEW(soap, prodml23__FracturedHorizontalFiniteConductivityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FracturedHorizontalFiniteConductivityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FracturedHorizontalFiniteConductivityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FracturedHorizontalFiniteConductivityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FracturedHorizontalFiniteConductivityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -198822,124 +198817,124 @@ SOAP_FMAC1 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soa return p; } -int prodml22__FracturedHorizontalFiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FracturedHorizontalFiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FracturedHorizontalFiniteConductivityModel(soap, tag ? tag : "prodml22:FracturedHorizontalFiniteConductivityModel", -2, this, type)) + if (soap_out_prodml23__FracturedHorizontalFiniteConductivityModel(soap, tag ? tag : "prodml23:FracturedHorizontalFiniteConductivityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FracturedHorizontalFiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedHorizontalFiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FracturedHorizontalFiniteConductivityModel(soap, this, tag, type); + return soap_get_prodml23__FracturedHorizontalFiniteConductivityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalFiniteConductivityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalFiniteConductivityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FracturedHorizontalFiniteConductivityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FracturedHorizontalFiniteConductivityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FracturedFiniteConductivityModel::soap_default(struct soap *soap) +void prodml23__FracturedFiniteConductivityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness = NULL; - this->prodml22__FracturedFiniteConductivityModel::FractureHalfLength = NULL; - this->prodml22__FracturedFiniteConductivityModel::FractureFaceSkin = NULL; - this->prodml22__FracturedFiniteConductivityModel::OrientationOfFracturePlane = NULL; - this->prodml22__FracturedFiniteConductivityModel::FractureConductivity = NULL; - this->prodml22__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = NULL; - this->prodml22__FracturedFiniteConductivityModel::FractureHeight = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__FracturedFiniteConductivityModel::FractureHalfLength = NULL; + this->prodml23__FracturedFiniteConductivityModel::FractureFaceSkin = NULL; + this->prodml23__FracturedFiniteConductivityModel::OrientationOfFracturePlane = NULL; + this->prodml23__FracturedFiniteConductivityModel::FractureConductivity = NULL; + this->prodml23__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = NULL; + this->prodml23__FracturedFiniteConductivityModel::FractureHeight = NULL; } -void prodml22__FracturedFiniteConductivityModel::soap_serialize(struct soap *soap) const +void prodml23__FracturedFiniteConductivityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness); - soap_serialize_PointerToprodml22__FractureHalfLength(soap, &this->prodml22__FracturedFiniteConductivityModel::FractureHalfLength); - soap_serialize_PointerToprodml22__FractureFaceSkin(soap, &this->prodml22__FracturedFiniteConductivityModel::FractureFaceSkin); - soap_serialize_PointerToprodml22__OrientationOfFracturePlane(soap, &this->prodml22__FracturedFiniteConductivityModel::OrientationOfFracturePlane); - soap_serialize_PointerToprodml22__FractureConductivity(soap, &this->prodml22__FracturedFiniteConductivityModel::FractureConductivity); - soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml22__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary); - soap_serialize_PointerToprodml22__FractureHeight(soap, &this->prodml22__FracturedFiniteConductivityModel::FractureHeight); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness); + soap_serialize_PointerToprodml23__FractureHalfLength(soap, &this->prodml23__FracturedFiniteConductivityModel::FractureHalfLength); + soap_serialize_PointerToprodml23__FractureFaceSkin(soap, &this->prodml23__FracturedFiniteConductivityModel::FractureFaceSkin); + soap_serialize_PointerToprodml23__OrientationOfFracturePlane(soap, &this->prodml23__FracturedFiniteConductivityModel::OrientationOfFracturePlane); + soap_serialize_PointerToprodml23__FractureConductivity(soap, &this->prodml23__FracturedFiniteConductivityModel::FractureConductivity); + soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml23__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary); + soap_serialize_PointerToprodml23__FractureHeight(soap, &this->prodml23__FracturedFiniteConductivityModel::FractureHeight); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FracturedFiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FracturedFiniteConductivityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FracturedFiniteConductivityModel(soap, tag, id, this, type); + return soap_out_prodml23__FracturedFiniteConductivityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedFiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml22__FracturedFiniteConductivityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedFiniteConductivityModel(struct soap *soap, const char *tag, int id, const prodml23__FracturedFiniteConductivityModel *a, const char *type) { if (!type) - type = "prodml22:FracturedFiniteConductivityModel"; + type = "prodml23:FracturedFiniteConductivityModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel), type ? type : "prodml22:FracturedFiniteConductivityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel), type ? type : "prodml23:FracturedFiniteConductivityModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; - if (!a->prodml22__FracturedFiniteConductivityModel::FractureHalfLength) - { if (soap_element_empty(soap, "prodml22:FractureHalfLength", 0, NULL)) + if (!a->prodml23__FracturedFiniteConductivityModel::FractureHalfLength) + { if (soap_element_empty(soap, "prodml23:FractureHalfLength", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", -1, &a->prodml22__FracturedFiniteConductivityModel::FractureHalfLength, "prodml22:FractureHalfLength")) + else if (soap_out_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", -1, &a->prodml23__FracturedFiniteConductivityModel::FractureHalfLength, "prodml23:FractureHalfLength")) return soap->error; - if (soap_out_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", -1, &a->prodml22__FracturedFiniteConductivityModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + if (soap_out_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", -1, &a->prodml23__FracturedFiniteConductivityModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfFracturePlane(soap, "prodml22:OrientationOfFracturePlane", -1, &a->prodml22__FracturedFiniteConductivityModel::OrientationOfFracturePlane, "prodml22:OrientationOfFracturePlane")) + if (soap_out_PointerToprodml23__OrientationOfFracturePlane(soap, "prodml23:OrientationOfFracturePlane", -1, &a->prodml23__FracturedFiniteConductivityModel::OrientationOfFracturePlane, "prodml23:OrientationOfFracturePlane")) return soap->error; - if (!a->prodml22__FracturedFiniteConductivityModel::FractureConductivity) - { if (soap_element_empty(soap, "prodml22:FractureConductivity", 0, NULL)) + if (!a->prodml23__FracturedFiniteConductivityModel::FractureConductivity) + { if (soap_element_empty(soap, "prodml23:FractureConductivity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", -1, &a->prodml22__FracturedFiniteConductivityModel::FractureConductivity, "prodml22:FractureConductivity")) + else if (soap_out_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", -1, &a->prodml23__FracturedFiniteConductivityModel::FractureConductivity, "prodml23:FractureConductivity")) return soap->error; - if (soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml22__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml23__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) return soap->error; - if (soap_out_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", -1, &a->prodml22__FracturedFiniteConductivityModel::FractureHeight, "prodml22:FractureHeight")) + if (soap_out_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", -1, &a->prodml23__FracturedFiniteConductivityModel::FractureHeight, "prodml23:FractureHeight")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FracturedFiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedFiniteConductivityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FracturedFiniteConductivityModel(soap, tag, this, type); + return soap_in_prodml23__FracturedFiniteConductivityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedFiniteConductivityModel(struct soap *soap, const char *tag, prodml22__FracturedFiniteConductivityModel *a, const char *type) +SOAP_FMAC3 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedFiniteConductivityModel(struct soap *soap, const char *tag, prodml23__FracturedFiniteConductivityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FracturedFiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel, sizeof(prodml22__FracturedFiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FracturedFiniteConductivityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel, sizeof(prodml23__FracturedFiniteConductivityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FracturedFiniteConductivityModel *)a->soap_in(soap, tag, type); + return (prodml23__FracturedFiniteConductivityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -198961,79 +198956,79 @@ SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } } if (soap_flag_FractureHalfLength1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHalfLength(soap, "prodml22:FractureHalfLength", &a->prodml22__FracturedFiniteConductivityModel::FractureHalfLength, "prodml22:FractureHalfLength")) + { if (soap_in_PointerToprodml23__FractureHalfLength(soap, "prodml23:FractureHalfLength", &a->prodml23__FracturedFiniteConductivityModel::FractureHalfLength, "prodml23:FractureHalfLength")) { soap_flag_FractureHalfLength1--; continue; } } if (soap_flag_FractureFaceSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", &a->prodml22__FracturedFiniteConductivityModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + { if (soap_in_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", &a->prodml23__FracturedFiniteConductivityModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) { soap_flag_FractureFaceSkin1--; continue; } } if (soap_flag_OrientationOfFracturePlane1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfFracturePlane(soap, "prodml22:OrientationOfFracturePlane", &a->prodml22__FracturedFiniteConductivityModel::OrientationOfFracturePlane, "prodml22:OrientationOfFracturePlane")) + { if (soap_in_PointerToprodml23__OrientationOfFracturePlane(soap, "prodml23:OrientationOfFracturePlane", &a->prodml23__FracturedFiniteConductivityModel::OrientationOfFracturePlane, "prodml23:OrientationOfFracturePlane")) { soap_flag_OrientationOfFracturePlane1--; continue; } } if (soap_flag_FractureConductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", &a->prodml22__FracturedFiniteConductivityModel::FractureConductivity, "prodml22:FractureConductivity")) + { if (soap_in_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", &a->prodml23__FracturedFiniteConductivityModel::FractureConductivity, "prodml23:FractureConductivity")) { soap_flag_FractureConductivity1--; continue; } } if (soap_flag_DistanceMidFractureHeightToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", &a->prodml22__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", &a->prodml23__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) { soap_flag_DistanceMidFractureHeightToBottomBoundary1--; continue; } } if (soap_flag_FractureHeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", &a->prodml22__FracturedFiniteConductivityModel::FractureHeight, "prodml22:FractureHeight")) + { if (soap_in_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", &a->prodml23__FracturedFiniteConductivityModel::FractureHeight, "prodml23:FractureHeight")) { soap_flag_FractureHeight1--; continue; } @@ -199047,7 +199042,7 @@ SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__FracturedFiniteConductivityModel::FractureHalfLength || !a->prodml22__FracturedFiniteConductivityModel::FractureConductivity)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__FracturedFiniteConductivityModel::FractureHalfLength || !a->prodml23__FracturedFiniteConductivityModel::FractureConductivity)) { soap->error = SOAP_OCCURS; return NULL; } @@ -199057,35 +199052,35 @@ SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__FracturedFiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel, sizeof(prodml22__FracturedFiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FracturedFiniteConductivityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel, sizeof(prodml23__FracturedFiniteConductivityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedFiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedFiniteConductivityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FracturedFiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FracturedFiniteConductivityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FracturedFiniteConductivityModel *p; - size_t k = sizeof(prodml22__FracturedFiniteConductivityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel, n, gsoap_eml2_3_fdelete); + prodml23__FracturedFiniteConductivityModel *p; + size_t k = sizeof(prodml23__FracturedFiniteConductivityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FracturedFiniteConductivityModel); + { p = SOAP_NEW(soap, prodml23__FracturedFiniteConductivityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FracturedFiniteConductivityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FracturedFiniteConductivityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FracturedFiniteConductivityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FracturedFiniteConductivityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -199095,92 +199090,92 @@ SOAP_FMAC1 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instanti return p; } -int prodml22__FracturedFiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FracturedFiniteConductivityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FracturedFiniteConductivityModel(soap, tag ? tag : "prodml22:FracturedFiniteConductivityModel", -2, this, type)) + if (soap_out_prodml23__FracturedFiniteConductivityModel(soap, tag ? tag : "prodml23:FracturedFiniteConductivityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FracturedFiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FracturedFiniteConductivityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FracturedFiniteConductivityModel(soap, this, tag, type); + return soap_get_prodml23__FracturedFiniteConductivityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedFiniteConductivityModel(struct soap *soap, prodml22__FracturedFiniteConductivityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedFiniteConductivityModel(struct soap *soap, prodml23__FracturedFiniteConductivityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FracturedFiniteConductivityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FracturedFiniteConductivityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FiniteRadiusModel::soap_default(struct soap *soap) +void prodml23__FiniteRadiusModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness = NULL; + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness = NULL; } -void prodml22__FiniteRadiusModel::soap_serialize(struct soap *soap) const +void prodml23__FiniteRadiusModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, &this->prodml22__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, &this->prodml23__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__FiniteRadiusModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FiniteRadiusModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FiniteRadiusModel(soap, tag, id, this, type); + return soap_out_prodml23__FiniteRadiusModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FiniteRadiusModel(struct soap *soap, const char *tag, int id, const prodml22__FiniteRadiusModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FiniteRadiusModel(struct soap *soap, const char *tag, int id, const prodml23__FiniteRadiusModel *a, const char *type) { if (!type) - type = "prodml22:FiniteRadiusModel"; + type = "prodml23:FiniteRadiusModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel), type ? type : "prodml22:FiniteRadiusModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel), type ? type : "prodml23:FiniteRadiusModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", -1, &a->prodml22__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", -1, &a->prodml23__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FiniteRadiusModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FiniteRadiusModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FiniteRadiusModel(soap, tag, this, type); + return soap_in_prodml23__FiniteRadiusModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml22__FiniteRadiusModel(struct soap *soap, const char *tag, prodml22__FiniteRadiusModel *a, const char *type) +SOAP_FMAC3 prodml23__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml23__FiniteRadiusModel(struct soap *soap, const char *tag, prodml23__FiniteRadiusModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FiniteRadiusModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel, sizeof(prodml22__FiniteRadiusModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FiniteRadiusModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel, sizeof(prodml23__FiniteRadiusModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FiniteRadiusModel *)a->soap_in(soap, tag, type); + return (prodml23__FiniteRadiusModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -199196,43 +199191,43 @@ SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml22__FiniteRadi for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_SkinLayer2RelativeToTotalThickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, "prodml22:SkinLayer2RelativeToTotalThickness", &a->prodml22__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness, "prodml22:SkinLayer2RelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, "prodml23:SkinLayer2RelativeToTotalThickness", &a->prodml23__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness, "prodml23:SkinLayer2RelativeToTotalThickness")) { soap_flag_SkinLayer2RelativeToTotalThickness1--; continue; } @@ -199246,7 +199241,7 @@ SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml22__FiniteRadi } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness)) { soap->error = SOAP_OCCURS; return NULL; } @@ -199256,35 +199251,35 @@ SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml22__FiniteRadi return NULL; } else - { a = (prodml22__FiniteRadiusModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel, sizeof(prodml22__FiniteRadiusModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FiniteRadiusModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel, sizeof(prodml23__FiniteRadiusModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml22__FiniteRadiusModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml23__FiniteRadiusModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FiniteRadiusModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FiniteRadiusModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FiniteRadiusModel *p; - size_t k = sizeof(prodml22__FiniteRadiusModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel, n, gsoap_eml2_3_fdelete); + prodml23__FiniteRadiusModel *p; + size_t k = sizeof(prodml23__FiniteRadiusModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FiniteRadiusModel); + { p = SOAP_NEW(soap, prodml23__FiniteRadiusModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FiniteRadiusModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FiniteRadiusModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FiniteRadiusModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FiniteRadiusModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -199294,136 +199289,136 @@ SOAP_FMAC1 prodml22__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml22__F return p; } -int prodml22__FiniteRadiusModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FiniteRadiusModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FiniteRadiusModel(soap, tag ? tag : "prodml22:FiniteRadiusModel", -2, this, type)) + if (soap_out_prodml23__FiniteRadiusModel(soap, tag ? tag : "prodml23:FiniteRadiusModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FiniteRadiusModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FiniteRadiusModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FiniteRadiusModel(soap, this, tag, type); + return soap_get_prodml23__FiniteRadiusModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_get_prodml22__FiniteRadiusModel(struct soap *soap, prodml22__FiniteRadiusModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FiniteRadiusModel * SOAP_FMAC4 soap_get_prodml23__FiniteRadiusModel(struct soap *soap, prodml23__FiniteRadiusModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FiniteRadiusModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FiniteRadiusModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DualPorosityTransientSpheresModel::soap_default(struct soap *soap) +void prodml23__DualPorosityTransientSpheresModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter = NULL; - this->prodml22__DualPorosityTransientSpheresModel::StorativityRatio = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter = NULL; + this->prodml23__DualPorosityTransientSpheresModel::StorativityRatio = NULL; } -void prodml22__DualPorosityTransientSpheresModel::soap_serialize(struct soap *soap) const +void prodml23__DualPorosityTransientSpheresModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, &this->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter); - soap_serialize_PointerToprodml22__StorativityRatio(soap, &this->prodml22__DualPorosityTransientSpheresModel::StorativityRatio); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, &this->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter); + soap_serialize_PointerToprodml23__StorativityRatio(soap, &this->prodml23__DualPorosityTransientSpheresModel::StorativityRatio); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__DualPorosityTransientSpheresModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DualPorosityTransientSpheresModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DualPorosityTransientSpheresModel(soap, tag, id, this, type); + return soap_out_prodml23__DualPorosityTransientSpheresModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, const char *tag, int id, const prodml22__DualPorosityTransientSpheresModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, const char *tag, int id, const prodml23__DualPorosityTransientSpheresModel *a, const char *type) { if (!type) - type = "prodml22:DualPorosityTransientSpheresModel"; + type = "prodml23:DualPorosityTransientSpheresModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel), type ? type : "prodml22:DualPorosityTransientSpheresModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel), type ? type : "prodml23:DualPorosityTransientSpheresModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter) - { if (soap_element_empty(soap, "prodml22:InterporosityFlowParameter", 0, NULL)) + if (!a->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter) + { if (soap_element_empty(soap, "prodml23:InterporosityFlowParameter", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", -1, &a->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + else if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", -1, &a->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) return soap->error; - if (!a->prodml22__DualPorosityTransientSpheresModel::StorativityRatio) - { if (soap_element_empty(soap, "prodml22:StorativityRatio", 0, NULL)) + if (!a->prodml23__DualPorosityTransientSpheresModel::StorativityRatio) + { if (soap_element_empty(soap, "prodml23:StorativityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", -1, &a->prodml22__DualPorosityTransientSpheresModel::StorativityRatio, "prodml22:StorativityRatio")) + else if (soap_out_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", -1, &a->prodml23__DualPorosityTransientSpheresModel::StorativityRatio, "prodml23:StorativityRatio")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DualPorosityTransientSpheresModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPorosityTransientSpheresModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DualPorosityTransientSpheresModel(soap, tag, this, type); + return soap_in_prodml23__DualPorosityTransientSpheresModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, const char *tag, prodml22__DualPorosityTransientSpheresModel *a, const char *type) +SOAP_FMAC3 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, const char *tag, prodml23__DualPorosityTransientSpheresModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DualPorosityTransientSpheresModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel, sizeof(prodml22__DualPorosityTransientSpheresModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DualPorosityTransientSpheresModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel, sizeof(prodml23__DualPorosityTransientSpheresModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DualPorosityTransientSpheresModel *)a->soap_in(soap, tag, type); + return (prodml23__DualPorosityTransientSpheresModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -199448,97 +199443,97 @@ SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prod for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InterporosityFlowParameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", &a->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + { if (soap_in_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", &a->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) { soap_flag_InterporosityFlowParameter1--; continue; } } if (soap_flag_StorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", &a->prodml22__DualPorosityTransientSpheresModel::StorativityRatio, "prodml22:StorativityRatio")) + { if (soap_in_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", &a->prodml23__DualPorosityTransientSpheresModel::StorativityRatio, "prodml23:StorativityRatio")) { soap_flag_StorativityRatio1--; continue; } @@ -199552,7 +199547,7 @@ SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prod } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter || !a->prodml22__DualPorosityTransientSpheresModel::StorativityRatio)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter || !a->prodml23__DualPorosityTransientSpheresModel::StorativityRatio)) { soap->error = SOAP_OCCURS; return NULL; } @@ -199562,35 +199557,35 @@ SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prod return NULL; } else - { a = (prodml22__DualPorosityTransientSpheresModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel, sizeof(prodml22__DualPorosityTransientSpheresModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DualPorosityTransientSpheresModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel, sizeof(prodml23__DualPorosityTransientSpheresModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DualPorosityTransientSpheresModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DualPorosityTransientSpheresModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DualPorosityTransientSpheresModel *p; - size_t k = sizeof(prodml22__DualPorosityTransientSpheresModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel, n, gsoap_eml2_3_fdelete); + prodml23__DualPorosityTransientSpheresModel *p; + size_t k = sizeof(prodml23__DualPorosityTransientSpheresModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DualPorosityTransientSpheresModel); + { p = SOAP_NEW(soap, prodml23__DualPorosityTransientSpheresModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DualPorosityTransientSpheresModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DualPorosityTransientSpheresModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DualPorosityTransientSpheresModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DualPorosityTransientSpheresModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -199600,136 +199595,136 @@ SOAP_FMAC1 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instant return p; } -int prodml22__DualPorosityTransientSpheresModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DualPorosityTransientSpheresModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DualPorosityTransientSpheresModel(soap, tag ? tag : "prodml22:DualPorosityTransientSpheresModel", -2, this, type)) + if (soap_out_prodml23__DualPorosityTransientSpheresModel(soap, tag ? tag : "prodml23:DualPorosityTransientSpheresModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DualPorosityTransientSpheresModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPorosityTransientSpheresModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DualPorosityTransientSpheresModel(soap, this, tag, type); + return soap_get_prodml23__DualPorosityTransientSpheresModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_get_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, prodml22__DualPorosityTransientSpheresModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_get_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, prodml23__DualPorosityTransientSpheresModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DualPorosityTransientSpheresModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__DualPorosityTransientSpheresModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DualPorosityTransientSlabsModel::soap_default(struct soap *soap) +void prodml23__DualPorosityTransientSlabsModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter = NULL; - this->prodml22__DualPorosityTransientSlabsModel::StorativityRatio = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter = NULL; + this->prodml23__DualPorosityTransientSlabsModel::StorativityRatio = NULL; } -void prodml22__DualPorosityTransientSlabsModel::soap_serialize(struct soap *soap) const +void prodml23__DualPorosityTransientSlabsModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, &this->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter); - soap_serialize_PointerToprodml22__StorativityRatio(soap, &this->prodml22__DualPorosityTransientSlabsModel::StorativityRatio); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, &this->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter); + soap_serialize_PointerToprodml23__StorativityRatio(soap, &this->prodml23__DualPorosityTransientSlabsModel::StorativityRatio); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__DualPorosityTransientSlabsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DualPorosityTransientSlabsModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DualPorosityTransientSlabsModel(soap, tag, id, this, type); + return soap_out_prodml23__DualPorosityTransientSlabsModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, const char *tag, int id, const prodml22__DualPorosityTransientSlabsModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, const char *tag, int id, const prodml23__DualPorosityTransientSlabsModel *a, const char *type) { if (!type) - type = "prodml22:DualPorosityTransientSlabsModel"; + type = "prodml23:DualPorosityTransientSlabsModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel), type ? type : "prodml22:DualPorosityTransientSlabsModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel), type ? type : "prodml23:DualPorosityTransientSlabsModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter) - { if (soap_element_empty(soap, "prodml22:InterporosityFlowParameter", 0, NULL)) + if (!a->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter) + { if (soap_element_empty(soap, "prodml23:InterporosityFlowParameter", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", -1, &a->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + else if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", -1, &a->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) return soap->error; - if (!a->prodml22__DualPorosityTransientSlabsModel::StorativityRatio) - { if (soap_element_empty(soap, "prodml22:StorativityRatio", 0, NULL)) + if (!a->prodml23__DualPorosityTransientSlabsModel::StorativityRatio) + { if (soap_element_empty(soap, "prodml23:StorativityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", -1, &a->prodml22__DualPorosityTransientSlabsModel::StorativityRatio, "prodml22:StorativityRatio")) + else if (soap_out_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", -1, &a->prodml23__DualPorosityTransientSlabsModel::StorativityRatio, "prodml23:StorativityRatio")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DualPorosityTransientSlabsModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPorosityTransientSlabsModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DualPorosityTransientSlabsModel(soap, tag, this, type); + return soap_in_prodml23__DualPorosityTransientSlabsModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, const char *tag, prodml22__DualPorosityTransientSlabsModel *a, const char *type) +SOAP_FMAC3 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, const char *tag, prodml23__DualPorosityTransientSlabsModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DualPorosityTransientSlabsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel, sizeof(prodml22__DualPorosityTransientSlabsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DualPorosityTransientSlabsModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel, sizeof(prodml23__DualPorosityTransientSlabsModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DualPorosityTransientSlabsModel *)a->soap_in(soap, tag, type); + return (prodml23__DualPorosityTransientSlabsModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -199754,97 +199749,97 @@ SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InterporosityFlowParameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", &a->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + { if (soap_in_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", &a->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) { soap_flag_InterporosityFlowParameter1--; continue; } } if (soap_flag_StorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", &a->prodml22__DualPorosityTransientSlabsModel::StorativityRatio, "prodml22:StorativityRatio")) + { if (soap_in_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", &a->prodml23__DualPorosityTransientSlabsModel::StorativityRatio, "prodml23:StorativityRatio")) { soap_flag_StorativityRatio1--; continue; } @@ -199858,7 +199853,7 @@ SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter || !a->prodml22__DualPorosityTransientSlabsModel::StorativityRatio)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter || !a->prodml23__DualPorosityTransientSlabsModel::StorativityRatio)) { soap->error = SOAP_OCCURS; return NULL; } @@ -199868,35 +199863,35 @@ SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml return NULL; } else - { a = (prodml22__DualPorosityTransientSlabsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel, sizeof(prodml22__DualPorosityTransientSlabsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DualPorosityTransientSlabsModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel, sizeof(prodml23__DualPorosityTransientSlabsModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DualPorosityTransientSlabsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DualPorosityTransientSlabsModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DualPorosityTransientSlabsModel *p; - size_t k = sizeof(prodml22__DualPorosityTransientSlabsModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel, n, gsoap_eml2_3_fdelete); + prodml23__DualPorosityTransientSlabsModel *p; + size_t k = sizeof(prodml23__DualPorosityTransientSlabsModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DualPorosityTransientSlabsModel); + { p = SOAP_NEW(soap, prodml23__DualPorosityTransientSlabsModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DualPorosityTransientSlabsModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DualPorosityTransientSlabsModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DualPorosityTransientSlabsModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DualPorosityTransientSlabsModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -199906,136 +199901,136 @@ SOAP_FMAC1 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantia return p; } -int prodml22__DualPorosityTransientSlabsModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DualPorosityTransientSlabsModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DualPorosityTransientSlabsModel(soap, tag ? tag : "prodml22:DualPorosityTransientSlabsModel", -2, this, type)) + if (soap_out_prodml23__DualPorosityTransientSlabsModel(soap, tag ? tag : "prodml23:DualPorosityTransientSlabsModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DualPorosityTransientSlabsModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPorosityTransientSlabsModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DualPorosityTransientSlabsModel(soap, this, tag, type); + return soap_get_prodml23__DualPorosityTransientSlabsModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_get_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, prodml22__DualPorosityTransientSlabsModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_get_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, prodml23__DualPorosityTransientSlabsModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DualPorosityTransientSlabsModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__DualPorosityTransientSlabsModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DualPorosityPseudoSteadyStateModel::soap_default(struct soap *soap) +void prodml23__DualPorosityPseudoSteadyStateModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter = NULL; - this->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter = NULL; + this->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio = NULL; } -void prodml22__DualPorosityPseudoSteadyStateModel::soap_serialize(struct soap *soap) const +void prodml23__DualPorosityPseudoSteadyStateModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, &this->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter); - soap_serialize_PointerToprodml22__StorativityRatio(soap, &this->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, &this->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter); + soap_serialize_PointerToprodml23__StorativityRatio(soap, &this->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__DualPorosityPseudoSteadyStateModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DualPorosityPseudoSteadyStateModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DualPorosityPseudoSteadyStateModel(soap, tag, id, this, type); + return soap_out_prodml23__DualPorosityPseudoSteadyStateModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *tag, int id, const prodml22__DualPorosityPseudoSteadyStateModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *tag, int id, const prodml23__DualPorosityPseudoSteadyStateModel *a, const char *type) { if (!type) - type = "prodml22:DualPorosityPseudoSteadyStateModel"; + type = "prodml23:DualPorosityPseudoSteadyStateModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel), type ? type : "prodml22:DualPorosityPseudoSteadyStateModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel), type ? type : "prodml23:DualPorosityPseudoSteadyStateModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter) - { if (soap_element_empty(soap, "prodml22:InterporosityFlowParameter", 0, NULL)) + if (!a->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter) + { if (soap_element_empty(soap, "prodml23:InterporosityFlowParameter", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", -1, &a->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + else if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", -1, &a->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) return soap->error; - if (!a->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio) - { if (soap_element_empty(soap, "prodml22:StorativityRatio", 0, NULL)) + if (!a->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio) + { if (soap_element_empty(soap, "prodml23:StorativityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", -1, &a->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio, "prodml22:StorativityRatio")) + else if (soap_out_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", -1, &a->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio, "prodml23:StorativityRatio")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DualPorosityPseudoSteadyStateModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPorosityPseudoSteadyStateModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DualPorosityPseudoSteadyStateModel(soap, tag, this, type); + return soap_in_prodml23__DualPorosityPseudoSteadyStateModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *tag, prodml22__DualPorosityPseudoSteadyStateModel *a, const char *type) +SOAP_FMAC3 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *tag, prodml23__DualPorosityPseudoSteadyStateModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DualPorosityPseudoSteadyStateModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel, sizeof(prodml22__DualPorosityPseudoSteadyStateModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DualPorosityPseudoSteadyStateModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel, sizeof(prodml23__DualPorosityPseudoSteadyStateModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DualPorosityPseudoSteadyStateModel *)a->soap_in(soap, tag, type); + return (prodml23__DualPorosityPseudoSteadyStateModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -200060,97 +200055,97 @@ SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InterporosityFlowParameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", &a->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + { if (soap_in_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", &a->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) { soap_flag_InterporosityFlowParameter1--; continue; } } if (soap_flag_StorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", &a->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio, "prodml22:StorativityRatio")) + { if (soap_in_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", &a->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio, "prodml23:StorativityRatio")) { soap_flag_StorativityRatio1--; continue; } @@ -200164,7 +200159,7 @@ SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter || !a->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter || !a->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio)) { soap->error = SOAP_OCCURS; return NULL; } @@ -200174,35 +200169,35 @@ SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__DualPorosityPseudoSteadyStateModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel, sizeof(prodml22__DualPorosityPseudoSteadyStateModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DualPorosityPseudoSteadyStateModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel, sizeof(prodml23__DualPorosityPseudoSteadyStateModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DualPorosityPseudoSteadyStateModel *p; - size_t k = sizeof(prodml22__DualPorosityPseudoSteadyStateModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel, n, gsoap_eml2_3_fdelete); + prodml23__DualPorosityPseudoSteadyStateModel *p; + size_t k = sizeof(prodml23__DualPorosityPseudoSteadyStateModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DualPorosityPseudoSteadyStateModel); + { p = SOAP_NEW(soap, prodml23__DualPorosityPseudoSteadyStateModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DualPorosityPseudoSteadyStateModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DualPorosityPseudoSteadyStateModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DualPorosityPseudoSteadyStateModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DualPorosityPseudoSteadyStateModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -200212,148 +200207,148 @@ SOAP_FMAC1 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instan return p; } -int prodml22__DualPorosityPseudoSteadyStateModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DualPorosityPseudoSteadyStateModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DualPorosityPseudoSteadyStateModel(soap, tag ? tag : "prodml22:DualPorosityPseudoSteadyStateModel", -2, this, type)) + if (soap_out_prodml23__DualPorosityPseudoSteadyStateModel(soap, tag ? tag : "prodml23:DualPorosityPseudoSteadyStateModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DualPorosityPseudoSteadyStateModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPorosityPseudoSteadyStateModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DualPorosityPseudoSteadyStateModel(soap, this, tag, type); + return soap_get_prodml23__DualPorosityPseudoSteadyStateModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_get_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml22__DualPorosityPseudoSteadyStateModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_get_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml23__DualPorosityPseudoSteadyStateModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DualPorosityPseudoSteadyStateModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__DualPorosityPseudoSteadyStateModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DualPermeabilityWithCrossflowModel::soap_default(struct soap *soap) +void prodml23__DualPermeabilityWithCrossflowModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter = NULL; - this->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio = NULL; - this->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct = NULL; - this->prodml22__DualPermeabilityWithCrossflowModel::Layer2Thickness = NULL; + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter = NULL; + this->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio = NULL; + this->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct = NULL; + this->prodml23__DualPermeabilityWithCrossflowModel::Layer2Thickness = NULL; } -void prodml22__DualPermeabilityWithCrossflowModel::soap_serialize(struct soap *soap) const +void prodml23__DualPermeabilityWithCrossflowModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, &this->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter); - soap_serialize_PointerToprodml22__StorativityRatio(soap, &this->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio); - soap_serialize_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, &this->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct); - soap_serialize_PointerToprodml22__Layer2Thickness(soap, &this->prodml22__DualPermeabilityWithCrossflowModel::Layer2Thickness); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, &this->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter); + soap_serialize_PointerToprodml23__StorativityRatio(soap, &this->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio); + soap_serialize_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, &this->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct); + soap_serialize_PointerToprodml23__Layer2Thickness(soap, &this->prodml23__DualPermeabilityWithCrossflowModel::Layer2Thickness); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__DualPermeabilityWithCrossflowModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DualPermeabilityWithCrossflowModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DualPermeabilityWithCrossflowModel(soap, tag, id, this, type); + return soap_out_prodml23__DualPermeabilityWithCrossflowModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *tag, int id, const prodml22__DualPermeabilityWithCrossflowModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *tag, int id, const prodml23__DualPermeabilityWithCrossflowModel *a, const char *type) { if (!type) - type = "prodml22:DualPermeabilityWithCrossflowModel"; + type = "prodml23:DualPermeabilityWithCrossflowModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel), type ? type : "prodml22:DualPermeabilityWithCrossflowModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel), type ? type : "prodml23:DualPermeabilityWithCrossflowModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter) - { if (soap_element_empty(soap, "prodml22:InterporosityFlowParameter", 0, NULL)) + if (!a->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter) + { if (soap_element_empty(soap, "prodml23:InterporosityFlowParameter", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", -1, &a->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + else if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", -1, &a->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) return soap->error; - if (!a->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio) - { if (soap_element_empty(soap, "prodml22:StorativityRatio", 0, NULL)) + if (!a->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio) + { if (soap_element_empty(soap, "prodml23:StorativityRatio", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", -1, &a->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio, "prodml22:StorativityRatio")) + else if (soap_out_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", -1, &a->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio, "prodml23:StorativityRatio")) return soap->error; - if (!a->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", -1, &a->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", -1, &a->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct")) return soap->error; - if (soap_out_PointerToprodml22__Layer2Thickness(soap, "prodml22:Layer2Thickness", -1, &a->prodml22__DualPermeabilityWithCrossflowModel::Layer2Thickness, "prodml22:Layer2Thickness")) + if (soap_out_PointerToprodml23__Layer2Thickness(soap, "prodml23:Layer2Thickness", -1, &a->prodml23__DualPermeabilityWithCrossflowModel::Layer2Thickness, "prodml23:Layer2Thickness")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DualPermeabilityWithCrossflowModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPermeabilityWithCrossflowModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DualPermeabilityWithCrossflowModel(soap, tag, this, type); + return soap_in_prodml23__DualPermeabilityWithCrossflowModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *tag, prodml22__DualPermeabilityWithCrossflowModel *a, const char *type) +SOAP_FMAC3 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *tag, prodml23__DualPermeabilityWithCrossflowModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DualPermeabilityWithCrossflowModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel, sizeof(prodml22__DualPermeabilityWithCrossflowModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DualPermeabilityWithCrossflowModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel, sizeof(prodml23__DualPermeabilityWithCrossflowModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DualPermeabilityWithCrossflowModel *)a->soap_in(soap, tag, type); + return (prodml23__DualPermeabilityWithCrossflowModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -200380,109 +200375,109 @@ SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_InterporosityFlowParameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterporosityFlowParameter", &a->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter, "prodml22:InterporosityFlowParameter")) + { if (soap_in_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterporosityFlowParameter", &a->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter, "prodml23:InterporosityFlowParameter")) { soap_flag_InterporosityFlowParameter1--; continue; } } if (soap_flag_StorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__StorativityRatio(soap, "prodml22:StorativityRatio", &a->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio, "prodml22:StorativityRatio")) + { if (soap_in_PointerToprodml23__StorativityRatio(soap, "prodml23:StorativityRatio", &a->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio, "prodml23:StorativityRatio")) { soap_flag_StorativityRatio1--; continue; } } if (soap_flag_RatioLayer1ToTotalPermeabilityThicknessProduct1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", &a->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", &a->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct")) { soap_flag_RatioLayer1ToTotalPermeabilityThicknessProduct1--; continue; } } if (soap_flag_Layer2Thickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Layer2Thickness(soap, "prodml22:Layer2Thickness", &a->prodml22__DualPermeabilityWithCrossflowModel::Layer2Thickness, "prodml22:Layer2Thickness")) + { if (soap_in_PointerToprodml23__Layer2Thickness(soap, "prodml23:Layer2Thickness", &a->prodml23__DualPermeabilityWithCrossflowModel::Layer2Thickness, "prodml23:Layer2Thickness")) { soap_flag_Layer2Thickness1--; continue; } @@ -200496,7 +200491,7 @@ SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter || !a->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio || !a->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter || !a->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio || !a->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct)) { soap->error = SOAP_OCCURS; return NULL; } @@ -200506,35 +200501,35 @@ SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__DualPermeabilityWithCrossflowModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel, sizeof(prodml22__DualPermeabilityWithCrossflowModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DualPermeabilityWithCrossflowModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel, sizeof(prodml23__DualPermeabilityWithCrossflowModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DualPermeabilityWithCrossflowModel *p; - size_t k = sizeof(prodml22__DualPermeabilityWithCrossflowModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel, n, gsoap_eml2_3_fdelete); + prodml23__DualPermeabilityWithCrossflowModel *p; + size_t k = sizeof(prodml23__DualPermeabilityWithCrossflowModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DualPermeabilityWithCrossflowModel); + { p = SOAP_NEW(soap, prodml23__DualPermeabilityWithCrossflowModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DualPermeabilityWithCrossflowModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DualPermeabilityWithCrossflowModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DualPermeabilityWithCrossflowModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DualPermeabilityWithCrossflowModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -200544,116 +200539,116 @@ SOAP_FMAC1 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instan return p; } -int prodml22__DualPermeabilityWithCrossflowModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DualPermeabilityWithCrossflowModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DualPermeabilityWithCrossflowModel(soap, tag ? tag : "prodml22:DualPermeabilityWithCrossflowModel", -2, this, type)) + if (soap_out_prodml23__DualPermeabilityWithCrossflowModel(soap, tag ? tag : "prodml23:DualPermeabilityWithCrossflowModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DualPermeabilityWithCrossflowModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DualPermeabilityWithCrossflowModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DualPermeabilityWithCrossflowModel(soap, this, tag, type); + return soap_get_prodml23__DualPermeabilityWithCrossflowModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_get_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml22__DualPermeabilityWithCrossflowModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_get_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml23__DualPermeabilityWithCrossflowModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DualPermeabilityWithCrossflowModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__DualPermeabilityWithCrossflowModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomWellboreModel::soap_default(struct soap *soap) +void prodml23__CustomWellboreModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellboreBaseModel::soap_default(soap); - this->prodml22__CustomWellboreModel::ModelName = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomWellboreModel::AnyParameter); - soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomWellboreModel::CustomParameter); + this->prodml23__WellboreBaseModel::soap_default(soap); + this->prodml23__CustomWellboreModel::ModelName = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomWellboreModel::AnyParameter); + soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomWellboreModel::CustomParameter); } -void prodml22__CustomWellboreModel::soap_serialize(struct soap *soap) const +void prodml23__CustomWellboreModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ModelName(soap, &this->prodml22__CustomWellboreModel::ModelName); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomWellboreModel::AnyParameter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomWellboreModel::CustomParameter); - this->prodml22__WellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ModelName(soap, &this->prodml23__CustomWellboreModel::ModelName); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomWellboreModel::AnyParameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomWellboreModel::CustomParameter); + this->prodml23__WellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__CustomWellboreModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomWellboreModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomWellboreModel(soap, tag, id, this, type); + return soap_out_prodml23__CustomWellboreModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomWellboreModel(struct soap *soap, const char *tag, int id, const prodml22__CustomWellboreModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomWellboreModel(struct soap *soap, const char *tag, int id, const prodml23__CustomWellboreModel *a, const char *type) { if (!type) - type = "prodml22:CustomWellboreModel"; + type = "prodml23:CustomWellboreModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel), type ? type : "prodml22:CustomWellboreModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel), type ? type : "prodml23:CustomWellboreModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; - if (!a->prodml22__CustomWellboreModel::ModelName) - { if (soap_element_empty(soap, "prodml22:ModelName", 0, NULL)) + if (!a->prodml23__CustomWellboreModel::ModelName) + { if (soap_element_empty(soap, "prodml23:ModelName", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__ModelName(soap, "prodml22:ModelName", -1, &a->prodml22__CustomWellboreModel::ModelName, "prodml22:ModelName")) + else if (soap_out_PointerToprodml23__ModelName(soap, "prodml23:ModelName", -1, &a->prodml23__CustomWellboreModel::ModelName, "prodml23:ModelName")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", -1, &a->prodml22__CustomWellboreModel::AnyParameter, "prodml22:AbstractParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", -1, &a->prodml23__CustomWellboreModel::AnyParameter, "prodml23:AbstractParameter")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", -1, &a->prodml22__CustomWellboreModel::CustomParameter, "prodml22:CustomParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", -1, &a->prodml23__CustomWellboreModel::CustomParameter, "prodml23:CustomParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomWellboreModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomWellboreModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomWellboreModel(soap, tag, this, type); + return soap_in_prodml23__CustomWellboreModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomWellboreModel(struct soap *soap, const char *tag, prodml22__CustomWellboreModel *a, const char *type) +SOAP_FMAC3 prodml23__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml23__CustomWellboreModel(struct soap *soap, const char *tag, prodml23__CustomWellboreModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomWellboreModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel, sizeof(prodml22__CustomWellboreModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomWellboreModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel, sizeof(prodml23__CustomWellboreModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomWellboreModel *)a->soap_in(soap, tag, type); + return (prodml23__CustomWellboreModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -200673,77 +200668,77 @@ SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomWe for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_WellboreRadius2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius2--; continue; } } if (soap_flag_WellboreStorageCoefficient2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient2--; continue; } } if (soap_flag_WellboreVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume2--; continue; } } if (soap_flag_WellboreFluidCompressibility2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility2--; continue; } } if (soap_flag_TubingInteralDiameter2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter2--; continue; } } if (soap_flag_FluidDensity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity2--; continue; } } if (soap_flag_WellboreDeviationAngle2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle2--; continue; } } if (soap_flag_WellboreStorageMechanismType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType2--; continue; } } if (soap_flag_ModelName1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ModelName(soap, "prodml22:ModelName", &a->prodml22__CustomWellboreModel::ModelName, "prodml22:ModelName")) + { if (soap_in_PointerToprodml23__ModelName(soap, "prodml23:ModelName", &a->prodml23__CustomWellboreModel::ModelName, "prodml23:ModelName")) { soap_flag_ModelName1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", &a->prodml22__CustomWellboreModel::AnyParameter, "prodml22:AbstractParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", &a->prodml23__CustomWellboreModel::AnyParameter, "prodml23:AbstractParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", &a->prodml22__CustomWellboreModel::CustomParameter, "prodml22:CustomParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", &a->prodml23__CustomWellboreModel::CustomParameter, "prodml23:CustomParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -200755,7 +200750,7 @@ SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomWe } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml22__CustomWellboreModel::ModelName)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml23__CustomWellboreModel::ModelName)) { soap->error = SOAP_OCCURS; return NULL; } @@ -200765,35 +200760,35 @@ SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomWe return NULL; } else - { a = (prodml22__CustomWellboreModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel, sizeof(prodml22__CustomWellboreModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomWellboreModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel, sizeof(prodml23__CustomWellboreModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomWellboreModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomWellboreModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomWellboreModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomWellboreModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomWellboreModel *p; - size_t k = sizeof(prodml22__CustomWellboreModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel, n, gsoap_eml2_3_fdelete); + prodml23__CustomWellboreModel *p; + size_t k = sizeof(prodml23__CustomWellboreModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomWellboreModel); + { p = SOAP_NEW(soap, prodml23__CustomWellboreModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomWellboreModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomWellboreModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomWellboreModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomWellboreModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -200803,136 +200798,136 @@ SOAP_FMAC1 prodml22__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__CustomWellboreModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomWellboreModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomWellboreModel(soap, tag ? tag : "prodml22:CustomWellboreModel", -2, this, type)) + if (soap_out_prodml23__CustomWellboreModel(soap, tag ? tag : "prodml23:CustomWellboreModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomWellboreModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomWellboreModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomWellboreModel(soap, this, tag, type); + return soap_get_prodml23__CustomWellboreModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_get_prodml22__CustomWellboreModel(struct soap *soap, prodml22__CustomWellboreModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomWellboreModel * SOAP_FMAC4 soap_get_prodml23__CustomWellboreModel(struct soap *soap, prodml23__CustomWellboreModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomWellboreModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomWellboreModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomReservoirModel::soap_default(struct soap *soap) +void prodml23__CustomReservoirModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReservoirBaseModel::soap_default(soap); - this->prodml22__CustomReservoirModel::ModelName = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomReservoirModel::AnyParameter); - soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomReservoirModel::CustomParameter); + this->prodml23__ReservoirBaseModel::soap_default(soap); + this->prodml23__CustomReservoirModel::ModelName = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomReservoirModel::AnyParameter); + soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomReservoirModel::CustomParameter); } -void prodml22__CustomReservoirModel::soap_serialize(struct soap *soap) const +void prodml23__CustomReservoirModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ModelName(soap, &this->prodml22__CustomReservoirModel::ModelName); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomReservoirModel::AnyParameter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomReservoirModel::CustomParameter); - this->prodml22__ReservoirBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ModelName(soap, &this->prodml23__CustomReservoirModel::ModelName); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomReservoirModel::AnyParameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomReservoirModel::CustomParameter); + this->prodml23__ReservoirBaseModel::soap_serialize(soap); #endif } -int prodml22__CustomReservoirModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomReservoirModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomReservoirModel(soap, tag, id, this, type); + return soap_out_prodml23__CustomReservoirModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomReservoirModel(struct soap *soap, const char *tag, int id, const prodml22__CustomReservoirModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomReservoirModel(struct soap *soap, const char *tag, int id, const prodml23__CustomReservoirModel *a, const char *type) { if (!type) - type = "prodml22:CustomReservoirModel"; + type = "prodml23:CustomReservoirModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel), type ? type : "prodml22:CustomReservoirModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel), type ? type : "prodml23:CustomReservoirModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability) - { if (soap_element_empty(soap, "prodml22:HorizontalRadialPermeability", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability) + { if (soap_element_empty(soap, "prodml23:HorizontalRadialPermeability", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", -1, &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + else if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", -1, &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::TotalThickness) - { if (soap_element_empty(soap, "prodml22:TotalThickness", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::TotalThickness) + { if (soap_element_empty(soap, "prodml23:TotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", -1, &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + else if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", -1, &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct) - { if (soap_element_empty(soap, "prodml22:PermeabilityThicknessProduct", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct) + { if (soap_element_empty(soap, "prodml23:PermeabilityThicknessProduct", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", -1, &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + else if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", -1, &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::Porosity) - { if (soap_element_empty(soap, "prodml22:Porosity", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::Porosity) + { if (soap_element_empty(soap, "prodml23:Porosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + else if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) return soap->error; - if (!a->prodml22__ReservoirBaseModel::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__ReservoirBaseModel::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", -1, &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + else if (soap_out_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", -1, &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) return soap->error; - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", -1, &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", -1, &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) return soap->error; - if (soap_out_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", -1, &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + if (soap_out_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", -1, &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) return soap->error; - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", -1, &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", -1, &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", -1, &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", -1, &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", -1, &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", -1, &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) return soap->error; - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", -1, &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", -1, &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) return soap->error; - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", -1, &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", -1, &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) return soap->error; - if (!a->prodml22__CustomReservoirModel::ModelName) - { if (soap_element_empty(soap, "prodml22:ModelName", 0, NULL)) + if (!a->prodml23__CustomReservoirModel::ModelName) + { if (soap_element_empty(soap, "prodml23:ModelName", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__ModelName(soap, "prodml22:ModelName", -1, &a->prodml22__CustomReservoirModel::ModelName, "prodml22:ModelName")) + else if (soap_out_PointerToprodml23__ModelName(soap, "prodml23:ModelName", -1, &a->prodml23__CustomReservoirModel::ModelName, "prodml23:ModelName")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", -1, &a->prodml22__CustomReservoirModel::AnyParameter, "prodml22:AbstractParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", -1, &a->prodml23__CustomReservoirModel::AnyParameter, "prodml23:AbstractParameter")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", -1, &a->prodml22__CustomReservoirModel::CustomParameter, "prodml22:CustomParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", -1, &a->prodml23__CustomReservoirModel::CustomParameter, "prodml23:CustomParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomReservoirModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomReservoirModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomReservoirModel(soap, tag, this, type); + return soap_in_prodml23__CustomReservoirModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml22__CustomReservoirModel(struct soap *soap, const char *tag, prodml22__CustomReservoirModel *a, const char *type) +SOAP_FMAC3 prodml23__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml23__CustomReservoirModel(struct soap *soap, const char *tag, prodml23__CustomReservoirModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomReservoirModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel, sizeof(prodml22__CustomReservoirModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomReservoirModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel, sizeof(prodml23__CustomReservoirModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomReservoirModel *)a->soap_in(soap, tag, type); + return (prodml23__CustomReservoirModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -200956,101 +200951,101 @@ SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml22__CustomR for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_HorizontalRadialPermeability2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:HorizontalRadialPermeability", &a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:HorizontalRadialPermeability", &a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_HorizontalRadialPermeability2--; continue; } } if (soap_flag_TotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:TotalThickness", &a->prodml22__ReservoirBaseModel::TotalThickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:TotalThickness", &a->prodml23__ReservoirBaseModel::TotalThickness, "prodml23:TotalThickness")) { soap_flag_TotalThickness2--; continue; } } if (soap_flag_PermeabilityThicknessProduct2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, "prodml22:PermeabilityThicknessProduct", &a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml22:PermeabilityThicknessProduct")) + { if (soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, "prodml23:PermeabilityThicknessProduct", &a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct, "prodml23:PermeabilityThicknessProduct")) { soap_flag_PermeabilityThicknessProduct2--; continue; } } if (soap_flag_Porosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirBaseModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirBaseModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity2--; continue; } } if (soap_flag_InitialPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InitialPressure(soap, "prodml22:InitialPressure", &a->prodml22__ReservoirBaseModel::InitialPressure, "prodml22:InitialPressure")) + { if (soap_in_PointerToprodml23__InitialPressure(soap, "prodml23:InitialPressure", &a->prodml23__ReservoirBaseModel::InitialPressure, "prodml23:InitialPressure")) { soap_flag_InitialPressure2--; continue; } } if (soap_flag_PressureDatumTVD2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PressureDatumTVD(soap, "prodml22:PressureDatumTVD", &a->prodml22__ReservoirBaseModel::PressureDatumTVD, "prodml22:PressureDatumTVD")) + { if (soap_in_PointerToprodml23__PressureDatumTVD(soap, "prodml23:PressureDatumTVD", &a->prodml23__ReservoirBaseModel::PressureDatumTVD, "prodml23:PressureDatumTVD")) { soap_flag_PressureDatumTVD2--; continue; } } if (soap_flag_AveragePressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AveragePressure(soap, "prodml22:AveragePressure", &a->prodml22__ReservoirBaseModel::AveragePressure, "prodml22:AveragePressure")) + { if (soap_in_PointerToprodml23__AveragePressure(soap, "prodml23:AveragePressure", &a->prodml23__ReservoirBaseModel::AveragePressure, "prodml23:AveragePressure")) { soap_flag_AveragePressure2--; continue; } } if (soap_flag_VerticalAnisotropyKvToKr2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, "prodml22:VerticalAnisotropyKvToKr", &a->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml22:VerticalAnisotropyKvToKr")) + { if (soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, "prodml23:VerticalAnisotropyKvToKr", &a->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr, "prodml23:VerticalAnisotropyKvToKr")) { soap_flag_VerticalAnisotropyKvToKr2--; continue; } } if (soap_flag_HorizontalAnisotropyKxToKy2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, "prodml22:HorizontalAnisotropyKxToKy", &a->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml22:HorizontalAnisotropyKxToKy")) + { if (soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, "prodml23:HorizontalAnisotropyKxToKy", &a->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy, "prodml23:HorizontalAnisotropyKxToKy")) { soap_flag_HorizontalAnisotropyKxToKy2--; continue; } } if (soap_flag_OrientationOfAnisotropyXDirection2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, "prodml22:OrientationOfAnisotropyXDirection", &a->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml22:OrientationOfAnisotropyXDirection")) + { if (soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, "prodml23:OrientationOfAnisotropyXDirection", &a->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection, "prodml23:OrientationOfAnisotropyXDirection")) { soap_flag_OrientationOfAnisotropyXDirection2--; continue; } } if (soap_flag_UpperBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__UpperBoundaryType(soap, "prodml22:UpperBoundaryType", &a->prodml22__ReservoirBaseModel::UpperBoundaryType, "prodml22:UpperBoundaryType")) + { if (soap_in_PointerToprodml23__UpperBoundaryType(soap, "prodml23:UpperBoundaryType", &a->prodml23__ReservoirBaseModel::UpperBoundaryType, "prodml23:UpperBoundaryType")) { soap_flag_UpperBoundaryType2--; continue; } } if (soap_flag_LowerBoundaryType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LowerBoundaryType(soap, "prodml22:LowerBoundaryType", &a->prodml22__ReservoirBaseModel::LowerBoundaryType, "prodml22:LowerBoundaryType")) + { if (soap_in_PointerToprodml23__LowerBoundaryType(soap, "prodml23:LowerBoundaryType", &a->prodml23__ReservoirBaseModel::LowerBoundaryType, "prodml23:LowerBoundaryType")) { soap_flag_LowerBoundaryType2--; continue; } } if (soap_flag_ModelName1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ModelName(soap, "prodml22:ModelName", &a->prodml22__CustomReservoirModel::ModelName, "prodml22:ModelName")) + { if (soap_in_PointerToprodml23__ModelName(soap, "prodml23:ModelName", &a->prodml23__CustomReservoirModel::ModelName, "prodml23:ModelName")) { soap_flag_ModelName1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", &a->prodml22__CustomReservoirModel::AnyParameter, "prodml22:AbstractParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", &a->prodml23__CustomReservoirModel::AnyParameter, "prodml23:AbstractParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", &a->prodml22__CustomReservoirModel::CustomParameter, "prodml22:CustomParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", &a->prodml23__CustomReservoirModel::CustomParameter, "prodml23:CustomParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -201062,7 +201057,7 @@ SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml22__CustomR } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml22__ReservoirBaseModel::TotalThickness || !a->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml22__ReservoirBaseModel::Porosity || !a->prodml22__ReservoirBaseModel::InitialPressure || !a->prodml22__CustomReservoirModel::ModelName)) + if ((!a->prodml23__ReservoirBaseModel::HorizontalRadialPermeability || !a->prodml23__ReservoirBaseModel::TotalThickness || !a->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct || !a->prodml23__ReservoirBaseModel::Porosity || !a->prodml23__ReservoirBaseModel::InitialPressure || !a->prodml23__CustomReservoirModel::ModelName)) { soap->error = SOAP_OCCURS; return NULL; } @@ -201072,35 +201067,35 @@ SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml22__CustomR return NULL; } else - { a = (prodml22__CustomReservoirModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel, sizeof(prodml22__CustomReservoirModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomReservoirModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel, sizeof(prodml23__CustomReservoirModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomReservoirModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomReservoirModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomReservoirModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomReservoirModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomReservoirModel *p; - size_t k = sizeof(prodml22__CustomReservoirModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel, n, gsoap_eml2_3_fdelete); + prodml23__CustomReservoirModel *p; + size_t k = sizeof(prodml23__CustomReservoirModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomReservoirModel); + { p = SOAP_NEW(soap, prodml23__CustomReservoirModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomReservoirModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomReservoirModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomReservoirModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomReservoirModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -201110,104 +201105,104 @@ SOAP_FMAC1 prodml22__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__CustomReservoirModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomReservoirModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomReservoirModel(soap, tag ? tag : "prodml22:CustomReservoirModel", -2, this, type)) + if (soap_out_prodml23__CustomReservoirModel(soap, tag ? tag : "prodml23:CustomReservoirModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomReservoirModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomReservoirModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomReservoirModel(soap, this, tag, type); + return soap_get_prodml23__CustomReservoirModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_get_prodml22__CustomReservoirModel(struct soap *soap, prodml22__CustomReservoirModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomReservoirModel * SOAP_FMAC4 soap_get_prodml23__CustomReservoirModel(struct soap *soap, prodml23__CustomReservoirModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomReservoirModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomReservoirModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomNearWellboreModel::soap_default(struct soap *soap) +void prodml23__CustomNearWellboreModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NearWellboreBaseModel::soap_default(soap); - this->prodml22__CustomNearWellboreModel::ModelName = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomNearWellboreModel::AnyParameter); - soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomNearWellboreModel::CustomParameter); + this->prodml23__NearWellboreBaseModel::soap_default(soap); + this->prodml23__CustomNearWellboreModel::ModelName = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomNearWellboreModel::AnyParameter); + soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomNearWellboreModel::CustomParameter); } -void prodml22__CustomNearWellboreModel::soap_serialize(struct soap *soap) const +void prodml23__CustomNearWellboreModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ModelName(soap, &this->prodml22__CustomNearWellboreModel::ModelName); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomNearWellboreModel::AnyParameter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomNearWellboreModel::CustomParameter); - this->prodml22__NearWellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ModelName(soap, &this->prodml23__CustomNearWellboreModel::ModelName); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomNearWellboreModel::AnyParameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomNearWellboreModel::CustomParameter); + this->prodml23__NearWellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__CustomNearWellboreModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomNearWellboreModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomNearWellboreModel(soap, tag, id, this, type); + return soap_out_prodml23__CustomNearWellboreModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomNearWellboreModel(struct soap *soap, const char *tag, int id, const prodml22__CustomNearWellboreModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomNearWellboreModel(struct soap *soap, const char *tag, int id, const prodml23__CustomNearWellboreModel *a, const char *type) { if (!type) - type = "prodml22:CustomNearWellboreModel"; + type = "prodml23:CustomNearWellboreModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel), type ? type : "prodml22:CustomNearWellboreModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel), type ? type : "prodml23:CustomNearWellboreModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness) - { if (soap_element_empty(soap, "prodml22:SkinRelativeToTotalThickness", 0, NULL)) + if (!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness) + { if (soap_element_empty(soap, "prodml23:SkinRelativeToTotalThickness", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", -1, &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + else if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", -1, &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) return soap->error; - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", -1, &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", -1, &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) return soap->error; - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", -1, &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", -1, &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) return soap->error; - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", -1, &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", -1, &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) return soap->error; - if (!a->prodml22__CustomNearWellboreModel::ModelName) - { if (soap_element_empty(soap, "prodml22:ModelName", 0, NULL)) + if (!a->prodml23__CustomNearWellboreModel::ModelName) + { if (soap_element_empty(soap, "prodml23:ModelName", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__ModelName(soap, "prodml22:ModelName", -1, &a->prodml22__CustomNearWellboreModel::ModelName, "prodml22:ModelName")) + else if (soap_out_PointerToprodml23__ModelName(soap, "prodml23:ModelName", -1, &a->prodml23__CustomNearWellboreModel::ModelName, "prodml23:ModelName")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", -1, &a->prodml22__CustomNearWellboreModel::AnyParameter, "prodml22:AbstractParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", -1, &a->prodml23__CustomNearWellboreModel::AnyParameter, "prodml23:AbstractParameter")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", -1, &a->prodml22__CustomNearWellboreModel::CustomParameter, "prodml22:CustomParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", -1, &a->prodml23__CustomNearWellboreModel::CustomParameter, "prodml23:CustomParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomNearWellboreModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomNearWellboreModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomNearWellboreModel(soap, tag, this, type); + return soap_in_prodml23__CustomNearWellboreModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomNearWellboreModel(struct soap *soap, const char *tag, prodml22__CustomNearWellboreModel *a, const char *type) +SOAP_FMAC3 prodml23__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml23__CustomNearWellboreModel(struct soap *soap, const char *tag, prodml23__CustomNearWellboreModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomNearWellboreModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel, sizeof(prodml22__CustomNearWellboreModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomNearWellboreModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel, sizeof(prodml23__CustomNearWellboreModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomNearWellboreModel *)a->soap_in(soap, tag, type); + return (prodml23__CustomNearWellboreModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -201223,53 +201218,53 @@ SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml22__Cust for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_SkinRelativeToTotalThickness2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, "prodml22:SkinRelativeToTotalThickness", &a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml22:SkinRelativeToTotalThickness")) + { if (soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, "prodml23:SkinRelativeToTotalThickness", &a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness, "prodml23:SkinRelativeToTotalThickness")) { soap_flag_SkinRelativeToTotalThickness2--; continue; } } if (soap_flag_RateDependentSkinFactor2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RateDependentSkinFactor(soap, "prodml22:RateDependentSkinFactor", &a->prodml22__NearWellboreBaseModel::RateDependentSkinFactor, "prodml22:RateDependentSkinFactor")) + { if (soap_in_PointerToprodml23__RateDependentSkinFactor(soap, "prodml23:RateDependentSkinFactor", &a->prodml23__NearWellboreBaseModel::RateDependentSkinFactor, "prodml23:RateDependentSkinFactor")) { soap_flag_RateDependentSkinFactor2--; continue; } } if (soap_flag_DeltaPressureTotalSkin2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, "prodml22:DeltaPressureTotalSkin", &a->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml22:DeltaPressureTotalSkin")) + { if (soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, "prodml23:DeltaPressureTotalSkin", &a->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin, "prodml23:DeltaPressureTotalSkin")) { soap_flag_DeltaPressureTotalSkin2--; continue; } } if (soap_flag_RatioDpSkinToTotalDrawdown2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, "prodml22:RatioDpSkinToTotalDrawdown", &a->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml22:RatioDpSkinToTotalDrawdown")) + { if (soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, "prodml23:RatioDpSkinToTotalDrawdown", &a->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown, "prodml23:RatioDpSkinToTotalDrawdown")) { soap_flag_RatioDpSkinToTotalDrawdown2--; continue; } } if (soap_flag_ModelName1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ModelName(soap, "prodml22:ModelName", &a->prodml22__CustomNearWellboreModel::ModelName, "prodml22:ModelName")) + { if (soap_in_PointerToprodml23__ModelName(soap, "prodml23:ModelName", &a->prodml23__CustomNearWellboreModel::ModelName, "prodml23:ModelName")) { soap_flag_ModelName1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", &a->prodml22__CustomNearWellboreModel::AnyParameter, "prodml22:AbstractParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", &a->prodml23__CustomNearWellboreModel::AnyParameter, "prodml23:AbstractParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", &a->prodml22__CustomNearWellboreModel::CustomParameter, "prodml22:CustomParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", &a->prodml23__CustomNearWellboreModel::CustomParameter, "prodml23:CustomParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -201281,7 +201276,7 @@ SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml22__Cust } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml22__CustomNearWellboreModel::ModelName)) + if ((!a->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness || !a->prodml23__CustomNearWellboreModel::ModelName)) { soap->error = SOAP_OCCURS; return NULL; } @@ -201291,35 +201286,35 @@ SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml22__Cust return NULL; } else - { a = (prodml22__CustomNearWellboreModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel, sizeof(prodml22__CustomNearWellboreModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomNearWellboreModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel, sizeof(prodml23__CustomNearWellboreModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomNearWellboreModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomNearWellboreModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomNearWellboreModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomNearWellboreModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomNearWellboreModel *p; - size_t k = sizeof(prodml22__CustomNearWellboreModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel, n, gsoap_eml2_3_fdelete); + prodml23__CustomNearWellboreModel *p; + size_t k = sizeof(prodml23__CustomNearWellboreModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomNearWellboreModel); + { p = SOAP_NEW(soap, prodml23__CustomNearWellboreModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomNearWellboreModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomNearWellboreModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomNearWellboreModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomNearWellboreModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -201329,96 +201324,96 @@ SOAP_FMAC1 prodml22__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__CustomNearWellboreModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomNearWellboreModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomNearWellboreModel(soap, tag ? tag : "prodml22:CustomNearWellboreModel", -2, this, type)) + if (soap_out_prodml23__CustomNearWellboreModel(soap, tag ? tag : "prodml23:CustomNearWellboreModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomNearWellboreModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomNearWellboreModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomNearWellboreModel(soap, this, tag, type); + return soap_get_prodml23__CustomNearWellboreModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_get_prodml22__CustomNearWellboreModel(struct soap *soap, prodml22__CustomNearWellboreModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomNearWellboreModel * SOAP_FMAC4 soap_get_prodml23__CustomNearWellboreModel(struct soap *soap, prodml23__CustomNearWellboreModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomNearWellboreModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomNearWellboreModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomBoundaryModel::soap_default(struct soap *soap) +void prodml23__CustomBoundaryModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__CustomBoundaryModel::ModelName = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomBoundaryModel::AnyParameter); - soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomBoundaryModel::CustomParameter); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__CustomBoundaryModel::ModelName = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomBoundaryModel::AnyParameter); + soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomBoundaryModel::CustomParameter); } -void prodml22__CustomBoundaryModel::soap_serialize(struct soap *soap) const +void prodml23__CustomBoundaryModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ModelName(soap, &this->prodml22__CustomBoundaryModel::ModelName); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__CustomBoundaryModel::AnyParameter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__CustomBoundaryModel::CustomParameter); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__ModelName(soap, &this->prodml23__CustomBoundaryModel::ModelName); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__CustomBoundaryModel::AnyParameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__CustomBoundaryModel::CustomParameter); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__CustomBoundaryModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomBoundaryModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomBoundaryModel(soap, tag, id, this, type); + return soap_out_prodml23__CustomBoundaryModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomBoundaryModel(struct soap *soap, const char *tag, int id, const prodml22__CustomBoundaryModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomBoundaryModel(struct soap *soap, const char *tag, int id, const prodml23__CustomBoundaryModel *a, const char *type) { if (!type) - type = "prodml22:CustomBoundaryModel"; + type = "prodml23:CustomBoundaryModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel), type ? type : "prodml22:CustomBoundaryModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel), type ? type : "prodml23:CustomBoundaryModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (!a->prodml22__CustomBoundaryModel::ModelName) - { if (soap_element_empty(soap, "prodml22:ModelName", 0, NULL)) + if (!a->prodml23__CustomBoundaryModel::ModelName) + { if (soap_element_empty(soap, "prodml23:ModelName", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__ModelName(soap, "prodml22:ModelName", -1, &a->prodml22__CustomBoundaryModel::ModelName, "prodml22:ModelName")) + else if (soap_out_PointerToprodml23__ModelName(soap, "prodml23:ModelName", -1, &a->prodml23__CustomBoundaryModel::ModelName, "prodml23:ModelName")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", -1, &a->prodml22__CustomBoundaryModel::AnyParameter, "prodml22:AbstractParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", -1, &a->prodml23__CustomBoundaryModel::AnyParameter, "prodml23:AbstractParameter")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", -1, &a->prodml22__CustomBoundaryModel::CustomParameter, "prodml22:CustomParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", -1, &a->prodml23__CustomBoundaryModel::CustomParameter, "prodml23:CustomParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomBoundaryModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomBoundaryModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomBoundaryModel(soap, tag, this, type); + return soap_in_prodml23__CustomBoundaryModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml22__CustomBoundaryModel(struct soap *soap, const char *tag, prodml22__CustomBoundaryModel *a, const char *type) +SOAP_FMAC3 prodml23__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml23__CustomBoundaryModel(struct soap *soap, const char *tag, prodml23__CustomBoundaryModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomBoundaryModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel, sizeof(prodml22__CustomBoundaryModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomBoundaryModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel, sizeof(prodml23__CustomBoundaryModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomBoundaryModel *)a->soap_in(soap, tag, type); + return (prodml23__CustomBoundaryModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -201432,41 +201427,41 @@ SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml22__CustomBo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_ModelName1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ModelName(soap, "prodml22:ModelName", &a->prodml22__CustomBoundaryModel::ModelName, "prodml22:ModelName")) + { if (soap_in_PointerToprodml23__ModelName(soap, "prodml23:ModelName", &a->prodml23__CustomBoundaryModel::ModelName, "prodml23:ModelName")) { soap_flag_ModelName1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", &a->prodml22__CustomBoundaryModel::AnyParameter, "prodml22:AbstractParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", &a->prodml23__CustomBoundaryModel::AnyParameter, "prodml23:AbstractParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", &a->prodml22__CustomBoundaryModel::CustomParameter, "prodml22:CustomParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", &a->prodml23__CustomBoundaryModel::CustomParameter, "prodml23:CustomParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -201478,7 +201473,7 @@ SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml22__CustomBo } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__CustomBoundaryModel::ModelName)) + if ((!a->prodml23__CustomBoundaryModel::ModelName)) { soap->error = SOAP_OCCURS; return NULL; } @@ -201488,35 +201483,35 @@ SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml22__CustomBo return NULL; } else - { a = (prodml22__CustomBoundaryModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel, sizeof(prodml22__CustomBoundaryModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomBoundaryModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel, sizeof(prodml23__CustomBoundaryModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomBoundaryModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomBoundaryModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomBoundaryModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomBoundaryModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomBoundaryModel *p; - size_t k = sizeof(prodml22__CustomBoundaryModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel, n, gsoap_eml2_3_fdelete); + prodml23__CustomBoundaryModel *p; + size_t k = sizeof(prodml23__CustomBoundaryModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomBoundaryModel); + { p = SOAP_NEW(soap, prodml23__CustomBoundaryModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomBoundaryModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomBoundaryModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomBoundaryModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomBoundaryModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -201526,100 +201521,100 @@ SOAP_FMAC1 prodml22__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__CustomBoundaryModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomBoundaryModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomBoundaryModel(soap, tag ? tag : "prodml22:CustomBoundaryModel", -2, this, type)) + if (soap_out_prodml23__CustomBoundaryModel(soap, tag ? tag : "prodml23:CustomBoundaryModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomBoundaryModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomBoundaryModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomBoundaryModel(soap, this, tag, type); + return soap_get_prodml23__CustomBoundaryModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_get_prodml22__CustomBoundaryModel(struct soap *soap, prodml22__CustomBoundaryModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomBoundaryModel * SOAP_FMAC4 soap_get_prodml23__CustomBoundaryModel(struct soap *soap, prodml23__CustomBoundaryModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomBoundaryModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomBoundaryModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ConstantStorageModel::soap_default(struct soap *soap) +void prodml23__ConstantStorageModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellboreBaseModel::soap_default(soap); + this->prodml23__WellboreBaseModel::soap_default(soap); } -void prodml22__ConstantStorageModel::soap_serialize(struct soap *soap) const +void prodml23__ConstantStorageModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__WellboreBaseModel::soap_serialize(soap); + this->prodml23__WellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__ConstantStorageModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ConstantStorageModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ConstantStorageModel(soap, tag, id, this, type); + return soap_out_prodml23__ConstantStorageModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantStorageModel(struct soap *soap, const char *tag, int id, const prodml22__ConstantStorageModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantStorageModel(struct soap *soap, const char *tag, int id, const prodml23__ConstantStorageModel *a, const char *type) { if (!type) - type = "prodml22:ConstantStorageModel"; + type = "prodml23:ConstantStorageModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel), type ? type : "prodml22:ConstantStorageModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel), type ? type : "prodml23:ConstantStorageModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ConstantStorageModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantStorageModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ConstantStorageModel(soap, tag, this, type); + return soap_in_prodml23__ConstantStorageModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml22__ConstantStorageModel(struct soap *soap, const char *tag, prodml22__ConstantStorageModel *a, const char *type) +SOAP_FMAC3 prodml23__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml23__ConstantStorageModel(struct soap *soap, const char *tag, prodml23__ConstantStorageModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ConstantStorageModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel, sizeof(prodml22__ConstantStorageModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ConstantStorageModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel, sizeof(prodml23__ConstantStorageModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ConstantStorageModel *)a->soap_in(soap, tag, type); + return (prodml23__ConstantStorageModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -201638,61 +201633,61 @@ SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml22__Constan for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_WellboreRadius2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius2--; continue; } } if (soap_flag_WellboreStorageCoefficient2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient2--; continue; } } if (soap_flag_WellboreVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume2--; continue; } } if (soap_flag_WellboreFluidCompressibility2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility2--; continue; } } if (soap_flag_TubingInteralDiameter2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter2--; continue; } } if (soap_flag_FluidDensity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity2--; continue; } } if (soap_flag_WellboreDeviationAngle2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle2--; continue; } } if (soap_flag_WellboreStorageMechanismType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType2--; continue; } @@ -201706,7 +201701,7 @@ SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml22__Constan } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient)) { soap->error = SOAP_OCCURS; return NULL; } @@ -201716,35 +201711,35 @@ SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml22__Constan return NULL; } else - { a = (prodml22__ConstantStorageModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel, sizeof(prodml22__ConstantStorageModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantStorageModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel, sizeof(prodml23__ConstantStorageModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml22__ConstantStorageModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml23__ConstantStorageModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ConstantStorageModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ConstantStorageModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ConstantStorageModel *p; - size_t k = sizeof(prodml22__ConstantStorageModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel, n, gsoap_eml2_3_fdelete); + prodml23__ConstantStorageModel *p; + size_t k = sizeof(prodml23__ConstantStorageModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ConstantStorageModel); + { p = SOAP_NEW(soap, prodml23__ConstantStorageModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ConstantStorageModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ConstantStorageModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ConstantStorageModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ConstantStorageModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -201754,136 +201749,136 @@ SOAP_FMAC1 prodml22__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__ConstantStorageModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ConstantStorageModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ConstantStorageModel(soap, tag ? tag : "prodml22:ConstantStorageModel", -2, this, type)) + if (soap_out_prodml23__ConstantStorageModel(soap, tag ? tag : "prodml23:ConstantStorageModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ConstantStorageModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantStorageModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ConstantStorageModel(soap, this, tag, type); + return soap_get_prodml23__ConstantStorageModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_get_prodml22__ConstantStorageModel(struct soap *soap, prodml22__ConstantStorageModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantStorageModel * SOAP_FMAC4 soap_get_prodml23__ConstantStorageModel(struct soap *soap, prodml23__ConstantStorageModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ConstantStorageModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ConstantStorageModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ClosedRectangleModel::soap_default(struct soap *soap) +void prodml23__ClosedRectangleModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - this->prodml22__ClosedRectangleModel::DrainageAreaMeasured = NULL; - this->prodml22__ClosedRectangleModel::PoreVolumeMeasured = NULL; - this->prodml22__ClosedRectangleModel::DistanceToBoundary1 = NULL; - this->prodml22__ClosedRectangleModel::DistanceToBoundary2 = NULL; - this->prodml22__ClosedRectangleModel::DistanceToBoundary3 = NULL; - this->prodml22__ClosedRectangleModel::DistanceToBoundary4 = NULL; - this->prodml22__ClosedRectangleModel::OrientationOfNormalToBoundary1 = NULL; - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__ClosedRectangleModel::Boundary1Type); - soap_default_prodml22__Boundary2Type(soap, &this->prodml22__ClosedRectangleModel::Boundary2Type); - soap_default_prodml22__Boundary3Type(soap, &this->prodml22__ClosedRectangleModel::Boundary3Type); - soap_default_prodml22__Boundary4Type(soap, &this->prodml22__ClosedRectangleModel::Boundary4Type); + this->prodml23__BoundaryBaseModel::soap_default(soap); + this->prodml23__ClosedRectangleModel::DrainageAreaMeasured = NULL; + this->prodml23__ClosedRectangleModel::PoreVolumeMeasured = NULL; + this->prodml23__ClosedRectangleModel::DistanceToBoundary1 = NULL; + this->prodml23__ClosedRectangleModel::DistanceToBoundary2 = NULL; + this->prodml23__ClosedRectangleModel::DistanceToBoundary3 = NULL; + this->prodml23__ClosedRectangleModel::DistanceToBoundary4 = NULL; + this->prodml23__ClosedRectangleModel::OrientationOfNormalToBoundary1 = NULL; + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__ClosedRectangleModel::Boundary1Type); + soap_default_prodml23__Boundary2Type(soap, &this->prodml23__ClosedRectangleModel::Boundary2Type); + soap_default_prodml23__Boundary3Type(soap, &this->prodml23__ClosedRectangleModel::Boundary3Type); + soap_default_prodml23__Boundary4Type(soap, &this->prodml23__ClosedRectangleModel::Boundary4Type); } -void prodml22__ClosedRectangleModel::soap_serialize(struct soap *soap) const +void prodml23__ClosedRectangleModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DrainageAreaMeasured(soap, &this->prodml22__ClosedRectangleModel::DrainageAreaMeasured); - soap_serialize_PointerToprodml22__PoreVolumeMeasured(soap, &this->prodml22__ClosedRectangleModel::PoreVolumeMeasured); - soap_serialize_PointerToprodml22__DistanceToBoundary1(soap, &this->prodml22__ClosedRectangleModel::DistanceToBoundary1); - soap_serialize_PointerToprodml22__DistanceToBoundary2(soap, &this->prodml22__ClosedRectangleModel::DistanceToBoundary2); - soap_serialize_PointerToprodml22__DistanceToBoundary3(soap, &this->prodml22__ClosedRectangleModel::DistanceToBoundary3); - soap_serialize_PointerToprodml22__DistanceToBoundary4(soap, &this->prodml22__ClosedRectangleModel::DistanceToBoundary4); - soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(soap, &this->prodml22__ClosedRectangleModel::OrientationOfNormalToBoundary1); - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__DrainageAreaMeasured(soap, &this->prodml23__ClosedRectangleModel::DrainageAreaMeasured); + soap_serialize_PointerToprodml23__PoreVolumeMeasured(soap, &this->prodml23__ClosedRectangleModel::PoreVolumeMeasured); + soap_serialize_PointerToprodml23__DistanceToBoundary1(soap, &this->prodml23__ClosedRectangleModel::DistanceToBoundary1); + soap_serialize_PointerToprodml23__DistanceToBoundary2(soap, &this->prodml23__ClosedRectangleModel::DistanceToBoundary2); + soap_serialize_PointerToprodml23__DistanceToBoundary3(soap, &this->prodml23__ClosedRectangleModel::DistanceToBoundary3); + soap_serialize_PointerToprodml23__DistanceToBoundary4(soap, &this->prodml23__ClosedRectangleModel::DistanceToBoundary4); + soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(soap, &this->prodml23__ClosedRectangleModel::OrientationOfNormalToBoundary1); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__ClosedRectangleModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ClosedRectangleModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ClosedRectangleModel(soap, tag, id, this, type); + return soap_out_prodml23__ClosedRectangleModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ClosedRectangleModel(struct soap *soap, const char *tag, int id, const prodml22__ClosedRectangleModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ClosedRectangleModel(struct soap *soap, const char *tag, int id, const prodml23__ClosedRectangleModel *a, const char *type) { if (!type) - type = "prodml22:ClosedRectangleModel"; + type = "prodml23:ClosedRectangleModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel), type ? type : "prodml22:ClosedRectangleModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel), type ? type : "prodml23:ClosedRectangleModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__DrainageAreaMeasured(soap, "prodml22:DrainageAreaMeasured", -1, &a->prodml22__ClosedRectangleModel::DrainageAreaMeasured, "prodml22:DrainageAreaMeasured")) + if (soap_out_PointerToprodml23__DrainageAreaMeasured(soap, "prodml23:DrainageAreaMeasured", -1, &a->prodml23__ClosedRectangleModel::DrainageAreaMeasured, "prodml23:DrainageAreaMeasured")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeMeasured(soap, "prodml22:PoreVolumeMeasured", -1, &a->prodml22__ClosedRectangleModel::PoreVolumeMeasured, "prodml22:PoreVolumeMeasured")) + if (soap_out_PointerToprodml23__PoreVolumeMeasured(soap, "prodml23:PoreVolumeMeasured", -1, &a->prodml23__ClosedRectangleModel::PoreVolumeMeasured, "prodml23:PoreVolumeMeasured")) return soap->error; - if (!a->prodml22__ClosedRectangleModel::DistanceToBoundary1) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary1", 0, NULL)) + if (!a->prodml23__ClosedRectangleModel::DistanceToBoundary1) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary1", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", -1, &a->prodml22__ClosedRectangleModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + else if (soap_out_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", -1, &a->prodml23__ClosedRectangleModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) return soap->error; - if (!a->prodml22__ClosedRectangleModel::DistanceToBoundary2) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary2", 0, NULL)) + if (!a->prodml23__ClosedRectangleModel::DistanceToBoundary2) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary2", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary2(soap, "prodml22:DistanceToBoundary2", -1, &a->prodml22__ClosedRectangleModel::DistanceToBoundary2, "prodml22:DistanceToBoundary2")) + else if (soap_out_PointerToprodml23__DistanceToBoundary2(soap, "prodml23:DistanceToBoundary2", -1, &a->prodml23__ClosedRectangleModel::DistanceToBoundary2, "prodml23:DistanceToBoundary2")) return soap->error; - if (!a->prodml22__ClosedRectangleModel::DistanceToBoundary3) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary3", 0, NULL)) + if (!a->prodml23__ClosedRectangleModel::DistanceToBoundary3) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary3", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary3(soap, "prodml22:DistanceToBoundary3", -1, &a->prodml22__ClosedRectangleModel::DistanceToBoundary3, "prodml22:DistanceToBoundary3")) + else if (soap_out_PointerToprodml23__DistanceToBoundary3(soap, "prodml23:DistanceToBoundary3", -1, &a->prodml23__ClosedRectangleModel::DistanceToBoundary3, "prodml23:DistanceToBoundary3")) return soap->error; - if (!a->prodml22__ClosedRectangleModel::DistanceToBoundary4) - { if (soap_element_empty(soap, "prodml22:DistanceToBoundary4", 0, NULL)) + if (!a->prodml23__ClosedRectangleModel::DistanceToBoundary4) + { if (soap_element_empty(soap, "prodml23:DistanceToBoundary4", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DistanceToBoundary4(soap, "prodml22:DistanceToBoundary4", -1, &a->prodml22__ClosedRectangleModel::DistanceToBoundary4, "prodml22:DistanceToBoundary4")) + else if (soap_out_PointerToprodml23__DistanceToBoundary4(soap, "prodml23:DistanceToBoundary4", -1, &a->prodml23__ClosedRectangleModel::DistanceToBoundary4, "prodml23:DistanceToBoundary4")) return soap->error; - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", -1, &a->prodml22__ClosedRectangleModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", -1, &a->prodml23__ClosedRectangleModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", -1, &a->prodml22__ClosedRectangleModel::Boundary1Type, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", -1, &a->prodml23__ClosedRectangleModel::Boundary1Type, "prodml23:Boundary1Type")) return soap->error; - if (soap_out_prodml22__Boundary2Type(soap, "prodml22:Boundary2Type", -1, &a->prodml22__ClosedRectangleModel::Boundary2Type, "prodml22:Boundary2Type")) + if (soap_out_prodml23__Boundary2Type(soap, "prodml23:Boundary2Type", -1, &a->prodml23__ClosedRectangleModel::Boundary2Type, "prodml23:Boundary2Type")) return soap->error; - if (soap_out_prodml22__Boundary3Type(soap, "prodml22:Boundary3Type", -1, &a->prodml22__ClosedRectangleModel::Boundary3Type, "prodml22:Boundary3Type")) + if (soap_out_prodml23__Boundary3Type(soap, "prodml23:Boundary3Type", -1, &a->prodml23__ClosedRectangleModel::Boundary3Type, "prodml23:Boundary3Type")) return soap->error; - if (soap_out_prodml22__Boundary4Type(soap, "prodml22:Boundary4Type", -1, &a->prodml22__ClosedRectangleModel::Boundary4Type, "prodml22:Boundary4Type")) + if (soap_out_prodml23__Boundary4Type(soap, "prodml23:Boundary4Type", -1, &a->prodml23__ClosedRectangleModel::Boundary4Type, "prodml23:Boundary4Type")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ClosedRectangleModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ClosedRectangleModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ClosedRectangleModel(soap, tag, this, type); + return soap_in_prodml23__ClosedRectangleModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml22__ClosedRectangleModel(struct soap *soap, const char *tag, prodml22__ClosedRectangleModel *a, const char *type) +SOAP_FMAC3 prodml23__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml23__ClosedRectangleModel(struct soap *soap, const char *tag, prodml23__ClosedRectangleModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ClosedRectangleModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel, sizeof(prodml22__ClosedRectangleModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ClosedRectangleModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel, sizeof(prodml23__ClosedRectangleModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ClosedRectangleModel *)a->soap_in(soap, tag, type); + return (prodml23__ClosedRectangleModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -201907,91 +201902,91 @@ SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml22__ClosedR for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_DrainageAreaMeasured1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DrainageAreaMeasured(soap, "prodml22:DrainageAreaMeasured", &a->prodml22__ClosedRectangleModel::DrainageAreaMeasured, "prodml22:DrainageAreaMeasured")) + { if (soap_in_PointerToprodml23__DrainageAreaMeasured(soap, "prodml23:DrainageAreaMeasured", &a->prodml23__ClosedRectangleModel::DrainageAreaMeasured, "prodml23:DrainageAreaMeasured")) { soap_flag_DrainageAreaMeasured1--; continue; } } if (soap_flag_PoreVolumeMeasured1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeMeasured(soap, "prodml22:PoreVolumeMeasured", &a->prodml22__ClosedRectangleModel::PoreVolumeMeasured, "prodml22:PoreVolumeMeasured")) + { if (soap_in_PointerToprodml23__PoreVolumeMeasured(soap, "prodml23:PoreVolumeMeasured", &a->prodml23__ClosedRectangleModel::PoreVolumeMeasured, "prodml23:PoreVolumeMeasured")) { soap_flag_PoreVolumeMeasured1--; continue; } } if (soap_flag_DistanceToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary1(soap, "prodml22:DistanceToBoundary1", &a->prodml22__ClosedRectangleModel::DistanceToBoundary1, "prodml22:DistanceToBoundary1")) + { if (soap_in_PointerToprodml23__DistanceToBoundary1(soap, "prodml23:DistanceToBoundary1", &a->prodml23__ClosedRectangleModel::DistanceToBoundary1, "prodml23:DistanceToBoundary1")) { soap_flag_DistanceToBoundary11--; continue; } } if (soap_flag_DistanceToBoundary21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary2(soap, "prodml22:DistanceToBoundary2", &a->prodml22__ClosedRectangleModel::DistanceToBoundary2, "prodml22:DistanceToBoundary2")) + { if (soap_in_PointerToprodml23__DistanceToBoundary2(soap, "prodml23:DistanceToBoundary2", &a->prodml23__ClosedRectangleModel::DistanceToBoundary2, "prodml23:DistanceToBoundary2")) { soap_flag_DistanceToBoundary21--; continue; } } if (soap_flag_DistanceToBoundary31 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary3(soap, "prodml22:DistanceToBoundary3", &a->prodml22__ClosedRectangleModel::DistanceToBoundary3, "prodml22:DistanceToBoundary3")) + { if (soap_in_PointerToprodml23__DistanceToBoundary3(soap, "prodml23:DistanceToBoundary3", &a->prodml23__ClosedRectangleModel::DistanceToBoundary3, "prodml23:DistanceToBoundary3")) { soap_flag_DistanceToBoundary31--; continue; } } if (soap_flag_DistanceToBoundary41 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceToBoundary4(soap, "prodml22:DistanceToBoundary4", &a->prodml22__ClosedRectangleModel::DistanceToBoundary4, "prodml22:DistanceToBoundary4")) + { if (soap_in_PointerToprodml23__DistanceToBoundary4(soap, "prodml23:DistanceToBoundary4", &a->prodml23__ClosedRectangleModel::DistanceToBoundary4, "prodml23:DistanceToBoundary4")) { soap_flag_DistanceToBoundary41--; continue; } } if (soap_flag_OrientationOfNormalToBoundary11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, "prodml22:OrientationOfNormalToBoundary1", &a->prodml22__ClosedRectangleModel::OrientationOfNormalToBoundary1, "prodml22:OrientationOfNormalToBoundary1")) + { if (soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, "prodml23:OrientationOfNormalToBoundary1", &a->prodml23__ClosedRectangleModel::OrientationOfNormalToBoundary1, "prodml23:OrientationOfNormalToBoundary1")) { soap_flag_OrientationOfNormalToBoundary11--; continue; } } if (soap_flag_Boundary1Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", &a->prodml22__ClosedRectangleModel::Boundary1Type, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", &a->prodml23__ClosedRectangleModel::Boundary1Type, "prodml23:Boundary1Type")) { soap_flag_Boundary1Type1--; continue; } } if (soap_flag_Boundary2Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary2Type(soap, "prodml22:Boundary2Type", &a->prodml22__ClosedRectangleModel::Boundary2Type, "prodml22:Boundary2Type")) + { if (soap_in_prodml23__Boundary2Type(soap, "prodml23:Boundary2Type", &a->prodml23__ClosedRectangleModel::Boundary2Type, "prodml23:Boundary2Type")) { soap_flag_Boundary2Type1--; continue; } } if (soap_flag_Boundary3Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary3Type(soap, "prodml22:Boundary3Type", &a->prodml22__ClosedRectangleModel::Boundary3Type, "prodml22:Boundary3Type")) + { if (soap_in_prodml23__Boundary3Type(soap, "prodml23:Boundary3Type", &a->prodml23__ClosedRectangleModel::Boundary3Type, "prodml23:Boundary3Type")) { soap_flag_Boundary3Type1--; continue; } } if (soap_flag_Boundary4Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary4Type(soap, "prodml22:Boundary4Type", &a->prodml22__ClosedRectangleModel::Boundary4Type, "prodml22:Boundary4Type")) + { if (soap_in_prodml23__Boundary4Type(soap, "prodml23:Boundary4Type", &a->prodml23__ClosedRectangleModel::Boundary4Type, "prodml23:Boundary4Type")) { soap_flag_Boundary4Type1--; continue; } @@ -202005,7 +202000,7 @@ SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml22__ClosedR } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ClosedRectangleModel::DistanceToBoundary1 || !a->prodml22__ClosedRectangleModel::DistanceToBoundary2 || !a->prodml22__ClosedRectangleModel::DistanceToBoundary3 || !a->prodml22__ClosedRectangleModel::DistanceToBoundary4 || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary2Type1 > 0 || soap_flag_Boundary3Type1 > 0 || soap_flag_Boundary4Type1 > 0)) + if ((!a->prodml23__ClosedRectangleModel::DistanceToBoundary1 || !a->prodml23__ClosedRectangleModel::DistanceToBoundary2 || !a->prodml23__ClosedRectangleModel::DistanceToBoundary3 || !a->prodml23__ClosedRectangleModel::DistanceToBoundary4 || soap_flag_Boundary1Type1 > 0 || soap_flag_Boundary2Type1 > 0 || soap_flag_Boundary3Type1 > 0 || soap_flag_Boundary4Type1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -202015,35 +202010,35 @@ SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml22__ClosedR return NULL; } else - { a = (prodml22__ClosedRectangleModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel, sizeof(prodml22__ClosedRectangleModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ClosedRectangleModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel, sizeof(prodml23__ClosedRectangleModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml22__ClosedRectangleModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml23__ClosedRectangleModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ClosedRectangleModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ClosedRectangleModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ClosedRectangleModel *p; - size_t k = sizeof(prodml22__ClosedRectangleModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel, n, gsoap_eml2_3_fdelete); + prodml23__ClosedRectangleModel *p; + size_t k = sizeof(prodml23__ClosedRectangleModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ClosedRectangleModel); + { p = SOAP_NEW(soap, prodml23__ClosedRectangleModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ClosedRectangleModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ClosedRectangleModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ClosedRectangleModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ClosedRectangleModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -202053,83 +202048,83 @@ SOAP_FMAC1 prodml22__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__ClosedRectangleModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ClosedRectangleModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ClosedRectangleModel(soap, tag ? tag : "prodml22:ClosedRectangleModel", -2, this, type)) + if (soap_out_prodml23__ClosedRectangleModel(soap, tag ? tag : "prodml23:ClosedRectangleModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ClosedRectangleModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ClosedRectangleModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ClosedRectangleModel(soap, this, tag, type); + return soap_get_prodml23__ClosedRectangleModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_get_prodml22__ClosedRectangleModel(struct soap *soap, prodml22__ClosedRectangleModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ClosedRectangleModel * SOAP_FMAC4 soap_get_prodml23__ClosedRectangleModel(struct soap *soap, prodml23__ClosedRectangleModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ClosedRectangleModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ClosedRectangleModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ClosedCircleModel::soap_default(struct soap *soap) +void prodml23__ClosedCircleModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__BoundaryBaseModel::soap_default(soap); - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__ClosedCircleModel::Boundary1Type); + this->prodml23__BoundaryBaseModel::soap_default(soap); + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__ClosedCircleModel::Boundary1Type); } -void prodml22__ClosedCircleModel::soap_serialize(struct soap *soap) const +void prodml23__ClosedCircleModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__BoundaryBaseModel::soap_serialize(soap); + this->prodml23__BoundaryBaseModel::soap_serialize(soap); #endif } -int prodml22__ClosedCircleModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ClosedCircleModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ClosedCircleModel(soap, tag, id, this, type); + return soap_out_prodml23__ClosedCircleModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ClosedCircleModel(struct soap *soap, const char *tag, int id, const prodml22__ClosedCircleModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ClosedCircleModel(struct soap *soap, const char *tag, int id, const prodml23__ClosedCircleModel *a, const char *type) { if (!type) - type = "prodml22:ClosedCircleModel"; + type = "prodml23:ClosedCircleModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel), type ? type : "prodml22:ClosedCircleModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel), type ? type : "prodml23:ClosedCircleModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", -1, &a->prodml22__ClosedCircleModel::Boundary1Type, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", -1, &a->prodml23__ClosedCircleModel::Boundary1Type, "prodml23:Boundary1Type")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ClosedCircleModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ClosedCircleModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ClosedCircleModel(soap, tag, this, type); + return soap_in_prodml23__ClosedCircleModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ClosedCircleModel * SOAP_FMAC4 soap_in_prodml22__ClosedCircleModel(struct soap *soap, const char *tag, prodml22__ClosedCircleModel *a, const char *type) +SOAP_FMAC3 prodml23__ClosedCircleModel * SOAP_FMAC4 soap_in_prodml23__ClosedCircleModel(struct soap *soap, const char *tag, prodml23__ClosedCircleModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ClosedCircleModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel, sizeof(prodml22__ClosedCircleModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ClosedCircleModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel, sizeof(prodml23__ClosedCircleModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ClosedCircleModel *)a->soap_in(soap, tag, type); + return (prodml23__ClosedCircleModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -202143,31 +202138,31 @@ SOAP_FMAC3 prodml22__ClosedCircleModel * SOAP_FMAC4 soap_in_prodml22__ClosedCirc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_RadiusOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation2--; continue; } } if (soap_flag_PoreVolumeOfInvestigation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation2--; continue; } } if (soap_flag_Boundary1Type1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:Boundary1Type", &a->prodml22__ClosedCircleModel::Boundary1Type, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:Boundary1Type", &a->prodml23__ClosedCircleModel::Boundary1Type, "prodml23:Boundary1Type")) { soap_flag_Boundary1Type1--; continue; } @@ -202191,35 +202186,35 @@ SOAP_FMAC3 prodml22__ClosedCircleModel * SOAP_FMAC4 soap_in_prodml22__ClosedCirc return NULL; } else - { a = (prodml22__ClosedCircleModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel, sizeof(prodml22__ClosedCircleModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ClosedCircleModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel, sizeof(prodml23__ClosedCircleModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml22__ClosedCircleModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml23__ClosedCircleModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ClosedCircleModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ClosedCircleModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ClosedCircleModel *p; - size_t k = sizeof(prodml22__ClosedCircleModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel, n, gsoap_eml2_3_fdelete); + prodml23__ClosedCircleModel *p; + size_t k = sizeof(prodml23__ClosedCircleModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ClosedCircleModel); + { p = SOAP_NEW(soap, prodml23__ClosedCircleModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ClosedCircleModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ClosedCircleModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ClosedCircleModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ClosedCircleModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -202229,116 +202224,116 @@ SOAP_FMAC1 prodml22__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml22__C return p; } -int prodml22__ClosedCircleModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ClosedCircleModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ClosedCircleModel(soap, tag ? tag : "prodml22:ClosedCircleModel", -2, this, type)) + if (soap_out_prodml23__ClosedCircleModel(soap, tag ? tag : "prodml23:ClosedCircleModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ClosedCircleModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ClosedCircleModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ClosedCircleModel(soap, this, tag, type); + return soap_get_prodml23__ClosedCircleModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ClosedCircleModel * SOAP_FMAC4 soap_get_prodml22__ClosedCircleModel(struct soap *soap, prodml22__ClosedCircleModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ClosedCircleModel * SOAP_FMAC4 soap_get_prodml23__ClosedCircleModel(struct soap *soap, prodml23__ClosedCircleModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ClosedCircleModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ClosedCircleModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ChangingStorageSpiveyPackerModel::soap_default(struct soap *soap) +void prodml23__ChangingStorageSpiveyPackerModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellboreBaseModel::soap_default(soap); - this->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage = NULL; - this->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin = NULL; + this->prodml23__WellboreBaseModel::soap_default(soap); + this->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage = NULL; + this->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin = NULL; } -void prodml22__ChangingStorageSpiveyPackerModel::soap_serialize(struct soap *soap) const +void prodml23__ChangingStorageSpiveyPackerModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, &this->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage); - soap_serialize_PointerToprodml22__LeakSkin(soap, &this->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin); - this->prodml22__WellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, &this->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage); + soap_serialize_PointerToprodml23__LeakSkin(soap, &this->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin); + this->prodml23__WellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__ChangingStorageSpiveyPackerModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ChangingStorageSpiveyPackerModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ChangingStorageSpiveyPackerModel(soap, tag, id, this, type); + return soap_out_prodml23__ChangingStorageSpiveyPackerModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *tag, int id, const prodml22__ChangingStorageSpiveyPackerModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *tag, int id, const prodml23__ChangingStorageSpiveyPackerModel *a, const char *type) { if (!type) - type = "prodml22:ChangingStorageSpiveyPackerModel"; + type = "prodml23:ChangingStorageSpiveyPackerModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel), type ? type : "prodml22:ChangingStorageSpiveyPackerModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel), type ? type : "prodml23:ChangingStorageSpiveyPackerModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; - if (!a->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage) - { if (soap_element_empty(soap, "prodml22:RatioInitialToFinalWellboreStorage", 0, NULL)) + if (!a->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage) + { if (soap_element_empty(soap, "prodml23:RatioInitialToFinalWellboreStorage", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", -1, &a->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + else if (soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", -1, &a->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) return soap->error; - if (!a->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin) - { if (soap_element_empty(soap, "prodml22:LeakSkin", 0, NULL)) + if (!a->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin) + { if (soap_element_empty(soap, "prodml23:LeakSkin", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LeakSkin(soap, "prodml22:LeakSkin", -1, &a->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin, "prodml22:LeakSkin")) + else if (soap_out_PointerToprodml23__LeakSkin(soap, "prodml23:LeakSkin", -1, &a->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin, "prodml23:LeakSkin")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ChangingStorageSpiveyPackerModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageSpiveyPackerModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ChangingStorageSpiveyPackerModel(soap, tag, this, type); + return soap_in_prodml23__ChangingStorageSpiveyPackerModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *tag, prodml22__ChangingStorageSpiveyPackerModel *a, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *tag, prodml23__ChangingStorageSpiveyPackerModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ChangingStorageSpiveyPackerModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel, sizeof(prodml22__ChangingStorageSpiveyPackerModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ChangingStorageSpiveyPackerModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel, sizeof(prodml23__ChangingStorageSpiveyPackerModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ChangingStorageSpiveyPackerModel *)a->soap_in(soap, tag, type); + return (prodml23__ChangingStorageSpiveyPackerModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -202359,73 +202354,73 @@ SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_WellboreRadius2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius2--; continue; } } if (soap_flag_WellboreStorageCoefficient2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient2--; continue; } } if (soap_flag_WellboreVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume2--; continue; } } if (soap_flag_WellboreFluidCompressibility2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility2--; continue; } } if (soap_flag_TubingInteralDiameter2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter2--; continue; } } if (soap_flag_FluidDensity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity2--; continue; } } if (soap_flag_WellboreDeviationAngle2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle2--; continue; } } if (soap_flag_WellboreStorageMechanismType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType2--; continue; } } if (soap_flag_RatioInitialToFinalWellboreStorage1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", &a->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + { if (soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", &a->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) { soap_flag_RatioInitialToFinalWellboreStorage1--; continue; } } if (soap_flag_LeakSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LeakSkin(soap, "prodml22:LeakSkin", &a->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin, "prodml22:LeakSkin")) + { if (soap_in_PointerToprodml23__LeakSkin(soap, "prodml23:LeakSkin", &a->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin, "prodml23:LeakSkin")) { soap_flag_LeakSkin1--; continue; } @@ -202439,7 +202434,7 @@ SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage || !a->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage || !a->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin)) { soap->error = SOAP_OCCURS; return NULL; } @@ -202449,35 +202444,35 @@ SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__ChangingStorageSpiveyPackerModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel, sizeof(prodml22__ChangingStorageSpiveyPackerModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ChangingStorageSpiveyPackerModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel, sizeof(prodml23__ChangingStorageSpiveyPackerModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ChangingStorageSpiveyPackerModel *p; - size_t k = sizeof(prodml22__ChangingStorageSpiveyPackerModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel, n, gsoap_eml2_3_fdelete); + prodml23__ChangingStorageSpiveyPackerModel *p; + size_t k = sizeof(prodml23__ChangingStorageSpiveyPackerModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ChangingStorageSpiveyPackerModel); + { p = SOAP_NEW(soap, prodml23__ChangingStorageSpiveyPackerModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ChangingStorageSpiveyPackerModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ChangingStorageSpiveyPackerModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ChangingStorageSpiveyPackerModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ChangingStorageSpiveyPackerModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -202487,116 +202482,116 @@ SOAP_FMAC1 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instanti return p; } -int prodml22__ChangingStorageSpiveyPackerModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ChangingStorageSpiveyPackerModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ChangingStorageSpiveyPackerModel(soap, tag ? tag : "prodml22:ChangingStorageSpiveyPackerModel", -2, this, type)) + if (soap_out_prodml23__ChangingStorageSpiveyPackerModel(soap, tag ? tag : "prodml23:ChangingStorageSpiveyPackerModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ChangingStorageSpiveyPackerModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageSpiveyPackerModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ChangingStorageSpiveyPackerModel(soap, this, tag, type); + return soap_get_prodml23__ChangingStorageSpiveyPackerModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml22__ChangingStorageSpiveyPackerModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml23__ChangingStorageSpiveyPackerModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ChangingStorageSpiveyPackerModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ChangingStorageSpiveyPackerModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ChangingStorageSpiveyFissuresModel::soap_default(struct soap *soap) +void prodml23__ChangingStorageSpiveyFissuresModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellboreBaseModel::soap_default(soap); - this->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage = NULL; - this->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin = NULL; + this->prodml23__WellboreBaseModel::soap_default(soap); + this->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage = NULL; + this->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin = NULL; } -void prodml22__ChangingStorageSpiveyFissuresModel::soap_serialize(struct soap *soap) const +void prodml23__ChangingStorageSpiveyFissuresModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, &this->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage); - soap_serialize_PointerToprodml22__LeakSkin(soap, &this->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin); - this->prodml22__WellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, &this->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage); + soap_serialize_PointerToprodml23__LeakSkin(soap, &this->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin); + this->prodml23__WellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__ChangingStorageSpiveyFissuresModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ChangingStorageSpiveyFissuresModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ChangingStorageSpiveyFissuresModel(soap, tag, id, this, type); + return soap_out_prodml23__ChangingStorageSpiveyFissuresModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *tag, int id, const prodml22__ChangingStorageSpiveyFissuresModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *tag, int id, const prodml23__ChangingStorageSpiveyFissuresModel *a, const char *type) { if (!type) - type = "prodml22:ChangingStorageSpiveyFissuresModel"; + type = "prodml23:ChangingStorageSpiveyFissuresModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel), type ? type : "prodml22:ChangingStorageSpiveyFissuresModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel), type ? type : "prodml23:ChangingStorageSpiveyFissuresModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; - if (!a->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage) - { if (soap_element_empty(soap, "prodml22:RatioInitialToFinalWellboreStorage", 0, NULL)) + if (!a->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage) + { if (soap_element_empty(soap, "prodml23:RatioInitialToFinalWellboreStorage", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", -1, &a->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + else if (soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", -1, &a->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) return soap->error; - if (!a->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin) - { if (soap_element_empty(soap, "prodml22:LeakSkin", 0, NULL)) + if (!a->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin) + { if (soap_element_empty(soap, "prodml23:LeakSkin", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LeakSkin(soap, "prodml22:LeakSkin", -1, &a->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin, "prodml22:LeakSkin")) + else if (soap_out_PointerToprodml23__LeakSkin(soap, "prodml23:LeakSkin", -1, &a->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin, "prodml23:LeakSkin")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ChangingStorageSpiveyFissuresModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageSpiveyFissuresModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ChangingStorageSpiveyFissuresModel(soap, tag, this, type); + return soap_in_prodml23__ChangingStorageSpiveyFissuresModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *tag, prodml22__ChangingStorageSpiveyFissuresModel *a, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *tag, prodml23__ChangingStorageSpiveyFissuresModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ChangingStorageSpiveyFissuresModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel, sizeof(prodml22__ChangingStorageSpiveyFissuresModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ChangingStorageSpiveyFissuresModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel, sizeof(prodml23__ChangingStorageSpiveyFissuresModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ChangingStorageSpiveyFissuresModel *)a->soap_in(soap, tag, type); + return (prodml23__ChangingStorageSpiveyFissuresModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -202617,73 +202612,73 @@ SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_pro for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_WellboreRadius2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius2--; continue; } } if (soap_flag_WellboreStorageCoefficient2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient2--; continue; } } if (soap_flag_WellboreVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume2--; continue; } } if (soap_flag_WellboreFluidCompressibility2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility2--; continue; } } if (soap_flag_TubingInteralDiameter2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter2--; continue; } } if (soap_flag_FluidDensity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity2--; continue; } } if (soap_flag_WellboreDeviationAngle2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle2--; continue; } } if (soap_flag_WellboreStorageMechanismType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType2--; continue; } } if (soap_flag_RatioInitialToFinalWellboreStorage1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", &a->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + { if (soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", &a->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) { soap_flag_RatioInitialToFinalWellboreStorage1--; continue; } } if (soap_flag_LeakSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LeakSkin(soap, "prodml22:LeakSkin", &a->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin, "prodml22:LeakSkin")) + { if (soap_in_PointerToprodml23__LeakSkin(soap, "prodml23:LeakSkin", &a->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin, "prodml23:LeakSkin")) { soap_flag_LeakSkin1--; continue; } @@ -202697,7 +202692,7 @@ SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_pro } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage || !a->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage || !a->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin)) { soap->error = SOAP_OCCURS; return NULL; } @@ -202707,35 +202702,35 @@ SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_pro return NULL; } else - { a = (prodml22__ChangingStorageSpiveyFissuresModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel, sizeof(prodml22__ChangingStorageSpiveyFissuresModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ChangingStorageSpiveyFissuresModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel, sizeof(prodml23__ChangingStorageSpiveyFissuresModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ChangingStorageSpiveyFissuresModel *p; - size_t k = sizeof(prodml22__ChangingStorageSpiveyFissuresModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel, n, gsoap_eml2_3_fdelete); + prodml23__ChangingStorageSpiveyFissuresModel *p; + size_t k = sizeof(prodml23__ChangingStorageSpiveyFissuresModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ChangingStorageSpiveyFissuresModel); + { p = SOAP_NEW(soap, prodml23__ChangingStorageSpiveyFissuresModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ChangingStorageSpiveyFissuresModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ChangingStorageSpiveyFissuresModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ChangingStorageSpiveyFissuresModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ChangingStorageSpiveyFissuresModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -202745,116 +202740,116 @@ SOAP_FMAC1 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instan return p; } -int prodml22__ChangingStorageSpiveyFissuresModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ChangingStorageSpiveyFissuresModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ChangingStorageSpiveyFissuresModel(soap, tag ? tag : "prodml22:ChangingStorageSpiveyFissuresModel", -2, this, type)) + if (soap_out_prodml23__ChangingStorageSpiveyFissuresModel(soap, tag ? tag : "prodml23:ChangingStorageSpiveyFissuresModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ChangingStorageSpiveyFissuresModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageSpiveyFissuresModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ChangingStorageSpiveyFissuresModel(soap, this, tag, type); + return soap_get_prodml23__ChangingStorageSpiveyFissuresModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml22__ChangingStorageSpiveyFissuresModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml23__ChangingStorageSpiveyFissuresModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ChangingStorageSpiveyFissuresModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ChangingStorageSpiveyFissuresModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ChangingStorageHegemanModel::soap_default(struct soap *soap) +void prodml23__ChangingStorageHegemanModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellboreBaseModel::soap_default(soap); - this->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage = NULL; - this->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges = NULL; + this->prodml23__WellboreBaseModel::soap_default(soap); + this->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage = NULL; + this->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges = NULL; } -void prodml22__ChangingStorageHegemanModel::soap_serialize(struct soap *soap) const +void prodml23__ChangingStorageHegemanModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, &this->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage); - soap_serialize_PointerToprodml22__DeltaTimeStorageChanges(soap, &this->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges); - this->prodml22__WellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, &this->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage); + soap_serialize_PointerToprodml23__DeltaTimeStorageChanges(soap, &this->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges); + this->prodml23__WellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__ChangingStorageHegemanModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ChangingStorageHegemanModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ChangingStorageHegemanModel(soap, tag, id, this, type); + return soap_out_prodml23__ChangingStorageHegemanModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageHegemanModel(struct soap *soap, const char *tag, int id, const prodml22__ChangingStorageHegemanModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageHegemanModel(struct soap *soap, const char *tag, int id, const prodml23__ChangingStorageHegemanModel *a, const char *type) { if (!type) - type = "prodml22:ChangingStorageHegemanModel"; + type = "prodml23:ChangingStorageHegemanModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel), type ? type : "prodml22:ChangingStorageHegemanModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel), type ? type : "prodml23:ChangingStorageHegemanModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; - if (!a->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage) - { if (soap_element_empty(soap, "prodml22:RatioInitialToFinalWellboreStorage", 0, NULL)) + if (!a->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage) + { if (soap_element_empty(soap, "prodml23:RatioInitialToFinalWellboreStorage", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", -1, &a->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + else if (soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", -1, &a->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) return soap->error; - if (!a->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges) - { if (soap_element_empty(soap, "prodml22:DeltaTimeStorageChanges", 0, NULL)) + if (!a->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges) + { if (soap_element_empty(soap, "prodml23:DeltaTimeStorageChanges", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DeltaTimeStorageChanges(soap, "prodml22:DeltaTimeStorageChanges", -1, &a->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges, "prodml22:DeltaTimeStorageChanges")) + else if (soap_out_PointerToprodml23__DeltaTimeStorageChanges(soap, "prodml23:DeltaTimeStorageChanges", -1, &a->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges, "prodml23:DeltaTimeStorageChanges")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ChangingStorageHegemanModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageHegemanModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ChangingStorageHegemanModel(soap, tag, this, type); + return soap_in_prodml23__ChangingStorageHegemanModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageHegemanModel(struct soap *soap, const char *tag, prodml22__ChangingStorageHegemanModel *a, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageHegemanModel(struct soap *soap, const char *tag, prodml23__ChangingStorageHegemanModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ChangingStorageHegemanModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel, sizeof(prodml22__ChangingStorageHegemanModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ChangingStorageHegemanModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel, sizeof(prodml23__ChangingStorageHegemanModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ChangingStorageHegemanModel *)a->soap_in(soap, tag, type); + return (prodml23__ChangingStorageHegemanModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -202875,73 +202870,73 @@ SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_WellboreRadius2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius2--; continue; } } if (soap_flag_WellboreStorageCoefficient2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient2--; continue; } } if (soap_flag_WellboreVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume2--; continue; } } if (soap_flag_WellboreFluidCompressibility2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility2--; continue; } } if (soap_flag_TubingInteralDiameter2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter2--; continue; } } if (soap_flag_FluidDensity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity2--; continue; } } if (soap_flag_WellboreDeviationAngle2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle2--; continue; } } if (soap_flag_WellboreStorageMechanismType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType2--; continue; } } if (soap_flag_RatioInitialToFinalWellboreStorage1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", &a->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + { if (soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", &a->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) { soap_flag_RatioInitialToFinalWellboreStorage1--; continue; } } if (soap_flag_DeltaTimeStorageChanges1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaTimeStorageChanges(soap, "prodml22:DeltaTimeStorageChanges", &a->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges, "prodml22:DeltaTimeStorageChanges")) + { if (soap_in_PointerToprodml23__DeltaTimeStorageChanges(soap, "prodml23:DeltaTimeStorageChanges", &a->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges, "prodml23:DeltaTimeStorageChanges")) { soap_flag_DeltaTimeStorageChanges1--; continue; } @@ -202955,7 +202950,7 @@ SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml22__ } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage || !a->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage || !a->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges)) { soap->error = SOAP_OCCURS; return NULL; } @@ -202965,35 +202960,35 @@ SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__ChangingStorageHegemanModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel, sizeof(prodml22__ChangingStorageHegemanModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ChangingStorageHegemanModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel, sizeof(prodml23__ChangingStorageHegemanModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageHegemanModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageHegemanModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ChangingStorageHegemanModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ChangingStorageHegemanModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ChangingStorageHegemanModel *p; - size_t k = sizeof(prodml22__ChangingStorageHegemanModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel, n, gsoap_eml2_3_fdelete); + prodml23__ChangingStorageHegemanModel *p; + size_t k = sizeof(prodml23__ChangingStorageHegemanModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ChangingStorageHegemanModel); + { p = SOAP_NEW(soap, prodml23__ChangingStorageHegemanModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ChangingStorageHegemanModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ChangingStorageHegemanModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ChangingStorageHegemanModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ChangingStorageHegemanModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -203003,116 +202998,116 @@ SOAP_FMAC1 prodml22__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__ChangingStorageHegemanModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ChangingStorageHegemanModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ChangingStorageHegemanModel(soap, tag ? tag : "prodml22:ChangingStorageHegemanModel", -2, this, type)) + if (soap_out_prodml23__ChangingStorageHegemanModel(soap, tag ? tag : "prodml23:ChangingStorageHegemanModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ChangingStorageHegemanModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageHegemanModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ChangingStorageHegemanModel(soap, this, tag, type); + return soap_get_prodml23__ChangingStorageHegemanModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageHegemanModel(struct soap *soap, prodml22__ChangingStorageHegemanModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageHegemanModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageHegemanModel(struct soap *soap, prodml23__ChangingStorageHegemanModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ChangingStorageHegemanModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ChangingStorageHegemanModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ChangingStorageFairModel::soap_default(struct soap *soap) +void prodml23__ChangingStorageFairModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellboreBaseModel::soap_default(soap); - this->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage = NULL; - this->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges = NULL; + this->prodml23__WellboreBaseModel::soap_default(soap); + this->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage = NULL; + this->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges = NULL; } -void prodml22__ChangingStorageFairModel::soap_serialize(struct soap *soap) const +void prodml23__ChangingStorageFairModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, &this->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage); - soap_serialize_PointerToprodml22__DeltaTimeStorageChanges(soap, &this->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges); - this->prodml22__WellboreBaseModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, &this->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage); + soap_serialize_PointerToprodml23__DeltaTimeStorageChanges(soap, &this->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges); + this->prodml23__WellboreBaseModel::soap_serialize(soap); #endif } -int prodml22__ChangingStorageFairModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ChangingStorageFairModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ChangingStorageFairModel(soap, tag, id, this, type); + return soap_out_prodml23__ChangingStorageFairModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageFairModel(struct soap *soap, const char *tag, int id, const prodml22__ChangingStorageFairModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageFairModel(struct soap *soap, const char *tag, int id, const prodml23__ChangingStorageFairModel *a, const char *type) { if (!type) - type = "prodml22:ChangingStorageFairModel"; + type = "prodml23:ChangingStorageFairModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel), type ? type : "prodml22:ChangingStorageFairModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel), type ? type : "prodml23:ChangingStorageFairModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreRadius) - { if (soap_element_empty(soap, "prodml22:WellboreRadius", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreRadius) + { if (soap_element_empty(soap, "prodml23:WellboreRadius", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", -1, &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + else if (soap_out_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", -1, &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) return soap->error; - if (!a->prodml22__WellboreBaseModel::WellboreStorageCoefficient) - { if (soap_element_empty(soap, "prodml22:WellboreStorageCoefficient", 0, NULL)) + if (!a->prodml23__WellboreBaseModel::WellboreStorageCoefficient) + { if (soap_element_empty(soap, "prodml23:WellboreStorageCoefficient", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", -1, &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + else if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", -1, &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) return soap->error; - if (soap_out_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", -1, &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + if (soap_out_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", -1, &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) return soap->error; - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", -1, &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", -1, &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) return soap->error; - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", -1, &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", -1, &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) return soap->error; - if (soap_out_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", -1, &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + if (soap_out_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", -1, &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) return soap->error; - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", -1, &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", -1, &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) return soap->error; - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", -1, &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", -1, &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) return soap->error; - if (!a->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage) - { if (soap_element_empty(soap, "prodml22:RatioInitialToFinalWellboreStorage", 0, NULL)) + if (!a->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage) + { if (soap_element_empty(soap, "prodml23:RatioInitialToFinalWellboreStorage", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", -1, &a->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + else if (soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", -1, &a->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) return soap->error; - if (!a->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges) - { if (soap_element_empty(soap, "prodml22:DeltaTimeStorageChanges", 0, NULL)) + if (!a->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges) + { if (soap_element_empty(soap, "prodml23:DeltaTimeStorageChanges", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DeltaTimeStorageChanges(soap, "prodml22:DeltaTimeStorageChanges", -1, &a->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges, "prodml22:DeltaTimeStorageChanges")) + else if (soap_out_PointerToprodml23__DeltaTimeStorageChanges(soap, "prodml23:DeltaTimeStorageChanges", -1, &a->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges, "prodml23:DeltaTimeStorageChanges")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ChangingStorageFairModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageFairModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ChangingStorageFairModel(soap, tag, this, type); + return soap_in_prodml23__ChangingStorageFairModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageFairModel(struct soap *soap, const char *tag, prodml22__ChangingStorageFairModel *a, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageFairModel(struct soap *soap, const char *tag, prodml23__ChangingStorageFairModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ChangingStorageFairModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel, sizeof(prodml22__ChangingStorageFairModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ChangingStorageFairModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel, sizeof(prodml23__ChangingStorageFairModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ChangingStorageFairModel *)a->soap_in(soap, tag, type); + return (prodml23__ChangingStorageFairModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -203133,73 +203128,73 @@ SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml22__Cha for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment3--; continue; } } if (soap_flag_Method3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method3--; continue; } } if (soap_flag_WellboreRadius2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreRadius(soap, "prodml22:WellboreRadius", &a->prodml22__WellboreBaseModel::WellboreRadius, "prodml22:WellboreRadius")) + { if (soap_in_PointerToprodml23__WellboreRadius(soap, "prodml23:WellboreRadius", &a->prodml23__WellboreBaseModel::WellboreRadius, "prodml23:WellboreRadius")) { soap_flag_WellboreRadius2--; continue; } } if (soap_flag_WellboreStorageCoefficient2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, "prodml22:WellboreStorageCoefficient", &a->prodml22__WellboreBaseModel::WellboreStorageCoefficient, "prodml22:WellboreStorageCoefficient")) + { if (soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, "prodml23:WellboreStorageCoefficient", &a->prodml23__WellboreBaseModel::WellboreStorageCoefficient, "prodml23:WellboreStorageCoefficient")) { soap_flag_WellboreStorageCoefficient2--; continue; } } if (soap_flag_WellboreVolume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreVolume(soap, "prodml22:WellboreVolume", &a->prodml22__WellboreBaseModel::WellboreVolume, "prodml22:WellboreVolume")) + { if (soap_in_PointerToprodml23__WellboreVolume(soap, "prodml23:WellboreVolume", &a->prodml23__WellboreBaseModel::WellboreVolume, "prodml23:WellboreVolume")) { soap_flag_WellboreVolume2--; continue; } } if (soap_flag_WellboreFluidCompressibility2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, "prodml22:WellboreFluidCompressibility", &a->prodml22__WellboreBaseModel::WellboreFluidCompressibility, "prodml22:WellboreFluidCompressibility")) + { if (soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, "prodml23:WellboreFluidCompressibility", &a->prodml23__WellboreBaseModel::WellboreFluidCompressibility, "prodml23:WellboreFluidCompressibility")) { soap_flag_WellboreFluidCompressibility2--; continue; } } if (soap_flag_TubingInteralDiameter2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TubingInteralDiameter(soap, "prodml22:TubingInteralDiameter", &a->prodml22__WellboreBaseModel::TubingInteralDiameter, "prodml22:TubingInteralDiameter")) + { if (soap_in_PointerToprodml23__TubingInteralDiameter(soap, "prodml23:TubingInteralDiameter", &a->prodml23__WellboreBaseModel::TubingInteralDiameter, "prodml23:TubingInteralDiameter")) { soap_flag_TubingInteralDiameter2--; continue; } } if (soap_flag_FluidDensity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidDensity(soap, "prodml22:FluidDensity", &a->prodml22__WellboreBaseModel::FluidDensity, "prodml22:FluidDensity")) + { if (soap_in_PointerToprodml23__FluidDensity(soap, "prodml23:FluidDensity", &a->prodml23__WellboreBaseModel::FluidDensity, "prodml23:FluidDensity")) { soap_flag_FluidDensity2--; continue; } } if (soap_flag_WellboreDeviationAngle2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreDeviationAngle(soap, "prodml22:WellboreDeviationAngle", &a->prodml22__WellboreBaseModel::WellboreDeviationAngle, "prodml22:WellboreDeviationAngle")) + { if (soap_in_PointerToprodml23__WellboreDeviationAngle(soap, "prodml23:WellboreDeviationAngle", &a->prodml23__WellboreBaseModel::WellboreDeviationAngle, "prodml23:WellboreDeviationAngle")) { soap_flag_WellboreDeviationAngle2--; continue; } } if (soap_flag_WellboreStorageMechanismType2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, "prodml22:WellboreStorageMechanismType", &a->prodml22__WellboreBaseModel::WellboreStorageMechanismType, "prodml22:WellboreStorageMechanismType")) + { if (soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, "prodml23:WellboreStorageMechanismType", &a->prodml23__WellboreBaseModel::WellboreStorageMechanismType, "prodml23:WellboreStorageMechanismType")) { soap_flag_WellboreStorageMechanismType2--; continue; } } if (soap_flag_RatioInitialToFinalWellboreStorage1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, "prodml22:RatioInitialToFinalWellboreStorage", &a->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage, "prodml22:RatioInitialToFinalWellboreStorage")) + { if (soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, "prodml23:RatioInitialToFinalWellboreStorage", &a->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage, "prodml23:RatioInitialToFinalWellboreStorage")) { soap_flag_RatioInitialToFinalWellboreStorage1--; continue; } } if (soap_flag_DeltaTimeStorageChanges1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeltaTimeStorageChanges(soap, "prodml22:DeltaTimeStorageChanges", &a->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges, "prodml22:DeltaTimeStorageChanges")) + { if (soap_in_PointerToprodml23__DeltaTimeStorageChanges(soap, "prodml23:DeltaTimeStorageChanges", &a->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges, "prodml23:DeltaTimeStorageChanges")) { soap_flag_DeltaTimeStorageChanges1--; continue; } @@ -203213,7 +203208,7 @@ SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml22__Cha } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__WellboreBaseModel::WellboreRadius || !a->prodml22__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage || !a->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges)) + if ((!a->prodml23__WellboreBaseModel::WellboreRadius || !a->prodml23__WellboreBaseModel::WellboreStorageCoefficient || !a->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage || !a->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges)) { soap->error = SOAP_OCCURS; return NULL; } @@ -203223,35 +203218,35 @@ SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml22__Cha return NULL; } else - { a = (prodml22__ChangingStorageFairModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel, sizeof(prodml22__ChangingStorageFairModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ChangingStorageFairModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel, sizeof(prodml23__ChangingStorageFairModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageFairModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageFairModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ChangingStorageFairModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ChangingStorageFairModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ChangingStorageFairModel *p; - size_t k = sizeof(prodml22__ChangingStorageFairModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel, n, gsoap_eml2_3_fdelete); + prodml23__ChangingStorageFairModel *p; + size_t k = sizeof(prodml23__ChangingStorageFairModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ChangingStorageFairModel); + { p = SOAP_NEW(soap, prodml23__ChangingStorageFairModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ChangingStorageFairModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ChangingStorageFairModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ChangingStorageFairModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ChangingStorageFairModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -203261,84 +203256,84 @@ SOAP_FMAC1 prodml22__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__ChangingStorageFairModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ChangingStorageFairModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ChangingStorageFairModel(soap, tag ? tag : "prodml22:ChangingStorageFairModel", -2, this, type)) + if (soap_out_prodml23__ChangingStorageFairModel(soap, tag ? tag : "prodml23:ChangingStorageFairModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ChangingStorageFairModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChangingStorageFairModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ChangingStorageFairModel(soap, this, tag, type); + return soap_get_prodml23__ChangingStorageFairModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageFairModel(struct soap *soap, prodml22__ChangingStorageFairModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ChangingStorageFairModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageFairModel(struct soap *soap, prodml23__ChangingStorageFairModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ChangingStorageFairModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ChangingStorageFairModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__BoundaryBaseModel::soap_default(struct soap *soap) +void prodml23__BoundaryBaseModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractModelSection::soap_default(soap); - this->prodml22__BoundaryBaseModel::RadiusOfInvestigation = NULL; - this->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = NULL; + this->prodml23__AbstractModelSection::soap_default(soap); + this->prodml23__BoundaryBaseModel::RadiusOfInvestigation = NULL; + this->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = NULL; } -void prodml22__BoundaryBaseModel::soap_serialize(struct soap *soap) const +void prodml23__BoundaryBaseModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__RadiusOfInvestigation(soap, &this->prodml22__BoundaryBaseModel::RadiusOfInvestigation); - soap_serialize_PointerToprodml22__PoreVolumeOfInvestigation(soap, &this->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation); - this->prodml22__AbstractModelSection::soap_serialize(soap); + soap_serialize_PointerToprodml23__RadiusOfInvestigation(soap, &this->prodml23__BoundaryBaseModel::RadiusOfInvestigation); + soap_serialize_PointerToprodml23__PoreVolumeOfInvestigation(soap, &this->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation); + this->prodml23__AbstractModelSection::soap_serialize(soap); #endif } -int prodml22__BoundaryBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__BoundaryBaseModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__BoundaryBaseModel(soap, tag, id, this, type); + return soap_out_prodml23__BoundaryBaseModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BoundaryBaseModel(struct soap *soap, const char *tag, int id, const prodml22__BoundaryBaseModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BoundaryBaseModel(struct soap *soap, const char *tag, int id, const prodml23__BoundaryBaseModel *a, const char *type) { if (!type) - type = "prodml22:BoundaryBaseModel"; + type = "prodml23:BoundaryBaseModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel), type ? type : "prodml22:BoundaryBaseModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel), type ? type : "prodml23:BoundaryBaseModel")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) return soap->error; - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", -1, &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", -1, &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__BoundaryBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__BoundaryBaseModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__BoundaryBaseModel(soap, tag, this, type); + return soap_in_prodml23__BoundaryBaseModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__BoundaryBaseModel * SOAP_FMAC4 soap_in_prodml22__BoundaryBaseModel(struct soap *soap, const char *tag, prodml22__BoundaryBaseModel *a, const char *type) +SOAP_FMAC3 prodml23__BoundaryBaseModel * SOAP_FMAC4 soap_in_prodml23__BoundaryBaseModel(struct soap *soap, const char *tag, prodml23__BoundaryBaseModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__BoundaryBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel, sizeof(prodml22__BoundaryBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__BoundaryBaseModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel, sizeof(prodml23__BoundaryBaseModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__BoundaryBaseModel *)a->soap_in(soap, tag, type); + return (prodml23__BoundaryBaseModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -203351,25 +203346,25 @@ SOAP_FMAC3 prodml22__BoundaryBaseModel * SOAP_FMAC4 soap_in_prodml22__BoundaryBa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment2--; continue; } } if (soap_flag_Method2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method2--; continue; } } if (soap_flag_RadiusOfInvestigation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RadiusOfInvestigation(soap, "prodml22:RadiusOfInvestigation", &a->prodml22__BoundaryBaseModel::RadiusOfInvestigation, "prodml22:RadiusOfInvestigation")) + { if (soap_in_PointerToprodml23__RadiusOfInvestigation(soap, "prodml23:RadiusOfInvestigation", &a->prodml23__BoundaryBaseModel::RadiusOfInvestigation, "prodml23:RadiusOfInvestigation")) { soap_flag_RadiusOfInvestigation1--; continue; } } if (soap_flag_PoreVolumeOfInvestigation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, "prodml22:PoreVolumeOfInvestigation", &a->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml22:PoreVolumeOfInvestigation")) + { if (soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, "prodml23:PoreVolumeOfInvestigation", &a->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation, "prodml23:PoreVolumeOfInvestigation")) { soap_flag_PoreVolumeOfInvestigation1--; continue; } @@ -203385,55 +203380,55 @@ SOAP_FMAC3 prodml22__BoundaryBaseModel * SOAP_FMAC4 soap_in_prodml22__BoundaryBa return NULL; } else - { a = (prodml22__BoundaryBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel, sizeof(prodml22__BoundaryBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__BoundaryBaseModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel, sizeof(prodml23__BoundaryBaseModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__BoundaryBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__BoundaryBaseModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__BoundaryBaseModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__BoundaryBaseModel(%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, "prodml22:ClosedCircleModel")) - return soap_instantiate_prodml22__ClosedCircleModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ClosedRectangleModel")) - return soap_instantiate_prodml22__ClosedRectangleModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomBoundaryModel")) - return soap_instantiate_prodml22__CustomBoundaryModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InfiniteBoundaryModel")) - return soap_instantiate_prodml22__InfiniteBoundaryModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumericalBoundaryModel")) - return soap_instantiate_prodml22__NumericalBoundaryModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PinchOutModel")) - return soap_instantiate_prodml22__PinchOutModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SingleFaultModel")) - return soap_instantiate_prodml22__SingleFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TwoIntersectingFaultsModel")) - return soap_instantiate_prodml22__TwoIntersectingFaultsModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TwoParallelFaultsModel")) - return soap_instantiate_prodml22__TwoParallelFaultsModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:UShapedFaultsModel")) - return soap_instantiate_prodml22__UShapedFaultsModel(soap, n, NULL, NULL, size); - prodml22__BoundaryBaseModel *p; - size_t k = sizeof(prodml22__BoundaryBaseModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ClosedCircleModel")) + return soap_instantiate_prodml23__ClosedCircleModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ClosedRectangleModel")) + return soap_instantiate_prodml23__ClosedRectangleModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomBoundaryModel")) + return soap_instantiate_prodml23__CustomBoundaryModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InfiniteBoundaryModel")) + return soap_instantiate_prodml23__InfiniteBoundaryModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumericalBoundaryModel")) + return soap_instantiate_prodml23__NumericalBoundaryModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PinchOutModel")) + return soap_instantiate_prodml23__PinchOutModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SingleFaultModel")) + return soap_instantiate_prodml23__SingleFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TwoIntersectingFaultsModel")) + return soap_instantiate_prodml23__TwoIntersectingFaultsModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TwoParallelFaultsModel")) + return soap_instantiate_prodml23__TwoParallelFaultsModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:UShapedFaultsModel")) + return soap_instantiate_prodml23__UShapedFaultsModel(soap, n, NULL, NULL, size); + prodml23__BoundaryBaseModel *p; + size_t k = sizeof(prodml23__BoundaryBaseModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__BoundaryBaseModel); + { p = SOAP_NEW(soap, prodml23__BoundaryBaseModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__BoundaryBaseModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__BoundaryBaseModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__BoundaryBaseModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__BoundaryBaseModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -203443,78 +203438,78 @@ SOAP_FMAC1 prodml22__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__B return p; } -int prodml22__BoundaryBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__BoundaryBaseModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__BoundaryBaseModel(soap, tag ? tag : "prodml22:BoundaryBaseModel", -2, this, type)) + if (soap_out_prodml23__BoundaryBaseModel(soap, tag ? tag : "prodml23:BoundaryBaseModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__BoundaryBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__BoundaryBaseModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__BoundaryBaseModel(soap, this, tag, type); + return soap_get_prodml23__BoundaryBaseModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__BoundaryBaseModel * SOAP_FMAC4 soap_get_prodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BoundaryBaseModel * SOAP_FMAC4 soap_get_prodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BoundaryBaseModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__BoundaryBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractModelSection::soap_default(struct soap *soap) +void prodml23__AbstractModelSection::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractModelSection::Comment = NULL; - this->prodml22__AbstractModelSection::Method = NULL; + this->prodml23__AbstractModelSection::Comment = NULL; + this->prodml23__AbstractModelSection::Method = NULL; } -void prodml22__AbstractModelSection::soap_serialize(struct soap *soap) const +void prodml23__AbstractModelSection::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__AbstractModelSection::Comment); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__AbstractModelSection::Method); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__AbstractModelSection::Comment); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__AbstractModelSection::Method); #endif } -int prodml22__AbstractModelSection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractModelSection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractModelSection(soap, tag, id, this, type); + return soap_out_prodml23__AbstractModelSection(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractModelSection(struct soap *soap, const char *tag, int id, const prodml22__AbstractModelSection *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractModelSection(struct soap *soap, const char *tag, int id, const prodml23__AbstractModelSection *a, const char *type) { if (!type) - type = "prodml22:AbstractModelSection"; + type = "prodml23:AbstractModelSection"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Method", -1, &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Method", -1, &a->prodml23__AbstractModelSection::Method, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractModelSection::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractModelSection::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractModelSection(soap, tag, this, type); + return soap_in_prodml23__AbstractModelSection(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractModelSection * SOAP_FMAC4 soap_in_prodml22__AbstractModelSection(struct soap *soap, const char *tag, prodml22__AbstractModelSection *a, const char *type) +SOAP_FMAC3 prodml23__AbstractModelSection * SOAP_FMAC4 soap_in_prodml23__AbstractModelSection(struct soap *soap, const char *tag, prodml23__AbstractModelSection *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractModelSection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection, sizeof(prodml22__AbstractModelSection), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractModelSection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection, sizeof(prodml23__AbstractModelSection), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractModelSection *)a->soap_in(soap, tag, type); + return (prodml23__AbstractModelSection *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -203525,13 +203520,13 @@ SOAP_FMAC3 prodml22__AbstractModelSection * SOAP_FMAC4 soap_in_prodml22__Abstrac for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__AbstractModelSection::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__AbstractModelSection::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap_flag_Method1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Method", &a->prodml22__AbstractModelSection::Method, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Method", &a->prodml23__AbstractModelSection::Method, "eml23:String64")) { soap_flag_Method1--; continue; } @@ -203547,131 +203542,131 @@ SOAP_FMAC3 prodml22__AbstractModelSection * SOAP_FMAC4 soap_in_prodml22__Abstrac return NULL; } else - { a = (prodml22__AbstractModelSection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection, sizeof(prodml22__AbstractModelSection), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); - if (soap->body && soap_element_end_in(soap, tag)) - return NULL; - } - return a; -} - -SOAP_FMAC1 prodml22__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml22__AbstractModelSection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) -{ - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractModelSection(%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, "prodml22:BoundaryBaseModel")) - return soap_instantiate_prodml22__BoundaryBaseModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NearWellboreBaseModel")) - return soap_instantiate_prodml22__NearWellboreBaseModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ReservoirBaseModel")) - return soap_instantiate_prodml22__ReservoirBaseModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WellboreBaseModel")) - return soap_instantiate_prodml22__WellboreBaseModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageFairModel")) - return soap_instantiate_prodml22__ChangingStorageFairModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageHegemanModel")) - return soap_instantiate_prodml22__ChangingStorageHegemanModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageSpiveyFissuresModel")) - return soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChangingStorageSpiveyPackerModel")) - return soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ClosedCircleModel")) - return soap_instantiate_prodml22__ClosedCircleModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ClosedRectangleModel")) - return soap_instantiate_prodml22__ClosedRectangleModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ConstantStorageModel")) - return soap_instantiate_prodml22__ConstantStorageModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomBoundaryModel")) - return soap_instantiate_prodml22__CustomBoundaryModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomNearWellboreModel")) - return soap_instantiate_prodml22__CustomNearWellboreModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomReservoirModel")) - return soap_instantiate_prodml22__CustomReservoirModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CustomWellboreModel")) - return soap_instantiate_prodml22__CustomWellboreModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPermeabilityWithCrossflowModel")) - return soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPorosityPseudoSteadyStateModel")) - return soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPorosityTransientSlabsModel")) - return soap_instantiate_prodml22__DualPorosityTransientSlabsModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DualPorosityTransientSpheresModel")) - return soap_instantiate_prodml22__DualPorosityTransientSpheresModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FiniteRadiusModel")) - return soap_instantiate_prodml22__FiniteRadiusModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedFiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedFiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedHorizontalFiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedHorizontalInfiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedHorizontalUniformFluxModel")) - return soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedInfiniteConductivityModel")) - return soap_instantiate_prodml22__FracturedInfiniteConductivityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FracturedUniformFluxModel")) - return soap_instantiate_prodml22__FracturedUniformFluxModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HomogeneousModel")) - return soap_instantiate_prodml22__HomogeneousModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellbore2LayerModel")) - return soap_instantiate_prodml22__HorizontalWellbore2LayerModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellboreModel")) - return soap_instantiate_prodml22__HorizontalWellboreModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellboreMultipleEqualFracturedModel")) - return soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HorizontalWellboreMultipleVariableFracturedModel")) - return soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InfiniteBoundaryModel")) - return soap_instantiate_prodml22__InfiniteBoundaryModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeModel")) - return soap_instantiate_prodml22__LinearCompositeModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) - return soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeWithConductiveFaultModel")) - return soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LinearCompositeWithLeakyFaultModel")) - return soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumericalBoundaryModel")) - return soap_instantiate_prodml22__NumericalBoundaryModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumericalDualPorosityReservoirModel")) - return soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NumericalHomogeneousReservoirModel")) - return soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PartiallyPenetratingModel")) - return soap_instantiate_prodml22__PartiallyPenetratingModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PinchOutModel")) - return soap_instantiate_prodml22__PinchOutModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RadialCompositeModel")) - return soap_instantiate_prodml22__RadialCompositeModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SingleFaultModel")) - return soap_instantiate_prodml22__SingleFaultModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SlantedFullyPenetratingModel")) - return soap_instantiate_prodml22__SlantedFullyPenetratingModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SlantedPartiallyPenetratingModel")) - return soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TwoIntersectingFaultsModel")) - return soap_instantiate_prodml22__TwoIntersectingFaultsModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TwoParallelFaultsModel")) - return soap_instantiate_prodml22__TwoParallelFaultsModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:UShapedFaultsModel")) - return soap_instantiate_prodml22__UShapedFaultsModel(soap, n, NULL, NULL, size); - prodml22__AbstractModelSection *p; - size_t k = sizeof(prodml22__AbstractModelSection); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection, n, gsoap_eml2_3_fdelete); + { a = (prodml23__AbstractModelSection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection, sizeof(prodml23__AbstractModelSection), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } + return a; +} + +SOAP_FMAC1 prodml23__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml23__AbstractModelSection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +{ + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractModelSection(%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, "prodml23:BoundaryBaseModel")) + return soap_instantiate_prodml23__BoundaryBaseModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NearWellboreBaseModel")) + return soap_instantiate_prodml23__NearWellboreBaseModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ReservoirBaseModel")) + return soap_instantiate_prodml23__ReservoirBaseModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WellboreBaseModel")) + return soap_instantiate_prodml23__WellboreBaseModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageFairModel")) + return soap_instantiate_prodml23__ChangingStorageFairModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageHegemanModel")) + return soap_instantiate_prodml23__ChangingStorageHegemanModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageSpiveyFissuresModel")) + return soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChangingStorageSpiveyPackerModel")) + return soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ClosedCircleModel")) + return soap_instantiate_prodml23__ClosedCircleModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ClosedRectangleModel")) + return soap_instantiate_prodml23__ClosedRectangleModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ConstantStorageModel")) + return soap_instantiate_prodml23__ConstantStorageModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomBoundaryModel")) + return soap_instantiate_prodml23__CustomBoundaryModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomNearWellboreModel")) + return soap_instantiate_prodml23__CustomNearWellboreModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomReservoirModel")) + return soap_instantiate_prodml23__CustomReservoirModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CustomWellboreModel")) + return soap_instantiate_prodml23__CustomWellboreModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPermeabilityWithCrossflowModel")) + return soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPorosityPseudoSteadyStateModel")) + return soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPorosityTransientSlabsModel")) + return soap_instantiate_prodml23__DualPorosityTransientSlabsModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DualPorosityTransientSpheresModel")) + return soap_instantiate_prodml23__DualPorosityTransientSpheresModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FiniteRadiusModel")) + return soap_instantiate_prodml23__FiniteRadiusModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedFiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedFiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedHorizontalFiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedHorizontalInfiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedHorizontalUniformFluxModel")) + return soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedInfiniteConductivityModel")) + return soap_instantiate_prodml23__FracturedInfiniteConductivityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FracturedUniformFluxModel")) + return soap_instantiate_prodml23__FracturedUniformFluxModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HomogeneousModel")) + return soap_instantiate_prodml23__HomogeneousModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellbore2LayerModel")) + return soap_instantiate_prodml23__HorizontalWellbore2LayerModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellboreModel")) + return soap_instantiate_prodml23__HorizontalWellboreModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellboreMultipleEqualFracturedModel")) + return soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HorizontalWellboreMultipleVariableFracturedModel")) + return soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InfiniteBoundaryModel")) + return soap_instantiate_prodml23__InfiniteBoundaryModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeModel")) + return soap_instantiate_prodml23__LinearCompositeModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel")) + return soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeWithConductiveFaultModel")) + return soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LinearCompositeWithLeakyFaultModel")) + return soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumericalBoundaryModel")) + return soap_instantiate_prodml23__NumericalBoundaryModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumericalDualPorosityReservoirModel")) + return soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NumericalHomogeneousReservoirModel")) + return soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PartiallyPenetratingModel")) + return soap_instantiate_prodml23__PartiallyPenetratingModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PinchOutModel")) + return soap_instantiate_prodml23__PinchOutModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RadialCompositeModel")) + return soap_instantiate_prodml23__RadialCompositeModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SingleFaultModel")) + return soap_instantiate_prodml23__SingleFaultModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SlantedFullyPenetratingModel")) + return soap_instantiate_prodml23__SlantedFullyPenetratingModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SlantedPartiallyPenetratingModel")) + return soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TwoIntersectingFaultsModel")) + return soap_instantiate_prodml23__TwoIntersectingFaultsModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TwoParallelFaultsModel")) + return soap_instantiate_prodml23__TwoParallelFaultsModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:UShapedFaultsModel")) + return soap_instantiate_prodml23__UShapedFaultsModel(soap, n, NULL, NULL, size); + prodml23__AbstractModelSection *p; + size_t k = sizeof(prodml23__AbstractModelSection); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractModelSection); + { p = SOAP_NEW(soap, prodml23__AbstractModelSection); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractModelSection, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractModelSection, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractModelSection location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractModelSection location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -203681,76 +203676,76 @@ SOAP_FMAC1 prodml22__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__AbstractModelSection::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractModelSection::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractModelSection(soap, tag ? tag : "prodml22:AbstractModelSection", -2, this, type)) + if (soap_out_prodml23__AbstractModelSection(soap, tag ? tag : "prodml23:AbstractModelSection", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractModelSection::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractModelSection::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractModelSection(soap, this, tag, type); + return soap_get_prodml23__AbstractModelSection(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractModelSection * SOAP_FMAC4 soap_get_prodml22__AbstractModelSection(struct soap *soap, prodml22__AbstractModelSection *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractModelSection * SOAP_FMAC4 soap_get_prodml23__AbstractModelSection(struct soap *soap, prodml23__AbstractModelSection *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractModelSection(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractModelSection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TestPeriodsFlowrateData::soap_default(struct soap *soap) +void prodml23__TestPeriodsFlowrateData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRateHistory::soap_default(soap); - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__TestPeriodsFlowrateData::TestPeriodRef); + this->prodml23__AbstractRateHistory::soap_default(soap); + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__TestPeriodsFlowrateData::TestPeriodRef); } -void prodml22__TestPeriodsFlowrateData::soap_serialize(struct soap *soap) const +void prodml23__TestPeriodsFlowrateData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__TestPeriodsFlowrateData::TestPeriodRef); - this->prodml22__AbstractRateHistory::soap_serialize(soap); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__TestPeriodsFlowrateData::TestPeriodRef); + this->prodml23__AbstractRateHistory::soap_serialize(soap); #endif } -int prodml22__TestPeriodsFlowrateData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TestPeriodsFlowrateData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TestPeriodsFlowrateData(soap, tag, id, this, type); + return soap_out_prodml23__TestPeriodsFlowrateData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TestPeriodsFlowrateData(struct soap *soap, const char *tag, int id, const prodml22__TestPeriodsFlowrateData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TestPeriodsFlowrateData(struct soap *soap, const char *tag, int id, const prodml23__TestPeriodsFlowrateData *a, const char *type) { if (!type) - type = "prodml22:TestPeriodsFlowrateData"; + type = "prodml23:TestPeriodsFlowrateData"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData), type ? type : "prodml22:TestPeriodsFlowrateData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData), type ? type : "prodml23:TestPeriodsFlowrateData")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:TestPeriodRef", -1, &a->prodml22__TestPeriodsFlowrateData::TestPeriodRef, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:TestPeriodRef", -1, &a->prodml23__TestPeriodsFlowrateData::TestPeriodRef, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TestPeriodsFlowrateData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TestPeriodsFlowrateData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TestPeriodsFlowrateData(soap, tag, this, type); + return soap_in_prodml23__TestPeriodsFlowrateData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml22__TestPeriodsFlowrateData(struct soap *soap, const char *tag, prodml22__TestPeriodsFlowrateData *a, const char *type) +SOAP_FMAC3 prodml23__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml23__TestPeriodsFlowrateData(struct soap *soap, const char *tag, prodml23__TestPeriodsFlowrateData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TestPeriodsFlowrateData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData, sizeof(prodml22__TestPeriodsFlowrateData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TestPeriodsFlowrateData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData, sizeof(prodml23__TestPeriodsFlowrateData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TestPeriodsFlowrateData *)a->soap_in(soap, tag, type); + return (prodml23__TestPeriodsFlowrateData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -203759,7 +203754,7 @@ SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml22__Test for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:TestPeriodRef", &a->prodml22__TestPeriodsFlowrateData::TestPeriodRef, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:TestPeriodRef", &a->prodml23__TestPeriodsFlowrateData::TestPeriodRef, "eml23:String64")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -203771,7 +203766,7 @@ SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml22__Test } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__TestPeriodsFlowrateData::TestPeriodRef.size() < 1)) + if ((a->prodml23__TestPeriodsFlowrateData::TestPeriodRef.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -203781,35 +203776,35 @@ SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml22__Test return NULL; } else - { a = (prodml22__TestPeriodsFlowrateData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData, sizeof(prodml22__TestPeriodsFlowrateData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TestPeriodsFlowrateData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData, sizeof(prodml23__TestPeriodsFlowrateData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__TestPeriodsFlowrateData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__TestPeriodsFlowrateData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TestPeriodsFlowrateData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TestPeriodsFlowrateData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TestPeriodsFlowrateData *p; - size_t k = sizeof(prodml22__TestPeriodsFlowrateData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData, n, gsoap_eml2_3_fdelete); + prodml23__TestPeriodsFlowrateData *p; + size_t k = sizeof(prodml23__TestPeriodsFlowrateData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TestPeriodsFlowrateData); + { p = SOAP_NEW(soap, prodml23__TestPeriodsFlowrateData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TestPeriodsFlowrateData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TestPeriodsFlowrateData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TestPeriodsFlowrateData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TestPeriodsFlowrateData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -203819,109 +203814,109 @@ SOAP_FMAC1 prodml22__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__TestPeriodsFlowrateData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TestPeriodsFlowrateData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TestPeriodsFlowrateData(soap, tag ? tag : "prodml22:TestPeriodsFlowrateData", -2, this, type)) + if (soap_out_prodml23__TestPeriodsFlowrateData(soap, tag ? tag : "prodml23:TestPeriodsFlowrateData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TestPeriodsFlowrateData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TestPeriodsFlowrateData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TestPeriodsFlowrateData(soap, this, tag, type); + return soap_get_prodml23__TestPeriodsFlowrateData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_get_prodml22__TestPeriodsFlowrateData(struct soap *soap, prodml22__TestPeriodsFlowrateData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TestPeriodsFlowrateData * SOAP_FMAC4 soap_get_prodml23__TestPeriodsFlowrateData(struct soap *soap, prodml23__TestPeriodsFlowrateData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TestPeriodsFlowrateData(soap, tag, p, type))) + if ((p = soap_in_prodml23__TestPeriodsFlowrateData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SpecializedAnalysis::soap_default(struct soap *soap) +void prodml23__SpecializedAnalysis::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String2000(soap, &this->prodml22__SpecializedAnalysis::SpecializedAnalysisType); - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__SpecializedAnalysis::AnyParameter); - soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__SpecializedAnalysis::CustomParameter); - soap_default_eml23__String2000(soap, &this->prodml22__SpecializedAnalysis::SpecializedXAxisDescription); - soap_default_eml23__String2000(soap, &this->prodml22__SpecializedAnalysis::SpecializedYAxisDescription); - this->prodml22__SpecializedAnalysis::AnalysisPressureFunction = NULL; - this->prodml22__SpecializedAnalysis::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, &this->prodml22__SpecializedAnalysis::AnalysisLine); + soap_default_eml23__String2000(soap, &this->prodml23__SpecializedAnalysis::SpecializedAnalysisType); + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__SpecializedAnalysis::AnyParameter); + soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__SpecializedAnalysis::CustomParameter); + soap_default_eml23__String2000(soap, &this->prodml23__SpecializedAnalysis::SpecializedXAxisDescription); + soap_default_eml23__String2000(soap, &this->prodml23__SpecializedAnalysis::SpecializedYAxisDescription); + this->prodml23__SpecializedAnalysis::AnalysisPressureFunction = NULL; + this->prodml23__SpecializedAnalysis::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, &this->prodml23__SpecializedAnalysis::AnalysisLine); } -void prodml22__SpecializedAnalysis::soap_serialize(struct soap *soap) const +void prodml23__SpecializedAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SpecializedAnalysis::SpecializedAnalysisType, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); - soap_serialize_eml23__String2000(soap, &this->prodml22__SpecializedAnalysis::SpecializedAnalysisType); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, &this->prodml22__SpecializedAnalysis::AnyParameter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, &this->prodml22__SpecializedAnalysis::CustomParameter); - soap_embedded(soap, &this->prodml22__SpecializedAnalysis::SpecializedXAxisDescription, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); - soap_serialize_eml23__String2000(soap, &this->prodml22__SpecializedAnalysis::SpecializedXAxisDescription); - soap_embedded(soap, &this->prodml22__SpecializedAnalysis::SpecializedYAxisDescription, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); - soap_serialize_eml23__String2000(soap, &this->prodml22__SpecializedAnalysis::SpecializedYAxisDescription); - soap_serialize_PointerToprodml22__AbstractPtaPressureData(soap, &this->prodml22__SpecializedAnalysis::AnalysisPressureFunction); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SpecializedAnalysis::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, &this->prodml22__SpecializedAnalysis::AnalysisLine); + soap_embedded(soap, &this->prodml23__SpecializedAnalysis::SpecializedAnalysisType, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); + soap_serialize_eml23__String2000(soap, &this->prodml23__SpecializedAnalysis::SpecializedAnalysisType); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, &this->prodml23__SpecializedAnalysis::AnyParameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, &this->prodml23__SpecializedAnalysis::CustomParameter); + soap_embedded(soap, &this->prodml23__SpecializedAnalysis::SpecializedXAxisDescription, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); + soap_serialize_eml23__String2000(soap, &this->prodml23__SpecializedAnalysis::SpecializedXAxisDescription); + soap_embedded(soap, &this->prodml23__SpecializedAnalysis::SpecializedYAxisDescription, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); + soap_serialize_eml23__String2000(soap, &this->prodml23__SpecializedAnalysis::SpecializedYAxisDescription); + soap_serialize_PointerToprodml23__AbstractPtaPressureData(soap, &this->prodml23__SpecializedAnalysis::AnalysisPressureFunction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SpecializedAnalysis::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, &this->prodml23__SpecializedAnalysis::AnalysisLine); #endif } -int prodml22__SpecializedAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SpecializedAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SpecializedAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__SpecializedAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SpecializedAnalysis(struct soap *soap, const char *tag, int id, const prodml22__SpecializedAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SpecializedAnalysis(struct soap *soap, const char *tag, int id, const prodml23__SpecializedAnalysis *a, const char *type) { if (!type) - type = "prodml22:SpecializedAnalysis"; + type = "prodml23:SpecializedAnalysis"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis), type)) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:SpecializedAnalysisType", -1, &a->prodml22__SpecializedAnalysis::SpecializedAnalysisType, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:SpecializedAnalysisType", -1, &a->prodml23__SpecializedAnalysis::SpecializedAnalysisType, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", -1, &a->prodml22__SpecializedAnalysis::AnyParameter, "prodml22:AbstractParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", -1, &a->prodml23__SpecializedAnalysis::AnyParameter, "prodml23:AbstractParameter")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", -1, &a->prodml22__SpecializedAnalysis::CustomParameter, "prodml22:CustomParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", -1, &a->prodml23__SpecializedAnalysis::CustomParameter, "prodml23:CustomParameter")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:SpecializedXAxisDescription", -1, &a->prodml22__SpecializedAnalysis::SpecializedXAxisDescription, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:SpecializedXAxisDescription", -1, &a->prodml23__SpecializedAnalysis::SpecializedXAxisDescription, "eml23:String2000")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:SpecializedYAxisDescription", -1, &a->prodml22__SpecializedAnalysis::SpecializedYAxisDescription, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:SpecializedYAxisDescription", -1, &a->prodml23__SpecializedAnalysis::SpecializedYAxisDescription, "eml23:String2000")) return soap->error; - if (!a->prodml22__SpecializedAnalysis::AnalysisPressureFunction) - { if (soap_element_empty(soap, "prodml22:AnalysisPressureFunction", 0, NULL)) + if (!a->prodml23__SpecializedAnalysis::AnalysisPressureFunction) + { if (soap_element_empty(soap, "prodml23:AnalysisPressureFunction", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:AnalysisPressureFunction", -1, &a->prodml22__SpecializedAnalysis::AnalysisPressureFunction, "prodml22:AbstractPtaPressureData")) + else if (soap_out_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:AnalysisPressureFunction", -1, &a->prodml23__SpecializedAnalysis::AnalysisPressureFunction, "prodml23:AbstractPtaPressureData")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SpecializedAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SpecializedAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, "prodml22:AnalysisLine", -1, &a->prodml22__SpecializedAnalysis::AnalysisLine, "prodml22:AnalysisLine")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, "prodml23:AnalysisLine", -1, &a->prodml23__SpecializedAnalysis::AnalysisLine, "prodml23:AnalysisLine")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SpecializedAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SpecializedAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SpecializedAnalysis(soap, tag, this, type); + return soap_in_prodml23__SpecializedAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml22__SpecializedAnalysis(struct soap *soap, const char *tag, prodml22__SpecializedAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml23__SpecializedAnalysis(struct soap *soap, const char *tag, prodml23__SpecializedAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SpecializedAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, sizeof(prodml22__SpecializedAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SpecializedAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, sizeof(prodml23__SpecializedAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SpecializedAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__SpecializedAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -203935,45 +203930,45 @@ SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml22__Speciali for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SpecializedAnalysisType1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:SpecializedAnalysisType", &a->prodml22__SpecializedAnalysis::SpecializedAnalysisType, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:SpecializedAnalysisType", &a->prodml23__SpecializedAnalysis::SpecializedAnalysisType, "eml23:String2000")) { soap_flag_SpecializedAnalysisType1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, "prodml22:AnyParameter", &a->prodml22__SpecializedAnalysis::AnyParameter, "prodml22:AbstractParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, "prodml23:AnyParameter", &a->prodml23__SpecializedAnalysis::AnyParameter, "prodml23:AbstractParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, "prodml22:CustomParameter", &a->prodml22__SpecializedAnalysis::CustomParameter, "prodml22:CustomParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, "prodml23:CustomParameter", &a->prodml23__SpecializedAnalysis::CustomParameter, "prodml23:CustomParameter")) continue; } if (soap_flag_SpecializedXAxisDescription1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:SpecializedXAxisDescription", &a->prodml22__SpecializedAnalysis::SpecializedXAxisDescription, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:SpecializedXAxisDescription", &a->prodml23__SpecializedAnalysis::SpecializedXAxisDescription, "eml23:String2000")) { soap_flag_SpecializedXAxisDescription1--; continue; } } if (soap_flag_SpecializedYAxisDescription1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:SpecializedYAxisDescription", &a->prodml22__SpecializedAnalysis::SpecializedYAxisDescription, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:SpecializedYAxisDescription", &a->prodml23__SpecializedAnalysis::SpecializedYAxisDescription, "eml23:String2000")) { soap_flag_SpecializedYAxisDescription1--; continue; } } if (soap_flag_AnalysisPressureFunction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:AnalysisPressureFunction", &a->prodml22__SpecializedAnalysis::AnalysisPressureFunction, "prodml22:AbstractPtaPressureData")) + { if (soap_in_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:AnalysisPressureFunction", &a->prodml23__SpecializedAnalysis::AnalysisPressureFunction, "prodml23:AbstractPtaPressureData")) { soap_flag_AnalysisPressureFunction1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SpecializedAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SpecializedAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, "prodml22:AnalysisLine", &a->prodml22__SpecializedAnalysis::AnalysisLine, "prodml22:AnalysisLine")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, "prodml23:AnalysisLine", &a->prodml23__SpecializedAnalysis::AnalysisLine, "prodml23:AnalysisLine")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -203985,7 +203980,7 @@ SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml22__Speciali } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_SpecializedAnalysisType1 > 0 || soap_flag_SpecializedXAxisDescription1 > 0 || soap_flag_SpecializedYAxisDescription1 > 0 || !a->prodml22__SpecializedAnalysis::AnalysisPressureFunction)) + if ((soap_flag_SpecializedAnalysisType1 > 0 || soap_flag_SpecializedXAxisDescription1 > 0 || soap_flag_SpecializedYAxisDescription1 > 0 || !a->prodml23__SpecializedAnalysis::AnalysisPressureFunction)) { soap->error = SOAP_OCCURS; return NULL; } @@ -203995,35 +203990,35 @@ SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml22__Speciali return NULL; } else - { a = (prodml22__SpecializedAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, sizeof(prodml22__SpecializedAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SpecializedAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, sizeof(prodml23__SpecializedAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__SpecializedAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__SpecializedAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SpecializedAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SpecializedAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SpecializedAnalysis *p; - size_t k = sizeof(prodml22__SpecializedAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__SpecializedAnalysis *p; + size_t k = sizeof(prodml23__SpecializedAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SpecializedAnalysis); + { p = SOAP_NEW(soap, prodml23__SpecializedAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SpecializedAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SpecializedAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SpecializedAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SpecializedAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -204033,113 +204028,113 @@ SOAP_FMAC1 prodml22__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__SpecializedAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SpecializedAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SpecializedAnalysis(soap, tag ? tag : "prodml22:SpecializedAnalysis", -2, this, type)) + if (soap_out_prodml23__SpecializedAnalysis(soap, tag ? tag : "prodml23:SpecializedAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SpecializedAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SpecializedAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SpecializedAnalysis(soap, this, tag, type); + return soap_get_prodml23__SpecializedAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_get_prodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SpecializedAnalysis * SOAP_FMAC4 soap_get_prodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SpecializedAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__SpecializedAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SingleFractureSubModel::soap_default(struct soap *soap) +void prodml23__SingleFractureSubModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__SingleFractureSubModel::FractureTip1Location = NULL; - this->prodml22__SingleFractureSubModel::FractureTip2Location = NULL; - this->prodml22__SingleFractureSubModel::FractureHeight = NULL; - this->prodml22__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary = NULL; - this->prodml22__SingleFractureSubModel::FractureFaceSkin = NULL; - this->prodml22__SingleFractureSubModel::FractureConductivity = NULL; - this->prodml22__SingleFractureSubModel::FractureStorativityRatio = NULL; - soap_default_prodml22__FractureModelType(soap, &this->prodml22__SingleFractureSubModel::FractureModelType); + this->prodml23__SingleFractureSubModel::FractureTip1Location = NULL; + this->prodml23__SingleFractureSubModel::FractureTip2Location = NULL; + this->prodml23__SingleFractureSubModel::FractureHeight = NULL; + this->prodml23__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary = NULL; + this->prodml23__SingleFractureSubModel::FractureFaceSkin = NULL; + this->prodml23__SingleFractureSubModel::FractureConductivity = NULL; + this->prodml23__SingleFractureSubModel::FractureStorativityRatio = NULL; + soap_default_prodml23__FractureModelType(soap, &this->prodml23__SingleFractureSubModel::FractureModelType); } -void prodml22__SingleFractureSubModel::soap_serialize(struct soap *soap) const +void prodml23__SingleFractureSubModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__LocationIn2D(soap, &this->prodml22__SingleFractureSubModel::FractureTip1Location); - soap_serialize_PointerToprodml22__LocationIn2D(soap, &this->prodml22__SingleFractureSubModel::FractureTip2Location); - soap_serialize_PointerToprodml22__FractureHeight(soap, &this->prodml22__SingleFractureSubModel::FractureHeight); - soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml22__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary); - soap_serialize_PointerToprodml22__FractureFaceSkin(soap, &this->prodml22__SingleFractureSubModel::FractureFaceSkin); - soap_serialize_PointerToprodml22__FractureConductivity(soap, &this->prodml22__SingleFractureSubModel::FractureConductivity); - soap_serialize_PointerToprodml22__FractureStorativityRatio(soap, &this->prodml22__SingleFractureSubModel::FractureStorativityRatio); + soap_serialize_PointerToprodml23__LocationIn2D(soap, &this->prodml23__SingleFractureSubModel::FractureTip1Location); + soap_serialize_PointerToprodml23__LocationIn2D(soap, &this->prodml23__SingleFractureSubModel::FractureTip2Location); + soap_serialize_PointerToprodml23__FractureHeight(soap, &this->prodml23__SingleFractureSubModel::FractureHeight); + soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, &this->prodml23__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary); + soap_serialize_PointerToprodml23__FractureFaceSkin(soap, &this->prodml23__SingleFractureSubModel::FractureFaceSkin); + soap_serialize_PointerToprodml23__FractureConductivity(soap, &this->prodml23__SingleFractureSubModel::FractureConductivity); + soap_serialize_PointerToprodml23__FractureStorativityRatio(soap, &this->prodml23__SingleFractureSubModel::FractureStorativityRatio); #endif } -int prodml22__SingleFractureSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SingleFractureSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SingleFractureSubModel(soap, tag, id, this, type); + return soap_out_prodml23__SingleFractureSubModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleFractureSubModel(struct soap *soap, const char *tag, int id, const prodml22__SingleFractureSubModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleFractureSubModel(struct soap *soap, const char *tag, int id, const prodml23__SingleFractureSubModel *a, const char *type) { if (!type) - type = "prodml22:SingleFractureSubModel"; + type = "prodml23:SingleFractureSubModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel), type)) return soap->error; - if (!a->prodml22__SingleFractureSubModel::FractureTip1Location) - { if (soap_element_empty(soap, "prodml22:FractureTip1Location", 0, NULL)) + if (!a->prodml23__SingleFractureSubModel::FractureTip1Location) + { if (soap_element_empty(soap, "prodml23:FractureTip1Location", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LocationIn2D(soap, "prodml22:FractureTip1Location", -1, &a->prodml22__SingleFractureSubModel::FractureTip1Location, "prodml22:LocationIn2D")) + else if (soap_out_PointerToprodml23__LocationIn2D(soap, "prodml23:FractureTip1Location", -1, &a->prodml23__SingleFractureSubModel::FractureTip1Location, "prodml23:LocationIn2D")) return soap->error; - if (!a->prodml22__SingleFractureSubModel::FractureTip2Location) - { if (soap_element_empty(soap, "prodml22:FractureTip2Location", 0, NULL)) + if (!a->prodml23__SingleFractureSubModel::FractureTip2Location) + { if (soap_element_empty(soap, "prodml23:FractureTip2Location", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__LocationIn2D(soap, "prodml22:FractureTip2Location", -1, &a->prodml22__SingleFractureSubModel::FractureTip2Location, "prodml22:LocationIn2D")) + else if (soap_out_PointerToprodml23__LocationIn2D(soap, "prodml23:FractureTip2Location", -1, &a->prodml23__SingleFractureSubModel::FractureTip2Location, "prodml23:LocationIn2D")) return soap->error; - if (!a->prodml22__SingleFractureSubModel::FractureHeight) - { if (soap_element_empty(soap, "prodml22:FractureHeight", 0, NULL)) + if (!a->prodml23__SingleFractureSubModel::FractureHeight) + { if (soap_element_empty(soap, "prodml23:FractureHeight", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", -1, &a->prodml22__SingleFractureSubModel::FractureHeight, "prodml22:FractureHeight")) + else if (soap_out_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", -1, &a->prodml23__SingleFractureSubModel::FractureHeight, "prodml23:FractureHeight")) return soap->error; - if (soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml22__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + if (soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", -1, &a->prodml23__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) return soap->error; - if (soap_out_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", -1, &a->prodml22__SingleFractureSubModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + if (soap_out_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", -1, &a->prodml23__SingleFractureSubModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) return soap->error; - if (soap_out_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", -1, &a->prodml22__SingleFractureSubModel::FractureConductivity, "prodml22:FractureConductivity")) + if (soap_out_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", -1, &a->prodml23__SingleFractureSubModel::FractureConductivity, "prodml23:FractureConductivity")) return soap->error; - if (soap_out_PointerToprodml22__FractureStorativityRatio(soap, "prodml22:FractureStorativityRatio", -1, &a->prodml22__SingleFractureSubModel::FractureStorativityRatio, "prodml22:FractureStorativityRatio")) + if (soap_out_PointerToprodml23__FractureStorativityRatio(soap, "prodml23:FractureStorativityRatio", -1, &a->prodml23__SingleFractureSubModel::FractureStorativityRatio, "prodml23:FractureStorativityRatio")) return soap->error; - if (soap_out_prodml22__FractureModelType(soap, "prodml22:FractureModelType", -1, &a->prodml22__SingleFractureSubModel::FractureModelType, "prodml22:FractureModelType")) + if (soap_out_prodml23__FractureModelType(soap, "prodml23:FractureModelType", -1, &a->prodml23__SingleFractureSubModel::FractureModelType, "prodml23:FractureModelType")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SingleFractureSubModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleFractureSubModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SingleFractureSubModel(soap, tag, this, type); + return soap_in_prodml23__SingleFractureSubModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml22__SingleFractureSubModel(struct soap *soap, const char *tag, prodml22__SingleFractureSubModel *a, const char *type) +SOAP_FMAC3 prodml23__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml23__SingleFractureSubModel(struct soap *soap, const char *tag, prodml23__SingleFractureSubModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SingleFractureSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, sizeof(prodml22__SingleFractureSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SingleFractureSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, sizeof(prodml23__SingleFractureSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SingleFractureSubModel *)a->soap_in(soap, tag, type); + return (prodml23__SingleFractureSubModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -204156,49 +204151,49 @@ SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml22__Singl for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FractureTip1Location1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LocationIn2D(soap, "prodml22:FractureTip1Location", &a->prodml22__SingleFractureSubModel::FractureTip1Location, "prodml22:LocationIn2D")) + { if (soap_in_PointerToprodml23__LocationIn2D(soap, "prodml23:FractureTip1Location", &a->prodml23__SingleFractureSubModel::FractureTip1Location, "prodml23:LocationIn2D")) { soap_flag_FractureTip1Location1--; continue; } } if (soap_flag_FractureTip2Location1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LocationIn2D(soap, "prodml22:FractureTip2Location", &a->prodml22__SingleFractureSubModel::FractureTip2Location, "prodml22:LocationIn2D")) + { if (soap_in_PointerToprodml23__LocationIn2D(soap, "prodml23:FractureTip2Location", &a->prodml23__SingleFractureSubModel::FractureTip2Location, "prodml23:LocationIn2D")) { soap_flag_FractureTip2Location1--; continue; } } if (soap_flag_FractureHeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureHeight(soap, "prodml22:FractureHeight", &a->prodml22__SingleFractureSubModel::FractureHeight, "prodml22:FractureHeight")) + { if (soap_in_PointerToprodml23__FractureHeight(soap, "prodml23:FractureHeight", &a->prodml23__SingleFractureSubModel::FractureHeight, "prodml23:FractureHeight")) { soap_flag_FractureHeight1--; continue; } } if (soap_flag_DistanceMidFractureHeightToBottomBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", &a->prodml22__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary, "prodml22:DistanceMidFractureHeightToBottomBoundary")) + { if (soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", &a->prodml23__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary, "prodml23:DistanceMidFractureHeightToBottomBoundary")) { soap_flag_DistanceMidFractureHeightToBottomBoundary1--; continue; } } if (soap_flag_FractureFaceSkin1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureFaceSkin(soap, "prodml22:FractureFaceSkin", &a->prodml22__SingleFractureSubModel::FractureFaceSkin, "prodml22:FractureFaceSkin")) + { if (soap_in_PointerToprodml23__FractureFaceSkin(soap, "prodml23:FractureFaceSkin", &a->prodml23__SingleFractureSubModel::FractureFaceSkin, "prodml23:FractureFaceSkin")) { soap_flag_FractureFaceSkin1--; continue; } } if (soap_flag_FractureConductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureConductivity(soap, "prodml22:FractureConductivity", &a->prodml22__SingleFractureSubModel::FractureConductivity, "prodml22:FractureConductivity")) + { if (soap_in_PointerToprodml23__FractureConductivity(soap, "prodml23:FractureConductivity", &a->prodml23__SingleFractureSubModel::FractureConductivity, "prodml23:FractureConductivity")) { soap_flag_FractureConductivity1--; continue; } } if (soap_flag_FractureStorativityRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureStorativityRatio(soap, "prodml22:FractureStorativityRatio", &a->prodml22__SingleFractureSubModel::FractureStorativityRatio, "prodml22:FractureStorativityRatio")) + { if (soap_in_PointerToprodml23__FractureStorativityRatio(soap, "prodml23:FractureStorativityRatio", &a->prodml23__SingleFractureSubModel::FractureStorativityRatio, "prodml23:FractureStorativityRatio")) { soap_flag_FractureStorativityRatio1--; continue; } } if (soap_flag_FractureModelType1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__FractureModelType(soap, "prodml22:FractureModelType", &a->prodml22__SingleFractureSubModel::FractureModelType, "prodml22:FractureModelType")) + { if (soap_in_prodml23__FractureModelType(soap, "prodml23:FractureModelType", &a->prodml23__SingleFractureSubModel::FractureModelType, "prodml23:FractureModelType")) { soap_flag_FractureModelType1--; continue; } @@ -204212,7 +204207,7 @@ SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml22__Singl } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__SingleFractureSubModel::FractureTip1Location || !a->prodml22__SingleFractureSubModel::FractureTip2Location || !a->prodml22__SingleFractureSubModel::FractureHeight || soap_flag_FractureModelType1 > 0)) + if ((!a->prodml23__SingleFractureSubModel::FractureTip1Location || !a->prodml23__SingleFractureSubModel::FractureTip2Location || !a->prodml23__SingleFractureSubModel::FractureHeight || soap_flag_FractureModelType1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -204222,35 +204217,35 @@ SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml22__Singl return NULL; } else - { a = (prodml22__SingleFractureSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, sizeof(prodml22__SingleFractureSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SingleFractureSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, sizeof(prodml23__SingleFractureSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleFractureSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleFractureSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SingleFractureSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SingleFractureSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SingleFractureSubModel *p; - size_t k = sizeof(prodml22__SingleFractureSubModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, n, gsoap_eml2_3_fdelete); + prodml23__SingleFractureSubModel *p; + size_t k = sizeof(prodml23__SingleFractureSubModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SingleFractureSubModel); + { p = SOAP_NEW(soap, prodml23__SingleFractureSubModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SingleFractureSubModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SingleFractureSubModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SingleFractureSubModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SingleFractureSubModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -204260,88 +204255,88 @@ SOAP_FMAC1 prodml22__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__SingleFractureSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SingleFractureSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SingleFractureSubModel(soap, tag ? tag : "prodml22:SingleFractureSubModel", -2, this, type)) + if (soap_out_prodml23__SingleFractureSubModel(soap, tag ? tag : "prodml23:SingleFractureSubModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SingleFractureSubModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleFractureSubModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SingleFractureSubModel(soap, this, tag, type); + return soap_get_prodml23__SingleFractureSubModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_get_prodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SingleFractureSubModel * SOAP_FMAC4 soap_get_prodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SingleFractureSubModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__SingleFractureSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SingleFlowrateData::soap_default(struct soap *soap) +void prodml23__SingleFlowrateData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRateHistory::soap_default(soap); - this->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed = NULL; - this->prodml22__SingleFlowrateData::SingleFlowrate = NULL; + this->prodml23__AbstractRateHistory::soap_default(soap); + this->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed = NULL; + this->prodml23__SingleFlowrateData::SingleFlowrate = NULL; } -void prodml22__SingleFlowrateData::soap_serialize(struct soap *soap) const +void prodml23__SingleFlowrateData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__SingleFlowrateData::SingleFlowrate); - this->prodml22__AbstractRateHistory::soap_serialize(soap); + soap_serialize_PointerToeml23__TimeMeasure(soap, &this->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__SingleFlowrateData::SingleFlowrate); + this->prodml23__AbstractRateHistory::soap_serialize(soap); #endif } -int prodml22__SingleFlowrateData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SingleFlowrateData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SingleFlowrateData(soap, tag, id, this, type); + return soap_out_prodml23__SingleFlowrateData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleFlowrateData(struct soap *soap, const char *tag, int id, const prodml22__SingleFlowrateData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleFlowrateData(struct soap *soap, const char *tag, int id, const prodml23__SingleFlowrateData *a, const char *type) { if (!type) - type = "prodml22:SingleFlowrateData"; + type = "prodml23:SingleFlowrateData"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData), type ? type : "prodml22:SingleFlowrateData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData), type ? type : "prodml23:SingleFlowrateData")) return soap->error; - if (!a->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed) - { if (soap_element_empty(soap, "prodml22:EffectiveProducingTimeUsed", 0, NULL)) + if (!a->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed) + { if (soap_element_empty(soap, "prodml23:EffectiveProducingTimeUsed", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml22:EffectiveProducingTimeUsed", -1, &a->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed, "eml23:TimeMeasure")) + else if (soap_out_PointerToeml23__TimeMeasure(soap, "prodml23:EffectiveProducingTimeUsed", -1, &a->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed, "eml23:TimeMeasure")) return soap->error; - if (!a->prodml22__SingleFlowrateData::SingleFlowrate) - { if (soap_element_empty(soap, "prodml22:SingleFlowrate", 0, NULL)) + if (!a->prodml23__SingleFlowrateData::SingleFlowrate) + { if (soap_element_empty(soap, "prodml23:SingleFlowrate", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:SingleFlowrate", -1, &a->prodml22__SingleFlowrateData::SingleFlowrate, "eml23:VolumePerTimeMeasure")) + else if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:SingleFlowrate", -1, &a->prodml23__SingleFlowrateData::SingleFlowrate, "eml23:VolumePerTimeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SingleFlowrateData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleFlowrateData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SingleFlowrateData(soap, tag, this, type); + return soap_in_prodml23__SingleFlowrateData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml22__SingleFlowrateData(struct soap *soap, const char *tag, prodml22__SingleFlowrateData *a, const char *type) +SOAP_FMAC3 prodml23__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml23__SingleFlowrateData(struct soap *soap, const char *tag, prodml23__SingleFlowrateData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SingleFlowrateData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData, sizeof(prodml22__SingleFlowrateData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SingleFlowrateData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData, sizeof(prodml23__SingleFlowrateData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SingleFlowrateData *)a->soap_in(soap, tag, type); + return (prodml23__SingleFlowrateData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -204352,13 +204347,13 @@ SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml22__SingleFlo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_EffectiveProducingTimeUsed1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml22:EffectiveProducingTimeUsed", &a->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed, "eml23:TimeMeasure")) + { if (soap_in_PointerToeml23__TimeMeasure(soap, "prodml23:EffectiveProducingTimeUsed", &a->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed, "eml23:TimeMeasure")) { soap_flag_EffectiveProducingTimeUsed1--; continue; } } if (soap_flag_SingleFlowrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:SingleFlowrate", &a->prodml22__SingleFlowrateData::SingleFlowrate, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:SingleFlowrate", &a->prodml23__SingleFlowrateData::SingleFlowrate, "eml23:VolumePerTimeMeasure")) { soap_flag_SingleFlowrate1--; continue; } @@ -204372,7 +204367,7 @@ SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml22__SingleFlo } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed || !a->prodml22__SingleFlowrateData::SingleFlowrate)) + if ((!a->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed || !a->prodml23__SingleFlowrateData::SingleFlowrate)) { soap->error = SOAP_OCCURS; return NULL; } @@ -204382,35 +204377,35 @@ SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml22__SingleFlo return NULL; } else - { a = (prodml22__SingleFlowrateData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData, sizeof(prodml22__SingleFlowrateData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SingleFlowrateData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData, sizeof(prodml23__SingleFlowrateData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__SingleFlowrateData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__SingleFlowrateData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SingleFlowrateData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SingleFlowrateData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SingleFlowrateData *p; - size_t k = sizeof(prodml22__SingleFlowrateData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData, n, gsoap_eml2_3_fdelete); + prodml23__SingleFlowrateData *p; + size_t k = sizeof(prodml23__SingleFlowrateData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SingleFlowrateData); + { p = SOAP_NEW(soap, prodml23__SingleFlowrateData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SingleFlowrateData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SingleFlowrateData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SingleFlowrateData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SingleFlowrateData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -204420,81 +204415,81 @@ SOAP_FMAC1 prodml22__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__SingleFlowrateData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SingleFlowrateData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SingleFlowrateData(soap, tag ? tag : "prodml22:SingleFlowrateData", -2, this, type)) + if (soap_out_prodml23__SingleFlowrateData(soap, tag ? tag : "prodml23:SingleFlowrateData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SingleFlowrateData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleFlowrateData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SingleFlowrateData(soap, this, tag, type); + return soap_get_prodml23__SingleFlowrateData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_get_prodml22__SingleFlowrateData(struct soap *soap, prodml22__SingleFlowrateData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SingleFlowrateData * SOAP_FMAC4 soap_get_prodml23__SingleFlowrateData(struct soap *soap, prodml23__SingleFlowrateData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SingleFlowrateData(soap, tag, p, type))) + if ((p = soap_in_prodml23__SingleFlowrateData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SingleBoundarySubModel::soap_default(struct soap *soap) +void prodml23__SingleBoundarySubModel::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__Boundary1Type(soap, &this->prodml22__SingleBoundarySubModel::TypeOfBoundary); - this->prodml22__SingleBoundarySubModel::FaultRefID = NULL; + soap_default_prodml23__Boundary1Type(soap, &this->prodml23__SingleBoundarySubModel::TypeOfBoundary); + this->prodml23__SingleBoundarySubModel::FaultRefID = NULL; } -void prodml22__SingleBoundarySubModel::soap_serialize(struct soap *soap) const +void prodml23__SingleBoundarySubModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__SingleBoundarySubModel::FaultRefID); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__SingleBoundarySubModel::FaultRefID); #endif } -int prodml22__SingleBoundarySubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SingleBoundarySubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SingleBoundarySubModel(soap, tag, id, this, type); + return soap_out_prodml23__SingleBoundarySubModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleBoundarySubModel(struct soap *soap, const char *tag, int id, const prodml22__SingleBoundarySubModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleBoundarySubModel(struct soap *soap, const char *tag, int id, const prodml23__SingleBoundarySubModel *a, const char *type) { if (!type) - type = "prodml22:SingleBoundarySubModel"; + type = "prodml23:SingleBoundarySubModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel), type)) return soap->error; - if (soap_out_prodml22__Boundary1Type(soap, "prodml22:TypeOfBoundary", -1, &a->prodml22__SingleBoundarySubModel::TypeOfBoundary, "prodml22:Boundary1Type")) + if (soap_out_prodml23__Boundary1Type(soap, "prodml23:TypeOfBoundary", -1, &a->prodml23__SingleBoundarySubModel::TypeOfBoundary, "prodml23:Boundary1Type")) return soap->error; - if (!a->prodml22__SingleBoundarySubModel::FaultRefID) - { if (soap_element_empty(soap, "prodml22:FaultRefID", 0, NULL)) + if (!a->prodml23__SingleBoundarySubModel::FaultRefID) + { if (soap_element_empty(soap, "prodml23:FaultRefID", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:FaultRefID", -1, &a->prodml22__SingleBoundarySubModel::FaultRefID, "prodml22:ResqmlModelRef")) + else if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:FaultRefID", -1, &a->prodml23__SingleBoundarySubModel::FaultRefID, "prodml23:ResqmlModelRef")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SingleBoundarySubModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleBoundarySubModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SingleBoundarySubModel(soap, tag, this, type); + return soap_in_prodml23__SingleBoundarySubModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml22__SingleBoundarySubModel(struct soap *soap, const char *tag, prodml22__SingleBoundarySubModel *a, const char *type) +SOAP_FMAC3 prodml23__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml23__SingleBoundarySubModel(struct soap *soap, const char *tag, prodml23__SingleBoundarySubModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SingleBoundarySubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, sizeof(prodml22__SingleBoundarySubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SingleBoundarySubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, sizeof(prodml23__SingleBoundarySubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SingleBoundarySubModel *)a->soap_in(soap, tag, type); + return (prodml23__SingleBoundarySubModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -204505,13 +204500,13 @@ SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml22__Singl for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TypeOfBoundary1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__Boundary1Type(soap, "prodml22:TypeOfBoundary", &a->prodml22__SingleBoundarySubModel::TypeOfBoundary, "prodml22:Boundary1Type")) + { if (soap_in_prodml23__Boundary1Type(soap, "prodml23:TypeOfBoundary", &a->prodml23__SingleBoundarySubModel::TypeOfBoundary, "prodml23:Boundary1Type")) { soap_flag_TypeOfBoundary1--; continue; } } if (soap_flag_FaultRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:FaultRefID", &a->prodml22__SingleBoundarySubModel::FaultRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:FaultRefID", &a->prodml23__SingleBoundarySubModel::FaultRefID, "prodml23:ResqmlModelRef")) { soap_flag_FaultRefID1--; continue; } @@ -204525,7 +204520,7 @@ SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml22__Singl } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TypeOfBoundary1 > 0 || !a->prodml22__SingleBoundarySubModel::FaultRefID)) + if ((soap_flag_TypeOfBoundary1 > 0 || !a->prodml23__SingleBoundarySubModel::FaultRefID)) { soap->error = SOAP_OCCURS; return NULL; } @@ -204535,35 +204530,35 @@ SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml22__Singl return NULL; } else - { a = (prodml22__SingleBoundarySubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, sizeof(prodml22__SingleBoundarySubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SingleBoundarySubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, sizeof(prodml23__SingleBoundarySubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleBoundarySubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleBoundarySubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SingleBoundarySubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SingleBoundarySubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SingleBoundarySubModel *p; - size_t k = sizeof(prodml22__SingleBoundarySubModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, n, gsoap_eml2_3_fdelete); + prodml23__SingleBoundarySubModel *p; + size_t k = sizeof(prodml23__SingleBoundarySubModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SingleBoundarySubModel); + { p = SOAP_NEW(soap, prodml23__SingleBoundarySubModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SingleBoundarySubModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SingleBoundarySubModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SingleBoundarySubModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SingleBoundarySubModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -204573,108 +204568,108 @@ SOAP_FMAC1 prodml22__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__SingleBoundarySubModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SingleBoundarySubModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SingleBoundarySubModel(soap, tag ? tag : "prodml22:SingleBoundarySubModel", -2, this, type)) + if (soap_out_prodml23__SingleBoundarySubModel(soap, tag ? tag : "prodml23:SingleBoundarySubModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SingleBoundarySubModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SingleBoundarySubModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SingleBoundarySubModel(soap, this, tag, type); + return soap_get_prodml23__SingleBoundarySubModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_get_prodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SingleBoundarySubModel * SOAP_FMAC4 soap_get_prodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SingleBoundarySubModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__SingleBoundarySubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RtaAnalysis::soap_default(struct soap *soap) +void prodml23__RtaAnalysis::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractAnalysis::soap_default(soap); - this->prodml22__RtaAnalysis::InputPressure = NULL; - this->prodml22__RtaAnalysis::InputFlowrateData = NULL; - this->prodml22__RtaAnalysis::SimulatedFlowrate = NULL; - this->prodml22__RtaAnalysis::SimulatedLogLogData = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, &this->prodml22__RtaAnalysis::SpecializedAnalysis); - this->prodml22__RtaAnalysis::MeasuredLogLogData = NULL; + this->prodml23__AbstractAnalysis::soap_default(soap); + this->prodml23__RtaAnalysis::InputPressure = NULL; + this->prodml23__RtaAnalysis::InputFlowrateData = NULL; + this->prodml23__RtaAnalysis::SimulatedFlowrate = NULL; + this->prodml23__RtaAnalysis::SimulatedLogLogData = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, &this->prodml23__RtaAnalysis::SpecializedAnalysis); + this->prodml23__RtaAnalysis::MeasuredLogLogData = NULL; } -void prodml22__RtaAnalysis::soap_serialize(struct soap *soap) const +void prodml23__RtaAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__AbstractPtaPressureData(soap, &this->prodml22__RtaAnalysis::InputPressure); - soap_serialize_PointerToprodml22__AbstractPtaFlowData(soap, &this->prodml22__RtaAnalysis::InputFlowrateData); - soap_serialize_PointerToprodml22__OutputFlowData(soap, &this->prodml22__RtaAnalysis::SimulatedFlowrate); - soap_serialize_PointerToprodml22__LogLogAnalysis(soap, &this->prodml22__RtaAnalysis::SimulatedLogLogData); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, &this->prodml22__RtaAnalysis::SpecializedAnalysis); - soap_serialize_PointerToprodml22__LogLogAnalysis(soap, &this->prodml22__RtaAnalysis::MeasuredLogLogData); - this->prodml22__AbstractAnalysis::soap_serialize(soap); + soap_serialize_PointerToprodml23__AbstractPtaPressureData(soap, &this->prodml23__RtaAnalysis::InputPressure); + soap_serialize_PointerToprodml23__AbstractPtaFlowData(soap, &this->prodml23__RtaAnalysis::InputFlowrateData); + soap_serialize_PointerToprodml23__OutputFlowData(soap, &this->prodml23__RtaAnalysis::SimulatedFlowrate); + soap_serialize_PointerToprodml23__LogLogAnalysis(soap, &this->prodml23__RtaAnalysis::SimulatedLogLogData); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, &this->prodml23__RtaAnalysis::SpecializedAnalysis); + soap_serialize_PointerToprodml23__LogLogAnalysis(soap, &this->prodml23__RtaAnalysis::MeasuredLogLogData); + this->prodml23__AbstractAnalysis::soap_serialize(soap); #endif } -int prodml22__RtaAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RtaAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RtaAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__RtaAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RtaAnalysis(struct soap *soap, const char *tag, int id, const prodml22__RtaAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RtaAnalysis(struct soap *soap, const char *tag, int id, const prodml23__RtaAnalysis *a, const char *type) { if (!type) - type = "prodml22:RtaAnalysis"; + type = "prodml23:RtaAnalysis"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis), type ? type : "prodml22:RtaAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis), type ? type : "prodml23:RtaAnalysis")) return soap->error; - if (!a->prodml22__RtaAnalysis::InputPressure) - { if (soap_element_empty(soap, "prodml22:InputPressure", 0, NULL)) + if (!a->prodml23__RtaAnalysis::InputPressure) + { if (soap_element_empty(soap, "prodml23:InputPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:InputPressure", -1, &a->prodml22__RtaAnalysis::InputPressure, "prodml22:AbstractPtaPressureData")) + else if (soap_out_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:InputPressure", -1, &a->prodml23__RtaAnalysis::InputPressure, "prodml23:AbstractPtaPressureData")) return soap->error; - if (!a->prodml22__RtaAnalysis::InputFlowrateData) - { if (soap_element_empty(soap, "prodml22:InputFlowrateData", 0, NULL)) + if (!a->prodml23__RtaAnalysis::InputFlowrateData) + { if (soap_element_empty(soap, "prodml23:InputFlowrateData", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaFlowData(soap, "prodml22:InputFlowrateData", -1, &a->prodml22__RtaAnalysis::InputFlowrateData, "prodml22:AbstractPtaFlowData")) + else if (soap_out_PointerToprodml23__AbstractPtaFlowData(soap, "prodml23:InputFlowrateData", -1, &a->prodml23__RtaAnalysis::InputFlowrateData, "prodml23:AbstractPtaFlowData")) return soap->error; - if (!a->prodml22__RtaAnalysis::SimulatedFlowrate) - { if (soap_element_empty(soap, "prodml22:SimulatedFlowrate", 0, NULL)) + if (!a->prodml23__RtaAnalysis::SimulatedFlowrate) + { if (soap_element_empty(soap, "prodml23:SimulatedFlowrate", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__OutputFlowData(soap, "prodml22:SimulatedFlowrate", -1, &a->prodml22__RtaAnalysis::SimulatedFlowrate, "prodml22:OutputFlowData")) + else if (soap_out_PointerToprodml23__OutputFlowData(soap, "prodml23:SimulatedFlowrate", -1, &a->prodml23__RtaAnalysis::SimulatedFlowrate, "prodml23:OutputFlowData")) return soap->error; - if (soap_out_PointerToprodml22__LogLogAnalysis(soap, "prodml22:SimulatedLogLogData", -1, &a->prodml22__RtaAnalysis::SimulatedLogLogData, "prodml22:LogLogAnalysis")) + if (soap_out_PointerToprodml23__LogLogAnalysis(soap, "prodml23:SimulatedLogLogData", -1, &a->prodml23__RtaAnalysis::SimulatedLogLogData, "prodml23:LogLogAnalysis")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, "prodml22:SpecializedAnalysis", -1, &a->prodml22__RtaAnalysis::SpecializedAnalysis, "prodml22:SpecializedAnalysis")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, "prodml23:SpecializedAnalysis", -1, &a->prodml23__RtaAnalysis::SpecializedAnalysis, "prodml23:SpecializedAnalysis")) return soap->error; - if (soap_out_PointerToprodml22__LogLogAnalysis(soap, "prodml22:MeasuredLogLogData", -1, &a->prodml22__RtaAnalysis::MeasuredLogLogData, "prodml22:LogLogAnalysis")) + if (soap_out_PointerToprodml23__LogLogAnalysis(soap, "prodml23:MeasuredLogLogData", -1, &a->prodml23__RtaAnalysis::MeasuredLogLogData, "prodml23:LogLogAnalysis")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__RtaAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RtaAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RtaAnalysis(soap, tag, this, type); + return soap_in_prodml23__RtaAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_in_prodml22__RtaAnalysis(struct soap *soap, const char *tag, prodml22__RtaAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__RtaAnalysis * SOAP_FMAC4 soap_in_prodml23__RtaAnalysis(struct soap *soap, const char *tag, prodml23__RtaAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__RtaAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis, sizeof(prodml22__RtaAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__RtaAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis, sizeof(prodml23__RtaAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__RtaAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__RtaAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -204688,35 +204683,35 @@ SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_in_prodml22__RtaAnalysis(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_InputPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:InputPressure", &a->prodml22__RtaAnalysis::InputPressure, "prodml22:AbstractPtaPressureData")) + { if (soap_in_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:InputPressure", &a->prodml23__RtaAnalysis::InputPressure, "prodml23:AbstractPtaPressureData")) { soap_flag_InputPressure1--; continue; } } if (soap_flag_InputFlowrateData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaFlowData(soap, "prodml22:InputFlowrateData", &a->prodml22__RtaAnalysis::InputFlowrateData, "prodml22:AbstractPtaFlowData")) + { if (soap_in_PointerToprodml23__AbstractPtaFlowData(soap, "prodml23:InputFlowrateData", &a->prodml23__RtaAnalysis::InputFlowrateData, "prodml23:AbstractPtaFlowData")) { soap_flag_InputFlowrateData1--; continue; } } if (soap_flag_SimulatedFlowrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OutputFlowData(soap, "prodml22:SimulatedFlowrate", &a->prodml22__RtaAnalysis::SimulatedFlowrate, "prodml22:OutputFlowData")) + { if (soap_in_PointerToprodml23__OutputFlowData(soap, "prodml23:SimulatedFlowrate", &a->prodml23__RtaAnalysis::SimulatedFlowrate, "prodml23:OutputFlowData")) { soap_flag_SimulatedFlowrate1--; continue; } } if (soap_flag_SimulatedLogLogData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LogLogAnalysis(soap, "prodml22:SimulatedLogLogData", &a->prodml22__RtaAnalysis::SimulatedLogLogData, "prodml22:LogLogAnalysis")) + { if (soap_in_PointerToprodml23__LogLogAnalysis(soap, "prodml23:SimulatedLogLogData", &a->prodml23__RtaAnalysis::SimulatedLogLogData, "prodml23:LogLogAnalysis")) { soap_flag_SimulatedLogLogData1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, "prodml22:SpecializedAnalysis", &a->prodml22__RtaAnalysis::SpecializedAnalysis, "prodml22:SpecializedAnalysis")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, "prodml23:SpecializedAnalysis", &a->prodml23__RtaAnalysis::SpecializedAnalysis, "prodml23:SpecializedAnalysis")) continue; } if (soap_flag_MeasuredLogLogData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LogLogAnalysis(soap, "prodml22:MeasuredLogLogData", &a->prodml22__RtaAnalysis::MeasuredLogLogData, "prodml22:LogLogAnalysis")) + { if (soap_in_PointerToprodml23__LogLogAnalysis(soap, "prodml23:MeasuredLogLogData", &a->prodml23__RtaAnalysis::MeasuredLogLogData, "prodml23:LogLogAnalysis")) { soap_flag_MeasuredLogLogData1--; continue; } @@ -204730,7 +204725,7 @@ SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_in_prodml22__RtaAnalysis(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__RtaAnalysis::InputPressure || !a->prodml22__RtaAnalysis::InputFlowrateData || !a->prodml22__RtaAnalysis::SimulatedFlowrate)) + if ((!a->prodml23__RtaAnalysis::InputPressure || !a->prodml23__RtaAnalysis::InputFlowrateData || !a->prodml23__RtaAnalysis::SimulatedFlowrate)) { soap->error = SOAP_OCCURS; return NULL; } @@ -204740,35 +204735,35 @@ SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_in_prodml22__RtaAnalysis(stru return NULL; } else - { a = (prodml22__RtaAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis, sizeof(prodml22__RtaAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__RtaAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis, sizeof(prodml23__RtaAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__RtaAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__RtaAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RtaAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RtaAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RtaAnalysis *p; - size_t k = sizeof(prodml22__RtaAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__RtaAnalysis *p; + size_t k = sizeof(prodml23__RtaAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RtaAnalysis); + { p = SOAP_NEW(soap, prodml23__RtaAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RtaAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RtaAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RtaAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RtaAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -204778,78 +204773,78 @@ SOAP_FMAC1 prodml22__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__RtaAnal return p; } -int prodml22__RtaAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RtaAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RtaAnalysis(soap, tag ? tag : "prodml22:RtaAnalysis", -2, this, type)) + if (soap_out_prodml23__RtaAnalysis(soap, tag ? tag : "prodml23:RtaAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RtaAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RtaAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RtaAnalysis(soap, this, tag, type); + return soap_get_prodml23__RtaAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_get_prodml22__RtaAnalysis(struct soap *soap, prodml22__RtaAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RtaAnalysis * SOAP_FMAC4 soap_get_prodml23__RtaAnalysis(struct soap *soap, prodml23__RtaAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RtaAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__RtaAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ResqmlModelRef::soap_default(struct soap *soap) +void prodml23__ResqmlModelRef::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ResqmlModelRef::ResqmlModelRef = NULL; + this->prodml23__ResqmlModelRef::ResqmlModelRef = NULL; } -void prodml22__ResqmlModelRef::soap_serialize(struct soap *soap) const +void prodml23__ResqmlModelRef::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ResqmlModelRef::ResqmlModelRef); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ResqmlModelRef::ResqmlModelRef); #endif } -int prodml22__ResqmlModelRef::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ResqmlModelRef::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ResqmlModelRef(soap, tag, id, this, type); + return soap_out_prodml23__ResqmlModelRef(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ResqmlModelRef(struct soap *soap, const char *tag, int id, const prodml22__ResqmlModelRef *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ResqmlModelRef(struct soap *soap, const char *tag, int id, const prodml23__ResqmlModelRef *a, const char *type) { if (!type) - type = "prodml22:ResqmlModelRef"; + type = "prodml23:ResqmlModelRef"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef), type)) return soap->error; - if (!a->prodml22__ResqmlModelRef::ResqmlModelRef) - { if (soap_element_empty(soap, "prodml22:ResqmlModelRef", 0, NULL)) + if (!a->prodml23__ResqmlModelRef::ResqmlModelRef) + { if (soap_element_empty(soap, "prodml23:ResqmlModelRef", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ResqmlModelRef", -1, &a->prodml22__ResqmlModelRef::ResqmlModelRef, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ResqmlModelRef", -1, &a->prodml23__ResqmlModelRef::ResqmlModelRef, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ResqmlModelRef::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ResqmlModelRef::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ResqmlModelRef(soap, tag, this, type); + return soap_in_prodml23__ResqmlModelRef(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml22__ResqmlModelRef(struct soap *soap, const char *tag, prodml22__ResqmlModelRef *a, const char *type) +SOAP_FMAC3 prodml23__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml23__ResqmlModelRef(struct soap *soap, const char *tag, prodml23__ResqmlModelRef *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ResqmlModelRef*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef, sizeof(prodml22__ResqmlModelRef), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ResqmlModelRef*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef, sizeof(prodml23__ResqmlModelRef), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ResqmlModelRef *)a->soap_in(soap, tag, type); + return (prodml23__ResqmlModelRef *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -204859,7 +204854,7 @@ SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml22__ResqmlModelRe for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ResqmlModelRef1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ResqmlModelRef", &a->prodml22__ResqmlModelRef::ResqmlModelRef, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ResqmlModelRef", &a->prodml23__ResqmlModelRef::ResqmlModelRef, "eml23:DataObjectReference")) { soap_flag_ResqmlModelRef1--; continue; } @@ -204873,7 +204868,7 @@ SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml22__ResqmlModelRe } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ResqmlModelRef::ResqmlModelRef)) + if ((!a->prodml23__ResqmlModelRef::ResqmlModelRef)) { soap->error = SOAP_OCCURS; return NULL; } @@ -204883,35 +204878,35 @@ SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml22__ResqmlModelRe return NULL; } else - { a = (prodml22__ResqmlModelRef *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef, sizeof(prodml22__ResqmlModelRef), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ResqmlModelRef *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef, sizeof(prodml23__ResqmlModelRef), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml22__ResqmlModelRef(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml23__ResqmlModelRef(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ResqmlModelRef(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ResqmlModelRef(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ResqmlModelRef *p; - size_t k = sizeof(prodml22__ResqmlModelRef); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef, n, gsoap_eml2_3_fdelete); + prodml23__ResqmlModelRef *p; + size_t k = sizeof(prodml23__ResqmlModelRef); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ResqmlModelRef); + { p = SOAP_NEW(soap, prodml23__ResqmlModelRef); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ResqmlModelRef, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ResqmlModelRef, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ResqmlModelRef location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ResqmlModelRef location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -204921,86 +204916,86 @@ SOAP_FMAC1 prodml22__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml22__Resq return p; } -int prodml22__ResqmlModelRef::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ResqmlModelRef::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ResqmlModelRef(soap, tag ? tag : "prodml22:ResqmlModelRef", -2, this, type)) + if (soap_out_prodml23__ResqmlModelRef(soap, tag ? tag : "prodml23:ResqmlModelRef", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ResqmlModelRef::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ResqmlModelRef::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ResqmlModelRef(soap, this, tag, type); + return soap_get_prodml23__ResqmlModelRef(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_get_prodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ResqmlModelRef * SOAP_FMAC4 soap_get_prodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ResqmlModelRef(soap, tag, p, type))) + if ((p = soap_in_prodml23__ResqmlModelRef(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReservoirZoneSubModel::soap_default(struct soap *soap) +void prodml23__ReservoirZoneSubModel::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap, &this->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint); - this->prodml22__ReservoirZoneSubModel::Permeability = NULL; - this->prodml22__ReservoirZoneSubModel::Porosity = NULL; - this->prodml22__ReservoirZoneSubModel::Thickness = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap, &this->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint); + this->prodml23__ReservoirZoneSubModel::Permeability = NULL; + this->prodml23__ReservoirZoneSubModel::Porosity = NULL; + this->prodml23__ReservoirZoneSubModel::Thickness = NULL; } -void prodml22__ReservoirZoneSubModel::soap_serialize(struct soap *soap) const +void prodml23__ReservoirZoneSubModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap, &this->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint); - soap_serialize_PointerToprodml22__HorizontalRadialPermeability(soap, &this->prodml22__ReservoirZoneSubModel::Permeability); - soap_serialize_PointerToprodml22__Porosity(soap, &this->prodml22__ReservoirZoneSubModel::Porosity); - soap_serialize_PointerToprodml22__TotalThickness(soap, &this->prodml22__ReservoirZoneSubModel::Thickness); + soap_serialize_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap, &this->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint); + soap_serialize_PointerToprodml23__HorizontalRadialPermeability(soap, &this->prodml23__ReservoirZoneSubModel::Permeability); + soap_serialize_PointerToprodml23__Porosity(soap, &this->prodml23__ReservoirZoneSubModel::Porosity); + soap_serialize_PointerToprodml23__TotalThickness(soap, &this->prodml23__ReservoirZoneSubModel::Thickness); #endif } -int prodml22__ReservoirZoneSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReservoirZoneSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReservoirZoneSubModel(soap, tag, id, this, type); + return soap_out_prodml23__ReservoirZoneSubModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirZoneSubModel(struct soap *soap, const char *tag, int id, const prodml22__ReservoirZoneSubModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirZoneSubModel(struct soap *soap, const char *tag, int id, const prodml23__ReservoirZoneSubModel *a, const char *type) { if (!type) - type = "prodml22:ReservoirZoneSubModel"; + type = "prodml23:ReservoirZoneSubModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap, "prodml22:BoundingPolygonPoint", -1, &a->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint, "prodml22:LocationIn2D")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap, "prodml23:BoundingPolygonPoint", -1, &a->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint, "prodml23:LocationIn2D")) return soap->error; - if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:Permeability", -1, &a->prodml22__ReservoirZoneSubModel::Permeability, "prodml22:HorizontalRadialPermeability")) + if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:Permeability", -1, &a->prodml23__ReservoirZoneSubModel::Permeability, "prodml23:HorizontalRadialPermeability")) return soap->error; - if (soap_out_PointerToprodml22__Porosity(soap, "prodml22:Porosity", -1, &a->prodml22__ReservoirZoneSubModel::Porosity, "prodml22:Porosity")) + if (soap_out_PointerToprodml23__Porosity(soap, "prodml23:Porosity", -1, &a->prodml23__ReservoirZoneSubModel::Porosity, "prodml23:Porosity")) return soap->error; - if (soap_out_PointerToprodml22__TotalThickness(soap, "prodml22:Thickness", -1, &a->prodml22__ReservoirZoneSubModel::Thickness, "prodml22:TotalThickness")) + if (soap_out_PointerToprodml23__TotalThickness(soap, "prodml23:Thickness", -1, &a->prodml23__ReservoirZoneSubModel::Thickness, "prodml23:TotalThickness")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReservoirZoneSubModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReservoirZoneSubModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReservoirZoneSubModel(soap, tag, this, type); + return soap_in_prodml23__ReservoirZoneSubModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml22__ReservoirZoneSubModel(struct soap *soap, const char *tag, prodml22__ReservoirZoneSubModel *a, const char *type) +SOAP_FMAC3 prodml23__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml23__ReservoirZoneSubModel(struct soap *soap, const char *tag, prodml23__ReservoirZoneSubModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReservoirZoneSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, sizeof(prodml22__ReservoirZoneSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReservoirZoneSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, sizeof(prodml23__ReservoirZoneSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReservoirZoneSubModel *)a->soap_in(soap, tag, type); + return (prodml23__ReservoirZoneSubModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -205012,23 +205007,23 @@ SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml22__Reserv for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap, "prodml22:BoundingPolygonPoint", &a->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint, "prodml22:LocationIn2D")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap, "prodml23:BoundingPolygonPoint", &a->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint, "prodml23:LocationIn2D")) continue; } if (soap_flag_Permeability1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, "prodml22:Permeability", &a->prodml22__ReservoirZoneSubModel::Permeability, "prodml22:HorizontalRadialPermeability")) + { if (soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, "prodml23:Permeability", &a->prodml23__ReservoirZoneSubModel::Permeability, "prodml23:HorizontalRadialPermeability")) { soap_flag_Permeability1--; continue; } } if (soap_flag_Porosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__Porosity(soap, "prodml22:Porosity", &a->prodml22__ReservoirZoneSubModel::Porosity, "prodml22:Porosity")) + { if (soap_in_PointerToprodml23__Porosity(soap, "prodml23:Porosity", &a->prodml23__ReservoirZoneSubModel::Porosity, "prodml23:Porosity")) { soap_flag_Porosity1--; continue; } } if (soap_flag_Thickness1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TotalThickness(soap, "prodml22:Thickness", &a->prodml22__ReservoirZoneSubModel::Thickness, "prodml22:TotalThickness")) + { if (soap_in_PointerToprodml23__TotalThickness(soap, "prodml23:Thickness", &a->prodml23__ReservoirZoneSubModel::Thickness, "prodml23:TotalThickness")) { soap_flag_Thickness1--; continue; } @@ -205042,7 +205037,7 @@ SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml22__Reserv } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint.size() < 1)) + if ((a->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -205052,35 +205047,35 @@ SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml22__Reserv return NULL; } else - { a = (prodml22__ReservoirZoneSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, sizeof(prodml22__ReservoirZoneSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReservoirZoneSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, sizeof(prodml23__ReservoirZoneSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml22__ReservoirZoneSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml23__ReservoirZoneSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReservoirZoneSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReservoirZoneSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReservoirZoneSubModel *p; - size_t k = sizeof(prodml22__ReservoirZoneSubModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, n, gsoap_eml2_3_fdelete); + prodml23__ReservoirZoneSubModel *p; + size_t k = sizeof(prodml23__ReservoirZoneSubModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReservoirZoneSubModel); + { p = SOAP_NEW(soap, prodml23__ReservoirZoneSubModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReservoirZoneSubModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReservoirZoneSubModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReservoirZoneSubModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReservoirZoneSubModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -205090,79 +205085,79 @@ SOAP_FMAC1 prodml22__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__ReservoirZoneSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReservoirZoneSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReservoirZoneSubModel(soap, tag ? tag : "prodml22:ReservoirZoneSubModel", -2, this, type)) + if (soap_out_prodml23__ReservoirZoneSubModel(soap, tag ? tag : "prodml23:ReservoirZoneSubModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReservoirZoneSubModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReservoirZoneSubModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReservoirZoneSubModel(soap, this, tag, type); + return soap_get_prodml23__ReservoirZoneSubModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_get_prodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReservoirZoneSubModel * SOAP_FMAC4 soap_get_prodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReservoirZoneSubModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReservoirZoneSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PtaDeconvolution::soap_default(struct soap *soap) +void prodml23__PtaDeconvolution::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__PtaDeconvolution::FlowTestActivity = NULL; - this->prodml22__PtaDeconvolution::FlowTestMeasurementSetRef = NULL; - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__PtaDeconvolution::FlowTestPeriodRef); - soap_default_eml23__String2000(soap, &this->prodml22__PtaDeconvolution::MethodName); - this->prodml22__PtaDeconvolution::InitialPressure = NULL; - this->prodml22__PtaDeconvolution::InputPressure = NULL; - this->prodml22__PtaDeconvolution::InputFlowrate = NULL; - this->prodml22__PtaDeconvolution::ReconstructedPressure = NULL; - this->prodml22__PtaDeconvolution::ReconstructedFlowrate = NULL; - this->prodml22__PtaDeconvolution::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap, &this->prodml22__PtaDeconvolution::DeconvolutionOutput); -} - -void prodml22__PtaDeconvolution::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PtaDeconvolution::FlowTestActivity); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__PtaDeconvolution::FlowTestMeasurementSetRef); - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__PtaDeconvolution::FlowTestPeriodRef); - soap_embedded(soap, &this->prodml22__PtaDeconvolution::MethodName, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); - soap_serialize_eml23__String2000(soap, &this->prodml22__PtaDeconvolution::MethodName); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__PtaDeconvolution::InitialPressure); - soap_serialize_PointerToprodml22__AbstractPtaPressureData(soap, &this->prodml22__PtaDeconvolution::InputPressure); - soap_serialize_PointerToprodml22__AbstractPtaFlowData(soap, &this->prodml22__PtaDeconvolution::InputFlowrate); - soap_serialize_PointerToprodml22__DeconvolvedPressureData(soap, &this->prodml22__PtaDeconvolution::ReconstructedPressure); - soap_serialize_PointerToprodml22__DeconvolvedFlowData(soap, &this->prodml22__PtaDeconvolution::ReconstructedFlowrate); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PtaDeconvolution::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap, &this->prodml22__PtaDeconvolution::DeconvolutionOutput); + this->prodml23__PtaDeconvolution::FlowTestMeasurementSetRef = NULL; + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__PtaDeconvolution::FlowTestPeriodRef); + soap_default_eml23__String2000(soap, &this->prodml23__PtaDeconvolution::MethodName); + this->prodml23__PtaDeconvolution::InitialPressure = NULL; + this->prodml23__PtaDeconvolution::InputPressure = NULL; + this->prodml23__PtaDeconvolution::InputFlowrate = NULL; + this->prodml23__PtaDeconvolution::ReconstructedPressure = NULL; + this->prodml23__PtaDeconvolution::ReconstructedFlowrate = NULL; + this->prodml23__PtaDeconvolution::Remark = NULL; + this->prodml23__PtaDeconvolution::FlowTestActivity = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap, &this->prodml23__PtaDeconvolution::DeconvolutionOutput); +} + +void prodml23__PtaDeconvolution::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__PtaDeconvolution::FlowTestMeasurementSetRef); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__PtaDeconvolution::FlowTestPeriodRef); + soap_embedded(soap, &this->prodml23__PtaDeconvolution::MethodName, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); + soap_serialize_eml23__String2000(soap, &this->prodml23__PtaDeconvolution::MethodName); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__PtaDeconvolution::InitialPressure); + soap_serialize_PointerToprodml23__AbstractPtaPressureData(soap, &this->prodml23__PtaDeconvolution::InputPressure); + soap_serialize_PointerToprodml23__AbstractPtaFlowData(soap, &this->prodml23__PtaDeconvolution::InputFlowrate); + soap_serialize_PointerToprodml23__DeconvolvedPressureData(soap, &this->prodml23__PtaDeconvolution::ReconstructedPressure); + soap_serialize_PointerToprodml23__DeconvolvedFlowData(soap, &this->prodml23__PtaDeconvolution::ReconstructedFlowrate); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PtaDeconvolution::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PtaDeconvolution::FlowTestActivity); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap, &this->prodml23__PtaDeconvolution::DeconvolutionOutput); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__PtaDeconvolution::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PtaDeconvolution::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PtaDeconvolution(soap, tag, id, this, type); + return soap_out_prodml23__PtaDeconvolution(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaDeconvolution(struct soap *soap, const char *tag, int id, const prodml22__PtaDeconvolution *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PtaDeconvolution(struct soap *soap, const char *tag, int id, const prodml23__PtaDeconvolution *a, const char *type) { if (!type) - type = "prodml22:PtaDeconvolution"; + type = "prodml23:PtaDeconvolution"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__PtaDeconvolution), type ? type : "prodml22:PtaDeconvolution")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution), type ? type : "prodml23:PtaDeconvolution")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -205184,64 +205179,64 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaDeconvolution(struct soap *soap, return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__PtaDeconvolution::FlowTestActivity) - { if (soap_element_empty(soap, "prodml22:FlowTestActivity", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__PtaDeconvolution::FlowTestActivity, "eml23:DataObjectReference")) - return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:FlowTestMeasurementSetRef", -1, &a->prodml22__PtaDeconvolution::FlowTestMeasurementSetRef, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:FlowTestMeasurementSetRef", -1, &a->prodml23__PtaDeconvolution::FlowTestMeasurementSetRef, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:FlowTestPeriodRef", -1, &a->prodml22__PtaDeconvolution::FlowTestPeriodRef, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:FlowTestPeriodRef", -1, &a->prodml23__PtaDeconvolution::FlowTestPeriodRef, "eml23:String64")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:MethodName", -1, &a->prodml22__PtaDeconvolution::MethodName, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:MethodName", -1, &a->prodml23__PtaDeconvolution::MethodName, "eml23:String2000")) return soap->error; - if (!a->prodml22__PtaDeconvolution::InitialPressure) - { if (soap_element_empty(soap, "prodml22:InitialPressure", 0, NULL)) + if (!a->prodml23__PtaDeconvolution::InitialPressure) + { if (soap_element_empty(soap, "prodml23:InitialPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:InitialPressure", -1, &a->prodml22__PtaDeconvolution::InitialPressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:InitialPressure", -1, &a->prodml23__PtaDeconvolution::InitialPressure, "eml23:PressureMeasure")) return soap->error; - if (!a->prodml22__PtaDeconvolution::InputPressure) - { if (soap_element_empty(soap, "prodml22:InputPressure", 0, NULL)) + if (!a->prodml23__PtaDeconvolution::InputPressure) + { if (soap_element_empty(soap, "prodml23:InputPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:InputPressure", -1, &a->prodml22__PtaDeconvolution::InputPressure, "prodml22:AbstractPtaPressureData")) + else if (soap_out_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:InputPressure", -1, &a->prodml23__PtaDeconvolution::InputPressure, "prodml23:AbstractPtaPressureData")) return soap->error; - if (!a->prodml22__PtaDeconvolution::InputFlowrate) - { if (soap_element_empty(soap, "prodml22:InputFlowrate", 0, NULL)) + if (!a->prodml23__PtaDeconvolution::InputFlowrate) + { if (soap_element_empty(soap, "prodml23:InputFlowrate", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaFlowData(soap, "prodml22:InputFlowrate", -1, &a->prodml22__PtaDeconvolution::InputFlowrate, "prodml22:AbstractPtaFlowData")) + else if (soap_out_PointerToprodml23__AbstractPtaFlowData(soap, "prodml23:InputFlowrate", -1, &a->prodml23__PtaDeconvolution::InputFlowrate, "prodml23:AbstractPtaFlowData")) return soap->error; - if (soap_out_PointerToprodml22__DeconvolvedPressureData(soap, "prodml22:ReconstructedPressure", -1, &a->prodml22__PtaDeconvolution::ReconstructedPressure, "prodml22:DeconvolvedPressureData")) + if (soap_out_PointerToprodml23__DeconvolvedPressureData(soap, "prodml23:ReconstructedPressure", -1, &a->prodml23__PtaDeconvolution::ReconstructedPressure, "prodml23:DeconvolvedPressureData")) return soap->error; - if (soap_out_PointerToprodml22__DeconvolvedFlowData(soap, "prodml22:ReconstructedFlowrate", -1, &a->prodml22__PtaDeconvolution::ReconstructedFlowrate, "prodml22:DeconvolvedFlowData")) + if (soap_out_PointerToprodml23__DeconvolvedFlowData(soap, "prodml23:ReconstructedFlowrate", -1, &a->prodml23__PtaDeconvolution::ReconstructedFlowrate, "prodml23:DeconvolvedFlowData")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__PtaDeconvolution::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__PtaDeconvolution::Remark, "eml23:String2000")) + return soap->error; + if (!a->prodml23__PtaDeconvolution::FlowTestActivity) + { if (soap_element_empty(soap, "prodml23:FlowTestActivity", 0, NULL)) + return soap->error; + } + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__PtaDeconvolution::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap, "prodml22:DeconvolutionOutput", -1, &a->prodml22__PtaDeconvolution::DeconvolutionOutput, "prodml22:AbstractDeconvolutionOutput")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap, "prodml23:DeconvolutionOutput", -1, &a->prodml23__PtaDeconvolution::DeconvolutionOutput, "prodml23:AbstractDeconvolutionOutput")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PtaDeconvolution::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PtaDeconvolution::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PtaDeconvolution(soap, tag, this, type); + return soap_in_prodml23__PtaDeconvolution(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvolution(struct soap *soap, const char *tag, prodml22__PtaDeconvolution *a, const char *type) +SOAP_FMAC3 prodml23__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml23__PtaDeconvolution(struct soap *soap, const char *tag, prodml23__PtaDeconvolution *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PtaDeconvolution*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution, sizeof(prodml22__PtaDeconvolution), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PtaDeconvolution*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution, sizeof(prodml23__PtaDeconvolution), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PtaDeconvolution *)a->soap_in(soap, tag, type); + return (prodml23__PtaDeconvolution *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -205266,7 +205261,6 @@ SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvol size_t soap_flag_ObjectVersionReason2 = 1; size_t soap_flag_OSDUIntegration2 = 1; size_t soap_flag_CustomData2 = 1; - size_t soap_flag_FlowTestActivity1 = 1; size_t soap_flag_FlowTestMeasurementSetRef1 = 1; size_t soap_flag_MethodName1 = 1; size_t soap_flag_InitialPressure1 = 1; @@ -205275,6 +205269,7 @@ SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvol size_t soap_flag_ReconstructedPressure1 = 1; size_t soap_flag_ReconstructedFlowrate1 = 1; size_t soap_flag_Remark1 = 1; + size_t soap_flag_FlowTestActivity1 = 1; if (soap->body && *soap->href != '#') { for (;;) @@ -205321,66 +205316,66 @@ SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvol { if (soap_in_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) continue; } - if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__PtaDeconvolution::FlowTestActivity, "eml23:DataObjectReference")) - { soap_flag_FlowTestActivity1--; - continue; - } - } if (soap_flag_FlowTestMeasurementSetRef1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:FlowTestMeasurementSetRef", &a->prodml22__PtaDeconvolution::FlowTestMeasurementSetRef, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:FlowTestMeasurementSetRef", &a->prodml23__PtaDeconvolution::FlowTestMeasurementSetRef, "eml23:String64")) { soap_flag_FlowTestMeasurementSetRef1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:FlowTestPeriodRef", &a->prodml22__PtaDeconvolution::FlowTestPeriodRef, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:FlowTestPeriodRef", &a->prodml23__PtaDeconvolution::FlowTestPeriodRef, "eml23:String64")) continue; } if (soap_flag_MethodName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:MethodName", &a->prodml22__PtaDeconvolution::MethodName, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:MethodName", &a->prodml23__PtaDeconvolution::MethodName, "eml23:String2000")) { soap_flag_MethodName1--; continue; } } if (soap_flag_InitialPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:InitialPressure", &a->prodml22__PtaDeconvolution::InitialPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:InitialPressure", &a->prodml23__PtaDeconvolution::InitialPressure, "eml23:PressureMeasure")) { soap_flag_InitialPressure1--; continue; } } if (soap_flag_InputPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:InputPressure", &a->prodml22__PtaDeconvolution::InputPressure, "prodml22:AbstractPtaPressureData")) + { if (soap_in_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:InputPressure", &a->prodml23__PtaDeconvolution::InputPressure, "prodml23:AbstractPtaPressureData")) { soap_flag_InputPressure1--; continue; } } if (soap_flag_InputFlowrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaFlowData(soap, "prodml22:InputFlowrate", &a->prodml22__PtaDeconvolution::InputFlowrate, "prodml22:AbstractPtaFlowData")) + { if (soap_in_PointerToprodml23__AbstractPtaFlowData(soap, "prodml23:InputFlowrate", &a->prodml23__PtaDeconvolution::InputFlowrate, "prodml23:AbstractPtaFlowData")) { soap_flag_InputFlowrate1--; continue; } } if (soap_flag_ReconstructedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeconvolvedPressureData(soap, "prodml22:ReconstructedPressure", &a->prodml22__PtaDeconvolution::ReconstructedPressure, "prodml22:DeconvolvedPressureData")) + { if (soap_in_PointerToprodml23__DeconvolvedPressureData(soap, "prodml23:ReconstructedPressure", &a->prodml23__PtaDeconvolution::ReconstructedPressure, "prodml23:DeconvolvedPressureData")) { soap_flag_ReconstructedPressure1--; continue; } } if (soap_flag_ReconstructedFlowrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeconvolvedFlowData(soap, "prodml22:ReconstructedFlowrate", &a->prodml22__PtaDeconvolution::ReconstructedFlowrate, "prodml22:DeconvolvedFlowData")) + { if (soap_in_PointerToprodml23__DeconvolvedFlowData(soap, "prodml23:ReconstructedFlowrate", &a->prodml23__PtaDeconvolution::ReconstructedFlowrate, "prodml23:DeconvolvedFlowData")) { soap_flag_ReconstructedFlowrate1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__PtaDeconvolution::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__PtaDeconvolution::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } + if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__PtaDeconvolution::FlowTestActivity, "eml23:DataObjectReference")) + { soap_flag_FlowTestActivity1--; + continue; + } + } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap, "prodml22:DeconvolutionOutput", &a->prodml22__PtaDeconvolution::DeconvolutionOutput, "prodml22:AbstractDeconvolutionOutput")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap, "prodml23:DeconvolutionOutput", &a->prodml23__PtaDeconvolution::DeconvolutionOutput, "prodml23:AbstractDeconvolutionOutput")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -205392,7 +205387,7 @@ SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvol } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__PtaDeconvolution::FlowTestActivity || soap_flag_MethodName1 > 0 || !a->prodml22__PtaDeconvolution::InitialPressure || !a->prodml22__PtaDeconvolution::InputPressure || !a->prodml22__PtaDeconvolution::InputFlowrate || a->prodml22__PtaDeconvolution::DeconvolutionOutput.size() < 1)) + if ((!a->eml23__AbstractObject::Citation || soap_flag_MethodName1 > 0 || !a->prodml23__PtaDeconvolution::InitialPressure || !a->prodml23__PtaDeconvolution::InputPressure || !a->prodml23__PtaDeconvolution::InputFlowrate || !a->prodml23__PtaDeconvolution::FlowTestActivity || a->prodml23__PtaDeconvolution::DeconvolutionOutput.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -205402,35 +205397,35 @@ SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvol return NULL; } else - { a = (prodml22__PtaDeconvolution *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution, sizeof(prodml22__PtaDeconvolution), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PtaDeconvolution *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution, sizeof(prodml23__PtaDeconvolution), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml22__PtaDeconvolution(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml23__PtaDeconvolution(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PtaDeconvolution(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PtaDeconvolution(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PtaDeconvolution *p; - size_t k = sizeof(prodml22__PtaDeconvolution); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution, n, gsoap_eml2_3_fdelete); + prodml23__PtaDeconvolution *p; + size_t k = sizeof(prodml23__PtaDeconvolution); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PtaDeconvolution); + { p = SOAP_NEW(soap, prodml23__PtaDeconvolution); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PtaDeconvolution, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PtaDeconvolution, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PtaDeconvolution location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PtaDeconvolution location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -205440,70 +205435,68 @@ SOAP_FMAC1 prodml22__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml22__Pt return p; } -int prodml22__PtaDeconvolution::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PtaDeconvolution::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PtaDeconvolution(soap, tag ? tag : "prodml22:PtaDeconvolution", -2, this, type)) + if (soap_out_prodml23__PtaDeconvolution(soap, tag ? tag : "prodml23:PtaDeconvolution", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PtaDeconvolution::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PtaDeconvolution::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PtaDeconvolution(soap, this, tag, type); + return soap_get_prodml23__PtaDeconvolution(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_get_prodml22__PtaDeconvolution(struct soap *soap, prodml22__PtaDeconvolution *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PtaDeconvolution * SOAP_FMAC4 soap_get_prodml23__PtaDeconvolution(struct soap *soap, prodml23__PtaDeconvolution *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PtaDeconvolution(soap, tag, p, type))) + if ((p = soap_in_prodml23__PtaDeconvolution(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PtaDataPreProcess::soap_default(struct soap *soap) +void prodml23__PtaDataPreProcess::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__PtaDataPreProcess::FlowTestActivity = NULL; - this->prodml22__PtaDataPreProcess::FlowTestMeasurementSetRef = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap, &this->prodml22__PtaDataPreProcess::InputData); - this->prodml22__PtaDataPreProcess::PreProcessedData = NULL; - soap_default_std__vectorTemplateOfprodml22__DataConditioningExt(soap, &this->prodml22__PtaDataPreProcess::DataConditioning); - this->prodml22__PtaDataPreProcess::Remark = NULL; - this->prodml22__PtaDataPreProcess::FlowTestActivity_ = NULL; + this->prodml23__PtaDataPreProcess::FlowTestMeasurementSetRef = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap, &this->prodml23__PtaDataPreProcess::InputData); + this->prodml23__PtaDataPreProcess::PreProcessedData = NULL; + soap_default_std__vectorTemplateOfprodml23__DataConditioningExt(soap, &this->prodml23__PtaDataPreProcess::DataConditioning); + this->prodml23__PtaDataPreProcess::Remark = NULL; + this->prodml23__PtaDataPreProcess::FlowTestActivity = NULL; } -void prodml22__PtaDataPreProcess::soap_serialize(struct soap *soap) const +void prodml23__PtaDataPreProcess::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PtaDataPreProcess::FlowTestActivity); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__PtaDataPreProcess::FlowTestMeasurementSetRef); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap, &this->prodml22__PtaDataPreProcess::InputData); - soap_serialize_PointerToprodml22__AbstractFlowTestData(soap, &this->prodml22__PtaDataPreProcess::PreProcessedData); - soap_serialize_std__vectorTemplateOfprodml22__DataConditioningExt(soap, &this->prodml22__PtaDataPreProcess::DataConditioning); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PtaDataPreProcess::Remark); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PtaDataPreProcess::FlowTestActivity_); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__PtaDataPreProcess::FlowTestMeasurementSetRef); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap, &this->prodml23__PtaDataPreProcess::InputData); + soap_serialize_PointerToprodml23__AbstractFlowTestData(soap, &this->prodml23__PtaDataPreProcess::PreProcessedData); + soap_serialize_std__vectorTemplateOfprodml23__DataConditioningExt(soap, &this->prodml23__PtaDataPreProcess::DataConditioning); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PtaDataPreProcess::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PtaDataPreProcess::FlowTestActivity); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__PtaDataPreProcess::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PtaDataPreProcess::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PtaDataPreProcess(soap, tag, id, this, type); + return soap_out_prodml23__PtaDataPreProcess(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaDataPreProcess(struct soap *soap, const char *tag, int id, const prodml22__PtaDataPreProcess *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PtaDataPreProcess(struct soap *soap, const char *tag, int id, const prodml23__PtaDataPreProcess *a, const char *type) { if (!type) - type = "prodml22:PtaDataPreProcess"; + type = "prodml23:PtaDataPreProcess"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__PtaDataPreProcess), type ? type : "prodml22:PtaDataPreProcess")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess), type ? type : "prodml23:PtaDataPreProcess")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -205525,52 +205518,46 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaDataPreProcess(struct soap *soap return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__PtaDataPreProcess::FlowTestActivity) - { if (soap_element_empty(soap, "prodml22:FlowTestActivity", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__PtaDataPreProcess::FlowTestActivity, "eml23:DataObjectReference")) - return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:FlowTestMeasurementSetRef", -1, &a->prodml22__PtaDataPreProcess::FlowTestMeasurementSetRef, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:FlowTestMeasurementSetRef", -1, &a->prodml23__PtaDataPreProcess::FlowTestMeasurementSetRef, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap, "prodml22:InputData", -1, &a->prodml22__PtaDataPreProcess::InputData, "prodml22:AbstractFlowTestData")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap, "prodml23:InputData", -1, &a->prodml23__PtaDataPreProcess::InputData, "prodml23:AbstractFlowTestData")) return soap->error; - if (!a->prodml22__PtaDataPreProcess::PreProcessedData) - { if (soap_element_empty(soap, "prodml22:PreProcessedData", 0, NULL)) + if (!a->prodml23__PtaDataPreProcess::PreProcessedData) + { if (soap_element_empty(soap, "prodml23:PreProcessedData", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractFlowTestData(soap, "prodml22:PreProcessedData", -1, &a->prodml22__PtaDataPreProcess::PreProcessedData, "prodml22:AbstractFlowTestData")) + else if (soap_out_PointerToprodml23__AbstractFlowTestData(soap, "prodml23:PreProcessedData", -1, &a->prodml23__PtaDataPreProcess::PreProcessedData, "prodml23:AbstractFlowTestData")) return soap->error; - if (soap_out_std__vectorTemplateOfprodml22__DataConditioningExt(soap, "prodml22:DataConditioning", -1, &a->prodml22__PtaDataPreProcess::DataConditioning, "prodml22:DataConditioningExt")) + if (soap_out_std__vectorTemplateOfprodml23__DataConditioningExt(soap, "prodml23:DataConditioning", -1, &a->prodml23__PtaDataPreProcess::DataConditioning, "prodml23:DataConditioningExt")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__PtaDataPreProcess::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__PtaDataPreProcess::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__PtaDataPreProcess::FlowTestActivity_) - { if (soap_element_empty(soap, "prodml22:FlowTestActivity", 0, NULL)) + if (!a->prodml23__PtaDataPreProcess::FlowTestActivity) + { if (soap_element_empty(soap, "prodml23:FlowTestActivity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__PtaDataPreProcess::FlowTestActivity_, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__PtaDataPreProcess::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PtaDataPreProcess::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PtaDataPreProcess::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PtaDataPreProcess(soap, tag, this, type); + return soap_in_prodml23__PtaDataPreProcess(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml22__PtaDataPreProcess(struct soap *soap, const char *tag, prodml22__PtaDataPreProcess *a, const char *type) +SOAP_FMAC3 prodml23__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml23__PtaDataPreProcess(struct soap *soap, const char *tag, prodml23__PtaDataPreProcess *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PtaDataPreProcess*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess, sizeof(prodml22__PtaDataPreProcess), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PtaDataPreProcess*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess, sizeof(prodml23__PtaDataPreProcess), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PtaDataPreProcess *)a->soap_in(soap, tag, type); + return (prodml23__PtaDataPreProcess *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -205595,11 +205582,10 @@ SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml22__PtaDataPre size_t soap_flag_ObjectVersionReason2 = 1; size_t soap_flag_OSDUIntegration2 = 1; size_t soap_flag_CustomData2 = 1; - size_t soap_flag_FlowTestActivity1 = 1; size_t soap_flag_FlowTestMeasurementSetRef1 = 1; size_t soap_flag_PreProcessedData1 = 1; size_t soap_flag_Remark1 = 1; - size_t soap_flag_FlowTestActivity_1 = 1; + size_t soap_flag_FlowTestActivity1 = 1; if (soap->body && *soap->href != '#') { for (;;) @@ -205646,41 +205632,35 @@ SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml22__PtaDataPre { if (soap_in_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) continue; } - if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__PtaDataPreProcess::FlowTestActivity, "eml23:DataObjectReference")) - { soap_flag_FlowTestActivity1--; - continue; - } - } if (soap_flag_FlowTestMeasurementSetRef1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:FlowTestMeasurementSetRef", &a->prodml22__PtaDataPreProcess::FlowTestMeasurementSetRef, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:FlowTestMeasurementSetRef", &a->prodml23__PtaDataPreProcess::FlowTestMeasurementSetRef, "eml23:String64")) { soap_flag_FlowTestMeasurementSetRef1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap, "prodml22:InputData", &a->prodml22__PtaDataPreProcess::InputData, "prodml22:AbstractFlowTestData")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap, "prodml23:InputData", &a->prodml23__PtaDataPreProcess::InputData, "prodml23:AbstractFlowTestData")) continue; } if (soap_flag_PreProcessedData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractFlowTestData(soap, "prodml22:PreProcessedData", &a->prodml22__PtaDataPreProcess::PreProcessedData, "prodml22:AbstractFlowTestData")) + { if (soap_in_PointerToprodml23__AbstractFlowTestData(soap, "prodml23:PreProcessedData", &a->prodml23__PtaDataPreProcess::PreProcessedData, "prodml23:AbstractFlowTestData")) { soap_flag_PreProcessedData1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfprodml22__DataConditioningExt(soap, "prodml22:DataConditioning", &a->prodml22__PtaDataPreProcess::DataConditioning, "prodml22:DataConditioningExt")) + { if (soap_in_std__vectorTemplateOfprodml23__DataConditioningExt(soap, "prodml23:DataConditioning", &a->prodml23__PtaDataPreProcess::DataConditioning, "prodml23:DataConditioningExt")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__PtaDataPreProcess::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__PtaDataPreProcess::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } - if (soap_flag_FlowTestActivity_1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__PtaDataPreProcess::FlowTestActivity_, "eml23:DataObjectReference")) - { soap_flag_FlowTestActivity_1--; + if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__PtaDataPreProcess::FlowTestActivity, "eml23:DataObjectReference")) + { soap_flag_FlowTestActivity1--; continue; } } @@ -205693,7 +205673,7 @@ SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml22__PtaDataPre } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__PtaDataPreProcess::FlowTestActivity || a->prodml22__PtaDataPreProcess::InputData.size() < 1 || !a->prodml22__PtaDataPreProcess::PreProcessedData || !a->prodml22__PtaDataPreProcess::FlowTestActivity_)) + if ((!a->eml23__AbstractObject::Citation || a->prodml23__PtaDataPreProcess::InputData.size() < 1 || !a->prodml23__PtaDataPreProcess::PreProcessedData || !a->prodml23__PtaDataPreProcess::FlowTestActivity)) { soap->error = SOAP_OCCURS; return NULL; } @@ -205703,35 +205683,35 @@ SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml22__PtaDataPre return NULL; } else - { a = (prodml22__PtaDataPreProcess *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess, sizeof(prodml22__PtaDataPreProcess), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PtaDataPreProcess *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess, sizeof(prodml23__PtaDataPreProcess), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml22__PtaDataPreProcess(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml23__PtaDataPreProcess(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PtaDataPreProcess(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PtaDataPreProcess(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PtaDataPreProcess *p; - size_t k = sizeof(prodml22__PtaDataPreProcess); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess, n, gsoap_eml2_3_fdelete); + prodml23__PtaDataPreProcess *p; + size_t k = sizeof(prodml23__PtaDataPreProcess); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PtaDataPreProcess); + { p = SOAP_NEW(soap, prodml23__PtaDataPreProcess); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PtaDataPreProcess, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PtaDataPreProcess, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PtaDataPreProcess location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PtaDataPreProcess location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -205741,120 +205721,120 @@ SOAP_FMAC1 prodml22__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml22__P return p; } -int prodml22__PtaDataPreProcess::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PtaDataPreProcess::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PtaDataPreProcess(soap, tag ? tag : "prodml22:PtaDataPreProcess", -2, this, type)) + if (soap_out_prodml23__PtaDataPreProcess(soap, tag ? tag : "prodml23:PtaDataPreProcess", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PtaDataPreProcess::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PtaDataPreProcess::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PtaDataPreProcess(soap, this, tag, type); + return soap_get_prodml23__PtaDataPreProcess(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_get_prodml22__PtaDataPreProcess(struct soap *soap, prodml22__PtaDataPreProcess *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PtaDataPreProcess * SOAP_FMAC4 soap_get_prodml23__PtaDataPreProcess(struct soap *soap, prodml23__PtaDataPreProcess *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PtaDataPreProcess(soap, tag, p, type))) + if ((p = soap_in_prodml23__PtaDataPreProcess(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PtaAnalysis::soap_default(struct soap *soap) +void prodml23__PtaAnalysis::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractAnalysis::soap_default(soap); - this->prodml22__PtaAnalysis::InitialPressureP0ForImpulseTest = NULL; - this->prodml22__PtaAnalysis::InputPressure = NULL; - this->prodml22__PtaAnalysis::SimulatedPressure = NULL; - this->prodml22__PtaAnalysis::SimulatedPressureGaugeNoise = NULL; - this->prodml22__PtaAnalysis::SimulatedPressureGaugeResolution = NULL; - this->prodml22__PtaAnalysis::SimulatedPressureGaugeDrift = NULL; - this->prodml22__PtaAnalysis::MeasuredLogLogData = NULL; - this->prodml22__PtaAnalysis::SimulatedLogLogData = NULL; - this->prodml22__PtaAnalysis::RateHistory = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, &this->prodml22__PtaAnalysis::SpecializedAnalysis); + this->prodml23__AbstractAnalysis::soap_default(soap); + this->prodml23__PtaAnalysis::InitialPressureP0ForImpulseTest = NULL; + this->prodml23__PtaAnalysis::InputPressure = NULL; + this->prodml23__PtaAnalysis::SimulatedPressure = NULL; + this->prodml23__PtaAnalysis::SimulatedPressureGaugeNoise = NULL; + this->prodml23__PtaAnalysis::SimulatedPressureGaugeResolution = NULL; + this->prodml23__PtaAnalysis::SimulatedPressureGaugeDrift = NULL; + this->prodml23__PtaAnalysis::MeasuredLogLogData = NULL; + this->prodml23__PtaAnalysis::SimulatedLogLogData = NULL; + this->prodml23__PtaAnalysis::RateHistory = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, &this->prodml23__PtaAnalysis::SpecializedAnalysis); } -void prodml22__PtaAnalysis::soap_serialize(struct soap *soap) const +void prodml23__PtaAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__PtaAnalysis::InitialPressureP0ForImpulseTest); - soap_serialize_PointerToprodml22__AbstractPtaPressureData(soap, &this->prodml22__PtaAnalysis::InputPressure); - soap_serialize_PointerToprodml22__OutputPressureData(soap, &this->prodml22__PtaAnalysis::SimulatedPressure); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__PtaAnalysis::SimulatedPressureGaugeNoise); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__PtaAnalysis::SimulatedPressureGaugeResolution); - soap_serialize_PointerToeml23__PressurePerTimeMeasure(soap, &this->prodml22__PtaAnalysis::SimulatedPressureGaugeDrift); - soap_serialize_PointerToprodml22__LogLogAnalysis(soap, &this->prodml22__PtaAnalysis::MeasuredLogLogData); - soap_serialize_PointerToprodml22__LogLogAnalysis(soap, &this->prodml22__PtaAnalysis::SimulatedLogLogData); - soap_serialize_PointerToprodml22__AbstractRateHistory(soap, &this->prodml22__PtaAnalysis::RateHistory); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, &this->prodml22__PtaAnalysis::SpecializedAnalysis); - this->prodml22__AbstractAnalysis::soap_serialize(soap); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__PtaAnalysis::InitialPressureP0ForImpulseTest); + soap_serialize_PointerToprodml23__AbstractPtaPressureData(soap, &this->prodml23__PtaAnalysis::InputPressure); + soap_serialize_PointerToprodml23__OutputPressureData(soap, &this->prodml23__PtaAnalysis::SimulatedPressure); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__PtaAnalysis::SimulatedPressureGaugeNoise); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__PtaAnalysis::SimulatedPressureGaugeResolution); + soap_serialize_PointerToeml23__PressurePerTimeMeasure(soap, &this->prodml23__PtaAnalysis::SimulatedPressureGaugeDrift); + soap_serialize_PointerToprodml23__LogLogAnalysis(soap, &this->prodml23__PtaAnalysis::MeasuredLogLogData); + soap_serialize_PointerToprodml23__LogLogAnalysis(soap, &this->prodml23__PtaAnalysis::SimulatedLogLogData); + soap_serialize_PointerToprodml23__AbstractRateHistory(soap, &this->prodml23__PtaAnalysis::RateHistory); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, &this->prodml23__PtaAnalysis::SpecializedAnalysis); + this->prodml23__AbstractAnalysis::soap_serialize(soap); #endif } -int prodml22__PtaAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PtaAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PtaAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__PtaAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaAnalysis(struct soap *soap, const char *tag, int id, const prodml22__PtaAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PtaAnalysis(struct soap *soap, const char *tag, int id, const prodml23__PtaAnalysis *a, const char *type) { if (!type) - type = "prodml22:PtaAnalysis"; + type = "prodml23:PtaAnalysis"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis), type ? type : "prodml22:PtaAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis), type ? type : "prodml23:PtaAnalysis")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:InitialPressureP0ForImpulseTest", -1, &a->prodml22__PtaAnalysis::InitialPressureP0ForImpulseTest, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:InitialPressureP0ForImpulseTest", -1, &a->prodml23__PtaAnalysis::InitialPressureP0ForImpulseTest, "eml23:PressureMeasure")) return soap->error; - if (!a->prodml22__PtaAnalysis::InputPressure) - { if (soap_element_empty(soap, "prodml22:InputPressure", 0, NULL)) + if (!a->prodml23__PtaAnalysis::InputPressure) + { if (soap_element_empty(soap, "prodml23:InputPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:InputPressure", -1, &a->prodml22__PtaAnalysis::InputPressure, "prodml22:AbstractPtaPressureData")) + else if (soap_out_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:InputPressure", -1, &a->prodml23__PtaAnalysis::InputPressure, "prodml23:AbstractPtaPressureData")) return soap->error; - if (soap_out_PointerToprodml22__OutputPressureData(soap, "prodml22:SimulatedPressure", -1, &a->prodml22__PtaAnalysis::SimulatedPressure, "prodml22:OutputPressureData")) + if (soap_out_PointerToprodml23__OutputPressureData(soap, "prodml23:SimulatedPressure", -1, &a->prodml23__PtaAnalysis::SimulatedPressure, "prodml23:OutputPressureData")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:SimulatedPressureGaugeNoise", -1, &a->prodml22__PtaAnalysis::SimulatedPressureGaugeNoise, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:SimulatedPressureGaugeNoise", -1, &a->prodml23__PtaAnalysis::SimulatedPressureGaugeNoise, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:SimulatedPressureGaugeResolution", -1, &a->prodml22__PtaAnalysis::SimulatedPressureGaugeResolution, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:SimulatedPressureGaugeResolution", -1, &a->prodml23__PtaAnalysis::SimulatedPressureGaugeResolution, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressurePerTimeMeasure(soap, "prodml22:SimulatedPressureGaugeDrift", -1, &a->prodml22__PtaAnalysis::SimulatedPressureGaugeDrift, "eml23:PressurePerTimeMeasure")) + if (soap_out_PointerToeml23__PressurePerTimeMeasure(soap, "prodml23:SimulatedPressureGaugeDrift", -1, &a->prodml23__PtaAnalysis::SimulatedPressureGaugeDrift, "eml23:PressurePerTimeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__LogLogAnalysis(soap, "prodml22:MeasuredLogLogData", -1, &a->prodml22__PtaAnalysis::MeasuredLogLogData, "prodml22:LogLogAnalysis")) + if (soap_out_PointerToprodml23__LogLogAnalysis(soap, "prodml23:MeasuredLogLogData", -1, &a->prodml23__PtaAnalysis::MeasuredLogLogData, "prodml23:LogLogAnalysis")) return soap->error; - if (soap_out_PointerToprodml22__LogLogAnalysis(soap, "prodml22:SimulatedLogLogData", -1, &a->prodml22__PtaAnalysis::SimulatedLogLogData, "prodml22:LogLogAnalysis")) + if (soap_out_PointerToprodml23__LogLogAnalysis(soap, "prodml23:SimulatedLogLogData", -1, &a->prodml23__PtaAnalysis::SimulatedLogLogData, "prodml23:LogLogAnalysis")) return soap->error; - if (!a->prodml22__PtaAnalysis::RateHistory) - { if (soap_element_empty(soap, "prodml22:RateHistory", 0, NULL)) + if (!a->prodml23__PtaAnalysis::RateHistory) + { if (soap_element_empty(soap, "prodml23:RateHistory", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractRateHistory(soap, "prodml22:RateHistory", -1, &a->prodml22__PtaAnalysis::RateHistory, "prodml22:AbstractRateHistory")) + else if (soap_out_PointerToprodml23__AbstractRateHistory(soap, "prodml23:RateHistory", -1, &a->prodml23__PtaAnalysis::RateHistory, "prodml23:AbstractRateHistory")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, "prodml22:SpecializedAnalysis", -1, &a->prodml22__PtaAnalysis::SpecializedAnalysis, "prodml22:SpecializedAnalysis")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, "prodml23:SpecializedAnalysis", -1, &a->prodml23__PtaAnalysis::SpecializedAnalysis, "prodml23:SpecializedAnalysis")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PtaAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PtaAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PtaAnalysis(soap, tag, this, type); + return soap_in_prodml23__PtaAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_in_prodml22__PtaAnalysis(struct soap *soap, const char *tag, prodml22__PtaAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__PtaAnalysis * SOAP_FMAC4 soap_in_prodml23__PtaAnalysis(struct soap *soap, const char *tag, prodml23__PtaAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PtaAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis, sizeof(prodml22__PtaAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PtaAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis, sizeof(prodml23__PtaAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PtaAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__PtaAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -205872,61 +205852,61 @@ SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_in_prodml22__PtaAnalysis(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_InitialPressureP0ForImpulseTest1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:InitialPressureP0ForImpulseTest", &a->prodml22__PtaAnalysis::InitialPressureP0ForImpulseTest, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:InitialPressureP0ForImpulseTest", &a->prodml23__PtaAnalysis::InitialPressureP0ForImpulseTest, "eml23:PressureMeasure")) { soap_flag_InitialPressureP0ForImpulseTest1--; continue; } } if (soap_flag_InputPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:InputPressure", &a->prodml22__PtaAnalysis::InputPressure, "prodml22:AbstractPtaPressureData")) + { if (soap_in_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:InputPressure", &a->prodml23__PtaAnalysis::InputPressure, "prodml23:AbstractPtaPressureData")) { soap_flag_InputPressure1--; continue; } } if (soap_flag_SimulatedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OutputPressureData(soap, "prodml22:SimulatedPressure", &a->prodml22__PtaAnalysis::SimulatedPressure, "prodml22:OutputPressureData")) + { if (soap_in_PointerToprodml23__OutputPressureData(soap, "prodml23:SimulatedPressure", &a->prodml23__PtaAnalysis::SimulatedPressure, "prodml23:OutputPressureData")) { soap_flag_SimulatedPressure1--; continue; } } if (soap_flag_SimulatedPressureGaugeNoise1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:SimulatedPressureGaugeNoise", &a->prodml22__PtaAnalysis::SimulatedPressureGaugeNoise, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:SimulatedPressureGaugeNoise", &a->prodml23__PtaAnalysis::SimulatedPressureGaugeNoise, "eml23:PressureMeasure")) { soap_flag_SimulatedPressureGaugeNoise1--; continue; } } if (soap_flag_SimulatedPressureGaugeResolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:SimulatedPressureGaugeResolution", &a->prodml22__PtaAnalysis::SimulatedPressureGaugeResolution, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:SimulatedPressureGaugeResolution", &a->prodml23__PtaAnalysis::SimulatedPressureGaugeResolution, "eml23:PressureMeasure")) { soap_flag_SimulatedPressureGaugeResolution1--; continue; } } if (soap_flag_SimulatedPressureGaugeDrift1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressurePerTimeMeasure(soap, "prodml22:SimulatedPressureGaugeDrift", &a->prodml22__PtaAnalysis::SimulatedPressureGaugeDrift, "eml23:PressurePerTimeMeasure")) + { if (soap_in_PointerToeml23__PressurePerTimeMeasure(soap, "prodml23:SimulatedPressureGaugeDrift", &a->prodml23__PtaAnalysis::SimulatedPressureGaugeDrift, "eml23:PressurePerTimeMeasure")) { soap_flag_SimulatedPressureGaugeDrift1--; continue; } } if (soap_flag_MeasuredLogLogData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LogLogAnalysis(soap, "prodml22:MeasuredLogLogData", &a->prodml22__PtaAnalysis::MeasuredLogLogData, "prodml22:LogLogAnalysis")) + { if (soap_in_PointerToprodml23__LogLogAnalysis(soap, "prodml23:MeasuredLogLogData", &a->prodml23__PtaAnalysis::MeasuredLogLogData, "prodml23:LogLogAnalysis")) { soap_flag_MeasuredLogLogData1--; continue; } } if (soap_flag_SimulatedLogLogData1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LogLogAnalysis(soap, "prodml22:SimulatedLogLogData", &a->prodml22__PtaAnalysis::SimulatedLogLogData, "prodml22:LogLogAnalysis")) + { if (soap_in_PointerToprodml23__LogLogAnalysis(soap, "prodml23:SimulatedLogLogData", &a->prodml23__PtaAnalysis::SimulatedLogLogData, "prodml23:LogLogAnalysis")) { soap_flag_SimulatedLogLogData1--; continue; } } if (soap_flag_RateHistory1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractRateHistory(soap, "prodml22:RateHistory", &a->prodml22__PtaAnalysis::RateHistory, "prodml22:AbstractRateHistory")) + { if (soap_in_PointerToprodml23__AbstractRateHistory(soap, "prodml23:RateHistory", &a->prodml23__PtaAnalysis::RateHistory, "prodml23:AbstractRateHistory")) { soap_flag_RateHistory1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, "prodml22:SpecializedAnalysis", &a->prodml22__PtaAnalysis::SpecializedAnalysis, "prodml22:SpecializedAnalysis")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, "prodml23:SpecializedAnalysis", &a->prodml23__PtaAnalysis::SpecializedAnalysis, "prodml23:SpecializedAnalysis")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -205938,7 +205918,7 @@ SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_in_prodml22__PtaAnalysis(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__PtaAnalysis::InputPressure || !a->prodml22__PtaAnalysis::RateHistory)) + if ((!a->prodml23__PtaAnalysis::InputPressure || !a->prodml23__PtaAnalysis::RateHistory)) { soap->error = SOAP_OCCURS; return NULL; } @@ -205948,35 +205928,35 @@ SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_in_prodml22__PtaAnalysis(stru return NULL; } else - { a = (prodml22__PtaAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis, sizeof(prodml22__PtaAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PtaAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis, sizeof(prodml23__PtaAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PtaAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__PtaAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PtaAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PtaAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PtaAnalysis *p; - size_t k = sizeof(prodml22__PtaAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__PtaAnalysis *p; + size_t k = sizeof(prodml23__PtaAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PtaAnalysis); + { p = SOAP_NEW(soap, prodml23__PtaAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PtaAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PtaAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PtaAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PtaAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -205986,97 +205966,95 @@ SOAP_FMAC1 prodml22__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PtaAnal return p; } -int prodml22__PtaAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PtaAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PtaAnalysis(soap, tag ? tag : "prodml22:PtaAnalysis", -2, this, type)) + if (soap_out_prodml23__PtaAnalysis(soap, tag ? tag : "prodml23:PtaAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PtaAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PtaAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PtaAnalysis(soap, this, tag, type); + return soap_get_prodml23__PtaAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_get_prodml22__PtaAnalysis(struct soap *soap, prodml22__PtaAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PtaAnalysis * SOAP_FMAC4 soap_get_prodml23__PtaAnalysis(struct soap *soap, prodml23__PtaAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PtaAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__PtaAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PressureTransientAnalysis::soap_default(struct soap *soap) +void prodml23__PressureTransientAnalysis::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_eml23__String2000(soap, &this->prodml22__PressureTransientAnalysis::ModelName); - this->prodml22__PressureTransientAnalysis::TimeAppliesFrom = NULL; - this->prodml22__PressureTransientAnalysis::MethodName = NULL; - this->prodml22__PressureTransientAnalysis::TimeAppliesTo = NULL; - this->prodml22__PressureTransientAnalysis::IsNumericalAnalysis = NULL; - this->prodml22__PressureTransientAnalysis::FluidCharacterization = NULL; - this->prodml22__PressureTransientAnalysis::NumericalPtaModel = NULL; - this->prodml22__PressureTransientAnalysis::FlowTestActivity = NULL; - this->prodml22__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef = NULL; - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef); - this->prodml22__PressureTransientAnalysis::WellboreModel = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__LayerModel(soap, &this->prodml22__PressureTransientAnalysis::LayerModel); - soap_default_prodml22__FluidPhaseKind(soap, &this->prodml22__PressureTransientAnalysis::FluidPhaseAnalysisKind); - soap_default_prodml22__PressureNonLinearTransformKind(soap, &this->prodml22__PressureTransientAnalysis::PressureNonLinearTransformKind); - this->prodml22__PressureTransientAnalysis::PseudoPressureEffectApplied = NULL; - soap_default_prodml22__TimeNonLinearTransformKind(soap, &this->prodml22__PressureTransientAnalysis::TimeNonLinearTransformKind); - this->prodml22__PressureTransientAnalysis::Remark = NULL; - this->prodml22__PressureTransientAnalysis::Analysis = NULL; - this->prodml22__PressureTransientAnalysis::CompressibilityParameters = NULL; - this->prodml22__PressureTransientAnalysis::FlowTestActivity_ = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap, &this->prodml22__PressureTransientAnalysis::InterferingFlowTestInterval); -} - -void prodml22__PressureTransientAnalysis::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PressureTransientAnalysis::ModelName, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); - soap_serialize_eml23__String2000(soap, &this->prodml22__PressureTransientAnalysis::ModelName); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__PressureTransientAnalysis::TimeAppliesFrom); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PressureTransientAnalysis::MethodName); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__PressureTransientAnalysis::TimeAppliesTo); - soap_serialize_PointerTobool(soap, &this->prodml22__PressureTransientAnalysis::IsNumericalAnalysis); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PressureTransientAnalysis::FluidCharacterization); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PressureTransientAnalysis::NumericalPtaModel); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PressureTransientAnalysis::FlowTestActivity); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef); - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef); - soap_serialize_PointerToprodml22__WellboreBaseModel(soap, &this->prodml22__PressureTransientAnalysis::WellboreModel); - soap_serialize_std__vectorTemplateOfPointerToprodml22__LayerModel(soap, &this->prodml22__PressureTransientAnalysis::LayerModel); - soap_embedded(soap, &this->prodml22__PressureTransientAnalysis::FluidPhaseAnalysisKind, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind); - soap_serialize_PointerToprodml22__PseudoPressureEffectApplied(soap, &this->prodml22__PressureTransientAnalysis::PseudoPressureEffectApplied); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PressureTransientAnalysis::Remark); - soap_serialize_PointerToprodml22__AbstractAnalysis(soap, &this->prodml22__PressureTransientAnalysis::Analysis); - soap_serialize_PointerToprodml22__CompressibilityParameters(soap, &this->prodml22__PressureTransientAnalysis::CompressibilityParameters); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PressureTransientAnalysis::FlowTestActivity_); - soap_serialize_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap, &this->prodml22__PressureTransientAnalysis::InterferingFlowTestInterval); + soap_default_eml23__String2000(soap, &this->prodml23__PressureTransientAnalysis::ModelName); + this->prodml23__PressureTransientAnalysis::TimeAppliesFrom = NULL; + this->prodml23__PressureTransientAnalysis::MethodName = NULL; + this->prodml23__PressureTransientAnalysis::TimeAppliesTo = NULL; + this->prodml23__PressureTransientAnalysis::IsNumericalAnalysis = NULL; + this->prodml23__PressureTransientAnalysis::FluidCharacterization = NULL; + this->prodml23__PressureTransientAnalysis::NumericalPtaModel = NULL; + this->prodml23__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef = NULL; + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef); + this->prodml23__PressureTransientAnalysis::WellboreModel = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__LayerModel(soap, &this->prodml23__PressureTransientAnalysis::LayerModel); + soap_default_prodml23__FluidPhaseKind(soap, &this->prodml23__PressureTransientAnalysis::FluidPhaseAnalysisKind); + soap_default_prodml23__PressureNonLinearTransformKind(soap, &this->prodml23__PressureTransientAnalysis::PressureNonLinearTransformKind); + this->prodml23__PressureTransientAnalysis::PseudoPressureEffectApplied = NULL; + soap_default_prodml23__TimeNonLinearTransformKind(soap, &this->prodml23__PressureTransientAnalysis::TimeNonLinearTransformKind); + this->prodml23__PressureTransientAnalysis::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap, &this->prodml23__PressureTransientAnalysis::InterferingFlowTestInterval); + this->prodml23__PressureTransientAnalysis::Analysis = NULL; + this->prodml23__PressureTransientAnalysis::CompressibilityParameters = NULL; + this->prodml23__PressureTransientAnalysis::FlowTestActivity = NULL; +} + +void prodml23__PressureTransientAnalysis::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_embedded(soap, &this->prodml23__PressureTransientAnalysis::ModelName, SOAP_TYPE_gsoap_eml2_3_eml23__String2000); + soap_serialize_eml23__String2000(soap, &this->prodml23__PressureTransientAnalysis::ModelName); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__PressureTransientAnalysis::TimeAppliesFrom); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PressureTransientAnalysis::MethodName); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__PressureTransientAnalysis::TimeAppliesTo); + soap_serialize_PointerTobool(soap, &this->prodml23__PressureTransientAnalysis::IsNumericalAnalysis); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PressureTransientAnalysis::FluidCharacterization); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PressureTransientAnalysis::NumericalPtaModel); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef); + soap_serialize_PointerToprodml23__WellboreBaseModel(soap, &this->prodml23__PressureTransientAnalysis::WellboreModel); + soap_serialize_std__vectorTemplateOfPointerToprodml23__LayerModel(soap, &this->prodml23__PressureTransientAnalysis::LayerModel); + soap_embedded(soap, &this->prodml23__PressureTransientAnalysis::FluidPhaseAnalysisKind, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind); + soap_serialize_PointerToprodml23__PseudoPressureEffectApplied(soap, &this->prodml23__PressureTransientAnalysis::PseudoPressureEffectApplied); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PressureTransientAnalysis::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap, &this->prodml23__PressureTransientAnalysis::InterferingFlowTestInterval); + soap_serialize_PointerToprodml23__AbstractAnalysis(soap, &this->prodml23__PressureTransientAnalysis::Analysis); + soap_serialize_PointerToprodml23__CompressibilityParameters(soap, &this->prodml23__PressureTransientAnalysis::CompressibilityParameters); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PressureTransientAnalysis::FlowTestActivity); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__PressureTransientAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PressureTransientAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PressureTransientAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__PressureTransientAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureTransientAnalysis(struct soap *soap, const char *tag, int id, const prodml22__PressureTransientAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PressureTransientAnalysis(struct soap *soap, const char *tag, int id, const prodml23__PressureTransientAnalysis *a, const char *type) { if (!type) - type = "prodml22:PressureTransientAnalysis"; + type = "prodml23:PressureTransientAnalysis"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__PressureTransientAnalysis), type ? type : "prodml22:PressureTransientAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis), type ? type : "prodml23:PressureTransientAnalysis")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -206098,76 +206076,70 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureTransientAnalysis(struct so return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_eml23__String2000(soap, "prodml22:ModelName", -1, &a->prodml22__PressureTransientAnalysis::ModelName, "eml23:String2000")) + if (soap_out_eml23__String2000(soap, "prodml23:ModelName", -1, &a->prodml23__PressureTransientAnalysis::ModelName, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:TimeAppliesFrom", -1, &a->prodml22__PressureTransientAnalysis::TimeAppliesFrom, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:TimeAppliesFrom", -1, &a->prodml23__PressureTransientAnalysis::TimeAppliesFrom, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:MethodName", -1, &a->prodml22__PressureTransientAnalysis::MethodName, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:MethodName", -1, &a->prodml23__PressureTransientAnalysis::MethodName, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:TimeAppliesTo", -1, &a->prodml22__PressureTransientAnalysis::TimeAppliesTo, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:TimeAppliesTo", -1, &a->prodml23__PressureTransientAnalysis::TimeAppliesTo, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:IsNumericalAnalysis", -1, &a->prodml22__PressureTransientAnalysis::IsNumericalAnalysis, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:IsNumericalAnalysis", -1, &a->prodml23__PressureTransientAnalysis::IsNumericalAnalysis, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidCharacterization", -1, &a->prodml22__PressureTransientAnalysis::FluidCharacterization, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidCharacterization", -1, &a->prodml23__PressureTransientAnalysis::FluidCharacterization, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:NumericalPtaModel", -1, &a->prodml22__PressureTransientAnalysis::NumericalPtaModel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:NumericalPtaModel", -1, &a->prodml23__PressureTransientAnalysis::NumericalPtaModel, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__PressureTransientAnalysis::FlowTestActivity) - { if (soap_element_empty(soap, "prodml22:FlowTestActivity", 0, NULL)) - return soap->error; - } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__PressureTransientAnalysis::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PrincipalFlowTestMeasurementSetRef", -1, &a->prodml23__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PrincipalFlowTestMeasurementSetRef", -1, &a->prodml22__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:PrincipalTestPeriodRef", -1, &a->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:PrincipalTestPeriodRef", -1, &a->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef, "eml23:String64")) + if (soap_out_PointerToprodml23__WellboreBaseModel(soap, "prodml23:WellboreModel", -1, &a->prodml23__PressureTransientAnalysis::WellboreModel, "prodml23:WellboreBaseModel")) return soap->error; - if (soap_out_PointerToprodml22__WellboreBaseModel(soap, "prodml22:WellboreModel", -1, &a->prodml22__PressureTransientAnalysis::WellboreModel, "prodml22:WellboreBaseModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__LayerModel(soap, "prodml23:LayerModel", -1, &a->prodml23__PressureTransientAnalysis::LayerModel, "prodml23:LayerModel")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__LayerModel(soap, "prodml22:LayerModel", -1, &a->prodml22__PressureTransientAnalysis::LayerModel, "prodml22:LayerModel")) + if (soap_out_prodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseAnalysisKind", -1, &a->prodml23__PressureTransientAnalysis::FluidPhaseAnalysisKind, "prodml23:FluidPhaseKind")) return soap->error; - if (soap_out_prodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseAnalysisKind", -1, &a->prodml22__PressureTransientAnalysis::FluidPhaseAnalysisKind, "prodml22:FluidPhaseKind")) + if (soap_out_prodml23__PressureNonLinearTransformKind(soap, "prodml23:PressureNonLinearTransformKind", -1, &a->prodml23__PressureTransientAnalysis::PressureNonLinearTransformKind, "prodml23:PressureNonLinearTransformKind")) return soap->error; - if (soap_out_prodml22__PressureNonLinearTransformKind(soap, "prodml22:PressureNonLinearTransformKind", -1, &a->prodml22__PressureTransientAnalysis::PressureNonLinearTransformKind, "prodml22:PressureNonLinearTransformKind")) + if (soap_out_PointerToprodml23__PseudoPressureEffectApplied(soap, "prodml23:PseudoPressureEffectApplied", -1, &a->prodml23__PressureTransientAnalysis::PseudoPressureEffectApplied, "prodml23:PseudoPressureEffectApplied")) return soap->error; - if (soap_out_PointerToprodml22__PseudoPressureEffectApplied(soap, "prodml22:PseudoPressureEffectApplied", -1, &a->prodml22__PressureTransientAnalysis::PseudoPressureEffectApplied, "prodml22:PseudoPressureEffectApplied")) + if (soap_out_prodml23__TimeNonLinearTransformKind(soap, "prodml23:TimeNonLinearTransformKind", -1, &a->prodml23__PressureTransientAnalysis::TimeNonLinearTransformKind, "prodml23:TimeNonLinearTransformKind")) return soap->error; - if (soap_out_prodml22__TimeNonLinearTransformKind(soap, "prodml22:TimeNonLinearTransformKind", -1, &a->prodml22__PressureTransientAnalysis::TimeNonLinearTransformKind, "prodml22:TimeNonLinearTransformKind")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__PressureTransientAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__PressureTransientAnalysis::Remark, "eml23:String2000")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap, "prodml23:InterferingFlowTestInterval", -1, &a->prodml23__PressureTransientAnalysis::InterferingFlowTestInterval, "prodml23:InterferingFlowTestInterval")) return soap->error; - if (soap_out_PointerToprodml22__AbstractAnalysis(soap, "prodml22:Analysis", -1, &a->prodml22__PressureTransientAnalysis::Analysis, "prodml22:AbstractAnalysis")) + if (soap_out_PointerToprodml23__AbstractAnalysis(soap, "prodml23:Analysis", -1, &a->prodml23__PressureTransientAnalysis::Analysis, "prodml23:AbstractAnalysis")) return soap->error; - if (soap_out_PointerToprodml22__CompressibilityParameters(soap, "prodml22:CompressibilityParameters", -1, &a->prodml22__PressureTransientAnalysis::CompressibilityParameters, "prodml22:CompressibilityParameters")) + if (soap_out_PointerToprodml23__CompressibilityParameters(soap, "prodml23:CompressibilityParameters", -1, &a->prodml23__PressureTransientAnalysis::CompressibilityParameters, "prodml23:CompressibilityParameters")) return soap->error; - if (!a->prodml22__PressureTransientAnalysis::FlowTestActivity_) - { if (soap_element_empty(soap, "prodml22:FlowTestActivity", 0, NULL)) + if (!a->prodml23__PressureTransientAnalysis::FlowTestActivity) + { if (soap_element_empty(soap, "prodml23:FlowTestActivity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__PressureTransientAnalysis::FlowTestActivity_, "eml23:DataObjectReference")) - return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap, "prodml22:InterferingFlowTestInterval", -1, &a->prodml22__PressureTransientAnalysis::InterferingFlowTestInterval, "prodml22:InterferingFlowTestInterval")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__PressureTransientAnalysis::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PressureTransientAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PressureTransientAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PressureTransientAnalysis(soap, tag, this, type); + return soap_in_prodml23__PressureTransientAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__PressureTransientAnalysis(struct soap *soap, const char *tag, prodml22__PressureTransientAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml23__PressureTransientAnalysis(struct soap *soap, const char *tag, prodml23__PressureTransientAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PressureTransientAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis, sizeof(prodml22__PressureTransientAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PressureTransientAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis, sizeof(prodml23__PressureTransientAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PressureTransientAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__PressureTransientAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -206199,7 +206171,6 @@ SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__Pr size_t soap_flag_IsNumericalAnalysis1 = 1; size_t soap_flag_FluidCharacterization1 = 1; size_t soap_flag_NumericalPtaModel1 = 1; - size_t soap_flag_FlowTestActivity1 = 1; size_t soap_flag_PrincipalFlowTestMeasurementSetRef1 = 1; size_t soap_flag_WellboreModel1 = 1; size_t soap_flag_FluidPhaseAnalysisKind1 = 1; @@ -206209,7 +206180,7 @@ SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__Pr size_t soap_flag_Remark1 = 1; size_t soap_flag_Analysis1 = 1; size_t soap_flag_CompressibilityParameters1 = 1; - size_t soap_flag_FlowTestActivity_1 = 1; + size_t soap_flag_FlowTestActivity1 = 1; if (soap->body && *soap->href != '#') { for (;;) @@ -206257,125 +206228,119 @@ SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__Pr continue; } if (soap_flag_ModelName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String2000(soap, "prodml22:ModelName", &a->prodml22__PressureTransientAnalysis::ModelName, "eml23:String2000")) + { if (soap_in_eml23__String2000(soap, "prodml23:ModelName", &a->prodml23__PressureTransientAnalysis::ModelName, "eml23:String2000")) { soap_flag_ModelName1--; continue; } } if (soap_flag_TimeAppliesFrom1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:TimeAppliesFrom", &a->prodml22__PressureTransientAnalysis::TimeAppliesFrom, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:TimeAppliesFrom", &a->prodml23__PressureTransientAnalysis::TimeAppliesFrom, "eml23:TimeStamp")) { soap_flag_TimeAppliesFrom1--; continue; } } if (soap_flag_MethodName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:MethodName", &a->prodml22__PressureTransientAnalysis::MethodName, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:MethodName", &a->prodml23__PressureTransientAnalysis::MethodName, "eml23:String2000")) { soap_flag_MethodName1--; continue; } } if (soap_flag_TimeAppliesTo1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:TimeAppliesTo", &a->prodml22__PressureTransientAnalysis::TimeAppliesTo, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:TimeAppliesTo", &a->prodml23__PressureTransientAnalysis::TimeAppliesTo, "eml23:TimeStamp")) { soap_flag_TimeAppliesTo1--; continue; } } if (soap_flag_IsNumericalAnalysis1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:IsNumericalAnalysis", &a->prodml22__PressureTransientAnalysis::IsNumericalAnalysis, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:IsNumericalAnalysis", &a->prodml23__PressureTransientAnalysis::IsNumericalAnalysis, "xsd:boolean")) { soap_flag_IsNumericalAnalysis1--; continue; } } if (soap_flag_FluidCharacterization1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidCharacterization", &a->prodml22__PressureTransientAnalysis::FluidCharacterization, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidCharacterization", &a->prodml23__PressureTransientAnalysis::FluidCharacterization, "eml23:DataObjectReference")) { soap_flag_FluidCharacterization1--; continue; } } if (soap_flag_NumericalPtaModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:NumericalPtaModel", &a->prodml22__PressureTransientAnalysis::NumericalPtaModel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:NumericalPtaModel", &a->prodml23__PressureTransientAnalysis::NumericalPtaModel, "eml23:DataObjectReference")) { soap_flag_NumericalPtaModel1--; continue; } } - if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__PressureTransientAnalysis::FlowTestActivity, "eml23:DataObjectReference")) - { soap_flag_FlowTestActivity1--; - continue; - } - } if (soap_flag_PrincipalFlowTestMeasurementSetRef1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PrincipalFlowTestMeasurementSetRef", &a->prodml22__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PrincipalFlowTestMeasurementSetRef", &a->prodml23__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef, "eml23:String64")) { soap_flag_PrincipalFlowTestMeasurementSetRef1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:PrincipalTestPeriodRef", &a->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:PrincipalTestPeriodRef", &a->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef, "eml23:String64")) continue; } if (soap_flag_WellboreModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellboreBaseModel(soap, "prodml22:WellboreModel", &a->prodml22__PressureTransientAnalysis::WellboreModel, "prodml22:WellboreBaseModel")) + { if (soap_in_PointerToprodml23__WellboreBaseModel(soap, "prodml23:WellboreModel", &a->prodml23__PressureTransientAnalysis::WellboreModel, "prodml23:WellboreBaseModel")) { soap_flag_WellboreModel1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__LayerModel(soap, "prodml22:LayerModel", &a->prodml22__PressureTransientAnalysis::LayerModel, "prodml22:LayerModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__LayerModel(soap, "prodml23:LayerModel", &a->prodml23__PressureTransientAnalysis::LayerModel, "prodml23:LayerModel")) continue; } if (soap_flag_FluidPhaseAnalysisKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseAnalysisKind", &a->prodml22__PressureTransientAnalysis::FluidPhaseAnalysisKind, "prodml22:FluidPhaseKind")) + { if (soap_in_prodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseAnalysisKind", &a->prodml23__PressureTransientAnalysis::FluidPhaseAnalysisKind, "prodml23:FluidPhaseKind")) { soap_flag_FluidPhaseAnalysisKind1--; continue; } } if (soap_flag_PressureNonLinearTransformKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__PressureNonLinearTransformKind(soap, "prodml22:PressureNonLinearTransformKind", &a->prodml22__PressureTransientAnalysis::PressureNonLinearTransformKind, "prodml22:PressureNonLinearTransformKind")) + { if (soap_in_prodml23__PressureNonLinearTransformKind(soap, "prodml23:PressureNonLinearTransformKind", &a->prodml23__PressureTransientAnalysis::PressureNonLinearTransformKind, "prodml23:PressureNonLinearTransformKind")) { soap_flag_PressureNonLinearTransformKind1--; continue; } } if (soap_flag_PseudoPressureEffectApplied1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PseudoPressureEffectApplied(soap, "prodml22:PseudoPressureEffectApplied", &a->prodml22__PressureTransientAnalysis::PseudoPressureEffectApplied, "prodml22:PseudoPressureEffectApplied")) + { if (soap_in_PointerToprodml23__PseudoPressureEffectApplied(soap, "prodml23:PseudoPressureEffectApplied", &a->prodml23__PressureTransientAnalysis::PseudoPressureEffectApplied, "prodml23:PseudoPressureEffectApplied")) { soap_flag_PseudoPressureEffectApplied1--; continue; } } if (soap_flag_TimeNonLinearTransformKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__TimeNonLinearTransformKind(soap, "prodml22:TimeNonLinearTransformKind", &a->prodml22__PressureTransientAnalysis::TimeNonLinearTransformKind, "prodml22:TimeNonLinearTransformKind")) + { if (soap_in_prodml23__TimeNonLinearTransformKind(soap, "prodml23:TimeNonLinearTransformKind", &a->prodml23__PressureTransientAnalysis::TimeNonLinearTransformKind, "prodml23:TimeNonLinearTransformKind")) { soap_flag_TimeNonLinearTransformKind1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__PressureTransientAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__PressureTransientAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } + if (soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap, "prodml23:InterferingFlowTestInterval", &a->prodml23__PressureTransientAnalysis::InterferingFlowTestInterval, "prodml23:InterferingFlowTestInterval")) + continue; + } if (soap_flag_Analysis1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractAnalysis(soap, "prodml22:Analysis", &a->prodml22__PressureTransientAnalysis::Analysis, "prodml22:AbstractAnalysis")) + { if (soap_in_PointerToprodml23__AbstractAnalysis(soap, "prodml23:Analysis", &a->prodml23__PressureTransientAnalysis::Analysis, "prodml23:AbstractAnalysis")) { soap_flag_Analysis1--; continue; } } if (soap_flag_CompressibilityParameters1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CompressibilityParameters(soap, "prodml22:CompressibilityParameters", &a->prodml22__PressureTransientAnalysis::CompressibilityParameters, "prodml22:CompressibilityParameters")) + { if (soap_in_PointerToprodml23__CompressibilityParameters(soap, "prodml23:CompressibilityParameters", &a->prodml23__PressureTransientAnalysis::CompressibilityParameters, "prodml23:CompressibilityParameters")) { soap_flag_CompressibilityParameters1--; continue; } } - if (soap_flag_FlowTestActivity_1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__PressureTransientAnalysis::FlowTestActivity_, "eml23:DataObjectReference")) - { soap_flag_FlowTestActivity_1--; + if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__PressureTransientAnalysis::FlowTestActivity, "eml23:DataObjectReference")) + { soap_flag_FlowTestActivity1--; continue; } } - if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap, "prodml22:InterferingFlowTestInterval", &a->prodml22__PressureTransientAnalysis::InterferingFlowTestInterval, "prodml22:InterferingFlowTestInterval")) - continue; - } if (soap->error == SOAP_TAG_MISMATCH) soap->error = soap_ignore_element(soap); if (soap->error == SOAP_NO_TAG) @@ -206385,7 +206350,7 @@ SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__Pr } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || soap_flag_ModelName1 > 0 || !a->prodml22__PressureTransientAnalysis::FlowTestActivity || a->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef.size() < 1 || soap_flag_FluidPhaseAnalysisKind1 > 0 || soap_flag_PressureNonLinearTransformKind1 > 0 || soap_flag_TimeNonLinearTransformKind1 > 0 || !a->prodml22__PressureTransientAnalysis::FlowTestActivity_)) + if ((!a->eml23__AbstractObject::Citation || soap_flag_ModelName1 > 0 || a->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef.size() < 1 || soap_flag_FluidPhaseAnalysisKind1 > 0 || soap_flag_PressureNonLinearTransformKind1 > 0 || soap_flag_TimeNonLinearTransformKind1 > 0 || !a->prodml23__PressureTransientAnalysis::FlowTestActivity)) { soap->error = SOAP_OCCURS; return NULL; } @@ -206395,35 +206360,35 @@ SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__Pr return NULL; } else - { a = (prodml22__PressureTransientAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis, sizeof(prodml22__PressureTransientAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PressureTransientAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis, sizeof(prodml23__PressureTransientAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PressureTransientAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__PressureTransientAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PressureTransientAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PressureTransientAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PressureTransientAnalysis *p; - size_t k = sizeof(prodml22__PressureTransientAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__PressureTransientAnalysis *p; + size_t k = sizeof(prodml23__PressureTransientAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PressureTransientAnalysis); + { p = SOAP_NEW(soap, prodml23__PressureTransientAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PressureTransientAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PressureTransientAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PressureTransientAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PressureTransientAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -206433,111 +206398,111 @@ SOAP_FMAC1 prodml22__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__PressureTransientAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PressureTransientAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PressureTransientAnalysis(soap, tag ? tag : "prodml22:PressureTransientAnalysis", -2, this, type)) + if (soap_out_prodml23__PressureTransientAnalysis(soap, tag ? tag : "prodml23:PressureTransientAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PressureTransientAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PressureTransientAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PressureTransientAnalysis(soap, this, tag, type); + return soap_get_prodml23__PressureTransientAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_get_prodml22__PressureTransientAnalysis(struct soap *soap, prodml22__PressureTransientAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PressureTransientAnalysis * SOAP_FMAC4 soap_get_prodml23__PressureTransientAnalysis(struct soap *soap, prodml23__PressureTransientAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PressureTransientAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__PressureTransientAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PreProcessedPressureData::soap_default(struct soap *soap) +void prodml23__PreProcessedPressureData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaPressureData::soap_default(soap); - this->prodml22__PreProcessedPressureData::PreProcess = NULL; + this->prodml23__AbstractPtaPressureData::soap_default(soap); + this->prodml23__PreProcessedPressureData::PreProcess = NULL; } -void prodml22__PreProcessedPressureData::soap_serialize(struct soap *soap) const +void prodml23__PreProcessedPressureData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PreProcessedPressureData::PreProcess); - this->prodml22__AbstractPtaPressureData::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PreProcessedPressureData::PreProcess); + this->prodml23__AbstractPtaPressureData::soap_serialize(soap); #endif } -int prodml22__PreProcessedPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PreProcessedPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PreProcessedPressureData(soap, tag, id, this, type); + return soap_out_prodml23__PreProcessedPressureData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PreProcessedPressureData(struct soap *soap, const char *tag, int id, const prodml22__PreProcessedPressureData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PreProcessedPressureData(struct soap *soap, const char *tag, int id, const prodml23__PreProcessedPressureData *a, const char *type) { if (!type) - type = "prodml22:PreProcessedPressureData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:PreProcessedPressureData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__PreProcessedPressureData), type ? type : "prodml22:PreProcessedPressureData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData), type ? type : "prodml23:PreProcessedPressureData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__AbstractPtaPressureData::PressureChannel) - { if (soap_element_empty(soap, "prodml22:PressureChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaPressureData::PressureChannel) + { if (soap_element_empty(soap, "prodml23:PressureChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", -1, &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", -1, &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", -1, &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", -1, &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) return soap->error; - if (!a->prodml22__PreProcessedPressureData::PreProcess) - { if (soap_element_empty(soap, "prodml22:PreProcess", 0, NULL)) + if (!a->prodml23__PreProcessedPressureData::PreProcess) + { if (soap_element_empty(soap, "prodml23:PreProcess", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PreProcess", -1, &a->prodml22__PreProcessedPressureData::PreProcess, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PreProcess", -1, &a->prodml23__PreProcessedPressureData::PreProcess, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PreProcessedPressureData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PreProcessedPressureData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PreProcessedPressureData(soap, tag, this, type); + return soap_in_prodml23__PreProcessedPressureData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml22__PreProcessedPressureData(struct soap *soap, const char *tag, prodml22__PreProcessedPressureData *a, const char *type) +SOAP_FMAC3 prodml23__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml23__PreProcessedPressureData(struct soap *soap, const char *tag, prodml23__PreProcessedPressureData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PreProcessedPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData, sizeof(prodml22__PreProcessedPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PreProcessedPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData, sizeof(prodml23__PreProcessedPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PreProcessedPressureData *)a->soap_in(soap, tag, type); + return (prodml23__PreProcessedPressureData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -206545,9 +206510,9 @@ SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml22__Pre const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -206567,55 +206532,55 @@ SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml22__Pre for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_PressureChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) { soap_flag_PressureChannel2--; continue; } } if (soap_flag_PressureDerivativeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) { soap_flag_PressureDerivativeChannel2--; continue; } } if (soap_flag_PressureReferenceDepth2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) { soap_flag_PressureReferenceDepth2--; continue; } } if (soap_flag_Datum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) { soap_flag_Datum2--; continue; } } if (soap_flag_PreProcess1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PreProcess", &a->prodml22__PreProcessedPressureData::PreProcess, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PreProcess", &a->prodml23__PreProcessedPressureData::PreProcess, "eml23:DataObjectReference")) { soap_flag_PreProcess1--; continue; } @@ -206629,7 +206594,7 @@ SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml22__Pre } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaPressureData::PressureChannel || !a->prodml22__PreProcessedPressureData::PreProcess)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaPressureData::PressureChannel || !a->prodml23__PreProcessedPressureData::PreProcess)) { soap->error = SOAP_OCCURS; return NULL; } @@ -206639,35 +206604,35 @@ SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml22__Pre return NULL; } else - { a = (prodml22__PreProcessedPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData, sizeof(prodml22__PreProcessedPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PreProcessedPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData, sizeof(prodml23__PreProcessedPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prodml22__PreProcessedPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prodml23__PreProcessedPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PreProcessedPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PreProcessedPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PreProcessedPressureData *p; - size_t k = sizeof(prodml22__PreProcessedPressureData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData, n, gsoap_eml2_3_fdelete); + prodml23__PreProcessedPressureData *p; + size_t k = sizeof(prodml23__PreProcessedPressureData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PreProcessedPressureData); + { p = SOAP_NEW(soap, prodml23__PreProcessedPressureData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PreProcessedPressureData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PreProcessedPressureData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PreProcessedPressureData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PreProcessedPressureData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -206677,107 +206642,107 @@ SOAP_FMAC1 prodml22__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__PreProcessedPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PreProcessedPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PreProcessedPressureData(soap, tag ? tag : "prodml22:PreProcessedPressureData", -2, this, type)) + if (soap_out_prodml23__PreProcessedPressureData(soap, tag ? tag : "prodml23:PreProcessedPressureData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PreProcessedPressureData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PreProcessedPressureData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PreProcessedPressureData(soap, this, tag, type); + return soap_get_prodml23__PreProcessedPressureData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_get_prodml22__PreProcessedPressureData(struct soap *soap, prodml22__PreProcessedPressureData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PreProcessedPressureData * SOAP_FMAC4 soap_get_prodml23__PreProcessedPressureData(struct soap *soap, prodml23__PreProcessedPressureData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PreProcessedPressureData(soap, tag, p, type))) + if ((p = soap_in_prodml23__PreProcessedPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PreProcessedFlowData::soap_default(struct soap *soap) +void prodml23__PreProcessedFlowData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaFlowData::soap_default(soap); - this->prodml22__PreProcessedFlowData::PreProcess = NULL; + this->prodml23__AbstractPtaFlowData::soap_default(soap); + this->prodml23__PreProcessedFlowData::PreProcess = NULL; } -void prodml22__PreProcessedFlowData::soap_serialize(struct soap *soap) const +void prodml23__PreProcessedFlowData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__PreProcessedFlowData::PreProcess); - this->prodml22__AbstractPtaFlowData::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__PreProcessedFlowData::PreProcess); + this->prodml23__AbstractPtaFlowData::soap_serialize(soap); #endif } -int prodml22__PreProcessedFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PreProcessedFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PreProcessedFlowData(soap, tag, id, this, type); + return soap_out_prodml23__PreProcessedFlowData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PreProcessedFlowData(struct soap *soap, const char *tag, int id, const prodml22__PreProcessedFlowData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PreProcessedFlowData(struct soap *soap, const char *tag, int id, const prodml23__PreProcessedFlowData *a, const char *type) { if (!type) - type = "prodml22:PreProcessedFlowData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:PreProcessedFlowData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__PreProcessedFlowData), type ? type : "prodml22:PreProcessedFlowData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData), type ? type : "prodml23:PreProcessedFlowData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", -1, &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + if (soap_out_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", -1, &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) return soap->error; - if (!a->prodml22__AbstractPtaFlowData::FlowChannel) - { if (soap_element_empty(soap, "prodml22:FlowChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaFlowData::FlowChannel) + { if (soap_element_empty(soap, "prodml23:FlowChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", -1, &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", -1, &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__PreProcessedFlowData::PreProcess) - { if (soap_element_empty(soap, "prodml22:PreProcess", 0, NULL)) + if (!a->prodml23__PreProcessedFlowData::PreProcess) + { if (soap_element_empty(soap, "prodml23:PreProcess", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PreProcess", -1, &a->prodml22__PreProcessedFlowData::PreProcess, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PreProcess", -1, &a->prodml23__PreProcessedFlowData::PreProcess, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PreProcessedFlowData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PreProcessedFlowData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PreProcessedFlowData(soap, tag, this, type); + return soap_in_prodml23__PreProcessedFlowData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml22__PreProcessedFlowData(struct soap *soap, const char *tag, prodml22__PreProcessedFlowData *a, const char *type) +SOAP_FMAC3 prodml23__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml23__PreProcessedFlowData(struct soap *soap, const char *tag, prodml23__PreProcessedFlowData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PreProcessedFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData, sizeof(prodml22__PreProcessedFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PreProcessedFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData, sizeof(prodml23__PreProcessedFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PreProcessedFlowData *)a->soap_in(soap, tag, type); + return (prodml23__PreProcessedFlowData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -206785,9 +206750,9 @@ SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml22__PreProc const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -206805,43 +206770,43 @@ SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml22__PreProc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_FluidPhaseMeasuredKind2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + { if (soap_in_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) { soap_flag_FluidPhaseMeasuredKind2--; continue; } } if (soap_flag_FlowChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) { soap_flag_FlowChannel2--; continue; } } if (soap_flag_PreProcess1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PreProcess", &a->prodml22__PreProcessedFlowData::PreProcess, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PreProcess", &a->prodml23__PreProcessedFlowData::PreProcess, "eml23:DataObjectReference")) { soap_flag_PreProcess1--; continue; } @@ -206855,7 +206820,7 @@ SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml22__PreProc } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaFlowData::FlowChannel || !a->prodml22__PreProcessedFlowData::PreProcess)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaFlowData::FlowChannel || !a->prodml23__PreProcessedFlowData::PreProcess)) { soap->error = SOAP_OCCURS; return NULL; } @@ -206865,35 +206830,35 @@ SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml22__PreProc return NULL; } else - { a = (prodml22__PreProcessedFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData, sizeof(prodml22__PreProcessedFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PreProcessedFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData, sizeof(prodml23__PreProcessedFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml22__PreProcessedFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml23__PreProcessedFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PreProcessedFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PreProcessedFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PreProcessedFlowData *p; - size_t k = sizeof(prodml22__PreProcessedFlowData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData, n, gsoap_eml2_3_fdelete); + prodml23__PreProcessedFlowData *p; + size_t k = sizeof(prodml23__PreProcessedFlowData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PreProcessedFlowData); + { p = SOAP_NEW(soap, prodml23__PreProcessedFlowData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PreProcessedFlowData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PreProcessedFlowData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PreProcessedFlowData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PreProcessedFlowData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -206903,103 +206868,103 @@ SOAP_FMAC1 prodml22__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__PreProcessedFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PreProcessedFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PreProcessedFlowData(soap, tag ? tag : "prodml22:PreProcessedFlowData", -2, this, type)) + if (soap_out_prodml23__PreProcessedFlowData(soap, tag ? tag : "prodml23:PreProcessedFlowData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PreProcessedFlowData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PreProcessedFlowData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PreProcessedFlowData(soap, this, tag, type); + return soap_get_prodml23__PreProcessedFlowData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_get_prodml22__PreProcessedFlowData(struct soap *soap, prodml22__PreProcessedFlowData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PreProcessedFlowData * SOAP_FMAC4 soap_get_prodml23__PreProcessedFlowData(struct soap *soap, prodml23__PreProcessedFlowData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PreProcessedFlowData(soap, tag, p, type))) + if ((p = soap_in_prodml23__PreProcessedFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OutputPressureData::soap_default(struct soap *soap) +void prodml23__OutputPressureData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaPressureData::soap_default(soap); + this->prodml23__AbstractPtaPressureData::soap_default(soap); } -void prodml22__OutputPressureData::soap_serialize(struct soap *soap) const +void prodml23__OutputPressureData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractPtaPressureData::soap_serialize(soap); + this->prodml23__AbstractPtaPressureData::soap_serialize(soap); #endif } -int prodml22__OutputPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OutputPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OutputPressureData(soap, tag, id, this, type); + return soap_out_prodml23__OutputPressureData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputPressureData(struct soap *soap, const char *tag, int id, const prodml22__OutputPressureData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputPressureData(struct soap *soap, const char *tag, int id, const prodml23__OutputPressureData *a, const char *type) { if (!type) - type = "prodml22:OutputPressureData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:OutputPressureData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__OutputPressureData), type ? type : "prodml22:OutputPressureData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData), type ? type : "prodml23:OutputPressureData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__AbstractPtaPressureData::PressureChannel) - { if (soap_element_empty(soap, "prodml22:PressureChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaPressureData::PressureChannel) + { if (soap_element_empty(soap, "prodml23:PressureChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", -1, &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", -1, &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", -1, &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", -1, &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OutputPressureData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OutputPressureData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OutputPressureData(soap, tag, this, type); + return soap_in_prodml23__OutputPressureData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_in_prodml22__OutputPressureData(struct soap *soap, const char *tag, prodml22__OutputPressureData *a, const char *type) +SOAP_FMAC3 prodml23__OutputPressureData * SOAP_FMAC4 soap_in_prodml23__OutputPressureData(struct soap *soap, const char *tag, prodml23__OutputPressureData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OutputPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData, sizeof(prodml22__OutputPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OutputPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData, sizeof(prodml23__OutputPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OutputPressureData *)a->soap_in(soap, tag, type); + return (prodml23__OutputPressureData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -207007,9 +206972,9 @@ SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_in_prodml22__OutputPre const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -207028,49 +206993,49 @@ SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_in_prodml22__OutputPre for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_PressureChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) { soap_flag_PressureChannel2--; continue; } } if (soap_flag_PressureDerivativeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) { soap_flag_PressureDerivativeChannel2--; continue; } } if (soap_flag_PressureReferenceDepth2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) { soap_flag_PressureReferenceDepth2--; continue; } } if (soap_flag_Datum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) { soap_flag_Datum2--; continue; } @@ -207084,7 +207049,7 @@ SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_in_prodml22__OutputPre } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaPressureData::PressureChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaPressureData::PressureChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -207094,35 +207059,35 @@ SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_in_prodml22__OutputPre return NULL; } else - { a = (prodml22__OutputPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData, sizeof(prodml22__OutputPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OutputPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData, sizeof(prodml23__OutputPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml22__OutputPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml23__OutputPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OutputPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OutputPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OutputPressureData *p; - size_t k = sizeof(prodml22__OutputPressureData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData, n, gsoap_eml2_3_fdelete); + prodml23__OutputPressureData *p; + size_t k = sizeof(prodml23__OutputPressureData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OutputPressureData); + { p = SOAP_NEW(soap, prodml23__OutputPressureData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OutputPressureData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OutputPressureData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OutputPressureData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OutputPressureData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -207132,99 +207097,99 @@ SOAP_FMAC1 prodml22__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__OutputPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OutputPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OutputPressureData(soap, tag ? tag : "prodml22:OutputPressureData", -2, this, type)) + if (soap_out_prodml23__OutputPressureData(soap, tag ? tag : "prodml23:OutputPressureData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OutputPressureData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OutputPressureData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OutputPressureData(soap, this, tag, type); + return soap_get_prodml23__OutputPressureData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_get_prodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OutputPressureData * SOAP_FMAC4 soap_get_prodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OutputPressureData(soap, tag, p, type))) + if ((p = soap_in_prodml23__OutputPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OutputFlowData::soap_default(struct soap *soap) +void prodml23__OutputFlowData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaFlowData::soap_default(soap); + this->prodml23__AbstractPtaFlowData::soap_default(soap); } -void prodml22__OutputFlowData::soap_serialize(struct soap *soap) const +void prodml23__OutputFlowData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractPtaFlowData::soap_serialize(soap); + this->prodml23__AbstractPtaFlowData::soap_serialize(soap); #endif } -int prodml22__OutputFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OutputFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OutputFlowData(soap, tag, id, this, type); + return soap_out_prodml23__OutputFlowData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputFlowData(struct soap *soap, const char *tag, int id, const prodml22__OutputFlowData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputFlowData(struct soap *soap, const char *tag, int id, const prodml23__OutputFlowData *a, const char *type) { if (!type) - type = "prodml22:OutputFlowData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:OutputFlowData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__OutputFlowData), type ? type : "prodml22:OutputFlowData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData), type ? type : "prodml23:OutputFlowData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", -1, &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + if (soap_out_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", -1, &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) return soap->error; - if (!a->prodml22__AbstractPtaFlowData::FlowChannel) - { if (soap_element_empty(soap, "prodml22:FlowChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaFlowData::FlowChannel) + { if (soap_element_empty(soap, "prodml23:FlowChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", -1, &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", -1, &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OutputFlowData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OutputFlowData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OutputFlowData(soap, tag, this, type); + return soap_in_prodml23__OutputFlowData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_in_prodml22__OutputFlowData(struct soap *soap, const char *tag, prodml22__OutputFlowData *a, const char *type) +SOAP_FMAC3 prodml23__OutputFlowData * SOAP_FMAC4 soap_in_prodml23__OutputFlowData(struct soap *soap, const char *tag, prodml23__OutputFlowData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OutputFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData, sizeof(prodml22__OutputFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OutputFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData, sizeof(prodml23__OutputFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OutputFlowData *)a->soap_in(soap, tag, type); + return (prodml23__OutputFlowData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -207232,9 +207197,9 @@ SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_in_prodml22__OutputFlowDat const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -207251,37 +207216,37 @@ SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_in_prodml22__OutputFlowDat for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_FluidPhaseMeasuredKind2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + { if (soap_in_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) { soap_flag_FluidPhaseMeasuredKind2--; continue; } } if (soap_flag_FlowChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) { soap_flag_FlowChannel2--; continue; } @@ -207295,7 +207260,7 @@ SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_in_prodml22__OutputFlowDat } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaFlowData::FlowChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaFlowData::FlowChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -207305,35 +207270,35 @@ SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_in_prodml22__OutputFlowDat return NULL; } else - { a = (prodml22__OutputFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData, sizeof(prodml22__OutputFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OutputFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData, sizeof(prodml23__OutputFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml22__OutputFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml23__OutputFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OutputFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OutputFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OutputFlowData *p; - size_t k = sizeof(prodml22__OutputFlowData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData, n, gsoap_eml2_3_fdelete); + prodml23__OutputFlowData *p; + size_t k = sizeof(prodml23__OutputFlowData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OutputFlowData); + { p = SOAP_NEW(soap, prodml23__OutputFlowData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OutputFlowData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OutputFlowData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OutputFlowData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OutputFlowData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -207343,103 +207308,103 @@ SOAP_FMAC1 prodml22__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml22__Outp return p; } -int prodml22__OutputFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OutputFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OutputFlowData(soap, tag ? tag : "prodml22:OutputFlowData", -2, this, type)) + if (soap_out_prodml23__OutputFlowData(soap, tag ? tag : "prodml23:OutputFlowData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OutputFlowData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OutputFlowData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OutputFlowData(soap, this, tag, type); + return soap_get_prodml23__OutputFlowData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_get_prodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OutputFlowData * SOAP_FMAC4 soap_get_prodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OutputFlowData(soap, tag, p, type))) + if ((p = soap_in_prodml23__OutputFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MeasuredPressureData::soap_default(struct soap *soap) +void prodml23__MeasuredPressureData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaPressureData::soap_default(soap); + this->prodml23__AbstractPtaPressureData::soap_default(soap); } -void prodml22__MeasuredPressureData::soap_serialize(struct soap *soap) const +void prodml23__MeasuredPressureData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractPtaPressureData::soap_serialize(soap); + this->prodml23__AbstractPtaPressureData::soap_serialize(soap); #endif } -int prodml22__MeasuredPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MeasuredPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MeasuredPressureData(soap, tag, id, this, type); + return soap_out_prodml23__MeasuredPressureData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MeasuredPressureData(struct soap *soap, const char *tag, int id, const prodml22__MeasuredPressureData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MeasuredPressureData(struct soap *soap, const char *tag, int id, const prodml23__MeasuredPressureData *a, const char *type) { if (!type) - type = "prodml22:MeasuredPressureData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:MeasuredPressureData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__MeasuredPressureData), type ? type : "prodml22:MeasuredPressureData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData), type ? type : "prodml23:MeasuredPressureData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__AbstractPtaPressureData::PressureChannel) - { if (soap_element_empty(soap, "prodml22:PressureChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaPressureData::PressureChannel) + { if (soap_element_empty(soap, "prodml23:PressureChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", -1, &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", -1, &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", -1, &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", -1, &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MeasuredPressureData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MeasuredPressureData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MeasuredPressureData(soap, tag, this, type); + return soap_in_prodml23__MeasuredPressureData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml22__MeasuredPressureData(struct soap *soap, const char *tag, prodml22__MeasuredPressureData *a, const char *type) +SOAP_FMAC3 prodml23__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml23__MeasuredPressureData(struct soap *soap, const char *tag, prodml23__MeasuredPressureData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MeasuredPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, sizeof(prodml22__MeasuredPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MeasuredPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, sizeof(prodml23__MeasuredPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MeasuredPressureData *)a->soap_in(soap, tag, type); + return (prodml23__MeasuredPressureData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -207447,9 +207412,9 @@ SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml22__Measure const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -207468,49 +207433,49 @@ SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml22__Measure for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_PressureChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) { soap_flag_PressureChannel2--; continue; } } if (soap_flag_PressureDerivativeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) { soap_flag_PressureDerivativeChannel2--; continue; } } if (soap_flag_PressureReferenceDepth2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) { soap_flag_PressureReferenceDepth2--; continue; } } if (soap_flag_Datum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) { soap_flag_Datum2--; continue; } @@ -207524,7 +207489,7 @@ SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml22__Measure } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaPressureData::PressureChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaPressureData::PressureChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -207534,35 +207499,35 @@ SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml22__Measure return NULL; } else - { a = (prodml22__MeasuredPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, sizeof(prodml22__MeasuredPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MeasuredPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, sizeof(prodml23__MeasuredPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MeasuredPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MeasuredPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MeasuredPressureData *p; - size_t k = sizeof(prodml22__MeasuredPressureData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, n, gsoap_eml2_3_fdelete); + prodml23__MeasuredPressureData *p; + size_t k = sizeof(prodml23__MeasuredPressureData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MeasuredPressureData); + { p = SOAP_NEW(soap, prodml23__MeasuredPressureData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MeasuredPressureData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MeasuredPressureData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MeasuredPressureData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MeasuredPressureData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -207572,99 +207537,99 @@ SOAP_FMAC1 prodml22__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__MeasuredPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MeasuredPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MeasuredPressureData(soap, tag ? tag : "prodml22:MeasuredPressureData", -2, this, type)) + if (soap_out_prodml23__MeasuredPressureData(soap, tag ? tag : "prodml23:MeasuredPressureData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MeasuredPressureData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MeasuredPressureData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MeasuredPressureData(soap, this, tag, type); + return soap_get_prodml23__MeasuredPressureData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_get_prodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MeasuredPressureData * SOAP_FMAC4 soap_get_prodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MeasuredPressureData(soap, tag, p, type))) + if ((p = soap_in_prodml23__MeasuredPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MeasuredFlowData::soap_default(struct soap *soap) +void prodml23__MeasuredFlowData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaFlowData::soap_default(soap); + this->prodml23__AbstractPtaFlowData::soap_default(soap); } -void prodml22__MeasuredFlowData::soap_serialize(struct soap *soap) const +void prodml23__MeasuredFlowData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractPtaFlowData::soap_serialize(soap); + this->prodml23__AbstractPtaFlowData::soap_serialize(soap); #endif } -int prodml22__MeasuredFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MeasuredFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MeasuredFlowData(soap, tag, id, this, type); + return soap_out_prodml23__MeasuredFlowData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MeasuredFlowData(struct soap *soap, const char *tag, int id, const prodml22__MeasuredFlowData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MeasuredFlowData(struct soap *soap, const char *tag, int id, const prodml23__MeasuredFlowData *a, const char *type) { if (!type) - type = "prodml22:MeasuredFlowData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:MeasuredFlowData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__MeasuredFlowData), type ? type : "prodml22:MeasuredFlowData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData), type ? type : "prodml23:MeasuredFlowData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", -1, &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + if (soap_out_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", -1, &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) return soap->error; - if (!a->prodml22__AbstractPtaFlowData::FlowChannel) - { if (soap_element_empty(soap, "prodml22:FlowChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaFlowData::FlowChannel) + { if (soap_element_empty(soap, "prodml23:FlowChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", -1, &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", -1, &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MeasuredFlowData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MeasuredFlowData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MeasuredFlowData(soap, tag, this, type); + return soap_in_prodml23__MeasuredFlowData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml22__MeasuredFlowData(struct soap *soap, const char *tag, prodml22__MeasuredFlowData *a, const char *type) +SOAP_FMAC3 prodml23__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml23__MeasuredFlowData(struct soap *soap, const char *tag, prodml23__MeasuredFlowData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MeasuredFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData, sizeof(prodml22__MeasuredFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MeasuredFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData, sizeof(prodml23__MeasuredFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MeasuredFlowData *)a->soap_in(soap, tag, type); + return (prodml23__MeasuredFlowData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -207672,9 +207637,9 @@ SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml22__MeasuredFlo const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -207691,37 +207656,37 @@ SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml22__MeasuredFlo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_FluidPhaseMeasuredKind2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + { if (soap_in_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) { soap_flag_FluidPhaseMeasuredKind2--; continue; } } if (soap_flag_FlowChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) { soap_flag_FlowChannel2--; continue; } @@ -207735,7 +207700,7 @@ SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml22__MeasuredFlo } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaFlowData::FlowChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaFlowData::FlowChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -207745,35 +207710,35 @@ SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml22__MeasuredFlo return NULL; } else - { a = (prodml22__MeasuredFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData, sizeof(prodml22__MeasuredFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MeasuredFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData, sizeof(prodml23__MeasuredFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MeasuredFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MeasuredFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MeasuredFlowData *p; - size_t k = sizeof(prodml22__MeasuredFlowData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData, n, gsoap_eml2_3_fdelete); + prodml23__MeasuredFlowData *p; + size_t k = sizeof(prodml23__MeasuredFlowData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MeasuredFlowData); + { p = SOAP_NEW(soap, prodml23__MeasuredFlowData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MeasuredFlowData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MeasuredFlowData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MeasuredFlowData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MeasuredFlowData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -207783,96 +207748,96 @@ SOAP_FMAC1 prodml22__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml22__Me return p; } -int prodml22__MeasuredFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MeasuredFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MeasuredFlowData(soap, tag ? tag : "prodml22:MeasuredFlowData", -2, this, type)) + if (soap_out_prodml23__MeasuredFlowData(soap, tag ? tag : "prodml23:MeasuredFlowData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MeasuredFlowData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MeasuredFlowData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MeasuredFlowData(soap, this, tag, type); + return soap_get_prodml23__MeasuredFlowData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_get_prodml22__MeasuredFlowData(struct soap *soap, prodml22__MeasuredFlowData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MeasuredFlowData * SOAP_FMAC4 soap_get_prodml23__MeasuredFlowData(struct soap *soap, prodml23__MeasuredFlowData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MeasuredFlowData(soap, tag, p, type))) + if ((p = soap_in_prodml23__MeasuredFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LogLogAnalysis::soap_default(struct soap *soap) +void prodml23__LogLogAnalysis::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__LogLogAnalysis::AnalysisPressure = NULL; - soap_default_prodml22__LogLogTimeTransform(soap, &this->prodml22__LogLogAnalysis::LogLogTimeDataTransform); - soap_default_prodml22__LogLogPressureTransform(soap, &this->prodml22__LogLogAnalysis::LogLogPressureTransform); - this->prodml22__LogLogAnalysis::DerivativeSmoothingFactorL = NULL; - this->prodml22__LogLogAnalysis::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, &this->prodml22__LogLogAnalysis::AnalysisLine); + this->prodml23__LogLogAnalysis::AnalysisPressure = NULL; + soap_default_prodml23__LogLogTimeTransform(soap, &this->prodml23__LogLogAnalysis::LogLogTimeDataTransform); + soap_default_prodml23__LogLogPressureTransform(soap, &this->prodml23__LogLogAnalysis::LogLogPressureTransform); + this->prodml23__LogLogAnalysis::DerivativeSmoothingFactorL = NULL; + this->prodml23__LogLogAnalysis::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, &this->prodml23__LogLogAnalysis::AnalysisLine); } -void prodml22__LogLogAnalysis::soap_serialize(struct soap *soap) const +void prodml23__LogLogAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__AbstractPtaPressureData(soap, &this->prodml22__LogLogAnalysis::AnalysisPressure); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__LogLogAnalysis::DerivativeSmoothingFactorL); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__LogLogAnalysis::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, &this->prodml22__LogLogAnalysis::AnalysisLine); + soap_serialize_PointerToprodml23__AbstractPtaPressureData(soap, &this->prodml23__LogLogAnalysis::AnalysisPressure); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__LogLogAnalysis::DerivativeSmoothingFactorL); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__LogLogAnalysis::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, &this->prodml23__LogLogAnalysis::AnalysisLine); #endif } -int prodml22__LogLogAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LogLogAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LogLogAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__LogLogAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LogLogAnalysis(struct soap *soap, const char *tag, int id, const prodml22__LogLogAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LogLogAnalysis(struct soap *soap, const char *tag, int id, const prodml23__LogLogAnalysis *a, const char *type) { if (!type) - type = "prodml22:LogLogAnalysis"; + type = "prodml23:LogLogAnalysis"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis), type)) return soap->error; - if (!a->prodml22__LogLogAnalysis::AnalysisPressure) - { if (soap_element_empty(soap, "prodml22:AnalysisPressure", 0, NULL)) + if (!a->prodml23__LogLogAnalysis::AnalysisPressure) + { if (soap_element_empty(soap, "prodml23:AnalysisPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:AnalysisPressure", -1, &a->prodml22__LogLogAnalysis::AnalysisPressure, "prodml22:AbstractPtaPressureData")) + else if (soap_out_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:AnalysisPressure", -1, &a->prodml23__LogLogAnalysis::AnalysisPressure, "prodml23:AbstractPtaPressureData")) return soap->error; - if (soap_out_prodml22__LogLogTimeTransform(soap, "prodml22:LogLogTimeDataTransform", -1, &a->prodml22__LogLogAnalysis::LogLogTimeDataTransform, "prodml22:LogLogTimeTransform")) + if (soap_out_prodml23__LogLogTimeTransform(soap, "prodml23:LogLogTimeDataTransform", -1, &a->prodml23__LogLogAnalysis::LogLogTimeDataTransform, "prodml23:LogLogTimeTransform")) return soap->error; - if (soap_out_prodml22__LogLogPressureTransform(soap, "prodml22:LogLogPressureTransform", -1, &a->prodml22__LogLogAnalysis::LogLogPressureTransform, "prodml22:LogLogPressureTransform")) + if (soap_out_prodml23__LogLogPressureTransform(soap, "prodml23:LogLogPressureTransform", -1, &a->prodml23__LogLogAnalysis::LogLogPressureTransform, "prodml23:LogLogPressureTransform")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:DerivativeSmoothingFactorL", -1, &a->prodml22__LogLogAnalysis::DerivativeSmoothingFactorL, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:DerivativeSmoothingFactorL", -1, &a->prodml23__LogLogAnalysis::DerivativeSmoothingFactorL, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__LogLogAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__LogLogAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, "prodml22:AnalysisLine", -1, &a->prodml22__LogLogAnalysis::AnalysisLine, "prodml22:AnalysisLine")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, "prodml23:AnalysisLine", -1, &a->prodml23__LogLogAnalysis::AnalysisLine, "prodml23:AnalysisLine")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LogLogAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LogLogAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LogLogAnalysis(soap, tag, this, type); + return soap_in_prodml23__LogLogAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml22__LogLogAnalysis(struct soap *soap, const char *tag, prodml22__LogLogAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml23__LogLogAnalysis(struct soap *soap, const char *tag, prodml23__LogLogAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LogLogAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis, sizeof(prodml22__LogLogAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LogLogAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis, sizeof(prodml23__LogLogAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LogLogAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__LogLogAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -207886,37 +207851,37 @@ SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml22__LogLogAnalysi for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_AnalysisPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaPressureData(soap, "prodml22:AnalysisPressure", &a->prodml22__LogLogAnalysis::AnalysisPressure, "prodml22:AbstractPtaPressureData")) + { if (soap_in_PointerToprodml23__AbstractPtaPressureData(soap, "prodml23:AnalysisPressure", &a->prodml23__LogLogAnalysis::AnalysisPressure, "prodml23:AbstractPtaPressureData")) { soap_flag_AnalysisPressure1--; continue; } } if (soap_flag_LogLogTimeDataTransform1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__LogLogTimeTransform(soap, "prodml22:LogLogTimeDataTransform", &a->prodml22__LogLogAnalysis::LogLogTimeDataTransform, "prodml22:LogLogTimeTransform")) + { if (soap_in_prodml23__LogLogTimeTransform(soap, "prodml23:LogLogTimeDataTransform", &a->prodml23__LogLogAnalysis::LogLogTimeDataTransform, "prodml23:LogLogTimeTransform")) { soap_flag_LogLogTimeDataTransform1--; continue; } } if (soap_flag_LogLogPressureTransform1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__LogLogPressureTransform(soap, "prodml22:LogLogPressureTransform", &a->prodml22__LogLogAnalysis::LogLogPressureTransform, "prodml22:LogLogPressureTransform")) + { if (soap_in_prodml23__LogLogPressureTransform(soap, "prodml23:LogLogPressureTransform", &a->prodml23__LogLogAnalysis::LogLogPressureTransform, "prodml23:LogLogPressureTransform")) { soap_flag_LogLogPressureTransform1--; continue; } } if (soap_flag_DerivativeSmoothingFactorL1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:DerivativeSmoothingFactorL", &a->prodml22__LogLogAnalysis::DerivativeSmoothingFactorL, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:DerivativeSmoothingFactorL", &a->prodml23__LogLogAnalysis::DerivativeSmoothingFactorL, "eml23:DimensionlessMeasure")) { soap_flag_DerivativeSmoothingFactorL1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__LogLogAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__LogLogAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, "prodml22:AnalysisLine", &a->prodml22__LogLogAnalysis::AnalysisLine, "prodml22:AnalysisLine")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, "prodml23:AnalysisLine", &a->prodml23__LogLogAnalysis::AnalysisLine, "prodml23:AnalysisLine")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -207928,7 +207893,7 @@ SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml22__LogLogAnalysi } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__LogLogAnalysis::AnalysisPressure || soap_flag_LogLogTimeDataTransform1 > 0 || soap_flag_LogLogPressureTransform1 > 0)) + if ((!a->prodml23__LogLogAnalysis::AnalysisPressure || soap_flag_LogLogTimeDataTransform1 > 0 || soap_flag_LogLogPressureTransform1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -207938,35 +207903,35 @@ SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml22__LogLogAnalysi return NULL; } else - { a = (prodml22__LogLogAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis, sizeof(prodml22__LogLogAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LogLogAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis, sizeof(prodml23__LogLogAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__LogLogAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__LogLogAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LogLogAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LogLogAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LogLogAnalysis *p; - size_t k = sizeof(prodml22__LogLogAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__LogLogAnalysis *p; + size_t k = sizeof(prodml23__LogLogAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LogLogAnalysis); + { p = SOAP_NEW(soap, prodml23__LogLogAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LogLogAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LogLogAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LogLogAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LogLogAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -207976,86 +207941,86 @@ SOAP_FMAC1 prodml22__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__LogL return p; } -int prodml22__LogLogAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LogLogAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LogLogAnalysis(soap, tag ? tag : "prodml22:LogLogAnalysis", -2, this, type)) + if (soap_out_prodml23__LogLogAnalysis(soap, tag ? tag : "prodml23:LogLogAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LogLogAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LogLogAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LogLogAnalysis(soap, this, tag, type); + return soap_get_prodml23__LogLogAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_get_prodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LogLogAnalysis * SOAP_FMAC4 soap_get_prodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LogLogAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__LogLogAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LocationIn2D::soap_default(struct soap *soap) +void prodml23__LocationIn2D::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__LocationIn2D::CoordinateX = NULL; - this->prodml22__LocationIn2D::CoordinateY = NULL; + this->prodml23__LocationIn2D::CoordinateX = NULL; + this->prodml23__LocationIn2D::CoordinateY = NULL; } -void prodml22__LocationIn2D::soap_serialize(struct soap *soap) const +void prodml23__LocationIn2D::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__LocationIn2D::CoordinateX); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__LocationIn2D::CoordinateY); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__LocationIn2D::CoordinateX); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__LocationIn2D::CoordinateY); #endif } -int prodml22__LocationIn2D::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LocationIn2D::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LocationIn2D(soap, tag, id, this, type); + return soap_out_prodml23__LocationIn2D(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LocationIn2D(struct soap *soap, const char *tag, int id, const prodml22__LocationIn2D *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LocationIn2D(struct soap *soap, const char *tag, int id, const prodml23__LocationIn2D *a, const char *type) { if (!type) - type = "prodml22:LocationIn2D"; + type = "prodml23:LocationIn2D"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D), type)) return soap->error; - if (!a->prodml22__LocationIn2D::CoordinateX) - { if (soap_element_empty(soap, "prodml22:CoordinateX", 0, NULL)) + if (!a->prodml23__LocationIn2D::CoordinateX) + { if (soap_element_empty(soap, "prodml23:CoordinateX", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:CoordinateX", -1, &a->prodml22__LocationIn2D::CoordinateX, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:CoordinateX", -1, &a->prodml23__LocationIn2D::CoordinateX, "eml23:LengthMeasure")) return soap->error; - if (!a->prodml22__LocationIn2D::CoordinateY) - { if (soap_element_empty(soap, "prodml22:CoordinateY", 0, NULL)) + if (!a->prodml23__LocationIn2D::CoordinateY) + { if (soap_element_empty(soap, "prodml23:CoordinateY", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:CoordinateY", -1, &a->prodml22__LocationIn2D::CoordinateY, "eml23:LengthMeasure")) + else if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:CoordinateY", -1, &a->prodml23__LocationIn2D::CoordinateY, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LocationIn2D::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LocationIn2D::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LocationIn2D(soap, tag, this, type); + return soap_in_prodml23__LocationIn2D(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_in_prodml22__LocationIn2D(struct soap *soap, const char *tag, prodml22__LocationIn2D *a, const char *type) +SOAP_FMAC3 prodml23__LocationIn2D * SOAP_FMAC4 soap_in_prodml23__LocationIn2D(struct soap *soap, const char *tag, prodml23__LocationIn2D *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LocationIn2D*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, sizeof(prodml22__LocationIn2D), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LocationIn2D*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, sizeof(prodml23__LocationIn2D), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LocationIn2D *)a->soap_in(soap, tag, type); + return (prodml23__LocationIn2D *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -208066,13 +208031,13 @@ SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_in_prodml22__LocationIn2D(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CoordinateX1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:CoordinateX", &a->prodml22__LocationIn2D::CoordinateX, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:CoordinateX", &a->prodml23__LocationIn2D::CoordinateX, "eml23:LengthMeasure")) { soap_flag_CoordinateX1--; continue; } } if (soap_flag_CoordinateY1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:CoordinateY", &a->prodml22__LocationIn2D::CoordinateY, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:CoordinateY", &a->prodml23__LocationIn2D::CoordinateY, "eml23:LengthMeasure")) { soap_flag_CoordinateY1--; continue; } @@ -208086,7 +208051,7 @@ SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_in_prodml22__LocationIn2D(st } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__LocationIn2D::CoordinateX || !a->prodml22__LocationIn2D::CoordinateY)) + if ((!a->prodml23__LocationIn2D::CoordinateX || !a->prodml23__LocationIn2D::CoordinateY)) { soap->error = SOAP_OCCURS; return NULL; } @@ -208096,35 +208061,35 @@ SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_in_prodml22__LocationIn2D(st return NULL; } else - { a = (prodml22__LocationIn2D *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, sizeof(prodml22__LocationIn2D), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LocationIn2D *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, sizeof(prodml23__LocationIn2D), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml22__LocationIn2D(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml23__LocationIn2D(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LocationIn2D(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LocationIn2D(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LocationIn2D *p; - size_t k = sizeof(prodml22__LocationIn2D); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, n, gsoap_eml2_3_fdelete); + prodml23__LocationIn2D *p; + size_t k = sizeof(prodml23__LocationIn2D); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LocationIn2D); + { p = SOAP_NEW(soap, prodml23__LocationIn2D); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LocationIn2D, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LocationIn2D, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LocationIn2D location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LocationIn2D location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -208134,83 +208099,83 @@ SOAP_FMAC1 prodml22__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml22__Locati return p; } -int prodml22__LocationIn2D::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LocationIn2D::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LocationIn2D(soap, tag ? tag : "prodml22:LocationIn2D", -2, this, type)) + if (soap_out_prodml23__LocationIn2D(soap, tag ? tag : "prodml23:LocationIn2D", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LocationIn2D::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LocationIn2D::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LocationIn2D(soap, this, tag, type); + return soap_get_prodml23__LocationIn2D(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_get_prodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LocationIn2D * SOAP_FMAC4 soap_get_prodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LocationIn2D(soap, tag, p, type))) + if ((p = soap_in_prodml23__LocationIn2D(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LayerToLayerConnection::soap_default(struct soap *soap) +void prodml23__LayerToLayerConnection::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__LayerToLayerConnection::ConnectedLayerRefID); - this->prodml22__LayerToLayerConnection::InterLayerConnectivity = NULL; + soap_default_eml23__String64(soap, &this->prodml23__LayerToLayerConnection::ConnectedLayerRefID); + this->prodml23__LayerToLayerConnection::InterLayerConnectivity = NULL; } -void prodml22__LayerToLayerConnection::soap_serialize(struct soap *soap) const +void prodml23__LayerToLayerConnection::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__LayerToLayerConnection::ConnectedLayerRefID, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__LayerToLayerConnection::ConnectedLayerRefID); - soap_serialize_PointerToprodml22__InterporosityFlowParameter(soap, &this->prodml22__LayerToLayerConnection::InterLayerConnectivity); + soap_embedded(soap, &this->prodml23__LayerToLayerConnection::ConnectedLayerRefID, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__LayerToLayerConnection::ConnectedLayerRefID); + soap_serialize_PointerToprodml23__InterporosityFlowParameter(soap, &this->prodml23__LayerToLayerConnection::InterLayerConnectivity); #endif } -int prodml22__LayerToLayerConnection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LayerToLayerConnection::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LayerToLayerConnection(soap, tag, id, this, type); + return soap_out_prodml23__LayerToLayerConnection(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LayerToLayerConnection(struct soap *soap, const char *tag, int id, const prodml22__LayerToLayerConnection *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LayerToLayerConnection(struct soap *soap, const char *tag, int id, const prodml23__LayerToLayerConnection *a, const char *type) { if (!type) - type = "prodml22:LayerToLayerConnection"; + type = "prodml23:LayerToLayerConnection"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:ConnectedLayerRefID", -1, &a->prodml22__LayerToLayerConnection::ConnectedLayerRefID, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:ConnectedLayerRefID", -1, &a->prodml23__LayerToLayerConnection::ConnectedLayerRefID, "eml23:String64")) return soap->error; - if (!a->prodml22__LayerToLayerConnection::InterLayerConnectivity) - { if (soap_element_empty(soap, "prodml22:InterLayerConnectivity", 0, NULL)) + if (!a->prodml23__LayerToLayerConnection::InterLayerConnectivity) + { if (soap_element_empty(soap, "prodml23:InterLayerConnectivity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterLayerConnectivity", -1, &a->prodml22__LayerToLayerConnection::InterLayerConnectivity, "prodml22:InterporosityFlowParameter")) + else if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterLayerConnectivity", -1, &a->prodml23__LayerToLayerConnection::InterLayerConnectivity, "prodml23:InterporosityFlowParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LayerToLayerConnection::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LayerToLayerConnection::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LayerToLayerConnection(soap, tag, this, type); + return soap_in_prodml23__LayerToLayerConnection(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml22__LayerToLayerConnection(struct soap *soap, const char *tag, prodml22__LayerToLayerConnection *a, const char *type) +SOAP_FMAC3 prodml23__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml23__LayerToLayerConnection(struct soap *soap, const char *tag, prodml23__LayerToLayerConnection *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LayerToLayerConnection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, sizeof(prodml22__LayerToLayerConnection), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LayerToLayerConnection*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, sizeof(prodml23__LayerToLayerConnection), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LayerToLayerConnection *)a->soap_in(soap, tag, type); + return (prodml23__LayerToLayerConnection *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -208221,13 +208186,13 @@ SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml22__Layer for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ConnectedLayerRefID1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:ConnectedLayerRefID", &a->prodml22__LayerToLayerConnection::ConnectedLayerRefID, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:ConnectedLayerRefID", &a->prodml23__LayerToLayerConnection::ConnectedLayerRefID, "eml23:String64")) { soap_flag_ConnectedLayerRefID1--; continue; } } if (soap_flag_InterLayerConnectivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InterporosityFlowParameter(soap, "prodml22:InterLayerConnectivity", &a->prodml22__LayerToLayerConnection::InterLayerConnectivity, "prodml22:InterporosityFlowParameter")) + { if (soap_in_PointerToprodml23__InterporosityFlowParameter(soap, "prodml23:InterLayerConnectivity", &a->prodml23__LayerToLayerConnection::InterLayerConnectivity, "prodml23:InterporosityFlowParameter")) { soap_flag_InterLayerConnectivity1--; continue; } @@ -208241,7 +208206,7 @@ SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml22__Layer } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_ConnectedLayerRefID1 > 0 || !a->prodml22__LayerToLayerConnection::InterLayerConnectivity)) + if ((soap_flag_ConnectedLayerRefID1 > 0 || !a->prodml23__LayerToLayerConnection::InterLayerConnectivity)) { soap->error = SOAP_OCCURS; return NULL; } @@ -208251,35 +208216,35 @@ SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml22__Layer return NULL; } else - { a = (prodml22__LayerToLayerConnection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, sizeof(prodml22__LayerToLayerConnection), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LayerToLayerConnection *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, sizeof(prodml23__LayerToLayerConnection), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml22__LayerToLayerConnection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml23__LayerToLayerConnection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LayerToLayerConnection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LayerToLayerConnection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LayerToLayerConnection *p; - size_t k = sizeof(prodml22__LayerToLayerConnection); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, n, gsoap_eml2_3_fdelete); + prodml23__LayerToLayerConnection *p; + size_t k = sizeof(prodml23__LayerToLayerConnection); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LayerToLayerConnection); + { p = SOAP_NEW(soap, prodml23__LayerToLayerConnection); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LayerToLayerConnection, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LayerToLayerConnection, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LayerToLayerConnection location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LayerToLayerConnection location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -208289,123 +208254,123 @@ SOAP_FMAC1 prodml22__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__LayerToLayerConnection::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LayerToLayerConnection::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LayerToLayerConnection(soap, tag ? tag : "prodml22:LayerToLayerConnection", -2, this, type)) + if (soap_out_prodml23__LayerToLayerConnection(soap, tag ? tag : "prodml23:LayerToLayerConnection", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LayerToLayerConnection::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LayerToLayerConnection::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LayerToLayerConnection(soap, this, tag, type); + return soap_get_prodml23__LayerToLayerConnection(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_get_prodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LayerToLayerConnection * SOAP_FMAC4 soap_get_prodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LayerToLayerConnection(soap, tag, p, type))) + if ((p = soap_in_prodml23__LayerToLayerConnection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LayerModel::soap_default(struct soap *soap) +void prodml23__LayerModel::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__LayerModel::Name); - soap_default_bool(soap, &this->prodml22__LayerModel::AggregateLayersModel); - this->prodml22__LayerModel::GeologicFeature = NULL; - this->prodml22__LayerModel::MdTopLayer = NULL; - this->prodml22__LayerModel::MdBottomLayer = NULL; - this->prodml22__LayerModel::LayerProductivityIndex = NULL; - this->prodml22__LayerModel::LayerTurbulentFlowCoefficient = NULL; - this->prodml22__LayerModel::LayerLaminarFlowCoefficient = NULL; - this->prodml22__LayerModel::NearWellboreModel = NULL; - this->prodml22__LayerModel::ReservoirModel = NULL; - this->prodml22__LayerModel::BoundaryModel = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap, &this->prodml22__LayerModel::LayerToLayerConnection); - this->prodml22__LayerModel::uid = NULL; + soap_default_eml23__String64(soap, &this->prodml23__LayerModel::Name); + soap_default_bool(soap, &this->prodml23__LayerModel::AggregateLayersModel); + this->prodml23__LayerModel::GeologicFeature = NULL; + this->prodml23__LayerModel::MdTopLayer = NULL; + this->prodml23__LayerModel::MdBottomLayer = NULL; + this->prodml23__LayerModel::LayerProductivityIndex = NULL; + this->prodml23__LayerModel::LayerTurbulentFlowCoefficient = NULL; + this->prodml23__LayerModel::LayerLaminarFlowCoefficient = NULL; + this->prodml23__LayerModel::NearWellboreModel = NULL; + this->prodml23__LayerModel::ReservoirModel = NULL; + this->prodml23__LayerModel::BoundaryModel = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap, &this->prodml23__LayerModel::LayerToLayerConnection); + this->prodml23__LayerModel::uid = NULL; } -void prodml22__LayerModel::soap_serialize(struct soap *soap) const +void prodml23__LayerModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__LayerModel::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__LayerModel::Name); - soap_embedded(soap, &this->prodml22__LayerModel::AggregateLayersModel, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__LayerModel::GeologicFeature); - soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml22__LayerModel::MdTopLayer); - soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml22__LayerModel::MdBottomLayer); - soap_serialize_PointerToeml23__VolumePerTimePerPressureMeasure(soap, &this->prodml22__LayerModel::LayerProductivityIndex); - soap_serialize_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, &this->prodml22__LayerModel::LayerTurbulentFlowCoefficient); - soap_serialize_PointerToeml23__PressurePerFlowrateMeasure(soap, &this->prodml22__LayerModel::LayerLaminarFlowCoefficient); - soap_serialize_PointerToprodml22__NearWellboreBaseModel(soap, &this->prodml22__LayerModel::NearWellboreModel); - soap_serialize_PointerToprodml22__ReservoirBaseModel(soap, &this->prodml22__LayerModel::ReservoirModel); - soap_serialize_PointerToprodml22__BoundaryBaseModel(soap, &this->prodml22__LayerModel::BoundaryModel); - soap_serialize_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap, &this->prodml22__LayerModel::LayerToLayerConnection); + soap_embedded(soap, &this->prodml23__LayerModel::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__LayerModel::Name); + soap_embedded(soap, &this->prodml23__LayerModel::AggregateLayersModel, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__LayerModel::GeologicFeature); + soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml23__LayerModel::MdTopLayer); + soap_serialize_PointerToeml23__MeasuredDepth(soap, &this->prodml23__LayerModel::MdBottomLayer); + soap_serialize_PointerToeml23__VolumePerTimePerPressureMeasure(soap, &this->prodml23__LayerModel::LayerProductivityIndex); + soap_serialize_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, &this->prodml23__LayerModel::LayerTurbulentFlowCoefficient); + soap_serialize_PointerToeml23__PressurePerFlowrateMeasure(soap, &this->prodml23__LayerModel::LayerLaminarFlowCoefficient); + soap_serialize_PointerToprodml23__NearWellboreBaseModel(soap, &this->prodml23__LayerModel::NearWellboreModel); + soap_serialize_PointerToprodml23__ReservoirBaseModel(soap, &this->prodml23__LayerModel::ReservoirModel); + soap_serialize_PointerToprodml23__BoundaryBaseModel(soap, &this->prodml23__LayerModel::BoundaryModel); + soap_serialize_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap, &this->prodml23__LayerModel::LayerToLayerConnection); #endif } -int prodml22__LayerModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LayerModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LayerModel(soap, tag, id, this, type); + return soap_out_prodml23__LayerModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LayerModel(struct soap *soap, const char *tag, int id, const prodml22__LayerModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LayerModel(struct soap *soap, const char *tag, int id, const prodml23__LayerModel *a, const char *type) { if (!type) - type = "prodml22:LayerModel"; - if (((prodml22__LayerModel*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__LayerModel*)a)->uid), 1); + type = "prodml23:LayerModel"; + if (((prodml23__LayerModel*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__LayerModel*)a)->uid), 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_gsoap_eml2_3_prodml22__LayerModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__LayerModel::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__LayerModel::Name, "eml23:String64")) return soap->error; - if (soap_out_bool(soap, "prodml22:AggregateLayersModel", -1, &a->prodml22__LayerModel::AggregateLayersModel, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:AggregateLayersModel", -1, &a->prodml23__LayerModel::AggregateLayersModel, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:GeologicFeature", -1, &a->prodml22__LayerModel::GeologicFeature, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:GeologicFeature", -1, &a->prodml23__LayerModel::GeologicFeature, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml22:MdTopLayer", -1, &a->prodml22__LayerModel::MdTopLayer, "eml23:MeasuredDepth")) + if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml23:MdTopLayer", -1, &a->prodml23__LayerModel::MdTopLayer, "eml23:MeasuredDepth")) return soap->error; - if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml22:MdBottomLayer", -1, &a->prodml22__LayerModel::MdBottomLayer, "eml23:MeasuredDepth")) + if (soap_out_PointerToeml23__MeasuredDepth(soap, "prodml23:MdBottomLayer", -1, &a->prodml23__LayerModel::MdBottomLayer, "eml23:MeasuredDepth")) return soap->error; - if (soap_out_PointerToeml23__VolumePerTimePerPressureMeasure(soap, "prodml22:LayerProductivityIndex", -1, &a->prodml22__LayerModel::LayerProductivityIndex, "eml23:VolumePerTimePerPressureMeasure")) + if (soap_out_PointerToeml23__VolumePerTimePerPressureMeasure(soap, "prodml23:LayerProductivityIndex", -1, &a->prodml23__LayerModel::LayerProductivityIndex, "eml23:VolumePerTimePerPressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, "prodml22:LayerTurbulentFlowCoefficient", -1, &a->prodml22__LayerModel::LayerTurbulentFlowCoefficient, "eml23:PressurePerFlowrateSquaredMeasure")) + if (soap_out_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, "prodml23:LayerTurbulentFlowCoefficient", -1, &a->prodml23__LayerModel::LayerTurbulentFlowCoefficient, "eml23:PressurePerFlowrateSquaredMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressurePerFlowrateMeasure(soap, "prodml22:LayerLaminarFlowCoefficient", -1, &a->prodml22__LayerModel::LayerLaminarFlowCoefficient, "eml23:PressurePerFlowrateMeasure")) + if (soap_out_PointerToeml23__PressurePerFlowrateMeasure(soap, "prodml23:LayerLaminarFlowCoefficient", -1, &a->prodml23__LayerModel::LayerLaminarFlowCoefficient, "eml23:PressurePerFlowrateMeasure")) return soap->error; - if (soap_out_PointerToprodml22__NearWellboreBaseModel(soap, "prodml22:NearWellboreModel", -1, &a->prodml22__LayerModel::NearWellboreModel, "prodml22:NearWellboreBaseModel")) + if (soap_out_PointerToprodml23__NearWellboreBaseModel(soap, "prodml23:NearWellboreModel", -1, &a->prodml23__LayerModel::NearWellboreModel, "prodml23:NearWellboreBaseModel")) return soap->error; - if (soap_out_PointerToprodml22__ReservoirBaseModel(soap, "prodml22:ReservoirModel", -1, &a->prodml22__LayerModel::ReservoirModel, "prodml22:ReservoirBaseModel")) + if (soap_out_PointerToprodml23__ReservoirBaseModel(soap, "prodml23:ReservoirModel", -1, &a->prodml23__LayerModel::ReservoirModel, "prodml23:ReservoirBaseModel")) return soap->error; - if (soap_out_PointerToprodml22__BoundaryBaseModel(soap, "prodml22:BoundaryModel", -1, &a->prodml22__LayerModel::BoundaryModel, "prodml22:BoundaryBaseModel")) + if (soap_out_PointerToprodml23__BoundaryBaseModel(soap, "prodml23:BoundaryModel", -1, &a->prodml23__LayerModel::BoundaryModel, "prodml23:BoundaryBaseModel")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap, "prodml22:LayerToLayerConnection", -1, &a->prodml22__LayerModel::LayerToLayerConnection, "prodml22:LayerToLayerConnection")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap, "prodml23:LayerToLayerConnection", -1, &a->prodml23__LayerModel::LayerToLayerConnection, "prodml23:LayerToLayerConnection")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LayerModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LayerModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LayerModel(soap, tag, this, type); + return soap_in_prodml23__LayerModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_in_prodml22__LayerModel(struct soap *soap, const char *tag, prodml22__LayerModel *a, const char *type) +SOAP_FMAC3 prodml23__LayerModel * SOAP_FMAC4 soap_in_prodml23__LayerModel(struct soap *soap, const char *tag, prodml23__LayerModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LayerModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, sizeof(prodml22__LayerModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LayerModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, sizeof(prodml23__LayerModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LayerModel *)a->soap_in(soap, tag, type); + return (prodml23__LayerModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -208413,9 +208378,9 @@ SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_in_prodml22__LayerModel(struct const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__LayerModel*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__LayerModel*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__LayerModel*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__LayerModel*)a)->uid)) return NULL; } else if (soap->error) @@ -208437,73 +208402,73 @@ SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_in_prodml22__LayerModel(struct for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__LayerModel::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__LayerModel::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_AggregateLayersModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:AggregateLayersModel", &a->prodml22__LayerModel::AggregateLayersModel, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:AggregateLayersModel", &a->prodml23__LayerModel::AggregateLayersModel, "xsd:boolean")) { soap_flag_AggregateLayersModel1--; continue; } } if (soap_flag_GeologicFeature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:GeologicFeature", &a->prodml22__LayerModel::GeologicFeature, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:GeologicFeature", &a->prodml23__LayerModel::GeologicFeature, "eml23:DataObjectReference")) { soap_flag_GeologicFeature1--; continue; } } if (soap_flag_MdTopLayer1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml22:MdTopLayer", &a->prodml22__LayerModel::MdTopLayer, "eml23:MeasuredDepth")) + { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml23:MdTopLayer", &a->prodml23__LayerModel::MdTopLayer, "eml23:MeasuredDepth")) { soap_flag_MdTopLayer1--; continue; } } if (soap_flag_MdBottomLayer1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml22:MdBottomLayer", &a->prodml22__LayerModel::MdBottomLayer, "eml23:MeasuredDepth")) + { if (soap_in_PointerToeml23__MeasuredDepth(soap, "prodml23:MdBottomLayer", &a->prodml23__LayerModel::MdBottomLayer, "eml23:MeasuredDepth")) { soap_flag_MdBottomLayer1--; continue; } } if (soap_flag_LayerProductivityIndex1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimePerPressureMeasure(soap, "prodml22:LayerProductivityIndex", &a->prodml22__LayerModel::LayerProductivityIndex, "eml23:VolumePerTimePerPressureMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimePerPressureMeasure(soap, "prodml23:LayerProductivityIndex", &a->prodml23__LayerModel::LayerProductivityIndex, "eml23:VolumePerTimePerPressureMeasure")) { soap_flag_LayerProductivityIndex1--; continue; } } if (soap_flag_LayerTurbulentFlowCoefficient1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, "prodml22:LayerTurbulentFlowCoefficient", &a->prodml22__LayerModel::LayerTurbulentFlowCoefficient, "eml23:PressurePerFlowrateSquaredMeasure")) + { if (soap_in_PointerToeml23__PressurePerFlowrateSquaredMeasure(soap, "prodml23:LayerTurbulentFlowCoefficient", &a->prodml23__LayerModel::LayerTurbulentFlowCoefficient, "eml23:PressurePerFlowrateSquaredMeasure")) { soap_flag_LayerTurbulentFlowCoefficient1--; continue; } } if (soap_flag_LayerLaminarFlowCoefficient1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressurePerFlowrateMeasure(soap, "prodml22:LayerLaminarFlowCoefficient", &a->prodml22__LayerModel::LayerLaminarFlowCoefficient, "eml23:PressurePerFlowrateMeasure")) + { if (soap_in_PointerToeml23__PressurePerFlowrateMeasure(soap, "prodml23:LayerLaminarFlowCoefficient", &a->prodml23__LayerModel::LayerLaminarFlowCoefficient, "eml23:PressurePerFlowrateMeasure")) { soap_flag_LayerLaminarFlowCoefficient1--; continue; } } if (soap_flag_NearWellboreModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__NearWellboreBaseModel(soap, "prodml22:NearWellboreModel", &a->prodml22__LayerModel::NearWellboreModel, "prodml22:NearWellboreBaseModel")) + { if (soap_in_PointerToprodml23__NearWellboreBaseModel(soap, "prodml23:NearWellboreModel", &a->prodml23__LayerModel::NearWellboreModel, "prodml23:NearWellboreBaseModel")) { soap_flag_NearWellboreModel1--; continue; } } if (soap_flag_ReservoirModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReservoirBaseModel(soap, "prodml22:ReservoirModel", &a->prodml22__LayerModel::ReservoirModel, "prodml22:ReservoirBaseModel")) + { if (soap_in_PointerToprodml23__ReservoirBaseModel(soap, "prodml23:ReservoirModel", &a->prodml23__LayerModel::ReservoirModel, "prodml23:ReservoirBaseModel")) { soap_flag_ReservoirModel1--; continue; } } if (soap_flag_BoundaryModel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BoundaryBaseModel(soap, "prodml22:BoundaryModel", &a->prodml22__LayerModel::BoundaryModel, "prodml22:BoundaryBaseModel")) + { if (soap_in_PointerToprodml23__BoundaryBaseModel(soap, "prodml23:BoundaryModel", &a->prodml23__LayerModel::BoundaryModel, "prodml23:BoundaryBaseModel")) { soap_flag_BoundaryModel1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap, "prodml22:LayerToLayerConnection", &a->prodml22__LayerModel::LayerToLayerConnection, "prodml22:LayerToLayerConnection")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap, "prodml23:LayerToLayerConnection", &a->prodml23__LayerModel::LayerToLayerConnection, "prodml23:LayerToLayerConnection")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -208525,35 +208490,35 @@ SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_in_prodml22__LayerModel(struct return NULL; } else - { a = (prodml22__LayerModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, sizeof(prodml22__LayerModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LayerModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, sizeof(prodml23__LayerModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__LayerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LayerModel * SOAP_FMAC2 soap_instantiate_prodml23__LayerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LayerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LayerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LayerModel *p; - size_t k = sizeof(prodml22__LayerModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, n, gsoap_eml2_3_fdelete); + prodml23__LayerModel *p; + size_t k = sizeof(prodml23__LayerModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LayerModel); + { p = SOAP_NEW(soap, prodml23__LayerModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LayerModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LayerModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LayerModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LayerModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -208563,98 +208528,98 @@ SOAP_FMAC1 prodml22__LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__LayerMod return p; } -int prodml22__LayerModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LayerModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LayerModel(soap, tag ? tag : "prodml22:LayerModel", -2, this, type)) + if (soap_out_prodml23__LayerModel(soap, tag ? tag : "prodml23:LayerModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LayerModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LayerModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LayerModel(soap, this, tag, type); + return soap_get_prodml23__LayerModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_get_prodml22__LayerModel(struct soap *soap, prodml22__LayerModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LayerModel * SOAP_FMAC4 soap_get_prodml23__LayerModel(struct soap *soap, prodml23__LayerModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LayerModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__LayerModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InternalFaultSubModel::soap_default(struct soap *soap) +void prodml23__InternalFaultSubModel::soap_default(struct soap *soap) { this->soap = soap; - soap_default_bool(soap, &this->prodml22__InternalFaultSubModel::IsLeaky); - this->prodml22__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront = NULL; - soap_default_bool(soap, &this->prodml22__InternalFaultSubModel::IsConductive); - soap_default_bool(soap, &this->prodml22__InternalFaultSubModel::IsFiniteConductive); - this->prodml22__InternalFaultSubModel::Conductivity = NULL; - this->prodml22__InternalFaultSubModel::FaultRefID = NULL; + soap_default_bool(soap, &this->prodml23__InternalFaultSubModel::IsLeaky); + this->prodml23__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront = NULL; + soap_default_bool(soap, &this->prodml23__InternalFaultSubModel::IsConductive); + soap_default_bool(soap, &this->prodml23__InternalFaultSubModel::IsFiniteConductive); + this->prodml23__InternalFaultSubModel::Conductivity = NULL; + this->prodml23__InternalFaultSubModel::FaultRefID = NULL; } -void prodml22__InternalFaultSubModel::soap_serialize(struct soap *soap) const +void prodml23__InternalFaultSubModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InternalFaultSubModel::IsLeaky, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml22__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront); - soap_embedded(soap, &this->prodml22__InternalFaultSubModel::IsConductive, SOAP_TYPE_gsoap_eml2_3_bool); - soap_embedded(soap, &this->prodml22__InternalFaultSubModel::IsFiniteConductive, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__FractureConductivity(soap, &this->prodml22__InternalFaultSubModel::Conductivity); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__InternalFaultSubModel::FaultRefID); + soap_embedded(soap, &this->prodml23__InternalFaultSubModel::IsLeaky, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, &this->prodml23__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront); + soap_embedded(soap, &this->prodml23__InternalFaultSubModel::IsConductive, SOAP_TYPE_gsoap_eml2_3_bool); + soap_embedded(soap, &this->prodml23__InternalFaultSubModel::IsFiniteConductive, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__FractureConductivity(soap, &this->prodml23__InternalFaultSubModel::Conductivity); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__InternalFaultSubModel::FaultRefID); #endif } -int prodml22__InternalFaultSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InternalFaultSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InternalFaultSubModel(soap, tag, id, this, type); + return soap_out_prodml23__InternalFaultSubModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InternalFaultSubModel(struct soap *soap, const char *tag, int id, const prodml22__InternalFaultSubModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InternalFaultSubModel(struct soap *soap, const char *tag, int id, const prodml23__InternalFaultSubModel *a, const char *type) { if (!type) - type = "prodml22:InternalFaultSubModel"; + type = "prodml23:InternalFaultSubModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel), type)) return soap->error; - if (soap_out_bool(soap, "prodml22:IsLeaky", -1, &a->prodml22__InternalFaultSubModel::IsLeaky, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsLeaky", -1, &a->prodml23__InternalFaultSubModel::IsLeaky, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionRatioOfLinearFront", -1, &a->prodml22__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + if (soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionRatioOfLinearFront", -1, &a->prodml23__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsConductive", -1, &a->prodml22__InternalFaultSubModel::IsConductive, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsConductive", -1, &a->prodml23__InternalFaultSubModel::IsConductive, "xsd:boolean")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsFiniteConductive", -1, &a->prodml22__InternalFaultSubModel::IsFiniteConductive, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsFiniteConductive", -1, &a->prodml23__InternalFaultSubModel::IsFiniteConductive, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__FractureConductivity(soap, "prodml22:Conductivity", -1, &a->prodml22__InternalFaultSubModel::Conductivity, "prodml22:FractureConductivity")) + if (soap_out_PointerToprodml23__FractureConductivity(soap, "prodml23:Conductivity", -1, &a->prodml23__InternalFaultSubModel::Conductivity, "prodml23:FractureConductivity")) return soap->error; - if (!a->prodml22__InternalFaultSubModel::FaultRefID) - { if (soap_element_empty(soap, "prodml22:FaultRefID", 0, NULL)) + if (!a->prodml23__InternalFaultSubModel::FaultRefID) + { if (soap_element_empty(soap, "prodml23:FaultRefID", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:FaultRefID", -1, &a->prodml22__InternalFaultSubModel::FaultRefID, "prodml22:ResqmlModelRef")) + else if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:FaultRefID", -1, &a->prodml23__InternalFaultSubModel::FaultRefID, "prodml23:ResqmlModelRef")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InternalFaultSubModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InternalFaultSubModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InternalFaultSubModel(soap, tag, this, type); + return soap_in_prodml23__InternalFaultSubModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml22__InternalFaultSubModel(struct soap *soap, const char *tag, prodml22__InternalFaultSubModel *a, const char *type) +SOAP_FMAC3 prodml23__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml23__InternalFaultSubModel(struct soap *soap, const char *tag, prodml23__InternalFaultSubModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InternalFaultSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, sizeof(prodml22__InternalFaultSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InternalFaultSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, sizeof(prodml23__InternalFaultSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InternalFaultSubModel *)a->soap_in(soap, tag, type); + return (prodml23__InternalFaultSubModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -208669,37 +208634,37 @@ SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml22__Intern for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_IsLeaky1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsLeaky", &a->prodml22__InternalFaultSubModel::IsLeaky, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsLeaky", &a->prodml23__InternalFaultSubModel::IsLeaky, "xsd:boolean")) { soap_flag_IsLeaky1--; continue; } } if (soap_flag_TransmissibilityReductionRatioOfLinearFront1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, "prodml22:TransmissibilityReductionRatioOfLinearFront", &a->prodml22__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront, "prodml22:TransmissibilityReductionFactorOfLinearFront")) + { if (soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, "prodml23:TransmissibilityReductionRatioOfLinearFront", &a->prodml23__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront, "prodml23:TransmissibilityReductionFactorOfLinearFront")) { soap_flag_TransmissibilityReductionRatioOfLinearFront1--; continue; } } if (soap_flag_IsConductive1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsConductive", &a->prodml22__InternalFaultSubModel::IsConductive, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsConductive", &a->prodml23__InternalFaultSubModel::IsConductive, "xsd:boolean")) { soap_flag_IsConductive1--; continue; } } if (soap_flag_IsFiniteConductive1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsFiniteConductive", &a->prodml22__InternalFaultSubModel::IsFiniteConductive, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsFiniteConductive", &a->prodml23__InternalFaultSubModel::IsFiniteConductive, "xsd:boolean")) { soap_flag_IsFiniteConductive1--; continue; } } if (soap_flag_Conductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FractureConductivity(soap, "prodml22:Conductivity", &a->prodml22__InternalFaultSubModel::Conductivity, "prodml22:FractureConductivity")) + { if (soap_in_PointerToprodml23__FractureConductivity(soap, "prodml23:Conductivity", &a->prodml23__InternalFaultSubModel::Conductivity, "prodml23:FractureConductivity")) { soap_flag_Conductivity1--; continue; } } if (soap_flag_FaultRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:FaultRefID", &a->prodml22__InternalFaultSubModel::FaultRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:FaultRefID", &a->prodml23__InternalFaultSubModel::FaultRefID, "prodml23:ResqmlModelRef")) { soap_flag_FaultRefID1--; continue; } @@ -208713,7 +208678,7 @@ SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml22__Intern } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_IsLeaky1 > 0 || soap_flag_IsConductive1 > 0 || soap_flag_IsFiniteConductive1 > 0 || !a->prodml22__InternalFaultSubModel::FaultRefID)) + if ((soap_flag_IsLeaky1 > 0 || soap_flag_IsConductive1 > 0 || soap_flag_IsFiniteConductive1 > 0 || !a->prodml23__InternalFaultSubModel::FaultRefID)) { soap->error = SOAP_OCCURS; return NULL; } @@ -208723,35 +208688,35 @@ SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml22__Intern return NULL; } else - { a = (prodml22__InternalFaultSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, sizeof(prodml22__InternalFaultSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InternalFaultSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, sizeof(prodml23__InternalFaultSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml22__InternalFaultSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml23__InternalFaultSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InternalFaultSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InternalFaultSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InternalFaultSubModel *p; - size_t k = sizeof(prodml22__InternalFaultSubModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, n, gsoap_eml2_3_fdelete); + prodml23__InternalFaultSubModel *p; + size_t k = sizeof(prodml23__InternalFaultSubModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InternalFaultSubModel); + { p = SOAP_NEW(soap, prodml23__InternalFaultSubModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InternalFaultSubModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InternalFaultSubModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InternalFaultSubModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InternalFaultSubModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -208761,100 +208726,100 @@ SOAP_FMAC1 prodml22__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__InternalFaultSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InternalFaultSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InternalFaultSubModel(soap, tag ? tag : "prodml22:InternalFaultSubModel", -2, this, type)) + if (soap_out_prodml23__InternalFaultSubModel(soap, tag ? tag : "prodml23:InternalFaultSubModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InternalFaultSubModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InternalFaultSubModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InternalFaultSubModel(soap, this, tag, type); + return soap_get_prodml23__InternalFaultSubModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_get_prodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InternalFaultSubModel * SOAP_FMAC4 soap_get_prodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InternalFaultSubModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__InternalFaultSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InterferingFlowTestInterval::soap_default(struct soap *soap) +void prodml23__InterferingFlowTestInterval::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef); - soap_default_eml23__String64(soap, &this->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef); - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__InterferingFlowTestInterval::TestPeriodRef); - this->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure = NULL; - soap_default_bool(soap, &this->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved); - this->prodml22__InterferingFlowTestInterval::uid = NULL; + soap_default_eml23__String64(soap, &this->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef); + soap_default_eml23__String64(soap, &this->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef); + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__InterferingFlowTestInterval::TestPeriodRef); + this->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure = NULL; + soap_default_bool(soap, &this->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved); + this->prodml23__InterferingFlowTestInterval::uid = NULL; } -void prodml22__InterferingFlowTestInterval::soap_serialize(struct soap *soap) const +void prodml23__InterferingFlowTestInterval::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef); - soap_embedded(soap, &this->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef); - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__InterferingFlowTestInterval::TestPeriodRef); - soap_serialize_PointerToprodml22__OutputPressureData(soap, &this->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure); - soap_embedded(soap, &this->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved, SOAP_TYPE_gsoap_eml2_3_bool); + soap_embedded(soap, &this->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef); + soap_embedded(soap, &this->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__InterferingFlowTestInterval::TestPeriodRef); + soap_serialize_PointerToprodml23__OutputPressureData(soap, &this->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure); + soap_embedded(soap, &this->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved, SOAP_TYPE_gsoap_eml2_3_bool); #endif } -int prodml22__InterferingFlowTestInterval::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InterferingFlowTestInterval::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InterferingFlowTestInterval(soap, tag, id, this, type); + return soap_out_prodml23__InterferingFlowTestInterval(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterferingFlowTestInterval(struct soap *soap, const char *tag, int id, const prodml22__InterferingFlowTestInterval *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterferingFlowTestInterval(struct soap *soap, const char *tag, int id, const prodml23__InterferingFlowTestInterval *a, const char *type) { if (!type) - type = "prodml22:InterferingFlowTestInterval"; - if (((prodml22__InterferingFlowTestInterval*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__InterferingFlowTestInterval*)a)->uid), 1); + type = "prodml23:InterferingFlowTestInterval"; + if (((prodml23__InterferingFlowTestInterval*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__InterferingFlowTestInterval*)a)->uid), 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_gsoap_eml2_3_prodml22__InterferingFlowTestInterval), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:FlowTestMeasurementSetRef", -1, &a->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:FlowTestMeasurementSetRef", -1, &a->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:InterferingFlowrateRef", -1, &a->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:InterferingFlowrateRef", -1, &a->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:TestPeriodRef", -1, &a->prodml22__InterferingFlowTestInterval::TestPeriodRef, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:TestPeriodRef", -1, &a->prodml23__InterferingFlowTestInterval::TestPeriodRef, "eml23:String64")) return soap->error; - if (!a->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure) - { if (soap_element_empty(soap, "prodml22:SimulatedInterferencePressure", 0, NULL)) + if (!a->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure) + { if (soap_element_empty(soap, "prodml23:SimulatedInterferencePressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__OutputPressureData(soap, "prodml22:SimulatedInterferencePressure", -1, &a->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure, "prodml22:OutputPressureData")) + else if (soap_out_PointerToprodml23__OutputPressureData(soap, "prodml23:SimulatedInterferencePressure", -1, &a->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure, "prodml23:OutputPressureData")) return soap->error; - if (soap_out_bool(soap, "prodml22:SimulatedInterferencePressureRemoved", -1, &a->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:SimulatedInterferencePressureRemoved", -1, &a->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved, "xsd:boolean")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InterferingFlowTestInterval::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterferingFlowTestInterval::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InterferingFlowTestInterval(soap, tag, this, type); + return soap_in_prodml23__InterferingFlowTestInterval(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml22__InterferingFlowTestInterval(struct soap *soap, const char *tag, prodml22__InterferingFlowTestInterval *a, const char *type) +SOAP_FMAC3 prodml23__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml23__InterferingFlowTestInterval(struct soap *soap, const char *tag, prodml23__InterferingFlowTestInterval *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InterferingFlowTestInterval*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, sizeof(prodml22__InterferingFlowTestInterval), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InterferingFlowTestInterval*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, sizeof(prodml23__InterferingFlowTestInterval), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InterferingFlowTestInterval *)a->soap_in(soap, tag, type); + return (prodml23__InterferingFlowTestInterval *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -208862,9 +208827,9 @@ SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml22__ const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__InterferingFlowTestInterval*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__InterferingFlowTestInterval*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__InterferingFlowTestInterval*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__InterferingFlowTestInterval*)a)->uid)) return NULL; } else if (soap->error) @@ -208879,29 +208844,29 @@ SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FlowTestMeasurementSetRef1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:FlowTestMeasurementSetRef", &a->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:FlowTestMeasurementSetRef", &a->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef, "eml23:String64")) { soap_flag_FlowTestMeasurementSetRef1--; continue; } } if (soap_flag_InterferingFlowrateRef1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:InterferingFlowrateRef", &a->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:InterferingFlowrateRef", &a->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef, "eml23:String64")) { soap_flag_InterferingFlowrateRef1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:TestPeriodRef", &a->prodml22__InterferingFlowTestInterval::TestPeriodRef, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:TestPeriodRef", &a->prodml23__InterferingFlowTestInterval::TestPeriodRef, "eml23:String64")) continue; } if (soap_flag_SimulatedInterferencePressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OutputPressureData(soap, "prodml22:SimulatedInterferencePressure", &a->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure, "prodml22:OutputPressureData")) + { if (soap_in_PointerToprodml23__OutputPressureData(soap, "prodml23:SimulatedInterferencePressure", &a->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure, "prodml23:OutputPressureData")) { soap_flag_SimulatedInterferencePressure1--; continue; } } if (soap_flag_SimulatedInterferencePressureRemoved1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:SimulatedInterferencePressureRemoved", &a->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:SimulatedInterferencePressureRemoved", &a->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved, "xsd:boolean")) { soap_flag_SimulatedInterferencePressureRemoved1--; continue; } @@ -208915,7 +208880,7 @@ SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml22__ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_FlowTestMeasurementSetRef1 > 0 || soap_flag_InterferingFlowrateRef1 > 0 || !a->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure || soap_flag_SimulatedInterferencePressureRemoved1 > 0)) + if ((soap_flag_FlowTestMeasurementSetRef1 > 0 || soap_flag_InterferingFlowrateRef1 > 0 || !a->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure || soap_flag_SimulatedInterferencePressureRemoved1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -208925,35 +208890,35 @@ SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__InterferingFlowTestInterval *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, sizeof(prodml22__InterferingFlowTestInterval), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InterferingFlowTestInterval *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, sizeof(prodml23__InterferingFlowTestInterval), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_prodml22__InterferingFlowTestInterval(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_prodml23__InterferingFlowTestInterval(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InterferingFlowTestInterval(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InterferingFlowTestInterval(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InterferingFlowTestInterval *p; - size_t k = sizeof(prodml22__InterferingFlowTestInterval); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, n, gsoap_eml2_3_fdelete); + prodml23__InterferingFlowTestInterval *p; + size_t k = sizeof(prodml23__InterferingFlowTestInterval); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InterferingFlowTestInterval); + { p = SOAP_NEW(soap, prodml23__InterferingFlowTestInterval); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InterferingFlowTestInterval, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InterferingFlowTestInterval, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InterferingFlowTestInterval location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InterferingFlowTestInterval location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -208963,118 +208928,118 @@ SOAP_FMAC1 prodml22__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__InterferingFlowTestInterval::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InterferingFlowTestInterval::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InterferingFlowTestInterval(soap, tag ? tag : "prodml22:InterferingFlowTestInterval", -2, this, type)) + if (soap_out_prodml23__InterferingFlowTestInterval(soap, tag ? tag : "prodml23:InterferingFlowTestInterval", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InterferingFlowTestInterval::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterferingFlowTestInterval::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InterferingFlowTestInterval(soap, this, tag, type); + return soap_get_prodml23__InterferingFlowTestInterval(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_get_prodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterferingFlowTestInterval * SOAP_FMAC4 soap_get_prodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InterferingFlowTestInterval(soap, tag, p, type))) + if ((p = soap_in_prodml23__InterferingFlowTestInterval(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DistributedParametersSubModel::soap_default(struct soap *soap) +void prodml23__DistributedParametersSubModel::soap_default(struct soap *soap) { this->soap = soap; - soap_default_bool(soap, &this->prodml22__DistributedParametersSubModel::IsPermeabilityGridded); - this->prodml22__DistributedParametersSubModel::PermeabilityArrayRefID = NULL; - soap_default_bool(soap, &this->prodml22__DistributedParametersSubModel::IsThicknessGridded); - this->prodml22__DistributedParametersSubModel::ThicknessArrayRefID = NULL; - soap_default_bool(soap, &this->prodml22__DistributedParametersSubModel::IsPorosityGridded); - this->prodml22__DistributedParametersSubModel::PorosityArrayRefID = NULL; - soap_default_bool(soap, &this->prodml22__DistributedParametersSubModel::IsDepthGridded); - this->prodml22__DistributedParametersSubModel::DepthArrayRefID = NULL; - soap_default_bool(soap, &this->prodml22__DistributedParametersSubModel::IsKvToKrGridded); - this->prodml22__DistributedParametersSubModel::KvToKrArrayRefID = NULL; - soap_default_bool(soap, &this->prodml22__DistributedParametersSubModel::IsKxToKyGridded); - this->prodml22__DistributedParametersSubModel::KxToKyArrayRefID = NULL; + soap_default_bool(soap, &this->prodml23__DistributedParametersSubModel::IsPermeabilityGridded); + this->prodml23__DistributedParametersSubModel::PermeabilityArrayRefID = NULL; + soap_default_bool(soap, &this->prodml23__DistributedParametersSubModel::IsThicknessGridded); + this->prodml23__DistributedParametersSubModel::ThicknessArrayRefID = NULL; + soap_default_bool(soap, &this->prodml23__DistributedParametersSubModel::IsPorosityGridded); + this->prodml23__DistributedParametersSubModel::PorosityArrayRefID = NULL; + soap_default_bool(soap, &this->prodml23__DistributedParametersSubModel::IsDepthGridded); + this->prodml23__DistributedParametersSubModel::DepthArrayRefID = NULL; + soap_default_bool(soap, &this->prodml23__DistributedParametersSubModel::IsKvToKrGridded); + this->prodml23__DistributedParametersSubModel::KvToKrArrayRefID = NULL; + soap_default_bool(soap, &this->prodml23__DistributedParametersSubModel::IsKxToKyGridded); + this->prodml23__DistributedParametersSubModel::KxToKyArrayRefID = NULL; } -void prodml22__DistributedParametersSubModel::soap_serialize(struct soap *soap) const +void prodml23__DistributedParametersSubModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DistributedParametersSubModel::IsPermeabilityGridded, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__DistributedParametersSubModel::PermeabilityArrayRefID); - soap_embedded(soap, &this->prodml22__DistributedParametersSubModel::IsThicknessGridded, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__DistributedParametersSubModel::ThicknessArrayRefID); - soap_embedded(soap, &this->prodml22__DistributedParametersSubModel::IsPorosityGridded, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__DistributedParametersSubModel::PorosityArrayRefID); - soap_embedded(soap, &this->prodml22__DistributedParametersSubModel::IsDepthGridded, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__DistributedParametersSubModel::DepthArrayRefID); - soap_embedded(soap, &this->prodml22__DistributedParametersSubModel::IsKvToKrGridded, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__DistributedParametersSubModel::KvToKrArrayRefID); - soap_embedded(soap, &this->prodml22__DistributedParametersSubModel::IsKxToKyGridded, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToprodml22__ResqmlModelRef(soap, &this->prodml22__DistributedParametersSubModel::KxToKyArrayRefID); + soap_embedded(soap, &this->prodml23__DistributedParametersSubModel::IsPermeabilityGridded, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__DistributedParametersSubModel::PermeabilityArrayRefID); + soap_embedded(soap, &this->prodml23__DistributedParametersSubModel::IsThicknessGridded, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__DistributedParametersSubModel::ThicknessArrayRefID); + soap_embedded(soap, &this->prodml23__DistributedParametersSubModel::IsPorosityGridded, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__DistributedParametersSubModel::PorosityArrayRefID); + soap_embedded(soap, &this->prodml23__DistributedParametersSubModel::IsDepthGridded, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__DistributedParametersSubModel::DepthArrayRefID); + soap_embedded(soap, &this->prodml23__DistributedParametersSubModel::IsKvToKrGridded, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__DistributedParametersSubModel::KvToKrArrayRefID); + soap_embedded(soap, &this->prodml23__DistributedParametersSubModel::IsKxToKyGridded, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToprodml23__ResqmlModelRef(soap, &this->prodml23__DistributedParametersSubModel::KxToKyArrayRefID); #endif } -int prodml22__DistributedParametersSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DistributedParametersSubModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DistributedParametersSubModel(soap, tag, id, this, type); + return soap_out_prodml23__DistributedParametersSubModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistributedParametersSubModel(struct soap *soap, const char *tag, int id, const prodml22__DistributedParametersSubModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistributedParametersSubModel(struct soap *soap, const char *tag, int id, const prodml23__DistributedParametersSubModel *a, const char *type) { if (!type) - type = "prodml22:DistributedParametersSubModel"; + type = "prodml23:DistributedParametersSubModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel), type)) return soap->error; - if (soap_out_bool(soap, "prodml22:IsPermeabilityGridded", -1, &a->prodml22__DistributedParametersSubModel::IsPermeabilityGridded, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsPermeabilityGridded", -1, &a->prodml23__DistributedParametersSubModel::IsPermeabilityGridded, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:PermeabilityArrayRefID", -1, &a->prodml22__DistributedParametersSubModel::PermeabilityArrayRefID, "prodml22:ResqmlModelRef")) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:PermeabilityArrayRefID", -1, &a->prodml23__DistributedParametersSubModel::PermeabilityArrayRefID, "prodml23:ResqmlModelRef")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsThicknessGridded", -1, &a->prodml22__DistributedParametersSubModel::IsThicknessGridded, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsThicknessGridded", -1, &a->prodml23__DistributedParametersSubModel::IsThicknessGridded, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:ThicknessArrayRefID", -1, &a->prodml22__DistributedParametersSubModel::ThicknessArrayRefID, "prodml22:ResqmlModelRef")) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:ThicknessArrayRefID", -1, &a->prodml23__DistributedParametersSubModel::ThicknessArrayRefID, "prodml23:ResqmlModelRef")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsPorosityGridded", -1, &a->prodml22__DistributedParametersSubModel::IsPorosityGridded, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsPorosityGridded", -1, &a->prodml23__DistributedParametersSubModel::IsPorosityGridded, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:PorosityArrayRefID", -1, &a->prodml22__DistributedParametersSubModel::PorosityArrayRefID, "prodml22:ResqmlModelRef")) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:PorosityArrayRefID", -1, &a->prodml23__DistributedParametersSubModel::PorosityArrayRefID, "prodml23:ResqmlModelRef")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsDepthGridded", -1, &a->prodml22__DistributedParametersSubModel::IsDepthGridded, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsDepthGridded", -1, &a->prodml23__DistributedParametersSubModel::IsDepthGridded, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:DepthArrayRefID", -1, &a->prodml22__DistributedParametersSubModel::DepthArrayRefID, "prodml22:ResqmlModelRef")) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:DepthArrayRefID", -1, &a->prodml23__DistributedParametersSubModel::DepthArrayRefID, "prodml23:ResqmlModelRef")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsKvToKrGridded", -1, &a->prodml22__DistributedParametersSubModel::IsKvToKrGridded, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsKvToKrGridded", -1, &a->prodml23__DistributedParametersSubModel::IsKvToKrGridded, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:KvToKrArrayRefID", -1, &a->prodml22__DistributedParametersSubModel::KvToKrArrayRefID, "prodml22:ResqmlModelRef")) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:KvToKrArrayRefID", -1, &a->prodml23__DistributedParametersSubModel::KvToKrArrayRefID, "prodml23:ResqmlModelRef")) return soap->error; - if (soap_out_bool(soap, "prodml22:IsKxToKyGridded", -1, &a->prodml22__DistributedParametersSubModel::IsKxToKyGridded, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:IsKxToKyGridded", -1, &a->prodml23__DistributedParametersSubModel::IsKxToKyGridded, "xsd:boolean")) return soap->error; - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, "prodml22:KxToKyArrayRefID", -1, &a->prodml22__DistributedParametersSubModel::KxToKyArrayRefID, "prodml22:ResqmlModelRef")) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, "prodml23:KxToKyArrayRefID", -1, &a->prodml23__DistributedParametersSubModel::KxToKyArrayRefID, "prodml23:ResqmlModelRef")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DistributedParametersSubModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistributedParametersSubModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DistributedParametersSubModel(soap, tag, this, type); + return soap_in_prodml23__DistributedParametersSubModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DistributedParametersSubModel * SOAP_FMAC4 soap_in_prodml22__DistributedParametersSubModel(struct soap *soap, const char *tag, prodml22__DistributedParametersSubModel *a, const char *type) +SOAP_FMAC3 prodml23__DistributedParametersSubModel * SOAP_FMAC4 soap_in_prodml23__DistributedParametersSubModel(struct soap *soap, const char *tag, prodml23__DistributedParametersSubModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DistributedParametersSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel, sizeof(prodml22__DistributedParametersSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DistributedParametersSubModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel, sizeof(prodml23__DistributedParametersSubModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DistributedParametersSubModel *)a->soap_in(soap, tag, type); + return (prodml23__DistributedParametersSubModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -209095,73 +209060,73 @@ SOAP_FMAC3 prodml22__DistributedParametersSubModel * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_IsPermeabilityGridded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsPermeabilityGridded", &a->prodml22__DistributedParametersSubModel::IsPermeabilityGridded, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsPermeabilityGridded", &a->prodml23__DistributedParametersSubModel::IsPermeabilityGridded, "xsd:boolean")) { soap_flag_IsPermeabilityGridded1--; continue; } } if (soap_flag_PermeabilityArrayRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:PermeabilityArrayRefID", &a->prodml22__DistributedParametersSubModel::PermeabilityArrayRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:PermeabilityArrayRefID", &a->prodml23__DistributedParametersSubModel::PermeabilityArrayRefID, "prodml23:ResqmlModelRef")) { soap_flag_PermeabilityArrayRefID1--; continue; } } if (soap_flag_IsThicknessGridded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsThicknessGridded", &a->prodml22__DistributedParametersSubModel::IsThicknessGridded, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsThicknessGridded", &a->prodml23__DistributedParametersSubModel::IsThicknessGridded, "xsd:boolean")) { soap_flag_IsThicknessGridded1--; continue; } } if (soap_flag_ThicknessArrayRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:ThicknessArrayRefID", &a->prodml22__DistributedParametersSubModel::ThicknessArrayRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:ThicknessArrayRefID", &a->prodml23__DistributedParametersSubModel::ThicknessArrayRefID, "prodml23:ResqmlModelRef")) { soap_flag_ThicknessArrayRefID1--; continue; } } if (soap_flag_IsPorosityGridded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsPorosityGridded", &a->prodml22__DistributedParametersSubModel::IsPorosityGridded, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsPorosityGridded", &a->prodml23__DistributedParametersSubModel::IsPorosityGridded, "xsd:boolean")) { soap_flag_IsPorosityGridded1--; continue; } } if (soap_flag_PorosityArrayRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:PorosityArrayRefID", &a->prodml22__DistributedParametersSubModel::PorosityArrayRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:PorosityArrayRefID", &a->prodml23__DistributedParametersSubModel::PorosityArrayRefID, "prodml23:ResqmlModelRef")) { soap_flag_PorosityArrayRefID1--; continue; } } if (soap_flag_IsDepthGridded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsDepthGridded", &a->prodml22__DistributedParametersSubModel::IsDepthGridded, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsDepthGridded", &a->prodml23__DistributedParametersSubModel::IsDepthGridded, "xsd:boolean")) { soap_flag_IsDepthGridded1--; continue; } } if (soap_flag_DepthArrayRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:DepthArrayRefID", &a->prodml22__DistributedParametersSubModel::DepthArrayRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:DepthArrayRefID", &a->prodml23__DistributedParametersSubModel::DepthArrayRefID, "prodml23:ResqmlModelRef")) { soap_flag_DepthArrayRefID1--; continue; } } if (soap_flag_IsKvToKrGridded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsKvToKrGridded", &a->prodml22__DistributedParametersSubModel::IsKvToKrGridded, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsKvToKrGridded", &a->prodml23__DistributedParametersSubModel::IsKvToKrGridded, "xsd:boolean")) { soap_flag_IsKvToKrGridded1--; continue; } } if (soap_flag_KvToKrArrayRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:KvToKrArrayRefID", &a->prodml22__DistributedParametersSubModel::KvToKrArrayRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:KvToKrArrayRefID", &a->prodml23__DistributedParametersSubModel::KvToKrArrayRefID, "prodml23:ResqmlModelRef")) { soap_flag_KvToKrArrayRefID1--; continue; } } if (soap_flag_IsKxToKyGridded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:IsKxToKyGridded", &a->prodml22__DistributedParametersSubModel::IsKxToKyGridded, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:IsKxToKyGridded", &a->prodml23__DistributedParametersSubModel::IsKxToKyGridded, "xsd:boolean")) { soap_flag_IsKxToKyGridded1--; continue; } } if (soap_flag_KxToKyArrayRefID1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ResqmlModelRef(soap, "prodml22:KxToKyArrayRefID", &a->prodml22__DistributedParametersSubModel::KxToKyArrayRefID, "prodml22:ResqmlModelRef")) + { if (soap_in_PointerToprodml23__ResqmlModelRef(soap, "prodml23:KxToKyArrayRefID", &a->prodml23__DistributedParametersSubModel::KxToKyArrayRefID, "prodml23:ResqmlModelRef")) { soap_flag_KxToKyArrayRefID1--; continue; } @@ -209185,35 +209150,35 @@ SOAP_FMAC3 prodml22__DistributedParametersSubModel * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__DistributedParametersSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel, sizeof(prodml22__DistributedParametersSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DistributedParametersSubModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel, sizeof(prodml23__DistributedParametersSubModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate_prodml22__DistributedParametersSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate_prodml23__DistributedParametersSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DistributedParametersSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DistributedParametersSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DistributedParametersSubModel *p; - size_t k = sizeof(prodml22__DistributedParametersSubModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel, n, gsoap_eml2_3_fdelete); + prodml23__DistributedParametersSubModel *p; + size_t k = sizeof(prodml23__DistributedParametersSubModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DistributedParametersSubModel); + { p = SOAP_NEW(soap, prodml23__DistributedParametersSubModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DistributedParametersSubModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DistributedParametersSubModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DistributedParametersSubModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DistributedParametersSubModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -209223,111 +209188,111 @@ SOAP_FMAC1 prodml22__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__DistributedParametersSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DistributedParametersSubModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DistributedParametersSubModel(soap, tag ? tag : "prodml22:DistributedParametersSubModel", -2, this, type)) + if (soap_out_prodml23__DistributedParametersSubModel(soap, tag ? tag : "prodml23:DistributedParametersSubModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DistributedParametersSubModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DistributedParametersSubModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DistributedParametersSubModel(soap, this, tag, type); + return soap_get_prodml23__DistributedParametersSubModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DistributedParametersSubModel * SOAP_FMAC4 soap_get_prodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistributedParametersSubModel * SOAP_FMAC4 soap_get_prodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DistributedParametersSubModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__DistributedParametersSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeconvolvedPressureData::soap_default(struct soap *soap) +void prodml23__DeconvolvedPressureData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaPressureData::soap_default(soap); - this->prodml22__DeconvolvedPressureData::Deconvolution = NULL; + this->prodml23__AbstractPtaPressureData::soap_default(soap); + this->prodml23__DeconvolvedPressureData::Deconvolution = NULL; } -void prodml22__DeconvolvedPressureData::soap_serialize(struct soap *soap) const +void prodml23__DeconvolvedPressureData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__DeconvolvedPressureData::Deconvolution); - this->prodml22__AbstractPtaPressureData::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__DeconvolvedPressureData::Deconvolution); + this->prodml23__AbstractPtaPressureData::soap_serialize(soap); #endif } -int prodml22__DeconvolvedPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeconvolvedPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeconvolvedPressureData(soap, tag, id, this, type); + return soap_out_prodml23__DeconvolvedPressureData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolvedPressureData(struct soap *soap, const char *tag, int id, const prodml22__DeconvolvedPressureData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolvedPressureData(struct soap *soap, const char *tag, int id, const prodml23__DeconvolvedPressureData *a, const char *type) { if (!type) - type = "prodml22:DeconvolvedPressureData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:DeconvolvedPressureData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__DeconvolvedPressureData), type ? type : "prodml22:DeconvolvedPressureData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData), type ? type : "prodml23:DeconvolvedPressureData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__AbstractPtaPressureData::PressureChannel) - { if (soap_element_empty(soap, "prodml22:PressureChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaPressureData::PressureChannel) + { if (soap_element_empty(soap, "prodml23:PressureChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", -1, &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", -1, &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", -1, &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", -1, &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) return soap->error; - if (!a->prodml22__DeconvolvedPressureData::Deconvolution) - { if (soap_element_empty(soap, "prodml22:Deconvolution", 0, NULL)) + if (!a->prodml23__DeconvolvedPressureData::Deconvolution) + { if (soap_element_empty(soap, "prodml23:Deconvolution", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Deconvolution", -1, &a->prodml22__DeconvolvedPressureData::Deconvolution, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Deconvolution", -1, &a->prodml23__DeconvolvedPressureData::Deconvolution, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeconvolvedPressureData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolvedPressureData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeconvolvedPressureData(soap, tag, this, type); + return soap_in_prodml23__DeconvolvedPressureData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml22__DeconvolvedPressureData(struct soap *soap, const char *tag, prodml22__DeconvolvedPressureData *a, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml23__DeconvolvedPressureData(struct soap *soap, const char *tag, prodml23__DeconvolvedPressureData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeconvolvedPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData, sizeof(prodml22__DeconvolvedPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeconvolvedPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData, sizeof(prodml23__DeconvolvedPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeconvolvedPressureData *)a->soap_in(soap, tag, type); + return (prodml23__DeconvolvedPressureData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -209335,9 +209300,9 @@ SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml22__Deco const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -209357,55 +209322,55 @@ SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml22__Deco for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_PressureChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) { soap_flag_PressureChannel2--; continue; } } if (soap_flag_PressureDerivativeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) { soap_flag_PressureDerivativeChannel2--; continue; } } if (soap_flag_PressureReferenceDepth2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) { soap_flag_PressureReferenceDepth2--; continue; } } if (soap_flag_Datum2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) { soap_flag_Datum2--; continue; } } if (soap_flag_Deconvolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Deconvolution", &a->prodml22__DeconvolvedPressureData::Deconvolution, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Deconvolution", &a->prodml23__DeconvolvedPressureData::Deconvolution, "eml23:DataObjectReference")) { soap_flag_Deconvolution1--; continue; } @@ -209419,7 +209384,7 @@ SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml22__Deco } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaPressureData::PressureChannel || !a->prodml22__DeconvolvedPressureData::Deconvolution)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaPressureData::PressureChannel || !a->prodml23__DeconvolvedPressureData::Deconvolution)) { soap->error = SOAP_OCCURS; return NULL; } @@ -209429,35 +209394,35 @@ SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml22__Deco return NULL; } else - { a = (prodml22__DeconvolvedPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData, sizeof(prodml22__DeconvolvedPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolvedPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData, sizeof(prodml23__DeconvolvedPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolvedPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolvedPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeconvolvedPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeconvolvedPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeconvolvedPressureData *p; - size_t k = sizeof(prodml22__DeconvolvedPressureData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData, n, gsoap_eml2_3_fdelete); + prodml23__DeconvolvedPressureData *p; + size_t k = sizeof(prodml23__DeconvolvedPressureData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeconvolvedPressureData); + { p = SOAP_NEW(soap, prodml23__DeconvolvedPressureData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeconvolvedPressureData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeconvolvedPressureData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeconvolvedPressureData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeconvolvedPressureData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -209467,107 +209432,107 @@ SOAP_FMAC1 prodml22__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__DeconvolvedPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeconvolvedPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeconvolvedPressureData(soap, tag ? tag : "prodml22:DeconvolvedPressureData", -2, this, type)) + if (soap_out_prodml23__DeconvolvedPressureData(soap, tag ? tag : "prodml23:DeconvolvedPressureData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeconvolvedPressureData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolvedPressureData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeconvolvedPressureData(soap, this, tag, type); + return soap_get_prodml23__DeconvolvedPressureData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_get_prodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedPressureData * SOAP_FMAC4 soap_get_prodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeconvolvedPressureData(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeconvolvedPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeconvolvedFlowData::soap_default(struct soap *soap) +void prodml23__DeconvolvedFlowData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPtaFlowData::soap_default(soap); - this->prodml22__DeconvolvedFlowData::Deconvolution = NULL; + this->prodml23__AbstractPtaFlowData::soap_default(soap); + this->prodml23__DeconvolvedFlowData::Deconvolution = NULL; } -void prodml22__DeconvolvedFlowData::soap_serialize(struct soap *soap) const +void prodml23__DeconvolvedFlowData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__DeconvolvedFlowData::Deconvolution); - this->prodml22__AbstractPtaFlowData::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__DeconvolvedFlowData::Deconvolution); + this->prodml23__AbstractPtaFlowData::soap_serialize(soap); #endif } -int prodml22__DeconvolvedFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeconvolvedFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeconvolvedFlowData(soap, tag, id, this, type); + return soap_out_prodml23__DeconvolvedFlowData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolvedFlowData(struct soap *soap, const char *tag, int id, const prodml22__DeconvolvedFlowData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolvedFlowData(struct soap *soap, const char *tag, int id, const prodml23__DeconvolvedFlowData *a, const char *type) { if (!type) - type = "prodml22:DeconvolvedFlowData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:DeconvolvedFlowData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__DeconvolvedFlowData), type ? type : "prodml22:DeconvolvedFlowData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData), type ? type : "prodml23:DeconvolvedFlowData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", -1, &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + if (soap_out_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", -1, &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) return soap->error; - if (!a->prodml22__AbstractPtaFlowData::FlowChannel) - { if (soap_element_empty(soap, "prodml22:FlowChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaFlowData::FlowChannel) + { if (soap_element_empty(soap, "prodml23:FlowChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", -1, &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", -1, &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__DeconvolvedFlowData::Deconvolution) - { if (soap_element_empty(soap, "prodml22:Deconvolution", 0, NULL)) + if (!a->prodml23__DeconvolvedFlowData::Deconvolution) + { if (soap_element_empty(soap, "prodml23:Deconvolution", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Deconvolution", -1, &a->prodml22__DeconvolvedFlowData::Deconvolution, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Deconvolution", -1, &a->prodml23__DeconvolvedFlowData::Deconvolution, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeconvolvedFlowData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolvedFlowData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeconvolvedFlowData(soap, tag, this, type); + return soap_in_prodml23__DeconvolvedFlowData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml22__DeconvolvedFlowData(struct soap *soap, const char *tag, prodml22__DeconvolvedFlowData *a, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml23__DeconvolvedFlowData(struct soap *soap, const char *tag, prodml23__DeconvolvedFlowData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeconvolvedFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData, sizeof(prodml22__DeconvolvedFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeconvolvedFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData, sizeof(prodml23__DeconvolvedFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeconvolvedFlowData *)a->soap_in(soap, tag, type); + return (prodml23__DeconvolvedFlowData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -209575,9 +209540,9 @@ SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml22__Deconvol const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -209595,43 +209560,43 @@ SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml22__Deconvol for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet3--; continue; } } if (soap_flag_TimeChannel3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel3--; continue; } } if (soap_flag_TimeSeriesPointRepresentation3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation3--; continue; } } if (soap_flag_Remark3 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark3--; continue; } } if (soap_flag_FluidPhaseMeasuredKind2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + { if (soap_in_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) { soap_flag_FluidPhaseMeasuredKind2--; continue; } } if (soap_flag_FlowChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) { soap_flag_FlowChannel2--; continue; } } if (soap_flag_Deconvolution1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Deconvolution", &a->prodml22__DeconvolvedFlowData::Deconvolution, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Deconvolution", &a->prodml23__DeconvolvedFlowData::Deconvolution, "eml23:DataObjectReference")) { soap_flag_Deconvolution1--; continue; } @@ -209645,7 +209610,7 @@ SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml22__Deconvol } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaFlowData::FlowChannel || !a->prodml22__DeconvolvedFlowData::Deconvolution)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaFlowData::FlowChannel || !a->prodml23__DeconvolvedFlowData::Deconvolution)) { soap->error = SOAP_OCCURS; return NULL; } @@ -209655,35 +209620,35 @@ SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml22__Deconvol return NULL; } else - { a = (prodml22__DeconvolvedFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData, sizeof(prodml22__DeconvolvedFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolvedFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData, sizeof(prodml23__DeconvolvedFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolvedFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolvedFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeconvolvedFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeconvolvedFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeconvolvedFlowData *p; - size_t k = sizeof(prodml22__DeconvolvedFlowData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData, n, gsoap_eml2_3_fdelete); + prodml23__DeconvolvedFlowData *p; + size_t k = sizeof(prodml23__DeconvolvedFlowData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeconvolvedFlowData); + { p = SOAP_NEW(soap, prodml23__DeconvolvedFlowData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeconvolvedFlowData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeconvolvedFlowData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeconvolvedFlowData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeconvolvedFlowData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -209693,80 +209658,80 @@ SOAP_FMAC1 prodml22__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__DeconvolvedFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeconvolvedFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeconvolvedFlowData(soap, tag ? tag : "prodml22:DeconvolvedFlowData", -2, this, type)) + if (soap_out_prodml23__DeconvolvedFlowData(soap, tag ? tag : "prodml23:DeconvolvedFlowData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeconvolvedFlowData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolvedFlowData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeconvolvedFlowData(soap, this, tag, type); + return soap_get_prodml23__DeconvolvedFlowData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_get_prodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedFlowData * SOAP_FMAC4 soap_get_prodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeconvolvedFlowData(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeconvolvedFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeconvolutionSingleOutput::soap_default(struct soap *soap) +void prodml23__DeconvolutionSingleOutput::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractDeconvolutionOutput::soap_default(soap); - this->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput = NULL; + this->prodml23__AbstractDeconvolutionOutput::soap_default(soap); + this->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput = NULL; } -void prodml22__DeconvolutionSingleOutput::soap_serialize(struct soap *soap) const +void prodml23__DeconvolutionSingleOutput::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DeconvolutionOutput(soap, &this->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput); - this->prodml22__AbstractDeconvolutionOutput::soap_serialize(soap); + soap_serialize_PointerToprodml23__DeconvolutionOutput(soap, &this->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput); + this->prodml23__AbstractDeconvolutionOutput::soap_serialize(soap); #endif } -int prodml22__DeconvolutionSingleOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeconvolutionSingleOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeconvolutionSingleOutput(soap, tag, id, this, type); + return soap_out_prodml23__DeconvolutionSingleOutput(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolutionSingleOutput(struct soap *soap, const char *tag, int id, const prodml22__DeconvolutionSingleOutput *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolutionSingleOutput(struct soap *soap, const char *tag, int id, const prodml23__DeconvolutionSingleOutput *a, const char *type) { if (!type) - type = "prodml22:DeconvolutionSingleOutput"; + type = "prodml23:DeconvolutionSingleOutput"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput), type ? type : "prodml22:DeconvolutionSingleOutput")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput), type ? type : "prodml23:DeconvolutionSingleOutput")) return soap->error; - if (!a->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput) - { if (soap_element_empty(soap, "prodml22:DeconvolutionSingleOutput", 0, NULL)) + if (!a->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput) + { if (soap_element_empty(soap, "prodml23:DeconvolutionSingleOutput", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DeconvolutionOutput(soap, "prodml22:DeconvolutionSingleOutput", -1, &a->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput, "prodml22:DeconvolutionOutput")) + else if (soap_out_PointerToprodml23__DeconvolutionOutput(soap, "prodml23:DeconvolutionSingleOutput", -1, &a->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput, "prodml23:DeconvolutionOutput")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeconvolutionSingleOutput::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolutionSingleOutput::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeconvolutionSingleOutput(soap, tag, this, type); + return soap_in_prodml23__DeconvolutionSingleOutput(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml22__DeconvolutionSingleOutput(struct soap *soap, const char *tag, prodml22__DeconvolutionSingleOutput *a, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml23__DeconvolutionSingleOutput(struct soap *soap, const char *tag, prodml23__DeconvolutionSingleOutput *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeconvolutionSingleOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput, sizeof(prodml22__DeconvolutionSingleOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeconvolutionSingleOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput, sizeof(prodml23__DeconvolutionSingleOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeconvolutionSingleOutput *)a->soap_in(soap, tag, type); + return (prodml23__DeconvolutionSingleOutput *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -209776,7 +209741,7 @@ SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml22__De for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DeconvolutionSingleOutput1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeconvolutionOutput(soap, "prodml22:DeconvolutionSingleOutput", &a->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput, "prodml22:DeconvolutionOutput")) + { if (soap_in_PointerToprodml23__DeconvolutionOutput(soap, "prodml23:DeconvolutionSingleOutput", &a->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput, "prodml23:DeconvolutionOutput")) { soap_flag_DeconvolutionSingleOutput1--; continue; } @@ -209790,7 +209755,7 @@ SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml22__De } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput)) + if ((!a->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput)) { soap->error = SOAP_OCCURS; return NULL; } @@ -209800,35 +209765,35 @@ SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml22__De return NULL; } else - { a = (prodml22__DeconvolutionSingleOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput, sizeof(prodml22__DeconvolutionSingleOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolutionSingleOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput, sizeof(prodml23__DeconvolutionSingleOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionSingleOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionSingleOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeconvolutionSingleOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeconvolutionSingleOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeconvolutionSingleOutput *p; - size_t k = sizeof(prodml22__DeconvolutionSingleOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput, n, gsoap_eml2_3_fdelete); + prodml23__DeconvolutionSingleOutput *p; + size_t k = sizeof(prodml23__DeconvolutionSingleOutput); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeconvolutionSingleOutput); + { p = SOAP_NEW(soap, prodml23__DeconvolutionSingleOutput); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeconvolutionSingleOutput, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeconvolutionSingleOutput, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeconvolutionSingleOutput location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeconvolutionSingleOutput location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -209838,82 +209803,82 @@ SOAP_FMAC1 prodml22__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__DeconvolutionSingleOutput::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeconvolutionSingleOutput::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeconvolutionSingleOutput(soap, tag ? tag : "prodml22:DeconvolutionSingleOutput", -2, this, type)) + if (soap_out_prodml23__DeconvolutionSingleOutput(soap, tag ? tag : "prodml23:DeconvolutionSingleOutput", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeconvolutionSingleOutput::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolutionSingleOutput::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeconvolutionSingleOutput(soap, this, tag, type); + return soap_get_prodml23__DeconvolutionSingleOutput(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_get_prodml22__DeconvolutionSingleOutput(struct soap *soap, prodml22__DeconvolutionSingleOutput *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionSingleOutput * SOAP_FMAC4 soap_get_prodml23__DeconvolutionSingleOutput(struct soap *soap, prodml23__DeconvolutionSingleOutput *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeconvolutionSingleOutput(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeconvolutionSingleOutput(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeconvolutionOutput::soap_default(struct soap *soap) +void prodml23__DeconvolutionOutput::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__DeconvolutionOutput::DeconvolvedPressure = NULL; - this->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue = NULL; + this->prodml23__DeconvolutionOutput::DeconvolvedPressure = NULL; + this->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue = NULL; } -void prodml22__DeconvolutionOutput::soap_serialize(struct soap *soap) const +void prodml23__DeconvolutionOutput::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__DeconvolvedPressureData(soap, &this->prodml22__DeconvolutionOutput::DeconvolvedPressure); - soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue); + soap_serialize_PointerToprodml23__DeconvolvedPressureData(soap, &this->prodml23__DeconvolutionOutput::DeconvolvedPressure); + soap_serialize_PointerToeml23__VolumePerTimeMeasure(soap, &this->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue); #endif } -int prodml22__DeconvolutionOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeconvolutionOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeconvolutionOutput(soap, tag, id, this, type); + return soap_out_prodml23__DeconvolutionOutput(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolutionOutput(struct soap *soap, const char *tag, int id, const prodml22__DeconvolutionOutput *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolutionOutput(struct soap *soap, const char *tag, int id, const prodml23__DeconvolutionOutput *a, const char *type) { if (!type) - type = "prodml22:DeconvolutionOutput"; + type = "prodml23:DeconvolutionOutput"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput), type)) return soap->error; - if (soap_out_PointerToprodml22__DeconvolvedPressureData(soap, "prodml22:DeconvolvedPressure", -1, &a->prodml22__DeconvolutionOutput::DeconvolvedPressure, "prodml22:DeconvolvedPressureData")) + if (soap_out_PointerToprodml23__DeconvolvedPressureData(soap, "prodml23:DeconvolvedPressure", -1, &a->prodml23__DeconvolutionOutput::DeconvolvedPressure, "prodml23:DeconvolvedPressureData")) return soap->error; - if (!a->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue) - { if (soap_element_empty(soap, "prodml22:DeconvolutionReferenceFlowrateValue", 0, NULL)) + if (!a->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue) + { if (soap_element_empty(soap, "prodml23:DeconvolutionReferenceFlowrateValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:DeconvolutionReferenceFlowrateValue", -1, &a->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue, "eml23:VolumePerTimeMeasure")) + else if (soap_out_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:DeconvolutionReferenceFlowrateValue", -1, &a->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue, "eml23:VolumePerTimeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeconvolutionOutput::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolutionOutput::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeconvolutionOutput(soap, tag, this, type); + return soap_in_prodml23__DeconvolutionOutput(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__DeconvolutionOutput(struct soap *soap, const char *tag, prodml22__DeconvolutionOutput *a, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml23__DeconvolutionOutput(struct soap *soap, const char *tag, prodml23__DeconvolutionOutput *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeconvolutionOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput, sizeof(prodml22__DeconvolutionOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeconvolutionOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput, sizeof(prodml23__DeconvolutionOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeconvolutionOutput *)a->soap_in(soap, tag, type); + return (prodml23__DeconvolutionOutput *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -209924,13 +209889,13 @@ SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__Deconvol for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DeconvolvedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeconvolvedPressureData(soap, "prodml22:DeconvolvedPressure", &a->prodml22__DeconvolutionOutput::DeconvolvedPressure, "prodml22:DeconvolvedPressureData")) + { if (soap_in_PointerToprodml23__DeconvolvedPressureData(soap, "prodml23:DeconvolvedPressure", &a->prodml23__DeconvolutionOutput::DeconvolvedPressure, "prodml23:DeconvolvedPressureData")) { soap_flag_DeconvolvedPressure1--; continue; } } if (soap_flag_DeconvolutionReferenceFlowrateValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml22:DeconvolutionReferenceFlowrateValue", &a->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue, "eml23:VolumePerTimeMeasure")) + { if (soap_in_PointerToeml23__VolumePerTimeMeasure(soap, "prodml23:DeconvolutionReferenceFlowrateValue", &a->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue, "eml23:VolumePerTimeMeasure")) { soap_flag_DeconvolutionReferenceFlowrateValue1--; continue; } @@ -209944,7 +209909,7 @@ SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__Deconvol } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue)) + if ((!a->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -209954,35 +209919,35 @@ SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__Deconvol return NULL; } else - { a = (prodml22__DeconvolutionOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput, sizeof(prodml22__DeconvolutionOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolutionOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput, sizeof(prodml23__DeconvolutionOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeconvolutionOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeconvolutionOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeconvolutionOutput *p; - size_t k = sizeof(prodml22__DeconvolutionOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput, n, gsoap_eml2_3_fdelete); + prodml23__DeconvolutionOutput *p; + size_t k = sizeof(prodml23__DeconvolutionOutput); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeconvolutionOutput); + { p = SOAP_NEW(soap, prodml23__DeconvolutionOutput); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeconvolutionOutput, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeconvolutionOutput, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeconvolutionOutput location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeconvolutionOutput location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -209992,85 +209957,85 @@ SOAP_FMAC1 prodml22__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__DeconvolutionOutput::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeconvolutionOutput::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeconvolutionOutput(soap, tag ? tag : "prodml22:DeconvolutionOutput", -2, this, type)) + if (soap_out_prodml23__DeconvolutionOutput(soap, tag ? tag : "prodml23:DeconvolutionOutput", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeconvolutionOutput::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolutionOutput::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeconvolutionOutput(soap, this, tag, type); + return soap_get_prodml23__DeconvolutionOutput(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_get_prodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionOutput * SOAP_FMAC4 soap_get_prodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeconvolutionOutput(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeconvolutionOutput(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeconvolutionMultipleOutput::soap_default(struct soap *soap) +void prodml23__DeconvolutionMultipleOutput::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractDeconvolutionOutput::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId); - this->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput = NULL; + this->prodml23__AbstractDeconvolutionOutput::soap_default(soap); + soap_default_eml23__String64(soap, &this->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId); + this->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput = NULL; } -void prodml22__DeconvolutionMultipleOutput::soap_serialize(struct soap *soap) const +void prodml23__DeconvolutionMultipleOutput::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId); - soap_serialize_PointerToprodml22__DeconvolutionOutput(soap, &this->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput); - this->prodml22__AbstractDeconvolutionOutput::soap_serialize(soap); + soap_embedded(soap, &this->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId); + soap_serialize_PointerToprodml23__DeconvolutionOutput(soap, &this->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput); + this->prodml23__AbstractDeconvolutionOutput::soap_serialize(soap); #endif } -int prodml22__DeconvolutionMultipleOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeconvolutionMultipleOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeconvolutionMultipleOutput(soap, tag, id, this, type); + return soap_out_prodml23__DeconvolutionMultipleOutput(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolutionMultipleOutput(struct soap *soap, const char *tag, int id, const prodml22__DeconvolutionMultipleOutput *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolutionMultipleOutput(struct soap *soap, const char *tag, int id, const prodml23__DeconvolutionMultipleOutput *a, const char *type) { if (!type) - type = "prodml22:DeconvolutionMultipleOutput"; + type = "prodml23:DeconvolutionMultipleOutput"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput), type ? type : "prodml22:DeconvolutionMultipleOutput")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput), type ? type : "prodml23:DeconvolutionMultipleOutput")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:TestPeriodOutputRefId", -1, &a->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:TestPeriodOutputRefId", -1, &a->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId, "eml23:String64")) return soap->error; - if (!a->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput) - { if (soap_element_empty(soap, "prodml22:DeconvolutionMultipleOutput", 0, NULL)) + if (!a->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput) + { if (soap_element_empty(soap, "prodml23:DeconvolutionMultipleOutput", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__DeconvolutionOutput(soap, "prodml22:DeconvolutionMultipleOutput", -1, &a->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput, "prodml22:DeconvolutionOutput")) + else if (soap_out_PointerToprodml23__DeconvolutionOutput(soap, "prodml23:DeconvolutionMultipleOutput", -1, &a->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput, "prodml23:DeconvolutionOutput")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeconvolutionMultipleOutput::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolutionMultipleOutput::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeconvolutionMultipleOutput(soap, tag, this, type); + return soap_in_prodml23__DeconvolutionMultipleOutput(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml22__DeconvolutionMultipleOutput(struct soap *soap, const char *tag, prodml22__DeconvolutionMultipleOutput *a, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml23__DeconvolutionMultipleOutput(struct soap *soap, const char *tag, prodml23__DeconvolutionMultipleOutput *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeconvolutionMultipleOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput, sizeof(prodml22__DeconvolutionMultipleOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeconvolutionMultipleOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput, sizeof(prodml23__DeconvolutionMultipleOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeconvolutionMultipleOutput *)a->soap_in(soap, tag, type); + return (prodml23__DeconvolutionMultipleOutput *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -210081,13 +210046,13 @@ SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestPeriodOutputRefId1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:TestPeriodOutputRefId", &a->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:TestPeriodOutputRefId", &a->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId, "eml23:String64")) { soap_flag_TestPeriodOutputRefId1--; continue; } } if (soap_flag_DeconvolutionMultipleOutput1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DeconvolutionOutput(soap, "prodml22:DeconvolutionMultipleOutput", &a->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput, "prodml22:DeconvolutionOutput")) + { if (soap_in_PointerToprodml23__DeconvolutionOutput(soap, "prodml23:DeconvolutionMultipleOutput", &a->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput, "prodml23:DeconvolutionOutput")) { soap_flag_DeconvolutionMultipleOutput1--; continue; } @@ -210101,7 +210066,7 @@ SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml22__ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestPeriodOutputRefId1 > 0 || !a->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput)) + if ((soap_flag_TestPeriodOutputRefId1 > 0 || !a->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput)) { soap->error = SOAP_OCCURS; return NULL; } @@ -210111,35 +210076,35 @@ SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__DeconvolutionMultipleOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput, sizeof(prodml22__DeconvolutionMultipleOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolutionMultipleOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput, sizeof(prodml23__DeconvolutionMultipleOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionMultipleOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionMultipleOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeconvolutionMultipleOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeconvolutionMultipleOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeconvolutionMultipleOutput *p; - size_t k = sizeof(prodml22__DeconvolutionMultipleOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput, n, gsoap_eml2_3_fdelete); + prodml23__DeconvolutionMultipleOutput *p; + size_t k = sizeof(prodml23__DeconvolutionMultipleOutput); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeconvolutionMultipleOutput); + { p = SOAP_NEW(soap, prodml23__DeconvolutionMultipleOutput); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeconvolutionMultipleOutput, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeconvolutionMultipleOutput, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeconvolutionMultipleOutput location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeconvolutionMultipleOutput location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -210149,90 +210114,90 @@ SOAP_FMAC1 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__DeconvolutionMultipleOutput::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeconvolutionMultipleOutput::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeconvolutionMultipleOutput(soap, tag ? tag : "prodml22:DeconvolutionMultipleOutput", -2, this, type)) + if (soap_out_prodml23__DeconvolutionMultipleOutput(soap, tag ? tag : "prodml23:DeconvolutionMultipleOutput", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeconvolutionMultipleOutput::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeconvolutionMultipleOutput::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeconvolutionMultipleOutput(soap, this, tag, type); + return soap_get_prodml23__DeconvolutionMultipleOutput(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_get_prodml22__DeconvolutionMultipleOutput(struct soap *soap, prodml22__DeconvolutionMultipleOutput *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_get_prodml23__DeconvolutionMultipleOutput(struct soap *soap, prodml23__DeconvolutionMultipleOutput *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeconvolutionMultipleOutput(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeconvolutionMultipleOutput(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CompressibilityParameters::soap_default(struct soap *soap) +void prodml23__CompressibilityParameters::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__CompressibilityParameters::FormationCompressibility = NULL; - this->prodml22__CompressibilityParameters::OilPhaseSaturation = NULL; - this->prodml22__CompressibilityParameters::GasPhaseSaturation = NULL; - this->prodml22__CompressibilityParameters::WaterPhaseSaturation = NULL; - this->prodml22__CompressibilityParameters::TotalCompressibility = NULL; + this->prodml23__CompressibilityParameters::FormationCompressibility = NULL; + this->prodml23__CompressibilityParameters::OilPhaseSaturation = NULL; + this->prodml23__CompressibilityParameters::GasPhaseSaturation = NULL; + this->prodml23__CompressibilityParameters::WaterPhaseSaturation = NULL; + this->prodml23__CompressibilityParameters::TotalCompressibility = NULL; } -void prodml22__CompressibilityParameters::soap_serialize(struct soap *soap) const +void prodml23__CompressibilityParameters::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, &this->prodml22__CompressibilityParameters::FormationCompressibility); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CompressibilityParameters::OilPhaseSaturation); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CompressibilityParameters::GasPhaseSaturation); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CompressibilityParameters::WaterPhaseSaturation); - soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, &this->prodml22__CompressibilityParameters::TotalCompressibility); + soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, &this->prodml23__CompressibilityParameters::FormationCompressibility); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CompressibilityParameters::OilPhaseSaturation); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CompressibilityParameters::GasPhaseSaturation); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CompressibilityParameters::WaterPhaseSaturation); + soap_serialize_PointerToeml23__ReciprocalPressureMeasureExt(soap, &this->prodml23__CompressibilityParameters::TotalCompressibility); #endif } -int prodml22__CompressibilityParameters::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CompressibilityParameters::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CompressibilityParameters(soap, tag, id, this, type); + return soap_out_prodml23__CompressibilityParameters(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CompressibilityParameters(struct soap *soap, const char *tag, int id, const prodml22__CompressibilityParameters *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CompressibilityParameters(struct soap *soap, const char *tag, int id, const prodml23__CompressibilityParameters *a, const char *type) { if (!type) - type = "prodml22:CompressibilityParameters"; + type = "prodml23:CompressibilityParameters"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters), type)) return soap->error; - if (soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml22:FormationCompressibility", -1, &a->prodml22__CompressibilityParameters::FormationCompressibility, "eml23:ReciprocalPressureMeasureExt")) + if (soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml23:FormationCompressibility", -1, &a->prodml23__CompressibilityParameters::FormationCompressibility, "eml23:ReciprocalPressureMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilPhaseSaturation", -1, &a->prodml22__CompressibilityParameters::OilPhaseSaturation, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilPhaseSaturation", -1, &a->prodml23__CompressibilityParameters::OilPhaseSaturation, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasPhaseSaturation", -1, &a->prodml22__CompressibilityParameters::GasPhaseSaturation, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasPhaseSaturation", -1, &a->prodml23__CompressibilityParameters::GasPhaseSaturation, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:WaterPhaseSaturation", -1, &a->prodml22__CompressibilityParameters::WaterPhaseSaturation, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:WaterPhaseSaturation", -1, &a->prodml23__CompressibilityParameters::WaterPhaseSaturation, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml22:TotalCompressibility", -1, &a->prodml22__CompressibilityParameters::TotalCompressibility, "eml23:ReciprocalPressureMeasureExt")) + if (soap_out_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml23:TotalCompressibility", -1, &a->prodml23__CompressibilityParameters::TotalCompressibility, "eml23:ReciprocalPressureMeasureExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CompressibilityParameters::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CompressibilityParameters::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CompressibilityParameters(soap, tag, this, type); + return soap_in_prodml23__CompressibilityParameters(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CompressibilityParameters * SOAP_FMAC4 soap_in_prodml22__CompressibilityParameters(struct soap *soap, const char *tag, prodml22__CompressibilityParameters *a, const char *type) +SOAP_FMAC3 prodml23__CompressibilityParameters * SOAP_FMAC4 soap_in_prodml23__CompressibilityParameters(struct soap *soap, const char *tag, prodml23__CompressibilityParameters *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CompressibilityParameters*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters, sizeof(prodml22__CompressibilityParameters), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CompressibilityParameters*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters, sizeof(prodml23__CompressibilityParameters), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CompressibilityParameters *)a->soap_in(soap, tag, type); + return (prodml23__CompressibilityParameters *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -210246,31 +210211,31 @@ SOAP_FMAC3 prodml22__CompressibilityParameters * SOAP_FMAC4 soap_in_prodml22__Co for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_FormationCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml22:FormationCompressibility", &a->prodml22__CompressibilityParameters::FormationCompressibility, "eml23:ReciprocalPressureMeasureExt")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml23:FormationCompressibility", &a->prodml23__CompressibilityParameters::FormationCompressibility, "eml23:ReciprocalPressureMeasureExt")) { soap_flag_FormationCompressibility1--; continue; } } if (soap_flag_OilPhaseSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilPhaseSaturation", &a->prodml22__CompressibilityParameters::OilPhaseSaturation, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilPhaseSaturation", &a->prodml23__CompressibilityParameters::OilPhaseSaturation, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilPhaseSaturation1--; continue; } } if (soap_flag_GasPhaseSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasPhaseSaturation", &a->prodml22__CompressibilityParameters::GasPhaseSaturation, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasPhaseSaturation", &a->prodml23__CompressibilityParameters::GasPhaseSaturation, "eml23:VolumePerVolumeMeasure")) { soap_flag_GasPhaseSaturation1--; continue; } } if (soap_flag_WaterPhaseSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:WaterPhaseSaturation", &a->prodml22__CompressibilityParameters::WaterPhaseSaturation, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:WaterPhaseSaturation", &a->prodml23__CompressibilityParameters::WaterPhaseSaturation, "eml23:VolumePerVolumeMeasure")) { soap_flag_WaterPhaseSaturation1--; continue; } } if (soap_flag_TotalCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml22:TotalCompressibility", &a->prodml22__CompressibilityParameters::TotalCompressibility, "eml23:ReciprocalPressureMeasureExt")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasureExt(soap, "prodml23:TotalCompressibility", &a->prodml23__CompressibilityParameters::TotalCompressibility, "eml23:ReciprocalPressureMeasureExt")) { soap_flag_TotalCompressibility1--; continue; } @@ -210286,35 +210251,35 @@ SOAP_FMAC3 prodml22__CompressibilityParameters * SOAP_FMAC4 soap_in_prodml22__Co return NULL; } else - { a = (prodml22__CompressibilityParameters *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters, sizeof(prodml22__CompressibilityParameters), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CompressibilityParameters *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters, sizeof(prodml23__CompressibilityParameters), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_prodml22__CompressibilityParameters(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_prodml23__CompressibilityParameters(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CompressibilityParameters(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CompressibilityParameters(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CompressibilityParameters *p; - size_t k = sizeof(prodml22__CompressibilityParameters); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters, n, gsoap_eml2_3_fdelete); + prodml23__CompressibilityParameters *p; + size_t k = sizeof(prodml23__CompressibilityParameters); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CompressibilityParameters); + { p = SOAP_NEW(soap, prodml23__CompressibilityParameters); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CompressibilityParameters, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CompressibilityParameters, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CompressibilityParameters location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CompressibilityParameters location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -210324,80 +210289,80 @@ SOAP_FMAC1 prodml22__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__CompressibilityParameters::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CompressibilityParameters::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CompressibilityParameters(soap, tag ? tag : "prodml22:CompressibilityParameters", -2, this, type)) + if (soap_out_prodml23__CompressibilityParameters(soap, tag ? tag : "prodml23:CompressibilityParameters", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CompressibilityParameters::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CompressibilityParameters::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CompressibilityParameters(soap, this, tag, type); + return soap_get_prodml23__CompressibilityParameters(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CompressibilityParameters * SOAP_FMAC4 soap_get_prodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CompressibilityParameters * SOAP_FMAC4 soap_get_prodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CompressibilityParameters(soap, tag, p, type))) + if ((p = soap_in_prodml23__CompressibilityParameters(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ChannelFlowrateData::soap_default(struct soap *soap) +void prodml23__ChannelFlowrateData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractRateHistory::soap_default(soap); - this->prodml22__ChannelFlowrateData::InputFlowrate = NULL; + this->prodml23__AbstractRateHistory::soap_default(soap); + this->prodml23__ChannelFlowrateData::InputFlowrate = NULL; } -void prodml22__ChannelFlowrateData::soap_serialize(struct soap *soap) const +void prodml23__ChannelFlowrateData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__AbstractPtaFlowData(soap, &this->prodml22__ChannelFlowrateData::InputFlowrate); - this->prodml22__AbstractRateHistory::soap_serialize(soap); + soap_serialize_PointerToprodml23__AbstractPtaFlowData(soap, &this->prodml23__ChannelFlowrateData::InputFlowrate); + this->prodml23__AbstractRateHistory::soap_serialize(soap); #endif } -int prodml22__ChannelFlowrateData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ChannelFlowrateData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ChannelFlowrateData(soap, tag, id, this, type); + return soap_out_prodml23__ChannelFlowrateData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChannelFlowrateData(struct soap *soap, const char *tag, int id, const prodml22__ChannelFlowrateData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChannelFlowrateData(struct soap *soap, const char *tag, int id, const prodml23__ChannelFlowrateData *a, const char *type) { if (!type) - type = "prodml22:ChannelFlowrateData"; + type = "prodml23:ChannelFlowrateData"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData), type ? type : "prodml22:ChannelFlowrateData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData), type ? type : "prodml23:ChannelFlowrateData")) return soap->error; - if (!a->prodml22__ChannelFlowrateData::InputFlowrate) - { if (soap_element_empty(soap, "prodml22:InputFlowrate", 0, NULL)) + if (!a->prodml23__ChannelFlowrateData::InputFlowrate) + { if (soap_element_empty(soap, "prodml23:InputFlowrate", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__AbstractPtaFlowData(soap, "prodml22:InputFlowrate", -1, &a->prodml22__ChannelFlowrateData::InputFlowrate, "prodml22:AbstractPtaFlowData")) + else if (soap_out_PointerToprodml23__AbstractPtaFlowData(soap, "prodml23:InputFlowrate", -1, &a->prodml23__ChannelFlowrateData::InputFlowrate, "prodml23:AbstractPtaFlowData")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ChannelFlowrateData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChannelFlowrateData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ChannelFlowrateData(soap, tag, this, type); + return soap_in_prodml23__ChannelFlowrateData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml22__ChannelFlowrateData(struct soap *soap, const char *tag, prodml22__ChannelFlowrateData *a, const char *type) +SOAP_FMAC3 prodml23__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml23__ChannelFlowrateData(struct soap *soap, const char *tag, prodml23__ChannelFlowrateData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ChannelFlowrateData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData, sizeof(prodml22__ChannelFlowrateData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ChannelFlowrateData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData, sizeof(prodml23__ChannelFlowrateData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ChannelFlowrateData *)a->soap_in(soap, tag, type); + return (prodml23__ChannelFlowrateData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -210407,7 +210372,7 @@ SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml22__ChannelF for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_InputFlowrate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPtaFlowData(soap, "prodml22:InputFlowrate", &a->prodml22__ChannelFlowrateData::InputFlowrate, "prodml22:AbstractPtaFlowData")) + { if (soap_in_PointerToprodml23__AbstractPtaFlowData(soap, "prodml23:InputFlowrate", &a->prodml23__ChannelFlowrateData::InputFlowrate, "prodml23:AbstractPtaFlowData")) { soap_flag_InputFlowrate1--; continue; } @@ -210421,7 +210386,7 @@ SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml22__ChannelF } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ChannelFlowrateData::InputFlowrate)) + if ((!a->prodml23__ChannelFlowrateData::InputFlowrate)) { soap->error = SOAP_OCCURS; return NULL; } @@ -210431,35 +210396,35 @@ SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml22__ChannelF return NULL; } else - { a = (prodml22__ChannelFlowrateData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData, sizeof(prodml22__ChannelFlowrateData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ChannelFlowrateData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData, sizeof(prodml23__ChannelFlowrateData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__ChannelFlowrateData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__ChannelFlowrateData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ChannelFlowrateData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ChannelFlowrateData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ChannelFlowrateData *p; - size_t k = sizeof(prodml22__ChannelFlowrateData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData, n, gsoap_eml2_3_fdelete); + prodml23__ChannelFlowrateData *p; + size_t k = sizeof(prodml23__ChannelFlowrateData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ChannelFlowrateData); + { p = SOAP_NEW(soap, prodml23__ChannelFlowrateData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ChannelFlowrateData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ChannelFlowrateData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ChannelFlowrateData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ChannelFlowrateData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -210469,87 +210434,87 @@ SOAP_FMAC1 prodml22__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__ChannelFlowrateData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ChannelFlowrateData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ChannelFlowrateData(soap, tag ? tag : "prodml22:ChannelFlowrateData", -2, this, type)) + if (soap_out_prodml23__ChannelFlowrateData(soap, tag ? tag : "prodml23:ChannelFlowrateData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ChannelFlowrateData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChannelFlowrateData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ChannelFlowrateData(soap, this, tag, type); + return soap_get_prodml23__ChannelFlowrateData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_get_prodml22__ChannelFlowrateData(struct soap *soap, prodml22__ChannelFlowrateData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ChannelFlowrateData * SOAP_FMAC4 soap_get_prodml23__ChannelFlowrateData(struct soap *soap, prodml23__ChannelFlowrateData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ChannelFlowrateData(soap, tag, p, type))) + if ((p = soap_in_prodml23__ChannelFlowrateData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AnalysisLine::soap_default(struct soap *soap) +void prodml23__AnalysisLine::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__AnalysisLine::LineName); - soap_default_double(soap, &this->prodml22__AnalysisLine::Slope); - soap_default_double(soap, &this->prodml22__AnalysisLine::Intercept); - this->prodml22__AnalysisLine::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__AnalysisLine::LineName); + soap_default_double(soap, &this->prodml23__AnalysisLine::Slope); + soap_default_double(soap, &this->prodml23__AnalysisLine::Intercept); + this->prodml23__AnalysisLine::Remark = NULL; } -void prodml22__AnalysisLine::soap_serialize(struct soap *soap) const +void prodml23__AnalysisLine::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__AnalysisLine::LineName, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__AnalysisLine::LineName); - soap_embedded(soap, &this->prodml22__AnalysisLine::Slope, SOAP_TYPE_gsoap_eml2_3_double); - soap_embedded(soap, &this->prodml22__AnalysisLine::Intercept, SOAP_TYPE_gsoap_eml2_3_double); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__AnalysisLine::Remark); + soap_embedded(soap, &this->prodml23__AnalysisLine::LineName, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__AnalysisLine::LineName); + soap_embedded(soap, &this->prodml23__AnalysisLine::Slope, SOAP_TYPE_gsoap_eml2_3_double); + soap_embedded(soap, &this->prodml23__AnalysisLine::Intercept, SOAP_TYPE_gsoap_eml2_3_double); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__AnalysisLine::Remark); #endif } -int prodml22__AnalysisLine::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AnalysisLine::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AnalysisLine(soap, tag, id, this, type); + return soap_out_prodml23__AnalysisLine(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AnalysisLine(struct soap *soap, const char *tag, int id, const prodml22__AnalysisLine *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AnalysisLine(struct soap *soap, const char *tag, int id, const prodml23__AnalysisLine *a, const char *type) { if (!type) - type = "prodml22:AnalysisLine"; + type = "prodml23:AnalysisLine"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:LineName", -1, &a->prodml22__AnalysisLine::LineName, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:LineName", -1, &a->prodml23__AnalysisLine::LineName, "eml23:String64")) return soap->error; - if (soap_out_double(soap, "prodml22:Slope", -1, &a->prodml22__AnalysisLine::Slope, "xsd:double")) + if (soap_out_double(soap, "prodml23:Slope", -1, &a->prodml23__AnalysisLine::Slope, "xsd:double")) return soap->error; - if (soap_out_double(soap, "prodml22:Intercept", -1, &a->prodml22__AnalysisLine::Intercept, "xsd:double")) + if (soap_out_double(soap, "prodml23:Intercept", -1, &a->prodml23__AnalysisLine::Intercept, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AnalysisLine::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AnalysisLine::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AnalysisLine::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AnalysisLine::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AnalysisLine(soap, tag, this, type); + return soap_in_prodml23__AnalysisLine(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AnalysisLine * SOAP_FMAC4 soap_in_prodml22__AnalysisLine(struct soap *soap, const char *tag, prodml22__AnalysisLine *a, const char *type) +SOAP_FMAC3 prodml23__AnalysisLine * SOAP_FMAC4 soap_in_prodml23__AnalysisLine(struct soap *soap, const char *tag, prodml23__AnalysisLine *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AnalysisLine*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, sizeof(prodml22__AnalysisLine), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AnalysisLine*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, sizeof(prodml23__AnalysisLine), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AnalysisLine *)a->soap_in(soap, tag, type); + return (prodml23__AnalysisLine *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -210562,25 +210527,25 @@ SOAP_FMAC3 prodml22__AnalysisLine * SOAP_FMAC4 soap_in_prodml22__AnalysisLine(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_LineName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:LineName", &a->prodml22__AnalysisLine::LineName, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:LineName", &a->prodml23__AnalysisLine::LineName, "eml23:String64")) { soap_flag_LineName1--; continue; } } if (soap_flag_Slope1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:Slope", &a->prodml22__AnalysisLine::Slope, "xsd:double")) + { if (soap_in_double(soap, "prodml23:Slope", &a->prodml23__AnalysisLine::Slope, "xsd:double")) { soap_flag_Slope1--; continue; } } if (soap_flag_Intercept1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:Intercept", &a->prodml22__AnalysisLine::Intercept, "xsd:double")) + { if (soap_in_double(soap, "prodml23:Intercept", &a->prodml23__AnalysisLine::Intercept, "xsd:double")) { soap_flag_Intercept1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AnalysisLine::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AnalysisLine::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -210604,35 +210569,35 @@ SOAP_FMAC3 prodml22__AnalysisLine * SOAP_FMAC4 soap_in_prodml22__AnalysisLine(st return NULL; } else - { a = (prodml22__AnalysisLine *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, sizeof(prodml22__AnalysisLine), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AnalysisLine *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, sizeof(prodml23__AnalysisLine), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml22__AnalysisLine(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml23__AnalysisLine(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AnalysisLine(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AnalysisLine(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__AnalysisLine *p; - size_t k = sizeof(prodml22__AnalysisLine); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, n, gsoap_eml2_3_fdelete); + prodml23__AnalysisLine *p; + size_t k = sizeof(prodml23__AnalysisLine); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AnalysisLine); + { p = SOAP_NEW(soap, prodml23__AnalysisLine); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AnalysisLine, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AnalysisLine, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AnalysisLine location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AnalysisLine location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -210642,70 +210607,70 @@ SOAP_FMAC1 prodml22__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml22__Analys return p; } -int prodml22__AnalysisLine::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AnalysisLine::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AnalysisLine(soap, tag ? tag : "prodml22:AnalysisLine", -2, this, type)) + if (soap_out_prodml23__AnalysisLine(soap, tag ? tag : "prodml23:AnalysisLine", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AnalysisLine::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AnalysisLine::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AnalysisLine(soap, this, tag, type); + return soap_get_prodml23__AnalysisLine(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AnalysisLine * SOAP_FMAC4 soap_get_prodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AnalysisLine * SOAP_FMAC4 soap_get_prodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AnalysisLine(soap, tag, p, type))) + if ((p = soap_in_prodml23__AnalysisLine(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractRateHistory::soap_default(struct soap *soap) +void prodml23__AbstractRateHistory::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractRateHistory::soap_serialize(struct soap *soap) const +void prodml23__AbstractRateHistory::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractRateHistory::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractRateHistory::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractRateHistory(soap, tag, id, this, type); + return soap_out_prodml23__AbstractRateHistory(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractRateHistory(struct soap *soap, const char *tag, int id, const prodml22__AbstractRateHistory *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractRateHistory(struct soap *soap, const char *tag, int id, const prodml23__AbstractRateHistory *a, const char *type) { if (!type) - type = "prodml22:AbstractRateHistory"; + type = "prodml23:AbstractRateHistory"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractRateHistory::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractRateHistory::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractRateHistory(soap, tag, this, type); + return soap_in_prodml23__AbstractRateHistory(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractRateHistory * SOAP_FMAC4 soap_in_prodml22__AbstractRateHistory(struct soap *soap, const char *tag, prodml22__AbstractRateHistory *a, const char *type) +SOAP_FMAC3 prodml23__AbstractRateHistory * SOAP_FMAC4 soap_in_prodml23__AbstractRateHistory(struct soap *soap, const char *tag, prodml23__AbstractRateHistory *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractRateHistory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory, sizeof(prodml22__AbstractRateHistory), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractRateHistory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory, sizeof(prodml23__AbstractRateHistory), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractRateHistory *)a->soap_in(soap, tag, type); + return (prodml23__AbstractRateHistory *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -210724,41 +210689,41 @@ SOAP_FMAC3 prodml22__AbstractRateHistory * SOAP_FMAC4 soap_in_prodml22__Abstract return NULL; } else - { a = (prodml22__AbstractRateHistory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory, sizeof(prodml22__AbstractRateHistory), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractRateHistory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory, sizeof(prodml23__AbstractRateHistory), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRateHistory(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRateHistory(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractRateHistory(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractRateHistory(%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, "prodml22:ChannelFlowrateData")) - return soap_instantiate_prodml22__ChannelFlowrateData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SingleFlowrateData")) - return soap_instantiate_prodml22__SingleFlowrateData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TestPeriodsFlowrateData")) - return soap_instantiate_prodml22__TestPeriodsFlowrateData(soap, n, NULL, NULL, size); - prodml22__AbstractRateHistory *p; - size_t k = sizeof(prodml22__AbstractRateHistory); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChannelFlowrateData")) + return soap_instantiate_prodml23__ChannelFlowrateData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SingleFlowrateData")) + return soap_instantiate_prodml23__SingleFlowrateData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TestPeriodsFlowrateData")) + return soap_instantiate_prodml23__TestPeriodsFlowrateData(soap, n, NULL, NULL, size); + prodml23__AbstractRateHistory *p; + size_t k = sizeof(prodml23__AbstractRateHistory); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractRateHistory); + { p = SOAP_NEW(soap, prodml23__AbstractRateHistory); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractRateHistory, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractRateHistory, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractRateHistory location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractRateHistory location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -210768,111 +210733,111 @@ SOAP_FMAC1 prodml22__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__AbstractRateHistory::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractRateHistory::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractRateHistory(soap, tag ? tag : "prodml22:AbstractRateHistory", -2, this, type)) + if (soap_out_prodml23__AbstractRateHistory(soap, tag ? tag : "prodml23:AbstractRateHistory", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractRateHistory::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractRateHistory::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractRateHistory(soap, this, tag, type); + return soap_get_prodml23__AbstractRateHistory(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractRateHistory * SOAP_FMAC4 soap_get_prodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractRateHistory * SOAP_FMAC4 soap_get_prodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractRateHistory(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractRateHistory(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractPtaPressureData::soap_default(struct soap *soap) +void prodml23__AbstractPtaPressureData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFlowTestData::soap_default(soap); - this->prodml22__AbstractPtaPressureData::PressureChannel = NULL; - this->prodml22__AbstractPtaPressureData::PressureDerivativeChannel = NULL; - this->prodml22__AbstractPtaPressureData::PressureReferenceDepth = NULL; - this->prodml22__AbstractPtaPressureData::Datum = NULL; + this->prodml23__AbstractFlowTestData::soap_default(soap); + this->prodml23__AbstractPtaPressureData::PressureChannel = NULL; + this->prodml23__AbstractPtaPressureData::PressureDerivativeChannel = NULL; + this->prodml23__AbstractPtaPressureData::PressureReferenceDepth = NULL; + this->prodml23__AbstractPtaPressureData::Datum = NULL; } -void prodml22__AbstractPtaPressureData::soap_serialize(struct soap *soap) const +void prodml23__AbstractPtaPressureData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__AbstractPtaPressureData::PressureChannel); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__AbstractPtaPressureData::PressureDerivativeChannel); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__AbstractPtaPressureData::PressureReferenceDepth); - soap_serialize_PointerToeml23__ReferencePointKind(soap, &this->prodml22__AbstractPtaPressureData::Datum); - this->prodml22__AbstractFlowTestData::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__AbstractPtaPressureData::PressureChannel); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__AbstractPtaPressureData::PressureDerivativeChannel); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__AbstractPtaPressureData::PressureReferenceDepth); + soap_serialize_PointerToeml23__ReferencePointKind(soap, &this->prodml23__AbstractPtaPressureData::Datum); + this->prodml23__AbstractFlowTestData::soap_serialize(soap); #endif } -int prodml22__AbstractPtaPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractPtaPressureData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractPtaPressureData(soap, tag, id, this, type); + return soap_out_prodml23__AbstractPtaPressureData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractPtaPressureData(struct soap *soap, const char *tag, int id, const prodml22__AbstractPtaPressureData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractPtaPressureData(struct soap *soap, const char *tag, int id, const prodml23__AbstractPtaPressureData *a, const char *type) { if (!type) - type = "prodml22:AbstractPtaPressureData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:AbstractPtaPressureData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__AbstractPtaPressureData), type ? type : "prodml22:AbstractPtaPressureData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData), type ? type : "prodml23:AbstractPtaPressureData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__AbstractPtaPressureData::PressureChannel) - { if (soap_element_empty(soap, "prodml22:PressureChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaPressureData::PressureChannel) + { if (soap_element_empty(soap, "prodml23:PressureChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", -1, &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", -1, &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", -1, &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", -1, &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", -1, &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", -1, &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractPtaPressureData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractPtaPressureData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractPtaPressureData(soap, tag, this, type); + return soap_in_prodml23__AbstractPtaPressureData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml22__AbstractPtaPressureData(struct soap *soap, const char *tag, prodml22__AbstractPtaPressureData *a, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml23__AbstractPtaPressureData(struct soap *soap, const char *tag, prodml23__AbstractPtaPressureData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractPtaPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData, sizeof(prodml22__AbstractPtaPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractPtaPressureData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData, sizeof(prodml23__AbstractPtaPressureData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractPtaPressureData *)a->soap_in(soap, tag, type); + return (prodml23__AbstractPtaPressureData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -210880,9 +210845,9 @@ SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml22__Abst const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -210901,49 +210866,49 @@ SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml22__Abst for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet2--; continue; } } if (soap_flag_TimeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel2--; continue; } } if (soap_flag_TimeSeriesPointRepresentation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_PressureChannel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureChannel", &a->prodml22__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureChannel", &a->prodml23__AbstractPtaPressureData::PressureChannel, "eml23:DataObjectReference")) { soap_flag_PressureChannel1--; continue; } } if (soap_flag_PressureDerivativeChannel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:PressureDerivativeChannel", &a->prodml22__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:PressureDerivativeChannel", &a->prodml23__AbstractPtaPressureData::PressureDerivativeChannel, "eml23:DataObjectReference")) { soap_flag_PressureDerivativeChannel1--; continue; } } if (soap_flag_PressureReferenceDepth1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:PressureReferenceDepth", &a->prodml22__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:PressureReferenceDepth", &a->prodml23__AbstractPtaPressureData::PressureReferenceDepth, "eml23:LengthMeasure")) { soap_flag_PressureReferenceDepth1--; continue; } } if (soap_flag_Datum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", &a->prodml22__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) + { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", &a->prodml23__AbstractPtaPressureData::Datum, "eml23:ReferencePointKind")) { soap_flag_Datum1--; continue; } @@ -210957,7 +210922,7 @@ SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml22__Abst } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaPressureData::PressureChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaPressureData::PressureChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -210967,43 +210932,43 @@ SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml22__Abst return NULL; } else - { a = (prodml22__AbstractPtaPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData, sizeof(prodml22__AbstractPtaPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractPtaPressureData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData, sizeof(prodml23__AbstractPtaPressureData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPtaPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPtaPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractPtaPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractPtaPressureData(%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, "prodml22:DeconvolvedPressureData")) - return soap_instantiate_prodml22__DeconvolvedPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:MeasuredPressureData")) - return soap_instantiate_prodml22__MeasuredPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OutputPressureData")) - return soap_instantiate_prodml22__OutputPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PreProcessedPressureData")) - return soap_instantiate_prodml22__PreProcessedPressureData(soap, n, NULL, NULL, size); - prodml22__AbstractPtaPressureData *p; - size_t k = sizeof(prodml22__AbstractPtaPressureData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeconvolvedPressureData")) + return soap_instantiate_prodml23__DeconvolvedPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:MeasuredPressureData")) + return soap_instantiate_prodml23__MeasuredPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OutputPressureData")) + return soap_instantiate_prodml23__OutputPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PreProcessedPressureData")) + return soap_instantiate_prodml23__PreProcessedPressureData(soap, n, NULL, NULL, size); + prodml23__AbstractPtaPressureData *p; + size_t k = sizeof(prodml23__AbstractPtaPressureData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractPtaPressureData); + { p = SOAP_NEW(soap, prodml23__AbstractPtaPressureData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractPtaPressureData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractPtaPressureData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractPtaPressureData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractPtaPressureData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -211013,70 +210978,70 @@ SOAP_FMAC1 prodml22__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__AbstractPtaPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractPtaPressureData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractPtaPressureData(soap, tag ? tag : "prodml22:AbstractPtaPressureData", -2, this, type)) + if (soap_out_prodml23__AbstractPtaPressureData(soap, tag ? tag : "prodml23:AbstractPtaPressureData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractPtaPressureData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractPtaPressureData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractPtaPressureData(soap, this, tag, type); + return soap_get_prodml23__AbstractPtaPressureData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_get_prodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaPressureData * SOAP_FMAC4 soap_get_prodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractPtaPressureData(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractPtaPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractDeconvolutionOutput::soap_default(struct soap *soap) +void prodml23__AbstractDeconvolutionOutput::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractDeconvolutionOutput::soap_serialize(struct soap *soap) const +void prodml23__AbstractDeconvolutionOutput::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractDeconvolutionOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractDeconvolutionOutput::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractDeconvolutionOutput(soap, tag, id, this, type); + return soap_out_prodml23__AbstractDeconvolutionOutput(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, int id, const prodml22__AbstractDeconvolutionOutput *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, int id, const prodml23__AbstractDeconvolutionOutput *a, const char *type) { if (!type) - type = "prodml22:AbstractDeconvolutionOutput"; + type = "prodml23:AbstractDeconvolutionOutput"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractDeconvolutionOutput::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractDeconvolutionOutput::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractDeconvolutionOutput(soap, tag, this, type); + return soap_in_prodml23__AbstractDeconvolutionOutput(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, prodml22__AbstractDeconvolutionOutput *a, const char *type) +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_in_prodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, prodml23__AbstractDeconvolutionOutput *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractDeconvolutionOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, sizeof(prodml22__AbstractDeconvolutionOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractDeconvolutionOutput*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, sizeof(prodml23__AbstractDeconvolutionOutput), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractDeconvolutionOutput *)a->soap_in(soap, tag, type); + return (prodml23__AbstractDeconvolutionOutput *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -211095,39 +211060,39 @@ SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__AbstractDeconvolutionOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, sizeof(prodml22__AbstractDeconvolutionOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractDeconvolutionOutput *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, sizeof(prodml23__AbstractDeconvolutionOutput), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22__AbstractDeconvolutionOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml23__AbstractDeconvolutionOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractDeconvolutionOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractDeconvolutionOutput(%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, "prodml22:DeconvolutionMultipleOutput")) - return soap_instantiate_prodml22__DeconvolutionMultipleOutput(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeconvolutionSingleOutput")) - return soap_instantiate_prodml22__DeconvolutionSingleOutput(soap, n, NULL, NULL, size); - prodml22__AbstractDeconvolutionOutput *p; - size_t k = sizeof(prodml22__AbstractDeconvolutionOutput); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeconvolutionMultipleOutput")) + return soap_instantiate_prodml23__DeconvolutionMultipleOutput(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeconvolutionSingleOutput")) + return soap_instantiate_prodml23__DeconvolutionSingleOutput(soap, n, NULL, NULL, size); + prodml23__AbstractDeconvolutionOutput *p; + size_t k = sizeof(prodml23__AbstractDeconvolutionOutput); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractDeconvolutionOutput); + { p = SOAP_NEW(soap, prodml23__AbstractDeconvolutionOutput); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractDeconvolutionOutput, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractDeconvolutionOutput, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractDeconvolutionOutput location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractDeconvolutionOutput location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -211137,70 +211102,70 @@ SOAP_FMAC1 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__AbstractDeconvolutionOutput::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractDeconvolutionOutput::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractDeconvolutionOutput(soap, tag ? tag : "prodml22:AbstractDeconvolutionOutput", -2, this, type)) + if (soap_out_prodml23__AbstractDeconvolutionOutput(soap, tag ? tag : "prodml23:AbstractDeconvolutionOutput", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractDeconvolutionOutput::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractDeconvolutionOutput::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractDeconvolutionOutput(soap, this, tag, type); + return soap_get_prodml23__AbstractDeconvolutionOutput(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_get_prodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_get_prodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractDeconvolutionOutput(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractDeconvolutionOutput(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractAnalysis::soap_default(struct soap *soap) +void prodml23__AbstractAnalysis::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractAnalysis::soap_serialize(struct soap *soap) const +void prodml23__AbstractAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__AbstractAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractAnalysis(struct soap *soap, const char *tag, int id, const prodml22__AbstractAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractAnalysis(struct soap *soap, const char *tag, int id, const prodml23__AbstractAnalysis *a, const char *type) { if (!type) - type = "prodml22:AbstractAnalysis"; + type = "prodml23:AbstractAnalysis"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractAnalysis(soap, tag, this, type); + return soap_in_prodml23__AbstractAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractAnalysis * SOAP_FMAC4 soap_in_prodml22__AbstractAnalysis(struct soap *soap, const char *tag, prodml22__AbstractAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__AbstractAnalysis * SOAP_FMAC4 soap_in_prodml23__AbstractAnalysis(struct soap *soap, const char *tag, prodml23__AbstractAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis, sizeof(prodml22__AbstractAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis, sizeof(prodml23__AbstractAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__AbstractAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -211219,39 +211184,39 @@ SOAP_FMAC3 prodml22__AbstractAnalysis * SOAP_FMAC4 soap_in_prodml22__AbstractAna return NULL; } else - { a = (prodml22__AbstractAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis, sizeof(prodml22__AbstractAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis, sizeof(prodml23__AbstractAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__AbstractAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__AbstractAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractAnalysis(%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, "prodml22:PtaAnalysis")) - return soap_instantiate_prodml22__PtaAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:RtaAnalysis")) - return soap_instantiate_prodml22__RtaAnalysis(soap, n, NULL, NULL, size); - prodml22__AbstractAnalysis *p; - size_t k = sizeof(prodml22__AbstractAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PtaAnalysis")) + return soap_instantiate_prodml23__PtaAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:RtaAnalysis")) + return soap_instantiate_prodml23__RtaAnalysis(soap, n, NULL, NULL, size); + prodml23__AbstractAnalysis *p; + size_t k = sizeof(prodml23__AbstractAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractAnalysis); + { p = SOAP_NEW(soap, prodml23__AbstractAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -211261,88 +211226,88 @@ SOAP_FMAC1 prodml22__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__Ab return p; } -int prodml22__AbstractAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractAnalysis(soap, tag ? tag : "prodml22:AbstractAnalysis", -2, this, type)) + if (soap_out_prodml23__AbstractAnalysis(soap, tag ? tag : "prodml23:AbstractAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractAnalysis(soap, this, tag, type); + return soap_get_prodml23__AbstractAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractAnalysis * SOAP_FMAC4 soap_get_prodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractAnalysis * SOAP_FMAC4 soap_get_prodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReportingHierarchyNode::soap_default(struct soap *soap) +void prodml23__ReportingHierarchyNode::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, &this->prodml22__ReportingHierarchyNode::ChildNode); - this->prodml22__ReportingHierarchyNode::ReportingEntity = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ReportingHierarchyNode::id); - soap_default_eml23__String64(soap, &this->prodml22__ReportingHierarchyNode::name); + soap_default_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, &this->prodml23__ReportingHierarchyNode::ChildNode); + this->prodml23__ReportingHierarchyNode::ReportingEntity = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ReportingHierarchyNode::id); + soap_default_eml23__String64(soap, &this->prodml23__ReportingHierarchyNode::name); } -void prodml22__ReportingHierarchyNode::soap_serialize(struct soap *soap) const +void prodml23__ReportingHierarchyNode::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, &this->prodml22__ReportingHierarchyNode::ChildNode); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ReportingHierarchyNode::ReportingEntity); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, &this->prodml23__ReportingHierarchyNode::ChildNode); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ReportingHierarchyNode::ReportingEntity); #endif } -int prodml22__ReportingHierarchyNode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReportingHierarchyNode::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReportingHierarchyNode(soap, tag, id, this, type); + return soap_out_prodml23__ReportingHierarchyNode(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingHierarchyNode(struct soap *soap, const char *tag, int id, const prodml22__ReportingHierarchyNode *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingHierarchyNode(struct soap *soap, const char *tag, int id, const prodml23__ReportingHierarchyNode *a, const char *type) { if (!type) - type = "prodml22:ReportingHierarchyNode"; - soap_set_attr(soap, "id", soap_eml23__String642s(soap, ((prodml22__ReportingHierarchyNode*)a)->id), 1); - soap_set_attr(soap, "name", soap_eml23__String642s(soap, ((prodml22__ReportingHierarchyNode*)a)->name), 1); + type = "prodml23:ReportingHierarchyNode"; + soap_set_attr(soap, "id", soap_eml23__String642s(soap, ((prodml23__ReportingHierarchyNode*)a)->id), 1); + soap_set_attr(soap, "name", soap_eml23__String642s(soap, ((prodml23__ReportingHierarchyNode*)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_gsoap_eml2_3_prodml22__ReportingHierarchyNode), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, "prodml22:ChildNode", -1, &a->prodml22__ReportingHierarchyNode::ChildNode, "prodml22:ReportingHierarchyNode")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, "prodml23:ChildNode", -1, &a->prodml23__ReportingHierarchyNode::ChildNode, "prodml23:ReportingHierarchyNode")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ReportingEntity", -1, &a->prodml22__ReportingHierarchyNode::ReportingEntity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ReportingEntity", -1, &a->prodml23__ReportingHierarchyNode::ReportingEntity, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReportingHierarchyNode::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportingHierarchyNode::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReportingHierarchyNode(soap, tag, this, type); + return soap_in_prodml23__ReportingHierarchyNode(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReportingHierarchyNode * SOAP_FMAC4 soap_in_prodml22__ReportingHierarchyNode(struct soap *soap, const char *tag, prodml22__ReportingHierarchyNode *a, const char *type) +SOAP_FMAC3 prodml23__ReportingHierarchyNode * SOAP_FMAC4 soap_in_prodml23__ReportingHierarchyNode(struct soap *soap, const char *tag, prodml23__ReportingHierarchyNode *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReportingHierarchyNode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, sizeof(prodml22__ReportingHierarchyNode), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReportingHierarchyNode*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, sizeof(prodml23__ReportingHierarchyNode), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReportingHierarchyNode *)a->soap_in(soap, tag, type); + return (prodml23__ReportingHierarchyNode *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "id", 1, 3), &((prodml22__ReportingHierarchyNode*)a)->id)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "id", 1, 3), &((prodml23__ReportingHierarchyNode*)a)->id)) return NULL; - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "name", 1, 3), &((prodml22__ReportingHierarchyNode*)a)->name)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "name", 1, 3), &((prodml23__ReportingHierarchyNode*)a)->name)) return NULL; size_t soap_flag_ReportingEntity1 = 1; if (soap->body && *soap->href != '#') @@ -211350,11 +211315,11 @@ SOAP_FMAC3 prodml22__ReportingHierarchyNode * SOAP_FMAC4 soap_in_prodml22__Repor for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, "prodml22:ChildNode", &a->prodml22__ReportingHierarchyNode::ChildNode, "prodml22:ReportingHierarchyNode")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, "prodml23:ChildNode", &a->prodml23__ReportingHierarchyNode::ChildNode, "prodml23:ReportingHierarchyNode")) continue; } if (soap_flag_ReportingEntity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ReportingEntity", &a->prodml22__ReportingHierarchyNode::ReportingEntity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ReportingEntity", &a->prodml23__ReportingHierarchyNode::ReportingEntity, "eml23:DataObjectReference")) { soap_flag_ReportingEntity1--; continue; } @@ -211370,35 +211335,35 @@ SOAP_FMAC3 prodml22__ReportingHierarchyNode * SOAP_FMAC4 soap_in_prodml22__Repor return NULL; } else - { a = (prodml22__ReportingHierarchyNode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, sizeof(prodml22__ReportingHierarchyNode), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReportingHierarchyNode *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, sizeof(prodml23__ReportingHierarchyNode), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml22__ReportingHierarchyNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml23__ReportingHierarchyNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReportingHierarchyNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReportingHierarchyNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReportingHierarchyNode *p; - size_t k = sizeof(prodml22__ReportingHierarchyNode); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, n, gsoap_eml2_3_fdelete); + prodml23__ReportingHierarchyNode *p; + size_t k = sizeof(prodml23__ReportingHierarchyNode); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReportingHierarchyNode); + { p = SOAP_NEW(soap, prodml23__ReportingHierarchyNode); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReportingHierarchyNode, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReportingHierarchyNode, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReportingHierarchyNode location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReportingHierarchyNode location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -211408,58 +211373,58 @@ SOAP_FMAC1 prodml22__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__ReportingHierarchyNode::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReportingHierarchyNode::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReportingHierarchyNode(soap, tag ? tag : "prodml22:ReportingHierarchyNode", -2, this, type)) + if (soap_out_prodml23__ReportingHierarchyNode(soap, tag ? tag : "prodml23:ReportingHierarchyNode", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReportingHierarchyNode::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportingHierarchyNode::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReportingHierarchyNode(soap, this, tag, type); + return soap_get_prodml23__ReportingHierarchyNode(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReportingHierarchyNode * SOAP_FMAC4 soap_get_prodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingHierarchyNode * SOAP_FMAC4 soap_get_prodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingHierarchyNode(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingHierarchyNode(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReportingHierarchy::soap_default(struct soap *soap) +void prodml23__ReportingHierarchy::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, &this->prodml22__ReportingHierarchy::ReportingNode); + soap_default_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, &this->prodml23__ReportingHierarchy::ReportingNode); } -void prodml22__ReportingHierarchy::soap_serialize(struct soap *soap) const +void prodml23__ReportingHierarchy::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, &this->prodml22__ReportingHierarchy::ReportingNode); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, &this->prodml23__ReportingHierarchy::ReportingNode); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__ReportingHierarchy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReportingHierarchy::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReportingHierarchy(soap, tag, id, this, type); + return soap_out_prodml23__ReportingHierarchy(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingHierarchy(struct soap *soap, const char *tag, int id, const prodml22__ReportingHierarchy *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingHierarchy(struct soap *soap, const char *tag, int id, const prodml23__ReportingHierarchy *a, const char *type) { if (!type) - type = "prodml22:ReportingHierarchy"; + type = "prodml23:ReportingHierarchy"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ReportingHierarchy), type ? type : "prodml22:ReportingHierarchy")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy), type ? type : "prodml23:ReportingHierarchy")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -211481,28 +211446,28 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingHierarchy(struct soap *soa return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, "prodml22:ReportingNode", -1, &a->prodml22__ReportingHierarchy::ReportingNode, "prodml22:ReportingHierarchyNode")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, "prodml23:ReportingNode", -1, &a->prodml23__ReportingHierarchy::ReportingNode, "prodml23:ReportingHierarchyNode")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReportingHierarchy::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportingHierarchy::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReportingHierarchy(soap, tag, this, type); + return soap_in_prodml23__ReportingHierarchy(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml22__ReportingHierarchy(struct soap *soap, const char *tag, prodml22__ReportingHierarchy *a, const char *type) +SOAP_FMAC3 prodml23__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml23__ReportingHierarchy(struct soap *soap, const char *tag, prodml23__ReportingHierarchy *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReportingHierarchy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy, sizeof(prodml22__ReportingHierarchy), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReportingHierarchy*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy, sizeof(prodml23__ReportingHierarchy), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReportingHierarchy *)a->soap_in(soap, tag, type); + return (prodml23__ReportingHierarchy *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -211574,7 +211539,7 @@ SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml22__Reporting continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, "prodml22:ReportingNode", &a->prodml22__ReportingHierarchy::ReportingNode, "prodml22:ReportingHierarchyNode")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, "prodml23:ReportingNode", &a->prodml23__ReportingHierarchy::ReportingNode, "prodml23:ReportingHierarchyNode")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -211586,7 +211551,7 @@ SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml22__Reporting } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || a->prodml22__ReportingHierarchy::ReportingNode.size() < 1)) + if ((!a->eml23__AbstractObject::Citation || a->prodml23__ReportingHierarchy::ReportingNode.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -211596,35 +211561,35 @@ SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml22__Reporting return NULL; } else - { a = (prodml22__ReportingHierarchy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy, sizeof(prodml22__ReportingHierarchy), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReportingHierarchy *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy, sizeof(prodml23__ReportingHierarchy), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml22__ReportingHierarchy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml23__ReportingHierarchy(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReportingHierarchy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReportingHierarchy(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReportingHierarchy *p; - size_t k = sizeof(prodml22__ReportingHierarchy); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy, n, gsoap_eml2_3_fdelete); + prodml23__ReportingHierarchy *p; + size_t k = sizeof(prodml23__ReportingHierarchy); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReportingHierarchy); + { p = SOAP_NEW(soap, prodml23__ReportingHierarchy); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReportingHierarchy, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReportingHierarchy, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReportingHierarchy location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReportingHierarchy location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -211634,61 +211599,61 @@ SOAP_FMAC1 prodml22__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__ReportingHierarchy::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReportingHierarchy::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReportingHierarchy(soap, tag ? tag : "prodml22:ReportingHierarchy", -2, this, type)) + if (soap_out_prodml23__ReportingHierarchy(soap, tag ? tag : "prodml23:ReportingHierarchy", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReportingHierarchy::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportingHierarchy::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReportingHierarchy(soap, this, tag, type); + return soap_get_prodml23__ReportingHierarchy(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_get_prodml22__ReportingHierarchy(struct soap *soap, prodml22__ReportingHierarchy *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingHierarchy * SOAP_FMAC4 soap_get_prodml23__ReportingHierarchy(struct soap *soap, prodml23__ReportingHierarchy *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingHierarchy(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingHierarchy(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReportingEntity::soap_default(struct soap *soap) +void prodml23__ReportingEntity::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_prodml22__ReportingEntityKind(soap, &this->prodml22__ReportingEntity::Kind); - this->prodml22__ReportingEntity::AssociatedFacility = NULL; - this->prodml22__ReportingEntity::AssociatedObject = NULL; + soap_default_prodml23__ReportingEntityKind(soap, &this->prodml23__ReportingEntity::Kind); + this->prodml23__ReportingEntity::AssociatedFacility = NULL; + this->prodml23__ReportingEntity::AssociatedObject = NULL; } -void prodml22__ReportingEntity::soap_serialize(struct soap *soap) const +void prodml23__ReportingEntity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ReportingEntity::AssociatedFacility); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__ReportingEntity::AssociatedObject); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ReportingEntity::AssociatedFacility); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__ReportingEntity::AssociatedObject); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__ReportingEntity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReportingEntity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReportingEntity(soap, tag, id, this, type); + return soap_out_prodml23__ReportingEntity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingEntity(struct soap *soap, const char *tag, int id, const prodml22__ReportingEntity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingEntity(struct soap *soap, const char *tag, int id, const prodml23__ReportingEntity *a, const char *type) { if (!type) - type = "prodml22:ReportingEntity"; + type = "prodml23:ReportingEntity"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ReportingEntity), type ? type : "prodml22:ReportingEntity")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity), type ? type : "prodml23:ReportingEntity")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -211710,32 +211675,32 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingEntity(struct soap *soap, return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_prodml22__ReportingEntityKind(soap, "prodml22:Kind", -1, &a->prodml22__ReportingEntity::Kind, "prodml22:ReportingEntityKind")) + if (soap_out_prodml23__ReportingEntityKind(soap, "prodml23:Kind", -1, &a->prodml23__ReportingEntity::Kind, "prodml23:ReportingEntityKind")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:AssociatedFacility", -1, &a->prodml22__ReportingEntity::AssociatedFacility, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:AssociatedFacility", -1, &a->prodml23__ReportingEntity::AssociatedFacility, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:AssociatedObject", -1, &a->prodml22__ReportingEntity::AssociatedObject, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:AssociatedObject", -1, &a->prodml23__ReportingEntity::AssociatedObject, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReportingEntity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportingEntity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReportingEntity(soap, tag, this, type); + return soap_in_prodml23__ReportingEntity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReportingEntity * SOAP_FMAC4 soap_in_prodml22__ReportingEntity(struct soap *soap, const char *tag, prodml22__ReportingEntity *a, const char *type) +SOAP_FMAC3 prodml23__ReportingEntity * SOAP_FMAC4 soap_in_prodml23__ReportingEntity(struct soap *soap, const char *tag, prodml23__ReportingEntity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReportingEntity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity, sizeof(prodml22__ReportingEntity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReportingEntity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity, sizeof(prodml23__ReportingEntity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReportingEntity *)a->soap_in(soap, tag, type); + return (prodml23__ReportingEntity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -211810,19 +211775,19 @@ SOAP_FMAC3 prodml22__ReportingEntity * SOAP_FMAC4 soap_in_prodml22__ReportingEnt continue; } if (soap_flag_Kind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ReportingEntityKind(soap, "prodml22:Kind", &a->prodml22__ReportingEntity::Kind, "prodml22:ReportingEntityKind")) + { if (soap_in_prodml23__ReportingEntityKind(soap, "prodml23:Kind", &a->prodml23__ReportingEntity::Kind, "prodml23:ReportingEntityKind")) { soap_flag_Kind1--; continue; } } if (soap_flag_AssociatedFacility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:AssociatedFacility", &a->prodml22__ReportingEntity::AssociatedFacility, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:AssociatedFacility", &a->prodml23__ReportingEntity::AssociatedFacility, "eml23:DataObjectReference")) { soap_flag_AssociatedFacility1--; continue; } } if (soap_flag_AssociatedObject1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:AssociatedObject", &a->prodml22__ReportingEntity::AssociatedObject, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:AssociatedObject", &a->prodml23__ReportingEntity::AssociatedObject, "eml23:DataObjectReference")) { soap_flag_AssociatedObject1--; continue; } @@ -211846,35 +211811,35 @@ SOAP_FMAC3 prodml22__ReportingEntity * SOAP_FMAC4 soap_in_prodml22__ReportingEnt return NULL; } else - { a = (prodml22__ReportingEntity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity, sizeof(prodml22__ReportingEntity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReportingEntity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity, sizeof(prodml23__ReportingEntity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml22__ReportingEntity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml23__ReportingEntity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReportingEntity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReportingEntity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReportingEntity *p; - size_t k = sizeof(prodml22__ReportingEntity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity, n, gsoap_eml2_3_fdelete); + prodml23__ReportingEntity *p; + size_t k = sizeof(prodml23__ReportingEntity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReportingEntity); + { p = SOAP_NEW(soap, prodml23__ReportingEntity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReportingEntity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReportingEntity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReportingEntity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReportingEntity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -211884,58 +211849,58 @@ SOAP_FMAC1 prodml22__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml22__Rep return p; } -int prodml22__ReportingEntity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReportingEntity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReportingEntity(soap, tag ? tag : "prodml22:ReportingEntity", -2, this, type)) + if (soap_out_prodml23__ReportingEntity(soap, tag ? tag : "prodml23:ReportingEntity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReportingEntity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportingEntity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReportingEntity(soap, this, tag, type); + return soap_get_prodml23__ReportingEntity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReportingEntity * SOAP_FMAC4 soap_get_prodml22__ReportingEntity(struct soap *soap, prodml22__ReportingEntity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingEntity * SOAP_FMAC4 soap_get_prodml23__ReportingEntity(struct soap *soap, prodml23__ReportingEntity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportingEntity(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportingEntity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Facility::soap_default(struct soap *soap) +void prodml23__Facility::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_prodml22__ReportingFacilityExt(soap, &this->prodml22__Facility::Kind); + soap_default_prodml23__ReportingFacilityExt(soap, &this->prodml23__Facility::Kind); } -void prodml22__Facility::soap_serialize(struct soap *soap) const +void prodml23__Facility::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__ReportingFacilityExt(soap, &this->prodml22__Facility::Kind); + soap_serialize_prodml23__ReportingFacilityExt(soap, &this->prodml23__Facility::Kind); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__Facility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Facility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Facility(soap, tag, id, this, type); + return soap_out_prodml23__Facility(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Facility(struct soap *soap, const char *tag, int id, const prodml22__Facility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Facility(struct soap *soap, const char *tag, int id, const prodml23__Facility *a, const char *type) { if (!type) - type = "prodml22:Facility"; + type = "prodml23:Facility"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__Facility), type ? type : "prodml22:Facility")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Facility), type ? type : "prodml23:Facility")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -211957,28 +211922,28 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Facility(struct soap *soap, const c return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_prodml22__ReportingFacilityExt(soap, "prodml22:Kind", -1, &a->prodml22__Facility::Kind, "prodml22:ReportingFacilityExt")) + if (soap_out_prodml23__ReportingFacilityExt(soap, "prodml23:Kind", -1, &a->prodml23__Facility::Kind, "prodml23:ReportingFacilityExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Facility::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Facility::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Facility(soap, tag, this, type); + return soap_in_prodml23__Facility(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Facility * SOAP_FMAC4 soap_in_prodml22__Facility(struct soap *soap, const char *tag, prodml22__Facility *a, const char *type) +SOAP_FMAC3 prodml23__Facility * SOAP_FMAC4 soap_in_prodml23__Facility(struct soap *soap, const char *tag, prodml23__Facility *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Facility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Facility, sizeof(prodml22__Facility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Facility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Facility, sizeof(prodml23__Facility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Facility) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Facility) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Facility *)a->soap_in(soap, tag, type); + return (prodml23__Facility *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -212051,7 +212016,7 @@ SOAP_FMAC3 prodml22__Facility * SOAP_FMAC4 soap_in_prodml22__Facility(struct soa continue; } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__ReportingFacilityExt(soap, "prodml22:Kind", &a->prodml22__Facility::Kind, "prodml22:ReportingFacilityExt")) + { if (soap_in_prodml23__ReportingFacilityExt(soap, "prodml23:Kind", &a->prodml23__Facility::Kind, "prodml23:ReportingFacilityExt")) { soap_flag_Kind1--; continue; } @@ -212075,35 +212040,35 @@ SOAP_FMAC3 prodml22__Facility * SOAP_FMAC4 soap_in_prodml22__Facility(struct soa return NULL; } else - { a = (prodml22__Facility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Facility, SOAP_TYPE_gsoap_eml2_3_prodml22__Facility, sizeof(prodml22__Facility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Facility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Facility, SOAP_TYPE_gsoap_eml2_3_prodml23__Facility, sizeof(prodml23__Facility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Facility * SOAP_FMAC2 soap_instantiate_prodml22__Facility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Facility * SOAP_FMAC2 soap_instantiate_prodml23__Facility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Facility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Facility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Facility *p; - size_t k = sizeof(prodml22__Facility); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Facility, n, gsoap_eml2_3_fdelete); + prodml23__Facility *p; + size_t k = sizeof(prodml23__Facility); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Facility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Facility); + { p = SOAP_NEW(soap, prodml23__Facility); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Facility, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Facility, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Facility location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Facility location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -212113,110 +212078,110 @@ SOAP_FMAC1 prodml22__Facility * SOAP_FMAC2 soap_instantiate_prodml22__Facility(s return p; } -int prodml22__Facility::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Facility::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Facility(soap, tag ? tag : "prodml22:Facility", -2, this, type)) + if (soap_out_prodml23__Facility(soap, tag ? tag : "prodml23:Facility", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Facility::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Facility::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Facility(soap, this, tag, type); + return soap_get_prodml23__Facility(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Facility * SOAP_FMAC4 soap_get_prodml22__Facility(struct soap *soap, prodml22__Facility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Facility * SOAP_FMAC4 soap_get_prodml23__Facility(struct soap *soap, prodml23__Facility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Facility(soap, tag, p, type))) + if ((p = soap_in_prodml23__Facility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WellFlowingCondition::soap_default(struct soap *soap) +void prodml23__WellFlowingCondition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WellFlowingCondition::ChokeOrificeSize = NULL; - this->prodml22__WellFlowingCondition::BottomHolePressureDatumMd = NULL; - this->prodml22__WellFlowingCondition::BottomHoleStabilizedPressure = NULL; - this->prodml22__WellFlowingCondition::BottomHoleStabilizedTemperature = NULL; - this->prodml22__WellFlowingCondition::CasingHeadStabilizedPressure = NULL; - this->prodml22__WellFlowingCondition::CasingHeadStabilizedTemperature = NULL; - this->prodml22__WellFlowingCondition::TubingHeadStabilizedPressure = NULL; - this->prodml22__WellFlowingCondition::TubingHeadStabilizedTemperature = NULL; - this->prodml22__WellFlowingCondition::FluidLevel = NULL; - this->prodml22__WellFlowingCondition::BaseUsableWater = NULL; + this->prodml23__WellFlowingCondition::ChokeOrificeSize = NULL; + this->prodml23__WellFlowingCondition::BottomHolePressureDatumMd = NULL; + this->prodml23__WellFlowingCondition::BottomHoleStabilizedPressure = NULL; + this->prodml23__WellFlowingCondition::BottomHoleStabilizedTemperature = NULL; + this->prodml23__WellFlowingCondition::CasingHeadStabilizedPressure = NULL; + this->prodml23__WellFlowingCondition::CasingHeadStabilizedTemperature = NULL; + this->prodml23__WellFlowingCondition::TubingHeadStabilizedPressure = NULL; + this->prodml23__WellFlowingCondition::TubingHeadStabilizedTemperature = NULL; + this->prodml23__WellFlowingCondition::FluidLevel = NULL; + this->prodml23__WellFlowingCondition::BaseUsableWater = NULL; } -void prodml22__WellFlowingCondition::soap_serialize(struct soap *soap) const +void prodml23__WellFlowingCondition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__WellFlowingCondition::ChokeOrificeSize); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__WellFlowingCondition::BottomHolePressureDatumMd); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__WellFlowingCondition::BottomHoleStabilizedPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__WellFlowingCondition::BottomHoleStabilizedTemperature); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__WellFlowingCondition::CasingHeadStabilizedPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__WellFlowingCondition::CasingHeadStabilizedTemperature); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__WellFlowingCondition::TubingHeadStabilizedPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__WellFlowingCondition::TubingHeadStabilizedTemperature); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__WellFlowingCondition::FluidLevel); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__WellFlowingCondition::BaseUsableWater); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__WellFlowingCondition::ChokeOrificeSize); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__WellFlowingCondition::BottomHolePressureDatumMd); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__WellFlowingCondition::BottomHoleStabilizedPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__WellFlowingCondition::BottomHoleStabilizedTemperature); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__WellFlowingCondition::CasingHeadStabilizedPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__WellFlowingCondition::CasingHeadStabilizedTemperature); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__WellFlowingCondition::TubingHeadStabilizedPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__WellFlowingCondition::TubingHeadStabilizedTemperature); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__WellFlowingCondition::FluidLevel); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__WellFlowingCondition::BaseUsableWater); #endif } -int prodml22__WellFlowingCondition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WellFlowingCondition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WellFlowingCondition(soap, tag, id, this, type); + return soap_out_prodml23__WellFlowingCondition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellFlowingCondition(struct soap *soap, const char *tag, int id, const prodml22__WellFlowingCondition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellFlowingCondition(struct soap *soap, const char *tag, int id, const prodml23__WellFlowingCondition *a, const char *type) { if (!type) - type = "prodml22:WellFlowingCondition"; + type = "prodml23:WellFlowingCondition"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition), type)) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:ChokeOrificeSize", -1, &a->prodml22__WellFlowingCondition::ChokeOrificeSize, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:ChokeOrificeSize", -1, &a->prodml23__WellFlowingCondition::ChokeOrificeSize, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:BottomHolePressureDatumMd", -1, &a->prodml22__WellFlowingCondition::BottomHolePressureDatumMd, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:BottomHolePressureDatumMd", -1, &a->prodml23__WellFlowingCondition::BottomHolePressureDatumMd, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BottomHoleStabilizedPressure", -1, &a->prodml22__WellFlowingCondition::BottomHoleStabilizedPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BottomHoleStabilizedPressure", -1, &a->prodml23__WellFlowingCondition::BottomHoleStabilizedPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:BottomHoleStabilizedTemperature", -1, &a->prodml22__WellFlowingCondition::BottomHoleStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:BottomHoleStabilizedTemperature", -1, &a->prodml23__WellFlowingCondition::BottomHoleStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:CasingHeadStabilizedPressure", -1, &a->prodml22__WellFlowingCondition::CasingHeadStabilizedPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:CasingHeadStabilizedPressure", -1, &a->prodml23__WellFlowingCondition::CasingHeadStabilizedPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:CasingHeadStabilizedTemperature", -1, &a->prodml22__WellFlowingCondition::CasingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:CasingHeadStabilizedTemperature", -1, &a->prodml23__WellFlowingCondition::CasingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:TubingHeadStabilizedPressure", -1, &a->prodml22__WellFlowingCondition::TubingHeadStabilizedPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:TubingHeadStabilizedPressure", -1, &a->prodml23__WellFlowingCondition::TubingHeadStabilizedPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TubingHeadStabilizedTemperature", -1, &a->prodml22__WellFlowingCondition::TubingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TubingHeadStabilizedTemperature", -1, &a->prodml23__WellFlowingCondition::TubingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:FluidLevel", -1, &a->prodml22__WellFlowingCondition::FluidLevel, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:FluidLevel", -1, &a->prodml23__WellFlowingCondition::FluidLevel, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:BaseUsableWater", -1, &a->prodml22__WellFlowingCondition::BaseUsableWater, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:BaseUsableWater", -1, &a->prodml23__WellFlowingCondition::BaseUsableWater, "eml23:LengthMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WellFlowingCondition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellFlowingCondition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WellFlowingCondition(soap, tag, this, type); + return soap_in_prodml23__WellFlowingCondition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WellFlowingCondition * SOAP_FMAC4 soap_in_prodml22__WellFlowingCondition(struct soap *soap, const char *tag, prodml22__WellFlowingCondition *a, const char *type) +SOAP_FMAC3 prodml23__WellFlowingCondition * SOAP_FMAC4 soap_in_prodml23__WellFlowingCondition(struct soap *soap, const char *tag, prodml23__WellFlowingCondition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WellFlowingCondition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition, sizeof(prodml22__WellFlowingCondition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WellFlowingCondition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition, sizeof(prodml23__WellFlowingCondition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WellFlowingCondition *)a->soap_in(soap, tag, type); + return (prodml23__WellFlowingCondition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -212235,61 +212200,61 @@ SOAP_FMAC3 prodml22__WellFlowingCondition * SOAP_FMAC4 soap_in_prodml22__WellFlo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChokeOrificeSize1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:ChokeOrificeSize", &a->prodml22__WellFlowingCondition::ChokeOrificeSize, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:ChokeOrificeSize", &a->prodml23__WellFlowingCondition::ChokeOrificeSize, "eml23:LengthMeasure")) { soap_flag_ChokeOrificeSize1--; continue; } } if (soap_flag_BottomHolePressureDatumMd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:BottomHolePressureDatumMd", &a->prodml22__WellFlowingCondition::BottomHolePressureDatumMd, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:BottomHolePressureDatumMd", &a->prodml23__WellFlowingCondition::BottomHolePressureDatumMd, "eml23:LengthMeasure")) { soap_flag_BottomHolePressureDatumMd1--; continue; } } if (soap_flag_BottomHoleStabilizedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BottomHoleStabilizedPressure", &a->prodml22__WellFlowingCondition::BottomHoleStabilizedPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BottomHoleStabilizedPressure", &a->prodml23__WellFlowingCondition::BottomHoleStabilizedPressure, "eml23:PressureMeasure")) { soap_flag_BottomHoleStabilizedPressure1--; continue; } } if (soap_flag_BottomHoleStabilizedTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:BottomHoleStabilizedTemperature", &a->prodml22__WellFlowingCondition::BottomHoleStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:BottomHoleStabilizedTemperature", &a->prodml23__WellFlowingCondition::BottomHoleStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_BottomHoleStabilizedTemperature1--; continue; } } if (soap_flag_CasingHeadStabilizedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:CasingHeadStabilizedPressure", &a->prodml22__WellFlowingCondition::CasingHeadStabilizedPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:CasingHeadStabilizedPressure", &a->prodml23__WellFlowingCondition::CasingHeadStabilizedPressure, "eml23:AbstractPressureValue")) { soap_flag_CasingHeadStabilizedPressure1--; continue; } } if (soap_flag_CasingHeadStabilizedTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:CasingHeadStabilizedTemperature", &a->prodml22__WellFlowingCondition::CasingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:CasingHeadStabilizedTemperature", &a->prodml23__WellFlowingCondition::CasingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_CasingHeadStabilizedTemperature1--; continue; } } if (soap_flag_TubingHeadStabilizedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:TubingHeadStabilizedPressure", &a->prodml22__WellFlowingCondition::TubingHeadStabilizedPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:TubingHeadStabilizedPressure", &a->prodml23__WellFlowingCondition::TubingHeadStabilizedPressure, "eml23:AbstractPressureValue")) { soap_flag_TubingHeadStabilizedPressure1--; continue; } } if (soap_flag_TubingHeadStabilizedTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TubingHeadStabilizedTemperature", &a->prodml22__WellFlowingCondition::TubingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TubingHeadStabilizedTemperature", &a->prodml23__WellFlowingCondition::TubingHeadStabilizedTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TubingHeadStabilizedTemperature1--; continue; } } if (soap_flag_FluidLevel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:FluidLevel", &a->prodml22__WellFlowingCondition::FluidLevel, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:FluidLevel", &a->prodml23__WellFlowingCondition::FluidLevel, "eml23:LengthMeasure")) { soap_flag_FluidLevel1--; continue; } } if (soap_flag_BaseUsableWater1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:BaseUsableWater", &a->prodml22__WellFlowingCondition::BaseUsableWater, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:BaseUsableWater", &a->prodml23__WellFlowingCondition::BaseUsableWater, "eml23:LengthMeasure")) { soap_flag_BaseUsableWater1--; continue; } @@ -212305,35 +212270,35 @@ SOAP_FMAC3 prodml22__WellFlowingCondition * SOAP_FMAC4 soap_in_prodml22__WellFlo return NULL; } else - { a = (prodml22__WellFlowingCondition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition, sizeof(prodml22__WellFlowingCondition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WellFlowingCondition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition, sizeof(prodml23__WellFlowingCondition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml22__WellFlowingCondition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml23__WellFlowingCondition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WellFlowingCondition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WellFlowingCondition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WellFlowingCondition *p; - size_t k = sizeof(prodml22__WellFlowingCondition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition, n, gsoap_eml2_3_fdelete); + prodml23__WellFlowingCondition *p; + size_t k = sizeof(prodml23__WellFlowingCondition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WellFlowingCondition); + { p = SOAP_NEW(soap, prodml23__WellFlowingCondition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WellFlowingCondition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WellFlowingCondition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WellFlowingCondition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WellFlowingCondition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -212343,58 +212308,58 @@ SOAP_FMAC1 prodml22__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__WellFlowingCondition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WellFlowingCondition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WellFlowingCondition(soap, tag ? tag : "prodml22:WellFlowingCondition", -2, this, type)) + if (soap_out_prodml23__WellFlowingCondition(soap, tag ? tag : "prodml23:WellFlowingCondition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WellFlowingCondition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WellFlowingCondition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WellFlowingCondition(soap, this, tag, type); + return soap_get_prodml23__WellFlowingCondition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WellFlowingCondition * SOAP_FMAC4 soap_get_prodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellFlowingCondition * SOAP_FMAC4 soap_get_prodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WellFlowingCondition(soap, tag, p, type))) + if ((p = soap_in_prodml23__WellFlowingCondition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WaterLevelTest::soap_default(struct soap *soap) +void prodml23__WaterLevelTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__WaterLevelTest::IntervalMeasurementSet = NULL; + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__WaterLevelTest::IntervalMeasurementSet = NULL; } -void prodml22__WaterLevelTest::soap_serialize(struct soap *soap) const +void prodml23__WaterLevelTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__WaterLevelTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__WaterLevelTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__WaterLevelTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WaterLevelTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WaterLevelTest(soap, tag, id, this, type); + return soap_out_prodml23__WaterLevelTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterLevelTest(struct soap *soap, const char *tag, int id, const prodml22__WaterLevelTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterLevelTest(struct soap *soap, const char *tag, int id, const prodml23__WaterLevelTest *a, const char *type) { if (!type) - type = "prodml22:WaterLevelTest"; + type = "prodml23:WaterLevelTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__WaterLevelTest), type ? type : "prodml22:WaterLevelTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest), type ? type : "prodml23:WaterLevelTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -212416,32 +212381,32 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterLevelTest(struct soap *soap, c return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__WaterLevelTest::IntervalMeasurementSet) - { if (soap_element_empty(soap, "prodml22:IntervalMeasurementSet", 0, NULL)) + if (!a->prodml23__WaterLevelTest::IntervalMeasurementSet) + { if (soap_element_empty(soap, "prodml23:IntervalMeasurementSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__WaterLevelTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + else if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__WaterLevelTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WaterLevelTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterLevelTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WaterLevelTest(soap, tag, this, type); + return soap_in_prodml23__WaterLevelTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_in_prodml22__WaterLevelTest(struct soap *soap, const char *tag, prodml22__WaterLevelTest *a, const char *type) +SOAP_FMAC3 prodml23__WaterLevelTest * SOAP_FMAC4 soap_in_prodml23__WaterLevelTest(struct soap *soap, const char *tag, prodml23__WaterLevelTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WaterLevelTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest, sizeof(prodml22__WaterLevelTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WaterLevelTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest, sizeof(prodml23__WaterLevelTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WaterLevelTest *)a->soap_in(soap, tag, type); + return (prodml23__WaterLevelTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -212514,7 +212479,7 @@ SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_in_prodml22__WaterLevelTes continue; } if (soap_flag_IntervalMeasurementSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__WaterLevelTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__WaterLevelTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) { soap_flag_IntervalMeasurementSet1--; continue; } @@ -212528,7 +212493,7 @@ SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_in_prodml22__WaterLevelTes } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__WaterLevelTest::IntervalMeasurementSet)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__WaterLevelTest::IntervalMeasurementSet)) { soap->error = SOAP_OCCURS; return NULL; } @@ -212538,35 +212503,35 @@ SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_in_prodml22__WaterLevelTes return NULL; } else - { a = (prodml22__WaterLevelTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest, sizeof(prodml22__WaterLevelTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WaterLevelTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest, sizeof(prodml23__WaterLevelTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml22__WaterLevelTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml23__WaterLevelTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WaterLevelTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WaterLevelTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WaterLevelTest *p; - size_t k = sizeof(prodml22__WaterLevelTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest, n, gsoap_eml2_3_fdelete); + prodml23__WaterLevelTest *p; + size_t k = sizeof(prodml23__WaterLevelTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WaterLevelTest); + { p = SOAP_NEW(soap, prodml23__WaterLevelTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WaterLevelTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WaterLevelTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WaterLevelTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WaterLevelTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -212576,60 +212541,60 @@ SOAP_FMAC1 prodml22__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml22__Wate return p; } -int prodml22__WaterLevelTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WaterLevelTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WaterLevelTest(soap, tag ? tag : "prodml22:WaterLevelTest", -2, this, type)) + if (soap_out_prodml23__WaterLevelTest(soap, tag ? tag : "prodml23:WaterLevelTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WaterLevelTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterLevelTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WaterLevelTest(soap, this, tag, type); + return soap_get_prodml23__WaterLevelTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_get_prodml22__WaterLevelTest(struct soap *soap, prodml22__WaterLevelTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterLevelTest * SOAP_FMAC4 soap_get_prodml23__WaterLevelTest(struct soap *soap, prodml23__WaterLevelTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WaterLevelTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__WaterLevelTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__VerticalInterferenceTest::soap_default(struct soap *soap) +void prodml23__VerticalInterferenceTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__VerticalInterferenceTest::TieInLog = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__VerticalInterferenceTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__VerticalInterferenceTest::TieInLog = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__VerticalInterferenceTest::IntervalMeasurementSet); } -void prodml22__VerticalInterferenceTest::soap_serialize(struct soap *soap) const +void prodml23__VerticalInterferenceTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__VerticalInterferenceTest::TieInLog); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__VerticalInterferenceTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__VerticalInterferenceTest::TieInLog); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__VerticalInterferenceTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__VerticalInterferenceTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__VerticalInterferenceTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__VerticalInterferenceTest(soap, tag, id, this, type); + return soap_out_prodml23__VerticalInterferenceTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VerticalInterferenceTest(struct soap *soap, const char *tag, int id, const prodml22__VerticalInterferenceTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VerticalInterferenceTest(struct soap *soap, const char *tag, int id, const prodml23__VerticalInterferenceTest *a, const char *type) { if (!type) - type = "prodml22:VerticalInterferenceTest"; + type = "prodml23:VerticalInterferenceTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__VerticalInterferenceTest), type ? type : "prodml22:VerticalInterferenceTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest), type ? type : "prodml23:VerticalInterferenceTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -212651,34 +212616,34 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VerticalInterferenceTest(struct soa return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__VerticalInterferenceTest::TieInLog) - { if (soap_element_empty(soap, "prodml22:TieInLog", 0, NULL)) + if (!a->prodml23__VerticalInterferenceTest::TieInLog) + { if (soap_element_empty(soap, "prodml23:TieInLog", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TieInLog", -1, &a->prodml22__VerticalInterferenceTest::TieInLog, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TieInLog", -1, &a->prodml23__VerticalInterferenceTest::TieInLog, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__VerticalInterferenceTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__VerticalInterferenceTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__VerticalInterferenceTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__VerticalInterferenceTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__VerticalInterferenceTest(soap, tag, this, type); + return soap_in_prodml23__VerticalInterferenceTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml22__VerticalInterferenceTest(struct soap *soap, const char *tag, prodml22__VerticalInterferenceTest *a, const char *type) +SOAP_FMAC3 prodml23__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml23__VerticalInterferenceTest(struct soap *soap, const char *tag, prodml23__VerticalInterferenceTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__VerticalInterferenceTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest, sizeof(prodml22__VerticalInterferenceTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__VerticalInterferenceTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest, sizeof(prodml23__VerticalInterferenceTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__VerticalInterferenceTest *)a->soap_in(soap, tag, type); + return (prodml23__VerticalInterferenceTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -212751,13 +212716,13 @@ SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml22__Ver continue; } if (soap_flag_TieInLog1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TieInLog", &a->prodml22__VerticalInterferenceTest::TieInLog, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TieInLog", &a->prodml23__VerticalInterferenceTest::TieInLog, "eml23:DataObjectReference")) { soap_flag_TieInLog1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__VerticalInterferenceTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__VerticalInterferenceTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -212769,7 +212734,7 @@ SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml22__Ver } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__VerticalInterferenceTest::TieInLog || a->prodml22__VerticalInterferenceTest::IntervalMeasurementSet.size() < 1)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__VerticalInterferenceTest::TieInLog || a->prodml23__VerticalInterferenceTest::IntervalMeasurementSet.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -212779,35 +212744,35 @@ SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml22__Ver return NULL; } else - { a = (prodml22__VerticalInterferenceTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest, sizeof(prodml22__VerticalInterferenceTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__VerticalInterferenceTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest, sizeof(prodml23__VerticalInterferenceTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prodml22__VerticalInterferenceTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prodml23__VerticalInterferenceTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__VerticalInterferenceTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__VerticalInterferenceTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__VerticalInterferenceTest *p; - size_t k = sizeof(prodml22__VerticalInterferenceTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest, n, gsoap_eml2_3_fdelete); + prodml23__VerticalInterferenceTest *p; + size_t k = sizeof(prodml23__VerticalInterferenceTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__VerticalInterferenceTest); + { p = SOAP_NEW(soap, prodml23__VerticalInterferenceTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__VerticalInterferenceTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__VerticalInterferenceTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__VerticalInterferenceTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__VerticalInterferenceTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -212817,100 +212782,100 @@ SOAP_FMAC1 prodml22__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__VerticalInterferenceTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__VerticalInterferenceTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__VerticalInterferenceTest(soap, tag ? tag : "prodml22:VerticalInterferenceTest", -2, this, type)) + if (soap_out_prodml23__VerticalInterferenceTest(soap, tag ? tag : "prodml23:VerticalInterferenceTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__VerticalInterferenceTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__VerticalInterferenceTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__VerticalInterferenceTest(soap, this, tag, type); + return soap_get_prodml23__VerticalInterferenceTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_get_prodml22__VerticalInterferenceTest(struct soap *soap, prodml22__VerticalInterferenceTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VerticalInterferenceTest * SOAP_FMAC4 soap_get_prodml23__VerticalInterferenceTest(struct soap *soap, prodml23__VerticalInterferenceTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__VerticalInterferenceTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__VerticalInterferenceTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__TestPeriod::soap_default(struct soap *soap) +void prodml23__TestPeriod::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__TimeStamp(soap, &this->prodml22__TestPeriod::StartTime); - soap_default_eml23__TimeStamp(soap, &this->prodml22__TestPeriod::EndTime); - this->prodml22__TestPeriod::TestPeriodKind = NULL; - this->prodml22__TestPeriod::WellFlowingCondition = NULL; - this->prodml22__TestPeriod::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductRate(soap, &this->prodml22__TestPeriod::ProductRate); - this->prodml22__TestPeriod::uid = NULL; + soap_default_eml23__TimeStamp(soap, &this->prodml23__TestPeriod::StartTime); + soap_default_eml23__TimeStamp(soap, &this->prodml23__TestPeriod::EndTime); + this->prodml23__TestPeriod::TestPeriodKind = NULL; + this->prodml23__TestPeriod::WellFlowingCondition = NULL; + this->prodml23__TestPeriod::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductRate(soap, &this->prodml23__TestPeriod::ProductRate); + this->prodml23__TestPeriod::uid = NULL; } -void prodml22__TestPeriod::soap_serialize(struct soap *soap) const +void prodml23__TestPeriod::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__TestPeriod::StartTime, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__TestPeriod::StartTime); - soap_embedded(soap, &this->prodml22__TestPeriod::EndTime, SOAP_TYPE_eml23__TimeStamp); - soap_serialize_eml23__TimeStamp(soap, &this->prodml22__TestPeriod::EndTime); - soap_serialize_PointerToprodml22__TestPeriodKind(soap, &this->prodml22__TestPeriod::TestPeriodKind); - soap_serialize_PointerToprodml22__WellFlowingCondition(soap, &this->prodml22__TestPeriod::WellFlowingCondition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__TestPeriod::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductRate(soap, &this->prodml22__TestPeriod::ProductRate); + soap_embedded(soap, &this->prodml23__TestPeriod::StartTime, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__TestPeriod::StartTime); + soap_embedded(soap, &this->prodml23__TestPeriod::EndTime, SOAP_TYPE_eml23__TimeStamp); + soap_serialize_eml23__TimeStamp(soap, &this->prodml23__TestPeriod::EndTime); + soap_serialize_PointerToprodml23__TestPeriodKind(soap, &this->prodml23__TestPeriod::TestPeriodKind); + soap_serialize_PointerToprodml23__WellFlowingCondition(soap, &this->prodml23__TestPeriod::WellFlowingCondition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__TestPeriod::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductRate(soap, &this->prodml23__TestPeriod::ProductRate); #endif } -int prodml22__TestPeriod::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__TestPeriod::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__TestPeriod(soap, tag, id, this, type); + return soap_out_prodml23__TestPeriod(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TestPeriod(struct soap *soap, const char *tag, int id, const prodml22__TestPeriod *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TestPeriod(struct soap *soap, const char *tag, int id, const prodml23__TestPeriod *a, const char *type) { if (!type) - type = "prodml22:TestPeriod"; - if (((prodml22__TestPeriod*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__TestPeriod*)a)->uid), 1); + type = "prodml23:TestPeriod"; + if (((prodml23__TestPeriod*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__TestPeriod*)a)->uid), 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_gsoap_eml2_3_prodml22__TestPeriod), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod), type)) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__TestPeriod::StartTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__TestPeriod::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_eml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__TestPeriod::EndTime, "eml23:TimeStamp")) + if (soap_out_eml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__TestPeriod::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToprodml22__TestPeriodKind(soap, "prodml22:TestPeriodKind", -1, &a->prodml22__TestPeriod::TestPeriodKind, "prodml22:TestPeriodKind")) + if (soap_out_PointerToprodml23__TestPeriodKind(soap, "prodml23:TestPeriodKind", -1, &a->prodml23__TestPeriod::TestPeriodKind, "prodml23:TestPeriodKind")) return soap->error; - if (soap_out_PointerToprodml22__WellFlowingCondition(soap, "prodml22:WellFlowingCondition", -1, &a->prodml22__TestPeriod::WellFlowingCondition, "prodml22:WellFlowingCondition")) + if (soap_out_PointerToprodml23__WellFlowingCondition(soap, "prodml23:WellFlowingCondition", -1, &a->prodml23__TestPeriod::WellFlowingCondition, "prodml23:WellFlowingCondition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__TestPeriod::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__TestPeriod::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductRate(soap, "prodml22:ProductRate", -1, &a->prodml22__TestPeriod::ProductRate, "prodml22:ProductRate")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductRate(soap, "prodml23:ProductRate", -1, &a->prodml23__TestPeriod::ProductRate, "prodml23:ProductRate")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__TestPeriod::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__TestPeriod::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__TestPeriod(soap, tag, this, type); + return soap_in_prodml23__TestPeriod(soap, tag, this, type); } -SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_in_prodml22__TestPeriod(struct soap *soap, const char *tag, prodml22__TestPeriod *a, const char *type) +SOAP_FMAC3 prodml23__TestPeriod * SOAP_FMAC4 soap_in_prodml23__TestPeriod(struct soap *soap, const char *tag, prodml23__TestPeriod *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__TestPeriod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod, sizeof(prodml22__TestPeriod), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__TestPeriod*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod, sizeof(prodml23__TestPeriod), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__TestPeriod *)a->soap_in(soap, tag, type); + return (prodml23__TestPeriod *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -212918,9 +212883,9 @@ SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_in_prodml22__TestPeriod(struct const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__TestPeriod*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__TestPeriod*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__TestPeriod*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__TestPeriod*)a)->uid)) return NULL; } else if (soap->error) @@ -212936,37 +212901,37 @@ SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_in_prodml22__TestPeriod(struct for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__TestPeriod::StartTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__TestPeriod::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__TestPeriod::EndTime, "eml23:TimeStamp")) + { if (soap_in_eml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__TestPeriod::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } } if (soap_flag_TestPeriodKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TestPeriodKind(soap, "prodml22:TestPeriodKind", &a->prodml22__TestPeriod::TestPeriodKind, "prodml22:TestPeriodKind")) + { if (soap_in_PointerToprodml23__TestPeriodKind(soap, "prodml23:TestPeriodKind", &a->prodml23__TestPeriod::TestPeriodKind, "prodml23:TestPeriodKind")) { soap_flag_TestPeriodKind1--; continue; } } if (soap_flag_WellFlowingCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__WellFlowingCondition(soap, "prodml22:WellFlowingCondition", &a->prodml22__TestPeriod::WellFlowingCondition, "prodml22:WellFlowingCondition")) + { if (soap_in_PointerToprodml23__WellFlowingCondition(soap, "prodml23:WellFlowingCondition", &a->prodml23__TestPeriod::WellFlowingCondition, "prodml23:WellFlowingCondition")) { soap_flag_WellFlowingCondition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__TestPeriod::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__TestPeriod::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductRate(soap, "prodml22:ProductRate", &a->prodml22__TestPeriod::ProductRate, "prodml22:ProductRate")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductRate(soap, "prodml23:ProductRate", &a->prodml23__TestPeriod::ProductRate, "prodml23:ProductRate")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -212988,35 +212953,35 @@ SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_in_prodml22__TestPeriod(struct return NULL; } else - { a = (prodml22__TestPeriod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod, sizeof(prodml22__TestPeriod), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__TestPeriod *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod, sizeof(prodml23__TestPeriod), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml22__TestPeriod(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml23__TestPeriod(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__TestPeriod(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__TestPeriod(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__TestPeriod *p; - size_t k = sizeof(prodml22__TestPeriod); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod, n, gsoap_eml2_3_fdelete); + prodml23__TestPeriod *p; + size_t k = sizeof(prodml23__TestPeriod); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__TestPeriod); + { p = SOAP_NEW(soap, prodml23__TestPeriod); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__TestPeriod, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__TestPeriod, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__TestPeriod location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__TestPeriod location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -213026,90 +212991,90 @@ SOAP_FMAC1 prodml22__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml22__TestPeri return p; } -int prodml22__TestPeriod::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__TestPeriod::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__TestPeriod(soap, tag ? tag : "prodml22:TestPeriod", -2, this, type)) + if (soap_out_prodml23__TestPeriod(soap, tag ? tag : "prodml23:TestPeriod", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__TestPeriod::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__TestPeriod::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__TestPeriod(soap, this, tag, type); + return soap_get_prodml23__TestPeriod(soap, this, tag, type); } -SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_get_prodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TestPeriod * SOAP_FMAC4 soap_get_prodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__TestPeriod(soap, tag, p, type))) + if ((p = soap_in_prodml23__TestPeriod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductRate::soap_default(struct soap *soap) +void prodml23__ProductRate::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__ProductFluidKindExt(soap, &this->prodml22__ProductRate::ProductFluidKind); - this->prodml22__ProductRate::MassFlowRate = NULL; - this->prodml22__ProductRate::VolumeFlowRate = NULL; - this->prodml22__ProductRate::Remark = NULL; - this->prodml22__ProductRate::ProductFluidReference = NULL; + soap_default_prodml23__ProductFluidKindExt(soap, &this->prodml23__ProductRate::ProductFluidKind); + this->prodml23__ProductRate::MassFlowRate = NULL; + this->prodml23__ProductRate::VolumeFlowRate = NULL; + this->prodml23__ProductRate::Remark = NULL; + this->prodml23__ProductRate::ProductFluidReference = NULL; } -void prodml22__ProductRate::soap_serialize(struct soap *soap) const +void prodml23__ProductRate::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__ProductFluidKindExt(soap, &this->prodml22__ProductRate::ProductFluidKind); - soap_serialize_PointerToeml23__MassPerTimeMeasure(soap, &this->prodml22__ProductRate::MassFlowRate); - soap_serialize_PointerToeml23__FlowRateValue(soap, &this->prodml22__ProductRate::VolumeFlowRate); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductRate::Remark); + soap_serialize_prodml23__ProductFluidKindExt(soap, &this->prodml23__ProductRate::ProductFluidKind); + soap_serialize_PointerToeml23__MassPerTimeMeasure(soap, &this->prodml23__ProductRate::MassFlowRate); + soap_serialize_PointerToeml23__FlowRateValue(soap, &this->prodml23__ProductRate::VolumeFlowRate); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductRate::Remark); #endif } -int prodml22__ProductRate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductRate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductRate(soap, tag, id, this, type); + return soap_out_prodml23__ProductRate(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductRate(struct soap *soap, const char *tag, int id, const prodml22__ProductRate *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductRate(struct soap *soap, const char *tag, int id, const prodml23__ProductRate *a, const char *type) { if (!type) - type = "prodml22:ProductRate"; - if (((prodml22__ProductRate*)a)->ProductFluidReference) - { soap_set_attr(soap, "ProductFluidReference", soap_eml23__String642s(soap, *((prodml22__ProductRate*)a)->ProductFluidReference), 1); + type = "prodml23:ProductRate"; + if (((prodml23__ProductRate*)a)->ProductFluidReference) + { soap_set_attr(soap, "ProductFluidReference", soap_eml23__String642s(soap, *((prodml23__ProductRate*)a)->ProductFluidReference), 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_gsoap_eml2_3_prodml22__ProductRate), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate), type)) return soap->error; - if (soap_out_prodml22__ProductFluidKindExt(soap, "prodml22:ProductFluidKind", -1, &a->prodml22__ProductRate::ProductFluidKind, "prodml22:ProductFluidKindExt")) + if (soap_out_prodml23__ProductFluidKindExt(soap, "prodml23:ProductFluidKind", -1, &a->prodml23__ProductRate::ProductFluidKind, "prodml23:ProductFluidKindExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerTimeMeasure(soap, "prodml22:MassFlowRate", -1, &a->prodml22__ProductRate::MassFlowRate, "eml23:MassPerTimeMeasure")) + if (soap_out_PointerToeml23__MassPerTimeMeasure(soap, "prodml23:MassFlowRate", -1, &a->prodml23__ProductRate::MassFlowRate, "eml23:MassPerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__FlowRateValue(soap, "prodml22:VolumeFlowRate", -1, &a->prodml22__ProductRate::VolumeFlowRate, "eml23:FlowRateValue")) + if (soap_out_PointerToeml23__FlowRateValue(soap, "prodml23:VolumeFlowRate", -1, &a->prodml23__ProductRate::VolumeFlowRate, "eml23:FlowRateValue")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__ProductRate::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__ProductRate::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductRate::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductRate::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductRate(soap, tag, this, type); + return soap_in_prodml23__ProductRate(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_in_prodml22__ProductRate(struct soap *soap, const char *tag, prodml22__ProductRate *a, const char *type) +SOAP_FMAC3 prodml23__ProductRate * SOAP_FMAC4 soap_in_prodml23__ProductRate(struct soap *soap, const char *tag, prodml23__ProductRate *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductRate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, sizeof(prodml22__ProductRate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductRate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, sizeof(prodml23__ProductRate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductRate *)a->soap_in(soap, tag, type); + return (prodml23__ProductRate *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -213117,9 +213082,9 @@ SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_in_prodml22__ProductRate(stru const char *t = soap_attr_value(soap, "ProductFluidReference", 1, 0); if (t) { - if (!(((prodml22__ProductRate*)a)->ProductFluidReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__ProductRate*)a)->ProductFluidReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__ProductRate*)a)->ProductFluidReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__ProductRate*)a)->ProductFluidReference)) return NULL; } else if (soap->error) @@ -213134,25 +213099,25 @@ SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_in_prodml22__ProductRate(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ProductFluidKind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__ProductFluidKindExt(soap, "prodml22:ProductFluidKind", &a->prodml22__ProductRate::ProductFluidKind, "prodml22:ProductFluidKindExt")) + { if (soap_in_prodml23__ProductFluidKindExt(soap, "prodml23:ProductFluidKind", &a->prodml23__ProductRate::ProductFluidKind, "prodml23:ProductFluidKindExt")) { soap_flag_ProductFluidKind1--; continue; } } if (soap_flag_MassFlowRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerTimeMeasure(soap, "prodml22:MassFlowRate", &a->prodml22__ProductRate::MassFlowRate, "eml23:MassPerTimeMeasure")) + { if (soap_in_PointerToeml23__MassPerTimeMeasure(soap, "prodml23:MassFlowRate", &a->prodml23__ProductRate::MassFlowRate, "eml23:MassPerTimeMeasure")) { soap_flag_MassFlowRate1--; continue; } } if (soap_flag_VolumeFlowRate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__FlowRateValue(soap, "prodml22:VolumeFlowRate", &a->prodml22__ProductRate::VolumeFlowRate, "eml23:FlowRateValue")) + { if (soap_in_PointerToeml23__FlowRateValue(soap, "prodml23:VolumeFlowRate", &a->prodml23__ProductRate::VolumeFlowRate, "eml23:FlowRateValue")) { soap_flag_VolumeFlowRate1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__ProductRate::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__ProductRate::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -213176,35 +213141,35 @@ SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_in_prodml22__ProductRate(stru return NULL; } else - { a = (prodml22__ProductRate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, sizeof(prodml22__ProductRate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductRate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, sizeof(prodml23__ProductRate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductRate * SOAP_FMAC2 soap_instantiate_prodml22__ProductRate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductRate * SOAP_FMAC2 soap_instantiate_prodml23__ProductRate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductRate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductRate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductRate *p; - size_t k = sizeof(prodml22__ProductRate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, n, gsoap_eml2_3_fdelete); + prodml23__ProductRate *p; + size_t k = sizeof(prodml23__ProductRate); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductRate); + { p = SOAP_NEW(soap, prodml23__ProductRate); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductRate, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductRate, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductRate location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductRate location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -213214,58 +213179,58 @@ SOAP_FMAC1 prodml22__ProductRate * SOAP_FMAC2 soap_instantiate_prodml22__Product return p; } -int prodml22__ProductRate::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductRate::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductRate(soap, tag ? tag : "prodml22:ProductRate", -2, this, type)) + if (soap_out_prodml23__ProductRate(soap, tag ? tag : "prodml23:ProductRate", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductRate::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductRate::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductRate(soap, this, tag, type); + return soap_get_prodml23__ProductRate(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_get_prodml22__ProductRate(struct soap *soap, prodml22__ProductRate *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductRate * SOAP_FMAC4 soap_get_prodml23__ProductRate(struct soap *soap, prodml23__ProductRate *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductRate(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductRate(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductionTransientTest::soap_default(struct soap *soap) +void prodml23__ProductionTransientTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__ProductionTransientTest::IntervalMeasurementSet = NULL; + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__ProductionTransientTest::IntervalMeasurementSet = NULL; } -void prodml22__ProductionTransientTest::soap_serialize(struct soap *soap) const +void prodml23__ProductionTransientTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__ProductionTransientTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__ProductionTransientTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__ProductionTransientTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductionTransientTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductionTransientTest(soap, tag, id, this, type); + return soap_out_prodml23__ProductionTransientTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductionTransientTest(struct soap *soap, const char *tag, int id, const prodml22__ProductionTransientTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductionTransientTest(struct soap *soap, const char *tag, int id, const prodml23__ProductionTransientTest *a, const char *type) { if (!type) - type = "prodml22:ProductionTransientTest"; + type = "prodml23:ProductionTransientTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ProductionTransientTest), type ? type : "prodml22:ProductionTransientTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest), type ? type : "prodml23:ProductionTransientTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -213287,32 +213252,32 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductionTransientTest(struct soap return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__ProductionTransientTest::IntervalMeasurementSet) - { if (soap_element_empty(soap, "prodml22:IntervalMeasurementSet", 0, NULL)) + if (!a->prodml23__ProductionTransientTest::IntervalMeasurementSet) + { if (soap_element_empty(soap, "prodml23:IntervalMeasurementSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__ProductionTransientTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + else if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__ProductionTransientTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductionTransientTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductionTransientTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductionTransientTest(soap, tag, this, type); + return soap_in_prodml23__ProductionTransientTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml22__ProductionTransientTest(struct soap *soap, const char *tag, prodml22__ProductionTransientTest *a, const char *type) +SOAP_FMAC3 prodml23__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml23__ProductionTransientTest(struct soap *soap, const char *tag, prodml23__ProductionTransientTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductionTransientTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest, sizeof(prodml22__ProductionTransientTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductionTransientTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest, sizeof(prodml23__ProductionTransientTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductionTransientTest *)a->soap_in(soap, tag, type); + return (prodml23__ProductionTransientTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -213385,7 +213350,7 @@ SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml22__Prod continue; } if (soap_flag_IntervalMeasurementSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__ProductionTransientTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__ProductionTransientTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) { soap_flag_IntervalMeasurementSet1--; continue; } @@ -213399,7 +213364,7 @@ SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml22__Prod } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__ProductionTransientTest::IntervalMeasurementSet)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__ProductionTransientTest::IntervalMeasurementSet)) { soap->error = SOAP_OCCURS; return NULL; } @@ -213409,35 +213374,35 @@ SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml22__Prod return NULL; } else - { a = (prodml22__ProductionTransientTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest, sizeof(prodml22__ProductionTransientTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductionTransientTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest, sizeof(prodml23__ProductionTransientTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodml22__ProductionTransientTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodml23__ProductionTransientTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductionTransientTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductionTransientTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductionTransientTest *p; - size_t k = sizeof(prodml22__ProductionTransientTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest, n, gsoap_eml2_3_fdelete); + prodml23__ProductionTransientTest *p; + size_t k = sizeof(prodml23__ProductionTransientTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductionTransientTest); + { p = SOAP_NEW(soap, prodml23__ProductionTransientTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductionTransientTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductionTransientTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductionTransientTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductionTransientTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -213447,64 +213412,64 @@ SOAP_FMAC1 prodml22__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__ProductionTransientTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductionTransientTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductionTransientTest(soap, tag ? tag : "prodml22:ProductionTransientTest", -2, this, type)) + if (soap_out_prodml23__ProductionTransientTest(soap, tag ? tag : "prodml23:ProductionTransientTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductionTransientTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductionTransientTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductionTransientTest(soap, this, tag, type); + return soap_get_prodml23__ProductionTransientTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_get_prodml22__ProductionTransientTest(struct soap *soap, prodml22__ProductionTransientTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductionTransientTest * SOAP_FMAC4 soap_get_prodml23__ProductionTransientTest(struct soap *soap, prodml23__ProductionTransientTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductionTransientTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductionTransientTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductionFlowTest::soap_default(struct soap *soap) +void prodml23__ProductionFlowTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__ProductionFlowTest::Validated = NULL; - this->prodml22__ProductionFlowTest::WellTestMethod = NULL; - this->prodml22__ProductionFlowTest::EffectiveDate = NULL; - this->prodml22__ProductionFlowTest::IntervalMeasurementSet = NULL; + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__ProductionFlowTest::Validated = NULL; + this->prodml23__ProductionFlowTest::WellTestMethod = NULL; + this->prodml23__ProductionFlowTest::EffectiveDate = NULL; + this->prodml23__ProductionFlowTest::IntervalMeasurementSet = NULL; } -void prodml22__ProductionFlowTest::soap_serialize(struct soap *soap) const +void prodml23__ProductionFlowTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->prodml22__ProductionFlowTest::Validated); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductionFlowTest::WellTestMethod); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__ProductionFlowTest::EffectiveDate); - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__ProductionFlowTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerTobool(soap, &this->prodml23__ProductionFlowTest::Validated); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductionFlowTest::WellTestMethod); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__ProductionFlowTest::EffectiveDate); + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__ProductionFlowTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__ProductionFlowTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductionFlowTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductionFlowTest(soap, tag, id, this, type); + return soap_out_prodml23__ProductionFlowTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductionFlowTest(struct soap *soap, const char *tag, int id, const prodml22__ProductionFlowTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductionFlowTest(struct soap *soap, const char *tag, int id, const prodml23__ProductionFlowTest *a, const char *type) { if (!type) - type = "prodml22:ProductionFlowTest"; + type = "prodml23:ProductionFlowTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ProductionFlowTest), type ? type : "prodml22:ProductionFlowTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest), type ? type : "prodml23:ProductionFlowTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -213526,38 +213491,38 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductionFlowTest(struct soap *soa return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:Validated", -1, &a->prodml22__ProductionFlowTest::Validated, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:Validated", -1, &a->prodml23__ProductionFlowTest::Validated, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:WellTestMethod", -1, &a->prodml22__ProductionFlowTest::WellTestMethod, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:WellTestMethod", -1, &a->prodml23__ProductionFlowTest::WellTestMethod, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EffectiveDate", -1, &a->prodml22__ProductionFlowTest::EffectiveDate, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EffectiveDate", -1, &a->prodml23__ProductionFlowTest::EffectiveDate, "eml23:TimeStamp")) return soap->error; - if (!a->prodml22__ProductionFlowTest::IntervalMeasurementSet) - { if (soap_element_empty(soap, "prodml22:IntervalMeasurementSet", 0, NULL)) + if (!a->prodml23__ProductionFlowTest::IntervalMeasurementSet) + { if (soap_element_empty(soap, "prodml23:IntervalMeasurementSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__ProductionFlowTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + else if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__ProductionFlowTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductionFlowTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductionFlowTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductionFlowTest(soap, tag, this, type); + return soap_in_prodml23__ProductionFlowTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml22__ProductionFlowTest(struct soap *soap, const char *tag, prodml22__ProductionFlowTest *a, const char *type) +SOAP_FMAC3 prodml23__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml23__ProductionFlowTest(struct soap *soap, const char *tag, prodml23__ProductionFlowTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductionFlowTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest, sizeof(prodml22__ProductionFlowTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductionFlowTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest, sizeof(prodml23__ProductionFlowTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductionFlowTest *)a->soap_in(soap, tag, type); + return (prodml23__ProductionFlowTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -213633,25 +213598,25 @@ SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml22__Productio continue; } if (soap_flag_Validated1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:Validated", &a->prodml22__ProductionFlowTest::Validated, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:Validated", &a->prodml23__ProductionFlowTest::Validated, "xsd:boolean")) { soap_flag_Validated1--; continue; } } if (soap_flag_WellTestMethod1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:WellTestMethod", &a->prodml22__ProductionFlowTest::WellTestMethod, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:WellTestMethod", &a->prodml23__ProductionFlowTest::WellTestMethod, "eml23:String64")) { soap_flag_WellTestMethod1--; continue; } } if (soap_flag_EffectiveDate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EffectiveDate", &a->prodml22__ProductionFlowTest::EffectiveDate, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EffectiveDate", &a->prodml23__ProductionFlowTest::EffectiveDate, "eml23:TimeStamp")) { soap_flag_EffectiveDate1--; continue; } } if (soap_flag_IntervalMeasurementSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__ProductionFlowTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__ProductionFlowTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) { soap_flag_IntervalMeasurementSet1--; continue; } @@ -213665,7 +213630,7 @@ SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml22__Productio } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__ProductionFlowTest::IntervalMeasurementSet)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__ProductionFlowTest::IntervalMeasurementSet)) { soap->error = SOAP_OCCURS; return NULL; } @@ -213675,35 +213640,35 @@ SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml22__Productio return NULL; } else - { a = (prodml22__ProductionFlowTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest, sizeof(prodml22__ProductionFlowTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductionFlowTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest, sizeof(prodml23__ProductionFlowTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__ProductionFlowTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml23__ProductionFlowTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductionFlowTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductionFlowTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductionFlowTest *p; - size_t k = sizeof(prodml22__ProductionFlowTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest, n, gsoap_eml2_3_fdelete); + prodml23__ProductionFlowTest *p; + size_t k = sizeof(prodml23__ProductionFlowTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductionFlowTest); + { p = SOAP_NEW(soap, prodml23__ProductionFlowTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductionFlowTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductionFlowTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductionFlowTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductionFlowTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -213713,99 +213678,99 @@ SOAP_FMAC1 prodml22__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__ProductionFlowTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductionFlowTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductionFlowTest(soap, tag ? tag : "prodml22:ProductionFlowTest", -2, this, type)) + if (soap_out_prodml23__ProductionFlowTest(soap, tag ? tag : "prodml23:ProductionFlowTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductionFlowTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductionFlowTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductionFlowTest(soap, this, tag, type); + return soap_get_prodml23__ProductionFlowTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_get_prodml22__ProductionFlowTest(struct soap *soap, prodml22__ProductionFlowTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductionFlowTest * SOAP_FMAC4 soap_get_prodml23__ProductionFlowTest(struct soap *soap, prodml23__ProductionFlowTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductionFlowTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductionFlowTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OtherData::soap_default(struct soap *soap) +void prodml23__OtherData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFlowTestData::soap_default(soap); - this->prodml22__OtherData::DataChannel = NULL; + this->prodml23__AbstractFlowTestData::soap_default(soap); + this->prodml23__OtherData::DataChannel = NULL; } -void prodml22__OtherData::soap_serialize(struct soap *soap) const +void prodml23__OtherData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__OtherData::DataChannel); - this->prodml22__AbstractFlowTestData::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__OtherData::DataChannel); + this->prodml23__AbstractFlowTestData::soap_serialize(soap); #endif } -int prodml22__OtherData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OtherData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OtherData(soap, tag, id, this, type); + return soap_out_prodml23__OtherData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OtherData(struct soap *soap, const char *tag, int id, const prodml22__OtherData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OtherData(struct soap *soap, const char *tag, int id, const prodml23__OtherData *a, const char *type) { if (!type) - type = "prodml22:OtherData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:OtherData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__OtherData), type ? type : "prodml22:OtherData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData), type ? type : "prodml23:OtherData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (!a->prodml22__OtherData::DataChannel) - { if (soap_element_empty(soap, "prodml22:DataChannel", 0, NULL)) + if (!a->prodml23__OtherData::DataChannel) + { if (soap_element_empty(soap, "prodml23:DataChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:DataChannel", -1, &a->prodml22__OtherData::DataChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:DataChannel", -1, &a->prodml23__OtherData::DataChannel, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OtherData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OtherData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OtherData(soap, tag, this, type); + return soap_in_prodml23__OtherData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_in_prodml22__OtherData(struct soap *soap, const char *tag, prodml22__OtherData *a, const char *type) +SOAP_FMAC3 prodml23__OtherData * SOAP_FMAC4 soap_in_prodml23__OtherData(struct soap *soap, const char *tag, prodml23__OtherData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OtherData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, sizeof(prodml22__OtherData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OtherData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, sizeof(prodml23__OtherData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OtherData *)a->soap_in(soap, tag, type); + return (prodml23__OtherData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -213813,9 +213778,9 @@ SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_in_prodml22__OtherData(struct s const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -213831,31 +213796,31 @@ SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_in_prodml22__OtherData(struct s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet2--; continue; } } if (soap_flag_TimeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel2--; continue; } } if (soap_flag_TimeSeriesPointRepresentation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_DataChannel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:DataChannel", &a->prodml22__OtherData::DataChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:DataChannel", &a->prodml23__OtherData::DataChannel, "eml23:DataObjectReference")) { soap_flag_DataChannel1--; continue; } @@ -213869,7 +213834,7 @@ SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_in_prodml22__OtherData(struct s } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__OtherData::DataChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__OtherData::DataChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -213879,35 +213844,35 @@ SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_in_prodml22__OtherData(struct s return NULL; } else - { a = (prodml22__OtherData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, sizeof(prodml22__OtherData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OtherData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, sizeof(prodml23__OtherData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OtherData * SOAP_FMAC2 soap_instantiate_prodml22__OtherData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OtherData * SOAP_FMAC2 soap_instantiate_prodml23__OtherData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OtherData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OtherData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OtherData *p; - size_t k = sizeof(prodml22__OtherData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, n, gsoap_eml2_3_fdelete); + prodml23__OtherData *p; + size_t k = sizeof(prodml23__OtherData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OtherData); + { p = SOAP_NEW(soap, prodml23__OtherData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OtherData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OtherData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OtherData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OtherData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -213917,58 +213882,58 @@ SOAP_FMAC1 prodml22__OtherData * SOAP_FMAC2 soap_instantiate_prodml22__OtherData return p; } -int prodml22__OtherData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OtherData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OtherData(soap, tag ? tag : "prodml22:OtherData", -2, this, type)) + if (soap_out_prodml23__OtherData(soap, tag ? tag : "prodml23:OtherData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OtherData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OtherData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OtherData(soap, this, tag, type); + return soap_get_prodml23__OtherData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_get_prodml22__OtherData(struct soap *soap, prodml22__OtherData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OtherData * SOAP_FMAC4 soap_get_prodml23__OtherData(struct soap *soap, prodml23__OtherData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OtherData(soap, tag, p, type))) + if ((p = soap_in_prodml23__OtherData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InterwellTest::soap_default(struct soap *soap) +void prodml23__InterwellTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - soap_default_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__InterwellTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_default(soap); + soap_default_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__InterwellTest::IntervalMeasurementSet); } -void prodml22__InterwellTest::soap_serialize(struct soap *soap) const +void prodml23__InterwellTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__InterwellTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__InterwellTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__InterwellTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InterwellTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InterwellTest(soap, tag, id, this, type); + return soap_out_prodml23__InterwellTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterwellTest(struct soap *soap, const char *tag, int id, const prodml22__InterwellTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterwellTest(struct soap *soap, const char *tag, int id, const prodml23__InterwellTest *a, const char *type) { if (!type) - type = "prodml22:InterwellTest"; + type = "prodml23:InterwellTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__InterwellTest), type ? type : "prodml22:InterwellTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest), type ? type : "prodml23:InterwellTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -213990,28 +213955,28 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterwellTest(struct soap *soap, co return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__InterwellTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__InterwellTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InterwellTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterwellTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InterwellTest(soap, tag, this, type); + return soap_in_prodml23__InterwellTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_in_prodml22__InterwellTest(struct soap *soap, const char *tag, prodml22__InterwellTest *a, const char *type) +SOAP_FMAC3 prodml23__InterwellTest * SOAP_FMAC4 soap_in_prodml23__InterwellTest(struct soap *soap, const char *tag, prodml23__InterwellTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InterwellTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest, sizeof(prodml22__InterwellTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InterwellTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest, sizeof(prodml23__InterwellTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InterwellTest *)a->soap_in(soap, tag, type); + return (prodml23__InterwellTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -214083,7 +214048,7 @@ SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_in_prodml22__InterwellTest( continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__InterwellTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__InterwellTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -214095,7 +214060,7 @@ SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_in_prodml22__InterwellTest( } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || a->prodml22__InterwellTest::IntervalMeasurementSet.size() < 1)) + if ((!a->eml23__AbstractObject::Citation || a->prodml23__InterwellTest::IntervalMeasurementSet.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -214105,35 +214070,35 @@ SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_in_prodml22__InterwellTest( return NULL; } else - { a = (prodml22__InterwellTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest, SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest, sizeof(prodml22__InterwellTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InterwellTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest, SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest, sizeof(prodml23__InterwellTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml22__InterwellTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml23__InterwellTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InterwellTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InterwellTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InterwellTest *p; - size_t k = sizeof(prodml22__InterwellTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest, n, gsoap_eml2_3_fdelete); + prodml23__InterwellTest *p; + size_t k = sizeof(prodml23__InterwellTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InterwellTest); + { p = SOAP_NEW(soap, prodml23__InterwellTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InterwellTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InterwellTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InterwellTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InterwellTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -214143,64 +214108,64 @@ SOAP_FMAC1 prodml22__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml22__Inter return p; } -int prodml22__InterwellTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InterwellTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InterwellTest(soap, tag ? tag : "prodml22:InterwellTest", -2, this, type)) + if (soap_out_prodml23__InterwellTest(soap, tag ? tag : "prodml23:InterwellTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InterwellTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterwellTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InterwellTest(soap, this, tag, type); + return soap_get_prodml23__InterwellTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_get_prodml22__InterwellTest(struct soap *soap, prodml22__InterwellTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterwellTest * SOAP_FMAC4 soap_get_prodml23__InterwellTest(struct soap *soap, prodml23__InterwellTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InterwellTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__InterwellTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InjectionFlowTest::soap_default(struct soap *soap) +void prodml23__InjectionFlowTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__InjectionFlowTest::Validated = NULL; - this->prodml22__InjectionFlowTest::WellTestMethod = NULL; - this->prodml22__InjectionFlowTest::EffectiveDate = NULL; - this->prodml22__InjectionFlowTest::IntervalMeasurementSet = NULL; + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__InjectionFlowTest::Validated = NULL; + this->prodml23__InjectionFlowTest::WellTestMethod = NULL; + this->prodml23__InjectionFlowTest::EffectiveDate = NULL; + this->prodml23__InjectionFlowTest::IntervalMeasurementSet = NULL; } -void prodml22__InjectionFlowTest::soap_serialize(struct soap *soap) const +void prodml23__InjectionFlowTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerTobool(soap, &this->prodml22__InjectionFlowTest::Validated); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__InjectionFlowTest::WellTestMethod); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__InjectionFlowTest::EffectiveDate); - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__InjectionFlowTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerTobool(soap, &this->prodml23__InjectionFlowTest::Validated); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__InjectionFlowTest::WellTestMethod); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__InjectionFlowTest::EffectiveDate); + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__InjectionFlowTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__InjectionFlowTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InjectionFlowTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InjectionFlowTest(soap, tag, id, this, type); + return soap_out_prodml23__InjectionFlowTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InjectionFlowTest(struct soap *soap, const char *tag, int id, const prodml22__InjectionFlowTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InjectionFlowTest(struct soap *soap, const char *tag, int id, const prodml23__InjectionFlowTest *a, const char *type) { if (!type) - type = "prodml22:InjectionFlowTest"; + type = "prodml23:InjectionFlowTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__InjectionFlowTest), type ? type : "prodml22:InjectionFlowTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest), type ? type : "prodml23:InjectionFlowTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -214222,38 +214187,38 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InjectionFlowTest(struct soap *soap return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerTobool(soap, "prodml22:Validated", -1, &a->prodml22__InjectionFlowTest::Validated, "xsd:boolean")) + if (soap_out_PointerTobool(soap, "prodml23:Validated", -1, &a->prodml23__InjectionFlowTest::Validated, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:WellTestMethod", -1, &a->prodml22__InjectionFlowTest::WellTestMethod, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:WellTestMethod", -1, &a->prodml23__InjectionFlowTest::WellTestMethod, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EffectiveDate", -1, &a->prodml22__InjectionFlowTest::EffectiveDate, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EffectiveDate", -1, &a->prodml23__InjectionFlowTest::EffectiveDate, "eml23:TimeStamp")) return soap->error; - if (!a->prodml22__InjectionFlowTest::IntervalMeasurementSet) - { if (soap_element_empty(soap, "prodml22:IntervalMeasurementSet", 0, NULL)) + if (!a->prodml23__InjectionFlowTest::IntervalMeasurementSet) + { if (soap_element_empty(soap, "prodml23:IntervalMeasurementSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__InjectionFlowTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + else if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__InjectionFlowTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InjectionFlowTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InjectionFlowTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InjectionFlowTest(soap, tag, this, type); + return soap_in_prodml23__InjectionFlowTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml22__InjectionFlowTest(struct soap *soap, const char *tag, prodml22__InjectionFlowTest *a, const char *type) +SOAP_FMAC3 prodml23__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml23__InjectionFlowTest(struct soap *soap, const char *tag, prodml23__InjectionFlowTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InjectionFlowTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest, sizeof(prodml22__InjectionFlowTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InjectionFlowTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest, sizeof(prodml23__InjectionFlowTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InjectionFlowTest *)a->soap_in(soap, tag, type); + return (prodml23__InjectionFlowTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -214329,25 +214294,25 @@ SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml22__InjectionF continue; } if (soap_flag_Validated1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTobool(soap, "prodml22:Validated", &a->prodml22__InjectionFlowTest::Validated, "xsd:boolean")) + { if (soap_in_PointerTobool(soap, "prodml23:Validated", &a->prodml23__InjectionFlowTest::Validated, "xsd:boolean")) { soap_flag_Validated1--; continue; } } if (soap_flag_WellTestMethod1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:WellTestMethod", &a->prodml22__InjectionFlowTest::WellTestMethod, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:WellTestMethod", &a->prodml23__InjectionFlowTest::WellTestMethod, "eml23:String64")) { soap_flag_WellTestMethod1--; continue; } } if (soap_flag_EffectiveDate1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EffectiveDate", &a->prodml22__InjectionFlowTest::EffectiveDate, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EffectiveDate", &a->prodml23__InjectionFlowTest::EffectiveDate, "eml23:TimeStamp")) { soap_flag_EffectiveDate1--; continue; } } if (soap_flag_IntervalMeasurementSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__InjectionFlowTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__InjectionFlowTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) { soap_flag_IntervalMeasurementSet1--; continue; } @@ -214361,7 +214326,7 @@ SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml22__InjectionF } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__InjectionFlowTest::IntervalMeasurementSet)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__InjectionFlowTest::IntervalMeasurementSet)) { soap->error = SOAP_OCCURS; return NULL; } @@ -214371,35 +214336,35 @@ SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml22__InjectionF return NULL; } else - { a = (prodml22__InjectionFlowTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest, sizeof(prodml22__InjectionFlowTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InjectionFlowTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest, sizeof(prodml23__InjectionFlowTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__InjectionFlowTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml23__InjectionFlowTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InjectionFlowTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InjectionFlowTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InjectionFlowTest *p; - size_t k = sizeof(prodml22__InjectionFlowTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest, n, gsoap_eml2_3_fdelete); + prodml23__InjectionFlowTest *p; + size_t k = sizeof(prodml23__InjectionFlowTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InjectionFlowTest); + { p = SOAP_NEW(soap, prodml23__InjectionFlowTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InjectionFlowTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InjectionFlowTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InjectionFlowTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InjectionFlowTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -214409,60 +214374,60 @@ SOAP_FMAC1 prodml22__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__I return p; } -int prodml22__InjectionFlowTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InjectionFlowTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InjectionFlowTest(soap, tag ? tag : "prodml22:InjectionFlowTest", -2, this, type)) + if (soap_out_prodml23__InjectionFlowTest(soap, tag ? tag : "prodml23:InjectionFlowTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InjectionFlowTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InjectionFlowTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InjectionFlowTest(soap, this, tag, type); + return soap_get_prodml23__InjectionFlowTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_get_prodml22__InjectionFlowTest(struct soap *soap, prodml22__InjectionFlowTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InjectionFlowTest * SOAP_FMAC4 soap_get_prodml23__InjectionFlowTest(struct soap *soap, prodml23__InjectionFlowTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InjectionFlowTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__InjectionFlowTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FormationTesterStation::soap_default(struct soap *soap) +void prodml23__FormationTesterStation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__FormationTesterStation::TieInLog = NULL; - this->prodml22__FormationTesterStation::IntervalMeasurementSet = NULL; + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__FormationTesterStation::TieInLog = NULL; + this->prodml23__FormationTesterStation::IntervalMeasurementSet = NULL; } -void prodml22__FormationTesterStation::soap_serialize(struct soap *soap) const +void prodml23__FormationTesterStation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FormationTesterStation::TieInLog); - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__FormationTesterStation::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FormationTesterStation::TieInLog); + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__FormationTesterStation::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__FormationTesterStation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FormationTesterStation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FormationTesterStation(soap, tag, id, this, type); + return soap_out_prodml23__FormationTesterStation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationTesterStation(struct soap *soap, const char *tag, int id, const prodml22__FormationTesterStation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FormationTesterStation(struct soap *soap, const char *tag, int id, const prodml23__FormationTesterStation *a, const char *type) { if (!type) - type = "prodml22:FormationTesterStation"; + type = "prodml23:FormationTesterStation"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FormationTesterStation), type ? type : "prodml22:FormationTesterStation")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation), type ? type : "prodml23:FormationTesterStation")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -214484,38 +214449,38 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationTesterStation(struct soap return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__FormationTesterStation::TieInLog) - { if (soap_element_empty(soap, "prodml22:TieInLog", 0, NULL)) + if (!a->prodml23__FormationTesterStation::TieInLog) + { if (soap_element_empty(soap, "prodml23:TieInLog", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TieInLog", -1, &a->prodml22__FormationTesterStation::TieInLog, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TieInLog", -1, &a->prodml23__FormationTesterStation::TieInLog, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FormationTesterStation::IntervalMeasurementSet) - { if (soap_element_empty(soap, "prodml22:IntervalMeasurementSet", 0, NULL)) + if (!a->prodml23__FormationTesterStation::IntervalMeasurementSet) + { if (soap_element_empty(soap, "prodml23:IntervalMeasurementSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__FormationTesterStation::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + else if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__FormationTesterStation::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FormationTesterStation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FormationTesterStation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FormationTesterStation(soap, tag, this, type); + return soap_in_prodml23__FormationTesterStation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_in_prodml22__FormationTesterStation(struct soap *soap, const char *tag, prodml22__FormationTesterStation *a, const char *type) +SOAP_FMAC3 prodml23__FormationTesterStation * SOAP_FMAC4 soap_in_prodml23__FormationTesterStation(struct soap *soap, const char *tag, prodml23__FormationTesterStation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FormationTesterStation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation, sizeof(prodml22__FormationTesterStation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FormationTesterStation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation, sizeof(prodml23__FormationTesterStation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FormationTesterStation *)a->soap_in(soap, tag, type); + return (prodml23__FormationTesterStation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -214589,13 +214554,13 @@ SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_in_prodml22__Forma continue; } if (soap_flag_TieInLog1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TieInLog", &a->prodml22__FormationTesterStation::TieInLog, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TieInLog", &a->prodml23__FormationTesterStation::TieInLog, "eml23:DataObjectReference")) { soap_flag_TieInLog1--; continue; } } if (soap_flag_IntervalMeasurementSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__FormationTesterStation::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__FormationTesterStation::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) { soap_flag_IntervalMeasurementSet1--; continue; } @@ -214609,7 +214574,7 @@ SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_in_prodml22__Forma } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FormationTesterStation::TieInLog || !a->prodml22__FormationTesterStation::IntervalMeasurementSet)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FormationTesterStation::TieInLog || !a->prodml23__FormationTesterStation::IntervalMeasurementSet)) { soap->error = SOAP_OCCURS; return NULL; } @@ -214619,35 +214584,35 @@ SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_in_prodml22__Forma return NULL; } else - { a = (prodml22__FormationTesterStation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation, sizeof(prodml22__FormationTesterStation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FormationTesterStation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation, sizeof(prodml23__FormationTesterStation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml22__FormationTesterStation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml23__FormationTesterStation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FormationTesterStation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FormationTesterStation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FormationTesterStation *p; - size_t k = sizeof(prodml22__FormationTesterStation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation, n, gsoap_eml2_3_fdelete); + prodml23__FormationTesterStation *p; + size_t k = sizeof(prodml23__FormationTesterStation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FormationTesterStation); + { p = SOAP_NEW(soap, prodml23__FormationTesterStation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FormationTesterStation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FormationTesterStation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FormationTesterStation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FormationTesterStation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -214657,106 +214622,106 @@ SOAP_FMAC1 prodml22__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__FormationTesterStation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FormationTesterStation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FormationTesterStation(soap, tag ? tag : "prodml22:FormationTesterStation", -2, this, type)) + if (soap_out_prodml23__FormationTesterStation(soap, tag ? tag : "prodml23:FormationTesterStation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FormationTesterStation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FormationTesterStation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FormationTesterStation(soap, this, tag, type); + return soap_get_prodml23__FormationTesterStation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_get_prodml22__FormationTesterStation(struct soap *soap, prodml22__FormationTesterStation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FormationTesterStation * SOAP_FMAC4 soap_get_prodml23__FormationTesterStation(struct soap *soap, prodml23__FormationTesterStation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FormationTesterStation(soap, tag, p, type))) + if ((p = soap_in_prodml23__FormationTesterStation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FlowTestMeasurementSet::soap_default(struct soap *soap) +void prodml23__FlowTestMeasurementSet::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestMeasurementSet::Remark = NULL; - this->prodml22__FlowTestMeasurementSet::TestPeriod = NULL; - this->prodml22__FlowTestMeasurementSet::Location = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__OtherData(soap, &this->prodml22__FlowTestMeasurementSet::OtherData); - soap_default_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap, &this->prodml22__FlowTestMeasurementSet::MeasuredFlowRate); - soap_default_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap, &this->prodml22__FlowTestMeasurementSet::MeasuredPressure); - this->prodml22__FlowTestMeasurementSet::FluidComponentCatalog = NULL; - this->prodml22__FlowTestMeasurementSet::uid = NULL; + this->prodml23__FlowTestMeasurementSet::Remark = NULL; + this->prodml23__FlowTestMeasurementSet::TestPeriod = NULL; + this->prodml23__FlowTestMeasurementSet::Location = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__OtherData(soap, &this->prodml23__FlowTestMeasurementSet::OtherData); + soap_default_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap, &this->prodml23__FlowTestMeasurementSet::MeasuredFlowRate); + soap_default_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap, &this->prodml23__FlowTestMeasurementSet::MeasuredPressure); + this->prodml23__FlowTestMeasurementSet::FluidComponentCatalog = NULL; + this->prodml23__FlowTestMeasurementSet::uid = NULL; } -void prodml22__FlowTestMeasurementSet::soap_serialize(struct soap *soap) const +void prodml23__FlowTestMeasurementSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FlowTestMeasurementSet::Remark); - soap_serialize_PointerToprodml22__TestPeriod(soap, &this->prodml22__FlowTestMeasurementSet::TestPeriod); - soap_serialize_PointerToprodml22__FlowTestLocation(soap, &this->prodml22__FlowTestMeasurementSet::Location); - soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherData(soap, &this->prodml22__FlowTestMeasurementSet::OtherData); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap, &this->prodml22__FlowTestMeasurementSet::MeasuredFlowRate); - soap_serialize_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap, &this->prodml22__FlowTestMeasurementSet::MeasuredPressure); - soap_serialize_PointerToprodml22__FluidComponentCatalog(soap, &this->prodml22__FlowTestMeasurementSet::FluidComponentCatalog); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FlowTestMeasurementSet::Remark); + soap_serialize_PointerToprodml23__TestPeriod(soap, &this->prodml23__FlowTestMeasurementSet::TestPeriod); + soap_serialize_PointerToprodml23__FlowTestLocation(soap, &this->prodml23__FlowTestMeasurementSet::Location); + soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherData(soap, &this->prodml23__FlowTestMeasurementSet::OtherData); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap, &this->prodml23__FlowTestMeasurementSet::MeasuredFlowRate); + soap_serialize_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap, &this->prodml23__FlowTestMeasurementSet::MeasuredPressure); + soap_serialize_PointerToprodml23__FluidComponentCatalog(soap, &this->prodml23__FlowTestMeasurementSet::FluidComponentCatalog); #endif } -int prodml22__FlowTestMeasurementSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FlowTestMeasurementSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FlowTestMeasurementSet(soap, tag, id, this, type); + return soap_out_prodml23__FlowTestMeasurementSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestMeasurementSet(struct soap *soap, const char *tag, int id, const prodml22__FlowTestMeasurementSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestMeasurementSet(struct soap *soap, const char *tag, int id, const prodml23__FlowTestMeasurementSet *a, const char *type) { if (!type) - type = "prodml22:FlowTestMeasurementSet"; - if (((prodml22__FlowTestMeasurementSet*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__FlowTestMeasurementSet*)a)->uid), 1); + type = "prodml23:FlowTestMeasurementSet"; + if (((prodml23__FlowTestMeasurementSet*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__FlowTestMeasurementSet*)a)->uid), 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_gsoap_eml2_3_prodml22__FlowTestMeasurementSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FlowTestMeasurementSet::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FlowTestMeasurementSet::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__TestPeriod(soap, "prodml22:TestPeriod", -1, &a->prodml22__FlowTestMeasurementSet::TestPeriod, "prodml22:TestPeriod")) + if (soap_out_PointerToprodml23__TestPeriod(soap, "prodml23:TestPeriod", -1, &a->prodml23__FlowTestMeasurementSet::TestPeriod, "prodml23:TestPeriod")) return soap->error; - if (!a->prodml22__FlowTestMeasurementSet::Location) - { if (soap_element_empty(soap, "prodml22:Location", 0, NULL)) + if (!a->prodml23__FlowTestMeasurementSet::Location) + { if (soap_element_empty(soap, "prodml23:Location", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestLocation(soap, "prodml22:Location", -1, &a->prodml22__FlowTestMeasurementSet::Location, "prodml22:FlowTestLocation")) + else if (soap_out_PointerToprodml23__FlowTestLocation(soap, "prodml23:Location", -1, &a->prodml23__FlowTestMeasurementSet::Location, "prodml23:FlowTestLocation")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__OtherData(soap, "prodml22:OtherData", -1, &a->prodml22__FlowTestMeasurementSet::OtherData, "prodml22:OtherData")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__OtherData(soap, "prodml23:OtherData", -1, &a->prodml23__FlowTestMeasurementSet::OtherData, "prodml23:OtherData")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap, "prodml22:MeasuredFlowRate", -1, &a->prodml22__FlowTestMeasurementSet::MeasuredFlowRate, "prodml22:AbstractPtaFlowData")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap, "prodml23:MeasuredFlowRate", -1, &a->prodml23__FlowTestMeasurementSet::MeasuredFlowRate, "prodml23:AbstractPtaFlowData")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap, "prodml22:MeasuredPressure", -1, &a->prodml22__FlowTestMeasurementSet::MeasuredPressure, "prodml22:MeasuredPressureData")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap, "prodml23:MeasuredPressure", -1, &a->prodml23__FlowTestMeasurementSet::MeasuredPressure, "prodml23:MeasuredPressureData")) return soap->error; - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", -1, &a->prodml22__FlowTestMeasurementSet::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", -1, &a->prodml23__FlowTestMeasurementSet::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FlowTestMeasurementSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestMeasurementSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FlowTestMeasurementSet(soap, tag, this, type); + return soap_in_prodml23__FlowTestMeasurementSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml22__FlowTestMeasurementSet(struct soap *soap, const char *tag, prodml22__FlowTestMeasurementSet *a, const char *type) +SOAP_FMAC3 prodml23__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml23__FlowTestMeasurementSet(struct soap *soap, const char *tag, prodml23__FlowTestMeasurementSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FlowTestMeasurementSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, sizeof(prodml22__FlowTestMeasurementSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FlowTestMeasurementSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, sizeof(prodml23__FlowTestMeasurementSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FlowTestMeasurementSet *)a->soap_in(soap, tag, type); + return (prodml23__FlowTestMeasurementSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -214764,9 +214729,9 @@ SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml22__FlowT const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__FlowTestMeasurementSet*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__FlowTestMeasurementSet*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FlowTestMeasurementSet*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FlowTestMeasurementSet*)a)->uid)) return NULL; } else if (soap->error) @@ -214781,37 +214746,37 @@ SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml22__FlowT for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FlowTestMeasurementSet::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FlowTestMeasurementSet::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_TestPeriod1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TestPeriod(soap, "prodml22:TestPeriod", &a->prodml22__FlowTestMeasurementSet::TestPeriod, "prodml22:TestPeriod")) + { if (soap_in_PointerToprodml23__TestPeriod(soap, "prodml23:TestPeriod", &a->prodml23__FlowTestMeasurementSet::TestPeriod, "prodml23:TestPeriod")) { soap_flag_TestPeriod1--; continue; } } if (soap_flag_Location1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestLocation(soap, "prodml22:Location", &a->prodml22__FlowTestMeasurementSet::Location, "prodml22:FlowTestLocation")) + { if (soap_in_PointerToprodml23__FlowTestLocation(soap, "prodml23:Location", &a->prodml23__FlowTestMeasurementSet::Location, "prodml23:FlowTestLocation")) { soap_flag_Location1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__OtherData(soap, "prodml22:OtherData", &a->prodml22__FlowTestMeasurementSet::OtherData, "prodml22:OtherData")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__OtherData(soap, "prodml23:OtherData", &a->prodml23__FlowTestMeasurementSet::OtherData, "prodml23:OtherData")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap, "prodml22:MeasuredFlowRate", &a->prodml22__FlowTestMeasurementSet::MeasuredFlowRate, "prodml22:AbstractPtaFlowData")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap, "prodml23:MeasuredFlowRate", &a->prodml23__FlowTestMeasurementSet::MeasuredFlowRate, "prodml23:AbstractPtaFlowData")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap, "prodml22:MeasuredPressure", &a->prodml22__FlowTestMeasurementSet::MeasuredPressure, "prodml22:MeasuredPressureData")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap, "prodml23:MeasuredPressure", &a->prodml23__FlowTestMeasurementSet::MeasuredPressure, "prodml23:MeasuredPressureData")) continue; } if (soap_flag_FluidComponentCatalog1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", &a->prodml22__FlowTestMeasurementSet::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + { if (soap_in_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", &a->prodml23__FlowTestMeasurementSet::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) { soap_flag_FluidComponentCatalog1--; continue; } @@ -214825,7 +214790,7 @@ SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml22__FlowT } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__FlowTestMeasurementSet::Location)) + if ((!a->prodml23__FlowTestMeasurementSet::Location)) { soap->error = SOAP_OCCURS; return NULL; } @@ -214835,35 +214800,35 @@ SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml22__FlowT return NULL; } else - { a = (prodml22__FlowTestMeasurementSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, sizeof(prodml22__FlowTestMeasurementSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FlowTestMeasurementSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, sizeof(prodml23__FlowTestMeasurementSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestMeasurementSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestMeasurementSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FlowTestMeasurementSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FlowTestMeasurementSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FlowTestMeasurementSet *p; - size_t k = sizeof(prodml22__FlowTestMeasurementSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, n, gsoap_eml2_3_fdelete); + prodml23__FlowTestMeasurementSet *p; + size_t k = sizeof(prodml23__FlowTestMeasurementSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FlowTestMeasurementSet); + { p = SOAP_NEW(soap, prodml23__FlowTestMeasurementSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FlowTestMeasurementSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FlowTestMeasurementSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FlowTestMeasurementSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FlowTestMeasurementSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -214873,110 +214838,110 @@ SOAP_FMAC1 prodml22__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__FlowTestMeasurementSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FlowTestMeasurementSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FlowTestMeasurementSet(soap, tag ? tag : "prodml22:FlowTestMeasurementSet", -2, this, type)) + if (soap_out_prodml23__FlowTestMeasurementSet(soap, tag ? tag : "prodml23:FlowTestMeasurementSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FlowTestMeasurementSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestMeasurementSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FlowTestMeasurementSet(soap, this, tag, type); + return soap_get_prodml23__FlowTestMeasurementSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_get_prodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowTestMeasurementSet * SOAP_FMAC4 soap_get_prodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlowTestMeasurementSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlowTestMeasurementSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FlowTestLocation::soap_default(struct soap *soap) +void prodml23__FlowTestLocation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestLocation::Wellbore = NULL; - this->prodml22__FlowTestLocation::MdInterval = NULL; - this->prodml22__FlowTestLocation::WellboreCompletion = NULL; - this->prodml22__FlowTestLocation::Well = NULL; - this->prodml22__FlowTestLocation::WellCompletion = NULL; - this->prodml22__FlowTestLocation::ReportingEntity = NULL; - this->prodml22__FlowTestLocation::Remark = NULL; - this->prodml22__FlowTestLocation::ProbeDepth = NULL; - this->prodml22__FlowTestLocation::ProbeDiameter = NULL; - this->prodml22__FlowTestLocation::Datum = NULL; + this->prodml23__FlowTestLocation::Wellbore = NULL; + this->prodml23__FlowTestLocation::MdInterval = NULL; + this->prodml23__FlowTestLocation::WellboreCompletion = NULL; + this->prodml23__FlowTestLocation::Well = NULL; + this->prodml23__FlowTestLocation::WellCompletion = NULL; + this->prodml23__FlowTestLocation::ReportingEntity = NULL; + this->prodml23__FlowTestLocation::Remark = NULL; + this->prodml23__FlowTestLocation::ProbeDepth = NULL; + this->prodml23__FlowTestLocation::ProbeDiameter = NULL; + this->prodml23__FlowTestLocation::Datum = NULL; } -void prodml22__FlowTestLocation::soap_serialize(struct soap *soap) const +void prodml23__FlowTestLocation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestLocation::Wellbore); - soap_serialize_PointerToeml23__MdInterval(soap, &this->prodml22__FlowTestLocation::MdInterval); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestLocation::WellboreCompletion); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestLocation::Well); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestLocation::WellCompletion); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FlowTestLocation::ReportingEntity); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FlowTestLocation::Remark); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__FlowTestLocation::ProbeDepth); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__FlowTestLocation::ProbeDiameter); - soap_serialize_PointerToeml23__ReferencePointKind(soap, &this->prodml22__FlowTestLocation::Datum); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestLocation::Wellbore); + soap_serialize_PointerToeml23__MdInterval(soap, &this->prodml23__FlowTestLocation::MdInterval); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestLocation::WellboreCompletion); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestLocation::Well); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestLocation::WellCompletion); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FlowTestLocation::ReportingEntity); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FlowTestLocation::Remark); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__FlowTestLocation::ProbeDepth); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__FlowTestLocation::ProbeDiameter); + soap_serialize_PointerToeml23__ReferencePointKind(soap, &this->prodml23__FlowTestLocation::Datum); #endif } -int prodml22__FlowTestLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FlowTestLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FlowTestLocation(soap, tag, id, this, type); + return soap_out_prodml23__FlowTestLocation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestLocation(struct soap *soap, const char *tag, int id, const prodml22__FlowTestLocation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestLocation(struct soap *soap, const char *tag, int id, const prodml23__FlowTestLocation *a, const char *type) { if (!type) - type = "prodml22:FlowTestLocation"; + type = "prodml23:FlowTestLocation"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation), type)) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Wellbore", -1, &a->prodml22__FlowTestLocation::Wellbore, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Wellbore", -1, &a->prodml23__FlowTestLocation::Wellbore, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__MdInterval(soap, "prodml22:MdInterval", -1, &a->prodml22__FlowTestLocation::MdInterval, "eml23:MdInterval")) + if (soap_out_PointerToeml23__MdInterval(soap, "prodml23:MdInterval", -1, &a->prodml23__FlowTestLocation::MdInterval, "eml23:MdInterval")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:WellboreCompletion", -1, &a->prodml22__FlowTestLocation::WellboreCompletion, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:WellboreCompletion", -1, &a->prodml23__FlowTestLocation::WellboreCompletion, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Well", -1, &a->prodml22__FlowTestLocation::Well, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Well", -1, &a->prodml23__FlowTestLocation::Well, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:WellCompletion", -1, &a->prodml22__FlowTestLocation::WellCompletion, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:WellCompletion", -1, &a->prodml23__FlowTestLocation::WellCompletion, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ReportingEntity", -1, &a->prodml22__FlowTestLocation::ReportingEntity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ReportingEntity", -1, &a->prodml23__FlowTestLocation::ReportingEntity, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FlowTestLocation::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FlowTestLocation::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:ProbeDepth", -1, &a->prodml22__FlowTestLocation::ProbeDepth, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:ProbeDepth", -1, &a->prodml23__FlowTestLocation::ProbeDepth, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:ProbeDiameter", -1, &a->prodml22__FlowTestLocation::ProbeDiameter, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:ProbeDiameter", -1, &a->prodml23__FlowTestLocation::ProbeDiameter, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", -1, &a->prodml22__FlowTestLocation::Datum, "eml23:ReferencePointKind")) + if (soap_out_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", -1, &a->prodml23__FlowTestLocation::Datum, "eml23:ReferencePointKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FlowTestLocation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestLocation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FlowTestLocation(soap, tag, this, type); + return soap_in_prodml23__FlowTestLocation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FlowTestLocation * SOAP_FMAC4 soap_in_prodml22__FlowTestLocation(struct soap *soap, const char *tag, prodml22__FlowTestLocation *a, const char *type) +SOAP_FMAC3 prodml23__FlowTestLocation * SOAP_FMAC4 soap_in_prodml23__FlowTestLocation(struct soap *soap, const char *tag, prodml23__FlowTestLocation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FlowTestLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation, sizeof(prodml22__FlowTestLocation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FlowTestLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation, sizeof(prodml23__FlowTestLocation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FlowTestLocation *)a->soap_in(soap, tag, type); + return (prodml23__FlowTestLocation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -214995,61 +214960,61 @@ SOAP_FMAC3 prodml22__FlowTestLocation * SOAP_FMAC4 soap_in_prodml22__FlowTestLoc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Wellbore1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Wellbore", &a->prodml22__FlowTestLocation::Wellbore, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Wellbore", &a->prodml23__FlowTestLocation::Wellbore, "eml23:DataObjectReference")) { soap_flag_Wellbore1--; continue; } } if (soap_flag_MdInterval1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MdInterval(soap, "prodml22:MdInterval", &a->prodml22__FlowTestLocation::MdInterval, "eml23:MdInterval")) + { if (soap_in_PointerToeml23__MdInterval(soap, "prodml23:MdInterval", &a->prodml23__FlowTestLocation::MdInterval, "eml23:MdInterval")) { soap_flag_MdInterval1--; continue; } } if (soap_flag_WellboreCompletion1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:WellboreCompletion", &a->prodml22__FlowTestLocation::WellboreCompletion, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:WellboreCompletion", &a->prodml23__FlowTestLocation::WellboreCompletion, "eml23:DataObjectReference")) { soap_flag_WellboreCompletion1--; continue; } } if (soap_flag_Well1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Well", &a->prodml22__FlowTestLocation::Well, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Well", &a->prodml23__FlowTestLocation::Well, "eml23:DataObjectReference")) { soap_flag_Well1--; continue; } } if (soap_flag_WellCompletion1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:WellCompletion", &a->prodml22__FlowTestLocation::WellCompletion, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:WellCompletion", &a->prodml23__FlowTestLocation::WellCompletion, "eml23:DataObjectReference")) { soap_flag_WellCompletion1--; continue; } } if (soap_flag_ReportingEntity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ReportingEntity", &a->prodml22__FlowTestLocation::ReportingEntity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ReportingEntity", &a->prodml23__FlowTestLocation::ReportingEntity, "eml23:DataObjectReference")) { soap_flag_ReportingEntity1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FlowTestLocation::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FlowTestLocation::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_ProbeDepth1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:ProbeDepth", &a->prodml22__FlowTestLocation::ProbeDepth, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:ProbeDepth", &a->prodml23__FlowTestLocation::ProbeDepth, "eml23:LengthMeasure")) { soap_flag_ProbeDepth1--; continue; } } if (soap_flag_ProbeDiameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:ProbeDiameter", &a->prodml22__FlowTestLocation::ProbeDiameter, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:ProbeDiameter", &a->prodml23__FlowTestLocation::ProbeDiameter, "eml23:LengthMeasure")) { soap_flag_ProbeDiameter1--; continue; } } if (soap_flag_Datum1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml22:Datum", &a->prodml22__FlowTestLocation::Datum, "eml23:ReferencePointKind")) + { if (soap_in_PointerToeml23__ReferencePointKind(soap, "prodml23:Datum", &a->prodml23__FlowTestLocation::Datum, "eml23:ReferencePointKind")) { soap_flag_Datum1--; continue; } @@ -215065,35 +215030,35 @@ SOAP_FMAC3 prodml22__FlowTestLocation * SOAP_FMAC4 soap_in_prodml22__FlowTestLoc return NULL; } else - { a = (prodml22__FlowTestLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation, sizeof(prodml22__FlowTestLocation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FlowTestLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation, sizeof(prodml23__FlowTestLocation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FlowTestLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FlowTestLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FlowTestLocation *p; - size_t k = sizeof(prodml22__FlowTestLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation, n, gsoap_eml2_3_fdelete); + prodml23__FlowTestLocation *p; + size_t k = sizeof(prodml23__FlowTestLocation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FlowTestLocation); + { p = SOAP_NEW(soap, prodml23__FlowTestLocation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FlowTestLocation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FlowTestLocation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FlowTestLocation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FlowTestLocation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -215103,33 +215068,33 @@ SOAP_FMAC1 prodml22__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml22__Fl return p; } -int prodml22__FlowTestLocation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FlowTestLocation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FlowTestLocation(soap, tag ? tag : "prodml22:FlowTestLocation", -2, this, type)) + if (soap_out_prodml23__FlowTestLocation(soap, tag ? tag : "prodml23:FlowTestLocation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FlowTestLocation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestLocation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FlowTestLocation(soap, this, tag, type); + return soap_get_prodml23__FlowTestLocation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FlowTestLocation * SOAP_FMAC4 soap_get_prodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowTestLocation * SOAP_FMAC4 soap_get_prodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlowTestLocation(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlowTestLocation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FlowTestActivity::soap_default(struct soap *soap) +void prodml23__FlowTestActivity::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); } -void prodml22__FlowTestActivity::soap_serialize(struct soap *soap) const +void prodml23__FlowTestActivity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF @@ -215137,22 +215102,22 @@ void prodml22__FlowTestActivity::soap_serialize(struct soap *soap) const #endif } -int prodml22__FlowTestActivity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FlowTestActivity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FlowTestActivity(soap, tag, id, this, type); + return soap_out_prodml23__FlowTestActivity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestActivity(struct soap *soap, const char *tag, int id, const prodml22__FlowTestActivity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestActivity(struct soap *soap, const char *tag, int id, const prodml23__FlowTestActivity *a, const char *type) { if (!type) - type = "prodml22:FlowTestActivity"; + type = "prodml23:FlowTestActivity"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FlowTestActivity), type ? type : "prodml22:FlowTestActivity")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity), type ? type : "prodml23:FlowTestActivity")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -215177,23 +215142,23 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestActivity(struct soap *soap, return soap_element_end_out(soap, tag); } -void *prodml22__FlowTestActivity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestActivity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FlowTestActivity(soap, tag, this, type); + return soap_in_prodml23__FlowTestActivity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FlowTestActivity * SOAP_FMAC4 soap_in_prodml22__FlowTestActivity(struct soap *soap, const char *tag, prodml22__FlowTestActivity *a, const char *type) +SOAP_FMAC3 prodml23__FlowTestActivity * SOAP_FMAC4 soap_in_prodml23__FlowTestActivity(struct soap *soap, const char *tag, prodml23__FlowTestActivity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FlowTestActivity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity, sizeof(prodml22__FlowTestActivity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FlowTestActivity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity, sizeof(prodml23__FlowTestActivity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FlowTestActivity *)a->soap_in(soap, tag, type); + return (prodml23__FlowTestActivity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -215283,51 +215248,51 @@ SOAP_FMAC3 prodml22__FlowTestActivity * SOAP_FMAC4 soap_in_prodml22__FlowTestAct return NULL; } else - { a = (prodml22__FlowTestActivity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity, sizeof(prodml22__FlowTestActivity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FlowTestActivity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity, sizeof(prodml23__FlowTestActivity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestActivity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestActivity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FlowTestActivity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FlowTestActivity(%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, "prodml22:DrillStemTest")) - return soap_instantiate_prodml22__DrillStemTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FormationTesterStation")) - return soap_instantiate_prodml22__FormationTesterStation(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InjectionFlowTest")) - return soap_instantiate_prodml22__InjectionFlowTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InterwellTest")) - return soap_instantiate_prodml22__InterwellTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ProductionFlowTest")) - return soap_instantiate_prodml22__ProductionFlowTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ProductionTransientTest")) - return soap_instantiate_prodml22__ProductionTransientTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:VerticalInterferenceTest")) - return soap_instantiate_prodml22__VerticalInterferenceTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WaterLevelTest")) - return soap_instantiate_prodml22__WaterLevelTest(soap, n, NULL, NULL, size); - prodml22__FlowTestActivity *p; - size_t k = sizeof(prodml22__FlowTestActivity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DrillStemTest")) + return soap_instantiate_prodml23__DrillStemTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FormationTesterStation")) + return soap_instantiate_prodml23__FormationTesterStation(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InjectionFlowTest")) + return soap_instantiate_prodml23__InjectionFlowTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InterwellTest")) + return soap_instantiate_prodml23__InterwellTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductionFlowTest")) + return soap_instantiate_prodml23__ProductionFlowTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductionTransientTest")) + return soap_instantiate_prodml23__ProductionTransientTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:VerticalInterferenceTest")) + return soap_instantiate_prodml23__VerticalInterferenceTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WaterLevelTest")) + return soap_instantiate_prodml23__WaterLevelTest(soap, n, NULL, NULL, size); + prodml23__FlowTestActivity *p; + size_t k = sizeof(prodml23__FlowTestActivity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FlowTestActivity); + { p = SOAP_NEW(soap, prodml23__FlowTestActivity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FlowTestActivity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FlowTestActivity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FlowTestActivity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FlowTestActivity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -215337,58 +215302,58 @@ SOAP_FMAC1 prodml22__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml22__Fl return p; } -int prodml22__FlowTestActivity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FlowTestActivity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FlowTestActivity(soap, tag ? tag : "prodml22:FlowTestActivity", -2, this, type)) + if (soap_out_prodml23__FlowTestActivity(soap, tag ? tag : "prodml23:FlowTestActivity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FlowTestActivity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlowTestActivity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FlowTestActivity(soap, this, tag, type); + return soap_get_prodml23__FlowTestActivity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FlowTestActivity * SOAP_FMAC4 soap_get_prodml22__FlowTestActivity(struct soap *soap, prodml22__FlowTestActivity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowTestActivity * SOAP_FMAC4 soap_get_prodml23__FlowTestActivity(struct soap *soap, prodml23__FlowTestActivity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlowTestActivity(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlowTestActivity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DrillStemTest::soap_default(struct soap *soap) +void prodml23__DrillStemTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlowTestActivity::soap_default(soap); - this->prodml22__DrillStemTest::IntervalMeasurementSet = NULL; + this->prodml23__FlowTestActivity::soap_default(soap); + this->prodml23__DrillStemTest::IntervalMeasurementSet = NULL; } -void prodml22__DrillStemTest::soap_serialize(struct soap *soap) const +void prodml23__DrillStemTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &this->prodml22__DrillStemTest::IntervalMeasurementSet); - this->prodml22__FlowTestActivity::soap_serialize(soap); + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &this->prodml23__DrillStemTest::IntervalMeasurementSet); + this->prodml23__FlowTestActivity::soap_serialize(soap); #endif } -int prodml22__DrillStemTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DrillStemTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DrillStemTest(soap, tag, id, this, type); + return soap_out_prodml23__DrillStemTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DrillStemTest(struct soap *soap, const char *tag, int id, const prodml22__DrillStemTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DrillStemTest(struct soap *soap, const char *tag, int id, const prodml23__DrillStemTest *a, const char *type) { if (!type) - type = "prodml22:DrillStemTest"; + type = "prodml23:DrillStemTest"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__DrillStemTest), type ? type : "prodml22:DrillStemTest")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest), type ? type : "prodml23:DrillStemTest")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -215410,32 +215375,32 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DrillStemTest(struct soap *soap, co return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__DrillStemTest::IntervalMeasurementSet) - { if (soap_element_empty(soap, "prodml22:IntervalMeasurementSet", 0, NULL)) + if (!a->prodml23__DrillStemTest::IntervalMeasurementSet) + { if (soap_element_empty(soap, "prodml23:IntervalMeasurementSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", -1, &a->prodml22__DrillStemTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + else if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", -1, &a->prodml23__DrillStemTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DrillStemTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DrillStemTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DrillStemTest(soap, tag, this, type); + return soap_in_prodml23__DrillStemTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_in_prodml22__DrillStemTest(struct soap *soap, const char *tag, prodml22__DrillStemTest *a, const char *type) +SOAP_FMAC3 prodml23__DrillStemTest * SOAP_FMAC4 soap_in_prodml23__DrillStemTest(struct soap *soap, const char *tag, prodml23__DrillStemTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DrillStemTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest, sizeof(prodml22__DrillStemTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DrillStemTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest, sizeof(prodml23__DrillStemTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DrillStemTest *)a->soap_in(soap, tag, type); + return (prodml23__DrillStemTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -215508,7 +215473,7 @@ SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_in_prodml22__DrillStemTest( continue; } if (soap_flag_IntervalMeasurementSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, "prodml22:IntervalMeasurementSet", &a->prodml22__DrillStemTest::IntervalMeasurementSet, "prodml22:FlowTestMeasurementSet")) + { if (soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, "prodml23:IntervalMeasurementSet", &a->prodml23__DrillStemTest::IntervalMeasurementSet, "prodml23:FlowTestMeasurementSet")) { soap_flag_IntervalMeasurementSet1--; continue; } @@ -215522,7 +215487,7 @@ SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_in_prodml22__DrillStemTest( } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__DrillStemTest::IntervalMeasurementSet)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__DrillStemTest::IntervalMeasurementSet)) { soap->error = SOAP_OCCURS; return NULL; } @@ -215532,35 +215497,35 @@ SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_in_prodml22__DrillStemTest( return NULL; } else - { a = (prodml22__DrillStemTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest, SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest, sizeof(prodml22__DrillStemTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DrillStemTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest, SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest, sizeof(prodml23__DrillStemTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml22__DrillStemTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml23__DrillStemTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DrillStemTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DrillStemTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DrillStemTest *p; - size_t k = sizeof(prodml22__DrillStemTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest, n, gsoap_eml2_3_fdelete); + prodml23__DrillStemTest *p; + size_t k = sizeof(prodml23__DrillStemTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DrillStemTest); + { p = SOAP_NEW(soap, prodml23__DrillStemTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DrillStemTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DrillStemTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DrillStemTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DrillStemTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -215570,60 +215535,60 @@ SOAP_FMAC1 prodml22__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml22__Drill return p; } -int prodml22__DrillStemTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DrillStemTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DrillStemTest(soap, tag ? tag : "prodml22:DrillStemTest", -2, this, type)) + if (soap_out_prodml23__DrillStemTest(soap, tag ? tag : "prodml23:DrillStemTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DrillStemTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DrillStemTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DrillStemTest(soap, this, tag, type); + return soap_get_prodml23__DrillStemTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_get_prodml22__DrillStemTest(struct soap *soap, prodml22__DrillStemTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DrillStemTest * SOAP_FMAC4 soap_get_prodml23__DrillStemTest(struct soap *soap, prodml23__DrillStemTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DrillStemTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__DrillStemTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ChannelSet::soap_default(struct soap *soap) +void prodml23__ChannelSet::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_std__vectorTemplateOfstd__string(soap, &this->prodml22__ChannelSet::Data); - soap_default_std__vectorTemplateOfPointerToprodml22__Channel(soap, &this->prodml22__ChannelSet::Channel); + soap_default_std__vectorTemplateOfstd__string(soap, &this->prodml23__ChannelSet::Data); + soap_default_std__vectorTemplateOfPointerToprodml23__Channel(soap, &this->prodml23__ChannelSet::Channel); } -void prodml22__ChannelSet::soap_serialize(struct soap *soap) const +void prodml23__ChannelSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfstd__string(soap, &this->prodml22__ChannelSet::Data); - soap_serialize_std__vectorTemplateOfPointerToprodml22__Channel(soap, &this->prodml22__ChannelSet::Channel); + soap_serialize_std__vectorTemplateOfstd__string(soap, &this->prodml23__ChannelSet::Data); + soap_serialize_std__vectorTemplateOfPointerToprodml23__Channel(soap, &this->prodml23__ChannelSet::Channel); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__ChannelSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ChannelSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ChannelSet(soap, tag, id, this, type); + return soap_out_prodml23__ChannelSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChannelSet(struct soap *soap, const char *tag, int id, const prodml22__ChannelSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChannelSet(struct soap *soap, const char *tag, int id, const prodml23__ChannelSet *a, const char *type) { if (!type) - type = "prodml22:ChannelSet"; + type = "prodml23:ChannelSet"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__ChannelSet), type ? type : "prodml22:ChannelSet")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet), type ? type : "prodml23:ChannelSet")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -215645,30 +215610,30 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChannelSet(struct soap *soap, const return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_std__vectorTemplateOfstd__string(soap, "prodml22:Data", -1, &a->prodml22__ChannelSet::Data, "xsd:string")) + if (soap_out_std__vectorTemplateOfstd__string(soap, "prodml23:Data", -1, &a->prodml23__ChannelSet::Data, "xsd:string")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__Channel(soap, "prodml22:Channel", -1, &a->prodml22__ChannelSet::Channel, "prodml22:Channel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__Channel(soap, "prodml23:Channel", -1, &a->prodml23__ChannelSet::Channel, "prodml23:Channel")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ChannelSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChannelSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ChannelSet(soap, tag, this, type); + return soap_in_prodml23__ChannelSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ChannelSet * SOAP_FMAC4 soap_in_prodml22__ChannelSet(struct soap *soap, const char *tag, prodml22__ChannelSet *a, const char *type) +SOAP_FMAC3 prodml23__ChannelSet * SOAP_FMAC4 soap_in_prodml23__ChannelSet(struct soap *soap, const char *tag, prodml23__ChannelSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ChannelSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet, sizeof(prodml22__ChannelSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ChannelSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet, sizeof(prodml23__ChannelSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ChannelSet *)a->soap_in(soap, tag, type); + return (prodml23__ChannelSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -215740,11 +215705,11 @@ SOAP_FMAC3 prodml22__ChannelSet * SOAP_FMAC4 soap_in_prodml22__ChannelSet(struct continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfstd__string(soap, "prodml22:Data", &a->prodml22__ChannelSet::Data, "xsd:string")) + { if (soap_in_std__vectorTemplateOfstd__string(soap, "prodml23:Data", &a->prodml23__ChannelSet::Data, "xsd:string")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__Channel(soap, "prodml22:Channel", &a->prodml22__ChannelSet::Channel, "prodml22:Channel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__Channel(soap, "prodml23:Channel", &a->prodml23__ChannelSet::Channel, "prodml23:Channel")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -215766,35 +215731,35 @@ SOAP_FMAC3 prodml22__ChannelSet * SOAP_FMAC4 soap_in_prodml22__ChannelSet(struct return NULL; } else - { a = (prodml22__ChannelSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet, sizeof(prodml22__ChannelSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ChannelSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet, sizeof(prodml23__ChannelSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml22__ChannelSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml23__ChannelSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ChannelSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ChannelSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ChannelSet *p; - size_t k = sizeof(prodml22__ChannelSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet, n, gsoap_eml2_3_fdelete); + prodml23__ChannelSet *p; + size_t k = sizeof(prodml23__ChannelSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ChannelSet); + { p = SOAP_NEW(soap, prodml23__ChannelSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ChannelSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ChannelSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ChannelSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ChannelSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -215804,33 +215769,33 @@ SOAP_FMAC1 prodml22__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml22__ChannelS return p; } -int prodml22__ChannelSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ChannelSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ChannelSet(soap, tag ? tag : "prodml22:ChannelSet", -2, this, type)) + if (soap_out_prodml23__ChannelSet(soap, tag ? tag : "prodml23:ChannelSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ChannelSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ChannelSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ChannelSet(soap, this, tag, type); + return soap_get_prodml23__ChannelSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ChannelSet * SOAP_FMAC4 soap_get_prodml22__ChannelSet(struct soap *soap, prodml22__ChannelSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ChannelSet * SOAP_FMAC4 soap_get_prodml23__ChannelSet(struct soap *soap, prodml23__ChannelSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ChannelSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__ChannelSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Channel::soap_default(struct soap *soap) +void prodml23__Channel::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); } -void prodml22__Channel::soap_serialize(struct soap *soap) const +void prodml23__Channel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF @@ -215838,22 +215803,22 @@ void prodml22__Channel::soap_serialize(struct soap *soap) const #endif } -int prodml22__Channel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Channel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Channel(soap, tag, id, this, type); + return soap_out_prodml23__Channel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Channel(struct soap *soap, const char *tag, int id, const prodml22__Channel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Channel(struct soap *soap, const char *tag, int id, const prodml23__Channel *a, const char *type) { if (!type) - type = "prodml22:Channel"; + type = "prodml23:Channel"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__Channel), type ? type : "prodml22:Channel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel), type ? type : "prodml23:Channel")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -215878,23 +215843,23 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Channel(struct soap *soap, const ch return soap_element_end_out(soap, tag); } -void *prodml22__Channel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Channel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Channel(soap, tag, this, type); + return soap_in_prodml23__Channel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Channel * SOAP_FMAC4 soap_in_prodml22__Channel(struct soap *soap, const char *tag, prodml22__Channel *a, const char *type) +SOAP_FMAC3 prodml23__Channel * SOAP_FMAC4 soap_in_prodml23__Channel(struct soap *soap, const char *tag, prodml23__Channel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Channel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, sizeof(prodml22__Channel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Channel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, sizeof(prodml23__Channel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Channel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Channel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Channel *)a->soap_in(soap, tag, type); + return (prodml23__Channel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -215984,35 +215949,35 @@ SOAP_FMAC3 prodml22__Channel * SOAP_FMAC4 soap_in_prodml22__Channel(struct soap return NULL; } else - { a = (prodml22__Channel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, sizeof(prodml22__Channel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Channel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, sizeof(prodml23__Channel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Channel * SOAP_FMAC2 soap_instantiate_prodml22__Channel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Channel * SOAP_FMAC2 soap_instantiate_prodml23__Channel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Channel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Channel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Channel *p; - size_t k = sizeof(prodml22__Channel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, n, gsoap_eml2_3_fdelete); + prodml23__Channel *p; + size_t k = sizeof(prodml23__Channel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Channel); + { p = SOAP_NEW(soap, prodml23__Channel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Channel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Channel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Channel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Channel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -216022,103 +215987,103 @@ SOAP_FMAC1 prodml22__Channel * SOAP_FMAC2 soap_instantiate_prodml22__Channel(str return p; } -int prodml22__Channel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Channel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Channel(soap, tag ? tag : "prodml22:Channel", -2, this, type)) + if (soap_out_prodml23__Channel(soap, tag ? tag : "prodml23:Channel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Channel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Channel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Channel(soap, this, tag, type); + return soap_get_prodml23__Channel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Channel * SOAP_FMAC4 soap_get_prodml22__Channel(struct soap *soap, prodml22__Channel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Channel * SOAP_FMAC4 soap_get_prodml23__Channel(struct soap *soap, prodml23__Channel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Channel(soap, tag, p, type))) + if ((p = soap_in_prodml23__Channel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractPtaFlowData::soap_default(struct soap *soap) +void prodml23__AbstractPtaFlowData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFlowTestData::soap_default(soap); - this->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind = NULL; - this->prodml22__AbstractPtaFlowData::FlowChannel = NULL; + this->prodml23__AbstractFlowTestData::soap_default(soap); + this->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind = NULL; + this->prodml23__AbstractPtaFlowData::FlowChannel = NULL; } -void prodml22__AbstractPtaFlowData::soap_serialize(struct soap *soap) const +void prodml23__AbstractPtaFlowData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__FluidPhaseKind(soap, &this->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__AbstractPtaFlowData::FlowChannel); - this->prodml22__AbstractFlowTestData::soap_serialize(soap); + soap_serialize_PointerToprodml23__FluidPhaseKind(soap, &this->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__AbstractPtaFlowData::FlowChannel); + this->prodml23__AbstractFlowTestData::soap_serialize(soap); #endif } -int prodml22__AbstractPtaFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractPtaFlowData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractPtaFlowData(soap, tag, id, this, type); + return soap_out_prodml23__AbstractPtaFlowData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractPtaFlowData(struct soap *soap, const char *tag, int id, const prodml22__AbstractPtaFlowData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractPtaFlowData(struct soap *soap, const char *tag, int id, const prodml23__AbstractPtaFlowData *a, const char *type) { if (!type) - type = "prodml22:AbstractPtaFlowData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:AbstractPtaFlowData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__AbstractPtaFlowData), type ? type : "prodml22:AbstractPtaFlowData")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData), type ? type : "prodml23:AbstractPtaFlowData")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", -1, &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + if (soap_out_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", -1, &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) return soap->error; - if (!a->prodml22__AbstractPtaFlowData::FlowChannel) - { if (soap_element_empty(soap, "prodml22:FlowChannel", 0, NULL)) + if (!a->prodml23__AbstractPtaFlowData::FlowChannel) + { if (soap_element_empty(soap, "prodml23:FlowChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", -1, &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", -1, &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractPtaFlowData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractPtaFlowData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractPtaFlowData(soap, tag, this, type); + return soap_in_prodml23__AbstractPtaFlowData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml22__AbstractPtaFlowData(struct soap *soap, const char *tag, prodml22__AbstractPtaFlowData *a, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml23__AbstractPtaFlowData(struct soap *soap, const char *tag, prodml23__AbstractPtaFlowData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractPtaFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, sizeof(prodml22__AbstractPtaFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractPtaFlowData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, sizeof(prodml23__AbstractPtaFlowData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractPtaFlowData *)a->soap_in(soap, tag, type); + return (prodml23__AbstractPtaFlowData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -216126,9 +216091,9 @@ SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml22__Abstract const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -216145,37 +216110,37 @@ SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml22__Abstract for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet2--; continue; } } if (soap_flag_TimeChannel2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel2--; continue; } } if (soap_flag_TimeSeriesPointRepresentation2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap_flag_FluidPhaseMeasuredKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidPhaseKind(soap, "prodml22:FluidPhaseMeasuredKind", &a->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml22:FluidPhaseKind")) + { if (soap_in_PointerToprodml23__FluidPhaseKind(soap, "prodml23:FluidPhaseMeasuredKind", &a->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind, "prodml23:FluidPhaseKind")) { soap_flag_FluidPhaseMeasuredKind1--; continue; } } if (soap_flag_FlowChannel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowChannel", &a->prodml22__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowChannel", &a->prodml23__AbstractPtaFlowData::FlowChannel, "eml23:DataObjectReference")) { soap_flag_FlowChannel1--; continue; } @@ -216189,7 +216154,7 @@ SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml22__Abstract } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel || !a->prodml22__AbstractPtaFlowData::FlowChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel || !a->prodml23__AbstractPtaFlowData::FlowChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -216199,43 +216164,43 @@ SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml22__Abstract return NULL; } else - { a = (prodml22__AbstractPtaFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, sizeof(prodml22__AbstractPtaFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractPtaFlowData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, sizeof(prodml23__AbstractPtaFlowData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPtaFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPtaFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractPtaFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractPtaFlowData(%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, "prodml22:DeconvolvedFlowData")) - return soap_instantiate_prodml22__DeconvolvedFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:MeasuredFlowData")) - return soap_instantiate_prodml22__MeasuredFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OutputFlowData")) - return soap_instantiate_prodml22__OutputFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PreProcessedFlowData")) - return soap_instantiate_prodml22__PreProcessedFlowData(soap, n, NULL, NULL, size); - prodml22__AbstractPtaFlowData *p; - size_t k = sizeof(prodml22__AbstractPtaFlowData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeconvolvedFlowData")) + return soap_instantiate_prodml23__DeconvolvedFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:MeasuredFlowData")) + return soap_instantiate_prodml23__MeasuredFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OutputFlowData")) + return soap_instantiate_prodml23__OutputFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PreProcessedFlowData")) + return soap_instantiate_prodml23__PreProcessedFlowData(soap, n, NULL, NULL, size); + prodml23__AbstractPtaFlowData *p; + size_t k = sizeof(prodml23__AbstractPtaFlowData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractPtaFlowData); + { p = SOAP_NEW(soap, prodml23__AbstractPtaFlowData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractPtaFlowData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractPtaFlowData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractPtaFlowData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractPtaFlowData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -216245,98 +216210,98 @@ SOAP_FMAC1 prodml22__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__AbstractPtaFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractPtaFlowData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractPtaFlowData(soap, tag ? tag : "prodml22:AbstractPtaFlowData", -2, this, type)) + if (soap_out_prodml23__AbstractPtaFlowData(soap, tag ? tag : "prodml23:AbstractPtaFlowData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractPtaFlowData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractPtaFlowData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractPtaFlowData(soap, this, tag, type); + return soap_get_prodml23__AbstractPtaFlowData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_get_prodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaFlowData * SOAP_FMAC4 soap_get_prodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractPtaFlowData(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractPtaFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractFlowTestData::soap_default(struct soap *soap) +void prodml23__AbstractFlowTestData::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFlowTestData::ChannelSet = NULL; - this->prodml22__AbstractFlowTestData::TimeChannel = NULL; - this->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = NULL; - this->prodml22__AbstractFlowTestData::Remark = NULL; - this->prodml22__AbstractFlowTestData::uid = NULL; + this->prodml23__AbstractFlowTestData::ChannelSet = NULL; + this->prodml23__AbstractFlowTestData::TimeChannel = NULL; + this->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = NULL; + this->prodml23__AbstractFlowTestData::Remark = NULL; + this->prodml23__AbstractFlowTestData::uid = NULL; } -void prodml22__AbstractFlowTestData::soap_serialize(struct soap *soap) const +void prodml23__AbstractFlowTestData::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__AbstractFlowTestData::ChannelSet); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__AbstractFlowTestData::TimeChannel); - soap_serialize_PointerToprodml22__TimeSeriesPointRepresentation(soap, &this->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__AbstractFlowTestData::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__AbstractFlowTestData::ChannelSet); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__AbstractFlowTestData::TimeChannel); + soap_serialize_PointerToprodml23__TimeSeriesPointRepresentation(soap, &this->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__AbstractFlowTestData::Remark); #endif } -int prodml22__AbstractFlowTestData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractFlowTestData::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractFlowTestData(soap, tag, id, this, type); + return soap_out_prodml23__AbstractFlowTestData(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractFlowTestData(struct soap *soap, const char *tag, int id, const prodml22__AbstractFlowTestData *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractFlowTestData(struct soap *soap, const char *tag, int id, const prodml23__AbstractFlowTestData *a, const char *type) { if (!type) - type = "prodml22:AbstractFlowTestData"; - if (((prodml22__AbstractFlowTestData*)a)->uid) - { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml22__AbstractFlowTestData*)a)->uid), 1); + type = "prodml23:AbstractFlowTestData"; + if (((prodml23__AbstractFlowTestData*)a)->uid) + { soap_set_attr(soap, "uid", soap_eml23__String642s(soap, *((prodml23__AbstractFlowTestData*)a)->uid), 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_gsoap_eml2_3_prodml22__AbstractFlowTestData), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData), type)) return soap->error; - if (!a->prodml22__AbstractFlowTestData::ChannelSet) - { if (soap_element_empty(soap, "prodml22:ChannelSet", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::ChannelSet) + { if (soap_element_empty(soap, "prodml23:ChannelSet", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", -1, &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", -1, &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__AbstractFlowTestData::TimeChannel) - { if (soap_element_empty(soap, "prodml22:TimeChannel", 0, NULL)) + if (!a->prodml23__AbstractFlowTestData::TimeChannel) + { if (soap_element_empty(soap, "prodml23:TimeChannel", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", -1, &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", -1, &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", -1, &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", -1, &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractFlowTestData::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractFlowTestData::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractFlowTestData(soap, tag, this, type); + return soap_in_prodml23__AbstractFlowTestData(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml22__AbstractFlowTestData(struct soap *soap, const char *tag, prodml22__AbstractFlowTestData *a, const char *type) +SOAP_FMAC3 prodml23__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml23__AbstractFlowTestData(struct soap *soap, const char *tag, prodml23__AbstractFlowTestData *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractFlowTestData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, sizeof(prodml22__AbstractFlowTestData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractFlowTestData*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, sizeof(prodml23__AbstractFlowTestData), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractFlowTestData *)a->soap_in(soap, tag, type); + return (prodml23__AbstractFlowTestData *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -216344,9 +216309,9 @@ SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml22__Abstrac const char *t = soap_attr_value(soap, "uid", 1, 0); if (t) { - if (!(((prodml22__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) + if (!(((prodml23__AbstractFlowTestData*)a)->uid = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__AbstractFlowTestData*)a)->uid)) + if (soap_s2eml23__String64(soap, t, ((prodml23__AbstractFlowTestData*)a)->uid)) return NULL; } else if (soap->error) @@ -216361,25 +216326,25 @@ SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml22__Abstrac for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ChannelSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ChannelSet", &a->prodml22__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ChannelSet", &a->prodml23__AbstractFlowTestData::ChannelSet, "eml23:DataObjectReference")) { soap_flag_ChannelSet1--; continue; } } if (soap_flag_TimeChannel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:TimeChannel", &a->prodml22__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:TimeChannel", &a->prodml23__AbstractFlowTestData::TimeChannel, "eml23:DataObjectReference")) { soap_flag_TimeChannel1--; continue; } } if (soap_flag_TimeSeriesPointRepresentation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, "prodml22:TimeSeriesPointRepresentation", &a->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml22:TimeSeriesPointRepresentation")) + { if (soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, "prodml23:TimeSeriesPointRepresentation", &a->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation, "prodml23:TimeSeriesPointRepresentation")) { soap_flag_TimeSeriesPointRepresentation1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AbstractFlowTestData::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AbstractFlowTestData::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -216393,7 +216358,7 @@ SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml22__Abstrac } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__AbstractFlowTestData::ChannelSet || !a->prodml22__AbstractFlowTestData::TimeChannel)) + if ((!a->prodml23__AbstractFlowTestData::ChannelSet || !a->prodml23__AbstractFlowTestData::TimeChannel)) { soap->error = SOAP_OCCURS; return NULL; } @@ -216403,57 +216368,57 @@ SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml22__Abstrac return NULL; } else - { a = (prodml22__AbstractFlowTestData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, sizeof(prodml22__AbstractFlowTestData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractFlowTestData *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, sizeof(prodml23__AbstractFlowTestData), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractFlowTestData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractFlowTestData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractFlowTestData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractFlowTestData(%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, "prodml22:AbstractPtaFlowData")) - return soap_instantiate_prodml22__AbstractPtaFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OtherData")) - return soap_instantiate_prodml22__OtherData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractPtaPressureData")) - return soap_instantiate_prodml22__AbstractPtaPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeconvolvedFlowData")) - return soap_instantiate_prodml22__DeconvolvedFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeconvolvedPressureData")) - return soap_instantiate_prodml22__DeconvolvedPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:MeasuredFlowData")) - return soap_instantiate_prodml22__MeasuredFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:MeasuredPressureData")) - return soap_instantiate_prodml22__MeasuredPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OutputFlowData")) - return soap_instantiate_prodml22__OutputFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OutputPressureData")) - return soap_instantiate_prodml22__OutputPressureData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PreProcessedFlowData")) - return soap_instantiate_prodml22__PreProcessedFlowData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PreProcessedPressureData")) - return soap_instantiate_prodml22__PreProcessedPressureData(soap, n, NULL, NULL, size); - prodml22__AbstractFlowTestData *p; - size_t k = sizeof(prodml22__AbstractFlowTestData); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractPtaFlowData")) + return soap_instantiate_prodml23__AbstractPtaFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OtherData")) + return soap_instantiate_prodml23__OtherData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractPtaPressureData")) + return soap_instantiate_prodml23__AbstractPtaPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeconvolvedFlowData")) + return soap_instantiate_prodml23__DeconvolvedFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeconvolvedPressureData")) + return soap_instantiate_prodml23__DeconvolvedPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:MeasuredFlowData")) + return soap_instantiate_prodml23__MeasuredFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:MeasuredPressureData")) + return soap_instantiate_prodml23__MeasuredPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OutputFlowData")) + return soap_instantiate_prodml23__OutputFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OutputPressureData")) + return soap_instantiate_prodml23__OutputPressureData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PreProcessedFlowData")) + return soap_instantiate_prodml23__PreProcessedFlowData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PreProcessedPressureData")) + return soap_instantiate_prodml23__PreProcessedPressureData(soap, n, NULL, NULL, size); + prodml23__AbstractFlowTestData *p; + size_t k = sizeof(prodml23__AbstractFlowTestData); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractFlowTestData); + { p = SOAP_NEW(soap, prodml23__AbstractFlowTestData); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractFlowTestData, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractFlowTestData, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractFlowTestData location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractFlowTestData location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -216463,77 +216428,77 @@ SOAP_FMAC1 prodml22__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__AbstractFlowTestData::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractFlowTestData::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractFlowTestData(soap, tag ? tag : "prodml22:AbstractFlowTestData", -2, this, type)) + if (soap_out_prodml23__AbstractFlowTestData(soap, tag ? tag : "prodml23:AbstractFlowTestData", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractFlowTestData::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractFlowTestData::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractFlowTestData(soap, this, tag, type); + return soap_get_prodml23__AbstractFlowTestData(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_get_prodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractFlowTestData * SOAP_FMAC4 soap_get_prodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractFlowTestData(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractFlowTestData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSystem::soap_default(struct soap *soap) +void prodml23__FluidSystem::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__FluidSystem::StandardConditions = NULL; - soap_default_prodml22__ReservoirFluidKind(soap, &this->prodml22__FluidSystem::ReservoirFluidKind); - this->prodml22__FluidSystem::PhasesPresent = NULL; - this->prodml22__FluidSystem::ReservoirLifeCycleState = NULL; - this->prodml22__FluidSystem::RockFluidOrganizationInterpretation = NULL; - this->prodml22__FluidSystem::SaturationPressure = NULL; - this->prodml22__FluidSystem::SolutionGOR = NULL; - this->prodml22__FluidSystem::Remark = NULL; - this->prodml22__FluidSystem::StockTankOil = NULL; - this->prodml22__FluidSystem::FormationWater = NULL; - this->prodml22__FluidSystem::NaturalGas = NULL; -} - -void prodml22__FluidSystem::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__AbstractTemperaturePressure(soap, &this->prodml22__FluidSystem::StandardConditions); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__FluidSystem::PhasesPresent); - soap_serialize_PointerToprodml22__ReservoirLifeCycleState(soap, &this->prodml22__FluidSystem::ReservoirLifeCycleState); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidSystem::RockFluidOrganizationInterpretation); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__FluidSystem::SaturationPressure); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSystem::SolutionGOR); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidSystem::Remark); - soap_serialize_PointerToprodml22__StockTankOil(soap, &this->prodml22__FluidSystem::StockTankOil); - soap_serialize_PointerToprodml22__FormationWater(soap, &this->prodml22__FluidSystem::FormationWater); - soap_serialize_PointerToprodml22__NaturalGas(soap, &this->prodml22__FluidSystem::NaturalGas); + this->prodml23__FluidSystem::StandardConditions = NULL; + soap_default_prodml23__ReservoirFluidKind(soap, &this->prodml23__FluidSystem::ReservoirFluidKind); + this->prodml23__FluidSystem::PhasesPresent = NULL; + this->prodml23__FluidSystem::ReservoirLifeCycleState = NULL; + this->prodml23__FluidSystem::RockFluidOrganizationInterpretation = NULL; + this->prodml23__FluidSystem::SaturationPressure = NULL; + this->prodml23__FluidSystem::SolutionGOR = NULL; + this->prodml23__FluidSystem::Remark = NULL; + this->prodml23__FluidSystem::StockTankOil = NULL; + this->prodml23__FluidSystem::FormationWater = NULL; + this->prodml23__FluidSystem::NaturalGas = NULL; +} + +void prodml23__FluidSystem::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToeml23__AbstractTemperaturePressure(soap, &this->prodml23__FluidSystem::StandardConditions); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__FluidSystem::PhasesPresent); + soap_serialize_PointerToprodml23__ReservoirLifeCycleState(soap, &this->prodml23__FluidSystem::ReservoirLifeCycleState); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidSystem::RockFluidOrganizationInterpretation); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__FluidSystem::SaturationPressure); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSystem::SolutionGOR); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidSystem::Remark); + soap_serialize_PointerToprodml23__StockTankOil(soap, &this->prodml23__FluidSystem::StockTankOil); + soap_serialize_PointerToprodml23__FormationWater(soap, &this->prodml23__FluidSystem::FormationWater); + soap_serialize_PointerToprodml23__NaturalGas(soap, &this->prodml23__FluidSystem::NaturalGas); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FluidSystem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSystem::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSystem(soap, tag, id, this, type); + return soap_out_prodml23__FluidSystem(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSystem(struct soap *soap, const char *tag, int id, const prodml22__FluidSystem *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSystem(struct soap *soap, const char *tag, int id, const prodml23__FluidSystem *a, const char *type) { if (!type) - type = "prodml22:FluidSystem"; + type = "prodml23:FluidSystem"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FluidSystem), type ? type : "prodml22:FluidSystem")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem), type ? type : "prodml23:FluidSystem")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -216555,56 +216520,56 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSystem(struct soap *soap, cons return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (!a->prodml22__FluidSystem::StandardConditions) - { if (soap_element_empty(soap, "prodml22:StandardConditions", 0, NULL)) + if (!a->prodml23__FluidSystem::StandardConditions) + { if (soap_element_empty(soap, "prodml23:StandardConditions", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", -1, &a->prodml22__FluidSystem::StandardConditions, "eml23:AbstractTemperaturePressure")) + else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", -1, &a->prodml23__FluidSystem::StandardConditions, "eml23:AbstractTemperaturePressure")) return soap->error; - if (soap_out_prodml22__ReservoirFluidKind(soap, "prodml22:ReservoirFluidKind", -1, &a->prodml22__FluidSystem::ReservoirFluidKind, "prodml22:ReservoirFluidKind")) + if (soap_out_prodml23__ReservoirFluidKind(soap, "prodml23:ReservoirFluidKind", -1, &a->prodml23__FluidSystem::ReservoirFluidKind, "prodml23:ReservoirFluidKind")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", -1, &a->prodml22__FluidSystem::PhasesPresent, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", -1, &a->prodml23__FluidSystem::PhasesPresent, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToprodml22__ReservoirLifeCycleState(soap, "prodml22:ReservoirLifeCycleState", -1, &a->prodml22__FluidSystem::ReservoirLifeCycleState, "prodml22:ReservoirLifeCycleState")) + if (soap_out_PointerToprodml23__ReservoirLifeCycleState(soap, "prodml23:ReservoirLifeCycleState", -1, &a->prodml23__FluidSystem::ReservoirLifeCycleState, "prodml23:ReservoirLifeCycleState")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:RockFluidOrganizationInterpretation", -1, &a->prodml22__FluidSystem::RockFluidOrganizationInterpretation, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:RockFluidOrganizationInterpretation", -1, &a->prodml23__FluidSystem::RockFluidOrganizationInterpretation, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__FluidSystem::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__FluidSystem::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (!a->prodml22__FluidSystem::SolutionGOR) - { if (soap_element_empty(soap, "prodml22:SolutionGOR", 0, NULL)) + if (!a->prodml23__FluidSystem::SolutionGOR) + { if (soap_element_empty(soap, "prodml23:SolutionGOR", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGOR", -1, &a->prodml22__FluidSystem::SolutionGOR, "eml23:VolumePerVolumeMeasure")) + else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGOR", -1, &a->prodml23__FluidSystem::SolutionGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSystem::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSystem::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__StockTankOil(soap, "prodml22:StockTankOil", -1, &a->prodml22__FluidSystem::StockTankOil, "prodml22:StockTankOil")) + if (soap_out_PointerToprodml23__StockTankOil(soap, "prodml23:StockTankOil", -1, &a->prodml23__FluidSystem::StockTankOil, "prodml23:StockTankOil")) return soap->error; - if (soap_out_PointerToprodml22__FormationWater(soap, "prodml22:FormationWater", -1, &a->prodml22__FluidSystem::FormationWater, "prodml22:FormationWater")) + if (soap_out_PointerToprodml23__FormationWater(soap, "prodml23:FormationWater", -1, &a->prodml23__FluidSystem::FormationWater, "prodml23:FormationWater")) return soap->error; - if (soap_out_PointerToprodml22__NaturalGas(soap, "prodml22:NaturalGas", -1, &a->prodml22__FluidSystem::NaturalGas, "prodml22:NaturalGas")) + if (soap_out_PointerToprodml23__NaturalGas(soap, "prodml23:NaturalGas", -1, &a->prodml23__FluidSystem::NaturalGas, "prodml23:NaturalGas")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSystem::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSystem::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSystem(soap, tag, this, type); + return soap_in_prodml23__FluidSystem(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_in_prodml22__FluidSystem(struct soap *soap, const char *tag, prodml22__FluidSystem *a, const char *type) +SOAP_FMAC3 prodml23__FluidSystem * SOAP_FMAC4 soap_in_prodml23__FluidSystem(struct soap *soap, const char *tag, prodml23__FluidSystem *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSystem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem, sizeof(prodml22__FluidSystem), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSystem*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem, sizeof(prodml23__FluidSystem), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSystem *)a->soap_in(soap, tag, type); + return (prodml23__FluidSystem *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -216687,67 +216652,67 @@ SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_in_prodml22__FluidSystem(stru continue; } if (soap_flag_StandardConditions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", &a->prodml22__FluidSystem::StandardConditions, "eml23:AbstractTemperaturePressure")) + { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", &a->prodml23__FluidSystem::StandardConditions, "eml23:AbstractTemperaturePressure")) { soap_flag_StandardConditions1--; continue; } } if (soap_flag_ReservoirFluidKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ReservoirFluidKind(soap, "prodml22:ReservoirFluidKind", &a->prodml22__FluidSystem::ReservoirFluidKind, "prodml22:ReservoirFluidKind")) + { if (soap_in_prodml23__ReservoirFluidKind(soap, "prodml23:ReservoirFluidKind", &a->prodml23__FluidSystem::ReservoirFluidKind, "prodml23:ReservoirFluidKind")) { soap_flag_ReservoirFluidKind1--; continue; } } if (soap_flag_PhasesPresent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", &a->prodml22__FluidSystem::PhasesPresent, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", &a->prodml23__FluidSystem::PhasesPresent, "prodml23:PhasePresent")) { soap_flag_PhasesPresent1--; continue; } } if (soap_flag_ReservoirLifeCycleState1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ReservoirLifeCycleState(soap, "prodml22:ReservoirLifeCycleState", &a->prodml22__FluidSystem::ReservoirLifeCycleState, "prodml22:ReservoirLifeCycleState")) + { if (soap_in_PointerToprodml23__ReservoirLifeCycleState(soap, "prodml23:ReservoirLifeCycleState", &a->prodml23__FluidSystem::ReservoirLifeCycleState, "prodml23:ReservoirLifeCycleState")) { soap_flag_ReservoirLifeCycleState1--; continue; } } if (soap_flag_RockFluidOrganizationInterpretation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:RockFluidOrganizationInterpretation", &a->prodml22__FluidSystem::RockFluidOrganizationInterpretation, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:RockFluidOrganizationInterpretation", &a->prodml23__FluidSystem::RockFluidOrganizationInterpretation, "eml23:DataObjectReference")) { soap_flag_RockFluidOrganizationInterpretation1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__FluidSystem::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__FluidSystem::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_SolutionGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGOR", &a->prodml22__FluidSystem::SolutionGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGOR", &a->prodml23__FluidSystem::SolutionGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGOR1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSystem::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSystem::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_StockTankOil1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__StockTankOil(soap, "prodml22:StockTankOil", &a->prodml22__FluidSystem::StockTankOil, "prodml22:StockTankOil")) + { if (soap_in_PointerToprodml23__StockTankOil(soap, "prodml23:StockTankOil", &a->prodml23__FluidSystem::StockTankOil, "prodml23:StockTankOil")) { soap_flag_StockTankOil1--; continue; } } if (soap_flag_FormationWater1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FormationWater(soap, "prodml22:FormationWater", &a->prodml22__FluidSystem::FormationWater, "prodml22:FormationWater")) + { if (soap_in_PointerToprodml23__FormationWater(soap, "prodml23:FormationWater", &a->prodml23__FluidSystem::FormationWater, "prodml23:FormationWater")) { soap_flag_FormationWater1--; continue; } } if (soap_flag_NaturalGas1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__NaturalGas(soap, "prodml22:NaturalGas", &a->prodml22__FluidSystem::NaturalGas, "prodml22:NaturalGas")) + { if (soap_in_PointerToprodml23__NaturalGas(soap, "prodml23:NaturalGas", &a->prodml23__FluidSystem::NaturalGas, "prodml23:NaturalGas")) { soap_flag_NaturalGas1--; continue; } @@ -216761,7 +216726,7 @@ SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_in_prodml22__FluidSystem(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FluidSystem::StandardConditions || soap_flag_ReservoirFluidKind1 > 0 || !a->prodml22__FluidSystem::SolutionGOR)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FluidSystem::StandardConditions || soap_flag_ReservoirFluidKind1 > 0 || !a->prodml23__FluidSystem::SolutionGOR)) { soap->error = SOAP_OCCURS; return NULL; } @@ -216771,35 +216736,35 @@ SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_in_prodml22__FluidSystem(stru return NULL; } else - { a = (prodml22__FluidSystem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem, sizeof(prodml22__FluidSystem), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSystem *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem, sizeof(prodml23__FluidSystem), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml22__FluidSystem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml23__FluidSystem(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSystem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSystem(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSystem *p; - size_t k = sizeof(prodml22__FluidSystem); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem, n, gsoap_eml2_3_fdelete); + prodml23__FluidSystem *p; + size_t k = sizeof(prodml23__FluidSystem); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSystem); + { p = SOAP_NEW(soap, prodml23__FluidSystem); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSystem, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSystem, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSystem location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSystem location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -216809,116 +216774,116 @@ SOAP_FMAC1 prodml22__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml22__FluidSy return p; } -int prodml22__FluidSystem::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSystem::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSystem(soap, tag ? tag : "prodml22:FluidSystem", -2, this, type)) + if (soap_out_prodml23__FluidSystem(soap, tag ? tag : "prodml23:FluidSystem", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSystem::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSystem::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSystem(soap, this, tag, type); + return soap_get_prodml23__FluidSystem(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_get_prodml22__FluidSystem(struct soap *soap, prodml22__FluidSystem *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSystem * SOAP_FMAC4 soap_get_prodml23__FluidSystem(struct soap *soap, prodml23__FluidSystem *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSystem(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSystem(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WaterSampleComponent::soap_default(struct soap *soap) +void prodml23__WaterSampleComponent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__WaterSampleComponent::TestMethod = NULL; - this->prodml22__WaterSampleComponent::Anion = NULL; - this->prodml22__WaterSampleComponent::Cation = NULL; - this->prodml22__WaterSampleComponent::OrganicAcid = NULL; - this->prodml22__WaterSampleComponent::MolarConcentration = NULL; - this->prodml22__WaterSampleComponent::VolumeConcentration = NULL; - this->prodml22__WaterSampleComponent::MassConcentration = NULL; - this->prodml22__WaterSampleComponent::EquivalentConcentration = NULL; - this->prodml22__WaterSampleComponent::ConcentrationRelativeToDetectableLimits = NULL; - this->prodml22__WaterSampleComponent::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__WaterSampleComponent::uid); + this->prodml23__WaterSampleComponent::TestMethod = NULL; + this->prodml23__WaterSampleComponent::Anion = NULL; + this->prodml23__WaterSampleComponent::Cation = NULL; + this->prodml23__WaterSampleComponent::OrganicAcid = NULL; + this->prodml23__WaterSampleComponent::MolarConcentration = NULL; + this->prodml23__WaterSampleComponent::VolumeConcentration = NULL; + this->prodml23__WaterSampleComponent::MassConcentration = NULL; + this->prodml23__WaterSampleComponent::EquivalentConcentration = NULL; + this->prodml23__WaterSampleComponent::ConcentrationRelativeToDetectableLimits = NULL; + this->prodml23__WaterSampleComponent::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__WaterSampleComponent::uid); } -void prodml22__WaterSampleComponent::soap_serialize(struct soap *soap) const +void prodml23__WaterSampleComponent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__WaterSampleComponent::TestMethod); - soap_serialize_PointerToprodml22__AnionKindExt(soap, &this->prodml22__WaterSampleComponent::Anion); - soap_serialize_PointerToprodml22__CationKindExt(soap, &this->prodml22__WaterSampleComponent::Cation); - soap_serialize_PointerToprodml22__OrganicAcidKindExt(soap, &this->prodml22__WaterSampleComponent::OrganicAcid); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, &this->prodml22__WaterSampleComponent::MolarConcentration); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterSampleComponent::VolumeConcentration); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__WaterSampleComponent::MassConcentration); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__WaterSampleComponent::EquivalentConcentration); - soap_serialize_PointerToprodml22__DetectableLimitRelativeStateKind(soap, &this->prodml22__WaterSampleComponent::ConcentrationRelativeToDetectableLimits); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__WaterSampleComponent::Remark); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__WaterSampleComponent::TestMethod); + soap_serialize_PointerToprodml23__AnionKindExt(soap, &this->prodml23__WaterSampleComponent::Anion); + soap_serialize_PointerToprodml23__CationKindExt(soap, &this->prodml23__WaterSampleComponent::Cation); + soap_serialize_PointerToprodml23__OrganicAcidKindExt(soap, &this->prodml23__WaterSampleComponent::OrganicAcid); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, &this->prodml23__WaterSampleComponent::MolarConcentration); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterSampleComponent::VolumeConcentration); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__WaterSampleComponent::MassConcentration); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__WaterSampleComponent::EquivalentConcentration); + soap_serialize_PointerToprodml23__DetectableLimitRelativeStateKind(soap, &this->prodml23__WaterSampleComponent::ConcentrationRelativeToDetectableLimits); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__WaterSampleComponent::Remark); #endif } -int prodml22__WaterSampleComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WaterSampleComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WaterSampleComponent(soap, tag, id, this, type); + return soap_out_prodml23__WaterSampleComponent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterSampleComponent(struct soap *soap, const char *tag, int id, const prodml22__WaterSampleComponent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterSampleComponent(struct soap *soap, const char *tag, int id, const prodml23__WaterSampleComponent *a, const char *type) { if (!type) - type = "prodml22:WaterSampleComponent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__WaterSampleComponent*)a)->uid), 1); + type = "prodml23:WaterSampleComponent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__WaterSampleComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__WaterSampleComponent), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:TestMethod", -1, &a->prodml22__WaterSampleComponent::TestMethod, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:TestMethod", -1, &a->prodml23__WaterSampleComponent::TestMethod, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__AnionKindExt(soap, "prodml22:Anion", -1, &a->prodml22__WaterSampleComponent::Anion, "prodml22:AnionKindExt")) + if (soap_out_PointerToprodml23__AnionKindExt(soap, "prodml23:Anion", -1, &a->prodml23__WaterSampleComponent::Anion, "prodml23:AnionKindExt")) return soap->error; - if (soap_out_PointerToprodml22__CationKindExt(soap, "prodml22:Cation", -1, &a->prodml22__WaterSampleComponent::Cation, "prodml22:CationKindExt")) + if (soap_out_PointerToprodml23__CationKindExt(soap, "prodml23:Cation", -1, &a->prodml23__WaterSampleComponent::Cation, "prodml23:CationKindExt")) return soap->error; - if (soap_out_PointerToprodml22__OrganicAcidKindExt(soap, "prodml22:OrganicAcid", -1, &a->prodml22__WaterSampleComponent::OrganicAcid, "prodml22:OrganicAcidKindExt")) + if (soap_out_PointerToprodml23__OrganicAcidKindExt(soap, "prodml23:OrganicAcid", -1, &a->prodml23__WaterSampleComponent::OrganicAcid, "prodml23:OrganicAcidKindExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, "prodml22:MolarConcentration", -1, &a->prodml22__WaterSampleComponent::MolarConcentration, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, "prodml23:MolarConcentration", -1, &a->prodml23__WaterSampleComponent::MolarConcentration, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__WaterSampleComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__WaterSampleComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassConcentration", -1, &a->prodml22__WaterSampleComponent::MassConcentration, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassConcentration", -1, &a->prodml23__WaterSampleComponent::MassConcentration, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:EquivalentConcentration", -1, &a->prodml22__WaterSampleComponent::EquivalentConcentration, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:EquivalentConcentration", -1, &a->prodml23__WaterSampleComponent::EquivalentConcentration, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__WaterSampleComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__WaterSampleComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__WaterSampleComponent::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__WaterSampleComponent::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WaterSampleComponent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterSampleComponent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WaterSampleComponent(soap, tag, this, type); + return soap_in_prodml23__WaterSampleComponent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WaterSampleComponent * SOAP_FMAC4 soap_in_prodml22__WaterSampleComponent(struct soap *soap, const char *tag, prodml22__WaterSampleComponent *a, const char *type) +SOAP_FMAC3 prodml23__WaterSampleComponent * SOAP_FMAC4 soap_in_prodml23__WaterSampleComponent(struct soap *soap, const char *tag, prodml23__WaterSampleComponent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WaterSampleComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, sizeof(prodml22__WaterSampleComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WaterSampleComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, sizeof(prodml23__WaterSampleComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WaterSampleComponent *)a->soap_in(soap, tag, type); + return (prodml23__WaterSampleComponent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__WaterSampleComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__WaterSampleComponent*)a)->uid)) return NULL; size_t soap_flag_TestMethod1 = 1; size_t soap_flag_Anion1 = 1; @@ -216935,61 +216900,61 @@ SOAP_FMAC3 prodml22__WaterSampleComponent * SOAP_FMAC4 soap_in_prodml22__WaterSa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestMethod1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:TestMethod", &a->prodml22__WaterSampleComponent::TestMethod, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:TestMethod", &a->prodml23__WaterSampleComponent::TestMethod, "eml23:String2000")) { soap_flag_TestMethod1--; continue; } } if (soap_flag_Anion1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__AnionKindExt(soap, "prodml22:Anion", &a->prodml22__WaterSampleComponent::Anion, "prodml22:AnionKindExt")) + { if (soap_in_PointerToprodml23__AnionKindExt(soap, "prodml23:Anion", &a->prodml23__WaterSampleComponent::Anion, "prodml23:AnionKindExt")) { soap_flag_Anion1--; continue; } } if (soap_flag_Cation1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__CationKindExt(soap, "prodml22:Cation", &a->prodml22__WaterSampleComponent::Cation, "prodml22:CationKindExt")) + { if (soap_in_PointerToprodml23__CationKindExt(soap, "prodml23:Cation", &a->prodml23__WaterSampleComponent::Cation, "prodml23:CationKindExt")) { soap_flag_Cation1--; continue; } } if (soap_flag_OrganicAcid1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__OrganicAcidKindExt(soap, "prodml22:OrganicAcid", &a->prodml22__WaterSampleComponent::OrganicAcid, "prodml22:OrganicAcidKindExt")) + { if (soap_in_PointerToprodml23__OrganicAcidKindExt(soap, "prodml23:OrganicAcid", &a->prodml23__WaterSampleComponent::OrganicAcid, "prodml23:OrganicAcidKindExt")) { soap_flag_OrganicAcid1--; continue; } } if (soap_flag_MolarConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, "prodml22:MolarConcentration", &a->prodml22__WaterSampleComponent::MolarConcentration, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(soap, "prodml23:MolarConcentration", &a->prodml23__WaterSampleComponent::MolarConcentration, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt")) { soap_flag_MolarConcentration1--; continue; } } if (soap_flag_VolumeConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__WaterSampleComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__WaterSampleComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration1--; continue; } } if (soap_flag_MassConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassConcentration", &a->prodml22__WaterSampleComponent::MassConcentration, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassConcentration", &a->prodml23__WaterSampleComponent::MassConcentration, "eml23:MassPerMassMeasure")) { soap_flag_MassConcentration1--; continue; } } if (soap_flag_EquivalentConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:EquivalentConcentration", &a->prodml22__WaterSampleComponent::EquivalentConcentration, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:EquivalentConcentration", &a->prodml23__WaterSampleComponent::EquivalentConcentration, "eml23:MassPerMassMeasure")) { soap_flag_EquivalentConcentration1--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__WaterSampleComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__WaterSampleComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__WaterSampleComponent::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__WaterSampleComponent::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -217005,35 +216970,35 @@ SOAP_FMAC3 prodml22__WaterSampleComponent * SOAP_FMAC4 soap_in_prodml22__WaterSa return NULL; } else - { a = (prodml22__WaterSampleComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, sizeof(prodml22__WaterSampleComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WaterSampleComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, sizeof(prodml23__WaterSampleComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml22__WaterSampleComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml23__WaterSampleComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WaterSampleComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WaterSampleComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WaterSampleComponent *p; - size_t k = sizeof(prodml22__WaterSampleComponent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, n, gsoap_eml2_3_fdelete); + prodml23__WaterSampleComponent *p; + size_t k = sizeof(prodml23__WaterSampleComponent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WaterSampleComponent); + { p = SOAP_NEW(soap, prodml23__WaterSampleComponent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WaterSampleComponent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WaterSampleComponent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WaterSampleComponent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WaterSampleComponent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -217043,188 +217008,188 @@ SOAP_FMAC1 prodml22__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__WaterSampleComponent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WaterSampleComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WaterSampleComponent(soap, tag ? tag : "prodml22:WaterSampleComponent", -2, this, type)) + if (soap_out_prodml23__WaterSampleComponent(soap, tag ? tag : "prodml23:WaterSampleComponent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WaterSampleComponent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterSampleComponent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WaterSampleComponent(soap, this, tag, type); + return soap_get_prodml23__WaterSampleComponent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WaterSampleComponent * SOAP_FMAC4 soap_get_prodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterSampleComponent * SOAP_FMAC4 soap_get_prodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WaterSampleComponent(soap, tag, p, type))) + if ((p = soap_in_prodml23__WaterSampleComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WaterAnalysisTestStep::soap_default(struct soap *soap) +void prodml23__WaterAnalysisTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__WaterAnalysisTestStep::StepNumber); - this->prodml22__WaterAnalysisTestStep::StepPressure = NULL; - this->prodml22__WaterAnalysisTestStep::StepTemperature = NULL; - this->prodml22__WaterAnalysisTestStep::DissolvedCO2 = NULL; - this->prodml22__WaterAnalysisTestStep::DissolvedH2S = NULL; - this->prodml22__WaterAnalysisTestStep::DissolvedO2 = NULL; - this->prodml22__WaterAnalysisTestStep::FlashedGas = NULL; - this->prodml22__WaterAnalysisTestStep::pH = NULL; - this->prodml22__WaterAnalysisTestStep::Resistivity = NULL; - this->prodml22__WaterAnalysisTestStep::Turbidity = NULL; - this->prodml22__WaterAnalysisTestStep::WaterViscosity = NULL; - this->prodml22__WaterAnalysisTestStep::SolutionGasWaterRatio = NULL; - this->prodml22__WaterAnalysisTestStep::WaterViscousCompressibility = NULL; - this->prodml22__WaterAnalysisTestStep::WaterDensity = NULL; - this->prodml22__WaterAnalysisTestStep::WaterSpecificHeat = NULL; - this->prodml22__WaterAnalysisTestStep::WaterFormationVolumeFactor = NULL; - this->prodml22__WaterAnalysisTestStep::WaterHeatCapacity = NULL; - this->prodml22__WaterAnalysisTestStep::WaterIsothermalCompressibility = NULL; - this->prodml22__WaterAnalysisTestStep::WaterThermalConductivity = NULL; - this->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithPressure = NULL; - this->prodml22__WaterAnalysisTestStep::WaterThermalExpansion = NULL; - this->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithTemperature = NULL; - this->prodml22__WaterAnalysisTestStep::WaterEnthalpy = NULL; - this->prodml22__WaterAnalysisTestStep::WaterEntropy = NULL; - this->prodml22__WaterAnalysisTestStep::WaterSpecificVolume = NULL; - this->prodml22__WaterAnalysisTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__WaterAnalysisTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__WaterAnalysisTestStep::StepNumber); + this->prodml23__WaterAnalysisTestStep::StepPressure = NULL; + this->prodml23__WaterAnalysisTestStep::StepTemperature = NULL; + this->prodml23__WaterAnalysisTestStep::DissolvedCO2 = NULL; + this->prodml23__WaterAnalysisTestStep::DissolvedH2S = NULL; + this->prodml23__WaterAnalysisTestStep::DissolvedO2 = NULL; + this->prodml23__WaterAnalysisTestStep::FlashedGas = NULL; + this->prodml23__WaterAnalysisTestStep::pH = NULL; + this->prodml23__WaterAnalysisTestStep::Resistivity = NULL; + this->prodml23__WaterAnalysisTestStep::Turbidity = NULL; + this->prodml23__WaterAnalysisTestStep::WaterViscosity = NULL; + this->prodml23__WaterAnalysisTestStep::SolutionGasWaterRatio = NULL; + this->prodml23__WaterAnalysisTestStep::WaterViscousCompressibility = NULL; + this->prodml23__WaterAnalysisTestStep::WaterDensity = NULL; + this->prodml23__WaterAnalysisTestStep::WaterSpecificHeat = NULL; + this->prodml23__WaterAnalysisTestStep::WaterFormationVolumeFactor = NULL; + this->prodml23__WaterAnalysisTestStep::WaterHeatCapacity = NULL; + this->prodml23__WaterAnalysisTestStep::WaterIsothermalCompressibility = NULL; + this->prodml23__WaterAnalysisTestStep::WaterThermalConductivity = NULL; + this->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithPressure = NULL; + this->prodml23__WaterAnalysisTestStep::WaterThermalExpansion = NULL; + this->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithTemperature = NULL; + this->prodml23__WaterAnalysisTestStep::WaterEnthalpy = NULL; + this->prodml23__WaterAnalysisTestStep::WaterEntropy = NULL; + this->prodml23__WaterAnalysisTestStep::WaterSpecificVolume = NULL; + this->prodml23__WaterAnalysisTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__WaterAnalysisTestStep::uid); } -void prodml22__WaterAnalysisTestStep::soap_serialize(struct soap *soap) const +void prodml23__WaterAnalysisTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WaterAnalysisTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__WaterAnalysisTestStep::StepPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__WaterAnalysisTestStep::StepTemperature); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTestStep::DissolvedCO2); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTestStep::DissolvedH2S); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTestStep::DissolvedO2); - soap_serialize_PointerToprodml22__FlashedGas(soap, &this->prodml22__WaterAnalysisTestStep::FlashedGas); - soap_serialize_PointerToeml23__UnitlessMeasure(soap, &this->prodml22__WaterAnalysisTestStep::pH); - soap_serialize_PointerToeml23__ElectricalResistivityMeasureExt(soap, &this->prodml22__WaterAnalysisTestStep::Resistivity); - soap_serialize_PointerToeml23__UnitlessMeasure(soap, &this->prodml22__WaterAnalysisTestStep::Turbidity); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterViscosity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__WaterAnalysisTestStep::SolutionGasWaterRatio); - soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterViscousCompressibility); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterDensity); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterSpecificHeat); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterFormationVolumeFactor); - soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterHeatCapacity); - soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterIsothermalCompressibility); - soap_serialize_PointerToeml23__ElectricConductivityMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterThermalConductivity); - soap_serialize_PointerToeml23__MassPerVolumePerPressureMeasureExt(soap, &this->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithPressure); - soap_serialize_PointerToeml23__VolumetricThermalExpansionMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterThermalExpansion); - soap_serialize_PointerToeml23__MassPerVolumePerTemperatureMeasureExt(soap, &this->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithTemperature); - soap_serialize_PointerToeml23__MolarEnergyMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterEnthalpy); - soap_serialize_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterEntropy); - soap_serialize_PointerToeml23__VolumePerMassMeasure(soap, &this->prodml22__WaterAnalysisTestStep::WaterSpecificVolume); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__WaterAnalysisTestStep::Remark); + soap_embedded(soap, &this->prodml23__WaterAnalysisTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__WaterAnalysisTestStep::StepPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__WaterAnalysisTestStep::StepTemperature); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTestStep::DissolvedCO2); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTestStep::DissolvedH2S); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTestStep::DissolvedO2); + soap_serialize_PointerToprodml23__FlashedGas(soap, &this->prodml23__WaterAnalysisTestStep::FlashedGas); + soap_serialize_PointerToeml23__UnitlessMeasure(soap, &this->prodml23__WaterAnalysisTestStep::pH); + soap_serialize_PointerToeml23__ElectricalResistivityMeasureExt(soap, &this->prodml23__WaterAnalysisTestStep::Resistivity); + soap_serialize_PointerToeml23__UnitlessMeasure(soap, &this->prodml23__WaterAnalysisTestStep::Turbidity); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterViscosity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__WaterAnalysisTestStep::SolutionGasWaterRatio); + soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterViscousCompressibility); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterDensity); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterSpecificHeat); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterFormationVolumeFactor); + soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterHeatCapacity); + soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterIsothermalCompressibility); + soap_serialize_PointerToeml23__ElectricConductivityMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterThermalConductivity); + soap_serialize_PointerToeml23__MassPerVolumePerPressureMeasureExt(soap, &this->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithPressure); + soap_serialize_PointerToeml23__VolumetricThermalExpansionMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterThermalExpansion); + soap_serialize_PointerToeml23__MassPerVolumePerTemperatureMeasureExt(soap, &this->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithTemperature); + soap_serialize_PointerToeml23__MolarEnergyMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterEnthalpy); + soap_serialize_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterEntropy); + soap_serialize_PointerToeml23__VolumePerMassMeasure(soap, &this->prodml23__WaterAnalysisTestStep::WaterSpecificVolume); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__WaterAnalysisTestStep::Remark); #endif } -int prodml22__WaterAnalysisTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WaterAnalysisTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WaterAnalysisTestStep(soap, tag, id, this, type); + return soap_out_prodml23__WaterAnalysisTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysisTestStep(struct soap *soap, const char *tag, int id, const prodml22__WaterAnalysisTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterAnalysisTestStep(struct soap *soap, const char *tag, int id, const prodml23__WaterAnalysisTestStep *a, const char *type) { if (!type) - type = "prodml22:WaterAnalysisTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__WaterAnalysisTestStep*)a)->uid), 1); + type = "prodml23:WaterAnalysisTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__WaterAnalysisTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__WaterAnalysisTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__WaterAnalysisTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__WaterAnalysisTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__WaterAnalysisTestStep::StepPressure) - { if (soap_element_empty(soap, "prodml22:StepPressure", 0, NULL)) + if (!a->prodml23__WaterAnalysisTestStep::StepPressure) + { if (soap_element_empty(soap, "prodml23:StepPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__WaterAnalysisTestStep::StepPressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__WaterAnalysisTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (!a->prodml22__WaterAnalysisTestStep::StepTemperature) - { if (soap_element_empty(soap, "prodml22:StepTemperature", 0, NULL)) + if (!a->prodml23__WaterAnalysisTestStep::StepTemperature) + { if (soap_element_empty(soap, "prodml23:StepTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", -1, &a->prodml22__WaterAnalysisTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", -1, &a->prodml23__WaterAnalysisTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:DissolvedCO2", -1, &a->prodml22__WaterAnalysisTestStep::DissolvedCO2, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:DissolvedCO2", -1, &a->prodml23__WaterAnalysisTestStep::DissolvedCO2, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:DissolvedH2S", -1, &a->prodml22__WaterAnalysisTestStep::DissolvedH2S, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:DissolvedH2S", -1, &a->prodml23__WaterAnalysisTestStep::DissolvedH2S, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:DissolvedO2", -1, &a->prodml22__WaterAnalysisTestStep::DissolvedO2, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:DissolvedO2", -1, &a->prodml23__WaterAnalysisTestStep::DissolvedO2, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToprodml22__FlashedGas(soap, "prodml22:FlashedGas", -1, &a->prodml22__WaterAnalysisTestStep::FlashedGas, "prodml22:FlashedGas")) + if (soap_out_PointerToprodml23__FlashedGas(soap, "prodml23:FlashedGas", -1, &a->prodml23__WaterAnalysisTestStep::FlashedGas, "prodml23:FlashedGas")) return soap->error; - if (soap_out_PointerToeml23__UnitlessMeasure(soap, "prodml22:pH", -1, &a->prodml22__WaterAnalysisTestStep::pH, "eml23:UnitlessMeasure")) + if (soap_out_PointerToeml23__UnitlessMeasure(soap, "prodml23:pH", -1, &a->prodml23__WaterAnalysisTestStep::pH, "eml23:UnitlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__ElectricalResistivityMeasureExt(soap, "prodml22:Resistivity", -1, &a->prodml22__WaterAnalysisTestStep::Resistivity, "eml23:ElectricalResistivityMeasureExt")) + if (soap_out_PointerToeml23__ElectricalResistivityMeasureExt(soap, "prodml23:Resistivity", -1, &a->prodml23__WaterAnalysisTestStep::Resistivity, "eml23:ElectricalResistivityMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__UnitlessMeasure(soap, "prodml22:Turbidity", -1, &a->prodml22__WaterAnalysisTestStep::Turbidity, "eml23:UnitlessMeasure")) + if (soap_out_PointerToeml23__UnitlessMeasure(soap, "prodml23:Turbidity", -1, &a->prodml23__WaterAnalysisTestStep::Turbidity, "eml23:UnitlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:WaterViscosity", -1, &a->prodml22__WaterAnalysisTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:WaterViscosity", -1, &a->prodml23__WaterAnalysisTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasWaterRatio", -1, &a->prodml22__WaterAnalysisTestStep::SolutionGasWaterRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasWaterRatio", -1, &a->prodml23__WaterAnalysisTestStep::SolutionGasWaterRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:WaterViscousCompressibility", -1, &a->prodml22__WaterAnalysisTestStep::WaterViscousCompressibility, "eml23:ReciprocalPressureMeasure")) + if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:WaterViscousCompressibility", -1, &a->prodml23__WaterAnalysisTestStep::WaterViscousCompressibility, "eml23:ReciprocalPressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:WaterDensity", -1, &a->prodml22__WaterAnalysisTestStep::WaterDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:WaterDensity", -1, &a->prodml23__WaterAnalysisTestStep::WaterDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:WaterSpecificHeat", -1, &a->prodml22__WaterAnalysisTestStep::WaterSpecificHeat, "eml23:EnergyPerVolumeMeasure")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:WaterSpecificHeat", -1, &a->prodml23__WaterAnalysisTestStep::WaterSpecificHeat, "eml23:EnergyPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:WaterFormationVolumeFactor", -1, &a->prodml22__WaterAnalysisTestStep::WaterFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:WaterFormationVolumeFactor", -1, &a->prodml23__WaterAnalysisTestStep::WaterFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml22:WaterHeatCapacity", -1, &a->prodml22__WaterAnalysisTestStep::WaterHeatCapacity, "eml23:EnergyMeasure")) + if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml23:WaterHeatCapacity", -1, &a->prodml23__WaterAnalysisTestStep::WaterHeatCapacity, "eml23:EnergyMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:WaterIsothermalCompressibility", -1, &a->prodml22__WaterAnalysisTestStep::WaterIsothermalCompressibility, "eml23:ReciprocalPressureMeasure")) + if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:WaterIsothermalCompressibility", -1, &a->prodml23__WaterAnalysisTestStep::WaterIsothermalCompressibility, "eml23:ReciprocalPressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ElectricConductivityMeasure(soap, "prodml22:WaterThermalConductivity", -1, &a->prodml22__WaterAnalysisTestStep::WaterThermalConductivity, "eml23:ElectricConductivityMeasure")) + if (soap_out_PointerToeml23__ElectricConductivityMeasure(soap, "prodml23:WaterThermalConductivity", -1, &a->prodml23__WaterAnalysisTestStep::WaterThermalConductivity, "eml23:ElectricConductivityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumePerPressureMeasureExt(soap, "prodml22:WaterDensityChangeWithPressure", -1, &a->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithPressure, "eml23:MassPerVolumePerPressureMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumePerPressureMeasureExt(soap, "prodml23:WaterDensityChangeWithPressure", -1, &a->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithPressure, "eml23:MassPerVolumePerPressureMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__VolumetricThermalExpansionMeasure(soap, "prodml22:WaterThermalExpansion", -1, &a->prodml22__WaterAnalysisTestStep::WaterThermalExpansion, "eml23:VolumetricThermalExpansionMeasure")) + if (soap_out_PointerToeml23__VolumetricThermalExpansionMeasure(soap, "prodml23:WaterThermalExpansion", -1, &a->prodml23__WaterAnalysisTestStep::WaterThermalExpansion, "eml23:VolumetricThermalExpansionMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumePerTemperatureMeasureExt(soap, "prodml22:WaterDensityChangeWithTemperature", -1, &a->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithTemperature, "eml23:MassPerVolumePerTemperatureMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumePerTemperatureMeasureExt(soap, "prodml23:WaterDensityChangeWithTemperature", -1, &a->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithTemperature, "eml23:MassPerVolumePerTemperatureMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MolarEnergyMeasure(soap, "prodml22:WaterEnthalpy", -1, &a->prodml22__WaterAnalysisTestStep::WaterEnthalpy, "eml23:MolarEnergyMeasure")) + if (soap_out_PointerToeml23__MolarEnergyMeasure(soap, "prodml23:WaterEnthalpy", -1, &a->prodml23__WaterAnalysisTestStep::WaterEnthalpy, "eml23:MolarEnergyMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, "prodml22:WaterEntropy", -1, &a->prodml22__WaterAnalysisTestStep::WaterEntropy, "eml23:EnergyLengthPerTimeAreaTemperatureMeasure")) + if (soap_out_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, "prodml23:WaterEntropy", -1, &a->prodml23__WaterAnalysisTestStep::WaterEntropy, "eml23:EnergyLengthPerTimeAreaTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerMassMeasure(soap, "prodml22:WaterSpecificVolume", -1, &a->prodml22__WaterAnalysisTestStep::WaterSpecificVolume, "eml23:VolumePerMassMeasure")) + if (soap_out_PointerToeml23__VolumePerMassMeasure(soap, "prodml23:WaterSpecificVolume", -1, &a->prodml23__WaterAnalysisTestStep::WaterSpecificVolume, "eml23:VolumePerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__WaterAnalysisTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__WaterAnalysisTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WaterAnalysisTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterAnalysisTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WaterAnalysisTestStep(soap, tag, this, type); + return soap_in_prodml23__WaterAnalysisTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml22__WaterAnalysisTestStep(struct soap *soap, const char *tag, prodml22__WaterAnalysisTestStep *a, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml23__WaterAnalysisTestStep(struct soap *soap, const char *tag, prodml23__WaterAnalysisTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WaterAnalysisTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, sizeof(prodml22__WaterAnalysisTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WaterAnalysisTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, sizeof(prodml23__WaterAnalysisTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WaterAnalysisTestStep *)a->soap_in(soap, tag, type); + return (prodml23__WaterAnalysisTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__WaterAnalysisTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__WaterAnalysisTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepPressure1 = 1; @@ -217257,157 +217222,157 @@ SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml22__WaterA for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__WaterAnalysisTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__WaterAnalysisTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__WaterAnalysisTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__WaterAnalysisTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_StepTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", &a->prodml22__WaterAnalysisTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", &a->prodml23__WaterAnalysisTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StepTemperature1--; continue; } } if (soap_flag_DissolvedCO21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:DissolvedCO2", &a->prodml22__WaterAnalysisTestStep::DissolvedCO2, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:DissolvedCO2", &a->prodml23__WaterAnalysisTestStep::DissolvedCO2, "eml23:MassPerVolumeMeasureExt")) { soap_flag_DissolvedCO21--; continue; } } if (soap_flag_DissolvedH2S1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:DissolvedH2S", &a->prodml22__WaterAnalysisTestStep::DissolvedH2S, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:DissolvedH2S", &a->prodml23__WaterAnalysisTestStep::DissolvedH2S, "eml23:MassPerVolumeMeasureExt")) { soap_flag_DissolvedH2S1--; continue; } } if (soap_flag_DissolvedO21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:DissolvedO2", &a->prodml22__WaterAnalysisTestStep::DissolvedO2, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:DissolvedO2", &a->prodml23__WaterAnalysisTestStep::DissolvedO2, "eml23:MassPerVolumeMeasureExt")) { soap_flag_DissolvedO21--; continue; } } if (soap_flag_FlashedGas1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlashedGas(soap, "prodml22:FlashedGas", &a->prodml22__WaterAnalysisTestStep::FlashedGas, "prodml22:FlashedGas")) + { if (soap_in_PointerToprodml23__FlashedGas(soap, "prodml23:FlashedGas", &a->prodml23__WaterAnalysisTestStep::FlashedGas, "prodml23:FlashedGas")) { soap_flag_FlashedGas1--; continue; } } if (soap_flag_pH1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__UnitlessMeasure(soap, "prodml22:pH", &a->prodml22__WaterAnalysisTestStep::pH, "eml23:UnitlessMeasure")) + { if (soap_in_PointerToeml23__UnitlessMeasure(soap, "prodml23:pH", &a->prodml23__WaterAnalysisTestStep::pH, "eml23:UnitlessMeasure")) { soap_flag_pH1--; continue; } } if (soap_flag_Resistivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ElectricalResistivityMeasureExt(soap, "prodml22:Resistivity", &a->prodml22__WaterAnalysisTestStep::Resistivity, "eml23:ElectricalResistivityMeasureExt")) + { if (soap_in_PointerToeml23__ElectricalResistivityMeasureExt(soap, "prodml23:Resistivity", &a->prodml23__WaterAnalysisTestStep::Resistivity, "eml23:ElectricalResistivityMeasureExt")) { soap_flag_Resistivity1--; continue; } } if (soap_flag_Turbidity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__UnitlessMeasure(soap, "prodml22:Turbidity", &a->prodml22__WaterAnalysisTestStep::Turbidity, "eml23:UnitlessMeasure")) + { if (soap_in_PointerToeml23__UnitlessMeasure(soap, "prodml23:Turbidity", &a->prodml23__WaterAnalysisTestStep::Turbidity, "eml23:UnitlessMeasure")) { soap_flag_Turbidity1--; continue; } } if (soap_flag_WaterViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:WaterViscosity", &a->prodml22__WaterAnalysisTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:WaterViscosity", &a->prodml23__WaterAnalysisTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_WaterViscosity1--; continue; } } if (soap_flag_SolutionGasWaterRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasWaterRatio", &a->prodml22__WaterAnalysisTestStep::SolutionGasWaterRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasWaterRatio", &a->prodml23__WaterAnalysisTestStep::SolutionGasWaterRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasWaterRatio1--; continue; } } if (soap_flag_WaterViscousCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:WaterViscousCompressibility", &a->prodml22__WaterAnalysisTestStep::WaterViscousCompressibility, "eml23:ReciprocalPressureMeasure")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:WaterViscousCompressibility", &a->prodml23__WaterAnalysisTestStep::WaterViscousCompressibility, "eml23:ReciprocalPressureMeasure")) { soap_flag_WaterViscousCompressibility1--; continue; } } if (soap_flag_WaterDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:WaterDensity", &a->prodml22__WaterAnalysisTestStep::WaterDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:WaterDensity", &a->prodml23__WaterAnalysisTestStep::WaterDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_WaterDensity1--; continue; } } if (soap_flag_WaterSpecificHeat1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:WaterSpecificHeat", &a->prodml22__WaterAnalysisTestStep::WaterSpecificHeat, "eml23:EnergyPerVolumeMeasure")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:WaterSpecificHeat", &a->prodml23__WaterAnalysisTestStep::WaterSpecificHeat, "eml23:EnergyPerVolumeMeasure")) { soap_flag_WaterSpecificHeat1--; continue; } } if (soap_flag_WaterFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:WaterFormationVolumeFactor", &a->prodml22__WaterAnalysisTestStep::WaterFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:WaterFormationVolumeFactor", &a->prodml23__WaterAnalysisTestStep::WaterFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_WaterFormationVolumeFactor1--; continue; } } if (soap_flag_WaterHeatCapacity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml22:WaterHeatCapacity", &a->prodml22__WaterAnalysisTestStep::WaterHeatCapacity, "eml23:EnergyMeasure")) + { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml23:WaterHeatCapacity", &a->prodml23__WaterAnalysisTestStep::WaterHeatCapacity, "eml23:EnergyMeasure")) { soap_flag_WaterHeatCapacity1--; continue; } } if (soap_flag_WaterIsothermalCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:WaterIsothermalCompressibility", &a->prodml22__WaterAnalysisTestStep::WaterIsothermalCompressibility, "eml23:ReciprocalPressureMeasure")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:WaterIsothermalCompressibility", &a->prodml23__WaterAnalysisTestStep::WaterIsothermalCompressibility, "eml23:ReciprocalPressureMeasure")) { soap_flag_WaterIsothermalCompressibility1--; continue; } } if (soap_flag_WaterThermalConductivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ElectricConductivityMeasure(soap, "prodml22:WaterThermalConductivity", &a->prodml22__WaterAnalysisTestStep::WaterThermalConductivity, "eml23:ElectricConductivityMeasure")) + { if (soap_in_PointerToeml23__ElectricConductivityMeasure(soap, "prodml23:WaterThermalConductivity", &a->prodml23__WaterAnalysisTestStep::WaterThermalConductivity, "eml23:ElectricConductivityMeasure")) { soap_flag_WaterThermalConductivity1--; continue; } } if (soap_flag_WaterDensityChangeWithPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumePerPressureMeasureExt(soap, "prodml22:WaterDensityChangeWithPressure", &a->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithPressure, "eml23:MassPerVolumePerPressureMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumePerPressureMeasureExt(soap, "prodml23:WaterDensityChangeWithPressure", &a->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithPressure, "eml23:MassPerVolumePerPressureMeasureExt")) { soap_flag_WaterDensityChangeWithPressure1--; continue; } } if (soap_flag_WaterThermalExpansion1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumetricThermalExpansionMeasure(soap, "prodml22:WaterThermalExpansion", &a->prodml22__WaterAnalysisTestStep::WaterThermalExpansion, "eml23:VolumetricThermalExpansionMeasure")) + { if (soap_in_PointerToeml23__VolumetricThermalExpansionMeasure(soap, "prodml23:WaterThermalExpansion", &a->prodml23__WaterAnalysisTestStep::WaterThermalExpansion, "eml23:VolumetricThermalExpansionMeasure")) { soap_flag_WaterThermalExpansion1--; continue; } } if (soap_flag_WaterDensityChangeWithTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumePerTemperatureMeasureExt(soap, "prodml22:WaterDensityChangeWithTemperature", &a->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithTemperature, "eml23:MassPerVolumePerTemperatureMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumePerTemperatureMeasureExt(soap, "prodml23:WaterDensityChangeWithTemperature", &a->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithTemperature, "eml23:MassPerVolumePerTemperatureMeasureExt")) { soap_flag_WaterDensityChangeWithTemperature1--; continue; } } if (soap_flag_WaterEnthalpy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolarEnergyMeasure(soap, "prodml22:WaterEnthalpy", &a->prodml22__WaterAnalysisTestStep::WaterEnthalpy, "eml23:MolarEnergyMeasure")) + { if (soap_in_PointerToeml23__MolarEnergyMeasure(soap, "prodml23:WaterEnthalpy", &a->prodml23__WaterAnalysisTestStep::WaterEnthalpy, "eml23:MolarEnergyMeasure")) { soap_flag_WaterEnthalpy1--; continue; } } if (soap_flag_WaterEntropy1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, "prodml22:WaterEntropy", &a->prodml22__WaterAnalysisTestStep::WaterEntropy, "eml23:EnergyLengthPerTimeAreaTemperatureMeasure")) + { if (soap_in_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure(soap, "prodml23:WaterEntropy", &a->prodml23__WaterAnalysisTestStep::WaterEntropy, "eml23:EnergyLengthPerTimeAreaTemperatureMeasure")) { soap_flag_WaterEntropy1--; continue; } } if (soap_flag_WaterSpecificVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerMassMeasure(soap, "prodml22:WaterSpecificVolume", &a->prodml22__WaterAnalysisTestStep::WaterSpecificVolume, "eml23:VolumePerMassMeasure")) + { if (soap_in_PointerToeml23__VolumePerMassMeasure(soap, "prodml23:WaterSpecificVolume", &a->prodml23__WaterAnalysisTestStep::WaterSpecificVolume, "eml23:VolumePerMassMeasure")) { soap_flag_WaterSpecificVolume1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__WaterAnalysisTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__WaterAnalysisTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -217421,7 +217386,7 @@ SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml22__WaterA } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StepNumber1 > 0 || !a->prodml22__WaterAnalysisTestStep::StepPressure || !a->prodml22__WaterAnalysisTestStep::StepTemperature)) + if ((soap_flag_StepNumber1 > 0 || !a->prodml23__WaterAnalysisTestStep::StepPressure || !a->prodml23__WaterAnalysisTestStep::StepTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -217431,35 +217396,35 @@ SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml22__WaterA return NULL; } else - { a = (prodml22__WaterAnalysisTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, sizeof(prodml22__WaterAnalysisTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WaterAnalysisTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, sizeof(prodml23__WaterAnalysisTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysisTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysisTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WaterAnalysisTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WaterAnalysisTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WaterAnalysisTestStep *p; - size_t k = sizeof(prodml22__WaterAnalysisTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, n, gsoap_eml2_3_fdelete); + prodml23__WaterAnalysisTestStep *p; + size_t k = sizeof(prodml23__WaterAnalysisTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WaterAnalysisTestStep); + { p = SOAP_NEW(soap, prodml23__WaterAnalysisTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WaterAnalysisTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WaterAnalysisTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WaterAnalysisTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WaterAnalysisTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -217469,144 +217434,144 @@ SOAP_FMAC1 prodml22__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__WaterAnalysisTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WaterAnalysisTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WaterAnalysisTestStep(soap, tag ? tag : "prodml22:WaterAnalysisTestStep", -2, this, type)) + if (soap_out_prodml23__WaterAnalysisTestStep(soap, tag ? tag : "prodml23:WaterAnalysisTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WaterAnalysisTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterAnalysisTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WaterAnalysisTestStep(soap, this, tag, type); + return soap_get_prodml23__WaterAnalysisTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_get_prodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTestStep * SOAP_FMAC4 soap_get_prodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WaterAnalysisTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__WaterAnalysisTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WaterAnalysisTest::soap_default(struct soap *soap) +void prodml23__WaterAnalysisTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__WaterAnalysisTest::TestNumber); - this->prodml22__WaterAnalysisTest::LiquidGravity = NULL; - this->prodml22__WaterAnalysisTest::SalinityPerMass = NULL; - this->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerMass = NULL; - this->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerMass = NULL; - this->prodml22__WaterAnalysisTest::TotalHardnessPerMass = NULL; - this->prodml22__WaterAnalysisTest::TotalAlkalinityPerMass = NULL; - this->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerMass = NULL; - this->prodml22__WaterAnalysisTest::SalinityPerVolume = NULL; - this->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerVolume = NULL; - this->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerVolume = NULL; - this->prodml22__WaterAnalysisTest::TotalHardnessPerVolume = NULL; - this->prodml22__WaterAnalysisTest::TotalAlkalinityPerVolume = NULL; - this->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerVolume = NULL; - this->prodml22__WaterAnalysisTest::TestMethod = NULL; - this->prodml22__WaterAnalysisTest::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap, &this->prodml22__WaterAnalysisTest::WaterAnalysisTestStep); - soap_default_eml23__String64(soap, &this->prodml22__WaterAnalysisTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__WaterAnalysisTest::TestNumber); + this->prodml23__WaterAnalysisTest::LiquidGravity = NULL; + this->prodml23__WaterAnalysisTest::SalinityPerMass = NULL; + this->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerMass = NULL; + this->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerMass = NULL; + this->prodml23__WaterAnalysisTest::TotalHardnessPerMass = NULL; + this->prodml23__WaterAnalysisTest::TotalAlkalinityPerMass = NULL; + this->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerMass = NULL; + this->prodml23__WaterAnalysisTest::SalinityPerVolume = NULL; + this->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerVolume = NULL; + this->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerVolume = NULL; + this->prodml23__WaterAnalysisTest::TotalHardnessPerVolume = NULL; + this->prodml23__WaterAnalysisTest::TotalAlkalinityPerVolume = NULL; + this->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerVolume = NULL; + this->prodml23__WaterAnalysisTest::TestMethod = NULL; + this->prodml23__WaterAnalysisTest::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap, &this->prodml23__WaterAnalysisTest::WaterAnalysisTestStep); + soap_default_eml23__String64(soap, &this->prodml23__WaterAnalysisTest::uid); } -void prodml22__WaterAnalysisTest::soap_serialize(struct soap *soap) const +void prodml23__WaterAnalysisTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__WaterAnalysisTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerTodouble(soap, &this->prodml22__WaterAnalysisTest::LiquidGravity); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__WaterAnalysisTest::SalinityPerMass); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerMass); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerMass); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__WaterAnalysisTest::TotalHardnessPerMass); - soap_serialize_PointerToeml23__MassPerMassMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalAlkalinityPerMass); - soap_serialize_PointerToeml23__MassPerMassMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerMass); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTest::SalinityPerVolume); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerVolume); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerVolume); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalHardnessPerVolume); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalAlkalinityPerVolume); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerVolume); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__WaterAnalysisTest::TestMethod); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__WaterAnalysisTest::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap, &this->prodml22__WaterAnalysisTest::WaterAnalysisTestStep); + soap_embedded(soap, &this->prodml23__WaterAnalysisTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerTodouble(soap, &this->prodml23__WaterAnalysisTest::LiquidGravity); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__WaterAnalysisTest::SalinityPerMass); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerMass); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerMass); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__WaterAnalysisTest::TotalHardnessPerMass); + soap_serialize_PointerToeml23__MassPerMassMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalAlkalinityPerMass); + soap_serialize_PointerToeml23__MassPerMassMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerMass); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTest::SalinityPerVolume); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerVolume); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerVolume); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalHardnessPerVolume); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalAlkalinityPerVolume); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerVolume); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__WaterAnalysisTest::TestMethod); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__WaterAnalysisTest::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap, &this->prodml23__WaterAnalysisTest::WaterAnalysisTestStep); #endif } -int prodml22__WaterAnalysisTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WaterAnalysisTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WaterAnalysisTest(soap, tag, id, this, type); + return soap_out_prodml23__WaterAnalysisTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysisTest(struct soap *soap, const char *tag, int id, const prodml22__WaterAnalysisTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterAnalysisTest(struct soap *soap, const char *tag, int id, const prodml23__WaterAnalysisTest *a, const char *type) { if (!type) - type = "prodml22:WaterAnalysisTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__WaterAnalysisTest*)a)->uid), 1); + type = "prodml23:WaterAnalysisTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__WaterAnalysisTest*)a)->uid), 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_gsoap_eml2_3_prodml22__WaterAnalysisTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__WaterAnalysisTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__WaterAnalysisTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:LiquidGravity", -1, &a->prodml22__WaterAnalysisTest::LiquidGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:LiquidGravity", -1, &a->prodml23__WaterAnalysisTest::LiquidGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:SalinityPerMass", -1, &a->prodml22__WaterAnalysisTest::SalinityPerMass, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:SalinityPerMass", -1, &a->prodml23__WaterAnalysisTest::SalinityPerMass, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalDissolvedSolidsPerMass", -1, &a->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerMass, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalDissolvedSolidsPerMass", -1, &a->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerMass, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalSuspendedSolidsPerMass", -1, &a->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerMass, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalSuspendedSolidsPerMass", -1, &a->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerMass, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalHardnessPerMass", -1, &a->prodml22__WaterAnalysisTest::TotalHardnessPerMass, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalHardnessPerMass", -1, &a->prodml23__WaterAnalysisTest::TotalHardnessPerMass, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasureExt(soap, "prodml22:TotalAlkalinityPerMass", -1, &a->prodml22__WaterAnalysisTest::TotalAlkalinityPerMass, "eml23:MassPerMassMeasureExt")) + if (soap_out_PointerToeml23__MassPerMassMeasureExt(soap, "prodml23:TotalAlkalinityPerMass", -1, &a->prodml23__WaterAnalysisTest::TotalAlkalinityPerMass, "eml23:MassPerMassMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasureExt(soap, "prodml22:TotalSedimentSolidsPerMass", -1, &a->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerMass, "eml23:MassPerMassMeasureExt")) + if (soap_out_PointerToeml23__MassPerMassMeasureExt(soap, "prodml23:TotalSedimentSolidsPerMass", -1, &a->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerMass, "eml23:MassPerMassMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:SalinityPerVolume", -1, &a->prodml22__WaterAnalysisTest::SalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:SalinityPerVolume", -1, &a->prodml23__WaterAnalysisTest::SalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalDissolvedSolidsPerVolume", -1, &a->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalDissolvedSolidsPerVolume", -1, &a->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalSuspendedSolidsPerVolume", -1, &a->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalSuspendedSolidsPerVolume", -1, &a->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalHardnessPerVolume", -1, &a->prodml22__WaterAnalysisTest::TotalHardnessPerVolume, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalHardnessPerVolume", -1, &a->prodml23__WaterAnalysisTest::TotalHardnessPerVolume, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalAlkalinityPerVolume", -1, &a->prodml22__WaterAnalysisTest::TotalAlkalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalAlkalinityPerVolume", -1, &a->prodml23__WaterAnalysisTest::TotalAlkalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalSedimentSolidsPerVolume", -1, &a->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalSedimentSolidsPerVolume", -1, &a->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:TestMethod", -1, &a->prodml22__WaterAnalysisTest::TestMethod, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:TestMethod", -1, &a->prodml23__WaterAnalysisTest::TestMethod, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__WaterAnalysisTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__WaterAnalysisTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap, "prodml22:WaterAnalysisTestStep", -1, &a->prodml22__WaterAnalysisTest::WaterAnalysisTestStep, "prodml22:WaterAnalysisTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap, "prodml23:WaterAnalysisTestStep", -1, &a->prodml23__WaterAnalysisTest::WaterAnalysisTestStep, "prodml23:WaterAnalysisTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WaterAnalysisTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterAnalysisTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WaterAnalysisTest(soap, tag, this, type); + return soap_in_prodml23__WaterAnalysisTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WaterAnalysisTest * SOAP_FMAC4 soap_in_prodml22__WaterAnalysisTest(struct soap *soap, const char *tag, prodml22__WaterAnalysisTest *a, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTest * SOAP_FMAC4 soap_in_prodml23__WaterAnalysisTest(struct soap *soap, const char *tag, prodml23__WaterAnalysisTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WaterAnalysisTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, sizeof(prodml22__WaterAnalysisTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WaterAnalysisTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, sizeof(prodml23__WaterAnalysisTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WaterAnalysisTest *)a->soap_in(soap, tag, type); + return (prodml23__WaterAnalysisTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__WaterAnalysisTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__WaterAnalysisTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_LiquidGravity1 = 1; @@ -217629,103 +217594,103 @@ SOAP_FMAC3 prodml22__WaterAnalysisTest * SOAP_FMAC4 soap_in_prodml22__WaterAnaly for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__WaterAnalysisTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__WaterAnalysisTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_LiquidGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:LiquidGravity", &a->prodml22__WaterAnalysisTest::LiquidGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:LiquidGravity", &a->prodml23__WaterAnalysisTest::LiquidGravity, "xsd:double")) { soap_flag_LiquidGravity1--; continue; } } if (soap_flag_SalinityPerMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:SalinityPerMass", &a->prodml22__WaterAnalysisTest::SalinityPerMass, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:SalinityPerMass", &a->prodml23__WaterAnalysisTest::SalinityPerMass, "eml23:MassPerMassMeasure")) { soap_flag_SalinityPerMass1--; continue; } } if (soap_flag_TotalDissolvedSolidsPerMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalDissolvedSolidsPerMass", &a->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerMass, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalDissolvedSolidsPerMass", &a->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerMass, "eml23:MassPerMassMeasure")) { soap_flag_TotalDissolvedSolidsPerMass1--; continue; } } if (soap_flag_TotalSuspendedSolidsPerMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalSuspendedSolidsPerMass", &a->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerMass, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalSuspendedSolidsPerMass", &a->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerMass, "eml23:MassPerMassMeasure")) { soap_flag_TotalSuspendedSolidsPerMass1--; continue; } } if (soap_flag_TotalHardnessPerMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalHardnessPerMass", &a->prodml22__WaterAnalysisTest::TotalHardnessPerMass, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalHardnessPerMass", &a->prodml23__WaterAnalysisTest::TotalHardnessPerMass, "eml23:MassPerMassMeasure")) { soap_flag_TotalHardnessPerMass1--; continue; } } if (soap_flag_TotalAlkalinityPerMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasureExt(soap, "prodml22:TotalAlkalinityPerMass", &a->prodml22__WaterAnalysisTest::TotalAlkalinityPerMass, "eml23:MassPerMassMeasureExt")) + { if (soap_in_PointerToeml23__MassPerMassMeasureExt(soap, "prodml23:TotalAlkalinityPerMass", &a->prodml23__WaterAnalysisTest::TotalAlkalinityPerMass, "eml23:MassPerMassMeasureExt")) { soap_flag_TotalAlkalinityPerMass1--; continue; } } if (soap_flag_TotalSedimentSolidsPerMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasureExt(soap, "prodml22:TotalSedimentSolidsPerMass", &a->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerMass, "eml23:MassPerMassMeasureExt")) + { if (soap_in_PointerToeml23__MassPerMassMeasureExt(soap, "prodml23:TotalSedimentSolidsPerMass", &a->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerMass, "eml23:MassPerMassMeasureExt")) { soap_flag_TotalSedimentSolidsPerMass1--; continue; } } if (soap_flag_SalinityPerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:SalinityPerVolume", &a->prodml22__WaterAnalysisTest::SalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:SalinityPerVolume", &a->prodml23__WaterAnalysisTest::SalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) { soap_flag_SalinityPerVolume1--; continue; } } if (soap_flag_TotalDissolvedSolidsPerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalDissolvedSolidsPerVolume", &a->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalDissolvedSolidsPerVolume", &a->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) { soap_flag_TotalDissolvedSolidsPerVolume1--; continue; } } if (soap_flag_TotalSuspendedSolidsPerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalSuspendedSolidsPerVolume", &a->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalSuspendedSolidsPerVolume", &a->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) { soap_flag_TotalSuspendedSolidsPerVolume1--; continue; } } if (soap_flag_TotalHardnessPerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalHardnessPerVolume", &a->prodml22__WaterAnalysisTest::TotalHardnessPerVolume, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalHardnessPerVolume", &a->prodml23__WaterAnalysisTest::TotalHardnessPerVolume, "eml23:MassPerVolumeMeasureExt")) { soap_flag_TotalHardnessPerVolume1--; continue; } } if (soap_flag_TotalAlkalinityPerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalAlkalinityPerVolume", &a->prodml22__WaterAnalysisTest::TotalAlkalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalAlkalinityPerVolume", &a->prodml23__WaterAnalysisTest::TotalAlkalinityPerVolume, "eml23:MassPerVolumeMeasureExt")) { soap_flag_TotalAlkalinityPerVolume1--; continue; } } if (soap_flag_TotalSedimentSolidsPerVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:TotalSedimentSolidsPerVolume", &a->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:TotalSedimentSolidsPerVolume", &a->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerVolume, "eml23:MassPerVolumeMeasureExt")) { soap_flag_TotalSedimentSolidsPerVolume1--; continue; } } if (soap_flag_TestMethod1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:TestMethod", &a->prodml22__WaterAnalysisTest::TestMethod, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:TestMethod", &a->prodml23__WaterAnalysisTest::TestMethod, "eml23:String2000")) { soap_flag_TestMethod1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__WaterAnalysisTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__WaterAnalysisTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap, "prodml22:WaterAnalysisTestStep", &a->prodml22__WaterAnalysisTest::WaterAnalysisTestStep, "prodml22:WaterAnalysisTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap, "prodml23:WaterAnalysisTestStep", &a->prodml23__WaterAnalysisTest::WaterAnalysisTestStep, "prodml23:WaterAnalysisTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -217747,35 +217712,35 @@ SOAP_FMAC3 prodml22__WaterAnalysisTest * SOAP_FMAC4 soap_in_prodml22__WaterAnaly return NULL; } else - { a = (prodml22__WaterAnalysisTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, sizeof(prodml22__WaterAnalysisTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WaterAnalysisTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, sizeof(prodml23__WaterAnalysisTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysisTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysisTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WaterAnalysisTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WaterAnalysisTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WaterAnalysisTest *p; - size_t k = sizeof(prodml22__WaterAnalysisTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, n, gsoap_eml2_3_fdelete); + prodml23__WaterAnalysisTest *p; + size_t k = sizeof(prodml23__WaterAnalysisTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WaterAnalysisTest); + { p = SOAP_NEW(soap, prodml23__WaterAnalysisTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WaterAnalysisTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WaterAnalysisTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WaterAnalysisTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WaterAnalysisTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -217785,64 +217750,64 @@ SOAP_FMAC1 prodml22__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml22__W return p; } -int prodml22__WaterAnalysisTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WaterAnalysisTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WaterAnalysisTest(soap, tag ? tag : "prodml22:WaterAnalysisTest", -2, this, type)) + if (soap_out_prodml23__WaterAnalysisTest(soap, tag ? tag : "prodml23:WaterAnalysisTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WaterAnalysisTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterAnalysisTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WaterAnalysisTest(soap, this, tag, type); + return soap_get_prodml23__WaterAnalysisTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WaterAnalysisTest * SOAP_FMAC4 soap_get_prodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTest * SOAP_FMAC4 soap_get_prodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WaterAnalysisTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__WaterAnalysisTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__WaterAnalysis::soap_default(struct soap *soap) +void prodml23__WaterAnalysis::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidAnalysis::soap_default(soap); - this->prodml22__WaterAnalysis::SampleIntegrityAndPreparation = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap, &this->prodml22__WaterAnalysis::WaterAnalysisTest); - soap_default_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap, &this->prodml22__WaterAnalysis::WaterSampleComponent); - this->prodml22__WaterAnalysis::FluidSample = NULL; + this->prodml23__FluidAnalysis::soap_default(soap); + this->prodml23__WaterAnalysis::SampleIntegrityAndPreparation = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap, &this->prodml23__WaterAnalysis::WaterAnalysisTest); + soap_default_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap, &this->prodml23__WaterAnalysis::WaterSampleComponent); + this->prodml23__WaterAnalysis::FluidSample = NULL; } -void prodml22__WaterAnalysis::soap_serialize(struct soap *soap) const +void prodml23__WaterAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SampleIntegrityAndPreparation(soap, &this->prodml22__WaterAnalysis::SampleIntegrityAndPreparation); - soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap, &this->prodml22__WaterAnalysis::WaterAnalysisTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap, &this->prodml22__WaterAnalysis::WaterSampleComponent); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__WaterAnalysis::FluidSample); - this->prodml22__FluidAnalysis::soap_serialize(soap); + soap_serialize_PointerToprodml23__SampleIntegrityAndPreparation(soap, &this->prodml23__WaterAnalysis::SampleIntegrityAndPreparation); + soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap, &this->prodml23__WaterAnalysis::WaterAnalysisTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap, &this->prodml23__WaterAnalysis::WaterSampleComponent); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__WaterAnalysis::FluidSample); + this->prodml23__FluidAnalysis::soap_serialize(soap); #endif } -int prodml22__WaterAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__WaterAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__WaterAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__WaterAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysis(struct soap *soap, const char *tag, int id, const prodml22__WaterAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterAnalysis(struct soap *soap, const char *tag, int id, const prodml23__WaterAnalysis *a, const char *type) { if (!type) - type = "prodml22:WaterAnalysis"; + type = "prodml23:WaterAnalysis"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__WaterAnalysis), type ? type : "prodml22:WaterAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis), type ? type : "prodml23:WaterAnalysis")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -217864,70 +217829,70 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysis(struct soap *soap, co return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:RequestDate", -1, &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:RequestDate", -1, &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Client", -1, &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Client", -1, &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", -1, &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", -1, &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", -1, &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", -1, &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", -1, &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", -1, &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", -1, &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", -1, &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidAnalysis::StandardConditions) - { if (soap_element_empty(soap, "prodml22:StandardConditions", 0, NULL)) + if (!a->prodml23__FluidAnalysis::StandardConditions) + { if (soap_element_empty(soap, "prodml23:StandardConditions", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", -1, &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", -1, &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) return soap->error; - if (soap_out_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", -1, &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + if (soap_out_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", -1, &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) return soap->error; - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", -1, &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", -1, &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", -1, &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", -1, &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", -1, &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", -1, &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) return soap->error; - if (soap_out_PointerToprodml22__SampleIntegrityAndPreparation(soap, "prodml22:SampleIntegrityAndPreparation", -1, &a->prodml22__WaterAnalysis::SampleIntegrityAndPreparation, "prodml22:SampleIntegrityAndPreparation")) + if (soap_out_PointerToprodml23__SampleIntegrityAndPreparation(soap, "prodml23:SampleIntegrityAndPreparation", -1, &a->prodml23__WaterAnalysis::SampleIntegrityAndPreparation, "prodml23:SampleIntegrityAndPreparation")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap, "prodml22:WaterAnalysisTest", -1, &a->prodml22__WaterAnalysis::WaterAnalysisTest, "prodml22:WaterAnalysisTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap, "prodml23:WaterAnalysisTest", -1, &a->prodml23__WaterAnalysis::WaterAnalysisTest, "prodml23:WaterAnalysisTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap, "prodml22:WaterSampleComponent", -1, &a->prodml22__WaterAnalysis::WaterSampleComponent, "prodml22:WaterSampleComponent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap, "prodml23:WaterSampleComponent", -1, &a->prodml23__WaterAnalysis::WaterSampleComponent, "prodml23:WaterSampleComponent")) return soap->error; - if (!a->prodml22__WaterAnalysis::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__WaterAnalysis::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__WaterAnalysis::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__WaterAnalysis::FluidSample, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__WaterAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__WaterAnalysis(soap, tag, this, type); + return soap_in_prodml23__WaterAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_in_prodml22__WaterAnalysis(struct soap *soap, const char *tag, prodml22__WaterAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysis * SOAP_FMAC4 soap_in_prodml23__WaterAnalysis(struct soap *soap, const char *tag, prodml23__WaterAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__WaterAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis, sizeof(prodml22__WaterAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__WaterAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis, sizeof(prodml23__WaterAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__WaterAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__WaterAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -218013,101 +217978,101 @@ SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_in_prodml22__WaterAnalysis( continue; } if (soap_flag_RequestDate2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:RequestDate", &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:RequestDate", &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) { soap_flag_RequestDate2--; continue; } } if (soap_flag_Client2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Client", &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Client", &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) { soap_flag_Client2--; continue; } } if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AnalysisDescription2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) { soap_flag_AnalysisDescription2--; continue; } } if (soap_flag_AnalysisPurpose2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) { soap_flag_AnalysisPurpose2--; continue; } } if (soap_flag_AnalysisSite2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) { soap_flag_AnalysisSite2--; continue; } } if (soap_flag_LabContact2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) { soap_flag_LabContact2--; continue; } } if (soap_flag_StandardConditions2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) { soap_flag_StandardConditions2--; continue; } } if (soap_flag_AnalysisQuality2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + { if (soap_in_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) { soap_flag_AnalysisQuality2--; continue; } } if (soap_flag_FluidComponentCatalog2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + { if (soap_in_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) { soap_flag_FluidComponentCatalog2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) continue; } if (soap_flag_SampleIntegrityAndPreparation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SampleIntegrityAndPreparation(soap, "prodml22:SampleIntegrityAndPreparation", &a->prodml22__WaterAnalysis::SampleIntegrityAndPreparation, "prodml22:SampleIntegrityAndPreparation")) + { if (soap_in_PointerToprodml23__SampleIntegrityAndPreparation(soap, "prodml23:SampleIntegrityAndPreparation", &a->prodml23__WaterAnalysis::SampleIntegrityAndPreparation, "prodml23:SampleIntegrityAndPreparation")) { soap_flag_SampleIntegrityAndPreparation1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap, "prodml22:WaterAnalysisTest", &a->prodml22__WaterAnalysis::WaterAnalysisTest, "prodml22:WaterAnalysisTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap, "prodml23:WaterAnalysisTest", &a->prodml23__WaterAnalysis::WaterAnalysisTest, "prodml23:WaterAnalysisTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap, "prodml22:WaterSampleComponent", &a->prodml22__WaterAnalysis::WaterSampleComponent, "prodml22:WaterSampleComponent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap, "prodml23:WaterSampleComponent", &a->prodml23__WaterAnalysis::WaterSampleComponent, "prodml23:WaterSampleComponent")) continue; } if (soap_flag_FluidSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__WaterAnalysis::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__WaterAnalysis::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample1--; continue; } @@ -218121,7 +218086,7 @@ SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_in_prodml22__WaterAnalysis( } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality2 > 0 || !a->prodml22__WaterAnalysis::FluidSample)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality2 > 0 || !a->prodml23__WaterAnalysis::FluidSample)) { soap->error = SOAP_OCCURS; return NULL; } @@ -218131,35 +218096,35 @@ SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_in_prodml22__WaterAnalysis( return NULL; } else - { a = (prodml22__WaterAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis, sizeof(prodml22__WaterAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__WaterAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis, sizeof(prodml23__WaterAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__WaterAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__WaterAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__WaterAnalysis *p; - size_t k = sizeof(prodml22__WaterAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__WaterAnalysis *p; + size_t k = sizeof(prodml23__WaterAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__WaterAnalysis); + { p = SOAP_NEW(soap, prodml23__WaterAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__WaterAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__WaterAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__WaterAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__WaterAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -218169,86 +218134,86 @@ SOAP_FMAC1 prodml22__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__Water return p; } -int prodml22__WaterAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__WaterAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__WaterAnalysis(soap, tag ? tag : "prodml22:WaterAnalysis", -2, this, type)) + if (soap_out_prodml23__WaterAnalysis(soap, tag ? tag : "prodml23:WaterAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__WaterAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__WaterAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__WaterAnalysis(soap, this, tag, type); + return soap_get_prodml23__WaterAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_get_prodml22__WaterAnalysis(struct soap *soap, prodml22__WaterAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysis * SOAP_FMAC4 soap_get_prodml23__WaterAnalysis(struct soap *soap, prodml23__WaterAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__WaterAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__WaterAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ViscosityAtTemperature::soap_default(struct soap *soap) +void prodml23__ViscosityAtTemperature::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ViscosityAtTemperature::Viscosity = NULL; - this->prodml22__ViscosityAtTemperature::ViscosityTemperature = NULL; + this->prodml23__ViscosityAtTemperature::Viscosity = NULL; + this->prodml23__ViscosityAtTemperature::ViscosityTemperature = NULL; } -void prodml22__ViscosityAtTemperature::soap_serialize(struct soap *soap) const +void prodml23__ViscosityAtTemperature::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__ViscosityAtTemperature::Viscosity); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__ViscosityAtTemperature::ViscosityTemperature); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__ViscosityAtTemperature::Viscosity); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__ViscosityAtTemperature::ViscosityTemperature); #endif } -int prodml22__ViscosityAtTemperature::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ViscosityAtTemperature::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ViscosityAtTemperature(soap, tag, id, this, type); + return soap_out_prodml23__ViscosityAtTemperature(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ViscosityAtTemperature(struct soap *soap, const char *tag, int id, const prodml22__ViscosityAtTemperature *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ViscosityAtTemperature(struct soap *soap, const char *tag, int id, const prodml23__ViscosityAtTemperature *a, const char *type) { if (!type) - type = "prodml22:ViscosityAtTemperature"; + type = "prodml23:ViscosityAtTemperature"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature), type)) return soap->error; - if (!a->prodml22__ViscosityAtTemperature::Viscosity) - { if (soap_element_empty(soap, "prodml22:Viscosity", 0, NULL)) + if (!a->prodml23__ViscosityAtTemperature::Viscosity) + { if (soap_element_empty(soap, "prodml23:Viscosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:Viscosity", -1, &a->prodml22__ViscosityAtTemperature::Viscosity, "eml23:DynamicViscosityMeasure")) + else if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:Viscosity", -1, &a->prodml23__ViscosityAtTemperature::Viscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (!a->prodml22__ViscosityAtTemperature::ViscosityTemperature) - { if (soap_element_empty(soap, "prodml22:ViscosityTemperature", 0, NULL)) + if (!a->prodml23__ViscosityAtTemperature::ViscosityTemperature) + { if (soap_element_empty(soap, "prodml23:ViscosityTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ViscosityTemperature", -1, &a->prodml22__ViscosityAtTemperature::ViscosityTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ViscosityTemperature", -1, &a->prodml23__ViscosityAtTemperature::ViscosityTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ViscosityAtTemperature::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ViscosityAtTemperature::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ViscosityAtTemperature(soap, tag, this, type); + return soap_in_prodml23__ViscosityAtTemperature(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml22__ViscosityAtTemperature(struct soap *soap, const char *tag, prodml22__ViscosityAtTemperature *a, const char *type) +SOAP_FMAC3 prodml23__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml23__ViscosityAtTemperature(struct soap *soap, const char *tag, prodml23__ViscosityAtTemperature *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ViscosityAtTemperature*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, sizeof(prodml22__ViscosityAtTemperature), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ViscosityAtTemperature*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, sizeof(prodml23__ViscosityAtTemperature), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ViscosityAtTemperature *)a->soap_in(soap, tag, type); + return (prodml23__ViscosityAtTemperature *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -218259,13 +218224,13 @@ SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml22__Visco for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Viscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:Viscosity", &a->prodml22__ViscosityAtTemperature::Viscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:Viscosity", &a->prodml23__ViscosityAtTemperature::Viscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_Viscosity1--; continue; } } if (soap_flag_ViscosityTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ViscosityTemperature", &a->prodml22__ViscosityAtTemperature::ViscosityTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ViscosityTemperature", &a->prodml23__ViscosityAtTemperature::ViscosityTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ViscosityTemperature1--; continue; } @@ -218279,7 +218244,7 @@ SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml22__Visco } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__ViscosityAtTemperature::Viscosity || !a->prodml22__ViscosityAtTemperature::ViscosityTemperature)) + if ((!a->prodml23__ViscosityAtTemperature::Viscosity || !a->prodml23__ViscosityAtTemperature::ViscosityTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -218289,35 +218254,35 @@ SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml22__Visco return NULL; } else - { a = (prodml22__ViscosityAtTemperature *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, sizeof(prodml22__ViscosityAtTemperature), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ViscosityAtTemperature *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, sizeof(prodml23__ViscosityAtTemperature), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml22__ViscosityAtTemperature(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml23__ViscosityAtTemperature(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ViscosityAtTemperature(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ViscosityAtTemperature(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ViscosityAtTemperature *p; - size_t k = sizeof(prodml22__ViscosityAtTemperature); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, n, gsoap_eml2_3_fdelete); + prodml23__ViscosityAtTemperature *p; + size_t k = sizeof(prodml23__ViscosityAtTemperature); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ViscosityAtTemperature); + { p = SOAP_NEW(soap, prodml23__ViscosityAtTemperature); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ViscosityAtTemperature, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ViscosityAtTemperature, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ViscosityAtTemperature location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ViscosityAtTemperature location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -218327,176 +218292,176 @@ SOAP_FMAC1 prodml22__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__ViscosityAtTemperature::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ViscosityAtTemperature::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ViscosityAtTemperature(soap, tag ? tag : "prodml22:ViscosityAtTemperature", -2, this, type)) + if (soap_out_prodml23__ViscosityAtTemperature(soap, tag ? tag : "prodml23:ViscosityAtTemperature", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ViscosityAtTemperature::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ViscosityAtTemperature::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ViscosityAtTemperature(soap, this, tag, type); + return soap_get_prodml23__ViscosityAtTemperature(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_get_prodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ViscosityAtTemperature * SOAP_FMAC4 soap_get_prodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ViscosityAtTemperature(soap, tag, p, type))) + if ((p = soap_in_prodml23__ViscosityAtTemperature(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__VaporLiquidEquilibriumTest::soap_default(struct soap *soap) +void prodml23__VaporLiquidEquilibriumTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__VaporLiquidEquilibriumTest::TestNumber); - this->prodml22__VaporLiquidEquilibriumTest::TestTemperature = NULL; - this->prodml22__VaporLiquidEquilibriumTest::TestPressure = NULL; - this->prodml22__VaporLiquidEquilibriumTest::GasSolventAdded = NULL; - this->prodml22__VaporLiquidEquilibriumTest::MixtureVolume = NULL; - this->prodml22__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction = NULL; - this->prodml22__VaporLiquidEquilibriumTest::MixtureGOR = NULL; - this->prodml22__VaporLiquidEquilibriumTest::MixturePsatTestTemperature = NULL; - this->prodml22__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat = NULL; - this->prodml22__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference = NULL; - this->prodml22__VaporLiquidEquilibriumTest::InjectedGasAdded = NULL; - this->prodml22__VaporLiquidEquilibriumTest::CumulativeGasAdded = NULL; - this->prodml22__VaporLiquidEquilibriumTest::VaporPhaseVolume = NULL; - this->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity); - this->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseVolume = NULL; - this->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporComposition); - this->prodml22__VaporLiquidEquilibriumTest::VaporTransportTestReference = NULL; - this->prodml22__VaporLiquidEquilibriumTest::LiquidTransportTestReference = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap, &this->prodml22__VaporLiquidEquilibriumTest::LiquidComposition); - this->prodml22__VaporLiquidEquilibriumTest::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__VaporLiquidEquilibriumTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__VaporLiquidEquilibriumTest::TestNumber); + this->prodml23__VaporLiquidEquilibriumTest::TestTemperature = NULL; + this->prodml23__VaporLiquidEquilibriumTest::TestPressure = NULL; + this->prodml23__VaporLiquidEquilibriumTest::GasSolventAdded = NULL; + this->prodml23__VaporLiquidEquilibriumTest::MixtureVolume = NULL; + this->prodml23__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction = NULL; + this->prodml23__VaporLiquidEquilibriumTest::MixtureGOR = NULL; + this->prodml23__VaporLiquidEquilibriumTest::MixturePsatTestTemperature = NULL; + this->prodml23__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat = NULL; + this->prodml23__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference = NULL; + this->prodml23__VaporLiquidEquilibriumTest::InjectedGasAdded = NULL; + this->prodml23__VaporLiquidEquilibriumTest::CumulativeGasAdded = NULL; + this->prodml23__VaporLiquidEquilibriumTest::VaporPhaseVolume = NULL; + this->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity); + this->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseVolume = NULL; + this->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporComposition); + this->prodml23__VaporLiquidEquilibriumTest::VaporTransportTestReference = NULL; + this->prodml23__VaporLiquidEquilibriumTest::LiquidTransportTestReference = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap, &this->prodml23__VaporLiquidEquilibriumTest::LiquidComposition); + this->prodml23__VaporLiquidEquilibriumTest::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__VaporLiquidEquilibriumTest::uid); } -void prodml22__VaporLiquidEquilibriumTest::soap_serialize(struct soap *soap) const +void prodml23__VaporLiquidEquilibriumTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__VaporLiquidEquilibriumTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::TestTemperature); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::TestPressure); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::GasSolventAdded); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::MixtureVolume); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::MixtureGOR); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::MixturePsatTestTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference); - soap_serialize_PointerToprodml22__InjectedGas(soap, &this->prodml22__VaporLiquidEquilibriumTest::InjectedGasAdded); - soap_serialize_PointerToprodml22__RefInjectedGasAdded(soap, &this->prodml22__VaporLiquidEquilibriumTest::CumulativeGasAdded); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporPhaseVolume); - soap_serialize_PointerToprodml22__PhaseViscosity(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity); - soap_serialize_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseVolume); - soap_serialize_PointerToprodml22__PhaseDensity(soap, &this->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporComposition); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__VaporLiquidEquilibriumTest::VaporTransportTestReference); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__VaporLiquidEquilibriumTest::LiquidTransportTestReference); - soap_serialize_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap, &this->prodml22__VaporLiquidEquilibriumTest::LiquidComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__VaporLiquidEquilibriumTest::Remark); + soap_embedded(soap, &this->prodml23__VaporLiquidEquilibriumTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::TestTemperature); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::TestPressure); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::GasSolventAdded); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::MixtureVolume); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::MixtureGOR); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::MixturePsatTestTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference); + soap_serialize_PointerToprodml23__InjectedGas(soap, &this->prodml23__VaporLiquidEquilibriumTest::InjectedGasAdded); + soap_serialize_PointerToprodml23__RefInjectedGasAdded(soap, &this->prodml23__VaporLiquidEquilibriumTest::CumulativeGasAdded); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporPhaseVolume); + soap_serialize_PointerToprodml23__PhaseViscosity(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseVolume); + soap_serialize_PointerToprodml23__PhaseDensity(soap, &this->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporComposition); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__VaporLiquidEquilibriumTest::VaporTransportTestReference); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__VaporLiquidEquilibriumTest::LiquidTransportTestReference); + soap_serialize_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap, &this->prodml23__VaporLiquidEquilibriumTest::LiquidComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__VaporLiquidEquilibriumTest::Remark); #endif } -int prodml22__VaporLiquidEquilibriumTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__VaporLiquidEquilibriumTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__VaporLiquidEquilibriumTest(soap, tag, id, this, type); + return soap_out_prodml23__VaporLiquidEquilibriumTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, int id, const prodml22__VaporLiquidEquilibriumTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, int id, const prodml23__VaporLiquidEquilibriumTest *a, const char *type) { if (!type) - type = "prodml22:VaporLiquidEquilibriumTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__VaporLiquidEquilibriumTest*)a)->uid), 1); + type = "prodml23:VaporLiquidEquilibriumTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__VaporLiquidEquilibriumTest*)a)->uid), 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_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__VaporLiquidEquilibriumTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__VaporLiquidEquilibriumTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__VaporLiquidEquilibriumTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__VaporLiquidEquilibriumTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__VaporLiquidEquilibriumTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__VaporLiquidEquilibriumTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:TestPressure", -1, &a->prodml22__VaporLiquidEquilibriumTest::TestPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:TestPressure", -1, &a->prodml23__VaporLiquidEquilibriumTest::TestPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasSolventAdded", -1, &a->prodml22__VaporLiquidEquilibriumTest::GasSolventAdded, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasSolventAdded", -1, &a->prodml23__VaporLiquidEquilibriumTest::GasSolventAdded, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:MixtureVolume", -1, &a->prodml22__VaporLiquidEquilibriumTest::MixtureVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:MixtureVolume", -1, &a->prodml23__VaporLiquidEquilibriumTest::MixtureVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MixtureGasSolventMoleFraction", -1, &a->prodml22__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MixtureGasSolventMoleFraction", -1, &a->prodml23__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:MixtureGOR", -1, &a->prodml22__VaporLiquidEquilibriumTest::MixtureGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:MixtureGOR", -1, &a->prodml23__VaporLiquidEquilibriumTest::MixtureGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:MixturePsatTestTemperature", -1, &a->prodml22__VaporLiquidEquilibriumTest::MixturePsatTestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:MixturePsatTestTemperature", -1, &a->prodml23__VaporLiquidEquilibriumTest::MixturePsatTestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:MixtureRelativeVolumeRelativeToPsat", -1, &a->prodml22__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:MixtureRelativeVolumeRelativeToPsat", -1, &a->prodml23__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:AtmosphericFlashTestReference", -1, &a->prodml22__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:AtmosphericFlashTestReference", -1, &a->prodml23__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__InjectedGas(soap, "prodml22:InjectedGasAdded", -1, &a->prodml22__VaporLiquidEquilibriumTest::InjectedGasAdded, "prodml22:InjectedGas")) + if (soap_out_PointerToprodml23__InjectedGas(soap, "prodml23:InjectedGasAdded", -1, &a->prodml23__VaporLiquidEquilibriumTest::InjectedGasAdded, "prodml23:InjectedGas")) return soap->error; - if (soap_out_PointerToprodml22__RefInjectedGasAdded(soap, "prodml22:CumulativeGasAdded", -1, &a->prodml22__VaporLiquidEquilibriumTest::CumulativeGasAdded, "prodml22:RefInjectedGasAdded")) + if (soap_out_PointerToprodml23__RefInjectedGasAdded(soap, "prodml23:CumulativeGasAdded", -1, &a->prodml23__VaporLiquidEquilibriumTest::CumulativeGasAdded, "prodml23:RefInjectedGasAdded")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VaporPhaseVolume", -1, &a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseVolume, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VaporPhaseVolume", -1, &a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseVolume, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (!a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity) - { if (soap_element_empty(soap, "prodml22:VaporPhaseViscosity", 0, NULL)) + if (!a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity) + { if (soap_element_empty(soap, "prodml23:VaporPhaseViscosity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PhaseViscosity(soap, "prodml22:VaporPhaseViscosity", -1, &a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity, "prodml22:PhaseViscosity")) + else if (soap_out_PointerToprodml23__PhaseViscosity(soap, "prodml23:VaporPhaseViscosity", -1, &a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity, "prodml23:PhaseViscosity")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap, "prodml22:VaporPhaseDensity", -1, &a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity, "prodml22:PhaseDensity")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap, "prodml23:VaporPhaseDensity", -1, &a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity, "prodml23:PhaseDensity")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:LiquidPhaseVolume", -1, &a->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseVolume, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:LiquidPhaseVolume", -1, &a->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseVolume, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (!a->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity) - { if (soap_element_empty(soap, "prodml22:LiquidPhaseDensity", 0, NULL)) + if (!a->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity) + { if (soap_element_empty(soap, "prodml23:LiquidPhaseDensity", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__PhaseDensity(soap, "prodml22:LiquidPhaseDensity", -1, &a->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity, "prodml22:PhaseDensity")) + else if (soap_out_PointerToprodml23__PhaseDensity(soap, "prodml23:LiquidPhaseDensity", -1, &a->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity, "prodml23:PhaseDensity")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:VaporComposition", -1, &a->prodml22__VaporLiquidEquilibriumTest::VaporComposition, "prodml22:FluidComponentFraction")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:VaporComposition", -1, &a->prodml23__VaporLiquidEquilibriumTest::VaporComposition, "prodml23:FluidComponentFraction")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:VaporTransportTestReference", -1, &a->prodml22__VaporLiquidEquilibriumTest::VaporTransportTestReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:VaporTransportTestReference", -1, &a->prodml23__VaporLiquidEquilibriumTest::VaporTransportTestReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:LiquidTransportTestReference", -1, &a->prodml22__VaporLiquidEquilibriumTest::LiquidTransportTestReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:LiquidTransportTestReference", -1, &a->prodml23__VaporLiquidEquilibriumTest::LiquidTransportTestReference, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__VaporLiquidEquilibriumTest::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__VaporLiquidEquilibriumTest::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__VaporLiquidEquilibriumTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__VaporLiquidEquilibriumTest::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__VaporLiquidEquilibriumTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__VaporLiquidEquilibriumTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__VaporLiquidEquilibriumTest(soap, tag, this, type); + return soap_in_prodml23__VaporLiquidEquilibriumTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, prodml22__VaporLiquidEquilibriumTest *a, const char *type) +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, prodml23__VaporLiquidEquilibriumTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__VaporLiquidEquilibriumTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, sizeof(prodml22__VaporLiquidEquilibriumTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__VaporLiquidEquilibriumTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, sizeof(prodml23__VaporLiquidEquilibriumTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__VaporLiquidEquilibriumTest *)a->soap_in(soap, tag, type); + return (prodml23__VaporLiquidEquilibriumTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__VaporLiquidEquilibriumTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__VaporLiquidEquilibriumTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -218522,127 +218487,127 @@ SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml22__V for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__VaporLiquidEquilibriumTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__VaporLiquidEquilibriumTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__VaporLiquidEquilibriumTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__VaporLiquidEquilibriumTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_TestPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:TestPressure", &a->prodml22__VaporLiquidEquilibriumTest::TestPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:TestPressure", &a->prodml23__VaporLiquidEquilibriumTest::TestPressure, "eml23:PressureMeasure")) { soap_flag_TestPressure1--; continue; } } if (soap_flag_GasSolventAdded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasSolventAdded", &a->prodml22__VaporLiquidEquilibriumTest::GasSolventAdded, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasSolventAdded", &a->prodml23__VaporLiquidEquilibriumTest::GasSolventAdded, "eml23:VolumePerVolumeMeasure")) { soap_flag_GasSolventAdded1--; continue; } } if (soap_flag_MixtureVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:MixtureVolume", &a->prodml22__VaporLiquidEquilibriumTest::MixtureVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:MixtureVolume", &a->prodml23__VaporLiquidEquilibriumTest::MixtureVolume, "eml23:VolumeMeasure")) { soap_flag_MixtureVolume1--; continue; } } if (soap_flag_MixtureGasSolventMoleFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MixtureGasSolventMoleFraction", &a->prodml22__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MixtureGasSolventMoleFraction", &a->prodml23__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MixtureGasSolventMoleFraction1--; continue; } } if (soap_flag_MixtureGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:MixtureGOR", &a->prodml22__VaporLiquidEquilibriumTest::MixtureGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:MixtureGOR", &a->prodml23__VaporLiquidEquilibriumTest::MixtureGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_MixtureGOR1--; continue; } } if (soap_flag_MixturePsatTestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:MixturePsatTestTemperature", &a->prodml22__VaporLiquidEquilibriumTest::MixturePsatTestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:MixturePsatTestTemperature", &a->prodml23__VaporLiquidEquilibriumTest::MixturePsatTestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_MixturePsatTestTemperature1--; continue; } } if (soap_flag_MixtureRelativeVolumeRelativeToPsat1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:MixtureRelativeVolumeRelativeToPsat", &a->prodml22__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:MixtureRelativeVolumeRelativeToPsat", &a->prodml23__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat, "eml23:VolumePerVolumeMeasure")) { soap_flag_MixtureRelativeVolumeRelativeToPsat1--; continue; } } if (soap_flag_AtmosphericFlashTestReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:AtmosphericFlashTestReference", &a->prodml22__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:AtmosphericFlashTestReference", &a->prodml23__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference, "eml23:String64")) { soap_flag_AtmosphericFlashTestReference1--; continue; } } if (soap_flag_InjectedGasAdded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__InjectedGas(soap, "prodml22:InjectedGasAdded", &a->prodml22__VaporLiquidEquilibriumTest::InjectedGasAdded, "prodml22:InjectedGas")) + { if (soap_in_PointerToprodml23__InjectedGas(soap, "prodml23:InjectedGasAdded", &a->prodml23__VaporLiquidEquilibriumTest::InjectedGasAdded, "prodml23:InjectedGas")) { soap_flag_InjectedGasAdded1--; continue; } } if (soap_flag_CumulativeGasAdded1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RefInjectedGasAdded(soap, "prodml22:CumulativeGasAdded", &a->prodml22__VaporLiquidEquilibriumTest::CumulativeGasAdded, "prodml22:RefInjectedGasAdded")) + { if (soap_in_PointerToprodml23__RefInjectedGasAdded(soap, "prodml23:CumulativeGasAdded", &a->prodml23__VaporLiquidEquilibriumTest::CumulativeGasAdded, "prodml23:RefInjectedGasAdded")) { soap_flag_CumulativeGasAdded1--; continue; } } if (soap_flag_VaporPhaseVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VaporPhaseVolume", &a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseVolume, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VaporPhaseVolume", &a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseVolume, "eml23:VolumePerVolumeMeasure")) { soap_flag_VaporPhaseVolume1--; continue; } } if (soap_flag_VaporPhaseViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhaseViscosity(soap, "prodml22:VaporPhaseViscosity", &a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity, "prodml22:PhaseViscosity")) + { if (soap_in_PointerToprodml23__PhaseViscosity(soap, "prodml23:VaporPhaseViscosity", &a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity, "prodml23:PhaseViscosity")) { soap_flag_VaporPhaseViscosity1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap, "prodml22:VaporPhaseDensity", &a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity, "prodml22:PhaseDensity")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap, "prodml23:VaporPhaseDensity", &a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity, "prodml23:PhaseDensity")) continue; } if (soap_flag_LiquidPhaseVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:LiquidPhaseVolume", &a->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseVolume, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:LiquidPhaseVolume", &a->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseVolume, "eml23:VolumePerVolumeMeasure")) { soap_flag_LiquidPhaseVolume1--; continue; } } if (soap_flag_LiquidPhaseDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhaseDensity(soap, "prodml22:LiquidPhaseDensity", &a->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity, "prodml22:PhaseDensity")) + { if (soap_in_PointerToprodml23__PhaseDensity(soap, "prodml23:LiquidPhaseDensity", &a->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity, "prodml23:PhaseDensity")) { soap_flag_LiquidPhaseDensity1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:VaporComposition", &a->prodml22__VaporLiquidEquilibriumTest::VaporComposition, "prodml22:FluidComponentFraction")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:VaporComposition", &a->prodml23__VaporLiquidEquilibriumTest::VaporComposition, "prodml23:FluidComponentFraction")) continue; } if (soap_flag_VaporTransportTestReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:VaporTransportTestReference", &a->prodml22__VaporLiquidEquilibriumTest::VaporTransportTestReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:VaporTransportTestReference", &a->prodml23__VaporLiquidEquilibriumTest::VaporTransportTestReference, "eml23:String64")) { soap_flag_VaporTransportTestReference1--; continue; } } if (soap_flag_LiquidTransportTestReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:LiquidTransportTestReference", &a->prodml22__VaporLiquidEquilibriumTest::LiquidTransportTestReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:LiquidTransportTestReference", &a->prodml23__VaporLiquidEquilibriumTest::LiquidTransportTestReference, "eml23:String64")) { soap_flag_LiquidTransportTestReference1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__VaporLiquidEquilibriumTest::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__VaporLiquidEquilibriumTest::LiquidComposition, "prodml23:LiquidComposition")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__VaporLiquidEquilibriumTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__VaporLiquidEquilibriumTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -218656,7 +218621,7 @@ SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml22__V } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__VaporLiquidEquilibriumTest::TestTemperature || !a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity || a->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity.size() < 1 || !a->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__VaporLiquidEquilibriumTest::TestTemperature || !a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity || a->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity.size() < 1 || !a->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity)) { soap->error = SOAP_OCCURS; return NULL; } @@ -218666,35 +218631,35 @@ SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml22__V return NULL; } else - { a = (prodml22__VaporLiquidEquilibriumTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, sizeof(prodml22__VaporLiquidEquilibriumTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__VaporLiquidEquilibriumTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, sizeof(prodml23__VaporLiquidEquilibriumTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__VaporLiquidEquilibriumTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__VaporLiquidEquilibriumTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__VaporLiquidEquilibriumTest *p; - size_t k = sizeof(prodml22__VaporLiquidEquilibriumTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, n, gsoap_eml2_3_fdelete); + prodml23__VaporLiquidEquilibriumTest *p; + size_t k = sizeof(prodml23__VaporLiquidEquilibriumTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__VaporLiquidEquilibriumTest); + { p = SOAP_NEW(soap, prodml23__VaporLiquidEquilibriumTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__VaporLiquidEquilibriumTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__VaporLiquidEquilibriumTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__VaporLiquidEquilibriumTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__VaporLiquidEquilibriumTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -218704,120 +218669,120 @@ SOAP_FMAC1 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__VaporLiquidEquilibriumTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__VaporLiquidEquilibriumTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__VaporLiquidEquilibriumTest(soap, tag ? tag : "prodml22:VaporLiquidEquilibriumTest", -2, this, type)) + if (soap_out_prodml23__VaporLiquidEquilibriumTest(soap, tag ? tag : "prodml23:VaporLiquidEquilibriumTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__VaporLiquidEquilibriumTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__VaporLiquidEquilibriumTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__VaporLiquidEquilibriumTest(soap, this, tag, type); + return soap_get_prodml23__VaporLiquidEquilibriumTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_get_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_get_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__VaporLiquidEquilibriumTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__VaporLiquidEquilibriumTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SwellingTestStep::soap_default(struct soap *soap) +void prodml23__SwellingTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__SwellingTestStep::StepNumber); - soap_default_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, &this->prodml22__SwellingTestStep::IncrementalGasAdded); - soap_default_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, &this->prodml22__SwellingTestStep::CumulativeGasAdded); - this->prodml22__SwellingTestStep::Gor = NULL; - this->prodml22__SwellingTestStep::SaturationPressure = NULL; - this->prodml22__SwellingTestStep::SwollenVolume = NULL; - this->prodml22__SwellingTestStep::SwellingFactor = NULL; - this->prodml22__SwellingTestStep::DensityAtSaturationPoint = NULL; - this->prodml22__SwellingTestStep::ConstantCompositionExpansionTest = NULL; - this->prodml22__SwellingTestStep::TransportPropertyTestReference = NULL; - this->prodml22__SwellingTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__SwellingTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__SwellingTestStep::StepNumber); + soap_default_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, &this->prodml23__SwellingTestStep::IncrementalGasAdded); + soap_default_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, &this->prodml23__SwellingTestStep::CumulativeGasAdded); + this->prodml23__SwellingTestStep::Gor = NULL; + this->prodml23__SwellingTestStep::SaturationPressure = NULL; + this->prodml23__SwellingTestStep::SwollenVolume = NULL; + this->prodml23__SwellingTestStep::SwellingFactor = NULL; + this->prodml23__SwellingTestStep::DensityAtSaturationPoint = NULL; + this->prodml23__SwellingTestStep::ConstantCompositionExpansionTest = NULL; + this->prodml23__SwellingTestStep::TransportPropertyTestReference = NULL; + this->prodml23__SwellingTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__SwellingTestStep::uid); } -void prodml22__SwellingTestStep::soap_serialize(struct soap *soap) const +void prodml23__SwellingTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SwellingTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, &this->prodml22__SwellingTestStep::IncrementalGasAdded); - soap_serialize_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, &this->prodml22__SwellingTestStep::CumulativeGasAdded); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SwellingTestStep::Gor); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__SwellingTestStep::SaturationPressure); - soap_serialize_PointerToprodml22__RelativeVolumeRatio(soap, &this->prodml22__SwellingTestStep::SwollenVolume); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SwellingTestStep::SwellingFactor); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__SwellingTestStep::DensityAtSaturationPoint); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__SwellingTestStep::ConstantCompositionExpansionTest); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__SwellingTestStep::TransportPropertyTestReference); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SwellingTestStep::Remark); + soap_embedded(soap, &this->prodml23__SwellingTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, &this->prodml23__SwellingTestStep::IncrementalGasAdded); + soap_serialize_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, &this->prodml23__SwellingTestStep::CumulativeGasAdded); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SwellingTestStep::Gor); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__SwellingTestStep::SaturationPressure); + soap_serialize_PointerToprodml23__RelativeVolumeRatio(soap, &this->prodml23__SwellingTestStep::SwollenVolume); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SwellingTestStep::SwellingFactor); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__SwellingTestStep::DensityAtSaturationPoint); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__SwellingTestStep::ConstantCompositionExpansionTest); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__SwellingTestStep::TransportPropertyTestReference); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SwellingTestStep::Remark); #endif } -int prodml22__SwellingTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SwellingTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SwellingTestStep(soap, tag, id, this, type); + return soap_out_prodml23__SwellingTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SwellingTestStep(struct soap *soap, const char *tag, int id, const prodml22__SwellingTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SwellingTestStep(struct soap *soap, const char *tag, int id, const prodml23__SwellingTestStep *a, const char *type) { if (!type) - type = "prodml22:SwellingTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SwellingTestStep*)a)->uid), 1); + type = "prodml23:SwellingTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SwellingTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__SwellingTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__SwellingTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__SwellingTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, "prodml22:IncrementalGasAdded", -1, &a->prodml22__SwellingTestStep::IncrementalGasAdded, "prodml22:RefInjectedGasAdded")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, "prodml23:IncrementalGasAdded", -1, &a->prodml23__SwellingTestStep::IncrementalGasAdded, "prodml23:RefInjectedGasAdded")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, "prodml22:CumulativeGasAdded", -1, &a->prodml22__SwellingTestStep::CumulativeGasAdded, "prodml22:RefInjectedGasAdded")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, "prodml23:CumulativeGasAdded", -1, &a->prodml23__SwellingTestStep::CumulativeGasAdded, "prodml23:RefInjectedGasAdded")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Gor", -1, &a->prodml22__SwellingTestStep::Gor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Gor", -1, &a->prodml23__SwellingTestStep::Gor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__SwellingTestStep::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__SwellingTestStep::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:SwollenVolume", -1, &a->prodml22__SwellingTestStep::SwollenVolume, "prodml22:RelativeVolumeRatio")) + if (soap_out_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:SwollenVolume", -1, &a->prodml23__SwellingTestStep::SwollenVolume, "prodml23:RelativeVolumeRatio")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SwellingFactor", -1, &a->prodml22__SwellingTestStep::SwellingFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SwellingFactor", -1, &a->prodml23__SwellingTestStep::SwellingFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:DensityAtSaturationPoint", -1, &a->prodml22__SwellingTestStep::DensityAtSaturationPoint, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:DensityAtSaturationPoint", -1, &a->prodml23__SwellingTestStep::DensityAtSaturationPoint, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ConstantCompositionExpansionTest", -1, &a->prodml22__SwellingTestStep::ConstantCompositionExpansionTest, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ConstantCompositionExpansionTest", -1, &a->prodml23__SwellingTestStep::ConstantCompositionExpansionTest, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:TransportPropertyTestReference", -1, &a->prodml22__SwellingTestStep::TransportPropertyTestReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:TransportPropertyTestReference", -1, &a->prodml23__SwellingTestStep::TransportPropertyTestReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SwellingTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SwellingTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SwellingTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SwellingTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SwellingTestStep(soap, tag, this, type); + return soap_in_prodml23__SwellingTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SwellingTestStep * SOAP_FMAC4 soap_in_prodml22__SwellingTestStep(struct soap *soap, const char *tag, prodml22__SwellingTestStep *a, const char *type) +SOAP_FMAC3 prodml23__SwellingTestStep * SOAP_FMAC4 soap_in_prodml23__SwellingTestStep(struct soap *soap, const char *tag, prodml23__SwellingTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SwellingTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, sizeof(prodml22__SwellingTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SwellingTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, sizeof(prodml23__SwellingTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SwellingTestStep *)a->soap_in(soap, tag, type); + return (prodml23__SwellingTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SwellingTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SwellingTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_Gor1 = 1; @@ -218833,63 +218798,63 @@ SOAP_FMAC3 prodml22__SwellingTestStep * SOAP_FMAC4 soap_in_prodml22__SwellingTes for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__SwellingTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__SwellingTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, "prodml22:IncrementalGasAdded", &a->prodml22__SwellingTestStep::IncrementalGasAdded, "prodml22:RefInjectedGasAdded")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, "prodml23:IncrementalGasAdded", &a->prodml23__SwellingTestStep::IncrementalGasAdded, "prodml23:RefInjectedGasAdded")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, "prodml22:CumulativeGasAdded", &a->prodml22__SwellingTestStep::CumulativeGasAdded, "prodml22:RefInjectedGasAdded")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, "prodml23:CumulativeGasAdded", &a->prodml23__SwellingTestStep::CumulativeGasAdded, "prodml23:RefInjectedGasAdded")) continue; } if (soap_flag_Gor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Gor", &a->prodml22__SwellingTestStep::Gor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Gor", &a->prodml23__SwellingTestStep::Gor, "eml23:VolumePerVolumeMeasure")) { soap_flag_Gor1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__SwellingTestStep::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__SwellingTestStep::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_SwollenVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:SwollenVolume", &a->prodml22__SwellingTestStep::SwollenVolume, "prodml22:RelativeVolumeRatio")) + { if (soap_in_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:SwollenVolume", &a->prodml23__SwellingTestStep::SwollenVolume, "prodml23:RelativeVolumeRatio")) { soap_flag_SwollenVolume1--; continue; } } if (soap_flag_SwellingFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SwellingFactor", &a->prodml22__SwellingTestStep::SwellingFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SwellingFactor", &a->prodml23__SwellingTestStep::SwellingFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_SwellingFactor1--; continue; } } if (soap_flag_DensityAtSaturationPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:DensityAtSaturationPoint", &a->prodml22__SwellingTestStep::DensityAtSaturationPoint, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:DensityAtSaturationPoint", &a->prodml23__SwellingTestStep::DensityAtSaturationPoint, "eml23:MassPerVolumeMeasure")) { soap_flag_DensityAtSaturationPoint1--; continue; } } if (soap_flag_ConstantCompositionExpansionTest1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ConstantCompositionExpansionTest", &a->prodml22__SwellingTestStep::ConstantCompositionExpansionTest, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ConstantCompositionExpansionTest", &a->prodml23__SwellingTestStep::ConstantCompositionExpansionTest, "eml23:String64")) { soap_flag_ConstantCompositionExpansionTest1--; continue; } } if (soap_flag_TransportPropertyTestReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:TransportPropertyTestReference", &a->prodml22__SwellingTestStep::TransportPropertyTestReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:TransportPropertyTestReference", &a->prodml23__SwellingTestStep::TransportPropertyTestReference, "eml23:String64")) { soap_flag_TransportPropertyTestReference1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SwellingTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SwellingTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -218913,35 +218878,35 @@ SOAP_FMAC3 prodml22__SwellingTestStep * SOAP_FMAC4 soap_in_prodml22__SwellingTes return NULL; } else - { a = (prodml22__SwellingTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, sizeof(prodml22__SwellingTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SwellingTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, sizeof(prodml23__SwellingTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml22__SwellingTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml23__SwellingTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SwellingTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SwellingTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SwellingTestStep *p; - size_t k = sizeof(prodml22__SwellingTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, n, gsoap_eml2_3_fdelete); + prodml23__SwellingTestStep *p; + size_t k = sizeof(prodml23__SwellingTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SwellingTestStep); + { p = SOAP_NEW(soap, prodml23__SwellingTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SwellingTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SwellingTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SwellingTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SwellingTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -218951,100 +218916,100 @@ SOAP_FMAC1 prodml22__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml22__Sw return p; } -int prodml22__SwellingTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SwellingTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SwellingTestStep(soap, tag ? tag : "prodml22:SwellingTestStep", -2, this, type)) + if (soap_out_prodml23__SwellingTestStep(soap, tag ? tag : "prodml23:SwellingTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SwellingTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SwellingTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SwellingTestStep(soap, this, tag, type); + return soap_get_prodml23__SwellingTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SwellingTestStep * SOAP_FMAC4 soap_get_prodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SwellingTestStep * SOAP_FMAC4 soap_get_prodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SwellingTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__SwellingTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SwellingTest::soap_default(struct soap *soap) +void prodml23__SwellingTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__SwellingTest::TestNumber); - this->prodml22__SwellingTest::TestTemperature = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, &this->prodml22__SwellingTest::InjectedGas); - this->prodml22__SwellingTest::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap, &this->prodml22__SwellingTest::SwellingTestStep); - soap_default_eml23__String64(soap, &this->prodml22__SwellingTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__SwellingTest::TestNumber); + this->prodml23__SwellingTest::TestTemperature = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, &this->prodml23__SwellingTest::InjectedGas); + this->prodml23__SwellingTest::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap, &this->prodml23__SwellingTest::SwellingTestStep); + soap_default_eml23__String64(soap, &this->prodml23__SwellingTest::uid); } -void prodml22__SwellingTest::soap_serialize(struct soap *soap) const +void prodml23__SwellingTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SwellingTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SwellingTest::TestTemperature); - soap_serialize_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, &this->prodml22__SwellingTest::InjectedGas); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SwellingTest::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap, &this->prodml22__SwellingTest::SwellingTestStep); + soap_embedded(soap, &this->prodml23__SwellingTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SwellingTest::TestTemperature); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, &this->prodml23__SwellingTest::InjectedGas); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SwellingTest::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap, &this->prodml23__SwellingTest::SwellingTestStep); #endif } -int prodml22__SwellingTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SwellingTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SwellingTest(soap, tag, id, this, type); + return soap_out_prodml23__SwellingTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SwellingTest(struct soap *soap, const char *tag, int id, const prodml22__SwellingTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SwellingTest(struct soap *soap, const char *tag, int id, const prodml23__SwellingTest *a, const char *type) { if (!type) - type = "prodml22:SwellingTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SwellingTest*)a)->uid), 1); + type = "prodml23:SwellingTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SwellingTest*)a)->uid), 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_gsoap_eml2_3_prodml22__SwellingTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__SwellingTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__SwellingTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__SwellingTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__SwellingTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__SwellingTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__SwellingTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, "prodml22:InjectedGas", -1, &a->prodml22__SwellingTest::InjectedGas, "prodml22:InjectedGas")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, "prodml23:InjectedGas", -1, &a->prodml23__SwellingTest::InjectedGas, "prodml23:InjectedGas")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SwellingTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SwellingTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap, "prodml22:SwellingTestStep", -1, &a->prodml22__SwellingTest::SwellingTestStep, "prodml22:SwellingTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap, "prodml23:SwellingTestStep", -1, &a->prodml23__SwellingTest::SwellingTestStep, "prodml23:SwellingTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SwellingTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SwellingTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SwellingTest(soap, tag, this, type); + return soap_in_prodml23__SwellingTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_in_prodml22__SwellingTest(struct soap *soap, const char *tag, prodml22__SwellingTest *a, const char *type) +SOAP_FMAC3 prodml23__SwellingTest * SOAP_FMAC4 soap_in_prodml23__SwellingTest(struct soap *soap, const char *tag, prodml23__SwellingTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SwellingTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, sizeof(prodml22__SwellingTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SwellingTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, sizeof(prodml23__SwellingTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SwellingTest *)a->soap_in(soap, tag, type); + return (prodml23__SwellingTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SwellingTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SwellingTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -219054,29 +219019,29 @@ SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_in_prodml22__SwellingTest(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__SwellingTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__SwellingTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__SwellingTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__SwellingTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, "prodml22:InjectedGas", &a->prodml22__SwellingTest::InjectedGas, "prodml22:InjectedGas")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, "prodml23:InjectedGas", &a->prodml23__SwellingTest::InjectedGas, "prodml23:InjectedGas")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SwellingTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SwellingTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap, "prodml22:SwellingTestStep", &a->prodml22__SwellingTest::SwellingTestStep, "prodml22:SwellingTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap, "prodml23:SwellingTestStep", &a->prodml23__SwellingTest::SwellingTestStep, "prodml23:SwellingTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -219088,7 +219053,7 @@ SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_in_prodml22__SwellingTest(st } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__SwellingTest::TestTemperature)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__SwellingTest::TestTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -219098,35 +219063,35 @@ SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_in_prodml22__SwellingTest(st return NULL; } else - { a = (prodml22__SwellingTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, sizeof(prodml22__SwellingTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SwellingTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, sizeof(prodml23__SwellingTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml22__SwellingTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml23__SwellingTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SwellingTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SwellingTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SwellingTest *p; - size_t k = sizeof(prodml22__SwellingTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, n, gsoap_eml2_3_fdelete); + prodml23__SwellingTest *p; + size_t k = sizeof(prodml23__SwellingTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SwellingTest); + { p = SOAP_NEW(soap, prodml23__SwellingTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SwellingTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SwellingTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SwellingTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SwellingTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -219136,154 +219101,154 @@ SOAP_FMAC1 prodml22__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml22__Swelli return p; } -int prodml22__SwellingTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SwellingTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SwellingTest(soap, tag ? tag : "prodml22:SwellingTest", -2, this, type)) + if (soap_out_prodml23__SwellingTest(soap, tag ? tag : "prodml23:SwellingTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SwellingTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SwellingTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SwellingTest(soap, this, tag, type); + return soap_get_prodml23__SwellingTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_get_prodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SwellingTest * SOAP_FMAC4 soap_get_prodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SwellingTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__SwellingTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__STOFlashedLiquid::soap_default(struct soap *soap) +void prodml23__STOFlashedLiquid::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__STOFlashedLiquid::OilAPIGravity = NULL; - this->prodml22__STOFlashedLiquid::WaterContent = NULL; - this->prodml22__STOFlashedLiquid::WatsonKFactor = NULL; - this->prodml22__STOFlashedLiquid::AsphalteneContent = NULL; - this->prodml22__STOFlashedLiquid::ParaffinContent = NULL; - this->prodml22__STOFlashedLiquid::CloudPoint = NULL; - this->prodml22__STOFlashedLiquid::WaxAppearanceTemperature = NULL; - this->prodml22__STOFlashedLiquid::PourPoint = NULL; - this->prodml22__STOFlashedLiquid::ASTMFlashPoint = NULL; - this->prodml22__STOFlashedLiquid::TotalAcidNumber = NULL; - this->prodml22__STOFlashedLiquid::TotalSulfur = NULL; - this->prodml22__STOFlashedLiquid::Nitrogen = NULL; - this->prodml22__STOFlashedLiquid::ElementalSulfur = NULL; - this->prodml22__STOFlashedLiquid::Lead = NULL; - this->prodml22__STOFlashedLiquid::Nickel = NULL; - this->prodml22__STOFlashedLiquid::Vanadium = NULL; - this->prodml22__STOFlashedLiquid::Iron = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap, &this->prodml22__STOFlashedLiquid::ViscosityAtTemperature); - this->prodml22__STOFlashedLiquid::ReidVaporPressure = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__Sara(soap, &this->prodml22__STOFlashedLiquid::Sara); + this->prodml23__STOFlashedLiquid::OilAPIGravity = NULL; + this->prodml23__STOFlashedLiquid::WaterContent = NULL; + this->prodml23__STOFlashedLiquid::WatsonKFactor = NULL; + this->prodml23__STOFlashedLiquid::AsphalteneContent = NULL; + this->prodml23__STOFlashedLiquid::ParaffinContent = NULL; + this->prodml23__STOFlashedLiquid::CloudPoint = NULL; + this->prodml23__STOFlashedLiquid::WaxAppearanceTemperature = NULL; + this->prodml23__STOFlashedLiquid::PourPoint = NULL; + this->prodml23__STOFlashedLiquid::ASTMFlashPoint = NULL; + this->prodml23__STOFlashedLiquid::TotalAcidNumber = NULL; + this->prodml23__STOFlashedLiquid::TotalSulfur = NULL; + this->prodml23__STOFlashedLiquid::Nitrogen = NULL; + this->prodml23__STOFlashedLiquid::ElementalSulfur = NULL; + this->prodml23__STOFlashedLiquid::Lead = NULL; + this->prodml23__STOFlashedLiquid::Nickel = NULL; + this->prodml23__STOFlashedLiquid::Vanadium = NULL; + this->prodml23__STOFlashedLiquid::Iron = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap, &this->prodml23__STOFlashedLiquid::ViscosityAtTemperature); + this->prodml23__STOFlashedLiquid::ReidVaporPressure = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__Sara(soap, &this->prodml23__STOFlashedLiquid::Sara); } -void prodml22__STOFlashedLiquid::soap_serialize(struct soap *soap) const +void prodml23__STOFlashedLiquid::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__STOFlashedLiquid::OilAPIGravity); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::WaterContent); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__STOFlashedLiquid::WatsonKFactor); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::AsphalteneContent); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::ParaffinContent); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__STOFlashedLiquid::CloudPoint); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__STOFlashedLiquid::WaxAppearanceTemperature); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__STOFlashedLiquid::PourPoint); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__STOFlashedLiquid::ASTMFlashPoint); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__STOFlashedLiquid::TotalAcidNumber); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::TotalSulfur); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::Nitrogen); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::ElementalSulfur); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::Lead); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::Nickel); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::Vanadium); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__STOFlashedLiquid::Iron); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap, &this->prodml22__STOFlashedLiquid::ViscosityAtTemperature); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__STOFlashedLiquid::ReidVaporPressure); - soap_serialize_std__vectorTemplateOfPointerToprodml22__Sara(soap, &this->prodml22__STOFlashedLiquid::Sara); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__STOFlashedLiquid::OilAPIGravity); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::WaterContent); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__STOFlashedLiquid::WatsonKFactor); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::AsphalteneContent); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::ParaffinContent); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__STOFlashedLiquid::CloudPoint); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__STOFlashedLiquid::WaxAppearanceTemperature); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__STOFlashedLiquid::PourPoint); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__STOFlashedLiquid::ASTMFlashPoint); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__STOFlashedLiquid::TotalAcidNumber); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::TotalSulfur); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::Nitrogen); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::ElementalSulfur); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::Lead); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::Nickel); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::Vanadium); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__STOFlashedLiquid::Iron); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap, &this->prodml23__STOFlashedLiquid::ViscosityAtTemperature); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__STOFlashedLiquid::ReidVaporPressure); + soap_serialize_std__vectorTemplateOfPointerToprodml23__Sara(soap, &this->prodml23__STOFlashedLiquid::Sara); #endif } -int prodml22__STOFlashedLiquid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__STOFlashedLiquid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__STOFlashedLiquid(soap, tag, id, this, type); + return soap_out_prodml23__STOFlashedLiquid(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__STOFlashedLiquid(struct soap *soap, const char *tag, int id, const prodml22__STOFlashedLiquid *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__STOFlashedLiquid(struct soap *soap, const char *tag, int id, const prodml23__STOFlashedLiquid *a, const char *type) { if (!type) - type = "prodml22:STOFlashedLiquid"; + type = "prodml23:STOFlashedLiquid"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid), type)) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilAPIGravity", -1, &a->prodml22__STOFlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilAPIGravity", -1, &a->prodml23__STOFlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WaterContent", -1, &a->prodml22__STOFlashedLiquid::WaterContent, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WaterContent", -1, &a->prodml23__STOFlashedLiquid::WaterContent, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:WatsonKFactor", -1, &a->prodml22__STOFlashedLiquid::WatsonKFactor, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:WatsonKFactor", -1, &a->prodml23__STOFlashedLiquid::WatsonKFactor, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AsphalteneContent", -1, &a->prodml22__STOFlashedLiquid::AsphalteneContent, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AsphalteneContent", -1, &a->prodml23__STOFlashedLiquid::AsphalteneContent, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:ParaffinContent", -1, &a->prodml22__STOFlashedLiquid::ParaffinContent, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:ParaffinContent", -1, &a->prodml23__STOFlashedLiquid::ParaffinContent, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:CloudPoint", -1, &a->prodml22__STOFlashedLiquid::CloudPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:CloudPoint", -1, &a->prodml23__STOFlashedLiquid::CloudPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:WaxAppearanceTemperature", -1, &a->prodml22__STOFlashedLiquid::WaxAppearanceTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:WaxAppearanceTemperature", -1, &a->prodml23__STOFlashedLiquid::WaxAppearanceTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:PourPoint", -1, &a->prodml22__STOFlashedLiquid::PourPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:PourPoint", -1, &a->prodml23__STOFlashedLiquid::PourPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ASTMFlashPoint", -1, &a->prodml22__STOFlashedLiquid::ASTMFlashPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ASTMFlashPoint", -1, &a->prodml23__STOFlashedLiquid::ASTMFlashPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:TotalAcidNumber", -1, &a->prodml22__STOFlashedLiquid::TotalAcidNumber, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:TotalAcidNumber", -1, &a->prodml23__STOFlashedLiquid::TotalAcidNumber, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalSulfur", -1, &a->prodml22__STOFlashedLiquid::TotalSulfur, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalSulfur", -1, &a->prodml23__STOFlashedLiquid::TotalSulfur, "eml23:MassPerMassMeasure")) return soap->error; - if (!a->prodml22__STOFlashedLiquid::Nitrogen) - { if (soap_element_empty(soap, "prodml22:Nitrogen", 0, NULL)) + if (!a->prodml23__STOFlashedLiquid::Nitrogen) + { if (soap_element_empty(soap, "prodml23:Nitrogen", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Nitrogen", -1, &a->prodml22__STOFlashedLiquid::Nitrogen, "eml23:MassPerMassMeasure")) + else if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Nitrogen", -1, &a->prodml23__STOFlashedLiquid::Nitrogen, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:ElementalSulfur", -1, &a->prodml22__STOFlashedLiquid::ElementalSulfur, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:ElementalSulfur", -1, &a->prodml23__STOFlashedLiquid::ElementalSulfur, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Lead", -1, &a->prodml22__STOFlashedLiquid::Lead, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Lead", -1, &a->prodml23__STOFlashedLiquid::Lead, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Nickel", -1, &a->prodml22__STOFlashedLiquid::Nickel, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Nickel", -1, &a->prodml23__STOFlashedLiquid::Nickel, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Vanadium", -1, &a->prodml22__STOFlashedLiquid::Vanadium, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Vanadium", -1, &a->prodml23__STOFlashedLiquid::Vanadium, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Iron", -1, &a->prodml22__STOFlashedLiquid::Iron, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Iron", -1, &a->prodml23__STOFlashedLiquid::Iron, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap, "prodml22:ViscosityAtTemperature", -1, &a->prodml22__STOFlashedLiquid::ViscosityAtTemperature, "prodml22:ViscosityAtTemperature")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap, "prodml23:ViscosityAtTemperature", -1, &a->prodml23__STOFlashedLiquid::ViscosityAtTemperature, "prodml23:ViscosityAtTemperature")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:ReidVaporPressure", -1, &a->prodml22__STOFlashedLiquid::ReidVaporPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:ReidVaporPressure", -1, &a->prodml23__STOFlashedLiquid::ReidVaporPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__Sara(soap, "prodml22:Sara", -1, &a->prodml22__STOFlashedLiquid::Sara, "prodml22:Sara")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__Sara(soap, "prodml23:Sara", -1, &a->prodml23__STOFlashedLiquid::Sara, "prodml23:Sara")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__STOFlashedLiquid::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__STOFlashedLiquid::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__STOFlashedLiquid(soap, tag, this, type); + return soap_in_prodml23__STOFlashedLiquid(soap, tag, this, type); } -SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml22__STOFlashedLiquid(struct soap *soap, const char *tag, prodml22__STOFlashedLiquid *a, const char *type) +SOAP_FMAC3 prodml23__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml23__STOFlashedLiquid(struct soap *soap, const char *tag, prodml23__STOFlashedLiquid *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__STOFlashedLiquid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid, sizeof(prodml22__STOFlashedLiquid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__STOFlashedLiquid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid, sizeof(prodml23__STOFlashedLiquid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__STOFlashedLiquid *)a->soap_in(soap, tag, type); + return (prodml23__STOFlashedLiquid *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -219310,119 +219275,119 @@ SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml22__STOFlashedL for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_OilAPIGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilAPIGravity", &a->prodml22__STOFlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilAPIGravity", &a->prodml23__STOFlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) { soap_flag_OilAPIGravity1--; continue; } } if (soap_flag_WaterContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WaterContent", &a->prodml22__STOFlashedLiquid::WaterContent, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WaterContent", &a->prodml23__STOFlashedLiquid::WaterContent, "eml23:MassPerMassMeasure")) { soap_flag_WaterContent1--; continue; } } if (soap_flag_WatsonKFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:WatsonKFactor", &a->prodml22__STOFlashedLiquid::WatsonKFactor, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:WatsonKFactor", &a->prodml23__STOFlashedLiquid::WatsonKFactor, "eml23:DimensionlessMeasure")) { soap_flag_WatsonKFactor1--; continue; } } if (soap_flag_AsphalteneContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AsphalteneContent", &a->prodml22__STOFlashedLiquid::AsphalteneContent, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AsphalteneContent", &a->prodml23__STOFlashedLiquid::AsphalteneContent, "eml23:MassPerMassMeasure")) { soap_flag_AsphalteneContent1--; continue; } } if (soap_flag_ParaffinContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:ParaffinContent", &a->prodml22__STOFlashedLiquid::ParaffinContent, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:ParaffinContent", &a->prodml23__STOFlashedLiquid::ParaffinContent, "eml23:MassPerMassMeasure")) { soap_flag_ParaffinContent1--; continue; } } if (soap_flag_CloudPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:CloudPoint", &a->prodml22__STOFlashedLiquid::CloudPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:CloudPoint", &a->prodml23__STOFlashedLiquid::CloudPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_CloudPoint1--; continue; } } if (soap_flag_WaxAppearanceTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:WaxAppearanceTemperature", &a->prodml22__STOFlashedLiquid::WaxAppearanceTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:WaxAppearanceTemperature", &a->prodml23__STOFlashedLiquid::WaxAppearanceTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_WaxAppearanceTemperature1--; continue; } } if (soap_flag_PourPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:PourPoint", &a->prodml22__STOFlashedLiquid::PourPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:PourPoint", &a->prodml23__STOFlashedLiquid::PourPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_PourPoint1--; continue; } } if (soap_flag_ASTMFlashPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ASTMFlashPoint", &a->prodml22__STOFlashedLiquid::ASTMFlashPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ASTMFlashPoint", &a->prodml23__STOFlashedLiquid::ASTMFlashPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ASTMFlashPoint1--; continue; } } if (soap_flag_TotalAcidNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:TotalAcidNumber", &a->prodml22__STOFlashedLiquid::TotalAcidNumber, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:TotalAcidNumber", &a->prodml23__STOFlashedLiquid::TotalAcidNumber, "eml23:DimensionlessMeasure")) { soap_flag_TotalAcidNumber1--; continue; } } if (soap_flag_TotalSulfur1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:TotalSulfur", &a->prodml22__STOFlashedLiquid::TotalSulfur, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:TotalSulfur", &a->prodml23__STOFlashedLiquid::TotalSulfur, "eml23:MassPerMassMeasure")) { soap_flag_TotalSulfur1--; continue; } } if (soap_flag_Nitrogen1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Nitrogen", &a->prodml22__STOFlashedLiquid::Nitrogen, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Nitrogen", &a->prodml23__STOFlashedLiquid::Nitrogen, "eml23:MassPerMassMeasure")) { soap_flag_Nitrogen1--; continue; } } if (soap_flag_ElementalSulfur1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:ElementalSulfur", &a->prodml22__STOFlashedLiquid::ElementalSulfur, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:ElementalSulfur", &a->prodml23__STOFlashedLiquid::ElementalSulfur, "eml23:MassPerMassMeasure")) { soap_flag_ElementalSulfur1--; continue; } } if (soap_flag_Lead1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Lead", &a->prodml22__STOFlashedLiquid::Lead, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Lead", &a->prodml23__STOFlashedLiquid::Lead, "eml23:MassPerMassMeasure")) { soap_flag_Lead1--; continue; } } if (soap_flag_Nickel1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Nickel", &a->prodml22__STOFlashedLiquid::Nickel, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Nickel", &a->prodml23__STOFlashedLiquid::Nickel, "eml23:MassPerMassMeasure")) { soap_flag_Nickel1--; continue; } } if (soap_flag_Vanadium1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Vanadium", &a->prodml22__STOFlashedLiquid::Vanadium, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Vanadium", &a->prodml23__STOFlashedLiquid::Vanadium, "eml23:MassPerMassMeasure")) { soap_flag_Vanadium1--; continue; } } if (soap_flag_Iron1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Iron", &a->prodml22__STOFlashedLiquid::Iron, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Iron", &a->prodml23__STOFlashedLiquid::Iron, "eml23:MassPerMassMeasure")) { soap_flag_Iron1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap, "prodml22:ViscosityAtTemperature", &a->prodml22__STOFlashedLiquid::ViscosityAtTemperature, "prodml22:ViscosityAtTemperature")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap, "prodml23:ViscosityAtTemperature", &a->prodml23__STOFlashedLiquid::ViscosityAtTemperature, "prodml23:ViscosityAtTemperature")) continue; } if (soap_flag_ReidVaporPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:ReidVaporPressure", &a->prodml22__STOFlashedLiquid::ReidVaporPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:ReidVaporPressure", &a->prodml23__STOFlashedLiquid::ReidVaporPressure, "eml23:PressureMeasure")) { soap_flag_ReidVaporPressure1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__Sara(soap, "prodml22:Sara", &a->prodml22__STOFlashedLiquid::Sara, "prodml22:Sara")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__Sara(soap, "prodml23:Sara", &a->prodml23__STOFlashedLiquid::Sara, "prodml23:Sara")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -219434,7 +219399,7 @@ SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml22__STOFlashedL } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__STOFlashedLiquid::Nitrogen)) + if ((!a->prodml23__STOFlashedLiquid::Nitrogen)) { soap->error = SOAP_OCCURS; return NULL; } @@ -219444,35 +219409,35 @@ SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml22__STOFlashedL return NULL; } else - { a = (prodml22__STOFlashedLiquid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid, sizeof(prodml22__STOFlashedLiquid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__STOFlashedLiquid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid, sizeof(prodml23__STOFlashedLiquid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__STOFlashedLiquid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml23__STOFlashedLiquid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__STOFlashedLiquid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__STOFlashedLiquid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__STOFlashedLiquid *p; - size_t k = sizeof(prodml22__STOFlashedLiquid); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid, n, gsoap_eml2_3_fdelete); + prodml23__STOFlashedLiquid *p; + size_t k = sizeof(prodml23__STOFlashedLiquid); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__STOFlashedLiquid); + { p = SOAP_NEW(soap, prodml23__STOFlashedLiquid); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__STOFlashedLiquid, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__STOFlashedLiquid, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__STOFlashedLiquid location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__STOFlashedLiquid location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -219482,115 +219447,115 @@ SOAP_FMAC1 prodml22__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__ST return p; } -int prodml22__STOFlashedLiquid::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__STOFlashedLiquid::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__STOFlashedLiquid(soap, tag ? tag : "prodml22:STOFlashedLiquid", -2, this, type)) + if (soap_out_prodml23__STOFlashedLiquid(soap, tag ? tag : "prodml23:STOFlashedLiquid", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__STOFlashedLiquid::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__STOFlashedLiquid::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__STOFlashedLiquid(soap, this, tag, type); + return soap_get_prodml23__STOFlashedLiquid(soap, this, tag, type); } -SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_get_prodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__STOFlashedLiquid * SOAP_FMAC4 soap_get_prodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__STOFlashedLiquid(soap, tag, p, type))) + if ((p = soap_in_prodml23__STOFlashedLiquid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__STOAnalysis::soap_default(struct soap *soap) +void prodml23__STOAnalysis::soap_default(struct soap *soap) { this->soap = soap; - soap_default_xsd__date(soap, &this->prodml22__STOAnalysis::Date); - this->prodml22__STOAnalysis::FlashFromPressure = NULL; - this->prodml22__STOAnalysis::FlashFromTemperature = NULL; - this->prodml22__STOAnalysis::MolecularWeight = NULL; - this->prodml22__STOAnalysis::FluidCondition = NULL; - this->prodml22__STOAnalysis::PhasesPresent = NULL; - this->prodml22__STOAnalysis::LiquidComposition = NULL; - this->prodml22__STOAnalysis::VaporComposition = NULL; - this->prodml22__STOAnalysis::OverallComposition = NULL; - this->prodml22__STOAnalysis::Remark = NULL; - this->prodml22__STOAnalysis::STOFlashedLiquid = NULL; + soap_default_xsd__date(soap, &this->prodml23__STOAnalysis::Date); + this->prodml23__STOAnalysis::FlashFromPressure = NULL; + this->prodml23__STOAnalysis::FlashFromTemperature = NULL; + this->prodml23__STOAnalysis::MolecularWeight = NULL; + this->prodml23__STOAnalysis::FluidCondition = NULL; + this->prodml23__STOAnalysis::PhasesPresent = NULL; + this->prodml23__STOAnalysis::LiquidComposition = NULL; + this->prodml23__STOAnalysis::VaporComposition = NULL; + this->prodml23__STOAnalysis::OverallComposition = NULL; + this->prodml23__STOAnalysis::Remark = NULL; + this->prodml23__STOAnalysis::STOFlashedLiquid = NULL; } -void prodml22__STOAnalysis::soap_serialize(struct soap *soap) const +void prodml23__STOAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__STOAnalysis::Date, SOAP_TYPE_gsoap_eml2_3_xsd__date); - soap_serialize_xsd__date(soap, &this->prodml22__STOAnalysis::Date); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__STOAnalysis::FlashFromPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__STOAnalysis::FlashFromTemperature); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__STOAnalysis::MolecularWeight); - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, &this->prodml22__STOAnalysis::FluidCondition); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__STOAnalysis::PhasesPresent); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__STOAnalysis::LiquidComposition); - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__STOAnalysis::VaporComposition); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__STOAnalysis::OverallComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__STOAnalysis::Remark); - soap_serialize_PointerToprodml22__STOFlashedLiquid(soap, &this->prodml22__STOAnalysis::STOFlashedLiquid); + soap_embedded(soap, &this->prodml23__STOAnalysis::Date, SOAP_TYPE_gsoap_eml2_3_xsd__date); + soap_serialize_xsd__date(soap, &this->prodml23__STOAnalysis::Date); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__STOAnalysis::FlashFromPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__STOAnalysis::FlashFromTemperature); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__STOAnalysis::MolecularWeight); + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, &this->prodml23__STOAnalysis::FluidCondition); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__STOAnalysis::PhasesPresent); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__STOAnalysis::LiquidComposition); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__STOAnalysis::VaporComposition); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__STOAnalysis::OverallComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__STOAnalysis::Remark); + soap_serialize_PointerToprodml23__STOFlashedLiquid(soap, &this->prodml23__STOAnalysis::STOFlashedLiquid); #endif } -int prodml22__STOAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__STOAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__STOAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__STOAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__STOAnalysis(struct soap *soap, const char *tag, int id, const prodml22__STOAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__STOAnalysis(struct soap *soap, const char *tag, int id, const prodml23__STOAnalysis *a, const char *type) { if (!type) - type = "prodml22:STOAnalysis"; + type = "prodml23:STOAnalysis"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis), type)) return soap->error; - if (soap_out_xsd__date(soap, "prodml22:Date", -1, &a->prodml22__STOAnalysis::Date, "xsd:date")) + if (soap_out_xsd__date(soap, "prodml23:Date", -1, &a->prodml23__STOAnalysis::Date, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FlashFromPressure", -1, &a->prodml22__STOAnalysis::FlashFromPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FlashFromPressure", -1, &a->prodml23__STOAnalysis::FlashFromPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FlashFromTemperature", -1, &a->prodml22__STOAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FlashFromTemperature", -1, &a->prodml23__STOAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__STOAnalysis::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__STOAnalysis::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", -1, &a->prodml22__STOAnalysis::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", -1, &a->prodml23__STOAnalysis::FluidCondition, "prodml23:FluidAnalysisStepCondition")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", -1, &a->prodml22__STOAnalysis::PhasesPresent, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", -1, &a->prodml23__STOAnalysis::PhasesPresent, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__STOAnalysis::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__STOAnalysis::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__STOAnalysis::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__STOAnalysis::VaporComposition, "prodml23:VaporComposition")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__STOAnalysis::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__STOAnalysis::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__STOAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__STOAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__STOFlashedLiquid(soap, "prodml22:STOFlashedLiquid", -1, &a->prodml22__STOAnalysis::STOFlashedLiquid, "prodml22:STOFlashedLiquid")) + if (soap_out_PointerToprodml23__STOFlashedLiquid(soap, "prodml23:STOFlashedLiquid", -1, &a->prodml23__STOAnalysis::STOFlashedLiquid, "prodml23:STOFlashedLiquid")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__STOAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__STOAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__STOAnalysis(soap, tag, this, type); + return soap_in_prodml23__STOAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__STOAnalysis * SOAP_FMAC4 soap_in_prodml22__STOAnalysis(struct soap *soap, const char *tag, prodml22__STOAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__STOAnalysis * SOAP_FMAC4 soap_in_prodml23__STOAnalysis(struct soap *soap, const char *tag, prodml23__STOAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__STOAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, sizeof(prodml22__STOAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__STOAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, sizeof(prodml23__STOAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__STOAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__STOAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -219610,67 +219575,67 @@ SOAP_FMAC3 prodml22__STOAnalysis * SOAP_FMAC4 soap_in_prodml22__STOAnalysis(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Date1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__date(soap, "prodml22:Date", &a->prodml22__STOAnalysis::Date, "xsd:date")) + { if (soap_in_xsd__date(soap, "prodml23:Date", &a->prodml23__STOAnalysis::Date, "xsd:date")) { soap_flag_Date1--; continue; } } if (soap_flag_FlashFromPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FlashFromPressure", &a->prodml22__STOAnalysis::FlashFromPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FlashFromPressure", &a->prodml23__STOAnalysis::FlashFromPressure, "eml23:PressureMeasure")) { soap_flag_FlashFromPressure1--; continue; } } if (soap_flag_FlashFromTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FlashFromTemperature", &a->prodml22__STOAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FlashFromTemperature", &a->prodml23__STOAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FlashFromTemperature1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__STOAnalysis::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__STOAnalysis::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_FluidCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", &a->prodml22__STOAnalysis::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + { if (soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", &a->prodml23__STOAnalysis::FluidCondition, "prodml23:FluidAnalysisStepCondition")) { soap_flag_FluidCondition1--; continue; } } if (soap_flag_PhasesPresent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", &a->prodml22__STOAnalysis::PhasesPresent, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", &a->prodml23__STOAnalysis::PhasesPresent, "prodml23:PhasePresent")) { soap_flag_PhasesPresent1--; continue; } } if (soap_flag_LiquidComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__STOAnalysis::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__STOAnalysis::LiquidComposition, "prodml23:LiquidComposition")) { soap_flag_LiquidComposition1--; continue; } } if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__STOAnalysis::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__STOAnalysis::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__STOAnalysis::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__STOAnalysis::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__STOAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__STOAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_STOFlashedLiquid1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__STOFlashedLiquid(soap, "prodml22:STOFlashedLiquid", &a->prodml22__STOAnalysis::STOFlashedLiquid, "prodml22:STOFlashedLiquid")) + { if (soap_in_PointerToprodml23__STOFlashedLiquid(soap, "prodml23:STOFlashedLiquid", &a->prodml23__STOAnalysis::STOFlashedLiquid, "prodml23:STOFlashedLiquid")) { soap_flag_STOFlashedLiquid1--; continue; } @@ -219694,35 +219659,35 @@ SOAP_FMAC3 prodml22__STOAnalysis * SOAP_FMAC4 soap_in_prodml22__STOAnalysis(stru return NULL; } else - { a = (prodml22__STOAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, sizeof(prodml22__STOAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__STOAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, sizeof(prodml23__STOAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__STOAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__STOAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__STOAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__STOAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__STOAnalysis *p; - size_t k = sizeof(prodml22__STOAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__STOAnalysis *p; + size_t k = sizeof(prodml23__STOAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__STOAnalysis); + { p = SOAP_NEW(soap, prodml23__STOAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__STOAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__STOAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__STOAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__STOAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -219732,136 +219697,136 @@ SOAP_FMAC1 prodml22__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__STOAnal return p; } -int prodml22__STOAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__STOAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__STOAnalysis(soap, tag ? tag : "prodml22:STOAnalysis", -2, this, type)) + if (soap_out_prodml23__STOAnalysis(soap, tag ? tag : "prodml23:STOAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__STOAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__STOAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__STOAnalysis(soap, this, tag, type); + return soap_get_prodml23__STOAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__STOAnalysis * SOAP_FMAC4 soap_get_prodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__STOAnalysis * SOAP_FMAC4 soap_get_prodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__STOAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__STOAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SlimTubeTestVolumeStep::soap_default(struct soap *soap) +void prodml23__SlimTubeTestVolumeStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__SlimTubeTestVolumeStep::StepNumber); - this->prodml22__SlimTubeTestVolumeStep::DifferentialPressure = NULL; - this->prodml22__SlimTubeTestVolumeStep::RunTime = NULL; - this->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature = NULL; - this->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature = NULL; - this->prodml22__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction = NULL; - this->prodml22__SlimTubeTestVolumeStep::DarcyVelocity = NULL; - this->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP = NULL; - this->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionSTO = NULL; - this->prodml22__SlimTubeTestVolumeStep::IncrementalProducedGOR = NULL; - this->prodml22__SlimTubeTestVolumeStep::CumulativeProducedGOR = NULL; - this->prodml22__SlimTubeTestVolumeStep::Remark = NULL; - this->prodml22__SlimTubeTestVolumeStep::ProducedGasProperties = NULL; - this->prodml22__SlimTubeTestVolumeStep::ProducedOilProperties = NULL; - this->prodml22__SlimTubeTestVolumeStep::MassBalance = NULL; - soap_default_eml23__String64(soap, &this->prodml22__SlimTubeTestVolumeStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__SlimTubeTestVolumeStep::StepNumber); + this->prodml23__SlimTubeTestVolumeStep::DifferentialPressure = NULL; + this->prodml23__SlimTubeTestVolumeStep::RunTime = NULL; + this->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature = NULL; + this->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature = NULL; + this->prodml23__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction = NULL; + this->prodml23__SlimTubeTestVolumeStep::DarcyVelocity = NULL; + this->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP = NULL; + this->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionSTO = NULL; + this->prodml23__SlimTubeTestVolumeStep::IncrementalProducedGOR = NULL; + this->prodml23__SlimTubeTestVolumeStep::CumulativeProducedGOR = NULL; + this->prodml23__SlimTubeTestVolumeStep::Remark = NULL; + this->prodml23__SlimTubeTestVolumeStep::ProducedGasProperties = NULL; + this->prodml23__SlimTubeTestVolumeStep::ProducedOilProperties = NULL; + this->prodml23__SlimTubeTestVolumeStep::MassBalance = NULL; + soap_default_eml23__String64(soap, &this->prodml23__SlimTubeTestVolumeStep::uid); } -void prodml22__SlimTubeTestVolumeStep::soap_serialize(struct soap *soap) const +void prodml23__SlimTubeTestVolumeStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SlimTubeTestVolumeStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::DifferentialPressure); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__SlimTubeTestVolumeStep::RunTime); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction); - soap_serialize_PointerToeml23__LengthPerTimeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::DarcyVelocity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionSTO); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::IncrementalProducedGOR); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SlimTubeTestVolumeStep::CumulativeProducedGOR); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SlimTubeTestVolumeStep::Remark); - soap_serialize_PointerToprodml22__ProducedGasProperties(soap, &this->prodml22__SlimTubeTestVolumeStep::ProducedGasProperties); - soap_serialize_PointerToprodml22__ProducedOilProperties(soap, &this->prodml22__SlimTubeTestVolumeStep::ProducedOilProperties); - soap_serialize_PointerToprodml22__MassBalance(soap, &this->prodml22__SlimTubeTestVolumeStep::MassBalance); + soap_embedded(soap, &this->prodml23__SlimTubeTestVolumeStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::DifferentialPressure); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__SlimTubeTestVolumeStep::RunTime); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction); + soap_serialize_PointerToeml23__LengthPerTimeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::DarcyVelocity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionSTO); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::IncrementalProducedGOR); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SlimTubeTestVolumeStep::CumulativeProducedGOR); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SlimTubeTestVolumeStep::Remark); + soap_serialize_PointerToprodml23__ProducedGasProperties(soap, &this->prodml23__SlimTubeTestVolumeStep::ProducedGasProperties); + soap_serialize_PointerToprodml23__ProducedOilProperties(soap, &this->prodml23__SlimTubeTestVolumeStep::ProducedOilProperties); + soap_serialize_PointerToprodml23__MassBalance(soap, &this->prodml23__SlimTubeTestVolumeStep::MassBalance); #endif } -int prodml22__SlimTubeTestVolumeStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SlimTubeTestVolumeStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SlimTubeTestVolumeStep(soap, tag, id, this, type); + return soap_out_prodml23__SlimTubeTestVolumeStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, int id, const prodml22__SlimTubeTestVolumeStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, int id, const prodml23__SlimTubeTestVolumeStep *a, const char *type) { if (!type) - type = "prodml22:SlimTubeTestVolumeStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SlimTubeTestVolumeStep*)a)->uid), 1); + type = "prodml23:SlimTubeTestVolumeStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SlimTubeTestVolumeStep*)a)->uid), 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_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__SlimTubeTestVolumeStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__SlimTubeTestVolumeStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:DifferentialPressure", -1, &a->prodml22__SlimTubeTestVolumeStep::DifferentialPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:DifferentialPressure", -1, &a->prodml23__SlimTubeTestVolumeStep::DifferentialPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:RunTime", -1, &a->prodml22__SlimTubeTestVolumeStep::RunTime, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:RunTime", -1, &a->prodml23__SlimTubeTestVolumeStep::RunTime, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:InjectionVolumeAtPumpTemperature", -1, &a->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:InjectionVolumeAtPumpTemperature", -1, &a->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:InjectionVolumeAtTestTemperature", -1, &a->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:InjectionVolumeAtTestTemperature", -1, &a->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:InjectedPoreVolumeFraction", -1, &a->prodml22__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:InjectedPoreVolumeFraction", -1, &a->prodml23__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthPerTimeMeasure(soap, "prodml22:DarcyVelocity", -1, &a->prodml22__SlimTubeTestVolumeStep::DarcyVelocity, "eml23:LengthPerTimeMeasure")) + if (soap_out_PointerToeml23__LengthPerTimeMeasure(soap, "prodml23:DarcyVelocity", -1, &a->prodml23__SlimTubeTestVolumeStep::DarcyVelocity, "eml23:LengthPerTimeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeOilProductionPercOOIP", -1, &a->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeOilProductionPercOOIP", -1, &a->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:CumulativeOilProductionSTO", -1, &a->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionSTO, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:CumulativeOilProductionSTO", -1, &a->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionSTO, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:IncrementalProducedGOR", -1, &a->prodml22__SlimTubeTestVolumeStep::IncrementalProducedGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:IncrementalProducedGOR", -1, &a->prodml23__SlimTubeTestVolumeStep::IncrementalProducedGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeProducedGOR", -1, &a->prodml22__SlimTubeTestVolumeStep::CumulativeProducedGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeProducedGOR", -1, &a->prodml23__SlimTubeTestVolumeStep::CumulativeProducedGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SlimTubeTestVolumeStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SlimTubeTestVolumeStep::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__ProducedGasProperties(soap, "prodml22:ProducedGasProperties", -1, &a->prodml22__SlimTubeTestVolumeStep::ProducedGasProperties, "prodml22:ProducedGasProperties")) + if (soap_out_PointerToprodml23__ProducedGasProperties(soap, "prodml23:ProducedGasProperties", -1, &a->prodml23__SlimTubeTestVolumeStep::ProducedGasProperties, "prodml23:ProducedGasProperties")) return soap->error; - if (soap_out_PointerToprodml22__ProducedOilProperties(soap, "prodml22:ProducedOilProperties", -1, &a->prodml22__SlimTubeTestVolumeStep::ProducedOilProperties, "prodml22:ProducedOilProperties")) + if (soap_out_PointerToprodml23__ProducedOilProperties(soap, "prodml23:ProducedOilProperties", -1, &a->prodml23__SlimTubeTestVolumeStep::ProducedOilProperties, "prodml23:ProducedOilProperties")) return soap->error; - if (soap_out_PointerToprodml22__MassBalance(soap, "prodml22:MassBalance", -1, &a->prodml22__SlimTubeTestVolumeStep::MassBalance, "prodml22:MassBalance")) + if (soap_out_PointerToprodml23__MassBalance(soap, "prodml23:MassBalance", -1, &a->prodml23__SlimTubeTestVolumeStep::MassBalance, "prodml23:MassBalance")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SlimTubeTestVolumeStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeTestVolumeStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SlimTubeTestVolumeStep(soap, tag, this, type); + return soap_in_prodml23__SlimTubeTestVolumeStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_in_prodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, prodml22__SlimTubeTestVolumeStep *a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_in_prodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, prodml23__SlimTubeTestVolumeStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SlimTubeTestVolumeStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, sizeof(prodml22__SlimTubeTestVolumeStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SlimTubeTestVolumeStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, sizeof(prodml23__SlimTubeTestVolumeStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SlimTubeTestVolumeStep *)a->soap_in(soap, tag, type); + return (prodml23__SlimTubeTestVolumeStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SlimTubeTestVolumeStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SlimTubeTestVolumeStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_DifferentialPressure1 = 1; @@ -219883,91 +219848,91 @@ SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_in_prodml22__SlimT for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__SlimTubeTestVolumeStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__SlimTubeTestVolumeStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_DifferentialPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:DifferentialPressure", &a->prodml22__SlimTubeTestVolumeStep::DifferentialPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:DifferentialPressure", &a->prodml23__SlimTubeTestVolumeStep::DifferentialPressure, "eml23:PressureMeasure")) { soap_flag_DifferentialPressure1--; continue; } } if (soap_flag_RunTime1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:RunTime", &a->prodml22__SlimTubeTestVolumeStep::RunTime, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:RunTime", &a->prodml23__SlimTubeTestVolumeStep::RunTime, "eml23:String64")) { soap_flag_RunTime1--; continue; } } if (soap_flag_InjectionVolumeAtPumpTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:InjectionVolumeAtPumpTemperature", &a->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:InjectionVolumeAtPumpTemperature", &a->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature, "eml23:VolumeMeasure")) { soap_flag_InjectionVolumeAtPumpTemperature1--; continue; } } if (soap_flag_InjectionVolumeAtTestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:InjectionVolumeAtTestTemperature", &a->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:InjectionVolumeAtTestTemperature", &a->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature, "eml23:VolumeMeasure")) { soap_flag_InjectionVolumeAtTestTemperature1--; continue; } } if (soap_flag_InjectedPoreVolumeFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:InjectedPoreVolumeFraction", &a->prodml22__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:InjectedPoreVolumeFraction", &a->prodml23__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction, "eml23:VolumePerVolumeMeasure")) { soap_flag_InjectedPoreVolumeFraction1--; continue; } } if (soap_flag_DarcyVelocity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthPerTimeMeasure(soap, "prodml22:DarcyVelocity", &a->prodml22__SlimTubeTestVolumeStep::DarcyVelocity, "eml23:LengthPerTimeMeasure")) + { if (soap_in_PointerToeml23__LengthPerTimeMeasure(soap, "prodml23:DarcyVelocity", &a->prodml23__SlimTubeTestVolumeStep::DarcyVelocity, "eml23:LengthPerTimeMeasure")) { soap_flag_DarcyVelocity1--; continue; } } if (soap_flag_CumulativeOilProductionPercOOIP1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeOilProductionPercOOIP", &a->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeOilProductionPercOOIP", &a->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP, "eml23:VolumePerVolumeMeasure")) { soap_flag_CumulativeOilProductionPercOOIP1--; continue; } } if (soap_flag_CumulativeOilProductionSTO1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:CumulativeOilProductionSTO", &a->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionSTO, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:CumulativeOilProductionSTO", &a->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionSTO, "eml23:VolumeMeasure")) { soap_flag_CumulativeOilProductionSTO1--; continue; } } if (soap_flag_IncrementalProducedGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:IncrementalProducedGOR", &a->prodml22__SlimTubeTestVolumeStep::IncrementalProducedGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:IncrementalProducedGOR", &a->prodml23__SlimTubeTestVolumeStep::IncrementalProducedGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_IncrementalProducedGOR1--; continue; } } if (soap_flag_CumulativeProducedGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeProducedGOR", &a->prodml22__SlimTubeTestVolumeStep::CumulativeProducedGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeProducedGOR", &a->prodml23__SlimTubeTestVolumeStep::CumulativeProducedGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_CumulativeProducedGOR1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SlimTubeTestVolumeStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SlimTubeTestVolumeStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_ProducedGasProperties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProducedGasProperties(soap, "prodml22:ProducedGasProperties", &a->prodml22__SlimTubeTestVolumeStep::ProducedGasProperties, "prodml22:ProducedGasProperties")) + { if (soap_in_PointerToprodml23__ProducedGasProperties(soap, "prodml23:ProducedGasProperties", &a->prodml23__SlimTubeTestVolumeStep::ProducedGasProperties, "prodml23:ProducedGasProperties")) { soap_flag_ProducedGasProperties1--; continue; } } if (soap_flag_ProducedOilProperties1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProducedOilProperties(soap, "prodml22:ProducedOilProperties", &a->prodml22__SlimTubeTestVolumeStep::ProducedOilProperties, "prodml22:ProducedOilProperties")) + { if (soap_in_PointerToprodml23__ProducedOilProperties(soap, "prodml23:ProducedOilProperties", &a->prodml23__SlimTubeTestVolumeStep::ProducedOilProperties, "prodml23:ProducedOilProperties")) { soap_flag_ProducedOilProperties1--; continue; } } if (soap_flag_MassBalance1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MassBalance(soap, "prodml22:MassBalance", &a->prodml22__SlimTubeTestVolumeStep::MassBalance, "prodml22:MassBalance")) + { if (soap_in_PointerToprodml23__MassBalance(soap, "prodml23:MassBalance", &a->prodml23__SlimTubeTestVolumeStep::MassBalance, "prodml23:MassBalance")) { soap_flag_MassBalance1--; continue; } @@ -219991,35 +219956,35 @@ SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_in_prodml22__SlimT return NULL; } else - { a = (prodml22__SlimTubeTestVolumeStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, sizeof(prodml22__SlimTubeTestVolumeStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeTestVolumeStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, sizeof(prodml23__SlimTubeTestVolumeStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTestVolumeStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTestVolumeStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SlimTubeTestVolumeStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SlimTubeTestVolumeStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SlimTubeTestVolumeStep *p; - size_t k = sizeof(prodml22__SlimTubeTestVolumeStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, n, gsoap_eml2_3_fdelete); + prodml23__SlimTubeTestVolumeStep *p; + size_t k = sizeof(prodml23__SlimTubeTestVolumeStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SlimTubeTestVolumeStep); + { p = SOAP_NEW(soap, prodml23__SlimTubeTestVolumeStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SlimTubeTestVolumeStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SlimTubeTestVolumeStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SlimTubeTestVolumeStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SlimTubeTestVolumeStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -220029,92 +219994,92 @@ SOAP_FMAC1 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__SlimTubeTestVolumeStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SlimTubeTestVolumeStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SlimTubeTestVolumeStep(soap, tag ? tag : "prodml22:SlimTubeTestVolumeStep", -2, this, type)) + if (soap_out_prodml23__SlimTubeTestVolumeStep(soap, tag ? tag : "prodml23:SlimTubeTestVolumeStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SlimTubeTestVolumeStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeTestVolumeStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SlimTubeTestVolumeStep(soap, this, tag, type); + return soap_get_prodml23__SlimTubeTestVolumeStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_get_prodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_get_prodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SlimTubeTestVolumeStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__SlimTubeTestVolumeStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SlimTubeTestStep::soap_default(struct soap *soap) +void prodml23__SlimTubeTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__SlimTubeTestStep::StepNumber); - this->prodml22__SlimTubeTestStep::StepAveragePressure = NULL; - this->prodml22__SlimTubeTestStep::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap, &this->prodml22__SlimTubeTestStep::SlimTubeTestVolumeStep); - soap_default_eml23__String64(soap, &this->prodml22__SlimTubeTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__SlimTubeTestStep::StepNumber); + this->prodml23__SlimTubeTestStep::StepAveragePressure = NULL; + this->prodml23__SlimTubeTestStep::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap, &this->prodml23__SlimTubeTestStep::SlimTubeTestVolumeStep); + soap_default_eml23__String64(soap, &this->prodml23__SlimTubeTestStep::uid); } -void prodml22__SlimTubeTestStep::soap_serialize(struct soap *soap) const +void prodml23__SlimTubeTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SlimTubeTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__SlimTubeTestStep::StepAveragePressure); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SlimTubeTestStep::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap, &this->prodml22__SlimTubeTestStep::SlimTubeTestVolumeStep); + soap_embedded(soap, &this->prodml23__SlimTubeTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__SlimTubeTestStep::StepAveragePressure); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SlimTubeTestStep::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap, &this->prodml23__SlimTubeTestStep::SlimTubeTestVolumeStep); #endif } -int prodml22__SlimTubeTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SlimTubeTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SlimTubeTestStep(soap, tag, id, this, type); + return soap_out_prodml23__SlimTubeTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeTestStep(struct soap *soap, const char *tag, int id, const prodml22__SlimTubeTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeTestStep(struct soap *soap, const char *tag, int id, const prodml23__SlimTubeTestStep *a, const char *type) { if (!type) - type = "prodml22:SlimTubeTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SlimTubeTestStep*)a)->uid), 1); + type = "prodml23:SlimTubeTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SlimTubeTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__SlimTubeTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__SlimTubeTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__SlimTubeTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepAveragePressure", -1, &a->prodml22__SlimTubeTestStep::StepAveragePressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepAveragePressure", -1, &a->prodml23__SlimTubeTestStep::StepAveragePressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SlimTubeTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SlimTubeTestStep::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap, "prodml22:SlimTubeTestVolumeStep", -1, &a->prodml22__SlimTubeTestStep::SlimTubeTestVolumeStep, "prodml22:SlimTubeTestVolumeStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap, "prodml23:SlimTubeTestVolumeStep", -1, &a->prodml23__SlimTubeTestStep::SlimTubeTestVolumeStep, "prodml23:SlimTubeTestVolumeStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SlimTubeTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SlimTubeTestStep(soap, tag, this, type); + return soap_in_prodml23__SlimTubeTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SlimTubeTestStep * SOAP_FMAC4 soap_in_prodml22__SlimTubeTestStep(struct soap *soap, const char *tag, prodml22__SlimTubeTestStep *a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestStep * SOAP_FMAC4 soap_in_prodml23__SlimTubeTestStep(struct soap *soap, const char *tag, prodml23__SlimTubeTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SlimTubeTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, sizeof(prodml22__SlimTubeTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SlimTubeTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, sizeof(prodml23__SlimTubeTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SlimTubeTestStep *)a->soap_in(soap, tag, type); + return (prodml23__SlimTubeTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SlimTubeTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SlimTubeTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepAveragePressure1 = 1; @@ -220124,25 +220089,25 @@ SOAP_FMAC3 prodml22__SlimTubeTestStep * SOAP_FMAC4 soap_in_prodml22__SlimTubeTes for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__SlimTubeTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__SlimTubeTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepAveragePressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepAveragePressure", &a->prodml22__SlimTubeTestStep::StepAveragePressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepAveragePressure", &a->prodml23__SlimTubeTestStep::StepAveragePressure, "eml23:PressureMeasure")) { soap_flag_StepAveragePressure1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SlimTubeTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SlimTubeTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap, "prodml22:SlimTubeTestVolumeStep", &a->prodml22__SlimTubeTestStep::SlimTubeTestVolumeStep, "prodml22:SlimTubeTestVolumeStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap, "prodml23:SlimTubeTestVolumeStep", &a->prodml23__SlimTubeTestStep::SlimTubeTestVolumeStep, "prodml23:SlimTubeTestVolumeStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -220164,35 +220129,35 @@ SOAP_FMAC3 prodml22__SlimTubeTestStep * SOAP_FMAC4 soap_in_prodml22__SlimTubeTes return NULL; } else - { a = (prodml22__SlimTubeTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, sizeof(prodml22__SlimTubeTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, sizeof(prodml23__SlimTubeTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SlimTubeTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SlimTubeTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SlimTubeTestStep *p; - size_t k = sizeof(prodml22__SlimTubeTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, n, gsoap_eml2_3_fdelete); + prodml23__SlimTubeTestStep *p; + size_t k = sizeof(prodml23__SlimTubeTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SlimTubeTestStep); + { p = SOAP_NEW(soap, prodml23__SlimTubeTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SlimTubeTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SlimTubeTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SlimTubeTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SlimTubeTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -220202,104 +220167,104 @@ SOAP_FMAC1 prodml22__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml22__Sl return p; } -int prodml22__SlimTubeTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SlimTubeTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SlimTubeTestStep(soap, tag ? tag : "prodml22:SlimTubeTestStep", -2, this, type)) + if (soap_out_prodml23__SlimTubeTestStep(soap, tag ? tag : "prodml23:SlimTubeTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SlimTubeTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SlimTubeTestStep(soap, this, tag, type); + return soap_get_prodml23__SlimTubeTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SlimTubeTestStep * SOAP_FMAC4 soap_get_prodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestStep * SOAP_FMAC4 soap_get_prodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SlimTubeTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__SlimTubeTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SlimTubeTest::soap_default(struct soap *soap) +void prodml23__SlimTubeTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__SlimTubeTest::TestNumber); - this->prodml22__SlimTubeTest::TestTemperature = NULL; - this->prodml22__SlimTubeTest::PumpTemperature = NULL; - this->prodml22__SlimTubeTest::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap, &this->prodml22__SlimTubeTest::SlimTubeTestPressureStep); - soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap, &this->prodml22__SlimTubeTest::SlimTubeSpecification); - soap_default_eml23__String64(soap, &this->prodml22__SlimTubeTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__SlimTubeTest::TestNumber); + this->prodml23__SlimTubeTest::TestTemperature = NULL; + this->prodml23__SlimTubeTest::PumpTemperature = NULL; + this->prodml23__SlimTubeTest::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap, &this->prodml23__SlimTubeTest::SlimTubeTestPressureStep); + soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap, &this->prodml23__SlimTubeTest::SlimTubeSpecification); + soap_default_eml23__String64(soap, &this->prodml23__SlimTubeTest::uid); } -void prodml22__SlimTubeTest::soap_serialize(struct soap *soap) const +void prodml23__SlimTubeTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SlimTubeTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SlimTubeTest::TestTemperature); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SlimTubeTest::PumpTemperature); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SlimTubeTest::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap, &this->prodml22__SlimTubeTest::SlimTubeTestPressureStep); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap, &this->prodml22__SlimTubeTest::SlimTubeSpecification); + soap_embedded(soap, &this->prodml23__SlimTubeTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SlimTubeTest::TestTemperature); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SlimTubeTest::PumpTemperature); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SlimTubeTest::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap, &this->prodml23__SlimTubeTest::SlimTubeTestPressureStep); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap, &this->prodml23__SlimTubeTest::SlimTubeSpecification); #endif } -int prodml22__SlimTubeTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SlimTubeTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SlimTubeTest(soap, tag, id, this, type); + return soap_out_prodml23__SlimTubeTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeTest(struct soap *soap, const char *tag, int id, const prodml22__SlimTubeTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeTest(struct soap *soap, const char *tag, int id, const prodml23__SlimTubeTest *a, const char *type) { if (!type) - type = "prodml22:SlimTubeTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SlimTubeTest*)a)->uid), 1); + type = "prodml23:SlimTubeTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SlimTubeTest*)a)->uid), 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_gsoap_eml2_3_prodml22__SlimTubeTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__SlimTubeTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__SlimTubeTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__SlimTubeTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__SlimTubeTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__SlimTubeTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__SlimTubeTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:PumpTemperature", -1, &a->prodml22__SlimTubeTest::PumpTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:PumpTemperature", -1, &a->prodml23__SlimTubeTest::PumpTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SlimTubeTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SlimTubeTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap, "prodml22:SlimTubeTestPressureStep", -1, &a->prodml22__SlimTubeTest::SlimTubeTestPressureStep, "prodml22:SlimTubeTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap, "prodml23:SlimTubeTestPressureStep", -1, &a->prodml23__SlimTubeTest::SlimTubeTestPressureStep, "prodml23:SlimTubeTestStep")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap, "prodml22:SlimTubeSpecification", -1, &a->prodml22__SlimTubeTest::SlimTubeSpecification, "prodml22:SlimTubeSpecification")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap, "prodml23:SlimTubeSpecification", -1, &a->prodml23__SlimTubeTest::SlimTubeSpecification, "prodml23:SlimTubeSpecification")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SlimTubeTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SlimTubeTest(soap, tag, this, type); + return soap_in_prodml23__SlimTubeTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_in_prodml22__SlimTubeTest(struct soap *soap, const char *tag, prodml22__SlimTubeTest *a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTest * SOAP_FMAC4 soap_in_prodml23__SlimTubeTest(struct soap *soap, const char *tag, prodml23__SlimTubeTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SlimTubeTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, sizeof(prodml22__SlimTubeTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SlimTubeTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, sizeof(prodml23__SlimTubeTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SlimTubeTest *)a->soap_in(soap, tag, type); + return (prodml23__SlimTubeTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SlimTubeTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SlimTubeTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -220310,35 +220275,35 @@ SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_in_prodml22__SlimTubeTest(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__SlimTubeTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__SlimTubeTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__SlimTubeTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__SlimTubeTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_PumpTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:PumpTemperature", &a->prodml22__SlimTubeTest::PumpTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:PumpTemperature", &a->prodml23__SlimTubeTest::PumpTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_PumpTemperature1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SlimTubeTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SlimTubeTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap, "prodml22:SlimTubeTestPressureStep", &a->prodml22__SlimTubeTest::SlimTubeTestPressureStep, "prodml22:SlimTubeTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap, "prodml23:SlimTubeTestPressureStep", &a->prodml23__SlimTubeTest::SlimTubeTestPressureStep, "prodml23:SlimTubeTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap, "prodml22:SlimTubeSpecification", &a->prodml22__SlimTubeTest::SlimTubeSpecification, "prodml22:SlimTubeSpecification")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap, "prodml23:SlimTubeSpecification", &a->prodml23__SlimTubeTest::SlimTubeSpecification, "prodml23:SlimTubeSpecification")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -220350,7 +220315,7 @@ SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_in_prodml22__SlimTubeTest(st } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__SlimTubeTest::TestTemperature)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__SlimTubeTest::TestTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -220360,35 +220325,35 @@ SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_in_prodml22__SlimTubeTest(st return NULL; } else - { a = (prodml22__SlimTubeTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, sizeof(prodml22__SlimTubeTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, sizeof(prodml23__SlimTubeTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SlimTubeTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SlimTubeTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SlimTubeTest *p; - size_t k = sizeof(prodml22__SlimTubeTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, n, gsoap_eml2_3_fdelete); + prodml23__SlimTubeTest *p; + size_t k = sizeof(prodml23__SlimTubeTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SlimTubeTest); + { p = SOAP_NEW(soap, prodml23__SlimTubeTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SlimTubeTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SlimTubeTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SlimTubeTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SlimTubeTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -220398,116 +220363,116 @@ SOAP_FMAC1 prodml22__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml22__SlimTu return p; } -int prodml22__SlimTubeTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SlimTubeTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SlimTubeTest(soap, tag ? tag : "prodml22:SlimTubeTest", -2, this, type)) + if (soap_out_prodml23__SlimTubeTest(soap, tag ? tag : "prodml23:SlimTubeTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SlimTubeTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SlimTubeTest(soap, this, tag, type); + return soap_get_prodml23__SlimTubeTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_get_prodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTest * SOAP_FMAC4 soap_get_prodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SlimTubeTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__SlimTubeTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SlimTubeSpecification::soap_default(struct soap *soap) +void prodml23__SlimTubeSpecification::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__SlimTubeSpecification::Length = NULL; - this->prodml22__SlimTubeSpecification::OuterDiameter = NULL; - this->prodml22__SlimTubeSpecification::InnerDiameter = NULL; - this->prodml22__SlimTubeSpecification::CrossSectionArea = NULL; - this->prodml22__SlimTubeSpecification::PackingMaterial = NULL; - this->prodml22__SlimTubeSpecification::PoreVolume = NULL; - this->prodml22__SlimTubeSpecification::Porosity = NULL; - this->prodml22__SlimTubeSpecification::Permeability = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, &this->prodml22__SlimTubeSpecification::InjectedGas); - this->prodml22__SlimTubeSpecification::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__SlimTubeSpecification::uid); + this->prodml23__SlimTubeSpecification::Length = NULL; + this->prodml23__SlimTubeSpecification::OuterDiameter = NULL; + this->prodml23__SlimTubeSpecification::InnerDiameter = NULL; + this->prodml23__SlimTubeSpecification::CrossSectionArea = NULL; + this->prodml23__SlimTubeSpecification::PackingMaterial = NULL; + this->prodml23__SlimTubeSpecification::PoreVolume = NULL; + this->prodml23__SlimTubeSpecification::Porosity = NULL; + this->prodml23__SlimTubeSpecification::Permeability = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, &this->prodml23__SlimTubeSpecification::InjectedGas); + this->prodml23__SlimTubeSpecification::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__SlimTubeSpecification::uid); } -void prodml22__SlimTubeSpecification::soap_serialize(struct soap *soap) const +void prodml23__SlimTubeSpecification::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__SlimTubeSpecification::Length); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__SlimTubeSpecification::OuterDiameter); - soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml22__SlimTubeSpecification::InnerDiameter); - soap_serialize_PointerToeml23__AreaMeasure(soap, &this->prodml22__SlimTubeSpecification::CrossSectionArea); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__SlimTubeSpecification::PackingMaterial); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__SlimTubeSpecification::PoreVolume); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SlimTubeSpecification::Porosity); - soap_serialize_PointerToeml23__PermeabilityRockMeasure(soap, &this->prodml22__SlimTubeSpecification::Permeability); - soap_serialize_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, &this->prodml22__SlimTubeSpecification::InjectedGas); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SlimTubeSpecification::Remark); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__SlimTubeSpecification::Length); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__SlimTubeSpecification::OuterDiameter); + soap_serialize_PointerToeml23__LengthMeasure(soap, &this->prodml23__SlimTubeSpecification::InnerDiameter); + soap_serialize_PointerToeml23__AreaMeasure(soap, &this->prodml23__SlimTubeSpecification::CrossSectionArea); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__SlimTubeSpecification::PackingMaterial); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__SlimTubeSpecification::PoreVolume); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SlimTubeSpecification::Porosity); + soap_serialize_PointerToeml23__PermeabilityRockMeasure(soap, &this->prodml23__SlimTubeSpecification::Permeability); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, &this->prodml23__SlimTubeSpecification::InjectedGas); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SlimTubeSpecification::Remark); #endif } -int prodml22__SlimTubeSpecification::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SlimTubeSpecification::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SlimTubeSpecification(soap, tag, id, this, type); + return soap_out_prodml23__SlimTubeSpecification(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeSpecification(struct soap *soap, const char *tag, int id, const prodml22__SlimTubeSpecification *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeSpecification(struct soap *soap, const char *tag, int id, const prodml23__SlimTubeSpecification *a, const char *type) { if (!type) - type = "prodml22:SlimTubeSpecification"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SlimTubeSpecification*)a)->uid), 1); + type = "prodml23:SlimTubeSpecification"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SlimTubeSpecification*)a)->uid), 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_gsoap_eml2_3_prodml22__SlimTubeSpecification), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification), type)) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:Length", -1, &a->prodml22__SlimTubeSpecification::Length, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:Length", -1, &a->prodml23__SlimTubeSpecification::Length, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:OuterDiameter", -1, &a->prodml22__SlimTubeSpecification::OuterDiameter, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:OuterDiameter", -1, &a->prodml23__SlimTubeSpecification::OuterDiameter, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml22:InnerDiameter", -1, &a->prodml22__SlimTubeSpecification::InnerDiameter, "eml23:LengthMeasure")) + if (soap_out_PointerToeml23__LengthMeasure(soap, "prodml23:InnerDiameter", -1, &a->prodml23__SlimTubeSpecification::InnerDiameter, "eml23:LengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__AreaMeasure(soap, "prodml22:CrossSectionArea", -1, &a->prodml22__SlimTubeSpecification::CrossSectionArea, "eml23:AreaMeasure")) + if (soap_out_PointerToeml23__AreaMeasure(soap, "prodml23:CrossSectionArea", -1, &a->prodml23__SlimTubeSpecification::CrossSectionArea, "eml23:AreaMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PackingMaterial", -1, &a->prodml22__SlimTubeSpecification::PackingMaterial, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PackingMaterial", -1, &a->prodml23__SlimTubeSpecification::PackingMaterial, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:PoreVolume", -1, &a->prodml22__SlimTubeSpecification::PoreVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:PoreVolume", -1, &a->prodml23__SlimTubeSpecification::PoreVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Porosity", -1, &a->prodml22__SlimTubeSpecification::Porosity, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Porosity", -1, &a->prodml23__SlimTubeSpecification::Porosity, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__PermeabilityRockMeasure(soap, "prodml22:Permeability", -1, &a->prodml22__SlimTubeSpecification::Permeability, "eml23:PermeabilityRockMeasure")) + if (soap_out_PointerToeml23__PermeabilityRockMeasure(soap, "prodml23:Permeability", -1, &a->prodml23__SlimTubeSpecification::Permeability, "eml23:PermeabilityRockMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, "prodml22:InjectedGas", -1, &a->prodml22__SlimTubeSpecification::InjectedGas, "prodml22:InjectedGas")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, "prodml23:InjectedGas", -1, &a->prodml23__SlimTubeSpecification::InjectedGas, "prodml23:InjectedGas")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SlimTubeSpecification::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SlimTubeSpecification::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SlimTubeSpecification::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeSpecification::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SlimTubeSpecification(soap, tag, this, type); + return soap_in_prodml23__SlimTubeSpecification(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SlimTubeSpecification * SOAP_FMAC4 soap_in_prodml22__SlimTubeSpecification(struct soap *soap, const char *tag, prodml22__SlimTubeSpecification *a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeSpecification * SOAP_FMAC4 soap_in_prodml23__SlimTubeSpecification(struct soap *soap, const char *tag, prodml23__SlimTubeSpecification *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SlimTubeSpecification*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, sizeof(prodml22__SlimTubeSpecification), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SlimTubeSpecification*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, sizeof(prodml23__SlimTubeSpecification), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SlimTubeSpecification *)a->soap_in(soap, tag, type); + return (prodml23__SlimTubeSpecification *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SlimTubeSpecification*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SlimTubeSpecification*)a)->uid)) return NULL; size_t soap_flag_Length1 = 1; size_t soap_flag_OuterDiameter1 = 1; @@ -220523,59 +220488,59 @@ SOAP_FMAC3 prodml22__SlimTubeSpecification * SOAP_FMAC4 soap_in_prodml22__SlimTu for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Length1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:Length", &a->prodml22__SlimTubeSpecification::Length, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:Length", &a->prodml23__SlimTubeSpecification::Length, "eml23:LengthMeasure")) { soap_flag_Length1--; continue; } } if (soap_flag_OuterDiameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:OuterDiameter", &a->prodml22__SlimTubeSpecification::OuterDiameter, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:OuterDiameter", &a->prodml23__SlimTubeSpecification::OuterDiameter, "eml23:LengthMeasure")) { soap_flag_OuterDiameter1--; continue; } } if (soap_flag_InnerDiameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml22:InnerDiameter", &a->prodml22__SlimTubeSpecification::InnerDiameter, "eml23:LengthMeasure")) + { if (soap_in_PointerToeml23__LengthMeasure(soap, "prodml23:InnerDiameter", &a->prodml23__SlimTubeSpecification::InnerDiameter, "eml23:LengthMeasure")) { soap_flag_InnerDiameter1--; continue; } } if (soap_flag_CrossSectionArea1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AreaMeasure(soap, "prodml22:CrossSectionArea", &a->prodml22__SlimTubeSpecification::CrossSectionArea, "eml23:AreaMeasure")) + { if (soap_in_PointerToeml23__AreaMeasure(soap, "prodml23:CrossSectionArea", &a->prodml23__SlimTubeSpecification::CrossSectionArea, "eml23:AreaMeasure")) { soap_flag_CrossSectionArea1--; continue; } } if (soap_flag_PackingMaterial1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PackingMaterial", &a->prodml22__SlimTubeSpecification::PackingMaterial, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PackingMaterial", &a->prodml23__SlimTubeSpecification::PackingMaterial, "eml23:String64")) { soap_flag_PackingMaterial1--; continue; } } if (soap_flag_PoreVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:PoreVolume", &a->prodml22__SlimTubeSpecification::PoreVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:PoreVolume", &a->prodml23__SlimTubeSpecification::PoreVolume, "eml23:VolumeMeasure")) { soap_flag_PoreVolume1--; continue; } } if (soap_flag_Porosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:Porosity", &a->prodml22__SlimTubeSpecification::Porosity, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:Porosity", &a->prodml23__SlimTubeSpecification::Porosity, "eml23:VolumePerVolumeMeasure")) { soap_flag_Porosity1--; continue; } } if (soap_flag_Permeability1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PermeabilityRockMeasure(soap, "prodml22:Permeability", &a->prodml22__SlimTubeSpecification::Permeability, "eml23:PermeabilityRockMeasure")) + { if (soap_in_PointerToeml23__PermeabilityRockMeasure(soap, "prodml23:Permeability", &a->prodml23__SlimTubeSpecification::Permeability, "eml23:PermeabilityRockMeasure")) { soap_flag_Permeability1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, "prodml22:InjectedGas", &a->prodml22__SlimTubeSpecification::InjectedGas, "prodml22:InjectedGas")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, "prodml23:InjectedGas", &a->prodml23__SlimTubeSpecification::InjectedGas, "prodml23:InjectedGas")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SlimTubeSpecification::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SlimTubeSpecification::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -220591,35 +220556,35 @@ SOAP_FMAC3 prodml22__SlimTubeSpecification * SOAP_FMAC4 soap_in_prodml22__SlimTu return NULL; } else - { a = (prodml22__SlimTubeSpecification *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, sizeof(prodml22__SlimTubeSpecification), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeSpecification *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, sizeof(prodml23__SlimTubeSpecification), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeSpecification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeSpecification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SlimTubeSpecification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SlimTubeSpecification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SlimTubeSpecification *p; - size_t k = sizeof(prodml22__SlimTubeSpecification); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, n, gsoap_eml2_3_fdelete); + prodml23__SlimTubeSpecification *p; + size_t k = sizeof(prodml23__SlimTubeSpecification); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SlimTubeSpecification); + { p = SOAP_NEW(soap, prodml23__SlimTubeSpecification); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SlimTubeSpecification, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SlimTubeSpecification, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SlimTubeSpecification location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SlimTubeSpecification location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -220629,74 +220594,74 @@ SOAP_FMAC1 prodml22__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__SlimTubeSpecification::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SlimTubeSpecification::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SlimTubeSpecification(soap, tag ? tag : "prodml22:SlimTubeSpecification", -2, this, type)) + if (soap_out_prodml23__SlimTubeSpecification(soap, tag ? tag : "prodml23:SlimTubeSpecification", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SlimTubeSpecification::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SlimTubeSpecification::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SlimTubeSpecification(soap, this, tag, type); + return soap_get_prodml23__SlimTubeSpecification(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SlimTubeSpecification * SOAP_FMAC4 soap_get_prodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeSpecification * SOAP_FMAC4 soap_get_prodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SlimTubeSpecification(soap, tag, p, type))) + if ((p = soap_in_prodml23__SlimTubeSpecification(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SeparatorConditions::soap_default(struct soap *soap) +void prodml23__SeparatorConditions::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__SeparatorConditions::separatorTestReference = NULL; + this->prodml23__SeparatorConditions::separatorTestReference = NULL; } -void prodml22__SeparatorConditions::soap_serialize(struct soap *soap) const +void prodml23__SeparatorConditions::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__SeparatorConditions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SeparatorConditions::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SeparatorConditions(soap, tag, id, this, type); + return soap_out_prodml23__SeparatorConditions(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SeparatorConditions(struct soap *soap, const char *tag, int id, const prodml22__SeparatorConditions *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SeparatorConditions(struct soap *soap, const char *tag, int id, const prodml23__SeparatorConditions *a, const char *type) { if (!type) - type = "prodml22:SeparatorConditions"; - if (((prodml22__SeparatorConditions*)a)->separatorTestReference) - { soap_set_attr(soap, "separatorTestReference", soap_eml23__String642s(soap, *((prodml22__SeparatorConditions*)a)->separatorTestReference), 1); + type = "prodml23:SeparatorConditions"; + if (((prodml23__SeparatorConditions*)a)->separatorTestReference) + { soap_set_attr(soap, "separatorTestReference", soap_eml23__String642s(soap, *((prodml23__SeparatorConditions*)a)->separatorTestReference), 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_gsoap_eml2_3_prodml22__SeparatorConditions), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SeparatorConditions::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SeparatorConditions::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SeparatorConditions(soap, tag, this, type); + return soap_in_prodml23__SeparatorConditions(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SeparatorConditions * SOAP_FMAC4 soap_in_prodml22__SeparatorConditions(struct soap *soap, const char *tag, prodml22__SeparatorConditions *a, const char *type) +SOAP_FMAC3 prodml23__SeparatorConditions * SOAP_FMAC4 soap_in_prodml23__SeparatorConditions(struct soap *soap, const char *tag, prodml23__SeparatorConditions *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SeparatorConditions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions, sizeof(prodml22__SeparatorConditions), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SeparatorConditions*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions, sizeof(prodml23__SeparatorConditions), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SeparatorConditions *)a->soap_in(soap, tag, type); + return (prodml23__SeparatorConditions *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -220704,9 +220669,9 @@ SOAP_FMAC3 prodml22__SeparatorConditions * SOAP_FMAC4 soap_in_prodml22__Separato const char *t = soap_attr_value(soap, "separatorTestReference", 1, 0); if (t) { - if (!(((prodml22__SeparatorConditions*)a)->separatorTestReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__SeparatorConditions*)a)->separatorTestReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__SeparatorConditions*)a)->separatorTestReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__SeparatorConditions*)a)->separatorTestReference)) return NULL; } else if (soap->error) @@ -220727,35 +220692,35 @@ SOAP_FMAC3 prodml22__SeparatorConditions * SOAP_FMAC4 soap_in_prodml22__Separato return NULL; } else - { a = (prodml22__SeparatorConditions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions, sizeof(prodml22__SeparatorConditions), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SeparatorConditions *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions, sizeof(prodml23__SeparatorConditions), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml22__SeparatorConditions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml23__SeparatorConditions(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SeparatorConditions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SeparatorConditions(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SeparatorConditions *p; - size_t k = sizeof(prodml22__SeparatorConditions); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions, n, gsoap_eml2_3_fdelete); + prodml23__SeparatorConditions *p; + size_t k = sizeof(prodml23__SeparatorConditions); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SeparatorConditions); + { p = SOAP_NEW(soap, prodml23__SeparatorConditions); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SeparatorConditions, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SeparatorConditions, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SeparatorConditions location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SeparatorConditions location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -220765,100 +220730,100 @@ SOAP_FMAC1 prodml22__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__SeparatorConditions::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SeparatorConditions::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SeparatorConditions(soap, tag ? tag : "prodml22:SeparatorConditions", -2, this, type)) + if (soap_out_prodml23__SeparatorConditions(soap, tag ? tag : "prodml23:SeparatorConditions", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SeparatorConditions::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SeparatorConditions::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SeparatorConditions(soap, this, tag, type); + return soap_get_prodml23__SeparatorConditions(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SeparatorConditions * SOAP_FMAC4 soap_get_prodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SeparatorConditions * SOAP_FMAC4 soap_get_prodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SeparatorConditions(soap, tag, p, type))) + if ((p = soap_in_prodml23__SeparatorConditions(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SaturationTest::soap_default(struct soap *soap) +void prodml23__SaturationTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__SaturationTest::TestNumber); - this->prodml22__SaturationTest::TestTemperature = NULL; - this->prodml22__SaturationTest::SaturationPressure = NULL; - this->prodml22__SaturationTest::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__SaturationTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__SaturationTest::TestNumber); + this->prodml23__SaturationTest::TestTemperature = NULL; + this->prodml23__SaturationTest::SaturationPressure = NULL; + this->prodml23__SaturationTest::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__SaturationTest::uid); } -void prodml22__SaturationTest::soap_serialize(struct soap *soap) const +void prodml23__SaturationTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SaturationTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SaturationTest::TestTemperature); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__SaturationTest::SaturationPressure); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SaturationTest::Remark); + soap_embedded(soap, &this->prodml23__SaturationTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SaturationTest::TestTemperature); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__SaturationTest::SaturationPressure); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SaturationTest::Remark); #endif } -int prodml22__SaturationTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SaturationTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SaturationTest(soap, tag, id, this, type); + return soap_out_prodml23__SaturationTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationTest(struct soap *soap, const char *tag, int id, const prodml22__SaturationTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationTest(struct soap *soap, const char *tag, int id, const prodml23__SaturationTest *a, const char *type) { if (!type) - type = "prodml22:SaturationTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SaturationTest*)a)->uid), 1); + type = "prodml23:SaturationTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SaturationTest*)a)->uid), 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_gsoap_eml2_3_prodml22__SaturationTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__SaturationTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__SaturationTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__SaturationTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__SaturationTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__SaturationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__SaturationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (!a->prodml22__SaturationTest::SaturationPressure) - { if (soap_element_empty(soap, "prodml22:SaturationPressure", 0, NULL)) + if (!a->prodml23__SaturationTest::SaturationPressure) + { if (soap_element_empty(soap, "prodml23:SaturationPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__SaturationTest::SaturationPressure, "prodml22:SaturationPressure")) + else if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__SaturationTest::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SaturationTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SaturationTest::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SaturationTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SaturationTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SaturationTest(soap, tag, this, type); + return soap_in_prodml23__SaturationTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_in_prodml22__SaturationTest(struct soap *soap, const char *tag, prodml22__SaturationTest *a, const char *type) +SOAP_FMAC3 prodml23__SaturationTest * SOAP_FMAC4 soap_in_prodml23__SaturationTest(struct soap *soap, const char *tag, prodml23__SaturationTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SaturationTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, sizeof(prodml22__SaturationTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SaturationTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, sizeof(prodml23__SaturationTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SaturationTest *)a->soap_in(soap, tag, type); + return (prodml23__SaturationTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SaturationTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SaturationTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -220869,25 +220834,25 @@ SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_in_prodml22__SaturationTes for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__SaturationTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__SaturationTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__SaturationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__SaturationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__SaturationTest::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__SaturationTest::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SaturationTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SaturationTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -220901,7 +220866,7 @@ SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_in_prodml22__SaturationTes } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__SaturationTest::TestTemperature || !a->prodml22__SaturationTest::SaturationPressure)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__SaturationTest::TestTemperature || !a->prodml23__SaturationTest::SaturationPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -220911,35 +220876,35 @@ SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_in_prodml22__SaturationTes return NULL; } else - { a = (prodml22__SaturationTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, sizeof(prodml22__SaturationTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SaturationTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, sizeof(prodml23__SaturationTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml22__SaturationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml23__SaturationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SaturationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SaturationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SaturationTest *p; - size_t k = sizeof(prodml22__SaturationTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, n, gsoap_eml2_3_fdelete); + prodml23__SaturationTest *p; + size_t k = sizeof(prodml23__SaturationTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SaturationTest); + { p = SOAP_NEW(soap, prodml23__SaturationTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SaturationTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SaturationTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SaturationTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SaturationTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -220949,107 +220914,144 @@ SOAP_FMAC1 prodml22__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml22__Satu return p; } -int prodml22__SaturationTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SaturationTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SaturationTest(soap, tag ? tag : "prodml22:SaturationTest", -2, this, type)) + if (soap_out_prodml23__SaturationTest(soap, tag ? tag : "prodml23:SaturationTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SaturationTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SaturationTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SaturationTest(soap, this, tag, type); + return soap_get_prodml23__SaturationTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_get_prodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationTest * SOAP_FMAC4 soap_get_prodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SaturationTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__SaturationTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SaturationTemperature::soap_default(struct soap *soap) +void prodml23__SaturationTemperature::soap_default(struct soap *soap) { this->soap = soap; - this->eml23__ThermodynamicTemperatureMeasure::soap_default(soap); - soap_default_prodml22__SaturationPointKind(soap, &this->prodml22__SaturationTemperature::kind); + this->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure = NULL; + soap_default_prodml23__SaturationPointKind(soap, &this->prodml23__SaturationTemperature::kind); } -void prodml22__SaturationTemperature::soap_serialize(struct soap *soap) const +void prodml23__SaturationTemperature::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->eml23__ThermodynamicTemperatureMeasure::soap_serialize(soap); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure); #endif } -int prodml22__SaturationTemperature::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SaturationTemperature::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SaturationTemperature(soap, tag, id, this, type); + return soap_out_prodml23__SaturationTemperature(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationTemperature(struct soap *soap, const char *tag, int id, const prodml22__SaturationTemperature *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationTemperature(struct soap *soap, const char *tag, int id, const prodml23__SaturationTemperature *a, const char *type) { if (!type) - type = "prodml22:SaturationTemperature"; - soap_set_attr(soap, "kind", soap_prodml22__SaturationPointKind2s(soap, ((prodml22__SaturationTemperature*)a)->kind), 1); - soap_set_attr(soap, "uom", soap_eml23__ThermodynamicTemperatureUom2s(soap, ((eml23__ThermodynamicTemperatureMeasure*)a)->uom), 1); + type = "prodml23:SaturationTemperature"; + soap_set_attr(soap, "kind", soap_prodml23__SaturationPointKind2s(soap, ((prodml23__SaturationTemperature*)a)->kind), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->eml23__ThermodynamicTemperatureMeasure::__item, "prodml22:SaturationTemperature"); + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature), type)) + return soap->error; + if (!a->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure) + { if (soap_element_empty(soap, "prodml23:ThermodynamicTemperatureMeasure", 0, NULL)) + return soap->error; + } + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ThermodynamicTemperatureMeasure", -1, &a->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure, "eml23:ThermodynamicTemperatureMeasure")) + return soap->error; + return soap_element_end_out(soap, tag); } -void *prodml22__SaturationTemperature::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SaturationTemperature::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SaturationTemperature(soap, tag, this, type); + return soap_in_prodml23__SaturationTemperature(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SaturationTemperature * SOAP_FMAC4 soap_in_prodml22__SaturationTemperature(struct soap *soap, const char *tag, prodml22__SaturationTemperature *a, const char *type) +SOAP_FMAC3 prodml23__SaturationTemperature * SOAP_FMAC4 soap_in_prodml23__SaturationTemperature(struct soap *soap, const char *tag, prodml23__SaturationTemperature *a, const char *type) { (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) + if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - if (!(a = (prodml22__SaturationTemperature*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature, sizeof(prodml22__SaturationTemperature), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) - { soap->error = SOAP_TAG_MISMATCH; + a = (prodml23__SaturationTemperature*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature, sizeof(prodml23__SaturationTemperature), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + if (!a) return NULL; + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature) + { soap_revert(soap); + *soap->id = '\0'; + return (prodml23__SaturationTemperature *)a->soap_in(soap, tag, type); } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature) - return (prodml22__SaturationTemperature *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__SaturationPointKind(soap, soap_attr_value(soap, "kind", 5, 3), &((prodml22__SaturationTemperature*)a)->kind)) + if (soap_s2prodml23__SaturationPointKind(soap, soap_attr_value(soap, "kind", 5, 3), &((prodml23__SaturationTemperature*)a)->kind)) return NULL; - if (soap_s2eml23__ThermodynamicTemperatureUom(soap, soap_attr_value(soap, "uom", 5, 3), &((eml23__ThermodynamicTemperatureMeasure*)a)->uom)) - return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->eml23__ThermodynamicTemperatureMeasure::__item, "prodml22:SaturationTemperature")) + size_t soap_flag_ThermodynamicTemperatureMeasure1 = 1; + if (soap->body && *soap->href != '#') + { + for (;;) + { soap->error = SOAP_TAG_MISMATCH; + if (soap_flag_ThermodynamicTemperatureMeasure1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ThermodynamicTemperatureMeasure", &a->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure, "eml23:ThermodynamicTemperatureMeasure")) + { soap_flag_ThermodynamicTemperatureMeasure1--; + continue; + } + } + if (soap->error == SOAP_TAG_MISMATCH) + soap->error = soap_ignore_element(soap); + if (soap->error == SOAP_NO_TAG) + break; + if (soap->error) + return NULL; + } + if (soap_element_end_in(soap, tag)) + return NULL; + if ((!a->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure)) + { soap->error = SOAP_OCCURS; + return NULL; + } + } + else if (*soap->href != '#') + { soap->error = SOAP_OCCURS; return NULL; + } + else + { a = (prodml23__SaturationTemperature *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature, sizeof(prodml23__SaturationTemperature), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } return a; } -SOAP_FMAC1 prodml22__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml22__SaturationTemperature(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml23__SaturationTemperature(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SaturationTemperature(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SaturationTemperature(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SaturationTemperature *p; - size_t k = sizeof(prodml22__SaturationTemperature); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature, n, gsoap_eml2_3_fdelete); + prodml23__SaturationTemperature *p; + size_t k = sizeof(prodml23__SaturationTemperature); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SaturationTemperature); + { p = SOAP_NEW(soap, prodml23__SaturationTemperature); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SaturationTemperature, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SaturationTemperature, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SaturationTemperature location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SaturationTemperature location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -221059,107 +221061,144 @@ SOAP_FMAC1 prodml22__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__SaturationTemperature::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SaturationTemperature::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SaturationTemperature(soap, tag ? tag : "prodml22:SaturationTemperature", -2, this, type)) + if (soap_out_prodml23__SaturationTemperature(soap, tag ? tag : "prodml23:SaturationTemperature", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SaturationTemperature::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SaturationTemperature::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SaturationTemperature(soap, this, tag, type); + return soap_get_prodml23__SaturationTemperature(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SaturationTemperature * SOAP_FMAC4 soap_get_prodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationTemperature * SOAP_FMAC4 soap_get_prodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SaturationTemperature(soap, tag, p, type))) + if ((p = soap_in_prodml23__SaturationTemperature(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SaturationPressure::soap_default(struct soap *soap) +void prodml23__SaturationPressure::soap_default(struct soap *soap) { this->soap = soap; - this->eml23__PressureMeasureExt::soap_default(soap); - soap_default_prodml22__SaturationPointKind(soap, &this->prodml22__SaturationPressure::kind); + this->prodml23__SaturationPressure::PressureMeasureExt = NULL; + soap_default_prodml23__SaturationPointKind(soap, &this->prodml23__SaturationPressure::kind); } -void prodml22__SaturationPressure::soap_serialize(struct soap *soap) const +void prodml23__SaturationPressure::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->eml23__PressureMeasureExt::soap_serialize(soap); + soap_serialize_PointerToeml23__PressureMeasureExt(soap, &this->prodml23__SaturationPressure::PressureMeasureExt); #endif } -int prodml22__SaturationPressure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SaturationPressure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SaturationPressure(soap, tag, id, this, type); + return soap_out_prodml23__SaturationPressure(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationPressure(struct soap *soap, const char *tag, int id, const prodml22__SaturationPressure *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationPressure(struct soap *soap, const char *tag, int id, const prodml23__SaturationPressure *a, const char *type) { if (!type) - type = "prodml22:SaturationPressure"; - soap_set_attr(soap, "kind", soap_prodml22__SaturationPointKind2s(soap, ((prodml22__SaturationPressure*)a)->kind), 1); - soap_set_attr(soap, "uom", soap_eml23__PressureUomExt2s(soap, ((eml23__PressureMeasureExt*)a)->uom), 1); + type = "prodml23:SaturationPressure"; + soap_set_attr(soap, "kind", soap_prodml23__SaturationPointKind2s(soap, ((prodml23__SaturationPressure*)a)->kind), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->eml23__PressureMeasureExt::__item, "prodml22:SaturationPressure"); + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure), type)) + return soap->error; + if (!a->prodml23__SaturationPressure::PressureMeasureExt) + { if (soap_element_empty(soap, "prodml23:PressureMeasureExt", 0, NULL)) + return soap->error; + } + else if (soap_out_PointerToeml23__PressureMeasureExt(soap, "prodml23:PressureMeasureExt", -1, &a->prodml23__SaturationPressure::PressureMeasureExt, "eml23:PressureMeasureExt")) + return soap->error; + return soap_element_end_out(soap, tag); } -void *prodml22__SaturationPressure::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SaturationPressure::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SaturationPressure(soap, tag, this, type); + return soap_in_prodml23__SaturationPressure(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SaturationPressure * SOAP_FMAC4 soap_in_prodml22__SaturationPressure(struct soap *soap, const char *tag, prodml22__SaturationPressure *a, const char *type) +SOAP_FMAC3 prodml23__SaturationPressure * SOAP_FMAC4 soap_in_prodml23__SaturationPressure(struct soap *soap, const char *tag, prodml23__SaturationPressure *a, const char *type) { (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) + if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - if (!(a = (prodml22__SaturationPressure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure, sizeof(prodml22__SaturationPressure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) - { soap->error = SOAP_TAG_MISMATCH; + a = (prodml23__SaturationPressure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure, sizeof(prodml23__SaturationPressure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + if (!a) return NULL; + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure) + { soap_revert(soap); + *soap->id = '\0'; + return (prodml23__SaturationPressure *)a->soap_in(soap, tag, type); } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure) - return (prodml22__SaturationPressure *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__SaturationPointKind(soap, soap_attr_value(soap, "kind", 5, 3), &((prodml22__SaturationPressure*)a)->kind)) - return NULL; - if (soap_s2eml23__PressureUomExt(soap, soap_attr_value(soap, "uom", 1, 3), &((eml23__PressureMeasureExt*)a)->uom)) + if (soap_s2prodml23__SaturationPointKind(soap, soap_attr_value(soap, "kind", 5, 3), &((prodml23__SaturationPressure*)a)->kind)) return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->eml23__PressureMeasureExt::__item, "prodml22:SaturationPressure")) + size_t soap_flag_PressureMeasureExt1 = 1; + if (soap->body && *soap->href != '#') + { + for (;;) + { soap->error = SOAP_TAG_MISMATCH; + if (soap_flag_PressureMeasureExt1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__PressureMeasureExt(soap, "prodml23:PressureMeasureExt", &a->prodml23__SaturationPressure::PressureMeasureExt, "eml23:PressureMeasureExt")) + { soap_flag_PressureMeasureExt1--; + continue; + } + } + if (soap->error == SOAP_TAG_MISMATCH) + soap->error = soap_ignore_element(soap); + if (soap->error == SOAP_NO_TAG) + break; + if (soap->error) + return NULL; + } + if (soap_element_end_in(soap, tag)) + return NULL; + if ((!a->prodml23__SaturationPressure::PressureMeasureExt)) + { soap->error = SOAP_OCCURS; + return NULL; + } + } + else if (*soap->href != '#') + { soap->error = SOAP_OCCURS; return NULL; + } + else + { a = (prodml23__SaturationPressure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure, sizeof(prodml23__SaturationPressure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } return a; } -SOAP_FMAC1 prodml22__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml22__SaturationPressure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml23__SaturationPressure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SaturationPressure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SaturationPressure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SaturationPressure *p; - size_t k = sizeof(prodml22__SaturationPressure); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure, n, gsoap_eml2_3_fdelete); + prodml23__SaturationPressure *p; + size_t k = sizeof(prodml23__SaturationPressure); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SaturationPressure); + { p = SOAP_NEW(soap, prodml23__SaturationPressure); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SaturationPressure, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SaturationPressure, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SaturationPressure location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SaturationPressure location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -221169,96 +221208,96 @@ SOAP_FMAC1 prodml22__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__SaturationPressure::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SaturationPressure::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SaturationPressure(soap, tag ? tag : "prodml22:SaturationPressure", -2, this, type)) + if (soap_out_prodml23__SaturationPressure(soap, tag ? tag : "prodml23:SaturationPressure", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SaturationPressure::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SaturationPressure::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SaturationPressure(soap, this, tag, type); + return soap_get_prodml23__SaturationPressure(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SaturationPressure * SOAP_FMAC4 soap_get_prodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationPressure * SOAP_FMAC4 soap_get_prodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SaturationPressure(soap, tag, p, type))) + if ((p = soap_in_prodml23__SaturationPressure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Sara::soap_default(struct soap *soap) +void prodml23__Sara::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__Sara::AromaticsWeightFraction = NULL; - this->prodml22__Sara::AsphaltenesWeightFraction = NULL; - this->prodml22__Sara::NapthenesWeightFraction = NULL; - this->prodml22__Sara::ParaffinsWeightFraction = NULL; - this->prodml22__Sara::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__Sara::uid); + this->prodml23__Sara::AromaticsWeightFraction = NULL; + this->prodml23__Sara::AsphaltenesWeightFraction = NULL; + this->prodml23__Sara::NapthenesWeightFraction = NULL; + this->prodml23__Sara::ParaffinsWeightFraction = NULL; + this->prodml23__Sara::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__Sara::uid); } -void prodml22__Sara::soap_serialize(struct soap *soap) const +void prodml23__Sara::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__Sara::AromaticsWeightFraction); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__Sara::AsphaltenesWeightFraction); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__Sara::NapthenesWeightFraction); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__Sara::ParaffinsWeightFraction); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__Sara::Remark); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__Sara::AromaticsWeightFraction); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__Sara::AsphaltenesWeightFraction); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__Sara::NapthenesWeightFraction); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__Sara::ParaffinsWeightFraction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__Sara::Remark); #endif } -int prodml22__Sara::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Sara::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Sara(soap, tag, id, this, type); + return soap_out_prodml23__Sara(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Sara(struct soap *soap, const char *tag, int id, const prodml22__Sara *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Sara(struct soap *soap, const char *tag, int id, const prodml23__Sara *a, const char *type) { if (!type) - type = "prodml22:Sara"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__Sara*)a)->uid), 1); + type = "prodml23:Sara"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__Sara*)a)->uid), 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_gsoap_eml2_3_prodml22__Sara), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AromaticsWeightFraction", -1, &a->prodml22__Sara::AromaticsWeightFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AromaticsWeightFraction", -1, &a->prodml23__Sara::AromaticsWeightFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AsphaltenesWeightFraction", -1, &a->prodml22__Sara::AsphaltenesWeightFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AsphaltenesWeightFraction", -1, &a->prodml23__Sara::AsphaltenesWeightFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:NapthenesWeightFraction", -1, &a->prodml22__Sara::NapthenesWeightFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:NapthenesWeightFraction", -1, &a->prodml23__Sara::NapthenesWeightFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:ParaffinsWeightFraction", -1, &a->prodml22__Sara::ParaffinsWeightFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:ParaffinsWeightFraction", -1, &a->prodml23__Sara::ParaffinsWeightFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__Sara::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__Sara::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Sara::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Sara::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Sara(soap, tag, this, type); + return soap_in_prodml23__Sara(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Sara * SOAP_FMAC4 soap_in_prodml22__Sara(struct soap *soap, const char *tag, prodml22__Sara *a, const char *type) +SOAP_FMAC3 prodml23__Sara * SOAP_FMAC4 soap_in_prodml23__Sara(struct soap *soap, const char *tag, prodml23__Sara *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Sara*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, sizeof(prodml22__Sara), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Sara*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, sizeof(prodml23__Sara), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Sara) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Sara) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Sara *)a->soap_in(soap, tag, type); + return (prodml23__Sara *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__Sara*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__Sara*)a)->uid)) return NULL; size_t soap_flag_AromaticsWeightFraction1 = 1; size_t soap_flag_AsphaltenesWeightFraction1 = 1; @@ -221270,31 +221309,31 @@ SOAP_FMAC3 prodml22__Sara * SOAP_FMAC4 soap_in_prodml22__Sara(struct soap *soap, for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_AromaticsWeightFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AromaticsWeightFraction", &a->prodml22__Sara::AromaticsWeightFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AromaticsWeightFraction", &a->prodml23__Sara::AromaticsWeightFraction, "eml23:MassPerMassMeasure")) { soap_flag_AromaticsWeightFraction1--; continue; } } if (soap_flag_AsphaltenesWeightFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AsphaltenesWeightFraction", &a->prodml22__Sara::AsphaltenesWeightFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AsphaltenesWeightFraction", &a->prodml23__Sara::AsphaltenesWeightFraction, "eml23:MassPerMassMeasure")) { soap_flag_AsphaltenesWeightFraction1--; continue; } } if (soap_flag_NapthenesWeightFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:NapthenesWeightFraction", &a->prodml22__Sara::NapthenesWeightFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:NapthenesWeightFraction", &a->prodml23__Sara::NapthenesWeightFraction, "eml23:MassPerMassMeasure")) { soap_flag_NapthenesWeightFraction1--; continue; } } if (soap_flag_ParaffinsWeightFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:ParaffinsWeightFraction", &a->prodml22__Sara::ParaffinsWeightFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:ParaffinsWeightFraction", &a->prodml23__Sara::ParaffinsWeightFraction, "eml23:MassPerMassMeasure")) { soap_flag_ParaffinsWeightFraction1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__Sara::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__Sara::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -221310,35 +221349,35 @@ SOAP_FMAC3 prodml22__Sara * SOAP_FMAC4 soap_in_prodml22__Sara(struct soap *soap, return NULL; } else - { a = (prodml22__Sara *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, sizeof(prodml22__Sara), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Sara *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, sizeof(prodml23__Sara), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Sara * SOAP_FMAC2 soap_instantiate_prodml22__Sara(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Sara * SOAP_FMAC2 soap_instantiate_prodml23__Sara(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Sara(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Sara(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Sara *p; - size_t k = sizeof(prodml22__Sara); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, n, gsoap_eml2_3_fdelete); + prodml23__Sara *p; + size_t k = sizeof(prodml23__Sara); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Sara); + { p = SOAP_NEW(soap, prodml23__Sara); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Sara, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Sara, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Sara location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Sara location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -221348,94 +221387,94 @@ SOAP_FMAC1 prodml22__Sara * SOAP_FMAC2 soap_instantiate_prodml22__Sara(struct so return p; } -int prodml22__Sara::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Sara::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Sara(soap, tag ? tag : "prodml22:Sara", -2, this, type)) + if (soap_out_prodml23__Sara(soap, tag ? tag : "prodml23:Sara", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Sara::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Sara::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Sara(soap, this, tag, type); + return soap_get_prodml23__Sara(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Sara * SOAP_FMAC4 soap_get_prodml22__Sara(struct soap *soap, prodml22__Sara *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Sara * SOAP_FMAC4 soap_get_prodml23__Sara(struct soap *soap, prodml23__Sara *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Sara(soap, tag, p, type))) + if ((p = soap_in_prodml23__Sara(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SampleRestoration::soap_default(struct soap *soap) +void prodml23__SampleRestoration::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__SampleRestoration::StartTime = NULL; - this->prodml22__SampleRestoration::EndTime = NULL; - this->prodml22__SampleRestoration::RestorationPressure = NULL; - this->prodml22__SampleRestoration::RestorationTemperature = NULL; - this->prodml22__SampleRestoration::MixingMechanism = NULL; - this->prodml22__SampleRestoration::Remark = NULL; + this->prodml23__SampleRestoration::StartTime = NULL; + this->prodml23__SampleRestoration::EndTime = NULL; + this->prodml23__SampleRestoration::RestorationPressure = NULL; + this->prodml23__SampleRestoration::RestorationTemperature = NULL; + this->prodml23__SampleRestoration::MixingMechanism = NULL; + this->prodml23__SampleRestoration::Remark = NULL; } -void prodml22__SampleRestoration::soap_serialize(struct soap *soap) const +void prodml23__SampleRestoration::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__SampleRestoration::StartTime); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__SampleRestoration::EndTime); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__SampleRestoration::RestorationPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SampleRestoration::RestorationTemperature); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__SampleRestoration::MixingMechanism); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SampleRestoration::Remark); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__SampleRestoration::StartTime); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__SampleRestoration::EndTime); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__SampleRestoration::RestorationPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SampleRestoration::RestorationTemperature); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__SampleRestoration::MixingMechanism); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SampleRestoration::Remark); #endif } -int prodml22__SampleRestoration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SampleRestoration::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SampleRestoration(soap, tag, id, this, type); + return soap_out_prodml23__SampleRestoration(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleRestoration(struct soap *soap, const char *tag, int id, const prodml22__SampleRestoration *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleRestoration(struct soap *soap, const char *tag, int id, const prodml23__SampleRestoration *a, const char *type) { if (!type) - type = "prodml22:SampleRestoration"; + type = "prodml23:SampleRestoration"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration), type)) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__SampleRestoration::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__SampleRestoration::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__SampleRestoration::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__SampleRestoration::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:RestorationPressure", -1, &a->prodml22__SampleRestoration::RestorationPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:RestorationPressure", -1, &a->prodml23__SampleRestoration::RestorationPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:RestorationTemperature", -1, &a->prodml22__SampleRestoration::RestorationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:RestorationTemperature", -1, &a->prodml23__SampleRestoration::RestorationTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:MixingMechanism", -1, &a->prodml22__SampleRestoration::MixingMechanism, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:MixingMechanism", -1, &a->prodml23__SampleRestoration::MixingMechanism, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SampleRestoration::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SampleRestoration::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SampleRestoration::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleRestoration::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SampleRestoration(soap, tag, this, type); + return soap_in_prodml23__SampleRestoration(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SampleRestoration * SOAP_FMAC4 soap_in_prodml22__SampleRestoration(struct soap *soap, const char *tag, prodml22__SampleRestoration *a, const char *type) +SOAP_FMAC3 prodml23__SampleRestoration * SOAP_FMAC4 soap_in_prodml23__SampleRestoration(struct soap *soap, const char *tag, prodml23__SampleRestoration *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SampleRestoration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, sizeof(prodml22__SampleRestoration), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SampleRestoration*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, sizeof(prodml23__SampleRestoration), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SampleRestoration *)a->soap_in(soap, tag, type); + return (prodml23__SampleRestoration *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -221450,37 +221489,37 @@ SOAP_FMAC3 prodml22__SampleRestoration * SOAP_FMAC4 soap_in_prodml22__SampleRest for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__SampleRestoration::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__SampleRestoration::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__SampleRestoration::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__SampleRestoration::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } } if (soap_flag_RestorationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:RestorationPressure", &a->prodml22__SampleRestoration::RestorationPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:RestorationPressure", &a->prodml23__SampleRestoration::RestorationPressure, "eml23:AbstractPressureValue")) { soap_flag_RestorationPressure1--; continue; } } if (soap_flag_RestorationTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:RestorationTemperature", &a->prodml22__SampleRestoration::RestorationTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:RestorationTemperature", &a->prodml23__SampleRestoration::RestorationTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_RestorationTemperature1--; continue; } } if (soap_flag_MixingMechanism1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:MixingMechanism", &a->prodml22__SampleRestoration::MixingMechanism, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:MixingMechanism", &a->prodml23__SampleRestoration::MixingMechanism, "eml23:String64")) { soap_flag_MixingMechanism1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SampleRestoration::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SampleRestoration::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -221496,35 +221535,35 @@ SOAP_FMAC3 prodml22__SampleRestoration * SOAP_FMAC4 soap_in_prodml22__SampleRest return NULL; } else - { a = (prodml22__SampleRestoration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, sizeof(prodml22__SampleRestoration), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SampleRestoration *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, sizeof(prodml23__SampleRestoration), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml22__SampleRestoration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml23__SampleRestoration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SampleRestoration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SampleRestoration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SampleRestoration *p; - size_t k = sizeof(prodml22__SampleRestoration); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, n, gsoap_eml2_3_fdelete); + prodml23__SampleRestoration *p; + size_t k = sizeof(prodml23__SampleRestoration); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SampleRestoration); + { p = SOAP_NEW(soap, prodml23__SampleRestoration); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SampleRestoration, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SampleRestoration, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SampleRestoration location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SampleRestoration location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -221534,121 +221573,121 @@ SOAP_FMAC1 prodml22__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml22__S return p; } -int prodml22__SampleRestoration::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SampleRestoration::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SampleRestoration(soap, tag ? tag : "prodml22:SampleRestoration", -2, this, type)) + if (soap_out_prodml23__SampleRestoration(soap, tag ? tag : "prodml23:SampleRestoration", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SampleRestoration::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleRestoration::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SampleRestoration(soap, this, tag, type); + return soap_get_prodml23__SampleRestoration(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SampleRestoration * SOAP_FMAC4 soap_get_prodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleRestoration * SOAP_FMAC4 soap_get_prodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SampleRestoration(soap, tag, p, type))) + if ((p = soap_in_prodml23__SampleRestoration(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SampleIntegrityAndPreparation::soap_default(struct soap *soap) +void prodml23__SampleIntegrityAndPreparation::soap_default(struct soap *soap) { this->soap = soap; - soap_default_xsd__date(soap, &this->prodml22__SampleIntegrityAndPreparation::OpeningDate); - this->prodml22__SampleIntegrityAndPreparation::InitialVolume = NULL; - this->prodml22__SampleIntegrityAndPreparation::OpeningPressure = NULL; - this->prodml22__SampleIntegrityAndPreparation::OpeningTemperature = NULL; - this->prodml22__SampleIntegrityAndPreparation::SaturationPressure = NULL; - this->prodml22__SampleIntegrityAndPreparation::SaturationTemperature = NULL; - this->prodml22__SampleIntegrityAndPreparation::BasicSedimentAndWater = NULL; - this->prodml22__SampleIntegrityAndPreparation::FreeWaterVolume = NULL; - this->prodml22__SampleIntegrityAndPreparation::WaterContentInHydrocarbon = NULL; - this->prodml22__SampleIntegrityAndPreparation::OpeningRemark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap, &this->prodml22__SampleIntegrityAndPreparation::SampleRestoration); - soap_default_eml23__String64(soap, &this->prodml22__SampleIntegrityAndPreparation::uid); + soap_default_xsd__date(soap, &this->prodml23__SampleIntegrityAndPreparation::OpeningDate); + this->prodml23__SampleIntegrityAndPreparation::InitialVolume = NULL; + this->prodml23__SampleIntegrityAndPreparation::OpeningPressure = NULL; + this->prodml23__SampleIntegrityAndPreparation::OpeningTemperature = NULL; + this->prodml23__SampleIntegrityAndPreparation::SaturationPressure = NULL; + this->prodml23__SampleIntegrityAndPreparation::SaturationTemperature = NULL; + this->prodml23__SampleIntegrityAndPreparation::BasicSedimentAndWater = NULL; + this->prodml23__SampleIntegrityAndPreparation::FreeWaterVolume = NULL; + this->prodml23__SampleIntegrityAndPreparation::WaterContentInHydrocarbon = NULL; + this->prodml23__SampleIntegrityAndPreparation::OpeningRemark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap, &this->prodml23__SampleIntegrityAndPreparation::SampleRestoration); + soap_default_eml23__String64(soap, &this->prodml23__SampleIntegrityAndPreparation::uid); } -void prodml22__SampleIntegrityAndPreparation::soap_serialize(struct soap *soap) const +void prodml23__SampleIntegrityAndPreparation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__SampleIntegrityAndPreparation::OpeningDate, SOAP_TYPE_gsoap_eml2_3_xsd__date); - soap_serialize_xsd__date(soap, &this->prodml22__SampleIntegrityAndPreparation::OpeningDate); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__SampleIntegrityAndPreparation::InitialVolume); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__SampleIntegrityAndPreparation::OpeningPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__SampleIntegrityAndPreparation::OpeningTemperature); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__SampleIntegrityAndPreparation::SaturationPressure); - soap_serialize_PointerToprodml22__SaturationTemperature(soap, &this->prodml22__SampleIntegrityAndPreparation::SaturationTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SampleIntegrityAndPreparation::BasicSedimentAndWater); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__SampleIntegrityAndPreparation::FreeWaterVolume); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__SampleIntegrityAndPreparation::WaterContentInHydrocarbon); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SampleIntegrityAndPreparation::OpeningRemark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap, &this->prodml22__SampleIntegrityAndPreparation::SampleRestoration); + soap_embedded(soap, &this->prodml23__SampleIntegrityAndPreparation::OpeningDate, SOAP_TYPE_gsoap_eml2_3_xsd__date); + soap_serialize_xsd__date(soap, &this->prodml23__SampleIntegrityAndPreparation::OpeningDate); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__SampleIntegrityAndPreparation::InitialVolume); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__SampleIntegrityAndPreparation::OpeningPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__SampleIntegrityAndPreparation::OpeningTemperature); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__SampleIntegrityAndPreparation::SaturationPressure); + soap_serialize_PointerToprodml23__SaturationTemperature(soap, &this->prodml23__SampleIntegrityAndPreparation::SaturationTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SampleIntegrityAndPreparation::BasicSedimentAndWater); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__SampleIntegrityAndPreparation::FreeWaterVolume); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__SampleIntegrityAndPreparation::WaterContentInHydrocarbon); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SampleIntegrityAndPreparation::OpeningRemark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap, &this->prodml23__SampleIntegrityAndPreparation::SampleRestoration); #endif } -int prodml22__SampleIntegrityAndPreparation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SampleIntegrityAndPreparation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SampleIntegrityAndPreparation(soap, tag, id, this, type); + return soap_out_prodml23__SampleIntegrityAndPreparation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, int id, const prodml22__SampleIntegrityAndPreparation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, int id, const prodml23__SampleIntegrityAndPreparation *a, const char *type) { if (!type) - type = "prodml22:SampleIntegrityAndPreparation"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SampleIntegrityAndPreparation*)a)->uid), 1); + type = "prodml23:SampleIntegrityAndPreparation"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SampleIntegrityAndPreparation*)a)->uid), 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_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation), type)) return soap->error; - if (soap_out_xsd__date(soap, "prodml22:OpeningDate", -1, &a->prodml22__SampleIntegrityAndPreparation::OpeningDate, "xsd:date")) + if (soap_out_xsd__date(soap, "prodml23:OpeningDate", -1, &a->prodml23__SampleIntegrityAndPreparation::OpeningDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:InitialVolume", -1, &a->prodml22__SampleIntegrityAndPreparation::InitialVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:InitialVolume", -1, &a->prodml23__SampleIntegrityAndPreparation::InitialVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:OpeningPressure", -1, &a->prodml22__SampleIntegrityAndPreparation::OpeningPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:OpeningPressure", -1, &a->prodml23__SampleIntegrityAndPreparation::OpeningPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:OpeningTemperature", -1, &a->prodml22__SampleIntegrityAndPreparation::OpeningTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:OpeningTemperature", -1, &a->prodml23__SampleIntegrityAndPreparation::OpeningTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__SampleIntegrityAndPreparation::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__SampleIntegrityAndPreparation::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationTemperature(soap, "prodml22:SaturationTemperature", -1, &a->prodml22__SampleIntegrityAndPreparation::SaturationTemperature, "prodml22:SaturationTemperature")) + if (soap_out_PointerToprodml23__SaturationTemperature(soap, "prodml23:SaturationTemperature", -1, &a->prodml23__SampleIntegrityAndPreparation::SaturationTemperature, "prodml23:SaturationTemperature")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:BasicSedimentAndWater", -1, &a->prodml22__SampleIntegrityAndPreparation::BasicSedimentAndWater, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:BasicSedimentAndWater", -1, &a->prodml23__SampleIntegrityAndPreparation::BasicSedimentAndWater, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:FreeWaterVolume", -1, &a->prodml22__SampleIntegrityAndPreparation::FreeWaterVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:FreeWaterVolume", -1, &a->prodml23__SampleIntegrityAndPreparation::FreeWaterVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WaterContentInHydrocarbon", -1, &a->prodml22__SampleIntegrityAndPreparation::WaterContentInHydrocarbon, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WaterContentInHydrocarbon", -1, &a->prodml23__SampleIntegrityAndPreparation::WaterContentInHydrocarbon, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:OpeningRemark", -1, &a->prodml22__SampleIntegrityAndPreparation::OpeningRemark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:OpeningRemark", -1, &a->prodml23__SampleIntegrityAndPreparation::OpeningRemark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap, "prodml22:SampleRestoration", -1, &a->prodml22__SampleIntegrityAndPreparation::SampleRestoration, "prodml22:SampleRestoration")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap, "prodml23:SampleRestoration", -1, &a->prodml23__SampleIntegrityAndPreparation::SampleRestoration, "prodml23:SampleRestoration")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SampleIntegrityAndPreparation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleIntegrityAndPreparation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SampleIntegrityAndPreparation(soap, tag, this, type); + return soap_in_prodml23__SampleIntegrityAndPreparation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_in_prodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, prodml22__SampleIntegrityAndPreparation *a, const char *type) +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_in_prodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, prodml23__SampleIntegrityAndPreparation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SampleIntegrityAndPreparation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation, sizeof(prodml22__SampleIntegrityAndPreparation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SampleIntegrityAndPreparation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation, sizeof(prodml23__SampleIntegrityAndPreparation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SampleIntegrityAndPreparation *)a->soap_in(soap, tag, type); + return (prodml23__SampleIntegrityAndPreparation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SampleIntegrityAndPreparation*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SampleIntegrityAndPreparation*)a)->uid)) return NULL; size_t soap_flag_OpeningDate1 = 1; size_t soap_flag_InitialVolume1 = 1; @@ -221665,67 +221704,67 @@ SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_OpeningDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_xsd__date(soap, "prodml22:OpeningDate", &a->prodml22__SampleIntegrityAndPreparation::OpeningDate, "xsd:date")) + { if (soap_in_xsd__date(soap, "prodml23:OpeningDate", &a->prodml23__SampleIntegrityAndPreparation::OpeningDate, "xsd:date")) { soap_flag_OpeningDate1--; continue; } } if (soap_flag_InitialVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:InitialVolume", &a->prodml22__SampleIntegrityAndPreparation::InitialVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:InitialVolume", &a->prodml23__SampleIntegrityAndPreparation::InitialVolume, "eml23:VolumeMeasure")) { soap_flag_InitialVolume1--; continue; } } if (soap_flag_OpeningPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:OpeningPressure", &a->prodml22__SampleIntegrityAndPreparation::OpeningPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:OpeningPressure", &a->prodml23__SampleIntegrityAndPreparation::OpeningPressure, "eml23:AbstractPressureValue")) { soap_flag_OpeningPressure1--; continue; } } if (soap_flag_OpeningTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:OpeningTemperature", &a->prodml22__SampleIntegrityAndPreparation::OpeningTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:OpeningTemperature", &a->prodml23__SampleIntegrityAndPreparation::OpeningTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_OpeningTemperature1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__SampleIntegrityAndPreparation::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__SampleIntegrityAndPreparation::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_SaturationTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationTemperature(soap, "prodml22:SaturationTemperature", &a->prodml22__SampleIntegrityAndPreparation::SaturationTemperature, "prodml22:SaturationTemperature")) + { if (soap_in_PointerToprodml23__SaturationTemperature(soap, "prodml23:SaturationTemperature", &a->prodml23__SampleIntegrityAndPreparation::SaturationTemperature, "prodml23:SaturationTemperature")) { soap_flag_SaturationTemperature1--; continue; } } if (soap_flag_BasicSedimentAndWater1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:BasicSedimentAndWater", &a->prodml22__SampleIntegrityAndPreparation::BasicSedimentAndWater, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:BasicSedimentAndWater", &a->prodml23__SampleIntegrityAndPreparation::BasicSedimentAndWater, "eml23:VolumePerVolumeMeasure")) { soap_flag_BasicSedimentAndWater1--; continue; } } if (soap_flag_FreeWaterVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:FreeWaterVolume", &a->prodml22__SampleIntegrityAndPreparation::FreeWaterVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:FreeWaterVolume", &a->prodml23__SampleIntegrityAndPreparation::FreeWaterVolume, "eml23:VolumeMeasure")) { soap_flag_FreeWaterVolume1--; continue; } } if (soap_flag_WaterContentInHydrocarbon1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WaterContentInHydrocarbon", &a->prodml22__SampleIntegrityAndPreparation::WaterContentInHydrocarbon, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WaterContentInHydrocarbon", &a->prodml23__SampleIntegrityAndPreparation::WaterContentInHydrocarbon, "eml23:MassPerMassMeasure")) { soap_flag_WaterContentInHydrocarbon1--; continue; } } if (soap_flag_OpeningRemark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:OpeningRemark", &a->prodml22__SampleIntegrityAndPreparation::OpeningRemark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:OpeningRemark", &a->prodml23__SampleIntegrityAndPreparation::OpeningRemark, "eml23:String2000")) { soap_flag_OpeningRemark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap, "prodml22:SampleRestoration", &a->prodml22__SampleIntegrityAndPreparation::SampleRestoration, "prodml22:SampleRestoration")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap, "prodml23:SampleRestoration", &a->prodml23__SampleIntegrityAndPreparation::SampleRestoration, "prodml23:SampleRestoration")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -221747,35 +221786,35 @@ SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__SampleIntegrityAndPreparation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation, sizeof(prodml22__SampleIntegrityAndPreparation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SampleIntegrityAndPreparation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation, sizeof(prodml23__SampleIntegrityAndPreparation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate_prodml22__SampleIntegrityAndPreparation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate_prodml23__SampleIntegrityAndPreparation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SampleIntegrityAndPreparation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SampleIntegrityAndPreparation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SampleIntegrityAndPreparation *p; - size_t k = sizeof(prodml22__SampleIntegrityAndPreparation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation, n, gsoap_eml2_3_fdelete); + prodml23__SampleIntegrityAndPreparation *p; + size_t k = sizeof(prodml23__SampleIntegrityAndPreparation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SampleIntegrityAndPreparation); + { p = SOAP_NEW(soap, prodml23__SampleIntegrityAndPreparation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SampleIntegrityAndPreparation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SampleIntegrityAndPreparation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SampleIntegrityAndPreparation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SampleIntegrityAndPreparation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -221785,119 +221824,119 @@ SOAP_FMAC1 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__SampleIntegrityAndPreparation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SampleIntegrityAndPreparation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SampleIntegrityAndPreparation(soap, tag ? tag : "prodml22:SampleIntegrityAndPreparation", -2, this, type)) + if (soap_out_prodml23__SampleIntegrityAndPreparation(soap, tag ? tag : "prodml23:SampleIntegrityAndPreparation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SampleIntegrityAndPreparation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleIntegrityAndPreparation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SampleIntegrityAndPreparation(soap, this, tag, type); + return soap_get_prodml23__SampleIntegrityAndPreparation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_get_prodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_get_prodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SampleIntegrityAndPreparation(soap, tag, p, type))) + if ((p = soap_in_prodml23__SampleIntegrityAndPreparation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SampleContaminant::soap_default(struct soap *soap) +void prodml23__SampleContaminant::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__FluidContaminant(soap, &this->prodml22__SampleContaminant::ContaminantKind); - this->prodml22__SampleContaminant::WeightFractionStockTank = NULL; - this->prodml22__SampleContaminant::VolumeFractionStockTank = NULL; - this->prodml22__SampleContaminant::WeightFractionLiveSample = NULL; - this->prodml22__SampleContaminant::VolumeFractionLiveSample = NULL; - this->prodml22__SampleContaminant::MolecularWeight = NULL; - this->prodml22__SampleContaminant::Density = NULL; - this->prodml22__SampleContaminant::ContaminantComposition = NULL; - this->prodml22__SampleContaminant::Description = NULL; - this->prodml22__SampleContaminant::Remark = NULL; - this->prodml22__SampleContaminant::SampleOfContaminant = NULL; - soap_default_eml23__String64(soap, &this->prodml22__SampleContaminant::uid); + soap_default_prodml23__FluidContaminant(soap, &this->prodml23__SampleContaminant::ContaminantKind); + this->prodml23__SampleContaminant::WeightFractionStockTank = NULL; + this->prodml23__SampleContaminant::VolumeFractionStockTank = NULL; + this->prodml23__SampleContaminant::WeightFractionLiveSample = NULL; + this->prodml23__SampleContaminant::VolumeFractionLiveSample = NULL; + this->prodml23__SampleContaminant::MolecularWeight = NULL; + this->prodml23__SampleContaminant::Density = NULL; + this->prodml23__SampleContaminant::ContaminantComposition = NULL; + this->prodml23__SampleContaminant::Description = NULL; + this->prodml23__SampleContaminant::Remark = NULL; + this->prodml23__SampleContaminant::SampleOfContaminant = NULL; + soap_default_eml23__String64(soap, &this->prodml23__SampleContaminant::uid); } -void prodml22__SampleContaminant::soap_serialize(struct soap *soap) const +void prodml23__SampleContaminant::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__SampleContaminant::WeightFractionStockTank); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SampleContaminant::VolumeFractionStockTank); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__SampleContaminant::WeightFractionLiveSample); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__SampleContaminant::VolumeFractionLiveSample); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__SampleContaminant::MolecularWeight); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__SampleContaminant::Density); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__SampleContaminant::ContaminantComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SampleContaminant::Description); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SampleContaminant::Remark); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__SampleContaminant::SampleOfContaminant); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__SampleContaminant::WeightFractionStockTank); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SampleContaminant::VolumeFractionStockTank); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__SampleContaminant::WeightFractionLiveSample); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__SampleContaminant::VolumeFractionLiveSample); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__SampleContaminant::MolecularWeight); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__SampleContaminant::Density); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__SampleContaminant::ContaminantComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SampleContaminant::Description); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SampleContaminant::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__SampleContaminant::SampleOfContaminant); #endif } -int prodml22__SampleContaminant::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SampleContaminant::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SampleContaminant(soap, tag, id, this, type); + return soap_out_prodml23__SampleContaminant(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleContaminant(struct soap *soap, const char *tag, int id, const prodml22__SampleContaminant *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleContaminant(struct soap *soap, const char *tag, int id, const prodml23__SampleContaminant *a, const char *type) { if (!type) - type = "prodml22:SampleContaminant"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__SampleContaminant*)a)->uid), 1); + type = "prodml23:SampleContaminant"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__SampleContaminant*)a)->uid), 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_gsoap_eml2_3_prodml22__SampleContaminant), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant), type)) return soap->error; - if (soap_out_prodml22__FluidContaminant(soap, "prodml22:ContaminantKind", -1, &a->prodml22__SampleContaminant::ContaminantKind, "prodml22:FluidContaminant")) + if (soap_out_prodml23__FluidContaminant(soap, "prodml23:ContaminantKind", -1, &a->prodml23__SampleContaminant::ContaminantKind, "prodml23:FluidContaminant")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WeightFractionStockTank", -1, &a->prodml22__SampleContaminant::WeightFractionStockTank, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WeightFractionStockTank", -1, &a->prodml23__SampleContaminant::WeightFractionStockTank, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumeFractionStockTank", -1, &a->prodml22__SampleContaminant::VolumeFractionStockTank, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumeFractionStockTank", -1, &a->prodml23__SampleContaminant::VolumeFractionStockTank, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WeightFractionLiveSample", -1, &a->prodml22__SampleContaminant::WeightFractionLiveSample, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WeightFractionLiveSample", -1, &a->prodml23__SampleContaminant::WeightFractionLiveSample, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumeFractionLiveSample", -1, &a->prodml22__SampleContaminant::VolumeFractionLiveSample, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumeFractionLiveSample", -1, &a->prodml23__SampleContaminant::VolumeFractionLiveSample, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__SampleContaminant::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__SampleContaminant::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:Density", -1, &a->prodml22__SampleContaminant::Density, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:Density", -1, &a->prodml23__SampleContaminant::Density, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:ContaminantComposition", -1, &a->prodml22__SampleContaminant::ContaminantComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:ContaminantComposition", -1, &a->prodml23__SampleContaminant::ContaminantComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Description", -1, &a->prodml22__SampleContaminant::Description, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Description", -1, &a->prodml23__SampleContaminant::Description, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SampleContaminant::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SampleContaminant::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:SampleOfContaminant", -1, &a->prodml22__SampleContaminant::SampleOfContaminant, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:SampleOfContaminant", -1, &a->prodml23__SampleContaminant::SampleOfContaminant, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SampleContaminant::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleContaminant::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SampleContaminant(soap, tag, this, type); + return soap_in_prodml23__SampleContaminant(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SampleContaminant * SOAP_FMAC4 soap_in_prodml22__SampleContaminant(struct soap *soap, const char *tag, prodml22__SampleContaminant *a, const char *type) +SOAP_FMAC3 prodml23__SampleContaminant * SOAP_FMAC4 soap_in_prodml23__SampleContaminant(struct soap *soap, const char *tag, prodml23__SampleContaminant *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SampleContaminant*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, sizeof(prodml22__SampleContaminant), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SampleContaminant*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, sizeof(prodml23__SampleContaminant), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SampleContaminant *)a->soap_in(soap, tag, type); + return (prodml23__SampleContaminant *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__SampleContaminant*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__SampleContaminant*)a)->uid)) return NULL; size_t soap_flag_ContaminantKind1 = 1; size_t soap_flag_WeightFractionStockTank1 = 1; @@ -221915,67 +221954,67 @@ SOAP_FMAC3 prodml22__SampleContaminant * SOAP_FMAC4 soap_in_prodml22__SampleCont for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ContaminantKind1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__FluidContaminant(soap, "prodml22:ContaminantKind", &a->prodml22__SampleContaminant::ContaminantKind, "prodml22:FluidContaminant")) + { if (soap_in_prodml23__FluidContaminant(soap, "prodml23:ContaminantKind", &a->prodml23__SampleContaminant::ContaminantKind, "prodml23:FluidContaminant")) { soap_flag_ContaminantKind1--; continue; } } if (soap_flag_WeightFractionStockTank1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WeightFractionStockTank", &a->prodml22__SampleContaminant::WeightFractionStockTank, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WeightFractionStockTank", &a->prodml23__SampleContaminant::WeightFractionStockTank, "eml23:MassPerMassMeasure")) { soap_flag_WeightFractionStockTank1--; continue; } } if (soap_flag_VolumeFractionStockTank1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumeFractionStockTank", &a->prodml22__SampleContaminant::VolumeFractionStockTank, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumeFractionStockTank", &a->prodml23__SampleContaminant::VolumeFractionStockTank, "eml23:VolumePerVolumeMeasure")) { soap_flag_VolumeFractionStockTank1--; continue; } } if (soap_flag_WeightFractionLiveSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:WeightFractionLiveSample", &a->prodml22__SampleContaminant::WeightFractionLiveSample, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:WeightFractionLiveSample", &a->prodml23__SampleContaminant::WeightFractionLiveSample, "eml23:MassPerMassMeasure")) { soap_flag_WeightFractionLiveSample1--; continue; } } if (soap_flag_VolumeFractionLiveSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:VolumeFractionLiveSample", &a->prodml22__SampleContaminant::VolumeFractionLiveSample, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumeFractionLiveSample", &a->prodml23__SampleContaminant::VolumeFractionLiveSample, "eml23:VolumePerVolumeMeasure")) { soap_flag_VolumeFractionLiveSample1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__SampleContaminant::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__SampleContaminant::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_Density1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:Density", &a->prodml22__SampleContaminant::Density, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:Density", &a->prodml23__SampleContaminant::Density, "eml23:MassPerVolumeMeasure")) { soap_flag_Density1--; continue; } } if (soap_flag_ContaminantComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:ContaminantComposition", &a->prodml22__SampleContaminant::ContaminantComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:ContaminantComposition", &a->prodml23__SampleContaminant::ContaminantComposition, "prodml23:LiquidComposition")) { soap_flag_ContaminantComposition1--; continue; } } if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Description", &a->prodml22__SampleContaminant::Description, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Description", &a->prodml23__SampleContaminant::Description, "eml23:String2000")) { soap_flag_Description1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SampleContaminant::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SampleContaminant::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_SampleOfContaminant1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:SampleOfContaminant", &a->prodml22__SampleContaminant::SampleOfContaminant, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:SampleOfContaminant", &a->prodml23__SampleContaminant::SampleOfContaminant, "eml23:DataObjectReference")) { soap_flag_SampleOfContaminant1--; continue; } @@ -221999,35 +222038,35 @@ SOAP_FMAC3 prodml22__SampleContaminant * SOAP_FMAC4 soap_in_prodml22__SampleCont return NULL; } else - { a = (prodml22__SampleContaminant *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, sizeof(prodml22__SampleContaminant), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SampleContaminant *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, sizeof(prodml23__SampleContaminant), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml22__SampleContaminant(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml23__SampleContaminant(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SampleContaminant(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SampleContaminant(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SampleContaminant *p; - size_t k = sizeof(prodml22__SampleContaminant); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, n, gsoap_eml2_3_fdelete); + prodml23__SampleContaminant *p; + size_t k = sizeof(prodml23__SampleContaminant); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SampleContaminant); + { p = SOAP_NEW(soap, prodml23__SampleContaminant); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SampleContaminant, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SampleContaminant, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SampleContaminant location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SampleContaminant location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222037,92 +222076,92 @@ SOAP_FMAC1 prodml22__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml22__S return p; } -int prodml22__SampleContaminant::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SampleContaminant::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SampleContaminant(soap, tag ? tag : "prodml22:SampleContaminant", -2, this, type)) + if (soap_out_prodml23__SampleContaminant(soap, tag ? tag : "prodml23:SampleContaminant", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SampleContaminant::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SampleContaminant::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SampleContaminant(soap, this, tag, type); + return soap_get_prodml23__SampleContaminant(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SampleContaminant * SOAP_FMAC4 soap_get_prodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleContaminant * SOAP_FMAC4 soap_get_prodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SampleContaminant(soap, tag, p, type))) + if ((p = soap_in_prodml23__SampleContaminant(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReportLocation::soap_default(struct soap *soap) +void prodml23__ReportLocation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReportLocation::LocationDate = NULL; - this->prodml22__ReportLocation::LocationType = NULL; - this->prodml22__ReportLocation::Location = NULL; - this->prodml22__ReportLocation::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ReportLocation::uid); + this->prodml23__ReportLocation::LocationDate = NULL; + this->prodml23__ReportLocation::LocationType = NULL; + this->prodml23__ReportLocation::Location = NULL; + this->prodml23__ReportLocation::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ReportLocation::uid); } -void prodml22__ReportLocation::soap_serialize(struct soap *soap) const +void prodml23__ReportLocation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__date(soap, &this->prodml22__ReportLocation::LocationDate); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ReportLocation::LocationType); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ReportLocation::Location); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ReportLocation::Remark); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__ReportLocation::LocationDate); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ReportLocation::LocationType); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ReportLocation::Location); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ReportLocation::Remark); #endif } -int prodml22__ReportLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReportLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReportLocation(soap, tag, id, this, type); + return soap_out_prodml23__ReportLocation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportLocation(struct soap *soap, const char *tag, int id, const prodml22__ReportLocation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportLocation(struct soap *soap, const char *tag, int id, const prodml23__ReportLocation *a, const char *type) { if (!type) - type = "prodml22:ReportLocation"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ReportLocation*)a)->uid), 1); + type = "prodml23:ReportLocation"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ReportLocation*)a)->uid), 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_gsoap_eml2_3_prodml22__ReportLocation), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation), type)) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:LocationDate", -1, &a->prodml22__ReportLocation::LocationDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:LocationDate", -1, &a->prodml23__ReportLocation::LocationDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:LocationType", -1, &a->prodml22__ReportLocation::LocationType, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:LocationType", -1, &a->prodml23__ReportLocation::LocationType, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Location", -1, &a->prodml22__ReportLocation::Location, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Location", -1, &a->prodml23__ReportLocation::Location, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__ReportLocation::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__ReportLocation::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReportLocation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportLocation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReportLocation(soap, tag, this, type); + return soap_in_prodml23__ReportLocation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReportLocation * SOAP_FMAC4 soap_in_prodml22__ReportLocation(struct soap *soap, const char *tag, prodml22__ReportLocation *a, const char *type) +SOAP_FMAC3 prodml23__ReportLocation * SOAP_FMAC4 soap_in_prodml23__ReportLocation(struct soap *soap, const char *tag, prodml23__ReportLocation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReportLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, sizeof(prodml22__ReportLocation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReportLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, sizeof(prodml23__ReportLocation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReportLocation *)a->soap_in(soap, tag, type); + return (prodml23__ReportLocation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ReportLocation*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ReportLocation*)a)->uid)) return NULL; size_t soap_flag_LocationDate1 = 1; size_t soap_flag_LocationType1 = 1; @@ -222133,25 +222172,25 @@ SOAP_FMAC3 prodml22__ReportLocation * SOAP_FMAC4 soap_in_prodml22__ReportLocatio for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_LocationDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:LocationDate", &a->prodml22__ReportLocation::LocationDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:LocationDate", &a->prodml23__ReportLocation::LocationDate, "xsd:date")) { soap_flag_LocationDate1--; continue; } } if (soap_flag_LocationType1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:LocationType", &a->prodml22__ReportLocation::LocationType, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:LocationType", &a->prodml23__ReportLocation::LocationType, "eml23:String64")) { soap_flag_LocationType1--; continue; } } if (soap_flag_Location1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Location", &a->prodml22__ReportLocation::Location, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Location", &a->prodml23__ReportLocation::Location, "eml23:String2000")) { soap_flag_Location1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__ReportLocation::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__ReportLocation::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -222167,35 +222206,35 @@ SOAP_FMAC3 prodml22__ReportLocation * SOAP_FMAC4 soap_in_prodml22__ReportLocatio return NULL; } else - { a = (prodml22__ReportLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, sizeof(prodml22__ReportLocation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReportLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, sizeof(prodml23__ReportLocation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml22__ReportLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml23__ReportLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReportLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReportLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReportLocation *p; - size_t k = sizeof(prodml22__ReportLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, n, gsoap_eml2_3_fdelete); + prodml23__ReportLocation *p; + size_t k = sizeof(prodml23__ReportLocation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReportLocation); + { p = SOAP_NEW(soap, prodml23__ReportLocation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReportLocation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReportLocation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReportLocation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReportLocation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222205,107 +222244,144 @@ SOAP_FMAC1 prodml22__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml22__Repo return p; } -int prodml22__ReportLocation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReportLocation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReportLocation(soap, tag ? tag : "prodml22:ReportLocation", -2, this, type)) + if (soap_out_prodml23__ReportLocation(soap, tag ? tag : "prodml23:ReportLocation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReportLocation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReportLocation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReportLocation(soap, this, tag, type); + return soap_get_prodml23__ReportLocation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReportLocation * SOAP_FMAC4 soap_get_prodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportLocation * SOAP_FMAC4 soap_get_prodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReportLocation(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReportLocation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RelativeVolumeRatio::soap_default(struct soap *soap) +void prodml23__RelativeVolumeRatio::soap_default(struct soap *soap) { this->soap = soap; - this->eml23__VolumePerVolumeMeasure::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__RelativeVolumeRatio::fluidVolumeReference); + this->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure = NULL; + soap_default_eml23__String64(soap, &this->prodml23__RelativeVolumeRatio::fluidVolumeReference); } -void prodml22__RelativeVolumeRatio::soap_serialize(struct soap *soap) const +void prodml23__RelativeVolumeRatio::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->eml23__VolumePerVolumeMeasure::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure); #endif } -int prodml22__RelativeVolumeRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RelativeVolumeRatio::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RelativeVolumeRatio(soap, tag, id, this, type); + return soap_out_prodml23__RelativeVolumeRatio(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RelativeVolumeRatio(struct soap *soap, const char *tag, int id, const prodml22__RelativeVolumeRatio *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RelativeVolumeRatio(struct soap *soap, const char *tag, int id, const prodml23__RelativeVolumeRatio *a, const char *type) { if (!type) - type = "prodml22:RelativeVolumeRatio"; - soap_set_attr(soap, "fluidVolumeReference", soap_eml23__String642s(soap, ((prodml22__RelativeVolumeRatio*)a)->fluidVolumeReference), 1); - soap_set_attr(soap, "uom", soap_eml23__VolumePerVolumeUomWithLegacy2s(soap, ((eml23__VolumePerVolumeMeasure*)a)->uom), 1); + type = "prodml23:RelativeVolumeRatio"; + soap_set_attr(soap, "fluidVolumeReference", soap_eml23__String642s(soap, ((prodml23__RelativeVolumeRatio*)a)->fluidVolumeReference), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->eml23__VolumePerVolumeMeasure::__item, "prodml22:RelativeVolumeRatio"); + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio), type)) + return soap->error; + if (!a->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure) + { if (soap_element_empty(soap, "prodml23:VolumePerVolumeMeasure", 0, NULL)) + return soap->error; + } + else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumePerVolumeMeasure", -1, &a->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure, "eml23:VolumePerVolumeMeasure")) + return soap->error; + return soap_element_end_out(soap, tag); } -void *prodml22__RelativeVolumeRatio::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RelativeVolumeRatio::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RelativeVolumeRatio(soap, tag, this, type); + return soap_in_prodml23__RelativeVolumeRatio(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RelativeVolumeRatio * SOAP_FMAC4 soap_in_prodml22__RelativeVolumeRatio(struct soap *soap, const char *tag, prodml22__RelativeVolumeRatio *a, const char *type) +SOAP_FMAC3 prodml23__RelativeVolumeRatio * SOAP_FMAC4 soap_in_prodml23__RelativeVolumeRatio(struct soap *soap, const char *tag, prodml23__RelativeVolumeRatio *a, const char *type) { (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) + if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - if (!(a = (prodml22__RelativeVolumeRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio, sizeof(prodml22__RelativeVolumeRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) - { soap->error = SOAP_TAG_MISMATCH; + a = (prodml23__RelativeVolumeRatio*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio, sizeof(prodml23__RelativeVolumeRatio), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + if (!a) return NULL; + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio) + { soap_revert(soap); + *soap->id = '\0'; + return (prodml23__RelativeVolumeRatio *)a->soap_in(soap, tag, type); } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio) - return (prodml22__RelativeVolumeRatio *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidVolumeReference", 1, 3), &((prodml22__RelativeVolumeRatio*)a)->fluidVolumeReference)) - return NULL; - if (soap_s2eml23__VolumePerVolumeUomWithLegacy(soap, soap_attr_value(soap, "uom", 1, 3), &((eml23__VolumePerVolumeMeasure*)a)->uom)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidVolumeReference", 1, 3), &((prodml23__RelativeVolumeRatio*)a)->fluidVolumeReference)) return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->eml23__VolumePerVolumeMeasure::__item, "prodml22:RelativeVolumeRatio")) + size_t soap_flag_VolumePerVolumeMeasure1 = 1; + if (soap->body && *soap->href != '#') + { + for (;;) + { soap->error = SOAP_TAG_MISMATCH; + if (soap_flag_VolumePerVolumeMeasure1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:VolumePerVolumeMeasure", &a->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure, "eml23:VolumePerVolumeMeasure")) + { soap_flag_VolumePerVolumeMeasure1--; + continue; + } + } + if (soap->error == SOAP_TAG_MISMATCH) + soap->error = soap_ignore_element(soap); + if (soap->error == SOAP_NO_TAG) + break; + if (soap->error) + return NULL; + } + if (soap_element_end_in(soap, tag)) + return NULL; + if ((!a->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure)) + { soap->error = SOAP_OCCURS; + return NULL; + } + } + else if (*soap->href != '#') + { soap->error = SOAP_OCCURS; return NULL; + } + else + { a = (prodml23__RelativeVolumeRatio *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio, sizeof(prodml23__RelativeVolumeRatio), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } return a; } -SOAP_FMAC1 prodml22__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml22__RelativeVolumeRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml23__RelativeVolumeRatio(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RelativeVolumeRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RelativeVolumeRatio(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RelativeVolumeRatio *p; - size_t k = sizeof(prodml22__RelativeVolumeRatio); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio, n, gsoap_eml2_3_fdelete); + prodml23__RelativeVolumeRatio *p; + size_t k = sizeof(prodml23__RelativeVolumeRatio); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RelativeVolumeRatio); + { p = SOAP_NEW(soap, prodml23__RelativeVolumeRatio); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RelativeVolumeRatio, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RelativeVolumeRatio, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RelativeVolumeRatio location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RelativeVolumeRatio location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222315,107 +222391,144 @@ SOAP_FMAC1 prodml22__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__RelativeVolumeRatio::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RelativeVolumeRatio::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RelativeVolumeRatio(soap, tag ? tag : "prodml22:RelativeVolumeRatio", -2, this, type)) + if (soap_out_prodml23__RelativeVolumeRatio(soap, tag ? tag : "prodml23:RelativeVolumeRatio", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RelativeVolumeRatio::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RelativeVolumeRatio::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RelativeVolumeRatio(soap, this, tag, type); + return soap_get_prodml23__RelativeVolumeRatio(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RelativeVolumeRatio * SOAP_FMAC4 soap_get_prodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RelativeVolumeRatio * SOAP_FMAC4 soap_get_prodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RelativeVolumeRatio(soap, tag, p, type))) + if ((p = soap_in_prodml23__RelativeVolumeRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__RefInjectedGasAdded::soap_default(struct soap *soap) +void prodml23__RefInjectedGasAdded::soap_default(struct soap *soap) { this->soap = soap; - this->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::soap_default(soap); - soap_default_eml23__String64(soap, &this->prodml22__RefInjectedGasAdded::injectionGasReference); + this->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure = NULL; + soap_default_eml23__String64(soap, &this->prodml23__RefInjectedGasAdded::injectionGasReference); } -void prodml22__RefInjectedGasAdded::soap_serialize(struct soap *soap) const +void prodml23__RefInjectedGasAdded::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::soap_serialize(soap); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure); #endif } -int prodml22__RefInjectedGasAdded::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__RefInjectedGasAdded::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__RefInjectedGasAdded(soap, tag, id, this, type); + return soap_out_prodml23__RefInjectedGasAdded(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RefInjectedGasAdded(struct soap *soap, const char *tag, int id, const prodml22__RefInjectedGasAdded *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RefInjectedGasAdded(struct soap *soap, const char *tag, int id, const prodml23__RefInjectedGasAdded *a, const char *type) { if (!type) - type = "prodml22:RefInjectedGasAdded"; - soap_set_attr(soap, "injectionGasReference", soap_eml23__String642s(soap, ((prodml22__RefInjectedGasAdded*)a)->injectionGasReference), 1); - soap_set_attr(soap, "uom", soap_eml23__AmountOfSubstancePerAmountOfSubstanceUom2s(soap, ((eml23__AmountOfSubstancePerAmountOfSubstanceMeasure*)a)->uom), 1); + type = "prodml23:RefInjectedGasAdded"; + soap_set_attr(soap, "injectionGasReference", soap_eml23__String642s(soap, ((prodml23__RefInjectedGasAdded*)a)->injectionGasReference), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::__item, "prodml22:RefInjectedGasAdded"); + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded), type)) + return soap->error; + if (!a->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure) + { if (soap_element_empty(soap, "prodml23:AmountOfSubstancePerAmountOfSubstanceMeasure", 0, NULL)) + return soap->error; + } + else if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:AmountOfSubstancePerAmountOfSubstanceMeasure", -1, &a->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + return soap->error; + return soap_element_end_out(soap, tag); } -void *prodml22__RefInjectedGasAdded::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__RefInjectedGasAdded::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__RefInjectedGasAdded(soap, tag, this, type); + return soap_in_prodml23__RefInjectedGasAdded(soap, tag, this, type); } -SOAP_FMAC3 prodml22__RefInjectedGasAdded * SOAP_FMAC4 soap_in_prodml22__RefInjectedGasAdded(struct soap *soap, const char *tag, prodml22__RefInjectedGasAdded *a, const char *type) +SOAP_FMAC3 prodml23__RefInjectedGasAdded * SOAP_FMAC4 soap_in_prodml23__RefInjectedGasAdded(struct soap *soap, const char *tag, prodml23__RefInjectedGasAdded *a, const char *type) { (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) + if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - if (!(a = (prodml22__RefInjectedGasAdded*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded, sizeof(prodml22__RefInjectedGasAdded), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) - { soap->error = SOAP_TAG_MISMATCH; + a = (prodml23__RefInjectedGasAdded*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, sizeof(prodml23__RefInjectedGasAdded), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + if (!a) return NULL; + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded) + { soap_revert(soap); + *soap->id = '\0'; + return (prodml23__RefInjectedGasAdded *)a->soap_in(soap, tag, type); } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded) - return (prodml22__RefInjectedGasAdded *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "injectionGasReference", 1, 3), &((prodml22__RefInjectedGasAdded*)a)->injectionGasReference)) - return NULL; - if (soap_s2eml23__AmountOfSubstancePerAmountOfSubstanceUom(soap, soap_attr_value(soap, "uom", 5, 3), &((eml23__AmountOfSubstancePerAmountOfSubstanceMeasure*)a)->uom)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "injectionGasReference", 1, 3), &((prodml23__RefInjectedGasAdded*)a)->injectionGasReference)) return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::__item, "prodml22:RefInjectedGasAdded")) + size_t soap_flag_AmountOfSubstancePerAmountOfSubstanceMeasure1 = 1; + if (soap->body && *soap->href != '#') + { + for (;;) + { soap->error = SOAP_TAG_MISMATCH; + if (soap_flag_AmountOfSubstancePerAmountOfSubstanceMeasure1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:AmountOfSubstancePerAmountOfSubstanceMeasure", &a->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { soap_flag_AmountOfSubstancePerAmountOfSubstanceMeasure1--; + continue; + } + } + if (soap->error == SOAP_TAG_MISMATCH) + soap->error = soap_ignore_element(soap); + if (soap->error == SOAP_NO_TAG) + break; + if (soap->error) + return NULL; + } + if (soap_element_end_in(soap, tag)) + return NULL; + if ((!a->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure)) + { soap->error = SOAP_OCCURS; + return NULL; + } + } + else if (*soap->href != '#') + { soap->error = SOAP_OCCURS; return NULL; + } + else + { a = (prodml23__RefInjectedGasAdded *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, sizeof(prodml23__RefInjectedGasAdded), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } return a; } -SOAP_FMAC1 prodml22__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml22__RefInjectedGasAdded(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml23__RefInjectedGasAdded(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__RefInjectedGasAdded(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__RefInjectedGasAdded(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__RefInjectedGasAdded *p; - size_t k = sizeof(prodml22__RefInjectedGasAdded); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded, n, gsoap_eml2_3_fdelete); + prodml23__RefInjectedGasAdded *p; + size_t k = sizeof(prodml23__RefInjectedGasAdded); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__RefInjectedGasAdded); + { p = SOAP_NEW(soap, prodml23__RefInjectedGasAdded); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__RefInjectedGasAdded, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__RefInjectedGasAdded, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__RefInjectedGasAdded location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__RefInjectedGasAdded location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222425,90 +222538,90 @@ SOAP_FMAC1 prodml22__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__RefInjectedGasAdded::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__RefInjectedGasAdded::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__RefInjectedGasAdded(soap, tag ? tag : "prodml22:RefInjectedGasAdded", -2, this, type)) + if (soap_out_prodml23__RefInjectedGasAdded(soap, tag ? tag : "prodml23:RefInjectedGasAdded", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__RefInjectedGasAdded::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__RefInjectedGasAdded::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__RefInjectedGasAdded(soap, this, tag, type); + return soap_get_prodml23__RefInjectedGasAdded(soap, this, tag, type); } -SOAP_FMAC3 prodml22__RefInjectedGasAdded * SOAP_FMAC4 soap_get_prodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RefInjectedGasAdded * SOAP_FMAC4 soap_get_prodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__RefInjectedGasAdded(soap, tag, p, type))) + if ((p = soap_in_prodml23__RefInjectedGasAdded(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProducedOilProperties::soap_default(struct soap *soap) +void prodml23__ProducedOilProperties::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProducedOilProperties::STODensity = NULL; - this->prodml22__ProducedOilProperties::STOApiGravity = NULL; - this->prodml22__ProducedOilProperties::STOMW = NULL; - this->prodml22__ProducedOilProperties::STOWaterContent = NULL; - this->prodml22__ProducedOilProperties::AsphalteneContent = NULL; + this->prodml23__ProducedOilProperties::STODensity = NULL; + this->prodml23__ProducedOilProperties::STOApiGravity = NULL; + this->prodml23__ProducedOilProperties::STOMW = NULL; + this->prodml23__ProducedOilProperties::STOWaterContent = NULL; + this->prodml23__ProducedOilProperties::AsphalteneContent = NULL; } -void prodml22__ProducedOilProperties::soap_serialize(struct soap *soap) const +void prodml23__ProducedOilProperties::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__ProducedOilProperties::STODensity); - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__ProducedOilProperties::STOApiGravity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__ProducedOilProperties::STOMW); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__ProducedOilProperties::STOWaterContent); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__ProducedOilProperties::AsphalteneContent); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__ProducedOilProperties::STODensity); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__ProducedOilProperties::STOApiGravity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__ProducedOilProperties::STOMW); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__ProducedOilProperties::STOWaterContent); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__ProducedOilProperties::AsphalteneContent); #endif } -int prodml22__ProducedOilProperties::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProducedOilProperties::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProducedOilProperties(soap, tag, id, this, type); + return soap_out_prodml23__ProducedOilProperties(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProducedOilProperties(struct soap *soap, const char *tag, int id, const prodml22__ProducedOilProperties *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProducedOilProperties(struct soap *soap, const char *tag, int id, const prodml23__ProducedOilProperties *a, const char *type) { if (!type) - type = "prodml22:ProducedOilProperties"; + type = "prodml23:ProducedOilProperties"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:STODensity", -1, &a->prodml22__ProducedOilProperties::STODensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:STODensity", -1, &a->prodml23__ProducedOilProperties::STODensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:STOApiGravity", -1, &a->prodml22__ProducedOilProperties::STOApiGravity, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:STOApiGravity", -1, &a->prodml23__ProducedOilProperties::STOApiGravity, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:STOMW", -1, &a->prodml22__ProducedOilProperties::STOMW, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:STOMW", -1, &a->prodml23__ProducedOilProperties::STOMW, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:STOWaterContent", -1, &a->prodml22__ProducedOilProperties::STOWaterContent, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:STOWaterContent", -1, &a->prodml23__ProducedOilProperties::STOWaterContent, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AsphalteneContent", -1, &a->prodml22__ProducedOilProperties::AsphalteneContent, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AsphalteneContent", -1, &a->prodml23__ProducedOilProperties::AsphalteneContent, "eml23:MassPerMassMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProducedOilProperties::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProducedOilProperties::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProducedOilProperties(soap, tag, this, type); + return soap_in_prodml23__ProducedOilProperties(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProducedOilProperties * SOAP_FMAC4 soap_in_prodml22__ProducedOilProperties(struct soap *soap, const char *tag, prodml22__ProducedOilProperties *a, const char *type) +SOAP_FMAC3 prodml23__ProducedOilProperties * SOAP_FMAC4 soap_in_prodml23__ProducedOilProperties(struct soap *soap, const char *tag, prodml23__ProducedOilProperties *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProducedOilProperties*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties, sizeof(prodml22__ProducedOilProperties), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProducedOilProperties*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties, sizeof(prodml23__ProducedOilProperties), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProducedOilProperties *)a->soap_in(soap, tag, type); + return (prodml23__ProducedOilProperties *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -222522,31 +222635,31 @@ SOAP_FMAC3 prodml22__ProducedOilProperties * SOAP_FMAC4 soap_in_prodml22__Produc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_STODensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:STODensity", &a->prodml22__ProducedOilProperties::STODensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:STODensity", &a->prodml23__ProducedOilProperties::STODensity, "eml23:MassPerVolumeMeasure")) { soap_flag_STODensity1--; continue; } } if (soap_flag_STOApiGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:STOApiGravity", &a->prodml22__ProducedOilProperties::STOApiGravity, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:STOApiGravity", &a->prodml23__ProducedOilProperties::STOApiGravity, "eml23:APIGravityMeasure")) { soap_flag_STOApiGravity1--; continue; } } if (soap_flag_STOMW1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:STOMW", &a->prodml22__ProducedOilProperties::STOMW, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:STOMW", &a->prodml23__ProducedOilProperties::STOMW, "eml23:MolecularWeightMeasure")) { soap_flag_STOMW1--; continue; } } if (soap_flag_STOWaterContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:STOWaterContent", &a->prodml22__ProducedOilProperties::STOWaterContent, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:STOWaterContent", &a->prodml23__ProducedOilProperties::STOWaterContent, "eml23:VolumePerVolumeMeasure")) { soap_flag_STOWaterContent1--; continue; } } if (soap_flag_AsphalteneContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:AsphalteneContent", &a->prodml22__ProducedOilProperties::AsphalteneContent, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:AsphalteneContent", &a->prodml23__ProducedOilProperties::AsphalteneContent, "eml23:MassPerMassMeasure")) { soap_flag_AsphalteneContent1--; continue; } @@ -222562,35 +222675,35 @@ SOAP_FMAC3 prodml22__ProducedOilProperties * SOAP_FMAC4 soap_in_prodml22__Produc return NULL; } else - { a = (prodml22__ProducedOilProperties *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties, sizeof(prodml22__ProducedOilProperties), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProducedOilProperties *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties, sizeof(prodml23__ProducedOilProperties), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml22__ProducedOilProperties(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml23__ProducedOilProperties(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProducedOilProperties(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProducedOilProperties(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProducedOilProperties *p; - size_t k = sizeof(prodml22__ProducedOilProperties); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties, n, gsoap_eml2_3_fdelete); + prodml23__ProducedOilProperties *p; + size_t k = sizeof(prodml23__ProducedOilProperties); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProducedOilProperties); + { p = SOAP_NEW(soap, prodml23__ProducedOilProperties); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProducedOilProperties, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProducedOilProperties, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProducedOilProperties location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProducedOilProperties location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222600,78 +222713,78 @@ SOAP_FMAC1 prodml22__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__ProducedOilProperties::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProducedOilProperties::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProducedOilProperties(soap, tag ? tag : "prodml22:ProducedOilProperties", -2, this, type)) + if (soap_out_prodml23__ProducedOilProperties(soap, tag ? tag : "prodml23:ProducedOilProperties", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProducedOilProperties::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProducedOilProperties::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProducedOilProperties(soap, this, tag, type); + return soap_get_prodml23__ProducedOilProperties(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProducedOilProperties * SOAP_FMAC4 soap_get_prodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProducedOilProperties * SOAP_FMAC4 soap_get_prodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProducedOilProperties(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProducedOilProperties(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProducedGasProperties::soap_default(struct soap *soap) +void prodml23__ProducedGasProperties::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ProducedGasProperties::ProducedGasGravity = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap, &this->prodml22__ProducedGasProperties::VaporComposition); + this->prodml23__ProducedGasProperties::ProducedGasGravity = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap, &this->prodml23__ProducedGasProperties::VaporComposition); } -void prodml22__ProducedGasProperties::soap_serialize(struct soap *soap) const +void prodml23__ProducedGasProperties::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__ProducedGasProperties::ProducedGasGravity); - soap_serialize_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap, &this->prodml22__ProducedGasProperties::VaporComposition); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__ProducedGasProperties::ProducedGasGravity); + soap_serialize_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap, &this->prodml23__ProducedGasProperties::VaporComposition); #endif } -int prodml22__ProducedGasProperties::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProducedGasProperties::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProducedGasProperties(soap, tag, id, this, type); + return soap_out_prodml23__ProducedGasProperties(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProducedGasProperties(struct soap *soap, const char *tag, int id, const prodml22__ProducedGasProperties *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProducedGasProperties(struct soap *soap, const char *tag, int id, const prodml23__ProducedGasProperties *a, const char *type) { if (!type) - type = "prodml22:ProducedGasProperties"; + type = "prodml23:ProducedGasProperties"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties), type)) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:ProducedGasGravity", -1, &a->prodml22__ProducedGasProperties::ProducedGasGravity, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:ProducedGasGravity", -1, &a->prodml23__ProducedGasProperties::ProducedGasGravity, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__ProducedGasProperties::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__ProducedGasProperties::VaporComposition, "prodml23:VaporComposition")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProducedGasProperties::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProducedGasProperties::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProducedGasProperties(soap, tag, this, type); + return soap_in_prodml23__ProducedGasProperties(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml22__ProducedGasProperties(struct soap *soap, const char *tag, prodml22__ProducedGasProperties *a, const char *type) +SOAP_FMAC3 prodml23__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml23__ProducedGasProperties(struct soap *soap, const char *tag, prodml23__ProducedGasProperties *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProducedGasProperties*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties, sizeof(prodml22__ProducedGasProperties), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProducedGasProperties*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties, sizeof(prodml23__ProducedGasProperties), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProducedGasProperties *)a->soap_in(soap, tag, type); + return (prodml23__ProducedGasProperties *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -222681,13 +222794,13 @@ SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml22__Produc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ProducedGasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:ProducedGasGravity", &a->prodml22__ProducedGasProperties::ProducedGasGravity, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:ProducedGasGravity", &a->prodml23__ProducedGasProperties::ProducedGasGravity, "eml23:DimensionlessMeasure")) { soap_flag_ProducedGasGravity1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__ProducedGasProperties::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__ProducedGasProperties::VaporComposition, "prodml23:VaporComposition")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -222699,7 +222812,7 @@ SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml22__Produc } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__ProducedGasProperties::VaporComposition.size() < 1)) + if ((a->prodml23__ProducedGasProperties::VaporComposition.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -222709,35 +222822,35 @@ SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml22__Produc return NULL; } else - { a = (prodml22__ProducedGasProperties *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties, sizeof(prodml22__ProducedGasProperties), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProducedGasProperties *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties, sizeof(prodml23__ProducedGasProperties), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml22__ProducedGasProperties(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml23__ProducedGasProperties(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProducedGasProperties(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProducedGasProperties(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProducedGasProperties *p; - size_t k = sizeof(prodml22__ProducedGasProperties); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties, n, gsoap_eml2_3_fdelete); + prodml23__ProducedGasProperties *p; + size_t k = sizeof(prodml23__ProducedGasProperties); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProducedGasProperties); + { p = SOAP_NEW(soap, prodml23__ProducedGasProperties); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProducedGasProperties, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProducedGasProperties, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProducedGasProperties location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProducedGasProperties location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222747,84 +222860,84 @@ SOAP_FMAC1 prodml22__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__ProducedGasProperties::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProducedGasProperties::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProducedGasProperties(soap, tag ? tag : "prodml22:ProducedGasProperties", -2, this, type)) + if (soap_out_prodml23__ProducedGasProperties(soap, tag ? tag : "prodml23:ProducedGasProperties", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProducedGasProperties::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProducedGasProperties::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProducedGasProperties(soap, this, tag, type); + return soap_get_prodml23__ProducedGasProperties(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_get_prodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProducedGasProperties * SOAP_FMAC4 soap_get_prodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProducedGasProperties(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProducedGasProperties(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PhaseViscosity::soap_default(struct soap *soap) +void prodml23__PhaseViscosity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__PhaseViscosity::Pressure = NULL; - this->prodml22__PhaseViscosity::Viscosity = NULL; - soap_default_eml23__String64(soap, &this->prodml22__PhaseViscosity::uid); + this->prodml23__PhaseViscosity::Pressure = NULL; + this->prodml23__PhaseViscosity::Viscosity = NULL; + soap_default_eml23__String64(soap, &this->prodml23__PhaseViscosity::uid); } -void prodml22__PhaseViscosity::soap_serialize(struct soap *soap) const +void prodml23__PhaseViscosity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__PhaseViscosity::Pressure); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__PhaseViscosity::Viscosity); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__PhaseViscosity::Pressure); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__PhaseViscosity::Viscosity); #endif } -int prodml22__PhaseViscosity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PhaseViscosity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PhaseViscosity(soap, tag, id, this, type); + return soap_out_prodml23__PhaseViscosity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PhaseViscosity(struct soap *soap, const char *tag, int id, const prodml22__PhaseViscosity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PhaseViscosity(struct soap *soap, const char *tag, int id, const prodml23__PhaseViscosity *a, const char *type) { if (!type) - type = "prodml22:PhaseViscosity"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__PhaseViscosity*)a)->uid), 1); + type = "prodml23:PhaseViscosity"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__PhaseViscosity*)a)->uid), 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_gsoap_eml2_3_prodml22__PhaseViscosity), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity), type)) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__PhaseViscosity::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__PhaseViscosity::Pressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:Viscosity", -1, &a->prodml22__PhaseViscosity::Viscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:Viscosity", -1, &a->prodml23__PhaseViscosity::Viscosity, "eml23:DynamicViscosityMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PhaseViscosity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PhaseViscosity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PhaseViscosity(soap, tag, this, type); + return soap_in_prodml23__PhaseViscosity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PhaseViscosity * SOAP_FMAC4 soap_in_prodml22__PhaseViscosity(struct soap *soap, const char *tag, prodml22__PhaseViscosity *a, const char *type) +SOAP_FMAC3 prodml23__PhaseViscosity * SOAP_FMAC4 soap_in_prodml23__PhaseViscosity(struct soap *soap, const char *tag, prodml23__PhaseViscosity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PhaseViscosity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity, sizeof(prodml22__PhaseViscosity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PhaseViscosity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity, sizeof(prodml23__PhaseViscosity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PhaseViscosity *)a->soap_in(soap, tag, type); + return (prodml23__PhaseViscosity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__PhaseViscosity*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__PhaseViscosity*)a)->uid)) return NULL; size_t soap_flag_Pressure1 = 1; size_t soap_flag_Viscosity1 = 1; @@ -222833,13 +222946,13 @@ SOAP_FMAC3 prodml22__PhaseViscosity * SOAP_FMAC4 soap_in_prodml22__PhaseViscosit for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Pressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__PhaseViscosity::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__PhaseViscosity::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure1--; continue; } } if (soap_flag_Viscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:Viscosity", &a->prodml22__PhaseViscosity::Viscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:Viscosity", &a->prodml23__PhaseViscosity::Viscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_Viscosity1--; continue; } @@ -222855,35 +222968,35 @@ SOAP_FMAC3 prodml22__PhaseViscosity * SOAP_FMAC4 soap_in_prodml22__PhaseViscosit return NULL; } else - { a = (prodml22__PhaseViscosity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity, sizeof(prodml22__PhaseViscosity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PhaseViscosity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity, sizeof(prodml23__PhaseViscosity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseViscosity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml23__PhaseViscosity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PhaseViscosity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PhaseViscosity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PhaseViscosity *p; - size_t k = sizeof(prodml22__PhaseViscosity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity, n, gsoap_eml2_3_fdelete); + prodml23__PhaseViscosity *p; + size_t k = sizeof(prodml23__PhaseViscosity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PhaseViscosity); + { p = SOAP_NEW(soap, prodml23__PhaseViscosity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PhaseViscosity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PhaseViscosity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PhaseViscosity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PhaseViscosity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -222893,84 +223006,84 @@ SOAP_FMAC1 prodml22__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml22__Phas return p; } -int prodml22__PhaseViscosity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PhaseViscosity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PhaseViscosity(soap, tag ? tag : "prodml22:PhaseViscosity", -2, this, type)) + if (soap_out_prodml23__PhaseViscosity(soap, tag ? tag : "prodml23:PhaseViscosity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PhaseViscosity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PhaseViscosity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PhaseViscosity(soap, this, tag, type); + return soap_get_prodml23__PhaseViscosity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PhaseViscosity * SOAP_FMAC4 soap_get_prodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PhaseViscosity * SOAP_FMAC4 soap_get_prodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PhaseViscosity(soap, tag, p, type))) + if ((p = soap_in_prodml23__PhaseViscosity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PhaseDensity::soap_default(struct soap *soap) +void prodml23__PhaseDensity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__PhaseDensity::Pressure = NULL; - this->prodml22__PhaseDensity::Density = NULL; - soap_default_eml23__String64(soap, &this->prodml22__PhaseDensity::uid); + this->prodml23__PhaseDensity::Pressure = NULL; + this->prodml23__PhaseDensity::Density = NULL; + soap_default_eml23__String64(soap, &this->prodml23__PhaseDensity::uid); } -void prodml22__PhaseDensity::soap_serialize(struct soap *soap) const +void prodml23__PhaseDensity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__PhaseDensity::Pressure); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__PhaseDensity::Density); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__PhaseDensity::Pressure); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__PhaseDensity::Density); #endif } -int prodml22__PhaseDensity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PhaseDensity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PhaseDensity(soap, tag, id, this, type); + return soap_out_prodml23__PhaseDensity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PhaseDensity(struct soap *soap, const char *tag, int id, const prodml22__PhaseDensity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PhaseDensity(struct soap *soap, const char *tag, int id, const prodml23__PhaseDensity *a, const char *type) { if (!type) - type = "prodml22:PhaseDensity"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__PhaseDensity*)a)->uid), 1); + type = "prodml23:PhaseDensity"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__PhaseDensity*)a)->uid), 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_gsoap_eml2_3_prodml22__PhaseDensity), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity), type)) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__PhaseDensity::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__PhaseDensity::Pressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:Density", -1, &a->prodml22__PhaseDensity::Density, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:Density", -1, &a->prodml23__PhaseDensity::Density, "eml23:MassPerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PhaseDensity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PhaseDensity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PhaseDensity(soap, tag, this, type); + return soap_in_prodml23__PhaseDensity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PhaseDensity * SOAP_FMAC4 soap_in_prodml22__PhaseDensity(struct soap *soap, const char *tag, prodml22__PhaseDensity *a, const char *type) +SOAP_FMAC3 prodml23__PhaseDensity * SOAP_FMAC4 soap_in_prodml23__PhaseDensity(struct soap *soap, const char *tag, prodml23__PhaseDensity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PhaseDensity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, sizeof(prodml22__PhaseDensity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PhaseDensity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, sizeof(prodml23__PhaseDensity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PhaseDensity *)a->soap_in(soap, tag, type); + return (prodml23__PhaseDensity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__PhaseDensity*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__PhaseDensity*)a)->uid)) return NULL; size_t soap_flag_Pressure1 = 1; size_t soap_flag_Density1 = 1; @@ -222979,13 +223092,13 @@ SOAP_FMAC3 prodml22__PhaseDensity * SOAP_FMAC4 soap_in_prodml22__PhaseDensity(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Pressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__PhaseDensity::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__PhaseDensity::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure1--; continue; } } if (soap_flag_Density1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:Density", &a->prodml22__PhaseDensity::Density, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:Density", &a->prodml23__PhaseDensity::Density, "eml23:MassPerVolumeMeasure")) { soap_flag_Density1--; continue; } @@ -223001,35 +223114,35 @@ SOAP_FMAC3 prodml22__PhaseDensity * SOAP_FMAC4 soap_in_prodml22__PhaseDensity(st return NULL; } else - { a = (prodml22__PhaseDensity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, sizeof(prodml22__PhaseDensity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PhaseDensity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, sizeof(prodml23__PhaseDensity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseDensity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml23__PhaseDensity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PhaseDensity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PhaseDensity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PhaseDensity *p; - size_t k = sizeof(prodml22__PhaseDensity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, n, gsoap_eml2_3_fdelete); + prodml23__PhaseDensity *p; + size_t k = sizeof(prodml23__PhaseDensity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PhaseDensity); + { p = SOAP_NEW(soap, prodml23__PhaseDensity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PhaseDensity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PhaseDensity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PhaseDensity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PhaseDensity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -223039,140 +223152,140 @@ SOAP_FMAC1 prodml22__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseD return p; } -int prodml22__PhaseDensity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PhaseDensity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PhaseDensity(soap, tag ? tag : "prodml22:PhaseDensity", -2, this, type)) + if (soap_out_prodml23__PhaseDensity(soap, tag ? tag : "prodml23:PhaseDensity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PhaseDensity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PhaseDensity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PhaseDensity(soap, this, tag, type); + return soap_get_prodml23__PhaseDensity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PhaseDensity * SOAP_FMAC4 soap_get_prodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PhaseDensity * SOAP_FMAC4 soap_get_prodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PhaseDensity(soap, tag, p, type))) + if ((p = soap_in_prodml23__PhaseDensity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OtherMeasurementTestStep::soap_default(struct soap *soap) +void prodml23__OtherMeasurementTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__OtherMeasurementTestStep::StepNumber); - this->prodml22__OtherMeasurementTestStep::StepPressure = NULL; - this->prodml22__OtherMeasurementTestStep::StepTemperature = NULL; - this->prodml22__OtherMeasurementTestStep::OilViscosity = NULL; - this->prodml22__OtherMeasurementTestStep::OilMassDensity = NULL; - this->prodml22__OtherMeasurementTestStep::GasViscosity = NULL; - this->prodml22__OtherMeasurementTestStep::GasGravity = NULL; - this->prodml22__OtherMeasurementTestStep::GasMassDensity = NULL; - this->prodml22__OtherMeasurementTestStep::GasZFactor = NULL; - this->prodml22__OtherMeasurementTestStep::FluidCondition = NULL; - this->prodml22__OtherMeasurementTestStep::WaterContent = NULL; - this->prodml22__OtherMeasurementTestStep::WaterViscosity = NULL; - this->prodml22__OtherMeasurementTestStep::Salinity = NULL; - this->prodml22__OtherMeasurementTestStep::Rsw = NULL; - this->prodml22__OtherMeasurementTestStep::Shear = NULL; - this->prodml22__OtherMeasurementTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__OtherMeasurementTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__OtherMeasurementTestStep::StepNumber); + this->prodml23__OtherMeasurementTestStep::StepPressure = NULL; + this->prodml23__OtherMeasurementTestStep::StepTemperature = NULL; + this->prodml23__OtherMeasurementTestStep::OilViscosity = NULL; + this->prodml23__OtherMeasurementTestStep::OilMassDensity = NULL; + this->prodml23__OtherMeasurementTestStep::GasViscosity = NULL; + this->prodml23__OtherMeasurementTestStep::GasGravity = NULL; + this->prodml23__OtherMeasurementTestStep::GasMassDensity = NULL; + this->prodml23__OtherMeasurementTestStep::GasZFactor = NULL; + this->prodml23__OtherMeasurementTestStep::FluidCondition = NULL; + this->prodml23__OtherMeasurementTestStep::WaterContent = NULL; + this->prodml23__OtherMeasurementTestStep::WaterViscosity = NULL; + this->prodml23__OtherMeasurementTestStep::Salinity = NULL; + this->prodml23__OtherMeasurementTestStep::Rsw = NULL; + this->prodml23__OtherMeasurementTestStep::Shear = NULL; + this->prodml23__OtherMeasurementTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__OtherMeasurementTestStep::uid); } -void prodml22__OtherMeasurementTestStep::soap_serialize(struct soap *soap) const +void prodml23__OtherMeasurementTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OtherMeasurementTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__OtherMeasurementTestStep::StepPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__OtherMeasurementTestStep::StepTemperature); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__OtherMeasurementTestStep::OilViscosity); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__OtherMeasurementTestStep::OilMassDensity); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__OtherMeasurementTestStep::GasViscosity); - soap_serialize_PointerTodouble(soap, &this->prodml22__OtherMeasurementTestStep::GasGravity); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__OtherMeasurementTestStep::GasMassDensity); - soap_serialize_PointerTodouble(soap, &this->prodml22__OtherMeasurementTestStep::GasZFactor); - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, &this->prodml22__OtherMeasurementTestStep::FluidCondition); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__OtherMeasurementTestStep::WaterContent); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__OtherMeasurementTestStep::WaterViscosity); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__OtherMeasurementTestStep::Salinity); - soap_serialize_PointerTodouble(soap, &this->prodml22__OtherMeasurementTestStep::Rsw); - soap_serialize_PointerTodouble(soap, &this->prodml22__OtherMeasurementTestStep::Shear); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__OtherMeasurementTestStep::Remark); + soap_embedded(soap, &this->prodml23__OtherMeasurementTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__OtherMeasurementTestStep::StepPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__OtherMeasurementTestStep::StepTemperature); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__OtherMeasurementTestStep::OilViscosity); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__OtherMeasurementTestStep::OilMassDensity); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__OtherMeasurementTestStep::GasViscosity); + soap_serialize_PointerTodouble(soap, &this->prodml23__OtherMeasurementTestStep::GasGravity); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__OtherMeasurementTestStep::GasMassDensity); + soap_serialize_PointerTodouble(soap, &this->prodml23__OtherMeasurementTestStep::GasZFactor); + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, &this->prodml23__OtherMeasurementTestStep::FluidCondition); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__OtherMeasurementTestStep::WaterContent); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__OtherMeasurementTestStep::WaterViscosity); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__OtherMeasurementTestStep::Salinity); + soap_serialize_PointerTodouble(soap, &this->prodml23__OtherMeasurementTestStep::Rsw); + soap_serialize_PointerTodouble(soap, &this->prodml23__OtherMeasurementTestStep::Shear); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__OtherMeasurementTestStep::Remark); #endif } -int prodml22__OtherMeasurementTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OtherMeasurementTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OtherMeasurementTestStep(soap, tag, id, this, type); + return soap_out_prodml23__OtherMeasurementTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OtherMeasurementTestStep(struct soap *soap, const char *tag, int id, const prodml22__OtherMeasurementTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OtherMeasurementTestStep(struct soap *soap, const char *tag, int id, const prodml23__OtherMeasurementTestStep *a, const char *type) { if (!type) - type = "prodml22:OtherMeasurementTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__OtherMeasurementTestStep*)a)->uid), 1); + type = "prodml23:OtherMeasurementTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__OtherMeasurementTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__OtherMeasurementTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__OtherMeasurementTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__OtherMeasurementTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__OtherMeasurementTestStep::StepPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__OtherMeasurementTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", -1, &a->prodml22__OtherMeasurementTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", -1, &a->prodml23__OtherMeasurementTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", -1, &a->prodml22__OtherMeasurementTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", -1, &a->prodml23__OtherMeasurementTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilMassDensity", -1, &a->prodml22__OtherMeasurementTestStep::OilMassDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilMassDensity", -1, &a->prodml23__OtherMeasurementTestStep::OilMassDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__OtherMeasurementTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__OtherMeasurementTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasGravity", -1, &a->prodml22__OtherMeasurementTestStep::GasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasGravity", -1, &a->prodml23__OtherMeasurementTestStep::GasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasMassDensity", -1, &a->prodml22__OtherMeasurementTestStep::GasMassDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasMassDensity", -1, &a->prodml23__OtherMeasurementTestStep::GasMassDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasZFactor", -1, &a->prodml22__OtherMeasurementTestStep::GasZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasZFactor", -1, &a->prodml23__OtherMeasurementTestStep::GasZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", -1, &a->prodml22__OtherMeasurementTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", -1, &a->prodml23__OtherMeasurementTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:WaterContent", -1, &a->prodml22__OtherMeasurementTestStep::WaterContent, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:WaterContent", -1, &a->prodml23__OtherMeasurementTestStep::WaterContent, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:WaterViscosity", -1, &a->prodml22__OtherMeasurementTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:WaterViscosity", -1, &a->prodml23__OtherMeasurementTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Salinity", -1, &a->prodml22__OtherMeasurementTestStep::Salinity, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Salinity", -1, &a->prodml23__OtherMeasurementTestStep::Salinity, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:Rsw", -1, &a->prodml22__OtherMeasurementTestStep::Rsw, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:Rsw", -1, &a->prodml23__OtherMeasurementTestStep::Rsw, "xsd:double")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:Shear", -1, &a->prodml22__OtherMeasurementTestStep::Shear, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:Shear", -1, &a->prodml23__OtherMeasurementTestStep::Shear, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__OtherMeasurementTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__OtherMeasurementTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OtherMeasurementTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OtherMeasurementTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OtherMeasurementTestStep(soap, tag, this, type); + return soap_in_prodml23__OtherMeasurementTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OtherMeasurementTestStep * SOAP_FMAC4 soap_in_prodml22__OtherMeasurementTestStep(struct soap *soap, const char *tag, prodml22__OtherMeasurementTestStep *a, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTestStep * SOAP_FMAC4 soap_in_prodml23__OtherMeasurementTestStep(struct soap *soap, const char *tag, prodml23__OtherMeasurementTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OtherMeasurementTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, sizeof(prodml22__OtherMeasurementTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OtherMeasurementTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, sizeof(prodml23__OtherMeasurementTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OtherMeasurementTestStep *)a->soap_in(soap, tag, type); + return (prodml23__OtherMeasurementTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__OtherMeasurementTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__OtherMeasurementTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepPressure1 = 1; @@ -223195,97 +223308,97 @@ SOAP_FMAC3 prodml22__OtherMeasurementTestStep * SOAP_FMAC4 soap_in_prodml22__Oth for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__OtherMeasurementTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__OtherMeasurementTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__OtherMeasurementTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__OtherMeasurementTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_StepTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", &a->prodml22__OtherMeasurementTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", &a->prodml23__OtherMeasurementTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StepTemperature1--; continue; } } if (soap_flag_OilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", &a->prodml22__OtherMeasurementTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", &a->prodml23__OtherMeasurementTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_OilViscosity1--; continue; } } if (soap_flag_OilMassDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilMassDensity", &a->prodml22__OtherMeasurementTestStep::OilMassDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilMassDensity", &a->prodml23__OtherMeasurementTestStep::OilMassDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_OilMassDensity1--; continue; } } if (soap_flag_GasViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__OtherMeasurementTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__OtherMeasurementTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity1--; continue; } } if (soap_flag_GasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasGravity", &a->prodml22__OtherMeasurementTestStep::GasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasGravity", &a->prodml23__OtherMeasurementTestStep::GasGravity, "xsd:double")) { soap_flag_GasGravity1--; continue; } } if (soap_flag_GasMassDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasMassDensity", &a->prodml22__OtherMeasurementTestStep::GasMassDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasMassDensity", &a->prodml23__OtherMeasurementTestStep::GasMassDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_GasMassDensity1--; continue; } } if (soap_flag_GasZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasZFactor", &a->prodml22__OtherMeasurementTestStep::GasZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasZFactor", &a->prodml23__OtherMeasurementTestStep::GasZFactor, "xsd:double")) { soap_flag_GasZFactor1--; continue; } } if (soap_flag_FluidCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", &a->prodml22__OtherMeasurementTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + { if (soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", &a->prodml23__OtherMeasurementTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) { soap_flag_FluidCondition1--; continue; } } if (soap_flag_WaterContent1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:WaterContent", &a->prodml22__OtherMeasurementTestStep::WaterContent, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:WaterContent", &a->prodml23__OtherMeasurementTestStep::WaterContent, "eml23:String64")) { soap_flag_WaterContent1--; continue; } } if (soap_flag_WaterViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:WaterViscosity", &a->prodml22__OtherMeasurementTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:WaterViscosity", &a->prodml23__OtherMeasurementTestStep::WaterViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_WaterViscosity1--; continue; } } if (soap_flag_Salinity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Salinity", &a->prodml22__OtherMeasurementTestStep::Salinity, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Salinity", &a->prodml23__OtherMeasurementTestStep::Salinity, "eml23:MassPerMassMeasure")) { soap_flag_Salinity1--; continue; } } if (soap_flag_Rsw1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:Rsw", &a->prodml22__OtherMeasurementTestStep::Rsw, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:Rsw", &a->prodml23__OtherMeasurementTestStep::Rsw, "xsd:double")) { soap_flag_Rsw1--; continue; } } if (soap_flag_Shear1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:Shear", &a->prodml22__OtherMeasurementTestStep::Shear, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:Shear", &a->prodml23__OtherMeasurementTestStep::Shear, "xsd:double")) { soap_flag_Shear1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__OtherMeasurementTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__OtherMeasurementTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -223309,35 +223422,35 @@ SOAP_FMAC3 prodml22__OtherMeasurementTestStep * SOAP_FMAC4 soap_in_prodml22__Oth return NULL; } else - { a = (prodml22__OtherMeasurementTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, sizeof(prodml22__OtherMeasurementTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OtherMeasurementTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, sizeof(prodml23__OtherMeasurementTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prodml22__OtherMeasurementTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prodml23__OtherMeasurementTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OtherMeasurementTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OtherMeasurementTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OtherMeasurementTestStep *p; - size_t k = sizeof(prodml22__OtherMeasurementTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, n, gsoap_eml2_3_fdelete); + prodml23__OtherMeasurementTestStep *p; + size_t k = sizeof(prodml23__OtherMeasurementTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OtherMeasurementTestStep); + { p = SOAP_NEW(soap, prodml23__OtherMeasurementTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OtherMeasurementTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OtherMeasurementTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OtherMeasurementTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OtherMeasurementTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -223347,96 +223460,96 @@ SOAP_FMAC1 prodml22__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__OtherMeasurementTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OtherMeasurementTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OtherMeasurementTestStep(soap, tag ? tag : "prodml22:OtherMeasurementTestStep", -2, this, type)) + if (soap_out_prodml23__OtherMeasurementTestStep(soap, tag ? tag : "prodml23:OtherMeasurementTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OtherMeasurementTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OtherMeasurementTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OtherMeasurementTestStep(soap, this, tag, type); + return soap_get_prodml23__OtherMeasurementTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OtherMeasurementTestStep * SOAP_FMAC4 soap_get_prodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTestStep * SOAP_FMAC4 soap_get_prodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OtherMeasurementTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__OtherMeasurementTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OtherMeasurementTest::soap_default(struct soap *soap) +void prodml23__OtherMeasurementTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__OtherMeasurementTest::TestNumber); - this->prodml22__OtherMeasurementTest::Remark = NULL; - this->prodml22__OtherMeasurementTest::FluidCharacterizationTableFormatSet = NULL; - this->prodml22__OtherMeasurementTest::FluidCharacterizationTable = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap, &this->prodml22__OtherMeasurementTest::OtherMeasurementTestStep); - soap_default_eml23__String64(soap, &this->prodml22__OtherMeasurementTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__OtherMeasurementTest::TestNumber); + this->prodml23__OtherMeasurementTest::Remark = NULL; + this->prodml23__OtherMeasurementTest::FluidCharacterizationTableFormatSet = NULL; + this->prodml23__OtherMeasurementTest::FluidCharacterizationTable = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap, &this->prodml23__OtherMeasurementTest::OtherMeasurementTestStep); + soap_default_eml23__String64(soap, &this->prodml23__OtherMeasurementTest::uid); } -void prodml22__OtherMeasurementTest::soap_serialize(struct soap *soap) const +void prodml23__OtherMeasurementTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__OtherMeasurementTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__OtherMeasurementTest::Remark); - soap_serialize_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, &this->prodml22__OtherMeasurementTest::FluidCharacterizationTableFormatSet); - soap_serialize_PointerToprodml22__FluidCharacterizationTable(soap, &this->prodml22__OtherMeasurementTest::FluidCharacterizationTable); - soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap, &this->prodml22__OtherMeasurementTest::OtherMeasurementTestStep); + soap_embedded(soap, &this->prodml23__OtherMeasurementTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__OtherMeasurementTest::Remark); + soap_serialize_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, &this->prodml23__OtherMeasurementTest::FluidCharacterizationTableFormatSet); + soap_serialize_PointerToprodml23__FluidCharacterizationTable(soap, &this->prodml23__OtherMeasurementTest::FluidCharacterizationTable); + soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap, &this->prodml23__OtherMeasurementTest::OtherMeasurementTestStep); #endif } -int prodml22__OtherMeasurementTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OtherMeasurementTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OtherMeasurementTest(soap, tag, id, this, type); + return soap_out_prodml23__OtherMeasurementTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OtherMeasurementTest(struct soap *soap, const char *tag, int id, const prodml22__OtherMeasurementTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OtherMeasurementTest(struct soap *soap, const char *tag, int id, const prodml23__OtherMeasurementTest *a, const char *type) { if (!type) - type = "prodml22:OtherMeasurementTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__OtherMeasurementTest*)a)->uid), 1); + type = "prodml23:OtherMeasurementTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__OtherMeasurementTest*)a)->uid), 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_gsoap_eml2_3_prodml22__OtherMeasurementTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__OtherMeasurementTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__OtherMeasurementTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__OtherMeasurementTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__OtherMeasurementTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, "prodml22:FluidCharacterizationTableFormatSet", -1, &a->prodml22__OtherMeasurementTest::FluidCharacterizationTableFormatSet, "prodml22:FluidCharacterizationTableFormatSet")) + if (soap_out_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, "prodml23:FluidCharacterizationTableFormatSet", -1, &a->prodml23__OtherMeasurementTest::FluidCharacterizationTableFormatSet, "prodml23:FluidCharacterizationTableFormatSet")) return soap->error; - if (soap_out_PointerToprodml22__FluidCharacterizationTable(soap, "prodml22:FluidCharacterizationTable", -1, &a->prodml22__OtherMeasurementTest::FluidCharacterizationTable, "prodml22:FluidCharacterizationTable")) + if (soap_out_PointerToprodml23__FluidCharacterizationTable(soap, "prodml23:FluidCharacterizationTable", -1, &a->prodml23__OtherMeasurementTest::FluidCharacterizationTable, "prodml23:FluidCharacterizationTable")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap, "prodml22:OtherMeasurementTestStep", -1, &a->prodml22__OtherMeasurementTest::OtherMeasurementTestStep, "prodml22:OtherMeasurementTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap, "prodml23:OtherMeasurementTestStep", -1, &a->prodml23__OtherMeasurementTest::OtherMeasurementTestStep, "prodml23:OtherMeasurementTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OtherMeasurementTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OtherMeasurementTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OtherMeasurementTest(soap, tag, this, type); + return soap_in_prodml23__OtherMeasurementTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OtherMeasurementTest * SOAP_FMAC4 soap_in_prodml22__OtherMeasurementTest(struct soap *soap, const char *tag, prodml22__OtherMeasurementTest *a, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTest * SOAP_FMAC4 soap_in_prodml23__OtherMeasurementTest(struct soap *soap, const char *tag, prodml23__OtherMeasurementTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OtherMeasurementTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, sizeof(prodml22__OtherMeasurementTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OtherMeasurementTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, sizeof(prodml23__OtherMeasurementTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OtherMeasurementTest *)a->soap_in(soap, tag, type); + return (prodml23__OtherMeasurementTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__OtherMeasurementTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__OtherMeasurementTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_Remark1 = 1; @@ -223447,31 +223560,31 @@ SOAP_FMAC3 prodml22__OtherMeasurementTest * SOAP_FMAC4 soap_in_prodml22__OtherMe for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__OtherMeasurementTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__OtherMeasurementTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__OtherMeasurementTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__OtherMeasurementTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_FluidCharacterizationTableFormatSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, "prodml22:FluidCharacterizationTableFormatSet", &a->prodml22__OtherMeasurementTest::FluidCharacterizationTableFormatSet, "prodml22:FluidCharacterizationTableFormatSet")) + { if (soap_in_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, "prodml23:FluidCharacterizationTableFormatSet", &a->prodml23__OtherMeasurementTest::FluidCharacterizationTableFormatSet, "prodml23:FluidCharacterizationTableFormatSet")) { soap_flag_FluidCharacterizationTableFormatSet1--; continue; } } if (soap_flag_FluidCharacterizationTable1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidCharacterizationTable(soap, "prodml22:FluidCharacterizationTable", &a->prodml22__OtherMeasurementTest::FluidCharacterizationTable, "prodml22:FluidCharacterizationTable")) + { if (soap_in_PointerToprodml23__FluidCharacterizationTable(soap, "prodml23:FluidCharacterizationTable", &a->prodml23__OtherMeasurementTest::FluidCharacterizationTable, "prodml23:FluidCharacterizationTable")) { soap_flag_FluidCharacterizationTable1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap, "prodml22:OtherMeasurementTestStep", &a->prodml22__OtherMeasurementTest::OtherMeasurementTestStep, "prodml22:OtherMeasurementTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap, "prodml23:OtherMeasurementTestStep", &a->prodml23__OtherMeasurementTest::OtherMeasurementTestStep, "prodml23:OtherMeasurementTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -223493,35 +223606,35 @@ SOAP_FMAC3 prodml22__OtherMeasurementTest * SOAP_FMAC4 soap_in_prodml22__OtherMe return NULL; } else - { a = (prodml22__OtherMeasurementTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, sizeof(prodml22__OtherMeasurementTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OtherMeasurementTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, sizeof(prodml23__OtherMeasurementTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml22__OtherMeasurementTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml23__OtherMeasurementTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OtherMeasurementTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OtherMeasurementTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OtherMeasurementTest *p; - size_t k = sizeof(prodml22__OtherMeasurementTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, n, gsoap_eml2_3_fdelete); + prodml23__OtherMeasurementTest *p; + size_t k = sizeof(prodml23__OtherMeasurementTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OtherMeasurementTest); + { p = SOAP_NEW(soap, prodml23__OtherMeasurementTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OtherMeasurementTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OtherMeasurementTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OtherMeasurementTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OtherMeasurementTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -223531,80 +223644,80 @@ SOAP_FMAC1 prodml22__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__OtherMeasurementTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OtherMeasurementTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OtherMeasurementTest(soap, tag ? tag : "prodml22:OtherMeasurementTest", -2, this, type)) + if (soap_out_prodml23__OtherMeasurementTest(soap, tag ? tag : "prodml23:OtherMeasurementTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OtherMeasurementTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OtherMeasurementTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OtherMeasurementTest(soap, this, tag, type); + return soap_get_prodml23__OtherMeasurementTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OtherMeasurementTest * SOAP_FMAC4 soap_get_prodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTest * SOAP_FMAC4 soap_get_prodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OtherMeasurementTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__OtherMeasurementTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OilVolume::soap_default(struct soap *soap) +void prodml23__OilVolume::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractOilVolShrinkage::soap_default(soap); - this->prodml22__OilVolume::OilVolume = NULL; + this->prodml23__AbstractOilVolShrinkage::soap_default(soap); + this->prodml23__OilVolume::OilVolume = NULL; } -void prodml22__OilVolume::soap_serialize(struct soap *soap) const +void prodml23__OilVolume::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__OilVolume::OilVolume); - this->prodml22__AbstractOilVolShrinkage::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__OilVolume::OilVolume); + this->prodml23__AbstractOilVolShrinkage::soap_serialize(soap); #endif } -int prodml22__OilVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OilVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OilVolume(soap, tag, id, this, type); + return soap_out_prodml23__OilVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OilVolume(struct soap *soap, const char *tag, int id, const prodml22__OilVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OilVolume(struct soap *soap, const char *tag, int id, const prodml23__OilVolume *a, const char *type) { if (!type) - type = "prodml22:OilVolume"; + type = "prodml23:OilVolume"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume), type ? type : "prodml22:OilVolume")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume), type ? type : "prodml23:OilVolume")) return soap->error; - if (!a->prodml22__OilVolume::OilVolume) - { if (soap_element_empty(soap, "prodml22:OilVolume", 0, NULL)) + if (!a->prodml23__OilVolume::OilVolume) + { if (soap_element_empty(soap, "prodml23:OilVolume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:OilVolume", -1, &a->prodml22__OilVolume::OilVolume, "eml23:VolumeMeasure")) + else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:OilVolume", -1, &a->prodml23__OilVolume::OilVolume, "eml23:VolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OilVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OilVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OilVolume(soap, tag, this, type); + return soap_in_prodml23__OilVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_in_prodml22__OilVolume(struct soap *soap, const char *tag, prodml22__OilVolume *a, const char *type) +SOAP_FMAC3 prodml23__OilVolume * SOAP_FMAC4 soap_in_prodml23__OilVolume(struct soap *soap, const char *tag, prodml23__OilVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OilVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume, sizeof(prodml22__OilVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OilVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume, sizeof(prodml23__OilVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OilVolume *)a->soap_in(soap, tag, type); + return (prodml23__OilVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -223614,7 +223727,7 @@ SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_in_prodml22__OilVolume(struct s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_OilVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:OilVolume", &a->prodml22__OilVolume::OilVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:OilVolume", &a->prodml23__OilVolume::OilVolume, "eml23:VolumeMeasure")) { soap_flag_OilVolume1--; continue; } @@ -223628,7 +223741,7 @@ SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_in_prodml22__OilVolume(struct s } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__OilVolume::OilVolume)) + if ((!a->prodml23__OilVolume::OilVolume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -223638,35 +223751,35 @@ SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_in_prodml22__OilVolume(struct s return NULL; } else - { a = (prodml22__OilVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume, sizeof(prodml22__OilVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OilVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume, sizeof(prodml23__OilVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OilVolume * SOAP_FMAC2 soap_instantiate_prodml22__OilVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OilVolume * SOAP_FMAC2 soap_instantiate_prodml23__OilVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OilVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OilVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OilVolume *p; - size_t k = sizeof(prodml22__OilVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume, n, gsoap_eml2_3_fdelete); + prodml23__OilVolume *p; + size_t k = sizeof(prodml23__OilVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OilVolume); + { p = SOAP_NEW(soap, prodml23__OilVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OilVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OilVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OilVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OilVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -223676,80 +223789,80 @@ SOAP_FMAC1 prodml22__OilVolume * SOAP_FMAC2 soap_instantiate_prodml22__OilVolume return p; } -int prodml22__OilVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OilVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OilVolume(soap, tag ? tag : "prodml22:OilVolume", -2, this, type)) + if (soap_out_prodml23__OilVolume(soap, tag ? tag : "prodml23:OilVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OilVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OilVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OilVolume(soap, this, tag, type); + return soap_get_prodml23__OilVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_get_prodml22__OilVolume(struct soap *soap, prodml22__OilVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OilVolume * SOAP_FMAC4 soap_get_prodml23__OilVolume(struct soap *soap, prodml23__OilVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OilVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__OilVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OilShrinkageFactor::soap_default(struct soap *soap) +void prodml23__OilShrinkageFactor::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractOilVolShrinkage::soap_default(soap); - this->prodml22__OilShrinkageFactor::OilShrinkageFactor = NULL; + this->prodml23__AbstractOilVolShrinkage::soap_default(soap); + this->prodml23__OilShrinkageFactor::OilShrinkageFactor = NULL; } -void prodml22__OilShrinkageFactor::soap_serialize(struct soap *soap) const +void prodml23__OilShrinkageFactor::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__OilShrinkageFactor::OilShrinkageFactor); - this->prodml22__AbstractOilVolShrinkage::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__OilShrinkageFactor::OilShrinkageFactor); + this->prodml23__AbstractOilVolShrinkage::soap_serialize(soap); #endif } -int prodml22__OilShrinkageFactor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OilShrinkageFactor::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OilShrinkageFactor(soap, tag, id, this, type); + return soap_out_prodml23__OilShrinkageFactor(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OilShrinkageFactor(struct soap *soap, const char *tag, int id, const prodml22__OilShrinkageFactor *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OilShrinkageFactor(struct soap *soap, const char *tag, int id, const prodml23__OilShrinkageFactor *a, const char *type) { if (!type) - type = "prodml22:OilShrinkageFactor"; + type = "prodml23:OilShrinkageFactor"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor), type ? type : "prodml22:OilShrinkageFactor")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor), type ? type : "prodml23:OilShrinkageFactor")) return soap->error; - if (!a->prodml22__OilShrinkageFactor::OilShrinkageFactor) - { if (soap_element_empty(soap, "prodml22:OilShrinkageFactor", 0, NULL)) + if (!a->prodml23__OilShrinkageFactor::OilShrinkageFactor) + { if (soap_element_empty(soap, "prodml23:OilShrinkageFactor", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilShrinkageFactor", -1, &a->prodml22__OilShrinkageFactor::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) + else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilShrinkageFactor", -1, &a->prodml23__OilShrinkageFactor::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OilShrinkageFactor::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OilShrinkageFactor::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OilShrinkageFactor(soap, tag, this, type); + return soap_in_prodml23__OilShrinkageFactor(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml22__OilShrinkageFactor(struct soap *soap, const char *tag, prodml22__OilShrinkageFactor *a, const char *type) +SOAP_FMAC3 prodml23__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml23__OilShrinkageFactor(struct soap *soap, const char *tag, prodml23__OilShrinkageFactor *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OilShrinkageFactor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor, sizeof(prodml22__OilShrinkageFactor), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OilShrinkageFactor*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor, sizeof(prodml23__OilShrinkageFactor), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OilShrinkageFactor *)a->soap_in(soap, tag, type); + return (prodml23__OilShrinkageFactor *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -223759,7 +223872,7 @@ SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml22__OilShrink for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_OilShrinkageFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilShrinkageFactor", &a->prodml22__OilShrinkageFactor::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilShrinkageFactor", &a->prodml23__OilShrinkageFactor::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilShrinkageFactor1--; continue; } @@ -223773,7 +223886,7 @@ SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml22__OilShrink } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__OilShrinkageFactor::OilShrinkageFactor)) + if ((!a->prodml23__OilShrinkageFactor::OilShrinkageFactor)) { soap->error = SOAP_OCCURS; return NULL; } @@ -223783,35 +223896,35 @@ SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml22__OilShrink return NULL; } else - { a = (prodml22__OilShrinkageFactor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor, SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor, sizeof(prodml22__OilShrinkageFactor), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OilShrinkageFactor *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor, SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor, sizeof(prodml23__OilShrinkageFactor), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml22__OilShrinkageFactor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml23__OilShrinkageFactor(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OilShrinkageFactor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OilShrinkageFactor(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OilShrinkageFactor *p; - size_t k = sizeof(prodml22__OilShrinkageFactor); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor, n, gsoap_eml2_3_fdelete); + prodml23__OilShrinkageFactor *p; + size_t k = sizeof(prodml23__OilShrinkageFactor); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OilShrinkageFactor); + { p = SOAP_NEW(soap, prodml23__OilShrinkageFactor); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OilShrinkageFactor, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OilShrinkageFactor, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OilShrinkageFactor location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OilShrinkageFactor location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -223821,107 +223934,144 @@ SOAP_FMAC1 prodml22__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__OilShrinkageFactor::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OilShrinkageFactor::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OilShrinkageFactor(soap, tag ? tag : "prodml22:OilShrinkageFactor", -2, this, type)) + if (soap_out_prodml23__OilShrinkageFactor(soap, tag ? tag : "prodml23:OilShrinkageFactor", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OilShrinkageFactor::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OilShrinkageFactor::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OilShrinkageFactor(soap, this, tag, type); + return soap_get_prodml23__OilShrinkageFactor(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_get_prodml22__OilShrinkageFactor(struct soap *soap, prodml22__OilShrinkageFactor *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OilShrinkageFactor * SOAP_FMAC4 soap_get_prodml23__OilShrinkageFactor(struct soap *soap, prodml23__OilShrinkageFactor *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OilShrinkageFactor(soap, tag, p, type))) + if ((p = soap_in_prodml23__OilShrinkageFactor(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OilCompressibility::soap_default(struct soap *soap) +void prodml23__OilCompressibility::soap_default(struct soap *soap) { this->soap = soap; - this->eml23__ReciprocalPressureMeasure::soap_default(soap); - soap_default_prodml22__CompressibilityKind(soap, &this->prodml22__OilCompressibility::kind); + this->prodml23__OilCompressibility::ReciprocalPressureMeasure = NULL; + soap_default_prodml23__CompressibilityKind(soap, &this->prodml23__OilCompressibility::kind); } -void prodml22__OilCompressibility::soap_serialize(struct soap *soap) const +void prodml23__OilCompressibility::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->eml23__ReciprocalPressureMeasure::soap_serialize(soap); + soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml23__OilCompressibility::ReciprocalPressureMeasure); #endif } -int prodml22__OilCompressibility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OilCompressibility::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OilCompressibility(soap, tag, id, this, type); + return soap_out_prodml23__OilCompressibility(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OilCompressibility(struct soap *soap, const char *tag, int id, const prodml22__OilCompressibility *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OilCompressibility(struct soap *soap, const char *tag, int id, const prodml23__OilCompressibility *a, const char *type) { if (!type) - type = "prodml22:OilCompressibility"; - soap_set_attr(soap, "kind", soap_prodml22__CompressibilityKind2s(soap, ((prodml22__OilCompressibility*)a)->kind), 1); - soap_set_attr(soap, "uom", soap_eml23__ReciprocalPressureUom2s(soap, ((eml23__ReciprocalPressureMeasure*)a)->uom), 1); + type = "prodml23:OilCompressibility"; + soap_set_attr(soap, "kind", soap_prodml23__CompressibilityKind2s(soap, ((prodml23__OilCompressibility*)a)->kind), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->eml23__ReciprocalPressureMeasure::__item, "prodml22:OilCompressibility"); + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility), type)) + return soap->error; + if (!a->prodml23__OilCompressibility::ReciprocalPressureMeasure) + { if (soap_element_empty(soap, "prodml23:ReciprocalPressureMeasure", 0, NULL)) + return soap->error; + } + else if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:ReciprocalPressureMeasure", -1, &a->prodml23__OilCompressibility::ReciprocalPressureMeasure, "eml23:ReciprocalPressureMeasure")) + return soap->error; + return soap_element_end_out(soap, tag); } -void *prodml22__OilCompressibility::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OilCompressibility::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OilCompressibility(soap, tag, this, type); + return soap_in_prodml23__OilCompressibility(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OilCompressibility * SOAP_FMAC4 soap_in_prodml22__OilCompressibility(struct soap *soap, const char *tag, prodml22__OilCompressibility *a, const char *type) +SOAP_FMAC3 prodml23__OilCompressibility * SOAP_FMAC4 soap_in_prodml23__OilCompressibility(struct soap *soap, const char *tag, prodml23__OilCompressibility *a, const char *type) { (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_in(soap, tag, 1, NULL)) + if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - if (!(a = (prodml22__OilCompressibility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility, sizeof(prodml22__OilCompressibility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) - { soap->error = SOAP_TAG_MISMATCH; + a = (prodml23__OilCompressibility*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility, sizeof(prodml23__OilCompressibility), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + if (!a) return NULL; + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility) + { soap_revert(soap); + *soap->id = '\0'; + return (prodml23__OilCompressibility *)a->soap_in(soap, tag, type); } - soap_revert(soap); - *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility) - return (prodml22__OilCompressibility *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__CompressibilityKind(soap, soap_attr_value(soap, "kind", 5, 3), &((prodml22__OilCompressibility*)a)->kind)) - return NULL; - if (soap_s2eml23__ReciprocalPressureUom(soap, soap_attr_value(soap, "uom", 5, 3), &((eml23__ReciprocalPressureMeasure*)a)->uom)) + if (soap_s2prodml23__CompressibilityKind(soap, soap_attr_value(soap, "kind", 5, 3), &((prodml23__OilCompressibility*)a)->kind)) return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->eml23__ReciprocalPressureMeasure::__item, "prodml22:OilCompressibility")) + size_t soap_flag_ReciprocalPressureMeasure1 = 1; + if (soap->body && *soap->href != '#') + { + for (;;) + { soap->error = SOAP_TAG_MISMATCH; + if (soap_flag_ReciprocalPressureMeasure1 && soap->error == SOAP_TAG_MISMATCH) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:ReciprocalPressureMeasure", &a->prodml23__OilCompressibility::ReciprocalPressureMeasure, "eml23:ReciprocalPressureMeasure")) + { soap_flag_ReciprocalPressureMeasure1--; + continue; + } + } + if (soap->error == SOAP_TAG_MISMATCH) + soap->error = soap_ignore_element(soap); + if (soap->error == SOAP_NO_TAG) + break; + if (soap->error) + return NULL; + } + if (soap_element_end_in(soap, tag)) + return NULL; + if ((!a->prodml23__OilCompressibility::ReciprocalPressureMeasure)) + { soap->error = SOAP_OCCURS; + return NULL; + } + } + else if (*soap->href != '#') + { soap->error = SOAP_OCCURS; return NULL; + } + else + { a = (prodml23__OilCompressibility *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility, sizeof(prodml23__OilCompressibility), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + if (soap->body && soap_element_end_in(soap, tag)) + return NULL; + } return a; } -SOAP_FMAC1 prodml22__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__OilCompressibility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml23__OilCompressibility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OilCompressibility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OilCompressibility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OilCompressibility *p; - size_t k = sizeof(prodml22__OilCompressibility); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility, n, gsoap_eml2_3_fdelete); + prodml23__OilCompressibility *p; + size_t k = sizeof(prodml23__OilCompressibility); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OilCompressibility); + { p = SOAP_NEW(soap, prodml23__OilCompressibility); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OilCompressibility, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OilCompressibility, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OilCompressibility location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OilCompressibility location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -223931,122 +224081,122 @@ SOAP_FMAC1 prodml22__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__OilCompressibility::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OilCompressibility::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OilCompressibility(soap, tag ? tag : "prodml22:OilCompressibility", -2, this, type)) + if (soap_out_prodml23__OilCompressibility(soap, tag ? tag : "prodml23:OilCompressibility", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OilCompressibility::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OilCompressibility::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OilCompressibility(soap, this, tag, type); + return soap_get_prodml23__OilCompressibility(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OilCompressibility * SOAP_FMAC4 soap_get_prodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OilCompressibility * SOAP_FMAC4 soap_get_prodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OilCompressibility(soap, tag, p, type))) + if ((p = soap_in_prodml23__OilCompressibility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NonHydrocarbonTest::soap_default(struct soap *soap) +void prodml23__NonHydrocarbonTest::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NonHydrocarbonTest::TestNumber = NULL; - this->prodml22__NonHydrocarbonTest::TestTime = NULL; - this->prodml22__NonHydrocarbonTest::TestVolume = NULL; - this->prodml22__NonHydrocarbonTest::PhasesTested = NULL; - this->prodml22__NonHydrocarbonTest::TestTemperature = NULL; - this->prodml22__NonHydrocarbonTest::TestPressure = NULL; - this->prodml22__NonHydrocarbonTest::AnalysisMethod = NULL; - this->prodml22__NonHydrocarbonTest::SamplingPoint = NULL; - this->prodml22__NonHydrocarbonTest::CellId = NULL; - this->prodml22__NonHydrocarbonTest::InstrumentId = NULL; - this->prodml22__NonHydrocarbonTest::NonHydrocarbonConcentrations = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, &this->prodml22__NonHydrocarbonTest::OtherMeasuredProperties); - this->prodml22__NonHydrocarbonTest::Remark = NULL; + this->prodml23__NonHydrocarbonTest::TestNumber = NULL; + this->prodml23__NonHydrocarbonTest::TestTime = NULL; + this->prodml23__NonHydrocarbonTest::TestVolume = NULL; + this->prodml23__NonHydrocarbonTest::PhasesTested = NULL; + this->prodml23__NonHydrocarbonTest::TestTemperature = NULL; + this->prodml23__NonHydrocarbonTest::TestPressure = NULL; + this->prodml23__NonHydrocarbonTest::AnalysisMethod = NULL; + this->prodml23__NonHydrocarbonTest::SamplingPoint = NULL; + this->prodml23__NonHydrocarbonTest::CellId = NULL; + this->prodml23__NonHydrocarbonTest::InstrumentId = NULL; + this->prodml23__NonHydrocarbonTest::NonHydrocarbonConcentrations = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, &this->prodml23__NonHydrocarbonTest::OtherMeasuredProperties); + this->prodml23__NonHydrocarbonTest::Remark = NULL; } -void prodml22__NonHydrocarbonTest::soap_serialize(struct soap *soap) const +void prodml23__NonHydrocarbonTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml22__NonHydrocarbonTest::TestNumber); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__NonHydrocarbonTest::TestTime); - soap_serialize_PointerToeml23__VolumeMeasureExt(soap, &this->prodml22__NonHydrocarbonTest::TestVolume); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__NonHydrocarbonTest::PhasesTested); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__NonHydrocarbonTest::TestTemperature); - soap_serialize_PointerToeml23__PressureMeasureExt(soap, &this->prodml22__NonHydrocarbonTest::TestPressure); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__NonHydrocarbonTest::AnalysisMethod); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__NonHydrocarbonTest::SamplingPoint); - soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml22__NonHydrocarbonTest::CellId); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__NonHydrocarbonTest::InstrumentId); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__NonHydrocarbonTest::NonHydrocarbonConcentrations); - soap_serialize_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, &this->prodml22__NonHydrocarbonTest::OtherMeasuredProperties); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__NonHydrocarbonTest::Remark); + soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml23__NonHydrocarbonTest::TestNumber); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__NonHydrocarbonTest::TestTime); + soap_serialize_PointerToeml23__VolumeMeasureExt(soap, &this->prodml23__NonHydrocarbonTest::TestVolume); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__NonHydrocarbonTest::PhasesTested); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__NonHydrocarbonTest::TestTemperature); + soap_serialize_PointerToeml23__PressureMeasureExt(soap, &this->prodml23__NonHydrocarbonTest::TestPressure); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__NonHydrocarbonTest::AnalysisMethod); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__NonHydrocarbonTest::SamplingPoint); + soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml23__NonHydrocarbonTest::CellId); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__NonHydrocarbonTest::InstrumentId); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__NonHydrocarbonTest::NonHydrocarbonConcentrations); + soap_serialize_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, &this->prodml23__NonHydrocarbonTest::OtherMeasuredProperties); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__NonHydrocarbonTest::Remark); #endif } -int prodml22__NonHydrocarbonTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NonHydrocarbonTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NonHydrocarbonTest(soap, tag, id, this, type); + return soap_out_prodml23__NonHydrocarbonTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonHydrocarbonTest(struct soap *soap, const char *tag, int id, const prodml22__NonHydrocarbonTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NonHydrocarbonTest(struct soap *soap, const char *tag, int id, const prodml23__NonHydrocarbonTest *a, const char *type) { if (!type) - type = "prodml22:NonHydrocarbonTest"; + type = "prodml23:NonHydrocarbonTest"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest), type)) return soap->error; - if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__NonHydrocarbonTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__NonHydrocarbonTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:TestTime", -1, &a->prodml22__NonHydrocarbonTest::TestTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:TestTime", -1, &a->prodml23__NonHydrocarbonTest::TestTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasureExt(soap, "prodml22:TestVolume", -1, &a->prodml22__NonHydrocarbonTest::TestVolume, "eml23:VolumeMeasureExt")) + if (soap_out_PointerToeml23__VolumeMeasureExt(soap, "prodml23:TestVolume", -1, &a->prodml23__NonHydrocarbonTest::TestVolume, "eml23:VolumeMeasureExt")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesTested", -1, &a->prodml22__NonHydrocarbonTest::PhasesTested, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesTested", -1, &a->prodml23__NonHydrocarbonTest::PhasesTested, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__NonHydrocarbonTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__NonHydrocarbonTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasureExt(soap, "prodml22:TestPressure", -1, &a->prodml22__NonHydrocarbonTest::TestPressure, "eml23:PressureMeasureExt")) + if (soap_out_PointerToeml23__PressureMeasureExt(soap, "prodml23:TestPressure", -1, &a->prodml23__NonHydrocarbonTest::TestPressure, "eml23:PressureMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisMethod", -1, &a->prodml22__NonHydrocarbonTest::AnalysisMethod, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisMethod", -1, &a->prodml23__NonHydrocarbonTest::AnalysisMethod, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:SamplingPoint", -1, &a->prodml22__NonHydrocarbonTest::SamplingPoint, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:SamplingPoint", -1, &a->prodml23__NonHydrocarbonTest::SamplingPoint, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml22:CellId", -1, &a->prodml22__NonHydrocarbonTest::CellId, "eml23:NonNegativeLong")) + if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml23:CellId", -1, &a->prodml23__NonHydrocarbonTest::CellId, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:InstrumentId", -1, &a->prodml22__NonHydrocarbonTest::InstrumentId, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:InstrumentId", -1, &a->prodml23__NonHydrocarbonTest::InstrumentId, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:NonHydrocarbonConcentrations", -1, &a->prodml22__NonHydrocarbonTest::NonHydrocarbonConcentrations, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:NonHydrocarbonConcentrations", -1, &a->prodml23__NonHydrocarbonTest::NonHydrocarbonConcentrations, "prodml23:OverallComposition")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "prodml22:OtherMeasuredProperties", -1, &a->prodml22__NonHydrocarbonTest::OtherMeasuredProperties, "eml23:ExtensionNameValue")) + if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "prodml23:OtherMeasuredProperties", -1, &a->prodml23__NonHydrocarbonTest::OtherMeasuredProperties, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__NonHydrocarbonTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__NonHydrocarbonTest::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NonHydrocarbonTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NonHydrocarbonTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NonHydrocarbonTest(soap, tag, this, type); + return soap_in_prodml23__NonHydrocarbonTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NonHydrocarbonTest * SOAP_FMAC4 soap_in_prodml22__NonHydrocarbonTest(struct soap *soap, const char *tag, prodml22__NonHydrocarbonTest *a, const char *type) +SOAP_FMAC3 prodml23__NonHydrocarbonTest * SOAP_FMAC4 soap_in_prodml23__NonHydrocarbonTest(struct soap *soap, const char *tag, prodml23__NonHydrocarbonTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NonHydrocarbonTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, sizeof(prodml22__NonHydrocarbonTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NonHydrocarbonTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, sizeof(prodml23__NonHydrocarbonTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NonHydrocarbonTest *)a->soap_in(soap, tag, type); + return (prodml23__NonHydrocarbonTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -224067,77 +224217,77 @@ SOAP_FMAC3 prodml22__NonHydrocarbonTest * SOAP_FMAC4 soap_in_prodml22__NonHydroc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__NonHydrocarbonTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__NonHydrocarbonTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:TestTime", &a->prodml22__NonHydrocarbonTest::TestTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:TestTime", &a->prodml23__NonHydrocarbonTest::TestTime, "eml23:TimeStamp")) { soap_flag_TestTime1--; continue; } } if (soap_flag_TestVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasureExt(soap, "prodml22:TestVolume", &a->prodml22__NonHydrocarbonTest::TestVolume, "eml23:VolumeMeasureExt")) + { if (soap_in_PointerToeml23__VolumeMeasureExt(soap, "prodml23:TestVolume", &a->prodml23__NonHydrocarbonTest::TestVolume, "eml23:VolumeMeasureExt")) { soap_flag_TestVolume1--; continue; } } if (soap_flag_PhasesTested1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesTested", &a->prodml22__NonHydrocarbonTest::PhasesTested, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesTested", &a->prodml23__NonHydrocarbonTest::PhasesTested, "prodml23:PhasePresent")) { soap_flag_PhasesTested1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__NonHydrocarbonTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__NonHydrocarbonTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_TestPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasureExt(soap, "prodml22:TestPressure", &a->prodml22__NonHydrocarbonTest::TestPressure, "eml23:PressureMeasureExt")) + { if (soap_in_PointerToeml23__PressureMeasureExt(soap, "prodml23:TestPressure", &a->prodml23__NonHydrocarbonTest::TestPressure, "eml23:PressureMeasureExt")) { soap_flag_TestPressure1--; continue; } } if (soap_flag_AnalysisMethod1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisMethod", &a->prodml22__NonHydrocarbonTest::AnalysisMethod, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisMethod", &a->prodml23__NonHydrocarbonTest::AnalysisMethod, "eml23:String2000")) { soap_flag_AnalysisMethod1--; continue; } } if (soap_flag_SamplingPoint1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:SamplingPoint", &a->prodml22__NonHydrocarbonTest::SamplingPoint, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:SamplingPoint", &a->prodml23__NonHydrocarbonTest::SamplingPoint, "eml23:String2000")) { soap_flag_SamplingPoint1--; continue; } } if (soap_flag_CellId1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml22:CellId", &a->prodml22__NonHydrocarbonTest::CellId, "eml23:NonNegativeLong")) + { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml23:CellId", &a->prodml23__NonHydrocarbonTest::CellId, "eml23:NonNegativeLong")) { soap_flag_CellId1--; continue; } } if (soap_flag_InstrumentId1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:InstrumentId", &a->prodml22__NonHydrocarbonTest::InstrumentId, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:InstrumentId", &a->prodml23__NonHydrocarbonTest::InstrumentId, "eml23:String2000")) { soap_flag_InstrumentId1--; continue; } } if (soap_flag_NonHydrocarbonConcentrations1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:NonHydrocarbonConcentrations", &a->prodml22__NonHydrocarbonTest::NonHydrocarbonConcentrations, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:NonHydrocarbonConcentrations", &a->prodml23__NonHydrocarbonTest::NonHydrocarbonConcentrations, "prodml23:OverallComposition")) { soap_flag_NonHydrocarbonConcentrations1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "prodml22:OtherMeasuredProperties", &a->prodml22__NonHydrocarbonTest::OtherMeasuredProperties, "eml23:ExtensionNameValue")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "prodml23:OtherMeasuredProperties", &a->prodml23__NonHydrocarbonTest::OtherMeasuredProperties, "eml23:ExtensionNameValue")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__NonHydrocarbonTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__NonHydrocarbonTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -224153,35 +224303,35 @@ SOAP_FMAC3 prodml22__NonHydrocarbonTest * SOAP_FMAC4 soap_in_prodml22__NonHydroc return NULL; } else - { a = (prodml22__NonHydrocarbonTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, sizeof(prodml22__NonHydrocarbonTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NonHydrocarbonTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, sizeof(prodml23__NonHydrocarbonTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml22__NonHydrocarbonTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml23__NonHydrocarbonTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NonHydrocarbonTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NonHydrocarbonTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NonHydrocarbonTest *p; - size_t k = sizeof(prodml22__NonHydrocarbonTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, n, gsoap_eml2_3_fdelete); + prodml23__NonHydrocarbonTest *p; + size_t k = sizeof(prodml23__NonHydrocarbonTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NonHydrocarbonTest); + { p = SOAP_NEW(soap, prodml23__NonHydrocarbonTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NonHydrocarbonTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NonHydrocarbonTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NonHydrocarbonTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NonHydrocarbonTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -224191,62 +224341,62 @@ SOAP_FMAC1 prodml22__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__NonHydrocarbonTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NonHydrocarbonTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NonHydrocarbonTest(soap, tag ? tag : "prodml22:NonHydrocarbonTest", -2, this, type)) + if (soap_out_prodml23__NonHydrocarbonTest(soap, tag ? tag : "prodml23:NonHydrocarbonTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NonHydrocarbonTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NonHydrocarbonTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NonHydrocarbonTest(soap, this, tag, type); + return soap_get_prodml23__NonHydrocarbonTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NonHydrocarbonTest * SOAP_FMAC4 soap_get_prodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NonHydrocarbonTest * SOAP_FMAC4 soap_get_prodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NonHydrocarbonTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__NonHydrocarbonTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NonHydrocarbonAnalysis::soap_default(struct soap *soap) +void prodml23__NonHydrocarbonAnalysis::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidAnalysis::soap_default(soap); - this->prodml22__NonHydrocarbonAnalysis::FluidSample = NULL; - this->prodml22__NonHydrocarbonAnalysis::FlowTestActivity = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap, &this->prodml22__NonHydrocarbonAnalysis::NonHydrocarbonTest); + this->prodml23__FluidAnalysis::soap_default(soap); + this->prodml23__NonHydrocarbonAnalysis::FluidSample = NULL; + this->prodml23__NonHydrocarbonAnalysis::FlowTestActivity = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap, &this->prodml23__NonHydrocarbonAnalysis::NonHydrocarbonTest); } -void prodml22__NonHydrocarbonAnalysis::soap_serialize(struct soap *soap) const +void prodml23__NonHydrocarbonAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__NonHydrocarbonAnalysis::FluidSample); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__NonHydrocarbonAnalysis::FlowTestActivity); - soap_serialize_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap, &this->prodml22__NonHydrocarbonAnalysis::NonHydrocarbonTest); - this->prodml22__FluidAnalysis::soap_serialize(soap); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__NonHydrocarbonAnalysis::FluidSample); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__NonHydrocarbonAnalysis::FlowTestActivity); + soap_serialize_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap, &this->prodml23__NonHydrocarbonAnalysis::NonHydrocarbonTest); + this->prodml23__FluidAnalysis::soap_serialize(soap); #endif } -int prodml22__NonHydrocarbonAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NonHydrocarbonAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NonHydrocarbonAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__NonHydrocarbonAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonHydrocarbonAnalysis(struct soap *soap, const char *tag, int id, const prodml22__NonHydrocarbonAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NonHydrocarbonAnalysis(struct soap *soap, const char *tag, int id, const prodml23__NonHydrocarbonAnalysis *a, const char *type) { if (!type) - type = "prodml22:NonHydrocarbonAnalysis"; + type = "prodml23:NonHydrocarbonAnalysis"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis), type ? type : "prodml22:NonHydrocarbonAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis), type ? type : "prodml23:NonHydrocarbonAnalysis")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -224268,64 +224418,64 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonHydrocarbonAnalysis(struct soap return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:RequestDate", -1, &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:RequestDate", -1, &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Client", -1, &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Client", -1, &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", -1, &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", -1, &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", -1, &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", -1, &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", -1, &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", -1, &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", -1, &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", -1, &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidAnalysis::StandardConditions) - { if (soap_element_empty(soap, "prodml22:StandardConditions", 0, NULL)) + if (!a->prodml23__FluidAnalysis::StandardConditions) + { if (soap_element_empty(soap, "prodml23:StandardConditions", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", -1, &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", -1, &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) return soap->error; - if (soap_out_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", -1, &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + if (soap_out_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", -1, &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) return soap->error; - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", -1, &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", -1, &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", -1, &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", -1, &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", -1, &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", -1, &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__NonHydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__NonHydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", -1, &a->prodml22__NonHydrocarbonAnalysis::FlowTestActivity, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", -1, &a->prodml23__NonHydrocarbonAnalysis::FlowTestActivity, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap, "prodml22:NonHydrocarbonTest", -1, &a->prodml22__NonHydrocarbonAnalysis::NonHydrocarbonTest, "prodml22:NonHydrocarbonTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap, "prodml23:NonHydrocarbonTest", -1, &a->prodml23__NonHydrocarbonAnalysis::NonHydrocarbonTest, "prodml23:NonHydrocarbonTest")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NonHydrocarbonAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NonHydrocarbonAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NonHydrocarbonAnalysis(soap, tag, this, type); + return soap_in_prodml23__NonHydrocarbonAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__NonHydrocarbonAnalysis(struct soap *soap, const char *tag, prodml22__NonHydrocarbonAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml23__NonHydrocarbonAnalysis(struct soap *soap, const char *tag, prodml23__NonHydrocarbonAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NonHydrocarbonAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis, sizeof(prodml22__NonHydrocarbonAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NonHydrocarbonAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis, sizeof(prodml23__NonHydrocarbonAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NonHydrocarbonAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__NonHydrocarbonAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -224411,99 +224561,99 @@ SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__NonHy continue; } if (soap_flag_RequestDate2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:RequestDate", &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:RequestDate", &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) { soap_flag_RequestDate2--; continue; } } if (soap_flag_Client2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Client", &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Client", &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) { soap_flag_Client2--; continue; } } if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AnalysisDescription2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) { soap_flag_AnalysisDescription2--; continue; } } if (soap_flag_AnalysisPurpose2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) { soap_flag_AnalysisPurpose2--; continue; } } if (soap_flag_AnalysisSite2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) { soap_flag_AnalysisSite2--; continue; } } if (soap_flag_LabContact2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) { soap_flag_LabContact2--; continue; } } if (soap_flag_StandardConditions2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) { soap_flag_StandardConditions2--; continue; } } if (soap_flag_AnalysisQuality2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + { if (soap_in_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) { soap_flag_AnalysisQuality2--; continue; } } if (soap_flag_FluidComponentCatalog2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + { if (soap_in_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) { soap_flag_FluidComponentCatalog2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) continue; } if (soap_flag_FluidSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__NonHydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__NonHydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample1--; continue; } } if (soap_flag_FlowTestActivity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FlowTestActivity", &a->prodml22__NonHydrocarbonAnalysis::FlowTestActivity, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FlowTestActivity", &a->prodml23__NonHydrocarbonAnalysis::FlowTestActivity, "eml23:DataObjectReference")) { soap_flag_FlowTestActivity1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap, "prodml22:NonHydrocarbonTest", &a->prodml22__NonHydrocarbonAnalysis::NonHydrocarbonTest, "prodml22:NonHydrocarbonTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap, "prodml23:NonHydrocarbonTest", &a->prodml23__NonHydrocarbonAnalysis::NonHydrocarbonTest, "prodml23:NonHydrocarbonTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -224515,7 +224665,7 @@ SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__NonHy } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality2 > 0)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality2 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -224525,35 +224675,35 @@ SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__NonHy return NULL; } else - { a = (prodml22__NonHydrocarbonAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis, sizeof(prodml22__NonHydrocarbonAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NonHydrocarbonAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis, sizeof(prodml23__NonHydrocarbonAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__NonHydrocarbonAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__NonHydrocarbonAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NonHydrocarbonAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NonHydrocarbonAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NonHydrocarbonAnalysis *p; - size_t k = sizeof(prodml22__NonHydrocarbonAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__NonHydrocarbonAnalysis *p; + size_t k = sizeof(prodml23__NonHydrocarbonAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NonHydrocarbonAnalysis); + { p = SOAP_NEW(soap, prodml23__NonHydrocarbonAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NonHydrocarbonAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NonHydrocarbonAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NonHydrocarbonAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NonHydrocarbonAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -224563,88 +224713,88 @@ SOAP_FMAC1 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__NonHydrocarbonAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NonHydrocarbonAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NonHydrocarbonAnalysis(soap, tag ? tag : "prodml22:NonHydrocarbonAnalysis", -2, this, type)) + if (soap_out_prodml23__NonHydrocarbonAnalysis(soap, tag ? tag : "prodml23:NonHydrocarbonAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NonHydrocarbonAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NonHydrocarbonAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NonHydrocarbonAnalysis(soap, this, tag, type); + return soap_get_prodml23__NonHydrocarbonAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml22__NonHydrocarbonAnalysis(struct soap *soap, prodml22__NonHydrocarbonAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml23__NonHydrocarbonAnalysis(struct soap *soap, prodml23__NonHydrocarbonAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NonHydrocarbonAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__NonHydrocarbonAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MultipleContactMiscibilityTest::soap_default(struct soap *soap) +void prodml23__MultipleContactMiscibilityTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__MultipleContactMiscibilityTest::TestNumber); - this->prodml22__MultipleContactMiscibilityTest::GasSolventCompositionReference = NULL; - this->prodml22__MultipleContactMiscibilityTest::MixRatio = NULL; - soap_default_eml23__String64(soap, &this->prodml22__MultipleContactMiscibilityTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__MultipleContactMiscibilityTest::TestNumber); + this->prodml23__MultipleContactMiscibilityTest::GasSolventCompositionReference = NULL; + this->prodml23__MultipleContactMiscibilityTest::MixRatio = NULL; + soap_default_eml23__String64(soap, &this->prodml23__MultipleContactMiscibilityTest::uid); } -void prodml22__MultipleContactMiscibilityTest::soap_serialize(struct soap *soap) const +void prodml23__MultipleContactMiscibilityTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__MultipleContactMiscibilityTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__MultipleContactMiscibilityTest::GasSolventCompositionReference); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__MultipleContactMiscibilityTest::MixRatio); + soap_embedded(soap, &this->prodml23__MultipleContactMiscibilityTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__MultipleContactMiscibilityTest::GasSolventCompositionReference); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__MultipleContactMiscibilityTest::MixRatio); #endif } -int prodml22__MultipleContactMiscibilityTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MultipleContactMiscibilityTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MultipleContactMiscibilityTest(soap, tag, id, this, type); + return soap_out_prodml23__MultipleContactMiscibilityTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, int id, const prodml22__MultipleContactMiscibilityTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, int id, const prodml23__MultipleContactMiscibilityTest *a, const char *type) { if (!type) - type = "prodml22:MultipleContactMiscibilityTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__MultipleContactMiscibilityTest*)a)->uid), 1); + type = "prodml23:MultipleContactMiscibilityTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__MultipleContactMiscibilityTest*)a)->uid), 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_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__MultipleContactMiscibilityTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__MultipleContactMiscibilityTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:GasSolventCompositionReference", -1, &a->prodml22__MultipleContactMiscibilityTest::GasSolventCompositionReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:GasSolventCompositionReference", -1, &a->prodml23__MultipleContactMiscibilityTest::GasSolventCompositionReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:MixRatio", -1, &a->prodml22__MultipleContactMiscibilityTest::MixRatio, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:MixRatio", -1, &a->prodml23__MultipleContactMiscibilityTest::MixRatio, "eml23:DimensionlessMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MultipleContactMiscibilityTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MultipleContactMiscibilityTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MultipleContactMiscibilityTest(soap, tag, this, type); + return soap_in_prodml23__MultipleContactMiscibilityTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_in_prodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, prodml22__MultipleContactMiscibilityTest *a, const char *type) +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_in_prodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, prodml23__MultipleContactMiscibilityTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MultipleContactMiscibilityTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, sizeof(prodml22__MultipleContactMiscibilityTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MultipleContactMiscibilityTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, sizeof(prodml23__MultipleContactMiscibilityTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MultipleContactMiscibilityTest *)a->soap_in(soap, tag, type); + return (prodml23__MultipleContactMiscibilityTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__MultipleContactMiscibilityTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__MultipleContactMiscibilityTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_GasSolventCompositionReference1 = 1; @@ -224654,19 +224804,19 @@ SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_in_prodml2 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__MultipleContactMiscibilityTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__MultipleContactMiscibilityTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_GasSolventCompositionReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:GasSolventCompositionReference", &a->prodml22__MultipleContactMiscibilityTest::GasSolventCompositionReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:GasSolventCompositionReference", &a->prodml23__MultipleContactMiscibilityTest::GasSolventCompositionReference, "eml23:String64")) { soap_flag_GasSolventCompositionReference1--; continue; } } if (soap_flag_MixRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:MixRatio", &a->prodml22__MultipleContactMiscibilityTest::MixRatio, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:MixRatio", &a->prodml23__MultipleContactMiscibilityTest::MixRatio, "eml23:DimensionlessMeasure")) { soap_flag_MixRatio1--; continue; } @@ -224690,35 +224840,35 @@ SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__MultipleContactMiscibilityTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, sizeof(prodml22__MultipleContactMiscibilityTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MultipleContactMiscibilityTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, sizeof(prodml23__MultipleContactMiscibilityTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiate_prodml22__MultipleContactMiscibilityTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiate_prodml23__MultipleContactMiscibilityTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MultipleContactMiscibilityTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MultipleContactMiscibilityTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MultipleContactMiscibilityTest *p; - size_t k = sizeof(prodml22__MultipleContactMiscibilityTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, n, gsoap_eml2_3_fdelete); + prodml23__MultipleContactMiscibilityTest *p; + size_t k = sizeof(prodml23__MultipleContactMiscibilityTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MultipleContactMiscibilityTest); + { p = SOAP_NEW(soap, prodml23__MultipleContactMiscibilityTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MultipleContactMiscibilityTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MultipleContactMiscibilityTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MultipleContactMiscibilityTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MultipleContactMiscibilityTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -224728,90 +224878,90 @@ SOAP_FMAC1 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__MultipleContactMiscibilityTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MultipleContactMiscibilityTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MultipleContactMiscibilityTest(soap, tag ? tag : "prodml22:MultipleContactMiscibilityTest", -2, this, type)) + if (soap_out_prodml23__MultipleContactMiscibilityTest(soap, tag ? tag : "prodml23:MultipleContactMiscibilityTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MultipleContactMiscibilityTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MultipleContactMiscibilityTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MultipleContactMiscibilityTest(soap, this, tag, type); + return soap_get_prodml23__MultipleContactMiscibilityTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_get_prodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_get_prodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MultipleContactMiscibilityTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__MultipleContactMiscibilityTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MassOut::soap_default(struct soap *soap) +void prodml23__MassOut::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__MassOut::MassEffluentStockTankOil = NULL; - this->prodml22__MassOut::MassProducedEffluentGas = NULL; - this->prodml22__MassOut::MassResidualOil = NULL; - this->prodml22__MassOut::MassProducedEffluentGasFlowDown = NULL; - this->prodml22__MassOut::TotalMassOut = NULL; + this->prodml23__MassOut::MassEffluentStockTankOil = NULL; + this->prodml23__MassOut::MassProducedEffluentGas = NULL; + this->prodml23__MassOut::MassResidualOil = NULL; + this->prodml23__MassOut::MassProducedEffluentGasFlowDown = NULL; + this->prodml23__MassOut::TotalMassOut = NULL; } -void prodml22__MassOut::soap_serialize(struct soap *soap) const +void prodml23__MassOut::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassOut::MassEffluentStockTankOil); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassOut::MassProducedEffluentGas); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassOut::MassResidualOil); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassOut::MassProducedEffluentGasFlowDown); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassOut::TotalMassOut); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassOut::MassEffluentStockTankOil); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassOut::MassProducedEffluentGas); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassOut::MassResidualOil); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassOut::MassProducedEffluentGasFlowDown); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassOut::TotalMassOut); #endif } -int prodml22__MassOut::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MassOut::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MassOut(soap, tag, id, this, type); + return soap_out_prodml23__MassOut(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MassOut(struct soap *soap, const char *tag, int id, const prodml22__MassOut *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MassOut(struct soap *soap, const char *tag, int id, const prodml23__MassOut *a, const char *type) { if (!type) - type = "prodml22:MassOut"; + type = "prodml23:MassOut"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut), type)) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassEffluentStockTankOil", -1, &a->prodml22__MassOut::MassEffluentStockTankOil, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassEffluentStockTankOil", -1, &a->prodml23__MassOut::MassEffluentStockTankOil, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassProducedEffluentGas", -1, &a->prodml22__MassOut::MassProducedEffluentGas, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassProducedEffluentGas", -1, &a->prodml23__MassOut::MassProducedEffluentGas, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassResidualOil", -1, &a->prodml22__MassOut::MassResidualOil, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassResidualOil", -1, &a->prodml23__MassOut::MassResidualOil, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassProducedEffluentGasFlowDown", -1, &a->prodml22__MassOut::MassProducedEffluentGasFlowDown, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassProducedEffluentGasFlowDown", -1, &a->prodml23__MassOut::MassProducedEffluentGasFlowDown, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:TotalMassOut", -1, &a->prodml22__MassOut::TotalMassOut, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:TotalMassOut", -1, &a->prodml23__MassOut::TotalMassOut, "eml23:MassMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MassOut::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MassOut::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MassOut(soap, tag, this, type); + return soap_in_prodml23__MassOut(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MassOut * SOAP_FMAC4 soap_in_prodml22__MassOut(struct soap *soap, const char *tag, prodml22__MassOut *a, const char *type) +SOAP_FMAC3 prodml23__MassOut * SOAP_FMAC4 soap_in_prodml23__MassOut(struct soap *soap, const char *tag, prodml23__MassOut *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MassOut*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut, sizeof(prodml22__MassOut), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MassOut*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut, sizeof(prodml23__MassOut), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MassOut *)a->soap_in(soap, tag, type); + return (prodml23__MassOut *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -224825,31 +224975,31 @@ SOAP_FMAC3 prodml22__MassOut * SOAP_FMAC4 soap_in_prodml22__MassOut(struct soap for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassEffluentStockTankOil1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassEffluentStockTankOil", &a->prodml22__MassOut::MassEffluentStockTankOil, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassEffluentStockTankOil", &a->prodml23__MassOut::MassEffluentStockTankOil, "eml23:MassMeasure")) { soap_flag_MassEffluentStockTankOil1--; continue; } } if (soap_flag_MassProducedEffluentGas1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassProducedEffluentGas", &a->prodml22__MassOut::MassProducedEffluentGas, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassProducedEffluentGas", &a->prodml23__MassOut::MassProducedEffluentGas, "eml23:MassMeasure")) { soap_flag_MassProducedEffluentGas1--; continue; } } if (soap_flag_MassResidualOil1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassResidualOil", &a->prodml22__MassOut::MassResidualOil, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassResidualOil", &a->prodml23__MassOut::MassResidualOil, "eml23:MassMeasure")) { soap_flag_MassResidualOil1--; continue; } } if (soap_flag_MassProducedEffluentGasFlowDown1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassProducedEffluentGasFlowDown", &a->prodml22__MassOut::MassProducedEffluentGasFlowDown, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassProducedEffluentGasFlowDown", &a->prodml23__MassOut::MassProducedEffluentGasFlowDown, "eml23:MassMeasure")) { soap_flag_MassProducedEffluentGasFlowDown1--; continue; } } if (soap_flag_TotalMassOut1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:TotalMassOut", &a->prodml22__MassOut::TotalMassOut, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:TotalMassOut", &a->prodml23__MassOut::TotalMassOut, "eml23:MassMeasure")) { soap_flag_TotalMassOut1--; continue; } @@ -224865,35 +225015,35 @@ SOAP_FMAC3 prodml22__MassOut * SOAP_FMAC4 soap_in_prodml22__MassOut(struct soap return NULL; } else - { a = (prodml22__MassOut *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut, sizeof(prodml22__MassOut), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MassOut *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut, sizeof(prodml23__MassOut), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MassOut * SOAP_FMAC2 soap_instantiate_prodml22__MassOut(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MassOut * SOAP_FMAC2 soap_instantiate_prodml23__MassOut(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MassOut(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MassOut(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MassOut *p; - size_t k = sizeof(prodml22__MassOut); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut, n, gsoap_eml2_3_fdelete); + prodml23__MassOut *p; + size_t k = sizeof(prodml23__MassOut); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MassOut); + { p = SOAP_NEW(soap, prodml23__MassOut); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MassOut, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MassOut, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MassOut location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MassOut location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -224903,86 +225053,86 @@ SOAP_FMAC1 prodml22__MassOut * SOAP_FMAC2 soap_instantiate_prodml22__MassOut(str return p; } -int prodml22__MassOut::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MassOut::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MassOut(soap, tag ? tag : "prodml22:MassOut", -2, this, type)) + if (soap_out_prodml23__MassOut(soap, tag ? tag : "prodml23:MassOut", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MassOut::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MassOut::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MassOut(soap, this, tag, type); + return soap_get_prodml23__MassOut(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MassOut * SOAP_FMAC4 soap_get_prodml22__MassOut(struct soap *soap, prodml22__MassOut *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MassOut * SOAP_FMAC4 soap_get_prodml23__MassOut(struct soap *soap, prodml23__MassOut *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MassOut(soap, tag, p, type))) + if ((p = soap_in_prodml23__MassOut(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MassIn::soap_default(struct soap *soap) +void prodml23__MassIn::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__MassIn::MassFluidSlimtube = NULL; - this->prodml22__MassIn::MassFluidConnectingLines = NULL; - this->prodml22__MassIn::MassInjectedGasSolvent = NULL; - this->prodml22__MassIn::TotalMassIn = NULL; + this->prodml23__MassIn::MassFluidSlimtube = NULL; + this->prodml23__MassIn::MassFluidConnectingLines = NULL; + this->prodml23__MassIn::MassInjectedGasSolvent = NULL; + this->prodml23__MassIn::TotalMassIn = NULL; } -void prodml22__MassIn::soap_serialize(struct soap *soap) const +void prodml23__MassIn::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassIn::MassFluidSlimtube); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassIn::MassFluidConnectingLines); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassIn::MassInjectedGasSolvent); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__MassIn::TotalMassIn); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassIn::MassFluidSlimtube); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassIn::MassFluidConnectingLines); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassIn::MassInjectedGasSolvent); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__MassIn::TotalMassIn); #endif } -int prodml22__MassIn::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MassIn::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MassIn(soap, tag, id, this, type); + return soap_out_prodml23__MassIn(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MassIn(struct soap *soap, const char *tag, int id, const prodml22__MassIn *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MassIn(struct soap *soap, const char *tag, int id, const prodml23__MassIn *a, const char *type) { if (!type) - type = "prodml22:MassIn"; + type = "prodml23:MassIn"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn), type)) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassFluidSlimtube", -1, &a->prodml22__MassIn::MassFluidSlimtube, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassFluidSlimtube", -1, &a->prodml23__MassIn::MassFluidSlimtube, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassFluidConnectingLines", -1, &a->prodml22__MassIn::MassFluidConnectingLines, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassFluidConnectingLines", -1, &a->prodml23__MassIn::MassFluidConnectingLines, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:MassInjectedGasSolvent", -1, &a->prodml22__MassIn::MassInjectedGasSolvent, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:MassInjectedGasSolvent", -1, &a->prodml23__MassIn::MassInjectedGasSolvent, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:TotalMassIn", -1, &a->prodml22__MassIn::TotalMassIn, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:TotalMassIn", -1, &a->prodml23__MassIn::TotalMassIn, "eml23:MassMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MassIn::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MassIn::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MassIn(soap, tag, this, type); + return soap_in_prodml23__MassIn(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MassIn * SOAP_FMAC4 soap_in_prodml22__MassIn(struct soap *soap, const char *tag, prodml22__MassIn *a, const char *type) +SOAP_FMAC3 prodml23__MassIn * SOAP_FMAC4 soap_in_prodml23__MassIn(struct soap *soap, const char *tag, prodml23__MassIn *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MassIn*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn, sizeof(prodml22__MassIn), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MassIn*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn, sizeof(prodml23__MassIn), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MassIn *)a->soap_in(soap, tag, type); + return (prodml23__MassIn *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -224995,25 +225145,25 @@ SOAP_FMAC3 prodml22__MassIn * SOAP_FMAC4 soap_in_prodml22__MassIn(struct soap *s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFluidSlimtube1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassFluidSlimtube", &a->prodml22__MassIn::MassFluidSlimtube, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassFluidSlimtube", &a->prodml23__MassIn::MassFluidSlimtube, "eml23:MassMeasure")) { soap_flag_MassFluidSlimtube1--; continue; } } if (soap_flag_MassFluidConnectingLines1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassFluidConnectingLines", &a->prodml22__MassIn::MassFluidConnectingLines, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassFluidConnectingLines", &a->prodml23__MassIn::MassFluidConnectingLines, "eml23:MassMeasure")) { soap_flag_MassFluidConnectingLines1--; continue; } } if (soap_flag_MassInjectedGasSolvent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:MassInjectedGasSolvent", &a->prodml22__MassIn::MassInjectedGasSolvent, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:MassInjectedGasSolvent", &a->prodml23__MassIn::MassInjectedGasSolvent, "eml23:MassMeasure")) { soap_flag_MassInjectedGasSolvent1--; continue; } } if (soap_flag_TotalMassIn1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:TotalMassIn", &a->prodml22__MassIn::TotalMassIn, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:TotalMassIn", &a->prodml23__MassIn::TotalMassIn, "eml23:MassMeasure")) { soap_flag_TotalMassIn1--; continue; } @@ -225029,35 +225179,35 @@ SOAP_FMAC3 prodml22__MassIn * SOAP_FMAC4 soap_in_prodml22__MassIn(struct soap *s return NULL; } else - { a = (prodml22__MassIn *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn, sizeof(prodml22__MassIn), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MassIn *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn, sizeof(prodml23__MassIn), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MassIn * SOAP_FMAC2 soap_instantiate_prodml22__MassIn(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MassIn * SOAP_FMAC2 soap_instantiate_prodml23__MassIn(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MassIn(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MassIn(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MassIn *p; - size_t k = sizeof(prodml22__MassIn); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn, n, gsoap_eml2_3_fdelete); + prodml23__MassIn *p; + size_t k = sizeof(prodml23__MassIn); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MassIn); + { p = SOAP_NEW(soap, prodml23__MassIn); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MassIn, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MassIn, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MassIn location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MassIn location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -225067,86 +225217,86 @@ SOAP_FMAC1 prodml22__MassIn * SOAP_FMAC2 soap_instantiate_prodml22__MassIn(struc return p; } -int prodml22__MassIn::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MassIn::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MassIn(soap, tag ? tag : "prodml22:MassIn", -2, this, type)) + if (soap_out_prodml23__MassIn(soap, tag ? tag : "prodml23:MassIn", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MassIn::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MassIn::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MassIn(soap, this, tag, type); + return soap_get_prodml23__MassIn(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MassIn * SOAP_FMAC4 soap_get_prodml22__MassIn(struct soap *soap, prodml22__MassIn *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MassIn * SOAP_FMAC4 soap_get_prodml23__MassIn(struct soap *soap, prodml23__MassIn *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MassIn(soap, tag, p, type))) + if ((p = soap_in_prodml23__MassIn(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MassBalance::soap_default(struct soap *soap) +void prodml23__MassBalance::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__MassBalance::MassBalanceFraction = NULL; - this->prodml22__MassBalance::Remark = NULL; - this->prodml22__MassBalance::MassIn = NULL; - this->prodml22__MassBalance::MassOut = NULL; + this->prodml23__MassBalance::MassBalanceFraction = NULL; + this->prodml23__MassBalance::Remark = NULL; + this->prodml23__MassBalance::MassIn = NULL; + this->prodml23__MassBalance::MassOut = NULL; } -void prodml22__MassBalance::soap_serialize(struct soap *soap) const +void prodml23__MassBalance::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__MassBalance::MassBalanceFraction); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__MassBalance::Remark); - soap_serialize_PointerToprodml22__MassIn(soap, &this->prodml22__MassBalance::MassIn); - soap_serialize_PointerToprodml22__MassOut(soap, &this->prodml22__MassBalance::MassOut); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__MassBalance::MassBalanceFraction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__MassBalance::Remark); + soap_serialize_PointerToprodml23__MassIn(soap, &this->prodml23__MassBalance::MassIn); + soap_serialize_PointerToprodml23__MassOut(soap, &this->prodml23__MassBalance::MassOut); #endif } -int prodml22__MassBalance::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MassBalance::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MassBalance(soap, tag, id, this, type); + return soap_out_prodml23__MassBalance(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MassBalance(struct soap *soap, const char *tag, int id, const prodml22__MassBalance *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MassBalance(struct soap *soap, const char *tag, int id, const prodml23__MassBalance *a, const char *type) { if (!type) - type = "prodml22:MassBalance"; + type = "prodml23:MassBalance"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassBalanceFraction", -1, &a->prodml22__MassBalance::MassBalanceFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassBalanceFraction", -1, &a->prodml23__MassBalance::MassBalanceFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__MassBalance::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__MassBalance::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__MassIn(soap, "prodml22:MassIn", -1, &a->prodml22__MassBalance::MassIn, "prodml22:MassIn")) + if (soap_out_PointerToprodml23__MassIn(soap, "prodml23:MassIn", -1, &a->prodml23__MassBalance::MassIn, "prodml23:MassIn")) return soap->error; - if (soap_out_PointerToprodml22__MassOut(soap, "prodml22:MassOut", -1, &a->prodml22__MassBalance::MassOut, "prodml22:MassOut")) + if (soap_out_PointerToprodml23__MassOut(soap, "prodml23:MassOut", -1, &a->prodml23__MassBalance::MassOut, "prodml23:MassOut")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__MassBalance::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MassBalance::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MassBalance(soap, tag, this, type); + return soap_in_prodml23__MassBalance(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MassBalance * SOAP_FMAC4 soap_in_prodml22__MassBalance(struct soap *soap, const char *tag, prodml22__MassBalance *a, const char *type) +SOAP_FMAC3 prodml23__MassBalance * SOAP_FMAC4 soap_in_prodml23__MassBalance(struct soap *soap, const char *tag, prodml23__MassBalance *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__MassBalance*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance, sizeof(prodml22__MassBalance), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__MassBalance*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance, sizeof(prodml23__MassBalance), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__MassBalance *)a->soap_in(soap, tag, type); + return (prodml23__MassBalance *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -225159,25 +225309,25 @@ SOAP_FMAC3 prodml22__MassBalance * SOAP_FMAC4 soap_in_prodml22__MassBalance(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassBalanceFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassBalanceFraction", &a->prodml22__MassBalance::MassBalanceFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassBalanceFraction", &a->prodml23__MassBalance::MassBalanceFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassBalanceFraction1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__MassBalance::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__MassBalance::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_MassIn1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MassIn(soap, "prodml22:MassIn", &a->prodml22__MassBalance::MassIn, "prodml22:MassIn")) + { if (soap_in_PointerToprodml23__MassIn(soap, "prodml23:MassIn", &a->prodml23__MassBalance::MassIn, "prodml23:MassIn")) { soap_flag_MassIn1--; continue; } } if (soap_flag_MassOut1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MassOut(soap, "prodml22:MassOut", &a->prodml22__MassBalance::MassOut, "prodml22:MassOut")) + { if (soap_in_PointerToprodml23__MassOut(soap, "prodml23:MassOut", &a->prodml23__MassBalance::MassOut, "prodml23:MassOut")) { soap_flag_MassOut1--; continue; } @@ -225193,35 +225343,35 @@ SOAP_FMAC3 prodml22__MassBalance * SOAP_FMAC4 soap_in_prodml22__MassBalance(stru return NULL; } else - { a = (prodml22__MassBalance *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance, sizeof(prodml22__MassBalance), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__MassBalance *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance, sizeof(prodml23__MassBalance), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__MassBalance * SOAP_FMAC2 soap_instantiate_prodml22__MassBalance(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MassBalance * SOAP_FMAC2 soap_instantiate_prodml23__MassBalance(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MassBalance(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MassBalance(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MassBalance *p; - size_t k = sizeof(prodml22__MassBalance); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance, n, gsoap_eml2_3_fdelete); + prodml23__MassBalance *p; + size_t k = sizeof(prodml23__MassBalance); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MassBalance); + { p = SOAP_NEW(soap, prodml23__MassBalance); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MassBalance, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MassBalance, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MassBalance location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MassBalance location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -225231,80 +225381,80 @@ SOAP_FMAC1 prodml22__MassBalance * SOAP_FMAC2 soap_instantiate_prodml22__MassBal return p; } -int prodml22__MassBalance::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MassBalance::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MassBalance(soap, tag ? tag : "prodml22:MassBalance", -2, this, type)) + if (soap_out_prodml23__MassBalance(soap, tag ? tag : "prodml23:MassBalance", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MassBalance::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MassBalance::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MassBalance(soap, this, tag, type); + return soap_get_prodml23__MassBalance(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MassBalance * SOAP_FMAC4 soap_get_prodml22__MassBalance(struct soap *soap, prodml22__MassBalance *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MassBalance * SOAP_FMAC4 soap_get_prodml23__MassBalance(struct soap *soap, prodml23__MassBalance *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MassBalance(soap, tag, p, type))) + if ((p = soap_in_prodml23__MassBalance(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LiquidVolume::soap_default(struct soap *soap) +void prodml23__LiquidVolume::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractLiquidDropoutPercVolume::soap_default(soap); - this->prodml22__LiquidVolume::LiquidVolume = NULL; + this->prodml23__AbstractLiquidDropoutPercVolume::soap_default(soap); + this->prodml23__LiquidVolume::LiquidVolume = NULL; } -void prodml22__LiquidVolume::soap_serialize(struct soap *soap) const +void prodml23__LiquidVolume::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__LiquidVolume::LiquidVolume); - this->prodml22__AbstractLiquidDropoutPercVolume::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__LiquidVolume::LiquidVolume); + this->prodml23__AbstractLiquidDropoutPercVolume::soap_serialize(soap); #endif } -int prodml22__LiquidVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LiquidVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LiquidVolume(soap, tag, id, this, type); + return soap_out_prodml23__LiquidVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LiquidVolume(struct soap *soap, const char *tag, int id, const prodml22__LiquidVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LiquidVolume(struct soap *soap, const char *tag, int id, const prodml23__LiquidVolume *a, const char *type) { if (!type) - type = "prodml22:LiquidVolume"; + type = "prodml23:LiquidVolume"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume), type ? type : "prodml22:LiquidVolume")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume), type ? type : "prodml23:LiquidVolume")) return soap->error; - if (!a->prodml22__LiquidVolume::LiquidVolume) - { if (soap_element_empty(soap, "prodml22:LiquidVolume", 0, NULL)) + if (!a->prodml23__LiquidVolume::LiquidVolume) + { if (soap_element_empty(soap, "prodml23:LiquidVolume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:LiquidVolume", -1, &a->prodml22__LiquidVolume::LiquidVolume, "eml23:VolumeMeasure")) + else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:LiquidVolume", -1, &a->prodml23__LiquidVolume::LiquidVolume, "eml23:VolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LiquidVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LiquidVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LiquidVolume(soap, tag, this, type); + return soap_in_prodml23__LiquidVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_in_prodml22__LiquidVolume(struct soap *soap, const char *tag, prodml22__LiquidVolume *a, const char *type) +SOAP_FMAC3 prodml23__LiquidVolume * SOAP_FMAC4 soap_in_prodml23__LiquidVolume(struct soap *soap, const char *tag, prodml23__LiquidVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LiquidVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume, sizeof(prodml22__LiquidVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LiquidVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume, sizeof(prodml23__LiquidVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LiquidVolume *)a->soap_in(soap, tag, type); + return (prodml23__LiquidVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -225314,7 +225464,7 @@ SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_in_prodml22__LiquidVolume(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_LiquidVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:LiquidVolume", &a->prodml22__LiquidVolume::LiquidVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:LiquidVolume", &a->prodml23__LiquidVolume::LiquidVolume, "eml23:VolumeMeasure")) { soap_flag_LiquidVolume1--; continue; } @@ -225328,7 +225478,7 @@ SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_in_prodml22__LiquidVolume(st } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__LiquidVolume::LiquidVolume)) + if ((!a->prodml23__LiquidVolume::LiquidVolume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -225338,35 +225488,35 @@ SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_in_prodml22__LiquidVolume(st return NULL; } else - { a = (prodml22__LiquidVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume, sizeof(prodml22__LiquidVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LiquidVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume, sizeof(prodml23__LiquidVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml22__LiquidVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml23__LiquidVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LiquidVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LiquidVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LiquidVolume *p; - size_t k = sizeof(prodml22__LiquidVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume, n, gsoap_eml2_3_fdelete); + prodml23__LiquidVolume *p; + size_t k = sizeof(prodml23__LiquidVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LiquidVolume); + { p = SOAP_NEW(soap, prodml23__LiquidVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LiquidVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LiquidVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LiquidVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LiquidVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -225376,80 +225526,80 @@ SOAP_FMAC1 prodml22__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml22__Liquid return p; } -int prodml22__LiquidVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LiquidVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LiquidVolume(soap, tag ? tag : "prodml22:LiquidVolume", -2, this, type)) + if (soap_out_prodml23__LiquidVolume(soap, tag ? tag : "prodml23:LiquidVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LiquidVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LiquidVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LiquidVolume(soap, this, tag, type); + return soap_get_prodml23__LiquidVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_get_prodml22__LiquidVolume(struct soap *soap, prodml22__LiquidVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LiquidVolume * SOAP_FMAC4 soap_get_prodml23__LiquidVolume(struct soap *soap, prodml23__LiquidVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LiquidVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__LiquidVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LiquidDropoutFraction::soap_default(struct soap *soap) +void prodml23__LiquidDropoutFraction::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractLiquidDropoutPercVolume::soap_default(soap); - this->prodml22__LiquidDropoutFraction::LiquidDropoutPercent = NULL; + this->prodml23__AbstractLiquidDropoutPercVolume::soap_default(soap); + this->prodml23__LiquidDropoutFraction::LiquidDropoutPercent = NULL; } -void prodml22__LiquidDropoutFraction::soap_serialize(struct soap *soap) const +void prodml23__LiquidDropoutFraction::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__LiquidDropoutFraction::LiquidDropoutPercent); - this->prodml22__AbstractLiquidDropoutPercVolume::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__LiquidDropoutFraction::LiquidDropoutPercent); + this->prodml23__AbstractLiquidDropoutPercVolume::soap_serialize(soap); #endif } -int prodml22__LiquidDropoutFraction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LiquidDropoutFraction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LiquidDropoutFraction(soap, tag, id, this, type); + return soap_out_prodml23__LiquidDropoutFraction(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LiquidDropoutFraction(struct soap *soap, const char *tag, int id, const prodml22__LiquidDropoutFraction *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LiquidDropoutFraction(struct soap *soap, const char *tag, int id, const prodml23__LiquidDropoutFraction *a, const char *type) { if (!type) - type = "prodml22:LiquidDropoutFraction"; + type = "prodml23:LiquidDropoutFraction"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction), type ? type : "prodml22:LiquidDropoutFraction")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction), type ? type : "prodml23:LiquidDropoutFraction")) return soap->error; - if (!a->prodml22__LiquidDropoutFraction::LiquidDropoutPercent) - { if (soap_element_empty(soap, "prodml22:LiquidDropoutPercent", 0, NULL)) + if (!a->prodml23__LiquidDropoutFraction::LiquidDropoutPercent) + { if (soap_element_empty(soap, "prodml23:LiquidDropoutPercent", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:LiquidDropoutPercent", -1, &a->prodml22__LiquidDropoutFraction::LiquidDropoutPercent, "eml23:VolumePerVolumeMeasure")) + else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:LiquidDropoutPercent", -1, &a->prodml23__LiquidDropoutFraction::LiquidDropoutPercent, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LiquidDropoutFraction::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LiquidDropoutFraction::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LiquidDropoutFraction(soap, tag, this, type); + return soap_in_prodml23__LiquidDropoutFraction(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml22__LiquidDropoutFraction(struct soap *soap, const char *tag, prodml22__LiquidDropoutFraction *a, const char *type) +SOAP_FMAC3 prodml23__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml23__LiquidDropoutFraction(struct soap *soap, const char *tag, prodml23__LiquidDropoutFraction *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LiquidDropoutFraction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction, sizeof(prodml22__LiquidDropoutFraction), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LiquidDropoutFraction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction, sizeof(prodml23__LiquidDropoutFraction), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LiquidDropoutFraction *)a->soap_in(soap, tag, type); + return (prodml23__LiquidDropoutFraction *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -225459,7 +225609,7 @@ SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml22__Liquid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_LiquidDropoutPercent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:LiquidDropoutPercent", &a->prodml22__LiquidDropoutFraction::LiquidDropoutPercent, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:LiquidDropoutPercent", &a->prodml23__LiquidDropoutFraction::LiquidDropoutPercent, "eml23:VolumePerVolumeMeasure")) { soap_flag_LiquidDropoutPercent1--; continue; } @@ -225473,7 +225623,7 @@ SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml22__Liquid } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__LiquidDropoutFraction::LiquidDropoutPercent)) + if ((!a->prodml23__LiquidDropoutFraction::LiquidDropoutPercent)) { soap->error = SOAP_OCCURS; return NULL; } @@ -225483,35 +225633,35 @@ SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml22__Liquid return NULL; } else - { a = (prodml22__LiquidDropoutFraction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction, sizeof(prodml22__LiquidDropoutFraction), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LiquidDropoutFraction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction, sizeof(prodml23__LiquidDropoutFraction), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml22__LiquidDropoutFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml23__LiquidDropoutFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LiquidDropoutFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LiquidDropoutFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LiquidDropoutFraction *p; - size_t k = sizeof(prodml22__LiquidDropoutFraction); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction, n, gsoap_eml2_3_fdelete); + prodml23__LiquidDropoutFraction *p; + size_t k = sizeof(prodml23__LiquidDropoutFraction); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LiquidDropoutFraction); + { p = SOAP_NEW(soap, prodml23__LiquidDropoutFraction); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LiquidDropoutFraction, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LiquidDropoutFraction, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LiquidDropoutFraction location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LiquidDropoutFraction location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -225521,104 +225671,104 @@ SOAP_FMAC1 prodml22__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__LiquidDropoutFraction::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LiquidDropoutFraction::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LiquidDropoutFraction(soap, tag ? tag : "prodml22:LiquidDropoutFraction", -2, this, type)) + if (soap_out_prodml23__LiquidDropoutFraction(soap, tag ? tag : "prodml23:LiquidDropoutFraction", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LiquidDropoutFraction::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LiquidDropoutFraction::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LiquidDropoutFraction(soap, this, tag, type); + return soap_get_prodml23__LiquidDropoutFraction(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_get_prodml22__LiquidDropoutFraction(struct soap *soap, prodml22__LiquidDropoutFraction *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LiquidDropoutFraction * SOAP_FMAC4 soap_get_prodml23__LiquidDropoutFraction(struct soap *soap, prodml23__LiquidDropoutFraction *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LiquidDropoutFraction(soap, tag, p, type))) + if ((p = soap_in_prodml23__LiquidDropoutFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InterfacialTensionTestStep::soap_default(struct soap *soap) +void prodml23__InterfacialTensionTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__InterfacialTensionTestStep::StepNumber); - this->prodml22__InterfacialTensionTestStep::StepPressure = NULL; - this->prodml22__InterfacialTensionTestStep::StepTemperature = NULL; - this->prodml22__InterfacialTensionTestStep::WettingPhaseSaturation = NULL; - this->prodml22__InterfacialTensionTestStep::SurfactantConcentration = NULL; - this->prodml22__InterfacialTensionTestStep::InterfacialTension = NULL; - this->prodml22__InterfacialTensionTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__InterfacialTensionTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__InterfacialTensionTestStep::StepNumber); + this->prodml23__InterfacialTensionTestStep::StepPressure = NULL; + this->prodml23__InterfacialTensionTestStep::StepTemperature = NULL; + this->prodml23__InterfacialTensionTestStep::WettingPhaseSaturation = NULL; + this->prodml23__InterfacialTensionTestStep::SurfactantConcentration = NULL; + this->prodml23__InterfacialTensionTestStep::InterfacialTension = NULL; + this->prodml23__InterfacialTensionTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__InterfacialTensionTestStep::uid); } -void prodml22__InterfacialTensionTestStep::soap_serialize(struct soap *soap) const +void prodml23__InterfacialTensionTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InterfacialTensionTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__InterfacialTensionTestStep::StepPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__InterfacialTensionTestStep::StepTemperature); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__InterfacialTensionTestStep::WettingPhaseSaturation); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__InterfacialTensionTestStep::SurfactantConcentration); - soap_serialize_PointerToeml23__ForcePerLengthMeasure(soap, &this->prodml22__InterfacialTensionTestStep::InterfacialTension); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__InterfacialTensionTestStep::Remark); + soap_embedded(soap, &this->prodml23__InterfacialTensionTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__InterfacialTensionTestStep::StepPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__InterfacialTensionTestStep::StepTemperature); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__InterfacialTensionTestStep::WettingPhaseSaturation); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__InterfacialTensionTestStep::SurfactantConcentration); + soap_serialize_PointerToeml23__ForcePerLengthMeasure(soap, &this->prodml23__InterfacialTensionTestStep::InterfacialTension); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__InterfacialTensionTestStep::Remark); #endif } -int prodml22__InterfacialTensionTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InterfacialTensionTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InterfacialTensionTestStep(soap, tag, id, this, type); + return soap_out_prodml23__InterfacialTensionTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterfacialTensionTestStep(struct soap *soap, const char *tag, int id, const prodml22__InterfacialTensionTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterfacialTensionTestStep(struct soap *soap, const char *tag, int id, const prodml23__InterfacialTensionTestStep *a, const char *type) { if (!type) - type = "prodml22:InterfacialTensionTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__InterfacialTensionTestStep*)a)->uid), 1); + type = "prodml23:InterfacialTensionTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__InterfacialTensionTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__InterfacialTensionTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__InterfacialTensionTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__InterfacialTensionTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__InterfacialTensionTestStep::StepPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__InterfacialTensionTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", -1, &a->prodml22__InterfacialTensionTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", -1, &a->prodml23__InterfacialTensionTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:WettingPhaseSaturation", -1, &a->prodml22__InterfacialTensionTestStep::WettingPhaseSaturation, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:WettingPhaseSaturation", -1, &a->prodml23__InterfacialTensionTestStep::WettingPhaseSaturation, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:SurfactantConcentration", -1, &a->prodml22__InterfacialTensionTestStep::SurfactantConcentration, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:SurfactantConcentration", -1, &a->prodml23__InterfacialTensionTestStep::SurfactantConcentration, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__ForcePerLengthMeasure(soap, "prodml22:InterfacialTension", -1, &a->prodml22__InterfacialTensionTestStep::InterfacialTension, "eml23:ForcePerLengthMeasure")) + if (soap_out_PointerToeml23__ForcePerLengthMeasure(soap, "prodml23:InterfacialTension", -1, &a->prodml23__InterfacialTensionTestStep::InterfacialTension, "eml23:ForcePerLengthMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__InterfacialTensionTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__InterfacialTensionTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InterfacialTensionTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterfacialTensionTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InterfacialTensionTestStep(soap, tag, this, type); + return soap_in_prodml23__InterfacialTensionTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InterfacialTensionTestStep * SOAP_FMAC4 soap_in_prodml22__InterfacialTensionTestStep(struct soap *soap, const char *tag, prodml22__InterfacialTensionTestStep *a, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTestStep * SOAP_FMAC4 soap_in_prodml23__InterfacialTensionTestStep(struct soap *soap, const char *tag, prodml23__InterfacialTensionTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InterfacialTensionTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, sizeof(prodml22__InterfacialTensionTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InterfacialTensionTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, sizeof(prodml23__InterfacialTensionTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InterfacialTensionTestStep *)a->soap_in(soap, tag, type); + return (prodml23__InterfacialTensionTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__InterfacialTensionTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__InterfacialTensionTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepPressure1 = 1; @@ -225632,43 +225782,43 @@ SOAP_FMAC3 prodml22__InterfacialTensionTestStep * SOAP_FMAC4 soap_in_prodml22__I for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__InterfacialTensionTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__InterfacialTensionTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__InterfacialTensionTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__InterfacialTensionTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_StepTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", &a->prodml22__InterfacialTensionTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", &a->prodml23__InterfacialTensionTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StepTemperature1--; continue; } } if (soap_flag_WettingPhaseSaturation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:WettingPhaseSaturation", &a->prodml22__InterfacialTensionTestStep::WettingPhaseSaturation, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:WettingPhaseSaturation", &a->prodml23__InterfacialTensionTestStep::WettingPhaseSaturation, "eml23:DimensionlessMeasure")) { soap_flag_WettingPhaseSaturation1--; continue; } } if (soap_flag_SurfactantConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:SurfactantConcentration", &a->prodml22__InterfacialTensionTestStep::SurfactantConcentration, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:SurfactantConcentration", &a->prodml23__InterfacialTensionTestStep::SurfactantConcentration, "eml23:MassPerMassMeasure")) { soap_flag_SurfactantConcentration1--; continue; } } if (soap_flag_InterfacialTension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ForcePerLengthMeasure(soap, "prodml22:InterfacialTension", &a->prodml22__InterfacialTensionTestStep::InterfacialTension, "eml23:ForcePerLengthMeasure")) + { if (soap_in_PointerToeml23__ForcePerLengthMeasure(soap, "prodml23:InterfacialTension", &a->prodml23__InterfacialTensionTestStep::InterfacialTension, "eml23:ForcePerLengthMeasure")) { soap_flag_InterfacialTension1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__InterfacialTensionTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__InterfacialTensionTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -225692,35 +225842,35 @@ SOAP_FMAC3 prodml22__InterfacialTensionTestStep * SOAP_FMAC4 soap_in_prodml22__I return NULL; } else - { a = (prodml22__InterfacialTensionTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, sizeof(prodml22__InterfacialTensionTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InterfacialTensionTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, sizeof(prodml23__InterfacialTensionTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_prodml22__InterfacialTensionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_prodml23__InterfacialTensionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InterfacialTensionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InterfacialTensionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InterfacialTensionTestStep *p; - size_t k = sizeof(prodml22__InterfacialTensionTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, n, gsoap_eml2_3_fdelete); + prodml23__InterfacialTensionTestStep *p; + size_t k = sizeof(prodml23__InterfacialTensionTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InterfacialTensionTestStep); + { p = SOAP_NEW(soap, prodml23__InterfacialTensionTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InterfacialTensionTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InterfacialTensionTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InterfacialTensionTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InterfacialTensionTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -225730,100 +225880,100 @@ SOAP_FMAC1 prodml22__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__InterfacialTensionTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InterfacialTensionTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InterfacialTensionTestStep(soap, tag ? tag : "prodml22:InterfacialTensionTestStep", -2, this, type)) + if (soap_out_prodml23__InterfacialTensionTestStep(soap, tag ? tag : "prodml23:InterfacialTensionTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InterfacialTensionTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterfacialTensionTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InterfacialTensionTestStep(soap, this, tag, type); + return soap_get_prodml23__InterfacialTensionTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InterfacialTensionTestStep * SOAP_FMAC4 soap_get_prodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTestStep * SOAP_FMAC4 soap_get_prodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InterfacialTensionTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__InterfacialTensionTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InterfacialTensionTest::soap_default(struct soap *soap) +void prodml23__InterfacialTensionTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__InterfacialTensionTest::TestNumber); - soap_default_prodml22__ThermodynamicPhase(soap, &this->prodml22__InterfacialTensionTest::WettingPhase); - soap_default_prodml22__ThermodynamicPhase(soap, &this->prodml22__InterfacialTensionTest::nonWettingPhase); - this->prodml22__InterfacialTensionTest::Surfactant = NULL; - this->prodml22__InterfacialTensionTest::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap, &this->prodml22__InterfacialTensionTest::InterfacialTensionTestStep); - soap_default_eml23__String64(soap, &this->prodml22__InterfacialTensionTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__InterfacialTensionTest::TestNumber); + soap_default_prodml23__ThermodynamicPhase(soap, &this->prodml23__InterfacialTensionTest::WettingPhase); + soap_default_prodml23__ThermodynamicPhase(soap, &this->prodml23__InterfacialTensionTest::nonWettingPhase); + this->prodml23__InterfacialTensionTest::Surfactant = NULL; + this->prodml23__InterfacialTensionTest::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap, &this->prodml23__InterfacialTensionTest::InterfacialTensionTestStep); + soap_default_eml23__String64(soap, &this->prodml23__InterfacialTensionTest::uid); } -void prodml22__InterfacialTensionTest::soap_serialize(struct soap *soap) const +void prodml23__InterfacialTensionTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__InterfacialTensionTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_embedded(soap, &this->prodml22__InterfacialTensionTest::WettingPhase, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase); - soap_embedded(soap, &this->prodml22__InterfacialTensionTest::nonWettingPhase, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase); - soap_serialize_PointerToprodml22__AbstractFluidComponent(soap, &this->prodml22__InterfacialTensionTest::Surfactant); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__InterfacialTensionTest::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap, &this->prodml22__InterfacialTensionTest::InterfacialTensionTestStep); + soap_embedded(soap, &this->prodml23__InterfacialTensionTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_embedded(soap, &this->prodml23__InterfacialTensionTest::WettingPhase, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase); + soap_embedded(soap, &this->prodml23__InterfacialTensionTest::nonWettingPhase, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase); + soap_serialize_PointerToprodml23__AbstractFluidComponent(soap, &this->prodml23__InterfacialTensionTest::Surfactant); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__InterfacialTensionTest::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap, &this->prodml23__InterfacialTensionTest::InterfacialTensionTestStep); #endif } -int prodml22__InterfacialTensionTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InterfacialTensionTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InterfacialTensionTest(soap, tag, id, this, type); + return soap_out_prodml23__InterfacialTensionTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterfacialTensionTest(struct soap *soap, const char *tag, int id, const prodml22__InterfacialTensionTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterfacialTensionTest(struct soap *soap, const char *tag, int id, const prodml23__InterfacialTensionTest *a, const char *type) { if (!type) - type = "prodml22:InterfacialTensionTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__InterfacialTensionTest*)a)->uid), 1); + type = "prodml23:InterfacialTensionTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__InterfacialTensionTest*)a)->uid), 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_gsoap_eml2_3_prodml22__InterfacialTensionTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__InterfacialTensionTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__InterfacialTensionTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_prodml22__ThermodynamicPhase(soap, "prodml22:WettingPhase", -1, &a->prodml22__InterfacialTensionTest::WettingPhase, "prodml22:ThermodynamicPhase")) + if (soap_out_prodml23__ThermodynamicPhase(soap, "prodml23:WettingPhase", -1, &a->prodml23__InterfacialTensionTest::WettingPhase, "prodml23:ThermodynamicPhase")) return soap->error; - if (soap_out_prodml22__ThermodynamicPhase(soap, "prodml22:nonWettingPhase", -1, &a->prodml22__InterfacialTensionTest::nonWettingPhase, "prodml22:ThermodynamicPhase")) + if (soap_out_prodml23__ThermodynamicPhase(soap, "prodml23:nonWettingPhase", -1, &a->prodml23__InterfacialTensionTest::nonWettingPhase, "prodml23:ThermodynamicPhase")) return soap->error; - if (soap_out_PointerToprodml22__AbstractFluidComponent(soap, "prodml22:Surfactant", -1, &a->prodml22__InterfacialTensionTest::Surfactant, "prodml22:AbstractFluidComponent")) + if (soap_out_PointerToprodml23__AbstractFluidComponent(soap, "prodml23:Surfactant", -1, &a->prodml23__InterfacialTensionTest::Surfactant, "prodml23:AbstractFluidComponent")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__InterfacialTensionTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__InterfacialTensionTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap, "prodml22:InterfacialTensionTestStep", -1, &a->prodml22__InterfacialTensionTest::InterfacialTensionTestStep, "prodml22:InterfacialTensionTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap, "prodml23:InterfacialTensionTestStep", -1, &a->prodml23__InterfacialTensionTest::InterfacialTensionTestStep, "prodml23:InterfacialTensionTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InterfacialTensionTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterfacialTensionTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InterfacialTensionTest(soap, tag, this, type); + return soap_in_prodml23__InterfacialTensionTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InterfacialTensionTest * SOAP_FMAC4 soap_in_prodml22__InterfacialTensionTest(struct soap *soap, const char *tag, prodml22__InterfacialTensionTest *a, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTest * SOAP_FMAC4 soap_in_prodml23__InterfacialTensionTest(struct soap *soap, const char *tag, prodml23__InterfacialTensionTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InterfacialTensionTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, sizeof(prodml22__InterfacialTensionTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InterfacialTensionTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, sizeof(prodml23__InterfacialTensionTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InterfacialTensionTest *)a->soap_in(soap, tag, type); + return (prodml23__InterfacialTensionTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__InterfacialTensionTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__InterfacialTensionTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_WettingPhase1 = 1; @@ -225835,37 +225985,37 @@ SOAP_FMAC3 prodml22__InterfacialTensionTest * SOAP_FMAC4 soap_in_prodml22__Inter for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__InterfacialTensionTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__InterfacialTensionTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_WettingPhase1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ThermodynamicPhase(soap, "prodml22:WettingPhase", &a->prodml22__InterfacialTensionTest::WettingPhase, "prodml22:ThermodynamicPhase")) + { if (soap_in_prodml23__ThermodynamicPhase(soap, "prodml23:WettingPhase", &a->prodml23__InterfacialTensionTest::WettingPhase, "prodml23:ThermodynamicPhase")) { soap_flag_WettingPhase1--; continue; } } if (soap_flag_nonWettingPhase1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__ThermodynamicPhase(soap, "prodml22:nonWettingPhase", &a->prodml22__InterfacialTensionTest::nonWettingPhase, "prodml22:ThermodynamicPhase")) + { if (soap_in_prodml23__ThermodynamicPhase(soap, "prodml23:nonWettingPhase", &a->prodml23__InterfacialTensionTest::nonWettingPhase, "prodml23:ThermodynamicPhase")) { soap_flag_nonWettingPhase1--; continue; } } if (soap_flag_Surfactant1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractFluidComponent(soap, "prodml22:Surfactant", &a->prodml22__InterfacialTensionTest::Surfactant, "prodml22:AbstractFluidComponent")) + { if (soap_in_PointerToprodml23__AbstractFluidComponent(soap, "prodml23:Surfactant", &a->prodml23__InterfacialTensionTest::Surfactant, "prodml23:AbstractFluidComponent")) { soap_flag_Surfactant1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__InterfacialTensionTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__InterfacialTensionTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap, "prodml22:InterfacialTensionTestStep", &a->prodml22__InterfacialTensionTest::InterfacialTensionTestStep, "prodml22:InterfacialTensionTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap, "prodml23:InterfacialTensionTestStep", &a->prodml23__InterfacialTensionTest::InterfacialTensionTestStep, "prodml23:InterfacialTensionTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -225887,35 +226037,35 @@ SOAP_FMAC3 prodml22__InterfacialTensionTest * SOAP_FMAC4 soap_in_prodml22__Inter return NULL; } else - { a = (prodml22__InterfacialTensionTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, sizeof(prodml22__InterfacialTensionTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InterfacialTensionTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, sizeof(prodml23__InterfacialTensionTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml22__InterfacialTensionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml23__InterfacialTensionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InterfacialTensionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InterfacialTensionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InterfacialTensionTest *p; - size_t k = sizeof(prodml22__InterfacialTensionTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, n, gsoap_eml2_3_fdelete); + prodml23__InterfacialTensionTest *p; + size_t k = sizeof(prodml23__InterfacialTensionTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InterfacialTensionTest); + { p = SOAP_NEW(soap, prodml23__InterfacialTensionTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InterfacialTensionTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InterfacialTensionTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InterfacialTensionTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InterfacialTensionTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -225925,84 +226075,84 @@ SOAP_FMAC1 prodml22__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__InterfacialTensionTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InterfacialTensionTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InterfacialTensionTest(soap, tag ? tag : "prodml22:InterfacialTensionTest", -2, this, type)) + if (soap_out_prodml23__InterfacialTensionTest(soap, tag ? tag : "prodml23:InterfacialTensionTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InterfacialTensionTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InterfacialTensionTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InterfacialTensionTest(soap, this, tag, type); + return soap_get_prodml23__InterfacialTensionTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InterfacialTensionTest * SOAP_FMAC4 soap_get_prodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTest * SOAP_FMAC4 soap_get_prodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InterfacialTensionTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__InterfacialTensionTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__InjectedGas::soap_default(struct soap *soap) +void prodml23__InjectedGas::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__InjectedGas::VaporComposition = NULL; - soap_default_eml23__String64(soap, &this->prodml22__InjectedGas::uid); + this->prodml23__InjectedGas::VaporComposition = NULL; + soap_default_eml23__String64(soap, &this->prodml23__InjectedGas::uid); } -void prodml22__InjectedGas::soap_serialize(struct soap *soap) const +void prodml23__InjectedGas::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__InjectedGas::VaporComposition); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__InjectedGas::VaporComposition); #endif } -int prodml22__InjectedGas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__InjectedGas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__InjectedGas(soap, tag, id, this, type); + return soap_out_prodml23__InjectedGas(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InjectedGas(struct soap *soap, const char *tag, int id, const prodml22__InjectedGas *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InjectedGas(struct soap *soap, const char *tag, int id, const prodml23__InjectedGas *a, const char *type) { if (!type) - type = "prodml22:InjectedGas"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__InjectedGas*)a)->uid), 1); + type = "prodml23:InjectedGas"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__InjectedGas*)a)->uid), 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_gsoap_eml2_3_prodml22__InjectedGas), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas), type)) return soap->error; - if (!a->prodml22__InjectedGas::VaporComposition) - { if (soap_element_empty(soap, "prodml22:VaporComposition", 0, NULL)) + if (!a->prodml23__InjectedGas::VaporComposition) + { if (soap_element_empty(soap, "prodml23:VaporComposition", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__InjectedGas::VaporComposition, "prodml22:VaporComposition")) + else if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__InjectedGas::VaporComposition, "prodml23:VaporComposition")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__InjectedGas::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__InjectedGas::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__InjectedGas(soap, tag, this, type); + return soap_in_prodml23__InjectedGas(soap, tag, this, type); } -SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_in_prodml22__InjectedGas(struct soap *soap, const char *tag, prodml22__InjectedGas *a, const char *type) +SOAP_FMAC3 prodml23__InjectedGas * SOAP_FMAC4 soap_in_prodml23__InjectedGas(struct soap *soap, const char *tag, prodml23__InjectedGas *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__InjectedGas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, sizeof(prodml22__InjectedGas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__InjectedGas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, sizeof(prodml23__InjectedGas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__InjectedGas *)a->soap_in(soap, tag, type); + return (prodml23__InjectedGas *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__InjectedGas*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__InjectedGas*)a)->uid)) return NULL; size_t soap_flag_VaporComposition1 = 1; if (soap->body && *soap->href != '#') @@ -226010,7 +226160,7 @@ SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_in_prodml22__InjectedGas(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__InjectedGas::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__InjectedGas::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } @@ -226024,7 +226174,7 @@ SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_in_prodml22__InjectedGas(stru } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__InjectedGas::VaporComposition)) + if ((!a->prodml23__InjectedGas::VaporComposition)) { soap->error = SOAP_OCCURS; return NULL; } @@ -226034,35 +226184,35 @@ SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_in_prodml22__InjectedGas(stru return NULL; } else - { a = (prodml22__InjectedGas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, sizeof(prodml22__InjectedGas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__InjectedGas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, sizeof(prodml23__InjectedGas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml22__InjectedGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml23__InjectedGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__InjectedGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__InjectedGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__InjectedGas *p; - size_t k = sizeof(prodml22__InjectedGas); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, n, gsoap_eml2_3_fdelete); + prodml23__InjectedGas *p; + size_t k = sizeof(prodml23__InjectedGas); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__InjectedGas); + { p = SOAP_NEW(soap, prodml23__InjectedGas); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__InjectedGas, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__InjectedGas, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__InjectedGas location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__InjectedGas location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -226072,86 +226222,86 @@ SOAP_FMAC1 prodml22__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml22__Injecte return p; } -int prodml22__InjectedGas::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__InjectedGas::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__InjectedGas(soap, tag ? tag : "prodml22:InjectedGas", -2, this, type)) + if (soap_out_prodml23__InjectedGas(soap, tag ? tag : "prodml23:InjectedGas", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__InjectedGas::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__InjectedGas::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__InjectedGas(soap, this, tag, type); + return soap_get_prodml23__InjectedGas(soap, this, tag, type); } -SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_get_prodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InjectedGas * SOAP_FMAC4 soap_get_prodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__InjectedGas(soap, tag, p, type))) + if ((p = soap_in_prodml23__InjectedGas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__HydrocarbonAnalysis::soap_default(struct soap *soap) +void prodml23__HydrocarbonAnalysis::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidAnalysis::soap_default(soap); - this->prodml22__HydrocarbonAnalysis::SampleIntegrityAndPreparation = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, &this->prodml22__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis); - soap_default_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap, &this->prodml22__HydrocarbonAnalysis::ConstantCompositionExpansionTest); - soap_default_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap, &this->prodml22__HydrocarbonAnalysis::SaturationTest); - soap_default_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap, &this->prodml22__HydrocarbonAnalysis::DifferentialLiberationTest); - soap_default_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap, &this->prodml22__HydrocarbonAnalysis::ConstantVolumeDepletionTest); - soap_default_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap, &this->prodml22__HydrocarbonAnalysis::SeparatorTest); - soap_default_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap, &this->prodml22__HydrocarbonAnalysis::TransportTest); - soap_default_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap, &this->prodml22__HydrocarbonAnalysis::VaporLiquidEquilibriumTest); - soap_default_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap, &this->prodml22__HydrocarbonAnalysis::SwellingTest); - soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap, &this->prodml22__HydrocarbonAnalysis::SlimTubeTest); - soap_default_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap, &this->prodml22__HydrocarbonAnalysis::MultipleContactMiscibilityTest); - soap_default_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap, &this->prodml22__HydrocarbonAnalysis::STOAnalysis); - soap_default_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap, &this->prodml22__HydrocarbonAnalysis::InterfacialTensionTest); - this->prodml22__HydrocarbonAnalysis::FluidSample = NULL; + this->prodml23__FluidAnalysis::soap_default(soap); + this->prodml23__HydrocarbonAnalysis::SampleIntegrityAndPreparation = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, &this->prodml23__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis); + soap_default_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap, &this->prodml23__HydrocarbonAnalysis::ConstantCompositionExpansionTest); + soap_default_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap, &this->prodml23__HydrocarbonAnalysis::SaturationTest); + soap_default_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap, &this->prodml23__HydrocarbonAnalysis::DifferentialLiberationTest); + soap_default_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap, &this->prodml23__HydrocarbonAnalysis::ConstantVolumeDepletionTest); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap, &this->prodml23__HydrocarbonAnalysis::SeparatorTest); + soap_default_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap, &this->prodml23__HydrocarbonAnalysis::TransportTest); + soap_default_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap, &this->prodml23__HydrocarbonAnalysis::VaporLiquidEquilibriumTest); + soap_default_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap, &this->prodml23__HydrocarbonAnalysis::SwellingTest); + soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap, &this->prodml23__HydrocarbonAnalysis::SlimTubeTest); + soap_default_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap, &this->prodml23__HydrocarbonAnalysis::MultipleContactMiscibilityTest); + soap_default_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap, &this->prodml23__HydrocarbonAnalysis::STOAnalysis); + soap_default_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap, &this->prodml23__HydrocarbonAnalysis::InterfacialTensionTest); + this->prodml23__HydrocarbonAnalysis::FluidSample = NULL; } -void prodml22__HydrocarbonAnalysis::soap_serialize(struct soap *soap) const +void prodml23__HydrocarbonAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__SampleIntegrityAndPreparation(soap, &this->prodml22__HydrocarbonAnalysis::SampleIntegrityAndPreparation); - soap_serialize_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, &this->prodml22__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap, &this->prodml22__HydrocarbonAnalysis::ConstantCompositionExpansionTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap, &this->prodml22__HydrocarbonAnalysis::SaturationTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap, &this->prodml22__HydrocarbonAnalysis::DifferentialLiberationTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap, &this->prodml22__HydrocarbonAnalysis::ConstantVolumeDepletionTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap, &this->prodml22__HydrocarbonAnalysis::SeparatorTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap, &this->prodml22__HydrocarbonAnalysis::TransportTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap, &this->prodml22__HydrocarbonAnalysis::VaporLiquidEquilibriumTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap, &this->prodml22__HydrocarbonAnalysis::SwellingTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap, &this->prodml22__HydrocarbonAnalysis::SlimTubeTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap, &this->prodml22__HydrocarbonAnalysis::MultipleContactMiscibilityTest); - soap_serialize_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap, &this->prodml22__HydrocarbonAnalysis::STOAnalysis); - soap_serialize_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap, &this->prodml22__HydrocarbonAnalysis::InterfacialTensionTest); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__HydrocarbonAnalysis::FluidSample); - this->prodml22__FluidAnalysis::soap_serialize(soap); + soap_serialize_PointerToprodml23__SampleIntegrityAndPreparation(soap, &this->prodml23__HydrocarbonAnalysis::SampleIntegrityAndPreparation); + soap_serialize_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, &this->prodml23__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap, &this->prodml23__HydrocarbonAnalysis::ConstantCompositionExpansionTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap, &this->prodml23__HydrocarbonAnalysis::SaturationTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap, &this->prodml23__HydrocarbonAnalysis::DifferentialLiberationTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap, &this->prodml23__HydrocarbonAnalysis::ConstantVolumeDepletionTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap, &this->prodml23__HydrocarbonAnalysis::SeparatorTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap, &this->prodml23__HydrocarbonAnalysis::TransportTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap, &this->prodml23__HydrocarbonAnalysis::VaporLiquidEquilibriumTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap, &this->prodml23__HydrocarbonAnalysis::SwellingTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap, &this->prodml23__HydrocarbonAnalysis::SlimTubeTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap, &this->prodml23__HydrocarbonAnalysis::MultipleContactMiscibilityTest); + soap_serialize_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap, &this->prodml23__HydrocarbonAnalysis::STOAnalysis); + soap_serialize_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap, &this->prodml23__HydrocarbonAnalysis::InterfacialTensionTest); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__HydrocarbonAnalysis::FluidSample); + this->prodml23__FluidAnalysis::soap_serialize(soap); #endif } -int prodml22__HydrocarbonAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__HydrocarbonAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__HydrocarbonAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__HydrocarbonAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HydrocarbonAnalysis(struct soap *soap, const char *tag, int id, const prodml22__HydrocarbonAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HydrocarbonAnalysis(struct soap *soap, const char *tag, int id, const prodml23__HydrocarbonAnalysis *a, const char *type) { if (!type) - type = "prodml22:HydrocarbonAnalysis"; + type = "prodml23:HydrocarbonAnalysis"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__HydrocarbonAnalysis), type ? type : "prodml22:HydrocarbonAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis), type ? type : "prodml23:HydrocarbonAnalysis")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -226173,92 +226323,92 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HydrocarbonAnalysis(struct soap *so return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:RequestDate", -1, &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:RequestDate", -1, &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Client", -1, &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Client", -1, &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", -1, &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", -1, &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", -1, &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", -1, &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", -1, &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", -1, &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", -1, &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", -1, &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidAnalysis::StandardConditions) - { if (soap_element_empty(soap, "prodml22:StandardConditions", 0, NULL)) + if (!a->prodml23__FluidAnalysis::StandardConditions) + { if (soap_element_empty(soap, "prodml23:StandardConditions", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", -1, &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", -1, &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) return soap->error; - if (soap_out_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", -1, &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + if (soap_out_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", -1, &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) return soap->error; - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", -1, &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", -1, &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", -1, &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", -1, &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", -1, &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", -1, &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) return soap->error; - if (soap_out_PointerToprodml22__SampleIntegrityAndPreparation(soap, "prodml22:SampleIntegrityAndPreparation", -1, &a->prodml22__HydrocarbonAnalysis::SampleIntegrityAndPreparation, "prodml22:SampleIntegrityAndPreparation")) + if (soap_out_PointerToprodml23__SampleIntegrityAndPreparation(soap, "prodml23:SampleIntegrityAndPreparation", -1, &a->prodml23__HydrocarbonAnalysis::SampleIntegrityAndPreparation, "prodml23:SampleIntegrityAndPreparation")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", -1, &a->prodml22__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", -1, &a->prodml23__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap, "prodml22:ConstantCompositionExpansionTest", -1, &a->prodml22__HydrocarbonAnalysis::ConstantCompositionExpansionTest, "prodml22:ConstantCompositionExpansionTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap, "prodml23:ConstantCompositionExpansionTest", -1, &a->prodml23__HydrocarbonAnalysis::ConstantCompositionExpansionTest, "prodml23:ConstantCompositionExpansionTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap, "prodml22:SaturationTest", -1, &a->prodml22__HydrocarbonAnalysis::SaturationTest, "prodml22:SaturationTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap, "prodml23:SaturationTest", -1, &a->prodml23__HydrocarbonAnalysis::SaturationTest, "prodml23:SaturationTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap, "prodml22:DifferentialLiberationTest", -1, &a->prodml22__HydrocarbonAnalysis::DifferentialLiberationTest, "prodml22:DifferentialLiberationTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap, "prodml23:DifferentialLiberationTest", -1, &a->prodml23__HydrocarbonAnalysis::DifferentialLiberationTest, "prodml23:DifferentialLiberationTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap, "prodml22:ConstantVolumeDepletionTest", -1, &a->prodml22__HydrocarbonAnalysis::ConstantVolumeDepletionTest, "prodml22:ConstantVolumeDepletionTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap, "prodml23:ConstantVolumeDepletionTest", -1, &a->prodml23__HydrocarbonAnalysis::ConstantVolumeDepletionTest, "prodml23:ConstantVolumeDepletionTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap, "prodml22:SeparatorTest", -1, &a->prodml22__HydrocarbonAnalysis::SeparatorTest, "prodml22:FluidSeparatorTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap, "prodml23:SeparatorTest", -1, &a->prodml23__HydrocarbonAnalysis::SeparatorTest, "prodml23:FluidSeparatorTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap, "prodml22:TransportTest", -1, &a->prodml22__HydrocarbonAnalysis::TransportTest, "prodml22:OtherMeasurementTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap, "prodml23:TransportTest", -1, &a->prodml23__HydrocarbonAnalysis::TransportTest, "prodml23:OtherMeasurementTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap, "prodml22:VaporLiquidEquilibriumTest", -1, &a->prodml22__HydrocarbonAnalysis::VaporLiquidEquilibriumTest, "prodml22:VaporLiquidEquilibriumTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap, "prodml23:VaporLiquidEquilibriumTest", -1, &a->prodml23__HydrocarbonAnalysis::VaporLiquidEquilibriumTest, "prodml23:VaporLiquidEquilibriumTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap, "prodml22:SwellingTest", -1, &a->prodml22__HydrocarbonAnalysis::SwellingTest, "prodml22:SwellingTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap, "prodml23:SwellingTest", -1, &a->prodml23__HydrocarbonAnalysis::SwellingTest, "prodml23:SwellingTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap, "prodml22:SlimTubeTest", -1, &a->prodml22__HydrocarbonAnalysis::SlimTubeTest, "prodml22:SlimTubeTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap, "prodml23:SlimTubeTest", -1, &a->prodml23__HydrocarbonAnalysis::SlimTubeTest, "prodml23:SlimTubeTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap, "prodml22:MultipleContactMiscibilityTest", -1, &a->prodml22__HydrocarbonAnalysis::MultipleContactMiscibilityTest, "prodml22:MultipleContactMiscibilityTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap, "prodml23:MultipleContactMiscibilityTest", -1, &a->prodml23__HydrocarbonAnalysis::MultipleContactMiscibilityTest, "prodml23:MultipleContactMiscibilityTest")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap, "prodml22:STOAnalysis", -1, &a->prodml22__HydrocarbonAnalysis::STOAnalysis, "prodml22:STOAnalysis")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap, "prodml23:STOAnalysis", -1, &a->prodml23__HydrocarbonAnalysis::STOAnalysis, "prodml23:STOAnalysis")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap, "prodml22:InterfacialTensionTest", -1, &a->prodml22__HydrocarbonAnalysis::InterfacialTensionTest, "prodml22:InterfacialTensionTest")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap, "prodml23:InterfacialTensionTest", -1, &a->prodml23__HydrocarbonAnalysis::InterfacialTensionTest, "prodml23:InterfacialTensionTest")) return soap->error; - if (!a->prodml22__HydrocarbonAnalysis::FluidSample) - { if (soap_element_empty(soap, "prodml22:FluidSample", 0, NULL)) + if (!a->prodml23__HydrocarbonAnalysis::FluidSample) + { if (soap_element_empty(soap, "prodml23:FluidSample", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", -1, &a->prodml22__HydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) + else if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", -1, &a->prodml23__HydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__HydrocarbonAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__HydrocarbonAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__HydrocarbonAnalysis(soap, tag, this, type); + return soap_in_prodml23__HydrocarbonAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__HydrocarbonAnalysis(struct soap *soap, const char *tag, prodml22__HydrocarbonAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml23__HydrocarbonAnalysis(struct soap *soap, const char *tag, prodml23__HydrocarbonAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__HydrocarbonAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis, sizeof(prodml22__HydrocarbonAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__HydrocarbonAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis, sizeof(prodml23__HydrocarbonAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__HydrocarbonAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__HydrocarbonAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -226344,145 +226494,145 @@ SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__Hydrocar continue; } if (soap_flag_RequestDate2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:RequestDate", &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:RequestDate", &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) { soap_flag_RequestDate2--; continue; } } if (soap_flag_Client2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Client", &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Client", &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) { soap_flag_Client2--; continue; } } if (soap_flag_StartTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime2--; continue; } } if (soap_flag_EndTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime2--; continue; } } if (soap_flag_AnalysisDescription2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) { soap_flag_AnalysisDescription2--; continue; } } if (soap_flag_AnalysisPurpose2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) { soap_flag_AnalysisPurpose2--; continue; } } if (soap_flag_AnalysisSite2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) { soap_flag_AnalysisSite2--; continue; } } if (soap_flag_LabContact2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) { soap_flag_LabContact2--; continue; } } if (soap_flag_StandardConditions2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) { soap_flag_StandardConditions2--; continue; } } if (soap_flag_AnalysisQuality2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + { if (soap_in_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) { soap_flag_AnalysisQuality2--; continue; } } if (soap_flag_FluidComponentCatalog2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + { if (soap_in_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) { soap_flag_FluidComponentCatalog2--; continue; } } if (soap_flag_Remark2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark2--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) continue; } if (soap_flag_SampleIntegrityAndPreparation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SampleIntegrityAndPreparation(soap, "prodml22:SampleIntegrityAndPreparation", &a->prodml22__HydrocarbonAnalysis::SampleIntegrityAndPreparation, "prodml22:SampleIntegrityAndPreparation")) + { if (soap_in_PointerToprodml23__SampleIntegrityAndPreparation(soap, "prodml23:SampleIntegrityAndPreparation", &a->prodml23__HydrocarbonAnalysis::SampleIntegrityAndPreparation, "prodml23:SampleIntegrityAndPreparation")) { soap_flag_SampleIntegrityAndPreparation1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", &a->prodml22__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", &a->prodml23__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap, "prodml22:ConstantCompositionExpansionTest", &a->prodml22__HydrocarbonAnalysis::ConstantCompositionExpansionTest, "prodml22:ConstantCompositionExpansionTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap, "prodml23:ConstantCompositionExpansionTest", &a->prodml23__HydrocarbonAnalysis::ConstantCompositionExpansionTest, "prodml23:ConstantCompositionExpansionTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap, "prodml22:SaturationTest", &a->prodml22__HydrocarbonAnalysis::SaturationTest, "prodml22:SaturationTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap, "prodml23:SaturationTest", &a->prodml23__HydrocarbonAnalysis::SaturationTest, "prodml23:SaturationTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap, "prodml22:DifferentialLiberationTest", &a->prodml22__HydrocarbonAnalysis::DifferentialLiberationTest, "prodml22:DifferentialLiberationTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap, "prodml23:DifferentialLiberationTest", &a->prodml23__HydrocarbonAnalysis::DifferentialLiberationTest, "prodml23:DifferentialLiberationTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap, "prodml22:ConstantVolumeDepletionTest", &a->prodml22__HydrocarbonAnalysis::ConstantVolumeDepletionTest, "prodml22:ConstantVolumeDepletionTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap, "prodml23:ConstantVolumeDepletionTest", &a->prodml23__HydrocarbonAnalysis::ConstantVolumeDepletionTest, "prodml23:ConstantVolumeDepletionTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap, "prodml22:SeparatorTest", &a->prodml22__HydrocarbonAnalysis::SeparatorTest, "prodml22:FluidSeparatorTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap, "prodml23:SeparatorTest", &a->prodml23__HydrocarbonAnalysis::SeparatorTest, "prodml23:FluidSeparatorTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap, "prodml22:TransportTest", &a->prodml22__HydrocarbonAnalysis::TransportTest, "prodml22:OtherMeasurementTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap, "prodml23:TransportTest", &a->prodml23__HydrocarbonAnalysis::TransportTest, "prodml23:OtherMeasurementTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap, "prodml22:VaporLiquidEquilibriumTest", &a->prodml22__HydrocarbonAnalysis::VaporLiquidEquilibriumTest, "prodml22:VaporLiquidEquilibriumTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap, "prodml23:VaporLiquidEquilibriumTest", &a->prodml23__HydrocarbonAnalysis::VaporLiquidEquilibriumTest, "prodml23:VaporLiquidEquilibriumTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap, "prodml22:SwellingTest", &a->prodml22__HydrocarbonAnalysis::SwellingTest, "prodml22:SwellingTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap, "prodml23:SwellingTest", &a->prodml23__HydrocarbonAnalysis::SwellingTest, "prodml23:SwellingTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap, "prodml22:SlimTubeTest", &a->prodml22__HydrocarbonAnalysis::SlimTubeTest, "prodml22:SlimTubeTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap, "prodml23:SlimTubeTest", &a->prodml23__HydrocarbonAnalysis::SlimTubeTest, "prodml23:SlimTubeTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap, "prodml22:MultipleContactMiscibilityTest", &a->prodml22__HydrocarbonAnalysis::MultipleContactMiscibilityTest, "prodml22:MultipleContactMiscibilityTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap, "prodml23:MultipleContactMiscibilityTest", &a->prodml23__HydrocarbonAnalysis::MultipleContactMiscibilityTest, "prodml23:MultipleContactMiscibilityTest")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap, "prodml22:STOAnalysis", &a->prodml22__HydrocarbonAnalysis::STOAnalysis, "prodml22:STOAnalysis")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap, "prodml23:STOAnalysis", &a->prodml23__HydrocarbonAnalysis::STOAnalysis, "prodml23:STOAnalysis")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap, "prodml22:InterfacialTensionTest", &a->prodml22__HydrocarbonAnalysis::InterfacialTensionTest, "prodml22:InterfacialTensionTest")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap, "prodml23:InterfacialTensionTest", &a->prodml23__HydrocarbonAnalysis::InterfacialTensionTest, "prodml23:InterfacialTensionTest")) continue; } if (soap_flag_FluidSample1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSample", &a->prodml22__HydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSample", &a->prodml23__HydrocarbonAnalysis::FluidSample, "eml23:DataObjectReference")) { soap_flag_FluidSample1--; continue; } @@ -226496,7 +226646,7 @@ SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__Hydrocar } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality2 > 0 || !a->prodml22__HydrocarbonAnalysis::FluidSample)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality2 > 0 || !a->prodml23__HydrocarbonAnalysis::FluidSample)) { soap->error = SOAP_OCCURS; return NULL; } @@ -226506,35 +226656,35 @@ SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__Hydrocar return NULL; } else - { a = (prodml22__HydrocarbonAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis, sizeof(prodml22__HydrocarbonAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__HydrocarbonAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis, sizeof(prodml23__HydrocarbonAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__HydrocarbonAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__HydrocarbonAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__HydrocarbonAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__HydrocarbonAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__HydrocarbonAnalysis *p; - size_t k = sizeof(prodml22__HydrocarbonAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__HydrocarbonAnalysis *p; + size_t k = sizeof(prodml23__HydrocarbonAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__HydrocarbonAnalysis); + { p = SOAP_NEW(soap, prodml23__HydrocarbonAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__HydrocarbonAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__HydrocarbonAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__HydrocarbonAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__HydrocarbonAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -226544,88 +226694,88 @@ SOAP_FMAC1 prodml22__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__HydrocarbonAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__HydrocarbonAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__HydrocarbonAnalysis(soap, tag ? tag : "prodml22:HydrocarbonAnalysis", -2, this, type)) + if (soap_out_prodml23__HydrocarbonAnalysis(soap, tag ? tag : "prodml23:HydrocarbonAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__HydrocarbonAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__HydrocarbonAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__HydrocarbonAnalysis(soap, this, tag, type); + return soap_get_prodml23__HydrocarbonAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml22__HydrocarbonAnalysis(struct soap *soap, prodml22__HydrocarbonAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml23__HydrocarbonAnalysis(struct soap *soap, prodml23__HydrocarbonAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__HydrocarbonAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__HydrocarbonAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidVolumeReference::soap_default(struct soap *soap) +void prodml23__FluidVolumeReference::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__VolumeReferenceKindExt(soap, &this->prodml22__FluidVolumeReference::Kind); - this->prodml22__FluidVolumeReference::ReferenceVolume = NULL; - this->prodml22__FluidVolumeReference::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidVolumeReference::uid); + soap_default_prodml23__VolumeReferenceKindExt(soap, &this->prodml23__FluidVolumeReference::Kind); + this->prodml23__FluidVolumeReference::ReferenceVolume = NULL; + this->prodml23__FluidVolumeReference::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidVolumeReference::uid); } -void prodml22__FluidVolumeReference::soap_serialize(struct soap *soap) const +void prodml23__FluidVolumeReference::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__VolumeReferenceKindExt(soap, &this->prodml22__FluidVolumeReference::Kind); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidVolumeReference::ReferenceVolume); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidVolumeReference::Remark); + soap_serialize_prodml23__VolumeReferenceKindExt(soap, &this->prodml23__FluidVolumeReference::Kind); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidVolumeReference::ReferenceVolume); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidVolumeReference::Remark); #endif } -int prodml22__FluidVolumeReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidVolumeReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidVolumeReference(soap, tag, id, this, type); + return soap_out_prodml23__FluidVolumeReference(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidVolumeReference(struct soap *soap, const char *tag, int id, const prodml22__FluidVolumeReference *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidVolumeReference(struct soap *soap, const char *tag, int id, const prodml23__FluidVolumeReference *a, const char *type) { if (!type) - type = "prodml22:FluidVolumeReference"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidVolumeReference*)a)->uid), 1); + type = "prodml23:FluidVolumeReference"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidVolumeReference*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidVolumeReference), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference), type)) return soap->error; - if (soap_out_prodml22__VolumeReferenceKindExt(soap, "prodml22:Kind", -1, &a->prodml22__FluidVolumeReference::Kind, "prodml22:VolumeReferenceKindExt")) + if (soap_out_prodml23__VolumeReferenceKindExt(soap, "prodml23:Kind", -1, &a->prodml23__FluidVolumeReference::Kind, "prodml23:VolumeReferenceKindExt")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:ReferenceVolume", -1, &a->prodml22__FluidVolumeReference::ReferenceVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:ReferenceVolume", -1, &a->prodml23__FluidVolumeReference::ReferenceVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidVolumeReference::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidVolumeReference::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidVolumeReference::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidVolumeReference::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidVolumeReference(soap, tag, this, type); + return soap_in_prodml23__FluidVolumeReference(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidVolumeReference * SOAP_FMAC4 soap_in_prodml22__FluidVolumeReference(struct soap *soap, const char *tag, prodml22__FluidVolumeReference *a, const char *type) +SOAP_FMAC3 prodml23__FluidVolumeReference * SOAP_FMAC4 soap_in_prodml23__FluidVolumeReference(struct soap *soap, const char *tag, prodml23__FluidVolumeReference *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidVolumeReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, sizeof(prodml22__FluidVolumeReference), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidVolumeReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, sizeof(prodml23__FluidVolumeReference), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidVolumeReference *)a->soap_in(soap, tag, type); + return (prodml23__FluidVolumeReference *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidVolumeReference*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidVolumeReference*)a)->uid)) return NULL; size_t soap_flag_Kind1 = 1; size_t soap_flag_ReferenceVolume1 = 1; @@ -226635,19 +226785,19 @@ SOAP_FMAC3 prodml22__FluidVolumeReference * SOAP_FMAC4 soap_in_prodml22__FluidVo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__VolumeReferenceKindExt(soap, "prodml22:Kind", &a->prodml22__FluidVolumeReference::Kind, "prodml22:VolumeReferenceKindExt")) + { if (soap_in_prodml23__VolumeReferenceKindExt(soap, "prodml23:Kind", &a->prodml23__FluidVolumeReference::Kind, "prodml23:VolumeReferenceKindExt")) { soap_flag_Kind1--; continue; } } if (soap_flag_ReferenceVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:ReferenceVolume", &a->prodml22__FluidVolumeReference::ReferenceVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:ReferenceVolume", &a->prodml23__FluidVolumeReference::ReferenceVolume, "eml23:VolumeMeasure")) { soap_flag_ReferenceVolume1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidVolumeReference::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidVolumeReference::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -226671,35 +226821,35 @@ SOAP_FMAC3 prodml22__FluidVolumeReference * SOAP_FMAC4 soap_in_prodml22__FluidVo return NULL; } else - { a = (prodml22__FluidVolumeReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, sizeof(prodml22__FluidVolumeReference), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidVolumeReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, sizeof(prodml23__FluidVolumeReference), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml22__FluidVolumeReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml23__FluidVolumeReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidVolumeReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidVolumeReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidVolumeReference *p; - size_t k = sizeof(prodml22__FluidVolumeReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, n, gsoap_eml2_3_fdelete); + prodml23__FluidVolumeReference *p; + size_t k = sizeof(prodml23__FluidVolumeReference); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidVolumeReference); + { p = SOAP_NEW(soap, prodml23__FluidVolumeReference); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidVolumeReference, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidVolumeReference, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidVolumeReference location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidVolumeReference location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -226709,188 +226859,188 @@ SOAP_FMAC1 prodml22__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__FluidVolumeReference::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidVolumeReference::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidVolumeReference(soap, tag ? tag : "prodml22:FluidVolumeReference", -2, this, type)) + if (soap_out_prodml23__FluidVolumeReference(soap, tag ? tag : "prodml23:FluidVolumeReference", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidVolumeReference::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidVolumeReference::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidVolumeReference(soap, this, tag, type); + return soap_get_prodml23__FluidVolumeReference(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidVolumeReference * SOAP_FMAC4 soap_get_prodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidVolumeReference * SOAP_FMAC4 soap_get_prodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidVolumeReference(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidVolumeReference(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSeparatorTestStep::soap_default(struct soap *soap) +void prodml23__FluidSeparatorTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__FluidSeparatorTestStep::StepNumber); - this->prodml22__FluidSeparatorTestStep::StepTemperature = NULL; - this->prodml22__FluidSeparatorTestStep::StepPressure = NULL; - this->prodml22__FluidSeparatorTestStep::BubblePointPressure = NULL; - this->prodml22__FluidSeparatorTestStep::ResidualAPIGravity = NULL; - this->prodml22__FluidSeparatorTestStep::OilSpecificGravity = NULL; - this->prodml22__FluidSeparatorTestStep::OilDensity = NULL; - this->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorStd = NULL; - this->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected = NULL; - this->prodml22__FluidSeparatorTestStep::OilViscosity = NULL; - this->prodml22__FluidSeparatorTestStep::StageSeparatorGORStd = NULL; - this->prodml22__FluidSeparatorTestStep::StageSeparatorGORCorrected = NULL; - this->prodml22__FluidSeparatorTestStep::GasMolecularWeight = NULL; - this->prodml22__FluidSeparatorTestStep::GasGravity = NULL; - this->prodml22__FluidSeparatorTestStep::GasDensity = NULL; - this->prodml22__FluidSeparatorTestStep::GasZFactor = NULL; - this->prodml22__FluidSeparatorTestStep::GasViscosity = NULL; - this->prodml22__FluidSeparatorTestStep::GasVolume = NULL; - this->prodml22__FluidSeparatorTestStep::OilShrinkageFactor = NULL; - this->prodml22__FluidSeparatorTestStep::SaturationPressure = NULL; - this->prodml22__FluidSeparatorTestStep::FluidCondition = NULL; - this->prodml22__FluidSeparatorTestStep::PhasesPresent = NULL; - this->prodml22__FluidSeparatorTestStep::LiquidComposition = NULL; - this->prodml22__FluidSeparatorTestStep::VaporComposition = NULL; - this->prodml22__FluidSeparatorTestStep::OverallComposition = NULL; - this->prodml22__FluidSeparatorTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidSeparatorTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__FluidSeparatorTestStep::StepNumber); + this->prodml23__FluidSeparatorTestStep::StepTemperature = NULL; + this->prodml23__FluidSeparatorTestStep::StepPressure = NULL; + this->prodml23__FluidSeparatorTestStep::BubblePointPressure = NULL; + this->prodml23__FluidSeparatorTestStep::ResidualAPIGravity = NULL; + this->prodml23__FluidSeparatorTestStep::OilSpecificGravity = NULL; + this->prodml23__FluidSeparatorTestStep::OilDensity = NULL; + this->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorStd = NULL; + this->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected = NULL; + this->prodml23__FluidSeparatorTestStep::OilViscosity = NULL; + this->prodml23__FluidSeparatorTestStep::StageSeparatorGORStd = NULL; + this->prodml23__FluidSeparatorTestStep::StageSeparatorGORCorrected = NULL; + this->prodml23__FluidSeparatorTestStep::GasMolecularWeight = NULL; + this->prodml23__FluidSeparatorTestStep::GasGravity = NULL; + this->prodml23__FluidSeparatorTestStep::GasDensity = NULL; + this->prodml23__FluidSeparatorTestStep::GasZFactor = NULL; + this->prodml23__FluidSeparatorTestStep::GasViscosity = NULL; + this->prodml23__FluidSeparatorTestStep::GasVolume = NULL; + this->prodml23__FluidSeparatorTestStep::OilShrinkageFactor = NULL; + this->prodml23__FluidSeparatorTestStep::SaturationPressure = NULL; + this->prodml23__FluidSeparatorTestStep::FluidCondition = NULL; + this->prodml23__FluidSeparatorTestStep::PhasesPresent = NULL; + this->prodml23__FluidSeparatorTestStep::LiquidComposition = NULL; + this->prodml23__FluidSeparatorTestStep::VaporComposition = NULL; + this->prodml23__FluidSeparatorTestStep::OverallComposition = NULL; + this->prodml23__FluidSeparatorTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidSeparatorTestStep::uid); } -void prodml22__FluidSeparatorTestStep::soap_serialize(struct soap *soap) const +void prodml23__FluidSeparatorTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidSeparatorTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidSeparatorTestStep::StepTemperature); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidSeparatorTestStep::StepPressure); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidSeparatorTestStep::BubblePointPressure); - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__FluidSeparatorTestStep::ResidualAPIGravity); - soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml22__FluidSeparatorTestStep::OilSpecificGravity); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::OilDensity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorStd); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidSeparatorTestStep::OilViscosity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::StageSeparatorGORStd); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::StageSeparatorGORCorrected); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__FluidSeparatorTestStep::GasMolecularWeight); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidSeparatorTestStep::GasGravity); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::GasDensity); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidSeparatorTestStep::GasZFactor); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidSeparatorTestStep::GasViscosity); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::GasVolume); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTestStep::OilShrinkageFactor); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__FluidSeparatorTestStep::SaturationPressure); - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, &this->prodml22__FluidSeparatorTestStep::FluidCondition); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__FluidSeparatorTestStep::PhasesPresent); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__FluidSeparatorTestStep::LiquidComposition); - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__FluidSeparatorTestStep::VaporComposition); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__FluidSeparatorTestStep::OverallComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidSeparatorTestStep::Remark); + soap_embedded(soap, &this->prodml23__FluidSeparatorTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidSeparatorTestStep::StepTemperature); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidSeparatorTestStep::StepPressure); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidSeparatorTestStep::BubblePointPressure); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__FluidSeparatorTestStep::ResidualAPIGravity); + soap_serialize_PointerToeml23__DimensionlessMeasure(soap, &this->prodml23__FluidSeparatorTestStep::OilSpecificGravity); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::OilDensity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorStd); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidSeparatorTestStep::OilViscosity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::StageSeparatorGORStd); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::StageSeparatorGORCorrected); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__FluidSeparatorTestStep::GasMolecularWeight); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidSeparatorTestStep::GasGravity); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::GasDensity); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidSeparatorTestStep::GasZFactor); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidSeparatorTestStep::GasViscosity); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::GasVolume); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTestStep::OilShrinkageFactor); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__FluidSeparatorTestStep::SaturationPressure); + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, &this->prodml23__FluidSeparatorTestStep::FluidCondition); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__FluidSeparatorTestStep::PhasesPresent); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__FluidSeparatorTestStep::LiquidComposition); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__FluidSeparatorTestStep::VaporComposition); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__FluidSeparatorTestStep::OverallComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidSeparatorTestStep::Remark); #endif } -int prodml22__FluidSeparatorTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSeparatorTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSeparatorTestStep(soap, tag, id, this, type); + return soap_out_prodml23__FluidSeparatorTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSeparatorTestStep(struct soap *soap, const char *tag, int id, const prodml22__FluidSeparatorTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSeparatorTestStep(struct soap *soap, const char *tag, int id, const prodml23__FluidSeparatorTestStep *a, const char *type) { if (!type) - type = "prodml22:FluidSeparatorTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSeparatorTestStep*)a)->uid), 1); + type = "prodml23:FluidSeparatorTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSeparatorTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidSeparatorTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__FluidSeparatorTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__FluidSeparatorTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__FluidSeparatorTestStep::StepTemperature) - { if (soap_element_empty(soap, "prodml22:StepTemperature", 0, NULL)) + if (!a->prodml23__FluidSeparatorTestStep::StepTemperature) + { if (soap_element_empty(soap, "prodml23:StepTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", -1, &a->prodml22__FluidSeparatorTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", -1, &a->prodml23__FluidSeparatorTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (!a->prodml22__FluidSeparatorTestStep::StepPressure) - { if (soap_element_empty(soap, "prodml22:StepPressure", 0, NULL)) + if (!a->prodml23__FluidSeparatorTestStep::StepPressure) + { if (soap_element_empty(soap, "prodml23:StepPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__FluidSeparatorTestStep::StepPressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__FluidSeparatorTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__FluidSeparatorTestStep::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__FluidSeparatorTestStep::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:ResidualAPIGravity", -1, &a->prodml22__FluidSeparatorTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:ResidualAPIGravity", -1, &a->prodml23__FluidSeparatorTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml22:OilSpecificGravity", -1, &a->prodml22__FluidSeparatorTestStep::OilSpecificGravity, "eml23:DimensionlessMeasure")) + if (soap_out_PointerToeml23__DimensionlessMeasure(soap, "prodml23:OilSpecificGravity", -1, &a->prodml23__FluidSeparatorTestStep::OilSpecificGravity, "eml23:DimensionlessMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", -1, &a->prodml22__FluidSeparatorTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", -1, &a->prodml23__FluidSeparatorTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactorStd", -1, &a->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorStd, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactorStd", -1, &a->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorStd, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactorCorrected", -1, &a->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactorCorrected", -1, &a->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", -1, &a->prodml22__FluidSeparatorTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", -1, &a->prodml23__FluidSeparatorTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:StageSeparatorGORStd", -1, &a->prodml22__FluidSeparatorTestStep::StageSeparatorGORStd, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:StageSeparatorGORStd", -1, &a->prodml23__FluidSeparatorTestStep::StageSeparatorGORStd, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:StageSeparatorGORCorrected", -1, &a->prodml22__FluidSeparatorTestStep::StageSeparatorGORCorrected, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:StageSeparatorGORCorrected", -1, &a->prodml23__FluidSeparatorTestStep::StageSeparatorGORCorrected, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", -1, &a->prodml22__FluidSeparatorTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", -1, &a->prodml23__FluidSeparatorTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasGravity", -1, &a->prodml22__FluidSeparatorTestStep::GasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasGravity", -1, &a->prodml23__FluidSeparatorTestStep::GasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", -1, &a->prodml22__FluidSeparatorTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", -1, &a->prodml23__FluidSeparatorTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasZFactor", -1, &a->prodml22__FluidSeparatorTestStep::GasZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasZFactor", -1, &a->prodml23__FluidSeparatorTestStep::GasZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__FluidSeparatorTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__FluidSeparatorTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:GasVolume", -1, &a->prodml22__FluidSeparatorTestStep::GasVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:GasVolume", -1, &a->prodml23__FluidSeparatorTestStep::GasVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilShrinkageFactor", -1, &a->prodml22__FluidSeparatorTestStep::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilShrinkageFactor", -1, &a->prodml23__FluidSeparatorTestStep::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__FluidSeparatorTestStep::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__FluidSeparatorTestStep::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", -1, &a->prodml22__FluidSeparatorTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", -1, &a->prodml23__FluidSeparatorTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", -1, &a->prodml22__FluidSeparatorTestStep::PhasesPresent, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", -1, &a->prodml23__FluidSeparatorTestStep::PhasesPresent, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__FluidSeparatorTestStep::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__FluidSeparatorTestStep::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__FluidSeparatorTestStep::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__FluidSeparatorTestStep::VaporComposition, "prodml23:VaporComposition")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__FluidSeparatorTestStep::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__FluidSeparatorTestStep::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSeparatorTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSeparatorTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSeparatorTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSeparatorTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSeparatorTestStep(soap, tag, this, type); + return soap_in_prodml23__FluidSeparatorTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml22__FluidSeparatorTestStep(struct soap *soap, const char *tag, prodml22__FluidSeparatorTestStep *a, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml23__FluidSeparatorTestStep(struct soap *soap, const char *tag, prodml23__FluidSeparatorTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSeparatorTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, sizeof(prodml22__FluidSeparatorTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSeparatorTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, sizeof(prodml23__FluidSeparatorTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSeparatorTestStep *)a->soap_in(soap, tag, type); + return (prodml23__FluidSeparatorTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSeparatorTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSeparatorTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepTemperature1 = 1; @@ -226923,157 +227073,157 @@ SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml22__Fluid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__FluidSeparatorTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__FluidSeparatorTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", &a->prodml22__FluidSeparatorTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", &a->prodml23__FluidSeparatorTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StepTemperature1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__FluidSeparatorTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__FluidSeparatorTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_BubblePointPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__FluidSeparatorTestStep::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__FluidSeparatorTestStep::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure1--; continue; } } if (soap_flag_ResidualAPIGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:ResidualAPIGravity", &a->prodml22__FluidSeparatorTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:ResidualAPIGravity", &a->prodml23__FluidSeparatorTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) { soap_flag_ResidualAPIGravity1--; continue; } } if (soap_flag_OilSpecificGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml22:OilSpecificGravity", &a->prodml22__FluidSeparatorTestStep::OilSpecificGravity, "eml23:DimensionlessMeasure")) + { if (soap_in_PointerToeml23__DimensionlessMeasure(soap, "prodml23:OilSpecificGravity", &a->prodml23__FluidSeparatorTestStep::OilSpecificGravity, "eml23:DimensionlessMeasure")) { soap_flag_OilSpecificGravity1--; continue; } } if (soap_flag_OilDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", &a->prodml22__FluidSeparatorTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", &a->prodml23__FluidSeparatorTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_OilDensity1--; continue; } } if (soap_flag_OilFormationVolumeFactorStd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactorStd", &a->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorStd, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactorStd", &a->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorStd, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilFormationVolumeFactorStd1--; continue; } } if (soap_flag_OilFormationVolumeFactorCorrected1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactorCorrected", &a->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactorCorrected", &a->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilFormationVolumeFactorCorrected1--; continue; } } if (soap_flag_OilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", &a->prodml22__FluidSeparatorTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", &a->prodml23__FluidSeparatorTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_OilViscosity1--; continue; } } if (soap_flag_StageSeparatorGORStd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:StageSeparatorGORStd", &a->prodml22__FluidSeparatorTestStep::StageSeparatorGORStd, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:StageSeparatorGORStd", &a->prodml23__FluidSeparatorTestStep::StageSeparatorGORStd, "eml23:VolumePerVolumeMeasure")) { soap_flag_StageSeparatorGORStd1--; continue; } } if (soap_flag_StageSeparatorGORCorrected1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:StageSeparatorGORCorrected", &a->prodml22__FluidSeparatorTestStep::StageSeparatorGORCorrected, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:StageSeparatorGORCorrected", &a->prodml23__FluidSeparatorTestStep::StageSeparatorGORCorrected, "eml23:VolumePerVolumeMeasure")) { soap_flag_StageSeparatorGORCorrected1--; continue; } } if (soap_flag_GasMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", &a->prodml22__FluidSeparatorTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", &a->prodml23__FluidSeparatorTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolecularWeight1--; continue; } } if (soap_flag_GasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasGravity", &a->prodml22__FluidSeparatorTestStep::GasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasGravity", &a->prodml23__FluidSeparatorTestStep::GasGravity, "xsd:double")) { soap_flag_GasGravity1--; continue; } } if (soap_flag_GasDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", &a->prodml22__FluidSeparatorTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", &a->prodml23__FluidSeparatorTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_GasDensity1--; continue; } } if (soap_flag_GasZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasZFactor", &a->prodml22__FluidSeparatorTestStep::GasZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasZFactor", &a->prodml23__FluidSeparatorTestStep::GasZFactor, "xsd:double")) { soap_flag_GasZFactor1--; continue; } } if (soap_flag_GasViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__FluidSeparatorTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__FluidSeparatorTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity1--; continue; } } if (soap_flag_GasVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:GasVolume", &a->prodml22__FluidSeparatorTestStep::GasVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:GasVolume", &a->prodml23__FluidSeparatorTestStep::GasVolume, "eml23:VolumeMeasure")) { soap_flag_GasVolume1--; continue; } } if (soap_flag_OilShrinkageFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilShrinkageFactor", &a->prodml22__FluidSeparatorTestStep::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilShrinkageFactor", &a->prodml23__FluidSeparatorTestStep::OilShrinkageFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilShrinkageFactor1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__FluidSeparatorTestStep::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__FluidSeparatorTestStep::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_FluidCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", &a->prodml22__FluidSeparatorTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + { if (soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", &a->prodml23__FluidSeparatorTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) { soap_flag_FluidCondition1--; continue; } } if (soap_flag_PhasesPresent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", &a->prodml22__FluidSeparatorTestStep::PhasesPresent, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", &a->prodml23__FluidSeparatorTestStep::PhasesPresent, "prodml23:PhasePresent")) { soap_flag_PhasesPresent1--; continue; } } if (soap_flag_LiquidComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__FluidSeparatorTestStep::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__FluidSeparatorTestStep::LiquidComposition, "prodml23:LiquidComposition")) { soap_flag_LiquidComposition1--; continue; } } if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__FluidSeparatorTestStep::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__FluidSeparatorTestStep::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__FluidSeparatorTestStep::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__FluidSeparatorTestStep::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSeparatorTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSeparatorTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -227087,7 +227237,7 @@ SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml22__Fluid } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StepNumber1 > 0 || !a->prodml22__FluidSeparatorTestStep::StepTemperature || !a->prodml22__FluidSeparatorTestStep::StepPressure)) + if ((soap_flag_StepNumber1 > 0 || !a->prodml23__FluidSeparatorTestStep::StepTemperature || !a->prodml23__FluidSeparatorTestStep::StepPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -227097,35 +227247,35 @@ SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml22__Fluid return NULL; } else - { a = (prodml22__FluidSeparatorTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, sizeof(prodml22__FluidSeparatorTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSeparatorTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, sizeof(prodml23__FluidSeparatorTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidSeparatorTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidSeparatorTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSeparatorTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSeparatorTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSeparatorTestStep *p; - size_t k = sizeof(prodml22__FluidSeparatorTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, n, gsoap_eml2_3_fdelete); + prodml23__FluidSeparatorTestStep *p; + size_t k = sizeof(prodml23__FluidSeparatorTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSeparatorTestStep); + { p = SOAP_NEW(soap, prodml23__FluidSeparatorTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSeparatorTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSeparatorTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSeparatorTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSeparatorTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -227135,116 +227285,116 @@ SOAP_FMAC1 prodml22__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__FluidSeparatorTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSeparatorTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSeparatorTestStep(soap, tag ? tag : "prodml22:FluidSeparatorTestStep", -2, this, type)) + if (soap_out_prodml23__FluidSeparatorTestStep(soap, tag ? tag : "prodml23:FluidSeparatorTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSeparatorTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSeparatorTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSeparatorTestStep(soap, this, tag, type); + return soap_get_prodml23__FluidSeparatorTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_get_prodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTestStep * SOAP_FMAC4 soap_get_prodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSeparatorTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSeparatorTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidSeparatorTest::soap_default(struct soap *soap) +void prodml23__FluidSeparatorTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__FluidSeparatorTest::TestNumber); - this->prodml22__FluidSeparatorTest::ReservoirTemperature = NULL; - this->prodml22__FluidSeparatorTest::SaturationPressure = NULL; - this->prodml22__FluidSeparatorTest::SaturatedOilFormationVolumeFactor = NULL; - this->prodml22__FluidSeparatorTest::SaturatedOilDensity = NULL; - this->prodml22__FluidSeparatorTest::SeparatorTestGOR = NULL; - this->prodml22__FluidSeparatorTest::OverallGasGravity = NULL; - this->prodml22__FluidSeparatorTest::Remark = NULL; - this->prodml22__FluidSeparatorTest::ShrinkageReference = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap, &this->prodml22__FluidSeparatorTest::SeparatorTestStep); - soap_default_eml23__String64(soap, &this->prodml22__FluidSeparatorTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__FluidSeparatorTest::TestNumber); + this->prodml23__FluidSeparatorTest::ReservoirTemperature = NULL; + this->prodml23__FluidSeparatorTest::SaturationPressure = NULL; + this->prodml23__FluidSeparatorTest::SaturatedOilFormationVolumeFactor = NULL; + this->prodml23__FluidSeparatorTest::SaturatedOilDensity = NULL; + this->prodml23__FluidSeparatorTest::SeparatorTestGOR = NULL; + this->prodml23__FluidSeparatorTest::OverallGasGravity = NULL; + this->prodml23__FluidSeparatorTest::Remark = NULL; + this->prodml23__FluidSeparatorTest::ShrinkageReference = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap, &this->prodml23__FluidSeparatorTest::SeparatorTestStep); + soap_default_eml23__String64(soap, &this->prodml23__FluidSeparatorTest::uid); } -void prodml22__FluidSeparatorTest::soap_serialize(struct soap *soap) const +void prodml23__FluidSeparatorTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidSeparatorTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidSeparatorTest::ReservoirTemperature); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__FluidSeparatorTest::SaturationPressure); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTest::SaturatedOilFormationVolumeFactor); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTest::SaturatedOilDensity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidSeparatorTest::SeparatorTestGOR); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidSeparatorTest::OverallGasGravity); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidSeparatorTest::Remark); - soap_serialize_PointerToprodml22__FluidVolumeReference(soap, &this->prodml22__FluidSeparatorTest::ShrinkageReference); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap, &this->prodml22__FluidSeparatorTest::SeparatorTestStep); + soap_embedded(soap, &this->prodml23__FluidSeparatorTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidSeparatorTest::ReservoirTemperature); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__FluidSeparatorTest::SaturationPressure); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTest::SaturatedOilFormationVolumeFactor); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTest::SaturatedOilDensity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidSeparatorTest::SeparatorTestGOR); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidSeparatorTest::OverallGasGravity); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidSeparatorTest::Remark); + soap_serialize_PointerToprodml23__FluidVolumeReference(soap, &this->prodml23__FluidSeparatorTest::ShrinkageReference); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap, &this->prodml23__FluidSeparatorTest::SeparatorTestStep); #endif } -int prodml22__FluidSeparatorTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidSeparatorTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidSeparatorTest(soap, tag, id, this, type); + return soap_out_prodml23__FluidSeparatorTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSeparatorTest(struct soap *soap, const char *tag, int id, const prodml22__FluidSeparatorTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSeparatorTest(struct soap *soap, const char *tag, int id, const prodml23__FluidSeparatorTest *a, const char *type) { if (!type) - type = "prodml22:FluidSeparatorTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidSeparatorTest*)a)->uid), 1); + type = "prodml23:FluidSeparatorTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidSeparatorTest*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidSeparatorTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__FluidSeparatorTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__FluidSeparatorTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__FluidSeparatorTest::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__FluidSeparatorTest::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__FluidSeparatorTest::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__FluidSeparatorTest::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SaturatedOilFormationVolumeFactor", -1, &a->prodml22__FluidSeparatorTest::SaturatedOilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SaturatedOilFormationVolumeFactor", -1, &a->prodml23__FluidSeparatorTest::SaturatedOilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:SaturatedOilDensity", -1, &a->prodml22__FluidSeparatorTest::SaturatedOilDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:SaturatedOilDensity", -1, &a->prodml23__FluidSeparatorTest::SaturatedOilDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SeparatorTestGOR", -1, &a->prodml22__FluidSeparatorTest::SeparatorTestGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SeparatorTestGOR", -1, &a->prodml23__FluidSeparatorTest::SeparatorTestGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:OverallGasGravity", -1, &a->prodml22__FluidSeparatorTest::OverallGasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:OverallGasGravity", -1, &a->prodml23__FluidSeparatorTest::OverallGasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidSeparatorTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidSeparatorTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidVolumeReference(soap, "prodml22:ShrinkageReference", -1, &a->prodml22__FluidSeparatorTest::ShrinkageReference, "prodml22:FluidVolumeReference")) + if (soap_out_PointerToprodml23__FluidVolumeReference(soap, "prodml23:ShrinkageReference", -1, &a->prodml23__FluidSeparatorTest::ShrinkageReference, "prodml23:FluidVolumeReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap, "prodml22:SeparatorTestStep", -1, &a->prodml22__FluidSeparatorTest::SeparatorTestStep, "prodml22:FluidSeparatorTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap, "prodml23:SeparatorTestStep", -1, &a->prodml23__FluidSeparatorTest::SeparatorTestStep, "prodml23:FluidSeparatorTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidSeparatorTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSeparatorTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidSeparatorTest(soap, tag, this, type); + return soap_in_prodml23__FluidSeparatorTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidSeparatorTest * SOAP_FMAC4 soap_in_prodml22__FluidSeparatorTest(struct soap *soap, const char *tag, prodml22__FluidSeparatorTest *a, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTest * SOAP_FMAC4 soap_in_prodml23__FluidSeparatorTest(struct soap *soap, const char *tag, prodml23__FluidSeparatorTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidSeparatorTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, sizeof(prodml22__FluidSeparatorTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidSeparatorTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, sizeof(prodml23__FluidSeparatorTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidSeparatorTest *)a->soap_in(soap, tag, type); + return (prodml23__FluidSeparatorTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidSeparatorTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidSeparatorTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_ReservoirTemperature1 = 1; @@ -227260,61 +227410,61 @@ SOAP_FMAC3 prodml22__FluidSeparatorTest * SOAP_FMAC4 soap_in_prodml22__FluidSepa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__FluidSeparatorTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__FluidSeparatorTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_ReservoirTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__FluidSeparatorTest::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__FluidSeparatorTest::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__FluidSeparatorTest::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__FluidSeparatorTest::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_SaturatedOilFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SaturatedOilFormationVolumeFactor", &a->prodml22__FluidSeparatorTest::SaturatedOilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SaturatedOilFormationVolumeFactor", &a->prodml23__FluidSeparatorTest::SaturatedOilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_SaturatedOilFormationVolumeFactor1--; continue; } } if (soap_flag_SaturatedOilDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:SaturatedOilDensity", &a->prodml22__FluidSeparatorTest::SaturatedOilDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:SaturatedOilDensity", &a->prodml23__FluidSeparatorTest::SaturatedOilDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_SaturatedOilDensity1--; continue; } } if (soap_flag_SeparatorTestGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SeparatorTestGOR", &a->prodml22__FluidSeparatorTest::SeparatorTestGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SeparatorTestGOR", &a->prodml23__FluidSeparatorTest::SeparatorTestGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_SeparatorTestGOR1--; continue; } } if (soap_flag_OverallGasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:OverallGasGravity", &a->prodml22__FluidSeparatorTest::OverallGasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:OverallGasGravity", &a->prodml23__FluidSeparatorTest::OverallGasGravity, "xsd:double")) { soap_flag_OverallGasGravity1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidSeparatorTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidSeparatorTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_ShrinkageReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidVolumeReference(soap, "prodml22:ShrinkageReference", &a->prodml22__FluidSeparatorTest::ShrinkageReference, "prodml22:FluidVolumeReference")) + { if (soap_in_PointerToprodml23__FluidVolumeReference(soap, "prodml23:ShrinkageReference", &a->prodml23__FluidSeparatorTest::ShrinkageReference, "prodml23:FluidVolumeReference")) { soap_flag_ShrinkageReference1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap, "prodml22:SeparatorTestStep", &a->prodml22__FluidSeparatorTest::SeparatorTestStep, "prodml22:FluidSeparatorTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap, "prodml23:SeparatorTestStep", &a->prodml23__FluidSeparatorTest::SeparatorTestStep, "prodml23:FluidSeparatorTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -227336,35 +227486,35 @@ SOAP_FMAC3 prodml22__FluidSeparatorTest * SOAP_FMAC4 soap_in_prodml22__FluidSepa return NULL; } else - { a = (prodml22__FluidSeparatorTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, sizeof(prodml22__FluidSeparatorTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSeparatorTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, sizeof(prodml23__FluidSeparatorTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml22__FluidSeparatorTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml23__FluidSeparatorTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidSeparatorTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidSeparatorTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidSeparatorTest *p; - size_t k = sizeof(prodml22__FluidSeparatorTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, n, gsoap_eml2_3_fdelete); + prodml23__FluidSeparatorTest *p; + size_t k = sizeof(prodml23__FluidSeparatorTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidSeparatorTest); + { p = SOAP_NEW(soap, prodml23__FluidSeparatorTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidSeparatorTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidSeparatorTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidSeparatorTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidSeparatorTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -227374,180 +227524,180 @@ SOAP_FMAC1 prodml22__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__FluidSeparatorTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidSeparatorTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidSeparatorTest(soap, tag ? tag : "prodml22:FluidSeparatorTest", -2, this, type)) + if (soap_out_prodml23__FluidSeparatorTest(soap, tag ? tag : "prodml23:FluidSeparatorTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidSeparatorTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidSeparatorTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidSeparatorTest(soap, this, tag, type); + return soap_get_prodml23__FluidSeparatorTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidSeparatorTest * SOAP_FMAC4 soap_get_prodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTest * SOAP_FMAC4 soap_get_prodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidSeparatorTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidSeparatorTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidDifferentialLiberationTestStep::soap_default(struct soap *soap) +void prodml23__FluidDifferentialLiberationTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__FluidDifferentialLiberationTestStep::StepNumber); - this->prodml22__FluidDifferentialLiberationTestStep::StepPressure = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::StepTemperature = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::OilDensity = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::OilCompressibility = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::OilViscosity = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::GasMolecularWeight = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::GasGravity = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::GasDensity = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::GasZFactor = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::GasViscosity = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::SolutionGORMeasured = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::SolutionGORCorrected = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::ResidualAPIGravity = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::FluidCondition = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::PhasesPresent = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::LiquidComposition = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::VaporComposition = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::OverallComposition = NULL; - this->prodml22__FluidDifferentialLiberationTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidDifferentialLiberationTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__FluidDifferentialLiberationTestStep::StepNumber); + this->prodml23__FluidDifferentialLiberationTestStep::StepPressure = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::StepTemperature = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::OilDensity = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::OilCompressibility = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::OilViscosity = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::GasMolecularWeight = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::GasGravity = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::GasDensity = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::GasZFactor = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::GasViscosity = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::SolutionGORMeasured = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::SolutionGORCorrected = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::ResidualAPIGravity = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::FluidCondition = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::PhasesPresent = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::LiquidComposition = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::VaporComposition = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::OverallComposition = NULL; + this->prodml23__FluidDifferentialLiberationTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidDifferentialLiberationTestStep::uid); } -void prodml22__FluidDifferentialLiberationTestStep::soap_serialize(struct soap *soap) const +void prodml23__FluidDifferentialLiberationTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidDifferentialLiberationTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::StepPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::StepTemperature); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::OilDensity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor); - soap_serialize_PointerToprodml22__OilCompressibility(soap, &this->prodml22__FluidDifferentialLiberationTestStep::OilCompressibility); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::OilViscosity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::GasMolecularWeight); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidDifferentialLiberationTestStep::GasGravity); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::GasDensity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidDifferentialLiberationTestStep::GasZFactor); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::GasViscosity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::SolutionGORMeasured); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::SolutionGORCorrected); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected); - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__FluidDifferentialLiberationTestStep::ResidualAPIGravity); - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, &this->prodml22__FluidDifferentialLiberationTestStep::FluidCondition); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__FluidDifferentialLiberationTestStep::PhasesPresent); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__FluidDifferentialLiberationTestStep::LiquidComposition); - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__FluidDifferentialLiberationTestStep::VaporComposition); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__FluidDifferentialLiberationTestStep::OverallComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidDifferentialLiberationTestStep::Remark); + soap_embedded(soap, &this->prodml23__FluidDifferentialLiberationTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::StepPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::StepTemperature); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::OilDensity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor); + soap_serialize_PointerToprodml23__OilCompressibility(soap, &this->prodml23__FluidDifferentialLiberationTestStep::OilCompressibility); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::OilViscosity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::GasMolecularWeight); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidDifferentialLiberationTestStep::GasGravity); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::GasDensity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidDifferentialLiberationTestStep::GasZFactor); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::GasViscosity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::SolutionGORMeasured); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::SolutionGORCorrected); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__FluidDifferentialLiberationTestStep::ResidualAPIGravity); + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, &this->prodml23__FluidDifferentialLiberationTestStep::FluidCondition); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__FluidDifferentialLiberationTestStep::PhasesPresent); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__FluidDifferentialLiberationTestStep::LiquidComposition); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__FluidDifferentialLiberationTestStep::VaporComposition); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__FluidDifferentialLiberationTestStep::OverallComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidDifferentialLiberationTestStep::Remark); #endif } -int prodml22__FluidDifferentialLiberationTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidDifferentialLiberationTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidDifferentialLiberationTestStep(soap, tag, id, this, type); + return soap_out_prodml23__FluidDifferentialLiberationTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, int id, const prodml22__FluidDifferentialLiberationTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, int id, const prodml23__FluidDifferentialLiberationTestStep *a, const char *type) { if (!type) - type = "prodml22:FluidDifferentialLiberationTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidDifferentialLiberationTestStep*)a)->uid), 1); + type = "prodml23:FluidDifferentialLiberationTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidDifferentialLiberationTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__FluidDifferentialLiberationTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__FluidDifferentialLiberationTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__FluidDifferentialLiberationTestStep::StepPressure) - { if (soap_element_empty(soap, "prodml22:StepPressure", 0, NULL)) + if (!a->prodml23__FluidDifferentialLiberationTestStep::StepPressure) + { if (soap_element_empty(soap, "prodml23:StepPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__FluidDifferentialLiberationTestStep::StepPressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__FluidDifferentialLiberationTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", -1, &a->prodml22__FluidDifferentialLiberationTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", -1, &a->prodml23__FluidDifferentialLiberationTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", -1, &a->prodml22__FluidDifferentialLiberationTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", -1, &a->prodml23__FluidDifferentialLiberationTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactor", -1, &a->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactor", -1, &a->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__OilCompressibility(soap, "prodml22:OilCompressibility", -1, &a->prodml22__FluidDifferentialLiberationTestStep::OilCompressibility, "prodml22:OilCompressibility")) + if (soap_out_PointerToprodml23__OilCompressibility(soap, "prodml23:OilCompressibility", -1, &a->prodml23__FluidDifferentialLiberationTestStep::OilCompressibility, "prodml23:OilCompressibility")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", -1, &a->prodml22__FluidDifferentialLiberationTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", -1, &a->prodml23__FluidDifferentialLiberationTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", -1, &a->prodml22__FluidDifferentialLiberationTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", -1, &a->prodml23__FluidDifferentialLiberationTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasGravity", -1, &a->prodml22__FluidDifferentialLiberationTestStep::GasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasGravity", -1, &a->prodml23__FluidDifferentialLiberationTestStep::GasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", -1, &a->prodml22__FluidDifferentialLiberationTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", -1, &a->prodml23__FluidDifferentialLiberationTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasFormationVolumeFactor", -1, &a->prodml22__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasFormationVolumeFactor", -1, &a->prodml23__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasZFactor", -1, &a->prodml22__FluidDifferentialLiberationTestStep::GasZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasZFactor", -1, &a->prodml23__FluidDifferentialLiberationTestStep::GasZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__FluidDifferentialLiberationTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__FluidDifferentialLiberationTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:TotalFormationVolumeFactor", -1, &a->prodml22__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:TotalFormationVolumeFactor", -1, &a->prodml23__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGORMeasured", -1, &a->prodml22__FluidDifferentialLiberationTestStep::SolutionGORMeasured, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGORMeasured", -1, &a->prodml23__FluidDifferentialLiberationTestStep::SolutionGORMeasured, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGORCorrected", -1, &a->prodml22__FluidDifferentialLiberationTestStep::SolutionGORCorrected, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGORCorrected", -1, &a->prodml23__FluidDifferentialLiberationTestStep::SolutionGORCorrected, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeStockTankGOR", -1, &a->prodml22__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeStockTankGOR", -1, &a->prodml23__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactorCorrected", -1, &a->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactorCorrected", -1, &a->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:ResidualAPIGravity", -1, &a->prodml22__FluidDifferentialLiberationTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:ResidualAPIGravity", -1, &a->prodml23__FluidDifferentialLiberationTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", -1, &a->prodml22__FluidDifferentialLiberationTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", -1, &a->prodml23__FluidDifferentialLiberationTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", -1, &a->prodml22__FluidDifferentialLiberationTestStep::PhasesPresent, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", -1, &a->prodml23__FluidDifferentialLiberationTestStep::PhasesPresent, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__FluidDifferentialLiberationTestStep::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__FluidDifferentialLiberationTestStep::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__FluidDifferentialLiberationTestStep::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__FluidDifferentialLiberationTestStep::VaporComposition, "prodml23:VaporComposition")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__FluidDifferentialLiberationTestStep::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__FluidDifferentialLiberationTestStep::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidDifferentialLiberationTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidDifferentialLiberationTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidDifferentialLiberationTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidDifferentialLiberationTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidDifferentialLiberationTestStep(soap, tag, this, type); + return soap_in_prodml23__FluidDifferentialLiberationTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, prodml22__FluidDifferentialLiberationTestStep *a, const char *type) +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, prodml23__FluidDifferentialLiberationTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidDifferentialLiberationTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, sizeof(prodml22__FluidDifferentialLiberationTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidDifferentialLiberationTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, sizeof(prodml23__FluidDifferentialLiberationTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidDifferentialLiberationTestStep *)a->soap_in(soap, tag, type); + return (prodml23__FluidDifferentialLiberationTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidDifferentialLiberationTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidDifferentialLiberationTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepPressure1 = 1; @@ -227579,151 +227729,151 @@ SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__FluidDifferentialLiberationTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__FluidDifferentialLiberationTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__FluidDifferentialLiberationTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__FluidDifferentialLiberationTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_StepTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StepTemperature", &a->prodml22__FluidDifferentialLiberationTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StepTemperature", &a->prodml23__FluidDifferentialLiberationTestStep::StepTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StepTemperature1--; continue; } } if (soap_flag_OilDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", &a->prodml22__FluidDifferentialLiberationTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", &a->prodml23__FluidDifferentialLiberationTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_OilDensity1--; continue; } } if (soap_flag_OilFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactor", &a->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactor", &a->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilFormationVolumeFactor1--; continue; } } if (soap_flag_OilCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OilCompressibility(soap, "prodml22:OilCompressibility", &a->prodml22__FluidDifferentialLiberationTestStep::OilCompressibility, "prodml22:OilCompressibility")) + { if (soap_in_PointerToprodml23__OilCompressibility(soap, "prodml23:OilCompressibility", &a->prodml23__FluidDifferentialLiberationTestStep::OilCompressibility, "prodml23:OilCompressibility")) { soap_flag_OilCompressibility1--; continue; } } if (soap_flag_OilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", &a->prodml22__FluidDifferentialLiberationTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", &a->prodml23__FluidDifferentialLiberationTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_OilViscosity1--; continue; } } if (soap_flag_GasMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", &a->prodml22__FluidDifferentialLiberationTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", &a->prodml23__FluidDifferentialLiberationTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolecularWeight1--; continue; } } if (soap_flag_GasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasGravity", &a->prodml22__FluidDifferentialLiberationTestStep::GasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasGravity", &a->prodml23__FluidDifferentialLiberationTestStep::GasGravity, "xsd:double")) { soap_flag_GasGravity1--; continue; } } if (soap_flag_GasDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", &a->prodml22__FluidDifferentialLiberationTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", &a->prodml23__FluidDifferentialLiberationTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_GasDensity1--; continue; } } if (soap_flag_GasFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasFormationVolumeFactor", &a->prodml22__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasFormationVolumeFactor", &a->prodml23__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_GasFormationVolumeFactor1--; continue; } } if (soap_flag_GasZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasZFactor", &a->prodml22__FluidDifferentialLiberationTestStep::GasZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasZFactor", &a->prodml23__FluidDifferentialLiberationTestStep::GasZFactor, "xsd:double")) { soap_flag_GasZFactor1--; continue; } } if (soap_flag_GasViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__FluidDifferentialLiberationTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__FluidDifferentialLiberationTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity1--; continue; } } if (soap_flag_TotalFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:TotalFormationVolumeFactor", &a->prodml22__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:TotalFormationVolumeFactor", &a->prodml23__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_TotalFormationVolumeFactor1--; continue; } } if (soap_flag_SolutionGORMeasured1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGORMeasured", &a->prodml22__FluidDifferentialLiberationTestStep::SolutionGORMeasured, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGORMeasured", &a->prodml23__FluidDifferentialLiberationTestStep::SolutionGORMeasured, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGORMeasured1--; continue; } } if (soap_flag_SolutionGORCorrected1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGORCorrected", &a->prodml22__FluidDifferentialLiberationTestStep::SolutionGORCorrected, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGORCorrected", &a->prodml23__FluidDifferentialLiberationTestStep::SolutionGORCorrected, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGORCorrected1--; continue; } } if (soap_flag_CumulativeStockTankGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeStockTankGOR", &a->prodml22__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeStockTankGOR", &a->prodml23__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_CumulativeStockTankGOR1--; continue; } } if (soap_flag_OilFormationVolumeFactorCorrected1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactorCorrected", &a->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactorCorrected", &a->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilFormationVolumeFactorCorrected1--; continue; } } if (soap_flag_ResidualAPIGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:ResidualAPIGravity", &a->prodml22__FluidDifferentialLiberationTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:ResidualAPIGravity", &a->prodml23__FluidDifferentialLiberationTestStep::ResidualAPIGravity, "eml23:APIGravityMeasure")) { soap_flag_ResidualAPIGravity1--; continue; } } if (soap_flag_FluidCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", &a->prodml22__FluidDifferentialLiberationTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + { if (soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", &a->prodml23__FluidDifferentialLiberationTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) { soap_flag_FluidCondition1--; continue; } } if (soap_flag_PhasesPresent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", &a->prodml22__FluidDifferentialLiberationTestStep::PhasesPresent, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", &a->prodml23__FluidDifferentialLiberationTestStep::PhasesPresent, "prodml23:PhasePresent")) { soap_flag_PhasesPresent1--; continue; } } if (soap_flag_LiquidComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__FluidDifferentialLiberationTestStep::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__FluidDifferentialLiberationTestStep::LiquidComposition, "prodml23:LiquidComposition")) { soap_flag_LiquidComposition1--; continue; } } if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__FluidDifferentialLiberationTestStep::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__FluidDifferentialLiberationTestStep::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__FluidDifferentialLiberationTestStep::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__FluidDifferentialLiberationTestStep::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidDifferentialLiberationTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidDifferentialLiberationTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -227737,7 +227887,7 @@ SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_pr } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StepNumber1 > 0 || !a->prodml22__FluidDifferentialLiberationTestStep::StepPressure)) + if ((soap_flag_StepNumber1 > 0 || !a->prodml23__FluidDifferentialLiberationTestStep::StepPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -227747,35 +227897,35 @@ SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_pr return NULL; } else - { a = (prodml22__FluidDifferentialLiberationTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, sizeof(prodml22__FluidDifferentialLiberationTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidDifferentialLiberationTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, sizeof(prodml23__FluidDifferentialLiberationTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidDifferentialLiberationTestStep *p; - size_t k = sizeof(prodml22__FluidDifferentialLiberationTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, n, gsoap_eml2_3_fdelete); + prodml23__FluidDifferentialLiberationTestStep *p; + size_t k = sizeof(prodml23__FluidDifferentialLiberationTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidDifferentialLiberationTestStep); + { p = SOAP_NEW(soap, prodml23__FluidDifferentialLiberationTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidDifferentialLiberationTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidDifferentialLiberationTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidDifferentialLiberationTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidDifferentialLiberationTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -227785,160 +227935,160 @@ SOAP_FMAC1 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_insta return p; } -int prodml22__FluidDifferentialLiberationTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidDifferentialLiberationTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidDifferentialLiberationTestStep(soap, tag ? tag : "prodml22:FluidDifferentialLiberationTestStep", -2, this, type)) + if (soap_out_prodml23__FluidDifferentialLiberationTestStep(soap, tag ? tag : "prodml23:FluidDifferentialLiberationTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidDifferentialLiberationTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidDifferentialLiberationTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidDifferentialLiberationTestStep(soap, this, tag, type); + return soap_get_prodml23__FluidDifferentialLiberationTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_get_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_get_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidDifferentialLiberationTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidDifferentialLiberationTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCvdTestStep::soap_default(struct soap *soap) +void prodml23__FluidCvdTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__FluidCvdTestStep::StepNumber); - this->prodml22__FluidCvdTestStep::StepPressure = NULL; - this->prodml22__FluidCvdTestStep::CumulativeStockTankGOR = NULL; - this->prodml22__FluidCvdTestStep::FluidProducedGOR = NULL; - this->prodml22__FluidCvdTestStep::OilDensity = NULL; - this->prodml22__FluidCvdTestStep::GasMolecularWeight = NULL; - this->prodml22__FluidCvdTestStep::OilViscosity = NULL; - this->prodml22__FluidCvdTestStep::GasGravity = NULL; - this->prodml22__FluidCvdTestStep::GasFormationVolumeFactor = NULL; - this->prodml22__FluidCvdTestStep::GasZFactor = NULL; - this->prodml22__FluidCvdTestStep::Phase2ZFactor = NULL; - this->prodml22__FluidCvdTestStep::GasViscosity = NULL; - this->prodml22__FluidCvdTestStep::CumulativeFluidProducedFraction = NULL; - this->prodml22__FluidCvdTestStep::LiquidFraction = NULL; - this->prodml22__FluidCvdTestStep::FluidCondition = NULL; - this->prodml22__FluidCvdTestStep::PhasesPresent = NULL; - this->prodml22__FluidCvdTestStep::LiquidComposition = NULL; - this->prodml22__FluidCvdTestStep::VaporComposition = NULL; - this->prodml22__FluidCvdTestStep::OverallComposition = NULL; - this->prodml22__FluidCvdTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidCvdTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__FluidCvdTestStep::StepNumber); + this->prodml23__FluidCvdTestStep::StepPressure = NULL; + this->prodml23__FluidCvdTestStep::CumulativeStockTankGOR = NULL; + this->prodml23__FluidCvdTestStep::FluidProducedGOR = NULL; + this->prodml23__FluidCvdTestStep::OilDensity = NULL; + this->prodml23__FluidCvdTestStep::GasMolecularWeight = NULL; + this->prodml23__FluidCvdTestStep::OilViscosity = NULL; + this->prodml23__FluidCvdTestStep::GasGravity = NULL; + this->prodml23__FluidCvdTestStep::GasFormationVolumeFactor = NULL; + this->prodml23__FluidCvdTestStep::GasZFactor = NULL; + this->prodml23__FluidCvdTestStep::Phase2ZFactor = NULL; + this->prodml23__FluidCvdTestStep::GasViscosity = NULL; + this->prodml23__FluidCvdTestStep::CumulativeFluidProducedFraction = NULL; + this->prodml23__FluidCvdTestStep::LiquidFraction = NULL; + this->prodml23__FluidCvdTestStep::FluidCondition = NULL; + this->prodml23__FluidCvdTestStep::PhasesPresent = NULL; + this->prodml23__FluidCvdTestStep::LiquidComposition = NULL; + this->prodml23__FluidCvdTestStep::VaporComposition = NULL; + this->prodml23__FluidCvdTestStep::OverallComposition = NULL; + this->prodml23__FluidCvdTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidCvdTestStep::uid); } -void prodml22__FluidCvdTestStep::soap_serialize(struct soap *soap) const +void prodml23__FluidCvdTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__FluidCvdTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidCvdTestStep::StepPressure); - soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, &this->prodml22__FluidCvdTestStep::CumulativeStockTankGOR); - soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, &this->prodml22__FluidCvdTestStep::FluidProducedGOR); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidCvdTestStep::OilDensity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__FluidCvdTestStep::GasMolecularWeight); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidCvdTestStep::OilViscosity); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidCvdTestStep::GasGravity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__FluidCvdTestStep::GasFormationVolumeFactor); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidCvdTestStep::GasZFactor); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidCvdTestStep::Phase2ZFactor); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidCvdTestStep::GasViscosity); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__FluidCvdTestStep::CumulativeFluidProducedFraction); - soap_serialize_PointerToprodml22__RelativeVolumeRatio(soap, &this->prodml22__FluidCvdTestStep::LiquidFraction); - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, &this->prodml22__FluidCvdTestStep::FluidCondition); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__FluidCvdTestStep::PhasesPresent); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__FluidCvdTestStep::LiquidComposition); - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__FluidCvdTestStep::VaporComposition); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__FluidCvdTestStep::OverallComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidCvdTestStep::Remark); + soap_embedded(soap, &this->prodml23__FluidCvdTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidCvdTestStep::StepPressure); + soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, &this->prodml23__FluidCvdTestStep::CumulativeStockTankGOR); + soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, &this->prodml23__FluidCvdTestStep::FluidProducedGOR); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidCvdTestStep::OilDensity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__FluidCvdTestStep::GasMolecularWeight); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidCvdTestStep::OilViscosity); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidCvdTestStep::GasGravity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__FluidCvdTestStep::GasFormationVolumeFactor); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidCvdTestStep::GasZFactor); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidCvdTestStep::Phase2ZFactor); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidCvdTestStep::GasViscosity); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__FluidCvdTestStep::CumulativeFluidProducedFraction); + soap_serialize_PointerToprodml23__RelativeVolumeRatio(soap, &this->prodml23__FluidCvdTestStep::LiquidFraction); + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, &this->prodml23__FluidCvdTestStep::FluidCondition); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__FluidCvdTestStep::PhasesPresent); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__FluidCvdTestStep::LiquidComposition); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__FluidCvdTestStep::VaporComposition); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__FluidCvdTestStep::OverallComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidCvdTestStep::Remark); #endif } -int prodml22__FluidCvdTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCvdTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCvdTestStep(soap, tag, id, this, type); + return soap_out_prodml23__FluidCvdTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCvdTestStep(struct soap *soap, const char *tag, int id, const prodml22__FluidCvdTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCvdTestStep(struct soap *soap, const char *tag, int id, const prodml23__FluidCvdTestStep *a, const char *type) { if (!type) - type = "prodml22:FluidCvdTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidCvdTestStep*)a)->uid), 1); + type = "prodml23:FluidCvdTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidCvdTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidCvdTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__FluidCvdTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__FluidCvdTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__FluidCvdTestStep::StepPressure) - { if (soap_element_empty(soap, "prodml22:StepPressure", 0, NULL)) + if (!a->prodml23__FluidCvdTestStep::StepPressure) + { if (soap_element_empty(soap, "prodml23:StepPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__FluidCvdTestStep::StepPressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__FluidCvdTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml22:CumulativeStockTankGOR", -1, &a->prodml22__FluidCvdTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasureExt")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml23:CumulativeStockTankGOR", -1, &a->prodml23__FluidCvdTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml22:FluidProducedGOR", -1, &a->prodml22__FluidCvdTestStep::FluidProducedGOR, "eml23:VolumePerVolumeMeasureExt")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml23:FluidProducedGOR", -1, &a->prodml23__FluidCvdTestStep::FluidProducedGOR, "eml23:VolumePerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", -1, &a->prodml22__FluidCvdTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", -1, &a->prodml23__FluidCvdTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", -1, &a->prodml22__FluidCvdTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", -1, &a->prodml23__FluidCvdTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", -1, &a->prodml22__FluidCvdTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", -1, &a->prodml23__FluidCvdTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasGravity", -1, &a->prodml22__FluidCvdTestStep::GasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasGravity", -1, &a->prodml23__FluidCvdTestStep::GasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasFormationVolumeFactor", -1, &a->prodml22__FluidCvdTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasFormationVolumeFactor", -1, &a->prodml23__FluidCvdTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasZFactor", -1, &a->prodml22__FluidCvdTestStep::GasZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasZFactor", -1, &a->prodml23__FluidCvdTestStep::GasZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:Phase2ZFactor", -1, &a->prodml22__FluidCvdTestStep::Phase2ZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:Phase2ZFactor", -1, &a->prodml23__FluidCvdTestStep::Phase2ZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__FluidCvdTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__FluidCvdTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:CumulativeFluidProducedFraction", -1, &a->prodml22__FluidCvdTestStep::CumulativeFluidProducedFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:CumulativeFluidProducedFraction", -1, &a->prodml23__FluidCvdTestStep::CumulativeFluidProducedFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:LiquidFraction", -1, &a->prodml22__FluidCvdTestStep::LiquidFraction, "prodml22:RelativeVolumeRatio")) + if (soap_out_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:LiquidFraction", -1, &a->prodml23__FluidCvdTestStep::LiquidFraction, "prodml23:RelativeVolumeRatio")) return soap->error; - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", -1, &a->prodml22__FluidCvdTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", -1, &a->prodml23__FluidCvdTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", -1, &a->prodml22__FluidCvdTestStep::PhasesPresent, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", -1, &a->prodml23__FluidCvdTestStep::PhasesPresent, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__FluidCvdTestStep::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__FluidCvdTestStep::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__FluidCvdTestStep::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__FluidCvdTestStep::VaporComposition, "prodml23:VaporComposition")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__FluidCvdTestStep::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__FluidCvdTestStep::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidCvdTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidCvdTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCvdTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCvdTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCvdTestStep(soap, tag, this, type); + return soap_in_prodml23__FluidCvdTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml22__FluidCvdTestStep(struct soap *soap, const char *tag, prodml22__FluidCvdTestStep *a, const char *type) +SOAP_FMAC3 prodml23__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml23__FluidCvdTestStep(struct soap *soap, const char *tag, prodml23__FluidCvdTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCvdTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, sizeof(prodml22__FluidCvdTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCvdTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, sizeof(prodml23__FluidCvdTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCvdTestStep *)a->soap_in(soap, tag, type); + return (prodml23__FluidCvdTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidCvdTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidCvdTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepPressure1 = 1; @@ -227965,121 +228115,121 @@ SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml22__FluidCvdTes for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__FluidCvdTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__FluidCvdTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__FluidCvdTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__FluidCvdTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_CumulativeStockTankGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml22:CumulativeStockTankGOR", &a->prodml22__FluidCvdTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml23:CumulativeStockTankGOR", &a->prodml23__FluidCvdTestStep::CumulativeStockTankGOR, "eml23:VolumePerVolumeMeasureExt")) { soap_flag_CumulativeStockTankGOR1--; continue; } } if (soap_flag_FluidProducedGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml22:FluidProducedGOR", &a->prodml22__FluidCvdTestStep::FluidProducedGOR, "eml23:VolumePerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml23:FluidProducedGOR", &a->prodml23__FluidCvdTestStep::FluidProducedGOR, "eml23:VolumePerVolumeMeasureExt")) { soap_flag_FluidProducedGOR1--; continue; } } if (soap_flag_OilDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", &a->prodml22__FluidCvdTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", &a->prodml23__FluidCvdTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_OilDensity1--; continue; } } if (soap_flag_GasMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", &a->prodml22__FluidCvdTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", &a->prodml23__FluidCvdTestStep::GasMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolecularWeight1--; continue; } } if (soap_flag_OilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", &a->prodml22__FluidCvdTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", &a->prodml23__FluidCvdTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_OilViscosity1--; continue; } } if (soap_flag_GasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasGravity", &a->prodml22__FluidCvdTestStep::GasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasGravity", &a->prodml23__FluidCvdTestStep::GasGravity, "xsd:double")) { soap_flag_GasGravity1--; continue; } } if (soap_flag_GasFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:GasFormationVolumeFactor", &a->prodml22__FluidCvdTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:GasFormationVolumeFactor", &a->prodml23__FluidCvdTestStep::GasFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_GasFormationVolumeFactor1--; continue; } } if (soap_flag_GasZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasZFactor", &a->prodml22__FluidCvdTestStep::GasZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasZFactor", &a->prodml23__FluidCvdTestStep::GasZFactor, "xsd:double")) { soap_flag_GasZFactor1--; continue; } } if (soap_flag_Phase2ZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:Phase2ZFactor", &a->prodml22__FluidCvdTestStep::Phase2ZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:Phase2ZFactor", &a->prodml23__FluidCvdTestStep::Phase2ZFactor, "xsd:double")) { soap_flag_Phase2ZFactor1--; continue; } } if (soap_flag_GasViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__FluidCvdTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__FluidCvdTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity1--; continue; } } if (soap_flag_CumulativeFluidProducedFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:CumulativeFluidProducedFraction", &a->prodml22__FluidCvdTestStep::CumulativeFluidProducedFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:CumulativeFluidProducedFraction", &a->prodml23__FluidCvdTestStep::CumulativeFluidProducedFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_CumulativeFluidProducedFraction1--; continue; } } if (soap_flag_LiquidFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:LiquidFraction", &a->prodml22__FluidCvdTestStep::LiquidFraction, "prodml22:RelativeVolumeRatio")) + { if (soap_in_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:LiquidFraction", &a->prodml23__FluidCvdTestStep::LiquidFraction, "prodml23:RelativeVolumeRatio")) { soap_flag_LiquidFraction1--; continue; } } if (soap_flag_FluidCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", &a->prodml22__FluidCvdTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + { if (soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", &a->prodml23__FluidCvdTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) { soap_flag_FluidCondition1--; continue; } } if (soap_flag_PhasesPresent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", &a->prodml22__FluidCvdTestStep::PhasesPresent, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", &a->prodml23__FluidCvdTestStep::PhasesPresent, "prodml23:PhasePresent")) { soap_flag_PhasesPresent1--; continue; } } if (soap_flag_LiquidComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__FluidCvdTestStep::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__FluidCvdTestStep::LiquidComposition, "prodml23:LiquidComposition")) { soap_flag_LiquidComposition1--; continue; } } if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__FluidCvdTestStep::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__FluidCvdTestStep::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__FluidCvdTestStep::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__FluidCvdTestStep::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidCvdTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidCvdTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -228093,7 +228243,7 @@ SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml22__FluidCvdTes } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StepNumber1 > 0 || !a->prodml22__FluidCvdTestStep::StepPressure)) + if ((soap_flag_StepNumber1 > 0 || !a->prodml23__FluidCvdTestStep::StepPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -228103,35 +228253,35 @@ SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml22__FluidCvdTes return NULL; } else - { a = (prodml22__FluidCvdTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, sizeof(prodml22__FluidCvdTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCvdTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, sizeof(prodml23__FluidCvdTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidCvdTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidCvdTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCvdTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCvdTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCvdTestStep *p; - size_t k = sizeof(prodml22__FluidCvdTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, n, gsoap_eml2_3_fdelete); + prodml23__FluidCvdTestStep *p; + size_t k = sizeof(prodml23__FluidCvdTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCvdTestStep); + { p = SOAP_NEW(soap, prodml23__FluidCvdTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCvdTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCvdTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCvdTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCvdTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -228141,100 +228291,100 @@ SOAP_FMAC1 prodml22__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml22__Fl return p; } -int prodml22__FluidCvdTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCvdTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCvdTestStep(soap, tag ? tag : "prodml22:FluidCvdTestStep", -2, this, type)) + if (soap_out_prodml23__FluidCvdTestStep(soap, tag ? tag : "prodml23:FluidCvdTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCvdTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCvdTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCvdTestStep(soap, this, tag, type); + return soap_get_prodml23__FluidCvdTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_get_prodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCvdTestStep * SOAP_FMAC4 soap_get_prodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCvdTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCvdTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidAnalysisReport::soap_default(struct soap *soap) +void prodml23__FluidAnalysisReport::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidAnalysisReport::ReportIdentifier = NULL; - this->prodml22__FluidAnalysisReport::ReportDate = NULL; - this->prodml22__FluidAnalysisReport::Author = NULL; - this->prodml22__FluidAnalysisReport::AnalysisLaboratory = NULL; - this->prodml22__FluidAnalysisReport::ReportDocument = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap, &this->prodml22__FluidAnalysisReport::ReportLocation); - soap_default_eml23__String64(soap, &this->prodml22__FluidAnalysisReport::uid); + this->prodml23__FluidAnalysisReport::ReportIdentifier = NULL; + this->prodml23__FluidAnalysisReport::ReportDate = NULL; + this->prodml23__FluidAnalysisReport::Author = NULL; + this->prodml23__FluidAnalysisReport::AnalysisLaboratory = NULL; + this->prodml23__FluidAnalysisReport::ReportDocument = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap, &this->prodml23__FluidAnalysisReport::ReportLocation); + soap_default_eml23__String64(soap, &this->prodml23__FluidAnalysisReport::uid); } -void prodml22__FluidAnalysisReport::soap_serialize(struct soap *soap) const +void prodml23__FluidAnalysisReport::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidAnalysisReport::ReportIdentifier); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__FluidAnalysisReport::ReportDate); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidAnalysisReport::Author); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidAnalysisReport::AnalysisLaboratory); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidAnalysisReport::ReportDocument); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap, &this->prodml22__FluidAnalysisReport::ReportLocation); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidAnalysisReport::ReportIdentifier); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__FluidAnalysisReport::ReportDate); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidAnalysisReport::Author); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidAnalysisReport::AnalysisLaboratory); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidAnalysisReport::ReportDocument); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap, &this->prodml23__FluidAnalysisReport::ReportLocation); #endif } -int prodml22__FluidAnalysisReport::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidAnalysisReport::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidAnalysisReport(soap, tag, id, this, type); + return soap_out_prodml23__FluidAnalysisReport(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysisReport(struct soap *soap, const char *tag, int id, const prodml22__FluidAnalysisReport *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidAnalysisReport(struct soap *soap, const char *tag, int id, const prodml23__FluidAnalysisReport *a, const char *type) { if (!type) - type = "prodml22:FluidAnalysisReport"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidAnalysisReport*)a)->uid), 1); + type = "prodml23:FluidAnalysisReport"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidAnalysisReport*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidAnalysisReport), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ReportIdentifier", -1, &a->prodml22__FluidAnalysisReport::ReportIdentifier, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ReportIdentifier", -1, &a->prodml23__FluidAnalysisReport::ReportIdentifier, "eml23:String64")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:ReportDate", -1, &a->prodml22__FluidAnalysisReport::ReportDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:ReportDate", -1, &a->prodml23__FluidAnalysisReport::ReportDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Author", -1, &a->prodml22__FluidAnalysisReport::Author, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Author", -1, &a->prodml23__FluidAnalysisReport::Author, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:AnalysisLaboratory", -1, &a->prodml22__FluidAnalysisReport::AnalysisLaboratory, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:AnalysisLaboratory", -1, &a->prodml23__FluidAnalysisReport::AnalysisLaboratory, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:ReportDocument", -1, &a->prodml22__FluidAnalysisReport::ReportDocument, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:ReportDocument", -1, &a->prodml23__FluidAnalysisReport::ReportDocument, "eml23:DataObjectReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap, "prodml22:ReportLocation", -1, &a->prodml22__FluidAnalysisReport::ReportLocation, "prodml22:ReportLocation")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap, "prodml23:ReportLocation", -1, &a->prodml23__FluidAnalysisReport::ReportLocation, "prodml23:ReportLocation")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidAnalysisReport::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidAnalysisReport::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidAnalysisReport(soap, tag, this, type); + return soap_in_prodml23__FluidAnalysisReport(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidAnalysisReport * SOAP_FMAC4 soap_in_prodml22__FluidAnalysisReport(struct soap *soap, const char *tag, prodml22__FluidAnalysisReport *a, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisReport * SOAP_FMAC4 soap_in_prodml23__FluidAnalysisReport(struct soap *soap, const char *tag, prodml23__FluidAnalysisReport *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidAnalysisReport*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, sizeof(prodml22__FluidAnalysisReport), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidAnalysisReport*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, sizeof(prodml23__FluidAnalysisReport), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidAnalysisReport *)a->soap_in(soap, tag, type); + return (prodml23__FluidAnalysisReport *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidAnalysisReport*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidAnalysisReport*)a)->uid)) return NULL; size_t soap_flag_ReportIdentifier1 = 1; size_t soap_flag_ReportDate1 = 1; @@ -228246,37 +228396,37 @@ SOAP_FMAC3 prodml22__FluidAnalysisReport * SOAP_FMAC4 soap_in_prodml22__FluidAna for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_ReportIdentifier1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ReportIdentifier", &a->prodml22__FluidAnalysisReport::ReportIdentifier, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ReportIdentifier", &a->prodml23__FluidAnalysisReport::ReportIdentifier, "eml23:String64")) { soap_flag_ReportIdentifier1--; continue; } } if (soap_flag_ReportDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:ReportDate", &a->prodml22__FluidAnalysisReport::ReportDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:ReportDate", &a->prodml23__FluidAnalysisReport::ReportDate, "xsd:date")) { soap_flag_ReportDate1--; continue; } } if (soap_flag_Author1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Author", &a->prodml22__FluidAnalysisReport::Author, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Author", &a->prodml23__FluidAnalysisReport::Author, "eml23:String64")) { soap_flag_Author1--; continue; } } if (soap_flag_AnalysisLaboratory1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:AnalysisLaboratory", &a->prodml22__FluidAnalysisReport::AnalysisLaboratory, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:AnalysisLaboratory", &a->prodml23__FluidAnalysisReport::AnalysisLaboratory, "eml23:String64")) { soap_flag_AnalysisLaboratory1--; continue; } } if (soap_flag_ReportDocument1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:ReportDocument", &a->prodml22__FluidAnalysisReport::ReportDocument, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:ReportDocument", &a->prodml23__FluidAnalysisReport::ReportDocument, "eml23:DataObjectReference")) { soap_flag_ReportDocument1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap, "prodml22:ReportLocation", &a->prodml22__FluidAnalysisReport::ReportLocation, "prodml22:ReportLocation")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap, "prodml23:ReportLocation", &a->prodml23__FluidAnalysisReport::ReportLocation, "prodml23:ReportLocation")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -228290,35 +228440,35 @@ SOAP_FMAC3 prodml22__FluidAnalysisReport * SOAP_FMAC4 soap_in_prodml22__FluidAna return NULL; } else - { a = (prodml22__FluidAnalysisReport *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, sizeof(prodml22__FluidAnalysisReport), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidAnalysisReport *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, sizeof(prodml23__FluidAnalysisReport), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml22__FluidAnalysisReport(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml23__FluidAnalysisReport(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidAnalysisReport(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidAnalysisReport(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidAnalysisReport *p; - size_t k = sizeof(prodml22__FluidAnalysisReport); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, n, gsoap_eml2_3_fdelete); + prodml23__FluidAnalysisReport *p; + size_t k = sizeof(prodml23__FluidAnalysisReport); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidAnalysisReport); + { p = SOAP_NEW(soap, prodml23__FluidAnalysisReport); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidAnalysisReport, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidAnalysisReport, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidAnalysisReport location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidAnalysisReport location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -228328,83 +228478,83 @@ SOAP_FMAC1 prodml22__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__FluidAnalysisReport::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidAnalysisReport::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidAnalysisReport(soap, tag ? tag : "prodml22:FluidAnalysisReport", -2, this, type)) + if (soap_out_prodml23__FluidAnalysisReport(soap, tag ? tag : "prodml23:FluidAnalysisReport", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidAnalysisReport::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidAnalysisReport::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidAnalysisReport(soap, this, tag, type); + return soap_get_prodml23__FluidAnalysisReport(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidAnalysisReport * SOAP_FMAC4 soap_get_prodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisReport * SOAP_FMAC4 soap_get_prodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidAnalysisReport(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidAnalysisReport(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidAnalysis::soap_default(struct soap *soap) +void prodml23__FluidAnalysis::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - this->prodml22__FluidAnalysis::RequestDate = NULL; - this->prodml22__FluidAnalysis::Client = NULL; - this->prodml22__FluidAnalysis::StartTime = NULL; - this->prodml22__FluidAnalysis::EndTime = NULL; - this->prodml22__FluidAnalysis::AnalysisDescription = NULL; - this->prodml22__FluidAnalysis::AnalysisPurpose = NULL; - this->prodml22__FluidAnalysis::AnalysisSite = NULL; - this->prodml22__FluidAnalysis::LabContact = NULL; - this->prodml22__FluidAnalysis::StandardConditions = NULL; - soap_default_prodml22__SampleQuality(soap, &this->prodml22__FluidAnalysis::AnalysisQuality); - this->prodml22__FluidAnalysis::FluidComponentCatalog = NULL; - this->prodml22__FluidAnalysis::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, &this->prodml22__FluidAnalysis::FluidAnalysisReport); - soap_default_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, &this->prodml22__FluidAnalysis::SampleContaminant); -} - -void prodml22__FluidAnalysis::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__date(soap, &this->prodml22__FluidAnalysis::RequestDate); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidAnalysis::Client); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__FluidAnalysis::StartTime); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__FluidAnalysis::EndTime); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidAnalysis::AnalysisDescription); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidAnalysis::AnalysisPurpose); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidAnalysis::AnalysisSite); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidAnalysis::LabContact); - soap_serialize_PointerToeml23__AbstractTemperaturePressure(soap, &this->prodml22__FluidAnalysis::StandardConditions); - soap_serialize_PointerToprodml22__FluidComponentCatalog(soap, &this->prodml22__FluidAnalysis::FluidComponentCatalog); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidAnalysis::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, &this->prodml22__FluidAnalysis::FluidAnalysisReport); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, &this->prodml22__FluidAnalysis::SampleContaminant); + this->prodml23__FluidAnalysis::RequestDate = NULL; + this->prodml23__FluidAnalysis::Client = NULL; + this->prodml23__FluidAnalysis::StartTime = NULL; + this->prodml23__FluidAnalysis::EndTime = NULL; + this->prodml23__FluidAnalysis::AnalysisDescription = NULL; + this->prodml23__FluidAnalysis::AnalysisPurpose = NULL; + this->prodml23__FluidAnalysis::AnalysisSite = NULL; + this->prodml23__FluidAnalysis::LabContact = NULL; + this->prodml23__FluidAnalysis::StandardConditions = NULL; + soap_default_prodml23__SampleQuality(soap, &this->prodml23__FluidAnalysis::AnalysisQuality); + this->prodml23__FluidAnalysis::FluidComponentCatalog = NULL; + this->prodml23__FluidAnalysis::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, &this->prodml23__FluidAnalysis::FluidAnalysisReport); + soap_default_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, &this->prodml23__FluidAnalysis::SampleContaminant); +} + +void prodml23__FluidAnalysis::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_PointerToxsd__date(soap, &this->prodml23__FluidAnalysis::RequestDate); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidAnalysis::Client); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__FluidAnalysis::StartTime); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__FluidAnalysis::EndTime); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidAnalysis::AnalysisDescription); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidAnalysis::AnalysisPurpose); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidAnalysis::AnalysisSite); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidAnalysis::LabContact); + soap_serialize_PointerToeml23__AbstractTemperaturePressure(soap, &this->prodml23__FluidAnalysis::StandardConditions); + soap_serialize_PointerToprodml23__FluidComponentCatalog(soap, &this->prodml23__FluidAnalysis::FluidComponentCatalog); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidAnalysis::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, &this->prodml23__FluidAnalysis::FluidAnalysisReport); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, &this->prodml23__FluidAnalysis::SampleContaminant); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FluidAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__FluidAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysis(struct soap *soap, const char *tag, int id, const prodml22__FluidAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidAnalysis(struct soap *soap, const char *tag, int id, const prodml23__FluidAnalysis *a, const char *type) { if (!type) - type = "prodml22:FluidAnalysis"; + type = "prodml23:FluidAnalysis"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FluidAnalysis), type ? type : "prodml22:FluidAnalysis")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis), type ? type : "prodml23:FluidAnalysis")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -228426,58 +228576,58 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysis(struct soap *soap, co return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:RequestDate", -1, &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:RequestDate", -1, &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Client", -1, &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Client", -1, &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", -1, &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", -1, &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", -1, &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", -1, &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", -1, &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", -1, &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", -1, &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", -1, &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) return soap->error; - if (!a->prodml22__FluidAnalysis::StandardConditions) - { if (soap_element_empty(soap, "prodml22:StandardConditions", 0, NULL)) + if (!a->prodml23__FluidAnalysis::StandardConditions) + { if (soap_element_empty(soap, "prodml23:StandardConditions", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", -1, &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + else if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", -1, &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) return soap->error; - if (soap_out_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", -1, &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + if (soap_out_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", -1, &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) return soap->error; - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", -1, &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", -1, &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", -1, &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", -1, &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", -1, &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", -1, &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidAnalysis(soap, tag, this, type); + return soap_in_prodml23__FluidAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_in_prodml22__FluidAnalysis(struct soap *soap, const char *tag, prodml22__FluidAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysis * SOAP_FMAC4 soap_in_prodml23__FluidAnalysis(struct soap *soap, const char *tag, prodml23__FluidAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis, sizeof(prodml22__FluidAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis, sizeof(prodml23__FluidAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__FluidAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -228561,83 +228711,83 @@ SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_in_prodml22__FluidAnalysis( continue; } if (soap_flag_RequestDate1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:RequestDate", &a->prodml22__FluidAnalysis::RequestDate, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:RequestDate", &a->prodml23__FluidAnalysis::RequestDate, "xsd:date")) { soap_flag_RequestDate1--; continue; } } if (soap_flag_Client1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Client", &a->prodml22__FluidAnalysis::Client, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Client", &a->prodml23__FluidAnalysis::Client, "eml23:DataObjectReference")) { soap_flag_Client1--; continue; } } if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__FluidAnalysis::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__FluidAnalysis::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__FluidAnalysis::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__FluidAnalysis::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } } if (soap_flag_AnalysisDescription1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisDescription", &a->prodml22__FluidAnalysis::AnalysisDescription, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisDescription", &a->prodml23__FluidAnalysis::AnalysisDescription, "eml23:String2000")) { soap_flag_AnalysisDescription1--; continue; } } if (soap_flag_AnalysisPurpose1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisPurpose", &a->prodml22__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisPurpose", &a->prodml23__FluidAnalysis::AnalysisPurpose, "eml23:String2000")) { soap_flag_AnalysisPurpose1--; continue; } } if (soap_flag_AnalysisSite1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:AnalysisSite", &a->prodml22__FluidAnalysis::AnalysisSite, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:AnalysisSite", &a->prodml23__FluidAnalysis::AnalysisSite, "eml23:String2000")) { soap_flag_AnalysisSite1--; continue; } } if (soap_flag_LabContact1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:LabContact", &a->prodml22__FluidAnalysis::LabContact, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:LabContact", &a->prodml23__FluidAnalysis::LabContact, "eml23:DataObjectReference")) { soap_flag_LabContact1--; continue; } } if (soap_flag_StandardConditions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", &a->prodml22__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) + { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", &a->prodml23__FluidAnalysis::StandardConditions, "eml23:AbstractTemperaturePressure")) { soap_flag_StandardConditions1--; continue; } } if (soap_flag_AnalysisQuality1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_prodml22__SampleQuality(soap, "prodml22:AnalysisQuality", &a->prodml22__FluidAnalysis::AnalysisQuality, "prodml22:SampleQuality")) + { if (soap_in_prodml23__SampleQuality(soap, "prodml23:AnalysisQuality", &a->prodml23__FluidAnalysis::AnalysisQuality, "prodml23:SampleQuality")) { soap_flag_AnalysisQuality1--; continue; } } if (soap_flag_FluidComponentCatalog1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", &a->prodml22__FluidAnalysis::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + { if (soap_in_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", &a->prodml23__FluidAnalysis::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) { soap_flag_FluidComponentCatalog1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, "prodml22:FluidAnalysisReport", &a->prodml22__FluidAnalysis::FluidAnalysisReport, "prodml22:FluidAnalysisReport")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, "prodml23:FluidAnalysisReport", &a->prodml23__FluidAnalysis::FluidAnalysisReport, "prodml23:FluidAnalysisReport")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, "prodml22:SampleContaminant", &a->prodml22__FluidAnalysis::SampleContaminant, "prodml22:SampleContaminant")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, "prodml23:SampleContaminant", &a->prodml23__FluidAnalysis::SampleContaminant, "prodml23:SampleContaminant")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -228649,7 +228799,7 @@ SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_in_prodml22__FluidAnalysis( } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->eml23__AbstractObject::Citation || !a->prodml22__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality1 > 0)) + if ((!a->eml23__AbstractObject::Citation || !a->prodml23__FluidAnalysis::StandardConditions || soap_flag_AnalysisQuality1 > 0)) { soap->error = SOAP_OCCURS; return NULL; } @@ -228659,41 +228809,41 @@ SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_in_prodml22__FluidAnalysis( return NULL; } else - { a = (prodml22__FluidAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis, sizeof(prodml22__FluidAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis, sizeof(prodml23__FluidAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__FluidAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__FluidAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidAnalysis(%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, "prodml22:HydrocarbonAnalysis")) - return soap_instantiate_prodml22__HydrocarbonAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NonHydrocarbonAnalysis")) - return soap_instantiate_prodml22__NonHydrocarbonAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WaterAnalysis")) - return soap_instantiate_prodml22__WaterAnalysis(soap, n, NULL, NULL, size); - prodml22__FluidAnalysis *p; - size_t k = sizeof(prodml22__FluidAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HydrocarbonAnalysis")) + return soap_instantiate_prodml23__HydrocarbonAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NonHydrocarbonAnalysis")) + return soap_instantiate_prodml23__NonHydrocarbonAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WaterAnalysis")) + return soap_instantiate_prodml23__WaterAnalysis(soap, n, NULL, NULL, size); + prodml23__FluidAnalysis *p; + size_t k = sizeof(prodml23__FluidAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidAnalysis); + { p = SOAP_NEW(soap, prodml23__FluidAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -228703,86 +228853,86 @@ SOAP_FMAC1 prodml22__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__Fluid return p; } -int prodml22__FluidAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidAnalysis(soap, tag ? tag : "prodml22:FluidAnalysis", -2, this, type)) + if (soap_out_prodml23__FluidAnalysis(soap, tag ? tag : "prodml23:FluidAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidAnalysis(soap, this, tag, type); + return soap_get_prodml23__FluidAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_get_prodml22__FluidAnalysis(struct soap *soap, prodml22__FluidAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysis * SOAP_FMAC4 soap_get_prodml23__FluidAnalysis(struct soap *soap, prodml23__FluidAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FlashedLiquid::soap_default(struct soap *soap) +void prodml23__FlashedLiquid::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlashedLiquid::LiquidDensity = NULL; - this->prodml22__FlashedLiquid::OilAPIGravity = NULL; - this->prodml22__FlashedLiquid::OilMolecularWeight = NULL; - this->prodml22__FlashedLiquid::LiquidComposition = NULL; + this->prodml23__FlashedLiquid::LiquidDensity = NULL; + this->prodml23__FlashedLiquid::OilAPIGravity = NULL; + this->prodml23__FlashedLiquid::OilMolecularWeight = NULL; + this->prodml23__FlashedLiquid::LiquidComposition = NULL; } -void prodml22__FlashedLiquid::soap_serialize(struct soap *soap) const +void prodml23__FlashedLiquid::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__FlashedLiquid::LiquidDensity); - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__FlashedLiquid::OilAPIGravity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__FlashedLiquid::OilMolecularWeight); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__FlashedLiquid::LiquidComposition); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__FlashedLiquid::LiquidDensity); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__FlashedLiquid::OilAPIGravity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__FlashedLiquid::OilMolecularWeight); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__FlashedLiquid::LiquidComposition); #endif } -int prodml22__FlashedLiquid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FlashedLiquid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FlashedLiquid(soap, tag, id, this, type); + return soap_out_prodml23__FlashedLiquid(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlashedLiquid(struct soap *soap, const char *tag, int id, const prodml22__FlashedLiquid *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlashedLiquid(struct soap *soap, const char *tag, int id, const prodml23__FlashedLiquid *a, const char *type) { if (!type) - type = "prodml22:FlashedLiquid"; + type = "prodml23:FlashedLiquid"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:LiquidDensity", -1, &a->prodml22__FlashedLiquid::LiquidDensity, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:LiquidDensity", -1, &a->prodml23__FlashedLiquid::LiquidDensity, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilAPIGravity", -1, &a->prodml22__FlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilAPIGravity", -1, &a->prodml23__FlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:OilMolecularWeight", -1, &a->prodml22__FlashedLiquid::OilMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:OilMolecularWeight", -1, &a->prodml23__FlashedLiquid::OilMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__FlashedLiquid::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__FlashedLiquid::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FlashedLiquid::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlashedLiquid::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FlashedLiquid(soap, tag, this, type); + return soap_in_prodml23__FlashedLiquid(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FlashedLiquid * SOAP_FMAC4 soap_in_prodml22__FlashedLiquid(struct soap *soap, const char *tag, prodml22__FlashedLiquid *a, const char *type) +SOAP_FMAC3 prodml23__FlashedLiquid * SOAP_FMAC4 soap_in_prodml23__FlashedLiquid(struct soap *soap, const char *tag, prodml23__FlashedLiquid *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FlashedLiquid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid, sizeof(prodml22__FlashedLiquid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FlashedLiquid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid, sizeof(prodml23__FlashedLiquid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FlashedLiquid *)a->soap_in(soap, tag, type); + return (prodml23__FlashedLiquid *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -228795,25 +228945,25 @@ SOAP_FMAC3 prodml22__FlashedLiquid * SOAP_FMAC4 soap_in_prodml22__FlashedLiquid( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_LiquidDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:LiquidDensity", &a->prodml22__FlashedLiquid::LiquidDensity, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:LiquidDensity", &a->prodml23__FlashedLiquid::LiquidDensity, "eml23:MassPerVolumeMeasureExt")) { soap_flag_LiquidDensity1--; continue; } } if (soap_flag_OilAPIGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilAPIGravity", &a->prodml22__FlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilAPIGravity", &a->prodml23__FlashedLiquid::OilAPIGravity, "eml23:APIGravityMeasure")) { soap_flag_OilAPIGravity1--; continue; } } if (soap_flag_OilMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:OilMolecularWeight", &a->prodml22__FlashedLiquid::OilMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:OilMolecularWeight", &a->prodml23__FlashedLiquid::OilMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_OilMolecularWeight1--; continue; } } if (soap_flag_LiquidComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__FlashedLiquid::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__FlashedLiquid::LiquidComposition, "prodml23:LiquidComposition")) { soap_flag_LiquidComposition1--; continue; } @@ -228829,35 +228979,35 @@ SOAP_FMAC3 prodml22__FlashedLiquid * SOAP_FMAC4 soap_in_prodml22__FlashedLiquid( return NULL; } else - { a = (prodml22__FlashedLiquid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid, sizeof(prodml22__FlashedLiquid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FlashedLiquid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid, sizeof(prodml23__FlashedLiquid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__FlashedLiquid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml23__FlashedLiquid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FlashedLiquid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FlashedLiquid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FlashedLiquid *p; - size_t k = sizeof(prodml22__FlashedLiquid); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid, n, gsoap_eml2_3_fdelete); + prodml23__FlashedLiquid *p; + size_t k = sizeof(prodml23__FlashedLiquid); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FlashedLiquid); + { p = SOAP_NEW(soap, prodml23__FlashedLiquid); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FlashedLiquid, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FlashedLiquid, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FlashedLiquid location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FlashedLiquid location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -228867,106 +229017,106 @@ SOAP_FMAC1 prodml22__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__Flash return p; } -int prodml22__FlashedLiquid::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FlashedLiquid::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FlashedLiquid(soap, tag ? tag : "prodml22:FlashedLiquid", -2, this, type)) + if (soap_out_prodml23__FlashedLiquid(soap, tag ? tag : "prodml23:FlashedLiquid", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FlashedLiquid::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlashedLiquid::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FlashedLiquid(soap, this, tag, type); + return soap_get_prodml23__FlashedLiquid(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FlashedLiquid * SOAP_FMAC4 soap_get_prodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlashedLiquid * SOAP_FMAC4 soap_get_prodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlashedLiquid(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlashedLiquid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FlashedGas::soap_default(struct soap *soap) +void prodml23__FlashedGas::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FlashedGas::GasDensity = NULL; - this->prodml22__FlashedGas::GasGravity = NULL; - this->prodml22__FlashedGas::GasZFactor = NULL; - this->prodml22__FlashedGas::GasMolecularWeight = NULL; - this->prodml22__FlashedGas::GrossEnergyContentPerUnitMass = NULL; - this->prodml22__FlashedGas::NetEnergyContentPerUnitMass = NULL; - this->prodml22__FlashedGas::GrossEnergyContentPerUnitVolume = NULL; - this->prodml22__FlashedGas::NetEnergyContentPerUnitVolume = NULL; - this->prodml22__FlashedGas::VaporComposition = NULL; + this->prodml23__FlashedGas::GasDensity = NULL; + this->prodml23__FlashedGas::GasGravity = NULL; + this->prodml23__FlashedGas::GasZFactor = NULL; + this->prodml23__FlashedGas::GasMolecularWeight = NULL; + this->prodml23__FlashedGas::GrossEnergyContentPerUnitMass = NULL; + this->prodml23__FlashedGas::NetEnergyContentPerUnitMass = NULL; + this->prodml23__FlashedGas::GrossEnergyContentPerUnitVolume = NULL; + this->prodml23__FlashedGas::NetEnergyContentPerUnitVolume = NULL; + this->prodml23__FlashedGas::VaporComposition = NULL; } -void prodml22__FlashedGas::soap_serialize(struct soap *soap) const +void prodml23__FlashedGas::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__FlashedGas::GasDensity); - soap_serialize_PointerTodouble(soap, &this->prodml22__FlashedGas::GasGravity); - soap_serialize_PointerTodouble(soap, &this->prodml22__FlashedGas::GasZFactor); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__FlashedGas::GasMolecularWeight); - soap_serialize_PointerToeml23__EnergyPerMassMeasureExt(soap, &this->prodml22__FlashedGas::GrossEnergyContentPerUnitMass); - soap_serialize_PointerToeml23__EnergyPerMassMeasureExt(soap, &this->prodml22__FlashedGas::NetEnergyContentPerUnitMass); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasureExt(soap, &this->prodml22__FlashedGas::GrossEnergyContentPerUnitVolume); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasureExt(soap, &this->prodml22__FlashedGas::NetEnergyContentPerUnitVolume); - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__FlashedGas::VaporComposition); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__FlashedGas::GasDensity); + soap_serialize_PointerTodouble(soap, &this->prodml23__FlashedGas::GasGravity); + soap_serialize_PointerTodouble(soap, &this->prodml23__FlashedGas::GasZFactor); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__FlashedGas::GasMolecularWeight); + soap_serialize_PointerToeml23__EnergyPerMassMeasureExt(soap, &this->prodml23__FlashedGas::GrossEnergyContentPerUnitMass); + soap_serialize_PointerToeml23__EnergyPerMassMeasureExt(soap, &this->prodml23__FlashedGas::NetEnergyContentPerUnitMass); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasureExt(soap, &this->prodml23__FlashedGas::GrossEnergyContentPerUnitVolume); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasureExt(soap, &this->prodml23__FlashedGas::NetEnergyContentPerUnitVolume); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__FlashedGas::VaporComposition); #endif } -int prodml22__FlashedGas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FlashedGas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FlashedGas(soap, tag, id, this, type); + return soap_out_prodml23__FlashedGas(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlashedGas(struct soap *soap, const char *tag, int id, const prodml22__FlashedGas *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlashedGas(struct soap *soap, const char *tag, int id, const prodml23__FlashedGas *a, const char *type) { if (!type) - type = "prodml22:FlashedGas"; + type = "prodml23:FlashedGas"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:GasDensity", -1, &a->prodml22__FlashedGas::GasDensity, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:GasDensity", -1, &a->prodml23__FlashedGas::GasDensity, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasGravity", -1, &a->prodml22__FlashedGas::GasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasGravity", -1, &a->prodml23__FlashedGas::GasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasZFactor", -1, &a->prodml22__FlashedGas::GasZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasZFactor", -1, &a->prodml23__FlashedGas::GasZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", -1, &a->prodml22__FlashedGas::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", -1, &a->prodml23__FlashedGas::GasMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml22:GrossEnergyContentPerUnitMass", -1, &a->prodml22__FlashedGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) + if (soap_out_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml23:GrossEnergyContentPerUnitMass", -1, &a->prodml23__FlashedGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml22:NetEnergyContentPerUnitMass", -1, &a->prodml22__FlashedGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) + if (soap_out_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml23:NetEnergyContentPerUnitMass", -1, &a->prodml23__FlashedGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml22:GrossEnergyContentPerUnitVolume", -1, &a->prodml22__FlashedGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml23:GrossEnergyContentPerUnitVolume", -1, &a->prodml23__FlashedGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml22:NetEnergyContentPerUnitVolume", -1, &a->prodml22__FlashedGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml23:NetEnergyContentPerUnitVolume", -1, &a->prodml23__FlashedGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__FlashedGas::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__FlashedGas::VaporComposition, "prodml23:VaporComposition")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FlashedGas::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlashedGas::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FlashedGas(soap, tag, this, type); + return soap_in_prodml23__FlashedGas(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FlashedGas * SOAP_FMAC4 soap_in_prodml22__FlashedGas(struct soap *soap, const char *tag, prodml22__FlashedGas *a, const char *type) +SOAP_FMAC3 prodml23__FlashedGas * SOAP_FMAC4 soap_in_prodml23__FlashedGas(struct soap *soap, const char *tag, prodml23__FlashedGas *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FlashedGas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas, sizeof(prodml22__FlashedGas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FlashedGas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas, sizeof(prodml23__FlashedGas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FlashedGas *)a->soap_in(soap, tag, type); + return (prodml23__FlashedGas *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -228984,55 +229134,55 @@ SOAP_FMAC3 prodml22__FlashedGas * SOAP_FMAC4 soap_in_prodml22__FlashedGas(struct for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_GasDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:GasDensity", &a->prodml22__FlashedGas::GasDensity, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:GasDensity", &a->prodml23__FlashedGas::GasDensity, "eml23:MassPerVolumeMeasureExt")) { soap_flag_GasDensity1--; continue; } } if (soap_flag_GasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasGravity", &a->prodml22__FlashedGas::GasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasGravity", &a->prodml23__FlashedGas::GasGravity, "xsd:double")) { soap_flag_GasGravity1--; continue; } } if (soap_flag_GasZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasZFactor", &a->prodml22__FlashedGas::GasZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasZFactor", &a->prodml23__FlashedGas::GasZFactor, "xsd:double")) { soap_flag_GasZFactor1--; continue; } } if (soap_flag_GasMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolecularWeight", &a->prodml22__FlashedGas::GasMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolecularWeight", &a->prodml23__FlashedGas::GasMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolecularWeight1--; continue; } } if (soap_flag_GrossEnergyContentPerUnitMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml22:GrossEnergyContentPerUnitMass", &a->prodml22__FlashedGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) + { if (soap_in_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml23:GrossEnergyContentPerUnitMass", &a->prodml23__FlashedGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) { soap_flag_GrossEnergyContentPerUnitMass1--; continue; } } if (soap_flag_NetEnergyContentPerUnitMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml22:NetEnergyContentPerUnitMass", &a->prodml22__FlashedGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) + { if (soap_in_PointerToeml23__EnergyPerMassMeasureExt(soap, "prodml23:NetEnergyContentPerUnitMass", &a->prodml23__FlashedGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasureExt")) { soap_flag_NetEnergyContentPerUnitMass1--; continue; } } if (soap_flag_GrossEnergyContentPerUnitVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml22:GrossEnergyContentPerUnitVolume", &a->prodml22__FlashedGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml23:GrossEnergyContentPerUnitVolume", &a->prodml23__FlashedGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) { soap_flag_GrossEnergyContentPerUnitVolume1--; continue; } } if (soap_flag_NetEnergyContentPerUnitVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml22:NetEnergyContentPerUnitVolume", &a->prodml22__FlashedGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasureExt(soap, "prodml23:NetEnergyContentPerUnitVolume", &a->prodml23__FlashedGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasureExt")) { soap_flag_NetEnergyContentPerUnitVolume1--; continue; } } if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__FlashedGas::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__FlashedGas::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } @@ -229048,35 +229198,35 @@ SOAP_FMAC3 prodml22__FlashedGas * SOAP_FMAC4 soap_in_prodml22__FlashedGas(struct return NULL; } else - { a = (prodml22__FlashedGas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas, sizeof(prodml22__FlashedGas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FlashedGas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas, sizeof(prodml23__FlashedGas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml22__FlashedGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml23__FlashedGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FlashedGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FlashedGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FlashedGas *p; - size_t k = sizeof(prodml22__FlashedGas); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas, n, gsoap_eml2_3_fdelete); + prodml23__FlashedGas *p; + size_t k = sizeof(prodml23__FlashedGas); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FlashedGas); + { p = SOAP_NEW(soap, prodml23__FlashedGas); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FlashedGas, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FlashedGas, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FlashedGas location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FlashedGas location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -229086,116 +229236,116 @@ SOAP_FMAC1 prodml22__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml22__FlashedG return p; } -int prodml22__FlashedGas::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FlashedGas::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FlashedGas(soap, tag ? tag : "prodml22:FlashedGas", -2, this, type)) + if (soap_out_prodml23__FlashedGas(soap, tag ? tag : "prodml23:FlashedGas", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FlashedGas::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FlashedGas::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FlashedGas(soap, this, tag, type); + return soap_get_prodml23__FlashedGas(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FlashedGas * SOAP_FMAC4 soap_get_prodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlashedGas * SOAP_FMAC4 soap_get_prodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FlashedGas(soap, tag, p, type))) + if ((p = soap_in_prodml23__FlashedGas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DifferentialLiberationTest::soap_default(struct soap *soap) +void prodml23__DifferentialLiberationTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__DifferentialLiberationTest::TestNumber); - this->prodml22__DifferentialLiberationTest::TestTemperature = NULL; - this->prodml22__DifferentialLiberationTest::SaturationPressure = NULL; - this->prodml22__DifferentialLiberationTest::SeparatorConditions = NULL; - this->prodml22__DifferentialLiberationTest::CorrectionMethod = NULL; - this->prodml22__DifferentialLiberationTest::Remark = NULL; - this->prodml22__DifferentialLiberationTest::ShrinkageReference = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap, &this->prodml22__DifferentialLiberationTest::DlTestStep); - soap_default_eml23__String64(soap, &this->prodml22__DifferentialLiberationTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__DifferentialLiberationTest::TestNumber); + this->prodml23__DifferentialLiberationTest::TestTemperature = NULL; + this->prodml23__DifferentialLiberationTest::SaturationPressure = NULL; + this->prodml23__DifferentialLiberationTest::SeparatorConditions = NULL; + this->prodml23__DifferentialLiberationTest::CorrectionMethod = NULL; + this->prodml23__DifferentialLiberationTest::Remark = NULL; + this->prodml23__DifferentialLiberationTest::ShrinkageReference = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap, &this->prodml23__DifferentialLiberationTest::DlTestStep); + soap_default_eml23__String64(soap, &this->prodml23__DifferentialLiberationTest::uid); } -void prodml22__DifferentialLiberationTest::soap_serialize(struct soap *soap) const +void prodml23__DifferentialLiberationTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__DifferentialLiberationTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__DifferentialLiberationTest::TestTemperature); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__DifferentialLiberationTest::SaturationPressure); - soap_serialize_PointerToprodml22__SeparatorConditions(soap, &this->prodml22__DifferentialLiberationTest::SeparatorConditions); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__DifferentialLiberationTest::CorrectionMethod); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__DifferentialLiberationTest::Remark); - soap_serialize_PointerToprodml22__FluidVolumeReference(soap, &this->prodml22__DifferentialLiberationTest::ShrinkageReference); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap, &this->prodml22__DifferentialLiberationTest::DlTestStep); + soap_embedded(soap, &this->prodml23__DifferentialLiberationTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__DifferentialLiberationTest::TestTemperature); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__DifferentialLiberationTest::SaturationPressure); + soap_serialize_PointerToprodml23__SeparatorConditions(soap, &this->prodml23__DifferentialLiberationTest::SeparatorConditions); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__DifferentialLiberationTest::CorrectionMethod); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__DifferentialLiberationTest::Remark); + soap_serialize_PointerToprodml23__FluidVolumeReference(soap, &this->prodml23__DifferentialLiberationTest::ShrinkageReference); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap, &this->prodml23__DifferentialLiberationTest::DlTestStep); #endif } -int prodml22__DifferentialLiberationTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DifferentialLiberationTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DifferentialLiberationTest(soap, tag, id, this, type); + return soap_out_prodml23__DifferentialLiberationTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DifferentialLiberationTest(struct soap *soap, const char *tag, int id, const prodml22__DifferentialLiberationTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DifferentialLiberationTest(struct soap *soap, const char *tag, int id, const prodml23__DifferentialLiberationTest *a, const char *type) { if (!type) - type = "prodml22:DifferentialLiberationTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__DifferentialLiberationTest*)a)->uid), 1); + type = "prodml23:DifferentialLiberationTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__DifferentialLiberationTest*)a)->uid), 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_gsoap_eml2_3_prodml22__DifferentialLiberationTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__DifferentialLiberationTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__DifferentialLiberationTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__DifferentialLiberationTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__DifferentialLiberationTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__DifferentialLiberationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__DifferentialLiberationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (!a->prodml22__DifferentialLiberationTest::SaturationPressure) - { if (soap_element_empty(soap, "prodml22:SaturationPressure", 0, NULL)) + if (!a->prodml23__DifferentialLiberationTest::SaturationPressure) + { if (soap_element_empty(soap, "prodml23:SaturationPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__DifferentialLiberationTest::SaturationPressure, "prodml22:SaturationPressure")) + else if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__DifferentialLiberationTest::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_PointerToprodml22__SeparatorConditions(soap, "prodml22:SeparatorConditions", -1, &a->prodml22__DifferentialLiberationTest::SeparatorConditions, "prodml22:SeparatorConditions")) + if (soap_out_PointerToprodml23__SeparatorConditions(soap, "prodml23:SeparatorConditions", -1, &a->prodml23__DifferentialLiberationTest::SeparatorConditions, "prodml23:SeparatorConditions")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:CorrectionMethod", -1, &a->prodml22__DifferentialLiberationTest::CorrectionMethod, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:CorrectionMethod", -1, &a->prodml23__DifferentialLiberationTest::CorrectionMethod, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__DifferentialLiberationTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__DifferentialLiberationTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FluidVolumeReference(soap, "prodml22:ShrinkageReference", -1, &a->prodml22__DifferentialLiberationTest::ShrinkageReference, "prodml22:FluidVolumeReference")) + if (soap_out_PointerToprodml23__FluidVolumeReference(soap, "prodml23:ShrinkageReference", -1, &a->prodml23__DifferentialLiberationTest::ShrinkageReference, "prodml23:FluidVolumeReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap, "prodml22:DlTestStep", -1, &a->prodml22__DifferentialLiberationTest::DlTestStep, "prodml22:FluidDifferentialLiberationTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap, "prodml23:DlTestStep", -1, &a->prodml23__DifferentialLiberationTest::DlTestStep, "prodml23:FluidDifferentialLiberationTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DifferentialLiberationTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DifferentialLiberationTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DifferentialLiberationTest(soap, tag, this, type); + return soap_in_prodml23__DifferentialLiberationTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml22__DifferentialLiberationTest(struct soap *soap, const char *tag, prodml22__DifferentialLiberationTest *a, const char *type) +SOAP_FMAC3 prodml23__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml23__DifferentialLiberationTest(struct soap *soap, const char *tag, prodml23__DifferentialLiberationTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DifferentialLiberationTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, sizeof(prodml22__DifferentialLiberationTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DifferentialLiberationTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, sizeof(prodml23__DifferentialLiberationTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DifferentialLiberationTest *)a->soap_in(soap, tag, type); + return (prodml23__DifferentialLiberationTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__DifferentialLiberationTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__DifferentialLiberationTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -229209,49 +229359,49 @@ SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml22__D for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__DifferentialLiberationTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__DifferentialLiberationTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__DifferentialLiberationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__DifferentialLiberationTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__DifferentialLiberationTest::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__DifferentialLiberationTest::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap_flag_SeparatorConditions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SeparatorConditions(soap, "prodml22:SeparatorConditions", &a->prodml22__DifferentialLiberationTest::SeparatorConditions, "prodml22:SeparatorConditions")) + { if (soap_in_PointerToprodml23__SeparatorConditions(soap, "prodml23:SeparatorConditions", &a->prodml23__DifferentialLiberationTest::SeparatorConditions, "prodml23:SeparatorConditions")) { soap_flag_SeparatorConditions1--; continue; } } if (soap_flag_CorrectionMethod1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:CorrectionMethod", &a->prodml22__DifferentialLiberationTest::CorrectionMethod, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:CorrectionMethod", &a->prodml23__DifferentialLiberationTest::CorrectionMethod, "eml23:String64")) { soap_flag_CorrectionMethod1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__DifferentialLiberationTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__DifferentialLiberationTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_ShrinkageReference1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidVolumeReference(soap, "prodml22:ShrinkageReference", &a->prodml22__DifferentialLiberationTest::ShrinkageReference, "prodml22:FluidVolumeReference")) + { if (soap_in_PointerToprodml23__FluidVolumeReference(soap, "prodml23:ShrinkageReference", &a->prodml23__DifferentialLiberationTest::ShrinkageReference, "prodml23:FluidVolumeReference")) { soap_flag_ShrinkageReference1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap, "prodml22:DlTestStep", &a->prodml22__DifferentialLiberationTest::DlTestStep, "prodml22:FluidDifferentialLiberationTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap, "prodml23:DlTestStep", &a->prodml23__DifferentialLiberationTest::DlTestStep, "prodml23:FluidDifferentialLiberationTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -229263,7 +229413,7 @@ SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml22__D } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__DifferentialLiberationTest::TestTemperature || !a->prodml22__DifferentialLiberationTest::SaturationPressure)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__DifferentialLiberationTest::TestTemperature || !a->prodml23__DifferentialLiberationTest::SaturationPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -229273,35 +229423,35 @@ SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml22__D return NULL; } else - { a = (prodml22__DifferentialLiberationTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, sizeof(prodml22__DifferentialLiberationTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DifferentialLiberationTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, sizeof(prodml23__DifferentialLiberationTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_prodml22__DifferentialLiberationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_prodml23__DifferentialLiberationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DifferentialLiberationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DifferentialLiberationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DifferentialLiberationTest *p; - size_t k = sizeof(prodml22__DifferentialLiberationTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, n, gsoap_eml2_3_fdelete); + prodml23__DifferentialLiberationTest *p; + size_t k = sizeof(prodml23__DifferentialLiberationTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DifferentialLiberationTest); + { p = SOAP_NEW(soap, prodml23__DifferentialLiberationTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DifferentialLiberationTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DifferentialLiberationTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DifferentialLiberationTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DifferentialLiberationTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -229311,80 +229461,80 @@ SOAP_FMAC1 prodml22__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__DifferentialLiberationTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DifferentialLiberationTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DifferentialLiberationTest(soap, tag ? tag : "prodml22:DifferentialLiberationTest", -2, this, type)) + if (soap_out_prodml23__DifferentialLiberationTest(soap, tag ? tag : "prodml23:DifferentialLiberationTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DifferentialLiberationTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DifferentialLiberationTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DifferentialLiberationTest(soap, this, tag, type); + return soap_get_prodml23__DifferentialLiberationTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_get_prodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DifferentialLiberationTest * SOAP_FMAC4 soap_get_prodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DifferentialLiberationTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__DifferentialLiberationTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CumulativeGasProducedVol::soap_default(struct soap *soap) +void prodml23__CumulativeGasProducedVol::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractGasProducedRatioVolume::soap_default(soap); - this->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume = NULL; + this->prodml23__AbstractGasProducedRatioVolume::soap_default(soap); + this->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume = NULL; } -void prodml22__CumulativeGasProducedVol::soap_serialize(struct soap *soap) const +void prodml23__CumulativeGasProducedVol::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume); - this->prodml22__AbstractGasProducedRatioVolume::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume); + this->prodml23__AbstractGasProducedRatioVolume::soap_serialize(soap); #endif } -int prodml22__CumulativeGasProducedVol::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CumulativeGasProducedVol::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CumulativeGasProducedVol(soap, tag, id, this, type); + return soap_out_prodml23__CumulativeGasProducedVol(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CumulativeGasProducedVol(struct soap *soap, const char *tag, int id, const prodml22__CumulativeGasProducedVol *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CumulativeGasProducedVol(struct soap *soap, const char *tag, int id, const prodml23__CumulativeGasProducedVol *a, const char *type) { if (!type) - type = "prodml22:CumulativeGasProducedVol"; + type = "prodml23:CumulativeGasProducedVol"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol), type ? type : "prodml22:CumulativeGasProducedVol")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol), type ? type : "prodml23:CumulativeGasProducedVol")) return soap->error; - if (!a->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume) - { if (soap_element_empty(soap, "prodml22:CumulativeGasProducedVolume", 0, NULL)) + if (!a->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume) + { if (soap_element_empty(soap, "prodml23:CumulativeGasProducedVolume", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:CumulativeGasProducedVolume", -1, &a->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume, "eml23:VolumeMeasure")) + else if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:CumulativeGasProducedVolume", -1, &a->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume, "eml23:VolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CumulativeGasProducedVol::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CumulativeGasProducedVol::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CumulativeGasProducedVol(soap, tag, this, type); + return soap_in_prodml23__CumulativeGasProducedVol(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml22__CumulativeGasProducedVol(struct soap *soap, const char *tag, prodml22__CumulativeGasProducedVol *a, const char *type) +SOAP_FMAC3 prodml23__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml23__CumulativeGasProducedVol(struct soap *soap, const char *tag, prodml23__CumulativeGasProducedVol *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CumulativeGasProducedVol*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol, sizeof(prodml22__CumulativeGasProducedVol), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CumulativeGasProducedVol*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol, sizeof(prodml23__CumulativeGasProducedVol), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CumulativeGasProducedVol *)a->soap_in(soap, tag, type); + return (prodml23__CumulativeGasProducedVol *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -229394,7 +229544,7 @@ SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml22__Cum for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CumulativeGasProducedVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:CumulativeGasProducedVolume", &a->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:CumulativeGasProducedVolume", &a->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume, "eml23:VolumeMeasure")) { soap_flag_CumulativeGasProducedVolume1--; continue; } @@ -229408,7 +229558,7 @@ SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml22__Cum } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume)) + if ((!a->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume)) { soap->error = SOAP_OCCURS; return NULL; } @@ -229418,35 +229568,35 @@ SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml22__Cum return NULL; } else - { a = (prodml22__CumulativeGasProducedVol *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol, sizeof(prodml22__CumulativeGasProducedVol), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CumulativeGasProducedVol *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol, sizeof(prodml23__CumulativeGasProducedVol), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prodml22__CumulativeGasProducedVol(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prodml23__CumulativeGasProducedVol(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CumulativeGasProducedVol(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CumulativeGasProducedVol(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CumulativeGasProducedVol *p; - size_t k = sizeof(prodml22__CumulativeGasProducedVol); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol, n, gsoap_eml2_3_fdelete); + prodml23__CumulativeGasProducedVol *p; + size_t k = sizeof(prodml23__CumulativeGasProducedVol); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CumulativeGasProducedVol); + { p = SOAP_NEW(soap, prodml23__CumulativeGasProducedVol); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CumulativeGasProducedVol, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CumulativeGasProducedVol, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CumulativeGasProducedVol location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CumulativeGasProducedVol location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -229456,80 +229606,80 @@ SOAP_FMAC1 prodml22__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__CumulativeGasProducedVol::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CumulativeGasProducedVol::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CumulativeGasProducedVol(soap, tag ? tag : "prodml22:CumulativeGasProducedVol", -2, this, type)) + if (soap_out_prodml23__CumulativeGasProducedVol(soap, tag ? tag : "prodml23:CumulativeGasProducedVol", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CumulativeGasProducedVol::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CumulativeGasProducedVol::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CumulativeGasProducedVol(soap, this, tag, type); + return soap_get_prodml23__CumulativeGasProducedVol(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_get_prodml22__CumulativeGasProducedVol(struct soap *soap, prodml22__CumulativeGasProducedVol *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CumulativeGasProducedVol * SOAP_FMAC4 soap_get_prodml23__CumulativeGasProducedVol(struct soap *soap, prodml23__CumulativeGasProducedVol *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CumulativeGasProducedVol(soap, tag, p, type))) + if ((p = soap_in_prodml23__CumulativeGasProducedVol(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CumulativeGasProducedRatioStd::soap_default(struct soap *soap) +void prodml23__CumulativeGasProducedRatioStd::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractGasProducedRatioVolume::soap_default(soap); - this->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd = NULL; + this->prodml23__AbstractGasProducedRatioVolume::soap_default(soap); + this->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd = NULL; } -void prodml22__CumulativeGasProducedRatioStd::soap_serialize(struct soap *soap) const +void prodml23__CumulativeGasProducedRatioStd::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd); - this->prodml22__AbstractGasProducedRatioVolume::soap_serialize(soap); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd); + this->prodml23__AbstractGasProducedRatioVolume::soap_serialize(soap); #endif } -int prodml22__CumulativeGasProducedRatioStd::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CumulativeGasProducedRatioStd::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CumulativeGasProducedRatioStd(soap, tag, id, this, type); + return soap_out_prodml23__CumulativeGasProducedRatioStd(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, const char *tag, int id, const prodml22__CumulativeGasProducedRatioStd *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, const char *tag, int id, const prodml23__CumulativeGasProducedRatioStd *a, const char *type) { if (!type) - type = "prodml22:CumulativeGasProducedRatioStd"; + type = "prodml23:CumulativeGasProducedRatioStd"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd), type ? type : "prodml22:CumulativeGasProducedRatioStd")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd), type ? type : "prodml23:CumulativeGasProducedRatioStd")) return soap->error; - if (!a->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd) - { if (soap_element_empty(soap, "prodml22:CumulativeGasProducedRatioStd", 0, NULL)) + if (!a->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd) + { if (soap_element_empty(soap, "prodml23:CumulativeGasProducedRatioStd", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeGasProducedRatioStd", -1, &a->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd, "eml23:VolumePerVolumeMeasure")) + else if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeGasProducedRatioStd", -1, &a->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CumulativeGasProducedRatioStd::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CumulativeGasProducedRatioStd::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CumulativeGasProducedRatioStd(soap, tag, this, type); + return soap_in_prodml23__CumulativeGasProducedRatioStd(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, const char *tag, prodml22__CumulativeGasProducedRatioStd *a, const char *type) +SOAP_FMAC3 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, const char *tag, prodml23__CumulativeGasProducedRatioStd *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CumulativeGasProducedRatioStd*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd, sizeof(prodml22__CumulativeGasProducedRatioStd), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CumulativeGasProducedRatioStd*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd, sizeof(prodml23__CumulativeGasProducedRatioStd), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CumulativeGasProducedRatioStd *)a->soap_in(soap, tag, type); + return (prodml23__CumulativeGasProducedRatioStd *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -229539,7 +229689,7 @@ SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CumulativeGasProducedRatioStd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:CumulativeGasProducedRatioStd", &a->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:CumulativeGasProducedRatioStd", &a->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd, "eml23:VolumePerVolumeMeasure")) { soap_flag_CumulativeGasProducedRatioStd1--; continue; } @@ -229553,7 +229703,7 @@ SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml22 } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd)) + if ((!a->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd)) { soap->error = SOAP_OCCURS; return NULL; } @@ -229563,35 +229713,35 @@ SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__CumulativeGasProducedRatioStd *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd, sizeof(prodml22__CumulativeGasProducedRatioStd), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CumulativeGasProducedRatioStd *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd, sizeof(prodml23__CumulativeGasProducedRatioStd), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CumulativeGasProducedRatioStd(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CumulativeGasProducedRatioStd(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CumulativeGasProducedRatioStd *p; - size_t k = sizeof(prodml22__CumulativeGasProducedRatioStd); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd, n, gsoap_eml2_3_fdelete); + prodml23__CumulativeGasProducedRatioStd *p; + size_t k = sizeof(prodml23__CumulativeGasProducedRatioStd); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CumulativeGasProducedRatioStd); + { p = SOAP_NEW(soap, prodml23__CumulativeGasProducedRatioStd); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CumulativeGasProducedRatioStd, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CumulativeGasProducedRatioStd, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CumulativeGasProducedRatioStd location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CumulativeGasProducedRatioStd location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -229601,108 +229751,108 @@ SOAP_FMAC1 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__CumulativeGasProducedRatioStd::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CumulativeGasProducedRatioStd::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CumulativeGasProducedRatioStd(soap, tag ? tag : "prodml22:CumulativeGasProducedRatioStd", -2, this, type)) + if (soap_out_prodml23__CumulativeGasProducedRatioStd(soap, tag ? tag : "prodml23:CumulativeGasProducedRatioStd", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CumulativeGasProducedRatioStd::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CumulativeGasProducedRatioStd::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CumulativeGasProducedRatioStd(soap, this, tag, type); + return soap_get_prodml23__CumulativeGasProducedRatioStd(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_get_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, prodml22__CumulativeGasProducedRatioStd *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_get_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, prodml23__CumulativeGasProducedRatioStd *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CumulativeGasProducedRatioStd(soap, tag, p, type))) + if ((p = soap_in_prodml23__CumulativeGasProducedRatioStd(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ConstantVolumeDepletionTest::soap_default(struct soap *soap) +void prodml23__ConstantVolumeDepletionTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__ConstantVolumeDepletionTest::TestNumber); - this->prodml22__ConstantVolumeDepletionTest::TestTemperature = NULL; - this->prodml22__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd = NULL; - this->prodml22__ConstantVolumeDepletionTest::Remark = NULL; - this->prodml22__ConstantVolumeDepletionTest::SaturationPressure = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, &this->prodml22__ConstantVolumeDepletionTest::LiquidFractionReference); - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap, &this->prodml22__ConstantVolumeDepletionTest::CvdTestStep); - soap_default_eml23__String64(soap, &this->prodml22__ConstantVolumeDepletionTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__ConstantVolumeDepletionTest::TestNumber); + this->prodml23__ConstantVolumeDepletionTest::TestTemperature = NULL; + this->prodml23__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd = NULL; + this->prodml23__ConstantVolumeDepletionTest::Remark = NULL; + this->prodml23__ConstantVolumeDepletionTest::SaturationPressure = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, &this->prodml23__ConstantVolumeDepletionTest::LiquidFractionReference); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap, &this->prodml23__ConstantVolumeDepletionTest::CvdTestStep); + soap_default_eml23__String64(soap, &this->prodml23__ConstantVolumeDepletionTest::uid); } -void prodml22__ConstantVolumeDepletionTest::soap_serialize(struct soap *soap) const +void prodml23__ConstantVolumeDepletionTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ConstantVolumeDepletionTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__ConstantVolumeDepletionTest::TestTemperature); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ConstantVolumeDepletionTest::Remark); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__ConstantVolumeDepletionTest::SaturationPressure); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, &this->prodml22__ConstantVolumeDepletionTest::LiquidFractionReference); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap, &this->prodml22__ConstantVolumeDepletionTest::CvdTestStep); + soap_embedded(soap, &this->prodml23__ConstantVolumeDepletionTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__ConstantVolumeDepletionTest::TestTemperature); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ConstantVolumeDepletionTest::Remark); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__ConstantVolumeDepletionTest::SaturationPressure); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, &this->prodml23__ConstantVolumeDepletionTest::LiquidFractionReference); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap, &this->prodml23__ConstantVolumeDepletionTest::CvdTestStep); #endif } -int prodml22__ConstantVolumeDepletionTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ConstantVolumeDepletionTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ConstantVolumeDepletionTest(soap, tag, id, this, type); + return soap_out_prodml23__ConstantVolumeDepletionTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, int id, const prodml22__ConstantVolumeDepletionTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, int id, const prodml23__ConstantVolumeDepletionTest *a, const char *type) { if (!type) - type = "prodml22:ConstantVolumeDepletionTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ConstantVolumeDepletionTest*)a)->uid), 1); + type = "prodml23:ConstantVolumeDepletionTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ConstantVolumeDepletionTest*)a)->uid), 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_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__ConstantVolumeDepletionTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__ConstantVolumeDepletionTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__ConstantVolumeDepletionTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__ConstantVolumeDepletionTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__ConstantVolumeDepletionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__ConstantVolumeDepletionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:CumulativeGasProducedReferenceStd", -1, &a->prodml22__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:CumulativeGasProducedReferenceStd", -1, &a->prodml23__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__ConstantVolumeDepletionTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__ConstantVolumeDepletionTest::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__ConstantVolumeDepletionTest::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__ConstantVolumeDepletionTest::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, "prodml22:LiquidFractionReference", -1, &a->prodml22__ConstantVolumeDepletionTest::LiquidFractionReference, "prodml22:FluidVolumeReference")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, "prodml23:LiquidFractionReference", -1, &a->prodml23__ConstantVolumeDepletionTest::LiquidFractionReference, "prodml23:FluidVolumeReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap, "prodml22:CvdTestStep", -1, &a->prodml22__ConstantVolumeDepletionTest::CvdTestStep, "prodml22:FluidCvdTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap, "prodml23:CvdTestStep", -1, &a->prodml23__ConstantVolumeDepletionTest::CvdTestStep, "prodml23:FluidCvdTestStep")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ConstantVolumeDepletionTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantVolumeDepletionTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ConstantVolumeDepletionTest(soap, tag, this, type); + return soap_in_prodml23__ConstantVolumeDepletionTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, prodml22__ConstantVolumeDepletionTest *a, const char *type) +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, prodml23__ConstantVolumeDepletionTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ConstantVolumeDepletionTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, sizeof(prodml22__ConstantVolumeDepletionTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ConstantVolumeDepletionTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, sizeof(prodml23__ConstantVolumeDepletionTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ConstantVolumeDepletionTest *)a->soap_in(soap, tag, type); + return (prodml23__ConstantVolumeDepletionTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ConstantVolumeDepletionTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ConstantVolumeDepletionTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -229714,41 +229864,41 @@ SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__ConstantVolumeDepletionTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__ConstantVolumeDepletionTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__ConstantVolumeDepletionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__ConstantVolumeDepletionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_CumulativeGasProducedReferenceStd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:CumulativeGasProducedReferenceStd", &a->prodml22__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:CumulativeGasProducedReferenceStd", &a->prodml23__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd, "eml23:VolumeMeasure")) { soap_flag_CumulativeGasProducedReferenceStd1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__ConstantVolumeDepletionTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__ConstantVolumeDepletionTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__ConstantVolumeDepletionTest::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__ConstantVolumeDepletionTest::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, "prodml22:LiquidFractionReference", &a->prodml22__ConstantVolumeDepletionTest::LiquidFractionReference, "prodml22:FluidVolumeReference")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, "prodml23:LiquidFractionReference", &a->prodml23__ConstantVolumeDepletionTest::LiquidFractionReference, "prodml23:FluidVolumeReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap, "prodml22:CvdTestStep", &a->prodml22__ConstantVolumeDepletionTest::CvdTestStep, "prodml22:FluidCvdTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap, "prodml23:CvdTestStep", &a->prodml23__ConstantVolumeDepletionTest::CvdTestStep, "prodml23:FluidCvdTestStep")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -229760,7 +229910,7 @@ SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml22__ } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__ConstantVolumeDepletionTest::TestTemperature)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__ConstantVolumeDepletionTest::TestTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -229770,35 +229920,35 @@ SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__ConstantVolumeDepletionTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, sizeof(prodml22__ConstantVolumeDepletionTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantVolumeDepletionTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, sizeof(prodml23__ConstantVolumeDepletionTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_prodml22__ConstantVolumeDepletionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_prodml23__ConstantVolumeDepletionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ConstantVolumeDepletionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ConstantVolumeDepletionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ConstantVolumeDepletionTest *p; - size_t k = sizeof(prodml22__ConstantVolumeDepletionTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, n, gsoap_eml2_3_fdelete); + prodml23__ConstantVolumeDepletionTest *p; + size_t k = sizeof(prodml23__ConstantVolumeDepletionTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ConstantVolumeDepletionTest); + { p = SOAP_NEW(soap, prodml23__ConstantVolumeDepletionTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ConstantVolumeDepletionTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ConstantVolumeDepletionTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ConstantVolumeDepletionTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ConstantVolumeDepletionTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -229808,156 +229958,156 @@ SOAP_FMAC1 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__ConstantVolumeDepletionTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ConstantVolumeDepletionTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ConstantVolumeDepletionTest(soap, tag ? tag : "prodml22:ConstantVolumeDepletionTest", -2, this, type)) + if (soap_out_prodml23__ConstantVolumeDepletionTest(soap, tag ? tag : "prodml23:ConstantVolumeDepletionTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ConstantVolumeDepletionTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantVolumeDepletionTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ConstantVolumeDepletionTest(soap, this, tag, type); + return soap_get_prodml23__ConstantVolumeDepletionTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_get_prodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_get_prodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ConstantVolumeDepletionTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__ConstantVolumeDepletionTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ConstantCompositionExpansionTestStep::soap_default(struct soap *soap) +void prodml23__ConstantCompositionExpansionTestStep::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__ConstantCompositionExpansionTestStep::StepNumber); - this->prodml22__ConstantCompositionExpansionTestStep::StepPressure = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::LiquidFraction = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::OilDensity = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::OilCompressibility = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::OilViscosity = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::TotalVolume = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::RelativeVolumeRatio = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::GasDensity = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::GasZFactor = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::GasCompressibility = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::GasViscosity = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::YFunction = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::FluidCondition = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::PhasesPresent = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::VaporComposition = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::LiquidComposition = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::OverallComposition = NULL; - this->prodml22__ConstantCompositionExpansionTestStep::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ConstantCompositionExpansionTestStep::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__ConstantCompositionExpansionTestStep::StepNumber); + this->prodml23__ConstantCompositionExpansionTestStep::StepPressure = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::LiquidFraction = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::OilDensity = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::OilCompressibility = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::OilViscosity = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::TotalVolume = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::RelativeVolumeRatio = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::GasDensity = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::GasZFactor = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::GasCompressibility = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::GasViscosity = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::YFunction = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::FluidCondition = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::PhasesPresent = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::VaporComposition = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::LiquidComposition = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::OverallComposition = NULL; + this->prodml23__ConstantCompositionExpansionTestStep::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ConstantCompositionExpansionTestStep::uid); } -void prodml22__ConstantCompositionExpansionTestStep::soap_serialize(struct soap *soap) const +void prodml23__ConstantCompositionExpansionTestStep::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ConstantCompositionExpansionTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::StepPressure); - soap_serialize_PointerToprodml22__RelativeVolumeRatio(soap, &this->prodml22__ConstantCompositionExpansionTestStep::LiquidFraction); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::OilDensity); - soap_serialize_PointerToprodml22__OilCompressibility(soap, &this->prodml22__ConstantCompositionExpansionTestStep::OilCompressibility); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::OilViscosity); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::TotalVolume); - soap_serialize_PointerToprodml22__RelativeVolumeRatio(soap, &this->prodml22__ConstantCompositionExpansionTestStep::RelativeVolumeRatio); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::GasDensity); - soap_serialize_PointerTodouble(soap, &this->prodml22__ConstantCompositionExpansionTestStep::GasZFactor); - soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::GasCompressibility); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__ConstantCompositionExpansionTestStep::GasViscosity); - soap_serialize_PointerTodouble(soap, &this->prodml22__ConstantCompositionExpansionTestStep::YFunction); - soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(soap, &this->prodml22__ConstantCompositionExpansionTestStep::FluidCondition); - soap_serialize_PointerToprodml22__PhasePresent(soap, &this->prodml22__ConstantCompositionExpansionTestStep::PhasesPresent); - soap_serialize_PointerToprodml22__VaporComposition(soap, &this->prodml22__ConstantCompositionExpansionTestStep::VaporComposition); - soap_serialize_PointerToprodml22__LiquidComposition(soap, &this->prodml22__ConstantCompositionExpansionTestStep::LiquidComposition); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__ConstantCompositionExpansionTestStep::OverallComposition); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ConstantCompositionExpansionTestStep::Remark); + soap_embedded(soap, &this->prodml23__ConstantCompositionExpansionTestStep::StepNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::StepPressure); + soap_serialize_PointerToprodml23__RelativeVolumeRatio(soap, &this->prodml23__ConstantCompositionExpansionTestStep::LiquidFraction); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::OilDensity); + soap_serialize_PointerToprodml23__OilCompressibility(soap, &this->prodml23__ConstantCompositionExpansionTestStep::OilCompressibility); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::OilViscosity); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::TotalVolume); + soap_serialize_PointerToprodml23__RelativeVolumeRatio(soap, &this->prodml23__ConstantCompositionExpansionTestStep::RelativeVolumeRatio); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::GasDensity); + soap_serialize_PointerTodouble(soap, &this->prodml23__ConstantCompositionExpansionTestStep::GasZFactor); + soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::GasCompressibility); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__ConstantCompositionExpansionTestStep::GasViscosity); + soap_serialize_PointerTodouble(soap, &this->prodml23__ConstantCompositionExpansionTestStep::YFunction); + soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(soap, &this->prodml23__ConstantCompositionExpansionTestStep::FluidCondition); + soap_serialize_PointerToprodml23__PhasePresent(soap, &this->prodml23__ConstantCompositionExpansionTestStep::PhasesPresent); + soap_serialize_PointerToprodml23__VaporComposition(soap, &this->prodml23__ConstantCompositionExpansionTestStep::VaporComposition); + soap_serialize_PointerToprodml23__LiquidComposition(soap, &this->prodml23__ConstantCompositionExpansionTestStep::LiquidComposition); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__ConstantCompositionExpansionTestStep::OverallComposition); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ConstantCompositionExpansionTestStep::Remark); #endif } -int prodml22__ConstantCompositionExpansionTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ConstantCompositionExpansionTestStep::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ConstantCompositionExpansionTestStep(soap, tag, id, this, type); + return soap_out_prodml23__ConstantCompositionExpansionTestStep(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, int id, const prodml22__ConstantCompositionExpansionTestStep *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, int id, const prodml23__ConstantCompositionExpansionTestStep *a, const char *type) { if (!type) - type = "prodml22:ConstantCompositionExpansionTestStep"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ConstantCompositionExpansionTestStep*)a)->uid), 1); + type = "prodml23:ConstantCompositionExpansionTestStep"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ConstantCompositionExpansionTestStep*)a)->uid), 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_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:StepNumber", -1, &a->prodml22__ConstantCompositionExpansionTestStep::StepNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:StepNumber", -1, &a->prodml23__ConstantCompositionExpansionTestStep::StepNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__ConstantCompositionExpansionTestStep::StepPressure) - { if (soap_element_empty(soap, "prodml22:StepPressure", 0, NULL)) + if (!a->prodml23__ConstantCompositionExpansionTestStep::StepPressure) + { if (soap_element_empty(soap, "prodml23:StepPressure", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", -1, &a->prodml22__ConstantCompositionExpansionTestStep::StepPressure, "eml23:PressureMeasure")) + else if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", -1, &a->prodml23__ConstantCompositionExpansionTestStep::StepPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:LiquidFraction", -1, &a->prodml22__ConstantCompositionExpansionTestStep::LiquidFraction, "prodml22:RelativeVolumeRatio")) + if (soap_out_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:LiquidFraction", -1, &a->prodml23__ConstantCompositionExpansionTestStep::LiquidFraction, "prodml23:RelativeVolumeRatio")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", -1, &a->prodml22__ConstantCompositionExpansionTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", -1, &a->prodml23__ConstantCompositionExpansionTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__OilCompressibility(soap, "prodml22:OilCompressibility", -1, &a->prodml22__ConstantCompositionExpansionTestStep::OilCompressibility, "prodml22:OilCompressibility")) + if (soap_out_PointerToprodml23__OilCompressibility(soap, "prodml23:OilCompressibility", -1, &a->prodml23__ConstantCompositionExpansionTestStep::OilCompressibility, "prodml23:OilCompressibility")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", -1, &a->prodml22__ConstantCompositionExpansionTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", -1, &a->prodml23__ConstantCompositionExpansionTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:TotalVolume", -1, &a->prodml22__ConstantCompositionExpansionTestStep::TotalVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:TotalVolume", -1, &a->prodml23__ConstantCompositionExpansionTestStep::TotalVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:RelativeVolumeRatio", -1, &a->prodml22__ConstantCompositionExpansionTestStep::RelativeVolumeRatio, "prodml22:RelativeVolumeRatio")) + if (soap_out_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:RelativeVolumeRatio", -1, &a->prodml23__ConstantCompositionExpansionTestStep::RelativeVolumeRatio, "prodml23:RelativeVolumeRatio")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", -1, &a->prodml22__ConstantCompositionExpansionTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", -1, &a->prodml23__ConstantCompositionExpansionTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasZFactor", -1, &a->prodml22__ConstantCompositionExpansionTestStep::GasZFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasZFactor", -1, &a->prodml23__ConstantCompositionExpansionTestStep::GasZFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:GasCompressibility", -1, &a->prodml22__ConstantCompositionExpansionTestStep::GasCompressibility, "eml23:ReciprocalPressureMeasure")) + if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:GasCompressibility", -1, &a->prodml23__ConstantCompositionExpansionTestStep::GasCompressibility, "eml23:ReciprocalPressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__ConstantCompositionExpansionTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__ConstantCompositionExpansionTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:YFunction", -1, &a->prodml22__ConstantCompositionExpansionTestStep::YFunction, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:YFunction", -1, &a->prodml23__ConstantCompositionExpansionTestStep::YFunction, "xsd:double")) return soap->error; - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", -1, &a->prodml22__ConstantCompositionExpansionTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", -1, &a->prodml23__ConstantCompositionExpansionTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) return soap->error; - if (soap_out_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", -1, &a->prodml22__ConstantCompositionExpansionTestStep::PhasesPresent, "prodml22:PhasePresent")) + if (soap_out_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", -1, &a->prodml23__ConstantCompositionExpansionTestStep::PhasesPresent, "prodml23:PhasePresent")) return soap->error; - if (soap_out_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", -1, &a->prodml22__ConstantCompositionExpansionTestStep::VaporComposition, "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", -1, &a->prodml23__ConstantCompositionExpansionTestStep::VaporComposition, "prodml23:VaporComposition")) return soap->error; - if (soap_out_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", -1, &a->prodml22__ConstantCompositionExpansionTestStep::LiquidComposition, "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", -1, &a->prodml23__ConstantCompositionExpansionTestStep::LiquidComposition, "prodml23:LiquidComposition")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__ConstantCompositionExpansionTestStep::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__ConstantCompositionExpansionTestStep::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__ConstantCompositionExpansionTestStep::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__ConstantCompositionExpansionTestStep::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ConstantCompositionExpansionTestStep::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantCompositionExpansionTestStep::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ConstantCompositionExpansionTestStep(soap, tag, this, type); + return soap_in_prodml23__ConstantCompositionExpansionTestStep(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, prodml22__ConstantCompositionExpansionTestStep *a, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, prodml23__ConstantCompositionExpansionTestStep *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ConstantCompositionExpansionTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, sizeof(prodml22__ConstantCompositionExpansionTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ConstantCompositionExpansionTestStep*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, sizeof(prodml23__ConstantCompositionExpansionTestStep), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ConstantCompositionExpansionTestStep *)a->soap_in(soap, tag, type); + return (prodml23__ConstantCompositionExpansionTestStep *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ConstantCompositionExpansionTestStep*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ConstantCompositionExpansionTestStep*)a)->uid)) return NULL; size_t soap_flag_StepNumber1 = 1; size_t soap_flag_StepPressure1 = 1; @@ -229983,115 +230133,115 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_p for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_StepNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:StepNumber", &a->prodml22__ConstantCompositionExpansionTestStep::StepNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:StepNumber", &a->prodml23__ConstantCompositionExpansionTestStep::StepNumber, "eml23:NonNegativeLong")) { soap_flag_StepNumber1--; continue; } } if (soap_flag_StepPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:StepPressure", &a->prodml22__ConstantCompositionExpansionTestStep::StepPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:StepPressure", &a->prodml23__ConstantCompositionExpansionTestStep::StepPressure, "eml23:PressureMeasure")) { soap_flag_StepPressure1--; continue; } } if (soap_flag_LiquidFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:LiquidFraction", &a->prodml22__ConstantCompositionExpansionTestStep::LiquidFraction, "prodml22:RelativeVolumeRatio")) + { if (soap_in_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:LiquidFraction", &a->prodml23__ConstantCompositionExpansionTestStep::LiquidFraction, "prodml23:RelativeVolumeRatio")) { soap_flag_LiquidFraction1--; continue; } } if (soap_flag_OilDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:OilDensity", &a->prodml22__ConstantCompositionExpansionTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:OilDensity", &a->prodml23__ConstantCompositionExpansionTestStep::OilDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_OilDensity1--; continue; } } if (soap_flag_OilCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OilCompressibility(soap, "prodml22:OilCompressibility", &a->prodml22__ConstantCompositionExpansionTestStep::OilCompressibility, "prodml22:OilCompressibility")) + { if (soap_in_PointerToprodml23__OilCompressibility(soap, "prodml23:OilCompressibility", &a->prodml23__ConstantCompositionExpansionTestStep::OilCompressibility, "prodml23:OilCompressibility")) { soap_flag_OilCompressibility1--; continue; } } if (soap_flag_OilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:OilViscosity", &a->prodml22__ConstantCompositionExpansionTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:OilViscosity", &a->prodml23__ConstantCompositionExpansionTestStep::OilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_OilViscosity1--; continue; } } if (soap_flag_TotalVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:TotalVolume", &a->prodml22__ConstantCompositionExpansionTestStep::TotalVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:TotalVolume", &a->prodml23__ConstantCompositionExpansionTestStep::TotalVolume, "eml23:VolumeMeasure")) { soap_flag_TotalVolume1--; continue; } } if (soap_flag_RelativeVolumeRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__RelativeVolumeRatio(soap, "prodml22:RelativeVolumeRatio", &a->prodml22__ConstantCompositionExpansionTestStep::RelativeVolumeRatio, "prodml22:RelativeVolumeRatio")) + { if (soap_in_PointerToprodml23__RelativeVolumeRatio(soap, "prodml23:RelativeVolumeRatio", &a->prodml23__ConstantCompositionExpansionTestStep::RelativeVolumeRatio, "prodml23:RelativeVolumeRatio")) { soap_flag_RelativeVolumeRatio1--; continue; } } if (soap_flag_GasDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", &a->prodml22__ConstantCompositionExpansionTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", &a->prodml23__ConstantCompositionExpansionTestStep::GasDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_GasDensity1--; continue; } } if (soap_flag_GasZFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasZFactor", &a->prodml22__ConstantCompositionExpansionTestStep::GasZFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasZFactor", &a->prodml23__ConstantCompositionExpansionTestStep::GasZFactor, "xsd:double")) { soap_flag_GasZFactor1--; continue; } } if (soap_flag_GasCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:GasCompressibility", &a->prodml22__ConstantCompositionExpansionTestStep::GasCompressibility, "eml23:ReciprocalPressureMeasure")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:GasCompressibility", &a->prodml23__ConstantCompositionExpansionTestStep::GasCompressibility, "eml23:ReciprocalPressureMeasure")) { soap_flag_GasCompressibility1--; continue; } } if (soap_flag_GasViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__ConstantCompositionExpansionTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__ConstantCompositionExpansionTestStep::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity1--; continue; } } if (soap_flag_YFunction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:YFunction", &a->prodml22__ConstantCompositionExpansionTestStep::YFunction, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:YFunction", &a->prodml23__ConstantCompositionExpansionTestStep::YFunction, "xsd:double")) { soap_flag_YFunction1--; continue; } } if (soap_flag_FluidCondition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, "prodml22:FluidCondition", &a->prodml22__ConstantCompositionExpansionTestStep::FluidCondition, "prodml22:FluidAnalysisStepCondition")) + { if (soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, "prodml23:FluidCondition", &a->prodml23__ConstantCompositionExpansionTestStep::FluidCondition, "prodml23:FluidAnalysisStepCondition")) { soap_flag_FluidCondition1--; continue; } } if (soap_flag_PhasesPresent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PhasePresent(soap, "prodml22:PhasesPresent", &a->prodml22__ConstantCompositionExpansionTestStep::PhasesPresent, "prodml22:PhasePresent")) + { if (soap_in_PointerToprodml23__PhasePresent(soap, "prodml23:PhasesPresent", &a->prodml23__ConstantCompositionExpansionTestStep::PhasesPresent, "prodml23:PhasePresent")) { soap_flag_PhasesPresent1--; continue; } } if (soap_flag_VaporComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__VaporComposition(soap, "prodml22:VaporComposition", &a->prodml22__ConstantCompositionExpansionTestStep::VaporComposition, "prodml22:VaporComposition")) + { if (soap_in_PointerToprodml23__VaporComposition(soap, "prodml23:VaporComposition", &a->prodml23__ConstantCompositionExpansionTestStep::VaporComposition, "prodml23:VaporComposition")) { soap_flag_VaporComposition1--; continue; } } if (soap_flag_LiquidComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__LiquidComposition(soap, "prodml22:LiquidComposition", &a->prodml22__ConstantCompositionExpansionTestStep::LiquidComposition, "prodml22:LiquidComposition")) + { if (soap_in_PointerToprodml23__LiquidComposition(soap, "prodml23:LiquidComposition", &a->prodml23__ConstantCompositionExpansionTestStep::LiquidComposition, "prodml23:LiquidComposition")) { soap_flag_LiquidComposition1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__ConstantCompositionExpansionTestStep::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__ConstantCompositionExpansionTestStep::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__ConstantCompositionExpansionTestStep::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__ConstantCompositionExpansionTestStep::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -230105,7 +230255,7 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_p } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_StepNumber1 > 0 || !a->prodml22__ConstantCompositionExpansionTestStep::StepPressure)) + if ((soap_flag_StepNumber1 > 0 || !a->prodml23__ConstantCompositionExpansionTestStep::StepPressure)) { soap->error = SOAP_OCCURS; return NULL; } @@ -230115,35 +230265,35 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_p return NULL; } else - { a = (prodml22__ConstantCompositionExpansionTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, sizeof(prodml22__ConstantCompositionExpansionTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantCompositionExpansionTestStep *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, sizeof(prodml23__ConstantCompositionExpansionTestStep), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ConstantCompositionExpansionTestStep *p; - size_t k = sizeof(prodml22__ConstantCompositionExpansionTestStep); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, n, gsoap_eml2_3_fdelete); + prodml23__ConstantCompositionExpansionTestStep *p; + size_t k = sizeof(prodml23__ConstantCompositionExpansionTestStep); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ConstantCompositionExpansionTestStep); + { p = SOAP_NEW(soap, prodml23__ConstantCompositionExpansionTestStep); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ConstantCompositionExpansionTestStep, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ConstantCompositionExpansionTestStep, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ConstantCompositionExpansionTestStep location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ConstantCompositionExpansionTestStep location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -230153,108 +230303,108 @@ SOAP_FMAC1 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_inst return p; } -int prodml22__ConstantCompositionExpansionTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ConstantCompositionExpansionTestStep::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ConstantCompositionExpansionTestStep(soap, tag ? tag : "prodml22:ConstantCompositionExpansionTestStep", -2, this, type)) + if (soap_out_prodml23__ConstantCompositionExpansionTestStep(soap, tag ? tag : "prodml23:ConstantCompositionExpansionTestStep", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ConstantCompositionExpansionTestStep::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantCompositionExpansionTestStep::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ConstantCompositionExpansionTestStep(soap, this, tag, type); + return soap_get_prodml23__ConstantCompositionExpansionTestStep(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_get_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_get_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ConstantCompositionExpansionTestStep(soap, tag, p, type))) + if ((p = soap_in_prodml23__ConstantCompositionExpansionTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ConstantCompositionExpansionTest::soap_default(struct soap *soap) +void prodml23__ConstantCompositionExpansionTest::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__ConstantCompositionExpansionTest::TestNumber); - this->prodml22__ConstantCompositionExpansionTest::TestTemperature = NULL; - this->prodml22__ConstantCompositionExpansionTest::SaturationPressure = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, &this->prodml22__ConstantCompositionExpansionTest::LiquidFractionReference); - soap_default_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, &this->prodml22__ConstantCompositionExpansionTest::RelativeVolumeReference); - soap_default_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap, &this->prodml22__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep); - this->prodml22__ConstantCompositionExpansionTest::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ConstantCompositionExpansionTest::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__ConstantCompositionExpansionTest::TestNumber); + this->prodml23__ConstantCompositionExpansionTest::TestTemperature = NULL; + this->prodml23__ConstantCompositionExpansionTest::SaturationPressure = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, &this->prodml23__ConstantCompositionExpansionTest::LiquidFractionReference); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, &this->prodml23__ConstantCompositionExpansionTest::RelativeVolumeReference); + soap_default_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap, &this->prodml23__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep); + this->prodml23__ConstantCompositionExpansionTest::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ConstantCompositionExpansionTest::uid); } -void prodml22__ConstantCompositionExpansionTest::soap_serialize(struct soap *soap) const +void prodml23__ConstantCompositionExpansionTest::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ConstantCompositionExpansionTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__ConstantCompositionExpansionTest::TestTemperature); - soap_serialize_PointerToprodml22__SaturationPressure(soap, &this->prodml22__ConstantCompositionExpansionTest::SaturationPressure); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, &this->prodml22__ConstantCompositionExpansionTest::LiquidFractionReference); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, &this->prodml22__ConstantCompositionExpansionTest::RelativeVolumeReference); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap, &this->prodml22__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ConstantCompositionExpansionTest::Remark); + soap_embedded(soap, &this->prodml23__ConstantCompositionExpansionTest::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__ConstantCompositionExpansionTest::TestTemperature); + soap_serialize_PointerToprodml23__SaturationPressure(soap, &this->prodml23__ConstantCompositionExpansionTest::SaturationPressure); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, &this->prodml23__ConstantCompositionExpansionTest::LiquidFractionReference); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, &this->prodml23__ConstantCompositionExpansionTest::RelativeVolumeReference); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap, &this->prodml23__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ConstantCompositionExpansionTest::Remark); #endif } -int prodml22__ConstantCompositionExpansionTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ConstantCompositionExpansionTest::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ConstantCompositionExpansionTest(soap, tag, id, this, type); + return soap_out_prodml23__ConstantCompositionExpansionTest(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, int id, const prodml22__ConstantCompositionExpansionTest *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, int id, const prodml23__ConstantCompositionExpansionTest *a, const char *type) { if (!type) - type = "prodml22:ConstantCompositionExpansionTest"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ConstantCompositionExpansionTest*)a)->uid), 1); + type = "prodml23:ConstantCompositionExpansionTest"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ConstantCompositionExpansionTest*)a)->uid), 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_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__ConstantCompositionExpansionTest::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__ConstantCompositionExpansionTest::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (!a->prodml22__ConstantCompositionExpansionTest::TestTemperature) - { if (soap_element_empty(soap, "prodml22:TestTemperature", 0, NULL)) + if (!a->prodml23__ConstantCompositionExpansionTest::TestTemperature) + { if (soap_element_empty(soap, "prodml23:TestTemperature", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", -1, &a->prodml22__ConstantCompositionExpansionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + else if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", -1, &a->prodml23__ConstantCompositionExpansionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", -1, &a->prodml22__ConstantCompositionExpansionTest::SaturationPressure, "prodml22:SaturationPressure")) + if (soap_out_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", -1, &a->prodml23__ConstantCompositionExpansionTest::SaturationPressure, "prodml23:SaturationPressure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, "prodml22:LiquidFractionReference", -1, &a->prodml22__ConstantCompositionExpansionTest::LiquidFractionReference, "prodml22:FluidVolumeReference")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, "prodml23:LiquidFractionReference", -1, &a->prodml23__ConstantCompositionExpansionTest::LiquidFractionReference, "prodml23:FluidVolumeReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, "prodml22:RelativeVolumeReference", -1, &a->prodml22__ConstantCompositionExpansionTest::RelativeVolumeReference, "prodml22:FluidVolumeReference")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, "prodml23:RelativeVolumeReference", -1, &a->prodml23__ConstantCompositionExpansionTest::RelativeVolumeReference, "prodml23:FluidVolumeReference")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap, "prodml22:ConstantCompositionExpansionTestStep", -1, &a->prodml22__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep, "prodml22:ConstantCompositionExpansionTestStep")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap, "prodml23:ConstantCompositionExpansionTestStep", -1, &a->prodml23__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep, "prodml23:ConstantCompositionExpansionTestStep")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__ConstantCompositionExpansionTest::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__ConstantCompositionExpansionTest::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ConstantCompositionExpansionTest::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantCompositionExpansionTest::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ConstantCompositionExpansionTest(soap, tag, this, type); + return soap_in_prodml23__ConstantCompositionExpansionTest(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, prodml22__ConstantCompositionExpansionTest *a, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, prodml23__ConstantCompositionExpansionTest *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ConstantCompositionExpansionTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, sizeof(prodml22__ConstantCompositionExpansionTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ConstantCompositionExpansionTest*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, sizeof(prodml23__ConstantCompositionExpansionTest), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ConstantCompositionExpansionTest *)a->soap_in(soap, tag, type); + return (prodml23__ConstantCompositionExpansionTest *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ConstantCompositionExpansionTest*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ConstantCompositionExpansionTest*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_TestTemperature1 = 1; @@ -230265,37 +230415,37 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__ConstantCompositionExpansionTest::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__ConstantCompositionExpansionTest::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_TestTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:TestTemperature", &a->prodml22__ConstantCompositionExpansionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:TestTemperature", &a->prodml23__ConstantCompositionExpansionTest::TestTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_TestTemperature1--; continue; } } if (soap_flag_SaturationPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__SaturationPressure(soap, "prodml22:SaturationPressure", &a->prodml22__ConstantCompositionExpansionTest::SaturationPressure, "prodml22:SaturationPressure")) + { if (soap_in_PointerToprodml23__SaturationPressure(soap, "prodml23:SaturationPressure", &a->prodml23__ConstantCompositionExpansionTest::SaturationPressure, "prodml23:SaturationPressure")) { soap_flag_SaturationPressure1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, "prodml22:LiquidFractionReference", &a->prodml22__ConstantCompositionExpansionTest::LiquidFractionReference, "prodml22:FluidVolumeReference")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, "prodml23:LiquidFractionReference", &a->prodml23__ConstantCompositionExpansionTest::LiquidFractionReference, "prodml23:FluidVolumeReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, "prodml22:RelativeVolumeReference", &a->prodml22__ConstantCompositionExpansionTest::RelativeVolumeReference, "prodml22:FluidVolumeReference")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, "prodml23:RelativeVolumeReference", &a->prodml23__ConstantCompositionExpansionTest::RelativeVolumeReference, "prodml23:FluidVolumeReference")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap, "prodml22:ConstantCompositionExpansionTestStep", &a->prodml22__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep, "prodml22:ConstantCompositionExpansionTestStep")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap, "prodml23:ConstantCompositionExpansionTestStep", &a->prodml23__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep, "prodml23:ConstantCompositionExpansionTestStep")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__ConstantCompositionExpansionTest::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__ConstantCompositionExpansionTest::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -230309,7 +230459,7 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_TestNumber1 > 0 || !a->prodml22__ConstantCompositionExpansionTest::TestTemperature)) + if ((soap_flag_TestNumber1 > 0 || !a->prodml23__ConstantCompositionExpansionTest::TestTemperature)) { soap->error = SOAP_OCCURS; return NULL; } @@ -230319,35 +230469,35 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__ConstantCompositionExpansionTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, sizeof(prodml22__ConstantCompositionExpansionTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantCompositionExpansionTest *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, sizeof(prodml23__ConstantCompositionExpansionTest), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instantiate_prodml22__ConstantCompositionExpansionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instantiate_prodml23__ConstantCompositionExpansionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ConstantCompositionExpansionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ConstantCompositionExpansionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ConstantCompositionExpansionTest *p; - size_t k = sizeof(prodml22__ConstantCompositionExpansionTest); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, n, gsoap_eml2_3_fdelete); + prodml23__ConstantCompositionExpansionTest *p; + size_t k = sizeof(prodml23__ConstantCompositionExpansionTest); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ConstantCompositionExpansionTest); + { p = SOAP_NEW(soap, prodml23__ConstantCompositionExpansionTest); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ConstantCompositionExpansionTest, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ConstantCompositionExpansionTest, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ConstantCompositionExpansionTest location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ConstantCompositionExpansionTest location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -230357,132 +230507,132 @@ SOAP_FMAC1 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instanti return p; } -int prodml22__ConstantCompositionExpansionTest::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ConstantCompositionExpansionTest::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ConstantCompositionExpansionTest(soap, tag ? tag : "prodml22:ConstantCompositionExpansionTest", -2, this, type)) + if (soap_out_prodml23__ConstantCompositionExpansionTest(soap, tag ? tag : "prodml23:ConstantCompositionExpansionTest", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ConstantCompositionExpansionTest::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ConstantCompositionExpansionTest::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ConstantCompositionExpansionTest(soap, this, tag, type); + return soap_get_prodml23__ConstantCompositionExpansionTest(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_get_prodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_get_prodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ConstantCompositionExpansionTest(soap, tag, p, type))) + if ((p = soap_in_prodml23__ConstantCompositionExpansionTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AtmosphericFlashTestAndCompositionalAnalysis::soap_default(struct soap *soap) +void prodml23__AtmosphericFlashTestAndCompositionalAnalysis::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__NonNegativeLong(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber); - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Date = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Remark = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition = NULL; - this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas = NULL; - soap_default_eml23__String64(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::uid); + soap_default_eml23__NonNegativeLong(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber); + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Date = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Remark = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition = NULL; + this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas = NULL; + soap_default_eml23__String64(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::uid); } -void prodml22__AtmosphericFlashTestAndCompositionalAnalysis::soap_serialize(struct soap *soap) const +void prodml23__AtmosphericFlashTestAndCompositionalAnalysis::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Date); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Remark); - soap_serialize_PointerToprodml22__FlashedLiquid(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition); - soap_serialize_PointerToprodml22__FlashedGas(soap, &this->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas); + soap_embedded(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Date); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Remark); + soap_serialize_PointerToprodml23__FlashedLiquid(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition); + soap_serialize_PointerToprodml23__FlashedGas(soap, &this->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas); #endif } -int prodml22__AtmosphericFlashTestAndCompositionalAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AtmosphericFlashTestAndCompositionalAnalysis::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, id, this, type); + return soap_out_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, int id, const prodml22__AtmosphericFlashTestAndCompositionalAnalysis *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, int id, const prodml23__AtmosphericFlashTestAndCompositionalAnalysis *a, const char *type) { if (!type) - type = "prodml22:AtmosphericFlashTestAndCompositionalAnalysis"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AtmosphericFlashTestAndCompositionalAnalysis*)a)->uid), 1); + type = "prodml23:AtmosphericFlashTestAndCompositionalAnalysis"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AtmosphericFlashTestAndCompositionalAnalysis*)a)->uid), 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_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis), type)) return soap->error; - if (soap_out_eml23__NonNegativeLong(soap, "prodml22:TestNumber", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber, "eml23:NonNegativeLong")) + if (soap_out_eml23__NonNegativeLong(soap, "prodml23:TestNumber", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:Date", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Date, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:Date", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Date, "xsd:date")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:FlashToPressure", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:FlashToPressure", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FlashToTemperature", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FlashToTemperature", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:FlashFromPressure", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:FlashFromPressure", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FlashFromTemperature", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FlashFromTemperature", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:FlashGOR", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:FlashGOR", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactor", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactor", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:DensityAtFlashFromPressureAndTemperature", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:DensityAtFlashFromPressureAndTemperature", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:AvgMolecularWeight", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:AvgMolecularWeight", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__FlashedLiquid(soap, "prodml22:FlashedLiquid", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid, "prodml22:FlashedLiquid")) + if (soap_out_PointerToprodml23__FlashedLiquid(soap, "prodml23:FlashedLiquid", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid, "prodml23:FlashedLiquid")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition, "prodml23:OverallComposition")) return soap->error; - if (soap_out_PointerToprodml22__FlashedGas(soap, "prodml22:FlashedGas", -1, &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas, "prodml22:FlashedGas")) + if (soap_out_PointerToprodml23__FlashedGas(soap, "prodml23:FlashedGas", -1, &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas, "prodml23:FlashedGas")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AtmosphericFlashTestAndCompositionalAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AtmosphericFlashTestAndCompositionalAnalysis::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, this, type); + return soap_in_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_in_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *a, const char *type) +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_in_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AtmosphericFlashTestAndCompositionalAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml22__AtmosphericFlashTestAndCompositionalAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AtmosphericFlashTestAndCompositionalAnalysis*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml23__AtmosphericFlashTestAndCompositionalAnalysis), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AtmosphericFlashTestAndCompositionalAnalysis *)a->soap_in(soap, tag, type); + return (prodml23__AtmosphericFlashTestAndCompositionalAnalysis *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AtmosphericFlashTestAndCompositionalAnalysis*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AtmosphericFlashTestAndCompositionalAnalysis*)a)->uid)) return NULL; size_t soap_flag_TestNumber1 = 1; size_t soap_flag_Date1 = 1; @@ -230503,85 +230653,85 @@ SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_TestNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__NonNegativeLong(soap, "prodml22:TestNumber", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber, "eml23:NonNegativeLong")) + { if (soap_in_eml23__NonNegativeLong(soap, "prodml23:TestNumber", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber, "eml23:NonNegativeLong")) { soap_flag_TestNumber1--; continue; } } if (soap_flag_Date1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:Date", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Date, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:Date", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Date, "xsd:date")) { soap_flag_Date1--; continue; } } if (soap_flag_FlashToPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:FlashToPressure", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:FlashToPressure", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure, "eml23:AbstractPressureValue")) { soap_flag_FlashToPressure1--; continue; } } if (soap_flag_FlashToTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FlashToTemperature", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FlashToTemperature", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FlashToTemperature1--; continue; } } if (soap_flag_FlashFromPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:FlashFromPressure", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:FlashFromPressure", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure, "eml23:PressureMeasure")) { soap_flag_FlashFromPressure1--; continue; } } if (soap_flag_FlashFromTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:FlashFromTemperature", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:FlashFromTemperature", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_FlashFromTemperature1--; continue; } } if (soap_flag_FlashGOR1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:FlashGOR", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:FlashGOR", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR, "eml23:VolumePerVolumeMeasure")) { soap_flag_FlashGOR1--; continue; } } if (soap_flag_OilFormationVolumeFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:OilFormationVolumeFactor", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:OilFormationVolumeFactor", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor, "eml23:VolumePerVolumeMeasure")) { soap_flag_OilFormationVolumeFactor1--; continue; } } if (soap_flag_DensityAtFlashFromPressureAndTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:DensityAtFlashFromPressureAndTemperature", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:DensityAtFlashFromPressureAndTemperature", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature, "eml23:MassPerVolumeMeasure")) { soap_flag_DensityAtFlashFromPressureAndTemperature1--; continue; } } if (soap_flag_AvgMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:AvgMolecularWeight", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:AvgMolecularWeight", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_AvgMolecularWeight1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_FlashedLiquid1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlashedLiquid(soap, "prodml22:FlashedLiquid", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid, "prodml22:FlashedLiquid")) + { if (soap_in_PointerToprodml23__FlashedLiquid(soap, "prodml23:FlashedLiquid", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid, "prodml23:FlashedLiquid")) { soap_flag_FlashedLiquid1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } } if (soap_flag_FlashedGas1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FlashedGas(soap, "prodml22:FlashedGas", &a->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas, "prodml22:FlashedGas")) + { if (soap_in_PointerToprodml23__FlashedGas(soap, "prodml23:FlashedGas", &a->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas, "prodml23:FlashedGas")) { soap_flag_FlashedGas1--; continue; } @@ -230605,35 +230755,35 @@ SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 s return NULL; } else - { a = (prodml22__AtmosphericFlashTestAndCompositionalAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml22__AtmosphericFlashTestAndCompositionalAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AtmosphericFlashTestAndCompositionalAnalysis *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml23__AtmosphericFlashTestAndCompositionalAnalysis), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__AtmosphericFlashTestAndCompositionalAnalysis *p; - size_t k = sizeof(prodml22__AtmosphericFlashTestAndCompositionalAnalysis); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, n, gsoap_eml2_3_fdelete); + prodml23__AtmosphericFlashTestAndCompositionalAnalysis *p; + size_t k = sizeof(prodml23__AtmosphericFlashTestAndCompositionalAnalysis); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis); + { p = SOAP_NEW(soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AtmosphericFlashTestAndCompositionalAnalysis location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AtmosphericFlashTestAndCompositionalAnalysis location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -230643,70 +230793,70 @@ SOAP_FMAC1 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 s return p; } -int prodml22__AtmosphericFlashTestAndCompositionalAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AtmosphericFlashTestAndCompositionalAnalysis::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag ? tag : "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", -2, this, type)) + if (soap_out_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag ? tag : "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AtmosphericFlashTestAndCompositionalAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AtmosphericFlashTestAndCompositionalAnalysis::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, this, tag, type); + return soap_get_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_get_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_get_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, p, type))) + if ((p = soap_in_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractOilVolShrinkage::soap_default(struct soap *soap) +void prodml23__AbstractOilVolShrinkage::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractOilVolShrinkage::soap_serialize(struct soap *soap) const +void prodml23__AbstractOilVolShrinkage::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractOilVolShrinkage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractOilVolShrinkage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractOilVolShrinkage(soap, tag, id, this, type); + return soap_out_prodml23__AbstractOilVolShrinkage(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractOilVolShrinkage(struct soap *soap, const char *tag, int id, const prodml22__AbstractOilVolShrinkage *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractOilVolShrinkage(struct soap *soap, const char *tag, int id, const prodml23__AbstractOilVolShrinkage *a, const char *type) { if (!type) - type = "prodml22:AbstractOilVolShrinkage"; + type = "prodml23:AbstractOilVolShrinkage"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractOilVolShrinkage::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractOilVolShrinkage::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractOilVolShrinkage(soap, tag, this, type); + return soap_in_prodml23__AbstractOilVolShrinkage(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractOilVolShrinkage * SOAP_FMAC4 soap_in_prodml22__AbstractOilVolShrinkage(struct soap *soap, const char *tag, prodml22__AbstractOilVolShrinkage *a, const char *type) +SOAP_FMAC3 prodml23__AbstractOilVolShrinkage * SOAP_FMAC4 soap_in_prodml23__AbstractOilVolShrinkage(struct soap *soap, const char *tag, prodml23__AbstractOilVolShrinkage *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractOilVolShrinkage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage, sizeof(prodml22__AbstractOilVolShrinkage), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractOilVolShrinkage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage, sizeof(prodml23__AbstractOilVolShrinkage), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractOilVolShrinkage *)a->soap_in(soap, tag, type); + return (prodml23__AbstractOilVolShrinkage *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -230725,39 +230875,39 @@ SOAP_FMAC3 prodml22__AbstractOilVolShrinkage * SOAP_FMAC4 soap_in_prodml22__Abst return NULL; } else - { a = (prodml22__AbstractOilVolShrinkage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage, sizeof(prodml22__AbstractOilVolShrinkage), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractOilVolShrinkage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage, sizeof(prodml23__AbstractOilVolShrinkage), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodml22__AbstractOilVolShrinkage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodml23__AbstractOilVolShrinkage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractOilVolShrinkage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractOilVolShrinkage(%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, "prodml22:OilShrinkageFactor")) - return soap_instantiate_prodml22__OilShrinkageFactor(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:OilVolume")) - return soap_instantiate_prodml22__OilVolume(soap, n, NULL, NULL, size); - prodml22__AbstractOilVolShrinkage *p; - size_t k = sizeof(prodml22__AbstractOilVolShrinkage); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OilShrinkageFactor")) + return soap_instantiate_prodml23__OilShrinkageFactor(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:OilVolume")) + return soap_instantiate_prodml23__OilVolume(soap, n, NULL, NULL, size); + prodml23__AbstractOilVolShrinkage *p; + size_t k = sizeof(prodml23__AbstractOilVolShrinkage); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractOilVolShrinkage); + { p = SOAP_NEW(soap, prodml23__AbstractOilVolShrinkage); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractOilVolShrinkage, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractOilVolShrinkage, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractOilVolShrinkage location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractOilVolShrinkage location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -230767,70 +230917,70 @@ SOAP_FMAC1 prodml22__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__AbstractOilVolShrinkage::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractOilVolShrinkage::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractOilVolShrinkage(soap, tag ? tag : "prodml22:AbstractOilVolShrinkage", -2, this, type)) + if (soap_out_prodml23__AbstractOilVolShrinkage(soap, tag ? tag : "prodml23:AbstractOilVolShrinkage", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractOilVolShrinkage::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractOilVolShrinkage::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractOilVolShrinkage(soap, this, tag, type); + return soap_get_prodml23__AbstractOilVolShrinkage(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractOilVolShrinkage * SOAP_FMAC4 soap_get_prodml22__AbstractOilVolShrinkage(struct soap *soap, prodml22__AbstractOilVolShrinkage *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractOilVolShrinkage * SOAP_FMAC4 soap_get_prodml23__AbstractOilVolShrinkage(struct soap *soap, prodml23__AbstractOilVolShrinkage *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractOilVolShrinkage(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractOilVolShrinkage(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractLiquidDropoutPercVolume::soap_default(struct soap *soap) +void prodml23__AbstractLiquidDropoutPercVolume::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractLiquidDropoutPercVolume::soap_serialize(struct soap *soap) const +void prodml23__AbstractLiquidDropoutPercVolume::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractLiquidDropoutPercVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractLiquidDropoutPercVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractLiquidDropoutPercVolume(soap, tag, id, this, type); + return soap_out_prodml23__AbstractLiquidDropoutPercVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *tag, int id, const prodml22__AbstractLiquidDropoutPercVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *tag, int id, const prodml23__AbstractLiquidDropoutPercVolume *a, const char *type) { if (!type) - type = "prodml22:AbstractLiquidDropoutPercVolume"; + type = "prodml23:AbstractLiquidDropoutPercVolume"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractLiquidDropoutPercVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractLiquidDropoutPercVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractLiquidDropoutPercVolume(soap, tag, this, type); + return soap_in_prodml23__AbstractLiquidDropoutPercVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_in_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *tag, prodml22__AbstractLiquidDropoutPercVolume *a, const char *type) +SOAP_FMAC3 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_in_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *tag, prodml23__AbstractLiquidDropoutPercVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractLiquidDropoutPercVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume, sizeof(prodml22__AbstractLiquidDropoutPercVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractLiquidDropoutPercVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume, sizeof(prodml23__AbstractLiquidDropoutPercVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractLiquidDropoutPercVolume *)a->soap_in(soap, tag, type); + return (prodml23__AbstractLiquidDropoutPercVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -230849,39 +230999,39 @@ SOAP_FMAC3 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_in_prodml return NULL; } else - { a = (prodml22__AbstractLiquidDropoutPercVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume, sizeof(prodml22__AbstractLiquidDropoutPercVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractLiquidDropoutPercVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume, sizeof(prodml23__AbstractLiquidDropoutPercVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantiate_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantiate_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractLiquidDropoutPercVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractLiquidDropoutPercVolume(%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, "prodml22:LiquidDropoutFraction")) - return soap_instantiate_prodml22__LiquidDropoutFraction(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LiquidVolume")) - return soap_instantiate_prodml22__LiquidVolume(soap, n, NULL, NULL, size); - prodml22__AbstractLiquidDropoutPercVolume *p; - size_t k = sizeof(prodml22__AbstractLiquidDropoutPercVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LiquidDropoutFraction")) + return soap_instantiate_prodml23__LiquidDropoutFraction(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LiquidVolume")) + return soap_instantiate_prodml23__LiquidVolume(soap, n, NULL, NULL, size); + prodml23__AbstractLiquidDropoutPercVolume *p; + size_t k = sizeof(prodml23__AbstractLiquidDropoutPercVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractLiquidDropoutPercVolume); + { p = SOAP_NEW(soap, prodml23__AbstractLiquidDropoutPercVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractLiquidDropoutPercVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractLiquidDropoutPercVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractLiquidDropoutPercVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractLiquidDropoutPercVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -230891,70 +231041,70 @@ SOAP_FMAC1 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantia return p; } -int prodml22__AbstractLiquidDropoutPercVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractLiquidDropoutPercVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractLiquidDropoutPercVolume(soap, tag ? tag : "prodml22:AbstractLiquidDropoutPercVolume", -2, this, type)) + if (soap_out_prodml23__AbstractLiquidDropoutPercVolume(soap, tag ? tag : "prodml23:AbstractLiquidDropoutPercVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractLiquidDropoutPercVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractLiquidDropoutPercVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractLiquidDropoutPercVolume(soap, this, tag, type); + return soap_get_prodml23__AbstractLiquidDropoutPercVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_get_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml22__AbstractLiquidDropoutPercVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_get_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml23__AbstractLiquidDropoutPercVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractLiquidDropoutPercVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractLiquidDropoutPercVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractGasProducedRatioVolume::soap_default(struct soap *soap) +void prodml23__AbstractGasProducedRatioVolume::soap_default(struct soap *soap) { this->soap = soap; } -void prodml22__AbstractGasProducedRatioVolume::soap_serialize(struct soap *soap) const +void prodml23__AbstractGasProducedRatioVolume::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__AbstractGasProducedRatioVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractGasProducedRatioVolume::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractGasProducedRatioVolume(soap, tag, id, this, type); + return soap_out_prodml23__AbstractGasProducedRatioVolume(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, const char *tag, int id, const prodml22__AbstractGasProducedRatioVolume *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, const char *tag, int id, const prodml23__AbstractGasProducedRatioVolume *a, const char *type) { if (!type) - type = "prodml22:AbstractGasProducedRatioVolume"; + type = "prodml23:AbstractGasProducedRatioVolume"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractGasProducedRatioVolume::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractGasProducedRatioVolume::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractGasProducedRatioVolume(soap, tag, this, type); + return soap_in_prodml23__AbstractGasProducedRatioVolume(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_in_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, const char *tag, prodml22__AbstractGasProducedRatioVolume *a, const char *type) +SOAP_FMAC3 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_in_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, const char *tag, prodml23__AbstractGasProducedRatioVolume *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractGasProducedRatioVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume, sizeof(prodml22__AbstractGasProducedRatioVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractGasProducedRatioVolume*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume, sizeof(prodml23__AbstractGasProducedRatioVolume), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractGasProducedRatioVolume *)a->soap_in(soap, tag, type); + return (prodml23__AbstractGasProducedRatioVolume *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -230973,39 +231123,39 @@ SOAP_FMAC3 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__AbstractGasProducedRatioVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume, sizeof(prodml22__AbstractGasProducedRatioVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractGasProducedRatioVolume *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume, sizeof(prodml23__AbstractGasProducedRatioVolume), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiate_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiate_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractGasProducedRatioVolume(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractGasProducedRatioVolume(%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, "prodml22:CumulativeGasProducedRatioStd")) - return soap_instantiate_prodml22__CumulativeGasProducedRatioStd(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CumulativeGasProducedVol")) - return soap_instantiate_prodml22__CumulativeGasProducedVol(soap, n, NULL, NULL, size); - prodml22__AbstractGasProducedRatioVolume *p; - size_t k = sizeof(prodml22__AbstractGasProducedRatioVolume); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CumulativeGasProducedRatioStd")) + return soap_instantiate_prodml23__CumulativeGasProducedRatioStd(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CumulativeGasProducedVol")) + return soap_instantiate_prodml23__CumulativeGasProducedVol(soap, n, NULL, NULL, size); + prodml23__AbstractGasProducedRatioVolume *p; + size_t k = sizeof(prodml23__AbstractGasProducedRatioVolume); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractGasProducedRatioVolume); + { p = SOAP_NEW(soap, prodml23__AbstractGasProducedRatioVolume); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractGasProducedRatioVolume, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractGasProducedRatioVolume, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractGasProducedRatioVolume location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractGasProducedRatioVolume location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -231015,78 +231165,78 @@ SOAP_FMAC1 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__AbstractGasProducedRatioVolume::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractGasProducedRatioVolume::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractGasProducedRatioVolume(soap, tag ? tag : "prodml22:AbstractGasProducedRatioVolume", -2, this, type)) + if (soap_out_prodml23__AbstractGasProducedRatioVolume(soap, tag ? tag : "prodml23:AbstractGasProducedRatioVolume", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractGasProducedRatioVolume::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractGasProducedRatioVolume::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractGasProducedRatioVolume(soap, this, tag, type); + return soap_get_prodml23__AbstractGasProducedRatioVolume(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_get_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, prodml22__AbstractGasProducedRatioVolume *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_get_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, prodml23__AbstractGasProducedRatioVolume *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractGasProducedRatioVolume(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractGasProducedRatioVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__VaporComposition::soap_default(struct soap *soap) +void prodml23__VaporComposition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__VaporComposition::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__VaporComposition::VaporComponentFraction); + this->prodml23__VaporComposition::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__VaporComposition::VaporComponentFraction); } -void prodml22__VaporComposition::soap_serialize(struct soap *soap) const +void prodml23__VaporComposition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__VaporComposition::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__VaporComposition::VaporComponentFraction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__VaporComposition::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__VaporComposition::VaporComponentFraction); #endif } -int prodml22__VaporComposition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__VaporComposition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__VaporComposition(soap, tag, id, this, type); + return soap_out_prodml23__VaporComposition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VaporComposition(struct soap *soap, const char *tag, int id, const prodml22__VaporComposition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VaporComposition(struct soap *soap, const char *tag, int id, const prodml23__VaporComposition *a, const char *type) { if (!type) - type = "prodml22:VaporComposition"; + type = "prodml23:VaporComposition"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__VaporComposition::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__VaporComposition::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:VaporComponentFraction", -1, &a->prodml22__VaporComposition::VaporComponentFraction, "prodml22:FluidComponentFraction")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:VaporComponentFraction", -1, &a->prodml23__VaporComposition::VaporComponentFraction, "prodml23:FluidComponentFraction")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__VaporComposition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__VaporComposition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__VaporComposition(soap, tag, this, type); + return soap_in_prodml23__VaporComposition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__VaporComposition * SOAP_FMAC4 soap_in_prodml22__VaporComposition(struct soap *soap, const char *tag, prodml22__VaporComposition *a, const char *type) +SOAP_FMAC3 prodml23__VaporComposition * SOAP_FMAC4 soap_in_prodml23__VaporComposition(struct soap *soap, const char *tag, prodml23__VaporComposition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__VaporComposition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, sizeof(prodml22__VaporComposition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__VaporComposition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, sizeof(prodml23__VaporComposition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__VaporComposition *)a->soap_in(soap, tag, type); + return (prodml23__VaporComposition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -231096,13 +231246,13 @@ SOAP_FMAC3 prodml22__VaporComposition * SOAP_FMAC4 soap_in_prodml22__VaporCompos for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__VaporComposition::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__VaporComposition::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:VaporComponentFraction", &a->prodml22__VaporComposition::VaporComponentFraction, "prodml22:FluidComponentFraction")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:VaporComponentFraction", &a->prodml23__VaporComposition::VaporComponentFraction, "prodml23:FluidComponentFraction")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -231116,35 +231266,35 @@ SOAP_FMAC3 prodml22__VaporComposition * SOAP_FMAC4 soap_in_prodml22__VaporCompos return NULL; } else - { a = (prodml22__VaporComposition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, sizeof(prodml22__VaporComposition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__VaporComposition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, sizeof(prodml23__VaporComposition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml22__VaporComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml23__VaporComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__VaporComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__VaporComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__VaporComposition *p; - size_t k = sizeof(prodml22__VaporComposition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, n, gsoap_eml2_3_fdelete); + prodml23__VaporComposition *p; + size_t k = sizeof(prodml23__VaporComposition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__VaporComposition); + { p = SOAP_NEW(soap, prodml23__VaporComposition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__VaporComposition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__VaporComposition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__VaporComposition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__VaporComposition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -231154,97 +231304,97 @@ SOAP_FMAC1 prodml22__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml22__Va return p; } -int prodml22__VaporComposition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__VaporComposition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__VaporComposition(soap, tag ? tag : "prodml22:VaporComposition", -2, this, type)) + if (soap_out_prodml23__VaporComposition(soap, tag ? tag : "prodml23:VaporComposition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__VaporComposition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__VaporComposition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__VaporComposition(soap, this, tag, type); + return soap_get_prodml23__VaporComposition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__VaporComposition * SOAP_FMAC4 soap_get_prodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VaporComposition * SOAP_FMAC4 soap_get_prodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__VaporComposition(soap, tag, p, type))) + if ((p = soap_in_prodml23__VaporComposition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__SulfurFluidComponent::soap_default(struct soap *soap) +void prodml23__SulfurFluidComponent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - soap_default_prodml22__SulfurComponentKindExt(soap, &this->prodml22__SulfurFluidComponent::Kind); - this->prodml22__SulfurFluidComponent::MolecularWeight = NULL; - this->prodml22__SulfurFluidComponent::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + soap_default_prodml23__SulfurComponentKindExt(soap, &this->prodml23__SulfurFluidComponent::Kind); + this->prodml23__SulfurFluidComponent::MolecularWeight = NULL; + this->prodml23__SulfurFluidComponent::Remark = NULL; } -void prodml22__SulfurFluidComponent::soap_serialize(struct soap *soap) const +void prodml23__SulfurFluidComponent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__SulfurComponentKindExt(soap, &this->prodml22__SulfurFluidComponent::Kind); - soap_serialize_PointerToeml23__MolecularWeightMeasureExt(soap, &this->prodml22__SulfurFluidComponent::MolecularWeight); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__SulfurFluidComponent::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_prodml23__SulfurComponentKindExt(soap, &this->prodml23__SulfurFluidComponent::Kind); + soap_serialize_PointerToeml23__MolecularWeightMeasureExt(soap, &this->prodml23__SulfurFluidComponent::MolecularWeight); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__SulfurFluidComponent::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__SulfurFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__SulfurFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__SulfurFluidComponent(soap, tag, id, this, type); + return soap_out_prodml23__SulfurFluidComponent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SulfurFluidComponent(struct soap *soap, const char *tag, int id, const prodml22__SulfurFluidComponent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SulfurFluidComponent(struct soap *soap, const char *tag, int id, const prodml23__SulfurFluidComponent *a, const char *type) { if (!type) - type = "prodml22:SulfurFluidComponent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:SulfurFluidComponent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__SulfurFluidComponent), type ? type : "prodml22:SulfurFluidComponent")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent), type ? type : "prodml23:SulfurFluidComponent")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_prodml22__SulfurComponentKindExt(soap, "prodml22:Kind", -1, &a->prodml22__SulfurFluidComponent::Kind, "prodml22:SulfurComponentKindExt")) + if (soap_out_prodml23__SulfurComponentKindExt(soap, "prodml23:Kind", -1, &a->prodml23__SulfurFluidComponent::Kind, "prodml23:SulfurComponentKindExt")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasureExt(soap, "prodml22:MolecularWeight", -1, &a->prodml22__SulfurFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasureExt")) + if (soap_out_PointerToeml23__MolecularWeightMeasureExt(soap, "prodml23:MolecularWeight", -1, &a->prodml23__SulfurFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__SulfurFluidComponent::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__SulfurFluidComponent::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__SulfurFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__SulfurFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__SulfurFluidComponent(soap, tag, this, type); + return soap_in_prodml23__SulfurFluidComponent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__SulfurFluidComponent * SOAP_FMAC4 soap_in_prodml22__SulfurFluidComponent(struct soap *soap, const char *tag, prodml22__SulfurFluidComponent *a, const char *type) +SOAP_FMAC3 prodml23__SulfurFluidComponent * SOAP_FMAC4 soap_in_prodml23__SulfurFluidComponent(struct soap *soap, const char *tag, prodml23__SulfurFluidComponent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__SulfurFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, sizeof(prodml22__SulfurFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__SulfurFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, sizeof(prodml23__SulfurFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__SulfurFluidComponent *)a->soap_in(soap, tag, type); + return (prodml23__SulfurFluidComponent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -231258,43 +231408,43 @@ SOAP_FMAC3 prodml22__SulfurFluidComponent * SOAP_FMAC4 soap_in_prodml22__SulfurF for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__SulfurComponentKindExt(soap, "prodml22:Kind", &a->prodml22__SulfurFluidComponent::Kind, "prodml22:SulfurComponentKindExt")) + { if (soap_in_prodml23__SulfurComponentKindExt(soap, "prodml23:Kind", &a->prodml23__SulfurFluidComponent::Kind, "prodml23:SulfurComponentKindExt")) { soap_flag_Kind1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasureExt(soap, "prodml22:MolecularWeight", &a->prodml22__SulfurFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasureExt")) + { if (soap_in_PointerToeml23__MolecularWeightMeasureExt(soap, "prodml23:MolecularWeight", &a->prodml23__SulfurFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasureExt")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__SulfurFluidComponent::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__SulfurFluidComponent::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -231318,35 +231468,35 @@ SOAP_FMAC3 prodml22__SulfurFluidComponent * SOAP_FMAC4 soap_in_prodml22__SulfurF return NULL; } else - { a = (prodml22__SulfurFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, sizeof(prodml22__SulfurFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__SulfurFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, sizeof(prodml23__SulfurFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__SulfurFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__SulfurFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__SulfurFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__SulfurFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__SulfurFluidComponent *p; - size_t k = sizeof(prodml22__SulfurFluidComponent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, n, gsoap_eml2_3_fdelete); + prodml23__SulfurFluidComponent *p; + size_t k = sizeof(prodml23__SulfurFluidComponent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__SulfurFluidComponent); + { p = SOAP_NEW(soap, prodml23__SulfurFluidComponent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__SulfurFluidComponent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__SulfurFluidComponent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__SulfurFluidComponent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__SulfurFluidComponent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -231356,113 +231506,113 @@ SOAP_FMAC1 prodml22__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__SulfurFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__SulfurFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__SulfurFluidComponent(soap, tag ? tag : "prodml22:SulfurFluidComponent", -2, this, type)) + if (soap_out_prodml23__SulfurFluidComponent(soap, tag ? tag : "prodml23:SulfurFluidComponent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__SulfurFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__SulfurFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__SulfurFluidComponent(soap, this, tag, type); + return soap_get_prodml23__SulfurFluidComponent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__SulfurFluidComponent * SOAP_FMAC4 soap_get_prodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SulfurFluidComponent * SOAP_FMAC4 soap_get_prodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__SulfurFluidComponent(soap, tag, p, type))) + if ((p = soap_in_prodml23__SulfurFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__StockTankOil::soap_default(struct soap *soap) +void prodml23__StockTankOil::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - this->prodml22__StockTankOil::APIGravity = NULL; - this->prodml22__StockTankOil::MolecularWeight = NULL; - this->prodml22__StockTankOil::GrossEnergyContentPerUnitMass = NULL; - this->prodml22__StockTankOil::NetEnergyContentPerUnitMass = NULL; - this->prodml22__StockTankOil::GrossEnergyContentPerUnitVolume = NULL; - this->prodml22__StockTankOil::NetEnergyContentPerUnitVolume = NULL; - this->prodml22__StockTankOil::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + this->prodml23__StockTankOil::APIGravity = NULL; + this->prodml23__StockTankOil::MolecularWeight = NULL; + this->prodml23__StockTankOil::GrossEnergyContentPerUnitMass = NULL; + this->prodml23__StockTankOil::NetEnergyContentPerUnitMass = NULL; + this->prodml23__StockTankOil::GrossEnergyContentPerUnitVolume = NULL; + this->prodml23__StockTankOil::NetEnergyContentPerUnitVolume = NULL; + this->prodml23__StockTankOil::Remark = NULL; } -void prodml22__StockTankOil::soap_serialize(struct soap *soap) const +void prodml23__StockTankOil::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__StockTankOil::APIGravity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__StockTankOil::MolecularWeight); - soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml22__StockTankOil::GrossEnergyContentPerUnitMass); - soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml22__StockTankOil::NetEnergyContentPerUnitMass); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml22__StockTankOil::GrossEnergyContentPerUnitVolume); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml22__StockTankOil::NetEnergyContentPerUnitVolume); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__StockTankOil::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__StockTankOil::APIGravity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__StockTankOil::MolecularWeight); + soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml23__StockTankOil::GrossEnergyContentPerUnitMass); + soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml23__StockTankOil::NetEnergyContentPerUnitMass); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml23__StockTankOil::GrossEnergyContentPerUnitVolume); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml23__StockTankOil::NetEnergyContentPerUnitVolume); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__StockTankOil::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__StockTankOil::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__StockTankOil::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__StockTankOil(soap, tag, id, this, type); + return soap_out_prodml23__StockTankOil(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StockTankOil(struct soap *soap, const char *tag, int id, const prodml22__StockTankOil *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StockTankOil(struct soap *soap, const char *tag, int id, const prodml23__StockTankOil *a, const char *type) { if (!type) - type = "prodml22:StockTankOil"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:StockTankOil"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__StockTankOil), type ? type : "prodml22:StockTankOil")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil), type ? type : "prodml23:StockTankOil")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:APIGravity", -1, &a->prodml22__StockTankOil::APIGravity, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:APIGravity", -1, &a->prodml23__StockTankOil::APIGravity, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__StockTankOil::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__StockTankOil::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:GrossEnergyContentPerUnitMass", -1, &a->prodml22__StockTankOil::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:GrossEnergyContentPerUnitMass", -1, &a->prodml23__StockTankOil::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:NetEnergyContentPerUnitMass", -1, &a->prodml22__StockTankOil::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:NetEnergyContentPerUnitMass", -1, &a->prodml23__StockTankOil::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:GrossEnergyContentPerUnitVolume", -1, &a->prodml22__StockTankOil::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:GrossEnergyContentPerUnitVolume", -1, &a->prodml23__StockTankOil::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:NetEnergyContentPerUnitVolume", -1, &a->prodml22__StockTankOil::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:NetEnergyContentPerUnitVolume", -1, &a->prodml23__StockTankOil::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__StockTankOil::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__StockTankOil::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__StockTankOil::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__StockTankOil::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__StockTankOil(soap, tag, this, type); + return soap_in_prodml23__StockTankOil(soap, tag, this, type); } -SOAP_FMAC3 prodml22__StockTankOil * SOAP_FMAC4 soap_in_prodml22__StockTankOil(struct soap *soap, const char *tag, prodml22__StockTankOil *a, const char *type) +SOAP_FMAC3 prodml23__StockTankOil * SOAP_FMAC4 soap_in_prodml23__StockTankOil(struct soap *soap, const char *tag, prodml23__StockTankOil *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__StockTankOil*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, sizeof(prodml22__StockTankOil), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__StockTankOil*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, sizeof(prodml23__StockTankOil), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__StockTankOil *)a->soap_in(soap, tag, type); + return (prodml23__StockTankOil *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -231480,67 +231630,67 @@ SOAP_FMAC3 prodml22__StockTankOil * SOAP_FMAC4 soap_in_prodml22__StockTankOil(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_APIGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:APIGravity", &a->prodml22__StockTankOil::APIGravity, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:APIGravity", &a->prodml23__StockTankOil::APIGravity, "eml23:APIGravityMeasure")) { soap_flag_APIGravity1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__StockTankOil::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__StockTankOil::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_GrossEnergyContentPerUnitMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:GrossEnergyContentPerUnitMass", &a->prodml22__StockTankOil::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:GrossEnergyContentPerUnitMass", &a->prodml23__StockTankOil::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) { soap_flag_GrossEnergyContentPerUnitMass1--; continue; } } if (soap_flag_NetEnergyContentPerUnitMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:NetEnergyContentPerUnitMass", &a->prodml22__StockTankOil::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:NetEnergyContentPerUnitMass", &a->prodml23__StockTankOil::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) { soap_flag_NetEnergyContentPerUnitMass1--; continue; } } if (soap_flag_GrossEnergyContentPerUnitVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:GrossEnergyContentPerUnitVolume", &a->prodml22__StockTankOil::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:GrossEnergyContentPerUnitVolume", &a->prodml23__StockTankOil::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) { soap_flag_GrossEnergyContentPerUnitVolume1--; continue; } } if (soap_flag_NetEnergyContentPerUnitVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:NetEnergyContentPerUnitVolume", &a->prodml22__StockTankOil::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:NetEnergyContentPerUnitVolume", &a->prodml23__StockTankOil::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) { soap_flag_NetEnergyContentPerUnitVolume1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__StockTankOil::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__StockTankOil::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -231556,35 +231706,35 @@ SOAP_FMAC3 prodml22__StockTankOil * SOAP_FMAC4 soap_in_prodml22__StockTankOil(st return NULL; } else - { a = (prodml22__StockTankOil *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, sizeof(prodml22__StockTankOil), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__StockTankOil *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, sizeof(prodml23__StockTankOil), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml22__StockTankOil(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml23__StockTankOil(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__StockTankOil(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__StockTankOil(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__StockTankOil *p; - size_t k = sizeof(prodml22__StockTankOil); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, n, gsoap_eml2_3_fdelete); + prodml23__StockTankOil *p; + size_t k = sizeof(prodml23__StockTankOil); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__StockTankOil); + { p = SOAP_NEW(soap, prodml23__StockTankOil); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__StockTankOil, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__StockTankOil, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__StockTankOil location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__StockTankOil location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -231594,86 +231744,86 @@ SOAP_FMAC1 prodml22__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml22__StockT return p; } -int prodml22__StockTankOil::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__StockTankOil::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__StockTankOil(soap, tag ? tag : "prodml22:StockTankOil", -2, this, type)) + if (soap_out_prodml23__StockTankOil(soap, tag ? tag : "prodml23:StockTankOil", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__StockTankOil::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__StockTankOil::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__StockTankOil(soap, this, tag, type); + return soap_get_prodml23__StockTankOil(soap, this, tag, type); } -SOAP_FMAC3 prodml22__StockTankOil * SOAP_FMAC4 soap_get_prodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StockTankOil * SOAP_FMAC4 soap_get_prodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__StockTankOil(soap, tag, p, type))) + if ((p = soap_in_prodml23__StockTankOil(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__StartEndTime::soap_default(struct soap *soap) +void prodml23__StartEndTime::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractDateTimeClass::soap_default(soap); - this->prodml22__StartEndTime::DTimStart = NULL; - this->prodml22__StartEndTime::DTimEnd = NULL; + this->prodml23__AbstractDateTimeClass::soap_default(soap); + this->prodml23__StartEndTime::DTimStart = NULL; + this->prodml23__StartEndTime::DTimEnd = NULL; } -void prodml22__StartEndTime::soap_serialize(struct soap *soap) const +void prodml23__StartEndTime::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__StartEndTime::DTimStart); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__StartEndTime::DTimEnd); - this->prodml22__AbstractDateTimeClass::soap_serialize(soap); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__StartEndTime::DTimStart); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__StartEndTime::DTimEnd); + this->prodml23__AbstractDateTimeClass::soap_serialize(soap); #endif } -int prodml22__StartEndTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__StartEndTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__StartEndTime(soap, tag, id, this, type); + return soap_out_prodml23__StartEndTime(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StartEndTime(struct soap *soap, const char *tag, int id, const prodml22__StartEndTime *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StartEndTime(struct soap *soap, const char *tag, int id, const prodml23__StartEndTime *a, const char *type) { if (!type) - type = "prodml22:StartEndTime"; + type = "prodml23:StartEndTime"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime), type ? type : "prodml22:StartEndTime")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime), type ? type : "prodml23:StartEndTime")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTime", -1, &a->prodml22__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTime", -1, &a->prodml23__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:Date", -1, &a->prodml22__AbstractDateTimeClass::Date, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:Date", -1, &a->prodml23__AbstractDateTimeClass::Date, "xsd:date")) return soap->error; - if (soap_out_PointerToprodml22__CalendarMonth(soap, "prodml22:Month", -1, &a->prodml22__AbstractDateTimeClass::Month, "prodml22:CalendarMonth")) + if (soap_out_PointerToprodml23__CalendarMonth(soap, "prodml23:Month", -1, &a->prodml23__AbstractDateTimeClass::Month, "prodml23:CalendarMonth")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimStart", -1, &a->prodml22__StartEndTime::DTimStart, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimStart", -1, &a->prodml23__StartEndTime::DTimStart, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", -1, &a->prodml22__StartEndTime::DTimEnd, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", -1, &a->prodml23__StartEndTime::DTimEnd, "eml23:TimeStamp")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__StartEndTime::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__StartEndTime::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__StartEndTime(soap, tag, this, type); + return soap_in_prodml23__StartEndTime(soap, tag, this, type); } -SOAP_FMAC3 prodml22__StartEndTime * SOAP_FMAC4 soap_in_prodml22__StartEndTime(struct soap *soap, const char *tag, prodml22__StartEndTime *a, const char *type) +SOAP_FMAC3 prodml23__StartEndTime * SOAP_FMAC4 soap_in_prodml23__StartEndTime(struct soap *soap, const char *tag, prodml23__StartEndTime *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__StartEndTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime, sizeof(prodml22__StartEndTime), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__StartEndTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime, sizeof(prodml23__StartEndTime), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__StartEndTime *)a->soap_in(soap, tag, type); + return (prodml23__StartEndTime *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -231687,31 +231837,31 @@ SOAP_FMAC3 prodml22__StartEndTime * SOAP_FMAC4 soap_in_prodml22__StartEndTime(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTime", &a->prodml22__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTime", &a->prodml23__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) { soap_flag_DTime2--; continue; } } if (soap_flag_Date2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:Date", &a->prodml22__AbstractDateTimeClass::Date, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:Date", &a->prodml23__AbstractDateTimeClass::Date, "xsd:date")) { soap_flag_Date2--; continue; } } if (soap_flag_Month2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__CalendarMonth(soap, "prodml22:Month", &a->prodml22__AbstractDateTimeClass::Month, "prodml22:CalendarMonth")) + { if (soap_in_PointerToprodml23__CalendarMonth(soap, "prodml23:Month", &a->prodml23__AbstractDateTimeClass::Month, "prodml23:CalendarMonth")) { soap_flag_Month2--; continue; } } if (soap_flag_DTimStart1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimStart", &a->prodml22__StartEndTime::DTimStart, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimStart", &a->prodml23__StartEndTime::DTimStart, "eml23:TimeStamp")) { soap_flag_DTimStart1--; continue; } } if (soap_flag_DTimEnd1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTimEnd", &a->prodml22__StartEndTime::DTimEnd, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTimEnd", &a->prodml23__StartEndTime::DTimEnd, "eml23:TimeStamp")) { soap_flag_DTimEnd1--; continue; } @@ -231727,35 +231877,35 @@ SOAP_FMAC3 prodml22__StartEndTime * SOAP_FMAC4 soap_in_prodml22__StartEndTime(st return NULL; } else - { a = (prodml22__StartEndTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime, sizeof(prodml22__StartEndTime), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__StartEndTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime, sizeof(prodml23__StartEndTime), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml22__StartEndTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml23__StartEndTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__StartEndTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__StartEndTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__StartEndTime *p; - size_t k = sizeof(prodml22__StartEndTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime, n, gsoap_eml2_3_fdelete); + prodml23__StartEndTime *p; + size_t k = sizeof(prodml23__StartEndTime); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__StartEndTime); + { p = SOAP_NEW(soap, prodml23__StartEndTime); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__StartEndTime, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__StartEndTime, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__StartEndTime location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__StartEndTime location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -231765,86 +231915,86 @@ SOAP_FMAC1 prodml22__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml22__StartE return p; } -int prodml22__StartEndTime::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__StartEndTime::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__StartEndTime(soap, tag ? tag : "prodml22:StartEndTime", -2, this, type)) + if (soap_out_prodml23__StartEndTime(soap, tag ? tag : "prodml23:StartEndTime", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__StartEndTime::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__StartEndTime::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__StartEndTime(soap, this, tag, type); + return soap_get_prodml23__StartEndTime(soap, this, tag, type); } -SOAP_FMAC3 prodml22__StartEndTime * SOAP_FMAC4 soap_get_prodml22__StartEndTime(struct soap *soap, prodml22__StartEndTime *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StartEndTime * SOAP_FMAC4 soap_get_prodml23__StartEndTime(struct soap *soap, prodml23__StartEndTime *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__StartEndTime(soap, tag, p, type))) + if ((p = soap_in_prodml23__StartEndTime(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__StartEndDate::soap_default(struct soap *soap) +void prodml23__StartEndDate::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractDateTimeClass::soap_default(soap); - this->prodml22__StartEndDate::DateStart = NULL; - this->prodml22__StartEndDate::DateEnd = NULL; + this->prodml23__AbstractDateTimeClass::soap_default(soap); + this->prodml23__StartEndDate::DateStart = NULL; + this->prodml23__StartEndDate::DateEnd = NULL; } -void prodml22__StartEndDate::soap_serialize(struct soap *soap) const +void prodml23__StartEndDate::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToxsd__date(soap, &this->prodml22__StartEndDate::DateStart); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__StartEndDate::DateEnd); - this->prodml22__AbstractDateTimeClass::soap_serialize(soap); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__StartEndDate::DateStart); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__StartEndDate::DateEnd); + this->prodml23__AbstractDateTimeClass::soap_serialize(soap); #endif } -int prodml22__StartEndDate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__StartEndDate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__StartEndDate(soap, tag, id, this, type); + return soap_out_prodml23__StartEndDate(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StartEndDate(struct soap *soap, const char *tag, int id, const prodml22__StartEndDate *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StartEndDate(struct soap *soap, const char *tag, int id, const prodml23__StartEndDate *a, const char *type) { if (!type) - type = "prodml22:StartEndDate"; + type = "prodml23:StartEndDate"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate), type ? type : "prodml22:StartEndDate")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate), type ? type : "prodml23:StartEndDate")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTime", -1, &a->prodml22__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTime", -1, &a->prodml23__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:Date", -1, &a->prodml22__AbstractDateTimeClass::Date, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:Date", -1, &a->prodml23__AbstractDateTimeClass::Date, "xsd:date")) return soap->error; - if (soap_out_PointerToprodml22__CalendarMonth(soap, "prodml22:Month", -1, &a->prodml22__AbstractDateTimeClass::Month, "prodml22:CalendarMonth")) + if (soap_out_PointerToprodml23__CalendarMonth(soap, "prodml23:Month", -1, &a->prodml23__AbstractDateTimeClass::Month, "prodml23:CalendarMonth")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:DateStart", -1, &a->prodml22__StartEndDate::DateStart, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:DateStart", -1, &a->prodml23__StartEndDate::DateStart, "xsd:date")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:DateEnd", -1, &a->prodml22__StartEndDate::DateEnd, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:DateEnd", -1, &a->prodml23__StartEndDate::DateEnd, "xsd:date")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__StartEndDate::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__StartEndDate::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__StartEndDate(soap, tag, this, type); + return soap_in_prodml23__StartEndDate(soap, tag, this, type); } -SOAP_FMAC3 prodml22__StartEndDate * SOAP_FMAC4 soap_in_prodml22__StartEndDate(struct soap *soap, const char *tag, prodml22__StartEndDate *a, const char *type) +SOAP_FMAC3 prodml23__StartEndDate * SOAP_FMAC4 soap_in_prodml23__StartEndDate(struct soap *soap, const char *tag, prodml23__StartEndDate *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__StartEndDate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate, sizeof(prodml22__StartEndDate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__StartEndDate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate, sizeof(prodml23__StartEndDate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__StartEndDate *)a->soap_in(soap, tag, type); + return (prodml23__StartEndDate *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -231858,31 +232008,31 @@ SOAP_FMAC3 prodml22__StartEndDate * SOAP_FMAC4 soap_in_prodml22__StartEndDate(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DTime2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTime", &a->prodml22__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTime", &a->prodml23__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) { soap_flag_DTime2--; continue; } } if (soap_flag_Date2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:Date", &a->prodml22__AbstractDateTimeClass::Date, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:Date", &a->prodml23__AbstractDateTimeClass::Date, "xsd:date")) { soap_flag_Date2--; continue; } } if (soap_flag_Month2 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__CalendarMonth(soap, "prodml22:Month", &a->prodml22__AbstractDateTimeClass::Month, "prodml22:CalendarMonth")) + { if (soap_in_PointerToprodml23__CalendarMonth(soap, "prodml23:Month", &a->prodml23__AbstractDateTimeClass::Month, "prodml23:CalendarMonth")) { soap_flag_Month2--; continue; } } if (soap_flag_DateStart1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:DateStart", &a->prodml22__StartEndDate::DateStart, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:DateStart", &a->prodml23__StartEndDate::DateStart, "xsd:date")) { soap_flag_DateStart1--; continue; } } if (soap_flag_DateEnd1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:DateEnd", &a->prodml22__StartEndDate::DateEnd, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:DateEnd", &a->prodml23__StartEndDate::DateEnd, "xsd:date")) { soap_flag_DateEnd1--; continue; } @@ -231898,35 +232048,35 @@ SOAP_FMAC3 prodml22__StartEndDate * SOAP_FMAC4 soap_in_prodml22__StartEndDate(st return NULL; } else - { a = (prodml22__StartEndDate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate, sizeof(prodml22__StartEndDate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__StartEndDate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate, sizeof(prodml23__StartEndDate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml22__StartEndDate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml23__StartEndDate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__StartEndDate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__StartEndDate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__StartEndDate *p; - size_t k = sizeof(prodml22__StartEndDate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate, n, gsoap_eml2_3_fdelete); + prodml23__StartEndDate *p; + size_t k = sizeof(prodml23__StartEndDate); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__StartEndDate); + { p = SOAP_NEW(soap, prodml23__StartEndDate); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__StartEndDate, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__StartEndDate, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__StartEndDate location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__StartEndDate location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -231936,87 +232086,87 @@ SOAP_FMAC1 prodml22__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml22__StartE return p; } -int prodml22__StartEndDate::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__StartEndDate::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__StartEndDate(soap, tag ? tag : "prodml22:StartEndDate", -2, this, type)) + if (soap_out_prodml23__StartEndDate(soap, tag ? tag : "prodml23:StartEndDate", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__StartEndDate::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__StartEndDate::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__StartEndDate(soap, this, tag, type); + return soap_get_prodml23__StartEndDate(soap, this, tag, type); } -SOAP_FMAC3 prodml22__StartEndDate * SOAP_FMAC4 soap_get_prodml22__StartEndDate(struct soap *soap, prodml22__StartEndDate *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StartEndDate * SOAP_FMAC4 soap_get_prodml23__StartEndDate(struct soap *soap, prodml23__StartEndDate *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__StartEndDate(soap, tag, p, type))) + if ((p = soap_in_prodml23__StartEndDate(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ServiceFluid::soap_default(struct soap *soap) +void prodml23__ServiceFluid::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractProductQuantity::soap_default(soap); - soap_default_prodml22__ServiceFluidKindExt(soap, &this->prodml22__ServiceFluid::ServiceFluidKind); - this->prodml22__ServiceFluid::serviceFluidReference = NULL; + this->prodml23__AbstractProductQuantity::soap_default(soap); + soap_default_prodml23__ServiceFluidKindExt(soap, &this->prodml23__ServiceFluid::ServiceFluidKind); + this->prodml23__ServiceFluid::serviceFluidReference = NULL; } -void prodml22__ServiceFluid::soap_serialize(struct soap *soap) const +void prodml23__ServiceFluid::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__ServiceFluidKindExt(soap, &this->prodml22__ServiceFluid::ServiceFluidKind); - this->prodml22__AbstractProductQuantity::soap_serialize(soap); + soap_serialize_prodml23__ServiceFluidKindExt(soap, &this->prodml23__ServiceFluid::ServiceFluidKind); + this->prodml23__AbstractProductQuantity::soap_serialize(soap); #endif } -int prodml22__ServiceFluid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ServiceFluid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ServiceFluid(soap, tag, id, this, type); + return soap_out_prodml23__ServiceFluid(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ServiceFluid(struct soap *soap, const char *tag, int id, const prodml22__ServiceFluid *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ServiceFluid(struct soap *soap, const char *tag, int id, const prodml23__ServiceFluid *a, const char *type) { if (!type) - type = "prodml22:ServiceFluid"; - if (((prodml22__ServiceFluid*)a)->serviceFluidReference) - { soap_set_attr(soap, "serviceFluidReference", soap_eml23__String642s(soap, *((prodml22__ServiceFluid*)a)->serviceFluidReference), 1); + type = "prodml23:ServiceFluid"; + if (((prodml23__ServiceFluid*)a)->serviceFluidReference) + { soap_set_attr(soap, "serviceFluidReference", soap_eml23__String642s(soap, *((prodml23__ServiceFluid*)a)->serviceFluidReference), 1); } - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractProductQuantity*)a)->uid), 1); + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractProductQuantity*)a)->uid), 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_gsoap_eml2_3_prodml22__ServiceFluid), type ? type : "prodml22:ServiceFluid")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid), type ? type : "prodml23:ServiceFluid")) return soap->error; - if (soap_out_PointerToeml23__VolumeValue(soap, "prodml22:Volume", -1, &a->prodml22__AbstractProductQuantity::Volume, "eml23:VolumeValue")) + if (soap_out_PointerToeml23__VolumeValue(soap, "prodml23:Volume", -1, &a->prodml23__AbstractProductQuantity::Volume, "eml23:VolumeValue")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:Mass", -1, &a->prodml22__AbstractProductQuantity::Mass, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:Mass", -1, &a->prodml23__AbstractProductQuantity::Mass, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:Moles", -1, &a->prodml22__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:Moles", -1, &a->prodml23__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) return soap->error; - if (soap_out_prodml22__ServiceFluidKindExt(soap, "prodml22:ServiceFluidKind", -1, &a->prodml22__ServiceFluid::ServiceFluidKind, "prodml22:ServiceFluidKindExt")) + if (soap_out_prodml23__ServiceFluidKindExt(soap, "prodml23:ServiceFluidKind", -1, &a->prodml23__ServiceFluid::ServiceFluidKind, "prodml23:ServiceFluidKindExt")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ServiceFluid::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ServiceFluid::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ServiceFluid(soap, tag, this, type); + return soap_in_prodml23__ServiceFluid(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_in_prodml22__ServiceFluid(struct soap *soap, const char *tag, prodml22__ServiceFluid *a, const char *type) +SOAP_FMAC3 prodml23__ServiceFluid * SOAP_FMAC4 soap_in_prodml23__ServiceFluid(struct soap *soap, const char *tag, prodml23__ServiceFluid *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ServiceFluid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid, sizeof(prodml22__ServiceFluid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ServiceFluid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid, sizeof(prodml23__ServiceFluid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ServiceFluid *)a->soap_in(soap, tag, type); + return (prodml23__ServiceFluid *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -232024,15 +232174,15 @@ SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_in_prodml22__ServiceFluid(st const char *t = soap_attr_value(soap, "serviceFluidReference", 1, 0); if (t) { - if (!(((prodml22__ServiceFluid*)a)->serviceFluidReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__ServiceFluid*)a)->serviceFluidReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__ServiceFluid*)a)->serviceFluidReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__ServiceFluid*)a)->serviceFluidReference)) return NULL; } else if (soap->error) return NULL; } - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractProductQuantity*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractProductQuantity*)a)->uid)) return NULL; size_t soap_flag_Volume2 = 1; size_t soap_flag_Mass2 = 1; @@ -232043,25 +232193,25 @@ SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_in_prodml22__ServiceFluid(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Volume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeValue(soap, "prodml22:Volume", &a->prodml22__AbstractProductQuantity::Volume, "eml23:VolumeValue")) + { if (soap_in_PointerToeml23__VolumeValue(soap, "prodml23:Volume", &a->prodml23__AbstractProductQuantity::Volume, "eml23:VolumeValue")) { soap_flag_Volume2--; continue; } } if (soap_flag_Mass2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:Mass", &a->prodml22__AbstractProductQuantity::Mass, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:Mass", &a->prodml23__AbstractProductQuantity::Mass, "eml23:MassMeasure")) { soap_flag_Mass2--; continue; } } if (soap_flag_Moles2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:Moles", &a->prodml22__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:Moles", &a->prodml23__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) { soap_flag_Moles2--; continue; } } if (soap_flag_ServiceFluidKind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__ServiceFluidKindExt(soap, "prodml22:ServiceFluidKind", &a->prodml22__ServiceFluid::ServiceFluidKind, "prodml22:ServiceFluidKindExt")) + { if (soap_in_prodml23__ServiceFluidKindExt(soap, "prodml23:ServiceFluidKind", &a->prodml23__ServiceFluid::ServiceFluidKind, "prodml23:ServiceFluidKindExt")) { soap_flag_ServiceFluidKind1--; continue; } @@ -232085,35 +232235,35 @@ SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_in_prodml22__ServiceFluid(st return NULL; } else - { a = (prodml22__ServiceFluid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid, sizeof(prodml22__ServiceFluid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ServiceFluid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid, sizeof(prodml23__ServiceFluid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml22__ServiceFluid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml23__ServiceFluid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ServiceFluid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ServiceFluid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ServiceFluid *p; - size_t k = sizeof(prodml22__ServiceFluid); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid, n, gsoap_eml2_3_fdelete); + prodml23__ServiceFluid *p; + size_t k = sizeof(prodml23__ServiceFluid); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ServiceFluid); + { p = SOAP_NEW(soap, prodml23__ServiceFluid); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ServiceFluid, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ServiceFluid, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ServiceFluid location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ServiceFluid location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -232123,101 +232273,101 @@ SOAP_FMAC1 prodml22__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml22__Servic return p; } -int prodml22__ServiceFluid::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ServiceFluid::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ServiceFluid(soap, tag ? tag : "prodml22:ServiceFluid", -2, this, type)) + if (soap_out_prodml23__ServiceFluid(soap, tag ? tag : "prodml23:ServiceFluid", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ServiceFluid::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ServiceFluid::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ServiceFluid(soap, this, tag, type); + return soap_get_prodml23__ServiceFluid(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_get_prodml22__ServiceFluid(struct soap *soap, prodml22__ServiceFluid *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ServiceFluid * SOAP_FMAC4 soap_get_prodml23__ServiceFluid(struct soap *soap, prodml23__ServiceFluid *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ServiceFluid(soap, tag, p, type))) + if ((p = soap_in_prodml23__ServiceFluid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PureFluidComponent::soap_default(struct soap *soap) +void prodml23__PureFluidComponent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - soap_default_prodml22__PureComponentKindExt(soap, &this->prodml22__PureFluidComponent::Kind); - this->prodml22__PureFluidComponent::MolecularWeight = NULL; - soap_default_bool(soap, &this->prodml22__PureFluidComponent::HydrocarbonFlag); - this->prodml22__PureFluidComponent::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + soap_default_prodml23__PureComponentKindExt(soap, &this->prodml23__PureFluidComponent::Kind); + this->prodml23__PureFluidComponent::MolecularWeight = NULL; + soap_default_bool(soap, &this->prodml23__PureFluidComponent::HydrocarbonFlag); + this->prodml23__PureFluidComponent::Remark = NULL; } -void prodml22__PureFluidComponent::soap_serialize(struct soap *soap) const +void prodml23__PureFluidComponent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__PureComponentKindExt(soap, &this->prodml22__PureFluidComponent::Kind); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__PureFluidComponent::MolecularWeight); - soap_embedded(soap, &this->prodml22__PureFluidComponent::HydrocarbonFlag, SOAP_TYPE_gsoap_eml2_3_bool); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PureFluidComponent::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_prodml23__PureComponentKindExt(soap, &this->prodml23__PureFluidComponent::Kind); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__PureFluidComponent::MolecularWeight); + soap_embedded(soap, &this->prodml23__PureFluidComponent::HydrocarbonFlag, SOAP_TYPE_gsoap_eml2_3_bool); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PureFluidComponent::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__PureFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PureFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PureFluidComponent(soap, tag, id, this, type); + return soap_out_prodml23__PureFluidComponent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PureFluidComponent(struct soap *soap, const char *tag, int id, const prodml22__PureFluidComponent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PureFluidComponent(struct soap *soap, const char *tag, int id, const prodml23__PureFluidComponent *a, const char *type) { if (!type) - type = "prodml22:PureFluidComponent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:PureFluidComponent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__PureFluidComponent), type ? type : "prodml22:PureFluidComponent")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent), type ? type : "prodml23:PureFluidComponent")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_prodml22__PureComponentKindExt(soap, "prodml22:Kind", -1, &a->prodml22__PureFluidComponent::Kind, "prodml22:PureComponentKindExt")) + if (soap_out_prodml23__PureComponentKindExt(soap, "prodml23:Kind", -1, &a->prodml23__PureFluidComponent::Kind, "prodml23:PureComponentKindExt")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__PureFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__PureFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_bool(soap, "prodml22:HydrocarbonFlag", -1, &a->prodml22__PureFluidComponent::HydrocarbonFlag, "xsd:boolean")) + if (soap_out_bool(soap, "prodml23:HydrocarbonFlag", -1, &a->prodml23__PureFluidComponent::HydrocarbonFlag, "xsd:boolean")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__PureFluidComponent::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__PureFluidComponent::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PureFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PureFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PureFluidComponent(soap, tag, this, type); + return soap_in_prodml23__PureFluidComponent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PureFluidComponent * SOAP_FMAC4 soap_in_prodml22__PureFluidComponent(struct soap *soap, const char *tag, prodml22__PureFluidComponent *a, const char *type) +SOAP_FMAC3 prodml23__PureFluidComponent * SOAP_FMAC4 soap_in_prodml23__PureFluidComponent(struct soap *soap, const char *tag, prodml23__PureFluidComponent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PureFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, sizeof(prodml22__PureFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PureFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, sizeof(prodml23__PureFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PureFluidComponent *)a->soap_in(soap, tag, type); + return (prodml23__PureFluidComponent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -232232,49 +232382,49 @@ SOAP_FMAC3 prodml22__PureFluidComponent * SOAP_FMAC4 soap_in_prodml22__PureFluid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__PureComponentKindExt(soap, "prodml22:Kind", &a->prodml22__PureFluidComponent::Kind, "prodml22:PureComponentKindExt")) + { if (soap_in_prodml23__PureComponentKindExt(soap, "prodml23:Kind", &a->prodml23__PureFluidComponent::Kind, "prodml23:PureComponentKindExt")) { soap_flag_Kind1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__PureFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__PureFluidComponent::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_HydrocarbonFlag1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "prodml22:HydrocarbonFlag", &a->prodml22__PureFluidComponent::HydrocarbonFlag, "xsd:boolean")) + { if (soap_in_bool(soap, "prodml23:HydrocarbonFlag", &a->prodml23__PureFluidComponent::HydrocarbonFlag, "xsd:boolean")) { soap_flag_HydrocarbonFlag1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__PureFluidComponent::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__PureFluidComponent::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -232298,35 +232448,35 @@ SOAP_FMAC3 prodml22__PureFluidComponent * SOAP_FMAC4 soap_in_prodml22__PureFluid return NULL; } else - { a = (prodml22__PureFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, sizeof(prodml22__PureFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PureFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, sizeof(prodml23__PureFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PureFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PureFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PureFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PureFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PureFluidComponent *p; - size_t k = sizeof(prodml22__PureFluidComponent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, n, gsoap_eml2_3_fdelete); + prodml23__PureFluidComponent *p; + size_t k = sizeof(prodml23__PureFluidComponent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PureFluidComponent); + { p = SOAP_NEW(soap, prodml23__PureFluidComponent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PureFluidComponent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PureFluidComponent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PureFluidComponent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PureFluidComponent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -232336,125 +232486,125 @@ SOAP_FMAC1 prodml22__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__PureFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PureFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PureFluidComponent(soap, tag ? tag : "prodml22:PureFluidComponent", -2, this, type)) + if (soap_out_prodml23__PureFluidComponent(soap, tag ? tag : "prodml23:PureFluidComponent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PureFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PureFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PureFluidComponent(soap, this, tag, type); + return soap_get_prodml23__PureFluidComponent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PureFluidComponent * SOAP_FMAC4 soap_get_prodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PureFluidComponent * SOAP_FMAC4 soap_get_prodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PureFluidComponent(soap, tag, p, type))) + if ((p = soap_in_prodml23__PureFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PseudoFluidComponent::soap_default(struct soap *soap) +void prodml23__PseudoFluidComponent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - soap_default_prodml22__PseudoComponentKindExt(soap, &this->prodml22__PseudoFluidComponent::Kind); - this->prodml22__PseudoFluidComponent::SpecificGravity = NULL; - this->prodml22__PseudoFluidComponent::StartingCarbonNumber = NULL; - this->prodml22__PseudoFluidComponent::EndingCarbonNumber = NULL; - this->prodml22__PseudoFluidComponent::AvgMolecularWeight = NULL; - this->prodml22__PseudoFluidComponent::AvgDensity = NULL; - this->prodml22__PseudoFluidComponent::StartingBoilingPoint = NULL; - this->prodml22__PseudoFluidComponent::EndingBoilingPoint = NULL; - this->prodml22__PseudoFluidComponent::AvgBoilingPoint = NULL; - this->prodml22__PseudoFluidComponent::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + soap_default_prodml23__PseudoComponentKindExt(soap, &this->prodml23__PseudoFluidComponent::Kind); + this->prodml23__PseudoFluidComponent::SpecificGravity = NULL; + this->prodml23__PseudoFluidComponent::StartingCarbonNumber = NULL; + this->prodml23__PseudoFluidComponent::EndingCarbonNumber = NULL; + this->prodml23__PseudoFluidComponent::AvgMolecularWeight = NULL; + this->prodml23__PseudoFluidComponent::AvgDensity = NULL; + this->prodml23__PseudoFluidComponent::StartingBoilingPoint = NULL; + this->prodml23__PseudoFluidComponent::EndingBoilingPoint = NULL; + this->prodml23__PseudoFluidComponent::AvgBoilingPoint = NULL; + this->prodml23__PseudoFluidComponent::Remark = NULL; } -void prodml22__PseudoFluidComponent::soap_serialize(struct soap *soap) const +void prodml23__PseudoFluidComponent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__PseudoComponentKindExt(soap, &this->prodml22__PseudoFluidComponent::Kind); - soap_serialize_PointerTodouble(soap, &this->prodml22__PseudoFluidComponent::SpecificGravity); - soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml22__PseudoFluidComponent::StartingCarbonNumber); - soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml22__PseudoFluidComponent::EndingCarbonNumber); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__PseudoFluidComponent::AvgMolecularWeight); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__PseudoFluidComponent::AvgDensity); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__PseudoFluidComponent::StartingBoilingPoint); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__PseudoFluidComponent::EndingBoilingPoint); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__PseudoFluidComponent::AvgBoilingPoint); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PseudoFluidComponent::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_prodml23__PseudoComponentKindExt(soap, &this->prodml23__PseudoFluidComponent::Kind); + soap_serialize_PointerTodouble(soap, &this->prodml23__PseudoFluidComponent::SpecificGravity); + soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml23__PseudoFluidComponent::StartingCarbonNumber); + soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml23__PseudoFluidComponent::EndingCarbonNumber); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__PseudoFluidComponent::AvgMolecularWeight); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__PseudoFluidComponent::AvgDensity); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__PseudoFluidComponent::StartingBoilingPoint); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__PseudoFluidComponent::EndingBoilingPoint); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__PseudoFluidComponent::AvgBoilingPoint); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PseudoFluidComponent::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__PseudoFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PseudoFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PseudoFluidComponent(soap, tag, id, this, type); + return soap_out_prodml23__PseudoFluidComponent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoFluidComponent(struct soap *soap, const char *tag, int id, const prodml22__PseudoFluidComponent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoFluidComponent(struct soap *soap, const char *tag, int id, const prodml23__PseudoFluidComponent *a, const char *type) { if (!type) - type = "prodml22:PseudoFluidComponent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:PseudoFluidComponent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__PseudoFluidComponent), type ? type : "prodml22:PseudoFluidComponent")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent), type ? type : "prodml23:PseudoFluidComponent")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_prodml22__PseudoComponentKindExt(soap, "prodml22:Kind", -1, &a->prodml22__PseudoFluidComponent::Kind, "prodml22:PseudoComponentKindExt")) + if (soap_out_prodml23__PseudoComponentKindExt(soap, "prodml23:Kind", -1, &a->prodml23__PseudoFluidComponent::Kind, "prodml23:PseudoComponentKindExt")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:SpecificGravity", -1, &a->prodml22__PseudoFluidComponent::SpecificGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:SpecificGravity", -1, &a->prodml23__PseudoFluidComponent::SpecificGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml22:StartingCarbonNumber", -1, &a->prodml22__PseudoFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) + if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml23:StartingCarbonNumber", -1, &a->prodml23__PseudoFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml22:EndingCarbonNumber", -1, &a->prodml22__PseudoFluidComponent::EndingCarbonNumber, "eml23:NonNegativeLong")) + if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml23:EndingCarbonNumber", -1, &a->prodml23__PseudoFluidComponent::EndingCarbonNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:AvgMolecularWeight", -1, &a->prodml22__PseudoFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:AvgMolecularWeight", -1, &a->prodml23__PseudoFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:AvgDensity", -1, &a->prodml22__PseudoFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:AvgDensity", -1, &a->prodml23__PseudoFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StartingBoilingPoint", -1, &a->prodml22__PseudoFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StartingBoilingPoint", -1, &a->prodml23__PseudoFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:EndingBoilingPoint", -1, &a->prodml22__PseudoFluidComponent::EndingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:EndingBoilingPoint", -1, &a->prodml23__PseudoFluidComponent::EndingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AvgBoilingPoint", -1, &a->prodml22__PseudoFluidComponent::AvgBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AvgBoilingPoint", -1, &a->prodml23__PseudoFluidComponent::AvgBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__PseudoFluidComponent::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__PseudoFluidComponent::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PseudoFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PseudoFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PseudoFluidComponent(soap, tag, this, type); + return soap_in_prodml23__PseudoFluidComponent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PseudoFluidComponent * SOAP_FMAC4 soap_in_prodml22__PseudoFluidComponent(struct soap *soap, const char *tag, prodml22__PseudoFluidComponent *a, const char *type) +SOAP_FMAC3 prodml23__PseudoFluidComponent * SOAP_FMAC4 soap_in_prodml23__PseudoFluidComponent(struct soap *soap, const char *tag, prodml23__PseudoFluidComponent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PseudoFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, sizeof(prodml22__PseudoFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PseudoFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, sizeof(prodml23__PseudoFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PseudoFluidComponent *)a->soap_in(soap, tag, type); + return (prodml23__PseudoFluidComponent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -232475,85 +232625,85 @@ SOAP_FMAC3 prodml22__PseudoFluidComponent * SOAP_FMAC4 soap_in_prodml22__PseudoF for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__PseudoComponentKindExt(soap, "prodml22:Kind", &a->prodml22__PseudoFluidComponent::Kind, "prodml22:PseudoComponentKindExt")) + { if (soap_in_prodml23__PseudoComponentKindExt(soap, "prodml23:Kind", &a->prodml23__PseudoFluidComponent::Kind, "prodml23:PseudoComponentKindExt")) { soap_flag_Kind1--; continue; } } if (soap_flag_SpecificGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:SpecificGravity", &a->prodml22__PseudoFluidComponent::SpecificGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:SpecificGravity", &a->prodml23__PseudoFluidComponent::SpecificGravity, "xsd:double")) { soap_flag_SpecificGravity1--; continue; } } if (soap_flag_StartingCarbonNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml22:StartingCarbonNumber", &a->prodml22__PseudoFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) + { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml23:StartingCarbonNumber", &a->prodml23__PseudoFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) { soap_flag_StartingCarbonNumber1--; continue; } } if (soap_flag_EndingCarbonNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml22:EndingCarbonNumber", &a->prodml22__PseudoFluidComponent::EndingCarbonNumber, "eml23:NonNegativeLong")) + { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml23:EndingCarbonNumber", &a->prodml23__PseudoFluidComponent::EndingCarbonNumber, "eml23:NonNegativeLong")) { soap_flag_EndingCarbonNumber1--; continue; } } if (soap_flag_AvgMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:AvgMolecularWeight", &a->prodml22__PseudoFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:AvgMolecularWeight", &a->prodml23__PseudoFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_AvgMolecularWeight1--; continue; } } if (soap_flag_AvgDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:AvgDensity", &a->prodml22__PseudoFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:AvgDensity", &a->prodml23__PseudoFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_AvgDensity1--; continue; } } if (soap_flag_StartingBoilingPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StartingBoilingPoint", &a->prodml22__PseudoFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StartingBoilingPoint", &a->prodml23__PseudoFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StartingBoilingPoint1--; continue; } } if (soap_flag_EndingBoilingPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:EndingBoilingPoint", &a->prodml22__PseudoFluidComponent::EndingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:EndingBoilingPoint", &a->prodml23__PseudoFluidComponent::EndingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_EndingBoilingPoint1--; continue; } } if (soap_flag_AvgBoilingPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:AvgBoilingPoint", &a->prodml22__PseudoFluidComponent::AvgBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:AvgBoilingPoint", &a->prodml23__PseudoFluidComponent::AvgBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_AvgBoilingPoint1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__PseudoFluidComponent::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__PseudoFluidComponent::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -232577,35 +232727,35 @@ SOAP_FMAC3 prodml22__PseudoFluidComponent * SOAP_FMAC4 soap_in_prodml22__PseudoF return NULL; } else - { a = (prodml22__PseudoFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, sizeof(prodml22__PseudoFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PseudoFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, sizeof(prodml23__PseudoFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PseudoFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PseudoFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PseudoFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PseudoFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PseudoFluidComponent *p; - size_t k = sizeof(prodml22__PseudoFluidComponent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, n, gsoap_eml2_3_fdelete); + prodml23__PseudoFluidComponent *p; + size_t k = sizeof(prodml23__PseudoFluidComponent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PseudoFluidComponent); + { p = SOAP_NEW(soap, prodml23__PseudoFluidComponent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PseudoFluidComponent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PseudoFluidComponent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PseudoFluidComponent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PseudoFluidComponent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -232615,99 +232765,99 @@ SOAP_FMAC1 prodml22__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__PseudoFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PseudoFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PseudoFluidComponent(soap, tag ? tag : "prodml22:PseudoFluidComponent", -2, this, type)) + if (soap_out_prodml23__PseudoFluidComponent(soap, tag ? tag : "prodml23:PseudoFluidComponent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PseudoFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PseudoFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PseudoFluidComponent(soap, this, tag, type); + return soap_get_prodml23__PseudoFluidComponent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PseudoFluidComponent * SOAP_FMAC4 soap_get_prodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PseudoFluidComponent * SOAP_FMAC4 soap_get_prodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PseudoFluidComponent(soap, tag, p, type))) + if ((p = soap_in_prodml23__PseudoFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFluid::soap_default(struct soap *soap) +void prodml23__ProductFluid::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractProductQuantity::soap_default(soap); - soap_default_prodml22__ProductFluidKindExt(soap, &this->prodml22__ProductFluid::ProductFluidKind); - this->prodml22__ProductFluid::GrossEnergyContent = NULL; - this->prodml22__ProductFluid::NetEnergyContent = NULL; - this->prodml22__ProductFluid::OverallComposition = NULL; - this->prodml22__ProductFluid::productFluidReference = NULL; + this->prodml23__AbstractProductQuantity::soap_default(soap); + soap_default_prodml23__ProductFluidKindExt(soap, &this->prodml23__ProductFluid::ProductFluidKind); + this->prodml23__ProductFluid::GrossEnergyContent = NULL; + this->prodml23__ProductFluid::NetEnergyContent = NULL; + this->prodml23__ProductFluid::OverallComposition = NULL; + this->prodml23__ProductFluid::productFluidReference = NULL; } -void prodml22__ProductFluid::soap_serialize(struct soap *soap) const +void prodml23__ProductFluid::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__ProductFluidKindExt(soap, &this->prodml22__ProductFluid::ProductFluidKind); - soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml22__ProductFluid::GrossEnergyContent); - soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml22__ProductFluid::NetEnergyContent); - soap_serialize_PointerToprodml22__OverallComposition(soap, &this->prodml22__ProductFluid::OverallComposition); - this->prodml22__AbstractProductQuantity::soap_serialize(soap); + soap_serialize_prodml23__ProductFluidKindExt(soap, &this->prodml23__ProductFluid::ProductFluidKind); + soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml23__ProductFluid::GrossEnergyContent); + soap_serialize_PointerToeml23__EnergyMeasure(soap, &this->prodml23__ProductFluid::NetEnergyContent); + soap_serialize_PointerToprodml23__OverallComposition(soap, &this->prodml23__ProductFluid::OverallComposition); + this->prodml23__AbstractProductQuantity::soap_serialize(soap); #endif } -int prodml22__ProductFluid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFluid::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFluid(soap, tag, id, this, type); + return soap_out_prodml23__ProductFluid(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFluid(struct soap *soap, const char *tag, int id, const prodml22__ProductFluid *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFluid(struct soap *soap, const char *tag, int id, const prodml23__ProductFluid *a, const char *type) { if (!type) - type = "prodml22:ProductFluid"; - if (((prodml22__ProductFluid*)a)->productFluidReference) - { soap_set_attr(soap, "productFluidReference", soap_eml23__String642s(soap, *((prodml22__ProductFluid*)a)->productFluidReference), 1); + type = "prodml23:ProductFluid"; + if (((prodml23__ProductFluid*)a)->productFluidReference) + { soap_set_attr(soap, "productFluidReference", soap_eml23__String642s(soap, *((prodml23__ProductFluid*)a)->productFluidReference), 1); } - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractProductQuantity*)a)->uid), 1); + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractProductQuantity*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFluid), type ? type : "prodml22:ProductFluid")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid), type ? type : "prodml23:ProductFluid")) return soap->error; - if (soap_out_PointerToeml23__VolumeValue(soap, "prodml22:Volume", -1, &a->prodml22__AbstractProductQuantity::Volume, "eml23:VolumeValue")) + if (soap_out_PointerToeml23__VolumeValue(soap, "prodml23:Volume", -1, &a->prodml23__AbstractProductQuantity::Volume, "eml23:VolumeValue")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:Mass", -1, &a->prodml22__AbstractProductQuantity::Mass, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:Mass", -1, &a->prodml23__AbstractProductQuantity::Mass, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:Moles", -1, &a->prodml22__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:Moles", -1, &a->prodml23__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) return soap->error; - if (soap_out_prodml22__ProductFluidKindExt(soap, "prodml22:ProductFluidKind", -1, &a->prodml22__ProductFluid::ProductFluidKind, "prodml22:ProductFluidKindExt")) + if (soap_out_prodml23__ProductFluidKindExt(soap, "prodml23:ProductFluidKind", -1, &a->prodml23__ProductFluid::ProductFluidKind, "prodml23:ProductFluidKindExt")) return soap->error; - if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml22:GrossEnergyContent", -1, &a->prodml22__ProductFluid::GrossEnergyContent, "eml23:EnergyMeasure")) + if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml23:GrossEnergyContent", -1, &a->prodml23__ProductFluid::GrossEnergyContent, "eml23:EnergyMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml22:NetEnergyContent", -1, &a->prodml22__ProductFluid::NetEnergyContent, "eml23:EnergyMeasure")) + if (soap_out_PointerToeml23__EnergyMeasure(soap, "prodml23:NetEnergyContent", -1, &a->prodml23__ProductFluid::NetEnergyContent, "eml23:EnergyMeasure")) return soap->error; - if (soap_out_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", -1, &a->prodml22__ProductFluid::OverallComposition, "prodml22:OverallComposition")) + if (soap_out_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", -1, &a->prodml23__ProductFluid::OverallComposition, "prodml23:OverallComposition")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFluid::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFluid::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFluid(soap, tag, this, type); + return soap_in_prodml23__ProductFluid(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_in_prodml22__ProductFluid(struct soap *soap, const char *tag, prodml22__ProductFluid *a, const char *type) +SOAP_FMAC3 prodml23__ProductFluid * SOAP_FMAC4 soap_in_prodml23__ProductFluid(struct soap *soap, const char *tag, prodml23__ProductFluid *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFluid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid, sizeof(prodml22__ProductFluid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFluid*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid, sizeof(prodml23__ProductFluid), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFluid *)a->soap_in(soap, tag, type); + return (prodml23__ProductFluid *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -232715,15 +232865,15 @@ SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_in_prodml22__ProductFluid(st const char *t = soap_attr_value(soap, "productFluidReference", 1, 0); if (t) { - if (!(((prodml22__ProductFluid*)a)->productFluidReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__ProductFluid*)a)->productFluidReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__ProductFluid*)a)->productFluidReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__ProductFluid*)a)->productFluidReference)) return NULL; } else if (soap->error) return NULL; } - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractProductQuantity*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractProductQuantity*)a)->uid)) return NULL; size_t soap_flag_Volume2 = 1; size_t soap_flag_Mass2 = 1; @@ -232737,43 +232887,43 @@ SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_in_prodml22__ProductFluid(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Volume2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeValue(soap, "prodml22:Volume", &a->prodml22__AbstractProductQuantity::Volume, "eml23:VolumeValue")) + { if (soap_in_PointerToeml23__VolumeValue(soap, "prodml23:Volume", &a->prodml23__AbstractProductQuantity::Volume, "eml23:VolumeValue")) { soap_flag_Volume2--; continue; } } if (soap_flag_Mass2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:Mass", &a->prodml22__AbstractProductQuantity::Mass, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:Mass", &a->prodml23__AbstractProductQuantity::Mass, "eml23:MassMeasure")) { soap_flag_Mass2--; continue; } } if (soap_flag_Moles2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:Moles", &a->prodml22__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:Moles", &a->prodml23__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) { soap_flag_Moles2--; continue; } } if (soap_flag_ProductFluidKind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__ProductFluidKindExt(soap, "prodml22:ProductFluidKind", &a->prodml22__ProductFluid::ProductFluidKind, "prodml22:ProductFluidKindExt")) + { if (soap_in_prodml23__ProductFluidKindExt(soap, "prodml23:ProductFluidKind", &a->prodml23__ProductFluid::ProductFluidKind, "prodml23:ProductFluidKindExt")) { soap_flag_ProductFluidKind1--; continue; } } if (soap_flag_GrossEnergyContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml22:GrossEnergyContent", &a->prodml22__ProductFluid::GrossEnergyContent, "eml23:EnergyMeasure")) + { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml23:GrossEnergyContent", &a->prodml23__ProductFluid::GrossEnergyContent, "eml23:EnergyMeasure")) { soap_flag_GrossEnergyContent1--; continue; } } if (soap_flag_NetEnergyContent1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml22:NetEnergyContent", &a->prodml22__ProductFluid::NetEnergyContent, "eml23:EnergyMeasure")) + { if (soap_in_PointerToeml23__EnergyMeasure(soap, "prodml23:NetEnergyContent", &a->prodml23__ProductFluid::NetEnergyContent, "eml23:EnergyMeasure")) { soap_flag_NetEnergyContent1--; continue; } } if (soap_flag_OverallComposition1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OverallComposition(soap, "prodml22:OverallComposition", &a->prodml22__ProductFluid::OverallComposition, "prodml22:OverallComposition")) + { if (soap_in_PointerToprodml23__OverallComposition(soap, "prodml23:OverallComposition", &a->prodml23__ProductFluid::OverallComposition, "prodml23:OverallComposition")) { soap_flag_OverallComposition1--; continue; } @@ -232797,35 +232947,35 @@ SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_in_prodml22__ProductFluid(st return NULL; } else - { a = (prodml22__ProductFluid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid, sizeof(prodml22__ProductFluid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFluid *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid, sizeof(prodml23__ProductFluid), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml22__ProductFluid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml23__ProductFluid(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFluid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFluid(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFluid *p; - size_t k = sizeof(prodml22__ProductFluid); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid, n, gsoap_eml2_3_fdelete); + prodml23__ProductFluid *p; + size_t k = sizeof(prodml23__ProductFluid); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFluid); + { p = SOAP_NEW(soap, prodml23__ProductFluid); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFluid, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFluid, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFluid location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFluid location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -232835,109 +232985,109 @@ SOAP_FMAC1 prodml22__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml22__Produc return p; } -int prodml22__ProductFluid::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFluid::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFluid(soap, tag ? tag : "prodml22:ProductFluid", -2, this, type)) + if (soap_out_prodml23__ProductFluid(soap, tag ? tag : "prodml23:ProductFluid", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFluid::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFluid::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFluid(soap, this, tag, type); + return soap_get_prodml23__ProductFluid(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_get_prodml22__ProductFluid(struct soap *soap, prodml22__ProductFluid *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFluid * SOAP_FMAC4 soap_get_prodml23__ProductFluid(struct soap *soap, prodml23__ProductFluid *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFluid(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFluid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowNetwork::soap_default(struct soap *soap) +void prodml23__ProductFlowNetwork::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowNetwork::Name); - this->prodml22__ProductFlowNetwork::PlanName = NULL; - this->prodml22__ProductFlowNetwork::ParentNetworkReference = NULL; - this->prodml22__ProductFlowNetwork::Comment = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap, &this->prodml22__ProductFlowNetwork::Port); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap, &this->prodml22__ProductFlowNetwork::Plan); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, &this->prodml22__ProductFlowNetwork::ChangeLog); - soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap, &this->prodml22__ProductFlowNetwork::Unit); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowNetwork::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowNetwork::Name); + this->prodml23__ProductFlowNetwork::PlanName = NULL; + this->prodml23__ProductFlowNetwork::ParentNetworkReference = NULL; + this->prodml23__ProductFlowNetwork::Comment = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap, &this->prodml23__ProductFlowNetwork::Port); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap, &this->prodml23__ProductFlowNetwork::Plan); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, &this->prodml23__ProductFlowNetwork::ChangeLog); + soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap, &this->prodml23__ProductFlowNetwork::Unit); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowNetwork::uid); } -void prodml22__ProductFlowNetwork::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowNetwork::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductFlowNetwork::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowNetwork::Name); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductFlowNetwork::PlanName); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__ProductFlowNetwork::ParentNetworkReference); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__ProductFlowNetwork::Comment); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap, &this->prodml22__ProductFlowNetwork::Port); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap, &this->prodml22__ProductFlowNetwork::Plan); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, &this->prodml22__ProductFlowNetwork::ChangeLog); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap, &this->prodml22__ProductFlowNetwork::Unit); + soap_embedded(soap, &this->prodml23__ProductFlowNetwork::Name, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowNetwork::Name); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductFlowNetwork::PlanName); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__ProductFlowNetwork::ParentNetworkReference); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__ProductFlowNetwork::Comment); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap, &this->prodml23__ProductFlowNetwork::Port); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap, &this->prodml23__ProductFlowNetwork::Plan); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, &this->prodml23__ProductFlowNetwork::ChangeLog); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap, &this->prodml23__ProductFlowNetwork::Unit); #endif } -int prodml22__ProductFlowNetwork::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowNetwork::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowNetwork(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowNetwork(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowNetwork(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowNetwork *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowNetwork(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowNetwork *a, const char *type) { if (!type) - type = "prodml22:ProductFlowNetwork"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowNetwork*)a)->uid), 1); + type = "prodml23:ProductFlowNetwork"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowNetwork*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowNetwork), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Name", -1, &a->prodml22__ProductFlowNetwork::Name, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Name", -1, &a->prodml23__ProductFlowNetwork::Name, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:PlanName", -1, &a->prodml22__ProductFlowNetwork::PlanName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:PlanName", -1, &a->prodml23__ProductFlowNetwork::PlanName, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:ParentNetworkReference", -1, &a->prodml22__ProductFlowNetwork::ParentNetworkReference, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:ParentNetworkReference", -1, &a->prodml23__ProductFlowNetwork::ParentNetworkReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__ProductFlowNetwork::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__ProductFlowNetwork::Comment, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap, "prodml22:Port", -1, &a->prodml22__ProductFlowNetwork::Port, "prodml22:ProductFlowExternalPort")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap, "prodml23:Port", -1, &a->prodml23__ProductFlowNetwork::Port, "prodml23:ProductFlowExternalPort")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap, "prodml22:Plan", -1, &a->prodml22__ProductFlowNetwork::Plan, "prodml22:ProductFlowNetworkPlan")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap, "prodml23:Plan", -1, &a->prodml23__ProductFlowNetwork::Plan, "prodml23:ProductFlowNetworkPlan")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, "prodml22:ChangeLog", -1, &a->prodml22__ProductFlowNetwork::ChangeLog, "prodml22:ProductFlowChangeLog")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, "prodml23:ChangeLog", -1, &a->prodml23__ProductFlowNetwork::ChangeLog, "prodml23:ProductFlowChangeLog")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap, "prodml22:Unit", -1, &a->prodml22__ProductFlowNetwork::Unit, "prodml22:ProductFlowUnit")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap, "prodml23:Unit", -1, &a->prodml23__ProductFlowNetwork::Unit, "prodml23:ProductFlowUnit")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowNetwork::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowNetwork::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowNetwork(soap, tag, this, type); + return soap_in_prodml23__ProductFlowNetwork(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml22__ProductFlowNetwork(struct soap *soap, const char *tag, prodml22__ProductFlowNetwork *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml23__ProductFlowNetwork(struct soap *soap, const char *tag, prodml23__ProductFlowNetwork *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowNetwork*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, sizeof(prodml22__ProductFlowNetwork), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowNetwork*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, sizeof(prodml23__ProductFlowNetwork), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowNetwork *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowNetwork *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowNetwork*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowNetwork*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_PlanName1 = 1; @@ -232948,43 +233098,43 @@ SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml22__ProductFl for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Name", &a->prodml22__ProductFlowNetwork::Name, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Name", &a->prodml23__ProductFlowNetwork::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_PlanName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:PlanName", &a->prodml22__ProductFlowNetwork::PlanName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:PlanName", &a->prodml23__ProductFlowNetwork::PlanName, "eml23:String64")) { soap_flag_PlanName1--; continue; } } if (soap_flag_ParentNetworkReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:ParentNetworkReference", &a->prodml22__ProductFlowNetwork::ParentNetworkReference, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:ParentNetworkReference", &a->prodml23__ProductFlowNetwork::ParentNetworkReference, "eml23:String64")) { soap_flag_ParentNetworkReference1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__ProductFlowNetwork::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__ProductFlowNetwork::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap, "prodml22:Port", &a->prodml22__ProductFlowNetwork::Port, "prodml22:ProductFlowExternalPort")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap, "prodml23:Port", &a->prodml23__ProductFlowNetwork::Port, "prodml23:ProductFlowExternalPort")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap, "prodml22:Plan", &a->prodml22__ProductFlowNetwork::Plan, "prodml22:ProductFlowNetworkPlan")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap, "prodml23:Plan", &a->prodml23__ProductFlowNetwork::Plan, "prodml23:ProductFlowNetworkPlan")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, "prodml22:ChangeLog", &a->prodml22__ProductFlowNetwork::ChangeLog, "prodml22:ProductFlowChangeLog")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, "prodml23:ChangeLog", &a->prodml23__ProductFlowNetwork::ChangeLog, "prodml23:ProductFlowChangeLog")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap, "prodml22:Unit", &a->prodml22__ProductFlowNetwork::Unit, "prodml22:ProductFlowUnit")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap, "prodml23:Unit", &a->prodml23__ProductFlowNetwork::Unit, "prodml23:ProductFlowUnit")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -232996,7 +233146,7 @@ SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml22__ProductFl } if (soap_element_end_in(soap, tag)) return NULL; - if ((soap_flag_Name1 > 0 || a->prodml22__ProductFlowNetwork::Unit.size() < 1)) + if ((soap_flag_Name1 > 0 || a->prodml23__ProductFlowNetwork::Unit.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -233006,35 +233156,35 @@ SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml22__ProductFl return NULL; } else - { a = (prodml22__ProductFlowNetwork *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, sizeof(prodml22__ProductFlowNetwork), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowNetwork *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, sizeof(prodml23__ProductFlowNetwork), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowNetwork(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowNetwork(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowNetwork(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowNetwork(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowNetwork *p; - size_t k = sizeof(prodml22__ProductFlowNetwork); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowNetwork *p; + size_t k = sizeof(prodml23__ProductFlowNetwork); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowNetwork); + { p = SOAP_NEW(soap, prodml23__ProductFlowNetwork); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowNetwork, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowNetwork, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowNetwork location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowNetwork location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -233044,95 +233194,95 @@ SOAP_FMAC1 prodml22__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__ProductFlowNetwork::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowNetwork::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowNetwork(soap, tag ? tag : "prodml22:ProductFlowNetwork", -2, this, type)) + if (soap_out_prodml23__ProductFlowNetwork(soap, tag ? tag : "prodml23:ProductFlowNetwork", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowNetwork::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowNetwork::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowNetwork(soap, this, tag, type); + return soap_get_prodml23__ProductFlowNetwork(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_get_prodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetwork * SOAP_FMAC4 soap_get_prodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowNetwork(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowNetwork(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ProductFlowExternalReference::soap_default(struct soap *soap) +void prodml23__ProductFlowExternalReference::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::PortReference); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::ConnectedPortReference); - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::ConnectedModelReference); - this->prodml22__ProductFlowExternalReference::ConnectedInstallation = NULL; - soap_default_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::uid); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::PortReference); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::ConnectedPortReference); + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::ConnectedModelReference); + this->prodml23__ProductFlowExternalReference::ConnectedInstallation = NULL; + soap_default_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::uid); } -void prodml22__ProductFlowExternalReference::soap_serialize(struct soap *soap) const +void prodml23__ProductFlowExternalReference::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__ProductFlowExternalReference::PortReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::PortReference); - soap_embedded(soap, &this->prodml22__ProductFlowExternalReference::ConnectedPortReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::ConnectedPortReference); - soap_embedded(soap, &this->prodml22__ProductFlowExternalReference::ConnectedModelReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__ProductFlowExternalReference::ConnectedModelReference); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__ProductFlowExternalReference::ConnectedInstallation); + soap_embedded(soap, &this->prodml23__ProductFlowExternalReference::PortReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::PortReference); + soap_embedded(soap, &this->prodml23__ProductFlowExternalReference::ConnectedPortReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::ConnectedPortReference); + soap_embedded(soap, &this->prodml23__ProductFlowExternalReference::ConnectedModelReference, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__ProductFlowExternalReference::ConnectedModelReference); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__ProductFlowExternalReference::ConnectedInstallation); #endif } -int prodml22__ProductFlowExternalReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ProductFlowExternalReference::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ProductFlowExternalReference(soap, tag, id, this, type); + return soap_out_prodml23__ProductFlowExternalReference(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowExternalReference(struct soap *soap, const char *tag, int id, const prodml22__ProductFlowExternalReference *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowExternalReference(struct soap *soap, const char *tag, int id, const prodml23__ProductFlowExternalReference *a, const char *type) { if (!type) - type = "prodml22:ProductFlowExternalReference"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__ProductFlowExternalReference*)a)->uid), 1); + type = "prodml23:ProductFlowExternalReference"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__ProductFlowExternalReference*)a)->uid), 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_gsoap_eml2_3_prodml22__ProductFlowExternalReference), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference), type)) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:PortReference", -1, &a->prodml22__ProductFlowExternalReference::PortReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:PortReference", -1, &a->prodml23__ProductFlowExternalReference::PortReference, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:ConnectedPortReference", -1, &a->prodml22__ProductFlowExternalReference::ConnectedPortReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:ConnectedPortReference", -1, &a->prodml23__ProductFlowExternalReference::ConnectedPortReference, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:ConnectedModelReference", -1, &a->prodml22__ProductFlowExternalReference::ConnectedModelReference, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:ConnectedModelReference", -1, &a->prodml23__ProductFlowExternalReference::ConnectedModelReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ConnectedInstallation", -1, &a->prodml22__ProductFlowExternalReference::ConnectedInstallation, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ConnectedInstallation", -1, &a->prodml23__ProductFlowExternalReference::ConnectedInstallation, "prodml23:FacilityIdentifierStruct")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ProductFlowExternalReference::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowExternalReference::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ProductFlowExternalReference(soap, tag, this, type); + return soap_in_prodml23__ProductFlowExternalReference(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ProductFlowExternalReference * SOAP_FMAC4 soap_in_prodml22__ProductFlowExternalReference(struct soap *soap, const char *tag, prodml22__ProductFlowExternalReference *a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalReference * SOAP_FMAC4 soap_in_prodml23__ProductFlowExternalReference(struct soap *soap, const char *tag, prodml23__ProductFlowExternalReference *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ProductFlowExternalReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, sizeof(prodml22__ProductFlowExternalReference), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ProductFlowExternalReference*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, sizeof(prodml23__ProductFlowExternalReference), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ProductFlowExternalReference *)a->soap_in(soap, tag, type); + return (prodml23__ProductFlowExternalReference *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__ProductFlowExternalReference*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__ProductFlowExternalReference*)a)->uid)) return NULL; size_t soap_flag_PortReference1 = 1; size_t soap_flag_ConnectedPortReference1 = 1; @@ -233143,25 +233293,25 @@ SOAP_FMAC3 prodml22__ProductFlowExternalReference * SOAP_FMAC4 soap_in_prodml22_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_PortReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:PortReference", &a->prodml22__ProductFlowExternalReference::PortReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:PortReference", &a->prodml23__ProductFlowExternalReference::PortReference, "eml23:String64")) { soap_flag_PortReference1--; continue; } } if (soap_flag_ConnectedPortReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:ConnectedPortReference", &a->prodml22__ProductFlowExternalReference::ConnectedPortReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:ConnectedPortReference", &a->prodml23__ProductFlowExternalReference::ConnectedPortReference, "eml23:String64")) { soap_flag_ConnectedPortReference1--; continue; } } if (soap_flag_ConnectedModelReference1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:ConnectedModelReference", &a->prodml22__ProductFlowExternalReference::ConnectedModelReference, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:ConnectedModelReference", &a->prodml23__ProductFlowExternalReference::ConnectedModelReference, "eml23:String64")) { soap_flag_ConnectedModelReference1--; continue; } } if (soap_flag_ConnectedInstallation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ConnectedInstallation", &a->prodml22__ProductFlowExternalReference::ConnectedInstallation, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ConnectedInstallation", &a->prodml23__ProductFlowExternalReference::ConnectedInstallation, "prodml23:FacilityIdentifierStruct")) { soap_flag_ConnectedInstallation1--; continue; } @@ -233185,35 +233335,35 @@ SOAP_FMAC3 prodml22__ProductFlowExternalReference * SOAP_FMAC4 soap_in_prodml22_ return NULL; } else - { a = (prodml22__ProductFlowExternalReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, sizeof(prodml22__ProductFlowExternalReference), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowExternalReference *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, sizeof(prodml23__ProductFlowExternalReference), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExternalReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExternalReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ProductFlowExternalReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ProductFlowExternalReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ProductFlowExternalReference *p; - size_t k = sizeof(prodml22__ProductFlowExternalReference); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, n, gsoap_eml2_3_fdelete); + prodml23__ProductFlowExternalReference *p; + size_t k = sizeof(prodml23__ProductFlowExternalReference); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ProductFlowExternalReference); + { p = SOAP_NEW(soap, prodml23__ProductFlowExternalReference); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ProductFlowExternalReference, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ProductFlowExternalReference, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ProductFlowExternalReference location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ProductFlowExternalReference location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -233223,113 +233373,113 @@ SOAP_FMAC1 prodml22__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__ProductFlowExternalReference::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ProductFlowExternalReference::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ProductFlowExternalReference(soap, tag ? tag : "prodml22:ProductFlowExternalReference", -2, this, type)) + if (soap_out_prodml23__ProductFlowExternalReference(soap, tag ? tag : "prodml23:ProductFlowExternalReference", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ProductFlowExternalReference::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ProductFlowExternalReference::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ProductFlowExternalReference(soap, this, tag, type); + return soap_get_prodml23__ProductFlowExternalReference(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ProductFlowExternalReference * SOAP_FMAC4 soap_get_prodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalReference * SOAP_FMAC4 soap_get_prodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ProductFlowExternalReference(soap, tag, p, type))) + if ((p = soap_in_prodml23__ProductFlowExternalReference(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PlusFluidComponent::soap_default(struct soap *soap) +void prodml23__PlusFluidComponent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - soap_default_prodml22__PlusComponentKindExt(soap, &this->prodml22__PlusFluidComponent::Kind); - this->prodml22__PlusFluidComponent::SpecificGravity = NULL; - this->prodml22__PlusFluidComponent::StartingCarbonNumber = NULL; - this->prodml22__PlusFluidComponent::StartingBoilingPoint = NULL; - this->prodml22__PlusFluidComponent::AvgDensity = NULL; - this->prodml22__PlusFluidComponent::AvgMolecularWeight = NULL; - this->prodml22__PlusFluidComponent::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + soap_default_prodml23__PlusComponentKindExt(soap, &this->prodml23__PlusFluidComponent::Kind); + this->prodml23__PlusFluidComponent::SpecificGravity = NULL; + this->prodml23__PlusFluidComponent::StartingCarbonNumber = NULL; + this->prodml23__PlusFluidComponent::StartingBoilingPoint = NULL; + this->prodml23__PlusFluidComponent::AvgDensity = NULL; + this->prodml23__PlusFluidComponent::AvgMolecularWeight = NULL; + this->prodml23__PlusFluidComponent::Remark = NULL; } -void prodml22__PlusFluidComponent::soap_serialize(struct soap *soap) const +void prodml23__PlusFluidComponent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__PlusComponentKindExt(soap, &this->prodml22__PlusFluidComponent::Kind); - soap_serialize_PointerTodouble(soap, &this->prodml22__PlusFluidComponent::SpecificGravity); - soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml22__PlusFluidComponent::StartingCarbonNumber); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__PlusFluidComponent::StartingBoilingPoint); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__PlusFluidComponent::AvgDensity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__PlusFluidComponent::AvgMolecularWeight); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__PlusFluidComponent::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_prodml23__PlusComponentKindExt(soap, &this->prodml23__PlusFluidComponent::Kind); + soap_serialize_PointerTodouble(soap, &this->prodml23__PlusFluidComponent::SpecificGravity); + soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml23__PlusFluidComponent::StartingCarbonNumber); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__PlusFluidComponent::StartingBoilingPoint); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__PlusFluidComponent::AvgDensity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__PlusFluidComponent::AvgMolecularWeight); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__PlusFluidComponent::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__PlusFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PlusFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PlusFluidComponent(soap, tag, id, this, type); + return soap_out_prodml23__PlusFluidComponent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PlusFluidComponent(struct soap *soap, const char *tag, int id, const prodml22__PlusFluidComponent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PlusFluidComponent(struct soap *soap, const char *tag, int id, const prodml23__PlusFluidComponent *a, const char *type) { if (!type) - type = "prodml22:PlusFluidComponent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:PlusFluidComponent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__PlusFluidComponent), type ? type : "prodml22:PlusFluidComponent")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent), type ? type : "prodml23:PlusFluidComponent")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_prodml22__PlusComponentKindExt(soap, "prodml22:Kind", -1, &a->prodml22__PlusFluidComponent::Kind, "prodml22:PlusComponentKindExt")) + if (soap_out_prodml23__PlusComponentKindExt(soap, "prodml23:Kind", -1, &a->prodml23__PlusFluidComponent::Kind, "prodml23:PlusComponentKindExt")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:SpecificGravity", -1, &a->prodml22__PlusFluidComponent::SpecificGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:SpecificGravity", -1, &a->prodml23__PlusFluidComponent::SpecificGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml22:StartingCarbonNumber", -1, &a->prodml22__PlusFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) + if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml23:StartingCarbonNumber", -1, &a->prodml23__PlusFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StartingBoilingPoint", -1, &a->prodml22__PlusFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StartingBoilingPoint", -1, &a->prodml23__PlusFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:AvgDensity", -1, &a->prodml22__PlusFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:AvgDensity", -1, &a->prodml23__PlusFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:AvgMolecularWeight", -1, &a->prodml22__PlusFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:AvgMolecularWeight", -1, &a->prodml23__PlusFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__PlusFluidComponent::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__PlusFluidComponent::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PlusFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PlusFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PlusFluidComponent(soap, tag, this, type); + return soap_in_prodml23__PlusFluidComponent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PlusFluidComponent * SOAP_FMAC4 soap_in_prodml22__PlusFluidComponent(struct soap *soap, const char *tag, prodml22__PlusFluidComponent *a, const char *type) +SOAP_FMAC3 prodml23__PlusFluidComponent * SOAP_FMAC4 soap_in_prodml23__PlusFluidComponent(struct soap *soap, const char *tag, prodml23__PlusFluidComponent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PlusFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, sizeof(prodml22__PlusFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PlusFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, sizeof(prodml23__PlusFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PlusFluidComponent *)a->soap_in(soap, tag, type); + return (prodml23__PlusFluidComponent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -233347,67 +233497,67 @@ SOAP_FMAC3 prodml22__PlusFluidComponent * SOAP_FMAC4 soap_in_prodml22__PlusFluid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__PlusComponentKindExt(soap, "prodml22:Kind", &a->prodml22__PlusFluidComponent::Kind, "prodml22:PlusComponentKindExt")) + { if (soap_in_prodml23__PlusComponentKindExt(soap, "prodml23:Kind", &a->prodml23__PlusFluidComponent::Kind, "prodml23:PlusComponentKindExt")) { soap_flag_Kind1--; continue; } } if (soap_flag_SpecificGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:SpecificGravity", &a->prodml22__PlusFluidComponent::SpecificGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:SpecificGravity", &a->prodml23__PlusFluidComponent::SpecificGravity, "xsd:double")) { soap_flag_SpecificGravity1--; continue; } } if (soap_flag_StartingCarbonNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml22:StartingCarbonNumber", &a->prodml22__PlusFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) + { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml23:StartingCarbonNumber", &a->prodml23__PlusFluidComponent::StartingCarbonNumber, "eml23:NonNegativeLong")) { soap_flag_StartingCarbonNumber1--; continue; } } if (soap_flag_StartingBoilingPoint1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:StartingBoilingPoint", &a->prodml22__PlusFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:StartingBoilingPoint", &a->prodml23__PlusFluidComponent::StartingBoilingPoint, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_StartingBoilingPoint1--; continue; } } if (soap_flag_AvgDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:AvgDensity", &a->prodml22__PlusFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:AvgDensity", &a->prodml23__PlusFluidComponent::AvgDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_AvgDensity1--; continue; } } if (soap_flag_AvgMolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:AvgMolecularWeight", &a->prodml22__PlusFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:AvgMolecularWeight", &a->prodml23__PlusFluidComponent::AvgMolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_AvgMolecularWeight1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__PlusFluidComponent::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__PlusFluidComponent::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -233431,35 +233581,35 @@ SOAP_FMAC3 prodml22__PlusFluidComponent * SOAP_FMAC4 soap_in_prodml22__PlusFluid return NULL; } else - { a = (prodml22__PlusFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, sizeof(prodml22__PlusFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PlusFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, sizeof(prodml23__PlusFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PlusFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PlusFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PlusFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PlusFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PlusFluidComponent *p; - size_t k = sizeof(prodml22__PlusFluidComponent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, n, gsoap_eml2_3_fdelete); + prodml23__PlusFluidComponent *p; + size_t k = sizeof(prodml23__PlusFluidComponent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PlusFluidComponent); + { p = SOAP_NEW(soap, prodml23__PlusFluidComponent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PlusFluidComponent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PlusFluidComponent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PlusFluidComponent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PlusFluidComponent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -233469,78 +233619,78 @@ SOAP_FMAC1 prodml22__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__PlusFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PlusFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PlusFluidComponent(soap, tag ? tag : "prodml22:PlusFluidComponent", -2, this, type)) + if (soap_out_prodml23__PlusFluidComponent(soap, tag ? tag : "prodml23:PlusFluidComponent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PlusFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PlusFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PlusFluidComponent(soap, this, tag, type); + return soap_get_prodml23__PlusFluidComponent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PlusFluidComponent * SOAP_FMAC4 soap_get_prodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PlusFluidComponent * SOAP_FMAC4 soap_get_prodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PlusFluidComponent(soap, tag, p, type))) + if ((p = soap_in_prodml23__PlusFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OverallComposition::soap_default(struct soap *soap) +void prodml23__OverallComposition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__OverallComposition::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__OverallComposition::FluidComponentFraction); + this->prodml23__OverallComposition::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__OverallComposition::FluidComponentFraction); } -void prodml22__OverallComposition::soap_serialize(struct soap *soap) const +void prodml23__OverallComposition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__OverallComposition::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__OverallComposition::FluidComponentFraction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__OverallComposition::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__OverallComposition::FluidComponentFraction); #endif } -int prodml22__OverallComposition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OverallComposition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OverallComposition(soap, tag, id, this, type); + return soap_out_prodml23__OverallComposition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OverallComposition(struct soap *soap, const char *tag, int id, const prodml22__OverallComposition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OverallComposition(struct soap *soap, const char *tag, int id, const prodml23__OverallComposition *a, const char *type) { if (!type) - type = "prodml22:OverallComposition"; + type = "prodml23:OverallComposition"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__OverallComposition::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__OverallComposition::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:FluidComponentFraction", -1, &a->prodml22__OverallComposition::FluidComponentFraction, "prodml22:FluidComponentFraction")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:FluidComponentFraction", -1, &a->prodml23__OverallComposition::FluidComponentFraction, "prodml23:FluidComponentFraction")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OverallComposition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OverallComposition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OverallComposition(soap, tag, this, type); + return soap_in_prodml23__OverallComposition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OverallComposition * SOAP_FMAC4 soap_in_prodml22__OverallComposition(struct soap *soap, const char *tag, prodml22__OverallComposition *a, const char *type) +SOAP_FMAC3 prodml23__OverallComposition * SOAP_FMAC4 soap_in_prodml23__OverallComposition(struct soap *soap, const char *tag, prodml23__OverallComposition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OverallComposition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition, sizeof(prodml22__OverallComposition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OverallComposition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition, sizeof(prodml23__OverallComposition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OverallComposition *)a->soap_in(soap, tag, type); + return (prodml23__OverallComposition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -233550,13 +233700,13 @@ SOAP_FMAC3 prodml22__OverallComposition * SOAP_FMAC4 soap_in_prodml22__OverallCo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__OverallComposition::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__OverallComposition::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:FluidComponentFraction", &a->prodml22__OverallComposition::FluidComponentFraction, "prodml22:FluidComponentFraction")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:FluidComponentFraction", &a->prodml23__OverallComposition::FluidComponentFraction, "prodml23:FluidComponentFraction")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -233570,35 +233720,35 @@ SOAP_FMAC3 prodml22__OverallComposition * SOAP_FMAC4 soap_in_prodml22__OverallCo return NULL; } else - { a = (prodml22__OverallComposition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition, sizeof(prodml22__OverallComposition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OverallComposition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition, sizeof(prodml23__OverallComposition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml22__OverallComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml23__OverallComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OverallComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OverallComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OverallComposition *p; - size_t k = sizeof(prodml22__OverallComposition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition, n, gsoap_eml2_3_fdelete); + prodml23__OverallComposition *p; + size_t k = sizeof(prodml23__OverallComposition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OverallComposition); + { p = SOAP_NEW(soap, prodml23__OverallComposition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OverallComposition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OverallComposition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OverallComposition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OverallComposition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -233608,86 +233758,86 @@ SOAP_FMAC1 prodml22__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__OverallComposition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OverallComposition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OverallComposition(soap, tag ? tag : "prodml22:OverallComposition", -2, this, type)) + if (soap_out_prodml23__OverallComposition(soap, tag ? tag : "prodml23:OverallComposition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OverallComposition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OverallComposition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OverallComposition(soap, this, tag, type); + return soap_get_prodml23__OverallComposition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OverallComposition * SOAP_FMAC4 soap_get_prodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OverallComposition * SOAP_FMAC4 soap_get_prodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OverallComposition(soap, tag, p, type))) + if ((p = soap_in_prodml23__OverallComposition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__OffshoreLocation::soap_default(struct soap *soap) +void prodml23__OffshoreLocation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__OffshoreLocation::AreaName = NULL; - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__OffshoreLocation::BlockID); - this->prodml22__OffshoreLocation::Comment = NULL; - this->prodml22__OffshoreLocation::NorthSeaOffshore = NULL; + this->prodml23__OffshoreLocation::AreaName = NULL; + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__OffshoreLocation::BlockID); + this->prodml23__OffshoreLocation::Comment = NULL; + this->prodml23__OffshoreLocation::NorthSeaOffshore = NULL; } -void prodml22__OffshoreLocation::soap_serialize(struct soap *soap) const +void prodml23__OffshoreLocation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__OffshoreLocation::AreaName); - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__OffshoreLocation::BlockID); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__OffshoreLocation::Comment); - soap_serialize_PointerToprodml22__NorthSeaOffshore(soap, &this->prodml22__OffshoreLocation::NorthSeaOffshore); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__OffshoreLocation::AreaName); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__OffshoreLocation::BlockID); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__OffshoreLocation::Comment); + soap_serialize_PointerToprodml23__NorthSeaOffshore(soap, &this->prodml23__OffshoreLocation::NorthSeaOffshore); #endif } -int prodml22__OffshoreLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__OffshoreLocation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__OffshoreLocation(soap, tag, id, this, type); + return soap_out_prodml23__OffshoreLocation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OffshoreLocation(struct soap *soap, const char *tag, int id, const prodml22__OffshoreLocation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OffshoreLocation(struct soap *soap, const char *tag, int id, const prodml23__OffshoreLocation *a, const char *type) { if (!type) - type = "prodml22:OffshoreLocation"; + type = "prodml23:OffshoreLocation"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:AreaName", -1, &a->prodml22__OffshoreLocation::AreaName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:AreaName", -1, &a->prodml23__OffshoreLocation::AreaName, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:BlockID", -1, &a->prodml22__OffshoreLocation::BlockID, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:BlockID", -1, &a->prodml23__OffshoreLocation::BlockID, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__OffshoreLocation::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__OffshoreLocation::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__NorthSeaOffshore(soap, "prodml22:NorthSeaOffshore", -1, &a->prodml22__OffshoreLocation::NorthSeaOffshore, "prodml22:NorthSeaOffshore")) + if (soap_out_PointerToprodml23__NorthSeaOffshore(soap, "prodml23:NorthSeaOffshore", -1, &a->prodml23__OffshoreLocation::NorthSeaOffshore, "prodml23:NorthSeaOffshore")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__OffshoreLocation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__OffshoreLocation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__OffshoreLocation(soap, tag, this, type); + return soap_in_prodml23__OffshoreLocation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_in_prodml22__OffshoreLocation(struct soap *soap, const char *tag, prodml22__OffshoreLocation *a, const char *type) +SOAP_FMAC3 prodml23__OffshoreLocation * SOAP_FMAC4 soap_in_prodml23__OffshoreLocation(struct soap *soap, const char *tag, prodml23__OffshoreLocation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__OffshoreLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation, sizeof(prodml22__OffshoreLocation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__OffshoreLocation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation, sizeof(prodml23__OffshoreLocation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__OffshoreLocation *)a->soap_in(soap, tag, type); + return (prodml23__OffshoreLocation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -233699,23 +233849,23 @@ SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_in_prodml22__OffshoreLoc for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_AreaName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:AreaName", &a->prodml22__OffshoreLocation::AreaName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:AreaName", &a->prodml23__OffshoreLocation::AreaName, "eml23:String64")) { soap_flag_AreaName1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:BlockID", &a->prodml22__OffshoreLocation::BlockID, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:BlockID", &a->prodml23__OffshoreLocation::BlockID, "eml23:String64")) continue; } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__OffshoreLocation::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__OffshoreLocation::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap_flag_NorthSeaOffshore1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__NorthSeaOffshore(soap, "prodml22:NorthSeaOffshore", &a->prodml22__OffshoreLocation::NorthSeaOffshore, "prodml22:NorthSeaOffshore")) + { if (soap_in_PointerToprodml23__NorthSeaOffshore(soap, "prodml23:NorthSeaOffshore", &a->prodml23__OffshoreLocation::NorthSeaOffshore, "prodml23:NorthSeaOffshore")) { soap_flag_NorthSeaOffshore1--; continue; } @@ -233729,7 +233879,7 @@ SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_in_prodml22__OffshoreLoc } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__OffshoreLocation::BlockID.size() < 1)) + if ((a->prodml23__OffshoreLocation::BlockID.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -233739,35 +233889,35 @@ SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_in_prodml22__OffshoreLoc return NULL; } else - { a = (prodml22__OffshoreLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation, sizeof(prodml22__OffshoreLocation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__OffshoreLocation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation, sizeof(prodml23__OffshoreLocation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml22__OffshoreLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml23__OffshoreLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__OffshoreLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__OffshoreLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__OffshoreLocation *p; - size_t k = sizeof(prodml22__OffshoreLocation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation, n, gsoap_eml2_3_fdelete); + prodml23__OffshoreLocation *p; + size_t k = sizeof(prodml23__OffshoreLocation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__OffshoreLocation); + { p = SOAP_NEW(soap, prodml23__OffshoreLocation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__OffshoreLocation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__OffshoreLocation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__OffshoreLocation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__OffshoreLocation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -233777,83 +233927,83 @@ SOAP_FMAC1 prodml22__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml22__Of return p; } -int prodml22__OffshoreLocation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__OffshoreLocation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__OffshoreLocation(soap, tag ? tag : "prodml22:OffshoreLocation", -2, this, type)) + if (soap_out_prodml23__OffshoreLocation(soap, tag ? tag : "prodml23:OffshoreLocation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__OffshoreLocation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__OffshoreLocation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__OffshoreLocation(soap, this, tag, type); + return soap_get_prodml23__OffshoreLocation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_get_prodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OffshoreLocation * SOAP_FMAC4 soap_get_prodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__OffshoreLocation(soap, tag, p, type))) + if ((p = soap_in_prodml23__OffshoreLocation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NorthSeaOffshore::soap_default(struct soap *soap) +void prodml23__NorthSeaOffshore::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__NorthSeaOffshore::AreaName = NULL; - soap_default_eml23__String64(soap, &this->prodml22__NorthSeaOffshore::Quadrant); - this->prodml22__NorthSeaOffshore::BlockSuffix = NULL; + this->prodml23__NorthSeaOffshore::AreaName = NULL; + soap_default_eml23__String64(soap, &this->prodml23__NorthSeaOffshore::Quadrant); + this->prodml23__NorthSeaOffshore::BlockSuffix = NULL; } -void prodml22__NorthSeaOffshore::soap_serialize(struct soap *soap) const +void prodml23__NorthSeaOffshore::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__NorthSeaOffshore::AreaName); - soap_embedded(soap, &this->prodml22__NorthSeaOffshore::Quadrant, SOAP_TYPE_gsoap_eml2_3_eml23__String64); - soap_serialize_eml23__String64(soap, &this->prodml22__NorthSeaOffshore::Quadrant); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__NorthSeaOffshore::BlockSuffix); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__NorthSeaOffshore::AreaName); + soap_embedded(soap, &this->prodml23__NorthSeaOffshore::Quadrant, SOAP_TYPE_gsoap_eml2_3_eml23__String64); + soap_serialize_eml23__String64(soap, &this->prodml23__NorthSeaOffshore::Quadrant); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__NorthSeaOffshore::BlockSuffix); #endif } -int prodml22__NorthSeaOffshore::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NorthSeaOffshore::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NorthSeaOffshore(soap, tag, id, this, type); + return soap_out_prodml23__NorthSeaOffshore(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NorthSeaOffshore(struct soap *soap, const char *tag, int id, const prodml22__NorthSeaOffshore *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NorthSeaOffshore(struct soap *soap, const char *tag, int id, const prodml23__NorthSeaOffshore *a, const char *type) { if (!type) - type = "prodml22:NorthSeaOffshore"; + type = "prodml23:NorthSeaOffshore"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:AreaName", -1, &a->prodml22__NorthSeaOffshore::AreaName, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:AreaName", -1, &a->prodml23__NorthSeaOffshore::AreaName, "eml23:String64")) return soap->error; - if (soap_out_eml23__String64(soap, "prodml22:Quadrant", -1, &a->prodml22__NorthSeaOffshore::Quadrant, "eml23:String64")) + if (soap_out_eml23__String64(soap, "prodml23:Quadrant", -1, &a->prodml23__NorthSeaOffshore::Quadrant, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:BlockSuffix", -1, &a->prodml22__NorthSeaOffshore::BlockSuffix, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:BlockSuffix", -1, &a->prodml23__NorthSeaOffshore::BlockSuffix, "eml23:String64")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NorthSeaOffshore::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NorthSeaOffshore::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NorthSeaOffshore(soap, tag, this, type); + return soap_in_prodml23__NorthSeaOffshore(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NorthSeaOffshore * SOAP_FMAC4 soap_in_prodml22__NorthSeaOffshore(struct soap *soap, const char *tag, prodml22__NorthSeaOffshore *a, const char *type) +SOAP_FMAC3 prodml23__NorthSeaOffshore * SOAP_FMAC4 soap_in_prodml23__NorthSeaOffshore(struct soap *soap, const char *tag, prodml23__NorthSeaOffshore *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NorthSeaOffshore*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore, sizeof(prodml22__NorthSeaOffshore), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NorthSeaOffshore*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore, sizeof(prodml23__NorthSeaOffshore), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NorthSeaOffshore *)a->soap_in(soap, tag, type); + return (prodml23__NorthSeaOffshore *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -233865,19 +234015,19 @@ SOAP_FMAC3 prodml22__NorthSeaOffshore * SOAP_FMAC4 soap_in_prodml22__NorthSeaOff for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_AreaName1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:AreaName", &a->prodml22__NorthSeaOffshore::AreaName, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:AreaName", &a->prodml23__NorthSeaOffshore::AreaName, "eml23:String64")) { soap_flag_AreaName1--; continue; } } if (soap_flag_Quadrant1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_eml23__String64(soap, "prodml22:Quadrant", &a->prodml22__NorthSeaOffshore::Quadrant, "eml23:String64")) + { if (soap_in_eml23__String64(soap, "prodml23:Quadrant", &a->prodml23__NorthSeaOffshore::Quadrant, "eml23:String64")) { soap_flag_Quadrant1--; continue; } } if (soap_flag_BlockSuffix1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:BlockSuffix", &a->prodml22__NorthSeaOffshore::BlockSuffix, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:BlockSuffix", &a->prodml23__NorthSeaOffshore::BlockSuffix, "eml23:String64")) { soap_flag_BlockSuffix1--; continue; } @@ -233901,35 +234051,35 @@ SOAP_FMAC3 prodml22__NorthSeaOffshore * SOAP_FMAC4 soap_in_prodml22__NorthSeaOff return NULL; } else - { a = (prodml22__NorthSeaOffshore *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore, sizeof(prodml22__NorthSeaOffshore), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NorthSeaOffshore *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore, sizeof(prodml23__NorthSeaOffshore), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml22__NorthSeaOffshore(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml23__NorthSeaOffshore(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NorthSeaOffshore(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NorthSeaOffshore(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NorthSeaOffshore *p; - size_t k = sizeof(prodml22__NorthSeaOffshore); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore, n, gsoap_eml2_3_fdelete); + prodml23__NorthSeaOffshore *p; + size_t k = sizeof(prodml23__NorthSeaOffshore); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NorthSeaOffshore); + { p = SOAP_NEW(soap, prodml23__NorthSeaOffshore); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NorthSeaOffshore, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NorthSeaOffshore, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NorthSeaOffshore location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NorthSeaOffshore location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -233939,113 +234089,113 @@ SOAP_FMAC1 prodml22__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml22__No return p; } -int prodml22__NorthSeaOffshore::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NorthSeaOffshore::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NorthSeaOffshore(soap, tag ? tag : "prodml22:NorthSeaOffshore", -2, this, type)) + if (soap_out_prodml23__NorthSeaOffshore(soap, tag ? tag : "prodml23:NorthSeaOffshore", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NorthSeaOffshore::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NorthSeaOffshore::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NorthSeaOffshore(soap, this, tag, type); + return soap_get_prodml23__NorthSeaOffshore(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NorthSeaOffshore * SOAP_FMAC4 soap_get_prodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NorthSeaOffshore * SOAP_FMAC4 soap_get_prodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NorthSeaOffshore(soap, tag, p, type))) + if ((p = soap_in_prodml23__NorthSeaOffshore(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__NaturalGas::soap_default(struct soap *soap) +void prodml23__NaturalGas::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - this->prodml22__NaturalGas::GasGravity = NULL; - this->prodml22__NaturalGas::MolecularWeight = NULL; - this->prodml22__NaturalGas::GrossEnergyContentPerUnitMass = NULL; - this->prodml22__NaturalGas::NetEnergyContentPerUnitMass = NULL; - this->prodml22__NaturalGas::GrossEnergyContentPerUnitVolume = NULL; - this->prodml22__NaturalGas::NetEnergyContentPerUnitVolume = NULL; - this->prodml22__NaturalGas::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + this->prodml23__NaturalGas::GasGravity = NULL; + this->prodml23__NaturalGas::MolecularWeight = NULL; + this->prodml23__NaturalGas::GrossEnergyContentPerUnitMass = NULL; + this->prodml23__NaturalGas::NetEnergyContentPerUnitMass = NULL; + this->prodml23__NaturalGas::GrossEnergyContentPerUnitVolume = NULL; + this->prodml23__NaturalGas::NetEnergyContentPerUnitVolume = NULL; + this->prodml23__NaturalGas::Remark = NULL; } -void prodml22__NaturalGas::soap_serialize(struct soap *soap) const +void prodml23__NaturalGas::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerTodouble(soap, &this->prodml22__NaturalGas::GasGravity); - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__NaturalGas::MolecularWeight); - soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml22__NaturalGas::GrossEnergyContentPerUnitMass); - soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml22__NaturalGas::NetEnergyContentPerUnitMass); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml22__NaturalGas::GrossEnergyContentPerUnitVolume); - soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml22__NaturalGas::NetEnergyContentPerUnitVolume); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__NaturalGas::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_PointerTodouble(soap, &this->prodml23__NaturalGas::GasGravity); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__NaturalGas::MolecularWeight); + soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml23__NaturalGas::GrossEnergyContentPerUnitMass); + soap_serialize_PointerToeml23__EnergyPerMassMeasure(soap, &this->prodml23__NaturalGas::NetEnergyContentPerUnitMass); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml23__NaturalGas::GrossEnergyContentPerUnitVolume); + soap_serialize_PointerToeml23__EnergyPerVolumeMeasure(soap, &this->prodml23__NaturalGas::NetEnergyContentPerUnitVolume); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__NaturalGas::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__NaturalGas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__NaturalGas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__NaturalGas(soap, tag, id, this, type); + return soap_out_prodml23__NaturalGas(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NaturalGas(struct soap *soap, const char *tag, int id, const prodml22__NaturalGas *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NaturalGas(struct soap *soap, const char *tag, int id, const prodml23__NaturalGas *a, const char *type) { if (!type) - type = "prodml22:NaturalGas"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:NaturalGas"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__NaturalGas), type ? type : "prodml22:NaturalGas")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas), type ? type : "prodml23:NaturalGas")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:GasGravity", -1, &a->prodml22__NaturalGas::GasGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:GasGravity", -1, &a->prodml23__NaturalGas::GasGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__NaturalGas::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__NaturalGas::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:GrossEnergyContentPerUnitMass", -1, &a->prodml22__NaturalGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:GrossEnergyContentPerUnitMass", -1, &a->prodml23__NaturalGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:NetEnergyContentPerUnitMass", -1, &a->prodml22__NaturalGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + if (soap_out_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:NetEnergyContentPerUnitMass", -1, &a->prodml23__NaturalGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:GrossEnergyContentPerUnitVolume", -1, &a->prodml22__NaturalGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:GrossEnergyContentPerUnitVolume", -1, &a->prodml23__NaturalGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:NetEnergyContentPerUnitVolume", -1, &a->prodml22__NaturalGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + if (soap_out_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:NetEnergyContentPerUnitVolume", -1, &a->prodml23__NaturalGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__NaturalGas::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__NaturalGas::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__NaturalGas::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__NaturalGas::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__NaturalGas(soap, tag, this, type); + return soap_in_prodml23__NaturalGas(soap, tag, this, type); } -SOAP_FMAC3 prodml22__NaturalGas * SOAP_FMAC4 soap_in_prodml22__NaturalGas(struct soap *soap, const char *tag, prodml22__NaturalGas *a, const char *type) +SOAP_FMAC3 prodml23__NaturalGas * SOAP_FMAC4 soap_in_prodml23__NaturalGas(struct soap *soap, const char *tag, prodml23__NaturalGas *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__NaturalGas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, sizeof(prodml22__NaturalGas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__NaturalGas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, sizeof(prodml23__NaturalGas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__NaturalGas *)a->soap_in(soap, tag, type); + return (prodml23__NaturalGas *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -234063,67 +234213,67 @@ SOAP_FMAC3 prodml22__NaturalGas * SOAP_FMAC4 soap_in_prodml22__NaturalGas(struct for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_GasGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:GasGravity", &a->prodml22__NaturalGas::GasGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:GasGravity", &a->prodml23__NaturalGas::GasGravity, "xsd:double")) { soap_flag_GasGravity1--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__NaturalGas::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__NaturalGas::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } } if (soap_flag_GrossEnergyContentPerUnitMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:GrossEnergyContentPerUnitMass", &a->prodml22__NaturalGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:GrossEnergyContentPerUnitMass", &a->prodml23__NaturalGas::GrossEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) { soap_flag_GrossEnergyContentPerUnitMass1--; continue; } } if (soap_flag_NetEnergyContentPerUnitMass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml22:NetEnergyContentPerUnitMass", &a->prodml22__NaturalGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) + { if (soap_in_PointerToeml23__EnergyPerMassMeasure(soap, "prodml23:NetEnergyContentPerUnitMass", &a->prodml23__NaturalGas::NetEnergyContentPerUnitMass, "eml23:EnergyPerMassMeasure")) { soap_flag_NetEnergyContentPerUnitMass1--; continue; } } if (soap_flag_GrossEnergyContentPerUnitVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:GrossEnergyContentPerUnitVolume", &a->prodml22__NaturalGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:GrossEnergyContentPerUnitVolume", &a->prodml23__NaturalGas::GrossEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) { soap_flag_GrossEnergyContentPerUnitVolume1--; continue; } } if (soap_flag_NetEnergyContentPerUnitVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml22:NetEnergyContentPerUnitVolume", &a->prodml22__NaturalGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) + { if (soap_in_PointerToeml23__EnergyPerVolumeMeasure(soap, "prodml23:NetEnergyContentPerUnitVolume", &a->prodml23__NaturalGas::NetEnergyContentPerUnitVolume, "eml23:EnergyPerVolumeMeasure")) { soap_flag_NetEnergyContentPerUnitVolume1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__NaturalGas::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__NaturalGas::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -234139,35 +234289,35 @@ SOAP_FMAC3 prodml22__NaturalGas * SOAP_FMAC4 soap_in_prodml22__NaturalGas(struct return NULL; } else - { a = (prodml22__NaturalGas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, sizeof(prodml22__NaturalGas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__NaturalGas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, sizeof(prodml23__NaturalGas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml22__NaturalGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml23__NaturalGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__NaturalGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__NaturalGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__NaturalGas *p; - size_t k = sizeof(prodml22__NaturalGas); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, n, gsoap_eml2_3_fdelete); + prodml23__NaturalGas *p; + size_t k = sizeof(prodml23__NaturalGas); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__NaturalGas); + { p = SOAP_NEW(soap, prodml23__NaturalGas); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__NaturalGas, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__NaturalGas, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__NaturalGas location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__NaturalGas location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -234177,103 +234327,103 @@ SOAP_FMAC1 prodml22__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml22__NaturalG return p; } -int prodml22__NaturalGas::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__NaturalGas::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__NaturalGas(soap, tag ? tag : "prodml22:NaturalGas", -2, this, type)) + if (soap_out_prodml23__NaturalGas(soap, tag ? tag : "prodml23:NaturalGas", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__NaturalGas::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__NaturalGas::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__NaturalGas(soap, this, tag, type); + return soap_get_prodml23__NaturalGas(soap, this, tag, type); } -SOAP_FMAC3 prodml22__NaturalGas * SOAP_FMAC4 soap_get_prodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NaturalGas * SOAP_FMAC4 soap_get_prodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__NaturalGas(soap, tag, p, type))) + if ((p = soap_in_prodml23__NaturalGas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__MeasuredDepthCoord::soap_default(struct soap *soap) +void prodml23__MeasuredDepthCoord::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractMeasure(soap, &this->prodml22__MeasuredDepthCoord::__item); - soap_default_eml23__VerticalCoordinateUom(soap, &this->prodml22__MeasuredDepthCoord::uom); + soap_default_eml23__AbstractMeasure(soap, &this->prodml23__MeasuredDepthCoord::__item); + soap_default_eml23__VerticalCoordinateUom(soap, &this->prodml23__MeasuredDepthCoord::uom); } -void prodml22__MeasuredDepthCoord::soap_serialize(struct soap *soap) const +void prodml23__MeasuredDepthCoord::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__MeasuredDepthCoord::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__MeasuredDepthCoord::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__MeasuredDepthCoord(soap, tag, id, this, type); + return soap_out_prodml23__MeasuredDepthCoord(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MeasuredDepthCoord(struct soap *soap, const char *tag, int id, const prodml22__MeasuredDepthCoord *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MeasuredDepthCoord(struct soap *soap, const char *tag, int id, const prodml23__MeasuredDepthCoord *a, const char *type) { if (!type) - type = "prodml22:MeasuredDepthCoord"; - soap_set_attr(soap, "uom", soap_eml23__VerticalCoordinateUom2s(soap, ((prodml22__MeasuredDepthCoord*)a)->uom), 1); + type = "prodml23:MeasuredDepthCoord"; + soap_set_attr(soap, "uom", soap_eml23__VerticalCoordinateUom2s(soap, ((prodml23__MeasuredDepthCoord*)a)->uom), 1); (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml22__MeasuredDepthCoord::__item, "prodml22:MeasuredDepthCoord"); + return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml23__MeasuredDepthCoord::__item, "prodml23:MeasuredDepthCoord"); } -void *prodml22__MeasuredDepthCoord::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__MeasuredDepthCoord::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__MeasuredDepthCoord(soap, tag, this, type); + return soap_in_prodml23__MeasuredDepthCoord(soap, tag, this, type); } -SOAP_FMAC3 prodml22__MeasuredDepthCoord * SOAP_FMAC4 soap_in_prodml22__MeasuredDepthCoord(struct soap *soap, const char *tag, prodml22__MeasuredDepthCoord *a, const char *type) +SOAP_FMAC3 prodml23__MeasuredDepthCoord * SOAP_FMAC4 soap_in_prodml23__MeasuredDepthCoord(struct soap *soap, const char *tag, prodml23__MeasuredDepthCoord *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__MeasuredDepthCoord*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord, sizeof(prodml22__MeasuredDepthCoord), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__MeasuredDepthCoord*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord, sizeof(prodml23__MeasuredDepthCoord), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord) - return (prodml22__MeasuredDepthCoord *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord) + return (prodml23__MeasuredDepthCoord *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__VerticalCoordinateUom(soap, soap_attr_value(soap, "uom", 5, 3), &((prodml22__MeasuredDepthCoord*)a)->uom)) + if (soap_s2eml23__VerticalCoordinateUom(soap, soap_attr_value(soap, "uom", 5, 3), &((prodml23__MeasuredDepthCoord*)a)->uom)) return NULL; - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml22__MeasuredDepthCoord::__item, "prodml22:MeasuredDepthCoord")) + if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml23__MeasuredDepthCoord::__item, "prodml23:MeasuredDepthCoord")) return NULL; return a; } -SOAP_FMAC1 prodml22__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredDepthCoord(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredDepthCoord(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__MeasuredDepthCoord(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__MeasuredDepthCoord(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__MeasuredDepthCoord *p; - size_t k = sizeof(prodml22__MeasuredDepthCoord); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord, n, gsoap_eml2_3_fdelete); + prodml23__MeasuredDepthCoord *p; + size_t k = sizeof(prodml23__MeasuredDepthCoord); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__MeasuredDepthCoord); + { p = SOAP_NEW(soap, prodml23__MeasuredDepthCoord); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__MeasuredDepthCoord, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__MeasuredDepthCoord, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__MeasuredDepthCoord location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__MeasuredDepthCoord location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -234283,78 +234433,78 @@ SOAP_FMAC1 prodml22__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__MeasuredDepthCoord::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__MeasuredDepthCoord::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__MeasuredDepthCoord(soap, tag ? tag : "prodml22:MeasuredDepthCoord", -2, this, type)) + if (soap_out_prodml23__MeasuredDepthCoord(soap, tag ? tag : "prodml23:MeasuredDepthCoord", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__MeasuredDepthCoord::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__MeasuredDepthCoord::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__MeasuredDepthCoord(soap, this, tag, type); + return soap_get_prodml23__MeasuredDepthCoord(soap, this, tag, type); } -SOAP_FMAC3 prodml22__MeasuredDepthCoord * SOAP_FMAC4 soap_get_prodml22__MeasuredDepthCoord(struct soap *soap, prodml22__MeasuredDepthCoord *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MeasuredDepthCoord * SOAP_FMAC4 soap_get_prodml23__MeasuredDepthCoord(struct soap *soap, prodml23__MeasuredDepthCoord *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__MeasuredDepthCoord(soap, tag, p, type))) + if ((p = soap_in_prodml23__MeasuredDepthCoord(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LiquidComposition::soap_default(struct soap *soap) +void prodml23__LiquidComposition::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__LiquidComposition::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__LiquidComposition::LiquidComponentFraction); + this->prodml23__LiquidComposition::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__LiquidComposition::LiquidComponentFraction); } -void prodml22__LiquidComposition::soap_serialize(struct soap *soap) const +void prodml23__LiquidComposition::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__LiquidComposition::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, &this->prodml22__LiquidComposition::LiquidComponentFraction); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__LiquidComposition::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, &this->prodml23__LiquidComposition::LiquidComponentFraction); #endif } -int prodml22__LiquidComposition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LiquidComposition::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LiquidComposition(soap, tag, id, this, type); + return soap_out_prodml23__LiquidComposition(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LiquidComposition(struct soap *soap, const char *tag, int id, const prodml22__LiquidComposition *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LiquidComposition(struct soap *soap, const char *tag, int id, const prodml23__LiquidComposition *a, const char *type) { if (!type) - type = "prodml22:LiquidComposition"; + type = "prodml23:LiquidComposition"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__LiquidComposition::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__LiquidComposition::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:LiquidComponentFraction", -1, &a->prodml22__LiquidComposition::LiquidComponentFraction, "prodml22:FluidComponentFraction")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:LiquidComponentFraction", -1, &a->prodml23__LiquidComposition::LiquidComponentFraction, "prodml23:FluidComponentFraction")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LiquidComposition::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LiquidComposition::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LiquidComposition(soap, tag, this, type); + return soap_in_prodml23__LiquidComposition(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LiquidComposition * SOAP_FMAC4 soap_in_prodml22__LiquidComposition(struct soap *soap, const char *tag, prodml22__LiquidComposition *a, const char *type) +SOAP_FMAC3 prodml23__LiquidComposition * SOAP_FMAC4 soap_in_prodml23__LiquidComposition(struct soap *soap, const char *tag, prodml23__LiquidComposition *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LiquidComposition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, sizeof(prodml22__LiquidComposition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LiquidComposition*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, sizeof(prodml23__LiquidComposition), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LiquidComposition *)a->soap_in(soap, tag, type); + return (prodml23__LiquidComposition *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -234364,13 +234514,13 @@ SOAP_FMAC3 prodml22__LiquidComposition * SOAP_FMAC4 soap_in_prodml22__LiquidComp for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__LiquidComposition::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__LiquidComposition::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, "prodml22:LiquidComponentFraction", &a->prodml22__LiquidComposition::LiquidComponentFraction, "prodml22:FluidComponentFraction")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, "prodml23:LiquidComponentFraction", &a->prodml23__LiquidComposition::LiquidComponentFraction, "prodml23:FluidComponentFraction")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -234384,35 +234534,35 @@ SOAP_FMAC3 prodml22__LiquidComposition * SOAP_FMAC4 soap_in_prodml22__LiquidComp return NULL; } else - { a = (prodml22__LiquidComposition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, sizeof(prodml22__LiquidComposition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LiquidComposition *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, sizeof(prodml23__LiquidComposition), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml22__LiquidComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml23__LiquidComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LiquidComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LiquidComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LiquidComposition *p; - size_t k = sizeof(prodml22__LiquidComposition); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, n, gsoap_eml2_3_fdelete); + prodml23__LiquidComposition *p; + size_t k = sizeof(prodml23__LiquidComposition); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LiquidComposition); + { p = SOAP_NEW(soap, prodml23__LiquidComposition); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LiquidComposition, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LiquidComposition, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LiquidComposition location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LiquidComposition location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -234422,76 +234572,76 @@ SOAP_FMAC1 prodml22__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml22__L return p; } -int prodml22__LiquidComposition::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LiquidComposition::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LiquidComposition(soap, tag ? tag : "prodml22:LiquidComposition", -2, this, type)) + if (soap_out_prodml23__LiquidComposition(soap, tag ? tag : "prodml23:LiquidComposition", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LiquidComposition::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LiquidComposition::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LiquidComposition(soap, this, tag, type); + return soap_get_prodml23__LiquidComposition(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LiquidComposition * SOAP_FMAC4 soap_get_prodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LiquidComposition * SOAP_FMAC4 soap_get_prodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LiquidComposition(soap, tag, p, type))) + if ((p = soap_in_prodml23__LiquidComposition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__KindQualifiedString::soap_default(struct soap *soap) +void prodml23__KindQualifiedString::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractMeasureData::soap_default(soap); - this->prodml22__KindQualifiedString::status = NULL; + this->prodml23__AbstractMeasureData::soap_default(soap); + this->prodml23__KindQualifiedString::status = NULL; } -void prodml22__KindQualifiedString::soap_serialize(struct soap *soap) const +void prodml23__KindQualifiedString::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractMeasureData::soap_serialize(soap); + this->prodml23__AbstractMeasureData::soap_serialize(soap); #endif } -int prodml22__KindQualifiedString::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__KindQualifiedString::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__KindQualifiedString(soap, tag, id, this, type); + return soap_out_prodml23__KindQualifiedString(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__KindQualifiedString(struct soap *soap, const char *tag, int id, const prodml22__KindQualifiedString *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__KindQualifiedString(struct soap *soap, const char *tag, int id, const prodml23__KindQualifiedString *a, const char *type) { if (!type) - type = "prodml22:KindQualifiedString"; - if (((prodml22__KindQualifiedString*)a)->status) - { soap_set_attr(soap, "status", soap_prodml22__ValueStatus2s(soap, *((prodml22__KindQualifiedString*)a)->status), 1); + type = "prodml23:KindQualifiedString"; + if (((prodml23__KindQualifiedString*)a)->status) + { soap_set_attr(soap, "status", soap_prodml23__ValueStatus2s(soap, *((prodml23__KindQualifiedString*)a)->status), 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_gsoap_eml2_3_prodml22__KindQualifiedString), type ? type : "prodml22:KindQualifiedString")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString), type ? type : "prodml23:KindQualifiedString")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__KindQualifiedString::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__KindQualifiedString::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__KindQualifiedString(soap, tag, this, type); + return soap_in_prodml23__KindQualifiedString(soap, tag, this, type); } -SOAP_FMAC3 prodml22__KindQualifiedString * SOAP_FMAC4 soap_in_prodml22__KindQualifiedString(struct soap *soap, const char *tag, prodml22__KindQualifiedString *a, const char *type) +SOAP_FMAC3 prodml23__KindQualifiedString * SOAP_FMAC4 soap_in_prodml23__KindQualifiedString(struct soap *soap, const char *tag, prodml23__KindQualifiedString *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__KindQualifiedString*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString, sizeof(prodml22__KindQualifiedString), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__KindQualifiedString*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString, sizeof(prodml23__KindQualifiedString), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__KindQualifiedString *)a->soap_in(soap, tag, type); + return (prodml23__KindQualifiedString *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -234499,9 +234649,9 @@ SOAP_FMAC3 prodml22__KindQualifiedString * SOAP_FMAC4 soap_in_prodml22__KindQual const char *t = soap_attr_value(soap, "status", 5, 0); if (t) { - if (!(((prodml22__KindQualifiedString*)a)->status = (prodml22__ValueStatus *)soap_malloc(soap, sizeof(prodml22__ValueStatus)))) + if (!(((prodml23__KindQualifiedString*)a)->status = (prodml23__ValueStatus *)soap_malloc(soap, sizeof(prodml23__ValueStatus)))) return NULL; - if (soap_s2prodml22__ValueStatus(soap, t, ((prodml22__KindQualifiedString*)a)->status)) + if (soap_s2prodml23__ValueStatus(soap, t, ((prodml23__KindQualifiedString*)a)->status)) return NULL; } else if (soap->error) @@ -234522,35 +234672,35 @@ SOAP_FMAC3 prodml22__KindQualifiedString * SOAP_FMAC4 soap_in_prodml22__KindQual return NULL; } else - { a = (prodml22__KindQualifiedString *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString, sizeof(prodml22__KindQualifiedString), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__KindQualifiedString *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString, sizeof(prodml23__KindQualifiedString), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml22__KindQualifiedString(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml23__KindQualifiedString(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__KindQualifiedString(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__KindQualifiedString(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__KindQualifiedString *p; - size_t k = sizeof(prodml22__KindQualifiedString); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString, n, gsoap_eml2_3_fdelete); + prodml23__KindQualifiedString *p; + size_t k = sizeof(prodml23__KindQualifiedString); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__KindQualifiedString); + { p = SOAP_NEW(soap, prodml23__KindQualifiedString); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__KindQualifiedString, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__KindQualifiedString, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__KindQualifiedString location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__KindQualifiedString location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -234560,76 +234710,76 @@ SOAP_FMAC1 prodml22__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml22_ return p; } -int prodml22__KindQualifiedString::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__KindQualifiedString::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__KindQualifiedString(soap, tag ? tag : "prodml22:KindQualifiedString", -2, this, type)) + if (soap_out_prodml23__KindQualifiedString(soap, tag ? tag : "prodml23:KindQualifiedString", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__KindQualifiedString::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__KindQualifiedString::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__KindQualifiedString(soap, this, tag, type); + return soap_get_prodml23__KindQualifiedString(soap, this, tag, type); } -SOAP_FMAC3 prodml22__KindQualifiedString * SOAP_FMAC4 soap_get_prodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__KindQualifiedString * SOAP_FMAC4 soap_get_prodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__KindQualifiedString(soap, tag, p, type))) + if ((p = soap_in_prodml23__KindQualifiedString(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__IntegerQualifiedCount::soap_default(struct soap *soap) +void prodml23__IntegerQualifiedCount::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractMeasureData::soap_default(soap); - this->prodml22__IntegerQualifiedCount::status = NULL; + this->prodml23__AbstractMeasureData::soap_default(soap); + this->prodml23__IntegerQualifiedCount::status = NULL; } -void prodml22__IntegerQualifiedCount::soap_serialize(struct soap *soap) const +void prodml23__IntegerQualifiedCount::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractMeasureData::soap_serialize(soap); + this->prodml23__AbstractMeasureData::soap_serialize(soap); #endif } -int prodml22__IntegerQualifiedCount::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__IntegerQualifiedCount::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__IntegerQualifiedCount(soap, tag, id, this, type); + return soap_out_prodml23__IntegerQualifiedCount(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__IntegerQualifiedCount(struct soap *soap, const char *tag, int id, const prodml22__IntegerQualifiedCount *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__IntegerQualifiedCount(struct soap *soap, const char *tag, int id, const prodml23__IntegerQualifiedCount *a, const char *type) { if (!type) - type = "prodml22:IntegerQualifiedCount"; - if (((prodml22__IntegerQualifiedCount*)a)->status) - { soap_set_attr(soap, "status", soap_prodml22__ValueStatus2s(soap, *((prodml22__IntegerQualifiedCount*)a)->status), 1); + type = "prodml23:IntegerQualifiedCount"; + if (((prodml23__IntegerQualifiedCount*)a)->status) + { soap_set_attr(soap, "status", soap_prodml23__ValueStatus2s(soap, *((prodml23__IntegerQualifiedCount*)a)->status), 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_gsoap_eml2_3_prodml22__IntegerQualifiedCount), type ? type : "prodml22:IntegerQualifiedCount")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount), type ? type : "prodml23:IntegerQualifiedCount")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__IntegerQualifiedCount::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__IntegerQualifiedCount::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__IntegerQualifiedCount(soap, tag, this, type); + return soap_in_prodml23__IntegerQualifiedCount(soap, tag, this, type); } -SOAP_FMAC3 prodml22__IntegerQualifiedCount * SOAP_FMAC4 soap_in_prodml22__IntegerQualifiedCount(struct soap *soap, const char *tag, prodml22__IntegerQualifiedCount *a, const char *type) +SOAP_FMAC3 prodml23__IntegerQualifiedCount * SOAP_FMAC4 soap_in_prodml23__IntegerQualifiedCount(struct soap *soap, const char *tag, prodml23__IntegerQualifiedCount *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__IntegerQualifiedCount*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount, sizeof(prodml22__IntegerQualifiedCount), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__IntegerQualifiedCount*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount, sizeof(prodml23__IntegerQualifiedCount), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__IntegerQualifiedCount *)a->soap_in(soap, tag, type); + return (prodml23__IntegerQualifiedCount *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -234637,9 +234787,9 @@ SOAP_FMAC3 prodml22__IntegerQualifiedCount * SOAP_FMAC4 soap_in_prodml22__Intege const char *t = soap_attr_value(soap, "status", 5, 0); if (t) { - if (!(((prodml22__IntegerQualifiedCount*)a)->status = (prodml22__ValueStatus *)soap_malloc(soap, sizeof(prodml22__ValueStatus)))) + if (!(((prodml23__IntegerQualifiedCount*)a)->status = (prodml23__ValueStatus *)soap_malloc(soap, sizeof(prodml23__ValueStatus)))) return NULL; - if (soap_s2prodml22__ValueStatus(soap, t, ((prodml22__IntegerQualifiedCount*)a)->status)) + if (soap_s2prodml23__ValueStatus(soap, t, ((prodml23__IntegerQualifiedCount*)a)->status)) return NULL; } else if (soap->error) @@ -234660,35 +234810,35 @@ SOAP_FMAC3 prodml22__IntegerQualifiedCount * SOAP_FMAC4 soap_in_prodml22__Intege return NULL; } else - { a = (prodml22__IntegerQualifiedCount *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount, sizeof(prodml22__IntegerQualifiedCount), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__IntegerQualifiedCount *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount, sizeof(prodml23__IntegerQualifiedCount), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml22__IntegerQualifiedCount(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml23__IntegerQualifiedCount(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__IntegerQualifiedCount(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__IntegerQualifiedCount(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__IntegerQualifiedCount *p; - size_t k = sizeof(prodml22__IntegerQualifiedCount); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount, n, gsoap_eml2_3_fdelete); + prodml23__IntegerQualifiedCount *p; + size_t k = sizeof(prodml23__IntegerQualifiedCount); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__IntegerQualifiedCount); + { p = SOAP_NEW(soap, prodml23__IntegerQualifiedCount); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__IntegerQualifiedCount, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__IntegerQualifiedCount, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__IntegerQualifiedCount location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__IntegerQualifiedCount location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -234698,94 +234848,94 @@ SOAP_FMAC1 prodml22__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__IntegerQualifiedCount::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__IntegerQualifiedCount::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__IntegerQualifiedCount(soap, tag ? tag : "prodml22:IntegerQualifiedCount", -2, this, type)) + if (soap_out_prodml23__IntegerQualifiedCount(soap, tag ? tag : "prodml23:IntegerQualifiedCount", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__IntegerQualifiedCount::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__IntegerQualifiedCount::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__IntegerQualifiedCount(soap, this, tag, type); + return soap_get_prodml23__IntegerQualifiedCount(soap, this, tag, type); } -SOAP_FMAC3 prodml22__IntegerQualifiedCount * SOAP_FMAC4 soap_get_prodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__IntegerQualifiedCount * SOAP_FMAC4 soap_get_prodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__IntegerQualifiedCount(soap, tag, p, type))) + if ((p = soap_in_prodml23__IntegerQualifiedCount(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__GeographicContext::soap_default(struct soap *soap) +void prodml23__GeographicContext::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__GeographicContext::Country = NULL; - this->prodml22__GeographicContext::State = NULL; - this->prodml22__GeographicContext::County = NULL; - this->prodml22__GeographicContext::Field = NULL; - this->prodml22__GeographicContext::Comment = NULL; - this->prodml22__GeographicContext::OffshoreLocation = NULL; + this->prodml23__GeographicContext::Country = NULL; + this->prodml23__GeographicContext::State = NULL; + this->prodml23__GeographicContext::County = NULL; + this->prodml23__GeographicContext::Field = NULL; + this->prodml23__GeographicContext::Comment = NULL; + this->prodml23__GeographicContext::OffshoreLocation = NULL; } -void prodml22__GeographicContext::soap_serialize(struct soap *soap) const +void prodml23__GeographicContext::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__GeographicContext::Country); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__GeographicContext::State); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__GeographicContext::County); - soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml22__GeographicContext::Field); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__GeographicContext::Comment); - soap_serialize_PointerToprodml22__OffshoreLocation(soap, &this->prodml22__GeographicContext::OffshoreLocation); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__GeographicContext::Country); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__GeographicContext::State); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__GeographicContext::County); + soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml23__GeographicContext::Field); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__GeographicContext::Comment); + soap_serialize_PointerToprodml23__OffshoreLocation(soap, &this->prodml23__GeographicContext::OffshoreLocation); #endif } -int prodml22__GeographicContext::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__GeographicContext::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__GeographicContext(soap, tag, id, this, type); + return soap_out_prodml23__GeographicContext(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__GeographicContext(struct soap *soap, const char *tag, int id, const prodml22__GeographicContext *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__GeographicContext(struct soap *soap, const char *tag, int id, const prodml23__GeographicContext *a, const char *type) { if (!type) - type = "prodml22:GeographicContext"; + type = "prodml23:GeographicContext"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Country", -1, &a->prodml22__GeographicContext::Country, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Country", -1, &a->prodml23__GeographicContext::Country, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:State", -1, &a->prodml22__GeographicContext::State, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:State", -1, &a->prodml23__GeographicContext::State, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:County", -1, &a->prodml22__GeographicContext::County, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:County", -1, &a->prodml23__GeographicContext::County, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__NameStruct(soap, "prodml22:Field", -1, &a->prodml22__GeographicContext::Field, "eml23:NameStruct")) + if (soap_out_PointerToeml23__NameStruct(soap, "prodml23:Field", -1, &a->prodml23__GeographicContext::Field, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Comment", -1, &a->prodml22__GeographicContext::Comment, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Comment", -1, &a->prodml23__GeographicContext::Comment, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__OffshoreLocation(soap, "prodml22:OffshoreLocation", -1, &a->prodml22__GeographicContext::OffshoreLocation, "prodml22:OffshoreLocation")) + if (soap_out_PointerToprodml23__OffshoreLocation(soap, "prodml23:OffshoreLocation", -1, &a->prodml23__GeographicContext::OffshoreLocation, "prodml23:OffshoreLocation")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__GeographicContext::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__GeographicContext::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__GeographicContext(soap, tag, this, type); + return soap_in_prodml23__GeographicContext(soap, tag, this, type); } -SOAP_FMAC3 prodml22__GeographicContext * SOAP_FMAC4 soap_in_prodml22__GeographicContext(struct soap *soap, const char *tag, prodml22__GeographicContext *a, const char *type) +SOAP_FMAC3 prodml23__GeographicContext * SOAP_FMAC4 soap_in_prodml23__GeographicContext(struct soap *soap, const char *tag, prodml23__GeographicContext *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__GeographicContext*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext, sizeof(prodml22__GeographicContext), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__GeographicContext*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext, sizeof(prodml23__GeographicContext), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__GeographicContext *)a->soap_in(soap, tag, type); + return (prodml23__GeographicContext *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -234800,37 +234950,37 @@ SOAP_FMAC3 prodml22__GeographicContext * SOAP_FMAC4 soap_in_prodml22__Geographic for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Country1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Country", &a->prodml22__GeographicContext::Country, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Country", &a->prodml23__GeographicContext::Country, "eml23:String64")) { soap_flag_Country1--; continue; } } if (soap_flag_State1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:State", &a->prodml22__GeographicContext::State, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:State", &a->prodml23__GeographicContext::State, "eml23:String64")) { soap_flag_State1--; continue; } } if (soap_flag_County1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:County", &a->prodml22__GeographicContext::County, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:County", &a->prodml23__GeographicContext::County, "eml23:String64")) { soap_flag_County1--; continue; } } if (soap_flag_Field1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NameStruct(soap, "prodml22:Field", &a->prodml22__GeographicContext::Field, "eml23:NameStruct")) + { if (soap_in_PointerToeml23__NameStruct(soap, "prodml23:Field", &a->prodml23__GeographicContext::Field, "eml23:NameStruct")) { soap_flag_Field1--; continue; } } if (soap_flag_Comment1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Comment", &a->prodml22__GeographicContext::Comment, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Comment", &a->prodml23__GeographicContext::Comment, "eml23:String2000")) { soap_flag_Comment1--; continue; } } if (soap_flag_OffshoreLocation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__OffshoreLocation(soap, "prodml22:OffshoreLocation", &a->prodml22__GeographicContext::OffshoreLocation, "prodml22:OffshoreLocation")) + { if (soap_in_PointerToprodml23__OffshoreLocation(soap, "prodml23:OffshoreLocation", &a->prodml23__GeographicContext::OffshoreLocation, "prodml23:OffshoreLocation")) { soap_flag_OffshoreLocation1--; continue; } @@ -234846,35 +234996,35 @@ SOAP_FMAC3 prodml22__GeographicContext * SOAP_FMAC4 soap_in_prodml22__Geographic return NULL; } else - { a = (prodml22__GeographicContext *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext, sizeof(prodml22__GeographicContext), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__GeographicContext *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext, sizeof(prodml23__GeographicContext), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml22__GeographicContext(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml23__GeographicContext(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__GeographicContext(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__GeographicContext(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__GeographicContext *p; - size_t k = sizeof(prodml22__GeographicContext); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext, n, gsoap_eml2_3_fdelete); + prodml23__GeographicContext *p; + size_t k = sizeof(prodml23__GeographicContext); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__GeographicContext); + { p = SOAP_NEW(soap, prodml23__GeographicContext); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__GeographicContext, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__GeographicContext, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__GeographicContext location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__GeographicContext location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -234884,82 +235034,82 @@ SOAP_FMAC1 prodml22__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml22__G return p; } -int prodml22__GeographicContext::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__GeographicContext::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__GeographicContext(soap, tag ? tag : "prodml22:GeographicContext", -2, this, type)) + if (soap_out_prodml23__GeographicContext(soap, tag ? tag : "prodml23:GeographicContext", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__GeographicContext::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__GeographicContext::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__GeographicContext(soap, this, tag, type); + return soap_get_prodml23__GeographicContext(soap, this, tag, type); } -SOAP_FMAC3 prodml22__GeographicContext * SOAP_FMAC4 soap_get_prodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__GeographicContext * SOAP_FMAC4 soap_get_prodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__GeographicContext(soap, tag, p, type))) + if ((p = soap_in_prodml23__GeographicContext(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__GeneralQualifiedMeasure::soap_default(struct soap *soap) +void prodml23__GeneralQualifiedMeasure::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractMeasureData::soap_default(soap); - this->prodml22__GeneralQualifiedMeasure::status = NULL; - this->prodml22__GeneralQualifiedMeasure::componentReference = NULL; - soap_default_eml23__UomEnum(soap, &this->prodml22__GeneralQualifiedMeasure::uom); + this->prodml23__AbstractMeasureData::soap_default(soap); + this->prodml23__GeneralQualifiedMeasure::status = NULL; + this->prodml23__GeneralQualifiedMeasure::componentReference = NULL; + soap_default_eml23__UomEnum(soap, &this->prodml23__GeneralQualifiedMeasure::uom); } -void prodml22__GeneralQualifiedMeasure::soap_serialize(struct soap *soap) const +void prodml23__GeneralQualifiedMeasure::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractMeasureData::soap_serialize(soap); + this->prodml23__AbstractMeasureData::soap_serialize(soap); #endif } -int prodml22__GeneralQualifiedMeasure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__GeneralQualifiedMeasure::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__GeneralQualifiedMeasure(soap, tag, id, this, type); + return soap_out_prodml23__GeneralQualifiedMeasure(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__GeneralQualifiedMeasure(struct soap *soap, const char *tag, int id, const prodml22__GeneralQualifiedMeasure *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__GeneralQualifiedMeasure(struct soap *soap, const char *tag, int id, const prodml23__GeneralQualifiedMeasure *a, const char *type) { if (!type) - type = "prodml22:GeneralQualifiedMeasure"; - if (((prodml22__GeneralQualifiedMeasure*)a)->status) - { soap_set_attr(soap, "status", soap_prodml22__ValueStatus2s(soap, *((prodml22__GeneralQualifiedMeasure*)a)->status), 1); + type = "prodml23:GeneralQualifiedMeasure"; + if (((prodml23__GeneralQualifiedMeasure*)a)->status) + { soap_set_attr(soap, "status", soap_prodml23__ValueStatus2s(soap, *((prodml23__GeneralQualifiedMeasure*)a)->status), 1); } - if (((prodml22__GeneralQualifiedMeasure*)a)->componentReference) - { soap_set_attr(soap, "componentReference", soap_eml23__String642s(soap, *((prodml22__GeneralQualifiedMeasure*)a)->componentReference), 1); + if (((prodml23__GeneralQualifiedMeasure*)a)->componentReference) + { soap_set_attr(soap, "componentReference", soap_eml23__String642s(soap, *((prodml23__GeneralQualifiedMeasure*)a)->componentReference), 1); } - soap_set_attr(soap, "uom", soap_eml23__UomEnum2s(soap, ((prodml22__GeneralQualifiedMeasure*)a)->uom), 1); + soap_set_attr(soap, "uom", soap_eml23__UomEnum2s(soap, ((prodml23__GeneralQualifiedMeasure*)a)->uom), 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_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure), type ? type : "prodml22:GeneralQualifiedMeasure")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure), type ? type : "prodml23:GeneralQualifiedMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__GeneralQualifiedMeasure::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__GeneralQualifiedMeasure::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__GeneralQualifiedMeasure(soap, tag, this, type); + return soap_in_prodml23__GeneralQualifiedMeasure(soap, tag, this, type); } -SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml22__GeneralQualifiedMeasure(struct soap *soap, const char *tag, prodml22__GeneralQualifiedMeasure *a, const char *type) +SOAP_FMAC3 prodml23__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml23__GeneralQualifiedMeasure(struct soap *soap, const char *tag, prodml23__GeneralQualifiedMeasure *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__GeneralQualifiedMeasure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure, sizeof(prodml22__GeneralQualifiedMeasure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__GeneralQualifiedMeasure*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure, sizeof(prodml23__GeneralQualifiedMeasure), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__GeneralQualifiedMeasure *)a->soap_in(soap, tag, type); + return (prodml23__GeneralQualifiedMeasure *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -234967,9 +235117,9 @@ SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml22__Gene const char *t = soap_attr_value(soap, "status", 5, 0); if (t) { - if (!(((prodml22__GeneralQualifiedMeasure*)a)->status = (prodml22__ValueStatus *)soap_malloc(soap, sizeof(prodml22__ValueStatus)))) + if (!(((prodml23__GeneralQualifiedMeasure*)a)->status = (prodml23__ValueStatus *)soap_malloc(soap, sizeof(prodml23__ValueStatus)))) return NULL; - if (soap_s2prodml22__ValueStatus(soap, t, ((prodml22__GeneralQualifiedMeasure*)a)->status)) + if (soap_s2prodml23__ValueStatus(soap, t, ((prodml23__GeneralQualifiedMeasure*)a)->status)) return NULL; } else if (soap->error) @@ -234979,15 +235129,15 @@ SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml22__Gene const char *t = soap_attr_value(soap, "componentReference", 1, 0); if (t) { - if (!(((prodml22__GeneralQualifiedMeasure*)a)->componentReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__GeneralQualifiedMeasure*)a)->componentReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__GeneralQualifiedMeasure*)a)->componentReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__GeneralQualifiedMeasure*)a)->componentReference)) return NULL; } else if (soap->error) return NULL; } - if (soap_s2eml23__UomEnum(soap, soap_attr_value(soap, "uom", 1, 3), &((prodml22__GeneralQualifiedMeasure*)a)->uom)) + if (soap_s2eml23__UomEnum(soap, soap_attr_value(soap, "uom", 1, 3), &((prodml23__GeneralQualifiedMeasure*)a)->uom)) return NULL; if (soap->body && *soap->href != '#') { @@ -235004,35 +235154,35 @@ SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml22__Gene return NULL; } else - { a = (prodml22__GeneralQualifiedMeasure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure, sizeof(prodml22__GeneralQualifiedMeasure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__GeneralQualifiedMeasure *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure, sizeof(prodml23__GeneralQualifiedMeasure), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodml22__GeneralQualifiedMeasure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodml23__GeneralQualifiedMeasure(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__GeneralQualifiedMeasure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__GeneralQualifiedMeasure(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__GeneralQualifiedMeasure *p; - size_t k = sizeof(prodml22__GeneralQualifiedMeasure); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure, n, gsoap_eml2_3_fdelete); + prodml23__GeneralQualifiedMeasure *p; + size_t k = sizeof(prodml23__GeneralQualifiedMeasure); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__GeneralQualifiedMeasure); + { p = SOAP_NEW(soap, prodml23__GeneralQualifiedMeasure); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__GeneralQualifiedMeasure, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__GeneralQualifiedMeasure, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__GeneralQualifiedMeasure location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__GeneralQualifiedMeasure location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -235042,74 +235192,74 @@ SOAP_FMAC1 prodml22__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__GeneralQualifiedMeasure::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__GeneralQualifiedMeasure::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__GeneralQualifiedMeasure(soap, tag ? tag : "prodml22:GeneralQualifiedMeasure", -2, this, type)) + if (soap_out_prodml23__GeneralQualifiedMeasure(soap, tag ? tag : "prodml23:GeneralQualifiedMeasure", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__GeneralQualifiedMeasure::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__GeneralQualifiedMeasure::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__GeneralQualifiedMeasure(soap, this, tag, type); + return soap_get_prodml23__GeneralQualifiedMeasure(soap, this, tag, type); } -SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_get_prodml22__GeneralQualifiedMeasure(struct soap *soap, prodml22__GeneralQualifiedMeasure *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__GeneralQualifiedMeasure * SOAP_FMAC4 soap_get_prodml23__GeneralQualifiedMeasure(struct soap *soap, prodml23__GeneralQualifiedMeasure *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__GeneralQualifiedMeasure(soap, tag, p, type))) + if ((p = soap_in_prodml23__GeneralQualifiedMeasure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__GeneralMeasureType::soap_default(struct soap *soap) +void prodml23__GeneralMeasureType::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__GeneralMeasureType::uom = NULL; + this->prodml23__GeneralMeasureType::uom = NULL; } -void prodml22__GeneralMeasureType::soap_serialize(struct soap *soap) const +void prodml23__GeneralMeasureType::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__GeneralMeasureType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__GeneralMeasureType::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__GeneralMeasureType(soap, tag, id, this, type); + return soap_out_prodml23__GeneralMeasureType(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__GeneralMeasureType(struct soap *soap, const char *tag, int id, const prodml22__GeneralMeasureType *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__GeneralMeasureType(struct soap *soap, const char *tag, int id, const prodml23__GeneralMeasureType *a, const char *type) { if (!type) - type = "prodml22:GeneralMeasureType"; - if (((prodml22__GeneralMeasureType*)a)->uom) - { soap_set_attr(soap, "uom", soap_eml23__UomEnum2s(soap, *((prodml22__GeneralMeasureType*)a)->uom), 1); + type = "prodml23:GeneralMeasureType"; + if (((prodml23__GeneralMeasureType*)a)->uom) + { soap_set_attr(soap, "uom", soap_eml23__UomEnum2s(soap, *((prodml23__GeneralMeasureType*)a)->uom), 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_gsoap_eml2_3_prodml22__GeneralMeasureType), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__GeneralMeasureType::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__GeneralMeasureType::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__GeneralMeasureType(soap, tag, this, type); + return soap_in_prodml23__GeneralMeasureType(soap, tag, this, type); } -SOAP_FMAC3 prodml22__GeneralMeasureType * SOAP_FMAC4 soap_in_prodml22__GeneralMeasureType(struct soap *soap, const char *tag, prodml22__GeneralMeasureType *a, const char *type) +SOAP_FMAC3 prodml23__GeneralMeasureType * SOAP_FMAC4 soap_in_prodml23__GeneralMeasureType(struct soap *soap, const char *tag, prodml23__GeneralMeasureType *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__GeneralMeasureType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType, sizeof(prodml22__GeneralMeasureType), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__GeneralMeasureType*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType, sizeof(prodml23__GeneralMeasureType), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__GeneralMeasureType *)a->soap_in(soap, tag, type); + return (prodml23__GeneralMeasureType *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -235117,9 +235267,9 @@ SOAP_FMAC3 prodml22__GeneralMeasureType * SOAP_FMAC4 soap_in_prodml22__GeneralMe const char *t = soap_attr_value(soap, "uom", 1, 0); if (t) { - if (!(((prodml22__GeneralMeasureType*)a)->uom = soap_new_eml23__UomEnum(soap))) + if (!(((prodml23__GeneralMeasureType*)a)->uom = soap_new_eml23__UomEnum(soap))) return NULL; - if (soap_s2eml23__UomEnum(soap, t, ((prodml22__GeneralMeasureType*)a)->uom)) + if (soap_s2eml23__UomEnum(soap, t, ((prodml23__GeneralMeasureType*)a)->uom)) return NULL; } else if (soap->error) @@ -235140,35 +235290,35 @@ SOAP_FMAC3 prodml22__GeneralMeasureType * SOAP_FMAC4 soap_in_prodml22__GeneralMe return NULL; } else - { a = (prodml22__GeneralMeasureType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType, sizeof(prodml22__GeneralMeasureType), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__GeneralMeasureType *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType, sizeof(prodml23__GeneralMeasureType), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml22__GeneralMeasureType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml23__GeneralMeasureType(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__GeneralMeasureType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__GeneralMeasureType(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__GeneralMeasureType *p; - size_t k = sizeof(prodml22__GeneralMeasureType); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType, n, gsoap_eml2_3_fdelete); + prodml23__GeneralMeasureType *p; + size_t k = sizeof(prodml23__GeneralMeasureType); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__GeneralMeasureType); + { p = SOAP_NEW(soap, prodml23__GeneralMeasureType); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__GeneralMeasureType, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__GeneralMeasureType, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__GeneralMeasureType location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__GeneralMeasureType location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -235178,97 +235328,97 @@ SOAP_FMAC1 prodml22__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__GeneralMeasureType::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__GeneralMeasureType::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__GeneralMeasureType(soap, tag ? tag : "prodml22:GeneralMeasureType", -2, this, type)) + if (soap_out_prodml23__GeneralMeasureType(soap, tag ? tag : "prodml23:GeneralMeasureType", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__GeneralMeasureType::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__GeneralMeasureType::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__GeneralMeasureType(soap, this, tag, type); + return soap_get_prodml23__GeneralMeasureType(soap, this, tag, type); } -SOAP_FMAC3 prodml22__GeneralMeasureType * SOAP_FMAC4 soap_get_prodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__GeneralMeasureType * SOAP_FMAC4 soap_get_prodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__GeneralMeasureType(soap, tag, p, type))) + if ((p = soap_in_prodml23__GeneralMeasureType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FormationWater::soap_default(struct soap *soap) +void prodml23__FormationWater::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::soap_default(soap); - this->prodml22__FormationWater::SpecificGravity = NULL; - this->prodml22__FormationWater::Salinity = NULL; - this->prodml22__FormationWater::Remark = NULL; + this->prodml23__AbstractFluidComponent::soap_default(soap); + this->prodml23__FormationWater::SpecificGravity = NULL; + this->prodml23__FormationWater::Salinity = NULL; + this->prodml23__FormationWater::Remark = NULL; } -void prodml22__FormationWater::soap_serialize(struct soap *soap) const +void prodml23__FormationWater::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerTodouble(soap, &this->prodml22__FormationWater::SpecificGravity); - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__FormationWater::Salinity); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FormationWater::Remark); - this->prodml22__AbstractFluidComponent::soap_serialize(soap); + soap_serialize_PointerTodouble(soap, &this->prodml23__FormationWater::SpecificGravity); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__FormationWater::Salinity); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FormationWater::Remark); + this->prodml23__AbstractFluidComponent::soap_serialize(soap); #endif } -int prodml22__FormationWater::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FormationWater::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FormationWater(soap, tag, id, this, type); + return soap_out_prodml23__FormationWater(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationWater(struct soap *soap, const char *tag, int id, const prodml22__FormationWater *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FormationWater(struct soap *soap, const char *tag, int id, const prodml23__FormationWater *a, const char *type) { if (!type) - type = "prodml22:FormationWater"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:FormationWater"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__FormationWater), type ? type : "prodml22:FormationWater")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater), type ? type : "prodml23:FormationWater")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:SpecificGravity", -1, &a->prodml22__FormationWater::SpecificGravity, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:SpecificGravity", -1, &a->prodml23__FormationWater::SpecificGravity, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Salinity", -1, &a->prodml22__FormationWater::Salinity, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Salinity", -1, &a->prodml23__FormationWater::Salinity, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FormationWater::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FormationWater::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FormationWater::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FormationWater::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FormationWater(soap, tag, this, type); + return soap_in_prodml23__FormationWater(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FormationWater * SOAP_FMAC4 soap_in_prodml22__FormationWater(struct soap *soap, const char *tag, prodml22__FormationWater *a, const char *type) +SOAP_FMAC3 prodml23__FormationWater * SOAP_FMAC4 soap_in_prodml23__FormationWater(struct soap *soap, const char *tag, prodml23__FormationWater *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FormationWater*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, sizeof(prodml22__FormationWater), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FormationWater*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, sizeof(prodml23__FormationWater), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FormationWater *)a->soap_in(soap, tag, type); + return (prodml23__FormationWater *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction2 = 1; size_t soap_flag_VolumeConcentration2 = 1; @@ -235282,43 +235432,43 @@ SOAP_FMAC3 prodml22__FormationWater * SOAP_FMAC4 soap_in_prodml22__FormationWate for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction2--; continue; } } if (soap_flag_VolumeConcentration2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration2--; continue; } } if (soap_flag_MoleFraction2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction2--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits2--; continue; } } if (soap_flag_SpecificGravity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:SpecificGravity", &a->prodml22__FormationWater::SpecificGravity, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:SpecificGravity", &a->prodml23__FormationWater::SpecificGravity, "xsd:double")) { soap_flag_SpecificGravity1--; continue; } } if (soap_flag_Salinity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:Salinity", &a->prodml22__FormationWater::Salinity, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:Salinity", &a->prodml23__FormationWater::Salinity, "eml23:MassPerMassMeasure")) { soap_flag_Salinity1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FormationWater::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FormationWater::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -235334,35 +235484,35 @@ SOAP_FMAC3 prodml22__FormationWater * SOAP_FMAC4 soap_in_prodml22__FormationWate return NULL; } else - { a = (prodml22__FormationWater *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, sizeof(prodml22__FormationWater), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FormationWater *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, sizeof(prodml23__FormationWater), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FormationWater * SOAP_FMAC2 soap_instantiate_prodml22__FormationWater(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FormationWater * SOAP_FMAC2 soap_instantiate_prodml23__FormationWater(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FormationWater(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FormationWater(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FormationWater *p; - size_t k = sizeof(prodml22__FormationWater); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, n, gsoap_eml2_3_fdelete); + prodml23__FormationWater *p; + size_t k = sizeof(prodml23__FormationWater); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FormationWater); + { p = SOAP_NEW(soap, prodml23__FormationWater); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FormationWater, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FormationWater, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FormationWater location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FormationWater location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -235372,100 +235522,100 @@ SOAP_FMAC1 prodml22__FormationWater * SOAP_FMAC2 soap_instantiate_prodml22__Form return p; } -int prodml22__FormationWater::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FormationWater::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FormationWater(soap, tag ? tag : "prodml22:FormationWater", -2, this, type)) + if (soap_out_prodml23__FormationWater(soap, tag ? tag : "prodml23:FormationWater", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FormationWater::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FormationWater::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FormationWater(soap, this, tag, type); + return soap_get_prodml23__FormationWater(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FormationWater * SOAP_FMAC4 soap_get_prodml22__FormationWater(struct soap *soap, prodml22__FormationWater *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FormationWater * SOAP_FMAC4 soap_get_prodml23__FormationWater(struct soap *soap, prodml23__FormationWater *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FormationWater(soap, tag, p, type))) + if ((p = soap_in_prodml23__FormationWater(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidComponentFraction::soap_default(struct soap *soap) +void prodml23__FluidComponentFraction::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidComponentFraction::MassFraction = NULL; - this->prodml22__FluidComponentFraction::MoleFraction = NULL; - this->prodml22__FluidComponentFraction::VolumeFraction = NULL; - this->prodml22__FluidComponentFraction::VolumeConcentration = NULL; - this->prodml22__FluidComponentFraction::KValue = NULL; - this->prodml22__FluidComponentFraction::ConcentrationRelativeToDetectableLimits = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidComponentFraction::fluidComponentReference); + this->prodml23__FluidComponentFraction::MassFraction = NULL; + this->prodml23__FluidComponentFraction::MoleFraction = NULL; + this->prodml23__FluidComponentFraction::VolumeFraction = NULL; + this->prodml23__FluidComponentFraction::VolumeConcentration = NULL; + this->prodml23__FluidComponentFraction::KValue = NULL; + this->prodml23__FluidComponentFraction::ConcentrationRelativeToDetectableLimits = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidComponentFraction::fluidComponentReference); } -void prodml22__FluidComponentFraction::soap_serialize(struct soap *soap) const +void prodml23__FluidComponentFraction::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__FluidComponentFraction::MassFraction); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__FluidComponentFraction::MoleFraction); - soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, &this->prodml22__FluidComponentFraction::VolumeFraction); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__FluidComponentFraction::VolumeConcentration); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__FluidComponentFraction::KValue); - soap_serialize_PointerToprodml22__DetectableLimitRelativeStateKind(soap, &this->prodml22__FluidComponentFraction::ConcentrationRelativeToDetectableLimits); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__FluidComponentFraction::MassFraction); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__FluidComponentFraction::MoleFraction); + soap_serialize_PointerToeml23__VolumePerVolumeMeasureExt(soap, &this->prodml23__FluidComponentFraction::VolumeFraction); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__FluidComponentFraction::VolumeConcentration); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__FluidComponentFraction::KValue); + soap_serialize_PointerToprodml23__DetectableLimitRelativeStateKind(soap, &this->prodml23__FluidComponentFraction::ConcentrationRelativeToDetectableLimits); #endif } -int prodml22__FluidComponentFraction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidComponentFraction::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidComponentFraction(soap, tag, id, this, type); + return soap_out_prodml23__FluidComponentFraction(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentFraction(struct soap *soap, const char *tag, int id, const prodml22__FluidComponentFraction *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentFraction(struct soap *soap, const char *tag, int id, const prodml23__FluidComponentFraction *a, const char *type) { if (!type) - type = "prodml22:FluidComponentFraction"; - soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, ((prodml22__FluidComponentFraction*)a)->fluidComponentReference), 1); + type = "prodml23:FluidComponentFraction"; + soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, ((prodml23__FluidComponentFraction*)a)->fluidComponentReference), 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_gsoap_eml2_3_prodml22__FluidComponentFraction), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__FluidComponentFraction::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__FluidComponentFraction::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__FluidComponentFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__FluidComponentFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml22:VolumeFraction", -1, &a->prodml22__FluidComponentFraction::VolumeFraction, "eml23:VolumePerVolumeMeasureExt")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml23:VolumeFraction", -1, &a->prodml23__FluidComponentFraction::VolumeFraction, "eml23:VolumePerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__FluidComponentFraction::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__FluidComponentFraction::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:KValue", -1, &a->prodml22__FluidComponentFraction::KValue, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:KValue", -1, &a->prodml23__FluidComponentFraction::KValue, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__FluidComponentFraction::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__FluidComponentFraction::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidComponentFraction::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidComponentFraction::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidComponentFraction(soap, tag, this, type); + return soap_in_prodml23__FluidComponentFraction(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidComponentFraction * SOAP_FMAC4 soap_in_prodml22__FluidComponentFraction(struct soap *soap, const char *tag, prodml22__FluidComponentFraction *a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentFraction * SOAP_FMAC4 soap_in_prodml23__FluidComponentFraction(struct soap *soap, const char *tag, prodml23__FluidComponentFraction *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidComponentFraction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, sizeof(prodml22__FluidComponentFraction), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidComponentFraction*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, sizeof(prodml23__FluidComponentFraction), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidComponentFraction *)a->soap_in(soap, tag, type); + return (prodml23__FluidComponentFraction *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponentReference", 1, 3), &((prodml22__FluidComponentFraction*)a)->fluidComponentReference)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponentReference", 1, 3), &((prodml23__FluidComponentFraction*)a)->fluidComponentReference)) return NULL; size_t soap_flag_MassFraction1 = 1; size_t soap_flag_MoleFraction1 = 1; @@ -235478,37 +235628,37 @@ SOAP_FMAC3 prodml22__FluidComponentFraction * SOAP_FMAC4 soap_in_prodml22__Fluid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__FluidComponentFraction::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__FluidComponentFraction::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction1--; continue; } } if (soap_flag_MoleFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__FluidComponentFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__FluidComponentFraction::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction1--; continue; } } if (soap_flag_VolumeFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml22:VolumeFraction", &a->prodml22__FluidComponentFraction::VolumeFraction, "eml23:VolumePerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasureExt(soap, "prodml23:VolumeFraction", &a->prodml23__FluidComponentFraction::VolumeFraction, "eml23:VolumePerVolumeMeasureExt")) { soap_flag_VolumeFraction1--; continue; } } if (soap_flag_VolumeConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__FluidComponentFraction::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__FluidComponentFraction::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration1--; continue; } } if (soap_flag_KValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:KValue", &a->prodml22__FluidComponentFraction::KValue, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:KValue", &a->prodml23__FluidComponentFraction::KValue, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_KValue1--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__FluidComponentFraction::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__FluidComponentFraction::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits1--; continue; } @@ -235524,35 +235674,35 @@ SOAP_FMAC3 prodml22__FluidComponentFraction * SOAP_FMAC4 soap_in_prodml22__Fluid return NULL; } else - { a = (prodml22__FluidComponentFraction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, sizeof(prodml22__FluidComponentFraction), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidComponentFraction *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, sizeof(prodml23__FluidComponentFraction), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidComponentFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidComponentFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidComponentFraction *p; - size_t k = sizeof(prodml22__FluidComponentFraction); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, n, gsoap_eml2_3_fdelete); + prodml23__FluidComponentFraction *p; + size_t k = sizeof(prodml23__FluidComponentFraction); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidComponentFraction); + { p = SOAP_NEW(soap, prodml23__FluidComponentFraction); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidComponentFraction, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidComponentFraction, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidComponentFraction location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidComponentFraction location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -235562,98 +235712,98 @@ SOAP_FMAC1 prodml22__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__FluidComponentFraction::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidComponentFraction::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidComponentFraction(soap, tag ? tag : "prodml22:FluidComponentFraction", -2, this, type)) + if (soap_out_prodml23__FluidComponentFraction(soap, tag ? tag : "prodml23:FluidComponentFraction", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidComponentFraction::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidComponentFraction::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidComponentFraction(soap, this, tag, type); + return soap_get_prodml23__FluidComponentFraction(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidComponentFraction * SOAP_FMAC4 soap_get_prodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentFraction * SOAP_FMAC4 soap_get_prodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidComponentFraction(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidComponentFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidComponentCatalog::soap_default(struct soap *soap) +void prodml23__FluidComponentCatalog::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap, &this->prodml22__FluidComponentCatalog::StockTankOil); - soap_default_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap, &this->prodml22__FluidComponentCatalog::NaturalGas); - soap_default_std__vectorTemplateOfPointerToprodml22__FormationWater(soap, &this->prodml22__FluidComponentCatalog::FormationWater); - soap_default_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap, &this->prodml22__FluidComponentCatalog::PureFluidComponent); - soap_default_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap, &this->prodml22__FluidComponentCatalog::PseudoFluidComponent); - soap_default_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap, &this->prodml22__FluidComponentCatalog::PlusFluidComponent); - soap_default_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap, &this->prodml22__FluidComponentCatalog::SulfurFluidComponent); + soap_default_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap, &this->prodml23__FluidComponentCatalog::StockTankOil); + soap_default_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap, &this->prodml23__FluidComponentCatalog::NaturalGas); + soap_default_std__vectorTemplateOfPointerToprodml23__FormationWater(soap, &this->prodml23__FluidComponentCatalog::FormationWater); + soap_default_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap, &this->prodml23__FluidComponentCatalog::PureFluidComponent); + soap_default_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap, &this->prodml23__FluidComponentCatalog::PseudoFluidComponent); + soap_default_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap, &this->prodml23__FluidComponentCatalog::PlusFluidComponent); + soap_default_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap, &this->prodml23__FluidComponentCatalog::SulfurFluidComponent); } -void prodml22__FluidComponentCatalog::soap_serialize(struct soap *soap) const +void prodml23__FluidComponentCatalog::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap, &this->prodml22__FluidComponentCatalog::StockTankOil); - soap_serialize_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap, &this->prodml22__FluidComponentCatalog::NaturalGas); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FormationWater(soap, &this->prodml22__FluidComponentCatalog::FormationWater); - soap_serialize_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap, &this->prodml22__FluidComponentCatalog::PureFluidComponent); - soap_serialize_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap, &this->prodml22__FluidComponentCatalog::PseudoFluidComponent); - soap_serialize_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap, &this->prodml22__FluidComponentCatalog::PlusFluidComponent); - soap_serialize_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap, &this->prodml22__FluidComponentCatalog::SulfurFluidComponent); + soap_serialize_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap, &this->prodml23__FluidComponentCatalog::StockTankOil); + soap_serialize_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap, &this->prodml23__FluidComponentCatalog::NaturalGas); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FormationWater(soap, &this->prodml23__FluidComponentCatalog::FormationWater); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap, &this->prodml23__FluidComponentCatalog::PureFluidComponent); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap, &this->prodml23__FluidComponentCatalog::PseudoFluidComponent); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap, &this->prodml23__FluidComponentCatalog::PlusFluidComponent); + soap_serialize_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap, &this->prodml23__FluidComponentCatalog::SulfurFluidComponent); #endif } -int prodml22__FluidComponentCatalog::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidComponentCatalog::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidComponentCatalog(soap, tag, id, this, type); + return soap_out_prodml23__FluidComponentCatalog(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentCatalog(struct soap *soap, const char *tag, int id, const prodml22__FluidComponentCatalog *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentCatalog(struct soap *soap, const char *tag, int id, const prodml23__FluidComponentCatalog *a, const char *type) { if (!type) - type = "prodml22:FluidComponentCatalog"; + type = "prodml23:FluidComponentCatalog"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap, "prodml22:StockTankOil", -1, &a->prodml22__FluidComponentCatalog::StockTankOil, "prodml22:StockTankOil")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap, "prodml23:StockTankOil", -1, &a->prodml23__FluidComponentCatalog::StockTankOil, "prodml23:StockTankOil")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap, "prodml22:NaturalGas", -1, &a->prodml22__FluidComponentCatalog::NaturalGas, "prodml22:NaturalGas")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap, "prodml23:NaturalGas", -1, &a->prodml23__FluidComponentCatalog::NaturalGas, "prodml23:NaturalGas")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FormationWater(soap, "prodml22:FormationWater", -1, &a->prodml22__FluidComponentCatalog::FormationWater, "prodml22:FormationWater")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FormationWater(soap, "prodml23:FormationWater", -1, &a->prodml23__FluidComponentCatalog::FormationWater, "prodml23:FormationWater")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap, "prodml22:PureFluidComponent", -1, &a->prodml22__FluidComponentCatalog::PureFluidComponent, "prodml22:PureFluidComponent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap, "prodml23:PureFluidComponent", -1, &a->prodml23__FluidComponentCatalog::PureFluidComponent, "prodml23:PureFluidComponent")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap, "prodml22:PseudoFluidComponent", -1, &a->prodml22__FluidComponentCatalog::PseudoFluidComponent, "prodml22:PseudoFluidComponent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap, "prodml23:PseudoFluidComponent", -1, &a->prodml23__FluidComponentCatalog::PseudoFluidComponent, "prodml23:PseudoFluidComponent")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap, "prodml22:PlusFluidComponent", -1, &a->prodml22__FluidComponentCatalog::PlusFluidComponent, "prodml22:PlusFluidComponent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap, "prodml23:PlusFluidComponent", -1, &a->prodml23__FluidComponentCatalog::PlusFluidComponent, "prodml23:PlusFluidComponent")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap, "prodml22:SulfurFluidComponent", -1, &a->prodml22__FluidComponentCatalog::SulfurFluidComponent, "prodml22:SulfurFluidComponent")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap, "prodml23:SulfurFluidComponent", -1, &a->prodml23__FluidComponentCatalog::SulfurFluidComponent, "prodml23:SulfurFluidComponent")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidComponentCatalog::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidComponentCatalog::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidComponentCatalog(soap, tag, this, type); + return soap_in_prodml23__FluidComponentCatalog(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidComponentCatalog * SOAP_FMAC4 soap_in_prodml22__FluidComponentCatalog(struct soap *soap, const char *tag, prodml22__FluidComponentCatalog *a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentCatalog * SOAP_FMAC4 soap_in_prodml23__FluidComponentCatalog(struct soap *soap, const char *tag, prodml23__FluidComponentCatalog *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidComponentCatalog*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog, sizeof(prodml22__FluidComponentCatalog), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidComponentCatalog*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog, sizeof(prodml23__FluidComponentCatalog), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidComponentCatalog *)a->soap_in(soap, tag, type); + return (prodml23__FluidComponentCatalog *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -235662,31 +235812,31 @@ SOAP_FMAC3 prodml22__FluidComponentCatalog * SOAP_FMAC4 soap_in_prodml22__FluidC for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap, "prodml22:StockTankOil", &a->prodml22__FluidComponentCatalog::StockTankOil, "prodml22:StockTankOil")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap, "prodml23:StockTankOil", &a->prodml23__FluidComponentCatalog::StockTankOil, "prodml23:StockTankOil")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap, "prodml22:NaturalGas", &a->prodml22__FluidComponentCatalog::NaturalGas, "prodml22:NaturalGas")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap, "prodml23:NaturalGas", &a->prodml23__FluidComponentCatalog::NaturalGas, "prodml23:NaturalGas")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FormationWater(soap, "prodml22:FormationWater", &a->prodml22__FluidComponentCatalog::FormationWater, "prodml22:FormationWater")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FormationWater(soap, "prodml23:FormationWater", &a->prodml23__FluidComponentCatalog::FormationWater, "prodml23:FormationWater")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap, "prodml22:PureFluidComponent", &a->prodml22__FluidComponentCatalog::PureFluidComponent, "prodml22:PureFluidComponent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap, "prodml23:PureFluidComponent", &a->prodml23__FluidComponentCatalog::PureFluidComponent, "prodml23:PureFluidComponent")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap, "prodml22:PseudoFluidComponent", &a->prodml22__FluidComponentCatalog::PseudoFluidComponent, "prodml22:PseudoFluidComponent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap, "prodml23:PseudoFluidComponent", &a->prodml23__FluidComponentCatalog::PseudoFluidComponent, "prodml23:PseudoFluidComponent")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap, "prodml22:PlusFluidComponent", &a->prodml22__FluidComponentCatalog::PlusFluidComponent, "prodml22:PlusFluidComponent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap, "prodml23:PlusFluidComponent", &a->prodml23__FluidComponentCatalog::PlusFluidComponent, "prodml23:PlusFluidComponent")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap, "prodml22:SulfurFluidComponent", &a->prodml22__FluidComponentCatalog::SulfurFluidComponent, "prodml22:SulfurFluidComponent")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap, "prodml23:SulfurFluidComponent", &a->prodml23__FluidComponentCatalog::SulfurFluidComponent, "prodml23:SulfurFluidComponent")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -235700,35 +235850,35 @@ SOAP_FMAC3 prodml22__FluidComponentCatalog * SOAP_FMAC4 soap_in_prodml22__FluidC return NULL; } else - { a = (prodml22__FluidComponentCatalog *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog, sizeof(prodml22__FluidComponentCatalog), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidComponentCatalog *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog, sizeof(prodml23__FluidComponentCatalog), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentCatalog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentCatalog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidComponentCatalog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidComponentCatalog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidComponentCatalog *p; - size_t k = sizeof(prodml22__FluidComponentCatalog); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog, n, gsoap_eml2_3_fdelete); + prodml23__FluidComponentCatalog *p; + size_t k = sizeof(prodml23__FluidComponentCatalog); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidComponentCatalog); + { p = SOAP_NEW(soap, prodml23__FluidComponentCatalog); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidComponentCatalog, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidComponentCatalog, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidComponentCatalog location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidComponentCatalog location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -235738,89 +235888,89 @@ SOAP_FMAC1 prodml22__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__FluidComponentCatalog::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidComponentCatalog::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidComponentCatalog(soap, tag ? tag : "prodml22:FluidComponentCatalog", -2, this, type)) + if (soap_out_prodml23__FluidComponentCatalog(soap, tag ? tag : "prodml23:FluidComponentCatalog", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidComponentCatalog::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidComponentCatalog::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidComponentCatalog(soap, this, tag, type); + return soap_get_prodml23__FluidComponentCatalog(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidComponentCatalog * SOAP_FMAC4 soap_get_prodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentCatalog * SOAP_FMAC4 soap_get_prodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidComponentCatalog(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidComponentCatalog(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FacilityIdentifierStruct::soap_default(struct soap *soap) +void prodml23__FacilityIdentifierStruct::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FacilityIdentifierStruct::kind = NULL; - this->prodml22__FacilityIdentifierStruct::siteKind = NULL; - this->prodml22__FacilityIdentifierStruct::namingSystem = NULL; - this->prodml22__FacilityIdentifierStruct::uidRef = NULL; - this->prodml22__FacilityIdentifierStruct::__mixed = NULL; + this->prodml23__FacilityIdentifierStruct::kind = NULL; + this->prodml23__FacilityIdentifierStruct::siteKind = NULL; + this->prodml23__FacilityIdentifierStruct::namingSystem = NULL; + this->prodml23__FacilityIdentifierStruct::uidRef = NULL; + this->prodml23__FacilityIdentifierStruct::__mixed = NULL; } -void prodml22__FacilityIdentifierStruct::soap_serialize(struct soap *soap) const +void prodml23__FacilityIdentifierStruct::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__FacilityIdentifierStruct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FacilityIdentifierStruct::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FacilityIdentifierStruct(soap, tag, id, this, type); + return soap_out_prodml23__FacilityIdentifierStruct(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityIdentifierStruct(struct soap *soap, const char *tag, int id, const prodml22__FacilityIdentifierStruct *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityIdentifierStruct(struct soap *soap, const char *tag, int id, const prodml23__FacilityIdentifierStruct *a, const char *type) { if (!type) - type = "prodml22:FacilityIdentifierStruct"; - if (((prodml22__FacilityIdentifierStruct*)a)->kind) - { soap_set_attr(soap, "kind", soap_prodml22__ReportingFacility2s(soap, *((prodml22__FacilityIdentifierStruct*)a)->kind), 1); + type = "prodml23:FacilityIdentifierStruct"; + if (((prodml23__FacilityIdentifierStruct*)a)->kind) + { soap_set_attr(soap, "kind", soap_prodml23__ReportingFacility2s(soap, *((prodml23__FacilityIdentifierStruct*)a)->kind), 1); } - if (((prodml22__FacilityIdentifierStruct*)a)->siteKind) - { soap_set_attr(soap, "siteKind", soap_eml23__String642s(soap, *((prodml22__FacilityIdentifierStruct*)a)->siteKind), 1); + if (((prodml23__FacilityIdentifierStruct*)a)->siteKind) + { soap_set_attr(soap, "siteKind", soap_eml23__String642s(soap, *((prodml23__FacilityIdentifierStruct*)a)->siteKind), 1); } - if (((prodml22__FacilityIdentifierStruct*)a)->namingSystem) - { soap_set_attr(soap, "namingSystem", soap_eml23__String642s(soap, *((prodml22__FacilityIdentifierStruct*)a)->namingSystem), 1); + if (((prodml23__FacilityIdentifierStruct*)a)->namingSystem) + { soap_set_attr(soap, "namingSystem", soap_eml23__String642s(soap, *((prodml23__FacilityIdentifierStruct*)a)->namingSystem), 1); } - if (((prodml22__FacilityIdentifierStruct*)a)->uidRef) - { soap_set_attr(soap, "uidRef", soap_eml23__String642s(soap, *((prodml22__FacilityIdentifierStruct*)a)->uidRef), 1); + if (((prodml23__FacilityIdentifierStruct*)a)->uidRef) + { soap_set_attr(soap, "uidRef", soap_eml23__String642s(soap, *((prodml23__FacilityIdentifierStruct*)a)->uidRef), 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_gsoap_eml2_3_prodml22__FacilityIdentifierStruct), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct), type)) return soap->error; - if (soap_outliteral(soap, "-mixed", (char*const*)&a->prodml22__FacilityIdentifierStruct::__mixed, NULL)) + if (soap_outliteral(soap, "-mixed", (char*const*)&a->prodml23__FacilityIdentifierStruct::__mixed, NULL)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FacilityIdentifierStruct::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityIdentifierStruct::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FacilityIdentifierStruct(soap, tag, this, type); + return soap_in_prodml23__FacilityIdentifierStruct(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__FacilityIdentifierStruct(struct soap *soap, const char *tag, prodml22__FacilityIdentifierStruct *a, const char *type) +SOAP_FMAC3 prodml23__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml23__FacilityIdentifierStruct(struct soap *soap, const char *tag, prodml23__FacilityIdentifierStruct *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FacilityIdentifierStruct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, sizeof(prodml22__FacilityIdentifierStruct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FacilityIdentifierStruct*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, sizeof(prodml23__FacilityIdentifierStruct), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FacilityIdentifierStruct *)a->soap_in(soap, tag, type); + return (prodml23__FacilityIdentifierStruct *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -235828,9 +235978,9 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__Fac const char *t = soap_attr_value(soap, "kind", 5, 0); if (t) { - if (!(((prodml22__FacilityIdentifierStruct*)a)->kind = (prodml22__ReportingFacility *)soap_malloc(soap, sizeof(prodml22__ReportingFacility)))) + if (!(((prodml23__FacilityIdentifierStruct*)a)->kind = (prodml23__ReportingFacility *)soap_malloc(soap, sizeof(prodml23__ReportingFacility)))) return NULL; - if (soap_s2prodml22__ReportingFacility(soap, t, ((prodml22__FacilityIdentifierStruct*)a)->kind)) + if (soap_s2prodml23__ReportingFacility(soap, t, ((prodml23__FacilityIdentifierStruct*)a)->kind)) return NULL; } else if (soap->error) @@ -235840,9 +235990,9 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__Fac const char *t = soap_attr_value(soap, "siteKind", 1, 0); if (t) { - if (!(((prodml22__FacilityIdentifierStruct*)a)->siteKind = soap_new_eml23__String64(soap))) + if (!(((prodml23__FacilityIdentifierStruct*)a)->siteKind = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FacilityIdentifierStruct*)a)->siteKind)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FacilityIdentifierStruct*)a)->siteKind)) return NULL; } else if (soap->error) @@ -235852,9 +236002,9 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__Fac const char *t = soap_attr_value(soap, "namingSystem", 1, 0); if (t) { - if (!(((prodml22__FacilityIdentifierStruct*)a)->namingSystem = soap_new_eml23__String64(soap))) + if (!(((prodml23__FacilityIdentifierStruct*)a)->namingSystem = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FacilityIdentifierStruct*)a)->namingSystem)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FacilityIdentifierStruct*)a)->namingSystem)) return NULL; } else if (soap->error) @@ -235864,9 +236014,9 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__Fac const char *t = soap_attr_value(soap, "uidRef", 1, 0); if (t) { - if (!(((prodml22__FacilityIdentifierStruct*)a)->uidRef = soap_new_eml23__String64(soap))) + if (!(((prodml23__FacilityIdentifierStruct*)a)->uidRef = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FacilityIdentifierStruct*)a)->uidRef)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FacilityIdentifierStruct*)a)->uidRef)) return NULL; } else if (soap->error) @@ -235878,7 +236028,7 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__Fac for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag___mixed1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-mixed", (char**)&a->prodml22__FacilityIdentifierStruct::__mixed)) + { if (soap_inliteral(soap, "-mixed", (char**)&a->prodml23__FacilityIdentifierStruct::__mixed)) { soap_flag___mixed1--; continue; } @@ -235894,35 +236044,35 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__Fac return NULL; } else - { a = (prodml22__FacilityIdentifierStruct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, sizeof(prodml22__FacilityIdentifierStruct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FacilityIdentifierStruct *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, sizeof(prodml23__FacilityIdentifierStruct), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prodml22__FacilityIdentifierStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prodml23__FacilityIdentifierStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FacilityIdentifierStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FacilityIdentifierStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FacilityIdentifierStruct *p; - size_t k = sizeof(prodml22__FacilityIdentifierStruct); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, n, gsoap_eml2_3_fdelete); + prodml23__FacilityIdentifierStruct *p; + size_t k = sizeof(prodml23__FacilityIdentifierStruct); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FacilityIdentifierStruct); + { p = SOAP_NEW(soap, prodml23__FacilityIdentifierStruct); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FacilityIdentifierStruct, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FacilityIdentifierStruct, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FacilityIdentifierStruct location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FacilityIdentifierStruct location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -235932,111 +236082,111 @@ SOAP_FMAC1 prodml22__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__FacilityIdentifierStruct::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FacilityIdentifierStruct::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FacilityIdentifierStruct(soap, tag ? tag : "prodml22:FacilityIdentifierStruct", -2, this, type)) + if (soap_out_prodml23__FacilityIdentifierStruct(soap, tag ? tag : "prodml23:FacilityIdentifierStruct", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FacilityIdentifierStruct::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityIdentifierStruct::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FacilityIdentifierStruct(soap, this, tag, type); + return soap_get_prodml23__FacilityIdentifierStruct(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_get_prodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityIdentifierStruct * SOAP_FMAC4 soap_get_prodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilityIdentifierStruct(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilityIdentifierStruct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FacilityIdentifier::soap_default(struct soap *soap) +void prodml23__FacilityIdentifier::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FacilityIdentifier::Name = NULL; - this->prodml22__FacilityIdentifier::Installation = NULL; - this->prodml22__FacilityIdentifier::Kind = NULL; - this->prodml22__FacilityIdentifier::ContextFacility = NULL; - this->prodml22__FacilityIdentifier::BusinessUnit = NULL; - this->prodml22__FacilityIdentifier::Operator = NULL; - this->prodml22__FacilityIdentifier::GeographicContext = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FacilityIdentifier::uid); - this->prodml22__FacilityIdentifier::__mixed = NULL; + this->prodml23__FacilityIdentifier::Name = NULL; + this->prodml23__FacilityIdentifier::Installation = NULL; + this->prodml23__FacilityIdentifier::Kind = NULL; + this->prodml23__FacilityIdentifier::ContextFacility = NULL; + this->prodml23__FacilityIdentifier::BusinessUnit = NULL; + this->prodml23__FacilityIdentifier::Operator = NULL; + this->prodml23__FacilityIdentifier::GeographicContext = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FacilityIdentifier::uid); + this->prodml23__FacilityIdentifier::__mixed = NULL; } -void prodml22__FacilityIdentifier::soap_serialize(struct soap *soap) const +void prodml23__FacilityIdentifier::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml22__FacilityIdentifier::Name); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__FacilityIdentifier::Installation); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FacilityIdentifier::Kind); - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &this->prodml22__FacilityIdentifier::ContextFacility); - soap_serialize_PointerToprodml22__ProductVolumeBusinessUnit(soap, &this->prodml22__FacilityIdentifier::BusinessUnit); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FacilityIdentifier::Operator); - soap_serialize_PointerToprodml22__GeographicContext(soap, &this->prodml22__FacilityIdentifier::GeographicContext); + soap_serialize_PointerToeml23__NameStruct(soap, &this->prodml23__FacilityIdentifier::Name); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__FacilityIdentifier::Installation); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FacilityIdentifier::Kind); + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &this->prodml23__FacilityIdentifier::ContextFacility); + soap_serialize_PointerToprodml23__ProductVolumeBusinessUnit(soap, &this->prodml23__FacilityIdentifier::BusinessUnit); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FacilityIdentifier::Operator); + soap_serialize_PointerToprodml23__GeographicContext(soap, &this->prodml23__FacilityIdentifier::GeographicContext); #endif } -int prodml22__FacilityIdentifier::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FacilityIdentifier::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FacilityIdentifier(soap, tag, id, this, type); + return soap_out_prodml23__FacilityIdentifier(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityIdentifier(struct soap *soap, const char *tag, int id, const prodml22__FacilityIdentifier *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityIdentifier(struct soap *soap, const char *tag, int id, const prodml23__FacilityIdentifier *a, const char *type) { if (!type) - type = "prodml22:FacilityIdentifier"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FacilityIdentifier*)a)->uid), 1); + type = "prodml23:FacilityIdentifier"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FacilityIdentifier*)a)->uid), 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_gsoap_eml2_3_prodml22__FacilityIdentifier), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier), type)) return soap->error; - if (!a->prodml22__FacilityIdentifier::Name) - { if (soap_element_empty(soap, "prodml22:Name", 0, NULL)) + if (!a->prodml23__FacilityIdentifier::Name) + { if (soap_element_empty(soap, "prodml23:Name", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__NameStruct(soap, "prodml22:Name", -1, &a->prodml22__FacilityIdentifier::Name, "eml23:NameStruct")) + else if (soap_out_PointerToeml23__NameStruct(soap, "prodml23:Name", -1, &a->prodml23__FacilityIdentifier::Name, "eml23:NameStruct")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Installation", -1, &a->prodml22__FacilityIdentifier::Installation, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Installation", -1, &a->prodml23__FacilityIdentifier::Installation, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Kind", -1, &a->prodml22__FacilityIdentifier::Kind, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Kind", -1, &a->prodml23__FacilityIdentifier::Kind, "eml23:String64")) return soap->error; - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", -1, &a->prodml22__FacilityIdentifier::ContextFacility, "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", -1, &a->prodml23__FacilityIdentifier::ContextFacility, "prodml23:FacilityIdentifierStruct")) return soap->error; - if (soap_out_PointerToprodml22__ProductVolumeBusinessUnit(soap, "prodml22:BusinessUnit", -1, &a->prodml22__FacilityIdentifier::BusinessUnit, "prodml22:ProductVolumeBusinessUnit")) + if (soap_out_PointerToprodml23__ProductVolumeBusinessUnit(soap, "prodml23:BusinessUnit", -1, &a->prodml23__FacilityIdentifier::BusinessUnit, "prodml23:ProductVolumeBusinessUnit")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:Operator", -1, &a->prodml22__FacilityIdentifier::Operator, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:Operator", -1, &a->prodml23__FacilityIdentifier::Operator, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToprodml22__GeographicContext(soap, "prodml22:GeographicContext", -1, &a->prodml22__FacilityIdentifier::GeographicContext, "prodml22:GeographicContext")) + if (soap_out_PointerToprodml23__GeographicContext(soap, "prodml23:GeographicContext", -1, &a->prodml23__FacilityIdentifier::GeographicContext, "prodml23:GeographicContext")) return soap->error; - if (soap_outliteral(soap, "-mixed", (char*const*)&a->prodml22__FacilityIdentifier::__mixed, NULL)) + if (soap_outliteral(soap, "-mixed", (char*const*)&a->prodml23__FacilityIdentifier::__mixed, NULL)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FacilityIdentifier::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityIdentifier::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FacilityIdentifier(soap, tag, this, type); + return soap_in_prodml23__FacilityIdentifier(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml22__FacilityIdentifier(struct soap *soap, const char *tag, prodml22__FacilityIdentifier *a, const char *type) +SOAP_FMAC3 prodml23__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml23__FacilityIdentifier(struct soap *soap, const char *tag, prodml23__FacilityIdentifier *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FacilityIdentifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier, sizeof(prodml22__FacilityIdentifier), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FacilityIdentifier*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier, sizeof(prodml23__FacilityIdentifier), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FacilityIdentifier *)a->soap_in(soap, tag, type); + return (prodml23__FacilityIdentifier *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FacilityIdentifier*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FacilityIdentifier*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_Installation1 = 1; @@ -236051,49 +236201,49 @@ SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml22__FacilityI for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NameStruct(soap, "prodml22:Name", &a->prodml22__FacilityIdentifier::Name, "eml23:NameStruct")) + { if (soap_in_PointerToeml23__NameStruct(soap, "prodml23:Name", &a->prodml23__FacilityIdentifier::Name, "eml23:NameStruct")) { soap_flag_Name1--; continue; } } if (soap_flag_Installation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:Installation", &a->prodml22__FacilityIdentifier::Installation, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:Installation", &a->prodml23__FacilityIdentifier::Installation, "prodml23:FacilityIdentifierStruct")) { soap_flag_Installation1--; continue; } } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Kind", &a->prodml22__FacilityIdentifier::Kind, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Kind", &a->prodml23__FacilityIdentifier::Kind, "eml23:String64")) { soap_flag_Kind1--; continue; } } if (soap_flag_ContextFacility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, "prodml22:ContextFacility", &a->prodml22__FacilityIdentifier::ContextFacility, "prodml22:FacilityIdentifierStruct")) + { if (soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, "prodml23:ContextFacility", &a->prodml23__FacilityIdentifier::ContextFacility, "prodml23:FacilityIdentifierStruct")) { soap_flag_ContextFacility1--; continue; } } if (soap_flag_BusinessUnit1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ProductVolumeBusinessUnit(soap, "prodml22:BusinessUnit", &a->prodml22__FacilityIdentifier::BusinessUnit, "prodml22:ProductVolumeBusinessUnit")) + { if (soap_in_PointerToprodml23__ProductVolumeBusinessUnit(soap, "prodml23:BusinessUnit", &a->prodml23__FacilityIdentifier::BusinessUnit, "prodml23:ProductVolumeBusinessUnit")) { soap_flag_BusinessUnit1--; continue; } } if (soap_flag_Operator1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:Operator", &a->prodml22__FacilityIdentifier::Operator, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:Operator", &a->prodml23__FacilityIdentifier::Operator, "eml23:DataObjectReference")) { soap_flag_Operator1--; continue; } } if (soap_flag_GeographicContext1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__GeographicContext(soap, "prodml22:GeographicContext", &a->prodml22__FacilityIdentifier::GeographicContext, "prodml22:GeographicContext")) + { if (soap_in_PointerToprodml23__GeographicContext(soap, "prodml23:GeographicContext", &a->prodml23__FacilityIdentifier::GeographicContext, "prodml23:GeographicContext")) { soap_flag_GeographicContext1--; continue; } } if (soap_flag___mixed1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_inliteral(soap, "-mixed", (char**)&a->prodml22__FacilityIdentifier::__mixed)) + { if (soap_inliteral(soap, "-mixed", (char**)&a->prodml23__FacilityIdentifier::__mixed)) { soap_flag___mixed1--; continue; } @@ -236107,7 +236257,7 @@ SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml22__FacilityI } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__FacilityIdentifier::Name)) + if ((!a->prodml23__FacilityIdentifier::Name)) { soap->error = SOAP_OCCURS; return NULL; } @@ -236117,35 +236267,35 @@ SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml22__FacilityI return NULL; } else - { a = (prodml22__FacilityIdentifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier, sizeof(prodml22__FacilityIdentifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FacilityIdentifier *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier, sizeof(prodml23__FacilityIdentifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml22__FacilityIdentifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml23__FacilityIdentifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FacilityIdentifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FacilityIdentifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FacilityIdentifier *p; - size_t k = sizeof(prodml22__FacilityIdentifier); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier, n, gsoap_eml2_3_fdelete); + prodml23__FacilityIdentifier *p; + size_t k = sizeof(prodml23__FacilityIdentifier); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FacilityIdentifier); + { p = SOAP_NEW(soap, prodml23__FacilityIdentifier); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FacilityIdentifier, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FacilityIdentifier, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FacilityIdentifier location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FacilityIdentifier location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -236155,74 +236305,74 @@ SOAP_FMAC1 prodml22__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml22__ return p; } -int prodml22__FacilityIdentifier::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FacilityIdentifier::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FacilityIdentifier(soap, tag ? tag : "prodml22:FacilityIdentifier", -2, this, type)) + if (soap_out_prodml23__FacilityIdentifier(soap, tag ? tag : "prodml23:FacilityIdentifier", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FacilityIdentifier::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FacilityIdentifier::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FacilityIdentifier(soap, this, tag, type); + return soap_get_prodml23__FacilityIdentifier(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_get_prodml22__FacilityIdentifier(struct soap *soap, prodml22__FacilityIdentifier *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityIdentifier * SOAP_FMAC4 soap_get_prodml23__FacilityIdentifier(struct soap *soap, prodml23__FacilityIdentifier *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FacilityIdentifier(soap, tag, p, type))) + if ((p = soap_in_prodml23__FacilityIdentifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__EndpointQualifiedDateTime::soap_default(struct soap *soap) +void prodml23__EndpointQualifiedDateTime::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__EndpointQualifiedDateTime::endpoint = NULL; + this->prodml23__EndpointQualifiedDateTime::endpoint = NULL; } -void prodml22__EndpointQualifiedDateTime::soap_serialize(struct soap *soap) const +void prodml23__EndpointQualifiedDateTime::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__EndpointQualifiedDateTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__EndpointQualifiedDateTime::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__EndpointQualifiedDateTime(soap, tag, id, this, type); + return soap_out_prodml23__EndpointQualifiedDateTime(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifiedDateTime(struct soap *soap, const char *tag, int id, const prodml22__EndpointQualifiedDateTime *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifiedDateTime(struct soap *soap, const char *tag, int id, const prodml23__EndpointQualifiedDateTime *a, const char *type) { if (!type) - type = "prodml22:EndpointQualifiedDateTime"; - if (((prodml22__EndpointQualifiedDateTime*)a)->endpoint) - { soap_set_attr(soap, "endpoint", soap_prodml22__EndpointQualifier2s(soap, *((prodml22__EndpointQualifiedDateTime*)a)->endpoint), 1); + type = "prodml23:EndpointQualifiedDateTime"; + if (((prodml23__EndpointQualifiedDateTime*)a)->endpoint) + { soap_set_attr(soap, "endpoint", soap_prodml23__EndpointQualifier2s(soap, *((prodml23__EndpointQualifiedDateTime*)a)->endpoint), 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_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__EndpointQualifiedDateTime::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointQualifiedDateTime::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__EndpointQualifiedDateTime(soap, tag, this, type); + return soap_in_prodml23__EndpointQualifiedDateTime(soap, tag, this, type); } -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime * SOAP_FMAC4 soap_in_prodml22__EndpointQualifiedDateTime(struct soap *soap, const char *tag, prodml22__EndpointQualifiedDateTime *a, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime * SOAP_FMAC4 soap_in_prodml23__EndpointQualifiedDateTime(struct soap *soap, const char *tag, prodml23__EndpointQualifiedDateTime *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__EndpointQualifiedDateTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime, sizeof(prodml22__EndpointQualifiedDateTime), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__EndpointQualifiedDateTime*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime, sizeof(prodml23__EndpointQualifiedDateTime), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__EndpointQualifiedDateTime *)a->soap_in(soap, tag, type); + return (prodml23__EndpointQualifiedDateTime *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -236230,9 +236380,9 @@ SOAP_FMAC3 prodml22__EndpointQualifiedDateTime * SOAP_FMAC4 soap_in_prodml22__En const char *t = soap_attr_value(soap, "endpoint", 5, 0); if (t) { - if (!(((prodml22__EndpointQualifiedDateTime*)a)->endpoint = (prodml22__EndpointQualifier *)soap_malloc(soap, sizeof(prodml22__EndpointQualifier)))) + if (!(((prodml23__EndpointQualifiedDateTime*)a)->endpoint = (prodml23__EndpointQualifier *)soap_malloc(soap, sizeof(prodml23__EndpointQualifier)))) return NULL; - if (soap_s2prodml22__EndpointQualifier(soap, t, ((prodml22__EndpointQualifiedDateTime*)a)->endpoint)) + if (soap_s2prodml23__EndpointQualifier(soap, t, ((prodml23__EndpointQualifiedDateTime*)a)->endpoint)) return NULL; } else if (soap->error) @@ -236253,35 +236403,35 @@ SOAP_FMAC3 prodml22__EndpointQualifiedDateTime * SOAP_FMAC4 soap_in_prodml22__En return NULL; } else - { a = (prodml22__EndpointQualifiedDateTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime, sizeof(prodml22__EndpointQualifiedDateTime), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__EndpointQualifiedDateTime *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime, sizeof(prodml23__EndpointQualifiedDateTime), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQualifiedDateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQualifiedDateTime(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__EndpointQualifiedDateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__EndpointQualifiedDateTime(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__EndpointQualifiedDateTime *p; - size_t k = sizeof(prodml22__EndpointQualifiedDateTime); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime, n, gsoap_eml2_3_fdelete); + prodml23__EndpointQualifiedDateTime *p; + size_t k = sizeof(prodml23__EndpointQualifiedDateTime); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__EndpointQualifiedDateTime); + { p = SOAP_NEW(soap, prodml23__EndpointQualifiedDateTime); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__EndpointQualifiedDateTime, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__EndpointQualifiedDateTime, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__EndpointQualifiedDateTime location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__EndpointQualifiedDateTime location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -236291,74 +236441,74 @@ SOAP_FMAC1 prodml22__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__EndpointQualifiedDateTime::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__EndpointQualifiedDateTime::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__EndpointQualifiedDateTime(soap, tag ? tag : "prodml22:EndpointQualifiedDateTime", -2, this, type)) + if (soap_out_prodml23__EndpointQualifiedDateTime(soap, tag ? tag : "prodml23:EndpointQualifiedDateTime", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__EndpointQualifiedDateTime::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointQualifiedDateTime::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__EndpointQualifiedDateTime(soap, this, tag, type); + return soap_get_prodml23__EndpointQualifiedDateTime(soap, this, tag, type); } -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime * SOAP_FMAC4 soap_get_prodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime * SOAP_FMAC4 soap_get_prodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__EndpointQualifiedDateTime(soap, tag, p, type))) + if ((p = soap_in_prodml23__EndpointQualifiedDateTime(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__EndpointQualifiedDate::soap_default(struct soap *soap) +void prodml23__EndpointQualifiedDate::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__EndpointQualifiedDate::endpoint = NULL; + this->prodml23__EndpointQualifiedDate::endpoint = NULL; } -void prodml22__EndpointQualifiedDate::soap_serialize(struct soap *soap) const +void prodml23__EndpointQualifiedDate::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__EndpointQualifiedDate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__EndpointQualifiedDate::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__EndpointQualifiedDate(soap, tag, id, this, type); + return soap_out_prodml23__EndpointQualifiedDate(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifiedDate(struct soap *soap, const char *tag, int id, const prodml22__EndpointQualifiedDate *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifiedDate(struct soap *soap, const char *tag, int id, const prodml23__EndpointQualifiedDate *a, const char *type) { if (!type) - type = "prodml22:EndpointQualifiedDate"; - if (((prodml22__EndpointQualifiedDate*)a)->endpoint) - { soap_set_attr(soap, "endpoint", soap_prodml22__EndpointQualifier2s(soap, *((prodml22__EndpointQualifiedDate*)a)->endpoint), 1); + type = "prodml23:EndpointQualifiedDate"; + if (((prodml23__EndpointQualifiedDate*)a)->endpoint) + { soap_set_attr(soap, "endpoint", soap_prodml23__EndpointQualifier2s(soap, *((prodml23__EndpointQualifiedDate*)a)->endpoint), 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_gsoap_eml2_3_prodml22__EndpointQualifiedDate), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__EndpointQualifiedDate::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointQualifiedDate::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__EndpointQualifiedDate(soap, tag, this, type); + return soap_in_prodml23__EndpointQualifiedDate(soap, tag, this, type); } -SOAP_FMAC3 prodml22__EndpointQualifiedDate * SOAP_FMAC4 soap_in_prodml22__EndpointQualifiedDate(struct soap *soap, const char *tag, prodml22__EndpointQualifiedDate *a, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifiedDate * SOAP_FMAC4 soap_in_prodml23__EndpointQualifiedDate(struct soap *soap, const char *tag, prodml23__EndpointQualifiedDate *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__EndpointQualifiedDate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate, sizeof(prodml22__EndpointQualifiedDate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__EndpointQualifiedDate*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate, sizeof(prodml23__EndpointQualifiedDate), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__EndpointQualifiedDate *)a->soap_in(soap, tag, type); + return (prodml23__EndpointQualifiedDate *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -236366,9 +236516,9 @@ SOAP_FMAC3 prodml22__EndpointQualifiedDate * SOAP_FMAC4 soap_in_prodml22__Endpoi const char *t = soap_attr_value(soap, "endpoint", 5, 0); if (t) { - if (!(((prodml22__EndpointQualifiedDate*)a)->endpoint = (prodml22__EndpointQualifier *)soap_malloc(soap, sizeof(prodml22__EndpointQualifier)))) + if (!(((prodml23__EndpointQualifiedDate*)a)->endpoint = (prodml23__EndpointQualifier *)soap_malloc(soap, sizeof(prodml23__EndpointQualifier)))) return NULL; - if (soap_s2prodml22__EndpointQualifier(soap, t, ((prodml22__EndpointQualifiedDate*)a)->endpoint)) + if (soap_s2prodml23__EndpointQualifier(soap, t, ((prodml23__EndpointQualifiedDate*)a)->endpoint)) return NULL; } else if (soap->error) @@ -236389,35 +236539,35 @@ SOAP_FMAC3 prodml22__EndpointQualifiedDate * SOAP_FMAC4 soap_in_prodml22__Endpoi return NULL; } else - { a = (prodml22__EndpointQualifiedDate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate, sizeof(prodml22__EndpointQualifiedDate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__EndpointQualifiedDate *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate, sizeof(prodml23__EndpointQualifiedDate), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQualifiedDate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQualifiedDate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__EndpointQualifiedDate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__EndpointQualifiedDate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__EndpointQualifiedDate *p; - size_t k = sizeof(prodml22__EndpointQualifiedDate); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate, n, gsoap_eml2_3_fdelete); + prodml23__EndpointQualifiedDate *p; + size_t k = sizeof(prodml23__EndpointQualifiedDate); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__EndpointQualifiedDate); + { p = SOAP_NEW(soap, prodml23__EndpointQualifiedDate); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__EndpointQualifiedDate, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__EndpointQualifiedDate, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__EndpointQualifiedDate location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__EndpointQualifiedDate location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -236427,96 +236577,96 @@ SOAP_FMAC1 prodml22__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__EndpointQualifiedDate::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__EndpointQualifiedDate::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__EndpointQualifiedDate(soap, tag ? tag : "prodml22:EndpointQualifiedDate", -2, this, type)) + if (soap_out_prodml23__EndpointQualifiedDate(soap, tag ? tag : "prodml23:EndpointQualifiedDate", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__EndpointQualifiedDate::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__EndpointQualifiedDate::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__EndpointQualifiedDate(soap, this, tag, type); + return soap_get_prodml23__EndpointQualifiedDate(soap, this, tag, type); } -SOAP_FMAC3 prodml22__EndpointQualifiedDate * SOAP_FMAC4 soap_get_prodml22__EndpointQualifiedDate(struct soap *soap, prodml22__EndpointQualifiedDate *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifiedDate * SOAP_FMAC4 soap_get_prodml23__EndpointQualifiedDate(struct soap *soap, prodml23__EndpointQualifiedDate *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__EndpointQualifiedDate(soap, tag, p, type))) + if ((p = soap_in_prodml23__EndpointQualifiedDate(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DatedComment::soap_default(struct soap *soap) +void prodml23__DatedComment::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__DatedComment::Who = NULL; - this->prodml22__DatedComment::Role = NULL; - this->prodml22__DatedComment::StartTime = NULL; - this->prodml22__DatedComment::EndTime = NULL; - this->prodml22__DatedComment::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__DatedComment::uid); + this->prodml23__DatedComment::Who = NULL; + this->prodml23__DatedComment::Role = NULL; + this->prodml23__DatedComment::StartTime = NULL; + this->prodml23__DatedComment::EndTime = NULL; + this->prodml23__DatedComment::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__DatedComment::uid); } -void prodml22__DatedComment::soap_serialize(struct soap *soap) const +void prodml23__DatedComment::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__DatedComment::Who); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__DatedComment::Role); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__DatedComment::StartTime); - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__DatedComment::EndTime); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__DatedComment::Remark); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__DatedComment::Who); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__DatedComment::Role); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__DatedComment::StartTime); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__DatedComment::EndTime); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__DatedComment::Remark); #endif } -int prodml22__DatedComment::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DatedComment::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DatedComment(soap, tag, id, this, type); + return soap_out_prodml23__DatedComment(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DatedComment(struct soap *soap, const char *tag, int id, const prodml22__DatedComment *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DatedComment(struct soap *soap, const char *tag, int id, const prodml23__DatedComment *a, const char *type) { if (!type) - type = "prodml22:DatedComment"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__DatedComment*)a)->uid), 1); + type = "prodml23:DatedComment"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__DatedComment*)a)->uid), 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_gsoap_eml2_3_prodml22__DatedComment), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Who", -1, &a->prodml22__DatedComment::Who, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Who", -1, &a->prodml23__DatedComment::Who, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Role", -1, &a->prodml22__DatedComment::Role, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Role", -1, &a->prodml23__DatedComment::Role, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", -1, &a->prodml22__DatedComment::StartTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", -1, &a->prodml23__DatedComment::StartTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", -1, &a->prodml22__DatedComment::EndTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", -1, &a->prodml23__DatedComment::EndTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__DatedComment::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__DatedComment::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DatedComment::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DatedComment::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DatedComment(soap, tag, this, type); + return soap_in_prodml23__DatedComment(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DatedComment * SOAP_FMAC4 soap_in_prodml22__DatedComment(struct soap *soap, const char *tag, prodml22__DatedComment *a, const char *type) +SOAP_FMAC3 prodml23__DatedComment * SOAP_FMAC4 soap_in_prodml23__DatedComment(struct soap *soap, const char *tag, prodml23__DatedComment *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DatedComment*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, sizeof(prodml22__DatedComment), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DatedComment*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, sizeof(prodml23__DatedComment), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DatedComment *)a->soap_in(soap, tag, type); + return (prodml23__DatedComment *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__DatedComment*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__DatedComment*)a)->uid)) return NULL; size_t soap_flag_Who1 = 1; size_t soap_flag_Role1 = 1; @@ -236528,31 +236678,31 @@ SOAP_FMAC3 prodml22__DatedComment * SOAP_FMAC4 soap_in_prodml22__DatedComment(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Who1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Who", &a->prodml22__DatedComment::Who, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Who", &a->prodml23__DatedComment::Who, "eml23:String64")) { soap_flag_Who1--; continue; } } if (soap_flag_Role1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Role", &a->prodml22__DatedComment::Role, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Role", &a->prodml23__DatedComment::Role, "eml23:String64")) { soap_flag_Role1--; continue; } } if (soap_flag_StartTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:StartTime", &a->prodml22__DatedComment::StartTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:StartTime", &a->prodml23__DatedComment::StartTime, "eml23:TimeStamp")) { soap_flag_StartTime1--; continue; } } if (soap_flag_EndTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:EndTime", &a->prodml22__DatedComment::EndTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:EndTime", &a->prodml23__DatedComment::EndTime, "eml23:TimeStamp")) { soap_flag_EndTime1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__DatedComment::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__DatedComment::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -236568,35 +236718,35 @@ SOAP_FMAC3 prodml22__DatedComment * SOAP_FMAC4 soap_in_prodml22__DatedComment(st return NULL; } else - { a = (prodml22__DatedComment *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, sizeof(prodml22__DatedComment), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DatedComment *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, sizeof(prodml23__DatedComment), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DatedComment * SOAP_FMAC2 soap_instantiate_prodml22__DatedComment(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DatedComment * SOAP_FMAC2 soap_instantiate_prodml23__DatedComment(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DatedComment(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DatedComment(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DatedComment *p; - size_t k = sizeof(prodml22__DatedComment); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, n, gsoap_eml2_3_fdelete); + prodml23__DatedComment *p; + size_t k = sizeof(prodml23__DatedComment); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DatedComment); + { p = SOAP_NEW(soap, prodml23__DatedComment); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DatedComment, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DatedComment, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DatedComment location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DatedComment location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -236606,76 +236756,76 @@ SOAP_FMAC1 prodml22__DatedComment * SOAP_FMAC2 soap_instantiate_prodml22__DatedC return p; } -int prodml22__DatedComment::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DatedComment::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DatedComment(soap, tag ? tag : "prodml22:DatedComment", -2, this, type)) + if (soap_out_prodml23__DatedComment(soap, tag ? tag : "prodml23:DatedComment", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DatedComment::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DatedComment::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DatedComment(soap, this, tag, type); + return soap_get_prodml23__DatedComment(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DatedComment * SOAP_FMAC4 soap_get_prodml22__DatedComment(struct soap *soap, prodml22__DatedComment *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DatedComment * SOAP_FMAC4 soap_get_prodml23__DatedComment(struct soap *soap, prodml23__DatedComment *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DatedComment(soap, tag, p, type))) + if ((p = soap_in_prodml23__DatedComment(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CalibrationParameter::soap_default(struct soap *soap) +void prodml23__CalibrationParameter::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__CalibrationParameter::uom = NULL; - soap_default_eml23__String64(soap, &this->prodml22__CalibrationParameter::name); + this->prodml23__CalibrationParameter::uom = NULL; + soap_default_eml23__String64(soap, &this->prodml23__CalibrationParameter::name); } -void prodml22__CalibrationParameter::soap_serialize(struct soap *soap) const +void prodml23__CalibrationParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__CalibrationParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CalibrationParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CalibrationParameter(soap, tag, id, this, type); + return soap_out_prodml23__CalibrationParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CalibrationParameter(struct soap *soap, const char *tag, int id, const prodml22__CalibrationParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CalibrationParameter(struct soap *soap, const char *tag, int id, const prodml23__CalibrationParameter *a, const char *type) { if (!type) - type = "prodml22:CalibrationParameter"; - if (((prodml22__CalibrationParameter*)a)->uom) - { soap_set_attr(soap, "uom", soap_eml23__UomEnum2s(soap, *((prodml22__CalibrationParameter*)a)->uom), 1); + type = "prodml23:CalibrationParameter"; + if (((prodml23__CalibrationParameter*)a)->uom) + { soap_set_attr(soap, "uom", soap_eml23__UomEnum2s(soap, *((prodml23__CalibrationParameter*)a)->uom), 1); } - soap_set_attr(soap, "name", soap_eml23__String642s(soap, ((prodml22__CalibrationParameter*)a)->name), 1); + soap_set_attr(soap, "name", soap_eml23__String642s(soap, ((prodml23__CalibrationParameter*)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_gsoap_eml2_3_prodml22__CalibrationParameter), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter), type)) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CalibrationParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CalibrationParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CalibrationParameter(soap, tag, this, type); + return soap_in_prodml23__CalibrationParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CalibrationParameter * SOAP_FMAC4 soap_in_prodml22__CalibrationParameter(struct soap *soap, const char *tag, prodml22__CalibrationParameter *a, const char *type) +SOAP_FMAC3 prodml23__CalibrationParameter * SOAP_FMAC4 soap_in_prodml23__CalibrationParameter(struct soap *soap, const char *tag, prodml23__CalibrationParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CalibrationParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter, sizeof(prodml22__CalibrationParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CalibrationParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter, sizeof(prodml23__CalibrationParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CalibrationParameter *)a->soap_in(soap, tag, type); + return (prodml23__CalibrationParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -236683,15 +236833,15 @@ SOAP_FMAC3 prodml22__CalibrationParameter * SOAP_FMAC4 soap_in_prodml22__Calibra const char *t = soap_attr_value(soap, "uom", 1, 0); if (t) { - if (!(((prodml22__CalibrationParameter*)a)->uom = soap_new_eml23__UomEnum(soap))) + if (!(((prodml23__CalibrationParameter*)a)->uom = soap_new_eml23__UomEnum(soap))) return NULL; - if (soap_s2eml23__UomEnum(soap, t, ((prodml22__CalibrationParameter*)a)->uom)) + if (soap_s2eml23__UomEnum(soap, t, ((prodml23__CalibrationParameter*)a)->uom)) return NULL; } else if (soap->error) return NULL; } - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "name", 1, 3), &((prodml22__CalibrationParameter*)a)->name)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "name", 1, 3), &((prodml23__CalibrationParameter*)a)->name)) return NULL; if (soap->body && *soap->href != '#') { @@ -236708,35 +236858,35 @@ SOAP_FMAC3 prodml22__CalibrationParameter * SOAP_FMAC4 soap_in_prodml22__Calibra return NULL; } else - { a = (prodml22__CalibrationParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter, sizeof(prodml22__CalibrationParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CalibrationParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter, sizeof(prodml23__CalibrationParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml22__CalibrationParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml23__CalibrationParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CalibrationParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CalibrationParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CalibrationParameter *p; - size_t k = sizeof(prodml22__CalibrationParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter, n, gsoap_eml2_3_fdelete); + prodml23__CalibrationParameter *p; + size_t k = sizeof(prodml23__CalibrationParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CalibrationParameter); + { p = SOAP_NEW(soap, prodml23__CalibrationParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CalibrationParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CalibrationParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CalibrationParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CalibrationParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -236746,88 +236896,88 @@ SOAP_FMAC1 prodml22__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__CalibrationParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CalibrationParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CalibrationParameter(soap, tag ? tag : "prodml22:CalibrationParameter", -2, this, type)) + if (soap_out_prodml23__CalibrationParameter(soap, tag ? tag : "prodml23:CalibrationParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CalibrationParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CalibrationParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CalibrationParameter(soap, this, tag, type); + return soap_get_prodml23__CalibrationParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CalibrationParameter * SOAP_FMAC4 soap_get_prodml22__CalibrationParameter(struct soap *soap, prodml22__CalibrationParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CalibrationParameter * SOAP_FMAC4 soap_get_prodml23__CalibrationParameter(struct soap *soap, prodml23__CalibrationParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CalibrationParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__CalibrationParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractProductQuantity::soap_default(struct soap *soap) +void prodml23__AbstractProductQuantity::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractProductQuantity::Volume = NULL; - this->prodml22__AbstractProductQuantity::Mass = NULL; - this->prodml22__AbstractProductQuantity::Moles = NULL; - soap_default_eml23__String64(soap, &this->prodml22__AbstractProductQuantity::uid); + this->prodml23__AbstractProductQuantity::Volume = NULL; + this->prodml23__AbstractProductQuantity::Mass = NULL; + this->prodml23__AbstractProductQuantity::Moles = NULL; + soap_default_eml23__String64(soap, &this->prodml23__AbstractProductQuantity::uid); } -void prodml22__AbstractProductQuantity::soap_serialize(struct soap *soap) const +void prodml23__AbstractProductQuantity::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__VolumeValue(soap, &this->prodml22__AbstractProductQuantity::Volume); - soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml22__AbstractProductQuantity::Mass); - soap_serialize_PointerToeml23__AmountOfSubstanceMeasure(soap, &this->prodml22__AbstractProductQuantity::Moles); + soap_serialize_PointerToeml23__VolumeValue(soap, &this->prodml23__AbstractProductQuantity::Volume); + soap_serialize_PointerToeml23__MassMeasure(soap, &this->prodml23__AbstractProductQuantity::Mass); + soap_serialize_PointerToeml23__AmountOfSubstanceMeasure(soap, &this->prodml23__AbstractProductQuantity::Moles); #endif } -int prodml22__AbstractProductQuantity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractProductQuantity::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractProductQuantity(soap, tag, id, this, type); + return soap_out_prodml23__AbstractProductQuantity(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractProductQuantity(struct soap *soap, const char *tag, int id, const prodml22__AbstractProductQuantity *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractProductQuantity(struct soap *soap, const char *tag, int id, const prodml23__AbstractProductQuantity *a, const char *type) { if (!type) - type = "prodml22:AbstractProductQuantity"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractProductQuantity*)a)->uid), 1); + type = "prodml23:AbstractProductQuantity"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractProductQuantity*)a)->uid), 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_gsoap_eml2_3_prodml22__AbstractProductQuantity), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity), type)) return soap->error; - if (soap_out_PointerToeml23__VolumeValue(soap, "prodml22:Volume", -1, &a->prodml22__AbstractProductQuantity::Volume, "eml23:VolumeValue")) + if (soap_out_PointerToeml23__VolumeValue(soap, "prodml23:Volume", -1, &a->prodml23__AbstractProductQuantity::Volume, "eml23:VolumeValue")) return soap->error; - if (soap_out_PointerToeml23__MassMeasure(soap, "prodml22:Mass", -1, &a->prodml22__AbstractProductQuantity::Mass, "eml23:MassMeasure")) + if (soap_out_PointerToeml23__MassMeasure(soap, "prodml23:Mass", -1, &a->prodml23__AbstractProductQuantity::Mass, "eml23:MassMeasure")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:Moles", -1, &a->prodml22__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:Moles", -1, &a->prodml23__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractProductQuantity::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractProductQuantity::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractProductQuantity(soap, tag, this, type); + return soap_in_prodml23__AbstractProductQuantity(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractProductQuantity * SOAP_FMAC4 soap_in_prodml22__AbstractProductQuantity(struct soap *soap, const char *tag, prodml22__AbstractProductQuantity *a, const char *type) +SOAP_FMAC3 prodml23__AbstractProductQuantity * SOAP_FMAC4 soap_in_prodml23__AbstractProductQuantity(struct soap *soap, const char *tag, prodml23__AbstractProductQuantity *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractProductQuantity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity, sizeof(prodml22__AbstractProductQuantity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractProductQuantity*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity, sizeof(prodml23__AbstractProductQuantity), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractProductQuantity *)a->soap_in(soap, tag, type); + return (prodml23__AbstractProductQuantity *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractProductQuantity*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractProductQuantity*)a)->uid)) return NULL; size_t soap_flag_Volume1 = 1; size_t soap_flag_Mass1 = 1; @@ -236837,19 +236987,19 @@ SOAP_FMAC3 prodml22__AbstractProductQuantity * SOAP_FMAC4 soap_in_prodml22__Abst for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Volume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeValue(soap, "prodml22:Volume", &a->prodml22__AbstractProductQuantity::Volume, "eml23:VolumeValue")) + { if (soap_in_PointerToeml23__VolumeValue(soap, "prodml23:Volume", &a->prodml23__AbstractProductQuantity::Volume, "eml23:VolumeValue")) { soap_flag_Volume1--; continue; } } if (soap_flag_Mass1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml22:Mass", &a->prodml22__AbstractProductQuantity::Mass, "eml23:MassMeasure")) + { if (soap_in_PointerToeml23__MassMeasure(soap, "prodml23:Mass", &a->prodml23__AbstractProductQuantity::Mass, "eml23:MassMeasure")) { soap_flag_Mass1--; continue; } } if (soap_flag_Moles1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml22:Moles", &a->prodml22__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstanceMeasure(soap, "prodml23:Moles", &a->prodml23__AbstractProductQuantity::Moles, "eml23:AmountOfSubstanceMeasure")) { soap_flag_Moles1--; continue; } @@ -236865,39 +237015,39 @@ SOAP_FMAC3 prodml22__AbstractProductQuantity * SOAP_FMAC4 soap_in_prodml22__Abst return NULL; } else - { a = (prodml22__AbstractProductQuantity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity, sizeof(prodml22__AbstractProductQuantity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractProductQuantity *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity, sizeof(prodml23__AbstractProductQuantity), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodml22__AbstractProductQuantity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodml23__AbstractProductQuantity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractProductQuantity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractProductQuantity(%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, "prodml22:ProductFluid")) - return soap_instantiate_prodml22__ProductFluid(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ServiceFluid")) - return soap_instantiate_prodml22__ServiceFluid(soap, n, NULL, NULL, size); - prodml22__AbstractProductQuantity *p; - size_t k = sizeof(prodml22__AbstractProductQuantity); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductFluid")) + return soap_instantiate_prodml23__ProductFluid(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ServiceFluid")) + return soap_instantiate_prodml23__ServiceFluid(soap, n, NULL, NULL, size); + prodml23__AbstractProductQuantity *p; + size_t k = sizeof(prodml23__AbstractProductQuantity); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractProductQuantity); + { p = SOAP_NEW(soap, prodml23__AbstractProductQuantity); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractProductQuantity, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractProductQuantity, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractProductQuantity location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractProductQuantity location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -236907,92 +237057,92 @@ SOAP_FMAC1 prodml22__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__AbstractProductQuantity::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractProductQuantity::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractProductQuantity(soap, tag ? tag : "prodml22:AbstractProductQuantity", -2, this, type)) + if (soap_out_prodml23__AbstractProductQuantity(soap, tag ? tag : "prodml23:AbstractProductQuantity", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractProductQuantity::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractProductQuantity::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractProductQuantity(soap, this, tag, type); + return soap_get_prodml23__AbstractProductQuantity(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractProductQuantity * SOAP_FMAC4 soap_get_prodml22__AbstractProductQuantity(struct soap *soap, prodml22__AbstractProductQuantity *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractProductQuantity * SOAP_FMAC4 soap_get_prodml23__AbstractProductQuantity(struct soap *soap, prodml23__AbstractProductQuantity *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractProductQuantity(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractProductQuantity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractFluidComponent::soap_default(struct soap *soap) +void prodml23__AbstractFluidComponent::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractFluidComponent::MassFraction = NULL; - this->prodml22__AbstractFluidComponent::VolumeConcentration = NULL; - this->prodml22__AbstractFluidComponent::MoleFraction = NULL; - this->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = NULL; - soap_default_eml23__String64(soap, &this->prodml22__AbstractFluidComponent::uid); + this->prodml23__AbstractFluidComponent::MassFraction = NULL; + this->prodml23__AbstractFluidComponent::VolumeConcentration = NULL; + this->prodml23__AbstractFluidComponent::MoleFraction = NULL; + this->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = NULL; + soap_default_eml23__String64(soap, &this->prodml23__AbstractFluidComponent::uid); } -void prodml22__AbstractFluidComponent::soap_serialize(struct soap *soap) const +void prodml23__AbstractFluidComponent::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml22__AbstractFluidComponent::MassFraction); - soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml22__AbstractFluidComponent::VolumeConcentration); - soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml22__AbstractFluidComponent::MoleFraction); - soap_serialize_PointerToprodml22__DetectableLimitRelativeStateKind(soap, &this->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits); + soap_serialize_PointerToeml23__MassPerMassMeasure(soap, &this->prodml23__AbstractFluidComponent::MassFraction); + soap_serialize_PointerToeml23__MassPerVolumeMeasureExt(soap, &this->prodml23__AbstractFluidComponent::VolumeConcentration); + soap_serialize_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, &this->prodml23__AbstractFluidComponent::MoleFraction); + soap_serialize_PointerToprodml23__DetectableLimitRelativeStateKind(soap, &this->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits); #endif } -int prodml22__AbstractFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractFluidComponent::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractFluidComponent(soap, tag, id, this, type); + return soap_out_prodml23__AbstractFluidComponent(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractFluidComponent(struct soap *soap, const char *tag, int id, const prodml22__AbstractFluidComponent *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractFluidComponent(struct soap *soap, const char *tag, int id, const prodml23__AbstractFluidComponent *a, const char *type) { if (!type) - type = "prodml22:AbstractFluidComponent"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__AbstractFluidComponent*)a)->uid), 1); + type = "prodml23:AbstractFluidComponent"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__AbstractFluidComponent*)a)->uid), 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_gsoap_eml2_3_prodml22__AbstractFluidComponent), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent), type)) return soap->error; - if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", -1, &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + if (soap_out_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", -1, &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", -1, &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + if (soap_out_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", -1, &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", -1, &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + if (soap_out_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", -1, &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) return soap->error; - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", -1, &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", -1, &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractFluidComponent::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractFluidComponent(soap, tag, this, type); + return soap_in_prodml23__AbstractFluidComponent(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractFluidComponent * SOAP_FMAC4 soap_in_prodml22__AbstractFluidComponent(struct soap *soap, const char *tag, prodml22__AbstractFluidComponent *a, const char *type) +SOAP_FMAC3 prodml23__AbstractFluidComponent * SOAP_FMAC4 soap_in_prodml23__AbstractFluidComponent(struct soap *soap, const char *tag, prodml23__AbstractFluidComponent *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent, sizeof(prodml22__AbstractFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractFluidComponent*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent, sizeof(prodml23__AbstractFluidComponent), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractFluidComponent *)a->soap_in(soap, tag, type); + return (prodml23__AbstractFluidComponent *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__AbstractFluidComponent*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__AbstractFluidComponent*)a)->uid)) return NULL; size_t soap_flag_MassFraction1 = 1; size_t soap_flag_VolumeConcentration1 = 1; @@ -237003,25 +237153,25 @@ SOAP_FMAC3 prodml22__AbstractFluidComponent * SOAP_FMAC4 soap_in_prodml22__Abstr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_MassFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml22:MassFraction", &a->prodml22__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) + { if (soap_in_PointerToeml23__MassPerMassMeasure(soap, "prodml23:MassFraction", &a->prodml23__AbstractFluidComponent::MassFraction, "eml23:MassPerMassMeasure")) { soap_flag_MassFraction1--; continue; } } if (soap_flag_VolumeConcentration1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml22:VolumeConcentration", &a->prodml22__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasureExt(soap, "prodml23:VolumeConcentration", &a->prodml23__AbstractFluidComponent::VolumeConcentration, "eml23:MassPerVolumeMeasureExt")) { soap_flag_VolumeConcentration1--; continue; } } if (soap_flag_MoleFraction1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml22:MoleFraction", &a->prodml22__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) + { if (soap_in_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure(soap, "prodml23:MoleFraction", &a->prodml23__AbstractFluidComponent::MoleFraction, "eml23:AmountOfSubstancePerAmountOfSubstanceMeasure")) { soap_flag_MoleFraction1--; continue; } } if (soap_flag_ConcentrationRelativeToDetectableLimits1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, "prodml22:ConcentrationRelativeToDetectableLimits", &a->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml22:DetectableLimitRelativeStateKind")) + { if (soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, "prodml23:ConcentrationRelativeToDetectableLimits", &a->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits, "prodml23:DetectableLimitRelativeStateKind")) { soap_flag_ConcentrationRelativeToDetectableLimits1--; continue; } @@ -237037,49 +237187,49 @@ SOAP_FMAC3 prodml22__AbstractFluidComponent * SOAP_FMAC4 soap_in_prodml22__Abstr return NULL; } else - { a = (prodml22__AbstractFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent, sizeof(prodml22__AbstractFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractFluidComponent *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent, sizeof(prodml23__AbstractFluidComponent), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__AbstractFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__AbstractFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractFluidComponent(%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, "prodml22:FormationWater")) - return soap_instantiate_prodml22__FormationWater(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NaturalGas")) - return soap_instantiate_prodml22__NaturalGas(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PlusFluidComponent")) - return soap_instantiate_prodml22__PlusFluidComponent(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PseudoFluidComponent")) - return soap_instantiate_prodml22__PseudoFluidComponent(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PureFluidComponent")) - return soap_instantiate_prodml22__PureFluidComponent(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:StockTankOil")) - return soap_instantiate_prodml22__StockTankOil(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:SulfurFluidComponent")) - return soap_instantiate_prodml22__SulfurFluidComponent(soap, n, NULL, NULL, size); - prodml22__AbstractFluidComponent *p; - size_t k = sizeof(prodml22__AbstractFluidComponent); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FormationWater")) + return soap_instantiate_prodml23__FormationWater(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NaturalGas")) + return soap_instantiate_prodml23__NaturalGas(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PlusFluidComponent")) + return soap_instantiate_prodml23__PlusFluidComponent(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PseudoFluidComponent")) + return soap_instantiate_prodml23__PseudoFluidComponent(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PureFluidComponent")) + return soap_instantiate_prodml23__PureFluidComponent(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:StockTankOil")) + return soap_instantiate_prodml23__StockTankOil(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:SulfurFluidComponent")) + return soap_instantiate_prodml23__SulfurFluidComponent(soap, n, NULL, NULL, size); + prodml23__AbstractFluidComponent *p; + size_t k = sizeof(prodml23__AbstractFluidComponent); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractFluidComponent); + { p = SOAP_NEW(soap, prodml23__AbstractFluidComponent); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractFluidComponent, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractFluidComponent, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractFluidComponent location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractFluidComponent location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -237089,82 +237239,82 @@ SOAP_FMAC1 prodml22__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__AbstractFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractFluidComponent::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractFluidComponent(soap, tag ? tag : "prodml22:AbstractFluidComponent", -2, this, type)) + if (soap_out_prodml23__AbstractFluidComponent(soap, tag ? tag : "prodml23:AbstractFluidComponent", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractFluidComponent::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractFluidComponent(soap, this, tag, type); + return soap_get_prodml23__AbstractFluidComponent(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractFluidComponent * SOAP_FMAC4 soap_get_prodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractFluidComponent * SOAP_FMAC4 soap_get_prodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractFluidComponent(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractDateTimeClass::soap_default(struct soap *soap) +void prodml23__AbstractDateTimeClass::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractDateTimeClass::DTime = NULL; - this->prodml22__AbstractDateTimeClass::Date = NULL; - this->prodml22__AbstractDateTimeClass::Month = NULL; + this->prodml23__AbstractDateTimeClass::DTime = NULL; + this->prodml23__AbstractDateTimeClass::Date = NULL; + this->prodml23__AbstractDateTimeClass::Month = NULL; } -void prodml22__AbstractDateTimeClass::soap_serialize(struct soap *soap) const +void prodml23__AbstractDateTimeClass::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml22__AbstractDateTimeClass::DTime); - soap_serialize_PointerToxsd__date(soap, &this->prodml22__AbstractDateTimeClass::Date); - soap_serialize_PointerToprodml22__CalendarMonth(soap, &this->prodml22__AbstractDateTimeClass::Month); + soap_serialize_PointerToeml23__TimeStamp(soap, &this->prodml23__AbstractDateTimeClass::DTime); + soap_serialize_PointerToxsd__date(soap, &this->prodml23__AbstractDateTimeClass::Date); + soap_serialize_PointerToprodml23__CalendarMonth(soap, &this->prodml23__AbstractDateTimeClass::Month); #endif } -int prodml22__AbstractDateTimeClass::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractDateTimeClass::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractDateTimeClass(soap, tag, id, this, type); + return soap_out_prodml23__AbstractDateTimeClass(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractDateTimeClass(struct soap *soap, const char *tag, int id, const prodml22__AbstractDateTimeClass *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractDateTimeClass(struct soap *soap, const char *tag, int id, const prodml23__AbstractDateTimeClass *a, const char *type) { if (!type) - type = "prodml22:AbstractDateTimeClass"; + type = "prodml23:AbstractDateTimeClass"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass), type)) return soap->error; - if (soap_out_PointerToeml23__TimeStamp(soap, "prodml22:DTime", -1, &a->prodml22__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) + if (soap_out_PointerToeml23__TimeStamp(soap, "prodml23:DTime", -1, &a->prodml23__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) return soap->error; - if (soap_out_PointerToxsd__date(soap, "prodml22:Date", -1, &a->prodml22__AbstractDateTimeClass::Date, "xsd:date")) + if (soap_out_PointerToxsd__date(soap, "prodml23:Date", -1, &a->prodml23__AbstractDateTimeClass::Date, "xsd:date")) return soap->error; - if (soap_out_PointerToprodml22__CalendarMonth(soap, "prodml22:Month", -1, &a->prodml22__AbstractDateTimeClass::Month, "prodml22:CalendarMonth")) + if (soap_out_PointerToprodml23__CalendarMonth(soap, "prodml23:Month", -1, &a->prodml23__AbstractDateTimeClass::Month, "prodml23:CalendarMonth")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractDateTimeClass::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractDateTimeClass::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractDateTimeClass(soap, tag, this, type); + return soap_in_prodml23__AbstractDateTimeClass(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractDateTimeClass * SOAP_FMAC4 soap_in_prodml22__AbstractDateTimeClass(struct soap *soap, const char *tag, prodml22__AbstractDateTimeClass *a, const char *type) +SOAP_FMAC3 prodml23__AbstractDateTimeClass * SOAP_FMAC4 soap_in_prodml23__AbstractDateTimeClass(struct soap *soap, const char *tag, prodml23__AbstractDateTimeClass *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractDateTimeClass*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass, sizeof(prodml22__AbstractDateTimeClass), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractDateTimeClass*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass, sizeof(prodml23__AbstractDateTimeClass), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractDateTimeClass *)a->soap_in(soap, tag, type); + return (prodml23__AbstractDateTimeClass *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -237176,19 +237326,19 @@ SOAP_FMAC3 prodml22__AbstractDateTimeClass * SOAP_FMAC4 soap_in_prodml22__Abstra for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_DTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml22:DTime", &a->prodml22__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) + { if (soap_in_PointerToeml23__TimeStamp(soap, "prodml23:DTime", &a->prodml23__AbstractDateTimeClass::DTime, "eml23:TimeStamp")) { soap_flag_DTime1--; continue; } } if (soap_flag_Date1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToxsd__date(soap, "prodml22:Date", &a->prodml22__AbstractDateTimeClass::Date, "xsd:date")) + { if (soap_in_PointerToxsd__date(soap, "prodml23:Date", &a->prodml23__AbstractDateTimeClass::Date, "xsd:date")) { soap_flag_Date1--; continue; } } if (soap_flag_Month1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToprodml22__CalendarMonth(soap, "prodml22:Month", &a->prodml22__AbstractDateTimeClass::Month, "prodml22:CalendarMonth")) + { if (soap_in_PointerToprodml23__CalendarMonth(soap, "prodml23:Month", &a->prodml23__AbstractDateTimeClass::Month, "prodml23:CalendarMonth")) { soap_flag_Month1--; continue; } @@ -237204,39 +237354,39 @@ SOAP_FMAC3 prodml22__AbstractDateTimeClass * SOAP_FMAC4 soap_in_prodml22__Abstra return NULL; } else - { a = (prodml22__AbstractDateTimeClass *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass, sizeof(prodml22__AbstractDateTimeClass), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractDateTimeClass *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass, sizeof(prodml23__AbstractDateTimeClass), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml22__AbstractDateTimeClass(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml23__AbstractDateTimeClass(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractDateTimeClass(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractDateTimeClass(%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, "prodml22:StartEndDate")) - return soap_instantiate_prodml22__StartEndDate(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:StartEndTime")) - return soap_instantiate_prodml22__StartEndTime(soap, n, NULL, NULL, size); - prodml22__AbstractDateTimeClass *p; - size_t k = sizeof(prodml22__AbstractDateTimeClass); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:StartEndDate")) + return soap_instantiate_prodml23__StartEndDate(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:StartEndTime")) + return soap_instantiate_prodml23__StartEndTime(soap, n, NULL, NULL, size); + prodml23__AbstractDateTimeClass *p; + size_t k = sizeof(prodml23__AbstractDateTimeClass); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractDateTimeClass); + { p = SOAP_NEW(soap, prodml23__AbstractDateTimeClass); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractDateTimeClass, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractDateTimeClass, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractDateTimeClass location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractDateTimeClass location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -237246,94 +237396,94 @@ SOAP_FMAC1 prodml22__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__AbstractDateTimeClass::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractDateTimeClass::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractDateTimeClass(soap, tag ? tag : "prodml22:AbstractDateTimeClass", -2, this, type)) + if (soap_out_prodml23__AbstractDateTimeClass(soap, tag ? tag : "prodml23:AbstractDateTimeClass", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractDateTimeClass::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractDateTimeClass::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractDateTimeClass(soap, this, tag, type); + return soap_get_prodml23__AbstractDateTimeClass(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractDateTimeClass * SOAP_FMAC4 soap_get_prodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractDateTimeClass * SOAP_FMAC4 soap_get_prodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractDateTimeClass(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractDateTimeClass(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Standing_Undersaturated::soap_default(struct soap *soap) +void prodml23__Standing_Undersaturated::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); - this->prodml22__Standing_Undersaturated::ReservoirTemperature = NULL; - this->prodml22__Standing_Undersaturated::SolutionGasOilRatio = NULL; + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); + this->prodml23__Standing_Undersaturated::ReservoirTemperature = NULL; + this->prodml23__Standing_Undersaturated::SolutionGasOilRatio = NULL; } -void prodml22__Standing_Undersaturated::soap_serialize(struct soap *soap) const +void prodml23__Standing_Undersaturated::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__Standing_Undersaturated::ReservoirTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__Standing_Undersaturated::SolutionGasOilRatio); - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__Standing_Undersaturated::ReservoirTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__Standing_Undersaturated::SolutionGasOilRatio); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); #endif } -int prodml22__Standing_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Standing_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Standing_Undersaturated(soap, tag, id, this, type); + return soap_out_prodml23__Standing_Undersaturated(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Standing_Undersaturated(struct soap *soap, const char *tag, int id, const prodml22__Standing_Undersaturated *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Standing_Undersaturated(struct soap *soap, const char *tag, int id, const prodml23__Standing_Undersaturated *a, const char *type) { if (!type) - type = "prodml22:Standing-Undersaturated"; + type = "prodml23:Standing-Undersaturated"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated), type ? type : "prodml22:Standing-Undersaturated")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated), type ? type : "prodml23:Standing-Undersaturated")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__Standing_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__Standing_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__Standing_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__Standing_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Standing_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Standing_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Standing_Undersaturated(soap, tag, this, type); + return soap_in_prodml23__Standing_Undersaturated(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Standing_Undersaturated * SOAP_FMAC4 soap_in_prodml22__Standing_Undersaturated(struct soap *soap, const char *tag, prodml22__Standing_Undersaturated *a, const char *type) +SOAP_FMAC3 prodml23__Standing_Undersaturated * SOAP_FMAC4 soap_in_prodml23__Standing_Undersaturated(struct soap *soap, const char *tag, prodml23__Standing_Undersaturated *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Standing_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated, sizeof(prodml22__Standing_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Standing_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated, sizeof(prodml23__Standing_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Standing_Undersaturated *)a->soap_in(soap, tag, type); + return (prodml23__Standing_Undersaturated *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -237351,55 +237501,55 @@ SOAP_FMAC3 prodml22__Standing_Undersaturated * SOAP_FMAC4 soap_in_prodml22__Stan for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_UndersaturatedOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_UndersaturatedOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_BubblePointPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure2--; continue; } } if (soap_flag_Pressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure2--; continue; } } if (soap_flag_ReservoirTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__Standing_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__Standing_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature1--; continue; } } if (soap_flag_SolutionGasOilRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__Standing_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__Standing_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio1--; continue; } @@ -237415,35 +237565,35 @@ SOAP_FMAC3 prodml22__Standing_Undersaturated * SOAP_FMAC4 soap_in_prodml22__Stan return NULL; } else - { a = (prodml22__Standing_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated, sizeof(prodml22__Standing_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Standing_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated, sizeof(prodml23__Standing_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__Standing_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__Standing_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Standing_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Standing_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Standing_Undersaturated *p; - size_t k = sizeof(prodml22__Standing_Undersaturated); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated, n, gsoap_eml2_3_fdelete); + prodml23__Standing_Undersaturated *p; + size_t k = sizeof(prodml23__Standing_Undersaturated); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Standing_Undersaturated); + { p = SOAP_NEW(soap, prodml23__Standing_Undersaturated); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Standing_Undersaturated, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Standing_Undersaturated, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Standing_Undersaturated location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Standing_Undersaturated location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -237453,86 +237603,86 @@ SOAP_FMAC1 prodml22__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__Standing_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Standing_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Standing_Undersaturated(soap, tag ? tag : "prodml22:Standing-Undersaturated", -2, this, type)) + if (soap_out_prodml23__Standing_Undersaturated(soap, tag ? tag : "prodml23:Standing-Undersaturated", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Standing_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Standing_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Standing_Undersaturated(soap, this, tag, type); + return soap_get_prodml23__Standing_Undersaturated(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Standing_Undersaturated * SOAP_FMAC4 soap_get_prodml22__Standing_Undersaturated(struct soap *soap, prodml22__Standing_Undersaturated *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Standing_Undersaturated * SOAP_FMAC4 soap_get_prodml23__Standing_Undersaturated(struct soap *soap, prodml23__Standing_Undersaturated *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Standing_Undersaturated(soap, tag, p, type))) + if ((p = soap_in_prodml23__Standing_Undersaturated(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Standing_Dead::soap_default(struct soap *soap) +void prodml23__Standing_Dead::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_default(soap); - this->prodml22__Standing_Dead::OilGravityAtStockTank = NULL; + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_default(soap); + this->prodml23__Standing_Dead::OilGravityAtStockTank = NULL; } -void prodml22__Standing_Dead::soap_serialize(struct soap *soap) const +void prodml23__Standing_Dead::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__Standing_Dead::OilGravityAtStockTank); - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__Standing_Dead::OilGravityAtStockTank); + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); #endif } -int prodml22__Standing_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Standing_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Standing_Dead(soap, tag, id, this, type); + return soap_out_prodml23__Standing_Dead(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Standing_Dead(struct soap *soap, const char *tag, int id, const prodml22__Standing_Dead *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Standing_Dead(struct soap *soap, const char *tag, int id, const prodml23__Standing_Dead *a, const char *type) { if (!type) - type = "prodml22:Standing-Dead"; + type = "prodml23:Standing-Dead"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead), type ? type : "prodml22:Standing-Dead")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead), type ? type : "prodml23:Standing-Dead")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilGravityAtStockTank", -1, &a->prodml22__Standing_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilGravityAtStockTank", -1, &a->prodml23__Standing_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Standing_Dead::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Standing_Dead::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Standing_Dead(soap, tag, this, type); + return soap_in_prodml23__Standing_Dead(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Standing_Dead * SOAP_FMAC4 soap_in_prodml22__Standing_Dead(struct soap *soap, const char *tag, prodml22__Standing_Dead *a, const char *type) +SOAP_FMAC3 prodml23__Standing_Dead * SOAP_FMAC4 soap_in_prodml23__Standing_Dead(struct soap *soap, const char *tag, prodml23__Standing_Dead *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Standing_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead, sizeof(prodml22__Standing_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Standing_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead, sizeof(prodml23__Standing_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Standing_Dead *)a->soap_in(soap, tag, type); + return (prodml23__Standing_Dead *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -237547,37 +237697,37 @@ SOAP_FMAC3 prodml22__Standing_Dead * SOAP_FMAC4 soap_in_prodml22__Standing_Dead( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_OilGravityAtStockTank1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilGravityAtStockTank", &a->prodml22__Standing_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilGravityAtStockTank", &a->prodml23__Standing_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) { soap_flag_OilGravityAtStockTank1--; continue; } @@ -237593,35 +237743,35 @@ SOAP_FMAC3 prodml22__Standing_Dead * SOAP_FMAC4 soap_in_prodml22__Standing_Dead( return NULL; } else - { a = (prodml22__Standing_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead, sizeof(prodml22__Standing_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Standing_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead, sizeof(prodml23__Standing_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml22__Standing_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml23__Standing_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Standing_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Standing_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Standing_Dead *p; - size_t k = sizeof(prodml22__Standing_Dead); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead, n, gsoap_eml2_3_fdelete); + prodml23__Standing_Dead *p; + size_t k = sizeof(prodml23__Standing_Dead); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Standing_Dead); + { p = SOAP_NEW(soap, prodml23__Standing_Dead); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Standing_Dead, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Standing_Dead, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Standing_Dead location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Standing_Dead location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -237631,84 +237781,84 @@ SOAP_FMAC1 prodml22__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml22__Stand return p; } -int prodml22__Standing_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Standing_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Standing_Dead(soap, tag ? tag : "prodml22:Standing-Dead", -2, this, type)) + if (soap_out_prodml23__Standing_Dead(soap, tag ? tag : "prodml23:Standing-Dead", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Standing_Dead::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Standing_Dead::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Standing_Dead(soap, this, tag, type); + return soap_get_prodml23__Standing_Dead(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Standing_Dead * SOAP_FMAC4 soap_get_prodml22__Standing_Dead(struct soap *soap, prodml22__Standing_Dead *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Standing_Dead * SOAP_FMAC4 soap_get_prodml23__Standing_Dead(struct soap *soap, prodml23__Standing_Dead *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Standing_Dead(soap, tag, p, type))) + if ((p = soap_in_prodml23__Standing_Dead(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Standing_BubblePoint::soap_default(struct soap *soap) +void prodml23__Standing_BubblePoint::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); } -void prodml22__Standing_BubblePoint::soap_serialize(struct soap *soap) const +void prodml23__Standing_BubblePoint::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); #endif } -int prodml22__Standing_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Standing_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Standing_BubblePoint(soap, tag, id, this, type); + return soap_out_prodml23__Standing_BubblePoint(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Standing_BubblePoint(struct soap *soap, const char *tag, int id, const prodml22__Standing_BubblePoint *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Standing_BubblePoint(struct soap *soap, const char *tag, int id, const prodml23__Standing_BubblePoint *a, const char *type) { if (!type) - type = "prodml22:Standing-BubblePoint"; + type = "prodml23:Standing-BubblePoint"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint), type ? type : "prodml22:Standing-BubblePoint")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint), type ? type : "prodml23:Standing-BubblePoint")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Standing_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Standing_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Standing_BubblePoint(soap, tag, this, type); + return soap_in_prodml23__Standing_BubblePoint(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Standing_BubblePoint * SOAP_FMAC4 soap_in_prodml22__Standing_BubblePoint(struct soap *soap, const char *tag, prodml22__Standing_BubblePoint *a, const char *type) +SOAP_FMAC3 prodml23__Standing_BubblePoint * SOAP_FMAC4 soap_in_prodml23__Standing_BubblePoint(struct soap *soap, const char *tag, prodml23__Standing_BubblePoint *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Standing_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint, sizeof(prodml22__Standing_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Standing_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint, sizeof(prodml23__Standing_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Standing_BubblePoint *)a->soap_in(soap, tag, type); + return (prodml23__Standing_BubblePoint *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -237723,37 +237873,37 @@ SOAP_FMAC3 prodml22__Standing_BubblePoint * SOAP_FMAC4 soap_in_prodml22__Standin for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_SolutionGasOilRatio2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio2--; continue; } @@ -237769,35 +237919,35 @@ SOAP_FMAC3 prodml22__Standing_BubblePoint * SOAP_FMAC4 soap_in_prodml22__Standin return NULL; } else - { a = (prodml22__Standing_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint, sizeof(prodml22__Standing_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Standing_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint, sizeof(prodml23__Standing_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__Standing_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__Standing_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Standing_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Standing_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Standing_BubblePoint *p; - size_t k = sizeof(prodml22__Standing_BubblePoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint, n, gsoap_eml2_3_fdelete); + prodml23__Standing_BubblePoint *p; + size_t k = sizeof(prodml23__Standing_BubblePoint); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Standing_BubblePoint); + { p = SOAP_NEW(soap, prodml23__Standing_BubblePoint); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Standing_BubblePoint, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Standing_BubblePoint, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Standing_BubblePoint location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Standing_BubblePoint location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -237807,82 +237957,82 @@ SOAP_FMAC1 prodml22__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__Standing_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Standing_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Standing_BubblePoint(soap, tag ? tag : "prodml22:Standing-BubblePoint", -2, this, type)) + if (soap_out_prodml23__Standing_BubblePoint(soap, tag ? tag : "prodml23:Standing-BubblePoint", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Standing_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Standing_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Standing_BubblePoint(soap, this, tag, type); + return soap_get_prodml23__Standing_BubblePoint(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Standing_BubblePoint * SOAP_FMAC4 soap_get_prodml22__Standing_BubblePoint(struct soap *soap, prodml22__Standing_BubblePoint *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Standing_BubblePoint * SOAP_FMAC4 soap_get_prodml23__Standing_BubblePoint(struct soap *soap, prodml23__Standing_BubblePoint *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Standing_BubblePoint(soap, tag, p, type))) + if ((p = soap_in_prodml23__Standing_BubblePoint(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Srk_USCOREEOS::soap_default(struct soap *soap) +void prodml23__Srk_USCOREEOS::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalEoSModel::soap_default(soap); + this->prodml23__AbstractCompositionalEoSModel::soap_default(soap); } -void prodml22__Srk_USCOREEOS::soap_serialize(struct soap *soap) const +void prodml23__Srk_USCOREEOS::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalEoSModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalEoSModel::soap_serialize(soap); #endif } -int prodml22__Srk_USCOREEOS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Srk_USCOREEOS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Srk_USCOREEOS(soap, tag, id, this, type); + return soap_out_prodml23__Srk_USCOREEOS(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Srk_USCOREEOS(struct soap *soap, const char *tag, int id, const prodml22__Srk_USCOREEOS *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Srk_USCOREEOS(struct soap *soap, const char *tag, int id, const prodml23__Srk_USCOREEOS *a, const char *type) { if (!type) - type = "prodml22:Srk_EOS"; + type = "prodml23:Srk_EOS"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS), type ? type : "prodml22:Srk_EOS")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS), type ? type : "prodml23:Srk_EOS")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Srk_USCOREEOS::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Srk_USCOREEOS::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Srk_USCOREEOS(soap, tag, this, type); + return soap_in_prodml23__Srk_USCOREEOS(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Srk_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Srk_USCOREEOS(struct soap *soap, const char *tag, prodml22__Srk_USCOREEOS *a, const char *type) +SOAP_FMAC3 prodml23__Srk_USCOREEOS * SOAP_FMAC4 soap_in_prodml23__Srk_USCOREEOS(struct soap *soap, const char *tag, prodml23__Srk_USCOREEOS *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Srk_USCOREEOS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS, sizeof(prodml22__Srk_USCOREEOS), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Srk_USCOREEOS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS, sizeof(prodml23__Srk_USCOREEOS), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Srk_USCOREEOS *)a->soap_in(soap, tag, type); + return (prodml23__Srk_USCOREEOS *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -237896,31 +238046,31 @@ SOAP_FMAC3 prodml22__Srk_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Srk_USCOREEOS( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } @@ -237936,35 +238086,35 @@ SOAP_FMAC3 prodml22__Srk_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Srk_USCOREEOS( return NULL; } else - { a = (prodml22__Srk_USCOREEOS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS, SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS, sizeof(prodml22__Srk_USCOREEOS), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Srk_USCOREEOS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS, SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS, sizeof(prodml23__Srk_USCOREEOS), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__Srk_USCOREEOS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__Srk_USCOREEOS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Srk_USCOREEOS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Srk_USCOREEOS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Srk_USCOREEOS *p; - size_t k = sizeof(prodml22__Srk_USCOREEOS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS, n, gsoap_eml2_3_fdelete); + prodml23__Srk_USCOREEOS *p; + size_t k = sizeof(prodml23__Srk_USCOREEOS); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Srk_USCOREEOS); + { p = SOAP_NEW(soap, prodml23__Srk_USCOREEOS); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Srk_USCOREEOS, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Srk_USCOREEOS, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Srk_USCOREEOS location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Srk_USCOREEOS location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -237974,82 +238124,82 @@ SOAP_FMAC1 prodml22__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__Srk_U return p; } -int prodml22__Srk_USCOREEOS::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Srk_USCOREEOS::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Srk_USCOREEOS(soap, tag ? tag : "prodml22:Srk_EOS", -2, this, type)) + if (soap_out_prodml23__Srk_USCOREEOS(soap, tag ? tag : "prodml23:Srk_EOS", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Srk_USCOREEOS::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Srk_USCOREEOS::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Srk_USCOREEOS(soap, this, tag, type); + return soap_get_prodml23__Srk_USCOREEOS(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Srk_USCOREEOS * SOAP_FMAC4 soap_get_prodml22__Srk_USCOREEOS(struct soap *soap, prodml22__Srk_USCOREEOS *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Srk_USCOREEOS * SOAP_FMAC4 soap_get_prodml23__Srk_USCOREEOS(struct soap *soap, prodml23__Srk_USCOREEOS *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Srk_USCOREEOS(soap, tag, p, type))) + if ((p = soap_in_prodml23__Srk_USCOREEOS(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ReferenceSeparatorStage::soap_default(struct soap *soap) +void prodml23__ReferenceSeparatorStage::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__ReferenceSeparatorStage::SeparatorPressure = NULL; - this->prodml22__ReferenceSeparatorStage::SeparatorTemperature = NULL; - this->prodml22__ReferenceSeparatorStage::SeparatorNumber = NULL; + this->prodml23__ReferenceSeparatorStage::SeparatorPressure = NULL; + this->prodml23__ReferenceSeparatorStage::SeparatorTemperature = NULL; + this->prodml23__ReferenceSeparatorStage::SeparatorNumber = NULL; } -void prodml22__ReferenceSeparatorStage::soap_serialize(struct soap *soap) const +void prodml23__ReferenceSeparatorStage::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__ReferenceSeparatorStage::SeparatorPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasureExt(soap, &this->prodml22__ReferenceSeparatorStage::SeparatorTemperature); - soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml22__ReferenceSeparatorStage::SeparatorNumber); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__ReferenceSeparatorStage::SeparatorPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasureExt(soap, &this->prodml23__ReferenceSeparatorStage::SeparatorTemperature); + soap_serialize_PointerToeml23__NonNegativeLong(soap, &this->prodml23__ReferenceSeparatorStage::SeparatorNumber); #endif } -int prodml22__ReferenceSeparatorStage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ReferenceSeparatorStage::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ReferenceSeparatorStage(soap, tag, id, this, type); + return soap_out_prodml23__ReferenceSeparatorStage(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReferenceSeparatorStage(struct soap *soap, const char *tag, int id, const prodml22__ReferenceSeparatorStage *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReferenceSeparatorStage(struct soap *soap, const char *tag, int id, const prodml23__ReferenceSeparatorStage *a, const char *type) { if (!type) - type = "prodml22:ReferenceSeparatorStage"; + type = "prodml23:ReferenceSeparatorStage"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage), type)) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:SeparatorPressure", -1, &a->prodml22__ReferenceSeparatorStage::SeparatorPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:SeparatorPressure", -1, &a->prodml23__ReferenceSeparatorStage::SeparatorPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasureExt(soap, "prodml22:SeparatorTemperature", -1, &a->prodml22__ReferenceSeparatorStage::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasureExt")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasureExt(soap, "prodml23:SeparatorTemperature", -1, &a->prodml23__ReferenceSeparatorStage::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasureExt")) return soap->error; - if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml22:SeparatorNumber", -1, &a->prodml22__ReferenceSeparatorStage::SeparatorNumber, "eml23:NonNegativeLong")) + if (soap_out_PointerToeml23__NonNegativeLong(soap, "prodml23:SeparatorNumber", -1, &a->prodml23__ReferenceSeparatorStage::SeparatorNumber, "eml23:NonNegativeLong")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ReferenceSeparatorStage::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReferenceSeparatorStage::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ReferenceSeparatorStage(soap, tag, this, type); + return soap_in_prodml23__ReferenceSeparatorStage(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ReferenceSeparatorStage * SOAP_FMAC4 soap_in_prodml22__ReferenceSeparatorStage(struct soap *soap, const char *tag, prodml22__ReferenceSeparatorStage *a, const char *type) +SOAP_FMAC3 prodml23__ReferenceSeparatorStage * SOAP_FMAC4 soap_in_prodml23__ReferenceSeparatorStage(struct soap *soap, const char *tag, prodml23__ReferenceSeparatorStage *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ReferenceSeparatorStage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, sizeof(prodml22__ReferenceSeparatorStage), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ReferenceSeparatorStage*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, sizeof(prodml23__ReferenceSeparatorStage), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ReferenceSeparatorStage *)a->soap_in(soap, tag, type); + return (prodml23__ReferenceSeparatorStage *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -238061,19 +238211,19 @@ SOAP_FMAC3 prodml22__ReferenceSeparatorStage * SOAP_FMAC4 soap_in_prodml22__Refe for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_SeparatorPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:SeparatorPressure", &a->prodml22__ReferenceSeparatorStage::SeparatorPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:SeparatorPressure", &a->prodml23__ReferenceSeparatorStage::SeparatorPressure, "eml23:AbstractPressureValue")) { soap_flag_SeparatorPressure1--; continue; } } if (soap_flag_SeparatorTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasureExt(soap, "prodml22:SeparatorTemperature", &a->prodml22__ReferenceSeparatorStage::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasureExt")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasureExt(soap, "prodml23:SeparatorTemperature", &a->prodml23__ReferenceSeparatorStage::SeparatorTemperature, "eml23:ThermodynamicTemperatureMeasureExt")) { soap_flag_SeparatorTemperature1--; continue; } } if (soap_flag_SeparatorNumber1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml22:SeparatorNumber", &a->prodml22__ReferenceSeparatorStage::SeparatorNumber, "eml23:NonNegativeLong")) + { if (soap_in_PointerToeml23__NonNegativeLong(soap, "prodml23:SeparatorNumber", &a->prodml23__ReferenceSeparatorStage::SeparatorNumber, "eml23:NonNegativeLong")) { soap_flag_SeparatorNumber1--; continue; } @@ -238089,35 +238239,35 @@ SOAP_FMAC3 prodml22__ReferenceSeparatorStage * SOAP_FMAC4 soap_in_prodml22__Refe return NULL; } else - { a = (prodml22__ReferenceSeparatorStage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, sizeof(prodml22__ReferenceSeparatorStage), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ReferenceSeparatorStage *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, sizeof(prodml23__ReferenceSeparatorStage), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodml22__ReferenceSeparatorStage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodml23__ReferenceSeparatorStage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ReferenceSeparatorStage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ReferenceSeparatorStage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ReferenceSeparatorStage *p; - size_t k = sizeof(prodml22__ReferenceSeparatorStage); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, n, gsoap_eml2_3_fdelete); + prodml23__ReferenceSeparatorStage *p; + size_t k = sizeof(prodml23__ReferenceSeparatorStage); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ReferenceSeparatorStage); + { p = SOAP_NEW(soap, prodml23__ReferenceSeparatorStage); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ReferenceSeparatorStage, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ReferenceSeparatorStage, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ReferenceSeparatorStage location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ReferenceSeparatorStage location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -238127,74 +238277,74 @@ SOAP_FMAC1 prodml22__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__ReferenceSeparatorStage::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ReferenceSeparatorStage::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ReferenceSeparatorStage(soap, tag ? tag : "prodml22:ReferenceSeparatorStage", -2, this, type)) + if (soap_out_prodml23__ReferenceSeparatorStage(soap, tag ? tag : "prodml23:ReferenceSeparatorStage", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ReferenceSeparatorStage::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ReferenceSeparatorStage::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ReferenceSeparatorStage(soap, this, tag, type); + return soap_get_prodml23__ReferenceSeparatorStage(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ReferenceSeparatorStage * SOAP_FMAC4 soap_get_prodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReferenceSeparatorStage * SOAP_FMAC4 soap_get_prodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ReferenceSeparatorStage(soap, tag, p, type))) + if ((p = soap_in_prodml23__ReferenceSeparatorStage(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PvtModelParameterSet::soap_default(struct soap *soap) +void prodml23__PvtModelParameterSet::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, &this->prodml22__PvtModelParameterSet::Coefficient); + soap_default_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, &this->prodml23__PvtModelParameterSet::Coefficient); } -void prodml22__PvtModelParameterSet::soap_serialize(struct soap *soap) const +void prodml23__PvtModelParameterSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, &this->prodml22__PvtModelParameterSet::Coefficient); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, &this->prodml23__PvtModelParameterSet::Coefficient); #endif } -int prodml22__PvtModelParameterSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PvtModelParameterSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PvtModelParameterSet(soap, tag, id, this, type); + return soap_out_prodml23__PvtModelParameterSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameterSet(struct soap *soap, const char *tag, int id, const prodml22__PvtModelParameterSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameterSet(struct soap *soap, const char *tag, int id, const prodml23__PvtModelParameterSet *a, const char *type) { if (!type) - type = "prodml22:PvtModelParameterSet"; + type = "prodml23:PvtModelParameterSet"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, "prodml22:Coefficient", -1, &a->prodml22__PvtModelParameterSet::Coefficient, "prodml22:PvtModelParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, "prodml23:Coefficient", -1, &a->prodml23__PvtModelParameterSet::Coefficient, "prodml23:PvtModelParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PvtModelParameterSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PvtModelParameterSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PvtModelParameterSet(soap, tag, this, type); + return soap_in_prodml23__PvtModelParameterSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterSet(struct soap *soap, const char *tag, prodml22__PvtModelParameterSet *a, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml23__PvtModelParameterSet(struct soap *soap, const char *tag, prodml23__PvtModelParameterSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PvtModelParameterSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet, sizeof(prodml22__PvtModelParameterSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PvtModelParameterSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet, sizeof(prodml23__PvtModelParameterSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PvtModelParameterSet *)a->soap_in(soap, tag, type); + return (prodml23__PvtModelParameterSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -238203,7 +238353,7 @@ SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml22__PvtMode for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, "prodml22:Coefficient", &a->prodml22__PvtModelParameterSet::Coefficient, "prodml22:PvtModelParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, "prodml23:Coefficient", &a->prodml23__PvtModelParameterSet::Coefficient, "prodml23:PvtModelParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -238215,7 +238365,7 @@ SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml22__PvtMode } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__PvtModelParameterSet::Coefficient.size() < 1)) + if ((a->prodml23__PvtModelParameterSet::Coefficient.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -238225,35 +238375,35 @@ SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml22__PvtMode return NULL; } else - { a = (prodml22__PvtModelParameterSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet, sizeof(prodml22__PvtModelParameterSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PvtModelParameterSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet, sizeof(prodml23__PvtModelParameterSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__PvtModelParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__PvtModelParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PvtModelParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PvtModelParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PvtModelParameterSet *p; - size_t k = sizeof(prodml22__PvtModelParameterSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet, n, gsoap_eml2_3_fdelete); + prodml23__PvtModelParameterSet *p; + size_t k = sizeof(prodml23__PvtModelParameterSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PvtModelParameterSet); + { p = SOAP_NEW(soap, prodml23__PvtModelParameterSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PvtModelParameterSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PvtModelParameterSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PvtModelParameterSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PvtModelParameterSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -238263,119 +238413,119 @@ SOAP_FMAC1 prodml22__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__PvtModelParameterSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PvtModelParameterSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PvtModelParameterSet(soap, tag ? tag : "prodml22:PvtModelParameterSet", -2, this, type)) + if (soap_out_prodml23__PvtModelParameterSet(soap, tag ? tag : "prodml23:PvtModelParameterSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PvtModelParameterSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PvtModelParameterSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PvtModelParameterSet(soap, this, tag, type); + return soap_get_prodml23__PvtModelParameterSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_get_prodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameterSet * SOAP_FMAC4 soap_get_prodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PvtModelParameterSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__PvtModelParameterSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PvtModelParameter::soap_default(struct soap *soap) +void prodml23__PvtModelParameter::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractMeasure(soap, &this->prodml22__PvtModelParameter::__item); - soap_default_prodml22__PvtModelParameterKindExt(soap, &this->prodml22__PvtModelParameter::kind); - this->prodml22__PvtModelParameter::name = NULL; + soap_default_eml23__AbstractMeasure(soap, &this->prodml23__PvtModelParameter::__item); + soap_default_prodml23__PvtModelParameterKindExt(soap, &this->prodml23__PvtModelParameter::kind); + this->prodml23__PvtModelParameter::name = NULL; } -void prodml22__PvtModelParameter::soap_serialize(struct soap *soap) const +void prodml23__PvtModelParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__PvtModelParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PvtModelParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PvtModelParameter(soap, tag, id, this, type); + return soap_out_prodml23__PvtModelParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameter(struct soap *soap, const char *tag, int id, const prodml22__PvtModelParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameter(struct soap *soap, const char *tag, int id, const prodml23__PvtModelParameter *a, const char *type) { if (!type) - type = "prodml22:PvtModelParameter"; - soap_set_attr(soap, "kind", soap_prodml22__PvtModelParameterKindExt2s(soap, ((prodml22__PvtModelParameter*)a)->kind), 1); - if (((prodml22__PvtModelParameter*)a)->name) - { soap_set_attr(soap, "name", soap_eml23__String642s(soap, *((prodml22__PvtModelParameter*)a)->name), 1); + type = "prodml23:PvtModelParameter"; + soap_set_attr(soap, "kind", soap_prodml23__PvtModelParameterKindExt2s(soap, ((prodml23__PvtModelParameter*)a)->kind), 1); + if (((prodml23__PvtModelParameter*)a)->name) + { soap_set_attr(soap, "name", soap_eml23__String642s(soap, *((prodml23__PvtModelParameter*)a)->name), 1); } (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml22__PvtModelParameter::__item, "prodml22:PvtModelParameter"); + return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml23__PvtModelParameter::__item, "prodml23:PvtModelParameter"); } -void *prodml22__PvtModelParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PvtModelParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PvtModelParameter(soap, tag, this, type); + return soap_in_prodml23__PvtModelParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PvtModelParameter * SOAP_FMAC4 soap_in_prodml22__PvtModelParameter(struct soap *soap, const char *tag, prodml22__PvtModelParameter *a, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameter * SOAP_FMAC4 soap_in_prodml23__PvtModelParameter(struct soap *soap, const char *tag, prodml23__PvtModelParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__PvtModelParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter, sizeof(prodml22__PvtModelParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__PvtModelParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter, sizeof(prodml23__PvtModelParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter) - return (prodml22__PvtModelParameter *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter) + return (prodml23__PvtModelParameter *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__PvtModelParameterKindExt(soap, soap_attr_value(soap, "kind", 1, 3), &((prodml22__PvtModelParameter*)a)->kind)) + if (soap_s2prodml23__PvtModelParameterKindExt(soap, soap_attr_value(soap, "kind", 1, 3), &((prodml23__PvtModelParameter*)a)->kind)) return NULL; { const char *t = soap_attr_value(soap, "name", 1, 0); if (t) { - if (!(((prodml22__PvtModelParameter*)a)->name = soap_new_eml23__String64(soap))) + if (!(((prodml23__PvtModelParameter*)a)->name = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__PvtModelParameter*)a)->name)) + if (soap_s2eml23__String64(soap, t, ((prodml23__PvtModelParameter*)a)->name)) return NULL; } else if (soap->error) return NULL; } - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml22__PvtModelParameter::__item, "prodml22:PvtModelParameter")) + if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml23__PvtModelParameter::__item, "prodml23:PvtModelParameter")) return NULL; return a; } -SOAP_FMAC1 prodml22__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__PvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml23__PvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PvtModelParameter *p; - size_t k = sizeof(prodml22__PvtModelParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter, n, gsoap_eml2_3_fdelete); + prodml23__PvtModelParameter *p; + size_t k = sizeof(prodml23__PvtModelParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PvtModelParameter); + { p = SOAP_NEW(soap, prodml23__PvtModelParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PvtModelParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PvtModelParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PvtModelParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PvtModelParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -238385,96 +238535,96 @@ SOAP_FMAC1 prodml22__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__P return p; } -int prodml22__PvtModelParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PvtModelParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PvtModelParameter(soap, tag ? tag : "prodml22:PvtModelParameter", -2, this, type)) + if (soap_out_prodml23__PvtModelParameter(soap, tag ? tag : "prodml23:PvtModelParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PvtModelParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PvtModelParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PvtModelParameter(soap, this, tag, type); + return soap_get_prodml23__PvtModelParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PvtModelParameter * SOAP_FMAC4 soap_get_prodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameter * SOAP_FMAC4 soap_get_prodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PvtModelParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__PvtModelParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PrsvParameter::soap_default(struct soap *soap) +void prodml23__PrsvParameter::soap_default(struct soap *soap) { this->soap = soap; - soap_default_double(soap, &this->prodml22__PrsvParameter::a1); - soap_default_double(soap, &this->prodml22__PrsvParameter::a2); - soap_default_double(soap, &this->prodml22__PrsvParameter::b1); - soap_default_double(soap, &this->prodml22__PrsvParameter::b2); - soap_default_double(soap, &this->prodml22__PrsvParameter::c2); - soap_default_eml23__String64(soap, &this->prodml22__PrsvParameter::fluidComponentReference); + soap_default_double(soap, &this->prodml23__PrsvParameter::a1); + soap_default_double(soap, &this->prodml23__PrsvParameter::a2); + soap_default_double(soap, &this->prodml23__PrsvParameter::b1); + soap_default_double(soap, &this->prodml23__PrsvParameter::b2); + soap_default_double(soap, &this->prodml23__PrsvParameter::c2); + soap_default_eml23__String64(soap, &this->prodml23__PrsvParameter::fluidComponentReference); } -void prodml22__PrsvParameter::soap_serialize(struct soap *soap) const +void prodml23__PrsvParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_embedded(soap, &this->prodml22__PrsvParameter::a1, SOAP_TYPE_gsoap_eml2_3_double); - soap_embedded(soap, &this->prodml22__PrsvParameter::a2, SOAP_TYPE_gsoap_eml2_3_double); - soap_embedded(soap, &this->prodml22__PrsvParameter::b1, SOAP_TYPE_gsoap_eml2_3_double); - soap_embedded(soap, &this->prodml22__PrsvParameter::b2, SOAP_TYPE_gsoap_eml2_3_double); - soap_embedded(soap, &this->prodml22__PrsvParameter::c2, SOAP_TYPE_gsoap_eml2_3_double); + soap_embedded(soap, &this->prodml23__PrsvParameter::a1, SOAP_TYPE_gsoap_eml2_3_double); + soap_embedded(soap, &this->prodml23__PrsvParameter::a2, SOAP_TYPE_gsoap_eml2_3_double); + soap_embedded(soap, &this->prodml23__PrsvParameter::b1, SOAP_TYPE_gsoap_eml2_3_double); + soap_embedded(soap, &this->prodml23__PrsvParameter::b2, SOAP_TYPE_gsoap_eml2_3_double); + soap_embedded(soap, &this->prodml23__PrsvParameter::c2, SOAP_TYPE_gsoap_eml2_3_double); #endif } -int prodml22__PrsvParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PrsvParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PrsvParameter(soap, tag, id, this, type); + return soap_out_prodml23__PrsvParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PrsvParameter(struct soap *soap, const char *tag, int id, const prodml22__PrsvParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PrsvParameter(struct soap *soap, const char *tag, int id, const prodml23__PrsvParameter *a, const char *type) { if (!type) - type = "prodml22:PrsvParameter"; - soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, ((prodml22__PrsvParameter*)a)->fluidComponentReference), 1); + type = "prodml23:PrsvParameter"; + soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, ((prodml23__PrsvParameter*)a)->fluidComponentReference), 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_gsoap_eml2_3_prodml22__PrsvParameter), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter), type)) return soap->error; - if (soap_out_double(soap, "prodml22:a1", -1, &a->prodml22__PrsvParameter::a1, "xsd:double")) + if (soap_out_double(soap, "prodml23:a1", -1, &a->prodml23__PrsvParameter::a1, "xsd:double")) return soap->error; - if (soap_out_double(soap, "prodml22:a2", -1, &a->prodml22__PrsvParameter::a2, "xsd:double")) + if (soap_out_double(soap, "prodml23:a2", -1, &a->prodml23__PrsvParameter::a2, "xsd:double")) return soap->error; - if (soap_out_double(soap, "prodml22:b1", -1, &a->prodml22__PrsvParameter::b1, "xsd:double")) + if (soap_out_double(soap, "prodml23:b1", -1, &a->prodml23__PrsvParameter::b1, "xsd:double")) return soap->error; - if (soap_out_double(soap, "prodml22:b2", -1, &a->prodml22__PrsvParameter::b2, "xsd:double")) + if (soap_out_double(soap, "prodml23:b2", -1, &a->prodml23__PrsvParameter::b2, "xsd:double")) return soap->error; - if (soap_out_double(soap, "prodml22:c2", -1, &a->prodml22__PrsvParameter::c2, "xsd:double")) + if (soap_out_double(soap, "prodml23:c2", -1, &a->prodml23__PrsvParameter::c2, "xsd:double")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PrsvParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PrsvParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PrsvParameter(soap, tag, this, type); + return soap_in_prodml23__PrsvParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PrsvParameter * SOAP_FMAC4 soap_in_prodml22__PrsvParameter(struct soap *soap, const char *tag, prodml22__PrsvParameter *a, const char *type) +SOAP_FMAC3 prodml23__PrsvParameter * SOAP_FMAC4 soap_in_prodml23__PrsvParameter(struct soap *soap, const char *tag, prodml23__PrsvParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PrsvParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, sizeof(prodml22__PrsvParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PrsvParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, sizeof(prodml23__PrsvParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PrsvParameter *)a->soap_in(soap, tag, type); + return (prodml23__PrsvParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponentReference", 1, 3), &((prodml22__PrsvParameter*)a)->fluidComponentReference)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponentReference", 1, 3), &((prodml23__PrsvParameter*)a)->fluidComponentReference)) return NULL; size_t soap_flag_a11 = 1; size_t soap_flag_a21 = 1; @@ -238486,31 +238636,31 @@ SOAP_FMAC3 prodml22__PrsvParameter * SOAP_FMAC4 soap_in_prodml22__PrsvParameter( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_a11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:a1", &a->prodml22__PrsvParameter::a1, "xsd:double")) + { if (soap_in_double(soap, "prodml23:a1", &a->prodml23__PrsvParameter::a1, "xsd:double")) { soap_flag_a11--; continue; } } if (soap_flag_a21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:a2", &a->prodml22__PrsvParameter::a2, "xsd:double")) + { if (soap_in_double(soap, "prodml23:a2", &a->prodml23__PrsvParameter::a2, "xsd:double")) { soap_flag_a21--; continue; } } if (soap_flag_b11 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:b1", &a->prodml22__PrsvParameter::b1, "xsd:double")) + { if (soap_in_double(soap, "prodml23:b1", &a->prodml23__PrsvParameter::b1, "xsd:double")) { soap_flag_b11--; continue; } } if (soap_flag_b21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:b2", &a->prodml22__PrsvParameter::b2, "xsd:double")) + { if (soap_in_double(soap, "prodml23:b2", &a->prodml23__PrsvParameter::b2, "xsd:double")) { soap_flag_b21--; continue; } } if (soap_flag_c21 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_double(soap, "prodml22:c2", &a->prodml22__PrsvParameter::c2, "xsd:double")) + { if (soap_in_double(soap, "prodml23:c2", &a->prodml23__PrsvParameter::c2, "xsd:double")) { soap_flag_c21--; continue; } @@ -238534,35 +238684,35 @@ SOAP_FMAC3 prodml22__PrsvParameter * SOAP_FMAC4 soap_in_prodml22__PrsvParameter( return NULL; } else - { a = (prodml22__PrsvParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, sizeof(prodml22__PrsvParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PrsvParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, sizeof(prodml23__PrsvParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml22__PrsvParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml23__PrsvParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PrsvParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PrsvParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PrsvParameter *p; - size_t k = sizeof(prodml22__PrsvParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, n, gsoap_eml2_3_fdelete); + prodml23__PrsvParameter *p; + size_t k = sizeof(prodml23__PrsvParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PrsvParameter); + { p = SOAP_NEW(soap, prodml23__PrsvParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PrsvParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PrsvParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PrsvParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PrsvParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -238572,86 +238722,86 @@ SOAP_FMAC1 prodml22__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml22__PrsvP return p; } -int prodml22__PrsvParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PrsvParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PrsvParameter(soap, tag ? tag : "prodml22:PrsvParameter", -2, this, type)) + if (soap_out_prodml23__PrsvParameter(soap, tag ? tag : "prodml23:PrsvParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PrsvParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PrsvParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PrsvParameter(soap, this, tag, type); + return soap_get_prodml23__PrsvParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PrsvParameter * SOAP_FMAC4 soap_get_prodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PrsvParameter * SOAP_FMAC4 soap_get_prodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PrsvParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__PrsvParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PetroskyFarshad_Undersaturated::soap_default(struct soap *soap) +void prodml23__PetroskyFarshad_Undersaturated::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); } -void prodml22__PetroskyFarshad_Undersaturated::soap_serialize(struct soap *soap) const +void prodml23__PetroskyFarshad_Undersaturated::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); #endif } -int prodml22__PetroskyFarshad_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PetroskyFarshad_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PetroskyFarshad_Undersaturated(soap, tag, id, this, type); + return soap_out_prodml23__PetroskyFarshad_Undersaturated(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, const char *tag, int id, const prodml22__PetroskyFarshad_Undersaturated *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, const char *tag, int id, const prodml23__PetroskyFarshad_Undersaturated *a, const char *type) { if (!type) - type = "prodml22:PetroskyFarshad-Undersaturated"; + type = "prodml23:PetroskyFarshad-Undersaturated"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated), type ? type : "prodml22:PetroskyFarshad-Undersaturated")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated), type ? type : "prodml23:PetroskyFarshad-Undersaturated")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PetroskyFarshad_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PetroskyFarshad_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PetroskyFarshad_Undersaturated(soap, tag, this, type); + return soap_in_prodml23__PetroskyFarshad_Undersaturated(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_in_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, const char *tag, prodml22__PetroskyFarshad_Undersaturated *a, const char *type) +SOAP_FMAC3 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_in_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, const char *tag, prodml23__PetroskyFarshad_Undersaturated *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PetroskyFarshad_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated, sizeof(prodml22__PetroskyFarshad_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PetroskyFarshad_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated, sizeof(prodml23__PetroskyFarshad_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PetroskyFarshad_Undersaturated *)a->soap_in(soap, tag, type); + return (prodml23__PetroskyFarshad_Undersaturated *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -238667,43 +238817,43 @@ SOAP_FMAC3 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_in_prodml2 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_UndersaturatedOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_UndersaturatedOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_BubblePointPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure2--; continue; } } if (soap_flag_Pressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure2--; continue; } @@ -238719,35 +238869,35 @@ SOAP_FMAC3 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__PetroskyFarshad_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated, sizeof(prodml22__PetroskyFarshad_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PetroskyFarshad_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated, sizeof(prodml23__PetroskyFarshad_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PetroskyFarshad_Undersaturated *p; - size_t k = sizeof(prodml22__PetroskyFarshad_Undersaturated); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated, n, gsoap_eml2_3_fdelete); + prodml23__PetroskyFarshad_Undersaturated *p; + size_t k = sizeof(prodml23__PetroskyFarshad_Undersaturated); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PetroskyFarshad_Undersaturated); + { p = SOAP_NEW(soap, prodml23__PetroskyFarshad_Undersaturated); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PetroskyFarshad_Undersaturated, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PetroskyFarshad_Undersaturated, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PetroskyFarshad_Undersaturated location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PetroskyFarshad_Undersaturated location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -238757,86 +238907,86 @@ SOAP_FMAC1 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__PetroskyFarshad_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PetroskyFarshad_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PetroskyFarshad_Undersaturated(soap, tag ? tag : "prodml22:PetroskyFarshad-Undersaturated", -2, this, type)) + if (soap_out_prodml23__PetroskyFarshad_Undersaturated(soap, tag ? tag : "prodml23:PetroskyFarshad-Undersaturated", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PetroskyFarshad_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PetroskyFarshad_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PetroskyFarshad_Undersaturated(soap, this, tag, type); + return soap_get_prodml23__PetroskyFarshad_Undersaturated(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_get_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, prodml22__PetroskyFarshad_Undersaturated *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_get_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, prodml23__PetroskyFarshad_Undersaturated *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PetroskyFarshad_Undersaturated(soap, tag, p, type))) + if ((p = soap_in_prodml23__PetroskyFarshad_Undersaturated(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PetroskyFarshad_Dead::soap_default(struct soap *soap) +void prodml23__PetroskyFarshad_Dead::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_default(soap); - this->prodml22__PetroskyFarshad_Dead::OilGravityAtStockTank = NULL; + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_default(soap); + this->prodml23__PetroskyFarshad_Dead::OilGravityAtStockTank = NULL; } -void prodml22__PetroskyFarshad_Dead::soap_serialize(struct soap *soap) const +void prodml23__PetroskyFarshad_Dead::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__PetroskyFarshad_Dead::OilGravityAtStockTank); - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__PetroskyFarshad_Dead::OilGravityAtStockTank); + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); #endif } -int prodml22__PetroskyFarshad_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PetroskyFarshad_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PetroskyFarshad_Dead(soap, tag, id, this, type); + return soap_out_prodml23__PetroskyFarshad_Dead(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PetroskyFarshad_Dead(struct soap *soap, const char *tag, int id, const prodml22__PetroskyFarshad_Dead *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PetroskyFarshad_Dead(struct soap *soap, const char *tag, int id, const prodml23__PetroskyFarshad_Dead *a, const char *type) { if (!type) - type = "prodml22:PetroskyFarshad-Dead"; + type = "prodml23:PetroskyFarshad-Dead"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead), type ? type : "prodml22:PetroskyFarshad-Dead")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead), type ? type : "prodml23:PetroskyFarshad-Dead")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilGravityAtStockTank", -1, &a->prodml22__PetroskyFarshad_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilGravityAtStockTank", -1, &a->prodml23__PetroskyFarshad_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PetroskyFarshad_Dead::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PetroskyFarshad_Dead::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PetroskyFarshad_Dead(soap, tag, this, type); + return soap_in_prodml23__PetroskyFarshad_Dead(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PetroskyFarshad_Dead * SOAP_FMAC4 soap_in_prodml22__PetroskyFarshad_Dead(struct soap *soap, const char *tag, prodml22__PetroskyFarshad_Dead *a, const char *type) +SOAP_FMAC3 prodml23__PetroskyFarshad_Dead * SOAP_FMAC4 soap_in_prodml23__PetroskyFarshad_Dead(struct soap *soap, const char *tag, prodml23__PetroskyFarshad_Dead *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PetroskyFarshad_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead, sizeof(prodml22__PetroskyFarshad_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PetroskyFarshad_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead, sizeof(prodml23__PetroskyFarshad_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PetroskyFarshad_Dead *)a->soap_in(soap, tag, type); + return (prodml23__PetroskyFarshad_Dead *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -238851,37 +239001,37 @@ SOAP_FMAC3 prodml22__PetroskyFarshad_Dead * SOAP_FMAC4 soap_in_prodml22__Petrosk for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_OilGravityAtStockTank1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilGravityAtStockTank", &a->prodml22__PetroskyFarshad_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilGravityAtStockTank", &a->prodml23__PetroskyFarshad_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) { soap_flag_OilGravityAtStockTank1--; continue; } @@ -238897,35 +239047,35 @@ SOAP_FMAC3 prodml22__PetroskyFarshad_Dead * SOAP_FMAC4 soap_in_prodml22__Petrosk return NULL; } else - { a = (prodml22__PetroskyFarshad_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead, sizeof(prodml22__PetroskyFarshad_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PetroskyFarshad_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead, sizeof(prodml23__PetroskyFarshad_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PetroskyFarshad_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PetroskyFarshad_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PetroskyFarshad_Dead *p; - size_t k = sizeof(prodml22__PetroskyFarshad_Dead); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead, n, gsoap_eml2_3_fdelete); + prodml23__PetroskyFarshad_Dead *p; + size_t k = sizeof(prodml23__PetroskyFarshad_Dead); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PetroskyFarshad_Dead); + { p = SOAP_NEW(soap, prodml23__PetroskyFarshad_Dead); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PetroskyFarshad_Dead, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PetroskyFarshad_Dead, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PetroskyFarshad_Dead location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PetroskyFarshad_Dead location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -238935,84 +239085,84 @@ SOAP_FMAC1 prodml22__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__PetroskyFarshad_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PetroskyFarshad_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PetroskyFarshad_Dead(soap, tag ? tag : "prodml22:PetroskyFarshad-Dead", -2, this, type)) + if (soap_out_prodml23__PetroskyFarshad_Dead(soap, tag ? tag : "prodml23:PetroskyFarshad-Dead", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PetroskyFarshad_Dead::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PetroskyFarshad_Dead::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PetroskyFarshad_Dead(soap, this, tag, type); + return soap_get_prodml23__PetroskyFarshad_Dead(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PetroskyFarshad_Dead * SOAP_FMAC4 soap_get_prodml22__PetroskyFarshad_Dead(struct soap *soap, prodml22__PetroskyFarshad_Dead *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PetroskyFarshad_Dead * SOAP_FMAC4 soap_get_prodml23__PetroskyFarshad_Dead(struct soap *soap, prodml23__PetroskyFarshad_Dead *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PetroskyFarshad_Dead(soap, tag, p, type))) + if ((p = soap_in_prodml23__PetroskyFarshad_Dead(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PetroskyFarshad_BubblePoint::soap_default(struct soap *soap) +void prodml23__PetroskyFarshad_BubblePoint::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); } -void prodml22__PetroskyFarshad_BubblePoint::soap_serialize(struct soap *soap) const +void prodml23__PetroskyFarshad_BubblePoint::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); #endif } -int prodml22__PetroskyFarshad_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PetroskyFarshad_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PetroskyFarshad_BubblePoint(soap, tag, id, this, type); + return soap_out_prodml23__PetroskyFarshad_BubblePoint(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, const char *tag, int id, const prodml22__PetroskyFarshad_BubblePoint *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, const char *tag, int id, const prodml23__PetroskyFarshad_BubblePoint *a, const char *type) { if (!type) - type = "prodml22:PetroskyFarshad-BubblePoint"; + type = "prodml23:PetroskyFarshad-BubblePoint"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint), type ? type : "prodml22:PetroskyFarshad-BubblePoint")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint), type ? type : "prodml23:PetroskyFarshad-BubblePoint")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PetroskyFarshad_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PetroskyFarshad_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PetroskyFarshad_BubblePoint(soap, tag, this, type); + return soap_in_prodml23__PetroskyFarshad_BubblePoint(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_in_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, const char *tag, prodml22__PetroskyFarshad_BubblePoint *a, const char *type) +SOAP_FMAC3 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_in_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, const char *tag, prodml23__PetroskyFarshad_BubblePoint *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PetroskyFarshad_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint, sizeof(prodml22__PetroskyFarshad_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PetroskyFarshad_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint, sizeof(prodml23__PetroskyFarshad_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PetroskyFarshad_BubblePoint *)a->soap_in(soap, tag, type); + return (prodml23__PetroskyFarshad_BubblePoint *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -239027,37 +239177,37 @@ SOAP_FMAC3 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_SolutionGasOilRatio2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio2--; continue; } @@ -239073,35 +239223,35 @@ SOAP_FMAC3 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__PetroskyFarshad_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint, sizeof(prodml22__PetroskyFarshad_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PetroskyFarshad_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint, sizeof(prodml23__PetroskyFarshad_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PetroskyFarshad_BubblePoint *p; - size_t k = sizeof(prodml22__PetroskyFarshad_BubblePoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint, n, gsoap_eml2_3_fdelete); + prodml23__PetroskyFarshad_BubblePoint *p; + size_t k = sizeof(prodml23__PetroskyFarshad_BubblePoint); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PetroskyFarshad_BubblePoint); + { p = SOAP_NEW(soap, prodml23__PetroskyFarshad_BubblePoint); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PetroskyFarshad_BubblePoint, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PetroskyFarshad_BubblePoint, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PetroskyFarshad_BubblePoint location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PetroskyFarshad_BubblePoint location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -239111,82 +239261,82 @@ SOAP_FMAC1 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__PetroskyFarshad_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PetroskyFarshad_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PetroskyFarshad_BubblePoint(soap, tag ? tag : "prodml22:PetroskyFarshad-BubblePoint", -2, this, type)) + if (soap_out_prodml23__PetroskyFarshad_BubblePoint(soap, tag ? tag : "prodml23:PetroskyFarshad-BubblePoint", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PetroskyFarshad_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PetroskyFarshad_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PetroskyFarshad_BubblePoint(soap, this, tag, type); + return soap_get_prodml23__PetroskyFarshad_BubblePoint(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_get_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, prodml22__PetroskyFarshad_BubblePoint *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_get_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, prodml23__PetroskyFarshad_BubblePoint *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PetroskyFarshad_BubblePoint(soap, tag, p, type))) + if ((p = soap_in_prodml23__PetroskyFarshad_BubblePoint(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PengRobinson78_USCOREEOS::soap_default(struct soap *soap) +void prodml23__PengRobinson78_USCOREEOS::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalEoSModel::soap_default(soap); + this->prodml23__AbstractCompositionalEoSModel::soap_default(soap); } -void prodml22__PengRobinson78_USCOREEOS::soap_serialize(struct soap *soap) const +void prodml23__PengRobinson78_USCOREEOS::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalEoSModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalEoSModel::soap_serialize(soap); #endif } -int prodml22__PengRobinson78_USCOREEOS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PengRobinson78_USCOREEOS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PengRobinson78_USCOREEOS(soap, tag, id, this, type); + return soap_out_prodml23__PengRobinson78_USCOREEOS(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, const char *tag, int id, const prodml22__PengRobinson78_USCOREEOS *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, const char *tag, int id, const prodml23__PengRobinson78_USCOREEOS *a, const char *type) { if (!type) - type = "prodml22:PengRobinson78_EOS"; + type = "prodml23:PengRobinson78_EOS"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS), type ? type : "prodml22:PengRobinson78_EOS")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS), type ? type : "prodml23:PengRobinson78_EOS")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PengRobinson78_USCOREEOS::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PengRobinson78_USCOREEOS::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PengRobinson78_USCOREEOS(soap, tag, this, type); + return soap_in_prodml23__PengRobinson78_USCOREEOS(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, const char *tag, prodml22__PengRobinson78_USCOREEOS *a, const char *type) +SOAP_FMAC3 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_in_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, const char *tag, prodml23__PengRobinson78_USCOREEOS *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PengRobinson78_USCOREEOS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS, sizeof(prodml22__PengRobinson78_USCOREEOS), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PengRobinson78_USCOREEOS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS, sizeof(prodml23__PengRobinson78_USCOREEOS), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PengRobinson78_USCOREEOS *)a->soap_in(soap, tag, type); + return (prodml23__PengRobinson78_USCOREEOS *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -239200,31 +239350,31 @@ SOAP_FMAC3 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Pen for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } @@ -239240,35 +239390,35 @@ SOAP_FMAC3 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Pen return NULL; } else - { a = (prodml22__PengRobinson78_USCOREEOS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS, sizeof(prodml22__PengRobinson78_USCOREEOS), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PengRobinson78_USCOREEOS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS, sizeof(prodml23__PengRobinson78_USCOREEOS), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PengRobinson78_USCOREEOS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PengRobinson78_USCOREEOS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PengRobinson78_USCOREEOS *p; - size_t k = sizeof(prodml22__PengRobinson78_USCOREEOS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS, n, gsoap_eml2_3_fdelete); + prodml23__PengRobinson78_USCOREEOS *p; + size_t k = sizeof(prodml23__PengRobinson78_USCOREEOS); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PengRobinson78_USCOREEOS); + { p = SOAP_NEW(soap, prodml23__PengRobinson78_USCOREEOS); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PengRobinson78_USCOREEOS, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PengRobinson78_USCOREEOS, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PengRobinson78_USCOREEOS location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PengRobinson78_USCOREEOS location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -239278,82 +239428,82 @@ SOAP_FMAC1 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__PengRobinson78_USCOREEOS::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PengRobinson78_USCOREEOS::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PengRobinson78_USCOREEOS(soap, tag ? tag : "prodml22:PengRobinson78_EOS", -2, this, type)) + if (soap_out_prodml23__PengRobinson78_USCOREEOS(soap, tag ? tag : "prodml23:PengRobinson78_EOS", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PengRobinson78_USCOREEOS::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PengRobinson78_USCOREEOS::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PengRobinson78_USCOREEOS(soap, this, tag, type); + return soap_get_prodml23__PengRobinson78_USCOREEOS(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_get_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, prodml22__PengRobinson78_USCOREEOS *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_get_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, prodml23__PengRobinson78_USCOREEOS *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PengRobinson78_USCOREEOS(soap, tag, p, type))) + if ((p = soap_in_prodml23__PengRobinson78_USCOREEOS(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__PengRobinson76_USCOREEOS::soap_default(struct soap *soap) +void prodml23__PengRobinson76_USCOREEOS::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalEoSModel::soap_default(soap); + this->prodml23__AbstractCompositionalEoSModel::soap_default(soap); } -void prodml22__PengRobinson76_USCOREEOS::soap_serialize(struct soap *soap) const +void prodml23__PengRobinson76_USCOREEOS::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalEoSModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalEoSModel::soap_serialize(soap); #endif } -int prodml22__PengRobinson76_USCOREEOS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__PengRobinson76_USCOREEOS::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__PengRobinson76_USCOREEOS(soap, tag, id, this, type); + return soap_out_prodml23__PengRobinson76_USCOREEOS(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, const char *tag, int id, const prodml22__PengRobinson76_USCOREEOS *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, const char *tag, int id, const prodml23__PengRobinson76_USCOREEOS *a, const char *type) { if (!type) - type = "prodml22:PengRobinson76_EOS"; + type = "prodml23:PengRobinson76_EOS"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS), type ? type : "prodml22:PengRobinson76_EOS")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS), type ? type : "prodml23:PengRobinson76_EOS")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__PengRobinson76_USCOREEOS::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__PengRobinson76_USCOREEOS::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__PengRobinson76_USCOREEOS(soap, tag, this, type); + return soap_in_prodml23__PengRobinson76_USCOREEOS(soap, tag, this, type); } -SOAP_FMAC3 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, const char *tag, prodml22__PengRobinson76_USCOREEOS *a, const char *type) +SOAP_FMAC3 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_in_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, const char *tag, prodml23__PengRobinson76_USCOREEOS *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__PengRobinson76_USCOREEOS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS, sizeof(prodml22__PengRobinson76_USCOREEOS), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__PengRobinson76_USCOREEOS*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS, sizeof(prodml23__PengRobinson76_USCOREEOS), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__PengRobinson76_USCOREEOS *)a->soap_in(soap, tag, type); + return (prodml23__PengRobinson76_USCOREEOS *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -239367,31 +239517,31 @@ SOAP_FMAC3 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Pen for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } @@ -239407,35 +239557,35 @@ SOAP_FMAC3 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Pen return NULL; } else - { a = (prodml22__PengRobinson76_USCOREEOS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS, sizeof(prodml22__PengRobinson76_USCOREEOS), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__PengRobinson76_USCOREEOS *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS, sizeof(prodml23__PengRobinson76_USCOREEOS), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__PengRobinson76_USCOREEOS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__PengRobinson76_USCOREEOS(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__PengRobinson76_USCOREEOS *p; - size_t k = sizeof(prodml22__PengRobinson76_USCOREEOS); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS, n, gsoap_eml2_3_fdelete); + prodml23__PengRobinson76_USCOREEOS *p; + size_t k = sizeof(prodml23__PengRobinson76_USCOREEOS); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__PengRobinson76_USCOREEOS); + { p = SOAP_NEW(soap, prodml23__PengRobinson76_USCOREEOS); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__PengRobinson76_USCOREEOS, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__PengRobinson76_USCOREEOS, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__PengRobinson76_USCOREEOS location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__PengRobinson76_USCOREEOS location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -239445,106 +239595,106 @@ SOAP_FMAC1 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__PengRobinson76_USCOREEOS::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__PengRobinson76_USCOREEOS::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__PengRobinson76_USCOREEOS(soap, tag ? tag : "prodml22:PengRobinson76_EOS", -2, this, type)) + if (soap_out_prodml23__PengRobinson76_USCOREEOS(soap, tag ? tag : "prodml23:PengRobinson76_EOS", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__PengRobinson76_USCOREEOS::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__PengRobinson76_USCOREEOS::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__PengRobinson76_USCOREEOS(soap, this, tag, type); + return soap_get_prodml23__PengRobinson76_USCOREEOS(soap, this, tag, type); } -SOAP_FMAC3 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_get_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, prodml22__PengRobinson76_USCOREEOS *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_get_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, prodml23__PengRobinson76_USCOREEOS *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__PengRobinson76_USCOREEOS(soap, tag, p, type))) + if ((p = soap_in_prodml23__PengRobinson76_USCOREEOS(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Lucas::soap_default(struct soap *soap) +void prodml23__Lucas::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationGasViscosityModel::soap_default(soap); - this->prodml22__Lucas::GasMolarWeight = NULL; - this->prodml22__Lucas::GasViscosityAt1Atm = NULL; - this->prodml22__Lucas::PseudoCriticalTemperature = NULL; - this->prodml22__Lucas::PseudoCriticalPressure = NULL; - this->prodml22__Lucas::PseudoReducedTemperature = NULL; - this->prodml22__Lucas::PseudoReducedPressure = NULL; + this->prodml23__AbstractCorrelationGasViscosityModel::soap_default(soap); + this->prodml23__Lucas::GasMolarWeight = NULL; + this->prodml23__Lucas::GasViscosityAt1Atm = NULL; + this->prodml23__Lucas::PseudoCriticalTemperature = NULL; + this->prodml23__Lucas::PseudoCriticalPressure = NULL; + this->prodml23__Lucas::PseudoReducedTemperature = NULL; + this->prodml23__Lucas::PseudoReducedPressure = NULL; } -void prodml22__Lucas::soap_serialize(struct soap *soap) const +void prodml23__Lucas::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__Lucas::GasMolarWeight); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__Lucas::GasViscosityAt1Atm); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__Lucas::PseudoCriticalTemperature); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__Lucas::PseudoCriticalPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, &this->prodml22__Lucas::PseudoReducedTemperature); - soap_serialize_PointerToeml23__PressurePerPressureMeasure(soap, &this->prodml22__Lucas::PseudoReducedPressure); - this->prodml22__AbstractCorrelationGasViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__Lucas::GasMolarWeight); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__Lucas::GasViscosityAt1Atm); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__Lucas::PseudoCriticalTemperature); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__Lucas::PseudoCriticalPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, &this->prodml23__Lucas::PseudoReducedTemperature); + soap_serialize_PointerToeml23__PressurePerPressureMeasure(soap, &this->prodml23__Lucas::PseudoReducedPressure); + this->prodml23__AbstractCorrelationGasViscosityModel::soap_serialize(soap); #endif } -int prodml22__Lucas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Lucas::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Lucas(soap, tag, id, this, type); + return soap_out_prodml23__Lucas(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Lucas(struct soap *soap, const char *tag, int id, const prodml22__Lucas *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Lucas(struct soap *soap, const char *tag, int id, const prodml23__Lucas *a, const char *type) { if (!type) - type = "prodml22:Lucas"; + type = "prodml23:Lucas"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas), type ? type : "prodml22:Lucas")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas), type ? type : "prodml23:Lucas")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolarWeight", -1, &a->prodml22__Lucas::GasMolarWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolarWeight", -1, &a->prodml23__Lucas::GasMolarWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosityAt1Atm", -1, &a->prodml22__Lucas::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosityAt1Atm", -1, &a->prodml23__Lucas::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:PseudoCriticalTemperature", -1, &a->prodml22__Lucas::PseudoCriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:PseudoCriticalTemperature", -1, &a->prodml23__Lucas::PseudoCriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:PseudoCriticalPressure", -1, &a->prodml22__Lucas::PseudoCriticalPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:PseudoCriticalPressure", -1, &a->prodml23__Lucas::PseudoCriticalPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml22:PseudoReducedTemperature", -1, &a->prodml22__Lucas::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml23:PseudoReducedTemperature", -1, &a->prodml23__Lucas::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressurePerPressureMeasure(soap, "prodml22:PseudoReducedPressure", -1, &a->prodml22__Lucas::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) + if (soap_out_PointerToeml23__PressurePerPressureMeasure(soap, "prodml23:PseudoReducedPressure", -1, &a->prodml23__Lucas::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Lucas::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Lucas::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Lucas(soap, tag, this, type); + return soap_in_prodml23__Lucas(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Lucas * SOAP_FMAC4 soap_in_prodml22__Lucas(struct soap *soap, const char *tag, prodml22__Lucas *a, const char *type) +SOAP_FMAC3 prodml23__Lucas * SOAP_FMAC4 soap_in_prodml23__Lucas(struct soap *soap, const char *tag, prodml23__Lucas *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Lucas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas, sizeof(prodml22__Lucas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Lucas*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas, sizeof(prodml23__Lucas), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Lucas *)a->soap_in(soap, tag, type); + return (prodml23__Lucas *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -239564,67 +239714,67 @@ SOAP_FMAC3 prodml22__Lucas * SOAP_FMAC4 soap_in_prodml22__Lucas(struct soap *soa for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_GasViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_GasMolarWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolarWeight", &a->prodml22__Lucas::GasMolarWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolarWeight", &a->prodml23__Lucas::GasMolarWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolarWeight1--; continue; } } if (soap_flag_GasViscosityAt1Atm1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosityAt1Atm", &a->prodml22__Lucas::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosityAt1Atm", &a->prodml23__Lucas::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosityAt1Atm1--; continue; } } if (soap_flag_PseudoCriticalTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:PseudoCriticalTemperature", &a->prodml22__Lucas::PseudoCriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:PseudoCriticalTemperature", &a->prodml23__Lucas::PseudoCriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_PseudoCriticalTemperature1--; continue; } } if (soap_flag_PseudoCriticalPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:PseudoCriticalPressure", &a->prodml22__Lucas::PseudoCriticalPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:PseudoCriticalPressure", &a->prodml23__Lucas::PseudoCriticalPressure, "eml23:PressureMeasure")) { soap_flag_PseudoCriticalPressure1--; continue; } } if (soap_flag_PseudoReducedTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml22:PseudoReducedTemperature", &a->prodml22__Lucas::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml23:PseudoReducedTemperature", &a->prodml23__Lucas::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) { soap_flag_PseudoReducedTemperature1--; continue; } } if (soap_flag_PseudoReducedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressurePerPressureMeasure(soap, "prodml22:PseudoReducedPressure", &a->prodml22__Lucas::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) + { if (soap_in_PointerToeml23__PressurePerPressureMeasure(soap, "prodml23:PseudoReducedPressure", &a->prodml23__Lucas::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) { soap_flag_PseudoReducedPressure1--; continue; } @@ -239640,35 +239790,35 @@ SOAP_FMAC3 prodml22__Lucas * SOAP_FMAC4 soap_in_prodml22__Lucas(struct soap *soa return NULL; } else - { a = (prodml22__Lucas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas, SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas, sizeof(prodml22__Lucas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Lucas *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas, SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas, sizeof(prodml23__Lucas), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Lucas * SOAP_FMAC2 soap_instantiate_prodml22__Lucas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Lucas * SOAP_FMAC2 soap_instantiate_prodml23__Lucas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Lucas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Lucas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Lucas *p; - size_t k = sizeof(prodml22__Lucas); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas, n, gsoap_eml2_3_fdelete); + prodml23__Lucas *p; + size_t k = sizeof(prodml23__Lucas); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Lucas); + { p = SOAP_NEW(soap, prodml23__Lucas); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Lucas, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Lucas, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Lucas location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Lucas location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -239678,94 +239828,94 @@ SOAP_FMAC1 prodml22__Lucas * SOAP_FMAC2 soap_instantiate_prodml22__Lucas(struct return p; } -int prodml22__Lucas::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Lucas::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Lucas(soap, tag ? tag : "prodml22:Lucas", -2, this, type)) + if (soap_out_prodml23__Lucas(soap, tag ? tag : "prodml23:Lucas", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Lucas::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Lucas::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Lucas(soap, this, tag, type); + return soap_get_prodml23__Lucas(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Lucas * SOAP_FMAC4 soap_get_prodml22__Lucas(struct soap *soap, prodml22__Lucas *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Lucas * SOAP_FMAC4 soap_get_prodml23__Lucas(struct soap *soap, prodml23__Lucas *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Lucas(soap, tag, p, type))) + if ((p = soap_in_prodml23__Lucas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LondonoArcherBlasinggame::soap_default(struct soap *soap) +void prodml23__LondonoArcherBlasinggame::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationGasViscosityModel::soap_default(soap); - this->prodml22__LondonoArcherBlasinggame::GasDensity = NULL; - this->prodml22__LondonoArcherBlasinggame::GasViscosityAt1Atm = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, &this->prodml22__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm); + this->prodml23__AbstractCorrelationGasViscosityModel::soap_default(soap); + this->prodml23__LondonoArcherBlasinggame::GasDensity = NULL; + this->prodml23__LondonoArcherBlasinggame::GasViscosityAt1Atm = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, &this->prodml23__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm); } -void prodml22__LondonoArcherBlasinggame::soap_serialize(struct soap *soap) const +void prodml23__LondonoArcherBlasinggame::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__LondonoArcherBlasinggame::GasDensity); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__LondonoArcherBlasinggame::GasViscosityAt1Atm); - soap_serialize_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, &this->prodml22__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm); - this->prodml22__AbstractCorrelationGasViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__LondonoArcherBlasinggame::GasDensity); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__LondonoArcherBlasinggame::GasViscosityAt1Atm); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, &this->prodml23__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm); + this->prodml23__AbstractCorrelationGasViscosityModel::soap_serialize(soap); #endif } -int prodml22__LondonoArcherBlasinggame::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LondonoArcherBlasinggame::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LondonoArcherBlasinggame(soap, tag, id, this, type); + return soap_out_prodml23__LondonoArcherBlasinggame(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LondonoArcherBlasinggame(struct soap *soap, const char *tag, int id, const prodml22__LondonoArcherBlasinggame *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LondonoArcherBlasinggame(struct soap *soap, const char *tag, int id, const prodml23__LondonoArcherBlasinggame *a, const char *type) { if (!type) - type = "prodml22:LondonoArcherBlasinggame"; + type = "prodml23:LondonoArcherBlasinggame"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame), type ? type : "prodml22:LondonoArcherBlasinggame")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame), type ? type : "prodml23:LondonoArcherBlasinggame")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", -1, &a->prodml22__LondonoArcherBlasinggame::GasDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", -1, &a->prodml23__LondonoArcherBlasinggame::GasDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosityAt1Atm", -1, &a->prodml22__LondonoArcherBlasinggame::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosityAt1Atm", -1, &a->prodml23__LondonoArcherBlasinggame::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, "prodml22:GasViscosityCoefficient1Atm", -1, &a->prodml22__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm, "prodml22:PvtModelParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, "prodml23:GasViscosityCoefficient1Atm", -1, &a->prodml23__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm, "prodml23:PvtModelParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LondonoArcherBlasinggame::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LondonoArcherBlasinggame::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LondonoArcherBlasinggame(soap, tag, this, type); + return soap_in_prodml23__LondonoArcherBlasinggame(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LondonoArcherBlasinggame * SOAP_FMAC4 soap_in_prodml22__LondonoArcherBlasinggame(struct soap *soap, const char *tag, prodml22__LondonoArcherBlasinggame *a, const char *type) +SOAP_FMAC3 prodml23__LondonoArcherBlasinggame * SOAP_FMAC4 soap_in_prodml23__LondonoArcherBlasinggame(struct soap *soap, const char *tag, prodml23__LondonoArcherBlasinggame *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LondonoArcherBlasinggame*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame, sizeof(prodml22__LondonoArcherBlasinggame), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LondonoArcherBlasinggame*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame, sizeof(prodml23__LondonoArcherBlasinggame), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LondonoArcherBlasinggame *)a->soap_in(soap, tag, type); + return (prodml23__LondonoArcherBlasinggame *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -239781,49 +239931,49 @@ SOAP_FMAC3 prodml22__LondonoArcherBlasinggame * SOAP_FMAC4 soap_in_prodml22__Lon for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_GasViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_GasDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", &a->prodml22__LondonoArcherBlasinggame::GasDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", &a->prodml23__LondonoArcherBlasinggame::GasDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_GasDensity1--; continue; } } if (soap_flag_GasViscosityAt1Atm1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosityAt1Atm", &a->prodml22__LondonoArcherBlasinggame::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosityAt1Atm", &a->prodml23__LondonoArcherBlasinggame::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosityAt1Atm1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, "prodml22:GasViscosityCoefficient1Atm", &a->prodml22__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm, "prodml22:PvtModelParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, "prodml23:GasViscosityCoefficient1Atm", &a->prodml23__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm, "prodml23:PvtModelParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -239837,35 +239987,35 @@ SOAP_FMAC3 prodml22__LondonoArcherBlasinggame * SOAP_FMAC4 soap_in_prodml22__Lon return NULL; } else - { a = (prodml22__LondonoArcherBlasinggame *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame, SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame, sizeof(prodml22__LondonoArcherBlasinggame), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LondonoArcherBlasinggame *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame, SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame, sizeof(prodml23__LondonoArcherBlasinggame), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prodml22__LondonoArcherBlasinggame(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prodml23__LondonoArcherBlasinggame(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LondonoArcherBlasinggame(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LondonoArcherBlasinggame(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LondonoArcherBlasinggame *p; - size_t k = sizeof(prodml22__LondonoArcherBlasinggame); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame, n, gsoap_eml2_3_fdelete); + prodml23__LondonoArcherBlasinggame *p; + size_t k = sizeof(prodml23__LondonoArcherBlasinggame); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LondonoArcherBlasinggame); + { p = SOAP_NEW(soap, prodml23__LondonoArcherBlasinggame); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LondonoArcherBlasinggame, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LondonoArcherBlasinggame, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LondonoArcherBlasinggame location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LondonoArcherBlasinggame location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -239875,87 +240025,87 @@ SOAP_FMAC1 prodml22__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__LondonoArcherBlasinggame::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LondonoArcherBlasinggame::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LondonoArcherBlasinggame(soap, tag ? tag : "prodml22:LondonoArcherBlasinggame", -2, this, type)) + if (soap_out_prodml23__LondonoArcherBlasinggame(soap, tag ? tag : "prodml23:LondonoArcherBlasinggame", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LondonoArcherBlasinggame::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LondonoArcherBlasinggame::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LondonoArcherBlasinggame(soap, this, tag, type); + return soap_get_prodml23__LondonoArcherBlasinggame(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LondonoArcherBlasinggame * SOAP_FMAC4 soap_get_prodml22__LondonoArcherBlasinggame(struct soap *soap, prodml22__LondonoArcherBlasinggame *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LondonoArcherBlasinggame * SOAP_FMAC4 soap_get_prodml23__LondonoArcherBlasinggame(struct soap *soap, prodml23__LondonoArcherBlasinggame *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LondonoArcherBlasinggame(soap, tag, p, type))) + if ((p = soap_in_prodml23__LondonoArcherBlasinggame(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__Lohrenz_Bray_ClarkCorrelation::soap_default(struct soap *soap) +void prodml23__Lohrenz_Bray_ClarkCorrelation::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalViscosityModel::soap_default(soap); + this->prodml23__AbstractCompositionalViscosityModel::soap_default(soap); } -void prodml22__Lohrenz_Bray_ClarkCorrelation::soap_serialize(struct soap *soap) const +void prodml23__Lohrenz_Bray_ClarkCorrelation::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalViscosityModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalViscosityModel::soap_serialize(soap); #endif } -int prodml22__Lohrenz_Bray_ClarkCorrelation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__Lohrenz_Bray_ClarkCorrelation::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, tag, id, this, type); + return soap_out_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *tag, int id, const prodml22__Lohrenz_Bray_ClarkCorrelation *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *tag, int id, const prodml23__Lohrenz_Bray_ClarkCorrelation *a, const char *type) { if (!type) - type = "prodml22:Lohrenz-Bray-ClarkCorrelation"; - soap_set_attr(soap, "phase", soap_prodml22__ThermodynamicPhase2s(soap, ((prodml22__AbstractCompositionalViscosityModel*)a)->phase), 1); + type = "prodml23:Lohrenz-Bray-ClarkCorrelation"; + soap_set_attr(soap, "phase", soap_prodml23__ThermodynamicPhase2s(soap, ((prodml23__AbstractCompositionalViscosityModel*)a)->phase), 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_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation), type ? type : "prodml22:Lohrenz-Bray-ClarkCorrelation")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation), type ? type : "prodml23:Lohrenz-Bray-ClarkCorrelation")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__Lohrenz_Bray_ClarkCorrelation::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__Lohrenz_Bray_ClarkCorrelation::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, tag, this, type); + return soap_in_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, tag, this, type); } -SOAP_FMAC3 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_in_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *tag, prodml22__Lohrenz_Bray_ClarkCorrelation *a, const char *type) +SOAP_FMAC3 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_in_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *tag, prodml23__Lohrenz_Bray_ClarkCorrelation *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__Lohrenz_Bray_ClarkCorrelation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation, sizeof(prodml22__Lohrenz_Bray_ClarkCorrelation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__Lohrenz_Bray_ClarkCorrelation*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation, sizeof(prodml23__Lohrenz_Bray_ClarkCorrelation), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__Lohrenz_Bray_ClarkCorrelation *)a->soap_in(soap, tag, type); + return (prodml23__Lohrenz_Bray_ClarkCorrelation *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml22__AbstractCompositionalViscosityModel*)a)->phase)) + if (soap_s2prodml23__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml23__AbstractCompositionalViscosityModel*)a)->phase)) return NULL; size_t soap_flag_CustomPvtModelExtension4 = 1; size_t soap_flag_PvtModelParameterSet4 = 1; @@ -239967,31 +240117,31 @@ SOAP_FMAC3 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } @@ -240007,35 +240157,35 @@ SOAP_FMAC3 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__Lohrenz_Bray_ClarkCorrelation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation, SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation, sizeof(prodml22__Lohrenz_Bray_ClarkCorrelation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__Lohrenz_Bray_ClarkCorrelation *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation, SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation, sizeof(prodml23__Lohrenz_Bray_ClarkCorrelation), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__Lohrenz_Bray_ClarkCorrelation *p; - size_t k = sizeof(prodml22__Lohrenz_Bray_ClarkCorrelation); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation, n, gsoap_eml2_3_fdelete); + prodml23__Lohrenz_Bray_ClarkCorrelation *p; + size_t k = sizeof(prodml23__Lohrenz_Bray_ClarkCorrelation); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__Lohrenz_Bray_ClarkCorrelation); + { p = SOAP_NEW(soap, prodml23__Lohrenz_Bray_ClarkCorrelation); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__Lohrenz_Bray_ClarkCorrelation, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__Lohrenz_Bray_ClarkCorrelation, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__Lohrenz_Bray_ClarkCorrelation location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__Lohrenz_Bray_ClarkCorrelation location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -240045,90 +240195,90 @@ SOAP_FMAC1 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__Lohrenz_Bray_ClarkCorrelation::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__Lohrenz_Bray_ClarkCorrelation::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, tag ? tag : "prodml22:Lohrenz-Bray-ClarkCorrelation", -2, this, type)) + if (soap_out_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, tag ? tag : "prodml23:Lohrenz-Bray-ClarkCorrelation", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__Lohrenz_Bray_ClarkCorrelation::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__Lohrenz_Bray_ClarkCorrelation::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, this, tag, type); + return soap_get_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, this, tag, type); } -SOAP_FMAC3 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_get_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml22__Lohrenz_Bray_ClarkCorrelation *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_get_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml23__Lohrenz_Bray_ClarkCorrelation *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, tag, p, type))) + if ((p = soap_in_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__LeeGonzalez::soap_default(struct soap *soap) +void prodml23__LeeGonzalez::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationGasViscosityModel::soap_default(soap); - this->prodml22__LeeGonzalez::GasMolarWeight = NULL; - this->prodml22__LeeGonzalez::GasDensity = NULL; + this->prodml23__AbstractCorrelationGasViscosityModel::soap_default(soap); + this->prodml23__LeeGonzalez::GasMolarWeight = NULL; + this->prodml23__LeeGonzalez::GasDensity = NULL; } -void prodml22__LeeGonzalez::soap_serialize(struct soap *soap) const +void prodml23__LeeGonzalez::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__LeeGonzalez::GasMolarWeight); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__LeeGonzalez::GasDensity); - this->prodml22__AbstractCorrelationGasViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__LeeGonzalez::GasMolarWeight); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__LeeGonzalez::GasDensity); + this->prodml23__AbstractCorrelationGasViscosityModel::soap_serialize(soap); #endif } -int prodml22__LeeGonzalez::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__LeeGonzalez::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__LeeGonzalez(soap, tag, id, this, type); + return soap_out_prodml23__LeeGonzalez(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LeeGonzalez(struct soap *soap, const char *tag, int id, const prodml22__LeeGonzalez *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LeeGonzalez(struct soap *soap, const char *tag, int id, const prodml23__LeeGonzalez *a, const char *type) { if (!type) - type = "prodml22:LeeGonzalez"; + type = "prodml23:LeeGonzalez"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez), type ? type : "prodml22:LeeGonzalez")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez), type ? type : "prodml23:LeeGonzalez")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolarWeight", -1, &a->prodml22__LeeGonzalez::GasMolarWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolarWeight", -1, &a->prodml23__LeeGonzalez::GasMolarWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", -1, &a->prodml22__LeeGonzalez::GasDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", -1, &a->prodml23__LeeGonzalez::GasDensity, "eml23:MassPerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__LeeGonzalez::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__LeeGonzalez::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__LeeGonzalez(soap, tag, this, type); + return soap_in_prodml23__LeeGonzalez(soap, tag, this, type); } -SOAP_FMAC3 prodml22__LeeGonzalez * SOAP_FMAC4 soap_in_prodml22__LeeGonzalez(struct soap *soap, const char *tag, prodml22__LeeGonzalez *a, const char *type) +SOAP_FMAC3 prodml23__LeeGonzalez * SOAP_FMAC4 soap_in_prodml23__LeeGonzalez(struct soap *soap, const char *tag, prodml23__LeeGonzalez *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__LeeGonzalez*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez, sizeof(prodml22__LeeGonzalez), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__LeeGonzalez*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez, sizeof(prodml23__LeeGonzalez), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__LeeGonzalez *)a->soap_in(soap, tag, type); + return (prodml23__LeeGonzalez *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -240144,43 +240294,43 @@ SOAP_FMAC3 prodml22__LeeGonzalez * SOAP_FMAC4 soap_in_prodml22__LeeGonzalez(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_GasViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_GasMolarWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolarWeight", &a->prodml22__LeeGonzalez::GasMolarWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolarWeight", &a->prodml23__LeeGonzalez::GasMolarWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolarWeight1--; continue; } } if (soap_flag_GasDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:GasDensity", &a->prodml22__LeeGonzalez::GasDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:GasDensity", &a->prodml23__LeeGonzalez::GasDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_GasDensity1--; continue; } @@ -240196,35 +240346,35 @@ SOAP_FMAC3 prodml22__LeeGonzalez * SOAP_FMAC4 soap_in_prodml22__LeeGonzalez(stru return NULL; } else - { a = (prodml22__LeeGonzalez *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez, SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez, sizeof(prodml22__LeeGonzalez), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__LeeGonzalez *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez, SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez, sizeof(prodml23__LeeGonzalez), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml22__LeeGonzalez(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml23__LeeGonzalez(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__LeeGonzalez(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__LeeGonzalez(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__LeeGonzalez *p; - size_t k = sizeof(prodml22__LeeGonzalez); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez, n, gsoap_eml2_3_fdelete); + prodml23__LeeGonzalez *p; + size_t k = sizeof(prodml23__LeeGonzalez); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__LeeGonzalez); + { p = SOAP_NEW(soap, prodml23__LeeGonzalez); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__LeeGonzalez, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__LeeGonzalez, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__LeeGonzalez location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__LeeGonzalez location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -240234,91 +240384,91 @@ SOAP_FMAC1 prodml22__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml22__LeeGonz return p; } -int prodml22__LeeGonzalez::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__LeeGonzalez::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__LeeGonzalez(soap, tag ? tag : "prodml22:LeeGonzalez", -2, this, type)) + if (soap_out_prodml23__LeeGonzalez(soap, tag ? tag : "prodml23:LeeGonzalez", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__LeeGonzalez::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__LeeGonzalez::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__LeeGonzalez(soap, this, tag, type); + return soap_get_prodml23__LeeGonzalez(soap, this, tag, type); } -SOAP_FMAC3 prodml22__LeeGonzalez * SOAP_FMAC4 soap_get_prodml22__LeeGonzalez(struct soap *soap, prodml22__LeeGonzalez *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LeeGonzalez * SOAP_FMAC4 soap_get_prodml23__LeeGonzalez(struct soap *soap, prodml23__LeeGonzalez *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__LeeGonzalez(soap, tag, p, type))) + if ((p = soap_in_prodml23__LeeGonzalez(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FrictionTheory::soap_default(struct soap *soap) +void prodml23__FrictionTheory::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalViscosityModel::soap_default(soap); - soap_default_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap, &this->prodml22__FrictionTheory::PrsvParameter); + this->prodml23__AbstractCompositionalViscosityModel::soap_default(soap); + soap_default_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap, &this->prodml23__FrictionTheory::PrsvParameter); } -void prodml22__FrictionTheory::soap_serialize(struct soap *soap) const +void prodml23__FrictionTheory::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap, &this->prodml22__FrictionTheory::PrsvParameter); - this->prodml22__AbstractCompositionalViscosityModel::soap_serialize(soap); + soap_serialize_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap, &this->prodml23__FrictionTheory::PrsvParameter); + this->prodml23__AbstractCompositionalViscosityModel::soap_serialize(soap); #endif } -int prodml22__FrictionTheory::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FrictionTheory::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FrictionTheory(soap, tag, id, this, type); + return soap_out_prodml23__FrictionTheory(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FrictionTheory(struct soap *soap, const char *tag, int id, const prodml22__FrictionTheory *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FrictionTheory(struct soap *soap, const char *tag, int id, const prodml23__FrictionTheory *a, const char *type) { if (!type) - type = "prodml22:FrictionTheory"; - soap_set_attr(soap, "phase", soap_prodml22__ThermodynamicPhase2s(soap, ((prodml22__AbstractCompositionalViscosityModel*)a)->phase), 1); + type = "prodml23:FrictionTheory"; + soap_set_attr(soap, "phase", soap_prodml23__ThermodynamicPhase2s(soap, ((prodml23__AbstractCompositionalViscosityModel*)a)->phase), 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_gsoap_eml2_3_prodml22__FrictionTheory), type ? type : "prodml22:FrictionTheory")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory), type ? type : "prodml23:FrictionTheory")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap, "prodml22:PrsvParameter", -1, &a->prodml22__FrictionTheory::PrsvParameter, "prodml22:PrsvParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap, "prodml23:PrsvParameter", -1, &a->prodml23__FrictionTheory::PrsvParameter, "prodml23:PrsvParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FrictionTheory::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FrictionTheory::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FrictionTheory(soap, tag, this, type); + return soap_in_prodml23__FrictionTheory(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FrictionTheory * SOAP_FMAC4 soap_in_prodml22__FrictionTheory(struct soap *soap, const char *tag, prodml22__FrictionTheory *a, const char *type) +SOAP_FMAC3 prodml23__FrictionTheory * SOAP_FMAC4 soap_in_prodml23__FrictionTheory(struct soap *soap, const char *tag, prodml23__FrictionTheory *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FrictionTheory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory, sizeof(prodml22__FrictionTheory), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FrictionTheory*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory, sizeof(prodml23__FrictionTheory), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FrictionTheory *)a->soap_in(soap, tag, type); + return (prodml23__FrictionTheory *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml22__AbstractCompositionalViscosityModel*)a)->phase)) + if (soap_s2prodml23__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml23__AbstractCompositionalViscosityModel*)a)->phase)) return NULL; size_t soap_flag_CustomPvtModelExtension4 = 1; size_t soap_flag_PvtModelParameterSet4 = 1; @@ -240330,37 +240480,37 @@ SOAP_FMAC3 prodml22__FrictionTheory * SOAP_FMAC4 soap_in_prodml22__FrictionTheor for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap, "prodml22:PrsvParameter", &a->prodml22__FrictionTheory::PrsvParameter, "prodml22:PrsvParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap, "prodml23:PrsvParameter", &a->prodml23__FrictionTheory::PrsvParameter, "prodml23:PrsvParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -240374,35 +240524,35 @@ SOAP_FMAC3 prodml22__FrictionTheory * SOAP_FMAC4 soap_in_prodml22__FrictionTheor return NULL; } else - { a = (prodml22__FrictionTheory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory, SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory, sizeof(prodml22__FrictionTheory), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FrictionTheory *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory, SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory, sizeof(prodml23__FrictionTheory), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml22__FrictionTheory(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml23__FrictionTheory(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FrictionTheory(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FrictionTheory(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FrictionTheory *p; - size_t k = sizeof(prodml22__FrictionTheory); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory, n, gsoap_eml2_3_fdelete); + prodml23__FrictionTheory *p; + size_t k = sizeof(prodml23__FrictionTheory); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FrictionTheory); + { p = SOAP_NEW(soap, prodml23__FrictionTheory); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FrictionTheory, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FrictionTheory, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FrictionTheory location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FrictionTheory location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -240412,148 +240562,148 @@ SOAP_FMAC1 prodml22__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml22__Fric return p; } -int prodml22__FrictionTheory::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FrictionTheory::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FrictionTheory(soap, tag ? tag : "prodml22:FrictionTheory", -2, this, type)) + if (soap_out_prodml23__FrictionTheory(soap, tag ? tag : "prodml23:FrictionTheory", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FrictionTheory::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FrictionTheory::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FrictionTheory(soap, this, tag, type); + return soap_get_prodml23__FrictionTheory(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FrictionTheory * SOAP_FMAC4 soap_get_prodml22__FrictionTheory(struct soap *soap, prodml22__FrictionTheory *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FrictionTheory * SOAP_FMAC4 soap_get_prodml23__FrictionTheory(struct soap *soap, prodml23__FrictionTheory *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FrictionTheory(soap, tag, p, type))) + if ((p = soap_in_prodml23__FrictionTheory(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidComponentProperty::soap_default(struct soap *soap) +void prodml23__FluidComponentProperty::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidComponentProperty::CriticalPressure = NULL; - this->prodml22__FluidComponentProperty::CriticalTemperature = NULL; - this->prodml22__FluidComponentProperty::CriticalViscosity = NULL; - this->prodml22__FluidComponentProperty::CompactVolume = NULL; - this->prodml22__FluidComponentProperty::CriticalVolume = NULL; - this->prodml22__FluidComponentProperty::AcentricFactor = NULL; - this->prodml22__FluidComponentProperty::MassDensity = NULL; - this->prodml22__FluidComponentProperty::OmegaA = NULL; - this->prodml22__FluidComponentProperty::OmegaB = NULL; - this->prodml22__FluidComponentProperty::VolumeShiftParameter = NULL; - this->prodml22__FluidComponentProperty::PartialMolarDensity = NULL; - this->prodml22__FluidComponentProperty::Parachor = NULL; - this->prodml22__FluidComponentProperty::PartialMolarVolume = NULL; - this->prodml22__FluidComponentProperty::ReferenceDensityZJ = NULL; - this->prodml22__FluidComponentProperty::ReferenceGravityZJ = NULL; - this->prodml22__FluidComponentProperty::ReferenceTemperatureZJ = NULL; - this->prodml22__FluidComponentProperty::ViscousCompressibility = NULL; - this->prodml22__FluidComponentProperty::Remark = NULL; - soap_default_eml23__String64(soap, &this->prodml22__FluidComponentProperty::fluidComponentReference); + this->prodml23__FluidComponentProperty::CriticalPressure = NULL; + this->prodml23__FluidComponentProperty::CriticalTemperature = NULL; + this->prodml23__FluidComponentProperty::CriticalViscosity = NULL; + this->prodml23__FluidComponentProperty::CompactVolume = NULL; + this->prodml23__FluidComponentProperty::CriticalVolume = NULL; + this->prodml23__FluidComponentProperty::AcentricFactor = NULL; + this->prodml23__FluidComponentProperty::MassDensity = NULL; + this->prodml23__FluidComponentProperty::OmegaA = NULL; + this->prodml23__FluidComponentProperty::OmegaB = NULL; + this->prodml23__FluidComponentProperty::VolumeShiftParameter = NULL; + this->prodml23__FluidComponentProperty::PartialMolarDensity = NULL; + this->prodml23__FluidComponentProperty::Parachor = NULL; + this->prodml23__FluidComponentProperty::PartialMolarVolume = NULL; + this->prodml23__FluidComponentProperty::ReferenceDensityZJ = NULL; + this->prodml23__FluidComponentProperty::ReferenceGravityZJ = NULL; + this->prodml23__FluidComponentProperty::ReferenceTemperatureZJ = NULL; + this->prodml23__FluidComponentProperty::ViscousCompressibility = NULL; + this->prodml23__FluidComponentProperty::Remark = NULL; + soap_default_eml23__String64(soap, &this->prodml23__FluidComponentProperty::fluidComponentReference); } -void prodml22__FluidComponentProperty::soap_serialize(struct soap *soap) const +void prodml23__FluidComponentProperty::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__FluidComponentProperty::CriticalPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidComponentProperty::CriticalTemperature); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__FluidComponentProperty::CriticalViscosity); - soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml22__FluidComponentProperty::CompactVolume); - soap_serialize_PointerToeml23__MolarVolumeMeasure(soap, &this->prodml22__FluidComponentProperty::CriticalVolume); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidComponentProperty::AcentricFactor); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidComponentProperty::MassDensity); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidComponentProperty::OmegaA); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidComponentProperty::OmegaB); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidComponentProperty::VolumeShiftParameter); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidComponentProperty::PartialMolarDensity); - soap_serialize_PointerTodouble(soap, &this->prodml22__FluidComponentProperty::Parachor); - soap_serialize_PointerToeml23__MolarVolumeMeasure(soap, &this->prodml22__FluidComponentProperty::PartialMolarVolume); - soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml22__FluidComponentProperty::ReferenceDensityZJ); - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__FluidComponentProperty::ReferenceGravityZJ); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidComponentProperty::ReferenceTemperatureZJ); - soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml22__FluidComponentProperty::ViscousCompressibility); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidComponentProperty::Remark); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__FluidComponentProperty::CriticalPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidComponentProperty::CriticalTemperature); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__FluidComponentProperty::CriticalViscosity); + soap_serialize_PointerToeml23__VolumeMeasure(soap, &this->prodml23__FluidComponentProperty::CompactVolume); + soap_serialize_PointerToeml23__MolarVolumeMeasure(soap, &this->prodml23__FluidComponentProperty::CriticalVolume); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidComponentProperty::AcentricFactor); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidComponentProperty::MassDensity); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidComponentProperty::OmegaA); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidComponentProperty::OmegaB); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidComponentProperty::VolumeShiftParameter); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidComponentProperty::PartialMolarDensity); + soap_serialize_PointerTodouble(soap, &this->prodml23__FluidComponentProperty::Parachor); + soap_serialize_PointerToeml23__MolarVolumeMeasure(soap, &this->prodml23__FluidComponentProperty::PartialMolarVolume); + soap_serialize_PointerToeml23__MassPerVolumeMeasure(soap, &this->prodml23__FluidComponentProperty::ReferenceDensityZJ); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__FluidComponentProperty::ReferenceGravityZJ); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidComponentProperty::ReferenceTemperatureZJ); + soap_serialize_PointerToeml23__ReciprocalPressureMeasure(soap, &this->prodml23__FluidComponentProperty::ViscousCompressibility); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidComponentProperty::Remark); #endif } -int prodml22__FluidComponentProperty::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidComponentProperty::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidComponentProperty(soap, tag, id, this, type); + return soap_out_prodml23__FluidComponentProperty(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentProperty(struct soap *soap, const char *tag, int id, const prodml22__FluidComponentProperty *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentProperty(struct soap *soap, const char *tag, int id, const prodml23__FluidComponentProperty *a, const char *type) { if (!type) - type = "prodml22:FluidComponentProperty"; - soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, ((prodml22__FluidComponentProperty*)a)->fluidComponentReference), 1); + type = "prodml23:FluidComponentProperty"; + soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, ((prodml23__FluidComponentProperty*)a)->fluidComponentReference), 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_gsoap_eml2_3_prodml22__FluidComponentProperty), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty), type)) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:CriticalPressure", -1, &a->prodml22__FluidComponentProperty::CriticalPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:CriticalPressure", -1, &a->prodml23__FluidComponentProperty::CriticalPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:CriticalTemperature", -1, &a->prodml22__FluidComponentProperty::CriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:CriticalTemperature", -1, &a->prodml23__FluidComponentProperty::CriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:CriticalViscosity", -1, &a->prodml22__FluidComponentProperty::CriticalViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:CriticalViscosity", -1, &a->prodml23__FluidComponentProperty::CriticalViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml22:CompactVolume", -1, &a->prodml22__FluidComponentProperty::CompactVolume, "eml23:VolumeMeasure")) + if (soap_out_PointerToeml23__VolumeMeasure(soap, "prodml23:CompactVolume", -1, &a->prodml23__FluidComponentProperty::CompactVolume, "eml23:VolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolarVolumeMeasure(soap, "prodml22:CriticalVolume", -1, &a->prodml22__FluidComponentProperty::CriticalVolume, "eml23:MolarVolumeMeasure")) + if (soap_out_PointerToeml23__MolarVolumeMeasure(soap, "prodml23:CriticalVolume", -1, &a->prodml23__FluidComponentProperty::CriticalVolume, "eml23:MolarVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:AcentricFactor", -1, &a->prodml22__FluidComponentProperty::AcentricFactor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:AcentricFactor", -1, &a->prodml23__FluidComponentProperty::AcentricFactor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:MassDensity", -1, &a->prodml22__FluidComponentProperty::MassDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:MassDensity", -1, &a->prodml23__FluidComponentProperty::MassDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:OmegaA", -1, &a->prodml22__FluidComponentProperty::OmegaA, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:OmegaA", -1, &a->prodml23__FluidComponentProperty::OmegaA, "xsd:double")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:OmegaB", -1, &a->prodml22__FluidComponentProperty::OmegaB, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:OmegaB", -1, &a->prodml23__FluidComponentProperty::OmegaB, "xsd:double")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:VolumeShiftParameter", -1, &a->prodml22__FluidComponentProperty::VolumeShiftParameter, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:VolumeShiftParameter", -1, &a->prodml23__FluidComponentProperty::VolumeShiftParameter, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:PartialMolarDensity", -1, &a->prodml22__FluidComponentProperty::PartialMolarDensity, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:PartialMolarDensity", -1, &a->prodml23__FluidComponentProperty::PartialMolarDensity, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerTodouble(soap, "prodml22:Parachor", -1, &a->prodml22__FluidComponentProperty::Parachor, "xsd:double")) + if (soap_out_PointerTodouble(soap, "prodml23:Parachor", -1, &a->prodml23__FluidComponentProperty::Parachor, "xsd:double")) return soap->error; - if (soap_out_PointerToeml23__MolarVolumeMeasure(soap, "prodml22:PartialMolarVolume", -1, &a->prodml22__FluidComponentProperty::PartialMolarVolume, "eml23:MolarVolumeMeasure")) + if (soap_out_PointerToeml23__MolarVolumeMeasure(soap, "prodml23:PartialMolarVolume", -1, &a->prodml23__FluidComponentProperty::PartialMolarVolume, "eml23:MolarVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:ReferenceDensityZJ", -1, &a->prodml22__FluidComponentProperty::ReferenceDensityZJ, "eml23:MassPerVolumeMeasure")) + if (soap_out_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:ReferenceDensityZJ", -1, &a->prodml23__FluidComponentProperty::ReferenceDensityZJ, "eml23:MassPerVolumeMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:ReferenceGravityZJ", -1, &a->prodml22__FluidComponentProperty::ReferenceGravityZJ, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:ReferenceGravityZJ", -1, &a->prodml23__FluidComponentProperty::ReferenceGravityZJ, "eml23:APIGravityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReferenceTemperatureZJ", -1, &a->prodml22__FluidComponentProperty::ReferenceTemperatureZJ, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReferenceTemperatureZJ", -1, &a->prodml23__FluidComponentProperty::ReferenceTemperatureZJ, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:ViscousCompressibility", -1, &a->prodml22__FluidComponentProperty::ViscousCompressibility, "eml23:ReciprocalPressureMeasure")) + if (soap_out_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:ViscousCompressibility", -1, &a->prodml23__FluidComponentProperty::ViscousCompressibility, "eml23:ReciprocalPressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidComponentProperty::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidComponentProperty::Remark, "eml23:String2000")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidComponentProperty::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidComponentProperty::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidComponentProperty(soap, tag, this, type); + return soap_in_prodml23__FluidComponentProperty(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidComponentProperty * SOAP_FMAC4 soap_in_prodml22__FluidComponentProperty(struct soap *soap, const char *tag, prodml22__FluidComponentProperty *a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentProperty * SOAP_FMAC4 soap_in_prodml23__FluidComponentProperty(struct soap *soap, const char *tag, prodml23__FluidComponentProperty *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidComponentProperty*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, sizeof(prodml22__FluidComponentProperty), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidComponentProperty*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, sizeof(prodml23__FluidComponentProperty), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidComponentProperty *)a->soap_in(soap, tag, type); + return (prodml23__FluidComponentProperty *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponentReference", 1, 3), &((prodml22__FluidComponentProperty*)a)->fluidComponentReference)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponentReference", 1, 3), &((prodml23__FluidComponentProperty*)a)->fluidComponentReference)) return NULL; size_t soap_flag_CriticalPressure1 = 1; size_t soap_flag_CriticalTemperature1 = 1; @@ -240578,109 +240728,109 @@ SOAP_FMAC3 prodml22__FluidComponentProperty * SOAP_FMAC4 soap_in_prodml22__Fluid for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CriticalPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:CriticalPressure", &a->prodml22__FluidComponentProperty::CriticalPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:CriticalPressure", &a->prodml23__FluidComponentProperty::CriticalPressure, "eml23:PressureMeasure")) { soap_flag_CriticalPressure1--; continue; } } if (soap_flag_CriticalTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:CriticalTemperature", &a->prodml22__FluidComponentProperty::CriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:CriticalTemperature", &a->prodml23__FluidComponentProperty::CriticalTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_CriticalTemperature1--; continue; } } if (soap_flag_CriticalViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:CriticalViscosity", &a->prodml22__FluidComponentProperty::CriticalViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:CriticalViscosity", &a->prodml23__FluidComponentProperty::CriticalViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_CriticalViscosity1--; continue; } } if (soap_flag_CompactVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml22:CompactVolume", &a->prodml22__FluidComponentProperty::CompactVolume, "eml23:VolumeMeasure")) + { if (soap_in_PointerToeml23__VolumeMeasure(soap, "prodml23:CompactVolume", &a->prodml23__FluidComponentProperty::CompactVolume, "eml23:VolumeMeasure")) { soap_flag_CompactVolume1--; continue; } } if (soap_flag_CriticalVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolarVolumeMeasure(soap, "prodml22:CriticalVolume", &a->prodml22__FluidComponentProperty::CriticalVolume, "eml23:MolarVolumeMeasure")) + { if (soap_in_PointerToeml23__MolarVolumeMeasure(soap, "prodml23:CriticalVolume", &a->prodml23__FluidComponentProperty::CriticalVolume, "eml23:MolarVolumeMeasure")) { soap_flag_CriticalVolume1--; continue; } } if (soap_flag_AcentricFactor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:AcentricFactor", &a->prodml22__FluidComponentProperty::AcentricFactor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:AcentricFactor", &a->prodml23__FluidComponentProperty::AcentricFactor, "xsd:double")) { soap_flag_AcentricFactor1--; continue; } } if (soap_flag_MassDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:MassDensity", &a->prodml22__FluidComponentProperty::MassDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:MassDensity", &a->prodml23__FluidComponentProperty::MassDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_MassDensity1--; continue; } } if (soap_flag_OmegaA1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:OmegaA", &a->prodml22__FluidComponentProperty::OmegaA, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:OmegaA", &a->prodml23__FluidComponentProperty::OmegaA, "xsd:double")) { soap_flag_OmegaA1--; continue; } } if (soap_flag_OmegaB1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:OmegaB", &a->prodml22__FluidComponentProperty::OmegaB, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:OmegaB", &a->prodml23__FluidComponentProperty::OmegaB, "xsd:double")) { soap_flag_OmegaB1--; continue; } } if (soap_flag_VolumeShiftParameter1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:VolumeShiftParameter", &a->prodml22__FluidComponentProperty::VolumeShiftParameter, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:VolumeShiftParameter", &a->prodml23__FluidComponentProperty::VolumeShiftParameter, "xsd:double")) { soap_flag_VolumeShiftParameter1--; continue; } } if (soap_flag_PartialMolarDensity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:PartialMolarDensity", &a->prodml22__FluidComponentProperty::PartialMolarDensity, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:PartialMolarDensity", &a->prodml23__FluidComponentProperty::PartialMolarDensity, "eml23:MassPerVolumeMeasure")) { soap_flag_PartialMolarDensity1--; continue; } } if (soap_flag_Parachor1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerTodouble(soap, "prodml22:Parachor", &a->prodml22__FluidComponentProperty::Parachor, "xsd:double")) + { if (soap_in_PointerTodouble(soap, "prodml23:Parachor", &a->prodml23__FluidComponentProperty::Parachor, "xsd:double")) { soap_flag_Parachor1--; continue; } } if (soap_flag_PartialMolarVolume1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolarVolumeMeasure(soap, "prodml22:PartialMolarVolume", &a->prodml22__FluidComponentProperty::PartialMolarVolume, "eml23:MolarVolumeMeasure")) + { if (soap_in_PointerToeml23__MolarVolumeMeasure(soap, "prodml23:PartialMolarVolume", &a->prodml23__FluidComponentProperty::PartialMolarVolume, "eml23:MolarVolumeMeasure")) { soap_flag_PartialMolarVolume1--; continue; } } if (soap_flag_ReferenceDensityZJ1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml22:ReferenceDensityZJ", &a->prodml22__FluidComponentProperty::ReferenceDensityZJ, "eml23:MassPerVolumeMeasure")) + { if (soap_in_PointerToeml23__MassPerVolumeMeasure(soap, "prodml23:ReferenceDensityZJ", &a->prodml23__FluidComponentProperty::ReferenceDensityZJ, "eml23:MassPerVolumeMeasure")) { soap_flag_ReferenceDensityZJ1--; continue; } } if (soap_flag_ReferenceGravityZJ1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:ReferenceGravityZJ", &a->prodml22__FluidComponentProperty::ReferenceGravityZJ, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:ReferenceGravityZJ", &a->prodml23__FluidComponentProperty::ReferenceGravityZJ, "eml23:APIGravityMeasure")) { soap_flag_ReferenceGravityZJ1--; continue; } } if (soap_flag_ReferenceTemperatureZJ1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReferenceTemperatureZJ", &a->prodml22__FluidComponentProperty::ReferenceTemperatureZJ, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReferenceTemperatureZJ", &a->prodml23__FluidComponentProperty::ReferenceTemperatureZJ, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReferenceTemperatureZJ1--; continue; } } if (soap_flag_ViscousCompressibility1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml22:ViscousCompressibility", &a->prodml22__FluidComponentProperty::ViscousCompressibility, "eml23:ReciprocalPressureMeasure")) + { if (soap_in_PointerToeml23__ReciprocalPressureMeasure(soap, "prodml23:ViscousCompressibility", &a->prodml23__FluidComponentProperty::ViscousCompressibility, "eml23:ReciprocalPressureMeasure")) { soap_flag_ViscousCompressibility1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidComponentProperty::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidComponentProperty::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } @@ -240696,35 +240846,35 @@ SOAP_FMAC3 prodml22__FluidComponentProperty * SOAP_FMAC4 soap_in_prodml22__Fluid return NULL; } else - { a = (prodml22__FluidComponentProperty *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, sizeof(prodml22__FluidComponentProperty), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidComponentProperty *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, sizeof(prodml23__FluidComponentProperty), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidComponentProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidComponentProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidComponentProperty *p; - size_t k = sizeof(prodml22__FluidComponentProperty); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, n, gsoap_eml2_3_fdelete); + prodml23__FluidComponentProperty *p; + size_t k = sizeof(prodml23__FluidComponentProperty); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidComponentProperty); + { p = SOAP_NEW(soap, prodml23__FluidComponentProperty); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidComponentProperty, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidComponentProperty, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidComponentProperty location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidComponentProperty location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -240734,74 +240884,74 @@ SOAP_FMAC1 prodml22__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__FluidComponentProperty::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidComponentProperty::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidComponentProperty(soap, tag ? tag : "prodml22:FluidComponentProperty", -2, this, type)) + if (soap_out_prodml23__FluidComponentProperty(soap, tag ? tag : "prodml23:FluidComponentProperty", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidComponentProperty::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidComponentProperty::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidComponentProperty(soap, this, tag, type); + return soap_get_prodml23__FluidComponentProperty(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidComponentProperty * SOAP_FMAC4 soap_get_prodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentProperty * SOAP_FMAC4 soap_get_prodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidComponentProperty(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidComponentProperty(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationTableFormatSet::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationTableFormatSet::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, &this->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, &this->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat); } -void prodml22__FluidCharacterizationTableFormatSet::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationTableFormatSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, &this->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, &this->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat); #endif } -int prodml22__FluidCharacterizationTableFormatSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationTableFormatSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationTableFormatSet(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationTableFormatSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationTableFormatSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationTableFormatSet *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationTableFormatSet"; + type = "prodml23:FluidCharacterizationTableFormatSet"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, "prodml22:FluidCharacterizationTableFormat", -1, &a->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat, "prodml22:FluidCharacterizationTableFormat")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, "prodml23:FluidCharacterizationTableFormat", -1, &a->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat, "prodml23:FluidCharacterizationTableFormat")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationTableFormatSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableFormatSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationTableFormatSet(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationTableFormatSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableFormatSet *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableFormatSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationTableFormatSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet, sizeof(prodml22__FluidCharacterizationTableFormatSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationTableFormatSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet, sizeof(prodml23__FluidCharacterizationTableFormatSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationTableFormatSet *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationTableFormatSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -240810,7 +240960,7 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, "prodml22:FluidCharacterizationTableFormat", &a->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat, "prodml22:FluidCharacterizationTableFormat")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, "prodml23:FluidCharacterizationTableFormat", &a->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat, "prodml23:FluidCharacterizationTableFormat")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -240822,7 +240972,7 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_pr } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat.size() < 1)) + if ((a->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -240832,35 +240982,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_pr return NULL; } else - { a = (prodml22__FluidCharacterizationTableFormatSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet, sizeof(prodml22__FluidCharacterizationTableFormatSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableFormatSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet, sizeof(prodml23__FluidCharacterizationTableFormatSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationTableFormatSet *p; - size_t k = sizeof(prodml22__FluidCharacterizationTableFormatSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationTableFormatSet *p; + size_t k = sizeof(prodml23__FluidCharacterizationTableFormatSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationTableFormatSet); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationTableFormatSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationTableFormatSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationTableFormatSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationTableFormatSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationTableFormatSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -240870,88 +241020,88 @@ SOAP_FMAC1 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_insta return p; } -int prodml22__FluidCharacterizationTableFormatSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationTableFormatSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationTableFormatSet(soap, tag ? tag : "prodml22:FluidCharacterizationTableFormatSet", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationTableFormatSet(soap, tag ? tag : "prodml23:FluidCharacterizationTableFormatSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationTableFormatSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableFormatSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationTableFormatSet(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationTableFormatSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationTableFormatSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationTableFormatSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationTableFormat::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationTableFormat::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidCharacterizationTableFormat::NullValue = NULL; - this->prodml22__FluidCharacterizationTableFormat::Delimiter = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap, &this->prodml22__FluidCharacterizationTableFormat::TableColumn); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationTableFormat::uid); + this->prodml23__FluidCharacterizationTableFormat::NullValue = NULL; + this->prodml23__FluidCharacterizationTableFormat::Delimiter = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap, &this->prodml23__FluidCharacterizationTableFormat::TableColumn); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationTableFormat::uid); } -void prodml22__FluidCharacterizationTableFormat::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationTableFormat::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidCharacterizationTableFormat::NullValue); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidCharacterizationTableFormat::Delimiter); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap, &this->prodml22__FluidCharacterizationTableFormat::TableColumn); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidCharacterizationTableFormat::NullValue); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidCharacterizationTableFormat::Delimiter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap, &this->prodml23__FluidCharacterizationTableFormat::TableColumn); #endif } -int prodml22__FluidCharacterizationTableFormat::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationTableFormat::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationTableFormat(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationTableFormat(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationTableFormat *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationTableFormat *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationTableFormat"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationTableFormat*)a)->uid), 1); + type = "prodml23:FluidCharacterizationTableFormat"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationTableFormat*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:NullValue", -1, &a->prodml22__FluidCharacterizationTableFormat::NullValue, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:NullValue", -1, &a->prodml23__FluidCharacterizationTableFormat::NullValue, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Delimiter", -1, &a->prodml22__FluidCharacterizationTableFormat::Delimiter, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Delimiter", -1, &a->prodml23__FluidCharacterizationTableFormat::Delimiter, "eml23:String64")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap, "prodml22:TableColumn", -1, &a->prodml22__FluidCharacterizationTableFormat::TableColumn, "prodml22:FluidCharacterizationTableColumn")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap, "prodml23:TableColumn", -1, &a->prodml23__FluidCharacterizationTableFormat::TableColumn, "prodml23:FluidCharacterizationTableColumn")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationTableFormat::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableFormat::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationTableFormat(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationTableFormat(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableFormat *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableFormat *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationTableFormat*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, sizeof(prodml22__FluidCharacterizationTableFormat), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationTableFormat*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, sizeof(prodml23__FluidCharacterizationTableFormat), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationTableFormat *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationTableFormat *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidCharacterizationTableFormat*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidCharacterizationTableFormat*)a)->uid)) return NULL; size_t soap_flag_NullValue1 = 1; size_t soap_flag_Delimiter1 = 1; @@ -240960,19 +241110,19 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_NullValue1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:NullValue", &a->prodml22__FluidCharacterizationTableFormat::NullValue, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:NullValue", &a->prodml23__FluidCharacterizationTableFormat::NullValue, "eml23:String64")) { soap_flag_NullValue1--; continue; } } if (soap_flag_Delimiter1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Delimiter", &a->prodml22__FluidCharacterizationTableFormat::Delimiter, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Delimiter", &a->prodml23__FluidCharacterizationTableFormat::Delimiter, "eml23:String64")) { soap_flag_Delimiter1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap, "prodml22:TableColumn", &a->prodml22__FluidCharacterizationTableFormat::TableColumn, "prodml22:FluidCharacterizationTableColumn")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap, "prodml23:TableColumn", &a->prodml23__FluidCharacterizationTableFormat::TableColumn, "prodml23:FluidCharacterizationTableColumn")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -240984,7 +241134,7 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodm } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__FluidCharacterizationTableFormat::TableColumn.size() < 1)) + if ((a->prodml23__FluidCharacterizationTableFormat::TableColumn.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -240994,35 +241144,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__FluidCharacterizationTableFormat *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, sizeof(prodml22__FluidCharacterizationTableFormat), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableFormat *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, sizeof(prodml23__FluidCharacterizationTableFormat), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableFormat(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableFormat(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationTableFormat(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationTableFormat(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationTableFormat *p; - size_t k = sizeof(prodml22__FluidCharacterizationTableFormat); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationTableFormat *p; + size_t k = sizeof(prodml23__FluidCharacterizationTableFormat); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationTableFormat); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationTableFormat); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationTableFormat, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationTableFormat, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationTableFormat location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationTableFormat location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -241032,96 +241182,96 @@ SOAP_FMAC1 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instanti return p; } -int prodml22__FluidCharacterizationTableFormat::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationTableFormat::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationTableFormat(soap, tag ? tag : "prodml22:FluidCharacterizationTableFormat", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationTableFormat(soap, tag ? tag : "prodml23:FluidCharacterizationTableFormat", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationTableFormat::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableFormat::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationTableFormat(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationTableFormat(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationTableFormat(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationTableFormat(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationTableColumn::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationTableColumn::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__OutputFluidPropertyExt(soap, &this->prodml22__FluidCharacterizationTableColumn::Property); - this->prodml22__FluidCharacterizationTableColumn::Phase = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml22__FluidCharacterizationTableColumn::KeywordAlias); - this->prodml22__FluidCharacterizationTableColumn::fluidComponentReference = NULL; - this->prodml22__FluidCharacterizationTableColumn::name = NULL; - this->prodml22__FluidCharacterizationTableColumn::sequence = NULL; - soap_default_eml23__UnitOfMeasureExt(soap, &this->prodml22__FluidCharacterizationTableColumn::uom); + soap_default_prodml23__OutputFluidPropertyExt(soap, &this->prodml23__FluidCharacterizationTableColumn::Property); + this->prodml23__FluidCharacterizationTableColumn::Phase = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml23__FluidCharacterizationTableColumn::KeywordAlias); + this->prodml23__FluidCharacterizationTableColumn::fluidComponentReference = NULL; + this->prodml23__FluidCharacterizationTableColumn::name = NULL; + this->prodml23__FluidCharacterizationTableColumn::sequence = NULL; + soap_default_eml23__UnitOfMeasureExt(soap, &this->prodml23__FluidCharacterizationTableColumn::uom); } -void prodml22__FluidCharacterizationTableColumn::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationTableColumn::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__OutputFluidPropertyExt(soap, &this->prodml22__FluidCharacterizationTableColumn::Property); - soap_serialize_PointerToprodml22__ThermodynamicPhase(soap, &this->prodml22__FluidCharacterizationTableColumn::Phase); - soap_serialize_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml22__FluidCharacterizationTableColumn::KeywordAlias); + soap_serialize_prodml23__OutputFluidPropertyExt(soap, &this->prodml23__FluidCharacterizationTableColumn::Property); + soap_serialize_PointerToprodml23__ThermodynamicPhase(soap, &this->prodml23__FluidCharacterizationTableColumn::Phase); + soap_serialize_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml23__FluidCharacterizationTableColumn::KeywordAlias); #endif } -int prodml22__FluidCharacterizationTableColumn::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationTableColumn::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationTableColumn(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationTableColumn(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationTableColumn *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationTableColumn *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationTableColumn"; - if (((prodml22__FluidCharacterizationTableColumn*)a)->fluidComponentReference) - { soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, *((prodml22__FluidCharacterizationTableColumn*)a)->fluidComponentReference), 1); + type = "prodml23:FluidCharacterizationTableColumn"; + if (((prodml23__FluidCharacterizationTableColumn*)a)->fluidComponentReference) + { soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, *((prodml23__FluidCharacterizationTableColumn*)a)->fluidComponentReference), 1); } - if (((prodml22__FluidCharacterizationTableColumn*)a)->name) - { soap_set_attr(soap, "name", soap_eml23__String642s(soap, *((prodml22__FluidCharacterizationTableColumn*)a)->name), 1); + if (((prodml23__FluidCharacterizationTableColumn*)a)->name) + { soap_set_attr(soap, "name", soap_eml23__String642s(soap, *((prodml23__FluidCharacterizationTableColumn*)a)->name), 1); } - if (((prodml22__FluidCharacterizationTableColumn*)a)->sequence) - { soap_set_attr(soap, "sequence", soap_eml23__NonNegativeLong2s(soap, *((prodml22__FluidCharacterizationTableColumn*)a)->sequence), 1); + if (((prodml23__FluidCharacterizationTableColumn*)a)->sequence) + { soap_set_attr(soap, "sequence", soap_eml23__NonNegativeLong2s(soap, *((prodml23__FluidCharacterizationTableColumn*)a)->sequence), 1); } - soap_set_attr(soap, "uom", soap_eml23__UnitOfMeasureExt2s(soap, ((prodml22__FluidCharacterizationTableColumn*)a)->uom), 1); + soap_set_attr(soap, "uom", soap_eml23__UnitOfMeasureExt2s(soap, ((prodml23__FluidCharacterizationTableColumn*)a)->uom), 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_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn), type)) return soap->error; - if (soap_out_prodml22__OutputFluidPropertyExt(soap, "prodml22:Property", -1, &a->prodml22__FluidCharacterizationTableColumn::Property, "prodml22:OutputFluidPropertyExt")) + if (soap_out_prodml23__OutputFluidPropertyExt(soap, "prodml23:Property", -1, &a->prodml23__FluidCharacterizationTableColumn::Property, "prodml23:OutputFluidPropertyExt")) return soap->error; - if (soap_out_PointerToprodml22__ThermodynamicPhase(soap, "prodml22:Phase", -1, &a->prodml22__FluidCharacterizationTableColumn::Phase, "prodml22:ThermodynamicPhase")) + if (soap_out_PointerToprodml23__ThermodynamicPhase(soap, "prodml23:Phase", -1, &a->prodml23__FluidCharacterizationTableColumn::Phase, "prodml23:ThermodynamicPhase")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml22:KeywordAlias", -1, &a->prodml22__FluidCharacterizationTableColumn::KeywordAlias, "eml23:ObjectAlias")) + if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml23:KeywordAlias", -1, &a->prodml23__FluidCharacterizationTableColumn::KeywordAlias, "eml23:ObjectAlias")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationTableColumn::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableColumn::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationTableColumn(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationTableColumn(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableColumn *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableColumn *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationTableColumn*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, sizeof(prodml22__FluidCharacterizationTableColumn), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationTableColumn*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, sizeof(prodml23__FluidCharacterizationTableColumn), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationTableColumn *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationTableColumn *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -241129,9 +241279,9 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodm const char *t = soap_attr_value(soap, "fluidComponentReference", 1, 0); if (t) { - if (!(((prodml22__FluidCharacterizationTableColumn*)a)->fluidComponentReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__FluidCharacterizationTableColumn*)a)->fluidComponentReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FluidCharacterizationTableColumn*)a)->fluidComponentReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FluidCharacterizationTableColumn*)a)->fluidComponentReference)) return NULL; } else if (soap->error) @@ -241141,9 +241291,9 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodm const char *t = soap_attr_value(soap, "name", 1, 0); if (t) { - if (!(((prodml22__FluidCharacterizationTableColumn*)a)->name = soap_new_eml23__String64(soap))) + if (!(((prodml23__FluidCharacterizationTableColumn*)a)->name = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FluidCharacterizationTableColumn*)a)->name)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FluidCharacterizationTableColumn*)a)->name)) return NULL; } else if (soap->error) @@ -241153,15 +241303,15 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodm const char *t = soap_attr_value(soap, "sequence", 5, 0); if (t) { - if (!(((prodml22__FluidCharacterizationTableColumn*)a)->sequence = (LONG64 *)soap_malloc(soap, sizeof(LONG64)))) + if (!(((prodml23__FluidCharacterizationTableColumn*)a)->sequence = (LONG64 *)soap_malloc(soap, sizeof(LONG64)))) return NULL; - if (soap_s2eml23__NonNegativeLong(soap, t, ((prodml22__FluidCharacterizationTableColumn*)a)->sequence)) + if (soap_s2eml23__NonNegativeLong(soap, t, ((prodml23__FluidCharacterizationTableColumn*)a)->sequence)) return NULL; } else if (soap->error) return NULL; } - if (soap_s2eml23__UnitOfMeasureExt(soap, soap_attr_value(soap, "uom", 1, 3), &((prodml22__FluidCharacterizationTableColumn*)a)->uom)) + if (soap_s2eml23__UnitOfMeasureExt(soap, soap_attr_value(soap, "uom", 1, 3), &((prodml23__FluidCharacterizationTableColumn*)a)->uom)) return NULL; size_t soap_flag_Property1 = 1; size_t soap_flag_Phase1 = 1; @@ -241170,19 +241320,19 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Property1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__OutputFluidPropertyExt(soap, "prodml22:Property", &a->prodml22__FluidCharacterizationTableColumn::Property, "prodml22:OutputFluidPropertyExt")) + { if (soap_in_prodml23__OutputFluidPropertyExt(soap, "prodml23:Property", &a->prodml23__FluidCharacterizationTableColumn::Property, "prodml23:OutputFluidPropertyExt")) { soap_flag_Property1--; continue; } } if (soap_flag_Phase1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ThermodynamicPhase(soap, "prodml22:Phase", &a->prodml22__FluidCharacterizationTableColumn::Phase, "prodml22:ThermodynamicPhase")) + { if (soap_in_PointerToprodml23__ThermodynamicPhase(soap, "prodml23:Phase", &a->prodml23__FluidCharacterizationTableColumn::Phase, "prodml23:ThermodynamicPhase")) { soap_flag_Phase1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml22:KeywordAlias", &a->prodml22__FluidCharacterizationTableColumn::KeywordAlias, "eml23:ObjectAlias")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml23:KeywordAlias", &a->prodml23__FluidCharacterizationTableColumn::KeywordAlias, "eml23:ObjectAlias")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -241204,35 +241354,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__FluidCharacterizationTableColumn *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, sizeof(prodml22__FluidCharacterizationTableColumn), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableColumn *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, sizeof(prodml23__FluidCharacterizationTableColumn), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableColumn(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableColumn(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationTableColumn(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationTableColumn(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationTableColumn *p; - size_t k = sizeof(prodml22__FluidCharacterizationTableColumn); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationTableColumn *p; + size_t k = sizeof(prodml23__FluidCharacterizationTableColumn); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationTableColumn); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationTableColumn); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationTableColumn, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationTableColumn, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationTableColumn location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationTableColumn location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -241242,96 +241392,96 @@ SOAP_FMAC1 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instanti return p; } -int prodml22__FluidCharacterizationTableColumn::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationTableColumn::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationTableColumn(soap, tag ? tag : "prodml22:FluidCharacterizationTableColumn", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationTableColumn(soap, tag ? tag : "prodml23:FluidCharacterizationTableColumn", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationTableColumn::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableColumn::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationTableColumn(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationTableColumn(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationTableColumn(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationTableColumn(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationTable::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationTable::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, &this->prodml22__FluidCharacterizationTable::TableConstant); - this->prodml22__FluidCharacterizationTable::Remark = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap, &this->prodml22__FluidCharacterizationTable::TableRow); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationTable::uid); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationTable::tableFormat); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationTable::name); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, &this->prodml23__FluidCharacterizationTable::TableConstant); + this->prodml23__FluidCharacterizationTable::Remark = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap, &this->prodml23__FluidCharacterizationTable::TableRow); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationTable::uid); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationTable::tableFormat); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationTable::name); } -void prodml22__FluidCharacterizationTable::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationTable::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, &this->prodml22__FluidCharacterizationTable::TableConstant); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidCharacterizationTable::Remark); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap, &this->prodml22__FluidCharacterizationTable::TableRow); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, &this->prodml23__FluidCharacterizationTable::TableConstant); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidCharacterizationTable::Remark); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap, &this->prodml23__FluidCharacterizationTable::TableRow); #endif } -int prodml22__FluidCharacterizationTable::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationTable::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationTable(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationTable(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTable(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationTable *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTable(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationTable *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationTable"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationTable*)a)->uid), 1); - soap_set_attr(soap, "tableFormat", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationTable*)a)->tableFormat), 1); - soap_set_attr(soap, "name", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationTable*)a)->name), 1); + type = "prodml23:FluidCharacterizationTable"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationTable*)a)->uid), 1); + soap_set_attr(soap, "tableFormat", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationTable*)a)->tableFormat), 1); + soap_set_attr(soap, "name", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationTable*)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_gsoap_eml2_3_prodml22__FluidCharacterizationTable), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, "prodml22:TableConstant", -1, &a->prodml22__FluidCharacterizationTable::TableConstant, "prodml22:FluidCharacterizationParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, "prodml23:TableConstant", -1, &a->prodml23__FluidCharacterizationTable::TableConstant, "prodml23:FluidCharacterizationParameter")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidCharacterizationTable::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidCharacterizationTable::Remark, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap, "prodml22:TableRow", -1, &a->prodml22__FluidCharacterizationTable::TableRow, "prodml22:FluidCharacterizationTableRow")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap, "prodml23:TableRow", -1, &a->prodml23__FluidCharacterizationTable::TableRow, "prodml23:FluidCharacterizationTableRow")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationTable::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTable::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationTable(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationTable(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTable(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTable *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTable(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTable *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationTable*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, sizeof(prodml22__FluidCharacterizationTable), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationTable*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, sizeof(prodml23__FluidCharacterizationTable), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationTable *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationTable *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidCharacterizationTable*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidCharacterizationTable*)a)->uid)) return NULL; - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "tableFormat", 1, 3), &((prodml22__FluidCharacterizationTable*)a)->tableFormat)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "tableFormat", 1, 3), &((prodml23__FluidCharacterizationTable*)a)->tableFormat)) return NULL; - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "name", 1, 3), &((prodml22__FluidCharacterizationTable*)a)->name)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "name", 1, 3), &((prodml23__FluidCharacterizationTable*)a)->name)) return NULL; size_t soap_flag_Remark1 = 1; if (soap->body && *soap->href != '#') @@ -241339,17 +241489,17 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml22__F for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, "prodml22:TableConstant", &a->prodml22__FluidCharacterizationTable::TableConstant, "prodml22:FluidCharacterizationParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, "prodml23:TableConstant", &a->prodml23__FluidCharacterizationTable::TableConstant, "prodml23:FluidCharacterizationParameter")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidCharacterizationTable::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidCharacterizationTable::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap, "prodml22:TableRow", &a->prodml22__FluidCharacterizationTable::TableRow, "prodml22:FluidCharacterizationTableRow")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap, "prodml23:TableRow", &a->prodml23__FluidCharacterizationTable::TableRow, "prodml23:FluidCharacterizationTableRow")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -241361,7 +241511,7 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml22__F } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__FluidCharacterizationTable::TableRow.size() < 1)) + if ((a->prodml23__FluidCharacterizationTable::TableRow.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -241371,35 +241521,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml22__F return NULL; } else - { a = (prodml22__FluidCharacterizationTable *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, sizeof(prodml22__FluidCharacterizationTable), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTable *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, sizeof(prodml23__FluidCharacterizationTable), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTable(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTable(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationTable(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationTable(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationTable *p; - size_t k = sizeof(prodml22__FluidCharacterizationTable); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationTable *p; + size_t k = sizeof(prodml23__FluidCharacterizationTable); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationTable); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationTable); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationTable, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationTable, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationTable location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationTable location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -241409,78 +241559,78 @@ SOAP_FMAC1 prodml22__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__FluidCharacterizationTable::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationTable::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationTable(soap, tag ? tag : "prodml22:FluidCharacterizationTable", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationTable(soap, tag ? tag : "prodml23:FluidCharacterizationTable", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationTable::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTable::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationTable(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationTable(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTable * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationTable(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationTable(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationSource::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationSource::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__FluidCharacterizationSource::FluidAnalysisTestReference); - this->prodml22__FluidCharacterizationSource::FluidAnalysis = NULL; + soap_default_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__FluidCharacterizationSource::FluidAnalysisTestReference); + this->prodml23__FluidCharacterizationSource::FluidAnalysis = NULL; } -void prodml22__FluidCharacterizationSource::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationSource::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml22__FluidCharacterizationSource::FluidAnalysisTestReference); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidCharacterizationSource::FluidAnalysis); + soap_serialize_std__vectorTemplateOfeml23__String64(soap, &this->prodml23__FluidCharacterizationSource::FluidAnalysisTestReference); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidCharacterizationSource::FluidAnalysis); #endif } -int prodml22__FluidCharacterizationSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationSource::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationSource(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationSource(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationSource(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationSource *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationSource(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationSource *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationSource"; + type = "prodml23:FluidCharacterizationSource"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource), type)) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml22:FluidAnalysisTestReference", -1, &a->prodml22__FluidCharacterizationSource::FluidAnalysisTestReference, "eml23:String64")) + if (soap_out_std__vectorTemplateOfeml23__String64(soap, "prodml23:FluidAnalysisTestReference", -1, &a->prodml23__FluidCharacterizationSource::FluidAnalysisTestReference, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidAnalysis", -1, &a->prodml22__FluidCharacterizationSource::FluidAnalysis, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidAnalysis", -1, &a->prodml23__FluidCharacterizationSource::FluidAnalysis, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationSource::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationSource::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationSource(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationSource(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationSource * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationSource(struct soap *soap, const char *tag, prodml22__FluidCharacterizationSource *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationSource * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationSource(struct soap *soap, const char *tag, prodml23__FluidCharacterizationSource *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, sizeof(prodml22__FluidCharacterizationSource), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationSource*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, sizeof(prodml23__FluidCharacterizationSource), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationSource *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationSource *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -241490,11 +241640,11 @@ SOAP_FMAC3 prodml22__FluidCharacterizationSource * SOAP_FMAC4 soap_in_prodml22__ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml22:FluidAnalysisTestReference", &a->prodml22__FluidCharacterizationSource::FluidAnalysisTestReference, "eml23:String64")) + { if (soap_in_std__vectorTemplateOfeml23__String64(soap, "prodml23:FluidAnalysisTestReference", &a->prodml23__FluidCharacterizationSource::FluidAnalysisTestReference, "eml23:String64")) continue; } if (soap_flag_FluidAnalysis1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidAnalysis", &a->prodml22__FluidCharacterizationSource::FluidAnalysis, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidAnalysis", &a->prodml23__FluidCharacterizationSource::FluidAnalysis, "eml23:DataObjectReference")) { soap_flag_FluidAnalysis1--; continue; } @@ -241510,35 +241660,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationSource * SOAP_FMAC4 soap_in_prodml22__ return NULL; } else - { a = (prodml22__FluidCharacterizationSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, sizeof(prodml22__FluidCharacterizationSource), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationSource *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, sizeof(prodml23__FluidCharacterizationSource), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationSource *p; - size_t k = sizeof(prodml22__FluidCharacterizationSource); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationSource *p; + size_t k = sizeof(prodml23__FluidCharacterizationSource); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationSource); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationSource); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationSource, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationSource, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationSource location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationSource location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -241548,74 +241698,74 @@ SOAP_FMAC1 prodml22__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_p return p; } -int prodml22__FluidCharacterizationSource::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationSource::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationSource(soap, tag ? tag : "prodml22:FluidCharacterizationSource", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationSource(soap, tag ? tag : "prodml23:FluidCharacterizationSource", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationSource::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationSource::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationSource(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationSource(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationSource * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationSource * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationSource(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationSource(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationParameterSet::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationParameterSet::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, &this->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, &this->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter); } -void prodml22__FluidCharacterizationParameterSet::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationParameterSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, &this->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, &this->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter); #endif } -int prodml22__FluidCharacterizationParameterSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationParameterSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationParameterSet(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationParameterSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationParameterSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationParameterSet *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationParameterSet"; + type = "prodml23:FluidCharacterizationParameterSet"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, "prodml22:FluidCharacterizationParameter", -1, &a->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter, "prodml22:FluidCharacterizationParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, "prodml23:FluidCharacterizationParameter", -1, &a->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter, "prodml23:FluidCharacterizationParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationParameterSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationParameterSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationParameterSet(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationParameterSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, prodml22__FluidCharacterizationParameterSet *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, prodml23__FluidCharacterizationParameterSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationParameterSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet, sizeof(prodml22__FluidCharacterizationParameterSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationParameterSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet, sizeof(prodml23__FluidCharacterizationParameterSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationParameterSet *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationParameterSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -241624,7 +241774,7 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prod for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, "prodml22:FluidCharacterizationParameter", &a->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter, "prodml22:FluidCharacterizationParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, "prodml23:FluidCharacterizationParameter", &a->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter, "prodml23:FluidCharacterizationParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -241636,7 +241786,7 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prod } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter.size() < 1)) + if ((a->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -241646,35 +241796,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prod return NULL; } else - { a = (prodml22__FluidCharacterizationParameterSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet, sizeof(prodml22__FluidCharacterizationParameterSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationParameterSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet, sizeof(prodml23__FluidCharacterizationParameterSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationParameterSet *p; - size_t k = sizeof(prodml22__FluidCharacterizationParameterSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationParameterSet *p; + size_t k = sizeof(prodml23__FluidCharacterizationParameterSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationParameterSet); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationParameterSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationParameterSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationParameterSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationParameterSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationParameterSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -241684,94 +241834,94 @@ SOAP_FMAC1 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instant return p; } -int prodml22__FluidCharacterizationParameterSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationParameterSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationParameterSet(soap, tag ? tag : "prodml22:FluidCharacterizationParameterSet", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationParameterSet(soap, tag ? tag : "prodml23:FluidCharacterizationParameterSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationParameterSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationParameterSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationParameterSet(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationParameterSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationParameterSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationParameterSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationParameter::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationParameter::soap_default(struct soap *soap) { this->soap = soap; - soap_default_prodml22__OutputFluidPropertyExt(soap, &this->prodml22__FluidCharacterizationParameter::Property); - this->prodml22__FluidCharacterizationParameter::Phase = NULL; - soap_default_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml22__FluidCharacterizationParameter::KeywordAlias); - this->prodml22__FluidCharacterizationParameter::name = NULL; - soap_default_double(soap, &this->prodml22__FluidCharacterizationParameter::value); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationParameter::uom); - this->prodml22__FluidCharacterizationParameter::fluidComponentReference = NULL; + soap_default_prodml23__OutputFluidPropertyExt(soap, &this->prodml23__FluidCharacterizationParameter::Property); + this->prodml23__FluidCharacterizationParameter::Phase = NULL; + soap_default_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml23__FluidCharacterizationParameter::KeywordAlias); + this->prodml23__FluidCharacterizationParameter::name = NULL; + soap_default_double(soap, &this->prodml23__FluidCharacterizationParameter::value); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationParameter::uom); + this->prodml23__FluidCharacterizationParameter::fluidComponentReference = NULL; } -void prodml22__FluidCharacterizationParameter::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_prodml22__OutputFluidPropertyExt(soap, &this->prodml22__FluidCharacterizationParameter::Property); - soap_serialize_PointerToprodml22__ThermodynamicPhase(soap, &this->prodml22__FluidCharacterizationParameter::Phase); - soap_serialize_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml22__FluidCharacterizationParameter::KeywordAlias); + soap_serialize_prodml23__OutputFluidPropertyExt(soap, &this->prodml23__FluidCharacterizationParameter::Property); + soap_serialize_PointerToprodml23__ThermodynamicPhase(soap, &this->prodml23__FluidCharacterizationParameter::Phase); + soap_serialize_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, &this->prodml23__FluidCharacterizationParameter::KeywordAlias); #endif } -int prodml22__FluidCharacterizationParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationParameter(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationParameter(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationParameter(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationParameter *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationParameter"; - if (((prodml22__FluidCharacterizationParameter*)a)->name) - { soap_set_attr(soap, "name", soap_eml23__String642s(soap, *((prodml22__FluidCharacterizationParameter*)a)->name), 1); + type = "prodml23:FluidCharacterizationParameter"; + if (((prodml23__FluidCharacterizationParameter*)a)->name) + { soap_set_attr(soap, "name", soap_eml23__String642s(soap, *((prodml23__FluidCharacterizationParameter*)a)->name), 1); } - soap_set_attr(soap, "value", soap_double2s(soap, ((prodml22__FluidCharacterizationParameter*)a)->value), 1); - soap_set_attr(soap, "uom", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationParameter*)a)->uom), 1); - if (((prodml22__FluidCharacterizationParameter*)a)->fluidComponentReference) - { soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, *((prodml22__FluidCharacterizationParameter*)a)->fluidComponentReference), 1); + soap_set_attr(soap, "value", soap_double2s(soap, ((prodml23__FluidCharacterizationParameter*)a)->value), 1); + soap_set_attr(soap, "uom", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationParameter*)a)->uom), 1); + if (((prodml23__FluidCharacterizationParameter*)a)->fluidComponentReference) + { soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, *((prodml23__FluidCharacterizationParameter*)a)->fluidComponentReference), 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_gsoap_eml2_3_prodml22__FluidCharacterizationParameter), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter), type)) return soap->error; - if (soap_out_prodml22__OutputFluidPropertyExt(soap, "prodml22:Property", -1, &a->prodml22__FluidCharacterizationParameter::Property, "prodml22:OutputFluidPropertyExt")) + if (soap_out_prodml23__OutputFluidPropertyExt(soap, "prodml23:Property", -1, &a->prodml23__FluidCharacterizationParameter::Property, "prodml23:OutputFluidPropertyExt")) return soap->error; - if (soap_out_PointerToprodml22__ThermodynamicPhase(soap, "prodml22:Phase", -1, &a->prodml22__FluidCharacterizationParameter::Phase, "prodml22:ThermodynamicPhase")) + if (soap_out_PointerToprodml23__ThermodynamicPhase(soap, "prodml23:Phase", -1, &a->prodml23__FluidCharacterizationParameter::Phase, "prodml23:ThermodynamicPhase")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml22:KeywordAlias", -1, &a->prodml22__FluidCharacterizationParameter::KeywordAlias, "eml23:ObjectAlias")) + if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml23:KeywordAlias", -1, &a->prodml23__FluidCharacterizationParameter::KeywordAlias, "eml23:ObjectAlias")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationParameter(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationParameter(struct soap *soap, const char *tag, prodml22__FluidCharacterizationParameter *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationParameter(struct soap *soap, const char *tag, prodml23__FluidCharacterizationParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, sizeof(prodml22__FluidCharacterizationParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, sizeof(prodml23__FluidCharacterizationParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationParameter *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -241779,25 +241929,25 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml2 const char *t = soap_attr_value(soap, "name", 1, 0); if (t) { - if (!(((prodml22__FluidCharacterizationParameter*)a)->name = soap_new_eml23__String64(soap))) + if (!(((prodml23__FluidCharacterizationParameter*)a)->name = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FluidCharacterizationParameter*)a)->name)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FluidCharacterizationParameter*)a)->name)) return NULL; } else if (soap->error) return NULL; } - if (soap_s2double(soap, soap_attr_value(soap, "value", 5, 3), &((prodml22__FluidCharacterizationParameter*)a)->value)) + if (soap_s2double(soap, soap_attr_value(soap, "value", 5, 3), &((prodml23__FluidCharacterizationParameter*)a)->value)) return NULL; - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uom", 1, 3), &((prodml22__FluidCharacterizationParameter*)a)->uom)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uom", 1, 3), &((prodml23__FluidCharacterizationParameter*)a)->uom)) return NULL; { const char *t = soap_attr_value(soap, "fluidComponentReference", 1, 0); if (t) { - if (!(((prodml22__FluidCharacterizationParameter*)a)->fluidComponentReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__FluidCharacterizationParameter*)a)->fluidComponentReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__FluidCharacterizationParameter*)a)->fluidComponentReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__FluidCharacterizationParameter*)a)->fluidComponentReference)) return NULL; } else if (soap->error) @@ -241810,19 +241960,19 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml2 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Property1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_prodml22__OutputFluidPropertyExt(soap, "prodml22:Property", &a->prodml22__FluidCharacterizationParameter::Property, "prodml22:OutputFluidPropertyExt")) + { if (soap_in_prodml23__OutputFluidPropertyExt(soap, "prodml23:Property", &a->prodml23__FluidCharacterizationParameter::Property, "prodml23:OutputFluidPropertyExt")) { soap_flag_Property1--; continue; } } if (soap_flag_Phase1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ThermodynamicPhase(soap, "prodml22:Phase", &a->prodml22__FluidCharacterizationParameter::Phase, "prodml22:ThermodynamicPhase")) + { if (soap_in_PointerToprodml23__ThermodynamicPhase(soap, "prodml23:Phase", &a->prodml23__FluidCharacterizationParameter::Phase, "prodml23:ThermodynamicPhase")) { soap_flag_Phase1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml22:KeywordAlias", &a->prodml22__FluidCharacterizationParameter::KeywordAlias, "eml23:ObjectAlias")) + { if (soap_in_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "prodml23:KeywordAlias", &a->prodml23__FluidCharacterizationParameter::KeywordAlias, "eml23:ObjectAlias")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -241844,35 +241994,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__FluidCharacterizationParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, sizeof(prodml22__FluidCharacterizationParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, sizeof(prodml23__FluidCharacterizationParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationParameter *p; - size_t k = sizeof(prodml22__FluidCharacterizationParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationParameter *p; + size_t k = sizeof(prodml23__FluidCharacterizationParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationParameter); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -241882,116 +242032,116 @@ SOAP_FMAC1 prodml22__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__FluidCharacterizationParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationParameter(soap, tag ? tag : "prodml22:FluidCharacterizationParameter", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationParameter(soap, tag ? tag : "prodml23:FluidCharacterizationParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationParameter(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameter * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationModel::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__FluidCharacterizationModel::Name = NULL; - this->prodml22__FluidCharacterizationModel::ReferencePressure = NULL; - this->prodml22__FluidCharacterizationModel::ReferenceStockTankPressure = NULL; - this->prodml22__FluidCharacterizationModel::ReferenceTemperature = NULL; - this->prodml22__FluidCharacterizationModel::ReferenceStockTankTemperature = NULL; - this->prodml22__FluidCharacterizationModel::Remark = NULL; - this->prodml22__FluidCharacterizationModel::ModelSpecification = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap, &this->prodml22__FluidCharacterizationModel::FluidCharacterizationTable); - this->prodml22__FluidCharacterizationModel::FluidCharacterizationParameterSet = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap, &this->prodml22__FluidCharacterizationModel::ReferenceSeparatorStage); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationModel::uid); + this->prodml23__FluidCharacterizationModel::Name = NULL; + this->prodml23__FluidCharacterizationModel::ReferencePressure = NULL; + this->prodml23__FluidCharacterizationModel::ReferenceStockTankPressure = NULL; + this->prodml23__FluidCharacterizationModel::ReferenceTemperature = NULL; + this->prodml23__FluidCharacterizationModel::ReferenceStockTankTemperature = NULL; + this->prodml23__FluidCharacterizationModel::Remark = NULL; + this->prodml23__FluidCharacterizationModel::ModelSpecification = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap, &this->prodml23__FluidCharacterizationModel::FluidCharacterizationTable); + this->prodml23__FluidCharacterizationModel::FluidCharacterizationParameterSet = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap, &this->prodml23__FluidCharacterizationModel::ReferenceSeparatorStage); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationModel::uid); } -void prodml22__FluidCharacterizationModel::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidCharacterizationModel::Name); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__FluidCharacterizationModel::ReferencePressure); - soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml22__FluidCharacterizationModel::ReferenceStockTankPressure); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidCharacterizationModel::ReferenceTemperature); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__FluidCharacterizationModel::ReferenceStockTankTemperature); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidCharacterizationModel::Remark); - soap_serialize_PointerToprodml22__AbstractPvtModel(soap, &this->prodml22__FluidCharacterizationModel::ModelSpecification); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap, &this->prodml22__FluidCharacterizationModel::FluidCharacterizationTable); - soap_serialize_PointerToprodml22__FluidCharacterizationParameterSet(soap, &this->prodml22__FluidCharacterizationModel::FluidCharacterizationParameterSet); - soap_serialize_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap, &this->prodml22__FluidCharacterizationModel::ReferenceSeparatorStage); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidCharacterizationModel::Name); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__FluidCharacterizationModel::ReferencePressure); + soap_serialize_PointerToeml23__AbstractPressureValue(soap, &this->prodml23__FluidCharacterizationModel::ReferenceStockTankPressure); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidCharacterizationModel::ReferenceTemperature); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__FluidCharacterizationModel::ReferenceStockTankTemperature); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidCharacterizationModel::Remark); + soap_serialize_PointerToprodml23__AbstractPvtModel(soap, &this->prodml23__FluidCharacterizationModel::ModelSpecification); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap, &this->prodml23__FluidCharacterizationModel::FluidCharacterizationTable); + soap_serialize_PointerToprodml23__FluidCharacterizationParameterSet(soap, &this->prodml23__FluidCharacterizationModel::FluidCharacterizationParameterSet); + soap_serialize_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap, &this->prodml23__FluidCharacterizationModel::ReferenceSeparatorStage); #endif } -int prodml22__FluidCharacterizationModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationModel(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationModel(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationModel(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationModel *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationModel"; - soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationModel*)a)->uid), 1); + type = "prodml23:FluidCharacterizationModel"; + soap_set_attr(soap, "uid", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationModel*)a)->uid), 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_gsoap_eml2_3_prodml22__FluidCharacterizationModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel), type)) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Name", -1, &a->prodml22__FluidCharacterizationModel::Name, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Name", -1, &a->prodml23__FluidCharacterizationModel::Name, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:ReferencePressure", -1, &a->prodml22__FluidCharacterizationModel::ReferencePressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:ReferencePressure", -1, &a->prodml23__FluidCharacterizationModel::ReferencePressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml22:ReferenceStockTankPressure", -1, &a->prodml22__FluidCharacterizationModel::ReferenceStockTankPressure, "eml23:AbstractPressureValue")) + if (soap_out_PointerToeml23__AbstractPressureValue(soap, "prodml23:ReferenceStockTankPressure", -1, &a->prodml23__FluidCharacterizationModel::ReferenceStockTankPressure, "eml23:AbstractPressureValue")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReferenceTemperature", -1, &a->prodml22__FluidCharacterizationModel::ReferenceTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReferenceTemperature", -1, &a->prodml23__FluidCharacterizationModel::ReferenceTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReferenceStockTankTemperature", -1, &a->prodml22__FluidCharacterizationModel::ReferenceStockTankTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReferenceStockTankTemperature", -1, &a->prodml23__FluidCharacterizationModel::ReferenceStockTankTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidCharacterizationModel::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidCharacterizationModel::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToprodml22__AbstractPvtModel(soap, "prodml22:ModelSpecification", -1, &a->prodml22__FluidCharacterizationModel::ModelSpecification, "prodml22:AbstractPvtModel")) + if (soap_out_PointerToprodml23__AbstractPvtModel(soap, "prodml23:ModelSpecification", -1, &a->prodml23__FluidCharacterizationModel::ModelSpecification, "prodml23:AbstractPvtModel")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap, "prodml22:FluidCharacterizationTable", -1, &a->prodml22__FluidCharacterizationModel::FluidCharacterizationTable, "prodml22:FluidCharacterizationTable")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap, "prodml23:FluidCharacterizationTable", -1, &a->prodml23__FluidCharacterizationModel::FluidCharacterizationTable, "prodml23:FluidCharacterizationTable")) return soap->error; - if (soap_out_PointerToprodml22__FluidCharacterizationParameterSet(soap, "prodml22:FluidCharacterizationParameterSet", -1, &a->prodml22__FluidCharacterizationModel::FluidCharacterizationParameterSet, "prodml22:FluidCharacterizationParameterSet")) + if (soap_out_PointerToprodml23__FluidCharacterizationParameterSet(soap, "prodml23:FluidCharacterizationParameterSet", -1, &a->prodml23__FluidCharacterizationModel::FluidCharacterizationParameterSet, "prodml23:FluidCharacterizationParameterSet")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap, "prodml22:ReferenceSeparatorStage", -1, &a->prodml22__FluidCharacterizationModel::ReferenceSeparatorStage, "prodml22:ReferenceSeparatorStage")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap, "prodml23:ReferenceSeparatorStage", -1, &a->prodml23__FluidCharacterizationModel::ReferenceSeparatorStage, "prodml23:ReferenceSeparatorStage")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterizationModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationModel(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationModel * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationModel(struct soap *soap, const char *tag, prodml22__FluidCharacterizationModel *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationModel * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationModel(struct soap *soap, const char *tag, prodml23__FluidCharacterizationModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterizationModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, sizeof(prodml22__FluidCharacterizationModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterizationModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, sizeof(prodml23__FluidCharacterizationModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterizationModel *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterizationModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml22__FluidCharacterizationModel*)a)->uid)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "uid", 1, 3), &((prodml23__FluidCharacterizationModel*)a)->uid)) return NULL; size_t soap_flag_Name1 = 1; size_t soap_flag_ReferencePressure1 = 1; @@ -242006,59 +242156,59 @@ SOAP_FMAC3 prodml22__FluidCharacterizationModel * SOAP_FMAC4 soap_in_prodml22__F for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Name1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Name", &a->prodml22__FluidCharacterizationModel::Name, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Name", &a->prodml23__FluidCharacterizationModel::Name, "eml23:String64")) { soap_flag_Name1--; continue; } } if (soap_flag_ReferencePressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:ReferencePressure", &a->prodml22__FluidCharacterizationModel::ReferencePressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:ReferencePressure", &a->prodml23__FluidCharacterizationModel::ReferencePressure, "eml23:AbstractPressureValue")) { soap_flag_ReferencePressure1--; continue; } } if (soap_flag_ReferenceStockTankPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml22:ReferenceStockTankPressure", &a->prodml22__FluidCharacterizationModel::ReferenceStockTankPressure, "eml23:AbstractPressureValue")) + { if (soap_in_PointerToeml23__AbstractPressureValue(soap, "prodml23:ReferenceStockTankPressure", &a->prodml23__FluidCharacterizationModel::ReferenceStockTankPressure, "eml23:AbstractPressureValue")) { soap_flag_ReferenceStockTankPressure1--; continue; } } if (soap_flag_ReferenceTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReferenceTemperature", &a->prodml22__FluidCharacterizationModel::ReferenceTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReferenceTemperature", &a->prodml23__FluidCharacterizationModel::ReferenceTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReferenceTemperature1--; continue; } } if (soap_flag_ReferenceStockTankTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReferenceStockTankTemperature", &a->prodml22__FluidCharacterizationModel::ReferenceStockTankTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReferenceStockTankTemperature", &a->prodml23__FluidCharacterizationModel::ReferenceStockTankTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReferenceStockTankTemperature1--; continue; } } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidCharacterizationModel::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidCharacterizationModel::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_ModelSpecification1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__AbstractPvtModel(soap, "prodml22:ModelSpecification", &a->prodml22__FluidCharacterizationModel::ModelSpecification, "prodml22:AbstractPvtModel")) + { if (soap_in_PointerToprodml23__AbstractPvtModel(soap, "prodml23:ModelSpecification", &a->prodml23__FluidCharacterizationModel::ModelSpecification, "prodml23:AbstractPvtModel")) { soap_flag_ModelSpecification1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap, "prodml22:FluidCharacterizationTable", &a->prodml22__FluidCharacterizationModel::FluidCharacterizationTable, "prodml22:FluidCharacterizationTable")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap, "prodml23:FluidCharacterizationTable", &a->prodml23__FluidCharacterizationModel::FluidCharacterizationTable, "prodml23:FluidCharacterizationTable")) continue; } if (soap_flag_FluidCharacterizationParameterSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidCharacterizationParameterSet(soap, "prodml22:FluidCharacterizationParameterSet", &a->prodml22__FluidCharacterizationModel::FluidCharacterizationParameterSet, "prodml22:FluidCharacterizationParameterSet")) + { if (soap_in_PointerToprodml23__FluidCharacterizationParameterSet(soap, "prodml23:FluidCharacterizationParameterSet", &a->prodml23__FluidCharacterizationModel::FluidCharacterizationParameterSet, "prodml23:FluidCharacterizationParameterSet")) { soap_flag_FluidCharacterizationParameterSet1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap, "prodml22:ReferenceSeparatorStage", &a->prodml22__FluidCharacterizationModel::ReferenceSeparatorStage, "prodml22:ReferenceSeparatorStage")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap, "prodml23:ReferenceSeparatorStage", &a->prodml23__FluidCharacterizationModel::ReferenceSeparatorStage, "prodml23:ReferenceSeparatorStage")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -242072,35 +242222,35 @@ SOAP_FMAC3 prodml22__FluidCharacterizationModel * SOAP_FMAC4 soap_in_prodml22__F return NULL; } else - { a = (prodml22__FluidCharacterizationModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, sizeof(prodml22__FluidCharacterizationModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, sizeof(prodml23__FluidCharacterizationModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationModel *p; - size_t k = sizeof(prodml22__FluidCharacterizationModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationModel *p; + size_t k = sizeof(prodml23__FluidCharacterizationModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationModel); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -242110,78 +242260,78 @@ SOAP_FMAC1 prodml22__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__FluidCharacterizationModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationModel(soap, tag ? tag : "prodml22:FluidCharacterizationModel", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationModel(soap, tag ? tag : "prodml23:FluidCharacterizationModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationModel(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationModel * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationModel * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterization::soap_default(struct soap *soap) +void prodml23__FluidCharacterization::soap_default(struct soap *soap) { this->soap = soap; this->eml23__AbstractObject::soap_default(soap); - soap_default_std__vectorTemplateOfeml23__String2000(soap, &this->prodml22__FluidCharacterization::ApplicationTarget); - this->prodml22__FluidCharacterization::Kind = NULL; - this->prodml22__FluidCharacterization::IntendedUsage = NULL; - this->prodml22__FluidCharacterization::RockFluidUnitInterpretation = NULL; - this->prodml22__FluidCharacterization::StandardConditions = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap, &this->prodml22__FluidCharacterization::Source); - this->prodml22__FluidCharacterization::FluidComponentCatalog = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap, &this->prodml22__FluidCharacterization::Model); - soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, &this->prodml22__FluidCharacterization::TableFormat); - this->prodml22__FluidCharacterization::Remark = NULL; - this->prodml22__FluidCharacterization::FluidSystem = NULL; -} - -void prodml22__FluidCharacterization::soap_serialize(struct soap *soap) const -{ - (void)soap; /* appease -Wall -Werror */ -#ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfeml23__String2000(soap, &this->prodml22__FluidCharacterization::ApplicationTarget); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidCharacterization::Kind); - soap_serialize_PointerToeml23__String64(soap, &this->prodml22__FluidCharacterization::IntendedUsage); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidCharacterization::RockFluidUnitInterpretation); - soap_serialize_PointerToeml23__AbstractTemperaturePressure(soap, &this->prodml22__FluidCharacterization::StandardConditions); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap, &this->prodml22__FluidCharacterization::Source); - soap_serialize_PointerToprodml22__FluidComponentCatalog(soap, &this->prodml22__FluidCharacterization::FluidComponentCatalog); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap, &this->prodml22__FluidCharacterization::Model); - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, &this->prodml22__FluidCharacterization::TableFormat); - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__FluidCharacterization::Remark); - soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml22__FluidCharacterization::FluidSystem); + soap_default_std__vectorTemplateOfeml23__String2000(soap, &this->prodml23__FluidCharacterization::ApplicationTarget); + this->prodml23__FluidCharacterization::Kind = NULL; + this->prodml23__FluidCharacterization::IntendedUsage = NULL; + this->prodml23__FluidCharacterization::RockFluidUnitInterpretation = NULL; + this->prodml23__FluidCharacterization::StandardConditions = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap, &this->prodml23__FluidCharacterization::Source); + this->prodml23__FluidCharacterization::FluidComponentCatalog = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap, &this->prodml23__FluidCharacterization::Model); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, &this->prodml23__FluidCharacterization::TableFormat); + this->prodml23__FluidCharacterization::Remark = NULL; + this->prodml23__FluidCharacterization::FluidSystem = NULL; +} + +void prodml23__FluidCharacterization::soap_serialize(struct soap *soap) const +{ + (void)soap; /* appease -Wall -Werror */ +#ifndef WITH_NOIDREF + soap_serialize_std__vectorTemplateOfeml23__String2000(soap, &this->prodml23__FluidCharacterization::ApplicationTarget); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidCharacterization::Kind); + soap_serialize_PointerToeml23__String64(soap, &this->prodml23__FluidCharacterization::IntendedUsage); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidCharacterization::RockFluidUnitInterpretation); + soap_serialize_PointerToeml23__AbstractTemperaturePressure(soap, &this->prodml23__FluidCharacterization::StandardConditions); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap, &this->prodml23__FluidCharacterization::Source); + soap_serialize_PointerToprodml23__FluidComponentCatalog(soap, &this->prodml23__FluidCharacterization::FluidComponentCatalog); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap, &this->prodml23__FluidCharacterization::Model); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, &this->prodml23__FluidCharacterization::TableFormat); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__FluidCharacterization::Remark); + soap_serialize_PointerToeml23__DataObjectReference(soap, &this->prodml23__FluidCharacterization::FluidSystem); this->eml23__AbstractObject::soap_serialize(soap); #endif } -int prodml22__FluidCharacterization::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterization::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterization(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterization(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterization(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterization *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterization(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterization *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterization"; + type = "prodml23:FluidCharacterization"; soap_set_attr(soap, "uuid", soap_eml23__UuidString2s(soap, ((eml23__AbstractObject*)a)->uuid), 1); soap_set_attr(soap, "schemaVersion", soap_eml23__String642s(soap, ((eml23__AbstractObject*)a)->schemaVersion), 1); if (((eml23__AbstractObject*)a)->objectVersion) { soap_set_attr(soap, "objectVersion", soap_eml23__String642s(soap, *((eml23__AbstractObject*)a)->objectVersion), 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_gsoap_eml2_3_prodml22__FluidCharacterization), type ? type : "prodml22:FluidCharacterization")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization), type ? type : "prodml23:FluidCharacterization")) return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap, "eml23:Aliases", -1, &a->eml23__AbstractObject::Aliases, "eml23:ObjectAlias")) return soap->error; @@ -242203,48 +242353,48 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterization(struct soap * return soap->error; if (soap_out_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap, "eml23:ExtensionNameValue", -1, &a->eml23__AbstractObject::ExtensionNameValue, "eml23:ExtensionNameValue")) return soap->error; - if (soap_out_std__vectorTemplateOfeml23__String2000(soap, "prodml22:ApplicationTarget", -1, &a->prodml22__FluidCharacterization::ApplicationTarget, "eml23:String2000")) + if (soap_out_std__vectorTemplateOfeml23__String2000(soap, "prodml23:ApplicationTarget", -1, &a->prodml23__FluidCharacterization::ApplicationTarget, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:Kind", -1, &a->prodml22__FluidCharacterization::Kind, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:Kind", -1, &a->prodml23__FluidCharacterization::Kind, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__String64(soap, "prodml22:IntendedUsage", -1, &a->prodml22__FluidCharacterization::IntendedUsage, "eml23:String64")) + if (soap_out_PointerToeml23__String64(soap, "prodml23:IntendedUsage", -1, &a->prodml23__FluidCharacterization::IntendedUsage, "eml23:String64")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:RockFluidUnitInterpretation", -1, &a->prodml22__FluidCharacterization::RockFluidUnitInterpretation, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:RockFluidUnitInterpretation", -1, &a->prodml23__FluidCharacterization::RockFluidUnitInterpretation, "eml23:DataObjectReference")) return soap->error; - if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", -1, &a->prodml22__FluidCharacterization::StandardConditions, "eml23:AbstractTemperaturePressure")) + if (soap_out_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", -1, &a->prodml23__FluidCharacterization::StandardConditions, "eml23:AbstractTemperaturePressure")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap, "prodml22:Source", -1, &a->prodml22__FluidCharacterization::Source, "prodml22:FluidCharacterizationSource")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap, "prodml23:Source", -1, &a->prodml23__FluidCharacterization::Source, "prodml23:FluidCharacterizationSource")) return soap->error; - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", -1, &a->prodml22__FluidCharacterization::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", -1, &a->prodml23__FluidCharacterization::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap, "prodml22:Model", -1, &a->prodml22__FluidCharacterization::Model, "prodml22:FluidCharacterizationModel")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap, "prodml23:Model", -1, &a->prodml23__FluidCharacterization::Model, "prodml23:FluidCharacterizationModel")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, "prodml22:TableFormat", -1, &a->prodml22__FluidCharacterization::TableFormat, "prodml22:FluidCharacterizationTableFormat")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, "prodml23:TableFormat", -1, &a->prodml23__FluidCharacterization::TableFormat, "prodml23:FluidCharacterizationTableFormat")) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Remark", -1, &a->prodml22__FluidCharacterization::Remark, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Remark", -1, &a->prodml23__FluidCharacterization::Remark, "eml23:String2000")) return soap->error; - if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSystem", -1, &a->prodml22__FluidCharacterization::FluidSystem, "eml23:DataObjectReference")) + if (soap_out_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSystem", -1, &a->prodml23__FluidCharacterization::FluidSystem, "eml23:DataObjectReference")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__FluidCharacterization::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterization::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterization(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterization(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterization * SOAP_FMAC4 soap_in_prodml22__FluidCharacterization(struct soap *soap, const char *tag, prodml22__FluidCharacterization *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterization * SOAP_FMAC4 soap_in_prodml23__FluidCharacterization(struct soap *soap, const char *tag, prodml23__FluidCharacterization *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__FluidCharacterization*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization, sizeof(prodml22__FluidCharacterization), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__FluidCharacterization*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization, sizeof(prodml23__FluidCharacterization), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__FluidCharacterization *)a->soap_in(soap, tag, type); + return (prodml23__FluidCharacterization *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -242323,59 +242473,59 @@ SOAP_FMAC3 prodml22__FluidCharacterization * SOAP_FMAC4 soap_in_prodml22__FluidC continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfeml23__String2000(soap, "prodml22:ApplicationTarget", &a->prodml22__FluidCharacterization::ApplicationTarget, "eml23:String2000")) + { if (soap_in_std__vectorTemplateOfeml23__String2000(soap, "prodml23:ApplicationTarget", &a->prodml23__FluidCharacterization::ApplicationTarget, "eml23:String2000")) continue; } if (soap_flag_Kind1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:Kind", &a->prodml22__FluidCharacterization::Kind, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:Kind", &a->prodml23__FluidCharacterization::Kind, "eml23:String64")) { soap_flag_Kind1--; continue; } } if (soap_flag_IntendedUsage1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String64(soap, "prodml22:IntendedUsage", &a->prodml22__FluidCharacterization::IntendedUsage, "eml23:String64")) + { if (soap_in_PointerToeml23__String64(soap, "prodml23:IntendedUsage", &a->prodml23__FluidCharacterization::IntendedUsage, "eml23:String64")) { soap_flag_IntendedUsage1--; continue; } } if (soap_flag_RockFluidUnitInterpretation1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:RockFluidUnitInterpretation", &a->prodml22__FluidCharacterization::RockFluidUnitInterpretation, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:RockFluidUnitInterpretation", &a->prodml23__FluidCharacterization::RockFluidUnitInterpretation, "eml23:DataObjectReference")) { soap_flag_RockFluidUnitInterpretation1--; continue; } } if (soap_flag_StandardConditions1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml22:StandardConditions", &a->prodml22__FluidCharacterization::StandardConditions, "eml23:AbstractTemperaturePressure")) + { if (soap_in_PointerToeml23__AbstractTemperaturePressure(soap, "prodml23:StandardConditions", &a->prodml23__FluidCharacterization::StandardConditions, "eml23:AbstractTemperaturePressure")) { soap_flag_StandardConditions1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap, "prodml22:Source", &a->prodml22__FluidCharacterization::Source, "prodml22:FluidCharacterizationSource")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap, "prodml23:Source", &a->prodml23__FluidCharacterization::Source, "prodml23:FluidCharacterizationSource")) continue; } if (soap_flag_FluidComponentCatalog1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__FluidComponentCatalog(soap, "prodml22:FluidComponentCatalog", &a->prodml22__FluidCharacterization::FluidComponentCatalog, "prodml22:FluidComponentCatalog")) + { if (soap_in_PointerToprodml23__FluidComponentCatalog(soap, "prodml23:FluidComponentCatalog", &a->prodml23__FluidCharacterization::FluidComponentCatalog, "prodml23:FluidComponentCatalog")) { soap_flag_FluidComponentCatalog1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap, "prodml22:Model", &a->prodml22__FluidCharacterization::Model, "prodml22:FluidCharacterizationModel")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap, "prodml23:Model", &a->prodml23__FluidCharacterization::Model, "prodml23:FluidCharacterizationModel")) continue; } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, "prodml22:TableFormat", &a->prodml22__FluidCharacterization::TableFormat, "prodml22:FluidCharacterizationTableFormat")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, "prodml23:TableFormat", &a->prodml23__FluidCharacterization::TableFormat, "prodml23:FluidCharacterizationTableFormat")) continue; } if (soap_flag_Remark1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Remark", &a->prodml22__FluidCharacterization::Remark, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Remark", &a->prodml23__FluidCharacterization::Remark, "eml23:String2000")) { soap_flag_Remark1--; continue; } } if (soap_flag_FluidSystem1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml22:FluidSystem", &a->prodml22__FluidCharacterization::FluidSystem, "eml23:DataObjectReference")) + { if (soap_in_PointerToeml23__DataObjectReference(soap, "prodml23:FluidSystem", &a->prodml23__FluidCharacterization::FluidSystem, "eml23:DataObjectReference")) { soap_flag_FluidSystem1--; continue; } @@ -242399,35 +242549,35 @@ SOAP_FMAC3 prodml22__FluidCharacterization * SOAP_FMAC4 soap_in_prodml22__FluidC return NULL; } else - { a = (prodml22__FluidCharacterization *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization, sizeof(prodml22__FluidCharacterization), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterization *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization, sizeof(prodml23__FluidCharacterization), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterization(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterization(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterization(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterization(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterization *p; - size_t k = sizeof(prodml22__FluidCharacterization); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterization *p; + size_t k = sizeof(prodml23__FluidCharacterization); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterization); + { p = SOAP_NEW(soap, prodml23__FluidCharacterization); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterization, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterization, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterization location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterization location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -242437,94 +242587,94 @@ SOAP_FMAC1 prodml22__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml2 return p; } -int prodml22__FluidCharacterization::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterization::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterization(soap, tag ? tag : "prodml22:FluidCharacterization", -2, this, type)) + if (soap_out_prodml23__FluidCharacterization(soap, tag ? tag : "prodml23:FluidCharacterization", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterization::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterization::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterization(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterization(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterization * SOAP_FMAC4 soap_get_prodml22__FluidCharacterization(struct soap *soap, prodml22__FluidCharacterization *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterization * SOAP_FMAC4 soap_get_prodml23__FluidCharacterization(struct soap *soap, prodml23__FluidCharacterization *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterization(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterization(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DindorukChristman_Undersaturated::soap_default(struct soap *soap) +void prodml23__DindorukChristman_Undersaturated::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); - this->prodml22__DindorukChristman_Undersaturated::ReservoirTemperature = NULL; - this->prodml22__DindorukChristman_Undersaturated::SolutionGasOilRatio = NULL; + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); + this->prodml23__DindorukChristman_Undersaturated::ReservoirTemperature = NULL; + this->prodml23__DindorukChristman_Undersaturated::SolutionGasOilRatio = NULL; } -void prodml22__DindorukChristman_Undersaturated::soap_serialize(struct soap *soap) const +void prodml23__DindorukChristman_Undersaturated::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__DindorukChristman_Undersaturated::ReservoirTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__DindorukChristman_Undersaturated::SolutionGasOilRatio); - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__DindorukChristman_Undersaturated::ReservoirTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__DindorukChristman_Undersaturated::SolutionGasOilRatio); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); #endif } -int prodml22__DindorukChristman_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DindorukChristman_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DindorukChristman_Undersaturated(soap, tag, id, this, type); + return soap_out_prodml23__DindorukChristman_Undersaturated(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DindorukChristman_Undersaturated(struct soap *soap, const char *tag, int id, const prodml22__DindorukChristman_Undersaturated *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DindorukChristman_Undersaturated(struct soap *soap, const char *tag, int id, const prodml23__DindorukChristman_Undersaturated *a, const char *type) { if (!type) - type = "prodml22:DindorukChristman-Undersaturated"; + type = "prodml23:DindorukChristman-Undersaturated"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated), type ? type : "prodml22:DindorukChristman-Undersaturated")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated), type ? type : "prodml23:DindorukChristman-Undersaturated")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__DindorukChristman_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__DindorukChristman_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__DindorukChristman_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__DindorukChristman_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DindorukChristman_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DindorukChristman_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DindorukChristman_Undersaturated(soap, tag, this, type); + return soap_in_prodml23__DindorukChristman_Undersaturated(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_in_prodml22__DindorukChristman_Undersaturated(struct soap *soap, const char *tag, prodml22__DindorukChristman_Undersaturated *a, const char *type) +SOAP_FMAC3 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_in_prodml23__DindorukChristman_Undersaturated(struct soap *soap, const char *tag, prodml23__DindorukChristman_Undersaturated *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DindorukChristman_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated, sizeof(prodml22__DindorukChristman_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DindorukChristman_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated, sizeof(prodml23__DindorukChristman_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DindorukChristman_Undersaturated *)a->soap_in(soap, tag, type); + return (prodml23__DindorukChristman_Undersaturated *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -242542,55 +242692,55 @@ SOAP_FMAC3 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_in_prodm for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_UndersaturatedOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_UndersaturatedOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_BubblePointPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure2--; continue; } } if (soap_flag_Pressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure2--; continue; } } if (soap_flag_ReservoirTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__DindorukChristman_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__DindorukChristman_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature1--; continue; } } if (soap_flag_SolutionGasOilRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__DindorukChristman_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__DindorukChristman_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio1--; continue; } @@ -242606,35 +242756,35 @@ SOAP_FMAC3 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_in_prodm return NULL; } else - { a = (prodml22__DindorukChristman_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated, sizeof(prodml22__DindorukChristman_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DindorukChristman_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated, sizeof(prodml23__DindorukChristman_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DindorukChristman_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DindorukChristman_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DindorukChristman_Undersaturated *p; - size_t k = sizeof(prodml22__DindorukChristman_Undersaturated); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated, n, gsoap_eml2_3_fdelete); + prodml23__DindorukChristman_Undersaturated *p; + size_t k = sizeof(prodml23__DindorukChristman_Undersaturated); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DindorukChristman_Undersaturated); + { p = SOAP_NEW(soap, prodml23__DindorukChristman_Undersaturated); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DindorukChristman_Undersaturated, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DindorukChristman_Undersaturated, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DindorukChristman_Undersaturated location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DindorukChristman_Undersaturated location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -242644,86 +242794,86 @@ SOAP_FMAC1 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instanti return p; } -int prodml22__DindorukChristman_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DindorukChristman_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DindorukChristman_Undersaturated(soap, tag ? tag : "prodml22:DindorukChristman-Undersaturated", -2, this, type)) + if (soap_out_prodml23__DindorukChristman_Undersaturated(soap, tag ? tag : "prodml23:DindorukChristman-Undersaturated", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DindorukChristman_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DindorukChristman_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DindorukChristman_Undersaturated(soap, this, tag, type); + return soap_get_prodml23__DindorukChristman_Undersaturated(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_get_prodml22__DindorukChristman_Undersaturated(struct soap *soap, prodml22__DindorukChristman_Undersaturated *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_get_prodml23__DindorukChristman_Undersaturated(struct soap *soap, prodml23__DindorukChristman_Undersaturated *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DindorukChristman_Undersaturated(soap, tag, p, type))) + if ((p = soap_in_prodml23__DindorukChristman_Undersaturated(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DindorukChristman_Dead::soap_default(struct soap *soap) +void prodml23__DindorukChristman_Dead::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_default(soap); - this->prodml22__DindorukChristman_Dead::OilGravityAtStockTank = NULL; + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_default(soap); + this->prodml23__DindorukChristman_Dead::OilGravityAtStockTank = NULL; } -void prodml22__DindorukChristman_Dead::soap_serialize(struct soap *soap) const +void prodml23__DindorukChristman_Dead::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__DindorukChristman_Dead::OilGravityAtStockTank); - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__DindorukChristman_Dead::OilGravityAtStockTank); + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); #endif } -int prodml22__DindorukChristman_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DindorukChristman_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DindorukChristman_Dead(soap, tag, id, this, type); + return soap_out_prodml23__DindorukChristman_Dead(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DindorukChristman_Dead(struct soap *soap, const char *tag, int id, const prodml22__DindorukChristman_Dead *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DindorukChristman_Dead(struct soap *soap, const char *tag, int id, const prodml23__DindorukChristman_Dead *a, const char *type) { if (!type) - type = "prodml22:DindorukChristman-Dead"; + type = "prodml23:DindorukChristman-Dead"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead), type ? type : "prodml22:DindorukChristman-Dead")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead), type ? type : "prodml23:DindorukChristman-Dead")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilGravityAtStockTank", -1, &a->prodml22__DindorukChristman_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilGravityAtStockTank", -1, &a->prodml23__DindorukChristman_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DindorukChristman_Dead::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DindorukChristman_Dead::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DindorukChristman_Dead(soap, tag, this, type); + return soap_in_prodml23__DindorukChristman_Dead(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DindorukChristman_Dead * SOAP_FMAC4 soap_in_prodml22__DindorukChristman_Dead(struct soap *soap, const char *tag, prodml22__DindorukChristman_Dead *a, const char *type) +SOAP_FMAC3 prodml23__DindorukChristman_Dead * SOAP_FMAC4 soap_in_prodml23__DindorukChristman_Dead(struct soap *soap, const char *tag, prodml23__DindorukChristman_Dead *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DindorukChristman_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead, sizeof(prodml22__DindorukChristman_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DindorukChristman_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead, sizeof(prodml23__DindorukChristman_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DindorukChristman_Dead *)a->soap_in(soap, tag, type); + return (prodml23__DindorukChristman_Dead *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -242738,37 +242888,37 @@ SOAP_FMAC3 prodml22__DindorukChristman_Dead * SOAP_FMAC4 soap_in_prodml22__Dindo for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_OilGravityAtStockTank1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilGravityAtStockTank", &a->prodml22__DindorukChristman_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilGravityAtStockTank", &a->prodml23__DindorukChristman_Dead::OilGravityAtStockTank, "eml23:APIGravityMeasure")) { soap_flag_OilGravityAtStockTank1--; continue; } @@ -242784,35 +242934,35 @@ SOAP_FMAC3 prodml22__DindorukChristman_Dead * SOAP_FMAC4 soap_in_prodml22__Dindo return NULL; } else - { a = (prodml22__DindorukChristman_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead, sizeof(prodml22__DindorukChristman_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DindorukChristman_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead, sizeof(prodml23__DindorukChristman_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DindorukChristman_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DindorukChristman_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DindorukChristman_Dead *p; - size_t k = sizeof(prodml22__DindorukChristman_Dead); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead, n, gsoap_eml2_3_fdelete); + prodml23__DindorukChristman_Dead *p; + size_t k = sizeof(prodml23__DindorukChristman_Dead); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DindorukChristman_Dead); + { p = SOAP_NEW(soap, prodml23__DindorukChristman_Dead); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DindorukChristman_Dead, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DindorukChristman_Dead, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DindorukChristman_Dead location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DindorukChristman_Dead location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -242822,84 +242972,84 @@ SOAP_FMAC1 prodml22__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml return p; } -int prodml22__DindorukChristman_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DindorukChristman_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DindorukChristman_Dead(soap, tag ? tag : "prodml22:DindorukChristman-Dead", -2, this, type)) + if (soap_out_prodml23__DindorukChristman_Dead(soap, tag ? tag : "prodml23:DindorukChristman-Dead", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DindorukChristman_Dead::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DindorukChristman_Dead::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DindorukChristman_Dead(soap, this, tag, type); + return soap_get_prodml23__DindorukChristman_Dead(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DindorukChristman_Dead * SOAP_FMAC4 soap_get_prodml22__DindorukChristman_Dead(struct soap *soap, prodml22__DindorukChristman_Dead *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DindorukChristman_Dead * SOAP_FMAC4 soap_get_prodml23__DindorukChristman_Dead(struct soap *soap, prodml23__DindorukChristman_Dead *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DindorukChristman_Dead(soap, tag, p, type))) + if ((p = soap_in_prodml23__DindorukChristman_Dead(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DindorukChristman_BubblePoint::soap_default(struct soap *soap) +void prodml23__DindorukChristman_BubblePoint::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); } -void prodml22__DindorukChristman_BubblePoint::soap_serialize(struct soap *soap) const +void prodml23__DindorukChristman_BubblePoint::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); #endif } -int prodml22__DindorukChristman_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DindorukChristman_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DindorukChristman_BubblePoint(soap, tag, id, this, type); + return soap_out_prodml23__DindorukChristman_BubblePoint(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DindorukChristman_BubblePoint(struct soap *soap, const char *tag, int id, const prodml22__DindorukChristman_BubblePoint *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DindorukChristman_BubblePoint(struct soap *soap, const char *tag, int id, const prodml23__DindorukChristman_BubblePoint *a, const char *type) { if (!type) - type = "prodml22:DindorukChristman-BubblePoint"; + type = "prodml23:DindorukChristman-BubblePoint"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint), type ? type : "prodml22:DindorukChristman-BubblePoint")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint), type ? type : "prodml23:DindorukChristman-BubblePoint")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DindorukChristman_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DindorukChristman_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DindorukChristman_BubblePoint(soap, tag, this, type); + return soap_in_prodml23__DindorukChristman_BubblePoint(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_in_prodml22__DindorukChristman_BubblePoint(struct soap *soap, const char *tag, prodml22__DindorukChristman_BubblePoint *a, const char *type) +SOAP_FMAC3 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_in_prodml23__DindorukChristman_BubblePoint(struct soap *soap, const char *tag, prodml23__DindorukChristman_BubblePoint *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DindorukChristman_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint, sizeof(prodml22__DindorukChristman_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DindorukChristman_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint, sizeof(prodml23__DindorukChristman_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DindorukChristman_BubblePoint *)a->soap_in(soap, tag, type); + return (prodml23__DindorukChristman_BubblePoint *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -242914,37 +243064,37 @@ SOAP_FMAC3 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_SolutionGasOilRatio2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio2--; continue; } @@ -242960,35 +243110,35 @@ SOAP_FMAC3 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__DindorukChristman_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint, sizeof(prodml22__DindorukChristman_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DindorukChristman_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint, sizeof(prodml23__DindorukChristman_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DindorukChristman_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DindorukChristman_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DindorukChristman_BubblePoint *p; - size_t k = sizeof(prodml22__DindorukChristman_BubblePoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint, n, gsoap_eml2_3_fdelete); + prodml23__DindorukChristman_BubblePoint *p; + size_t k = sizeof(prodml23__DindorukChristman_BubblePoint); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DindorukChristman_BubblePoint); + { p = SOAP_NEW(soap, prodml23__DindorukChristman_BubblePoint); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DindorukChristman_BubblePoint, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DindorukChristman_BubblePoint, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DindorukChristman_BubblePoint location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DindorukChristman_BubblePoint location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -242998,94 +243148,94 @@ SOAP_FMAC1 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__DindorukChristman_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DindorukChristman_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DindorukChristman_BubblePoint(soap, tag ? tag : "prodml22:DindorukChristman-BubblePoint", -2, this, type)) + if (soap_out_prodml23__DindorukChristman_BubblePoint(soap, tag ? tag : "prodml23:DindorukChristman-BubblePoint", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DindorukChristman_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DindorukChristman_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DindorukChristman_BubblePoint(soap, this, tag, type); + return soap_get_prodml23__DindorukChristman_BubblePoint(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_get_prodml22__DindorukChristman_BubblePoint(struct soap *soap, prodml22__DindorukChristman_BubblePoint *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_get_prodml23__DindorukChristman_BubblePoint(struct soap *soap, prodml23__DindorukChristman_BubblePoint *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DindorukChristman_BubblePoint(soap, tag, p, type))) + if ((p = soap_in_prodml23__DindorukChristman_BubblePoint(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeGhetto_Undersaturated::soap_default(struct soap *soap) +void prodml23__DeGhetto_Undersaturated::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); - this->prodml22__DeGhetto_Undersaturated::ReservoirTemperature = NULL; - this->prodml22__DeGhetto_Undersaturated::SolutionGasOilRatio = NULL; + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); + this->prodml23__DeGhetto_Undersaturated::ReservoirTemperature = NULL; + this->prodml23__DeGhetto_Undersaturated::SolutionGasOilRatio = NULL; } -void prodml22__DeGhetto_Undersaturated::soap_serialize(struct soap *soap) const +void prodml23__DeGhetto_Undersaturated::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__DeGhetto_Undersaturated::ReservoirTemperature); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__DeGhetto_Undersaturated::SolutionGasOilRatio); - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__DeGhetto_Undersaturated::ReservoirTemperature); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__DeGhetto_Undersaturated::SolutionGasOilRatio); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); #endif } -int prodml22__DeGhetto_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeGhetto_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeGhetto_Undersaturated(soap, tag, id, this, type); + return soap_out_prodml23__DeGhetto_Undersaturated(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeGhetto_Undersaturated(struct soap *soap, const char *tag, int id, const prodml22__DeGhetto_Undersaturated *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeGhetto_Undersaturated(struct soap *soap, const char *tag, int id, const prodml23__DeGhetto_Undersaturated *a, const char *type) { if (!type) - type = "prodml22:DeGhetto-Undersaturated"; + type = "prodml23:DeGhetto-Undersaturated"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated), type ? type : "prodml22:DeGhetto-Undersaturated")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated), type ? type : "prodml23:DeGhetto-Undersaturated")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__DeGhetto_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__DeGhetto_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__DeGhetto_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__DeGhetto_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeGhetto_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeGhetto_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeGhetto_Undersaturated(soap, tag, this, type); + return soap_in_prodml23__DeGhetto_Undersaturated(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeGhetto_Undersaturated * SOAP_FMAC4 soap_in_prodml22__DeGhetto_Undersaturated(struct soap *soap, const char *tag, prodml22__DeGhetto_Undersaturated *a, const char *type) +SOAP_FMAC3 prodml23__DeGhetto_Undersaturated * SOAP_FMAC4 soap_in_prodml23__DeGhetto_Undersaturated(struct soap *soap, const char *tag, prodml23__DeGhetto_Undersaturated *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeGhetto_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated, sizeof(prodml22__DeGhetto_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeGhetto_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated, sizeof(prodml23__DeGhetto_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeGhetto_Undersaturated *)a->soap_in(soap, tag, type); + return (prodml23__DeGhetto_Undersaturated *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -243103,55 +243253,55 @@ SOAP_FMAC3 prodml22__DeGhetto_Undersaturated * SOAP_FMAC4 soap_in_prodml22__DeGh for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_UndersaturatedOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_UndersaturatedOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_BubblePointPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure2--; continue; } } if (soap_flag_Pressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure2--; continue; } } if (soap_flag_ReservoirTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__DeGhetto_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__DeGhetto_Undersaturated::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature1--; continue; } } if (soap_flag_SolutionGasOilRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__DeGhetto_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__DeGhetto_Undersaturated::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio1--; continue; } @@ -243167,35 +243317,35 @@ SOAP_FMAC3 prodml22__DeGhetto_Undersaturated * SOAP_FMAC4 soap_in_prodml22__DeGh return NULL; } else - { a = (prodml22__DeGhetto_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated, sizeof(prodml22__DeGhetto_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeGhetto_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated, sizeof(prodml23__DeGhetto_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeGhetto_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeGhetto_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeGhetto_Undersaturated *p; - size_t k = sizeof(prodml22__DeGhetto_Undersaturated); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated, n, gsoap_eml2_3_fdelete); + prodml23__DeGhetto_Undersaturated *p; + size_t k = sizeof(prodml23__DeGhetto_Undersaturated); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeGhetto_Undersaturated); + { p = SOAP_NEW(soap, prodml23__DeGhetto_Undersaturated); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeGhetto_Undersaturated, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeGhetto_Undersaturated, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeGhetto_Undersaturated location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeGhetto_Undersaturated location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -243205,86 +243355,86 @@ SOAP_FMAC1 prodml22__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__DeGhetto_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeGhetto_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeGhetto_Undersaturated(soap, tag ? tag : "prodml22:DeGhetto-Undersaturated", -2, this, type)) + if (soap_out_prodml23__DeGhetto_Undersaturated(soap, tag ? tag : "prodml23:DeGhetto-Undersaturated", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeGhetto_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeGhetto_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeGhetto_Undersaturated(soap, this, tag, type); + return soap_get_prodml23__DeGhetto_Undersaturated(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeGhetto_Undersaturated * SOAP_FMAC4 soap_get_prodml22__DeGhetto_Undersaturated(struct soap *soap, prodml22__DeGhetto_Undersaturated *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeGhetto_Undersaturated * SOAP_FMAC4 soap_get_prodml23__DeGhetto_Undersaturated(struct soap *soap, prodml23__DeGhetto_Undersaturated *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeGhetto_Undersaturated(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeGhetto_Undersaturated(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeGhetto_Dead::soap_default(struct soap *soap) +void prodml23__DeGhetto_Dead::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_default(soap); - this->prodml22__DeGhetto_Dead::OilAPIAtStockTank = NULL; + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_default(soap); + this->prodml23__DeGhetto_Dead::OilAPIAtStockTank = NULL; } -void prodml22__DeGhetto_Dead::soap_serialize(struct soap *soap) const +void prodml23__DeGhetto_Dead::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml22__DeGhetto_Dead::OilAPIAtStockTank); - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); + soap_serialize_PointerToeml23__APIGravityMeasure(soap, &this->prodml23__DeGhetto_Dead::OilAPIAtStockTank); + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); #endif } -int prodml22__DeGhetto_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeGhetto_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeGhetto_Dead(soap, tag, id, this, type); + return soap_out_prodml23__DeGhetto_Dead(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeGhetto_Dead(struct soap *soap, const char *tag, int id, const prodml22__DeGhetto_Dead *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeGhetto_Dead(struct soap *soap, const char *tag, int id, const prodml23__DeGhetto_Dead *a, const char *type) { if (!type) - type = "prodml22:DeGhetto-Dead"; + type = "prodml23:DeGhetto-Dead"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead), type ? type : "prodml22:DeGhetto-Dead")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead), type ? type : "prodml23:DeGhetto-Dead")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilAPIAtStockTank", -1, &a->prodml22__DeGhetto_Dead::OilAPIAtStockTank, "eml23:APIGravityMeasure")) + if (soap_out_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilAPIAtStockTank", -1, &a->prodml23__DeGhetto_Dead::OilAPIAtStockTank, "eml23:APIGravityMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeGhetto_Dead::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeGhetto_Dead::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeGhetto_Dead(soap, tag, this, type); + return soap_in_prodml23__DeGhetto_Dead(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeGhetto_Dead * SOAP_FMAC4 soap_in_prodml22__DeGhetto_Dead(struct soap *soap, const char *tag, prodml22__DeGhetto_Dead *a, const char *type) +SOAP_FMAC3 prodml23__DeGhetto_Dead * SOAP_FMAC4 soap_in_prodml23__DeGhetto_Dead(struct soap *soap, const char *tag, prodml23__DeGhetto_Dead *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeGhetto_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead, sizeof(prodml22__DeGhetto_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeGhetto_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead, sizeof(prodml23__DeGhetto_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeGhetto_Dead *)a->soap_in(soap, tag, type); + return (prodml23__DeGhetto_Dead *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -243299,37 +243449,37 @@ SOAP_FMAC3 prodml22__DeGhetto_Dead * SOAP_FMAC4 soap_in_prodml22__DeGhetto_Dead( for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_OilAPIAtStockTank1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml22:OilAPIAtStockTank", &a->prodml22__DeGhetto_Dead::OilAPIAtStockTank, "eml23:APIGravityMeasure")) + { if (soap_in_PointerToeml23__APIGravityMeasure(soap, "prodml23:OilAPIAtStockTank", &a->prodml23__DeGhetto_Dead::OilAPIAtStockTank, "eml23:APIGravityMeasure")) { soap_flag_OilAPIAtStockTank1--; continue; } @@ -243345,35 +243495,35 @@ SOAP_FMAC3 prodml22__DeGhetto_Dead * SOAP_FMAC4 soap_in_prodml22__DeGhetto_Dead( return NULL; } else - { a = (prodml22__DeGhetto_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead, sizeof(prodml22__DeGhetto_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeGhetto_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead, sizeof(prodml23__DeGhetto_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeGhetto_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeGhetto_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeGhetto_Dead *p; - size_t k = sizeof(prodml22__DeGhetto_Dead); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead, n, gsoap_eml2_3_fdelete); + prodml23__DeGhetto_Dead *p; + size_t k = sizeof(prodml23__DeGhetto_Dead); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeGhetto_Dead); + { p = SOAP_NEW(soap, prodml23__DeGhetto_Dead); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeGhetto_Dead, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeGhetto_Dead, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeGhetto_Dead location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeGhetto_Dead location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -243383,84 +243533,84 @@ SOAP_FMAC1 prodml22__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DeGhe return p; } -int prodml22__DeGhetto_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeGhetto_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeGhetto_Dead(soap, tag ? tag : "prodml22:DeGhetto-Dead", -2, this, type)) + if (soap_out_prodml23__DeGhetto_Dead(soap, tag ? tag : "prodml23:DeGhetto-Dead", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeGhetto_Dead::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeGhetto_Dead::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeGhetto_Dead(soap, this, tag, type); + return soap_get_prodml23__DeGhetto_Dead(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeGhetto_Dead * SOAP_FMAC4 soap_get_prodml22__DeGhetto_Dead(struct soap *soap, prodml22__DeGhetto_Dead *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeGhetto_Dead * SOAP_FMAC4 soap_get_prodml23__DeGhetto_Dead(struct soap *soap, prodml23__DeGhetto_Dead *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeGhetto_Dead(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeGhetto_Dead(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__DeGhetto_BubblePoint::soap_default(struct soap *soap) +void prodml23__DeGhetto_BubblePoint::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); } -void prodml22__DeGhetto_BubblePoint::soap_serialize(struct soap *soap) const +void prodml23__DeGhetto_BubblePoint::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); #endif } -int prodml22__DeGhetto_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__DeGhetto_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__DeGhetto_BubblePoint(soap, tag, id, this, type); + return soap_out_prodml23__DeGhetto_BubblePoint(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeGhetto_BubblePoint(struct soap *soap, const char *tag, int id, const prodml22__DeGhetto_BubblePoint *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeGhetto_BubblePoint(struct soap *soap, const char *tag, int id, const prodml23__DeGhetto_BubblePoint *a, const char *type) { if (!type) - type = "prodml22:DeGhetto-BubblePoint"; + type = "prodml23:DeGhetto-BubblePoint"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint), type ? type : "prodml22:DeGhetto-BubblePoint")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint), type ? type : "prodml23:DeGhetto-BubblePoint")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__DeGhetto_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeGhetto_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__DeGhetto_BubblePoint(soap, tag, this, type); + return soap_in_prodml23__DeGhetto_BubblePoint(soap, tag, this, type); } -SOAP_FMAC3 prodml22__DeGhetto_BubblePoint * SOAP_FMAC4 soap_in_prodml22__DeGhetto_BubblePoint(struct soap *soap, const char *tag, prodml22__DeGhetto_BubblePoint *a, const char *type) +SOAP_FMAC3 prodml23__DeGhetto_BubblePoint * SOAP_FMAC4 soap_in_prodml23__DeGhetto_BubblePoint(struct soap *soap, const char *tag, prodml23__DeGhetto_BubblePoint *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__DeGhetto_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint, sizeof(prodml22__DeGhetto_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__DeGhetto_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint, sizeof(prodml23__DeGhetto_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__DeGhetto_BubblePoint *)a->soap_in(soap, tag, type); + return (prodml23__DeGhetto_BubblePoint *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -243475,37 +243625,37 @@ SOAP_FMAC3 prodml22__DeGhetto_BubblePoint * SOAP_FMAC4 soap_in_prodml22__DeGhett for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_SolutionGasOilRatio2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio2--; continue; } @@ -243521,35 +243671,35 @@ SOAP_FMAC3 prodml22__DeGhetto_BubblePoint * SOAP_FMAC4 soap_in_prodml22__DeGhett return NULL; } else - { a = (prodml22__DeGhetto_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint, sizeof(prodml22__DeGhetto_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__DeGhetto_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint, sizeof(prodml23__DeGhetto_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__DeGhetto_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__DeGhetto_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__DeGhetto_BubblePoint *p; - size_t k = sizeof(prodml22__DeGhetto_BubblePoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint, n, gsoap_eml2_3_fdelete); + prodml23__DeGhetto_BubblePoint *p; + size_t k = sizeof(prodml23__DeGhetto_BubblePoint); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__DeGhetto_BubblePoint); + { p = SOAP_NEW(soap, prodml23__DeGhetto_BubblePoint); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__DeGhetto_BubblePoint, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__DeGhetto_BubblePoint, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__DeGhetto_BubblePoint location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__DeGhetto_BubblePoint location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -243559,82 +243709,82 @@ SOAP_FMAC1 prodml22__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__DeGhetto_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__DeGhetto_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__DeGhetto_BubblePoint(soap, tag ? tag : "prodml22:DeGhetto-BubblePoint", -2, this, type)) + if (soap_out_prodml23__DeGhetto_BubblePoint(soap, tag ? tag : "prodml23:DeGhetto-BubblePoint", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__DeGhetto_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__DeGhetto_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__DeGhetto_BubblePoint(soap, this, tag, type); + return soap_get_prodml23__DeGhetto_BubblePoint(soap, this, tag, type); } -SOAP_FMAC3 prodml22__DeGhetto_BubblePoint * SOAP_FMAC4 soap_get_prodml22__DeGhetto_BubblePoint(struct soap *soap, prodml22__DeGhetto_BubblePoint *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeGhetto_BubblePoint * SOAP_FMAC4 soap_get_prodml23__DeGhetto_BubblePoint(struct soap *soap, prodml23__DeGhetto_BubblePoint *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__DeGhetto_BubblePoint(soap, tag, p, type))) + if ((p = soap_in_prodml23__DeGhetto_BubblePoint(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomPvtModelParameter::soap_default(struct soap *soap) +void prodml23__CustomPvtModelParameter::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__CustomPvtModelParameter::CustomParameterValue = NULL; - this->prodml22__CustomPvtModelParameter::fluidComponentReference = NULL; + this->prodml23__CustomPvtModelParameter::CustomParameterValue = NULL; + this->prodml23__CustomPvtModelParameter::fluidComponentReference = NULL; } -void prodml22__CustomPvtModelParameter::soap_serialize(struct soap *soap) const +void prodml23__CustomPvtModelParameter::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__ExtensionNameValue(soap, &this->prodml22__CustomPvtModelParameter::CustomParameterValue); + soap_serialize_PointerToeml23__ExtensionNameValue(soap, &this->prodml23__CustomPvtModelParameter::CustomParameterValue); #endif } -int prodml22__CustomPvtModelParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomPvtModelParameter::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomPvtModelParameter(soap, tag, id, this, type); + return soap_out_prodml23__CustomPvtModelParameter(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomPvtModelParameter(struct soap *soap, const char *tag, int id, const prodml22__CustomPvtModelParameter *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomPvtModelParameter(struct soap *soap, const char *tag, int id, const prodml23__CustomPvtModelParameter *a, const char *type) { if (!type) - type = "prodml22:CustomPvtModelParameter"; - if (((prodml22__CustomPvtModelParameter*)a)->fluidComponentReference) - { soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, *((prodml22__CustomPvtModelParameter*)a)->fluidComponentReference), 1); + type = "prodml23:CustomPvtModelParameter"; + if (((prodml23__CustomPvtModelParameter*)a)->fluidComponentReference) + { soap_set_attr(soap, "fluidComponentReference", soap_eml23__String642s(soap, *((prodml23__CustomPvtModelParameter*)a)->fluidComponentReference), 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_gsoap_eml2_3_prodml22__CustomPvtModelParameter), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter), type)) return soap->error; - if (!a->prodml22__CustomPvtModelParameter::CustomParameterValue) - { if (soap_element_empty(soap, "prodml22:CustomParameterValue", 0, NULL)) + if (!a->prodml23__CustomPvtModelParameter::CustomParameterValue) + { if (soap_element_empty(soap, "prodml23:CustomParameterValue", 0, NULL)) return soap->error; } - else if (soap_out_PointerToeml23__ExtensionNameValue(soap, "prodml22:CustomParameterValue", -1, &a->prodml22__CustomPvtModelParameter::CustomParameterValue, "eml23:ExtensionNameValue")) + else if (soap_out_PointerToeml23__ExtensionNameValue(soap, "prodml23:CustomParameterValue", -1, &a->prodml23__CustomPvtModelParameter::CustomParameterValue, "eml23:ExtensionNameValue")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomPvtModelParameter::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomPvtModelParameter::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomPvtModelParameter(soap, tag, this, type); + return soap_in_prodml23__CustomPvtModelParameter(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml22__CustomPvtModelParameter(struct soap *soap, const char *tag, prodml22__CustomPvtModelParameter *a, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml23__CustomPvtModelParameter(struct soap *soap, const char *tag, prodml23__CustomPvtModelParameter *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomPvtModelParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, sizeof(prodml22__CustomPvtModelParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomPvtModelParameter*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, sizeof(prodml23__CustomPvtModelParameter), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomPvtModelParameter *)a->soap_in(soap, tag, type); + return (prodml23__CustomPvtModelParameter *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -243642,9 +243792,9 @@ SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml22__Cust const char *t = soap_attr_value(soap, "fluidComponentReference", 1, 0); if (t) { - if (!(((prodml22__CustomPvtModelParameter*)a)->fluidComponentReference = soap_new_eml23__String64(soap))) + if (!(((prodml23__CustomPvtModelParameter*)a)->fluidComponentReference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__CustomPvtModelParameter*)a)->fluidComponentReference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__CustomPvtModelParameter*)a)->fluidComponentReference)) return NULL; } else if (soap->error) @@ -243656,7 +243806,7 @@ SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml22__Cust for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomParameterValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ExtensionNameValue(soap, "prodml22:CustomParameterValue", &a->prodml22__CustomPvtModelParameter::CustomParameterValue, "eml23:ExtensionNameValue")) + { if (soap_in_PointerToeml23__ExtensionNameValue(soap, "prodml23:CustomParameterValue", &a->prodml23__CustomPvtModelParameter::CustomParameterValue, "eml23:ExtensionNameValue")) { soap_flag_CustomParameterValue1--; continue; } @@ -243670,7 +243820,7 @@ SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml22__Cust } if (soap_element_end_in(soap, tag)) return NULL; - if ((!a->prodml22__CustomPvtModelParameter::CustomParameterValue)) + if ((!a->prodml23__CustomPvtModelParameter::CustomParameterValue)) { soap->error = SOAP_OCCURS; return NULL; } @@ -243680,35 +243830,35 @@ SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml22__Cust return NULL; } else - { a = (prodml22__CustomPvtModelParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, sizeof(prodml22__CustomPvtModelParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomPvtModelParameter *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, sizeof(prodml23__CustomPvtModelParameter), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__CustomPvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml23__CustomPvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomPvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomPvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomPvtModelParameter *p; - size_t k = sizeof(prodml22__CustomPvtModelParameter); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, n, gsoap_eml2_3_fdelete); + prodml23__CustomPvtModelParameter *p; + size_t k = sizeof(prodml23__CustomPvtModelParameter); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomPvtModelParameter); + { p = SOAP_NEW(soap, prodml23__CustomPvtModelParameter); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomPvtModelParameter, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomPvtModelParameter, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomPvtModelParameter location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomPvtModelParameter location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -243718,78 +243868,78 @@ SOAP_FMAC1 prodml22__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__CustomPvtModelParameter::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomPvtModelParameter::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomPvtModelParameter(soap, tag ? tag : "prodml22:CustomPvtModelParameter", -2, this, type)) + if (soap_out_prodml23__CustomPvtModelParameter(soap, tag ? tag : "prodml23:CustomPvtModelParameter", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomPvtModelParameter::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomPvtModelParameter::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomPvtModelParameter(soap, this, tag, type); + return soap_get_prodml23__CustomPvtModelParameter(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_get_prodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelParameter * SOAP_FMAC4 soap_get_prodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomPvtModelParameter(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomPvtModelParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CustomPvtModelExtension::soap_default(struct soap *soap) +void prodml23__CustomPvtModelExtension::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__CustomPvtModelExtension::Description = NULL; - soap_default_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap, &this->prodml22__CustomPvtModelExtension::CustomPvtModelParameter); + this->prodml23__CustomPvtModelExtension::Description = NULL; + soap_default_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap, &this->prodml23__CustomPvtModelExtension::CustomPvtModelParameter); } -void prodml22__CustomPvtModelExtension::soap_serialize(struct soap *soap) const +void prodml23__CustomPvtModelExtension::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__String2000(soap, &this->prodml22__CustomPvtModelExtension::Description); - soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap, &this->prodml22__CustomPvtModelExtension::CustomPvtModelParameter); + soap_serialize_PointerToeml23__String2000(soap, &this->prodml23__CustomPvtModelExtension::Description); + soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap, &this->prodml23__CustomPvtModelExtension::CustomPvtModelParameter); #endif } -int prodml22__CustomPvtModelExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CustomPvtModelExtension::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CustomPvtModelExtension(soap, tag, id, this, type); + return soap_out_prodml23__CustomPvtModelExtension(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomPvtModelExtension(struct soap *soap, const char *tag, int id, const prodml22__CustomPvtModelExtension *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomPvtModelExtension(struct soap *soap, const char *tag, int id, const prodml23__CustomPvtModelExtension *a, const char *type) { if (!type) - type = "prodml22:CustomPvtModelExtension"; + type = "prodml23:CustomPvtModelExtension"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension), type)) return soap->error; - if (soap_out_PointerToeml23__String2000(soap, "prodml22:Description", -1, &a->prodml22__CustomPvtModelExtension::Description, "eml23:String2000")) + if (soap_out_PointerToeml23__String2000(soap, "prodml23:Description", -1, &a->prodml23__CustomPvtModelExtension::Description, "eml23:String2000")) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap, "prodml22:CustomPvtModelParameter", -1, &a->prodml22__CustomPvtModelExtension::CustomPvtModelParameter, "prodml22:CustomPvtModelParameter")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap, "prodml23:CustomPvtModelParameter", -1, &a->prodml23__CustomPvtModelExtension::CustomPvtModelParameter, "prodml23:CustomPvtModelParameter")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CustomPvtModelExtension::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomPvtModelExtension::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CustomPvtModelExtension(soap, tag, this, type); + return soap_in_prodml23__CustomPvtModelExtension(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CustomPvtModelExtension * SOAP_FMAC4 soap_in_prodml22__CustomPvtModelExtension(struct soap *soap, const char *tag, prodml22__CustomPvtModelExtension *a, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelExtension * SOAP_FMAC4 soap_in_prodml23__CustomPvtModelExtension(struct soap *soap, const char *tag, prodml23__CustomPvtModelExtension *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CustomPvtModelExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension, sizeof(prodml22__CustomPvtModelExtension), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CustomPvtModelExtension*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension, sizeof(prodml23__CustomPvtModelExtension), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CustomPvtModelExtension *)a->soap_in(soap, tag, type); + return (prodml23__CustomPvtModelExtension *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -243799,13 +243949,13 @@ SOAP_FMAC3 prodml22__CustomPvtModelExtension * SOAP_FMAC4 soap_in_prodml22__Cust for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_Description1 && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) - { if (soap_in_PointerToeml23__String2000(soap, "prodml22:Description", &a->prodml22__CustomPvtModelExtension::Description, "eml23:String2000")) + { if (soap_in_PointerToeml23__String2000(soap, "prodml23:Description", &a->prodml23__CustomPvtModelExtension::Description, "eml23:String2000")) { soap_flag_Description1--; continue; } } if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap, "prodml22:CustomPvtModelParameter", &a->prodml22__CustomPvtModelExtension::CustomPvtModelParameter, "prodml22:CustomPvtModelParameter")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap, "prodml23:CustomPvtModelParameter", &a->prodml23__CustomPvtModelExtension::CustomPvtModelParameter, "prodml23:CustomPvtModelParameter")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -243819,35 +243969,35 @@ SOAP_FMAC3 prodml22__CustomPvtModelExtension * SOAP_FMAC4 soap_in_prodml22__Cust return NULL; } else - { a = (prodml22__CustomPvtModelExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension, sizeof(prodml22__CustomPvtModelExtension), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CustomPvtModelExtension *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension, sizeof(prodml23__CustomPvtModelExtension), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodml22__CustomPvtModelExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodml23__CustomPvtModelExtension(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CustomPvtModelExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CustomPvtModelExtension(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CustomPvtModelExtension *p; - size_t k = sizeof(prodml22__CustomPvtModelExtension); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension, n, gsoap_eml2_3_fdelete); + prodml23__CustomPvtModelExtension *p; + size_t k = sizeof(prodml23__CustomPvtModelExtension); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CustomPvtModelExtension); + { p = SOAP_NEW(soap, prodml23__CustomPvtModelExtension); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CustomPvtModelExtension, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CustomPvtModelExtension, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CustomPvtModelExtension location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CustomPvtModelExtension location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -243857,87 +244007,87 @@ SOAP_FMAC1 prodml22__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__CustomPvtModelExtension::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CustomPvtModelExtension::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CustomPvtModelExtension(soap, tag ? tag : "prodml22:CustomPvtModelExtension", -2, this, type)) + if (soap_out_prodml23__CustomPvtModelExtension(soap, tag ? tag : "prodml23:CustomPvtModelExtension", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CustomPvtModelExtension::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CustomPvtModelExtension::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CustomPvtModelExtension(soap, this, tag, type); + return soap_get_prodml23__CustomPvtModelExtension(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CustomPvtModelExtension * SOAP_FMAC4 soap_get_prodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelExtension * SOAP_FMAC4 soap_get_prodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CustomPvtModelExtension(soap, tag, p, type))) + if ((p = soap_in_prodml23__CustomPvtModelExtension(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CSPedersen87::soap_default(struct soap *soap) +void prodml23__CSPedersen87::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalViscosityModel::soap_default(soap); + this->prodml23__AbstractCompositionalViscosityModel::soap_default(soap); } -void prodml22__CSPedersen87::soap_serialize(struct soap *soap) const +void prodml23__CSPedersen87::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalViscosityModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalViscosityModel::soap_serialize(soap); #endif } -int prodml22__CSPedersen87::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CSPedersen87::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CSPedersen87(soap, tag, id, this, type); + return soap_out_prodml23__CSPedersen87(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CSPedersen87(struct soap *soap, const char *tag, int id, const prodml22__CSPedersen87 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CSPedersen87(struct soap *soap, const char *tag, int id, const prodml23__CSPedersen87 *a, const char *type) { if (!type) - type = "prodml22:CSPedersen87"; - soap_set_attr(soap, "phase", soap_prodml22__ThermodynamicPhase2s(soap, ((prodml22__AbstractCompositionalViscosityModel*)a)->phase), 1); + type = "prodml23:CSPedersen87"; + soap_set_attr(soap, "phase", soap_prodml23__ThermodynamicPhase2s(soap, ((prodml23__AbstractCompositionalViscosityModel*)a)->phase), 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_gsoap_eml2_3_prodml22__CSPedersen87), type ? type : "prodml22:CSPedersen87")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87), type ? type : "prodml23:CSPedersen87")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CSPedersen87::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CSPedersen87::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CSPedersen87(soap, tag, this, type); + return soap_in_prodml23__CSPedersen87(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CSPedersen87 * SOAP_FMAC4 soap_in_prodml22__CSPedersen87(struct soap *soap, const char *tag, prodml22__CSPedersen87 *a, const char *type) +SOAP_FMAC3 prodml23__CSPedersen87 * SOAP_FMAC4 soap_in_prodml23__CSPedersen87(struct soap *soap, const char *tag, prodml23__CSPedersen87 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CSPedersen87*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87, sizeof(prodml22__CSPedersen87), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CSPedersen87*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87, sizeof(prodml23__CSPedersen87), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CSPedersen87 *)a->soap_in(soap, tag, type); + return (prodml23__CSPedersen87 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml22__AbstractCompositionalViscosityModel*)a)->phase)) + if (soap_s2prodml23__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml23__AbstractCompositionalViscosityModel*)a)->phase)) return NULL; size_t soap_flag_CustomPvtModelExtension4 = 1; size_t soap_flag_PvtModelParameterSet4 = 1; @@ -243949,31 +244099,31 @@ SOAP_FMAC3 prodml22__CSPedersen87 * SOAP_FMAC4 soap_in_prodml22__CSPedersen87(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } @@ -243989,35 +244139,35 @@ SOAP_FMAC3 prodml22__CSPedersen87 * SOAP_FMAC4 soap_in_prodml22__CSPedersen87(st return NULL; } else - { a = (prodml22__CSPedersen87 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87, sizeof(prodml22__CSPedersen87), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CSPedersen87 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87, sizeof(prodml23__CSPedersen87), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml22__CSPedersen87(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml23__CSPedersen87(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CSPedersen87(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CSPedersen87(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CSPedersen87 *p; - size_t k = sizeof(prodml22__CSPedersen87); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87, n, gsoap_eml2_3_fdelete); + prodml23__CSPedersen87 *p; + size_t k = sizeof(prodml23__CSPedersen87); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CSPedersen87); + { p = SOAP_NEW(soap, prodml23__CSPedersen87); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CSPedersen87, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CSPedersen87, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CSPedersen87 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CSPedersen87 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244027,87 +244177,87 @@ SOAP_FMAC1 prodml22__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml22__CSPede return p; } -int prodml22__CSPedersen87::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CSPedersen87::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CSPedersen87(soap, tag ? tag : "prodml22:CSPedersen87", -2, this, type)) + if (soap_out_prodml23__CSPedersen87(soap, tag ? tag : "prodml23:CSPedersen87", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CSPedersen87::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CSPedersen87::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CSPedersen87(soap, this, tag, type); + return soap_get_prodml23__CSPedersen87(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CSPedersen87 * SOAP_FMAC4 soap_get_prodml22__CSPedersen87(struct soap *soap, prodml22__CSPedersen87 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CSPedersen87 * SOAP_FMAC4 soap_get_prodml23__CSPedersen87(struct soap *soap, prodml23__CSPedersen87 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CSPedersen87(soap, tag, p, type))) + if ((p = soap_in_prodml23__CSPedersen87(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CSPedersen84::soap_default(struct soap *soap) +void prodml23__CSPedersen84::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalViscosityModel::soap_default(soap); + this->prodml23__AbstractCompositionalViscosityModel::soap_default(soap); } -void prodml22__CSPedersen84::soap_serialize(struct soap *soap) const +void prodml23__CSPedersen84::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalViscosityModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalViscosityModel::soap_serialize(soap); #endif } -int prodml22__CSPedersen84::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CSPedersen84::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CSPedersen84(soap, tag, id, this, type); + return soap_out_prodml23__CSPedersen84(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CSPedersen84(struct soap *soap, const char *tag, int id, const prodml22__CSPedersen84 *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CSPedersen84(struct soap *soap, const char *tag, int id, const prodml23__CSPedersen84 *a, const char *type) { if (!type) - type = "prodml22:CSPedersen84"; - soap_set_attr(soap, "phase", soap_prodml22__ThermodynamicPhase2s(soap, ((prodml22__AbstractCompositionalViscosityModel*)a)->phase), 1); + type = "prodml23:CSPedersen84"; + soap_set_attr(soap, "phase", soap_prodml23__ThermodynamicPhase2s(soap, ((prodml23__AbstractCompositionalViscosityModel*)a)->phase), 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_gsoap_eml2_3_prodml22__CSPedersen84), type ? type : "prodml22:CSPedersen84")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84), type ? type : "prodml23:CSPedersen84")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CSPedersen84::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CSPedersen84::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CSPedersen84(soap, tag, this, type); + return soap_in_prodml23__CSPedersen84(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CSPedersen84 * SOAP_FMAC4 soap_in_prodml22__CSPedersen84(struct soap *soap, const char *tag, prodml22__CSPedersen84 *a, const char *type) +SOAP_FMAC3 prodml23__CSPedersen84 * SOAP_FMAC4 soap_in_prodml23__CSPedersen84(struct soap *soap, const char *tag, prodml23__CSPedersen84 *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CSPedersen84*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84, sizeof(prodml22__CSPedersen84), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CSPedersen84*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84, sizeof(prodml23__CSPedersen84), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CSPedersen84 *)a->soap_in(soap, tag, type); + return (prodml23__CSPedersen84 *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml22__AbstractCompositionalViscosityModel*)a)->phase)) + if (soap_s2prodml23__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml23__AbstractCompositionalViscosityModel*)a)->phase)) return NULL; size_t soap_flag_CustomPvtModelExtension4 = 1; size_t soap_flag_PvtModelParameterSet4 = 1; @@ -244119,31 +244269,31 @@ SOAP_FMAC3 prodml22__CSPedersen84 * SOAP_FMAC4 soap_in_prodml22__CSPedersen84(st for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MixingRule3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule3--; continue; } } if (soap_flag_ComponentPropertySet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet3--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet3--; continue; } @@ -244159,35 +244309,35 @@ SOAP_FMAC3 prodml22__CSPedersen84 * SOAP_FMAC4 soap_in_prodml22__CSPedersen84(st return NULL; } else - { a = (prodml22__CSPedersen84 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84, sizeof(prodml22__CSPedersen84), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CSPedersen84 *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84, sizeof(prodml23__CSPedersen84), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml22__CSPedersen84(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml23__CSPedersen84(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CSPedersen84(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CSPedersen84(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CSPedersen84 *p; - size_t k = sizeof(prodml22__CSPedersen84); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84, n, gsoap_eml2_3_fdelete); + prodml23__CSPedersen84 *p; + size_t k = sizeof(prodml23__CSPedersen84); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CSPedersen84); + { p = SOAP_NEW(soap, prodml23__CSPedersen84); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CSPedersen84, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CSPedersen84, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CSPedersen84 location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CSPedersen84 location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244197,76 +244347,76 @@ SOAP_FMAC1 prodml22__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml22__CSPede return p; } -int prodml22__CSPedersen84::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CSPedersen84::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CSPedersen84(soap, tag ? tag : "prodml22:CSPedersen84", -2, this, type)) + if (soap_out_prodml23__CSPedersen84(soap, tag ? tag : "prodml23:CSPedersen84", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CSPedersen84::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CSPedersen84::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CSPedersen84(soap, this, tag, type); + return soap_get_prodml23__CSPedersen84(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CSPedersen84 * SOAP_FMAC4 soap_get_prodml22__CSPedersen84(struct soap *soap, prodml22__CSPedersen84 *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CSPedersen84 * SOAP_FMAC4 soap_get_prodml23__CSPedersen84(struct soap *soap, prodml23__CSPedersen84 *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CSPedersen84(soap, tag, p, type))) + if ((p = soap_in_prodml23__CSPedersen84(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CorrelationThermalModel::soap_default(struct soap *soap) +void prodml23__CorrelationThermalModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationModel::soap_default(soap); + this->prodml23__AbstractCorrelationModel::soap_default(soap); } -void prodml22__CorrelationThermalModel::soap_serialize(struct soap *soap) const +void prodml23__CorrelationThermalModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationModel::soap_serialize(soap); #endif } -int prodml22__CorrelationThermalModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CorrelationThermalModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CorrelationThermalModel(soap, tag, id, this, type); + return soap_out_prodml23__CorrelationThermalModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CorrelationThermalModel(struct soap *soap, const char *tag, int id, const prodml22__CorrelationThermalModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CorrelationThermalModel(struct soap *soap, const char *tag, int id, const prodml23__CorrelationThermalModel *a, const char *type) { if (!type) - type = "prodml22:CorrelationThermalModel"; + type = "prodml23:CorrelationThermalModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel), type ? type : "prodml22:CorrelationThermalModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel), type ? type : "prodml23:CorrelationThermalModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CorrelationThermalModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CorrelationThermalModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CorrelationThermalModel(soap, tag, this, type); + return soap_in_prodml23__CorrelationThermalModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CorrelationThermalModel * SOAP_FMAC4 soap_in_prodml22__CorrelationThermalModel(struct soap *soap, const char *tag, prodml22__CorrelationThermalModel *a, const char *type) +SOAP_FMAC3 prodml23__CorrelationThermalModel * SOAP_FMAC4 soap_in_prodml23__CorrelationThermalModel(struct soap *soap, const char *tag, prodml23__CorrelationThermalModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CorrelationThermalModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel, sizeof(prodml22__CorrelationThermalModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CorrelationThermalModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel, sizeof(prodml23__CorrelationThermalModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CorrelationThermalModel *)a->soap_in(soap, tag, type); + return (prodml23__CorrelationThermalModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -244277,13 +244427,13 @@ SOAP_FMAC3 prodml22__CorrelationThermalModel * SOAP_FMAC4 soap_in_prodml22__Corr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension3--; continue; } } if (soap_flag_PvtModelParameterSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet3--; continue; } @@ -244299,35 +244449,35 @@ SOAP_FMAC3 prodml22__CorrelationThermalModel * SOAP_FMAC4 soap_in_prodml22__Corr return NULL; } else - { a = (prodml22__CorrelationThermalModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel, SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel, sizeof(prodml22__CorrelationThermalModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CorrelationThermalModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel, SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel, sizeof(prodml23__CorrelationThermalModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodml22__CorrelationThermalModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodml23__CorrelationThermalModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CorrelationThermalModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CorrelationThermalModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CorrelationThermalModel *p; - size_t k = sizeof(prodml22__CorrelationThermalModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel, n, gsoap_eml2_3_fdelete); + prodml23__CorrelationThermalModel *p; + size_t k = sizeof(prodml23__CorrelationThermalModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CorrelationThermalModel); + { p = SOAP_NEW(soap, prodml23__CorrelationThermalModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CorrelationThermalModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CorrelationThermalModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CorrelationThermalModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CorrelationThermalModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244337,82 +244487,82 @@ SOAP_FMAC1 prodml22__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodm return p; } -int prodml22__CorrelationThermalModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CorrelationThermalModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CorrelationThermalModel(soap, tag ? tag : "prodml22:CorrelationThermalModel", -2, this, type)) + if (soap_out_prodml23__CorrelationThermalModel(soap, tag ? tag : "prodml23:CorrelationThermalModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CorrelationThermalModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CorrelationThermalModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CorrelationThermalModel(soap, this, tag, type); + return soap_get_prodml23__CorrelationThermalModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CorrelationThermalModel * SOAP_FMAC4 soap_get_prodml22__CorrelationThermalModel(struct soap *soap, prodml22__CorrelationThermalModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CorrelationThermalModel * SOAP_FMAC4 soap_get_prodml23__CorrelationThermalModel(struct soap *soap, prodml23__CorrelationThermalModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CorrelationThermalModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__CorrelationThermalModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CompositionalThermalModel::soap_default(struct soap *soap) +void prodml23__CompositionalThermalModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalModel::soap_default(soap); + this->prodml23__AbstractCompositionalModel::soap_default(soap); } -void prodml22__CompositionalThermalModel::soap_serialize(struct soap *soap) const +void prodml23__CompositionalThermalModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalModel::soap_serialize(soap); #endif } -int prodml22__CompositionalThermalModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CompositionalThermalModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CompositionalThermalModel(soap, tag, id, this, type); + return soap_out_prodml23__CompositionalThermalModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CompositionalThermalModel(struct soap *soap, const char *tag, int id, const prodml22__CompositionalThermalModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CompositionalThermalModel(struct soap *soap, const char *tag, int id, const prodml23__CompositionalThermalModel *a, const char *type) { if (!type) - type = "prodml22:CompositionalThermalModel"; + type = "prodml23:CompositionalThermalModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel), type ? type : "prodml22:CompositionalThermalModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel), type ? type : "prodml23:CompositionalThermalModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CompositionalThermalModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CompositionalThermalModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CompositionalThermalModel(soap, tag, this, type); + return soap_in_prodml23__CompositionalThermalModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CompositionalThermalModel * SOAP_FMAC4 soap_in_prodml22__CompositionalThermalModel(struct soap *soap, const char *tag, prodml22__CompositionalThermalModel *a, const char *type) +SOAP_FMAC3 prodml23__CompositionalThermalModel * SOAP_FMAC4 soap_in_prodml23__CompositionalThermalModel(struct soap *soap, const char *tag, prodml23__CompositionalThermalModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CompositionalThermalModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel, sizeof(prodml22__CompositionalThermalModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CompositionalThermalModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel, sizeof(prodml23__CompositionalThermalModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CompositionalThermalModel *)a->soap_in(soap, tag, type); + return (prodml23__CompositionalThermalModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -244426,31 +244576,31 @@ SOAP_FMAC3 prodml22__CompositionalThermalModel * SOAP_FMAC4 soap_in_prodml22__Co for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension3--; continue; } } if (soap_flag_PvtModelParameterSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet3--; continue; } } if (soap_flag_MixingRule2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule2--; continue; } } if (soap_flag_ComponentPropertySet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet2--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet2--; continue; } @@ -244466,35 +244616,35 @@ SOAP_FMAC3 prodml22__CompositionalThermalModel * SOAP_FMAC4 soap_in_prodml22__Co return NULL; } else - { a = (prodml22__CompositionalThermalModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel, SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel, sizeof(prodml22__CompositionalThermalModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CompositionalThermalModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel, SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel, sizeof(prodml23__CompositionalThermalModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_prodml22__CompositionalThermalModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_prodml23__CompositionalThermalModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CompositionalThermalModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CompositionalThermalModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CompositionalThermalModel *p; - size_t k = sizeof(prodml22__CompositionalThermalModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel, n, gsoap_eml2_3_fdelete); + prodml23__CompositionalThermalModel *p; + size_t k = sizeof(prodml23__CompositionalThermalModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CompositionalThermalModel); + { p = SOAP_NEW(soap, prodml23__CompositionalThermalModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CompositionalThermalModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CompositionalThermalModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CompositionalThermalModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CompositionalThermalModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244504,74 +244654,74 @@ SOAP_FMAC1 prodml22__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__CompositionalThermalModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CompositionalThermalModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CompositionalThermalModel(soap, tag ? tag : "prodml22:CompositionalThermalModel", -2, this, type)) + if (soap_out_prodml23__CompositionalThermalModel(soap, tag ? tag : "prodml23:CompositionalThermalModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CompositionalThermalModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CompositionalThermalModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CompositionalThermalModel(soap, this, tag, type); + return soap_get_prodml23__CompositionalThermalModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CompositionalThermalModel * SOAP_FMAC4 soap_get_prodml22__CompositionalThermalModel(struct soap *soap, prodml22__CompositionalThermalModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CompositionalThermalModel * SOAP_FMAC4 soap_get_prodml23__CompositionalThermalModel(struct soap *soap, prodml23__CompositionalThermalModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CompositionalThermalModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__CompositionalThermalModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__ComponentPropertySet::soap_default(struct soap *soap) +void prodml23__ComponentPropertySet::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap, &this->prodml22__ComponentPropertySet::FluidComponentProperty); + soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap, &this->prodml23__ComponentPropertySet::FluidComponentProperty); } -void prodml22__ComponentPropertySet::soap_serialize(struct soap *soap) const +void prodml23__ComponentPropertySet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap, &this->prodml22__ComponentPropertySet::FluidComponentProperty); + soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap, &this->prodml23__ComponentPropertySet::FluidComponentProperty); #endif } -int prodml22__ComponentPropertySet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__ComponentPropertySet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__ComponentPropertySet(soap, tag, id, this, type); + return soap_out_prodml23__ComponentPropertySet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ComponentPropertySet(struct soap *soap, const char *tag, int id, const prodml22__ComponentPropertySet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ComponentPropertySet(struct soap *soap, const char *tag, int id, const prodml23__ComponentPropertySet *a, const char *type) { if (!type) - type = "prodml22:ComponentPropertySet"; + type = "prodml23:ComponentPropertySet"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap, "prodml22:FluidComponentProperty", -1, &a->prodml22__ComponentPropertySet::FluidComponentProperty, "prodml22:FluidComponentProperty")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap, "prodml23:FluidComponentProperty", -1, &a->prodml23__ComponentPropertySet::FluidComponentProperty, "prodml23:FluidComponentProperty")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__ComponentPropertySet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__ComponentPropertySet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__ComponentPropertySet(soap, tag, this, type); + return soap_in_prodml23__ComponentPropertySet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml22__ComponentPropertySet(struct soap *soap, const char *tag, prodml22__ComponentPropertySet *a, const char *type) +SOAP_FMAC3 prodml23__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml23__ComponentPropertySet(struct soap *soap, const char *tag, prodml23__ComponentPropertySet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__ComponentPropertySet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet, sizeof(prodml22__ComponentPropertySet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__ComponentPropertySet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet, sizeof(prodml23__ComponentPropertySet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__ComponentPropertySet *)a->soap_in(soap, tag, type); + return (prodml23__ComponentPropertySet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -244580,7 +244730,7 @@ SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml22__Compone for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap, "prodml22:FluidComponentProperty", &a->prodml22__ComponentPropertySet::FluidComponentProperty, "prodml22:FluidComponentProperty")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap, "prodml23:FluidComponentProperty", &a->prodml23__ComponentPropertySet::FluidComponentProperty, "prodml23:FluidComponentProperty")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -244592,7 +244742,7 @@ SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml22__Compone } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__ComponentPropertySet::FluidComponentProperty.size() < 1)) + if ((a->prodml23__ComponentPropertySet::FluidComponentProperty.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -244602,35 +244752,35 @@ SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml22__Compone return NULL; } else - { a = (prodml22__ComponentPropertySet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet, sizeof(prodml22__ComponentPropertySet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__ComponentPropertySet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet, sizeof(prodml23__ComponentPropertySet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml22__ComponentPropertySet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml23__ComponentPropertySet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__ComponentPropertySet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__ComponentPropertySet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__ComponentPropertySet *p; - size_t k = sizeof(prodml22__ComponentPropertySet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet, n, gsoap_eml2_3_fdelete); + prodml23__ComponentPropertySet *p; + size_t k = sizeof(prodml23__ComponentPropertySet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__ComponentPropertySet); + { p = SOAP_NEW(soap, prodml23__ComponentPropertySet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__ComponentPropertySet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__ComponentPropertySet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__ComponentPropertySet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__ComponentPropertySet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244640,98 +244790,98 @@ SOAP_FMAC1 prodml22__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml22 return p; } -int prodml22__ComponentPropertySet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__ComponentPropertySet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__ComponentPropertySet(soap, tag ? tag : "prodml22:ComponentPropertySet", -2, this, type)) + if (soap_out_prodml23__ComponentPropertySet(soap, tag ? tag : "prodml23:ComponentPropertySet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__ComponentPropertySet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__ComponentPropertySet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__ComponentPropertySet(soap, this, tag, type); + return soap_get_prodml23__ComponentPropertySet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_get_prodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ComponentPropertySet * SOAP_FMAC4 soap_get_prodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__ComponentPropertySet(soap, tag, p, type))) + if ((p = soap_in_prodml23__ComponentPropertySet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__CarrDempsey::soap_default(struct soap *soap) +void prodml23__CarrDempsey::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationGasViscosityModel::soap_default(soap); - this->prodml22__CarrDempsey::GasMolarWeight = NULL; - this->prodml22__CarrDempsey::GasViscosityAt1Atm = NULL; - this->prodml22__CarrDempsey::PseudoReducedTemperature = NULL; - this->prodml22__CarrDempsey::PseudoReducedPressure = NULL; + this->prodml23__AbstractCorrelationGasViscosityModel::soap_default(soap); + this->prodml23__CarrDempsey::GasMolarWeight = NULL; + this->prodml23__CarrDempsey::GasViscosityAt1Atm = NULL; + this->prodml23__CarrDempsey::PseudoReducedTemperature = NULL; + this->prodml23__CarrDempsey::PseudoReducedPressure = NULL; } -void prodml22__CarrDempsey::soap_serialize(struct soap *soap) const +void prodml23__CarrDempsey::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__CarrDempsey::GasMolarWeight); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__CarrDempsey::GasViscosityAt1Atm); - soap_serialize_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, &this->prodml22__CarrDempsey::PseudoReducedTemperature); - soap_serialize_PointerToeml23__PressurePerPressureMeasure(soap, &this->prodml22__CarrDempsey::PseudoReducedPressure); - this->prodml22__AbstractCorrelationGasViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__CarrDempsey::GasMolarWeight); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__CarrDempsey::GasViscosityAt1Atm); + soap_serialize_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, &this->prodml23__CarrDempsey::PseudoReducedTemperature); + soap_serialize_PointerToeml23__PressurePerPressureMeasure(soap, &this->prodml23__CarrDempsey::PseudoReducedPressure); + this->prodml23__AbstractCorrelationGasViscosityModel::soap_serialize(soap); #endif } -int prodml22__CarrDempsey::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__CarrDempsey::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__CarrDempsey(soap, tag, id, this, type); + return soap_out_prodml23__CarrDempsey(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CarrDempsey(struct soap *soap, const char *tag, int id, const prodml22__CarrDempsey *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CarrDempsey(struct soap *soap, const char *tag, int id, const prodml23__CarrDempsey *a, const char *type) { if (!type) - type = "prodml22:CarrDempsey"; + type = "prodml23:CarrDempsey"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey), type ? type : "prodml22:CarrDempsey")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey), type ? type : "prodml23:CarrDempsey")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolarWeight", -1, &a->prodml22__CarrDempsey::GasMolarWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolarWeight", -1, &a->prodml23__CarrDempsey::GasMolarWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosityAt1Atm", -1, &a->prodml22__CarrDempsey::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosityAt1Atm", -1, &a->prodml23__CarrDempsey::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml22:PseudoReducedTemperature", -1, &a->prodml22__CarrDempsey::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml23:PseudoReducedTemperature", -1, &a->prodml23__CarrDempsey::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressurePerPressureMeasure(soap, "prodml22:PseudoReducedPressure", -1, &a->prodml22__CarrDempsey::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) + if (soap_out_PointerToeml23__PressurePerPressureMeasure(soap, "prodml23:PseudoReducedPressure", -1, &a->prodml23__CarrDempsey::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__CarrDempsey::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__CarrDempsey::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__CarrDempsey(soap, tag, this, type); + return soap_in_prodml23__CarrDempsey(soap, tag, this, type); } -SOAP_FMAC3 prodml22__CarrDempsey * SOAP_FMAC4 soap_in_prodml22__CarrDempsey(struct soap *soap, const char *tag, prodml22__CarrDempsey *a, const char *type) +SOAP_FMAC3 prodml23__CarrDempsey * SOAP_FMAC4 soap_in_prodml23__CarrDempsey(struct soap *soap, const char *tag, prodml23__CarrDempsey *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__CarrDempsey*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey, sizeof(prodml22__CarrDempsey), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__CarrDempsey*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey, sizeof(prodml23__CarrDempsey), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__CarrDempsey *)a->soap_in(soap, tag, type); + return (prodml23__CarrDempsey *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -244749,55 +244899,55 @@ SOAP_FMAC3 prodml22__CarrDempsey * SOAP_FMAC4 soap_in_prodml22__CarrDempsey(stru for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_GasViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_GasMolarWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:GasMolarWeight", &a->prodml22__CarrDempsey::GasMolarWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:GasMolarWeight", &a->prodml23__CarrDempsey::GasMolarWeight, "eml23:MolecularWeightMeasure")) { soap_flag_GasMolarWeight1--; continue; } } if (soap_flag_GasViscosityAt1Atm1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosityAt1Atm", &a->prodml22__CarrDempsey::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosityAt1Atm", &a->prodml23__CarrDempsey::GasViscosityAt1Atm, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosityAt1Atm1--; continue; } } if (soap_flag_PseudoReducedTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml22:PseudoReducedTemperature", &a->prodml22__CarrDempsey::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure(soap, "prodml23:PseudoReducedTemperature", &a->prodml23__CarrDempsey::PseudoReducedTemperature, "eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure")) { soap_flag_PseudoReducedTemperature1--; continue; } } if (soap_flag_PseudoReducedPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressurePerPressureMeasure(soap, "prodml22:PseudoReducedPressure", &a->prodml22__CarrDempsey::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) + { if (soap_in_PointerToeml23__PressurePerPressureMeasure(soap, "prodml23:PseudoReducedPressure", &a->prodml23__CarrDempsey::PseudoReducedPressure, "eml23:PressurePerPressureMeasure")) { soap_flag_PseudoReducedPressure1--; continue; } @@ -244813,35 +244963,35 @@ SOAP_FMAC3 prodml22__CarrDempsey * SOAP_FMAC4 soap_in_prodml22__CarrDempsey(stru return NULL; } else - { a = (prodml22__CarrDempsey *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey, SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey, sizeof(prodml22__CarrDempsey), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__CarrDempsey *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey, SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey, sizeof(prodml23__CarrDempsey), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml22__CarrDempsey(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml23__CarrDempsey(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__CarrDempsey(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__CarrDempsey(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__CarrDempsey *p; - size_t k = sizeof(prodml22__CarrDempsey); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey, n, gsoap_eml2_3_fdelete); + prodml23__CarrDempsey *p; + size_t k = sizeof(prodml23__CarrDempsey); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__CarrDempsey); + { p = SOAP_NEW(soap, prodml23__CarrDempsey); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__CarrDempsey, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__CarrDempsey, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__CarrDempsey location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__CarrDempsey location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244851,74 +245001,74 @@ SOAP_FMAC1 prodml22__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml22__CarrDem return p; } -int prodml22__CarrDempsey::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__CarrDempsey::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__CarrDempsey(soap, tag ? tag : "prodml22:CarrDempsey", -2, this, type)) + if (soap_out_prodml23__CarrDempsey(soap, tag ? tag : "prodml23:CarrDempsey", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__CarrDempsey::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__CarrDempsey::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__CarrDempsey(soap, this, tag, type); + return soap_get_prodml23__CarrDempsey(soap, this, tag, type); } -SOAP_FMAC3 prodml22__CarrDempsey * SOAP_FMAC4 soap_get_prodml22__CarrDempsey(struct soap *soap, prodml22__CarrDempsey *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CarrDempsey * SOAP_FMAC4 soap_get_prodml23__CarrDempsey(struct soap *soap, prodml23__CarrDempsey *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__CarrDempsey(soap, tag, p, type))) + if ((p = soap_in_prodml23__CarrDempsey(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__BinaryInteractionCoefficientSet::soap_default(struct soap *soap) +void prodml23__BinaryInteractionCoefficientSet::soap_default(struct soap *soap) { this->soap = soap; - soap_default_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap, &this->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient); + soap_default_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap, &this->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient); } -void prodml22__BinaryInteractionCoefficientSet::soap_serialize(struct soap *soap) const +void prodml23__BinaryInteractionCoefficientSet::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap, &this->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient); + soap_serialize_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap, &this->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient); #endif } -int prodml22__BinaryInteractionCoefficientSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__BinaryInteractionCoefficientSet::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__BinaryInteractionCoefficientSet(soap, tag, id, this, type); + return soap_out_prodml23__BinaryInteractionCoefficientSet(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, int id, const prodml22__BinaryInteractionCoefficientSet *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, int id, const prodml23__BinaryInteractionCoefficientSet *a, const char *type) { if (!type) - type = "prodml22:BinaryInteractionCoefficientSet"; + type = "prodml23:BinaryInteractionCoefficientSet"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet), type)) return soap->error; - if (soap_out_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap, "prodml22:BinaryInteractionCoefficient", -1, &a->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient, "prodml22:BinaryInteractionCoefficient")) + if (soap_out_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap, "prodml23:BinaryInteractionCoefficient", -1, &a->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient, "prodml23:BinaryInteractionCoefficient")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__BinaryInteractionCoefficientSet::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__BinaryInteractionCoefficientSet::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__BinaryInteractionCoefficientSet(soap, tag, this, type); + return soap_in_prodml23__BinaryInteractionCoefficientSet(soap, tag, this, type); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, prodml22__BinaryInteractionCoefficientSet *a, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, prodml23__BinaryInteractionCoefficientSet *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__BinaryInteractionCoefficientSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet, sizeof(prodml22__BinaryInteractionCoefficientSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__BinaryInteractionCoefficientSet*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet, sizeof(prodml23__BinaryInteractionCoefficientSet), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__BinaryInteractionCoefficientSet *)a->soap_in(soap, tag, type); + return (prodml23__BinaryInteractionCoefficientSet *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -244927,7 +245077,7 @@ SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap, "prodml22:BinaryInteractionCoefficient", &a->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient, "prodml22:BinaryInteractionCoefficient")) + { if (soap_in_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap, "prodml23:BinaryInteractionCoefficient", &a->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient, "prodml23:BinaryInteractionCoefficient")) continue; } if (soap->error == SOAP_TAG_MISMATCH) @@ -244939,7 +245089,7 @@ SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml } if (soap_element_end_in(soap, tag)) return NULL; - if ((a->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient.size() < 1)) + if ((a->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient.size() < 1)) { soap->error = SOAP_OCCURS; return NULL; } @@ -244949,35 +245099,35 @@ SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml return NULL; } else - { a = (prodml22__BinaryInteractionCoefficientSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet, sizeof(prodml22__BinaryInteractionCoefficientSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__BinaryInteractionCoefficientSet *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet, sizeof(prodml23__BinaryInteractionCoefficientSet), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantiate_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantiate_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__BinaryInteractionCoefficientSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__BinaryInteractionCoefficientSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__BinaryInteractionCoefficientSet *p; - size_t k = sizeof(prodml22__BinaryInteractionCoefficientSet); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet, n, gsoap_eml2_3_fdelete); + prodml23__BinaryInteractionCoefficientSet *p; + size_t k = sizeof(prodml23__BinaryInteractionCoefficientSet); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__BinaryInteractionCoefficientSet); + { p = SOAP_NEW(soap, prodml23__BinaryInteractionCoefficientSet); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__BinaryInteractionCoefficientSet, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__BinaryInteractionCoefficientSet, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__BinaryInteractionCoefficientSet location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__BinaryInteractionCoefficientSet location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -244987,119 +245137,119 @@ SOAP_FMAC1 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantia return p; } -int prodml22__BinaryInteractionCoefficientSet::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__BinaryInteractionCoefficientSet::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__BinaryInteractionCoefficientSet(soap, tag ? tag : "prodml22:BinaryInteractionCoefficientSet", -2, this, type)) + if (soap_out_prodml23__BinaryInteractionCoefficientSet(soap, tag ? tag : "prodml23:BinaryInteractionCoefficientSet", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__BinaryInteractionCoefficientSet::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__BinaryInteractionCoefficientSet::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__BinaryInteractionCoefficientSet(soap, this, tag, type); + return soap_get_prodml23__BinaryInteractionCoefficientSet(soap, this, tag, type); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_get_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_get_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BinaryInteractionCoefficientSet(soap, tag, p, type))) + if ((p = soap_in_prodml23__BinaryInteractionCoefficientSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__BinaryInteractionCoefficient::soap_default(struct soap *soap) +void prodml23__BinaryInteractionCoefficient::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractMeasure(soap, &this->prodml22__BinaryInteractionCoefficient::__item); - soap_default_eml23__String64(soap, &this->prodml22__BinaryInteractionCoefficient::fluidComponent1Reference); - this->prodml22__BinaryInteractionCoefficient::fluidComponent2Reference = NULL; + soap_default_eml23__AbstractMeasure(soap, &this->prodml23__BinaryInteractionCoefficient::__item); + soap_default_eml23__String64(soap, &this->prodml23__BinaryInteractionCoefficient::fluidComponent1Reference); + this->prodml23__BinaryInteractionCoefficient::fluidComponent2Reference = NULL; } -void prodml22__BinaryInteractionCoefficient::soap_serialize(struct soap *soap) const +void prodml23__BinaryInteractionCoefficient::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -int prodml22__BinaryInteractionCoefficient::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__BinaryInteractionCoefficient::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__BinaryInteractionCoefficient(soap, tag, id, this, type); + return soap_out_prodml23__BinaryInteractionCoefficient(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BinaryInteractionCoefficient(struct soap *soap, const char *tag, int id, const prodml22__BinaryInteractionCoefficient *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BinaryInteractionCoefficient(struct soap *soap, const char *tag, int id, const prodml23__BinaryInteractionCoefficient *a, const char *type) { if (!type) - type = "prodml22:BinaryInteractionCoefficient"; - soap_set_attr(soap, "fluidComponent1Reference", soap_eml23__String642s(soap, ((prodml22__BinaryInteractionCoefficient*)a)->fluidComponent1Reference), 1); - if (((prodml22__BinaryInteractionCoefficient*)a)->fluidComponent2Reference) - { soap_set_attr(soap, "fluidComponent2Reference", soap_eml23__String642s(soap, *((prodml22__BinaryInteractionCoefficient*)a)->fluidComponent2Reference), 1); + type = "prodml23:BinaryInteractionCoefficient"; + soap_set_attr(soap, "fluidComponent1Reference", soap_eml23__String642s(soap, ((prodml23__BinaryInteractionCoefficient*)a)->fluidComponent1Reference), 1); + if (((prodml23__BinaryInteractionCoefficient*)a)->fluidComponent2Reference) + { soap_set_attr(soap, "fluidComponent2Reference", soap_eml23__String642s(soap, *((prodml23__BinaryInteractionCoefficient*)a)->fluidComponent2Reference), 1); } (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml22__BinaryInteractionCoefficient::__item, "prodml22:BinaryInteractionCoefficient"); + return soap_out_eml23__AbstractMeasure(soap, tag, id, &a->prodml23__BinaryInteractionCoefficient::__item, "prodml23:BinaryInteractionCoefficient"); } -void *prodml22__BinaryInteractionCoefficient::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__BinaryInteractionCoefficient::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__BinaryInteractionCoefficient(soap, tag, this, type); + return soap_in_prodml23__BinaryInteractionCoefficient(soap, tag, this, type); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient * SOAP_FMAC4 soap_in_prodml22__BinaryInteractionCoefficient(struct soap *soap, const char *tag, prodml22__BinaryInteractionCoefficient *a, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient * SOAP_FMAC4 soap_in_prodml23__BinaryInteractionCoefficient(struct soap *soap, const char *tag, prodml23__BinaryInteractionCoefficient *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__BinaryInteractionCoefficient*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient, sizeof(prodml22__BinaryInteractionCoefficient), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__BinaryInteractionCoefficient*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient, sizeof(prodml23__BinaryInteractionCoefficient), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient) - return (prodml22__BinaryInteractionCoefficient *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient) + return (prodml23__BinaryInteractionCoefficient *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponent1Reference", 1, 3), &((prodml22__BinaryInteractionCoefficient*)a)->fluidComponent1Reference)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "fluidComponent1Reference", 1, 3), &((prodml23__BinaryInteractionCoefficient*)a)->fluidComponent1Reference)) return NULL; { const char *t = soap_attr_value(soap, "fluidComponent2Reference", 1, 0); if (t) { - if (!(((prodml22__BinaryInteractionCoefficient*)a)->fluidComponent2Reference = soap_new_eml23__String64(soap))) + if (!(((prodml23__BinaryInteractionCoefficient*)a)->fluidComponent2Reference = soap_new_eml23__String64(soap))) return NULL; - if (soap_s2eml23__String64(soap, t, ((prodml22__BinaryInteractionCoefficient*)a)->fluidComponent2Reference)) + if (soap_s2eml23__String64(soap, t, ((prodml23__BinaryInteractionCoefficient*)a)->fluidComponent2Reference)) return NULL; } else if (soap->error) return NULL; } - if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml22__BinaryInteractionCoefficient::__item, "prodml22:BinaryInteractionCoefficient")) + if (!soap_in_eml23__AbstractMeasure(soap, tag, &a->prodml23__BinaryInteractionCoefficient::__item, "prodml23:BinaryInteractionCoefficient")) return NULL; return a; } -SOAP_FMAC1 prodml22__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_prodml22__BinaryInteractionCoefficient(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_prodml23__BinaryInteractionCoefficient(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__BinaryInteractionCoefficient(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__BinaryInteractionCoefficient(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__BinaryInteractionCoefficient *p; - size_t k = sizeof(prodml22__BinaryInteractionCoefficient); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient, n, gsoap_eml2_3_fdelete); + prodml23__BinaryInteractionCoefficient *p; + size_t k = sizeof(prodml23__BinaryInteractionCoefficient); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__BinaryInteractionCoefficient); + { p = SOAP_NEW(soap, prodml23__BinaryInteractionCoefficient); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__BinaryInteractionCoefficient, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__BinaryInteractionCoefficient, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__BinaryInteractionCoefficient location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__BinaryInteractionCoefficient location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -245109,84 +245259,84 @@ SOAP_FMAC1 prodml22__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_ return p; } -int prodml22__BinaryInteractionCoefficient::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__BinaryInteractionCoefficient::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__BinaryInteractionCoefficient(soap, tag ? tag : "prodml22:BinaryInteractionCoefficient", -2, this, type)) + if (soap_out_prodml23__BinaryInteractionCoefficient(soap, tag ? tag : "prodml23:BinaryInteractionCoefficient", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__BinaryInteractionCoefficient::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__BinaryInteractionCoefficient::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__BinaryInteractionCoefficient(soap, this, tag, type); + return soap_get_prodml23__BinaryInteractionCoefficient(soap, this, tag, type); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient * SOAP_FMAC4 soap_get_prodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient * SOAP_FMAC4 soap_get_prodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BinaryInteractionCoefficient(soap, tag, p, type))) + if ((p = soap_in_prodml23__BinaryInteractionCoefficient(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__BergmanSutton_BubblePoint::soap_default(struct soap *soap) +void prodml23__BergmanSutton_BubblePoint::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_default(soap); } -void prodml22__BergmanSutton_BubblePoint::soap_serialize(struct soap *soap) const +void prodml23__BergmanSutton_BubblePoint::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::soap_serialize(soap); #endif } -int prodml22__BergmanSutton_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__BergmanSutton_BubblePoint::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__BergmanSutton_BubblePoint(soap, tag, id, this, type); + return soap_out_prodml23__BergmanSutton_BubblePoint(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BergmanSutton_BubblePoint(struct soap *soap, const char *tag, int id, const prodml22__BergmanSutton_BubblePoint *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BergmanSutton_BubblePoint(struct soap *soap, const char *tag, int id, const prodml23__BergmanSutton_BubblePoint *a, const char *type) { if (!type) - type = "prodml22:BergmanSutton-BubblePoint"; + type = "prodml23:BergmanSutton-BubblePoint"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint), type ? type : "prodml22:BergmanSutton-BubblePoint")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint), type ? type : "prodml23:BergmanSutton-BubblePoint")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__BergmanSutton_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__BergmanSutton_BubblePoint::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__BergmanSutton_BubblePoint(soap, tag, this, type); + return soap_in_prodml23__BergmanSutton_BubblePoint(soap, tag, this, type); } -SOAP_FMAC3 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_in_prodml22__BergmanSutton_BubblePoint(struct soap *soap, const char *tag, prodml22__BergmanSutton_BubblePoint *a, const char *type) +SOAP_FMAC3 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_in_prodml23__BergmanSutton_BubblePoint(struct soap *soap, const char *tag, prodml23__BergmanSutton_BubblePoint *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__BergmanSutton_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint, sizeof(prodml22__BergmanSutton_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__BergmanSutton_BubblePoint*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint, sizeof(prodml23__BergmanSutton_BubblePoint), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__BergmanSutton_BubblePoint *)a->soap_in(soap, tag, type); + return (prodml23__BergmanSutton_BubblePoint *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -245201,37 +245351,37 @@ SOAP_FMAC3 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_in_prodml22__Be for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_SolutionGasOilRatio2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio2--; continue; } @@ -245247,35 +245397,35 @@ SOAP_FMAC3 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_in_prodml22__Be return NULL; } else - { a = (prodml22__BergmanSutton_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint, sizeof(prodml22__BergmanSutton_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__BergmanSutton_BubblePoint *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint, SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint, sizeof(prodml23__BergmanSutton_BubblePoint), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__BergmanSutton_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__BergmanSutton_BubblePoint(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__BergmanSutton_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__BergmanSutton_BubblePoint(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__BergmanSutton_BubblePoint *p; - size_t k = sizeof(prodml22__BergmanSutton_BubblePoint); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint, n, gsoap_eml2_3_fdelete); + prodml23__BergmanSutton_BubblePoint *p; + size_t k = sizeof(prodml23__BergmanSutton_BubblePoint); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__BergmanSutton_BubblePoint); + { p = SOAP_NEW(soap, prodml23__BergmanSutton_BubblePoint); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__BergmanSutton_BubblePoint, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__BergmanSutton_BubblePoint, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__BergmanSutton_BubblePoint location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__BergmanSutton_BubblePoint location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -245285,90 +245435,90 @@ SOAP_FMAC1 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_pro return p; } -int prodml22__BergmanSutton_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__BergmanSutton_BubblePoint::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__BergmanSutton_BubblePoint(soap, tag ? tag : "prodml22:BergmanSutton-BubblePoint", -2, this, type)) + if (soap_out_prodml23__BergmanSutton_BubblePoint(soap, tag ? tag : "prodml23:BergmanSutton-BubblePoint", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__BergmanSutton_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__BergmanSutton_BubblePoint::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__BergmanSutton_BubblePoint(soap, this, tag, type); + return soap_get_prodml23__BergmanSutton_BubblePoint(soap, this, tag, type); } -SOAP_FMAC3 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_get_prodml22__BergmanSutton_BubblePoint(struct soap *soap, prodml22__BergmanSutton_BubblePoint *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_get_prodml23__BergmanSutton_BubblePoint(struct soap *soap, prodml23__BergmanSutton_BubblePoint *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BergmanSutton_BubblePoint(soap, tag, p, type))) + if ((p = soap_in_prodml23__BergmanSutton_BubblePoint(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__BerganSutton_Dead::soap_default(struct soap *soap) +void prodml23__BerganSutton_Dead::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_default(soap); - this->prodml22__BerganSutton_Dead::DeadOilViscosityAt100F = NULL; - this->prodml22__BerganSutton_Dead::DeadOilViscosityAt210F = NULL; + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_default(soap); + this->prodml23__BerganSutton_Dead::DeadOilViscosityAt100F = NULL; + this->prodml23__BerganSutton_Dead::DeadOilViscosityAt210F = NULL; } -void prodml22__BerganSutton_Dead::soap_serialize(struct soap *soap) const +void prodml23__BerganSutton_Dead::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__BerganSutton_Dead::DeadOilViscosityAt100F); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__BerganSutton_Dead::DeadOilViscosityAt210F); - this->prodml22__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__BerganSutton_Dead::DeadOilViscosityAt100F); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__BerganSutton_Dead::DeadOilViscosityAt210F); + this->prodml23__AbstractCorrelationViscosityDeadModel::soap_serialize(soap); #endif } -int prodml22__BerganSutton_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__BerganSutton_Dead::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__BerganSutton_Dead(soap, tag, id, this, type); + return soap_out_prodml23__BerganSutton_Dead(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BerganSutton_Dead(struct soap *soap, const char *tag, int id, const prodml22__BerganSutton_Dead *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BerganSutton_Dead(struct soap *soap, const char *tag, int id, const prodml23__BerganSutton_Dead *a, const char *type) { if (!type) - type = "prodml22:BerganSutton-Dead"; + type = "prodml23:BerganSutton-Dead"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead), type ? type : "prodml22:BerganSutton-Dead")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead), type ? type : "prodml23:BerganSutton-Dead")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosityAt100F", -1, &a->prodml22__BerganSutton_Dead::DeadOilViscosityAt100F, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosityAt100F", -1, &a->prodml23__BerganSutton_Dead::DeadOilViscosityAt100F, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosityAt210F", -1, &a->prodml22__BerganSutton_Dead::DeadOilViscosityAt210F, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosityAt210F", -1, &a->prodml23__BerganSutton_Dead::DeadOilViscosityAt210F, "eml23:DynamicViscosityMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__BerganSutton_Dead::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__BerganSutton_Dead::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__BerganSutton_Dead(soap, tag, this, type); + return soap_in_prodml23__BerganSutton_Dead(soap, tag, this, type); } -SOAP_FMAC3 prodml22__BerganSutton_Dead * SOAP_FMAC4 soap_in_prodml22__BerganSutton_Dead(struct soap *soap, const char *tag, prodml22__BerganSutton_Dead *a, const char *type) +SOAP_FMAC3 prodml23__BerganSutton_Dead * SOAP_FMAC4 soap_in_prodml23__BerganSutton_Dead(struct soap *soap, const char *tag, prodml23__BerganSutton_Dead *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__BerganSutton_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead, sizeof(prodml22__BerganSutton_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__BerganSutton_Dead*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead, sizeof(prodml23__BerganSutton_Dead), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__BerganSutton_Dead *)a->soap_in(soap, tag, type); + return (prodml23__BerganSutton_Dead *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -245384,43 +245534,43 @@ SOAP_FMAC3 prodml22__BerganSutton_Dead * SOAP_FMAC4 soap_in_prodml22__BerganSutt for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_DeadOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity2--; continue; } } if (soap_flag_ReservoirTemperature2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature2--; continue; } } if (soap_flag_DeadOilViscosityAt100F1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosityAt100F", &a->prodml22__BerganSutton_Dead::DeadOilViscosityAt100F, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosityAt100F", &a->prodml23__BerganSutton_Dead::DeadOilViscosityAt100F, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosityAt100F1--; continue; } } if (soap_flag_DeadOilViscosityAt210F1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosityAt210F", &a->prodml22__BerganSutton_Dead::DeadOilViscosityAt210F, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosityAt210F", &a->prodml23__BerganSutton_Dead::DeadOilViscosityAt210F, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosityAt210F1--; continue; } @@ -245436,35 +245586,35 @@ SOAP_FMAC3 prodml22__BerganSutton_Dead * SOAP_FMAC4 soap_in_prodml22__BerganSutt return NULL; } else - { a = (prodml22__BerganSutton_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead, sizeof(prodml22__BerganSutton_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__BerganSutton_Dead *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead, sizeof(prodml23__BerganSutton_Dead), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml22__BerganSutton_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml23__BerganSutton_Dead(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__BerganSutton_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__BerganSutton_Dead(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__BerganSutton_Dead *p; - size_t k = sizeof(prodml22__BerganSutton_Dead); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead, n, gsoap_eml2_3_fdelete); + prodml23__BerganSutton_Dead *p; + size_t k = sizeof(prodml23__BerganSutton_Dead); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__BerganSutton_Dead); + { p = SOAP_NEW(soap, prodml23__BerganSutton_Dead); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__BerganSutton_Dead, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__BerganSutton_Dead, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__BerganSutton_Dead location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__BerganSutton_Dead location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -245474,86 +245624,86 @@ SOAP_FMAC1 prodml22__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml22__B return p; } -int prodml22__BerganSutton_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__BerganSutton_Dead::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__BerganSutton_Dead(soap, tag ? tag : "prodml22:BerganSutton-Dead", -2, this, type)) + if (soap_out_prodml23__BerganSutton_Dead(soap, tag ? tag : "prodml23:BerganSutton-Dead", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__BerganSutton_Dead::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__BerganSutton_Dead::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__BerganSutton_Dead(soap, this, tag, type); + return soap_get_prodml23__BerganSutton_Dead(soap, this, tag, type); } -SOAP_FMAC3 prodml22__BerganSutton_Dead * SOAP_FMAC4 soap_get_prodml22__BerganSutton_Dead(struct soap *soap, prodml22__BerganSutton_Dead *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BerganSutton_Dead * SOAP_FMAC4 soap_get_prodml23__BerganSutton_Dead(struct soap *soap, prodml23__BerganSutton_Dead *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BerganSutton_Dead(soap, tag, p, type))) + if ((p = soap_in_prodml23__BerganSutton_Dead(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__BerganAndSutton_Undersaturated::soap_default(struct soap *soap) +void prodml23__BerganAndSutton_Undersaturated::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_default(soap); } -void prodml22__BerganAndSutton_Undersaturated::soap_serialize(struct soap *soap) const +void prodml23__BerganAndSutton_Undersaturated::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(soap); #endif } -int prodml22__BerganAndSutton_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__BerganAndSutton_Undersaturated::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__BerganAndSutton_Undersaturated(soap, tag, id, this, type); + return soap_out_prodml23__BerganAndSutton_Undersaturated(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, const char *tag, int id, const prodml22__BerganAndSutton_Undersaturated *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, const char *tag, int id, const prodml23__BerganAndSutton_Undersaturated *a, const char *type) { if (!type) - type = "prodml22:BerganAndSutton-Undersaturated"; + type = "prodml23:BerganAndSutton-Undersaturated"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated), type ? type : "prodml22:BerganAndSutton-Undersaturated")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated), type ? type : "prodml23:BerganAndSutton-Undersaturated")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__BerganAndSutton_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__BerganAndSutton_Undersaturated::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__BerganAndSutton_Undersaturated(soap, tag, this, type); + return soap_in_prodml23__BerganAndSutton_Undersaturated(soap, tag, this, type); } -SOAP_FMAC3 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_in_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, const char *tag, prodml22__BerganAndSutton_Undersaturated *a, const char *type) +SOAP_FMAC3 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_in_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, const char *tag, prodml23__BerganAndSutton_Undersaturated *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__BerganAndSutton_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated, sizeof(prodml22__BerganAndSutton_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__BerganAndSutton_Undersaturated*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated, sizeof(prodml23__BerganAndSutton_Undersaturated), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__BerganAndSutton_Undersaturated *)a->soap_in(soap, tag, type); + return (prodml23__BerganAndSutton_Undersaturated *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -245569,43 +245719,43 @@ SOAP_FMAC3 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_in_prodml2 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension5--; continue; } } if (soap_flag_PvtModelParameterSet5 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet5--; continue; } } if (soap_flag_MolecularWeight3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight3--; continue; } } if (soap_flag_UndersaturatedOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_UndersaturatedOilViscosity2--; continue; } } if (soap_flag_BubblePointOilViscosity2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity2--; continue; } } if (soap_flag_BubblePointPressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure2--; continue; } } if (soap_flag_Pressure2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure2--; continue; } @@ -245621,35 +245771,35 @@ SOAP_FMAC3 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_in_prodml2 return NULL; } else - { a = (prodml22__BerganAndSutton_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated, sizeof(prodml22__BerganAndSutton_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__BerganAndSutton_Undersaturated *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated, sizeof(prodml23__BerganAndSutton_Undersaturated), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__BerganAndSutton_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__BerganAndSutton_Undersaturated(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__BerganAndSutton_Undersaturated *p; - size_t k = sizeof(prodml22__BerganAndSutton_Undersaturated); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated, n, gsoap_eml2_3_fdelete); + prodml23__BerganAndSutton_Undersaturated *p; + size_t k = sizeof(prodml23__BerganAndSutton_Undersaturated); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__BerganAndSutton_Undersaturated); + { p = SOAP_NEW(soap, prodml23__BerganAndSutton_Undersaturated); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__BerganAndSutton_Undersaturated, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__BerganAndSutton_Undersaturated, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__BerganAndSutton_Undersaturated location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__BerganAndSutton_Undersaturated location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -245659,78 +245809,78 @@ SOAP_FMAC1 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiat return p; } -int prodml22__BerganAndSutton_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__BerganAndSutton_Undersaturated::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__BerganAndSutton_Undersaturated(soap, tag ? tag : "prodml22:BerganAndSutton-Undersaturated", -2, this, type)) + if (soap_out_prodml23__BerganAndSutton_Undersaturated(soap, tag ? tag : "prodml23:BerganAndSutton-Undersaturated", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__BerganAndSutton_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__BerganAndSutton_Undersaturated::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__BerganAndSutton_Undersaturated(soap, this, tag, type); + return soap_get_prodml23__BerganAndSutton_Undersaturated(soap, this, tag, type); } -SOAP_FMAC3 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_get_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, prodml22__BerganAndSutton_Undersaturated *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_get_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, prodml23__BerganAndSutton_Undersaturated *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__BerganAndSutton_Undersaturated(soap, tag, p, type))) + if ((p = soap_in_prodml23__BerganAndSutton_Undersaturated(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractPvtModel::soap_default(struct soap *soap) +void prodml23__AbstractPvtModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPvtModel::CustomPvtModelExtension = NULL; - this->prodml22__AbstractPvtModel::PvtModelParameterSet = NULL; + this->prodml23__AbstractPvtModel::CustomPvtModelExtension = NULL; + this->prodml23__AbstractPvtModel::PvtModelParameterSet = NULL; } -void prodml22__AbstractPvtModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractPvtModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__CustomPvtModelExtension(soap, &this->prodml22__AbstractPvtModel::CustomPvtModelExtension); - soap_serialize_PointerToprodml22__PvtModelParameterSet(soap, &this->prodml22__AbstractPvtModel::PvtModelParameterSet); + soap_serialize_PointerToprodml23__CustomPvtModelExtension(soap, &this->prodml23__AbstractPvtModel::CustomPvtModelExtension); + soap_serialize_PointerToprodml23__PvtModelParameterSet(soap, &this->prodml23__AbstractPvtModel::PvtModelParameterSet); #endif } -int prodml22__AbstractPvtModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractPvtModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractPvtModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractPvtModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractPvtModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractPvtModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractPvtModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractPvtModel *a, const char *type) { if (!type) - type = "prodml22:AbstractPvtModel"; + type = "prodml23:AbstractPvtModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel), type)) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel), type)) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractPvtModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractPvtModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractPvtModel(soap, tag, this, type); + return soap_in_prodml23__AbstractPvtModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractPvtModel * SOAP_FMAC4 soap_in_prodml22__AbstractPvtModel(struct soap *soap, const char *tag, prodml22__AbstractPvtModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractPvtModel * SOAP_FMAC4 soap_in_prodml23__AbstractPvtModel(struct soap *soap, const char *tag, prodml23__AbstractPvtModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractPvtModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel, sizeof(prodml22__AbstractPvtModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractPvtModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel, sizeof(prodml23__AbstractPvtModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractPvtModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractPvtModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -245741,13 +245891,13 @@ SOAP_FMAC3 prodml22__AbstractPvtModel * SOAP_FMAC4 soap_in_prodml22__AbstractPvt for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension1--; continue; } } if (soap_flag_PvtModelParameterSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet1--; continue; } @@ -245763,109 +245913,109 @@ SOAP_FMAC3 prodml22__AbstractPvtModel * SOAP_FMAC4 soap_in_prodml22__AbstractPvt return NULL; } else - { a = (prodml22__AbstractPvtModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel, sizeof(prodml22__AbstractPvtModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractPvtModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel, sizeof(prodml23__AbstractPvtModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPvtModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPvtModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractPvtModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractPvtModel(%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, "prodml22:AbstractCompositionalModel")) - return soap_instantiate_prodml22__AbstractCompositionalModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationModel")) - return soap_instantiate_prodml22__AbstractCorrelationModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCompositionalEoSModel")) - return soap_instantiate_prodml22__AbstractCompositionalEoSModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCompositionalViscosityModel")) - return soap_instantiate_prodml22__AbstractCompositionalViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CompositionalThermalModel")) - return soap_instantiate_prodml22__CompositionalThermalModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CorrelationThermalModel")) - return soap_instantiate_prodml22__CorrelationThermalModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityDeadModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationGasViscosityModel")) - return soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityBubblePointModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityUndersaturatedModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CSPedersen84")) - return soap_instantiate_prodml22__CSPedersen84(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CSPedersen87")) - return soap_instantiate_prodml22__CSPedersen87(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FrictionTheory")) - return soap_instantiate_prodml22__FrictionTheory(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lohrenz-Bray-ClarkCorrelation")) - return soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PengRobinson76_EOS")) - return soap_instantiate_prodml22__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PengRobinson78_EOS")) - return soap_instantiate_prodml22__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Srk_EOS")) - return soap_instantiate_prodml22__Srk_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BerganAndSutton-Undersaturated")) - return soap_instantiate_prodml22__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BerganSutton-Dead")) - return soap_instantiate_prodml22__BerganSutton_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BergmanSutton-BubblePoint")) - return soap_instantiate_prodml22__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CarrDempsey")) - return soap_instantiate_prodml22__CarrDempsey(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-BubblePoint")) - return soap_instantiate_prodml22__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Dead")) - return soap_instantiate_prodml22__DeGhetto_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Undersaturated")) - return soap_instantiate_prodml22__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-BubblePoint")) - return soap_instantiate_prodml22__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Dead")) - return soap_instantiate_prodml22__DindorukChristman_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Undersaturated")) - return soap_instantiate_prodml22__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LeeGonzalez")) - return soap_instantiate_prodml22__LeeGonzalez(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LondonoArcherBlasinggame")) - return soap_instantiate_prodml22__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lucas")) - return soap_instantiate_prodml22__Lucas(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-BubblePoint")) - return soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Dead")) - return soap_instantiate_prodml22__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Undersaturated")) - return soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-BubblePoint")) - return soap_instantiate_prodml22__Standing_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Dead")) - return soap_instantiate_prodml22__Standing_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Undersaturated")) - return soap_instantiate_prodml22__Standing_Undersaturated(soap, n, NULL, NULL, size); - prodml22__AbstractPvtModel *p; - size_t k = sizeof(prodml22__AbstractPvtModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCompositionalModel")) + return soap_instantiate_prodml23__AbstractCompositionalModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationModel")) + return soap_instantiate_prodml23__AbstractCorrelationModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCompositionalEoSModel")) + return soap_instantiate_prodml23__AbstractCompositionalEoSModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCompositionalViscosityModel")) + return soap_instantiate_prodml23__AbstractCompositionalViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CompositionalThermalModel")) + return soap_instantiate_prodml23__CompositionalThermalModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CorrelationThermalModel")) + return soap_instantiate_prodml23__CorrelationThermalModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityDeadModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationGasViscosityModel")) + return soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityBubblePointModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityUndersaturatedModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CSPedersen84")) + return soap_instantiate_prodml23__CSPedersen84(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CSPedersen87")) + return soap_instantiate_prodml23__CSPedersen87(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FrictionTheory")) + return soap_instantiate_prodml23__FrictionTheory(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lohrenz-Bray-ClarkCorrelation")) + return soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PengRobinson76_EOS")) + return soap_instantiate_prodml23__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PengRobinson78_EOS")) + return soap_instantiate_prodml23__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Srk_EOS")) + return soap_instantiate_prodml23__Srk_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganAndSutton-Undersaturated")) + return soap_instantiate_prodml23__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganSutton-Dead")) + return soap_instantiate_prodml23__BerganSutton_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BergmanSutton-BubblePoint")) + return soap_instantiate_prodml23__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CarrDempsey")) + return soap_instantiate_prodml23__CarrDempsey(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-BubblePoint")) + return soap_instantiate_prodml23__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Dead")) + return soap_instantiate_prodml23__DeGhetto_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Undersaturated")) + return soap_instantiate_prodml23__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-BubblePoint")) + return soap_instantiate_prodml23__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Dead")) + return soap_instantiate_prodml23__DindorukChristman_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Undersaturated")) + return soap_instantiate_prodml23__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LeeGonzalez")) + return soap_instantiate_prodml23__LeeGonzalez(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LondonoArcherBlasinggame")) + return soap_instantiate_prodml23__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lucas")) + return soap_instantiate_prodml23__Lucas(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-BubblePoint")) + return soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Dead")) + return soap_instantiate_prodml23__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Undersaturated")) + return soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-BubblePoint")) + return soap_instantiate_prodml23__Standing_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Dead")) + return soap_instantiate_prodml23__Standing_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Undersaturated")) + return soap_instantiate_prodml23__Standing_Undersaturated(soap, n, NULL, NULL, size); + prodml23__AbstractPvtModel *p; + size_t k = sizeof(prodml23__AbstractPvtModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractPvtModel); + { p = SOAP_NEW(soap, prodml23__AbstractPvtModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractPvtModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractPvtModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractPvtModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractPvtModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -245875,94 +246025,94 @@ SOAP_FMAC1 prodml22__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml22__Ab return p; } -int prodml22__AbstractPvtModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractPvtModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractPvtModel(soap, tag ? tag : "prodml22:AbstractPvtModel", -2, this, type)) + if (soap_out_prodml23__AbstractPvtModel(soap, tag ? tag : "prodml23:AbstractPvtModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractPvtModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractPvtModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractPvtModel(soap, this, tag, type); + return soap_get_prodml23__AbstractPvtModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractPvtModel * SOAP_FMAC4 soap_get_prodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractPvtModel * SOAP_FMAC4 soap_get_prodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractPvtModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractPvtModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_default(struct soap *soap) +void prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityModel::soap_default(soap); - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = NULL; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = NULL; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = NULL; - this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = NULL; + this->prodml23__AbstractCorrelationViscosityModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = NULL; + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = NULL; + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = NULL; + this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = NULL; } -void prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure); - soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure); - this->prodml22__AbstractCorrelationViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure); + soap_serialize_PointerToeml23__PressureMeasure(soap, &this->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure); + this->prodml23__AbstractCorrelationViscosityModel::soap_serialize(soap); #endif } -int prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCorrelationViscosityUndersaturatedModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCorrelationViscosityUndersaturatedModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCorrelationViscosityUndersaturatedModel"; + type = "prodml23:AbstractCorrelationViscosityUndersaturatedModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel), type ? type : "prodml22:AbstractCorrelationViscosityUndersaturatedModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel), type ? type : "prodml23:AbstractCorrelationViscosityUndersaturatedModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) return soap->error; - if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", -1, &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + if (soap_out_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", -1, &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *tag, prodml22__AbstractCorrelationViscosityUndersaturatedModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *tag, prodml23__AbstractCorrelationViscosityUndersaturatedModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCorrelationViscosityUndersaturatedModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel, sizeof(prodml22__AbstractCorrelationViscosityUndersaturatedModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCorrelationViscosityUndersaturatedModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel, sizeof(prodml23__AbstractCorrelationViscosityUndersaturatedModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCorrelationViscosityUndersaturatedModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCorrelationViscosityUndersaturatedModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -245978,43 +246128,43 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MolecularWeight2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight2--; continue; } } if (soap_flag_UndersaturatedOilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:UndersaturatedOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:UndersaturatedOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_UndersaturatedOilViscosity1--; continue; } } if (soap_flag_BubblePointOilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity1--; continue; } } if (soap_flag_BubblePointPressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:BubblePointPressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:BubblePointPressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure, "eml23:PressureMeasure")) { soap_flag_BubblePointPressure1--; continue; } } if (soap_flag_Pressure1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml22:Pressure", &a->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) + { if (soap_in_PointerToeml23__PressureMeasure(soap, "prodml23:Pressure", &a->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure, "eml23:PressureMeasure")) { soap_flag_Pressure1--; continue; } @@ -246030,45 +246180,45 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC return NULL; } else - { a = (prodml22__AbstractCorrelationViscosityUndersaturatedModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel, sizeof(prodml22__AbstractCorrelationViscosityUndersaturatedModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCorrelationViscosityUndersaturatedModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel, sizeof(prodml23__AbstractCorrelationViscosityUndersaturatedModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(%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, "prodml22:BerganAndSutton-Undersaturated")) - return soap_instantiate_prodml22__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Undersaturated")) - return soap_instantiate_prodml22__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Undersaturated")) - return soap_instantiate_prodml22__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Undersaturated")) - return soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Undersaturated")) - return soap_instantiate_prodml22__Standing_Undersaturated(soap, n, NULL, NULL, size); - prodml22__AbstractCorrelationViscosityUndersaturatedModel *p; - size_t k = sizeof(prodml22__AbstractCorrelationViscosityUndersaturatedModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganAndSutton-Undersaturated")) + return soap_instantiate_prodml23__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Undersaturated")) + return soap_instantiate_prodml23__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Undersaturated")) + return soap_instantiate_prodml23__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Undersaturated")) + return soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Undersaturated")) + return soap_instantiate_prodml23__Standing_Undersaturated(soap, n, NULL, NULL, size); + prodml23__AbstractCorrelationViscosityUndersaturatedModel *p; + size_t k = sizeof(prodml23__AbstractCorrelationViscosityUndersaturatedModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCorrelationViscosityUndersaturatedModel); + { p = SOAP_NEW(soap, prodml23__AbstractCorrelationViscosityUndersaturatedModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCorrelationViscosityUndersaturatedModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCorrelationViscosityUndersaturatedModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCorrelationViscosityUndersaturatedModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCorrelationViscosityUndersaturatedModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -246078,80 +246228,80 @@ SOAP_FMAC1 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC return p; } -int prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, tag ? tag : "prodml22:AbstractCorrelationViscosityUndersaturatedModel", -2, this, type)) + if (soap_out_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, tag ? tag : "prodml23:AbstractCorrelationViscosityUndersaturatedModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCorrelationViscosityUndersaturatedModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityUndersaturatedModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml22__AbstractCorrelationViscosityUndersaturatedModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml23__AbstractCorrelationViscosityUndersaturatedModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCorrelationViscosityModel::soap_default(struct soap *soap) +void prodml23__AbstractCorrelationViscosityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationModel::soap_default(soap); - this->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = NULL; + this->prodml23__AbstractCorrelationModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = NULL; } -void prodml22__AbstractCorrelationViscosityModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCorrelationViscosityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml22__AbstractCorrelationViscosityModel::MolecularWeight); - this->prodml22__AbstractCorrelationModel::soap_serialize(soap); + soap_serialize_PointerToeml23__MolecularWeightMeasure(soap, &this->prodml23__AbstractCorrelationViscosityModel::MolecularWeight); + this->prodml23__AbstractCorrelationModel::soap_serialize(soap); #endif } -int prodml22__AbstractCorrelationViscosityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCorrelationViscosityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCorrelationViscosityModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCorrelationViscosityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCorrelationViscosityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCorrelationViscosityModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCorrelationViscosityModel"; + type = "prodml23:AbstractCorrelationViscosityModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel), type ? type : "prodml22:AbstractCorrelationViscosityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel), type ? type : "prodml23:AbstractCorrelationViscosityModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCorrelationViscosityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCorrelationViscosityModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCorrelationViscosityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, const char *tag, prodml22__AbstractCorrelationViscosityModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, const char *tag, prodml23__AbstractCorrelationViscosityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCorrelationViscosityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel, sizeof(prodml22__AbstractCorrelationViscosityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCorrelationViscosityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel, sizeof(prodml23__AbstractCorrelationViscosityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCorrelationViscosityModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCorrelationViscosityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -246163,19 +246313,19 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_in_prod for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension3--; continue; } } if (soap_flag_PvtModelParameterSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet3--; continue; } } if (soap_flag_MolecularWeight1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight1--; continue; } @@ -246191,81 +246341,81 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_in_prod return NULL; } else - { a = (prodml22__AbstractCorrelationViscosityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel, sizeof(prodml22__AbstractCorrelationViscosityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCorrelationViscosityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel, sizeof(prodml23__AbstractCorrelationViscosityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCorrelationViscosityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCorrelationViscosityModel(%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, "prodml22:AbstractCorrelationViscosityDeadModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationGasViscosityModel")) - return soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityBubblePointModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityUndersaturatedModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BerganAndSutton-Undersaturated")) - return soap_instantiate_prodml22__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BerganSutton-Dead")) - return soap_instantiate_prodml22__BerganSutton_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BergmanSutton-BubblePoint")) - return soap_instantiate_prodml22__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CarrDempsey")) - return soap_instantiate_prodml22__CarrDempsey(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-BubblePoint")) - return soap_instantiate_prodml22__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Dead")) - return soap_instantiate_prodml22__DeGhetto_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Undersaturated")) - return soap_instantiate_prodml22__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-BubblePoint")) - return soap_instantiate_prodml22__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Dead")) - return soap_instantiate_prodml22__DindorukChristman_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Undersaturated")) - return soap_instantiate_prodml22__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LeeGonzalez")) - return soap_instantiate_prodml22__LeeGonzalez(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LondonoArcherBlasinggame")) - return soap_instantiate_prodml22__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lucas")) - return soap_instantiate_prodml22__Lucas(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-BubblePoint")) - return soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Dead")) - return soap_instantiate_prodml22__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Undersaturated")) - return soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-BubblePoint")) - return soap_instantiate_prodml22__Standing_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Dead")) - return soap_instantiate_prodml22__Standing_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Undersaturated")) - return soap_instantiate_prodml22__Standing_Undersaturated(soap, n, NULL, NULL, size); - prodml22__AbstractCorrelationViscosityModel *p; - size_t k = sizeof(prodml22__AbstractCorrelationViscosityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityDeadModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationGasViscosityModel")) + return soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityBubblePointModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityUndersaturatedModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganAndSutton-Undersaturated")) + return soap_instantiate_prodml23__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganSutton-Dead")) + return soap_instantiate_prodml23__BerganSutton_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BergmanSutton-BubblePoint")) + return soap_instantiate_prodml23__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CarrDempsey")) + return soap_instantiate_prodml23__CarrDempsey(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-BubblePoint")) + return soap_instantiate_prodml23__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Dead")) + return soap_instantiate_prodml23__DeGhetto_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Undersaturated")) + return soap_instantiate_prodml23__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-BubblePoint")) + return soap_instantiate_prodml23__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Dead")) + return soap_instantiate_prodml23__DindorukChristman_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Undersaturated")) + return soap_instantiate_prodml23__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LeeGonzalez")) + return soap_instantiate_prodml23__LeeGonzalez(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LondonoArcherBlasinggame")) + return soap_instantiate_prodml23__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lucas")) + return soap_instantiate_prodml23__Lucas(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-BubblePoint")) + return soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Dead")) + return soap_instantiate_prodml23__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Undersaturated")) + return soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-BubblePoint")) + return soap_instantiate_prodml23__Standing_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Dead")) + return soap_instantiate_prodml23__Standing_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Undersaturated")) + return soap_instantiate_prodml23__Standing_Undersaturated(soap, n, NULL, NULL, size); + prodml23__AbstractCorrelationViscosityModel *p; + size_t k = sizeof(prodml23__AbstractCorrelationViscosityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCorrelationViscosityModel); + { p = SOAP_NEW(soap, prodml23__AbstractCorrelationViscosityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCorrelationViscosityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCorrelationViscosityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCorrelationViscosityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCorrelationViscosityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -246275,90 +246425,90 @@ SOAP_FMAC1 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instant return p; } -int prodml22__AbstractCorrelationViscosityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCorrelationViscosityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCorrelationViscosityModel(soap, tag ? tag : "prodml22:AbstractCorrelationViscosityModel", -2, this, type)) + if (soap_out_prodml23__AbstractCorrelationViscosityModel(soap, tag ? tag : "prodml23:AbstractCorrelationViscosityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCorrelationViscosityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCorrelationViscosityModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCorrelationViscosityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, prodml22__AbstractCorrelationViscosityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, prodml23__AbstractCorrelationViscosityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCorrelationViscosityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCorrelationViscosityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCorrelationViscosityBubblePointModel::soap_default(struct soap *soap) +void prodml23__AbstractCorrelationViscosityBubblePointModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityModel::soap_default(soap); - this->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = NULL; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = NULL; - this->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = NULL; + this->prodml23__AbstractCorrelationViscosityModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = NULL; + this->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = NULL; + this->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = NULL; } -void prodml22__AbstractCorrelationViscosityBubblePointModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCorrelationViscosityBubblePointModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity); - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity); - soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio); - this->prodml22__AbstractCorrelationViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity); + soap_serialize_PointerToeml23__VolumePerVolumeMeasure(soap, &this->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio); + this->prodml23__AbstractCorrelationViscosityModel::soap_serialize(soap); #endif } -int prodml22__AbstractCorrelationViscosityBubblePointModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCorrelationViscosityBubblePointModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCorrelationViscosityBubblePointModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCorrelationViscosityBubblePointModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCorrelationViscosityBubblePointModel"; + type = "prodml23:AbstractCorrelationViscosityBubblePointModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel), type ? type : "prodml22:AbstractCorrelationViscosityBubblePointModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel), type ? type : "prodml23:AbstractCorrelationViscosityBubblePointModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", -1, &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + if (soap_out_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", -1, &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCorrelationViscosityBubblePointModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityBubblePointModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *tag, prodml22__AbstractCorrelationViscosityBubblePointModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *tag, prodml23__AbstractCorrelationViscosityBubblePointModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCorrelationViscosityBubblePointModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel, sizeof(prodml22__AbstractCorrelationViscosityBubblePointModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCorrelationViscosityBubblePointModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel, sizeof(prodml23__AbstractCorrelationViscosityBubblePointModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCorrelationViscosityBubblePointModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCorrelationViscosityBubblePointModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -246373,37 +246523,37 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 s for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MolecularWeight2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight2--; continue; } } if (soap_flag_DeadOilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity1--; continue; } } if (soap_flag_BubblePointOilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:BubblePointOilViscosity", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:BubblePointOilViscosity", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_BubblePointOilViscosity1--; continue; } } if (soap_flag_SolutionGasOilRatio1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml22:SolutionGasOilRatio", &a->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) + { if (soap_in_PointerToeml23__VolumePerVolumeMeasure(soap, "prodml23:SolutionGasOilRatio", &a->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio, "eml23:VolumePerVolumeMeasure")) { soap_flag_SolutionGasOilRatio1--; continue; } @@ -246419,45 +246569,45 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 s return NULL; } else - { a = (prodml22__AbstractCorrelationViscosityBubblePointModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel, sizeof(prodml22__AbstractCorrelationViscosityBubblePointModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCorrelationViscosityBubblePointModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel, sizeof(prodml23__AbstractCorrelationViscosityBubblePointModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(%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, "prodml22:BergmanSutton-BubblePoint")) - return soap_instantiate_prodml22__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-BubblePoint")) - return soap_instantiate_prodml22__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-BubblePoint")) - return soap_instantiate_prodml22__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-BubblePoint")) - return soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-BubblePoint")) - return soap_instantiate_prodml22__Standing_BubblePoint(soap, n, NULL, NULL, size); - prodml22__AbstractCorrelationViscosityBubblePointModel *p; - size_t k = sizeof(prodml22__AbstractCorrelationViscosityBubblePointModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BergmanSutton-BubblePoint")) + return soap_instantiate_prodml23__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-BubblePoint")) + return soap_instantiate_prodml23__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-BubblePoint")) + return soap_instantiate_prodml23__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-BubblePoint")) + return soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-BubblePoint")) + return soap_instantiate_prodml23__Standing_BubblePoint(soap, n, NULL, NULL, size); + prodml23__AbstractCorrelationViscosityBubblePointModel *p; + size_t k = sizeof(prodml23__AbstractCorrelationViscosityBubblePointModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCorrelationViscosityBubblePointModel); + { p = SOAP_NEW(soap, prodml23__AbstractCorrelationViscosityBubblePointModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCorrelationViscosityBubblePointModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCorrelationViscosityBubblePointModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCorrelationViscosityBubblePointModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCorrelationViscosityBubblePointModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -246467,86 +246617,86 @@ SOAP_FMAC1 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 s return p; } -int prodml22__AbstractCorrelationViscosityBubblePointModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCorrelationViscosityBubblePointModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, tag ? tag : "prodml22:AbstractCorrelationViscosityBubblePointModel", -2, this, type)) + if (soap_out_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, tag ? tag : "prodml23:AbstractCorrelationViscosityBubblePointModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCorrelationViscosityBubblePointModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityBubblePointModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml22__AbstractCorrelationViscosityBubblePointModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml23__AbstractCorrelationViscosityBubblePointModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCorrelationGasViscosityModel::soap_default(struct soap *soap) +void prodml23__AbstractCorrelationGasViscosityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityModel::soap_default(soap); - this->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity = NULL; - this->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature = NULL; + this->prodml23__AbstractCorrelationViscosityModel::soap_default(soap); + this->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity = NULL; + this->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature = NULL; } -void prodml22__AbstractCorrelationGasViscosityModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCorrelationGasViscosityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature); - this->prodml22__AbstractCorrelationViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature); + this->prodml23__AbstractCorrelationViscosityModel::soap_serialize(soap); #endif } -int prodml22__AbstractCorrelationGasViscosityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCorrelationGasViscosityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCorrelationGasViscosityModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCorrelationGasViscosityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCorrelationGasViscosityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCorrelationGasViscosityModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCorrelationGasViscosityModel"; + type = "prodml23:AbstractCorrelationGasViscosityModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel), type ? type : "prodml22:AbstractCorrelationGasViscosityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel), type ? type : "prodml23:AbstractCorrelationGasViscosityModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCorrelationGasViscosityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationGasViscosityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCorrelationGasViscosityModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCorrelationGasViscosityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *tag, prodml22__AbstractCorrelationGasViscosityModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *tag, prodml23__AbstractCorrelationGasViscosityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCorrelationGasViscosityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel, sizeof(prodml22__AbstractCorrelationGasViscosityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCorrelationGasViscosityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel, sizeof(prodml23__AbstractCorrelationGasViscosityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCorrelationGasViscosityModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCorrelationGasViscosityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -246560,31 +246710,31 @@ SOAP_FMAC3 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_in_p for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MolecularWeight2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight2--; continue; } } if (soap_flag_GasViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:GasViscosity", &a->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:GasViscosity", &a->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_GasViscosity1--; continue; } } if (soap_flag_ReservoirTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature1--; continue; } @@ -246600,43 +246750,43 @@ SOAP_FMAC3 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_in_p return NULL; } else - { a = (prodml22__AbstractCorrelationGasViscosityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel, sizeof(prodml22__AbstractCorrelationGasViscosityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCorrelationGasViscosityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel, sizeof(prodml23__AbstractCorrelationGasViscosityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(%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, "prodml22:CarrDempsey")) - return soap_instantiate_prodml22__CarrDempsey(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LeeGonzalez")) - return soap_instantiate_prodml22__LeeGonzalez(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LondonoArcherBlasinggame")) - return soap_instantiate_prodml22__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lucas")) - return soap_instantiate_prodml22__Lucas(soap, n, NULL, NULL, size); - prodml22__AbstractCorrelationGasViscosityModel *p; - size_t k = sizeof(prodml22__AbstractCorrelationGasViscosityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CarrDempsey")) + return soap_instantiate_prodml23__CarrDempsey(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LeeGonzalez")) + return soap_instantiate_prodml23__LeeGonzalez(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LondonoArcherBlasinggame")) + return soap_instantiate_prodml23__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lucas")) + return soap_instantiate_prodml23__Lucas(soap, n, NULL, NULL, size); + prodml23__AbstractCorrelationGasViscosityModel *p; + size_t k = sizeof(prodml23__AbstractCorrelationGasViscosityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCorrelationGasViscosityModel); + { p = SOAP_NEW(soap, prodml23__AbstractCorrelationGasViscosityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCorrelationGasViscosityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCorrelationGasViscosityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCorrelationGasViscosityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCorrelationGasViscosityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -246646,88 +246796,88 @@ SOAP_FMAC1 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_inst return p; } -int prodml22__AbstractCorrelationGasViscosityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCorrelationGasViscosityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCorrelationGasViscosityModel(soap, tag ? tag : "prodml22:AbstractCorrelationGasViscosityModel", -2, this, type)) + if (soap_out_prodml23__AbstractCorrelationGasViscosityModel(soap, tag ? tag : "prodml23:AbstractCorrelationGasViscosityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCorrelationGasViscosityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationGasViscosityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCorrelationGasViscosityModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCorrelationGasViscosityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml22__AbstractCorrelationGasViscosityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml23__AbstractCorrelationGasViscosityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCorrelationGasViscosityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCorrelationGasViscosityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCompositionalViscosityModel::soap_default(struct soap *soap) +void prodml23__AbstractCompositionalViscosityModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalModel::soap_default(soap); - soap_default_prodml22__ThermodynamicPhase(soap, &this->prodml22__AbstractCompositionalViscosityModel::phase); + this->prodml23__AbstractCompositionalModel::soap_default(soap); + soap_default_prodml23__ThermodynamicPhase(soap, &this->prodml23__AbstractCompositionalViscosityModel::phase); } -void prodml22__AbstractCompositionalViscosityModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCompositionalViscosityModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalModel::soap_serialize(soap); #endif } -int prodml22__AbstractCompositionalViscosityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCompositionalViscosityModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCompositionalViscosityModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCompositionalViscosityModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCompositionalViscosityModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCompositionalViscosityModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCompositionalViscosityModel"; - soap_set_attr(soap, "phase", soap_prodml22__ThermodynamicPhase2s(soap, ((prodml22__AbstractCompositionalViscosityModel*)a)->phase), 1); + type = "prodml23:AbstractCompositionalViscosityModel"; + soap_set_attr(soap, "phase", soap_prodml23__ThermodynamicPhase2s(soap, ((prodml23__AbstractCompositionalViscosityModel*)a)->phase), 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_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel), type ? type : "prodml22:AbstractCompositionalViscosityModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel), type ? type : "prodml23:AbstractCompositionalViscosityModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCompositionalViscosityModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCompositionalViscosityModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCompositionalViscosityModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCompositionalViscosityModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_in_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, const char *tag, prodml22__AbstractCompositionalViscosityModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_in_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, const char *tag, prodml23__AbstractCompositionalViscosityModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCompositionalViscosityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel, sizeof(prodml22__AbstractCompositionalViscosityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCompositionalViscosityModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel, sizeof(prodml23__AbstractCompositionalViscosityModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCompositionalViscosityModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCompositionalViscosityModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); - if (soap_s2prodml22__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml22__AbstractCompositionalViscosityModel*)a)->phase)) + if (soap_s2prodml23__ThermodynamicPhase(soap, soap_attr_value(soap, "phase", 5, 3), &((prodml23__AbstractCompositionalViscosityModel*)a)->phase)) return NULL; size_t soap_flag_CustomPvtModelExtension3 = 1; size_t soap_flag_PvtModelParameterSet3 = 1; @@ -246739,31 +246889,31 @@ SOAP_FMAC3 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_in_pr for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension3--; continue; } } if (soap_flag_PvtModelParameterSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet3--; continue; } } if (soap_flag_MixingRule2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule2--; continue; } } if (soap_flag_ComponentPropertySet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet2--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet2--; continue; } @@ -246779,43 +246929,43 @@ SOAP_FMAC3 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_in_pr return NULL; } else - { a = (prodml22__AbstractCompositionalViscosityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel, sizeof(prodml22__AbstractCompositionalViscosityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCompositionalViscosityModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel, sizeof(prodml23__AbstractCompositionalViscosityModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCompositionalViscosityModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCompositionalViscosityModel(%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, "prodml22:CSPedersen84")) - return soap_instantiate_prodml22__CSPedersen84(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CSPedersen87")) - return soap_instantiate_prodml22__CSPedersen87(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FrictionTheory")) - return soap_instantiate_prodml22__FrictionTheory(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lohrenz-Bray-ClarkCorrelation")) - return soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, size); - prodml22__AbstractCompositionalViscosityModel *p; - size_t k = sizeof(prodml22__AbstractCompositionalViscosityModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CSPedersen84")) + return soap_instantiate_prodml23__CSPedersen84(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CSPedersen87")) + return soap_instantiate_prodml23__CSPedersen87(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FrictionTheory")) + return soap_instantiate_prodml23__FrictionTheory(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lohrenz-Bray-ClarkCorrelation")) + return soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, size); + prodml23__AbstractCompositionalViscosityModel *p; + size_t k = sizeof(prodml23__AbstractCompositionalViscosityModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCompositionalViscosityModel); + { p = SOAP_NEW(soap, prodml23__AbstractCompositionalViscosityModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCompositionalViscosityModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCompositionalViscosityModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCompositionalViscosityModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCompositionalViscosityModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -246825,82 +246975,82 @@ SOAP_FMAC1 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_insta return p; } -int prodml22__AbstractCompositionalViscosityModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCompositionalViscosityModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCompositionalViscosityModel(soap, tag ? tag : "prodml22:AbstractCompositionalViscosityModel", -2, this, type)) + if (soap_out_prodml23__AbstractCompositionalViscosityModel(soap, tag ? tag : "prodml23:AbstractCompositionalViscosityModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCompositionalViscosityModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCompositionalViscosityModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCompositionalViscosityModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCompositionalViscosityModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_get_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, prodml22__AbstractCompositionalViscosityModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_get_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, prodml23__AbstractCompositionalViscosityModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCompositionalViscosityModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCompositionalViscosityModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCompositionalEoSModel::soap_default(struct soap *soap) +void prodml23__AbstractCompositionalEoSModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCompositionalModel::soap_default(soap); + this->prodml23__AbstractCompositionalModel::soap_default(soap); } -void prodml22__AbstractCompositionalEoSModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCompositionalEoSModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractCompositionalModel::soap_serialize(soap); + this->prodml23__AbstractCompositionalModel::soap_serialize(soap); #endif } -int prodml22__AbstractCompositionalEoSModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCompositionalEoSModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCompositionalEoSModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCompositionalEoSModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCompositionalEoSModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCompositionalEoSModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCompositionalEoSModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCompositionalEoSModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCompositionalEoSModel"; + type = "prodml23:AbstractCompositionalEoSModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel), type ? type : "prodml22:AbstractCompositionalEoSModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel), type ? type : "prodml23:AbstractCompositionalEoSModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCompositionalEoSModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCompositionalEoSModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCompositionalEoSModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCompositionalEoSModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_in_prodml22__AbstractCompositionalEoSModel(struct soap *soap, const char *tag, prodml22__AbstractCompositionalEoSModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_in_prodml23__AbstractCompositionalEoSModel(struct soap *soap, const char *tag, prodml23__AbstractCompositionalEoSModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCompositionalEoSModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel, sizeof(prodml22__AbstractCompositionalEoSModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCompositionalEoSModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel, sizeof(prodml23__AbstractCompositionalEoSModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCompositionalEoSModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCompositionalEoSModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -246914,31 +247064,31 @@ SOAP_FMAC3 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_in_prodml22 for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension3--; continue; } } if (soap_flag_PvtModelParameterSet3 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet3--; continue; } } if (soap_flag_MixingRule2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule2--; continue; } } if (soap_flag_ComponentPropertySet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet2--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet2--; continue; } @@ -246954,41 +247104,41 @@ SOAP_FMAC3 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_in_prodml22 return NULL; } else - { a = (prodml22__AbstractCompositionalEoSModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel, sizeof(prodml22__AbstractCompositionalEoSModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCompositionalEoSModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel, sizeof(prodml23__AbstractCompositionalEoSModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalEoSModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalEoSModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCompositionalEoSModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCompositionalEoSModel(%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, "prodml22:PengRobinson76_EOS")) - return soap_instantiate_prodml22__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PengRobinson78_EOS")) - return soap_instantiate_prodml22__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Srk_EOS")) - return soap_instantiate_prodml22__Srk_USCOREEOS(soap, n, NULL, NULL, size); - prodml22__AbstractCompositionalEoSModel *p; - size_t k = sizeof(prodml22__AbstractCompositionalEoSModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PengRobinson76_EOS")) + return soap_instantiate_prodml23__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PengRobinson78_EOS")) + return soap_instantiate_prodml23__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Srk_EOS")) + return soap_instantiate_prodml23__Srk_USCOREEOS(soap, n, NULL, NULL, size); + prodml23__AbstractCompositionalEoSModel *p; + size_t k = sizeof(prodml23__AbstractCompositionalEoSModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCompositionalEoSModel); + { p = SOAP_NEW(soap, prodml23__AbstractCompositionalEoSModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCompositionalEoSModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCompositionalEoSModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCompositionalEoSModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCompositionalEoSModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -246998,120 +247148,120 @@ SOAP_FMAC1 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__AbstractCompositionalEoSModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCompositionalEoSModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCompositionalEoSModel(soap, tag ? tag : "prodml22:AbstractCompositionalEoSModel", -2, this, type)) + if (soap_out_prodml23__AbstractCompositionalEoSModel(soap, tag ? tag : "prodml23:AbstractCompositionalEoSModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCompositionalEoSModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCompositionalEoSModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCompositionalEoSModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCompositionalEoSModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_get_prodml22__AbstractCompositionalEoSModel(struct soap *soap, prodml22__AbstractCompositionalEoSModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_get_prodml23__AbstractCompositionalEoSModel(struct soap *soap, prodml23__AbstractCompositionalEoSModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCompositionalEoSModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCompositionalEoSModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__FluidCharacterizationTableRow::soap_default(struct soap *soap) +void prodml23__FluidCharacterizationTableRow::soap_default(struct soap *soap) { this->soap = soap; - soap_default_eml23__AbstractString(soap, &this->prodml22__FluidCharacterizationTableRow::__item); - soap_default_eml23__String64(soap, &this->prodml22__FluidCharacterizationTableRow::row); - this->prodml22__FluidCharacterizationTableRow::kind = NULL; + soap_default_eml23__AbstractString(soap, &this->prodml23__FluidCharacterizationTableRow::__item); + soap_default_eml23__String64(soap, &this->prodml23__FluidCharacterizationTableRow::row); + this->prodml23__FluidCharacterizationTableRow::kind = NULL; } -void prodml22__FluidCharacterizationTableRow::soap_serialize(struct soap *soap) const +void prodml23__FluidCharacterizationTableRow::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_eml23__AbstractString(soap, &this->prodml22__FluidCharacterizationTableRow::__item); + soap_serialize_eml23__AbstractString(soap, &this->prodml23__FluidCharacterizationTableRow::__item); #endif } -int prodml22__FluidCharacterizationTableRow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__FluidCharacterizationTableRow::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__FluidCharacterizationTableRow(soap, tag, id, this, type); + return soap_out_prodml23__FluidCharacterizationTableRow(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableRow(struct soap *soap, const char *tag, int id, const prodml22__FluidCharacterizationTableRow *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableRow(struct soap *soap, const char *tag, int id, const prodml23__FluidCharacterizationTableRow *a, const char *type) { if (!type) - type = "prodml22:FluidCharacterizationTableRow"; - soap_set_attr(soap, "row", soap_eml23__String642s(soap, ((prodml22__FluidCharacterizationTableRow*)a)->row), 1); - if (((prodml22__FluidCharacterizationTableRow*)a)->kind) - { soap_set_attr(soap, "kind", soap_prodml22__SaturationKind2s(soap, *((prodml22__FluidCharacterizationTableRow*)a)->kind), 1); + type = "prodml23:FluidCharacterizationTableRow"; + soap_set_attr(soap, "row", soap_eml23__String642s(soap, ((prodml23__FluidCharacterizationTableRow*)a)->row), 1); + if (((prodml23__FluidCharacterizationTableRow*)a)->kind) + { soap_set_attr(soap, "kind", soap_prodml23__SaturationKind2s(soap, *((prodml23__FluidCharacterizationTableRow*)a)->kind), 1); } (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - return soap_out_eml23__AbstractString(soap, tag, id, &a->prodml22__FluidCharacterizationTableRow::__item, "prodml22:FluidCharacterizationTableRow"); + return soap_out_eml23__AbstractString(soap, tag, id, &a->prodml23__FluidCharacterizationTableRow::__item, "prodml23:FluidCharacterizationTableRow"); } -void *prodml22__FluidCharacterizationTableRow::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableRow::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__FluidCharacterizationTableRow(soap, tag, this, type); + return soap_in_prodml23__FluidCharacterizationTableRow(soap, tag, this, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableRow(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableRow *a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableRow(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableRow *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; - if (!(a = (prodml22__FluidCharacterizationTableRow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow, sizeof(prodml22__FluidCharacterizationTableRow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) + if (!(a = (prodml23__FluidCharacterizationTableRow*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow, sizeof(prodml23__FluidCharacterizationTableRow), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase))) { soap->error = SOAP_TAG_MISMATCH; return NULL; } soap_revert(soap); *soap->id = '\0'; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow) - return (prodml22__FluidCharacterizationTableRow *)a->soap_in(soap, tag, type); + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow) + return (prodml23__FluidCharacterizationTableRow *)a->soap_in(soap, tag, type); if (soap->alloced) a->soap_default(soap); - if (soap_s2eml23__String64(soap, soap_attr_value(soap, "row", 1, 3), &((prodml22__FluidCharacterizationTableRow*)a)->row)) + if (soap_s2eml23__String64(soap, soap_attr_value(soap, "row", 1, 3), &((prodml23__FluidCharacterizationTableRow*)a)->row)) return NULL; { const char *t = soap_attr_value(soap, "kind", 5, 0); if (t) { - if (!(((prodml22__FluidCharacterizationTableRow*)a)->kind = (prodml22__SaturationKind *)soap_malloc(soap, sizeof(prodml22__SaturationKind)))) + if (!(((prodml23__FluidCharacterizationTableRow*)a)->kind = (prodml23__SaturationKind *)soap_malloc(soap, sizeof(prodml23__SaturationKind)))) return NULL; - if (soap_s2prodml22__SaturationKind(soap, t, ((prodml22__FluidCharacterizationTableRow*)a)->kind)) + if (soap_s2prodml23__SaturationKind(soap, t, ((prodml23__FluidCharacterizationTableRow*)a)->kind)) return NULL; } else if (soap->error) return NULL; } - if (!soap_in_eml23__AbstractString(soap, tag, &a->prodml22__FluidCharacterizationTableRow::__item, "prodml22:FluidCharacterizationTableRow")) + if (!soap_in_eml23__AbstractString(soap, tag, &a->prodml23__FluidCharacterizationTableRow::__item, "prodml23:FluidCharacterizationTableRow")) return NULL; return a; } -SOAP_FMAC1 prodml22__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableRow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableRow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__FluidCharacterizationTableRow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__FluidCharacterizationTableRow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - prodml22__FluidCharacterizationTableRow *p; - size_t k = sizeof(prodml22__FluidCharacterizationTableRow); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow, n, gsoap_eml2_3_fdelete); + prodml23__FluidCharacterizationTableRow *p; + size_t k = sizeof(prodml23__FluidCharacterizationTableRow); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__FluidCharacterizationTableRow); + { p = SOAP_NEW(soap, prodml23__FluidCharacterizationTableRow); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__FluidCharacterizationTableRow, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__FluidCharacterizationTableRow, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__FluidCharacterizationTableRow location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__FluidCharacterizationTableRow location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -247121,86 +247271,86 @@ SOAP_FMAC1 prodml22__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate return p; } -int prodml22__FluidCharacterizationTableRow::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__FluidCharacterizationTableRow::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__FluidCharacterizationTableRow(soap, tag ? tag : "prodml22:FluidCharacterizationTableRow", -2, this, type)) + if (soap_out_prodml23__FluidCharacterizationTableRow(soap, tag ? tag : "prodml23:FluidCharacterizationTableRow", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__FluidCharacterizationTableRow::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__FluidCharacterizationTableRow::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__FluidCharacterizationTableRow(soap, this, tag, type); + return soap_get_prodml23__FluidCharacterizationTableRow(soap, this, tag, type); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__FluidCharacterizationTableRow(soap, tag, p, type))) + if ((p = soap_in_prodml23__FluidCharacterizationTableRow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCorrelationViscosityDeadModel::soap_default(struct soap *soap) +void prodml23__AbstractCorrelationViscosityDeadModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractCorrelationViscosityModel::soap_default(soap); - this->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = NULL; - this->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = NULL; + this->prodml23__AbstractCorrelationViscosityModel::soap_default(soap); + this->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = NULL; + this->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = NULL; } -void prodml22__AbstractCorrelationViscosityDeadModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCorrelationViscosityDeadModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity); - soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature); - this->prodml22__AbstractCorrelationViscosityModel::soap_serialize(soap); + soap_serialize_PointerToeml23__DynamicViscosityMeasure(soap, &this->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity); + soap_serialize_PointerToeml23__ThermodynamicTemperatureMeasure(soap, &this->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature); + this->prodml23__AbstractCorrelationViscosityModel::soap_serialize(soap); #endif } -int prodml22__AbstractCorrelationViscosityDeadModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCorrelationViscosityDeadModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCorrelationViscosityDeadModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCorrelationViscosityDeadModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCorrelationViscosityDeadModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCorrelationViscosityDeadModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCorrelationViscosityDeadModel"; + type = "prodml23:AbstractCorrelationViscosityDeadModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel), type ? type : "prodml22:AbstractCorrelationViscosityDeadModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel), type ? type : "prodml23:AbstractCorrelationViscosityDeadModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", -1, &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + if (soap_out_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", -1, &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) return soap->error; - if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + if (soap_out_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) return soap->error; - if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", -1, &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + if (soap_out_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", -1, &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCorrelationViscosityDeadModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityDeadModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCorrelationViscosityDeadModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCorrelationViscosityDeadModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *tag, prodml22__AbstractCorrelationViscosityDeadModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *tag, prodml23__AbstractCorrelationViscosityDeadModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCorrelationViscosityDeadModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel, sizeof(prodml22__AbstractCorrelationViscosityDeadModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCorrelationViscosityDeadModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel, sizeof(prodml23__AbstractCorrelationViscosityDeadModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCorrelationViscosityDeadModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCorrelationViscosityDeadModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -247214,31 +247364,31 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_in_ for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension4--; continue; } } if (soap_flag_PvtModelParameterSet4 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet4--; continue; } } if (soap_flag_MolecularWeight2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml22:MolecularWeight", &a->prodml22__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) + { if (soap_in_PointerToeml23__MolecularWeightMeasure(soap, "prodml23:MolecularWeight", &a->prodml23__AbstractCorrelationViscosityModel::MolecularWeight, "eml23:MolecularWeightMeasure")) { soap_flag_MolecularWeight2--; continue; } } if (soap_flag_DeadOilViscosity1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml22:DeadOilViscosity", &a->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) + { if (soap_in_PointerToeml23__DynamicViscosityMeasure(soap, "prodml23:DeadOilViscosity", &a->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity, "eml23:DynamicViscosityMeasure")) { soap_flag_DeadOilViscosity1--; continue; } } if (soap_flag_ReservoirTemperature1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml22:ReservoirTemperature", &a->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) + { if (soap_in_PointerToeml23__ThermodynamicTemperatureMeasure(soap, "prodml23:ReservoirTemperature", &a->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature, "eml23:ThermodynamicTemperatureMeasure")) { soap_flag_ReservoirTemperature1--; continue; } @@ -247254,45 +247404,45 @@ SOAP_FMAC3 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_in_ return NULL; } else - { a = (prodml22__AbstractCorrelationViscosityDeadModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel, sizeof(prodml22__AbstractCorrelationViscosityDeadModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCorrelationViscosityDeadModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel, sizeof(prodml23__AbstractCorrelationViscosityDeadModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(%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, "prodml22:BerganSutton-Dead")) - return soap_instantiate_prodml22__BerganSutton_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Dead")) - return soap_instantiate_prodml22__DeGhetto_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Dead")) - return soap_instantiate_prodml22__DindorukChristman_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Dead")) - return soap_instantiate_prodml22__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Dead")) - return soap_instantiate_prodml22__Standing_Dead(soap, n, NULL, NULL, size); - prodml22__AbstractCorrelationViscosityDeadModel *p; - size_t k = sizeof(prodml22__AbstractCorrelationViscosityDeadModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganSutton-Dead")) + return soap_instantiate_prodml23__BerganSutton_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Dead")) + return soap_instantiate_prodml23__DeGhetto_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Dead")) + return soap_instantiate_prodml23__DindorukChristman_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Dead")) + return soap_instantiate_prodml23__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Dead")) + return soap_instantiate_prodml23__Standing_Dead(soap, n, NULL, NULL, size); + prodml23__AbstractCorrelationViscosityDeadModel *p; + size_t k = sizeof(prodml23__AbstractCorrelationViscosityDeadModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCorrelationViscosityDeadModel); + { p = SOAP_NEW(soap, prodml23__AbstractCorrelationViscosityDeadModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCorrelationViscosityDeadModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCorrelationViscosityDeadModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCorrelationViscosityDeadModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCorrelationViscosityDeadModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -247302,76 +247452,76 @@ SOAP_FMAC1 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_ins return p; } -int prodml22__AbstractCorrelationViscosityDeadModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCorrelationViscosityDeadModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCorrelationViscosityDeadModel(soap, tag ? tag : "prodml22:AbstractCorrelationViscosityDeadModel", -2, this, type)) + if (soap_out_prodml23__AbstractCorrelationViscosityDeadModel(soap, tag ? tag : "prodml23:AbstractCorrelationViscosityDeadModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCorrelationViscosityDeadModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationViscosityDeadModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCorrelationViscosityDeadModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCorrelationViscosityDeadModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml22__AbstractCorrelationViscosityDeadModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml23__AbstractCorrelationViscosityDeadModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCorrelationViscosityDeadModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCorrelationViscosityDeadModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCorrelationModel::soap_default(struct soap *soap) +void prodml23__AbstractCorrelationModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPvtModel::soap_default(soap); + this->prodml23__AbstractPvtModel::soap_default(soap); } -void prodml22__AbstractCorrelationModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCorrelationModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - this->prodml22__AbstractPvtModel::soap_serialize(soap); + this->prodml23__AbstractPvtModel::soap_serialize(soap); #endif } -int prodml22__AbstractCorrelationModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCorrelationModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCorrelationModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCorrelationModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCorrelationModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCorrelationModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCorrelationModel"; + type = "prodml23:AbstractCorrelationModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel), type ? type : "prodml22:AbstractCorrelationModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel), type ? type : "prodml23:AbstractCorrelationModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCorrelationModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCorrelationModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCorrelationModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationModel(struct soap *soap, const char *tag, prodml22__AbstractCorrelationModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationModel(struct soap *soap, const char *tag, prodml23__AbstractCorrelationModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCorrelationModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel, sizeof(prodml22__AbstractCorrelationModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCorrelationModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel, sizeof(prodml23__AbstractCorrelationModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCorrelationModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCorrelationModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -247382,13 +247532,13 @@ SOAP_FMAC3 prodml22__AbstractCorrelationModel * SOAP_FMAC4 soap_in_prodml22__Abs for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension2--; continue; } } if (soap_flag_PvtModelParameterSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet2--; continue; } @@ -247404,85 +247554,85 @@ SOAP_FMAC3 prodml22__AbstractCorrelationModel * SOAP_FMAC4 soap_in_prodml22__Abs return NULL; } else - { a = (prodml22__AbstractCorrelationModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel, sizeof(prodml22__AbstractCorrelationModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCorrelationModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel, sizeof(prodml23__AbstractCorrelationModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCorrelationModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCorrelationModel(%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, "prodml22:AbstractCorrelationViscosityModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CorrelationThermalModel")) - return soap_instantiate_prodml22__CorrelationThermalModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityDeadModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationGasViscosityModel")) - return soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityBubblePointModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCorrelationViscosityUndersaturatedModel")) - return soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BerganAndSutton-Undersaturated")) - return soap_instantiate_prodml22__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BerganSutton-Dead")) - return soap_instantiate_prodml22__BerganSutton_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:BergmanSutton-BubblePoint")) - return soap_instantiate_prodml22__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CarrDempsey")) - return soap_instantiate_prodml22__CarrDempsey(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-BubblePoint")) - return soap_instantiate_prodml22__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Dead")) - return soap_instantiate_prodml22__DeGhetto_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DeGhetto-Undersaturated")) - return soap_instantiate_prodml22__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-BubblePoint")) - return soap_instantiate_prodml22__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Dead")) - return soap_instantiate_prodml22__DindorukChristman_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DindorukChristman-Undersaturated")) - return soap_instantiate_prodml22__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LeeGonzalez")) - return soap_instantiate_prodml22__LeeGonzalez(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:LondonoArcherBlasinggame")) - return soap_instantiate_prodml22__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lucas")) - return soap_instantiate_prodml22__Lucas(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-BubblePoint")) - return soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Dead")) - return soap_instantiate_prodml22__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PetroskyFarshad-Undersaturated")) - return soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-BubblePoint")) - return soap_instantiate_prodml22__Standing_BubblePoint(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Dead")) - return soap_instantiate_prodml22__Standing_Dead(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Standing-Undersaturated")) - return soap_instantiate_prodml22__Standing_Undersaturated(soap, n, NULL, NULL, size); - prodml22__AbstractCorrelationModel *p; - size_t k = sizeof(prodml22__AbstractCorrelationModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CorrelationThermalModel")) + return soap_instantiate_prodml23__CorrelationThermalModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityDeadModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationGasViscosityModel")) + return soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityBubblePointModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCorrelationViscosityUndersaturatedModel")) + return soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganAndSutton-Undersaturated")) + return soap_instantiate_prodml23__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BerganSutton-Dead")) + return soap_instantiate_prodml23__BerganSutton_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:BergmanSutton-BubblePoint")) + return soap_instantiate_prodml23__BergmanSutton_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CarrDempsey")) + return soap_instantiate_prodml23__CarrDempsey(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-BubblePoint")) + return soap_instantiate_prodml23__DeGhetto_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Dead")) + return soap_instantiate_prodml23__DeGhetto_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DeGhetto-Undersaturated")) + return soap_instantiate_prodml23__DeGhetto_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-BubblePoint")) + return soap_instantiate_prodml23__DindorukChristman_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Dead")) + return soap_instantiate_prodml23__DindorukChristman_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DindorukChristman-Undersaturated")) + return soap_instantiate_prodml23__DindorukChristman_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LeeGonzalez")) + return soap_instantiate_prodml23__LeeGonzalez(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:LondonoArcherBlasinggame")) + return soap_instantiate_prodml23__LondonoArcherBlasinggame(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lucas")) + return soap_instantiate_prodml23__Lucas(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-BubblePoint")) + return soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Dead")) + return soap_instantiate_prodml23__PetroskyFarshad_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PetroskyFarshad-Undersaturated")) + return soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-BubblePoint")) + return soap_instantiate_prodml23__Standing_BubblePoint(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Dead")) + return soap_instantiate_prodml23__Standing_Dead(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Standing-Undersaturated")) + return soap_instantiate_prodml23__Standing_Undersaturated(soap, n, NULL, NULL, size); + prodml23__AbstractCorrelationModel *p; + size_t k = sizeof(prodml23__AbstractCorrelationModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCorrelationModel); + { p = SOAP_NEW(soap, prodml23__AbstractCorrelationModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCorrelationModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCorrelationModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCorrelationModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCorrelationModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -247492,88 +247642,88 @@ SOAP_FMAC1 prodml22__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prod return p; } -int prodml22__AbstractCorrelationModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCorrelationModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCorrelationModel(soap, tag ? tag : "prodml22:AbstractCorrelationModel", -2, this, type)) + if (soap_out_prodml23__AbstractCorrelationModel(soap, tag ? tag : "prodml23:AbstractCorrelationModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCorrelationModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCorrelationModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCorrelationModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCorrelationModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCorrelationModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationModel(struct soap *soap, prodml22__AbstractCorrelationModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCorrelationModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationModel(struct soap *soap, prodml23__AbstractCorrelationModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCorrelationModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCorrelationModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -void prodml22__AbstractCompositionalModel::soap_default(struct soap *soap) +void prodml23__AbstractCompositionalModel::soap_default(struct soap *soap) { this->soap = soap; - this->prodml22__AbstractPvtModel::soap_default(soap); - this->prodml22__AbstractCompositionalModel::MixingRule = NULL; - this->prodml22__AbstractCompositionalModel::ComponentPropertySet = NULL; - this->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = NULL; + this->prodml23__AbstractPvtModel::soap_default(soap); + this->prodml23__AbstractCompositionalModel::MixingRule = NULL; + this->prodml23__AbstractCompositionalModel::ComponentPropertySet = NULL; + this->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = NULL; } -void prodml22__AbstractCompositionalModel::soap_serialize(struct soap *soap) const +void prodml23__AbstractCompositionalModel::soap_serialize(struct soap *soap) const { (void)soap; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - soap_serialize_PointerToprodml22__MixingRule(soap, &this->prodml22__AbstractCompositionalModel::MixingRule); - soap_serialize_PointerToprodml22__ComponentPropertySet(soap, &this->prodml22__AbstractCompositionalModel::ComponentPropertySet); - soap_serialize_PointerToprodml22__BinaryInteractionCoefficientSet(soap, &this->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet); - this->prodml22__AbstractPvtModel::soap_serialize(soap); + soap_serialize_PointerToprodml23__MixingRule(soap, &this->prodml23__AbstractCompositionalModel::MixingRule); + soap_serialize_PointerToprodml23__ComponentPropertySet(soap, &this->prodml23__AbstractCompositionalModel::ComponentPropertySet); + soap_serialize_PointerToprodml23__BinaryInteractionCoefficientSet(soap, &this->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet); + this->prodml23__AbstractPvtModel::soap_serialize(soap); #endif } -int prodml22__AbstractCompositionalModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const +int prodml23__AbstractCompositionalModel::soap_out(struct soap *soap, const char *tag, int id, const char *type) const { - return soap_out_prodml22__AbstractCompositionalModel(soap, tag, id, this, type); + return soap_out_prodml23__AbstractCompositionalModel(soap, tag, id, this, type); } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCompositionalModel(struct soap *soap, const char *tag, int id, const prodml22__AbstractCompositionalModel *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCompositionalModel(struct soap *soap, const char *tag, int id, const prodml23__AbstractCompositionalModel *a, const char *type) { if (!type) - type = "prodml22:AbstractCompositionalModel"; + type = "prodml23:AbstractCompositionalModel"; (void)soap; (void)tag; (void)id; (void)a; (void)type; /* appease -Wall -Werror */ - if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel), type ? type : "prodml22:AbstractCompositionalModel")) + if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel), type ? type : "prodml23:AbstractCompositionalModel")) return soap->error; - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", -1, &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", -1, &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) return soap->error; - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", -1, &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", -1, &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) return soap->error; - if (soap_out_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", -1, &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + if (soap_out_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", -1, &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) return soap->error; - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", -1, &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", -1, &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) return soap->error; - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", -1, &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", -1, &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) return soap->error; return soap_element_end_out(soap, tag); } -void *prodml22__AbstractCompositionalModel::soap_in(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCompositionalModel::soap_in(struct soap *soap, const char *tag, const char *type) { - return soap_in_prodml22__AbstractCompositionalModel(soap, tag, this, type); + return soap_in_prodml23__AbstractCompositionalModel(soap, tag, this, type); } -SOAP_FMAC3 prodml22__AbstractCompositionalModel * SOAP_FMAC4 soap_in_prodml22__AbstractCompositionalModel(struct soap *soap, const char *tag, prodml22__AbstractCompositionalModel *a, const char *type) +SOAP_FMAC3 prodml23__AbstractCompositionalModel * SOAP_FMAC4 soap_in_prodml23__AbstractCompositionalModel(struct soap *soap, const char *tag, prodml23__AbstractCompositionalModel *a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 0, NULL)) return NULL; - a = (prodml22__AbstractCompositionalModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel, sizeof(prodml22__AbstractCompositionalModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); + a = (prodml23__AbstractCompositionalModel*)soap_id_enter(soap, soap->id, a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel, sizeof(prodml23__AbstractCompositionalModel), soap->type, soap->arrayType, gsoap_eml2_3_instantiate, gsoap_eml2_3_fbase); if (!a) return NULL; - if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel) + if (soap->alloced && soap->alloced != SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel) { soap_revert(soap); *soap->id = '\0'; - return (prodml22__AbstractCompositionalModel *)a->soap_in(soap, tag, type); + return (prodml23__AbstractCompositionalModel *)a->soap_in(soap, tag, type); } if (soap->alloced) a->soap_default(soap); @@ -247587,31 +247737,31 @@ SOAP_FMAC3 prodml22__AbstractCompositionalModel * SOAP_FMAC4 soap_in_prodml22__A for (;;) { soap->error = SOAP_TAG_MISMATCH; if (soap_flag_CustomPvtModelExtension2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__CustomPvtModelExtension(soap, "prodml22:CustomPvtModelExtension", &a->prodml22__AbstractPvtModel::CustomPvtModelExtension, "prodml22:CustomPvtModelExtension")) + { if (soap_in_PointerToprodml23__CustomPvtModelExtension(soap, "prodml23:CustomPvtModelExtension", &a->prodml23__AbstractPvtModel::CustomPvtModelExtension, "prodml23:CustomPvtModelExtension")) { soap_flag_CustomPvtModelExtension2--; continue; } } if (soap_flag_PvtModelParameterSet2 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__PvtModelParameterSet(soap, "prodml22:PvtModelParameterSet", &a->prodml22__AbstractPvtModel::PvtModelParameterSet, "prodml22:PvtModelParameterSet")) + { if (soap_in_PointerToprodml23__PvtModelParameterSet(soap, "prodml23:PvtModelParameterSet", &a->prodml23__AbstractPvtModel::PvtModelParameterSet, "prodml23:PvtModelParameterSet")) { soap_flag_PvtModelParameterSet2--; continue; } } if (soap_flag_MixingRule1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__MixingRule(soap, "prodml22:MixingRule", &a->prodml22__AbstractCompositionalModel::MixingRule, "prodml22:MixingRule")) + { if (soap_in_PointerToprodml23__MixingRule(soap, "prodml23:MixingRule", &a->prodml23__AbstractCompositionalModel::MixingRule, "prodml23:MixingRule")) { soap_flag_MixingRule1--; continue; } } if (soap_flag_ComponentPropertySet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__ComponentPropertySet(soap, "prodml22:ComponentPropertySet", &a->prodml22__AbstractCompositionalModel::ComponentPropertySet, "prodml22:ComponentPropertySet")) + { if (soap_in_PointerToprodml23__ComponentPropertySet(soap, "prodml23:ComponentPropertySet", &a->prodml23__AbstractCompositionalModel::ComponentPropertySet, "prodml23:ComponentPropertySet")) { soap_flag_ComponentPropertySet1--; continue; } } if (soap_flag_BinaryInteractionCoefficientSet1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, "prodml22:BinaryInteractionCoefficientSet", &a->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml22:BinaryInteractionCoefficientSet")) + { if (soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, "prodml23:BinaryInteractionCoefficientSet", &a->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet, "prodml23:BinaryInteractionCoefficientSet")) { soap_flag_BinaryInteractionCoefficientSet1--; continue; } @@ -247627,55 +247777,55 @@ SOAP_FMAC3 prodml22__AbstractCompositionalModel * SOAP_FMAC4 soap_in_prodml22__A return NULL; } else - { a = (prodml22__AbstractCompositionalModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel, sizeof(prodml22__AbstractCompositionalModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractCompositionalModel *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel, sizeof(prodml23__AbstractCompositionalModel), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC1 prodml22__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 prodml23__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml22__AbstractCompositionalModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_prodml23__AbstractCompositionalModel(%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, "prodml22:AbstractCompositionalEoSModel")) - return soap_instantiate_prodml22__AbstractCompositionalEoSModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:AbstractCompositionalViscosityModel")) - return soap_instantiate_prodml22__AbstractCompositionalViscosityModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CompositionalThermalModel")) - return soap_instantiate_prodml22__CompositionalThermalModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CSPedersen84")) - return soap_instantiate_prodml22__CSPedersen84(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:CSPedersen87")) - return soap_instantiate_prodml22__CSPedersen87(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FrictionTheory")) - return soap_instantiate_prodml22__FrictionTheory(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Lohrenz-Bray-ClarkCorrelation")) - return soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PengRobinson76_EOS")) - return soap_instantiate_prodml22__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PengRobinson78_EOS")) - return soap_instantiate_prodml22__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Srk_EOS")) - return soap_instantiate_prodml22__Srk_USCOREEOS(soap, n, NULL, NULL, size); - prodml22__AbstractCompositionalModel *p; - size_t k = sizeof(prodml22__AbstractCompositionalModel); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel, n, gsoap_eml2_3_fdelete); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCompositionalEoSModel")) + return soap_instantiate_prodml23__AbstractCompositionalEoSModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:AbstractCompositionalViscosityModel")) + return soap_instantiate_prodml23__AbstractCompositionalViscosityModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CompositionalThermalModel")) + return soap_instantiate_prodml23__CompositionalThermalModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CSPedersen84")) + return soap_instantiate_prodml23__CSPedersen84(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:CSPedersen87")) + return soap_instantiate_prodml23__CSPedersen87(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FrictionTheory")) + return soap_instantiate_prodml23__FrictionTheory(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Lohrenz-Bray-ClarkCorrelation")) + return soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PengRobinson76_EOS")) + return soap_instantiate_prodml23__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PengRobinson78_EOS")) + return soap_instantiate_prodml23__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Srk_EOS")) + return soap_instantiate_prodml23__Srk_USCOREEOS(soap, n, NULL, NULL, size); + prodml23__AbstractCompositionalModel *p; + size_t k = sizeof(prodml23__AbstractCompositionalModel); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, prodml22__AbstractCompositionalModel); + { p = SOAP_NEW(soap, prodml23__AbstractCompositionalModel); if (p) p->soap = soap; } else - { p = SOAP_NEW_ARRAY(soap, prodml22__AbstractCompositionalModel, n); + { p = SOAP_NEW_ARRAY(soap, prodml23__AbstractCompositionalModel, n); k *= n; if (p) for (int i = 0; i < n; i++) p[i].soap = soap; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml22__AbstractCompositionalModel location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated prodml23__AbstractCompositionalModel location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -247685,21 +247835,21 @@ SOAP_FMAC1 prodml22__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_pr return p; } -int prodml22__AbstractCompositionalModel::soap_put(struct soap *soap, const char *tag, const char *type) const +int prodml23__AbstractCompositionalModel::soap_put(struct soap *soap, const char *tag, const char *type) const { - if (soap_out_prodml22__AbstractCompositionalModel(soap, tag ? tag : "prodml22:AbstractCompositionalModel", -2, this, type)) + if (soap_out_prodml23__AbstractCompositionalModel(soap, tag ? tag : "prodml23:AbstractCompositionalModel", -2, this, type)) return soap->error; return soap_putindependent(soap); } -void *prodml22__AbstractCompositionalModel::soap_get(struct soap *soap, const char *tag, const char *type) +void *prodml23__AbstractCompositionalModel::soap_get(struct soap *soap, const char *tag, const char *type) { - return soap_get_prodml22__AbstractCompositionalModel(soap, this, tag, type); + return soap_get_prodml23__AbstractCompositionalModel(soap, this, tag, type); } -SOAP_FMAC3 prodml22__AbstractCompositionalModel * SOAP_FMAC4 soap_get_prodml22__AbstractCompositionalModel(struct soap *soap, prodml22__AbstractCompositionalModel *p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractCompositionalModel * SOAP_FMAC4 soap_get_prodml23__AbstractCompositionalModel(struct soap *soap, prodml23__AbstractCompositionalModel *p, const char *tag, const char *type) { - if ((p = soap_in_prodml22__AbstractCompositionalModel(soap, tag, p, type))) + if ((p = soap_in_prodml23__AbstractCompositionalModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -249261,7 +249411,7 @@ SOAP_FMAC3 eml23__Column * SOAP_FMAC4 soap_in_eml23__Column(struct soap *soap, c } } if (soap_flag_ValueCountPerRow1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_eml23__PositiveLong(soap, "eml23:ValueCountPerRow", &a->eml23__Column::ValueCountPerRow, "eml23:PositiveLong")) + { if (soap_in_eml23__PositiveLong(soap, "eml23:ValueCountPerRow", &a->eml23__Column::ValueCountPerRow, "eml23:PositiveLong") || soap->error == SOAP_EMPTY) { soap_flag_ValueCountPerRow1--; continue; } @@ -259580,8 +259730,6 @@ SOAP_FMAC1 eml23__VolumePerVolumeMeasure * SOAP_FMAC2 soap_instantiate_eml23__Vo { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_eml23__VolumePerVolumeMeasure(%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, "prodml22:RelativeVolumeRatio")) - return soap_instantiate_prodml22__RelativeVolumeRatio(soap, n, NULL, NULL, size); eml23__VolumePerVolumeMeasure *p; size_t k = sizeof(eml23__VolumePerVolumeMeasure); struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_eml23__VolumePerVolumeMeasure, n, gsoap_eml2_3_fdelete); @@ -264560,8 +264708,6 @@ SOAP_FMAC1 eml23__ThermodynamicTemperatureMeasure * SOAP_FMAC2 soap_instantiate_ { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_eml23__ThermodynamicTemperatureMeasure(%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, "prodml22:SaturationTemperature")) - return soap_instantiate_prodml22__SaturationTemperature(soap, n, NULL, NULL, size); eml23__ThermodynamicTemperatureMeasure *p; size_t k = sizeof(eml23__ThermodynamicTemperatureMeasure); struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_eml23__ThermodynamicTemperatureMeasure, n, gsoap_eml2_3_fdelete); @@ -268166,8 +268312,6 @@ SOAP_FMAC1 eml23__ReciprocalPressureMeasure * SOAP_FMAC2 soap_instantiate_eml23_ { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_eml23__ReciprocalPressureMeasure(%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, "prodml22:OilCompressibility")) - return soap_instantiate_prodml22__OilCompressibility(soap, n, NULL, NULL, size); eml23__ReciprocalPressureMeasure *p; size_t k = sizeof(eml23__ReciprocalPressureMeasure); struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_eml23__ReciprocalPressureMeasure, n, gsoap_eml2_3_fdelete); @@ -271902,8 +272046,6 @@ SOAP_FMAC1 eml23__PressureMeasureExt * SOAP_FMAC2 soap_instantiate_eml23__Pressu { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_eml23__PressureMeasureExt(%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, "prodml22:SaturationPressure")) - return soap_instantiate_prodml22__SaturationPressure(soap, n, NULL, NULL, size); eml23__PressureMeasureExt *p; size_t k = sizeof(eml23__PressureMeasureExt); struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_eml23__PressureMeasureExt, n, gsoap_eml2_3_fdelete); @@ -297976,8 +298118,6 @@ SOAP_FMAC1 eml23__AmountOfSubstancePerAmountOfSubstanceMeasure * SOAP_FMAC2 soap { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_eml23__AmountOfSubstancePerAmountOfSubstanceMeasure(%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, "prodml22:RefInjectedGasAdded")) - return soap_instantiate_prodml22__RefInjectedGasAdded(soap, n, NULL, NULL, size); eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *p; size_t k = sizeof(eml23__AmountOfSubstancePerAmountOfSubstanceMeasure); struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_eml23__AmountOfSubstancePerAmountOfSubstanceMeasure, n, gsoap_eml2_3_fdelete); @@ -299792,7 +299932,7 @@ SOAP_FMAC3 eml23__VerticalAxis * SOAP_FMAC4 soap_in_eml23__VerticalAxis(struct s } } if (soap_flag_IsTime1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_bool(soap, "eml23:IsTime", &a->eml23__VerticalAxis::IsTime, "xsd:boolean")) + { if (soap_in_bool(soap, "eml23:IsTime", &a->eml23__VerticalAxis::IsTime, "xsd:boolean") || soap->error == SOAP_EMPTY) { soap_flag_IsTime1--; continue; } @@ -304879,7 +305019,7 @@ SOAP_FMAC3 eml23__StringXmlArray * SOAP_FMAC4 soap_in_eml23__StringXmlArray(stru continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__StringXmlArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__StringXmlArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -305159,7 +305299,7 @@ SOAP_FMAC3 eml23__StringExternalArray * SOAP_FMAC4 soap_in_eml23__StringExternal continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__StringExternalArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__StringExternalArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -306972,7 +307112,7 @@ SOAP_FMAC3 eml23__IntegerXmlArray * SOAP_FMAC4 soap_in_eml23__IntegerXmlArray(st continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__IntegerXmlArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__IntegerXmlArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -307316,7 +307456,7 @@ SOAP_FMAC3 eml23__IntegerExternalArray * SOAP_FMAC4 soap_in_eml23__IntegerExtern } } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__IntegerExternalArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__IntegerExternalArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -307822,7 +307962,7 @@ SOAP_FMAC3 eml23__IntegerArrayFromBooleanMaskArray * SOAP_FMAC4 soap_in_eml23__I continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__IntegerArrayFromBooleanMaskArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__IntegerArrayFromBooleanMaskArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -308255,7 +308395,7 @@ SOAP_FMAC3 eml23__FloatingPointXmlArray * SOAP_FMAC4 soap_in_eml23__FloatingPoin continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__FloatingPointXmlArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__FloatingPointXmlArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -308582,7 +308722,7 @@ SOAP_FMAC3 eml23__FloatingPointExternalArray * SOAP_FMAC4 soap_in_eml23__Floatin } } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__FloatingPointExternalArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__FloatingPointExternalArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -310051,7 +310191,7 @@ SOAP_FMAC3 eml23__BooleanXmlArray * SOAP_FMAC4 soap_in_eml23__BooleanXmlArray(st continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__BooleanXmlArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__BooleanXmlArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -310213,7 +310353,7 @@ SOAP_FMAC3 eml23__BooleanExternalArray * SOAP_FMAC4 soap_in_eml23__BooleanExtern continue; } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__BooleanExternalArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__BooleanExternalArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -310703,7 +310843,7 @@ SOAP_FMAC3 eml23__BooleanArrayFromIndexArray * SOAP_FMAC4 soap_in_eml23__Boolean } } if (soap_flag_CountPerValue1 && soap->error == SOAP_TAG_MISMATCH) - { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__BooleanArrayFromIndexArray::CountPerValue, "xsd:long")) + { if (soap_in_LONG64(soap, "eml23:CountPerValue", &a->eml23__BooleanArrayFromIndexArray::CountPerValue, "xsd:long") || soap->error == SOAP_EMPTY) { soap_flag_CountPerValue1--; continue; } @@ -320379,46 +320519,46 @@ SOAP_FMAC1 eml23__AbstractObject * SOAP_FMAC2 soap_instantiate_eml23__AbstractOb return soap_instantiate_eml23__DataAssuranceRecord(soap, n, NULL, NULL, size); if (soap && type && !soap_match_tag(soap, type, "eml23:GraphicalInformationSet")) return soap_instantiate_eml23__GraphicalInformationSet(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidCharacterization")) - return soap_instantiate_prodml22__FluidCharacterization(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidAnalysis")) - return soap_instantiate_prodml22__FluidAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidSystem")) - return soap_instantiate_prodml22__FluidSystem(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Channel")) - return soap_instantiate_prodml22__Channel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ChannelSet")) - return soap_instantiate_prodml22__ChannelSet(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FlowTestActivity")) - return soap_instantiate_prodml22__FlowTestActivity(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:Facility")) - return soap_instantiate_prodml22__Facility(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ReportingEntity")) - return soap_instantiate_prodml22__ReportingEntity(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ReportingHierarchy")) - return soap_instantiate_prodml22__ReportingHierarchy(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PressureTransientAnalysis")) - return soap_instantiate_prodml22__PressureTransientAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PtaDataPreProcess")) - return soap_instantiate_prodml22__PtaDataPreProcess(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:PtaDeconvolution")) - return soap_instantiate_prodml22__PtaDeconvolution(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidSample")) - return soap_instantiate_prodml22__FluidSample(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidSampleContainer")) - return soap_instantiate_prodml22__FluidSampleContainer(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FluidSampleAcquisitionJob")) - return soap_instantiate_prodml22__FluidSampleAcquisitionJob(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FlowTestJob")) - return soap_instantiate_prodml22__FlowTestJob(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ProductVolume")) - return soap_instantiate_prodml22__ProductVolume(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ProductFlowModel")) - return soap_instantiate_prodml22__ProductFlowModel(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TimeSeriesData")) - return soap_instantiate_prodml22__TimeSeriesData(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:TimeSeriesStatistic")) - return soap_instantiate_prodml22__TimeSeriesStatistic(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidCharacterization")) + return soap_instantiate_prodml23__FluidCharacterization(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidAnalysis")) + return soap_instantiate_prodml23__FluidAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidSystem")) + return soap_instantiate_prodml23__FluidSystem(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Channel")) + return soap_instantiate_prodml23__Channel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ChannelSet")) + return soap_instantiate_prodml23__ChannelSet(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FlowTestActivity")) + return soap_instantiate_prodml23__FlowTestActivity(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:Facility")) + return soap_instantiate_prodml23__Facility(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ReportingEntity")) + return soap_instantiate_prodml23__ReportingEntity(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ReportingHierarchy")) + return soap_instantiate_prodml23__ReportingHierarchy(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PressureTransientAnalysis")) + return soap_instantiate_prodml23__PressureTransientAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PtaDataPreProcess")) + return soap_instantiate_prodml23__PtaDataPreProcess(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:PtaDeconvolution")) + return soap_instantiate_prodml23__PtaDeconvolution(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidSample")) + return soap_instantiate_prodml23__FluidSample(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidSampleContainer")) + return soap_instantiate_prodml23__FluidSampleContainer(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FluidSampleAcquisitionJob")) + return soap_instantiate_prodml23__FluidSampleAcquisitionJob(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FlowTestJob")) + return soap_instantiate_prodml23__FlowTestJob(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductVolume")) + return soap_instantiate_prodml23__ProductVolume(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductFlowModel")) + return soap_instantiate_prodml23__ProductFlowModel(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TimeSeriesData")) + return soap_instantiate_prodml23__TimeSeriesData(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:TimeSeriesStatistic")) + return soap_instantiate_prodml23__TimeSeriesStatistic(soap, n, NULL, NULL, size); if (soap && type && !soap_match_tag(soap, type, "resqml22:AbstractFeature")) return soap_instantiate_resqml22__AbstractFeature(soap, n, NULL, NULL, size); if (soap && type && !soap_match_tag(soap, type, "resqml22:AbstractFeatureInterpretation")) @@ -320471,28 +320611,28 @@ SOAP_FMAC1 eml23__AbstractObject * SOAP_FMAC2 soap_instantiate_eml23__AbstractOb return soap_instantiate_eml23__LocalEngineeringCompoundCrs(soap, n, NULL, NULL, size); if (soap && type && !soap_match_tag(soap, type, "eml23:ProjectedCompoundCrs")) return soap_instantiate_eml23__ProjectedCompoundCrs(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:HydrocarbonAnalysis")) - return soap_instantiate_prodml22__HydrocarbonAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:NonHydrocarbonAnalysis")) - return soap_instantiate_prodml22__NonHydrocarbonAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WaterAnalysis")) - return soap_instantiate_prodml22__WaterAnalysis(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:DrillStemTest")) - return soap_instantiate_prodml22__DrillStemTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:FormationTesterStation")) - return soap_instantiate_prodml22__FormationTesterStation(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InjectionFlowTest")) - return soap_instantiate_prodml22__InjectionFlowTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:InterwellTest")) - return soap_instantiate_prodml22__InterwellTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ProductionFlowTest")) - return soap_instantiate_prodml22__ProductionFlowTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:ProductionTransientTest")) - return soap_instantiate_prodml22__ProductionTransientTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:VerticalInterferenceTest")) - return soap_instantiate_prodml22__VerticalInterferenceTest(soap, n, NULL, NULL, size); - if (soap && type && !soap_match_tag(soap, type, "prodml22:WaterLevelTest")) - return soap_instantiate_prodml22__WaterLevelTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:HydrocarbonAnalysis")) + return soap_instantiate_prodml23__HydrocarbonAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:NonHydrocarbonAnalysis")) + return soap_instantiate_prodml23__NonHydrocarbonAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WaterAnalysis")) + return soap_instantiate_prodml23__WaterAnalysis(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:DrillStemTest")) + return soap_instantiate_prodml23__DrillStemTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:FormationTesterStation")) + return soap_instantiate_prodml23__FormationTesterStation(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InjectionFlowTest")) + return soap_instantiate_prodml23__InjectionFlowTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:InterwellTest")) + return soap_instantiate_prodml23__InterwellTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductionFlowTest")) + return soap_instantiate_prodml23__ProductionFlowTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:ProductionTransientTest")) + return soap_instantiate_prodml23__ProductionTransientTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:VerticalInterferenceTest")) + return soap_instantiate_prodml23__VerticalInterferenceTest(soap, n, NULL, NULL, size); + if (soap && type && !soap_match_tag(soap, type, "prodml23:WaterLevelTest")) + return soap_instantiate_prodml23__WaterLevelTest(soap, n, NULL, NULL, size); if (soap && type && !soap_match_tag(soap, type, "resqml22:AbstractTechnicalFeature")) return soap_instantiate_resqml22__AbstractTechnicalFeature(soap, n, NULL, NULL, size); if (soap && type && !soap_match_tag(soap, type, "resqml22:BoundaryFeature")) @@ -397235,7 +397375,7 @@ SOAP_FMAC3 struct tm * SOAP_FMAC4 soap_get_tm(struct soap *soap, struct tm *p, c return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__prodml22__union_AbstractRefProductFlow(struct soap *soap, int choice, const union _prodml22__union_AbstractRefProductFlow *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__prodml23__union_AbstractRefProductFlow(struct soap *soap, int choice, const union _prodml23__union_AbstractRefProductFlow *a) { (void)soap; (void)choice; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF @@ -397247,7 +397387,7 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__prodml22__union_AbstractRefProductFlo #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out__prodml22__union_AbstractRefProductFlow(struct soap *soap, int choice, const union _prodml22__union_AbstractRefProductFlow *a) +SOAP_FMAC3 int SOAP_FMAC4 soap_out__prodml23__union_AbstractRefProductFlow(struct soap *soap, int choice, const union _prodml23__union_AbstractRefProductFlow *a) { (void)soap; (void)a; /* appease -Wall -Werror */ switch (choice) @@ -397258,7 +397398,7 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_out__prodml22__union_AbstractRefProductFlow(struc return SOAP_OK; } -SOAP_FMAC3 union _prodml22__union_AbstractRefProductFlow * SOAP_FMAC4 soap_in__prodml22__union_AbstractRefProductFlow(struct soap *soap, int *choice, union _prodml22__union_AbstractRefProductFlow *a) +SOAP_FMAC3 union _prodml23__union_AbstractRefProductFlow * SOAP_FMAC4 soap_in__prodml23__union_AbstractRefProductFlow(struct soap *soap, int *choice, union _prodml23__union_AbstractRefProductFlow *a) { (void)a; /* appease -Wall -Werror */ soap->error = SOAP_TAG_MISMATCH; @@ -399015,35 +399155,35 @@ SOAP_FMAC3 resqml22__ContactIdentity ** SOAP_FMAC4 soap_get_PointerToresqml22__C return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PrsvParameter(struct soap *soap, const char *tag, int id, prodml22__PrsvParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PrsvParameter(struct soap *soap, const char *tag, int id, prodml23__PrsvParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter ? type : NULL); } -SOAP_FMAC3 prodml22__PrsvParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__PrsvParameter(struct soap *soap, const char *tag, prodml22__PrsvParameter **a, const char *type) +SOAP_FMAC3 prodml23__PrsvParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__PrsvParameter(struct soap *soap, const char *tag, prodml23__PrsvParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PrsvParameter **)soap_malloc(soap, sizeof(prodml22__PrsvParameter *)))) + if (!(a = (prodml23__PrsvParameter **)soap_malloc(soap, sizeof(prodml23__PrsvParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PrsvParameter *)soap_instantiate_prodml22__PrsvParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PrsvParameter *)soap_instantiate_prodml23__PrsvParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -399052,23 +399192,23 @@ SOAP_FMAC3 prodml22__PrsvParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__Prsv } } else - { a = (prodml22__PrsvParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, sizeof(prodml22__PrsvParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PrsvParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, sizeof(prodml23__PrsvParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PrsvParameter(soap, tag ? tag : "prodml22:PrsvParameter", -2, a, type)) + if (soap_out_PointerToprodml23__PrsvParameter(soap, tag ? tag : "prodml23:PrsvParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PrsvParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PrsvParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PrsvParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PrsvParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -399198,10 +399338,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToeml23__ProjectedCrs(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToeml23__ProjectedCrs(struct soap *soap, const char *tag, int id, eml23__ProjectedCrs *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 eml23__ProjectedCrs ** SOAP_FMAC4 soap_in_PointerToeml23__ProjectedCrs(struct soap *soap, const char *tag, eml23__ProjectedCrs **a, const char *type) @@ -400861,35 +401004,35 @@ SOAP_FMAC3 resqml22__ThreePoint3d ** SOAP_FMAC4 soap_get_PointerToresqml22__Thre return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AngleBetweenBoundaries(struct soap *soap, const char *tag, int id, prodml22__AngleBetweenBoundaries *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AngleBetweenBoundaries(struct soap *soap, const char *tag, int id, prodml23__AngleBetweenBoundaries *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries ? type : NULL); } -SOAP_FMAC3 prodml22__AngleBetweenBoundaries ** SOAP_FMAC4 soap_in_PointerToprodml22__AngleBetweenBoundaries(struct soap *soap, const char *tag, prodml22__AngleBetweenBoundaries **a, const char *type) +SOAP_FMAC3 prodml23__AngleBetweenBoundaries ** SOAP_FMAC4 soap_in_PointerToprodml23__AngleBetweenBoundaries(struct soap *soap, const char *tag, prodml23__AngleBetweenBoundaries **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AngleBetweenBoundaries **)soap_malloc(soap, sizeof(prodml22__AngleBetweenBoundaries *)))) + if (!(a = (prodml23__AngleBetweenBoundaries **)soap_malloc(soap, sizeof(prodml23__AngleBetweenBoundaries *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AngleBetweenBoundaries *)soap_instantiate_prodml22__AngleBetweenBoundaries(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AngleBetweenBoundaries *)soap_instantiate_prodml23__AngleBetweenBoundaries(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -400898,57 +401041,57 @@ SOAP_FMAC3 prodml22__AngleBetweenBoundaries ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__AngleBetweenBoundaries **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries, sizeof(prodml22__AngleBetweenBoundaries), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AngleBetweenBoundaries **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries, sizeof(prodml23__AngleBetweenBoundaries), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AngleBetweenBoundaries(soap, tag ? tag : "prodml22:AngleBetweenBoundaries", -2, a, type)) + if (soap_out_PointerToprodml23__AngleBetweenBoundaries(soap, tag ? tag : "prodml23:AngleBetweenBoundaries", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AngleBetweenBoundaries ** SOAP_FMAC4 soap_get_PointerToprodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AngleBetweenBoundaries ** SOAP_FMAC4 soap_get_PointerToprodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AngleBetweenBoundaries(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AngleBetweenBoundaries(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToPinchOut(struct soap *soap, const char *tag, int id, prodml22__DistanceToPinchOut *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToPinchOut(struct soap *soap, const char *tag, int id, prodml23__DistanceToPinchOut *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceToPinchOut ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToPinchOut(struct soap *soap, const char *tag, prodml22__DistanceToPinchOut **a, const char *type) +SOAP_FMAC3 prodml23__DistanceToPinchOut ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToPinchOut(struct soap *soap, const char *tag, prodml23__DistanceToPinchOut **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceToPinchOut **)soap_malloc(soap, sizeof(prodml22__DistanceToPinchOut *)))) + if (!(a = (prodml23__DistanceToPinchOut **)soap_malloc(soap, sizeof(prodml23__DistanceToPinchOut *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceToPinchOut *)soap_instantiate_prodml22__DistanceToPinchOut(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceToPinchOut *)soap_instantiate_prodml23__DistanceToPinchOut(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -400957,57 +401100,57 @@ SOAP_FMAC3 prodml22__DistanceToPinchOut ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__DistanceToPinchOut **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut, sizeof(prodml22__DistanceToPinchOut), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToPinchOut **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut, sizeof(prodml23__DistanceToPinchOut), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceToPinchOut(soap, tag ? tag : "prodml22:DistanceToPinchOut", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceToPinchOut(soap, tag ? tag : "prodml23:DistanceToPinchOut", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceToPinchOut ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToPinchOut ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceToPinchOut(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceToPinchOut(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, int id, prodml22__DistanceMidPerforationsToBottomBoundary *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, int id, prodml23__DistanceMidPerforationsToBottomBoundary *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceMidPerforationsToBottomBoundary **a, const char *type) +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceMidPerforationsToBottomBoundary **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceMidPerforationsToBottomBoundary **)soap_malloc(soap, sizeof(prodml22__DistanceMidPerforationsToBottomBoundary *)))) + if (!(a = (prodml23__DistanceMidPerforationsToBottomBoundary **)soap_malloc(soap, sizeof(prodml23__DistanceMidPerforationsToBottomBoundary *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceMidPerforationsToBottomBoundary *)soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceMidPerforationsToBottomBoundary *)soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401016,57 +401159,57 @@ SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_ } } else - { a = (prodml22__DistanceMidPerforationsToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary, sizeof(prodml22__DistanceMidPerforationsToBottomBoundary), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceMidPerforationsToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary, sizeof(prodml23__DistanceMidPerforationsToBottomBoundary), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, tag ? tag : "prodml22:DistanceMidPerforationsToBottomBoundary", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, tag ? tag : "prodml23:DistanceMidPerforationsToBottomBoundary", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PerforatedLength(struct soap *soap, const char *tag, int id, prodml22__PerforatedLength *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PerforatedLength(struct soap *soap, const char *tag, int id, prodml23__PerforatedLength *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength ? type : NULL); } -SOAP_FMAC3 prodml22__PerforatedLength ** SOAP_FMAC4 soap_in_PointerToprodml22__PerforatedLength(struct soap *soap, const char *tag, prodml22__PerforatedLength **a, const char *type) +SOAP_FMAC3 prodml23__PerforatedLength ** SOAP_FMAC4 soap_in_PointerToprodml23__PerforatedLength(struct soap *soap, const char *tag, prodml23__PerforatedLength **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PerforatedLength **)soap_malloc(soap, sizeof(prodml22__PerforatedLength *)))) + if (!(a = (prodml23__PerforatedLength **)soap_malloc(soap, sizeof(prodml23__PerforatedLength *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PerforatedLength *)soap_instantiate_prodml22__PerforatedLength(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PerforatedLength *)soap_instantiate_prodml23__PerforatedLength(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401075,57 +401218,57 @@ SOAP_FMAC3 prodml22__PerforatedLength ** SOAP_FMAC4 soap_in_PointerToprodml22__P } } else - { a = (prodml22__PerforatedLength **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength, sizeof(prodml22__PerforatedLength), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PerforatedLength **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength, sizeof(prodml23__PerforatedLength), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PerforatedLength(soap, tag ? tag : "prodml22:PerforatedLength", -2, a, type)) + if (soap_out_PointerToprodml23__PerforatedLength(soap, tag ? tag : "prodml23:PerforatedLength", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PerforatedLength ** SOAP_FMAC4 soap_get_PointerToprodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PerforatedLength ** SOAP_FMAC4 soap_get_PointerToprodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PerforatedLength(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PerforatedLength(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReservoirZoneSubModel(struct soap *soap, const char *tag, int id, prodml22__ReservoirZoneSubModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReservoirZoneSubModel(struct soap *soap, const char *tag, int id, prodml23__ReservoirZoneSubModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel ? type : NULL); } -SOAP_FMAC3 prodml22__ReservoirZoneSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__ReservoirZoneSubModel(struct soap *soap, const char *tag, prodml22__ReservoirZoneSubModel **a, const char *type) +SOAP_FMAC3 prodml23__ReservoirZoneSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__ReservoirZoneSubModel(struct soap *soap, const char *tag, prodml23__ReservoirZoneSubModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReservoirZoneSubModel **)soap_malloc(soap, sizeof(prodml22__ReservoirZoneSubModel *)))) + if (!(a = (prodml23__ReservoirZoneSubModel **)soap_malloc(soap, sizeof(prodml23__ReservoirZoneSubModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ReservoirZoneSubModel *)soap_instantiate_prodml22__ReservoirZoneSubModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ReservoirZoneSubModel *)soap_instantiate_prodml23__ReservoirZoneSubModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401134,57 +401277,57 @@ SOAP_FMAC3 prodml22__ReservoirZoneSubModel ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__ReservoirZoneSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, sizeof(prodml22__ReservoirZoneSubModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ReservoirZoneSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, sizeof(prodml23__ReservoirZoneSubModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReservoirZoneSubModel(soap, tag ? tag : "prodml22:ReservoirZoneSubModel", -2, a, type)) + if (soap_out_PointerToprodml23__ReservoirZoneSubModel(soap, tag ? tag : "prodml23:ReservoirZoneSubModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReservoirZoneSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReservoirZoneSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReservoirZoneSubModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReservoirZoneSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistributedParametersSubModel(struct soap *soap, const char *tag, int id, prodml22__DistributedParametersSubModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistributedParametersSubModel(struct soap *soap, const char *tag, int id, prodml23__DistributedParametersSubModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel ? type : NULL); } -SOAP_FMAC3 prodml22__DistributedParametersSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__DistributedParametersSubModel(struct soap *soap, const char *tag, prodml22__DistributedParametersSubModel **a, const char *type) +SOAP_FMAC3 prodml23__DistributedParametersSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__DistributedParametersSubModel(struct soap *soap, const char *tag, prodml23__DistributedParametersSubModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistributedParametersSubModel **)soap_malloc(soap, sizeof(prodml22__DistributedParametersSubModel *)))) + if (!(a = (prodml23__DistributedParametersSubModel **)soap_malloc(soap, sizeof(prodml23__DistributedParametersSubModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistributedParametersSubModel *)soap_instantiate_prodml22__DistributedParametersSubModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistributedParametersSubModel *)soap_instantiate_prodml23__DistributedParametersSubModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401193,57 +401336,57 @@ SOAP_FMAC3 prodml22__DistributedParametersSubModel ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__DistributedParametersSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel, sizeof(prodml22__DistributedParametersSubModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistributedParametersSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel, sizeof(prodml23__DistributedParametersSubModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistributedParametersSubModel(soap, tag ? tag : "prodml22:DistributedParametersSubModel", -2, a, type)) + if (soap_out_PointerToprodml23__DistributedParametersSubModel(soap, tag ? tag : "prodml23:DistributedParametersSubModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistributedParametersSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistributedParametersSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistributedParametersSubModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistributedParametersSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InternalFaultSubModel(struct soap *soap, const char *tag, int id, prodml22__InternalFaultSubModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InternalFaultSubModel(struct soap *soap, const char *tag, int id, prodml23__InternalFaultSubModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel ? type : NULL); } -SOAP_FMAC3 prodml22__InternalFaultSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__InternalFaultSubModel(struct soap *soap, const char *tag, prodml22__InternalFaultSubModel **a, const char *type) +SOAP_FMAC3 prodml23__InternalFaultSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__InternalFaultSubModel(struct soap *soap, const char *tag, prodml23__InternalFaultSubModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InternalFaultSubModel **)soap_malloc(soap, sizeof(prodml22__InternalFaultSubModel *)))) + if (!(a = (prodml23__InternalFaultSubModel **)soap_malloc(soap, sizeof(prodml23__InternalFaultSubModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InternalFaultSubModel *)soap_instantiate_prodml22__InternalFaultSubModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InternalFaultSubModel *)soap_instantiate_prodml23__InternalFaultSubModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401252,57 +401395,57 @@ SOAP_FMAC3 prodml22__InternalFaultSubModel ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__InternalFaultSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, sizeof(prodml22__InternalFaultSubModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InternalFaultSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, sizeof(prodml23__InternalFaultSubModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InternalFaultSubModel(soap, tag ? tag : "prodml22:InternalFaultSubModel", -2, a, type)) + if (soap_out_PointerToprodml23__InternalFaultSubModel(soap, tag ? tag : "prodml23:InternalFaultSubModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InternalFaultSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InternalFaultSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InternalFaultSubModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InternalFaultSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SingleBoundarySubModel(struct soap *soap, const char *tag, int id, prodml22__SingleBoundarySubModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SingleBoundarySubModel(struct soap *soap, const char *tag, int id, prodml23__SingleBoundarySubModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel ? type : NULL); } -SOAP_FMAC3 prodml22__SingleBoundarySubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__SingleBoundarySubModel(struct soap *soap, const char *tag, prodml22__SingleBoundarySubModel **a, const char *type) +SOAP_FMAC3 prodml23__SingleBoundarySubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__SingleBoundarySubModel(struct soap *soap, const char *tag, prodml23__SingleBoundarySubModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SingleBoundarySubModel **)soap_malloc(soap, sizeof(prodml22__SingleBoundarySubModel *)))) + if (!(a = (prodml23__SingleBoundarySubModel **)soap_malloc(soap, sizeof(prodml23__SingleBoundarySubModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SingleBoundarySubModel *)soap_instantiate_prodml22__SingleBoundarySubModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SingleBoundarySubModel *)soap_instantiate_prodml23__SingleBoundarySubModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401311,57 +401454,57 @@ SOAP_FMAC3 prodml22__SingleBoundarySubModel ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__SingleBoundarySubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, sizeof(prodml22__SingleBoundarySubModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SingleBoundarySubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, sizeof(prodml23__SingleBoundarySubModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SingleBoundarySubModel(soap, tag ? tag : "prodml22:SingleBoundarySubModel", -2, a, type)) + if (soap_out_PointerToprodml23__SingleBoundarySubModel(soap, tag ? tag : "prodml23:SingleBoundarySubModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SingleBoundarySubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SingleBoundarySubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SingleBoundarySubModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SingleBoundarySubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FaultConductivity(struct soap *soap, const char *tag, int id, prodml22__FaultConductivity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FaultConductivity(struct soap *soap, const char *tag, int id, prodml23__FaultConductivity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity ? type : NULL); } -SOAP_FMAC3 prodml22__FaultConductivity ** SOAP_FMAC4 soap_in_PointerToprodml22__FaultConductivity(struct soap *soap, const char *tag, prodml22__FaultConductivity **a, const char *type) +SOAP_FMAC3 prodml23__FaultConductivity ** SOAP_FMAC4 soap_in_PointerToprodml23__FaultConductivity(struct soap *soap, const char *tag, prodml23__FaultConductivity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FaultConductivity **)soap_malloc(soap, sizeof(prodml22__FaultConductivity *)))) + if (!(a = (prodml23__FaultConductivity **)soap_malloc(soap, sizeof(prodml23__FaultConductivity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FaultConductivity *)soap_instantiate_prodml22__FaultConductivity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FaultConductivity *)soap_instantiate_prodml23__FaultConductivity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401370,57 +401513,57 @@ SOAP_FMAC3 prodml22__FaultConductivity ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__FaultConductivity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity, sizeof(prodml22__FaultConductivity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FaultConductivity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity, sizeof(prodml23__FaultConductivity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FaultConductivity(soap, tag ? tag : "prodml22:FaultConductivity", -2, a, type)) + if (soap_out_PointerToprodml23__FaultConductivity(soap, tag ? tag : "prodml23:FaultConductivity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FaultConductivity ** SOAP_FMAC4 soap_get_PointerToprodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FaultConductivity ** SOAP_FMAC4 soap_get_PointerToprodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FaultConductivity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FaultConductivity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Region2Thickness(struct soap *soap, const char *tag, int id, prodml22__Region2Thickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Region2Thickness(struct soap *soap, const char *tag, int id, prodml23__Region2Thickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness ? type : NULL); } -SOAP_FMAC3 prodml22__Region2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml22__Region2Thickness(struct soap *soap, const char *tag, prodml22__Region2Thickness **a, const char *type) +SOAP_FMAC3 prodml23__Region2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml23__Region2Thickness(struct soap *soap, const char *tag, prodml23__Region2Thickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__Region2Thickness **)soap_malloc(soap, sizeof(prodml22__Region2Thickness *)))) + if (!(a = (prodml23__Region2Thickness **)soap_malloc(soap, sizeof(prodml23__Region2Thickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__Region2Thickness *)soap_instantiate_prodml22__Region2Thickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__Region2Thickness *)soap_instantiate_prodml23__Region2Thickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401429,57 +401572,57 @@ SOAP_FMAC3 prodml22__Region2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml22__R } } else - { a = (prodml22__Region2Thickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness, sizeof(prodml22__Region2Thickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__Region2Thickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness, sizeof(prodml23__Region2Thickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__Region2Thickness(soap, tag ? tag : "prodml22:Region2Thickness", -2, a, type)) + if (soap_out_PointerToprodml23__Region2Thickness(soap, tag ? tag : "prodml23:Region2Thickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Region2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Region2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__Region2Thickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__Region2Thickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfLinearFront(struct soap *soap, const char *tag, int id, prodml22__OrientationOfLinearFront *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfLinearFront(struct soap *soap, const char *tag, int id, prodml23__OrientationOfLinearFront *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront ? type : NULL); } -SOAP_FMAC3 prodml22__OrientationOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfLinearFront(struct soap *soap, const char *tag, prodml22__OrientationOfLinearFront **a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfLinearFront(struct soap *soap, const char *tag, prodml23__OrientationOfLinearFront **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OrientationOfLinearFront **)soap_malloc(soap, sizeof(prodml22__OrientationOfLinearFront *)))) + if (!(a = (prodml23__OrientationOfLinearFront **)soap_malloc(soap, sizeof(prodml23__OrientationOfLinearFront *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OrientationOfLinearFront *)soap_instantiate_prodml22__OrientationOfLinearFront(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OrientationOfLinearFront *)soap_instantiate_prodml23__OrientationOfLinearFront(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401488,57 +401631,57 @@ SOAP_FMAC3 prodml22__OrientationOfLinearFront ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__OrientationOfLinearFront **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront, sizeof(prodml22__OrientationOfLinearFront), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfLinearFront **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront, sizeof(prodml23__OrientationOfLinearFront), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OrientationOfLinearFront(soap, tag ? tag : "prodml22:OrientationOfLinearFront", -2, a, type)) + if (soap_out_PointerToprodml23__OrientationOfLinearFront(soap, tag ? tag : "prodml23:OrientationOfLinearFront", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OrientationOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OrientationOfLinearFront(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OrientationOfLinearFront(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToMobilityInterface(struct soap *soap, const char *tag, int id, prodml22__DistanceToMobilityInterface *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToMobilityInterface(struct soap *soap, const char *tag, int id, prodml23__DistanceToMobilityInterface *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceToMobilityInterface ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToMobilityInterface(struct soap *soap, const char *tag, prodml22__DistanceToMobilityInterface **a, const char *type) +SOAP_FMAC3 prodml23__DistanceToMobilityInterface ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToMobilityInterface(struct soap *soap, const char *tag, prodml23__DistanceToMobilityInterface **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceToMobilityInterface **)soap_malloc(soap, sizeof(prodml22__DistanceToMobilityInterface *)))) + if (!(a = (prodml23__DistanceToMobilityInterface **)soap_malloc(soap, sizeof(prodml23__DistanceToMobilityInterface *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceToMobilityInterface *)soap_instantiate_prodml22__DistanceToMobilityInterface(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceToMobilityInterface *)soap_instantiate_prodml23__DistanceToMobilityInterface(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401547,57 +401690,57 @@ SOAP_FMAC3 prodml22__DistanceToMobilityInterface ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__DistanceToMobilityInterface **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface, sizeof(prodml22__DistanceToMobilityInterface), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToMobilityInterface **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface, sizeof(prodml23__DistanceToMobilityInterface), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceToMobilityInterface(soap, tag ? tag : "prodml22:DistanceToMobilityInterface", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceToMobilityInterface(soap, tag ? tag : "prodml23:DistanceToMobilityInterface", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceToMobilityInterface ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToMobilityInterface ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceToMobilityInterface(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceToMobilityInterface(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, int id, prodml22__InnerToOuterZoneDiffusivityRatio *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, int id, prodml23__InnerToOuterZoneDiffusivityRatio *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio ? type : NULL); } -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, prodml22__InnerToOuterZoneDiffusivityRatio **a, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *tag, prodml23__InnerToOuterZoneDiffusivityRatio **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InnerToOuterZoneDiffusivityRatio **)soap_malloc(soap, sizeof(prodml22__InnerToOuterZoneDiffusivityRatio *)))) + if (!(a = (prodml23__InnerToOuterZoneDiffusivityRatio **)soap_malloc(soap, sizeof(prodml23__InnerToOuterZoneDiffusivityRatio *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InnerToOuterZoneDiffusivityRatio *)soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InnerToOuterZoneDiffusivityRatio *)soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401606,57 +401749,57 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__InnerToOuterZoneDiffusivityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio, sizeof(prodml22__InnerToOuterZoneDiffusivityRatio), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InnerToOuterZoneDiffusivityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio, sizeof(prodml23__InnerToOuterZoneDiffusivityRatio), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, tag ? tag : "prodml22:InnerToOuterZoneDiffusivityRatio", -2, a, type)) + if (soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, tag ? tag : "prodml23:InnerToOuterZoneDiffusivityRatio", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, int id, prodml22__InnerToOuterZoneMobilityRatio *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, int id, prodml23__InnerToOuterZoneMobilityRatio *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio ? type : NULL); } -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, prodml22__InnerToOuterZoneMobilityRatio **a, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *tag, prodml23__InnerToOuterZoneMobilityRatio **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InnerToOuterZoneMobilityRatio **)soap_malloc(soap, sizeof(prodml22__InnerToOuterZoneMobilityRatio *)))) + if (!(a = (prodml23__InnerToOuterZoneMobilityRatio **)soap_malloc(soap, sizeof(prodml23__InnerToOuterZoneMobilityRatio *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InnerToOuterZoneMobilityRatio *)soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InnerToOuterZoneMobilityRatio *)soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401665,57 +401808,57 @@ SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__InnerToOuterZoneMobilityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio, sizeof(prodml22__InnerToOuterZoneMobilityRatio), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InnerToOuterZoneMobilityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio, sizeof(prodml23__InnerToOuterZoneMobilityRatio), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, tag ? tag : "prodml22:InnerToOuterZoneMobilityRatio", -2, a, type)) + if (soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, tag ? tag : "prodml23:InnerToOuterZoneMobilityRatio", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SingleFractureSubModel(struct soap *soap, const char *tag, int id, prodml22__SingleFractureSubModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SingleFractureSubModel(struct soap *soap, const char *tag, int id, prodml23__SingleFractureSubModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel ? type : NULL); } -SOAP_FMAC3 prodml22__SingleFractureSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__SingleFractureSubModel(struct soap *soap, const char *tag, prodml22__SingleFractureSubModel **a, const char *type) +SOAP_FMAC3 prodml23__SingleFractureSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__SingleFractureSubModel(struct soap *soap, const char *tag, prodml23__SingleFractureSubModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SingleFractureSubModel **)soap_malloc(soap, sizeof(prodml22__SingleFractureSubModel *)))) + if (!(a = (prodml23__SingleFractureSubModel **)soap_malloc(soap, sizeof(prodml23__SingleFractureSubModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SingleFractureSubModel *)soap_instantiate_prodml22__SingleFractureSubModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SingleFractureSubModel *)soap_instantiate_prodml23__SingleFractureSubModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401724,57 +401867,57 @@ SOAP_FMAC3 prodml22__SingleFractureSubModel ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__SingleFractureSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, sizeof(prodml22__SingleFractureSubModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SingleFractureSubModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, sizeof(prodml23__SingleFractureSubModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SingleFractureSubModel(soap, tag ? tag : "prodml22:SingleFractureSubModel", -2, a, type)) + if (soap_out_PointerToprodml23__SingleFractureSubModel(soap, tag ? tag : "prodml23:SingleFractureSubModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SingleFractureSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SingleFractureSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SingleFractureSubModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SingleFractureSubModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureAngleToWellbore(struct soap *soap, const char *tag, int id, prodml22__FractureAngleToWellbore *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureAngleToWellbore(struct soap *soap, const char *tag, int id, prodml23__FractureAngleToWellbore *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore ? type : NULL); } -SOAP_FMAC3 prodml22__FractureAngleToWellbore ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureAngleToWellbore(struct soap *soap, const char *tag, prodml22__FractureAngleToWellbore **a, const char *type) +SOAP_FMAC3 prodml23__FractureAngleToWellbore ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureAngleToWellbore(struct soap *soap, const char *tag, prodml23__FractureAngleToWellbore **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureAngleToWellbore **)soap_malloc(soap, sizeof(prodml22__FractureAngleToWellbore *)))) + if (!(a = (prodml23__FractureAngleToWellbore **)soap_malloc(soap, sizeof(prodml23__FractureAngleToWellbore *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureAngleToWellbore *)soap_instantiate_prodml22__FractureAngleToWellbore(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureAngleToWellbore *)soap_instantiate_prodml23__FractureAngleToWellbore(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401783,57 +401926,57 @@ SOAP_FMAC3 prodml22__FractureAngleToWellbore ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__FractureAngleToWellbore **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore, sizeof(prodml22__FractureAngleToWellbore), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureAngleToWellbore **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore, sizeof(prodml23__FractureAngleToWellbore), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureAngleToWellbore(soap, tag ? tag : "prodml22:FractureAngleToWellbore", -2, a, type)) + if (soap_out_PointerToprodml23__FractureAngleToWellbore(soap, tag ? tag : "prodml23:FractureAngleToWellbore", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureAngleToWellbore ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureAngleToWellbore ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureAngleToWellbore(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureAngleToWellbore(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NumberOfFractures(struct soap *soap, const char *tag, int id, prodml22__NumberOfFractures *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NumberOfFractures(struct soap *soap, const char *tag, int id, prodml23__NumberOfFractures *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures ? type : NULL); } -SOAP_FMAC3 prodml22__NumberOfFractures ** SOAP_FMAC4 soap_in_PointerToprodml22__NumberOfFractures(struct soap *soap, const char *tag, prodml22__NumberOfFractures **a, const char *type) +SOAP_FMAC3 prodml23__NumberOfFractures ** SOAP_FMAC4 soap_in_PointerToprodml23__NumberOfFractures(struct soap *soap, const char *tag, prodml23__NumberOfFractures **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__NumberOfFractures **)soap_malloc(soap, sizeof(prodml22__NumberOfFractures *)))) + if (!(a = (prodml23__NumberOfFractures **)soap_malloc(soap, sizeof(prodml23__NumberOfFractures *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__NumberOfFractures *)soap_instantiate_prodml22__NumberOfFractures(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__NumberOfFractures *)soap_instantiate_prodml23__NumberOfFractures(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401842,57 +401985,57 @@ SOAP_FMAC3 prodml22__NumberOfFractures ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__NumberOfFractures **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures, sizeof(prodml22__NumberOfFractures), 0, gsoap_eml2_3_fbase); + { a = (prodml23__NumberOfFractures **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures, sizeof(prodml23__NumberOfFractures), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__NumberOfFractures(soap, tag ? tag : "prodml22:NumberOfFractures", -2, a, type)) + if (soap_out_PointerToprodml23__NumberOfFractures(soap, tag ? tag : "prodml23:NumberOfFractures", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__NumberOfFractures ** SOAP_FMAC4 soap_get_PointerToprodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NumberOfFractures ** SOAP_FMAC4 soap_get_PointerToprodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__NumberOfFractures(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__NumberOfFractures(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, int id, prodml22__DistanceWellboreToBottomBoundary *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, int id, prodml23__DistanceWellboreToBottomBoundary *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceWellboreToBottomBoundary **a, const char *type) +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceWellboreToBottomBoundary **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceWellboreToBottomBoundary **)soap_malloc(soap, sizeof(prodml22__DistanceWellboreToBottomBoundary *)))) + if (!(a = (prodml23__DistanceWellboreToBottomBoundary **)soap_malloc(soap, sizeof(prodml23__DistanceWellboreToBottomBoundary *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceWellboreToBottomBoundary *)soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceWellboreToBottomBoundary *)soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401901,57 +402044,57 @@ SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__DistanceWellboreToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary, sizeof(prodml22__DistanceWellboreToBottomBoundary), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceWellboreToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary, sizeof(prodml23__DistanceWellboreToBottomBoundary), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, tag ? tag : "prodml22:DistanceWellboreToBottomBoundary", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, tag ? tag : "prodml23:DistanceWellboreToBottomBoundary", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, int id, prodml22__LengthHorizontalWellboreFlowing *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, int id, prodml23__LengthHorizontalWellboreFlowing *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing ? type : NULL); } -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, prodml22__LengthHorizontalWellboreFlowing **a, const char *type) +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *tag, prodml23__LengthHorizontalWellboreFlowing **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LengthHorizontalWellboreFlowing **)soap_malloc(soap, sizeof(prodml22__LengthHorizontalWellboreFlowing *)))) + if (!(a = (prodml23__LengthHorizontalWellboreFlowing **)soap_malloc(soap, sizeof(prodml23__LengthHorizontalWellboreFlowing *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LengthHorizontalWellboreFlowing *)soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LengthHorizontalWellboreFlowing *)soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -401960,57 +402103,57 @@ SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_in_Point } } else - { a = (prodml22__LengthHorizontalWellboreFlowing **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing, sizeof(prodml22__LengthHorizontalWellboreFlowing), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LengthHorizontalWellboreFlowing **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing, sizeof(prodml23__LengthHorizontalWellboreFlowing), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, tag ? tag : "prodml22:LengthHorizontalWellboreFlowing", -2, a, type)) + if (soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, tag ? tag : "prodml23:LengthHorizontalWellboreFlowing", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_get_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_get_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationWellTrajectory(struct soap *soap, const char *tag, int id, prodml22__OrientationWellTrajectory *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationWellTrajectory(struct soap *soap, const char *tag, int id, prodml23__OrientationWellTrajectory *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory ? type : NULL); } -SOAP_FMAC3 prodml22__OrientationWellTrajectory ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationWellTrajectory(struct soap *soap, const char *tag, prodml22__OrientationWellTrajectory **a, const char *type) +SOAP_FMAC3 prodml23__OrientationWellTrajectory ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationWellTrajectory(struct soap *soap, const char *tag, prodml23__OrientationWellTrajectory **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OrientationWellTrajectory **)soap_malloc(soap, sizeof(prodml22__OrientationWellTrajectory *)))) + if (!(a = (prodml23__OrientationWellTrajectory **)soap_malloc(soap, sizeof(prodml23__OrientationWellTrajectory *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OrientationWellTrajectory *)soap_instantiate_prodml22__OrientationWellTrajectory(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OrientationWellTrajectory *)soap_instantiate_prodml23__OrientationWellTrajectory(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402019,57 +402162,57 @@ SOAP_FMAC3 prodml22__OrientationWellTrajectory ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__OrientationWellTrajectory **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory, sizeof(prodml22__OrientationWellTrajectory), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationWellTrajectory **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory, sizeof(prodml23__OrientationWellTrajectory), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OrientationWellTrajectory(soap, tag ? tag : "prodml22:OrientationWellTrajectory", -2, a, type)) + if (soap_out_PointerToprodml23__OrientationWellTrajectory(soap, tag ? tag : "prodml23:OrientationWellTrajectory", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OrientationWellTrajectory ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationWellTrajectory ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OrientationWellTrajectory(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OrientationWellTrajectory(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml22__MechanicalSkinRelativeToTotalThickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml23__MechanicalSkinRelativeToTotalThickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness ? type : NULL); } -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__MechanicalSkinRelativeToTotalThickness **a, const char *type) +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__MechanicalSkinRelativeToTotalThickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MechanicalSkinRelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml22__MechanicalSkinRelativeToTotalThickness *)))) + if (!(a = (prodml23__MechanicalSkinRelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml23__MechanicalSkinRelativeToTotalThickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__MechanicalSkinRelativeToTotalThickness *)soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__MechanicalSkinRelativeToTotalThickness *)soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402078,57 +402221,57 @@ SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_i } } else - { a = (prodml22__MechanicalSkinRelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness, sizeof(prodml22__MechanicalSkinRelativeToTotalThickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__MechanicalSkinRelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness, sizeof(prodml23__MechanicalSkinRelativeToTotalThickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, tag ? tag : "prodml22:MechanicalSkinRelativeToTotalThickness", -2, a, type)) + if (soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, tag ? tag : "prodml23:MechanicalSkinRelativeToTotalThickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml22__ConvergenceSkinRelativeToTotalThickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml23__ConvergenceSkinRelativeToTotalThickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness ? type : NULL); } -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__ConvergenceSkinRelativeToTotalThickness **a, const char *type) +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__ConvergenceSkinRelativeToTotalThickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ConvergenceSkinRelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml22__ConvergenceSkinRelativeToTotalThickness *)))) + if (!(a = (prodml23__ConvergenceSkinRelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml23__ConvergenceSkinRelativeToTotalThickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ConvergenceSkinRelativeToTotalThickness *)soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ConvergenceSkinRelativeToTotalThickness *)soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402137,57 +402280,57 @@ SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_ } } else - { a = (prodml22__ConvergenceSkinRelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness, sizeof(prodml22__ConvergenceSkinRelativeToTotalThickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ConvergenceSkinRelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness, sizeof(prodml23__ConvergenceSkinRelativeToTotalThickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag ? tag : "prodml22:ConvergenceSkinRelativeToTotalThickness", -2, a, type)) + if (soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag ? tag : "prodml23:ConvergenceSkinRelativeToTotalThickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, int id, prodml22__DistanceFractureToBottomBoundary *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, int id, prodml23__DistanceFractureToBottomBoundary *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceFractureToBottomBoundary **a, const char *type) +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceFractureToBottomBoundary **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceFractureToBottomBoundary **)soap_malloc(soap, sizeof(prodml22__DistanceFractureToBottomBoundary *)))) + if (!(a = (prodml23__DistanceFractureToBottomBoundary **)soap_malloc(soap, sizeof(prodml23__DistanceFractureToBottomBoundary *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceFractureToBottomBoundary *)soap_instantiate_prodml22__DistanceFractureToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceFractureToBottomBoundary *)soap_instantiate_prodml23__DistanceFractureToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402196,57 +402339,57 @@ SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__DistanceFractureToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary, sizeof(prodml22__DistanceFractureToBottomBoundary), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceFractureToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary, sizeof(prodml23__DistanceFractureToBottomBoundary), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(soap, tag ? tag : "prodml22:DistanceFractureToBottomBoundary", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(soap, tag ? tag : "prodml23:DistanceFractureToBottomBoundary", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureRadius(struct soap *soap, const char *tag, int id, prodml22__FractureRadius *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureRadius(struct soap *soap, const char *tag, int id, prodml23__FractureRadius *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius ? type : NULL); } -SOAP_FMAC3 prodml22__FractureRadius ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureRadius(struct soap *soap, const char *tag, prodml22__FractureRadius **a, const char *type) +SOAP_FMAC3 prodml23__FractureRadius ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureRadius(struct soap *soap, const char *tag, prodml23__FractureRadius **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureRadius **)soap_malloc(soap, sizeof(prodml22__FractureRadius *)))) + if (!(a = (prodml23__FractureRadius **)soap_malloc(soap, sizeof(prodml23__FractureRadius *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureRadius *)soap_instantiate_prodml22__FractureRadius(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureRadius *)soap_instantiate_prodml23__FractureRadius(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402255,57 +402398,57 @@ SOAP_FMAC3 prodml22__FractureRadius ** SOAP_FMAC4 soap_in_PointerToprodml22__Fra } } else - { a = (prodml22__FractureRadius **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius, sizeof(prodml22__FractureRadius), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureRadius **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius, sizeof(prodml23__FractureRadius), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureRadius(soap, tag ? tag : "prodml22:FractureRadius", -2, a, type)) + if (soap_out_PointerToprodml23__FractureRadius(soap, tag ? tag : "prodml23:FractureRadius", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureRadius ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureRadius ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureRadius(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureRadius(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfFracturePlane(struct soap *soap, const char *tag, int id, prodml22__OrientationOfFracturePlane *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfFracturePlane(struct soap *soap, const char *tag, int id, prodml23__OrientationOfFracturePlane *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane ? type : NULL); } -SOAP_FMAC3 prodml22__OrientationOfFracturePlane ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfFracturePlane(struct soap *soap, const char *tag, prodml22__OrientationOfFracturePlane **a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfFracturePlane ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfFracturePlane(struct soap *soap, const char *tag, prodml23__OrientationOfFracturePlane **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OrientationOfFracturePlane **)soap_malloc(soap, sizeof(prodml22__OrientationOfFracturePlane *)))) + if (!(a = (prodml23__OrientationOfFracturePlane **)soap_malloc(soap, sizeof(prodml23__OrientationOfFracturePlane *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OrientationOfFracturePlane *)soap_instantiate_prodml22__OrientationOfFracturePlane(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OrientationOfFracturePlane *)soap_instantiate_prodml23__OrientationOfFracturePlane(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402314,57 +402457,57 @@ SOAP_FMAC3 prodml22__OrientationOfFracturePlane ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__OrientationOfFracturePlane **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane, sizeof(prodml22__OrientationOfFracturePlane), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfFracturePlane **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane, sizeof(prodml23__OrientationOfFracturePlane), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OrientationOfFracturePlane(soap, tag ? tag : "prodml22:OrientationOfFracturePlane", -2, a, type)) + if (soap_out_PointerToprodml23__OrientationOfFracturePlane(soap, tag ? tag : "prodml23:OrientationOfFracturePlane", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OrientationOfFracturePlane ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfFracturePlane ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OrientationOfFracturePlane(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OrientationOfFracturePlane(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureHalfLength(struct soap *soap, const char *tag, int id, prodml22__FractureHalfLength *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureHalfLength(struct soap *soap, const char *tag, int id, prodml23__FractureHalfLength *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength ? type : NULL); } -SOAP_FMAC3 prodml22__FractureHalfLength ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureHalfLength(struct soap *soap, const char *tag, prodml22__FractureHalfLength **a, const char *type) +SOAP_FMAC3 prodml23__FractureHalfLength ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureHalfLength(struct soap *soap, const char *tag, prodml23__FractureHalfLength **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureHalfLength **)soap_malloc(soap, sizeof(prodml22__FractureHalfLength *)))) + if (!(a = (prodml23__FractureHalfLength **)soap_malloc(soap, sizeof(prodml23__FractureHalfLength *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureHalfLength *)soap_instantiate_prodml22__FractureHalfLength(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureHalfLength *)soap_instantiate_prodml23__FractureHalfLength(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402373,57 +402516,57 @@ SOAP_FMAC3 prodml22__FractureHalfLength ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__FractureHalfLength **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength, sizeof(prodml22__FractureHalfLength), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureHalfLength **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength, sizeof(prodml23__FractureHalfLength), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureHalfLength(soap, tag ? tag : "prodml22:FractureHalfLength", -2, a, type)) + if (soap_out_PointerToprodml23__FractureHalfLength(soap, tag ? tag : "prodml23:FractureHalfLength", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureHalfLength ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureHalfLength ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureHalfLength(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureHalfLength(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml22__SkinLayer2RelativeToTotalThickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml23__SkinLayer2RelativeToTotalThickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness ? type : NULL); } -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__SkinLayer2RelativeToTotalThickness **a, const char *type) +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__SkinLayer2RelativeToTotalThickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SkinLayer2RelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml22__SkinLayer2RelativeToTotalThickness *)))) + if (!(a = (prodml23__SkinLayer2RelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml23__SkinLayer2RelativeToTotalThickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SkinLayer2RelativeToTotalThickness *)soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SkinLayer2RelativeToTotalThickness *)soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402432,57 +402575,57 @@ SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_in_Po } } else - { a = (prodml22__SkinLayer2RelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness, sizeof(prodml22__SkinLayer2RelativeToTotalThickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SkinLayer2RelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness, sizeof(prodml23__SkinLayer2RelativeToTotalThickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, tag ? tag : "prodml22:SkinLayer2RelativeToTotalThickness", -2, a, type)) + if (soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, tag ? tag : "prodml23:SkinLayer2RelativeToTotalThickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Layer2Thickness(struct soap *soap, const char *tag, int id, prodml22__Layer2Thickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Layer2Thickness(struct soap *soap, const char *tag, int id, prodml23__Layer2Thickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness ? type : NULL); } -SOAP_FMAC3 prodml22__Layer2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml22__Layer2Thickness(struct soap *soap, const char *tag, prodml22__Layer2Thickness **a, const char *type) +SOAP_FMAC3 prodml23__Layer2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml23__Layer2Thickness(struct soap *soap, const char *tag, prodml23__Layer2Thickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__Layer2Thickness **)soap_malloc(soap, sizeof(prodml22__Layer2Thickness *)))) + if (!(a = (prodml23__Layer2Thickness **)soap_malloc(soap, sizeof(prodml23__Layer2Thickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__Layer2Thickness *)soap_instantiate_prodml22__Layer2Thickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__Layer2Thickness *)soap_instantiate_prodml23__Layer2Thickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402491,57 +402634,57 @@ SOAP_FMAC3 prodml22__Layer2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml22__La } } else - { a = (prodml22__Layer2Thickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness, sizeof(prodml22__Layer2Thickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__Layer2Thickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness, sizeof(prodml23__Layer2Thickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__Layer2Thickness(soap, tag ? tag : "prodml22:Layer2Thickness", -2, a, type)) + if (soap_out_PointerToprodml23__Layer2Thickness(soap, tag ? tag : "prodml23:Layer2Thickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Layer2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Layer2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__Layer2Thickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__Layer2Thickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ? type : NULL); } -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct **a, const char *type) +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct **)soap_malloc(soap, sizeof(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *)))) + if (!(a = (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct **)soap_malloc(soap, sizeof(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *)soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *)soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402550,57 +402693,57 @@ SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC } } else - { a = (prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, sizeof(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, sizeof(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag ? tag : "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", -2, a, type)) + if (soap_out_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag ? tag : "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__StorativityRatio(struct soap *soap, const char *tag, int id, prodml22__StorativityRatio *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__StorativityRatio(struct soap *soap, const char *tag, int id, prodml23__StorativityRatio *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio ? type : NULL); } -SOAP_FMAC3 prodml22__StorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__StorativityRatio(struct soap *soap, const char *tag, prodml22__StorativityRatio **a, const char *type) +SOAP_FMAC3 prodml23__StorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__StorativityRatio(struct soap *soap, const char *tag, prodml23__StorativityRatio **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__StorativityRatio **)soap_malloc(soap, sizeof(prodml22__StorativityRatio *)))) + if (!(a = (prodml23__StorativityRatio **)soap_malloc(soap, sizeof(prodml23__StorativityRatio *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__StorativityRatio *)soap_instantiate_prodml22__StorativityRatio(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__StorativityRatio *)soap_instantiate_prodml23__StorativityRatio(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402609,57 +402752,57 @@ SOAP_FMAC3 prodml22__StorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__S } } else - { a = (prodml22__StorativityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio, sizeof(prodml22__StorativityRatio), 0, gsoap_eml2_3_fbase); + { a = (prodml23__StorativityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio, sizeof(prodml23__StorativityRatio), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__StorativityRatio(soap, tag ? tag : "prodml22:StorativityRatio", -2, a, type)) + if (soap_out_PointerToprodml23__StorativityRatio(soap, tag ? tag : "prodml23:StorativityRatio", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__StorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__StorativityRatio(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__StorativityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ModelName(struct soap *soap, prodml22__ModelName *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ModelName(struct soap *soap, prodml23__ModelName *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ModelName(struct soap *soap, const char *tag, int id, prodml22__ModelName *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ModelName(struct soap *soap, const char *tag, int id, prodml23__ModelName *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName ? type : NULL); } -SOAP_FMAC3 prodml22__ModelName ** SOAP_FMAC4 soap_in_PointerToprodml22__ModelName(struct soap *soap, const char *tag, prodml22__ModelName **a, const char *type) +SOAP_FMAC3 prodml23__ModelName ** SOAP_FMAC4 soap_in_PointerToprodml23__ModelName(struct soap *soap, const char *tag, prodml23__ModelName **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ModelName **)soap_malloc(soap, sizeof(prodml22__ModelName *)))) + if (!(a = (prodml23__ModelName **)soap_malloc(soap, sizeof(prodml23__ModelName *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ModelName *)soap_instantiate_prodml22__ModelName(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ModelName *)soap_instantiate_prodml23__ModelName(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402668,57 +402811,57 @@ SOAP_FMAC3 prodml22__ModelName ** SOAP_FMAC4 soap_in_PointerToprodml22__ModelNam } } else - { a = (prodml22__ModelName **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName, sizeof(prodml22__ModelName), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ModelName **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName, sizeof(prodml23__ModelName), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ModelName(struct soap *soap, prodml22__ModelName *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ModelName(struct soap *soap, prodml23__ModelName *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ModelName(soap, tag ? tag : "prodml22:ModelName", -2, a, type)) + if (soap_out_PointerToprodml23__ModelName(soap, tag ? tag : "prodml23:ModelName", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ModelName ** SOAP_FMAC4 soap_get_PointerToprodml22__ModelName(struct soap *soap, prodml22__ModelName **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ModelName ** SOAP_FMAC4 soap_get_PointerToprodml23__ModelName(struct soap *soap, prodml23__ModelName **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ModelName(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ModelName(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, int id, prodml22__OrientationOfNormalToBoundary1 *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, int id, prodml23__OrientationOfNormalToBoundary1 *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 ? type : NULL); } -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, prodml22__OrientationOfNormalToBoundary1 **a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *tag, prodml23__OrientationOfNormalToBoundary1 **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OrientationOfNormalToBoundary1 **)soap_malloc(soap, sizeof(prodml22__OrientationOfNormalToBoundary1 *)))) + if (!(a = (prodml23__OrientationOfNormalToBoundary1 **)soap_malloc(soap, sizeof(prodml23__OrientationOfNormalToBoundary1 *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OrientationOfNormalToBoundary1 *)soap_instantiate_prodml22__OrientationOfNormalToBoundary1(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OrientationOfNormalToBoundary1 *)soap_instantiate_prodml23__OrientationOfNormalToBoundary1(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402727,57 +402870,57 @@ SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_in_Pointe } } else - { a = (prodml22__OrientationOfNormalToBoundary1 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1, sizeof(prodml22__OrientationOfNormalToBoundary1), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfNormalToBoundary1 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1, sizeof(prodml23__OrientationOfNormalToBoundary1), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(soap, tag ? tag : "prodml22:OrientationOfNormalToBoundary1", -2, a, type)) + if (soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(soap, tag ? tag : "prodml23:OrientationOfNormalToBoundary1", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary4(struct soap *soap, const char *tag, int id, prodml22__DistanceToBoundary4 *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary4(struct soap *soap, const char *tag, int id, prodml23__DistanceToBoundary4 *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceToBoundary4 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary4(struct soap *soap, const char *tag, prodml22__DistanceToBoundary4 **a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary4 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary4(struct soap *soap, const char *tag, prodml23__DistanceToBoundary4 **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceToBoundary4 **)soap_malloc(soap, sizeof(prodml22__DistanceToBoundary4 *)))) + if (!(a = (prodml23__DistanceToBoundary4 **)soap_malloc(soap, sizeof(prodml23__DistanceToBoundary4 *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceToBoundary4 *)soap_instantiate_prodml22__DistanceToBoundary4(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceToBoundary4 *)soap_instantiate_prodml23__DistanceToBoundary4(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402786,57 +402929,57 @@ SOAP_FMAC3 prodml22__DistanceToBoundary4 ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__DistanceToBoundary4 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4, sizeof(prodml22__DistanceToBoundary4), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary4 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4, sizeof(prodml23__DistanceToBoundary4), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceToBoundary4(soap, tag ? tag : "prodml22:DistanceToBoundary4", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceToBoundary4(soap, tag ? tag : "prodml23:DistanceToBoundary4", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceToBoundary4 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary4 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceToBoundary4(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceToBoundary4(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary3(struct soap *soap, const char *tag, int id, prodml22__DistanceToBoundary3 *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary3(struct soap *soap, const char *tag, int id, prodml23__DistanceToBoundary3 *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceToBoundary3 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary3(struct soap *soap, const char *tag, prodml22__DistanceToBoundary3 **a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary3 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary3(struct soap *soap, const char *tag, prodml23__DistanceToBoundary3 **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceToBoundary3 **)soap_malloc(soap, sizeof(prodml22__DistanceToBoundary3 *)))) + if (!(a = (prodml23__DistanceToBoundary3 **)soap_malloc(soap, sizeof(prodml23__DistanceToBoundary3 *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceToBoundary3 *)soap_instantiate_prodml22__DistanceToBoundary3(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceToBoundary3 *)soap_instantiate_prodml23__DistanceToBoundary3(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402845,57 +402988,57 @@ SOAP_FMAC3 prodml22__DistanceToBoundary3 ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__DistanceToBoundary3 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3, sizeof(prodml22__DistanceToBoundary3), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary3 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3, sizeof(prodml23__DistanceToBoundary3), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceToBoundary3(soap, tag ? tag : "prodml22:DistanceToBoundary3", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceToBoundary3(soap, tag ? tag : "prodml23:DistanceToBoundary3", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceToBoundary3 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary3 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceToBoundary3(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceToBoundary3(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary2(struct soap *soap, const char *tag, int id, prodml22__DistanceToBoundary2 *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary2(struct soap *soap, const char *tag, int id, prodml23__DistanceToBoundary2 *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceToBoundary2 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary2(struct soap *soap, const char *tag, prodml22__DistanceToBoundary2 **a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary2 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary2(struct soap *soap, const char *tag, prodml23__DistanceToBoundary2 **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceToBoundary2 **)soap_malloc(soap, sizeof(prodml22__DistanceToBoundary2 *)))) + if (!(a = (prodml23__DistanceToBoundary2 **)soap_malloc(soap, sizeof(prodml23__DistanceToBoundary2 *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceToBoundary2 *)soap_instantiate_prodml22__DistanceToBoundary2(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceToBoundary2 *)soap_instantiate_prodml23__DistanceToBoundary2(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402904,57 +403047,57 @@ SOAP_FMAC3 prodml22__DistanceToBoundary2 ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__DistanceToBoundary2 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2, sizeof(prodml22__DistanceToBoundary2), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary2 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2, sizeof(prodml23__DistanceToBoundary2), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceToBoundary2(soap, tag ? tag : "prodml22:DistanceToBoundary2", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceToBoundary2(soap, tag ? tag : "prodml23:DistanceToBoundary2", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceToBoundary2 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary2 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceToBoundary2(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceToBoundary2(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary1(struct soap *soap, const char *tag, int id, prodml22__DistanceToBoundary1 *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary1(struct soap *soap, const char *tag, int id, prodml23__DistanceToBoundary1 *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary1(struct soap *soap, const char *tag, prodml22__DistanceToBoundary1 **a, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary1(struct soap *soap, const char *tag, prodml23__DistanceToBoundary1 **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceToBoundary1 **)soap_malloc(soap, sizeof(prodml22__DistanceToBoundary1 *)))) + if (!(a = (prodml23__DistanceToBoundary1 **)soap_malloc(soap, sizeof(prodml23__DistanceToBoundary1 *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceToBoundary1 *)soap_instantiate_prodml22__DistanceToBoundary1(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceToBoundary1 *)soap_instantiate_prodml23__DistanceToBoundary1(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -402963,57 +403106,57 @@ SOAP_FMAC3 prodml22__DistanceToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__DistanceToBoundary1 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1, sizeof(prodml22__DistanceToBoundary1), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceToBoundary1 **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1, sizeof(prodml23__DistanceToBoundary1), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceToBoundary1(soap, tag ? tag : "prodml22:DistanceToBoundary1", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceToBoundary1(soap, tag ? tag : "prodml23:DistanceToBoundary1", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceToBoundary1(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceToBoundary1(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PoreVolumeMeasured(struct soap *soap, const char *tag, int id, prodml22__PoreVolumeMeasured *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PoreVolumeMeasured(struct soap *soap, const char *tag, int id, prodml23__PoreVolumeMeasured *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured ? type : NULL); } -SOAP_FMAC3 prodml22__PoreVolumeMeasured ** SOAP_FMAC4 soap_in_PointerToprodml22__PoreVolumeMeasured(struct soap *soap, const char *tag, prodml22__PoreVolumeMeasured **a, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeMeasured ** SOAP_FMAC4 soap_in_PointerToprodml23__PoreVolumeMeasured(struct soap *soap, const char *tag, prodml23__PoreVolumeMeasured **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PoreVolumeMeasured **)soap_malloc(soap, sizeof(prodml22__PoreVolumeMeasured *)))) + if (!(a = (prodml23__PoreVolumeMeasured **)soap_malloc(soap, sizeof(prodml23__PoreVolumeMeasured *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PoreVolumeMeasured *)soap_instantiate_prodml22__PoreVolumeMeasured(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PoreVolumeMeasured *)soap_instantiate_prodml23__PoreVolumeMeasured(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403022,57 +403165,57 @@ SOAP_FMAC3 prodml22__PoreVolumeMeasured ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__PoreVolumeMeasured **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured, sizeof(prodml22__PoreVolumeMeasured), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PoreVolumeMeasured **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured, sizeof(prodml23__PoreVolumeMeasured), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PoreVolumeMeasured(soap, tag ? tag : "prodml22:PoreVolumeMeasured", -2, a, type)) + if (soap_out_PointerToprodml23__PoreVolumeMeasured(soap, tag ? tag : "prodml23:PoreVolumeMeasured", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PoreVolumeMeasured ** SOAP_FMAC4 soap_get_PointerToprodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeMeasured ** SOAP_FMAC4 soap_get_PointerToprodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PoreVolumeMeasured(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PoreVolumeMeasured(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DrainageAreaMeasured(struct soap *soap, const char *tag, int id, prodml22__DrainageAreaMeasured *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DrainageAreaMeasured(struct soap *soap, const char *tag, int id, prodml23__DrainageAreaMeasured *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured ? type : NULL); } -SOAP_FMAC3 prodml22__DrainageAreaMeasured ** SOAP_FMAC4 soap_in_PointerToprodml22__DrainageAreaMeasured(struct soap *soap, const char *tag, prodml22__DrainageAreaMeasured **a, const char *type) +SOAP_FMAC3 prodml23__DrainageAreaMeasured ** SOAP_FMAC4 soap_in_PointerToprodml23__DrainageAreaMeasured(struct soap *soap, const char *tag, prodml23__DrainageAreaMeasured **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DrainageAreaMeasured **)soap_malloc(soap, sizeof(prodml22__DrainageAreaMeasured *)))) + if (!(a = (prodml23__DrainageAreaMeasured **)soap_malloc(soap, sizeof(prodml23__DrainageAreaMeasured *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DrainageAreaMeasured *)soap_instantiate_prodml22__DrainageAreaMeasured(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DrainageAreaMeasured *)soap_instantiate_prodml23__DrainageAreaMeasured(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403081,57 +403224,57 @@ SOAP_FMAC3 prodml22__DrainageAreaMeasured ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__DrainageAreaMeasured **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured, sizeof(prodml22__DrainageAreaMeasured), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DrainageAreaMeasured **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured, sizeof(prodml23__DrainageAreaMeasured), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DrainageAreaMeasured(soap, tag ? tag : "prodml22:DrainageAreaMeasured", -2, a, type)) + if (soap_out_PointerToprodml23__DrainageAreaMeasured(soap, tag ? tag : "prodml23:DrainageAreaMeasured", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DrainageAreaMeasured ** SOAP_FMAC4 soap_get_PointerToprodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DrainageAreaMeasured ** SOAP_FMAC4 soap_get_PointerToprodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DrainageAreaMeasured(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DrainageAreaMeasured(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LeakSkin(struct soap *soap, const char *tag, int id, prodml22__LeakSkin *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LeakSkin(struct soap *soap, const char *tag, int id, prodml23__LeakSkin *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin ? type : NULL); } -SOAP_FMAC3 prodml22__LeakSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__LeakSkin(struct soap *soap, const char *tag, prodml22__LeakSkin **a, const char *type) +SOAP_FMAC3 prodml23__LeakSkin ** SOAP_FMAC4 soap_in_PointerToprodml23__LeakSkin(struct soap *soap, const char *tag, prodml23__LeakSkin **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LeakSkin **)soap_malloc(soap, sizeof(prodml22__LeakSkin *)))) + if (!(a = (prodml23__LeakSkin **)soap_malloc(soap, sizeof(prodml23__LeakSkin *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LeakSkin *)soap_instantiate_prodml22__LeakSkin(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LeakSkin *)soap_instantiate_prodml23__LeakSkin(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403140,57 +403283,57 @@ SOAP_FMAC3 prodml22__LeakSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__LeakSkin( } } else - { a = (prodml22__LeakSkin **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin, sizeof(prodml22__LeakSkin), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LeakSkin **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin, sizeof(prodml23__LeakSkin), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LeakSkin(soap, tag ? tag : "prodml22:LeakSkin", -2, a, type)) + if (soap_out_PointerToprodml23__LeakSkin(soap, tag ? tag : "prodml23:LeakSkin", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LeakSkin ** SOAP_FMAC4 soap_get_PointerToprodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LeakSkin ** SOAP_FMAC4 soap_get_PointerToprodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LeakSkin(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LeakSkin(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeltaTimeStorageChanges(struct soap *soap, const char *tag, int id, prodml22__DeltaTimeStorageChanges *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeltaTimeStorageChanges(struct soap *soap, const char *tag, int id, prodml23__DeltaTimeStorageChanges *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges ? type : NULL); } -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_in_PointerToprodml22__DeltaTimeStorageChanges(struct soap *soap, const char *tag, prodml22__DeltaTimeStorageChanges **a, const char *type) +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_in_PointerToprodml23__DeltaTimeStorageChanges(struct soap *soap, const char *tag, prodml23__DeltaTimeStorageChanges **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DeltaTimeStorageChanges **)soap_malloc(soap, sizeof(prodml22__DeltaTimeStorageChanges *)))) + if (!(a = (prodml23__DeltaTimeStorageChanges **)soap_malloc(soap, sizeof(prodml23__DeltaTimeStorageChanges *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DeltaTimeStorageChanges *)soap_instantiate_prodml22__DeltaTimeStorageChanges(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DeltaTimeStorageChanges *)soap_instantiate_prodml23__DeltaTimeStorageChanges(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403199,57 +403342,57 @@ SOAP_FMAC3 prodml22__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__DeltaTimeStorageChanges **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges, sizeof(prodml22__DeltaTimeStorageChanges), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DeltaTimeStorageChanges **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges, sizeof(prodml23__DeltaTimeStorageChanges), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DeltaTimeStorageChanges(soap, tag ? tag : "prodml22:DeltaTimeStorageChanges", -2, a, type)) + if (soap_out_PointerToprodml23__DeltaTimeStorageChanges(soap, tag ? tag : "prodml23:DeltaTimeStorageChanges", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_get_PointerToprodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_get_PointerToprodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DeltaTimeStorageChanges(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DeltaTimeStorageChanges(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, int id, prodml22__RatioInitialToFinalWellboreStorage *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, int id, prodml23__RatioInitialToFinalWellboreStorage *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage ? type : NULL); } -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, prodml22__RatioInitialToFinalWellboreStorage **a, const char *type) +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *tag, prodml23__RatioInitialToFinalWellboreStorage **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RatioInitialToFinalWellboreStorage **)soap_malloc(soap, sizeof(prodml22__RatioInitialToFinalWellboreStorage *)))) + if (!(a = (prodml23__RatioInitialToFinalWellboreStorage **)soap_malloc(soap, sizeof(prodml23__RatioInitialToFinalWellboreStorage *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RatioInitialToFinalWellboreStorage *)soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RatioInitialToFinalWellboreStorage *)soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403258,57 +403401,57 @@ SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_in_Po } } else - { a = (prodml22__RatioInitialToFinalWellboreStorage **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage, sizeof(prodml22__RatioInitialToFinalWellboreStorage), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RatioInitialToFinalWellboreStorage **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage, sizeof(prodml23__RatioInitialToFinalWellboreStorage), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, tag ? tag : "prodml22:RatioInitialToFinalWellboreStorage", -2, a, type)) + if (soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, tag ? tag : "prodml23:RatioInitialToFinalWellboreStorage", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_get_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_get_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowTestMeasurementSet(struct soap *soap, const char *tag, int id, prodml22__FlowTestMeasurementSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowTestMeasurementSet(struct soap *soap, const char *tag, int id, prodml23__FlowTestMeasurementSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet ? type : NULL); } -SOAP_FMAC3 prodml22__FlowTestMeasurementSet ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowTestMeasurementSet(struct soap *soap, const char *tag, prodml22__FlowTestMeasurementSet **a, const char *type) +SOAP_FMAC3 prodml23__FlowTestMeasurementSet ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowTestMeasurementSet(struct soap *soap, const char *tag, prodml23__FlowTestMeasurementSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FlowTestMeasurementSet **)soap_malloc(soap, sizeof(prodml22__FlowTestMeasurementSet *)))) + if (!(a = (prodml23__FlowTestMeasurementSet **)soap_malloc(soap, sizeof(prodml23__FlowTestMeasurementSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FlowTestMeasurementSet *)soap_instantiate_prodml22__FlowTestMeasurementSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FlowTestMeasurementSet *)soap_instantiate_prodml23__FlowTestMeasurementSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403317,57 +403460,57 @@ SOAP_FMAC3 prodml22__FlowTestMeasurementSet ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__FlowTestMeasurementSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, sizeof(prodml22__FlowTestMeasurementSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FlowTestMeasurementSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, sizeof(prodml23__FlowTestMeasurementSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, tag ? tag : "prodml22:FlowTestMeasurementSet", -2, a, type)) + if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, tag ? tag : "prodml23:FlowTestMeasurementSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlowTestMeasurementSet ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowTestMeasurementSet ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WaterSampleComponent(struct soap *soap, const char *tag, int id, prodml22__WaterSampleComponent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WaterSampleComponent(struct soap *soap, const char *tag, int id, prodml23__WaterSampleComponent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent ? type : NULL); } -SOAP_FMAC3 prodml22__WaterSampleComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__WaterSampleComponent(struct soap *soap, const char *tag, prodml22__WaterSampleComponent **a, const char *type) +SOAP_FMAC3 prodml23__WaterSampleComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__WaterSampleComponent(struct soap *soap, const char *tag, prodml23__WaterSampleComponent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WaterSampleComponent **)soap_malloc(soap, sizeof(prodml22__WaterSampleComponent *)))) + if (!(a = (prodml23__WaterSampleComponent **)soap_malloc(soap, sizeof(prodml23__WaterSampleComponent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WaterSampleComponent *)soap_instantiate_prodml22__WaterSampleComponent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WaterSampleComponent *)soap_instantiate_prodml23__WaterSampleComponent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403376,57 +403519,57 @@ SOAP_FMAC3 prodml22__WaterSampleComponent ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__WaterSampleComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, sizeof(prodml22__WaterSampleComponent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WaterSampleComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, sizeof(prodml23__WaterSampleComponent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WaterSampleComponent(soap, tag ? tag : "prodml22:WaterSampleComponent", -2, a, type)) + if (soap_out_PointerToprodml23__WaterSampleComponent(soap, tag ? tag : "prodml23:WaterSampleComponent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WaterSampleComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterSampleComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WaterSampleComponent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WaterSampleComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WaterAnalysisTest(struct soap *soap, const char *tag, int id, prodml22__WaterAnalysisTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WaterAnalysisTest(struct soap *soap, const char *tag, int id, prodml23__WaterAnalysisTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest ? type : NULL); } -SOAP_FMAC3 prodml22__WaterAnalysisTest ** SOAP_FMAC4 soap_in_PointerToprodml22__WaterAnalysisTest(struct soap *soap, const char *tag, prodml22__WaterAnalysisTest **a, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTest ** SOAP_FMAC4 soap_in_PointerToprodml23__WaterAnalysisTest(struct soap *soap, const char *tag, prodml23__WaterAnalysisTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WaterAnalysisTest **)soap_malloc(soap, sizeof(prodml22__WaterAnalysisTest *)))) + if (!(a = (prodml23__WaterAnalysisTest **)soap_malloc(soap, sizeof(prodml23__WaterAnalysisTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WaterAnalysisTest *)soap_instantiate_prodml22__WaterAnalysisTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WaterAnalysisTest *)soap_instantiate_prodml23__WaterAnalysisTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403435,57 +403578,57 @@ SOAP_FMAC3 prodml22__WaterAnalysisTest ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__WaterAnalysisTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, sizeof(prodml22__WaterAnalysisTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WaterAnalysisTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, sizeof(prodml23__WaterAnalysisTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WaterAnalysisTest(soap, tag ? tag : "prodml22:WaterAnalysisTest", -2, a, type)) + if (soap_out_PointerToprodml23__WaterAnalysisTest(soap, tag ? tag : "prodml23:WaterAnalysisTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WaterAnalysisTest ** SOAP_FMAC4 soap_get_PointerToprodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTest ** SOAP_FMAC4 soap_get_PointerToprodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WaterAnalysisTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WaterAnalysisTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NonHydrocarbonTest(struct soap *soap, const char *tag, int id, prodml22__NonHydrocarbonTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NonHydrocarbonTest(struct soap *soap, const char *tag, int id, prodml23__NonHydrocarbonTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest ? type : NULL); } -SOAP_FMAC3 prodml22__NonHydrocarbonTest ** SOAP_FMAC4 soap_in_PointerToprodml22__NonHydrocarbonTest(struct soap *soap, const char *tag, prodml22__NonHydrocarbonTest **a, const char *type) +SOAP_FMAC3 prodml23__NonHydrocarbonTest ** SOAP_FMAC4 soap_in_PointerToprodml23__NonHydrocarbonTest(struct soap *soap, const char *tag, prodml23__NonHydrocarbonTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__NonHydrocarbonTest **)soap_malloc(soap, sizeof(prodml22__NonHydrocarbonTest *)))) + if (!(a = (prodml23__NonHydrocarbonTest **)soap_malloc(soap, sizeof(prodml23__NonHydrocarbonTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__NonHydrocarbonTest *)soap_instantiate_prodml22__NonHydrocarbonTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__NonHydrocarbonTest *)soap_instantiate_prodml23__NonHydrocarbonTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403494,57 +403637,57 @@ SOAP_FMAC3 prodml22__NonHydrocarbonTest ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__NonHydrocarbonTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, sizeof(prodml22__NonHydrocarbonTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__NonHydrocarbonTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, sizeof(prodml23__NonHydrocarbonTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__NonHydrocarbonTest(soap, tag ? tag : "prodml22:NonHydrocarbonTest", -2, a, type)) + if (soap_out_PointerToprodml23__NonHydrocarbonTest(soap, tag ? tag : "prodml23:NonHydrocarbonTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__NonHydrocarbonTest ** SOAP_FMAC4 soap_get_PointerToprodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NonHydrocarbonTest ** SOAP_FMAC4 soap_get_PointerToprodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__NonHydrocarbonTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__NonHydrocarbonTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterfacialTensionTest(struct soap *soap, const char *tag, int id, prodml22__InterfacialTensionTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterfacialTensionTest(struct soap *soap, const char *tag, int id, prodml23__InterfacialTensionTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest ? type : NULL); } -SOAP_FMAC3 prodml22__InterfacialTensionTest ** SOAP_FMAC4 soap_in_PointerToprodml22__InterfacialTensionTest(struct soap *soap, const char *tag, prodml22__InterfacialTensionTest **a, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTest ** SOAP_FMAC4 soap_in_PointerToprodml23__InterfacialTensionTest(struct soap *soap, const char *tag, prodml23__InterfacialTensionTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InterfacialTensionTest **)soap_malloc(soap, sizeof(prodml22__InterfacialTensionTest *)))) + if (!(a = (prodml23__InterfacialTensionTest **)soap_malloc(soap, sizeof(prodml23__InterfacialTensionTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InterfacialTensionTest *)soap_instantiate_prodml22__InterfacialTensionTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InterfacialTensionTest *)soap_instantiate_prodml23__InterfacialTensionTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403553,57 +403696,57 @@ SOAP_FMAC3 prodml22__InterfacialTensionTest ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__InterfacialTensionTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, sizeof(prodml22__InterfacialTensionTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InterfacialTensionTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, sizeof(prodml23__InterfacialTensionTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InterfacialTensionTest(soap, tag ? tag : "prodml22:InterfacialTensionTest", -2, a, type)) + if (soap_out_PointerToprodml23__InterfacialTensionTest(soap, tag ? tag : "prodml23:InterfacialTensionTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InterfacialTensionTest ** SOAP_FMAC4 soap_get_PointerToprodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTest ** SOAP_FMAC4 soap_get_PointerToprodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InterfacialTensionTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InterfacialTensionTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__STOAnalysis(struct soap *soap, const char *tag, int id, prodml22__STOAnalysis *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__STOAnalysis(struct soap *soap, const char *tag, int id, prodml23__STOAnalysis *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis ? type : NULL); } -SOAP_FMAC3 prodml22__STOAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__STOAnalysis(struct soap *soap, const char *tag, prodml22__STOAnalysis **a, const char *type) +SOAP_FMAC3 prodml23__STOAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__STOAnalysis(struct soap *soap, const char *tag, prodml23__STOAnalysis **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__STOAnalysis **)soap_malloc(soap, sizeof(prodml22__STOAnalysis *)))) + if (!(a = (prodml23__STOAnalysis **)soap_malloc(soap, sizeof(prodml23__STOAnalysis *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__STOAnalysis *)soap_instantiate_prodml22__STOAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__STOAnalysis *)soap_instantiate_prodml23__STOAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403612,57 +403755,57 @@ SOAP_FMAC3 prodml22__STOAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__STOAna } } else - { a = (prodml22__STOAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, sizeof(prodml22__STOAnalysis), 0, gsoap_eml2_3_fbase); + { a = (prodml23__STOAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, sizeof(prodml23__STOAnalysis), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__STOAnalysis(soap, tag ? tag : "prodml22:STOAnalysis", -2, a, type)) + if (soap_out_PointerToprodml23__STOAnalysis(soap, tag ? tag : "prodml23:STOAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__STOAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__STOAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__STOAnalysis(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__STOAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, int id, prodml22__MultipleContactMiscibilityTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, int id, prodml23__MultipleContactMiscibilityTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest ? type : NULL); } -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_in_PointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, prodml22__MultipleContactMiscibilityTest **a, const char *type) +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_in_PointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, prodml23__MultipleContactMiscibilityTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MultipleContactMiscibilityTest **)soap_malloc(soap, sizeof(prodml22__MultipleContactMiscibilityTest *)))) + if (!(a = (prodml23__MultipleContactMiscibilityTest **)soap_malloc(soap, sizeof(prodml23__MultipleContactMiscibilityTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__MultipleContactMiscibilityTest *)soap_instantiate_prodml22__MultipleContactMiscibilityTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__MultipleContactMiscibilityTest *)soap_instantiate_prodml23__MultipleContactMiscibilityTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403671,57 +403814,57 @@ SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_in_Pointe } } else - { a = (prodml22__MultipleContactMiscibilityTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, sizeof(prodml22__MultipleContactMiscibilityTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__MultipleContactMiscibilityTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, sizeof(prodml23__MultipleContactMiscibilityTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag ? tag : "prodml22:MultipleContactMiscibilityTest", -2, a, type)) + if (soap_out_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag ? tag : "prodml23:MultipleContactMiscibilityTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_get_PointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_get_PointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeTest(struct soap *soap, const char *tag, int id, prodml22__SlimTubeTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeTest(struct soap *soap, const char *tag, int id, prodml23__SlimTubeTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest ? type : NULL); } -SOAP_FMAC3 prodml22__SlimTubeTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeTest(struct soap *soap, const char *tag, prodml22__SlimTubeTest **a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTest ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeTest(struct soap *soap, const char *tag, prodml23__SlimTubeTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SlimTubeTest **)soap_malloc(soap, sizeof(prodml22__SlimTubeTest *)))) + if (!(a = (prodml23__SlimTubeTest **)soap_malloc(soap, sizeof(prodml23__SlimTubeTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SlimTubeTest *)soap_instantiate_prodml22__SlimTubeTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SlimTubeTest *)soap_instantiate_prodml23__SlimTubeTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403730,57 +403873,57 @@ SOAP_FMAC3 prodml22__SlimTubeTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimT } } else - { a = (prodml22__SlimTubeTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, sizeof(prodml22__SlimTubeTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, sizeof(prodml23__SlimTubeTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SlimTubeTest(soap, tag ? tag : "prodml22:SlimTubeTest", -2, a, type)) + if (soap_out_PointerToprodml23__SlimTubeTest(soap, tag ? tag : "prodml23:SlimTubeTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SlimTubeTest ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTest ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SlimTubeTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SlimTubeTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SwellingTest(struct soap *soap, const char *tag, int id, prodml22__SwellingTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SwellingTest(struct soap *soap, const char *tag, int id, prodml23__SwellingTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest ? type : NULL); } -SOAP_FMAC3 prodml22__SwellingTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SwellingTest(struct soap *soap, const char *tag, prodml22__SwellingTest **a, const char *type) +SOAP_FMAC3 prodml23__SwellingTest ** SOAP_FMAC4 soap_in_PointerToprodml23__SwellingTest(struct soap *soap, const char *tag, prodml23__SwellingTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SwellingTest **)soap_malloc(soap, sizeof(prodml22__SwellingTest *)))) + if (!(a = (prodml23__SwellingTest **)soap_malloc(soap, sizeof(prodml23__SwellingTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SwellingTest *)soap_instantiate_prodml22__SwellingTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SwellingTest *)soap_instantiate_prodml23__SwellingTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403789,57 +403932,57 @@ SOAP_FMAC3 prodml22__SwellingTest ** SOAP_FMAC4 soap_in_PointerToprodml22__Swell } } else - { a = (prodml22__SwellingTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, sizeof(prodml22__SwellingTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SwellingTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, sizeof(prodml23__SwellingTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SwellingTest(soap, tag ? tag : "prodml22:SwellingTest", -2, a, type)) + if (soap_out_PointerToprodml23__SwellingTest(soap, tag ? tag : "prodml23:SwellingTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SwellingTest ** SOAP_FMAC4 soap_get_PointerToprodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SwellingTest ** SOAP_FMAC4 soap_get_PointerToprodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SwellingTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SwellingTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, int id, prodml22__VaporLiquidEquilibriumTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, int id, prodml23__VaporLiquidEquilibriumTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest ? type : NULL); } -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_in_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, prodml22__VaporLiquidEquilibriumTest **a, const char *type) +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_in_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, prodml23__VaporLiquidEquilibriumTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__VaporLiquidEquilibriumTest **)soap_malloc(soap, sizeof(prodml22__VaporLiquidEquilibriumTest *)))) + if (!(a = (prodml23__VaporLiquidEquilibriumTest **)soap_malloc(soap, sizeof(prodml23__VaporLiquidEquilibriumTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__VaporLiquidEquilibriumTest *)soap_instantiate_prodml22__VaporLiquidEquilibriumTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__VaporLiquidEquilibriumTest *)soap_instantiate_prodml23__VaporLiquidEquilibriumTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403848,57 +403991,57 @@ SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__VaporLiquidEquilibriumTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, sizeof(prodml22__VaporLiquidEquilibriumTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__VaporLiquidEquilibriumTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, sizeof(prodml23__VaporLiquidEquilibriumTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag ? tag : "prodml22:VaporLiquidEquilibriumTest", -2, a, type)) + if (soap_out_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag ? tag : "prodml23:VaporLiquidEquilibriumTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_get_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_get_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OtherMeasurementTest(struct soap *soap, const char *tag, int id, prodml22__OtherMeasurementTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OtherMeasurementTest(struct soap *soap, const char *tag, int id, prodml23__OtherMeasurementTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest ? type : NULL); } -SOAP_FMAC3 prodml22__OtherMeasurementTest ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherMeasurementTest(struct soap *soap, const char *tag, prodml22__OtherMeasurementTest **a, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTest ** SOAP_FMAC4 soap_in_PointerToprodml23__OtherMeasurementTest(struct soap *soap, const char *tag, prodml23__OtherMeasurementTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OtherMeasurementTest **)soap_malloc(soap, sizeof(prodml22__OtherMeasurementTest *)))) + if (!(a = (prodml23__OtherMeasurementTest **)soap_malloc(soap, sizeof(prodml23__OtherMeasurementTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OtherMeasurementTest *)soap_instantiate_prodml22__OtherMeasurementTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OtherMeasurementTest *)soap_instantiate_prodml23__OtherMeasurementTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403907,57 +404050,57 @@ SOAP_FMAC3 prodml22__OtherMeasurementTest ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__OtherMeasurementTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, sizeof(prodml22__OtherMeasurementTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OtherMeasurementTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, sizeof(prodml23__OtherMeasurementTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OtherMeasurementTest(soap, tag ? tag : "prodml22:OtherMeasurementTest", -2, a, type)) + if (soap_out_PointerToprodml23__OtherMeasurementTest(soap, tag ? tag : "prodml23:OtherMeasurementTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OtherMeasurementTest ** SOAP_FMAC4 soap_get_PointerToprodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTest ** SOAP_FMAC4 soap_get_PointerToprodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OtherMeasurementTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OtherMeasurementTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSeparatorTest(struct soap *soap, const char *tag, int id, prodml22__FluidSeparatorTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSeparatorTest(struct soap *soap, const char *tag, int id, prodml23__FluidSeparatorTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest ? type : NULL); } -SOAP_FMAC3 prodml22__FluidSeparatorTest ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSeparatorTest(struct soap *soap, const char *tag, prodml22__FluidSeparatorTest **a, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTest ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSeparatorTest(struct soap *soap, const char *tag, prodml23__FluidSeparatorTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidSeparatorTest **)soap_malloc(soap, sizeof(prodml22__FluidSeparatorTest *)))) + if (!(a = (prodml23__FluidSeparatorTest **)soap_malloc(soap, sizeof(prodml23__FluidSeparatorTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidSeparatorTest *)soap_instantiate_prodml22__FluidSeparatorTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidSeparatorTest *)soap_instantiate_prodml23__FluidSeparatorTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -403966,57 +404109,57 @@ SOAP_FMAC3 prodml22__FluidSeparatorTest ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__FluidSeparatorTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, sizeof(prodml22__FluidSeparatorTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSeparatorTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, sizeof(prodml23__FluidSeparatorTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidSeparatorTest(soap, tag ? tag : "prodml22:FluidSeparatorTest", -2, a, type)) + if (soap_out_PointerToprodml23__FluidSeparatorTest(soap, tag ? tag : "prodml23:FluidSeparatorTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidSeparatorTest ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTest ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidSeparatorTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidSeparatorTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, int id, prodml22__ConstantVolumeDepletionTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, int id, prodml23__ConstantVolumeDepletionTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest ? type : NULL); } -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_in_PointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, prodml22__ConstantVolumeDepletionTest **a, const char *type) +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_in_PointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, prodml23__ConstantVolumeDepletionTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ConstantVolumeDepletionTest **)soap_malloc(soap, sizeof(prodml22__ConstantVolumeDepletionTest *)))) + if (!(a = (prodml23__ConstantVolumeDepletionTest **)soap_malloc(soap, sizeof(prodml23__ConstantVolumeDepletionTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ConstantVolumeDepletionTest *)soap_instantiate_prodml22__ConstantVolumeDepletionTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ConstantVolumeDepletionTest *)soap_instantiate_prodml23__ConstantVolumeDepletionTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -404025,57 +404168,57 @@ SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__ConstantVolumeDepletionTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, sizeof(prodml22__ConstantVolumeDepletionTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantVolumeDepletionTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, sizeof(prodml23__ConstantVolumeDepletionTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag ? tag : "prodml22:ConstantVolumeDepletionTest", -2, a, type)) + if (soap_out_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag ? tag : "prodml23:ConstantVolumeDepletionTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_get_PointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_get_PointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DifferentialLiberationTest(struct soap *soap, const char *tag, int id, prodml22__DifferentialLiberationTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DifferentialLiberationTest(struct soap *soap, const char *tag, int id, prodml23__DifferentialLiberationTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest ? type : NULL); } -SOAP_FMAC3 prodml22__DifferentialLiberationTest ** SOAP_FMAC4 soap_in_PointerToprodml22__DifferentialLiberationTest(struct soap *soap, const char *tag, prodml22__DifferentialLiberationTest **a, const char *type) +SOAP_FMAC3 prodml23__DifferentialLiberationTest ** SOAP_FMAC4 soap_in_PointerToprodml23__DifferentialLiberationTest(struct soap *soap, const char *tag, prodml23__DifferentialLiberationTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DifferentialLiberationTest **)soap_malloc(soap, sizeof(prodml22__DifferentialLiberationTest *)))) + if (!(a = (prodml23__DifferentialLiberationTest **)soap_malloc(soap, sizeof(prodml23__DifferentialLiberationTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DifferentialLiberationTest *)soap_instantiate_prodml22__DifferentialLiberationTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DifferentialLiberationTest *)soap_instantiate_prodml23__DifferentialLiberationTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -404084,57 +404227,57 @@ SOAP_FMAC3 prodml22__DifferentialLiberationTest ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__DifferentialLiberationTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, sizeof(prodml22__DifferentialLiberationTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DifferentialLiberationTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, sizeof(prodml23__DifferentialLiberationTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DifferentialLiberationTest(soap, tag ? tag : "prodml22:DifferentialLiberationTest", -2, a, type)) + if (soap_out_PointerToprodml23__DifferentialLiberationTest(soap, tag ? tag : "prodml23:DifferentialLiberationTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DifferentialLiberationTest ** SOAP_FMAC4 soap_get_PointerToprodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DifferentialLiberationTest ** SOAP_FMAC4 soap_get_PointerToprodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DifferentialLiberationTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DifferentialLiberationTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationTest(struct soap *soap, const char *tag, int id, prodml22__SaturationTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationTest(struct soap *soap, const char *tag, int id, prodml23__SaturationTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest ? type : NULL); } -SOAP_FMAC3 prodml22__SaturationTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationTest(struct soap *soap, const char *tag, prodml22__SaturationTest **a, const char *type) +SOAP_FMAC3 prodml23__SaturationTest ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationTest(struct soap *soap, const char *tag, prodml23__SaturationTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SaturationTest **)soap_malloc(soap, sizeof(prodml22__SaturationTest *)))) + if (!(a = (prodml23__SaturationTest **)soap_malloc(soap, sizeof(prodml23__SaturationTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SaturationTest *)soap_instantiate_prodml22__SaturationTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SaturationTest *)soap_instantiate_prodml23__SaturationTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -404143,57 +404286,57 @@ SOAP_FMAC3 prodml22__SaturationTest ** SOAP_FMAC4 soap_in_PointerToprodml22__Sat } } else - { a = (prodml22__SaturationTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, sizeof(prodml22__SaturationTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SaturationTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, sizeof(prodml23__SaturationTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SaturationTest(soap, tag ? tag : "prodml22:SaturationTest", -2, a, type)) + if (soap_out_PointerToprodml23__SaturationTest(soap, tag ? tag : "prodml23:SaturationTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SaturationTest ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationTest ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SaturationTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SaturationTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, int id, prodml22__ConstantCompositionExpansionTest *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, int id, prodml23__ConstantCompositionExpansionTest *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest ? type : NULL); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_in_PointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, prodml22__ConstantCompositionExpansionTest **a, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_in_PointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, prodml23__ConstantCompositionExpansionTest **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ConstantCompositionExpansionTest **)soap_malloc(soap, sizeof(prodml22__ConstantCompositionExpansionTest *)))) + if (!(a = (prodml23__ConstantCompositionExpansionTest **)soap_malloc(soap, sizeof(prodml23__ConstantCompositionExpansionTest *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ConstantCompositionExpansionTest *)soap_instantiate_prodml22__ConstantCompositionExpansionTest(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ConstantCompositionExpansionTest *)soap_instantiate_prodml23__ConstantCompositionExpansionTest(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -404202,57 +404345,57 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__ConstantCompositionExpansionTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, sizeof(prodml22__ConstantCompositionExpansionTest), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantCompositionExpansionTest **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, sizeof(prodml23__ConstantCompositionExpansionTest), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag ? tag : "prodml22:ConstantCompositionExpansionTest", -2, a, type)) + if (soap_out_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag ? tag : "prodml23:ConstantCompositionExpansionTest", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_get_PointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_get_PointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, int id, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, int id, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis ? type : NULL); } -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, prodml22__AtmosphericFlashTestAndCompositionalAnalysis **a, const char *type) +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, prodml23__AtmosphericFlashTestAndCompositionalAnalysis **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AtmosphericFlashTestAndCompositionalAnalysis **)soap_malloc(soap, sizeof(prodml22__AtmosphericFlashTestAndCompositionalAnalysis *)))) + if (!(a = (prodml23__AtmosphericFlashTestAndCompositionalAnalysis **)soap_malloc(soap, sizeof(prodml23__AtmosphericFlashTestAndCompositionalAnalysis *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AtmosphericFlashTestAndCompositionalAnalysis *)soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AtmosphericFlashTestAndCompositionalAnalysis *)soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -404261,57 +404404,57 @@ SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 } } else - { a = (prodml22__AtmosphericFlashTestAndCompositionalAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml22__AtmosphericFlashTestAndCompositionalAnalysis), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AtmosphericFlashTestAndCompositionalAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml23__AtmosphericFlashTestAndCompositionalAnalysis), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag ? tag : "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", -2, a, type)) + if (soap_out_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag ? tag : "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, int id, prodml22__SampleIntegrityAndPreparation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, int id, prodml23__SampleIntegrityAndPreparation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation ? type : NULL); } -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, prodml22__SampleIntegrityAndPreparation **a, const char *type) +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *tag, prodml23__SampleIntegrityAndPreparation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SampleIntegrityAndPreparation **)soap_malloc(soap, sizeof(prodml22__SampleIntegrityAndPreparation *)))) + if (!(a = (prodml23__SampleIntegrityAndPreparation **)soap_malloc(soap, sizeof(prodml23__SampleIntegrityAndPreparation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SampleIntegrityAndPreparation *)soap_instantiate_prodml22__SampleIntegrityAndPreparation(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SampleIntegrityAndPreparation *)soap_instantiate_prodml23__SampleIntegrityAndPreparation(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -404320,76 +404463,76 @@ SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__SampleIntegrityAndPreparation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation, sizeof(prodml22__SampleIntegrityAndPreparation), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SampleIntegrityAndPreparation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation, sizeof(prodml23__SampleIntegrityAndPreparation), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SampleIntegrityAndPreparation(soap, tag ? tag : "prodml22:SampleIntegrityAndPreparation", -2, a, type)) + if (soap_out_PointerToprodml23__SampleIntegrityAndPreparation(soap, tag ? tag : "prodml23:SampleIntegrityAndPreparation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SampleIntegrityAndPreparation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SampleIntegrityAndPreparation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationKind(struct soap *soap, const char *tag, int id, prodml22__SaturationKind *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationKind(struct soap *soap, const char *tag, int id, prodml23__SaturationKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__SaturationKind(soap, tag, id, *a, type); + return soap_out_prodml23__SaturationKind(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__SaturationKind ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationKind(struct soap *soap, const char *tag, prodml22__SaturationKind **a, const char *type) +SOAP_FMAC3 prodml23__SaturationKind ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationKind(struct soap *soap, const char *tag, prodml23__SaturationKind **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SaturationKind **)soap_malloc(soap, sizeof(prodml22__SaturationKind *)))) + if (!(a = (prodml23__SaturationKind **)soap_malloc(soap, sizeof(prodml23__SaturationKind *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__SaturationKind(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__SaturationKind(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__SaturationKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind, sizeof(prodml22__SaturationKind), 0, NULL); + { a = (prodml23__SaturationKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind, sizeof(prodml23__SaturationKind), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SaturationKind(soap, tag ? tag : "prodml22:SaturationKind", -2, a, type)) + if (soap_out_PointerToprodml23__SaturationKind(soap, tag ? tag : "prodml23:SaturationKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SaturationKind ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationKind ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SaturationKind(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SaturationKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -406078,10 +406221,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__ChannelSet(struct s SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__ChannelSet(struct soap *soap, const char *tag, int id, witsml21__ChannelSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__ChannelSet ** SOAP_FMAC4 soap_in_PointerTowitsml21__ChannelSet(struct soap *soap, const char *tag, witsml21__ChannelSet **a, const char *type) @@ -406196,10 +406342,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__Channel(struct soap SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__Channel(struct soap *soap, const char *tag, int id, witsml21__Channel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__Channel, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__Channel, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__Channel ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__Channel ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__Channel ** SOAP_FMAC4 soap_in_PointerTowitsml21__Channel(struct soap *soap, const char *tag, witsml21__Channel **a, const char *type) @@ -406876,10 +407025,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__ShowEvaluation(stru SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__ShowEvaluation(struct soap *soap, const char *tag, int id, witsml21__ShowEvaluation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__ShowEvaluation ** SOAP_FMAC4 soap_in_PointerTowitsml21__ShowEvaluation(struct soap *soap, const char *tag, witsml21__ShowEvaluation **a, const char *type) @@ -406935,10 +407087,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__InterpretedGeology( SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__InterpretedGeology(struct soap *soap, const char *tag, int id, witsml21__InterpretedGeology *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeology, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeology, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeology ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeology ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__InterpretedGeology ** SOAP_FMAC4 soap_in_PointerTowitsml21__InterpretedGeology(struct soap *soap, const char *tag, witsml21__InterpretedGeology **a, const char *type) @@ -406994,10 +407149,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__CuttingsGeology(str SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__CuttingsGeology(struct soap *soap, const char *tag, int id, witsml21__CuttingsGeology *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeology, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeology, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeology ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeology ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__CuttingsGeology ** SOAP_FMAC4 soap_in_PointerTowitsml21__CuttingsGeology(struct soap *soap, const char *tag, witsml21__CuttingsGeology **a, const char *type) @@ -410652,35 +410810,35 @@ SOAP_FMAC3 resqml22__ParametricLineIntersections ** SOAP_FMAC4 soap_get_PointerT return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesThreshold(struct soap *soap, const char *tag, int id, prodml22__TimeSeriesThreshold *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesThreshold(struct soap *soap, const char *tag, int id, prodml23__TimeSeriesThreshold *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold ? type : NULL); } -SOAP_FMAC3 prodml22__TimeSeriesThreshold ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesThreshold(struct soap *soap, const char *tag, prodml22__TimeSeriesThreshold **a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesThreshold ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesThreshold(struct soap *soap, const char *tag, prodml23__TimeSeriesThreshold **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TimeSeriesThreshold **)soap_malloc(soap, sizeof(prodml22__TimeSeriesThreshold *)))) + if (!(a = (prodml23__TimeSeriesThreshold **)soap_malloc(soap, sizeof(prodml23__TimeSeriesThreshold *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TimeSeriesThreshold *)soap_instantiate_prodml22__TimeSeriesThreshold(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TimeSeriesThreshold *)soap_instantiate_prodml23__TimeSeriesThreshold(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -410689,57 +410847,57 @@ SOAP_FMAC3 prodml22__TimeSeriesThreshold ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__TimeSeriesThreshold **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold, sizeof(prodml22__TimeSeriesThreshold), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TimeSeriesThreshold **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold, sizeof(prodml23__TimeSeriesThreshold), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TimeSeriesThreshold(soap, tag ? tag : "prodml22:TimeSeriesThreshold", -2, a, type)) + if (soap_out_PointerToprodml23__TimeSeriesThreshold(soap, tag ? tag : "prodml23:TimeSeriesThreshold", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeSeriesThreshold ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesThreshold ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TimeSeriesThreshold(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TimeSeriesThreshold(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointDateTime(struct soap *soap, const char *tag, int id, prodml22__EndpointDateTime *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointDateTime(struct soap *soap, const char *tag, int id, prodml23__EndpointDateTime *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime ? type : NULL); } -SOAP_FMAC3 prodml22__EndpointDateTime ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointDateTime(struct soap *soap, const char *tag, prodml22__EndpointDateTime **a, const char *type) +SOAP_FMAC3 prodml23__EndpointDateTime ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointDateTime(struct soap *soap, const char *tag, prodml23__EndpointDateTime **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__EndpointDateTime **)soap_malloc(soap, sizeof(prodml22__EndpointDateTime *)))) + if (!(a = (prodml23__EndpointDateTime **)soap_malloc(soap, sizeof(prodml23__EndpointDateTime *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__EndpointDateTime *)soap_instantiate_prodml22__EndpointDateTime(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__EndpointDateTime *)soap_instantiate_prodml23__EndpointDateTime(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -410748,57 +410906,57 @@ SOAP_FMAC3 prodml22__EndpointDateTime ** SOAP_FMAC4 soap_in_PointerToprodml22__E } } else - { a = (prodml22__EndpointDateTime **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime, sizeof(prodml22__EndpointDateTime), 0, gsoap_eml2_3_fbase); + { a = (prodml23__EndpointDateTime **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime, sizeof(prodml23__EndpointDateTime), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__EndpointDateTime(soap, tag ? tag : "prodml22:EndpointDateTime", -2, a, type)) + if (soap_out_PointerToprodml23__EndpointDateTime(soap, tag ? tag : "prodml23:EndpointDateTime", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__EndpointDateTime ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointDateTime ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__EndpointDateTime(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__EndpointDateTime(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractValue(struct soap *soap, const char *tag, int id, prodml22__AbstractValue *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractValue(struct soap *soap, const char *tag, int id, prodml23__AbstractValue *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractValue ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractValue(struct soap *soap, const char *tag, prodml22__AbstractValue **a, const char *type) +SOAP_FMAC3 prodml23__AbstractValue ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractValue(struct soap *soap, const char *tag, prodml23__AbstractValue **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractValue **)soap_malloc(soap, sizeof(prodml22__AbstractValue *)))) + if (!(a = (prodml23__AbstractValue **)soap_malloc(soap, sizeof(prodml23__AbstractValue *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractValue *)soap_instantiate_prodml22__AbstractValue(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractValue *)soap_instantiate_prodml23__AbstractValue(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -410807,57 +410965,57 @@ SOAP_FMAC3 prodml22__AbstractValue ** SOAP_FMAC4 soap_in_PointerToprodml22__Abst } } else - { a = (prodml22__AbstractValue **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, sizeof(prodml22__AbstractValue), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractValue **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, sizeof(prodml23__AbstractValue), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractValue(soap, tag ? tag : "prodml22:AbstractValue", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractValue(soap, tag ? tag : "prodml23:AbstractValue", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractValue ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractValue ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractValue(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractValue(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__KeywordValueStruct(struct soap *soap, const char *tag, int id, prodml22__KeywordValueStruct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__KeywordValueStruct(struct soap *soap, const char *tag, int id, prodml23__KeywordValueStruct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct ? type : NULL); } -SOAP_FMAC3 prodml22__KeywordValueStruct ** SOAP_FMAC4 soap_in_PointerToprodml22__KeywordValueStruct(struct soap *soap, const char *tag, prodml22__KeywordValueStruct **a, const char *type) +SOAP_FMAC3 prodml23__KeywordValueStruct ** SOAP_FMAC4 soap_in_PointerToprodml23__KeywordValueStruct(struct soap *soap, const char *tag, prodml23__KeywordValueStruct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__KeywordValueStruct **)soap_malloc(soap, sizeof(prodml22__KeywordValueStruct *)))) + if (!(a = (prodml23__KeywordValueStruct **)soap_malloc(soap, sizeof(prodml23__KeywordValueStruct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__KeywordValueStruct *)soap_instantiate_prodml22__KeywordValueStruct(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__KeywordValueStruct *)soap_instantiate_prodml23__KeywordValueStruct(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -410866,57 +411024,57 @@ SOAP_FMAC3 prodml22__KeywordValueStruct ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__KeywordValueStruct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct, sizeof(prodml22__KeywordValueStruct), 0, gsoap_eml2_3_fbase); + { a = (prodml23__KeywordValueStruct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct, sizeof(prodml23__KeywordValueStruct), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__KeywordValueStruct(soap, tag ? tag : "prodml22:KeywordValueStruct", -2, a, type)) + if (soap_out_PointerToprodml23__KeywordValueStruct(soap, tag ? tag : "prodml23:KeywordValueStruct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__KeywordValueStruct ** SOAP_FMAC4 soap_get_PointerToprodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__KeywordValueStruct ** SOAP_FMAC4 soap_get_PointerToprodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__KeywordValueStruct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__KeywordValueStruct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesStringSample(struct soap *soap, const char *tag, int id, prodml22__TimeSeriesStringSample *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesStringSample(struct soap *soap, const char *tag, int id, prodml23__TimeSeriesStringSample *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample ? type : NULL); } -SOAP_FMAC3 prodml22__TimeSeriesStringSample ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesStringSample(struct soap *soap, const char *tag, prodml22__TimeSeriesStringSample **a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesStringSample ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesStringSample(struct soap *soap, const char *tag, prodml23__TimeSeriesStringSample **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TimeSeriesStringSample **)soap_malloc(soap, sizeof(prodml22__TimeSeriesStringSample *)))) + if (!(a = (prodml23__TimeSeriesStringSample **)soap_malloc(soap, sizeof(prodml23__TimeSeriesStringSample *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TimeSeriesStringSample *)soap_instantiate_prodml22__TimeSeriesStringSample(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TimeSeriesStringSample *)soap_instantiate_prodml23__TimeSeriesStringSample(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -410925,57 +411083,57 @@ SOAP_FMAC3 prodml22__TimeSeriesStringSample ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__TimeSeriesStringSample **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample, sizeof(prodml22__TimeSeriesStringSample), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TimeSeriesStringSample **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample, sizeof(prodml23__TimeSeriesStringSample), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TimeSeriesStringSample(soap, tag ? tag : "prodml22:TimeSeriesStringSample", -2, a, type)) + if (soap_out_PointerToprodml23__TimeSeriesStringSample(soap, tag ? tag : "prodml23:TimeSeriesStringSample", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeSeriesStringSample ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesStringSample ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TimeSeriesStringSample(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TimeSeriesStringSample(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesDoubleSample(struct soap *soap, const char *tag, int id, prodml22__TimeSeriesDoubleSample *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesDoubleSample(struct soap *soap, const char *tag, int id, prodml23__TimeSeriesDoubleSample *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample ? type : NULL); } -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesDoubleSample(struct soap *soap, const char *tag, prodml22__TimeSeriesDoubleSample **a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesDoubleSample(struct soap *soap, const char *tag, prodml23__TimeSeriesDoubleSample **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TimeSeriesDoubleSample **)soap_malloc(soap, sizeof(prodml22__TimeSeriesDoubleSample *)))) + if (!(a = (prodml23__TimeSeriesDoubleSample **)soap_malloc(soap, sizeof(prodml23__TimeSeriesDoubleSample *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TimeSeriesDoubleSample *)soap_instantiate_prodml22__TimeSeriesDoubleSample(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TimeSeriesDoubleSample *)soap_instantiate_prodml23__TimeSeriesDoubleSample(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -410984,57 +411142,57 @@ SOAP_FMAC3 prodml22__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__TimeSeriesDoubleSample **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample, sizeof(prodml22__TimeSeriesDoubleSample), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TimeSeriesDoubleSample **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample, sizeof(prodml23__TimeSeriesDoubleSample), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TimeSeriesDoubleSample(soap, tag ? tag : "prodml22:TimeSeriesDoubleSample", -2, a, type)) + if (soap_out_PointerToprodml23__TimeSeriesDoubleSample(soap, tag ? tag : "prodml23:TimeSeriesDoubleSample", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TimeSeriesDoubleSample(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TimeSeriesDoubleSample(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowNetwork(struct soap *soap, const char *tag, int id, prodml22__ProductFlowNetwork *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowNetwork(struct soap *soap, const char *tag, int id, prodml23__ProductFlowNetwork *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowNetwork ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowNetwork(struct soap *soap, const char *tag, prodml22__ProductFlowNetwork **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetwork ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowNetwork(struct soap *soap, const char *tag, prodml23__ProductFlowNetwork **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowNetwork **)soap_malloc(soap, sizeof(prodml22__ProductFlowNetwork *)))) + if (!(a = (prodml23__ProductFlowNetwork **)soap_malloc(soap, sizeof(prodml23__ProductFlowNetwork *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowNetwork *)soap_instantiate_prodml22__ProductFlowNetwork(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowNetwork *)soap_instantiate_prodml23__ProductFlowNetwork(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411043,57 +411201,57 @@ SOAP_FMAC3 prodml22__ProductFlowNetwork ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__ProductFlowNetwork **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, sizeof(prodml22__ProductFlowNetwork), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowNetwork **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, sizeof(prodml23__ProductFlowNetwork), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowNetwork(soap, tag ? tag : "prodml22:ProductFlowNetwork", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowNetwork(soap, tag ? tag : "prodml23:ProductFlowNetwork", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowNetwork ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetwork ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowNetwork(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowNetwork(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowExternalReference(struct soap *soap, const char *tag, int id, prodml22__ProductFlowExternalReference *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowExternalReference(struct soap *soap, const char *tag, int id, prodml23__ProductFlowExternalReference *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowExternalReference ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowExternalReference(struct soap *soap, const char *tag, prodml22__ProductFlowExternalReference **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalReference ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowExternalReference(struct soap *soap, const char *tag, prodml23__ProductFlowExternalReference **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowExternalReference **)soap_malloc(soap, sizeof(prodml22__ProductFlowExternalReference *)))) + if (!(a = (prodml23__ProductFlowExternalReference **)soap_malloc(soap, sizeof(prodml23__ProductFlowExternalReference *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowExternalReference *)soap_instantiate_prodml22__ProductFlowExternalReference(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowExternalReference *)soap_instantiate_prodml23__ProductFlowExternalReference(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411102,57 +411260,57 @@ SOAP_FMAC3 prodml22__ProductFlowExternalReference ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__ProductFlowExternalReference **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, sizeof(prodml22__ProductFlowExternalReference), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowExternalReference **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, sizeof(prodml23__ProductFlowExternalReference), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowExternalReference(soap, tag ? tag : "prodml22:ProductFlowExternalReference", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowExternalReference(soap, tag ? tag : "prodml23:ProductFlowExternalReference", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowExternalReference ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalReference ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowExternalReference(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowExternalReference(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__KindQualifiedString(struct soap *soap, const char *tag, int id, prodml22__KindQualifiedString *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__KindQualifiedString(struct soap *soap, const char *tag, int id, prodml23__KindQualifiedString *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString ? type : NULL); } -SOAP_FMAC3 prodml22__KindQualifiedString ** SOAP_FMAC4 soap_in_PointerToprodml22__KindQualifiedString(struct soap *soap, const char *tag, prodml22__KindQualifiedString **a, const char *type) +SOAP_FMAC3 prodml23__KindQualifiedString ** SOAP_FMAC4 soap_in_PointerToprodml23__KindQualifiedString(struct soap *soap, const char *tag, prodml23__KindQualifiedString **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__KindQualifiedString **)soap_malloc(soap, sizeof(prodml22__KindQualifiedString *)))) + if (!(a = (prodml23__KindQualifiedString **)soap_malloc(soap, sizeof(prodml23__KindQualifiedString *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__KindQualifiedString *)soap_instantiate_prodml22__KindQualifiedString(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__KindQualifiedString *)soap_instantiate_prodml23__KindQualifiedString(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411161,57 +411319,57 @@ SOAP_FMAC3 prodml22__KindQualifiedString ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__KindQualifiedString **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString, sizeof(prodml22__KindQualifiedString), 0, gsoap_eml2_3_fbase); + { a = (prodml23__KindQualifiedString **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString, sizeof(prodml23__KindQualifiedString), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__KindQualifiedString(soap, tag ? tag : "prodml22:KindQualifiedString", -2, a, type)) + if (soap_out_PointerToprodml23__KindQualifiedString(soap, tag ? tag : "prodml23:KindQualifiedString", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__KindQualifiedString ** SOAP_FMAC4 soap_get_PointerToprodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__KindQualifiedString ** SOAP_FMAC4 soap_get_PointerToprodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__KindQualifiedString(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__KindQualifiedString(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeFacility(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeFacility *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeFacility(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeFacility *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeFacility ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeFacility(struct soap *soap, const char *tag, prodml22__ProductVolumeFacility **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFacility ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeFacility(struct soap *soap, const char *tag, prodml23__ProductVolumeFacility **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeFacility **)soap_malloc(soap, sizeof(prodml22__ProductVolumeFacility *)))) + if (!(a = (prodml23__ProductVolumeFacility **)soap_malloc(soap, sizeof(prodml23__ProductVolumeFacility *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeFacility *)soap_instantiate_prodml22__ProductVolumeFacility(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeFacility *)soap_instantiate_prodml23__ProductVolumeFacility(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411220,23 +411378,23 @@ SOAP_FMAC3 prodml22__ProductVolumeFacility ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__ProductVolumeFacility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, sizeof(prodml22__ProductVolumeFacility), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeFacility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, sizeof(prodml23__ProductVolumeFacility), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeFacility(soap, tag ? tag : "prodml22:ProductVolumeFacility", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeFacility(soap, tag ? tag : "prodml23:ProductVolumeFacility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeFacility ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFacility ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeFacility(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeFacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -411295,88 +411453,88 @@ SOAP_FMAC3 eml23__ReferenceCondition ** SOAP_FMAC4 soap_get_PointerToeml23__Refe return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CalculationMethod(struct soap *soap, const char *tag, int id, prodml22__CalculationMethod *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CalculationMethod(struct soap *soap, const char *tag, int id, prodml23__CalculationMethod *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__CalculationMethod(soap, tag, id, *a, type); + return soap_out_prodml23__CalculationMethod(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__CalculationMethod ** SOAP_FMAC4 soap_in_PointerToprodml22__CalculationMethod(struct soap *soap, const char *tag, prodml22__CalculationMethod **a, const char *type) +SOAP_FMAC3 prodml23__CalculationMethod ** SOAP_FMAC4 soap_in_PointerToprodml23__CalculationMethod(struct soap *soap, const char *tag, prodml23__CalculationMethod **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CalculationMethod **)soap_malloc(soap, sizeof(prodml22__CalculationMethod *)))) + if (!(a = (prodml23__CalculationMethod **)soap_malloc(soap, sizeof(prodml23__CalculationMethod *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__CalculationMethod(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__CalculationMethod(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__CalculationMethod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod, sizeof(prodml22__CalculationMethod), 0, NULL); + { a = (prodml23__CalculationMethod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod, sizeof(prodml23__CalculationMethod), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CalculationMethod(soap, tag ? tag : "prodml22:CalculationMethod", -2, a, type)) + if (soap_out_PointerToprodml23__CalculationMethod(soap, tag ? tag : "prodml23:CalculationMethod", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CalculationMethod ** SOAP_FMAC4 soap_get_PointerToprodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CalculationMethod ** SOAP_FMAC4 soap_get_PointerToprodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CalculationMethod(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CalculationMethod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointQualifiedDateTime(struct soap *soap, const char *tag, int id, prodml22__EndpointQualifiedDateTime *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointQualifiedDateTime(struct soap *soap, const char *tag, int id, prodml23__EndpointQualifiedDateTime *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime ? type : NULL); } -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointQualifiedDateTime(struct soap *soap, const char *tag, prodml22__EndpointQualifiedDateTime **a, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointQualifiedDateTime(struct soap *soap, const char *tag, prodml23__EndpointQualifiedDateTime **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__EndpointQualifiedDateTime **)soap_malloc(soap, sizeof(prodml22__EndpointQualifiedDateTime *)))) + if (!(a = (prodml23__EndpointQualifiedDateTime **)soap_malloc(soap, sizeof(prodml23__EndpointQualifiedDateTime *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__EndpointQualifiedDateTime *)soap_instantiate_prodml22__EndpointQualifiedDateTime(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__EndpointQualifiedDateTime *)soap_instantiate_prodml23__EndpointQualifiedDateTime(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411385,57 +411543,57 @@ SOAP_FMAC3 prodml22__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__EndpointQualifiedDateTime **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime, sizeof(prodml22__EndpointQualifiedDateTime), 0, gsoap_eml2_3_fbase); + { a = (prodml23__EndpointQualifiedDateTime **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime, sizeof(prodml23__EndpointQualifiedDateTime), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__EndpointQualifiedDateTime(soap, tag ? tag : "prodml22:EndpointQualifiedDateTime", -2, a, type)) + if (soap_out_PointerToprodml23__EndpointQualifiedDateTime(soap, tag ? tag : "prodml23:EndpointQualifiedDateTime", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__EndpointQualifiedDateTime(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__EndpointQualifiedDateTime(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__IntegerQualifiedCount(struct soap *soap, const char *tag, int id, prodml22__IntegerQualifiedCount *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__IntegerQualifiedCount(struct soap *soap, const char *tag, int id, prodml23__IntegerQualifiedCount *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount ? type : NULL); } -SOAP_FMAC3 prodml22__IntegerQualifiedCount ** SOAP_FMAC4 soap_in_PointerToprodml22__IntegerQualifiedCount(struct soap *soap, const char *tag, prodml22__IntegerQualifiedCount **a, const char *type) +SOAP_FMAC3 prodml23__IntegerQualifiedCount ** SOAP_FMAC4 soap_in_PointerToprodml23__IntegerQualifiedCount(struct soap *soap, const char *tag, prodml23__IntegerQualifiedCount **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__IntegerQualifiedCount **)soap_malloc(soap, sizeof(prodml22__IntegerQualifiedCount *)))) + if (!(a = (prodml23__IntegerQualifiedCount **)soap_malloc(soap, sizeof(prodml23__IntegerQualifiedCount *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__IntegerQualifiedCount *)soap_instantiate_prodml22__IntegerQualifiedCount(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__IntegerQualifiedCount *)soap_instantiate_prodml23__IntegerQualifiedCount(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411444,57 +411602,57 @@ SOAP_FMAC3 prodml22__IntegerQualifiedCount ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__IntegerQualifiedCount **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount, sizeof(prodml22__IntegerQualifiedCount), 0, gsoap_eml2_3_fbase); + { a = (prodml23__IntegerQualifiedCount **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount, sizeof(prodml23__IntegerQualifiedCount), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__IntegerQualifiedCount(soap, tag ? tag : "prodml22:IntegerQualifiedCount", -2, a, type)) + if (soap_out_PointerToprodml23__IntegerQualifiedCount(soap, tag ? tag : "prodml23:IntegerQualifiedCount", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__IntegerQualifiedCount ** SOAP_FMAC4 soap_get_PointerToprodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__IntegerQualifiedCount ** SOAP_FMAC4 soap_get_PointerToprodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__IntegerQualifiedCount(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__IntegerQualifiedCount(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleAcquisition(struct soap *soap, const char *tag, int id, prodml22__FluidSampleAcquisition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleAcquisition(struct soap *soap, const char *tag, int id, prodml23__FluidSampleAcquisition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition ? type : NULL); } -SOAP_FMAC3 prodml22__FluidSampleAcquisition ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleAcquisition(struct soap *soap, const char *tag, prodml22__FluidSampleAcquisition **a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisition ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleAcquisition(struct soap *soap, const char *tag, prodml23__FluidSampleAcquisition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidSampleAcquisition **)soap_malloc(soap, sizeof(prodml22__FluidSampleAcquisition *)))) + if (!(a = (prodml23__FluidSampleAcquisition **)soap_malloc(soap, sizeof(prodml23__FluidSampleAcquisition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidSampleAcquisition *)soap_instantiate_prodml22__FluidSampleAcquisition(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidSampleAcquisition *)soap_instantiate_prodml23__FluidSampleAcquisition(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411503,57 +411661,57 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisition ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__FluidSampleAcquisition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, sizeof(prodml22__FluidSampleAcquisition), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleAcquisition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, sizeof(prodml23__FluidSampleAcquisition), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidSampleAcquisition(soap, tag ? tag : "prodml22:FluidSampleAcquisition", -2, a, type)) + if (soap_out_PointerToprodml23__FluidSampleAcquisition(soap, tag ? tag : "prodml23:FluidSampleAcquisition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidSampleAcquisition ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisition ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidSampleAcquisition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidSampleAcquisition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleRecombinationSpecification(struct soap *soap, const char *tag, int id, prodml22__SampleRecombinationSpecification *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleRecombinationSpecification(struct soap *soap, const char *tag, int id, prodml23__SampleRecombinationSpecification *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification ? type : NULL); } -SOAP_FMAC3 prodml22__SampleRecombinationSpecification ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleRecombinationSpecification(struct soap *soap, const char *tag, prodml22__SampleRecombinationSpecification **a, const char *type) +SOAP_FMAC3 prodml23__SampleRecombinationSpecification ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleRecombinationSpecification(struct soap *soap, const char *tag, prodml23__SampleRecombinationSpecification **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SampleRecombinationSpecification **)soap_malloc(soap, sizeof(prodml22__SampleRecombinationSpecification *)))) + if (!(a = (prodml23__SampleRecombinationSpecification **)soap_malloc(soap, sizeof(prodml23__SampleRecombinationSpecification *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SampleRecombinationSpecification *)soap_instantiate_prodml22__SampleRecombinationSpecification(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SampleRecombinationSpecification *)soap_instantiate_prodml23__SampleRecombinationSpecification(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411562,57 +411720,57 @@ SOAP_FMAC3 prodml22__SampleRecombinationSpecification ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__SampleRecombinationSpecification **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification, sizeof(prodml22__SampleRecombinationSpecification), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SampleRecombinationSpecification **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification, sizeof(prodml23__SampleRecombinationSpecification), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SampleRecombinationSpecification(soap, tag ? tag : "prodml22:SampleRecombinationSpecification", -2, a, type)) + if (soap_out_PointerToprodml23__SampleRecombinationSpecification(soap, tag ? tag : "prodml23:SampleRecombinationSpecification", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleRecombinationSpecification ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleRecombinationSpecification ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SampleRecombinationSpecification(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SampleRecombinationSpecification(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, int id, prodml22__FluidSampleAcquisitionJobSource *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, int id, prodml23__FluidSampleAcquisitionJobSource *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource ? type : NULL); } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, prodml22__FluidSampleAcquisitionJobSource **a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *tag, prodml23__FluidSampleAcquisitionJobSource **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidSampleAcquisitionJobSource **)soap_malloc(soap, sizeof(prodml22__FluidSampleAcquisitionJobSource *)))) + if (!(a = (prodml23__FluidSampleAcquisitionJobSource **)soap_malloc(soap, sizeof(prodml23__FluidSampleAcquisitionJobSource *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidSampleAcquisitionJobSource *)soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidSampleAcquisitionJobSource *)soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411621,57 +411779,57 @@ SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_in_Point } } else - { a = (prodml22__FluidSampleAcquisitionJobSource **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource, sizeof(prodml22__FluidSampleAcquisitionJobSource), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleAcquisitionJobSource **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource, sizeof(prodml23__FluidSampleAcquisitionJobSource), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, tag ? tag : "prodml22:FluidSampleAcquisitionJobSource", -2, a, type)) + if (soap_out_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, tag ? tag : "prodml23:FluidSampleAcquisitionJobSource", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidSampleAcquisitionJobSource(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidSampleAcquisitionJobSource(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, int id, prodml22__FluidSampleChainOfCustodyEvent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, int id, prodml23__FluidSampleChainOfCustodyEvent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent ? type : NULL); } -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, prodml22__FluidSampleChainOfCustodyEvent **a, const char *type) +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, prodml23__FluidSampleChainOfCustodyEvent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidSampleChainOfCustodyEvent **)soap_malloc(soap, sizeof(prodml22__FluidSampleChainOfCustodyEvent *)))) + if (!(a = (prodml23__FluidSampleChainOfCustodyEvent **)soap_malloc(soap, sizeof(prodml23__FluidSampleChainOfCustodyEvent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidSampleChainOfCustodyEvent *)soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidSampleChainOfCustodyEvent *)soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -411680,46 +411838,46 @@ SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_in_Pointe } } else - { a = (prodml22__FluidSampleChainOfCustodyEvent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, sizeof(prodml22__FluidSampleChainOfCustodyEvent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSampleChainOfCustodyEvent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, sizeof(prodml23__FluidSampleChainOfCustodyEvent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag ? tag : "prodml22:FluidSampleChainOfCustodyEvent", -2, a, type)) + if (soap_out_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag ? tag : "prodml23:FluidSampleChainOfCustodyEvent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleKindExt(struct soap *soap, std::string *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleKindExt(struct soap *soap, std::string *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt)) - soap_serialize_prodml22__FluidSampleKindExt(soap, *a); + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt)) + soap_serialize_prodml23__FluidSampleKindExt(soap, *a); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__FluidSampleKindExt(soap, tag, id, *a, type); + return soap_out_prodml23__FluidSampleKindExt(soap, tag, id, *a, type); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -411730,27 +411888,27 @@ SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleKindE *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__FluidSampleKindExt(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__FluidSampleKindExt(soap, tag, *a, type))) return NULL; } else - { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt, sizeof(std::string), 0, NULL); + { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt, sizeof(std::string), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidSampleKindExt(soap, tag ? tag : "prodml22:FluidSampleKindExt", -2, a, type)) + if (soap_out_PointerToprodml23__FluidSampleKindExt(soap, tag ? tag : "prodml23:FluidSampleKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidSampleKindExt(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidSampleKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -411992,88 +412150,88 @@ SOAP_FMAC3 eml23__PermeabilityLengthMeasureExt ** SOAP_FMAC4 soap_get_PointerToe return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreStorageMechanismType(struct soap *soap, const char *tag, int id, prodml22__WellboreStorageMechanismType *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreStorageMechanismType(struct soap *soap, const char *tag, int id, prodml23__WellboreStorageMechanismType *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__WellboreStorageMechanismType(soap, tag, id, *a, type); + return soap_out_prodml23__WellboreStorageMechanismType(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__WellboreStorageMechanismType ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreStorageMechanismType(struct soap *soap, const char *tag, prodml22__WellboreStorageMechanismType **a, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageMechanismType ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreStorageMechanismType(struct soap *soap, const char *tag, prodml23__WellboreStorageMechanismType **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreStorageMechanismType **)soap_malloc(soap, sizeof(prodml22__WellboreStorageMechanismType *)))) + if (!(a = (prodml23__WellboreStorageMechanismType **)soap_malloc(soap, sizeof(prodml23__WellboreStorageMechanismType *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__WellboreStorageMechanismType(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__WellboreStorageMechanismType(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__WellboreStorageMechanismType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType, sizeof(prodml22__WellboreStorageMechanismType), 0, NULL); + { a = (prodml23__WellboreStorageMechanismType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType, sizeof(prodml23__WellboreStorageMechanismType), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreStorageMechanismType(soap, tag ? tag : "prodml22:WellboreStorageMechanismType", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreStorageMechanismType(soap, tag ? tag : "prodml23:WellboreStorageMechanismType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreStorageMechanismType ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageMechanismType ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreStorageMechanismType(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreStorageMechanismType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreDeviationAngle(struct soap *soap, const char *tag, int id, prodml22__WellboreDeviationAngle *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreDeviationAngle(struct soap *soap, const char *tag, int id, prodml23__WellboreDeviationAngle *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle ? type : NULL); } -SOAP_FMAC3 prodml22__WellboreDeviationAngle ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreDeviationAngle(struct soap *soap, const char *tag, prodml22__WellboreDeviationAngle **a, const char *type) +SOAP_FMAC3 prodml23__WellboreDeviationAngle ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreDeviationAngle(struct soap *soap, const char *tag, prodml23__WellboreDeviationAngle **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreDeviationAngle **)soap_malloc(soap, sizeof(prodml22__WellboreDeviationAngle *)))) + if (!(a = (prodml23__WellboreDeviationAngle **)soap_malloc(soap, sizeof(prodml23__WellboreDeviationAngle *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellboreDeviationAngle *)soap_instantiate_prodml22__WellboreDeviationAngle(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellboreDeviationAngle *)soap_instantiate_prodml23__WellboreDeviationAngle(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412082,57 +412240,57 @@ SOAP_FMAC3 prodml22__WellboreDeviationAngle ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__WellboreDeviationAngle **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle, sizeof(prodml22__WellboreDeviationAngle), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreDeviationAngle **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle, sizeof(prodml23__WellboreDeviationAngle), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreDeviationAngle(soap, tag ? tag : "prodml22:WellboreDeviationAngle", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreDeviationAngle(soap, tag ? tag : "prodml23:WellboreDeviationAngle", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreDeviationAngle ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreDeviationAngle ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreDeviationAngle(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreDeviationAngle(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidDensity(struct soap *soap, const char *tag, int id, prodml22__FluidDensity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidDensity(struct soap *soap, const char *tag, int id, prodml23__FluidDensity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity ? type : NULL); } -SOAP_FMAC3 prodml22__FluidDensity ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidDensity(struct soap *soap, const char *tag, prodml22__FluidDensity **a, const char *type) +SOAP_FMAC3 prodml23__FluidDensity ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidDensity(struct soap *soap, const char *tag, prodml23__FluidDensity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidDensity **)soap_malloc(soap, sizeof(prodml22__FluidDensity *)))) + if (!(a = (prodml23__FluidDensity **)soap_malloc(soap, sizeof(prodml23__FluidDensity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidDensity *)soap_instantiate_prodml22__FluidDensity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidDensity *)soap_instantiate_prodml23__FluidDensity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412141,57 +412299,57 @@ SOAP_FMAC3 prodml22__FluidDensity ** SOAP_FMAC4 soap_in_PointerToprodml22__Fluid } } else - { a = (prodml22__FluidDensity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity, sizeof(prodml22__FluidDensity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidDensity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity, sizeof(prodml23__FluidDensity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidDensity(soap, tag ? tag : "prodml22:FluidDensity", -2, a, type)) + if (soap_out_PointerToprodml23__FluidDensity(soap, tag ? tag : "prodml23:FluidDensity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidDensity ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidDensity ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidDensity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidDensity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TubingInteralDiameter(struct soap *soap, const char *tag, int id, prodml22__TubingInteralDiameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TubingInteralDiameter(struct soap *soap, const char *tag, int id, prodml23__TubingInteralDiameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter ? type : NULL); } -SOAP_FMAC3 prodml22__TubingInteralDiameter ** SOAP_FMAC4 soap_in_PointerToprodml22__TubingInteralDiameter(struct soap *soap, const char *tag, prodml22__TubingInteralDiameter **a, const char *type) +SOAP_FMAC3 prodml23__TubingInteralDiameter ** SOAP_FMAC4 soap_in_PointerToprodml23__TubingInteralDiameter(struct soap *soap, const char *tag, prodml23__TubingInteralDiameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TubingInteralDiameter **)soap_malloc(soap, sizeof(prodml22__TubingInteralDiameter *)))) + if (!(a = (prodml23__TubingInteralDiameter **)soap_malloc(soap, sizeof(prodml23__TubingInteralDiameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TubingInteralDiameter *)soap_instantiate_prodml22__TubingInteralDiameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TubingInteralDiameter *)soap_instantiate_prodml23__TubingInteralDiameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412200,57 +412358,57 @@ SOAP_FMAC3 prodml22__TubingInteralDiameter ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__TubingInteralDiameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter, sizeof(prodml22__TubingInteralDiameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TubingInteralDiameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter, sizeof(prodml23__TubingInteralDiameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TubingInteralDiameter(soap, tag ? tag : "prodml22:TubingInteralDiameter", -2, a, type)) + if (soap_out_PointerToprodml23__TubingInteralDiameter(soap, tag ? tag : "prodml23:TubingInteralDiameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TubingInteralDiameter ** SOAP_FMAC4 soap_get_PointerToprodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TubingInteralDiameter ** SOAP_FMAC4 soap_get_PointerToprodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TubingInteralDiameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TubingInteralDiameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreFluidCompressibility(struct soap *soap, const char *tag, int id, prodml22__WellboreFluidCompressibility *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreFluidCompressibility(struct soap *soap, const char *tag, int id, prodml23__WellboreFluidCompressibility *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility ? type : NULL); } -SOAP_FMAC3 prodml22__WellboreFluidCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreFluidCompressibility(struct soap *soap, const char *tag, prodml22__WellboreFluidCompressibility **a, const char *type) +SOAP_FMAC3 prodml23__WellboreFluidCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreFluidCompressibility(struct soap *soap, const char *tag, prodml23__WellboreFluidCompressibility **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreFluidCompressibility **)soap_malloc(soap, sizeof(prodml22__WellboreFluidCompressibility *)))) + if (!(a = (prodml23__WellboreFluidCompressibility **)soap_malloc(soap, sizeof(prodml23__WellboreFluidCompressibility *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellboreFluidCompressibility *)soap_instantiate_prodml22__WellboreFluidCompressibility(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellboreFluidCompressibility *)soap_instantiate_prodml23__WellboreFluidCompressibility(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412259,57 +412417,57 @@ SOAP_FMAC3 prodml22__WellboreFluidCompressibility ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__WellboreFluidCompressibility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility, sizeof(prodml22__WellboreFluidCompressibility), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreFluidCompressibility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility, sizeof(prodml23__WellboreFluidCompressibility), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreFluidCompressibility(soap, tag ? tag : "prodml22:WellboreFluidCompressibility", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreFluidCompressibility(soap, tag ? tag : "prodml23:WellboreFluidCompressibility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreFluidCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreFluidCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreFluidCompressibility(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreFluidCompressibility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreVolume(struct soap *soap, const char *tag, int id, prodml22__WellboreVolume *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreVolume(struct soap *soap, const char *tag, int id, prodml23__WellboreVolume *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume ? type : NULL); } -SOAP_FMAC3 prodml22__WellboreVolume ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreVolume(struct soap *soap, const char *tag, prodml22__WellboreVolume **a, const char *type) +SOAP_FMAC3 prodml23__WellboreVolume ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreVolume(struct soap *soap, const char *tag, prodml23__WellboreVolume **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreVolume **)soap_malloc(soap, sizeof(prodml22__WellboreVolume *)))) + if (!(a = (prodml23__WellboreVolume **)soap_malloc(soap, sizeof(prodml23__WellboreVolume *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellboreVolume *)soap_instantiate_prodml22__WellboreVolume(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellboreVolume *)soap_instantiate_prodml23__WellboreVolume(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412318,57 +412476,57 @@ SOAP_FMAC3 prodml22__WellboreVolume ** SOAP_FMAC4 soap_in_PointerToprodml22__Wel } } else - { a = (prodml22__WellboreVolume **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume, sizeof(prodml22__WellboreVolume), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreVolume **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume, sizeof(prodml23__WellboreVolume), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreVolume(soap, tag ? tag : "prodml22:WellboreVolume", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreVolume(soap, tag ? tag : "prodml23:WellboreVolume", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreVolume ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreVolume ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreVolume(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreStorageCoefficient(struct soap *soap, const char *tag, int id, prodml22__WellboreStorageCoefficient *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreStorageCoefficient(struct soap *soap, const char *tag, int id, prodml23__WellboreStorageCoefficient *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient ? type : NULL); } -SOAP_FMAC3 prodml22__WellboreStorageCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreStorageCoefficient(struct soap *soap, const char *tag, prodml22__WellboreStorageCoefficient **a, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreStorageCoefficient(struct soap *soap, const char *tag, prodml23__WellboreStorageCoefficient **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreStorageCoefficient **)soap_malloc(soap, sizeof(prodml22__WellboreStorageCoefficient *)))) + if (!(a = (prodml23__WellboreStorageCoefficient **)soap_malloc(soap, sizeof(prodml23__WellboreStorageCoefficient *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellboreStorageCoefficient *)soap_instantiate_prodml22__WellboreStorageCoefficient(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellboreStorageCoefficient *)soap_instantiate_prodml23__WellboreStorageCoefficient(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412377,57 +412535,57 @@ SOAP_FMAC3 prodml22__WellboreStorageCoefficient ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__WellboreStorageCoefficient **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient, sizeof(prodml22__WellboreStorageCoefficient), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreStorageCoefficient **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient, sizeof(prodml23__WellboreStorageCoefficient), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreStorageCoefficient(soap, tag ? tag : "prodml22:WellboreStorageCoefficient", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreStorageCoefficient(soap, tag ? tag : "prodml23:WellboreStorageCoefficient", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreStorageCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreStorageCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreStorageCoefficient(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreStorageCoefficient(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreRadius(struct soap *soap, const char *tag, int id, prodml22__WellboreRadius *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreRadius(struct soap *soap, const char *tag, int id, prodml23__WellboreRadius *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius ? type : NULL); } -SOAP_FMAC3 prodml22__WellboreRadius ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreRadius(struct soap *soap, const char *tag, prodml22__WellboreRadius **a, const char *type) +SOAP_FMAC3 prodml23__WellboreRadius ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreRadius(struct soap *soap, const char *tag, prodml23__WellboreRadius **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreRadius **)soap_malloc(soap, sizeof(prodml22__WellboreRadius *)))) + if (!(a = (prodml23__WellboreRadius **)soap_malloc(soap, sizeof(prodml23__WellboreRadius *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellboreRadius *)soap_instantiate_prodml22__WellboreRadius(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellboreRadius *)soap_instantiate_prodml23__WellboreRadius(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412436,163 +412594,163 @@ SOAP_FMAC3 prodml22__WellboreRadius ** SOAP_FMAC4 soap_in_PointerToprodml22__Wel } } else - { a = (prodml22__WellboreRadius **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius, sizeof(prodml22__WellboreRadius), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreRadius **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius, sizeof(prodml23__WellboreRadius), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreRadius(soap, tag ? tag : "prodml22:WellboreRadius", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreRadius(soap, tag ? tag : "prodml23:WellboreRadius", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreRadius ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreRadius ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreRadius(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreRadius(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LowerBoundaryType(struct soap *soap, const char *tag, int id, prodml22__LowerBoundaryType *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LowerBoundaryType(struct soap *soap, const char *tag, int id, prodml23__LowerBoundaryType *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__LowerBoundaryType(soap, tag, id, *a, type); + return soap_out_prodml23__LowerBoundaryType(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__LowerBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml22__LowerBoundaryType(struct soap *soap, const char *tag, prodml22__LowerBoundaryType **a, const char *type) +SOAP_FMAC3 prodml23__LowerBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml23__LowerBoundaryType(struct soap *soap, const char *tag, prodml23__LowerBoundaryType **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LowerBoundaryType **)soap_malloc(soap, sizeof(prodml22__LowerBoundaryType *)))) + if (!(a = (prodml23__LowerBoundaryType **)soap_malloc(soap, sizeof(prodml23__LowerBoundaryType *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__LowerBoundaryType(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__LowerBoundaryType(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__LowerBoundaryType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType, sizeof(prodml22__LowerBoundaryType), 0, NULL); + { a = (prodml23__LowerBoundaryType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType, sizeof(prodml23__LowerBoundaryType), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LowerBoundaryType(soap, tag ? tag : "prodml22:LowerBoundaryType", -2, a, type)) + if (soap_out_PointerToprodml23__LowerBoundaryType(soap, tag ? tag : "prodml23:LowerBoundaryType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LowerBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LowerBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LowerBoundaryType(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LowerBoundaryType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__UpperBoundaryType(struct soap *soap, const char *tag, int id, prodml22__UpperBoundaryType *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__UpperBoundaryType(struct soap *soap, const char *tag, int id, prodml23__UpperBoundaryType *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__UpperBoundaryType(soap, tag, id, *a, type); + return soap_out_prodml23__UpperBoundaryType(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__UpperBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml22__UpperBoundaryType(struct soap *soap, const char *tag, prodml22__UpperBoundaryType **a, const char *type) +SOAP_FMAC3 prodml23__UpperBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml23__UpperBoundaryType(struct soap *soap, const char *tag, prodml23__UpperBoundaryType **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__UpperBoundaryType **)soap_malloc(soap, sizeof(prodml22__UpperBoundaryType *)))) + if (!(a = (prodml23__UpperBoundaryType **)soap_malloc(soap, sizeof(prodml23__UpperBoundaryType *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__UpperBoundaryType(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__UpperBoundaryType(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__UpperBoundaryType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType, sizeof(prodml22__UpperBoundaryType), 0, NULL); + { a = (prodml23__UpperBoundaryType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType, sizeof(prodml23__UpperBoundaryType), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__UpperBoundaryType(soap, tag ? tag : "prodml22:UpperBoundaryType", -2, a, type)) + if (soap_out_PointerToprodml23__UpperBoundaryType(soap, tag ? tag : "prodml23:UpperBoundaryType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__UpperBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__UpperBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__UpperBoundaryType(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__UpperBoundaryType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, int id, prodml22__OrientationOfAnisotropyXDirection *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, int id, prodml23__OrientationOfAnisotropyXDirection *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection ? type : NULL); } -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, prodml22__OrientationOfAnisotropyXDirection **a, const char *type) +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *tag, prodml23__OrientationOfAnisotropyXDirection **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OrientationOfAnisotropyXDirection **)soap_malloc(soap, sizeof(prodml22__OrientationOfAnisotropyXDirection *)))) + if (!(a = (prodml23__OrientationOfAnisotropyXDirection **)soap_malloc(soap, sizeof(prodml23__OrientationOfAnisotropyXDirection *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OrientationOfAnisotropyXDirection *)soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OrientationOfAnisotropyXDirection *)soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412601,57 +412759,57 @@ SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_in_Poi } } else - { a = (prodml22__OrientationOfAnisotropyXDirection **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection, sizeof(prodml22__OrientationOfAnisotropyXDirection), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OrientationOfAnisotropyXDirection **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection, sizeof(prodml23__OrientationOfAnisotropyXDirection), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, tag ? tag : "prodml22:OrientationOfAnisotropyXDirection", -2, a, type)) + if (soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, tag ? tag : "prodml23:OrientationOfAnisotropyXDirection", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, int id, prodml22__HorizontalAnisotropyKxToKy *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, int id, prodml23__HorizontalAnisotropyKxToKy *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy ? type : NULL); } -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, prodml22__HorizontalAnisotropyKxToKy **a, const char *type) +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *tag, prodml23__HorizontalAnisotropyKxToKy **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__HorizontalAnisotropyKxToKy **)soap_malloc(soap, sizeof(prodml22__HorizontalAnisotropyKxToKy *)))) + if (!(a = (prodml23__HorizontalAnisotropyKxToKy **)soap_malloc(soap, sizeof(prodml23__HorizontalAnisotropyKxToKy *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__HorizontalAnisotropyKxToKy *)soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__HorizontalAnisotropyKxToKy *)soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412660,57 +412818,57 @@ SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__HorizontalAnisotropyKxToKy **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy, sizeof(prodml22__HorizontalAnisotropyKxToKy), 0, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalAnisotropyKxToKy **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy, sizeof(prodml23__HorizontalAnisotropyKxToKy), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, tag ? tag : "prodml22:HorizontalAnisotropyKxToKy", -2, a, type)) + if (soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, tag ? tag : "prodml23:HorizontalAnisotropyKxToKy", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_get_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_get_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, int id, prodml22__VerticalAnisotropyKvToKr *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, int id, prodml23__VerticalAnisotropyKvToKr *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr ? type : NULL); } -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, prodml22__VerticalAnisotropyKvToKr **a, const char *type) +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *tag, prodml23__VerticalAnisotropyKvToKr **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__VerticalAnisotropyKvToKr **)soap_malloc(soap, sizeof(prodml22__VerticalAnisotropyKvToKr *)))) + if (!(a = (prodml23__VerticalAnisotropyKvToKr **)soap_malloc(soap, sizeof(prodml23__VerticalAnisotropyKvToKr *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__VerticalAnisotropyKvToKr *)soap_instantiate_prodml22__VerticalAnisotropyKvToKr(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__VerticalAnisotropyKvToKr *)soap_instantiate_prodml23__VerticalAnisotropyKvToKr(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412719,57 +412877,57 @@ SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__VerticalAnisotropyKvToKr **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr, sizeof(prodml22__VerticalAnisotropyKvToKr), 0, gsoap_eml2_3_fbase); + { a = (prodml23__VerticalAnisotropyKvToKr **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr, sizeof(prodml23__VerticalAnisotropyKvToKr), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(soap, tag ? tag : "prodml22:VerticalAnisotropyKvToKr", -2, a, type)) + if (soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(soap, tag ? tag : "prodml23:VerticalAnisotropyKvToKr", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_get_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_get_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AveragePressure(struct soap *soap, const char *tag, int id, prodml22__AveragePressure *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AveragePressure(struct soap *soap, const char *tag, int id, prodml23__AveragePressure *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure ? type : NULL); } -SOAP_FMAC3 prodml22__AveragePressure ** SOAP_FMAC4 soap_in_PointerToprodml22__AveragePressure(struct soap *soap, const char *tag, prodml22__AveragePressure **a, const char *type) +SOAP_FMAC3 prodml23__AveragePressure ** SOAP_FMAC4 soap_in_PointerToprodml23__AveragePressure(struct soap *soap, const char *tag, prodml23__AveragePressure **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AveragePressure **)soap_malloc(soap, sizeof(prodml22__AveragePressure *)))) + if (!(a = (prodml23__AveragePressure **)soap_malloc(soap, sizeof(prodml23__AveragePressure *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AveragePressure *)soap_instantiate_prodml22__AveragePressure(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AveragePressure *)soap_instantiate_prodml23__AveragePressure(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412778,57 +412936,57 @@ SOAP_FMAC3 prodml22__AveragePressure ** SOAP_FMAC4 soap_in_PointerToprodml22__Av } } else - { a = (prodml22__AveragePressure **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure, sizeof(prodml22__AveragePressure), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AveragePressure **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure, sizeof(prodml23__AveragePressure), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AveragePressure(soap, tag ? tag : "prodml22:AveragePressure", -2, a, type)) + if (soap_out_PointerToprodml23__AveragePressure(soap, tag ? tag : "prodml23:AveragePressure", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AveragePressure ** SOAP_FMAC4 soap_get_PointerToprodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AveragePressure ** SOAP_FMAC4 soap_get_PointerToprodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AveragePressure(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AveragePressure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PressureDatumTVD(struct soap *soap, const char *tag, int id, prodml22__PressureDatumTVD *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PressureDatumTVD(struct soap *soap, const char *tag, int id, prodml23__PressureDatumTVD *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD ? type : NULL); } -SOAP_FMAC3 prodml22__PressureDatumTVD ** SOAP_FMAC4 soap_in_PointerToprodml22__PressureDatumTVD(struct soap *soap, const char *tag, prodml22__PressureDatumTVD **a, const char *type) +SOAP_FMAC3 prodml23__PressureDatumTVD ** SOAP_FMAC4 soap_in_PointerToprodml23__PressureDatumTVD(struct soap *soap, const char *tag, prodml23__PressureDatumTVD **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PressureDatumTVD **)soap_malloc(soap, sizeof(prodml22__PressureDatumTVD *)))) + if (!(a = (prodml23__PressureDatumTVD **)soap_malloc(soap, sizeof(prodml23__PressureDatumTVD *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PressureDatumTVD *)soap_instantiate_prodml22__PressureDatumTVD(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PressureDatumTVD *)soap_instantiate_prodml23__PressureDatumTVD(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412837,57 +412995,57 @@ SOAP_FMAC3 prodml22__PressureDatumTVD ** SOAP_FMAC4 soap_in_PointerToprodml22__P } } else - { a = (prodml22__PressureDatumTVD **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD, sizeof(prodml22__PressureDatumTVD), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PressureDatumTVD **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD, sizeof(prodml23__PressureDatumTVD), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PressureDatumTVD(soap, tag ? tag : "prodml22:PressureDatumTVD", -2, a, type)) + if (soap_out_PointerToprodml23__PressureDatumTVD(soap, tag ? tag : "prodml23:PressureDatumTVD", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PressureDatumTVD ** SOAP_FMAC4 soap_get_PointerToprodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PressureDatumTVD ** SOAP_FMAC4 soap_get_PointerToprodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PressureDatumTVD(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PressureDatumTVD(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InitialPressure(struct soap *soap, const char *tag, int id, prodml22__InitialPressure *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InitialPressure(struct soap *soap, const char *tag, int id, prodml23__InitialPressure *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure ? type : NULL); } -SOAP_FMAC3 prodml22__InitialPressure ** SOAP_FMAC4 soap_in_PointerToprodml22__InitialPressure(struct soap *soap, const char *tag, prodml22__InitialPressure **a, const char *type) +SOAP_FMAC3 prodml23__InitialPressure ** SOAP_FMAC4 soap_in_PointerToprodml23__InitialPressure(struct soap *soap, const char *tag, prodml23__InitialPressure **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InitialPressure **)soap_malloc(soap, sizeof(prodml22__InitialPressure *)))) + if (!(a = (prodml23__InitialPressure **)soap_malloc(soap, sizeof(prodml23__InitialPressure *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InitialPressure *)soap_instantiate_prodml22__InitialPressure(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InitialPressure *)soap_instantiate_prodml23__InitialPressure(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412896,57 +413054,57 @@ SOAP_FMAC3 prodml22__InitialPressure ** SOAP_FMAC4 soap_in_PointerToprodml22__In } } else - { a = (prodml22__InitialPressure **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure, sizeof(prodml22__InitialPressure), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InitialPressure **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure, sizeof(prodml23__InitialPressure), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InitialPressure(soap, tag ? tag : "prodml22:InitialPressure", -2, a, type)) + if (soap_out_PointerToprodml23__InitialPressure(soap, tag ? tag : "prodml23:InitialPressure", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InitialPressure ** SOAP_FMAC4 soap_get_PointerToprodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InitialPressure ** SOAP_FMAC4 soap_get_PointerToprodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InitialPressure(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InitialPressure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, prodml22__PermeabilityThicknessProduct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PermeabilityThicknessProduct(struct soap *soap, const char *tag, int id, prodml23__PermeabilityThicknessProduct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct ? type : NULL); } -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__PermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml22__PermeabilityThicknessProduct **a, const char *type) +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__PermeabilityThicknessProduct(struct soap *soap, const char *tag, prodml23__PermeabilityThicknessProduct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PermeabilityThicknessProduct **)soap_malloc(soap, sizeof(prodml22__PermeabilityThicknessProduct *)))) + if (!(a = (prodml23__PermeabilityThicknessProduct **)soap_malloc(soap, sizeof(prodml23__PermeabilityThicknessProduct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PermeabilityThicknessProduct *)soap_instantiate_prodml22__PermeabilityThicknessProduct(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PermeabilityThicknessProduct *)soap_instantiate_prodml23__PermeabilityThicknessProduct(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -412955,57 +413113,57 @@ SOAP_FMAC3 prodml22__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__PermeabilityThicknessProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct, sizeof(prodml22__PermeabilityThicknessProduct), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PermeabilityThicknessProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct, sizeof(prodml23__PermeabilityThicknessProduct), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PermeabilityThicknessProduct(soap, tag ? tag : "prodml22:PermeabilityThicknessProduct", -2, a, type)) + if (soap_out_PointerToprodml23__PermeabilityThicknessProduct(soap, tag ? tag : "prodml23:PermeabilityThicknessProduct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PermeabilityThicknessProduct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PermeabilityThicknessProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, int id, prodml22__RatioDpSkinToTotalDrawdown *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, int id, prodml23__RatioDpSkinToTotalDrawdown *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown ? type : NULL); } -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, prodml22__RatioDpSkinToTotalDrawdown **a, const char *type) +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *tag, prodml23__RatioDpSkinToTotalDrawdown **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RatioDpSkinToTotalDrawdown **)soap_malloc(soap, sizeof(prodml22__RatioDpSkinToTotalDrawdown *)))) + if (!(a = (prodml23__RatioDpSkinToTotalDrawdown **)soap_malloc(soap, sizeof(prodml23__RatioDpSkinToTotalDrawdown *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RatioDpSkinToTotalDrawdown *)soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RatioDpSkinToTotalDrawdown *)soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413014,57 +413172,57 @@ SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__RatioDpSkinToTotalDrawdown **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown, sizeof(prodml22__RatioDpSkinToTotalDrawdown), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RatioDpSkinToTotalDrawdown **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown, sizeof(prodml23__RatioDpSkinToTotalDrawdown), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, tag ? tag : "prodml22:RatioDpSkinToTotalDrawdown", -2, a, type)) + if (soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, tag ? tag : "prodml23:RatioDpSkinToTotalDrawdown", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_get_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_get_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeltaPressureTotalSkin(struct soap *soap, const char *tag, int id, prodml22__DeltaPressureTotalSkin *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeltaPressureTotalSkin(struct soap *soap, const char *tag, int id, prodml23__DeltaPressureTotalSkin *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin ? type : NULL); } -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__DeltaPressureTotalSkin(struct soap *soap, const char *tag, prodml22__DeltaPressureTotalSkin **a, const char *type) +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_in_PointerToprodml23__DeltaPressureTotalSkin(struct soap *soap, const char *tag, prodml23__DeltaPressureTotalSkin **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DeltaPressureTotalSkin **)soap_malloc(soap, sizeof(prodml22__DeltaPressureTotalSkin *)))) + if (!(a = (prodml23__DeltaPressureTotalSkin **)soap_malloc(soap, sizeof(prodml23__DeltaPressureTotalSkin *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DeltaPressureTotalSkin *)soap_instantiate_prodml22__DeltaPressureTotalSkin(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DeltaPressureTotalSkin *)soap_instantiate_prodml23__DeltaPressureTotalSkin(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413073,57 +413231,57 @@ SOAP_FMAC3 prodml22__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__DeltaPressureTotalSkin **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin, sizeof(prodml22__DeltaPressureTotalSkin), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DeltaPressureTotalSkin **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin, sizeof(prodml23__DeltaPressureTotalSkin), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DeltaPressureTotalSkin(soap, tag ? tag : "prodml22:DeltaPressureTotalSkin", -2, a, type)) + if (soap_out_PointerToprodml23__DeltaPressureTotalSkin(soap, tag ? tag : "prodml23:DeltaPressureTotalSkin", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_get_PointerToprodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_get_PointerToprodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DeltaPressureTotalSkin(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DeltaPressureTotalSkin(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RateDependentSkinFactor(struct soap *soap, const char *tag, int id, prodml22__RateDependentSkinFactor *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RateDependentSkinFactor(struct soap *soap, const char *tag, int id, prodml23__RateDependentSkinFactor *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor ? type : NULL); } -SOAP_FMAC3 prodml22__RateDependentSkinFactor ** SOAP_FMAC4 soap_in_PointerToprodml22__RateDependentSkinFactor(struct soap *soap, const char *tag, prodml22__RateDependentSkinFactor **a, const char *type) +SOAP_FMAC3 prodml23__RateDependentSkinFactor ** SOAP_FMAC4 soap_in_PointerToprodml23__RateDependentSkinFactor(struct soap *soap, const char *tag, prodml23__RateDependentSkinFactor **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RateDependentSkinFactor **)soap_malloc(soap, sizeof(prodml22__RateDependentSkinFactor *)))) + if (!(a = (prodml23__RateDependentSkinFactor **)soap_malloc(soap, sizeof(prodml23__RateDependentSkinFactor *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RateDependentSkinFactor *)soap_instantiate_prodml22__RateDependentSkinFactor(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RateDependentSkinFactor *)soap_instantiate_prodml23__RateDependentSkinFactor(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413132,57 +413290,57 @@ SOAP_FMAC3 prodml22__RateDependentSkinFactor ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__RateDependentSkinFactor **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor, sizeof(prodml22__RateDependentSkinFactor), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RateDependentSkinFactor **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor, sizeof(prodml23__RateDependentSkinFactor), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RateDependentSkinFactor(soap, tag ? tag : "prodml22:RateDependentSkinFactor", -2, a, type)) + if (soap_out_PointerToprodml23__RateDependentSkinFactor(soap, tag ? tag : "prodml23:RateDependentSkinFactor", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RateDependentSkinFactor ** SOAP_FMAC4 soap_get_PointerToprodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RateDependentSkinFactor ** SOAP_FMAC4 soap_get_PointerToprodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RateDependentSkinFactor(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RateDependentSkinFactor(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml22__SkinRelativeToTotalThickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, int id, prodml23__SkinRelativeToTotalThickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness ? type : NULL); } -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml22__SkinRelativeToTotalThickness **a, const char *type) +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *tag, prodml23__SkinRelativeToTotalThickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SkinRelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml22__SkinRelativeToTotalThickness *)))) + if (!(a = (prodml23__SkinRelativeToTotalThickness **)soap_malloc(soap, sizeof(prodml23__SkinRelativeToTotalThickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SkinRelativeToTotalThickness *)soap_instantiate_prodml22__SkinRelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SkinRelativeToTotalThickness *)soap_instantiate_prodml23__SkinRelativeToTotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413191,57 +413349,57 @@ SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__SkinRelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness, sizeof(prodml22__SkinRelativeToTotalThickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SkinRelativeToTotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness, sizeof(prodml23__SkinRelativeToTotalThickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SkinRelativeToTotalThickness(soap, tag ? tag : "prodml22:SkinRelativeToTotalThickness", -2, a, type)) + if (soap_out_PointerToprodml23__SkinRelativeToTotalThickness(soap, tag ? tag : "prodml23:SkinRelativeToTotalThickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SkinRelativeToTotalThickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SkinRelativeToTotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, int id, prodml22__PoreVolumeOfInvestigation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, int id, prodml23__PoreVolumeOfInvestigation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation ? type : NULL); } -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, prodml22__PoreVolumeOfInvestigation **a, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *tag, prodml23__PoreVolumeOfInvestigation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PoreVolumeOfInvestigation **)soap_malloc(soap, sizeof(prodml22__PoreVolumeOfInvestigation *)))) + if (!(a = (prodml23__PoreVolumeOfInvestigation **)soap_malloc(soap, sizeof(prodml23__PoreVolumeOfInvestigation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PoreVolumeOfInvestigation *)soap_instantiate_prodml22__PoreVolumeOfInvestigation(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PoreVolumeOfInvestigation *)soap_instantiate_prodml23__PoreVolumeOfInvestigation(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413250,57 +413408,57 @@ SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__PoreVolumeOfInvestigation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation, sizeof(prodml22__PoreVolumeOfInvestigation), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PoreVolumeOfInvestigation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation, sizeof(prodml23__PoreVolumeOfInvestigation), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PoreVolumeOfInvestigation(soap, tag ? tag : "prodml22:PoreVolumeOfInvestigation", -2, a, type)) + if (soap_out_PointerToprodml23__PoreVolumeOfInvestigation(soap, tag ? tag : "prodml23:PoreVolumeOfInvestigation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PoreVolumeOfInvestigation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PoreVolumeOfInvestigation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RadiusOfInvestigation(struct soap *soap, const char *tag, int id, prodml22__RadiusOfInvestigation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RadiusOfInvestigation(struct soap *soap, const char *tag, int id, prodml23__RadiusOfInvestigation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation ? type : NULL); } -SOAP_FMAC3 prodml22__RadiusOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml22__RadiusOfInvestigation(struct soap *soap, const char *tag, prodml22__RadiusOfInvestigation **a, const char *type) +SOAP_FMAC3 prodml23__RadiusOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml23__RadiusOfInvestigation(struct soap *soap, const char *tag, prodml23__RadiusOfInvestigation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RadiusOfInvestigation **)soap_malloc(soap, sizeof(prodml22__RadiusOfInvestigation *)))) + if (!(a = (prodml23__RadiusOfInvestigation **)soap_malloc(soap, sizeof(prodml23__RadiusOfInvestigation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RadiusOfInvestigation *)soap_instantiate_prodml22__RadiusOfInvestigation(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RadiusOfInvestigation *)soap_instantiate_prodml23__RadiusOfInvestigation(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413309,57 +413467,57 @@ SOAP_FMAC3 prodml22__RadiusOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__RadiusOfInvestigation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation, sizeof(prodml22__RadiusOfInvestigation), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RadiusOfInvestigation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation, sizeof(prodml23__RadiusOfInvestigation), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RadiusOfInvestigation(soap, tag ? tag : "prodml22:RadiusOfInvestigation", -2, a, type)) + if (soap_out_PointerToprodml23__RadiusOfInvestigation(soap, tag ? tag : "prodml23:RadiusOfInvestigation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RadiusOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RadiusOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RadiusOfInvestigation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RadiusOfInvestigation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OutputFlowData(struct soap *soap, const char *tag, int id, prodml22__OutputFlowData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OutputFlowData(struct soap *soap, const char *tag, int id, prodml23__OutputFlowData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData ? type : NULL); } -SOAP_FMAC3 prodml22__OutputFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__OutputFlowData(struct soap *soap, const char *tag, prodml22__OutputFlowData **a, const char *type) +SOAP_FMAC3 prodml23__OutputFlowData ** SOAP_FMAC4 soap_in_PointerToprodml23__OutputFlowData(struct soap *soap, const char *tag, prodml23__OutputFlowData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OutputFlowData **)soap_malloc(soap, sizeof(prodml22__OutputFlowData *)))) + if (!(a = (prodml23__OutputFlowData **)soap_malloc(soap, sizeof(prodml23__OutputFlowData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OutputFlowData *)soap_instantiate_prodml22__OutputFlowData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OutputFlowData *)soap_instantiate_prodml23__OutputFlowData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413368,57 +413526,57 @@ SOAP_FMAC3 prodml22__OutputFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__Out } } else - { a = (prodml22__OutputFlowData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData, sizeof(prodml22__OutputFlowData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OutputFlowData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData, sizeof(prodml23__OutputFlowData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OutputFlowData(soap, tag ? tag : "prodml22:OutputFlowData", -2, a, type)) + if (soap_out_PointerToprodml23__OutputFlowData(soap, tag ? tag : "prodml23:OutputFlowData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OutputFlowData ** SOAP_FMAC4 soap_get_PointerToprodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OutputFlowData ** SOAP_FMAC4 soap_get_PointerToprodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OutputFlowData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OutputFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, int id, prodml22__AbstractDeconvolutionOutput *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, int id, prodml23__AbstractDeconvolutionOutput *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, prodml22__AbstractDeconvolutionOutput **a, const char *type) +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, prodml23__AbstractDeconvolutionOutput **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractDeconvolutionOutput **)soap_malloc(soap, sizeof(prodml22__AbstractDeconvolutionOutput *)))) + if (!(a = (prodml23__AbstractDeconvolutionOutput **)soap_malloc(soap, sizeof(prodml23__AbstractDeconvolutionOutput *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractDeconvolutionOutput *)soap_instantiate_prodml22__AbstractDeconvolutionOutput(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractDeconvolutionOutput *)soap_instantiate_prodml23__AbstractDeconvolutionOutput(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413427,57 +413585,57 @@ SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__AbstractDeconvolutionOutput **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, sizeof(prodml22__AbstractDeconvolutionOutput), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractDeconvolutionOutput **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, sizeof(prodml23__AbstractDeconvolutionOutput), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag ? tag : "prodml22:AbstractDeconvolutionOutput", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag ? tag : "prodml23:AbstractDeconvolutionOutput", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeconvolvedFlowData(struct soap *soap, const char *tag, int id, prodml22__DeconvolvedFlowData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeconvolvedFlowData(struct soap *soap, const char *tag, int id, prodml23__DeconvolvedFlowData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData ? type : NULL); } -SOAP_FMAC3 prodml22__DeconvolvedFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__DeconvolvedFlowData(struct soap *soap, const char *tag, prodml22__DeconvolvedFlowData **a, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedFlowData ** SOAP_FMAC4 soap_in_PointerToprodml23__DeconvolvedFlowData(struct soap *soap, const char *tag, prodml23__DeconvolvedFlowData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DeconvolvedFlowData **)soap_malloc(soap, sizeof(prodml22__DeconvolvedFlowData *)))) + if (!(a = (prodml23__DeconvolvedFlowData **)soap_malloc(soap, sizeof(prodml23__DeconvolvedFlowData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DeconvolvedFlowData *)soap_instantiate_prodml22__DeconvolvedFlowData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DeconvolvedFlowData *)soap_instantiate_prodml23__DeconvolvedFlowData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413486,57 +413644,57 @@ SOAP_FMAC3 prodml22__DeconvolvedFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__DeconvolvedFlowData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData, sizeof(prodml22__DeconvolvedFlowData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolvedFlowData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData, sizeof(prodml23__DeconvolvedFlowData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DeconvolvedFlowData(soap, tag ? tag : "prodml22:DeconvolvedFlowData", -2, a, type)) + if (soap_out_PointerToprodml23__DeconvolvedFlowData(soap, tag ? tag : "prodml23:DeconvolvedFlowData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DeconvolvedFlowData ** SOAP_FMAC4 soap_get_PointerToprodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedFlowData ** SOAP_FMAC4 soap_get_PointerToprodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DeconvolvedFlowData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DeconvolvedFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractFlowTestData(struct soap *soap, const char *tag, int id, prodml22__AbstractFlowTestData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractFlowTestData(struct soap *soap, const char *tag, int id, prodml23__AbstractFlowTestData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractFlowTestData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractFlowTestData(struct soap *soap, const char *tag, prodml22__AbstractFlowTestData **a, const char *type) +SOAP_FMAC3 prodml23__AbstractFlowTestData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractFlowTestData(struct soap *soap, const char *tag, prodml23__AbstractFlowTestData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractFlowTestData **)soap_malloc(soap, sizeof(prodml22__AbstractFlowTestData *)))) + if (!(a = (prodml23__AbstractFlowTestData **)soap_malloc(soap, sizeof(prodml23__AbstractFlowTestData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractFlowTestData *)soap_instantiate_prodml22__AbstractFlowTestData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractFlowTestData *)soap_instantiate_prodml23__AbstractFlowTestData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413545,57 +413703,57 @@ SOAP_FMAC3 prodml22__AbstractFlowTestData ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__AbstractFlowTestData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, sizeof(prodml22__AbstractFlowTestData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractFlowTestData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, sizeof(prodml23__AbstractFlowTestData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractFlowTestData(soap, tag ? tag : "prodml22:AbstractFlowTestData", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractFlowTestData(soap, tag ? tag : "prodml23:AbstractFlowTestData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractFlowTestData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractFlowTestData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractFlowTestData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractFlowTestData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SpecializedAnalysis(struct soap *soap, const char *tag, int id, prodml22__SpecializedAnalysis *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SpecializedAnalysis(struct soap *soap, const char *tag, int id, prodml23__SpecializedAnalysis *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis ? type : NULL); } -SOAP_FMAC3 prodml22__SpecializedAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__SpecializedAnalysis(struct soap *soap, const char *tag, prodml22__SpecializedAnalysis **a, const char *type) +SOAP_FMAC3 prodml23__SpecializedAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__SpecializedAnalysis(struct soap *soap, const char *tag, prodml23__SpecializedAnalysis **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SpecializedAnalysis **)soap_malloc(soap, sizeof(prodml22__SpecializedAnalysis *)))) + if (!(a = (prodml23__SpecializedAnalysis **)soap_malloc(soap, sizeof(prodml23__SpecializedAnalysis *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SpecializedAnalysis *)soap_instantiate_prodml22__SpecializedAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SpecializedAnalysis *)soap_instantiate_prodml23__SpecializedAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413604,57 +413762,57 @@ SOAP_FMAC3 prodml22__SpecializedAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__SpecializedAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, sizeof(prodml22__SpecializedAnalysis), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SpecializedAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, sizeof(prodml23__SpecializedAnalysis), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SpecializedAnalysis(soap, tag ? tag : "prodml22:SpecializedAnalysis", -2, a, type)) + if (soap_out_PointerToprodml23__SpecializedAnalysis(soap, tag ? tag : "prodml23:SpecializedAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SpecializedAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SpecializedAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SpecializedAnalysis(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SpecializedAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractRateHistory(struct soap *soap, const char *tag, int id, prodml22__AbstractRateHistory *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractRateHistory(struct soap *soap, const char *tag, int id, prodml23__AbstractRateHistory *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractRateHistory ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractRateHistory(struct soap *soap, const char *tag, prodml22__AbstractRateHistory **a, const char *type) +SOAP_FMAC3 prodml23__AbstractRateHistory ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractRateHistory(struct soap *soap, const char *tag, prodml23__AbstractRateHistory **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractRateHistory **)soap_malloc(soap, sizeof(prodml22__AbstractRateHistory *)))) + if (!(a = (prodml23__AbstractRateHistory **)soap_malloc(soap, sizeof(prodml23__AbstractRateHistory *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractRateHistory *)soap_instantiate_prodml22__AbstractRateHistory(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractRateHistory *)soap_instantiate_prodml23__AbstractRateHistory(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413663,57 +413821,57 @@ SOAP_FMAC3 prodml22__AbstractRateHistory ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__AbstractRateHistory **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory, sizeof(prodml22__AbstractRateHistory), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractRateHistory **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory, sizeof(prodml23__AbstractRateHistory), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractRateHistory(soap, tag ? tag : "prodml22:AbstractRateHistory", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractRateHistory(soap, tag ? tag : "prodml23:AbstractRateHistory", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractRateHistory ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractRateHistory ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractRateHistory(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractRateHistory(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LogLogAnalysis(struct soap *soap, const char *tag, int id, prodml22__LogLogAnalysis *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LogLogAnalysis(struct soap *soap, const char *tag, int id, prodml23__LogLogAnalysis *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis ? type : NULL); } -SOAP_FMAC3 prodml22__LogLogAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__LogLogAnalysis(struct soap *soap, const char *tag, prodml22__LogLogAnalysis **a, const char *type) +SOAP_FMAC3 prodml23__LogLogAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__LogLogAnalysis(struct soap *soap, const char *tag, prodml23__LogLogAnalysis **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LogLogAnalysis **)soap_malloc(soap, sizeof(prodml22__LogLogAnalysis *)))) + if (!(a = (prodml23__LogLogAnalysis **)soap_malloc(soap, sizeof(prodml23__LogLogAnalysis *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LogLogAnalysis *)soap_instantiate_prodml22__LogLogAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LogLogAnalysis *)soap_instantiate_prodml23__LogLogAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413722,23 +413880,23 @@ SOAP_FMAC3 prodml22__LogLogAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__Log } } else - { a = (prodml22__LogLogAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis, sizeof(prodml22__LogLogAnalysis), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LogLogAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis, sizeof(prodml23__LogLogAnalysis), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LogLogAnalysis(soap, tag ? tag : "prodml22:LogLogAnalysis", -2, a, type)) + if (soap_out_PointerToprodml23__LogLogAnalysis(soap, tag ? tag : "prodml23:LogLogAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LogLogAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LogLogAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LogLogAnalysis(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LogLogAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -413803,35 +413961,35 @@ SOAP_FMAC3 eml23__PressurePerTimeMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterferingFlowTestInterval(struct soap *soap, const char *tag, int id, prodml22__InterferingFlowTestInterval *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CompressibilityParameters(struct soap *soap, const char *tag, int id, prodml23__CompressibilityParameters *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters ? type : NULL); } -SOAP_FMAC3 prodml22__InterferingFlowTestInterval ** SOAP_FMAC4 soap_in_PointerToprodml22__InterferingFlowTestInterval(struct soap *soap, const char *tag, prodml22__InterferingFlowTestInterval **a, const char *type) +SOAP_FMAC3 prodml23__CompressibilityParameters ** SOAP_FMAC4 soap_in_PointerToprodml23__CompressibilityParameters(struct soap *soap, const char *tag, prodml23__CompressibilityParameters **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InterferingFlowTestInterval **)soap_malloc(soap, sizeof(prodml22__InterferingFlowTestInterval *)))) + if (!(a = (prodml23__CompressibilityParameters **)soap_malloc(soap, sizeof(prodml23__CompressibilityParameters *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InterferingFlowTestInterval *)soap_instantiate_prodml22__InterferingFlowTestInterval(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__CompressibilityParameters *)soap_instantiate_prodml23__CompressibilityParameters(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413840,57 +413998,57 @@ SOAP_FMAC3 prodml22__InterferingFlowTestInterval ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__InterferingFlowTestInterval **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, sizeof(prodml22__InterferingFlowTestInterval), 0, gsoap_eml2_3_fbase); + { a = (prodml23__CompressibilityParameters **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters, sizeof(prodml23__CompressibilityParameters), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InterferingFlowTestInterval(soap, tag ? tag : "prodml22:InterferingFlowTestInterval", -2, a, type)) + if (soap_out_PointerToprodml23__CompressibilityParameters(soap, tag ? tag : "prodml23:CompressibilityParameters", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InterferingFlowTestInterval ** SOAP_FMAC4 soap_get_PointerToprodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CompressibilityParameters ** SOAP_FMAC4 soap_get_PointerToprodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InterferingFlowTestInterval(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CompressibilityParameters(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CompressibilityParameters(struct soap *soap, const char *tag, int id, prodml22__CompressibilityParameters *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractAnalysis(struct soap *soap, const char *tag, int id, prodml23__AbstractAnalysis *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis ? type : NULL); } -SOAP_FMAC3 prodml22__CompressibilityParameters ** SOAP_FMAC4 soap_in_PointerToprodml22__CompressibilityParameters(struct soap *soap, const char *tag, prodml22__CompressibilityParameters **a, const char *type) +SOAP_FMAC3 prodml23__AbstractAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractAnalysis(struct soap *soap, const char *tag, prodml23__AbstractAnalysis **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CompressibilityParameters **)soap_malloc(soap, sizeof(prodml22__CompressibilityParameters *)))) + if (!(a = (prodml23__AbstractAnalysis **)soap_malloc(soap, sizeof(prodml23__AbstractAnalysis *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__CompressibilityParameters *)soap_instantiate_prodml22__CompressibilityParameters(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractAnalysis *)soap_instantiate_prodml23__AbstractAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413899,57 +414057,57 @@ SOAP_FMAC3 prodml22__CompressibilityParameters ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__CompressibilityParameters **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters, sizeof(prodml22__CompressibilityParameters), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis, sizeof(prodml23__AbstractAnalysis), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CompressibilityParameters(soap, tag ? tag : "prodml22:CompressibilityParameters", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractAnalysis(soap, tag ? tag : "prodml23:AbstractAnalysis", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CompressibilityParameters ** SOAP_FMAC4 soap_get_PointerToprodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CompressibilityParameters(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractAnalysis(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractAnalysis(struct soap *soap, const char *tag, int id, prodml22__AbstractAnalysis *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterferingFlowTestInterval(struct soap *soap, const char *tag, int id, prodml23__InterferingFlowTestInterval *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractAnalysis(struct soap *soap, const char *tag, prodml22__AbstractAnalysis **a, const char *type) +SOAP_FMAC3 prodml23__InterferingFlowTestInterval ** SOAP_FMAC4 soap_in_PointerToprodml23__InterferingFlowTestInterval(struct soap *soap, const char *tag, prodml23__InterferingFlowTestInterval **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractAnalysis **)soap_malloc(soap, sizeof(prodml22__AbstractAnalysis *)))) + if (!(a = (prodml23__InterferingFlowTestInterval **)soap_malloc(soap, sizeof(prodml23__InterferingFlowTestInterval *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractAnalysis *)soap_instantiate_prodml22__AbstractAnalysis(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InterferingFlowTestInterval *)soap_instantiate_prodml23__InterferingFlowTestInterval(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -413958,110 +414116,110 @@ SOAP_FMAC3 prodml22__AbstractAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__A } } else - { a = (prodml22__AbstractAnalysis **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis, sizeof(prodml22__AbstractAnalysis), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InterferingFlowTestInterval **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, sizeof(prodml23__InterferingFlowTestInterval), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractAnalysis(soap, tag ? tag : "prodml22:AbstractAnalysis", -2, a, type)) + if (soap_out_PointerToprodml23__InterferingFlowTestInterval(soap, tag ? tag : "prodml23:InterferingFlowTestInterval", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterferingFlowTestInterval ** SOAP_FMAC4 soap_get_PointerToprodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractAnalysis(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InterferingFlowTestInterval(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PseudoPressureEffectApplied(struct soap *soap, const char *tag, int id, prodml22__PseudoPressureEffectApplied *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PseudoPressureEffectApplied(struct soap *soap, const char *tag, int id, prodml23__PseudoPressureEffectApplied *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__PseudoPressureEffectApplied(soap, tag, id, *a, type); + return soap_out_prodml23__PseudoPressureEffectApplied(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_in_PointerToprodml22__PseudoPressureEffectApplied(struct soap *soap, const char *tag, prodml22__PseudoPressureEffectApplied **a, const char *type) +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_in_PointerToprodml23__PseudoPressureEffectApplied(struct soap *soap, const char *tag, prodml23__PseudoPressureEffectApplied **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PseudoPressureEffectApplied **)soap_malloc(soap, sizeof(prodml22__PseudoPressureEffectApplied *)))) + if (!(a = (prodml23__PseudoPressureEffectApplied **)soap_malloc(soap, sizeof(prodml23__PseudoPressureEffectApplied *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__PseudoPressureEffectApplied(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__PseudoPressureEffectApplied(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__PseudoPressureEffectApplied **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied, sizeof(prodml22__PseudoPressureEffectApplied), 0, NULL); + { a = (prodml23__PseudoPressureEffectApplied **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied, sizeof(prodml23__PseudoPressureEffectApplied), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PseudoPressureEffectApplied(soap, tag ? tag : "prodml22:PseudoPressureEffectApplied", -2, a, type)) + if (soap_out_PointerToprodml23__PseudoPressureEffectApplied(soap, tag ? tag : "prodml23:PseudoPressureEffectApplied", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_get_PointerToprodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_get_PointerToprodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PseudoPressureEffectApplied(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PseudoPressureEffectApplied(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LayerModel(struct soap *soap, prodml22__LayerModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LayerModel(struct soap *soap, prodml23__LayerModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LayerModel(struct soap *soap, const char *tag, int id, prodml22__LayerModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LayerModel(struct soap *soap, const char *tag, int id, prodml23__LayerModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel ? type : NULL); } -SOAP_FMAC3 prodml22__LayerModel ** SOAP_FMAC4 soap_in_PointerToprodml22__LayerModel(struct soap *soap, const char *tag, prodml22__LayerModel **a, const char *type) +SOAP_FMAC3 prodml23__LayerModel ** SOAP_FMAC4 soap_in_PointerToprodml23__LayerModel(struct soap *soap, const char *tag, prodml23__LayerModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LayerModel **)soap_malloc(soap, sizeof(prodml22__LayerModel *)))) + if (!(a = (prodml23__LayerModel **)soap_malloc(soap, sizeof(prodml23__LayerModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LayerModel *)soap_instantiate_prodml22__LayerModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LayerModel *)soap_instantiate_prodml23__LayerModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414070,57 +414228,57 @@ SOAP_FMAC3 prodml22__LayerModel ** SOAP_FMAC4 soap_in_PointerToprodml22__LayerMo } } else - { a = (prodml22__LayerModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, sizeof(prodml22__LayerModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LayerModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, sizeof(prodml23__LayerModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LayerModel(struct soap *soap, prodml22__LayerModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LayerModel(struct soap *soap, prodml23__LayerModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LayerModel(soap, tag ? tag : "prodml22:LayerModel", -2, a, type)) + if (soap_out_PointerToprodml23__LayerModel(soap, tag ? tag : "prodml23:LayerModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LayerModel ** SOAP_FMAC4 soap_get_PointerToprodml22__LayerModel(struct soap *soap, prodml22__LayerModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LayerModel ** SOAP_FMAC4 soap_get_PointerToprodml23__LayerModel(struct soap *soap, prodml23__LayerModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LayerModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LayerModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreBaseModel(struct soap *soap, const char *tag, int id, prodml22__WellboreBaseModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreBaseModel(struct soap *soap, const char *tag, int id, prodml23__WellboreBaseModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel ? type : NULL); } -SOAP_FMAC3 prodml22__WellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreBaseModel(struct soap *soap, const char *tag, prodml22__WellboreBaseModel **a, const char *type) +SOAP_FMAC3 prodml23__WellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreBaseModel(struct soap *soap, const char *tag, prodml23__WellboreBaseModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellboreBaseModel **)soap_malloc(soap, sizeof(prodml22__WellboreBaseModel *)))) + if (!(a = (prodml23__WellboreBaseModel **)soap_malloc(soap, sizeof(prodml23__WellboreBaseModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellboreBaseModel *)soap_instantiate_prodml22__WellboreBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellboreBaseModel *)soap_instantiate_prodml23__WellboreBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414129,57 +414287,57 @@ SOAP_FMAC3 prodml22__WellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__WellboreBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel, sizeof(prodml22__WellboreBaseModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellboreBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel, sizeof(prodml23__WellboreBaseModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellboreBaseModel(soap, tag ? tag : "prodml22:WellboreBaseModel", -2, a, type)) + if (soap_out_PointerToprodml23__WellboreBaseModel(soap, tag ? tag : "prodml23:WellboreBaseModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellboreBaseModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellboreBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeconvolutionOutput(struct soap *soap, const char *tag, int id, prodml22__DeconvolutionOutput *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeconvolutionOutput(struct soap *soap, const char *tag, int id, prodml23__DeconvolutionOutput *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput ? type : NULL); } -SOAP_FMAC3 prodml22__DeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml22__DeconvolutionOutput(struct soap *soap, const char *tag, prodml22__DeconvolutionOutput **a, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml23__DeconvolutionOutput(struct soap *soap, const char *tag, prodml23__DeconvolutionOutput **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DeconvolutionOutput **)soap_malloc(soap, sizeof(prodml22__DeconvolutionOutput *)))) + if (!(a = (prodml23__DeconvolutionOutput **)soap_malloc(soap, sizeof(prodml23__DeconvolutionOutput *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DeconvolutionOutput *)soap_instantiate_prodml22__DeconvolutionOutput(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DeconvolutionOutput *)soap_instantiate_prodml23__DeconvolutionOutput(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414188,57 +414346,57 @@ SOAP_FMAC3 prodml22__DeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__DeconvolutionOutput **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput, sizeof(prodml22__DeconvolutionOutput), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolutionOutput **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput, sizeof(prodml23__DeconvolutionOutput), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DeconvolutionOutput(soap, tag ? tag : "prodml22:DeconvolutionOutput", -2, a, type)) + if (soap_out_PointerToprodml23__DeconvolutionOutput(soap, tag ? tag : "prodml23:DeconvolutionOutput", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DeconvolutionOutput(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DeconvolutionOutput(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Channel(struct soap *soap, prodml22__Channel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Channel(struct soap *soap, prodml23__Channel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Channel(struct soap *soap, const char *tag, int id, prodml22__Channel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Channel(struct soap *soap, const char *tag, int id, prodml23__Channel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Channel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Channel ? type : NULL); } -SOAP_FMAC3 prodml22__Channel ** SOAP_FMAC4 soap_in_PointerToprodml22__Channel(struct soap *soap, const char *tag, prodml22__Channel **a, const char *type) +SOAP_FMAC3 prodml23__Channel ** SOAP_FMAC4 soap_in_PointerToprodml23__Channel(struct soap *soap, const char *tag, prodml23__Channel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__Channel **)soap_malloc(soap, sizeof(prodml22__Channel *)))) + if (!(a = (prodml23__Channel **)soap_malloc(soap, sizeof(prodml23__Channel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__Channel *)soap_instantiate_prodml22__Channel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__Channel *)soap_instantiate_prodml23__Channel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414247,163 +414405,163 @@ SOAP_FMAC3 prodml22__Channel ** SOAP_FMAC4 soap_in_PointerToprodml22__Channel(st } } else - { a = (prodml22__Channel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, sizeof(prodml22__Channel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__Channel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, sizeof(prodml23__Channel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Channel(struct soap *soap, prodml22__Channel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Channel(struct soap *soap, prodml23__Channel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__Channel(soap, tag ? tag : "prodml22:Channel", -2, a, type)) + if (soap_out_PointerToprodml23__Channel(soap, tag ? tag : "prodml23:Channel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Channel ** SOAP_FMAC4 soap_get_PointerToprodml22__Channel(struct soap *soap, prodml22__Channel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Channel ** SOAP_FMAC4 soap_get_PointerToprodml23__Channel(struct soap *soap, prodml23__Channel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__Channel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__Channel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidPhaseKind(struct soap *soap, const char *tag, int id, prodml22__FluidPhaseKind *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidPhaseKind(struct soap *soap, const char *tag, int id, prodml23__FluidPhaseKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__FluidPhaseKind(soap, tag, id, *a, type); + return soap_out_prodml23__FluidPhaseKind(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__FluidPhaseKind ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidPhaseKind(struct soap *soap, const char *tag, prodml22__FluidPhaseKind **a, const char *type) +SOAP_FMAC3 prodml23__FluidPhaseKind ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidPhaseKind(struct soap *soap, const char *tag, prodml23__FluidPhaseKind **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidPhaseKind **)soap_malloc(soap, sizeof(prodml22__FluidPhaseKind *)))) + if (!(a = (prodml23__FluidPhaseKind **)soap_malloc(soap, sizeof(prodml23__FluidPhaseKind *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__FluidPhaseKind(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__FluidPhaseKind(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__FluidPhaseKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind, sizeof(prodml22__FluidPhaseKind), 0, NULL); + { a = (prodml23__FluidPhaseKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind, sizeof(prodml23__FluidPhaseKind), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidPhaseKind(soap, tag ? tag : "prodml22:FluidPhaseKind", -2, a, type)) + if (soap_out_PointerToprodml23__FluidPhaseKind(soap, tag ? tag : "prodml23:FluidPhaseKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidPhaseKind ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidPhaseKind ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidPhaseKind(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidPhaseKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReservoirLifeCycleState(struct soap *soap, const char *tag, int id, prodml22__ReservoirLifeCycleState *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReservoirLifeCycleState(struct soap *soap, const char *tag, int id, prodml23__ReservoirLifeCycleState *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ReservoirLifeCycleState(soap, tag, id, *a, type); + return soap_out_prodml23__ReservoirLifeCycleState(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ReservoirLifeCycleState ** SOAP_FMAC4 soap_in_PointerToprodml22__ReservoirLifeCycleState(struct soap *soap, const char *tag, prodml22__ReservoirLifeCycleState **a, const char *type) +SOAP_FMAC3 prodml23__ReservoirLifeCycleState ** SOAP_FMAC4 soap_in_PointerToprodml23__ReservoirLifeCycleState(struct soap *soap, const char *tag, prodml23__ReservoirLifeCycleState **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReservoirLifeCycleState **)soap_malloc(soap, sizeof(prodml22__ReservoirLifeCycleState *)))) + if (!(a = (prodml23__ReservoirLifeCycleState **)soap_malloc(soap, sizeof(prodml23__ReservoirLifeCycleState *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ReservoirLifeCycleState(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ReservoirLifeCycleState(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ReservoirLifeCycleState **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState, sizeof(prodml22__ReservoirLifeCycleState), 0, NULL); + { a = (prodml23__ReservoirLifeCycleState **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState, sizeof(prodml23__ReservoirLifeCycleState), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReservoirLifeCycleState(soap, tag ? tag : "prodml22:ReservoirLifeCycleState", -2, a, type)) + if (soap_out_PointerToprodml23__ReservoirLifeCycleState(soap, tag ? tag : "prodml23:ReservoirLifeCycleState", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReservoirLifeCycleState ** SOAP_FMAC4 soap_get_PointerToprodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReservoirLifeCycleState ** SOAP_FMAC4 soap_get_PointerToprodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReservoirLifeCycleState(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReservoirLifeCycleState(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleContaminant(struct soap *soap, const char *tag, int id, prodml22__SampleContaminant *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleContaminant(struct soap *soap, const char *tag, int id, prodml23__SampleContaminant *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant ? type : NULL); } -SOAP_FMAC3 prodml22__SampleContaminant ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleContaminant(struct soap *soap, const char *tag, prodml22__SampleContaminant **a, const char *type) +SOAP_FMAC3 prodml23__SampleContaminant ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleContaminant(struct soap *soap, const char *tag, prodml23__SampleContaminant **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SampleContaminant **)soap_malloc(soap, sizeof(prodml22__SampleContaminant *)))) + if (!(a = (prodml23__SampleContaminant **)soap_malloc(soap, sizeof(prodml23__SampleContaminant *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SampleContaminant *)soap_instantiate_prodml22__SampleContaminant(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SampleContaminant *)soap_instantiate_prodml23__SampleContaminant(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414412,57 +414570,57 @@ SOAP_FMAC3 prodml22__SampleContaminant ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__SampleContaminant **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, sizeof(prodml22__SampleContaminant), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SampleContaminant **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, sizeof(prodml23__SampleContaminant), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SampleContaminant(soap, tag ? tag : "prodml22:SampleContaminant", -2, a, type)) + if (soap_out_PointerToprodml23__SampleContaminant(soap, tag ? tag : "prodml23:SampleContaminant", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleContaminant ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleContaminant ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SampleContaminant(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SampleContaminant(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidAnalysisReport(struct soap *soap, const char *tag, int id, prodml22__FluidAnalysisReport *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidAnalysisReport(struct soap *soap, const char *tag, int id, prodml23__FluidAnalysisReport *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport ? type : NULL); } -SOAP_FMAC3 prodml22__FluidAnalysisReport ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidAnalysisReport(struct soap *soap, const char *tag, prodml22__FluidAnalysisReport **a, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisReport ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidAnalysisReport(struct soap *soap, const char *tag, prodml23__FluidAnalysisReport **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidAnalysisReport **)soap_malloc(soap, sizeof(prodml22__FluidAnalysisReport *)))) + if (!(a = (prodml23__FluidAnalysisReport **)soap_malloc(soap, sizeof(prodml23__FluidAnalysisReport *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidAnalysisReport *)soap_instantiate_prodml22__FluidAnalysisReport(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidAnalysisReport *)soap_instantiate_prodml23__FluidAnalysisReport(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414471,23 +414629,23 @@ SOAP_FMAC3 prodml22__FluidAnalysisReport ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__FluidAnalysisReport **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, sizeof(prodml22__FluidAnalysisReport), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidAnalysisReport **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, sizeof(prodml23__FluidAnalysisReport), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidAnalysisReport(soap, tag ? tag : "prodml22:FluidAnalysisReport", -2, a, type)) + if (soap_out_PointerToprodml23__FluidAnalysisReport(soap, tag ? tag : "prodml23:FluidAnalysisReport", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidAnalysisReport ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisReport ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidAnalysisReport(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidAnalysisReport(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -414611,88 +414769,88 @@ SOAP_FMAC3 eml23__EnergyPerMassMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__En return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ValueStatus(struct soap *soap, const char *tag, int id, prodml22__ValueStatus *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ValueStatus(struct soap *soap, const char *tag, int id, prodml23__ValueStatus *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ValueStatus(soap, tag, id, *a, type); + return soap_out_prodml23__ValueStatus(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ValueStatus ** SOAP_FMAC4 soap_in_PointerToprodml22__ValueStatus(struct soap *soap, const char *tag, prodml22__ValueStatus **a, const char *type) +SOAP_FMAC3 prodml23__ValueStatus ** SOAP_FMAC4 soap_in_PointerToprodml23__ValueStatus(struct soap *soap, const char *tag, prodml23__ValueStatus **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ValueStatus **)soap_malloc(soap, sizeof(prodml22__ValueStatus *)))) + if (!(a = (prodml23__ValueStatus **)soap_malloc(soap, sizeof(prodml23__ValueStatus *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ValueStatus(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ValueStatus(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ValueStatus **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus, sizeof(prodml22__ValueStatus), 0, NULL); + { a = (prodml23__ValueStatus **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus, sizeof(prodml23__ValueStatus), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ValueStatus(soap, tag ? tag : "prodml22:ValueStatus", -2, a, type)) + if (soap_out_PointerToprodml23__ValueStatus(soap, tag ? tag : "prodml23:ValueStatus", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ValueStatus ** SOAP_FMAC4 soap_get_PointerToprodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ValueStatus ** SOAP_FMAC4 soap_get_PointerToprodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ValueStatus(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ValueStatus(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationModel(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationModel(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationModel ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationModel(struct soap *soap, const char *tag, prodml22__FluidCharacterizationModel **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationModel ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationModel(struct soap *soap, const char *tag, prodml23__FluidCharacterizationModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationModel **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationModel *)))) + if (!(a = (prodml23__FluidCharacterizationModel **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationModel *)soap_instantiate_prodml22__FluidCharacterizationModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationModel *)soap_instantiate_prodml23__FluidCharacterizationModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414701,57 +414859,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationModel ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__FluidCharacterizationModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, sizeof(prodml22__FluidCharacterizationModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, sizeof(prodml23__FluidCharacterizationModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationModel(soap, tag ? tag : "prodml22:FluidCharacterizationModel", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationModel(soap, tag ? tag : "prodml23:FluidCharacterizationModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationModel ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationModel ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationSource(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationSource *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationSource(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationSource *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationSource ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationSource(struct soap *soap, const char *tag, prodml22__FluidCharacterizationSource **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationSource ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationSource(struct soap *soap, const char *tag, prodml23__FluidCharacterizationSource **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationSource **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationSource *)))) + if (!(a = (prodml23__FluidCharacterizationSource **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationSource *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationSource *)soap_instantiate_prodml22__FluidCharacterizationSource(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationSource *)soap_instantiate_prodml23__FluidCharacterizationSource(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414760,57 +414918,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationSource ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__FluidCharacterizationSource **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, sizeof(prodml22__FluidCharacterizationSource), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationSource **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, sizeof(prodml23__FluidCharacterizationSource), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationSource(soap, tag ? tag : "prodml22:FluidCharacterizationSource", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationSource(soap, tag ? tag : "prodml23:FluidCharacterizationSource", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationSource ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationSource ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationSource(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationSource(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, int id, prodml22__BinaryInteractionCoefficientSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, int id, prodml23__BinaryInteractionCoefficientSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet ? type : NULL); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, prodml22__BinaryInteractionCoefficientSet **a, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *tag, prodml23__BinaryInteractionCoefficientSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__BinaryInteractionCoefficientSet **)soap_malloc(soap, sizeof(prodml22__BinaryInteractionCoefficientSet *)))) + if (!(a = (prodml23__BinaryInteractionCoefficientSet **)soap_malloc(soap, sizeof(prodml23__BinaryInteractionCoefficientSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__BinaryInteractionCoefficientSet *)soap_instantiate_prodml22__BinaryInteractionCoefficientSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__BinaryInteractionCoefficientSet *)soap_instantiate_prodml23__BinaryInteractionCoefficientSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414819,57 +414977,57 @@ SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_in_Point } } else - { a = (prodml22__BinaryInteractionCoefficientSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet, sizeof(prodml22__BinaryInteractionCoefficientSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__BinaryInteractionCoefficientSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet, sizeof(prodml23__BinaryInteractionCoefficientSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(soap, tag ? tag : "prodml22:BinaryInteractionCoefficientSet", -2, a, type)) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(soap, tag ? tag : "prodml23:BinaryInteractionCoefficientSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_get_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_get_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ComponentPropertySet(struct soap *soap, const char *tag, int id, prodml22__ComponentPropertySet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ComponentPropertySet(struct soap *soap, const char *tag, int id, prodml23__ComponentPropertySet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet ? type : NULL); } -SOAP_FMAC3 prodml22__ComponentPropertySet ** SOAP_FMAC4 soap_in_PointerToprodml22__ComponentPropertySet(struct soap *soap, const char *tag, prodml22__ComponentPropertySet **a, const char *type) +SOAP_FMAC3 prodml23__ComponentPropertySet ** SOAP_FMAC4 soap_in_PointerToprodml23__ComponentPropertySet(struct soap *soap, const char *tag, prodml23__ComponentPropertySet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ComponentPropertySet **)soap_malloc(soap, sizeof(prodml22__ComponentPropertySet *)))) + if (!(a = (prodml23__ComponentPropertySet **)soap_malloc(soap, sizeof(prodml23__ComponentPropertySet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ComponentPropertySet *)soap_instantiate_prodml22__ComponentPropertySet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ComponentPropertySet *)soap_instantiate_prodml23__ComponentPropertySet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -414878,76 +415036,76 @@ SOAP_FMAC3 prodml22__ComponentPropertySet ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__ComponentPropertySet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet, sizeof(prodml22__ComponentPropertySet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ComponentPropertySet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet, sizeof(prodml23__ComponentPropertySet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ComponentPropertySet(soap, tag ? tag : "prodml22:ComponentPropertySet", -2, a, type)) + if (soap_out_PointerToprodml23__ComponentPropertySet(soap, tag ? tag : "prodml23:ComponentPropertySet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ComponentPropertySet ** SOAP_FMAC4 soap_get_PointerToprodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ComponentPropertySet ** SOAP_FMAC4 soap_get_PointerToprodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ComponentPropertySet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ComponentPropertySet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MixingRule(struct soap *soap, prodml22__MixingRule *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MixingRule(struct soap *soap, prodml23__MixingRule *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MixingRule(struct soap *soap, const char *tag, int id, prodml22__MixingRule *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MixingRule(struct soap *soap, const char *tag, int id, prodml23__MixingRule *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__MixingRule(soap, tag, id, *a, type); + return soap_out_prodml23__MixingRule(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__MixingRule ** SOAP_FMAC4 soap_in_PointerToprodml22__MixingRule(struct soap *soap, const char *tag, prodml22__MixingRule **a, const char *type) +SOAP_FMAC3 prodml23__MixingRule ** SOAP_FMAC4 soap_in_PointerToprodml23__MixingRule(struct soap *soap, const char *tag, prodml23__MixingRule **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MixingRule **)soap_malloc(soap, sizeof(prodml22__MixingRule *)))) + if (!(a = (prodml23__MixingRule **)soap_malloc(soap, sizeof(prodml23__MixingRule *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__MixingRule(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__MixingRule(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__MixingRule **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule, sizeof(prodml22__MixingRule), 0, NULL); + { a = (prodml23__MixingRule **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule, sizeof(prodml23__MixingRule), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MixingRule(struct soap *soap, prodml22__MixingRule *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MixingRule(struct soap *soap, prodml23__MixingRule *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MixingRule(soap, tag ? tag : "prodml22:MixingRule", -2, a, type)) + if (soap_out_PointerToprodml23__MixingRule(soap, tag ? tag : "prodml23:MixingRule", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MixingRule ** SOAP_FMAC4 soap_get_PointerToprodml22__MixingRule(struct soap *soap, prodml22__MixingRule **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MixingRule ** SOAP_FMAC4 soap_get_PointerToprodml23__MixingRule(struct soap *soap, prodml23__MixingRule **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MixingRule(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MixingRule(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -415836,10 +415994,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToeml23__PropertyKind(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToeml23__PropertyKind(struct soap *soap, const char *tag, int id, eml23__PropertyKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 eml23__PropertyKind ** SOAP_FMAC4 soap_in_PointerToeml23__PropertyKind(struct soap *soap, const char *tag, eml23__PropertyKind **a, const char *type) @@ -416480,10 +416641,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__WellboreMarker(stru SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__WellboreMarker(struct soap *soap, const char *tag, int id, witsml21__WellboreMarker *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__WellboreMarker ** SOAP_FMAC4 soap_in_PointerTowitsml21__WellboreMarker(struct soap *soap, const char *tag, witsml21__WellboreMarker **a, const char *type) @@ -418455,10 +418619,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__StimJobStage(struct SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__StimJobStage(struct soap *soap, const char *tag, int id, witsml21__StimJobStage *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__StimJobStage ** SOAP_FMAC4 soap_in_PointerTowitsml21__StimJobStage(struct soap *soap, const char *tag, witsml21__StimJobStage **a, const char *type) @@ -419145,10 +419312,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__WeightingFunction(s SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__WeightingFunction(struct soap *soap, const char *tag, int id, witsml21__WeightingFunction *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__WeightingFunction ** SOAP_FMAC4 soap_in_PointerTowitsml21__WeightingFunction(struct soap *soap, const char *tag, witsml21__WeightingFunction **a, const char *type) @@ -419375,10 +419545,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__ToolErrorModel(stru SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__ToolErrorModel(struct soap *soap, const char *tag, int id, witsml21__ToolErrorModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__ToolErrorModel ** SOAP_FMAC4 soap_in_PointerTowitsml21__ToolErrorModel(struct soap *soap, const char *tag, witsml21__ToolErrorModel **a, const char *type) @@ -419723,10 +419896,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__ErrorTerm(struct so SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__ErrorTerm(struct soap *soap, const char *tag, int id, witsml21__ErrorTerm *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__ErrorTerm ** SOAP_FMAC4 soap_in_PointerTowitsml21__ErrorTerm(struct soap *soap, const char *tag, witsml21__ErrorTerm **a, const char *type) @@ -420232,10 +420408,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__LoggingToolKind(str SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__LoggingToolKind(struct soap *soap, const char *tag, int id, witsml21__LoggingToolKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__LoggingToolKind ** SOAP_FMAC4 soap_in_PointerTowitsml21__LoggingToolKind(struct soap *soap, const char *tag, witsml21__LoggingToolKind **a, const char *type) @@ -420398,10 +420577,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__ChannelKind(struct SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__ChannelKind(struct soap *soap, const char *tag, int id, witsml21__ChannelKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__ChannelKind ** SOAP_FMAC4 soap_in_PointerTowitsml21__ChannelKind(struct soap *soap, const char *tag, witsml21__ChannelKind **a, const char *type) @@ -424265,10 +424447,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToresqml22__ReservoirCompartmen SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToresqml22__ReservoirCompartmentInterpretation(struct soap *soap, const char *tag, int id, resqml22__ReservoirCompartmentInterpretation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 resqml22__ReservoirCompartmentInterpretation ** SOAP_FMAC4 soap_in_PointerToresqml22__ReservoirCompartmentInterpretation(struct soap *soap, const char *tag, resqml22__ReservoirCompartmentInterpretation **a, const char *type) @@ -424785,35 +424970,35 @@ SOAP_FMAC3 resqml22__Point3d ** SOAP_FMAC4 soap_get_PointerToresqml22__Point3d(s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointQuantity(struct soap *soap, const char *tag, int id, prodml22__EndpointQuantity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointQuantity(struct soap *soap, const char *tag, int id, prodml23__EndpointQuantity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity ? type : NULL); } -SOAP_FMAC3 prodml22__EndpointQuantity ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointQuantity(struct soap *soap, const char *tag, prodml22__EndpointQuantity **a, const char *type) +SOAP_FMAC3 prodml23__EndpointQuantity ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointQuantity(struct soap *soap, const char *tag, prodml23__EndpointQuantity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__EndpointQuantity **)soap_malloc(soap, sizeof(prodml22__EndpointQuantity *)))) + if (!(a = (prodml23__EndpointQuantity **)soap_malloc(soap, sizeof(prodml23__EndpointQuantity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__EndpointQuantity *)soap_instantiate_prodml22__EndpointQuantity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__EndpointQuantity *)soap_instantiate_prodml23__EndpointQuantity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -424822,57 +425007,57 @@ SOAP_FMAC3 prodml22__EndpointQuantity ** SOAP_FMAC4 soap_in_PointerToprodml22__E } } else - { a = (prodml22__EndpointQuantity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity, sizeof(prodml22__EndpointQuantity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__EndpointQuantity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity, sizeof(prodml23__EndpointQuantity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__EndpointQuantity(soap, tag ? tag : "prodml22:EndpointQuantity", -2, a, type)) + if (soap_out_PointerToprodml23__EndpointQuantity(soap, tag ? tag : "prodml23:EndpointQuantity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__EndpointQuantity ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQuantity ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__EndpointQuantity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__EndpointQuantity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RelativeCoordinate(struct soap *soap, const char *tag, int id, prodml22__RelativeCoordinate *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RelativeCoordinate(struct soap *soap, const char *tag, int id, prodml23__RelativeCoordinate *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate ? type : NULL); } -SOAP_FMAC3 prodml22__RelativeCoordinate ** SOAP_FMAC4 soap_in_PointerToprodml22__RelativeCoordinate(struct soap *soap, const char *tag, prodml22__RelativeCoordinate **a, const char *type) +SOAP_FMAC3 prodml23__RelativeCoordinate ** SOAP_FMAC4 soap_in_PointerToprodml23__RelativeCoordinate(struct soap *soap, const char *tag, prodml23__RelativeCoordinate **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RelativeCoordinate **)soap_malloc(soap, sizeof(prodml22__RelativeCoordinate *)))) + if (!(a = (prodml23__RelativeCoordinate **)soap_malloc(soap, sizeof(prodml23__RelativeCoordinate *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RelativeCoordinate *)soap_instantiate_prodml22__RelativeCoordinate(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RelativeCoordinate *)soap_instantiate_prodml23__RelativeCoordinate(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -424881,57 +425066,57 @@ SOAP_FMAC3 prodml22__RelativeCoordinate ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__RelativeCoordinate **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate, sizeof(prodml22__RelativeCoordinate), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RelativeCoordinate **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate, sizeof(prodml23__RelativeCoordinate), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RelativeCoordinate(soap, tag ? tag : "prodml22:RelativeCoordinate", -2, a, type)) + if (soap_out_PointerToprodml23__RelativeCoordinate(soap, tag ? tag : "prodml23:RelativeCoordinate", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RelativeCoordinate ** SOAP_FMAC4 soap_get_PointerToprodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RelativeCoordinate ** SOAP_FMAC4 soap_get_PointerToprodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RelativeCoordinate(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RelativeCoordinate(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowPort(struct soap *soap, const char *tag, int id, prodml22__ProductFlowPort *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowPort(struct soap *soap, const char *tag, int id, prodml23__ProductFlowPort *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowPort ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowPort(struct soap *soap, const char *tag, prodml22__ProductFlowPort **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPort ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowPort(struct soap *soap, const char *tag, prodml23__ProductFlowPort **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowPort **)soap_malloc(soap, sizeof(prodml22__ProductFlowPort *)))) + if (!(a = (prodml23__ProductFlowPort **)soap_malloc(soap, sizeof(prodml23__ProductFlowPort *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowPort *)soap_instantiate_prodml22__ProductFlowPort(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowPort *)soap_instantiate_prodml23__ProductFlowPort(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -424940,57 +425125,57 @@ SOAP_FMAC3 prodml22__ProductFlowPort ** SOAP_FMAC4 soap_in_PointerToprodml22__Pr } } else - { a = (prodml22__ProductFlowPort **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, sizeof(prodml22__ProductFlowPort), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowPort **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, sizeof(prodml23__ProductFlowPort), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowPort(soap, tag ? tag : "prodml22:ProductFlowPort", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowPort(soap, tag ? tag : "prodml23:ProductFlowPort", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowPort ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPort ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowPort(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowPort(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, int id, prodml22__ProductFlowExpectedUnitProperty *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, int id, prodml23__ProductFlowExpectedUnitProperty *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, prodml22__ProductFlowExpectedUnitProperty **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, prodml23__ProductFlowExpectedUnitProperty **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowExpectedUnitProperty **)soap_malloc(soap, sizeof(prodml22__ProductFlowExpectedUnitProperty *)))) + if (!(a = (prodml23__ProductFlowExpectedUnitProperty **)soap_malloc(soap, sizeof(prodml23__ProductFlowExpectedUnitProperty *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowExpectedUnitProperty *)soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowExpectedUnitProperty *)soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -424999,57 +425184,57 @@ SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_in_Point } } else - { a = (prodml22__ProductFlowExpectedUnitProperty **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, sizeof(prodml22__ProductFlowExpectedUnitProperty), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowExpectedUnitProperty **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, sizeof(prodml23__ProductFlowExpectedUnitProperty), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag ? tag : "prodml22:ProductFlowExpectedUnitProperty", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag ? tag : "prodml23:ProductFlowExpectedUnitProperty", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConnectedNode(struct soap *soap, const char *tag, int id, prodml22__ConnectedNode *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConnectedNode(struct soap *soap, const char *tag, int id, prodml23__ConnectedNode *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode ? type : NULL); } -SOAP_FMAC3 prodml22__ConnectedNode ** SOAP_FMAC4 soap_in_PointerToprodml22__ConnectedNode(struct soap *soap, const char *tag, prodml22__ConnectedNode **a, const char *type) +SOAP_FMAC3 prodml23__ConnectedNode ** SOAP_FMAC4 soap_in_PointerToprodml23__ConnectedNode(struct soap *soap, const char *tag, prodml23__ConnectedNode **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ConnectedNode **)soap_malloc(soap, sizeof(prodml22__ConnectedNode *)))) + if (!(a = (prodml23__ConnectedNode **)soap_malloc(soap, sizeof(prodml23__ConnectedNode *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ConnectedNode *)soap_instantiate_prodml22__ConnectedNode(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ConnectedNode *)soap_instantiate_prodml23__ConnectedNode(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425058,57 +425243,57 @@ SOAP_FMAC3 prodml22__ConnectedNode ** SOAP_FMAC4 soap_in_PointerToprodml22__Conn } } else - { a = (prodml22__ConnectedNode **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, sizeof(prodml22__ConnectedNode), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ConnectedNode **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, sizeof(prodml23__ConnectedNode), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ConnectedNode(soap, tag ? tag : "prodml22:ConnectedNode", -2, a, type)) + if (soap_out_PointerToprodml23__ConnectedNode(soap, tag ? tag : "prodml23:ConnectedNode", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ConnectedNode ** SOAP_FMAC4 soap_get_PointerToprodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConnectedNode ** SOAP_FMAC4 soap_get_PointerToprodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ConnectedNode(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ConnectedNode(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, const char *tag, int id, prodml22__ProductFlowQualifierExpected *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, const char *tag, int id, prodml23__ProductFlowQualifierExpected *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, const char *tag, prodml22__ProductFlowQualifierExpected **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, const char *tag, prodml23__ProductFlowQualifierExpected **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowQualifierExpected **)soap_malloc(soap, sizeof(prodml22__ProductFlowQualifierExpected *)))) + if (!(a = (prodml23__ProductFlowQualifierExpected **)soap_malloc(soap, sizeof(prodml23__ProductFlowQualifierExpected *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowQualifierExpected *)soap_instantiate_prodml22__ProductFlowQualifierExpected(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowQualifierExpected *)soap_instantiate_prodml23__ProductFlowQualifierExpected(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425117,57 +425302,57 @@ SOAP_FMAC3 prodml22__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__ProductFlowQualifierExpected **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, sizeof(prodml22__ProductFlowQualifierExpected), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowQualifierExpected **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, sizeof(prodml23__ProductFlowQualifierExpected), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowQualifierExpected(soap, tag ? tag : "prodml22:ProductFlowQualifierExpected", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowQualifierExpected(soap, tag ? tag : "prodml23:ProductFlowQualifierExpected", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowQualifierExpected(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowQualifierExpected(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ExpectedFlowQualifier(struct soap *soap, const char *tag, int id, prodml22__ExpectedFlowQualifier *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ExpectedFlowQualifier(struct soap *soap, const char *tag, int id, prodml23__ExpectedFlowQualifier *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier ? type : NULL); } -SOAP_FMAC3 prodml22__ExpectedFlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__ExpectedFlowQualifier(struct soap *soap, const char *tag, prodml22__ExpectedFlowQualifier **a, const char *type) +SOAP_FMAC3 prodml23__ExpectedFlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__ExpectedFlowQualifier(struct soap *soap, const char *tag, prodml23__ExpectedFlowQualifier **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ExpectedFlowQualifier **)soap_malloc(soap, sizeof(prodml22__ExpectedFlowQualifier *)))) + if (!(a = (prodml23__ExpectedFlowQualifier **)soap_malloc(soap, sizeof(prodml23__ExpectedFlowQualifier *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ExpectedFlowQualifier *)soap_instantiate_prodml22__ExpectedFlowQualifier(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ExpectedFlowQualifier *)soap_instantiate_prodml23__ExpectedFlowQualifier(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425176,57 +425361,57 @@ SOAP_FMAC3 prodml22__ExpectedFlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__ExpectedFlowQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier, sizeof(prodml22__ExpectedFlowQualifier), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ExpectedFlowQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier, sizeof(prodml23__ExpectedFlowQualifier), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ExpectedFlowQualifier(soap, tag ? tag : "prodml22:ExpectedFlowQualifier", -2, a, type)) + if (soap_out_PointerToprodml23__ExpectedFlowQualifier(soap, tag ? tag : "prodml23:ExpectedFlowQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ExpectedFlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ExpectedFlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ExpectedFlowQualifier(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ExpectedFlowQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__GeneralMeasureType(struct soap *soap, const char *tag, int id, prodml22__GeneralMeasureType *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__GeneralMeasureType(struct soap *soap, const char *tag, int id, prodml23__GeneralMeasureType *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType ? type : NULL); } -SOAP_FMAC3 prodml22__GeneralMeasureType ** SOAP_FMAC4 soap_in_PointerToprodml22__GeneralMeasureType(struct soap *soap, const char *tag, prodml22__GeneralMeasureType **a, const char *type) +SOAP_FMAC3 prodml23__GeneralMeasureType ** SOAP_FMAC4 soap_in_PointerToprodml23__GeneralMeasureType(struct soap *soap, const char *tag, prodml23__GeneralMeasureType **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__GeneralMeasureType **)soap_malloc(soap, sizeof(prodml22__GeneralMeasureType *)))) + if (!(a = (prodml23__GeneralMeasureType **)soap_malloc(soap, sizeof(prodml23__GeneralMeasureType *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__GeneralMeasureType *)soap_instantiate_prodml22__GeneralMeasureType(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__GeneralMeasureType *)soap_instantiate_prodml23__GeneralMeasureType(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425235,57 +425420,57 @@ SOAP_FMAC3 prodml22__GeneralMeasureType ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__GeneralMeasureType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType, sizeof(prodml22__GeneralMeasureType), 0, gsoap_eml2_3_fbase); + { a = (prodml23__GeneralMeasureType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType, sizeof(prodml23__GeneralMeasureType), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__GeneralMeasureType(soap, tag ? tag : "prodml22:GeneralMeasureType", -2, a, type)) + if (soap_out_PointerToprodml23__GeneralMeasureType(soap, tag ? tag : "prodml23:GeneralMeasureType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__GeneralMeasureType ** SOAP_FMAC4 soap_get_PointerToprodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__GeneralMeasureType ** SOAP_FMAC4 soap_get_PointerToprodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__GeneralMeasureType(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__GeneralMeasureType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, int id, prodml22__AbstractRelatedFacilityObject *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, int id, prodml23__AbstractRelatedFacilityObject *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, prodml22__AbstractRelatedFacilityObject **a, const char *type) +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *tag, prodml23__AbstractRelatedFacilityObject **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractRelatedFacilityObject **)soap_malloc(soap, sizeof(prodml22__AbstractRelatedFacilityObject *)))) + if (!(a = (prodml23__AbstractRelatedFacilityObject **)soap_malloc(soap, sizeof(prodml23__AbstractRelatedFacilityObject *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractRelatedFacilityObject *)soap_instantiate_prodml22__AbstractRelatedFacilityObject(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractRelatedFacilityObject *)soap_instantiate_prodml23__AbstractRelatedFacilityObject(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425294,57 +425479,57 @@ SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__AbstractRelatedFacilityObject **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject, sizeof(prodml22__AbstractRelatedFacilityObject), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractRelatedFacilityObject **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject, sizeof(prodml23__AbstractRelatedFacilityObject), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractRelatedFacilityObject(soap, tag ? tag : "prodml22:AbstractRelatedFacilityObject", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractRelatedFacilityObject(soap, tag ? tag : "prodml23:AbstractRelatedFacilityObject", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractRelatedFacilityObject(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractRelatedFacilityObject(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumePeriod(struct soap *soap, const char *tag, int id, prodml22__ProductVolumePeriod *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumePeriod(struct soap *soap, const char *tag, int id, prodml23__ProductVolumePeriod *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumePeriod ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumePeriod(struct soap *soap, const char *tag, prodml22__ProductVolumePeriod **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePeriod ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumePeriod(struct soap *soap, const char *tag, prodml23__ProductVolumePeriod **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumePeriod **)soap_malloc(soap, sizeof(prodml22__ProductVolumePeriod *)))) + if (!(a = (prodml23__ProductVolumePeriod **)soap_malloc(soap, sizeof(prodml23__ProductVolumePeriod *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumePeriod *)soap_instantiate_prodml22__ProductVolumePeriod(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumePeriod *)soap_instantiate_prodml23__ProductVolumePeriod(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425353,57 +425538,57 @@ SOAP_FMAC3 prodml22__ProductVolumePeriod ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__ProductVolumePeriod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, sizeof(prodml22__ProductVolumePeriod), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumePeriod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, sizeof(prodml23__ProductVolumePeriod), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumePeriod(soap, tag ? tag : "prodml22:ProductVolumePeriod", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumePeriod(soap, tag ? tag : "prodml23:ProductVolumePeriod", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumePeriod ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePeriod ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumePeriod(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumePeriod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractRefProductFlow(struct soap *soap, const char *tag, int id, prodml22__AbstractRefProductFlow *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractRefProductFlow(struct soap *soap, const char *tag, int id, prodml23__AbstractRefProductFlow *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractRefProductFlow ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractRefProductFlow(struct soap *soap, const char *tag, prodml22__AbstractRefProductFlow **a, const char *type) +SOAP_FMAC3 prodml23__AbstractRefProductFlow ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractRefProductFlow(struct soap *soap, const char *tag, prodml23__AbstractRefProductFlow **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractRefProductFlow **)soap_malloc(soap, sizeof(prodml22__AbstractRefProductFlow *)))) + if (!(a = (prodml23__AbstractRefProductFlow **)soap_malloc(soap, sizeof(prodml23__AbstractRefProductFlow *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractRefProductFlow *)soap_instantiate_prodml22__AbstractRefProductFlow(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractRefProductFlow *)soap_instantiate_prodml23__AbstractRefProductFlow(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425412,45 +425597,45 @@ SOAP_FMAC3 prodml22__AbstractRefProductFlow ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__AbstractRefProductFlow **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow, sizeof(prodml22__AbstractRefProductFlow), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractRefProductFlow **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow, sizeof(prodml23__AbstractRefProductFlow), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractRefProductFlow(soap, tag ? tag : "prodml22:AbstractRefProductFlow", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractRefProductFlow(soap, tag ? tag : "prodml23:AbstractRefProductFlow", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractRefProductFlow ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractRefProductFlow ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractRefProductFlow(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractRefProductFlow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NonNegativeFraction(struct soap *soap, float *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NonNegativeFraction(struct soap *soap, float *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NonNegativeFraction(struct soap *soap, const char *tag, int id, float *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NonNegativeFraction(struct soap *soap, const char *tag, int id, float *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__NonNegativeFraction(soap, tag, id, *a, type); + return soap_out_prodml23__NonNegativeFraction(soap, tag, id, *a, type); } -SOAP_FMAC3 float ** SOAP_FMAC4 soap_in_PointerToprodml22__NonNegativeFraction(struct soap *soap, const char *tag, float **a, const char *type) +SOAP_FMAC3 float ** SOAP_FMAC4 soap_in_PointerToprodml23__NonNegativeFraction(struct soap *soap, const char *tag, float **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -425461,61 +425646,61 @@ SOAP_FMAC3 float ** SOAP_FMAC4 soap_in_PointerToprodml22__NonNegativeFraction(st *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__NonNegativeFraction(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__NonNegativeFraction(soap, tag, *a, type))) return NULL; } else - { a = (float **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction, sizeof(float), 0, NULL); + { a = (float **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction, sizeof(float), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NonNegativeFraction(struct soap *soap, float *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NonNegativeFraction(struct soap *soap, float *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__NonNegativeFraction(soap, tag ? tag : "prodml22:NonNegativeFraction", -2, a, type)) + if (soap_out_PointerToprodml23__NonNegativeFraction(soap, tag ? tag : "prodml23:NonNegativeFraction", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 float ** SOAP_FMAC4 soap_get_PointerToprodml22__NonNegativeFraction(struct soap *soap, float **p, const char *tag, const char *type) +SOAP_FMAC3 float ** SOAP_FMAC4 soap_get_PointerToprodml23__NonNegativeFraction(struct soap *soap, float **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__NonNegativeFraction(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__NonNegativeFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractDateTimeClass(struct soap *soap, const char *tag, int id, prodml22__AbstractDateTimeClass *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractDateTimeClass(struct soap *soap, const char *tag, int id, prodml23__AbstractDateTimeClass *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractDateTimeClass ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractDateTimeClass(struct soap *soap, const char *tag, prodml22__AbstractDateTimeClass **a, const char *type) +SOAP_FMAC3 prodml23__AbstractDateTimeClass ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractDateTimeClass(struct soap *soap, const char *tag, prodml23__AbstractDateTimeClass **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractDateTimeClass **)soap_malloc(soap, sizeof(prodml22__AbstractDateTimeClass *)))) + if (!(a = (prodml23__AbstractDateTimeClass **)soap_malloc(soap, sizeof(prodml23__AbstractDateTimeClass *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractDateTimeClass *)soap_instantiate_prodml22__AbstractDateTimeClass(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractDateTimeClass *)soap_instantiate_prodml23__AbstractDateTimeClass(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425524,57 +425709,57 @@ SOAP_FMAC3 prodml22__AbstractDateTimeClass ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__AbstractDateTimeClass **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass, sizeof(prodml22__AbstractDateTimeClass), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractDateTimeClass **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass, sizeof(prodml23__AbstractDateTimeClass), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractDateTimeClass(soap, tag ? tag : "prodml22:AbstractDateTimeClass", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractDateTimeClass(soap, tag ? tag : "prodml23:AbstractDateTimeClass", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractDateTimeClass ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractDateTimeClass ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractDateTimeClass(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractDateTimeClass(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeBalanceSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeBalanceSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, const char *tag, prodml22__ProductVolumeBalanceSet **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, const char *tag, prodml23__ProductVolumeBalanceSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeBalanceSet **)soap_malloc(soap, sizeof(prodml22__ProductVolumeBalanceSet *)))) + if (!(a = (prodml23__ProductVolumeBalanceSet **)soap_malloc(soap, sizeof(prodml23__ProductVolumeBalanceSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeBalanceSet *)soap_instantiate_prodml22__ProductVolumeBalanceSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeBalanceSet *)soap_instantiate_prodml23__ProductVolumeBalanceSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425583,57 +425768,57 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__ProductVolumeBalanceSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, sizeof(prodml22__ProductVolumeBalanceSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBalanceSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, sizeof(prodml23__ProductVolumeBalanceSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeBalanceSet(soap, tag ? tag : "prodml22:ProductVolumeBalanceSet", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeBalanceSet(soap, tag ? tag : "prodml23:ProductVolumeBalanceSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeBalanceSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeBalanceSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeAlert(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeAlert *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeAlert(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeAlert *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeAlert ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeAlert(struct soap *soap, const char *tag, prodml22__ProductVolumeAlert **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeAlert ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeAlert(struct soap *soap, const char *tag, prodml23__ProductVolumeAlert **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeAlert **)soap_malloc(soap, sizeof(prodml22__ProductVolumeAlert *)))) + if (!(a = (prodml23__ProductVolumeAlert **)soap_malloc(soap, sizeof(prodml23__ProductVolumeAlert *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeAlert *)soap_instantiate_prodml22__ProductVolumeAlert(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeAlert *)soap_instantiate_prodml23__ProductVolumeAlert(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425642,57 +425827,57 @@ SOAP_FMAC3 prodml22__ProductVolumeAlert ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__ProductVolumeAlert **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert, sizeof(prodml22__ProductVolumeAlert), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeAlert **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert, sizeof(prodml23__ProductVolumeAlert), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeAlert(soap, tag ? tag : "prodml22:ProductVolumeAlert", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeAlert(soap, tag ? tag : "prodml23:ProductVolumeAlert", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeAlert ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeAlert ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeAlert(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeAlert(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractMeasureData(struct soap *soap, const char *tag, int id, prodml22__AbstractMeasureData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractMeasureData(struct soap *soap, const char *tag, int id, prodml23__AbstractMeasureData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractMeasureData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractMeasureData(struct soap *soap, const char *tag, prodml22__AbstractMeasureData **a, const char *type) +SOAP_FMAC3 prodml23__AbstractMeasureData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractMeasureData(struct soap *soap, const char *tag, prodml23__AbstractMeasureData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractMeasureData **)soap_malloc(soap, sizeof(prodml22__AbstractMeasureData *)))) + if (!(a = (prodml23__AbstractMeasureData **)soap_malloc(soap, sizeof(prodml23__AbstractMeasureData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractMeasureData *)soap_instantiate_prodml22__AbstractMeasureData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractMeasureData *)soap_instantiate_prodml23__AbstractMeasureData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425701,57 +425886,57 @@ SOAP_FMAC3 prodml22__AbstractMeasureData ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__AbstractMeasureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, sizeof(prodml22__AbstractMeasureData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractMeasureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, sizeof(prodml23__AbstractMeasureData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractMeasureData(soap, tag ? tag : "prodml22:AbstractMeasureData", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractMeasureData(soap, tag ? tag : "prodml23:AbstractMeasureData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractMeasureData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractMeasureData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractMeasureData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractMeasureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CurveDefinition(struct soap *soap, const char *tag, int id, prodml22__CurveDefinition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CurveDefinition(struct soap *soap, const char *tag, int id, prodml23__CurveDefinition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition ? type : NULL); } -SOAP_FMAC3 prodml22__CurveDefinition ** SOAP_FMAC4 soap_in_PointerToprodml22__CurveDefinition(struct soap *soap, const char *tag, prodml22__CurveDefinition **a, const char *type) +SOAP_FMAC3 prodml23__CurveDefinition ** SOAP_FMAC4 soap_in_PointerToprodml23__CurveDefinition(struct soap *soap, const char *tag, prodml23__CurveDefinition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CurveDefinition **)soap_malloc(soap, sizeof(prodml22__CurveDefinition *)))) + if (!(a = (prodml23__CurveDefinition **)soap_malloc(soap, sizeof(prodml23__CurveDefinition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__CurveDefinition *)soap_instantiate_prodml22__CurveDefinition(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__CurveDefinition *)soap_instantiate_prodml23__CurveDefinition(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425760,57 +425945,57 @@ SOAP_FMAC3 prodml22__CurveDefinition ** SOAP_FMAC4 soap_in_PointerToprodml22__Cu } } else - { a = (prodml22__CurveDefinition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, sizeof(prodml22__CurveDefinition), 0, gsoap_eml2_3_fbase); + { a = (prodml23__CurveDefinition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, sizeof(prodml23__CurveDefinition), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CurveDefinition(soap, tag ? tag : "prodml22:CurveDefinition", -2, a, type)) + if (soap_out_PointerToprodml23__CurveDefinition(soap, tag ? tag : "prodml23:CurveDefinition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CurveDefinition ** SOAP_FMAC4 soap_get_PointerToprodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CurveDefinition ** SOAP_FMAC4 soap_get_PointerToprodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CurveDefinition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CurveDefinition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeParameterValue(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeParameterValue *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeParameterValue(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeParameterValue *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeParameterValue ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeParameterValue(struct soap *soap, const char *tag, prodml22__ProductVolumeParameterValue **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterValue ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeParameterValue(struct soap *soap, const char *tag, prodml23__ProductVolumeParameterValue **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeParameterValue **)soap_malloc(soap, sizeof(prodml22__ProductVolumeParameterValue *)))) + if (!(a = (prodml23__ProductVolumeParameterValue **)soap_malloc(soap, sizeof(prodml23__ProductVolumeParameterValue *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeParameterValue *)soap_instantiate_prodml22__ProductVolumeParameterValue(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeParameterValue *)soap_instantiate_prodml23__ProductVolumeParameterValue(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425819,99 +426004,99 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterValue ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__ProductVolumeParameterValue **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, sizeof(prodml22__ProductVolumeParameterValue), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeParameterValue **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, sizeof(prodml23__ProductVolumeParameterValue), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeParameterValue(soap, tag ? tag : "prodml22:ProductVolumeParameterValue", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeParameterValue(soap, tag ? tag : "prodml23:ProductVolumeParameterValue", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeParameterValue ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterValue ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeParameterValue(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeParameterValue(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingDurationKind(struct soap *soap, const char *tag, int id, prodml22__ReportingDurationKind *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingDurationKind(struct soap *soap, const char *tag, int id, prodml23__ReportingDurationKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ReportingDurationKind(soap, tag, id, *a, type); + return soap_out_prodml23__ReportingDurationKind(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ReportingDurationKind ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingDurationKind(struct soap *soap, const char *tag, prodml22__ReportingDurationKind **a, const char *type) +SOAP_FMAC3 prodml23__ReportingDurationKind ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingDurationKind(struct soap *soap, const char *tag, prodml23__ReportingDurationKind **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReportingDurationKind **)soap_malloc(soap, sizeof(prodml22__ReportingDurationKind *)))) + if (!(a = (prodml23__ReportingDurationKind **)soap_malloc(soap, sizeof(prodml23__ReportingDurationKind *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ReportingDurationKind(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ReportingDurationKind(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ReportingDurationKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind, sizeof(prodml22__ReportingDurationKind), 0, NULL); + { a = (prodml23__ReportingDurationKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind, sizeof(prodml23__ReportingDurationKind), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReportingDurationKind(soap, tag ? tag : "prodml22:ReportingDurationKind", -2, a, type)) + if (soap_out_PointerToprodml23__ReportingDurationKind(soap, tag ? tag : "prodml23:ReportingDurationKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingDurationKind ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingDurationKind ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReportingDurationKind(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReportingDurationKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProdmlRelativeIdentifier(struct soap *soap, std::string *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProdmlRelativeIdentifier(struct soap *soap, std::string *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier)) - soap_serialize_prodml22__ProdmlRelativeIdentifier(soap, *a); + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier)) + soap_serialize_prodml23__ProdmlRelativeIdentifier(soap, *a); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProdmlRelativeIdentifier(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProdmlRelativeIdentifier(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ProdmlRelativeIdentifier(soap, tag, id, *a, type); + return soap_out_prodml23__ProdmlRelativeIdentifier(soap, tag, id, *a, type); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__ProdmlRelativeIdentifier(struct soap *soap, const char *tag, std::string **a, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__ProdmlRelativeIdentifier(struct soap *soap, const char *tag, std::string **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -425922,61 +426107,61 @@ SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__ProdmlRelativeId *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ProdmlRelativeIdentifier(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ProdmlRelativeIdentifier(soap, tag, *a, type))) return NULL; } else - { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier, sizeof(std::string), 0, NULL); + { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier, sizeof(std::string), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProdmlRelativeIdentifier(struct soap *soap, std::string *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProdmlRelativeIdentifier(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProdmlRelativeIdentifier(soap, tag ? tag : "prodml22:ProdmlRelativeIdentifier", -2, a, type)) + if (soap_out_PointerToprodml23__ProdmlRelativeIdentifier(soap, tag ? tag : "prodml23:ProdmlRelativeIdentifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__ProdmlRelativeIdentifier(struct soap *soap, std::string **p, const char *tag, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__ProdmlRelativeIdentifier(struct soap *soap, std::string **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProdmlRelativeIdentifier(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProdmlRelativeIdentifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeProduct(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeProduct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeProduct(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeProduct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeProduct(struct soap *soap, const char *tag, prodml22__ProductVolumeProduct **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeProduct(struct soap *soap, const char *tag, prodml23__ProductVolumeProduct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeProduct **)soap_malloc(soap, sizeof(prodml22__ProductVolumeProduct *)))) + if (!(a = (prodml23__ProductVolumeProduct **)soap_malloc(soap, sizeof(prodml23__ProductVolumeProduct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeProduct *)soap_instantiate_prodml22__ProductVolumeProduct(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeProduct *)soap_instantiate_prodml23__ProductVolumeProduct(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -425985,57 +426170,57 @@ SOAP_FMAC3 prodml22__ProductVolumeProduct ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__ProductVolumeProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, sizeof(prodml22__ProductVolumeProduct), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, sizeof(prodml23__ProductVolumeProduct), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeProduct(soap, tag ? tag : "prodml22:ProductVolumeProduct", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeProduct(soap, tag ? tag : "prodml23:ProductVolumeProduct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeProduct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeRelatedFacility *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeRelatedFacility *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, prodml22__ProductVolumeRelatedFacility **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *tag, prodml23__ProductVolumeRelatedFacility **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeRelatedFacility **)soap_malloc(soap, sizeof(prodml22__ProductVolumeRelatedFacility *)))) + if (!(a = (prodml23__ProductVolumeRelatedFacility **)soap_malloc(soap, sizeof(prodml23__ProductVolumeRelatedFacility *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeRelatedFacility *)soap_instantiate_prodml22__ProductVolumeRelatedFacility(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeRelatedFacility *)soap_instantiate_prodml23__ProductVolumeRelatedFacility(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426044,216 +426229,216 @@ SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__ProductVolumeRelatedFacility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility, sizeof(prodml22__ProductVolumeRelatedFacility), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeRelatedFacility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility, sizeof(prodml23__ProductVolumeRelatedFacility), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeRelatedFacility(soap, tag ? tag : "prodml22:ProductVolumeRelatedFacility", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeRelatedFacility(soap, tag ? tag : "prodml23:ProductVolumeRelatedFacility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeRelatedFacility(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeRelatedFacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowSubQualifier(struct soap *soap, const char *tag, int id, prodml22__FlowSubQualifier *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowSubQualifier(struct soap *soap, const char *tag, int id, prodml23__FlowSubQualifier *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__FlowSubQualifier(soap, tag, id, *a, type); + return soap_out_prodml23__FlowSubQualifier(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__FlowSubQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowSubQualifier(struct soap *soap, const char *tag, prodml22__FlowSubQualifier **a, const char *type) +SOAP_FMAC3 prodml23__FlowSubQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowSubQualifier(struct soap *soap, const char *tag, prodml23__FlowSubQualifier **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FlowSubQualifier **)soap_malloc(soap, sizeof(prodml22__FlowSubQualifier *)))) + if (!(a = (prodml23__FlowSubQualifier **)soap_malloc(soap, sizeof(prodml23__FlowSubQualifier *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__FlowSubQualifier(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__FlowSubQualifier(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__FlowSubQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier, sizeof(prodml22__FlowSubQualifier), 0, NULL); + { a = (prodml23__FlowSubQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier, sizeof(prodml23__FlowSubQualifier), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FlowSubQualifier(soap, tag ? tag : "prodml22:FlowSubQualifier", -2, a, type)) + if (soap_out_PointerToprodml23__FlowSubQualifier(soap, tag ? tag : "prodml23:FlowSubQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlowSubQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowSubQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FlowSubQualifier(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FlowSubQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowQualifier(struct soap *soap, const char *tag, int id, prodml22__FlowQualifier *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowQualifier(struct soap *soap, const char *tag, int id, prodml23__FlowQualifier *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__FlowQualifier(soap, tag, id, *a, type); + return soap_out_prodml23__FlowQualifier(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__FlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowQualifier(struct soap *soap, const char *tag, prodml22__FlowQualifier **a, const char *type) +SOAP_FMAC3 prodml23__FlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowQualifier(struct soap *soap, const char *tag, prodml23__FlowQualifier **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FlowQualifier **)soap_malloc(soap, sizeof(prodml22__FlowQualifier *)))) + if (!(a = (prodml23__FlowQualifier **)soap_malloc(soap, sizeof(prodml23__FlowQualifier *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__FlowQualifier(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__FlowQualifier(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__FlowQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier, sizeof(prodml22__FlowQualifier), 0, NULL); + { a = (prodml23__FlowQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier, sizeof(prodml23__FlowQualifier), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FlowQualifier(soap, tag ? tag : "prodml22:FlowQualifier", -2, a, type)) + if (soap_out_PointerToprodml23__FlowQualifier(soap, tag ? tag : "prodml23:FlowQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FlowQualifier(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FlowQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowPortType(struct soap *soap, const char *tag, int id, prodml22__ProductFlowPortType *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowPortType(struct soap *soap, const char *tag, int id, prodml23__ProductFlowPortType *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ProductFlowPortType(soap, tag, id, *a, type); + return soap_out_prodml23__ProductFlowPortType(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ProductFlowPortType ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowPortType(struct soap *soap, const char *tag, prodml22__ProductFlowPortType **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPortType ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowPortType(struct soap *soap, const char *tag, prodml23__ProductFlowPortType **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowPortType **)soap_malloc(soap, sizeof(prodml22__ProductFlowPortType *)))) + if (!(a = (prodml23__ProductFlowPortType **)soap_malloc(soap, sizeof(prodml23__ProductFlowPortType *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ProductFlowPortType(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ProductFlowPortType(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ProductFlowPortType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType, sizeof(prodml22__ProductFlowPortType), 0, NULL); + { a = (prodml23__ProductFlowPortType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType, sizeof(prodml23__ProductFlowPortType), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowPortType(soap, tag ? tag : "prodml22:ProductFlowPortType", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowPortType(soap, tag ? tag : "prodml23:ProductFlowPortType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowPortType ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowPortType ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowPortType(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowPortType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DatedComment(struct soap *soap, prodml22__DatedComment *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DatedComment(struct soap *soap, prodml23__DatedComment *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DatedComment(struct soap *soap, const char *tag, int id, prodml22__DatedComment *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DatedComment(struct soap *soap, const char *tag, int id, prodml23__DatedComment *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment ? type : NULL); } -SOAP_FMAC3 prodml22__DatedComment ** SOAP_FMAC4 soap_in_PointerToprodml22__DatedComment(struct soap *soap, const char *tag, prodml22__DatedComment **a, const char *type) +SOAP_FMAC3 prodml23__DatedComment ** SOAP_FMAC4 soap_in_PointerToprodml23__DatedComment(struct soap *soap, const char *tag, prodml23__DatedComment **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DatedComment **)soap_malloc(soap, sizeof(prodml22__DatedComment *)))) + if (!(a = (prodml23__DatedComment **)soap_malloc(soap, sizeof(prodml23__DatedComment *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DatedComment *)soap_instantiate_prodml22__DatedComment(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DatedComment *)soap_instantiate_prodml23__DatedComment(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426262,57 +426447,57 @@ SOAP_FMAC3 prodml22__DatedComment ** SOAP_FMAC4 soap_in_PointerToprodml22__Dated } } else - { a = (prodml22__DatedComment **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, sizeof(prodml22__DatedComment), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DatedComment **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, sizeof(prodml23__DatedComment), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DatedComment(struct soap *soap, prodml22__DatedComment *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DatedComment(struct soap *soap, prodml23__DatedComment *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DatedComment(soap, tag ? tag : "prodml22:DatedComment", -2, a, type)) + if (soap_out_PointerToprodml23__DatedComment(soap, tag ? tag : "prodml23:DatedComment", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DatedComment ** SOAP_FMAC4 soap_get_PointerToprodml22__DatedComment(struct soap *soap, prodml22__DatedComment **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DatedComment ** SOAP_FMAC4 soap_get_PointerToprodml23__DatedComment(struct soap *soap, prodml23__DatedComment **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DatedComment(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DatedComment(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeParameterSet(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeParameterSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeParameterSet(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeParameterSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeParameterSet(struct soap *soap, const char *tag, prodml22__ProductVolumeParameterSet **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeParameterSet(struct soap *soap, const char *tag, prodml23__ProductVolumeParameterSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeParameterSet **)soap_malloc(soap, sizeof(prodml22__ProductVolumeParameterSet *)))) + if (!(a = (prodml23__ProductVolumeParameterSet **)soap_malloc(soap, sizeof(prodml23__ProductVolumeParameterSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeParameterSet *)soap_instantiate_prodml22__ProductVolumeParameterSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeParameterSet *)soap_instantiate_prodml23__ProductVolumeParameterSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426321,57 +426506,57 @@ SOAP_FMAC3 prodml22__ProductVolumeParameterSet ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__ProductVolumeParameterSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, sizeof(prodml22__ProductVolumeParameterSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeParameterSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, sizeof(prodml23__ProductVolumeParameterSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeParameterSet(soap, tag ? tag : "prodml22:ProductVolumeParameterSet", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeParameterSet(soap, tag ? tag : "prodml23:ProductVolumeParameterSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeParameterSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeParameterSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeFlow(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeFlow *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeFlow(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeFlow *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeFlow ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeFlow(struct soap *soap, const char *tag, prodml22__ProductVolumeFlow **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFlow ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeFlow(struct soap *soap, const char *tag, prodml23__ProductVolumeFlow **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeFlow **)soap_malloc(soap, sizeof(prodml22__ProductVolumeFlow *)))) + if (!(a = (prodml23__ProductVolumeFlow **)soap_malloc(soap, sizeof(prodml23__ProductVolumeFlow *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeFlow *)soap_instantiate_prodml22__ProductVolumeFlow(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeFlow *)soap_instantiate_prodml23__ProductVolumeFlow(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426380,129 +426565,129 @@ SOAP_FMAC3 prodml22__ProductVolumeFlow ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__ProductVolumeFlow **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, sizeof(prodml22__ProductVolumeFlow), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeFlow **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, sizeof(prodml23__ProductVolumeFlow), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeFlow(soap, tag ? tag : "prodml22:ProductVolumeFlow", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeFlow(soap, tag ? tag : "prodml23:ProductVolumeFlow", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeFlow ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeFlow ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeFlow(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeFlow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellOperationMethod(struct soap *soap, const char *tag, int id, prodml22__WellOperationMethod *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellOperationMethod(struct soap *soap, const char *tag, int id, prodml23__WellOperationMethod *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__WellOperationMethod(soap, tag, id, *a, type); + return soap_out_prodml23__WellOperationMethod(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__WellOperationMethod ** SOAP_FMAC4 soap_in_PointerToprodml22__WellOperationMethod(struct soap *soap, const char *tag, prodml22__WellOperationMethod **a, const char *type) +SOAP_FMAC3 prodml23__WellOperationMethod ** SOAP_FMAC4 soap_in_PointerToprodml23__WellOperationMethod(struct soap *soap, const char *tag, prodml23__WellOperationMethod **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellOperationMethod **)soap_malloc(soap, sizeof(prodml22__WellOperationMethod *)))) + if (!(a = (prodml23__WellOperationMethod **)soap_malloc(soap, sizeof(prodml23__WellOperationMethod *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__WellOperationMethod(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__WellOperationMethod(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__WellOperationMethod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod, sizeof(prodml22__WellOperationMethod), 0, NULL); + { a = (prodml23__WellOperationMethod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod, sizeof(prodml23__WellOperationMethod), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellOperationMethod(soap, tag ? tag : "prodml22:WellOperationMethod", -2, a, type)) + if (soap_out_PointerToprodml23__WellOperationMethod(soap, tag ? tag : "prodml23:WellOperationMethod", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellOperationMethod ** SOAP_FMAC4 soap_get_PointerToprodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellOperationMethod ** SOAP_FMAC4 soap_get_PointerToprodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellOperationMethod(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellOperationMethod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellFluid(struct soap *soap, prodml22__WellFluid *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellFluid(struct soap *soap, prodml23__WellFluid *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellFluid(struct soap *soap, const char *tag, int id, prodml22__WellFluid *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellFluid(struct soap *soap, const char *tag, int id, prodml23__WellFluid *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__WellFluid(soap, tag, id, *a, type); + return soap_out_prodml23__WellFluid(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__WellFluid ** SOAP_FMAC4 soap_in_PointerToprodml22__WellFluid(struct soap *soap, const char *tag, prodml22__WellFluid **a, const char *type) +SOAP_FMAC3 prodml23__WellFluid ** SOAP_FMAC4 soap_in_PointerToprodml23__WellFluid(struct soap *soap, const char *tag, prodml23__WellFluid **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellFluid **)soap_malloc(soap, sizeof(prodml22__WellFluid *)))) + if (!(a = (prodml23__WellFluid **)soap_malloc(soap, sizeof(prodml23__WellFluid *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__WellFluid(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__WellFluid(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__WellFluid **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid, sizeof(prodml22__WellFluid), 0, NULL); + { a = (prodml23__WellFluid **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid, sizeof(prodml23__WellFluid), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellFluid(struct soap *soap, prodml22__WellFluid *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellFluid(struct soap *soap, prodml23__WellFluid *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellFluid(soap, tag ? tag : "prodml22:WellFluid", -2, a, type)) + if (soap_out_PointerToprodml23__WellFluid(soap, tag ? tag : "prodml23:WellFluid", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellFluid ** SOAP_FMAC4 soap_get_PointerToprodml22__WellFluid(struct soap *soap, prodml22__WellFluid **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellFluid ** SOAP_FMAC4 soap_get_PointerToprodml23__WellFluid(struct soap *soap, prodml23__WellFluid **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellFluid(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellFluid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -426561,88 +426746,88 @@ SOAP_FMAC3 eml23__WellStatus ** SOAP_FMAC4 soap_get_PointerToeml23__WellStatus(s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BalanceDestinationType(struct soap *soap, const char *tag, int id, prodml22__BalanceDestinationType *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BalanceDestinationType(struct soap *soap, const char *tag, int id, prodml23__BalanceDestinationType *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__BalanceDestinationType(soap, tag, id, *a, type); + return soap_out_prodml23__BalanceDestinationType(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__BalanceDestinationType ** SOAP_FMAC4 soap_in_PointerToprodml22__BalanceDestinationType(struct soap *soap, const char *tag, prodml22__BalanceDestinationType **a, const char *type) +SOAP_FMAC3 prodml23__BalanceDestinationType ** SOAP_FMAC4 soap_in_PointerToprodml23__BalanceDestinationType(struct soap *soap, const char *tag, prodml23__BalanceDestinationType **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__BalanceDestinationType **)soap_malloc(soap, sizeof(prodml22__BalanceDestinationType *)))) + if (!(a = (prodml23__BalanceDestinationType **)soap_malloc(soap, sizeof(prodml23__BalanceDestinationType *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__BalanceDestinationType(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__BalanceDestinationType(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__BalanceDestinationType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType, sizeof(prodml22__BalanceDestinationType), 0, NULL); + { a = (prodml23__BalanceDestinationType **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType, sizeof(prodml23__BalanceDestinationType), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__BalanceDestinationType(soap, tag ? tag : "prodml22:BalanceDestinationType", -2, a, type)) + if (soap_out_PointerToprodml23__BalanceDestinationType(soap, tag ? tag : "prodml23:BalanceDestinationType", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BalanceDestinationType ** SOAP_FMAC4 soap_get_PointerToprodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BalanceDestinationType ** SOAP_FMAC4 soap_get_PointerToprodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__BalanceDestinationType(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__BalanceDestinationType(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CommonPropertiesProductVolume(struct soap *soap, const char *tag, int id, prodml22__CommonPropertiesProductVolume *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CommonPropertiesProductVolume(struct soap *soap, const char *tag, int id, prodml23__CommonPropertiesProductVolume *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume ? type : NULL); } -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_in_PointerToprodml22__CommonPropertiesProductVolume(struct soap *soap, const char *tag, prodml22__CommonPropertiesProductVolume **a, const char *type) +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_in_PointerToprodml23__CommonPropertiesProductVolume(struct soap *soap, const char *tag, prodml23__CommonPropertiesProductVolume **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CommonPropertiesProductVolume **)soap_malloc(soap, sizeof(prodml22__CommonPropertiesProductVolume *)))) + if (!(a = (prodml23__CommonPropertiesProductVolume **)soap_malloc(soap, sizeof(prodml23__CommonPropertiesProductVolume *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__CommonPropertiesProductVolume *)soap_instantiate_prodml22__CommonPropertiesProductVolume(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__CommonPropertiesProductVolume *)soap_instantiate_prodml23__CommonPropertiesProductVolume(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426651,110 +426836,110 @@ SOAP_FMAC3 prodml22__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__CommonPropertiesProductVolume **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume, sizeof(prodml22__CommonPropertiesProductVolume), 0, gsoap_eml2_3_fbase); + { a = (prodml23__CommonPropertiesProductVolume **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume, sizeof(prodml23__CommonPropertiesProductVolume), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CommonPropertiesProductVolume(soap, tag ? tag : "prodml22:CommonPropertiesProductVolume", -2, a, type)) + if (soap_out_PointerToprodml23__CommonPropertiesProductVolume(soap, tag ? tag : "prodml23:CommonPropertiesProductVolume", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_get_PointerToprodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_get_PointerToprodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CommonPropertiesProductVolume(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CommonPropertiesProductVolume(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingProduct(struct soap *soap, const char *tag, int id, prodml22__ReportingProduct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingProduct(struct soap *soap, const char *tag, int id, prodml23__ReportingProduct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ReportingProduct(soap, tag, id, *a, type); + return soap_out_prodml23__ReportingProduct(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ReportingProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingProduct(struct soap *soap, const char *tag, prodml22__ReportingProduct **a, const char *type) +SOAP_FMAC3 prodml23__ReportingProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingProduct(struct soap *soap, const char *tag, prodml23__ReportingProduct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReportingProduct **)soap_malloc(soap, sizeof(prodml22__ReportingProduct *)))) + if (!(a = (prodml23__ReportingProduct **)soap_malloc(soap, sizeof(prodml23__ReportingProduct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ReportingProduct(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ReportingProduct(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ReportingProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct, sizeof(prodml22__ReportingProduct), 0, NULL); + { a = (prodml23__ReportingProduct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct, sizeof(prodml23__ReportingProduct), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReportingProduct(soap, tag ? tag : "prodml22:ReportingProduct", -2, a, type)) + if (soap_out_PointerToprodml23__ReportingProduct(soap, tag ? tag : "prodml23:ReportingProduct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReportingProduct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReportingProduct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeBusinessSubUnit *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeBusinessSubUnit *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, prodml22__ProductVolumeBusinessSubUnit **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, prodml23__ProductVolumeBusinessSubUnit **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeBusinessSubUnit **)soap_malloc(soap, sizeof(prodml22__ProductVolumeBusinessSubUnit *)))) + if (!(a = (prodml23__ProductVolumeBusinessSubUnit **)soap_malloc(soap, sizeof(prodml23__ProductVolumeBusinessSubUnit *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeBusinessSubUnit *)soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeBusinessSubUnit *)soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426763,57 +426948,57 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__ProductVolumeBusinessSubUnit **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, sizeof(prodml22__ProductVolumeBusinessSubUnit), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBusinessSubUnit **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, sizeof(prodml23__ProductVolumeBusinessSubUnit), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag ? tag : "prodml22:ProductVolumeBusinessSubUnit", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag ? tag : "prodml23:ProductVolumeBusinessSubUnit", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OwnershipBusinessAcct(struct soap *soap, const char *tag, int id, prodml22__OwnershipBusinessAcct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OwnershipBusinessAcct(struct soap *soap, const char *tag, int id, prodml23__OwnershipBusinessAcct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct ? type : NULL); } -SOAP_FMAC3 prodml22__OwnershipBusinessAcct ** SOAP_FMAC4 soap_in_PointerToprodml22__OwnershipBusinessAcct(struct soap *soap, const char *tag, prodml22__OwnershipBusinessAcct **a, const char *type) +SOAP_FMAC3 prodml23__OwnershipBusinessAcct ** SOAP_FMAC4 soap_in_PointerToprodml23__OwnershipBusinessAcct(struct soap *soap, const char *tag, prodml23__OwnershipBusinessAcct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OwnershipBusinessAcct **)soap_malloc(soap, sizeof(prodml22__OwnershipBusinessAcct *)))) + if (!(a = (prodml23__OwnershipBusinessAcct **)soap_malloc(soap, sizeof(prodml23__OwnershipBusinessAcct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OwnershipBusinessAcct *)soap_instantiate_prodml22__OwnershipBusinessAcct(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OwnershipBusinessAcct *)soap_instantiate_prodml23__OwnershipBusinessAcct(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426822,57 +427007,57 @@ SOAP_FMAC3 prodml22__OwnershipBusinessAcct ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__OwnershipBusinessAcct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct, sizeof(prodml22__OwnershipBusinessAcct), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OwnershipBusinessAcct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct, sizeof(prodml23__OwnershipBusinessAcct), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OwnershipBusinessAcct(soap, tag ? tag : "prodml22:OwnershipBusinessAcct", -2, a, type)) + if (soap_out_PointerToprodml23__OwnershipBusinessAcct(soap, tag ? tag : "prodml23:OwnershipBusinessAcct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OwnershipBusinessAcct ** SOAP_FMAC4 soap_get_PointerToprodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OwnershipBusinessAcct ** SOAP_FMAC4 soap_get_PointerToprodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OwnershipBusinessAcct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OwnershipBusinessAcct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeDestination(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeDestination *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeDestination(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeDestination *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeDestination ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeDestination(struct soap *soap, const char *tag, prodml22__ProductVolumeDestination **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeDestination ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeDestination(struct soap *soap, const char *tag, prodml23__ProductVolumeDestination **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeDestination **)soap_malloc(soap, sizeof(prodml22__ProductVolumeDestination *)))) + if (!(a = (prodml23__ProductVolumeDestination **)soap_malloc(soap, sizeof(prodml23__ProductVolumeDestination *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeDestination *)soap_instantiate_prodml22__ProductVolumeDestination(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeDestination *)soap_instantiate_prodml23__ProductVolumeDestination(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426881,57 +427066,57 @@ SOAP_FMAC3 prodml22__ProductVolumeDestination ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__ProductVolumeDestination **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination, sizeof(prodml22__ProductVolumeDestination), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeDestination **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination, sizeof(prodml23__ProductVolumeDestination), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeDestination(soap, tag ? tag : "prodml22:ProductVolumeDestination", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeDestination(soap, tag ? tag : "prodml23:ProductVolumeDestination", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeDestination ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeDestination ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeDestination(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeDestination(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeBalanceDetail *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeBalanceDetail *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, prodml22__ProductVolumeBalanceDetail **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, prodml23__ProductVolumeBalanceDetail **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeBalanceDetail **)soap_malloc(soap, sizeof(prodml22__ProductVolumeBalanceDetail *)))) + if (!(a = (prodml23__ProductVolumeBalanceDetail **)soap_malloc(soap, sizeof(prodml23__ProductVolumeBalanceDetail *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeBalanceDetail *)soap_instantiate_prodml22__ProductVolumeBalanceDetail(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeBalanceDetail *)soap_instantiate_prodml23__ProductVolumeBalanceDetail(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -426940,23 +427125,23 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__ProductVolumeBalanceDetail **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, sizeof(prodml22__ProductVolumeBalanceDetail), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBalanceDetail **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, sizeof(prodml23__ProductVolumeBalanceDetail), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag ? tag : "prodml22:ProductVolumeBalanceDetail", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag ? tag : "prodml23:ProductVolumeBalanceDetail", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -427015,88 +427200,88 @@ SOAP_FMAC3 ULONG64 ** SOAP_FMAC4 soap_get_PointerToxsd__nonNegativeInteger(struc return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BalanceFlowPart(struct soap *soap, const char *tag, int id, prodml22__BalanceFlowPart *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BalanceFlowPart(struct soap *soap, const char *tag, int id, prodml23__BalanceFlowPart *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__BalanceFlowPart(soap, tag, id, *a, type); + return soap_out_prodml23__BalanceFlowPart(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__BalanceFlowPart ** SOAP_FMAC4 soap_in_PointerToprodml22__BalanceFlowPart(struct soap *soap, const char *tag, prodml22__BalanceFlowPart **a, const char *type) +SOAP_FMAC3 prodml23__BalanceFlowPart ** SOAP_FMAC4 soap_in_PointerToprodml23__BalanceFlowPart(struct soap *soap, const char *tag, prodml23__BalanceFlowPart **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__BalanceFlowPart **)soap_malloc(soap, sizeof(prodml22__BalanceFlowPart *)))) + if (!(a = (prodml23__BalanceFlowPart **)soap_malloc(soap, sizeof(prodml23__BalanceFlowPart *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__BalanceFlowPart(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__BalanceFlowPart(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__BalanceFlowPart **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart, sizeof(prodml22__BalanceFlowPart), 0, NULL); + { a = (prodml23__BalanceFlowPart **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart, sizeof(prodml23__BalanceFlowPart), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__BalanceFlowPart(soap, tag ? tag : "prodml22:BalanceFlowPart", -2, a, type)) + if (soap_out_PointerToprodml23__BalanceFlowPart(soap, tag ? tag : "prodml23:BalanceFlowPart", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BalanceFlowPart ** SOAP_FMAC4 soap_get_PointerToprodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BalanceFlowPart ** SOAP_FMAC4 soap_get_PointerToprodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__BalanceFlowPart(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__BalanceFlowPart(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeBalanceEvent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeBalanceEvent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, prodml22__ProductVolumeBalanceEvent **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, prodml23__ProductVolumeBalanceEvent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeBalanceEvent **)soap_malloc(soap, sizeof(prodml22__ProductVolumeBalanceEvent *)))) + if (!(a = (prodml23__ProductVolumeBalanceEvent **)soap_malloc(soap, sizeof(prodml23__ProductVolumeBalanceEvent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeBalanceEvent *)soap_instantiate_prodml22__ProductVolumeBalanceEvent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeBalanceEvent *)soap_instantiate_prodml23__ProductVolumeBalanceEvent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427105,57 +427290,57 @@ SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__ProductVolumeBalanceEvent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, sizeof(prodml22__ProductVolumeBalanceEvent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBalanceEvent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, sizeof(prodml23__ProductVolumeBalanceEvent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag ? tag : "prodml22:ProductVolumeBalanceEvent", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag ? tag : "prodml23:ProductVolumeBalanceEvent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeComponentContent(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeComponentContent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeComponentContent(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeComponentContent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeComponentContent ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeComponentContent(struct soap *soap, const char *tag, prodml22__ProductVolumeComponentContent **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeComponentContent ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeComponentContent(struct soap *soap, const char *tag, prodml23__ProductVolumeComponentContent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeComponentContent **)soap_malloc(soap, sizeof(prodml22__ProductVolumeComponentContent *)))) + if (!(a = (prodml23__ProductVolumeComponentContent **)soap_malloc(soap, sizeof(prodml23__ProductVolumeComponentContent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeComponentContent *)soap_instantiate_prodml22__ProductVolumeComponentContent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeComponentContent *)soap_instantiate_prodml23__ProductVolumeComponentContent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427164,60 +427349,60 @@ SOAP_FMAC3 prodml22__ProductVolumeComponentContent ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__ProductVolumeComponentContent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, sizeof(prodml22__ProductVolumeComponentContent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeComponentContent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, sizeof(prodml23__ProductVolumeComponentContent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeComponentContent(soap, tag ? tag : "prodml22:ProductVolumeComponentContent", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeComponentContent(soap, tag ? tag : "prodml23:ProductVolumeComponentContent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeComponentContent ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeComponentContent ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeComponentContent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeComponentContent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FacilityParent(struct soap *soap, const char *tag, int id, prodml22__FacilityParent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FacilityParent(struct soap *soap, const char *tag, int id, prodml23__FacilityParent *const*a, const char *type) { char *mark; - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent, &mark); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent, &mark); if (id < 0) return soap->error; - (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent ? type : NULL); soap_unmark(soap, mark); return soap->error; } -SOAP_FMAC3 prodml22__FacilityParent ** SOAP_FMAC4 soap_in_PointerToprodml22__FacilityParent(struct soap *soap, const char *tag, prodml22__FacilityParent **a, const char *type) +SOAP_FMAC3 prodml23__FacilityParent ** SOAP_FMAC4 soap_in_PointerToprodml23__FacilityParent(struct soap *soap, const char *tag, prodml23__FacilityParent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FacilityParent **)soap_malloc(soap, sizeof(prodml22__FacilityParent *)))) + if (!(a = (prodml23__FacilityParent **)soap_malloc(soap, sizeof(prodml23__FacilityParent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FacilityParent *)soap_instantiate_prodml22__FacilityParent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FacilityParent *)soap_instantiate_prodml23__FacilityParent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427226,57 +427411,57 @@ SOAP_FMAC3 prodml22__FacilityParent ** SOAP_FMAC4 soap_in_PointerToprodml22__Fac } } else - { a = (prodml22__FacilityParent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent, sizeof(prodml22__FacilityParent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FacilityParent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent, sizeof(prodml23__FacilityParent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FacilityParent(soap, tag ? tag : "prodml22:FacilityParent", -2, a, type)) + if (soap_out_PointerToprodml23__FacilityParent(soap, tag ? tag : "prodml23:FacilityParent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FacilityParent ** SOAP_FMAC4 soap_get_PointerToprodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityParent ** SOAP_FMAC4 soap_get_PointerToprodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FacilityParent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FacilityParent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumePortDifference(struct soap *soap, const char *tag, int id, prodml22__ProductVolumePortDifference *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumePortDifference(struct soap *soap, const char *tag, int id, prodml23__ProductVolumePortDifference *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumePortDifference ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumePortDifference(struct soap *soap, const char *tag, prodml22__ProductVolumePortDifference **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePortDifference ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumePortDifference(struct soap *soap, const char *tag, prodml23__ProductVolumePortDifference **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumePortDifference **)soap_malloc(soap, sizeof(prodml22__ProductVolumePortDifference *)))) + if (!(a = (prodml23__ProductVolumePortDifference **)soap_malloc(soap, sizeof(prodml23__ProductVolumePortDifference *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumePortDifference *)soap_instantiate_prodml22__ProductVolumePortDifference(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumePortDifference *)soap_instantiate_prodml23__ProductVolumePortDifference(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427285,23 +427470,23 @@ SOAP_FMAC3 prodml22__ProductVolumePortDifference ** SOAP_FMAC4 soap_in_PointerTo } } else - { a = (prodml22__ProductVolumePortDifference **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, sizeof(prodml22__ProductVolumePortDifference), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumePortDifference **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, sizeof(prodml23__ProductVolumePortDifference), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumePortDifference(soap, tag ? tag : "prodml22:ProductVolumePortDifference", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumePortDifference(soap, tag ? tag : "prodml23:ProductVolumePortDifference", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumePortDifference ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumePortDifference ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumePortDifference(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumePortDifference(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -427366,35 +427551,35 @@ SOAP_FMAC3 eml23__DensityValue ** SOAP_FMAC4 soap_get_PointerToeml23__DensityVal return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RecombinedSampleFraction(struct soap *soap, const char *tag, int id, prodml22__RecombinedSampleFraction *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RecombinedSampleFraction(struct soap *soap, const char *tag, int id, prodml23__RecombinedSampleFraction *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction ? type : NULL); } -SOAP_FMAC3 prodml22__RecombinedSampleFraction ** SOAP_FMAC4 soap_in_PointerToprodml22__RecombinedSampleFraction(struct soap *soap, const char *tag, prodml22__RecombinedSampleFraction **a, const char *type) +SOAP_FMAC3 prodml23__RecombinedSampleFraction ** SOAP_FMAC4 soap_in_PointerToprodml23__RecombinedSampleFraction(struct soap *soap, const char *tag, prodml23__RecombinedSampleFraction **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RecombinedSampleFraction **)soap_malloc(soap, sizeof(prodml22__RecombinedSampleFraction *)))) + if (!(a = (prodml23__RecombinedSampleFraction **)soap_malloc(soap, sizeof(prodml23__RecombinedSampleFraction *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RecombinedSampleFraction *)soap_instantiate_prodml22__RecombinedSampleFraction(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RecombinedSampleFraction *)soap_instantiate_prodml23__RecombinedSampleFraction(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427403,110 +427588,110 @@ SOAP_FMAC3 prodml22__RecombinedSampleFraction ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__RecombinedSampleFraction **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, sizeof(prodml22__RecombinedSampleFraction), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RecombinedSampleFraction **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, sizeof(prodml23__RecombinedSampleFraction), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RecombinedSampleFraction(soap, tag ? tag : "prodml22:RecombinedSampleFraction", -2, a, type)) + if (soap_out_PointerToprodml23__RecombinedSampleFraction(soap, tag ? tag : "prodml23:RecombinedSampleFraction", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RecombinedSampleFraction ** SOAP_FMAC4 soap_get_PointerToprodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RecombinedSampleFraction ** SOAP_FMAC4 soap_get_PointerToprodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RecombinedSampleFraction(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RecombinedSampleFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleAction(struct soap *soap, prodml22__SampleAction *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleAction(struct soap *soap, prodml23__SampleAction *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleAction(struct soap *soap, const char *tag, int id, prodml22__SampleAction *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleAction(struct soap *soap, const char *tag, int id, prodml23__SampleAction *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__SampleAction(soap, tag, id, *a, type); + return soap_out_prodml23__SampleAction(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__SampleAction ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleAction(struct soap *soap, const char *tag, prodml22__SampleAction **a, const char *type) +SOAP_FMAC3 prodml23__SampleAction ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleAction(struct soap *soap, const char *tag, prodml23__SampleAction **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SampleAction **)soap_malloc(soap, sizeof(prodml22__SampleAction *)))) + if (!(a = (prodml23__SampleAction **)soap_malloc(soap, sizeof(prodml23__SampleAction *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__SampleAction(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__SampleAction(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__SampleAction **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction, sizeof(prodml22__SampleAction), 0, NULL); + { a = (prodml23__SampleAction **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction, sizeof(prodml23__SampleAction), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleAction(struct soap *soap, prodml22__SampleAction *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleAction(struct soap *soap, prodml23__SampleAction *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SampleAction(soap, tag ? tag : "prodml22:SampleAction", -2, a, type)) + if (soap_out_PointerToprodml23__SampleAction(soap, tag ? tag : "prodml23:SampleAction", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleAction ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleAction(struct soap *soap, prodml22__SampleAction **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleAction ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleAction(struct soap *soap, prodml23__SampleAction **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SampleAction(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SampleAction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CustomParameter(struct soap *soap, const char *tag, int id, prodml22__CustomParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CustomParameter(struct soap *soap, const char *tag, int id, prodml23__CustomParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter ? type : NULL); } -SOAP_FMAC3 prodml22__CustomParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__CustomParameter(struct soap *soap, const char *tag, prodml22__CustomParameter **a, const char *type) +SOAP_FMAC3 prodml23__CustomParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__CustomParameter(struct soap *soap, const char *tag, prodml23__CustomParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CustomParameter **)soap_malloc(soap, sizeof(prodml22__CustomParameter *)))) + if (!(a = (prodml23__CustomParameter **)soap_malloc(soap, sizeof(prodml23__CustomParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__CustomParameter *)soap_instantiate_prodml22__CustomParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__CustomParameter *)soap_instantiate_prodml23__CustomParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427515,57 +427700,57 @@ SOAP_FMAC3 prodml22__CustomParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__Cu } } else - { a = (prodml22__CustomParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, sizeof(prodml22__CustomParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__CustomParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, sizeof(prodml23__CustomParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CustomParameter(soap, tag ? tag : "prodml22:CustomParameter", -2, a, type)) + if (soap_out_PointerToprodml23__CustomParameter(soap, tag ? tag : "prodml23:CustomParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CustomParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CustomParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CustomParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractParameter(struct soap *soap, const char *tag, int id, prodml22__AbstractParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractParameter(struct soap *soap, const char *tag, int id, prodml23__AbstractParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractParameter(struct soap *soap, const char *tag, prodml22__AbstractParameter **a, const char *type) +SOAP_FMAC3 prodml23__AbstractParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractParameter(struct soap *soap, const char *tag, prodml23__AbstractParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractParameter **)soap_malloc(soap, sizeof(prodml22__AbstractParameter *)))) + if (!(a = (prodml23__AbstractParameter **)soap_malloc(soap, sizeof(prodml23__AbstractParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractParameter *)soap_instantiate_prodml22__AbstractParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractParameter *)soap_instantiate_prodml23__AbstractParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427574,57 +427759,57 @@ SOAP_FMAC3 prodml22__AbstractParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__AbstractParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, sizeof(prodml22__AbstractParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, sizeof(prodml23__AbstractParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractParameter(soap, tag ? tag : "prodml22:AbstractParameter", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractParameter(soap, tag ? tag : "prodml23:AbstractParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureStorativityRatio(struct soap *soap, const char *tag, int id, prodml22__FractureStorativityRatio *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureStorativityRatio(struct soap *soap, const char *tag, int id, prodml23__FractureStorativityRatio *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio ? type : NULL); } -SOAP_FMAC3 prodml22__FractureStorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureStorativityRatio(struct soap *soap, const char *tag, prodml22__FractureStorativityRatio **a, const char *type) +SOAP_FMAC3 prodml23__FractureStorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureStorativityRatio(struct soap *soap, const char *tag, prodml23__FractureStorativityRatio **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureStorativityRatio **)soap_malloc(soap, sizeof(prodml22__FractureStorativityRatio *)))) + if (!(a = (prodml23__FractureStorativityRatio **)soap_malloc(soap, sizeof(prodml23__FractureStorativityRatio *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureStorativityRatio *)soap_instantiate_prodml22__FractureStorativityRatio(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureStorativityRatio *)soap_instantiate_prodml23__FractureStorativityRatio(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427633,57 +427818,57 @@ SOAP_FMAC3 prodml22__FractureStorativityRatio ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__FractureStorativityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio, sizeof(prodml22__FractureStorativityRatio), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureStorativityRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio, sizeof(prodml23__FractureStorativityRatio), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureStorativityRatio(soap, tag ? tag : "prodml22:FractureStorativityRatio", -2, a, type)) + if (soap_out_PointerToprodml23__FractureStorativityRatio(soap, tag ? tag : "prodml23:FractureStorativityRatio", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureStorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureStorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureStorativityRatio(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureStorativityRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureFaceSkin(struct soap *soap, const char *tag, int id, prodml22__FractureFaceSkin *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureFaceSkin(struct soap *soap, const char *tag, int id, prodml23__FractureFaceSkin *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin ? type : NULL); } -SOAP_FMAC3 prodml22__FractureFaceSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureFaceSkin(struct soap *soap, const char *tag, prodml22__FractureFaceSkin **a, const char *type) +SOAP_FMAC3 prodml23__FractureFaceSkin ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureFaceSkin(struct soap *soap, const char *tag, prodml23__FractureFaceSkin **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureFaceSkin **)soap_malloc(soap, sizeof(prodml22__FractureFaceSkin *)))) + if (!(a = (prodml23__FractureFaceSkin **)soap_malloc(soap, sizeof(prodml23__FractureFaceSkin *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureFaceSkin *)soap_instantiate_prodml22__FractureFaceSkin(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureFaceSkin *)soap_instantiate_prodml23__FractureFaceSkin(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427692,57 +427877,57 @@ SOAP_FMAC3 prodml22__FractureFaceSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__F } } else - { a = (prodml22__FractureFaceSkin **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin, sizeof(prodml22__FractureFaceSkin), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureFaceSkin **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin, sizeof(prodml23__FractureFaceSkin), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureFaceSkin(soap, tag ? tag : "prodml22:FractureFaceSkin", -2, a, type)) + if (soap_out_PointerToprodml23__FractureFaceSkin(soap, tag ? tag : "prodml23:FractureFaceSkin", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureFaceSkin ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureFaceSkin ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureFaceSkin(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureFaceSkin(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, int id, prodml22__DistanceMidFractureHeightToBottomBoundary *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, int id, prodml23__DistanceMidFractureHeightToBottomBoundary *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary ? type : NULL); } -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, prodml22__DistanceMidFractureHeightToBottomBoundary **a, const char *type) +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *tag, prodml23__DistanceMidFractureHeightToBottomBoundary **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DistanceMidFractureHeightToBottomBoundary **)soap_malloc(soap, sizeof(prodml22__DistanceMidFractureHeightToBottomBoundary *)))) + if (!(a = (prodml23__DistanceMidFractureHeightToBottomBoundary **)soap_malloc(soap, sizeof(prodml23__DistanceMidFractureHeightToBottomBoundary *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DistanceMidFractureHeightToBottomBoundary *)soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DistanceMidFractureHeightToBottomBoundary *)soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427751,57 +427936,57 @@ SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soa } } else - { a = (prodml22__DistanceMidFractureHeightToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary, sizeof(prodml22__DistanceMidFractureHeightToBottomBoundary), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DistanceMidFractureHeightToBottomBoundary **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary, sizeof(prodml23__DistanceMidFractureHeightToBottomBoundary), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag ? tag : "prodml22:DistanceMidFractureHeightToBottomBoundary", -2, a, type)) + if (soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag ? tag : "prodml23:DistanceMidFractureHeightToBottomBoundary", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureHeight(struct soap *soap, const char *tag, int id, prodml22__FractureHeight *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureHeight(struct soap *soap, const char *tag, int id, prodml23__FractureHeight *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight ? type : NULL); } -SOAP_FMAC3 prodml22__FractureHeight ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureHeight(struct soap *soap, const char *tag, prodml22__FractureHeight **a, const char *type) +SOAP_FMAC3 prodml23__FractureHeight ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureHeight(struct soap *soap, const char *tag, prodml23__FractureHeight **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureHeight **)soap_malloc(soap, sizeof(prodml22__FractureHeight *)))) + if (!(a = (prodml23__FractureHeight **)soap_malloc(soap, sizeof(prodml23__FractureHeight *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureHeight *)soap_instantiate_prodml22__FractureHeight(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureHeight *)soap_instantiate_prodml23__FractureHeight(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427810,57 +427995,57 @@ SOAP_FMAC3 prodml22__FractureHeight ** SOAP_FMAC4 soap_in_PointerToprodml22__Fra } } else - { a = (prodml22__FractureHeight **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight, sizeof(prodml22__FractureHeight), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureHeight **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight, sizeof(prodml23__FractureHeight), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureHeight(soap, tag ? tag : "prodml22:FractureHeight", -2, a, type)) + if (soap_out_PointerToprodml23__FractureHeight(soap, tag ? tag : "prodml23:FractureHeight", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureHeight ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureHeight ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureHeight(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureHeight(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TotalThickness(struct soap *soap, const char *tag, int id, prodml22__TotalThickness *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TotalThickness(struct soap *soap, const char *tag, int id, prodml23__TotalThickness *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness ? type : NULL); } -SOAP_FMAC3 prodml22__TotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__TotalThickness(struct soap *soap, const char *tag, prodml22__TotalThickness **a, const char *type) +SOAP_FMAC3 prodml23__TotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__TotalThickness(struct soap *soap, const char *tag, prodml23__TotalThickness **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TotalThickness **)soap_malloc(soap, sizeof(prodml22__TotalThickness *)))) + if (!(a = (prodml23__TotalThickness **)soap_malloc(soap, sizeof(prodml23__TotalThickness *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TotalThickness *)soap_instantiate_prodml22__TotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TotalThickness *)soap_instantiate_prodml23__TotalThickness(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427869,57 +428054,57 @@ SOAP_FMAC3 prodml22__TotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__Tot } } else - { a = (prodml22__TotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness, sizeof(prodml22__TotalThickness), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TotalThickness **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness, sizeof(prodml23__TotalThickness), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TotalThickness(soap, tag ? tag : "prodml22:TotalThickness", -2, a, type)) + if (soap_out_PointerToprodml23__TotalThickness(soap, tag ? tag : "prodml23:TotalThickness", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TotalThickness(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TotalThickness(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Porosity(struct soap *soap, prodml22__Porosity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Porosity(struct soap *soap, prodml23__Porosity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Porosity(struct soap *soap, const char *tag, int id, prodml22__Porosity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Porosity(struct soap *soap, const char *tag, int id, prodml23__Porosity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity ? type : NULL); } -SOAP_FMAC3 prodml22__Porosity ** SOAP_FMAC4 soap_in_PointerToprodml22__Porosity(struct soap *soap, const char *tag, prodml22__Porosity **a, const char *type) +SOAP_FMAC3 prodml23__Porosity ** SOAP_FMAC4 soap_in_PointerToprodml23__Porosity(struct soap *soap, const char *tag, prodml23__Porosity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__Porosity **)soap_malloc(soap, sizeof(prodml22__Porosity *)))) + if (!(a = (prodml23__Porosity **)soap_malloc(soap, sizeof(prodml23__Porosity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__Porosity *)soap_instantiate_prodml22__Porosity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__Porosity *)soap_instantiate_prodml23__Porosity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427928,57 +428113,57 @@ SOAP_FMAC3 prodml22__Porosity ** SOAP_FMAC4 soap_in_PointerToprodml22__Porosity( } } else - { a = (prodml22__Porosity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity, sizeof(prodml22__Porosity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__Porosity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity, sizeof(prodml23__Porosity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Porosity(struct soap *soap, prodml22__Porosity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Porosity(struct soap *soap, prodml23__Porosity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__Porosity(soap, tag ? tag : "prodml22:Porosity", -2, a, type)) + if (soap_out_PointerToprodml23__Porosity(soap, tag ? tag : "prodml23:Porosity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Porosity ** SOAP_FMAC4 soap_get_PointerToprodml22__Porosity(struct soap *soap, prodml22__Porosity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Porosity ** SOAP_FMAC4 soap_get_PointerToprodml23__Porosity(struct soap *soap, prodml23__Porosity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__Porosity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__Porosity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__HorizontalRadialPermeability(struct soap *soap, const char *tag, int id, prodml22__HorizontalRadialPermeability *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__HorizontalRadialPermeability(struct soap *soap, const char *tag, int id, prodml23__HorizontalRadialPermeability *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability ? type : NULL); } -SOAP_FMAC3 prodml22__HorizontalRadialPermeability ** SOAP_FMAC4 soap_in_PointerToprodml22__HorizontalRadialPermeability(struct soap *soap, const char *tag, prodml22__HorizontalRadialPermeability **a, const char *type) +SOAP_FMAC3 prodml23__HorizontalRadialPermeability ** SOAP_FMAC4 soap_in_PointerToprodml23__HorizontalRadialPermeability(struct soap *soap, const char *tag, prodml23__HorizontalRadialPermeability **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__HorizontalRadialPermeability **)soap_malloc(soap, sizeof(prodml22__HorizontalRadialPermeability *)))) + if (!(a = (prodml23__HorizontalRadialPermeability **)soap_malloc(soap, sizeof(prodml23__HorizontalRadialPermeability *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__HorizontalRadialPermeability *)soap_instantiate_prodml22__HorizontalRadialPermeability(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__HorizontalRadialPermeability *)soap_instantiate_prodml23__HorizontalRadialPermeability(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -427987,57 +428172,57 @@ SOAP_FMAC3 prodml22__HorizontalRadialPermeability ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__HorizontalRadialPermeability **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability, sizeof(prodml22__HorizontalRadialPermeability), 0, gsoap_eml2_3_fbase); + { a = (prodml23__HorizontalRadialPermeability **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability, sizeof(prodml23__HorizontalRadialPermeability), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__HorizontalRadialPermeability(soap, tag ? tag : "prodml22:HorizontalRadialPermeability", -2, a, type)) + if (soap_out_PointerToprodml23__HorizontalRadialPermeability(soap, tag ? tag : "prodml23:HorizontalRadialPermeability", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__HorizontalRadialPermeability ** SOAP_FMAC4 soap_get_PointerToprodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__HorizontalRadialPermeability ** SOAP_FMAC4 soap_get_PointerToprodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__HorizontalRadialPermeability(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__HorizontalRadialPermeability(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LocationIn2D(struct soap *soap, const char *tag, int id, prodml22__LocationIn2D *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LocationIn2D(struct soap *soap, const char *tag, int id, prodml23__LocationIn2D *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D ? type : NULL); } -SOAP_FMAC3 prodml22__LocationIn2D ** SOAP_FMAC4 soap_in_PointerToprodml22__LocationIn2D(struct soap *soap, const char *tag, prodml22__LocationIn2D **a, const char *type) +SOAP_FMAC3 prodml23__LocationIn2D ** SOAP_FMAC4 soap_in_PointerToprodml23__LocationIn2D(struct soap *soap, const char *tag, prodml23__LocationIn2D **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LocationIn2D **)soap_malloc(soap, sizeof(prodml22__LocationIn2D *)))) + if (!(a = (prodml23__LocationIn2D **)soap_malloc(soap, sizeof(prodml23__LocationIn2D *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LocationIn2D *)soap_instantiate_prodml22__LocationIn2D(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LocationIn2D *)soap_instantiate_prodml23__LocationIn2D(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428046,57 +428231,57 @@ SOAP_FMAC3 prodml22__LocationIn2D ** SOAP_FMAC4 soap_in_PointerToprodml22__Locat } } else - { a = (prodml22__LocationIn2D **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, sizeof(prodml22__LocationIn2D), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LocationIn2D **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, sizeof(prodml23__LocationIn2D), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LocationIn2D(soap, tag ? tag : "prodml22:LocationIn2D", -2, a, type)) + if (soap_out_PointerToprodml23__LocationIn2D(soap, tag ? tag : "prodml23:LocationIn2D", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LocationIn2D ** SOAP_FMAC4 soap_get_PointerToprodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LocationIn2D ** SOAP_FMAC4 soap_get_PointerToprodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LocationIn2D(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LocationIn2D(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AnalysisLine(struct soap *soap, const char *tag, int id, prodml22__AnalysisLine *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AnalysisLine(struct soap *soap, const char *tag, int id, prodml23__AnalysisLine *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine ? type : NULL); } -SOAP_FMAC3 prodml22__AnalysisLine ** SOAP_FMAC4 soap_in_PointerToprodml22__AnalysisLine(struct soap *soap, const char *tag, prodml22__AnalysisLine **a, const char *type) +SOAP_FMAC3 prodml23__AnalysisLine ** SOAP_FMAC4 soap_in_PointerToprodml23__AnalysisLine(struct soap *soap, const char *tag, prodml23__AnalysisLine **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AnalysisLine **)soap_malloc(soap, sizeof(prodml22__AnalysisLine *)))) + if (!(a = (prodml23__AnalysisLine **)soap_malloc(soap, sizeof(prodml23__AnalysisLine *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AnalysisLine *)soap_instantiate_prodml22__AnalysisLine(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AnalysisLine *)soap_instantiate_prodml23__AnalysisLine(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428105,57 +428290,57 @@ SOAP_FMAC3 prodml22__AnalysisLine ** SOAP_FMAC4 soap_in_PointerToprodml22__Analy } } else - { a = (prodml22__AnalysisLine **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, sizeof(prodml22__AnalysisLine), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AnalysisLine **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, sizeof(prodml23__AnalysisLine), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AnalysisLine(soap, tag ? tag : "prodml22:AnalysisLine", -2, a, type)) + if (soap_out_PointerToprodml23__AnalysisLine(soap, tag ? tag : "prodml23:AnalysisLine", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AnalysisLine ** SOAP_FMAC4 soap_get_PointerToprodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AnalysisLine ** SOAP_FMAC4 soap_get_PointerToprodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AnalysisLine(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AnalysisLine(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractPtaPressureData(struct soap *soap, const char *tag, int id, prodml22__AbstractPtaPressureData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractPtaPressureData(struct soap *soap, const char *tag, int id, prodml23__AbstractPtaPressureData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractPtaPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractPtaPressureData(struct soap *soap, const char *tag, prodml22__AbstractPtaPressureData **a, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractPtaPressureData(struct soap *soap, const char *tag, prodml23__AbstractPtaPressureData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractPtaPressureData **)soap_malloc(soap, sizeof(prodml22__AbstractPtaPressureData *)))) + if (!(a = (prodml23__AbstractPtaPressureData **)soap_malloc(soap, sizeof(prodml23__AbstractPtaPressureData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractPtaPressureData *)soap_instantiate_prodml22__AbstractPtaPressureData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractPtaPressureData *)soap_instantiate_prodml23__AbstractPtaPressureData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428164,57 +428349,57 @@ SOAP_FMAC3 prodml22__AbstractPtaPressureData ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__AbstractPtaPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData, sizeof(prodml22__AbstractPtaPressureData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractPtaPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData, sizeof(prodml23__AbstractPtaPressureData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractPtaPressureData(soap, tag ? tag : "prodml22:AbstractPtaPressureData", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractPtaPressureData(soap, tag ? tag : "prodml23:AbstractPtaPressureData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractPtaPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractPtaPressureData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractPtaPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterporosityFlowParameter(struct soap *soap, const char *tag, int id, prodml22__InterporosityFlowParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterporosityFlowParameter(struct soap *soap, const char *tag, int id, prodml23__InterporosityFlowParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter ? type : NULL); } -SOAP_FMAC3 prodml22__InterporosityFlowParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__InterporosityFlowParameter(struct soap *soap, const char *tag, prodml22__InterporosityFlowParameter **a, const char *type) +SOAP_FMAC3 prodml23__InterporosityFlowParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__InterporosityFlowParameter(struct soap *soap, const char *tag, prodml23__InterporosityFlowParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InterporosityFlowParameter **)soap_malloc(soap, sizeof(prodml22__InterporosityFlowParameter *)))) + if (!(a = (prodml23__InterporosityFlowParameter **)soap_malloc(soap, sizeof(prodml23__InterporosityFlowParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InterporosityFlowParameter *)soap_instantiate_prodml22__InterporosityFlowParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InterporosityFlowParameter *)soap_instantiate_prodml23__InterporosityFlowParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428223,57 +428408,57 @@ SOAP_FMAC3 prodml22__InterporosityFlowParameter ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__InterporosityFlowParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter, sizeof(prodml22__InterporosityFlowParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InterporosityFlowParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter, sizeof(prodml23__InterporosityFlowParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InterporosityFlowParameter(soap, tag ? tag : "prodml22:InterporosityFlowParameter", -2, a, type)) + if (soap_out_PointerToprodml23__InterporosityFlowParameter(soap, tag ? tag : "prodml23:InterporosityFlowParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InterporosityFlowParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterporosityFlowParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InterporosityFlowParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InterporosityFlowParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LayerToLayerConnection(struct soap *soap, const char *tag, int id, prodml22__LayerToLayerConnection *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LayerToLayerConnection(struct soap *soap, const char *tag, int id, prodml23__LayerToLayerConnection *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection ? type : NULL); } -SOAP_FMAC3 prodml22__LayerToLayerConnection ** SOAP_FMAC4 soap_in_PointerToprodml22__LayerToLayerConnection(struct soap *soap, const char *tag, prodml22__LayerToLayerConnection **a, const char *type) +SOAP_FMAC3 prodml23__LayerToLayerConnection ** SOAP_FMAC4 soap_in_PointerToprodml23__LayerToLayerConnection(struct soap *soap, const char *tag, prodml23__LayerToLayerConnection **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LayerToLayerConnection **)soap_malloc(soap, sizeof(prodml22__LayerToLayerConnection *)))) + if (!(a = (prodml23__LayerToLayerConnection **)soap_malloc(soap, sizeof(prodml23__LayerToLayerConnection *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LayerToLayerConnection *)soap_instantiate_prodml22__LayerToLayerConnection(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LayerToLayerConnection *)soap_instantiate_prodml23__LayerToLayerConnection(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428282,57 +428467,57 @@ SOAP_FMAC3 prodml22__LayerToLayerConnection ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__LayerToLayerConnection **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, sizeof(prodml22__LayerToLayerConnection), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LayerToLayerConnection **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, sizeof(prodml23__LayerToLayerConnection), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LayerToLayerConnection(soap, tag ? tag : "prodml22:LayerToLayerConnection", -2, a, type)) + if (soap_out_PointerToprodml23__LayerToLayerConnection(soap, tag ? tag : "prodml23:LayerToLayerConnection", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LayerToLayerConnection ** SOAP_FMAC4 soap_get_PointerToprodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LayerToLayerConnection ** SOAP_FMAC4 soap_get_PointerToprodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LayerToLayerConnection(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LayerToLayerConnection(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BoundaryBaseModel(struct soap *soap, const char *tag, int id, prodml22__BoundaryBaseModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BoundaryBaseModel(struct soap *soap, const char *tag, int id, prodml23__BoundaryBaseModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel ? type : NULL); } -SOAP_FMAC3 prodml22__BoundaryBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__BoundaryBaseModel(struct soap *soap, const char *tag, prodml22__BoundaryBaseModel **a, const char *type) +SOAP_FMAC3 prodml23__BoundaryBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__BoundaryBaseModel(struct soap *soap, const char *tag, prodml23__BoundaryBaseModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__BoundaryBaseModel **)soap_malloc(soap, sizeof(prodml22__BoundaryBaseModel *)))) + if (!(a = (prodml23__BoundaryBaseModel **)soap_malloc(soap, sizeof(prodml23__BoundaryBaseModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__BoundaryBaseModel *)soap_instantiate_prodml22__BoundaryBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__BoundaryBaseModel *)soap_instantiate_prodml23__BoundaryBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428341,57 +428526,57 @@ SOAP_FMAC3 prodml22__BoundaryBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__BoundaryBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel, sizeof(prodml22__BoundaryBaseModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__BoundaryBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel, sizeof(prodml23__BoundaryBaseModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__BoundaryBaseModel(soap, tag ? tag : "prodml22:BoundaryBaseModel", -2, a, type)) + if (soap_out_PointerToprodml23__BoundaryBaseModel(soap, tag ? tag : "prodml23:BoundaryBaseModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BoundaryBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BoundaryBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__BoundaryBaseModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__BoundaryBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReservoirBaseModel(struct soap *soap, const char *tag, int id, prodml22__ReservoirBaseModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReservoirBaseModel(struct soap *soap, const char *tag, int id, prodml23__ReservoirBaseModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel ? type : NULL); } -SOAP_FMAC3 prodml22__ReservoirBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__ReservoirBaseModel(struct soap *soap, const char *tag, prodml22__ReservoirBaseModel **a, const char *type) +SOAP_FMAC3 prodml23__ReservoirBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__ReservoirBaseModel(struct soap *soap, const char *tag, prodml23__ReservoirBaseModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReservoirBaseModel **)soap_malloc(soap, sizeof(prodml22__ReservoirBaseModel *)))) + if (!(a = (prodml23__ReservoirBaseModel **)soap_malloc(soap, sizeof(prodml23__ReservoirBaseModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ReservoirBaseModel *)soap_instantiate_prodml22__ReservoirBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ReservoirBaseModel *)soap_instantiate_prodml23__ReservoirBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428400,57 +428585,57 @@ SOAP_FMAC3 prodml22__ReservoirBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__ReservoirBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel, sizeof(prodml22__ReservoirBaseModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ReservoirBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel, sizeof(prodml23__ReservoirBaseModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReservoirBaseModel(soap, tag ? tag : "prodml22:ReservoirBaseModel", -2, a, type)) + if (soap_out_PointerToprodml23__ReservoirBaseModel(soap, tag ? tag : "prodml23:ReservoirBaseModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReservoirBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReservoirBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReservoirBaseModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReservoirBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NearWellboreBaseModel(struct soap *soap, const char *tag, int id, prodml22__NearWellboreBaseModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NearWellboreBaseModel(struct soap *soap, const char *tag, int id, prodml23__NearWellboreBaseModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel ? type : NULL); } -SOAP_FMAC3 prodml22__NearWellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__NearWellboreBaseModel(struct soap *soap, const char *tag, prodml22__NearWellboreBaseModel **a, const char *type) +SOAP_FMAC3 prodml23__NearWellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__NearWellboreBaseModel(struct soap *soap, const char *tag, prodml23__NearWellboreBaseModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__NearWellboreBaseModel **)soap_malloc(soap, sizeof(prodml22__NearWellboreBaseModel *)))) + if (!(a = (prodml23__NearWellboreBaseModel **)soap_malloc(soap, sizeof(prodml23__NearWellboreBaseModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__NearWellboreBaseModel *)soap_instantiate_prodml22__NearWellboreBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__NearWellboreBaseModel *)soap_instantiate_prodml23__NearWellboreBaseModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428459,23 +428644,23 @@ SOAP_FMAC3 prodml22__NearWellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__NearWellboreBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel, sizeof(prodml22__NearWellboreBaseModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__NearWellboreBaseModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel, sizeof(prodml23__NearWellboreBaseModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__NearWellboreBaseModel(soap, tag ? tag : "prodml22:NearWellboreBaseModel", -2, a, type)) + if (soap_out_PointerToprodml23__NearWellboreBaseModel(soap, tag ? tag : "prodml23:NearWellboreBaseModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__NearWellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NearWellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__NearWellboreBaseModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__NearWellboreBaseModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -428658,35 +428843,35 @@ SOAP_FMAC3 eml23__VolumePerTimePerPressureMeasure ** SOAP_FMAC4 soap_get_Pointer return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureConductivity(struct soap *soap, const char *tag, int id, prodml22__FractureConductivity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureConductivity(struct soap *soap, const char *tag, int id, prodml23__FractureConductivity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity ? type : NULL); } -SOAP_FMAC3 prodml22__FractureConductivity ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureConductivity(struct soap *soap, const char *tag, prodml22__FractureConductivity **a, const char *type) +SOAP_FMAC3 prodml23__FractureConductivity ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureConductivity(struct soap *soap, const char *tag, prodml23__FractureConductivity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FractureConductivity **)soap_malloc(soap, sizeof(prodml22__FractureConductivity *)))) + if (!(a = (prodml23__FractureConductivity **)soap_malloc(soap, sizeof(prodml23__FractureConductivity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FractureConductivity *)soap_instantiate_prodml22__FractureConductivity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FractureConductivity *)soap_instantiate_prodml23__FractureConductivity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428695,57 +428880,57 @@ SOAP_FMAC3 prodml22__FractureConductivity ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__FractureConductivity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity, sizeof(prodml22__FractureConductivity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FractureConductivity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity, sizeof(prodml23__FractureConductivity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FractureConductivity(soap, tag ? tag : "prodml22:FractureConductivity", -2, a, type)) + if (soap_out_PointerToprodml23__FractureConductivity(soap, tag ? tag : "prodml23:FractureConductivity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FractureConductivity ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FractureConductivity ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FractureConductivity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FractureConductivity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, int id, prodml22__TransmissibilityReductionFactorOfLinearFront *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, int id, prodml23__TransmissibilityReductionFactorOfLinearFront *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront ? type : NULL); } -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, prodml22__TransmissibilityReductionFactorOfLinearFront **a, const char *type) +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *tag, prodml23__TransmissibilityReductionFactorOfLinearFront **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TransmissibilityReductionFactorOfLinearFront **)soap_malloc(soap, sizeof(prodml22__TransmissibilityReductionFactorOfLinearFront *)))) + if (!(a = (prodml23__TransmissibilityReductionFactorOfLinearFront **)soap_malloc(soap, sizeof(prodml23__TransmissibilityReductionFactorOfLinearFront *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TransmissibilityReductionFactorOfLinearFront *)soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TransmissibilityReductionFactorOfLinearFront *)soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428754,57 +428939,57 @@ SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 } } else - { a = (prodml22__TransmissibilityReductionFactorOfLinearFront **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront, sizeof(prodml22__TransmissibilityReductionFactorOfLinearFront), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TransmissibilityReductionFactorOfLinearFront **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront, sizeof(prodml23__TransmissibilityReductionFactorOfLinearFront), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag ? tag : "prodml22:TransmissibilityReductionFactorOfLinearFront", -2, a, type)) + if (soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag ? tag : "prodml23:TransmissibilityReductionFactorOfLinearFront", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OutputPressureData(struct soap *soap, const char *tag, int id, prodml22__OutputPressureData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OutputPressureData(struct soap *soap, const char *tag, int id, prodml23__OutputPressureData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData ? type : NULL); } -SOAP_FMAC3 prodml22__OutputPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__OutputPressureData(struct soap *soap, const char *tag, prodml22__OutputPressureData **a, const char *type) +SOAP_FMAC3 prodml23__OutputPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__OutputPressureData(struct soap *soap, const char *tag, prodml23__OutputPressureData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OutputPressureData **)soap_malloc(soap, sizeof(prodml22__OutputPressureData *)))) + if (!(a = (prodml23__OutputPressureData **)soap_malloc(soap, sizeof(prodml23__OutputPressureData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OutputPressureData *)soap_instantiate_prodml22__OutputPressureData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OutputPressureData *)soap_instantiate_prodml23__OutputPressureData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428813,57 +428998,57 @@ SOAP_FMAC3 prodml22__OutputPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__OutputPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData, sizeof(prodml22__OutputPressureData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OutputPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData, sizeof(prodml23__OutputPressureData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OutputPressureData(soap, tag ? tag : "prodml22:OutputPressureData", -2, a, type)) + if (soap_out_PointerToprodml23__OutputPressureData(soap, tag ? tag : "prodml23:OutputPressureData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OutputPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OutputPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OutputPressureData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OutputPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ResqmlModelRef(struct soap *soap, const char *tag, int id, prodml22__ResqmlModelRef *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ResqmlModelRef(struct soap *soap, const char *tag, int id, prodml23__ResqmlModelRef *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef ? type : NULL); } -SOAP_FMAC3 prodml22__ResqmlModelRef ** SOAP_FMAC4 soap_in_PointerToprodml22__ResqmlModelRef(struct soap *soap, const char *tag, prodml22__ResqmlModelRef **a, const char *type) +SOAP_FMAC3 prodml23__ResqmlModelRef ** SOAP_FMAC4 soap_in_PointerToprodml23__ResqmlModelRef(struct soap *soap, const char *tag, prodml23__ResqmlModelRef **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ResqmlModelRef **)soap_malloc(soap, sizeof(prodml22__ResqmlModelRef *)))) + if (!(a = (prodml23__ResqmlModelRef **)soap_malloc(soap, sizeof(prodml23__ResqmlModelRef *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ResqmlModelRef *)soap_instantiate_prodml22__ResqmlModelRef(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ResqmlModelRef *)soap_instantiate_prodml23__ResqmlModelRef(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428872,57 +429057,57 @@ SOAP_FMAC3 prodml22__ResqmlModelRef ** SOAP_FMAC4 soap_in_PointerToprodml22__Res } } else - { a = (prodml22__ResqmlModelRef **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef, sizeof(prodml22__ResqmlModelRef), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ResqmlModelRef **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef, sizeof(prodml23__ResqmlModelRef), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ResqmlModelRef(soap, tag ? tag : "prodml22:ResqmlModelRef", -2, a, type)) + if (soap_out_PointerToprodml23__ResqmlModelRef(soap, tag ? tag : "prodml23:ResqmlModelRef", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ResqmlModelRef ** SOAP_FMAC4 soap_get_PointerToprodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ResqmlModelRef ** SOAP_FMAC4 soap_get_PointerToprodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ResqmlModelRef(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ResqmlModelRef(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeconvolvedPressureData(struct soap *soap, const char *tag, int id, prodml22__DeconvolvedPressureData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeconvolvedPressureData(struct soap *soap, const char *tag, int id, prodml23__DeconvolvedPressureData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData ? type : NULL); } -SOAP_FMAC3 prodml22__DeconvolvedPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__DeconvolvedPressureData(struct soap *soap, const char *tag, prodml22__DeconvolvedPressureData **a, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__DeconvolvedPressureData(struct soap *soap, const char *tag, prodml23__DeconvolvedPressureData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DeconvolvedPressureData **)soap_malloc(soap, sizeof(prodml22__DeconvolvedPressureData *)))) + if (!(a = (prodml23__DeconvolvedPressureData **)soap_malloc(soap, sizeof(prodml23__DeconvolvedPressureData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__DeconvolvedPressureData *)soap_instantiate_prodml22__DeconvolvedPressureData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__DeconvolvedPressureData *)soap_instantiate_prodml23__DeconvolvedPressureData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -428931,23 +429116,23 @@ SOAP_FMAC3 prodml22__DeconvolvedPressureData ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__DeconvolvedPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData, sizeof(prodml22__DeconvolvedPressureData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__DeconvolvedPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData, sizeof(prodml23__DeconvolvedPressureData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DeconvolvedPressureData(soap, tag ? tag : "prodml22:DeconvolvedPressureData", -2, a, type)) + if (soap_out_PointerToprodml23__DeconvolvedPressureData(soap, tag ? tag : "prodml23:DeconvolvedPressureData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DeconvolvedPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DeconvolvedPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DeconvolvedPressureData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DeconvolvedPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -429012,38 +429197,38 @@ SOAP_FMAC3 eml23__ReciprocalPressureMeasureExt ** SOAP_FMAC4 soap_get_PointerToe return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingHierarchyNode(struct soap *soap, const char *tag, int id, prodml22__ReportingHierarchyNode *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingHierarchyNode(struct soap *soap, const char *tag, int id, prodml23__ReportingHierarchyNode *const*a, const char *type) { char *mark; - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, &mark); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, &mark); if (id < 0) return soap->error; - (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode ? type : NULL); soap_unmark(soap, mark); return soap->error; } -SOAP_FMAC3 prodml22__ReportingHierarchyNode ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingHierarchyNode(struct soap *soap, const char *tag, prodml22__ReportingHierarchyNode **a, const char *type) +SOAP_FMAC3 prodml23__ReportingHierarchyNode ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingHierarchyNode(struct soap *soap, const char *tag, prodml23__ReportingHierarchyNode **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReportingHierarchyNode **)soap_malloc(soap, sizeof(prodml22__ReportingHierarchyNode *)))) + if (!(a = (prodml23__ReportingHierarchyNode **)soap_malloc(soap, sizeof(prodml23__ReportingHierarchyNode *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ReportingHierarchyNode *)soap_instantiate_prodml22__ReportingHierarchyNode(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ReportingHierarchyNode *)soap_instantiate_prodml23__ReportingHierarchyNode(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429052,57 +429237,57 @@ SOAP_FMAC3 prodml22__ReportingHierarchyNode ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__ReportingHierarchyNode **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, sizeof(prodml22__ReportingHierarchyNode), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ReportingHierarchyNode **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, sizeof(prodml23__ReportingHierarchyNode), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReportingHierarchyNode(soap, tag ? tag : "prodml22:ReportingHierarchyNode", -2, a, type)) + if (soap_out_PointerToprodml23__ReportingHierarchyNode(soap, tag ? tag : "prodml23:ReportingHierarchyNode", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingHierarchyNode ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingHierarchyNode ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReportingHierarchyNode(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReportingHierarchyNode(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductRate(struct soap *soap, prodml22__ProductRate *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductRate(struct soap *soap, prodml23__ProductRate *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductRate(struct soap *soap, const char *tag, int id, prodml22__ProductRate *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductRate(struct soap *soap, const char *tag, int id, prodml23__ProductRate *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate ? type : NULL); } -SOAP_FMAC3 prodml22__ProductRate ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductRate(struct soap *soap, const char *tag, prodml22__ProductRate **a, const char *type) +SOAP_FMAC3 prodml23__ProductRate ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductRate(struct soap *soap, const char *tag, prodml23__ProductRate **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductRate **)soap_malloc(soap, sizeof(prodml22__ProductRate *)))) + if (!(a = (prodml23__ProductRate **)soap_malloc(soap, sizeof(prodml23__ProductRate *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductRate *)soap_instantiate_prodml22__ProductRate(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductRate *)soap_instantiate_prodml23__ProductRate(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429111,57 +429296,57 @@ SOAP_FMAC3 prodml22__ProductRate ** SOAP_FMAC4 soap_in_PointerToprodml22__Produc } } else - { a = (prodml22__ProductRate **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, sizeof(prodml22__ProductRate), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductRate **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, sizeof(prodml23__ProductRate), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductRate(struct soap *soap, prodml22__ProductRate *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductRate(struct soap *soap, prodml23__ProductRate *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductRate(soap, tag ? tag : "prodml22:ProductRate", -2, a, type)) + if (soap_out_PointerToprodml23__ProductRate(soap, tag ? tag : "prodml23:ProductRate", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductRate ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductRate(struct soap *soap, prodml22__ProductRate **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductRate ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductRate(struct soap *soap, prodml23__ProductRate **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductRate(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductRate(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellFlowingCondition(struct soap *soap, const char *tag, int id, prodml22__WellFlowingCondition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellFlowingCondition(struct soap *soap, const char *tag, int id, prodml23__WellFlowingCondition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition ? type : NULL); } -SOAP_FMAC3 prodml22__WellFlowingCondition ** SOAP_FMAC4 soap_in_PointerToprodml22__WellFlowingCondition(struct soap *soap, const char *tag, prodml22__WellFlowingCondition **a, const char *type) +SOAP_FMAC3 prodml23__WellFlowingCondition ** SOAP_FMAC4 soap_in_PointerToprodml23__WellFlowingCondition(struct soap *soap, const char *tag, prodml23__WellFlowingCondition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WellFlowingCondition **)soap_malloc(soap, sizeof(prodml22__WellFlowingCondition *)))) + if (!(a = (prodml23__WellFlowingCondition **)soap_malloc(soap, sizeof(prodml23__WellFlowingCondition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WellFlowingCondition *)soap_instantiate_prodml22__WellFlowingCondition(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WellFlowingCondition *)soap_instantiate_prodml23__WellFlowingCondition(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429170,76 +429355,76 @@ SOAP_FMAC3 prodml22__WellFlowingCondition ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__WellFlowingCondition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition, sizeof(prodml22__WellFlowingCondition), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WellFlowingCondition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition, sizeof(prodml23__WellFlowingCondition), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WellFlowingCondition(soap, tag ? tag : "prodml22:WellFlowingCondition", -2, a, type)) + if (soap_out_PointerToprodml23__WellFlowingCondition(soap, tag ? tag : "prodml23:WellFlowingCondition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WellFlowingCondition ** SOAP_FMAC4 soap_get_PointerToprodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WellFlowingCondition ** SOAP_FMAC4 soap_get_PointerToprodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WellFlowingCondition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WellFlowingCondition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TestPeriodKind(struct soap *soap, const char *tag, int id, prodml22__TestPeriodKind *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TestPeriodKind(struct soap *soap, const char *tag, int id, prodml23__TestPeriodKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__TestPeriodKind(soap, tag, id, *a, type); + return soap_out_prodml23__TestPeriodKind(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__TestPeriodKind ** SOAP_FMAC4 soap_in_PointerToprodml22__TestPeriodKind(struct soap *soap, const char *tag, prodml22__TestPeriodKind **a, const char *type) +SOAP_FMAC3 prodml23__TestPeriodKind ** SOAP_FMAC4 soap_in_PointerToprodml23__TestPeriodKind(struct soap *soap, const char *tag, prodml23__TestPeriodKind **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TestPeriodKind **)soap_malloc(soap, sizeof(prodml22__TestPeriodKind *)))) + if (!(a = (prodml23__TestPeriodKind **)soap_malloc(soap, sizeof(prodml23__TestPeriodKind *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__TestPeriodKind(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__TestPeriodKind(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__TestPeriodKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind, sizeof(prodml22__TestPeriodKind), 0, NULL); + { a = (prodml23__TestPeriodKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind, sizeof(prodml23__TestPeriodKind), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TestPeriodKind(soap, tag ? tag : "prodml22:TestPeriodKind", -2, a, type)) + if (soap_out_PointerToprodml23__TestPeriodKind(soap, tag ? tag : "prodml23:TestPeriodKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TestPeriodKind ** SOAP_FMAC4 soap_get_PointerToprodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TestPeriodKind ** SOAP_FMAC4 soap_get_PointerToprodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TestPeriodKind(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TestPeriodKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -429304,35 +429489,35 @@ SOAP_FMAC3 eml23__FlowRateValue ** SOAP_FMAC4 soap_get_PointerToeml23__FlowRateV return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidComponentCatalog(struct soap *soap, const char *tag, int id, prodml22__FluidComponentCatalog *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidComponentCatalog(struct soap *soap, const char *tag, int id, prodml23__FluidComponentCatalog *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog ? type : NULL); } -SOAP_FMAC3 prodml22__FluidComponentCatalog ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidComponentCatalog(struct soap *soap, const char *tag, prodml22__FluidComponentCatalog **a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentCatalog ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidComponentCatalog(struct soap *soap, const char *tag, prodml23__FluidComponentCatalog **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidComponentCatalog **)soap_malloc(soap, sizeof(prodml22__FluidComponentCatalog *)))) + if (!(a = (prodml23__FluidComponentCatalog **)soap_malloc(soap, sizeof(prodml23__FluidComponentCatalog *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidComponentCatalog *)soap_instantiate_prodml22__FluidComponentCatalog(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidComponentCatalog *)soap_instantiate_prodml23__FluidComponentCatalog(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429341,57 +429526,57 @@ SOAP_FMAC3 prodml22__FluidComponentCatalog ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__FluidComponentCatalog **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog, sizeof(prodml22__FluidComponentCatalog), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidComponentCatalog **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog, sizeof(prodml23__FluidComponentCatalog), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidComponentCatalog(soap, tag ? tag : "prodml22:FluidComponentCatalog", -2, a, type)) + if (soap_out_PointerToprodml23__FluidComponentCatalog(soap, tag ? tag : "prodml23:FluidComponentCatalog", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidComponentCatalog ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentCatalog ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidComponentCatalog(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidComponentCatalog(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MeasuredPressureData(struct soap *soap, const char *tag, int id, prodml22__MeasuredPressureData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MeasuredPressureData(struct soap *soap, const char *tag, int id, prodml23__MeasuredPressureData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData ? type : NULL); } -SOAP_FMAC3 prodml22__MeasuredPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__MeasuredPressureData(struct soap *soap, const char *tag, prodml22__MeasuredPressureData **a, const char *type) +SOAP_FMAC3 prodml23__MeasuredPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__MeasuredPressureData(struct soap *soap, const char *tag, prodml23__MeasuredPressureData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MeasuredPressureData **)soap_malloc(soap, sizeof(prodml22__MeasuredPressureData *)))) + if (!(a = (prodml23__MeasuredPressureData **)soap_malloc(soap, sizeof(prodml23__MeasuredPressureData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__MeasuredPressureData *)soap_instantiate_prodml22__MeasuredPressureData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__MeasuredPressureData *)soap_instantiate_prodml23__MeasuredPressureData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429400,57 +429585,57 @@ SOAP_FMAC3 prodml22__MeasuredPressureData ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__MeasuredPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, sizeof(prodml22__MeasuredPressureData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__MeasuredPressureData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, sizeof(prodml23__MeasuredPressureData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MeasuredPressureData(soap, tag ? tag : "prodml22:MeasuredPressureData", -2, a, type)) + if (soap_out_PointerToprodml23__MeasuredPressureData(soap, tag ? tag : "prodml23:MeasuredPressureData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MeasuredPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MeasuredPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MeasuredPressureData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MeasuredPressureData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractPtaFlowData(struct soap *soap, const char *tag, int id, prodml22__AbstractPtaFlowData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractPtaFlowData(struct soap *soap, const char *tag, int id, prodml23__AbstractPtaFlowData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractPtaFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractPtaFlowData(struct soap *soap, const char *tag, prodml22__AbstractPtaFlowData **a, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaFlowData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractPtaFlowData(struct soap *soap, const char *tag, prodml23__AbstractPtaFlowData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractPtaFlowData **)soap_malloc(soap, sizeof(prodml22__AbstractPtaFlowData *)))) + if (!(a = (prodml23__AbstractPtaFlowData **)soap_malloc(soap, sizeof(prodml23__AbstractPtaFlowData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractPtaFlowData *)soap_instantiate_prodml22__AbstractPtaFlowData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractPtaFlowData *)soap_instantiate_prodml23__AbstractPtaFlowData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429459,57 +429644,57 @@ SOAP_FMAC3 prodml22__AbstractPtaFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__AbstractPtaFlowData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, sizeof(prodml22__AbstractPtaFlowData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractPtaFlowData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, sizeof(prodml23__AbstractPtaFlowData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractPtaFlowData(soap, tag ? tag : "prodml22:AbstractPtaFlowData", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractPtaFlowData(soap, tag ? tag : "prodml23:AbstractPtaFlowData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractPtaFlowData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractPtaFlowData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractPtaFlowData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractPtaFlowData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OtherData(struct soap *soap, prodml22__OtherData *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OtherData(struct soap *soap, prodml23__OtherData *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OtherData(struct soap *soap, const char *tag, int id, prodml22__OtherData *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OtherData(struct soap *soap, const char *tag, int id, prodml23__OtherData *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData ? type : NULL); } -SOAP_FMAC3 prodml22__OtherData ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherData(struct soap *soap, const char *tag, prodml22__OtherData **a, const char *type) +SOAP_FMAC3 prodml23__OtherData ** SOAP_FMAC4 soap_in_PointerToprodml23__OtherData(struct soap *soap, const char *tag, prodml23__OtherData **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OtherData **)soap_malloc(soap, sizeof(prodml22__OtherData *)))) + if (!(a = (prodml23__OtherData **)soap_malloc(soap, sizeof(prodml23__OtherData *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OtherData *)soap_instantiate_prodml22__OtherData(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OtherData *)soap_instantiate_prodml23__OtherData(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429518,57 +429703,57 @@ SOAP_FMAC3 prodml22__OtherData ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherDat } } else - { a = (prodml22__OtherData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, sizeof(prodml22__OtherData), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OtherData **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, sizeof(prodml23__OtherData), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OtherData(struct soap *soap, prodml22__OtherData *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OtherData(struct soap *soap, prodml23__OtherData *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OtherData(soap, tag ? tag : "prodml22:OtherData", -2, a, type)) + if (soap_out_PointerToprodml23__OtherData(soap, tag ? tag : "prodml23:OtherData", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OtherData ** SOAP_FMAC4 soap_get_PointerToprodml22__OtherData(struct soap *soap, prodml22__OtherData **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OtherData ** SOAP_FMAC4 soap_get_PointerToprodml23__OtherData(struct soap *soap, prodml23__OtherData **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OtherData(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OtherData(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowTestLocation(struct soap *soap, const char *tag, int id, prodml22__FlowTestLocation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowTestLocation(struct soap *soap, const char *tag, int id, prodml23__FlowTestLocation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation ? type : NULL); } -SOAP_FMAC3 prodml22__FlowTestLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowTestLocation(struct soap *soap, const char *tag, prodml22__FlowTestLocation **a, const char *type) +SOAP_FMAC3 prodml23__FlowTestLocation ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowTestLocation(struct soap *soap, const char *tag, prodml23__FlowTestLocation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FlowTestLocation **)soap_malloc(soap, sizeof(prodml22__FlowTestLocation *)))) + if (!(a = (prodml23__FlowTestLocation **)soap_malloc(soap, sizeof(prodml23__FlowTestLocation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FlowTestLocation *)soap_instantiate_prodml22__FlowTestLocation(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FlowTestLocation *)soap_instantiate_prodml23__FlowTestLocation(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429577,57 +429762,57 @@ SOAP_FMAC3 prodml22__FlowTestLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__F } } else - { a = (prodml22__FlowTestLocation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation, sizeof(prodml22__FlowTestLocation), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FlowTestLocation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation, sizeof(prodml23__FlowTestLocation), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FlowTestLocation(soap, tag ? tag : "prodml22:FlowTestLocation", -2, a, type)) + if (soap_out_PointerToprodml23__FlowTestLocation(soap, tag ? tag : "prodml23:FlowTestLocation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlowTestLocation ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlowTestLocation ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FlowTestLocation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FlowTestLocation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TestPeriod(struct soap *soap, const char *tag, int id, prodml22__TestPeriod *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TestPeriod(struct soap *soap, const char *tag, int id, prodml23__TestPeriod *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod ? type : NULL); } -SOAP_FMAC3 prodml22__TestPeriod ** SOAP_FMAC4 soap_in_PointerToprodml22__TestPeriod(struct soap *soap, const char *tag, prodml22__TestPeriod **a, const char *type) +SOAP_FMAC3 prodml23__TestPeriod ** SOAP_FMAC4 soap_in_PointerToprodml23__TestPeriod(struct soap *soap, const char *tag, prodml23__TestPeriod **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TestPeriod **)soap_malloc(soap, sizeof(prodml22__TestPeriod *)))) + if (!(a = (prodml23__TestPeriod **)soap_malloc(soap, sizeof(prodml23__TestPeriod *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__TestPeriod *)soap_instantiate_prodml22__TestPeriod(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__TestPeriod *)soap_instantiate_prodml23__TestPeriod(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -429636,23 +429821,23 @@ SOAP_FMAC3 prodml22__TestPeriod ** SOAP_FMAC4 soap_in_PointerToprodml22__TestPer } } else - { a = (prodml22__TestPeriod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod, sizeof(prodml22__TestPeriod), 0, gsoap_eml2_3_fbase); + { a = (prodml23__TestPeriod **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod, sizeof(prodml23__TestPeriod), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TestPeriod(soap, tag ? tag : "prodml22:TestPeriod", -2, a, type)) + if (soap_out_PointerToprodml23__TestPeriod(soap, tag ? tag : "prodml23:TestPeriod", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TestPeriod ** SOAP_FMAC4 soap_get_PointerToprodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TestPeriod ** SOAP_FMAC4 soap_get_PointerToprodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TestPeriod(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TestPeriod(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -429711,54 +429896,54 @@ SOAP_FMAC3 eml23__ReferencePointKind ** SOAP_FMAC4 soap_get_PointerToeml23__Refe return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, int id, prodml22__TimeSeriesPointRepresentation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, int id, prodml23__TimeSeriesPointRepresentation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__TimeSeriesPointRepresentation(soap, tag, id, *a, type); + return soap_out_prodml23__TimeSeriesPointRepresentation(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, prodml22__TimeSeriesPointRepresentation **a, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *tag, prodml23__TimeSeriesPointRepresentation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__TimeSeriesPointRepresentation **)soap_malloc(soap, sizeof(prodml22__TimeSeriesPointRepresentation *)))) + if (!(a = (prodml23__TimeSeriesPointRepresentation **)soap_malloc(soap, sizeof(prodml23__TimeSeriesPointRepresentation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__TimeSeriesPointRepresentation(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__TimeSeriesPointRepresentation(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__TimeSeriesPointRepresentation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation, sizeof(prodml22__TimeSeriesPointRepresentation), 0, NULL); + { a = (prodml23__TimeSeriesPointRepresentation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation, sizeof(prodml23__TimeSeriesPointRepresentation), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__TimeSeriesPointRepresentation(soap, tag ? tag : "prodml22:TimeSeriesPointRepresentation", -2, a, type)) + if (soap_out_PointerToprodml23__TimeSeriesPointRepresentation(soap, tag ? tag : "prodml23:TimeSeriesPointRepresentation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__TimeSeriesPointRepresentation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__TimeSeriesPointRepresentation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -429823,24 +430008,24 @@ SOAP_FMAC3 eml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt ** SOAP_FMAC4 return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrganicAcidKindExt(struct soap *soap, std::string *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrganicAcidKindExt(struct soap *soap, std::string *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt)) - soap_serialize_prodml22__OrganicAcidKindExt(soap, *a); + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt)) + soap_serialize_prodml23__OrganicAcidKindExt(soap, *a); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrganicAcidKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrganicAcidKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__OrganicAcidKindExt(soap, tag, id, *a, type); + return soap_out_prodml23__OrganicAcidKindExt(soap, tag, id, *a, type); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__OrganicAcidKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__OrganicAcidKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -429851,50 +430036,50 @@ SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__OrganicAcidKindE *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__OrganicAcidKindExt(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__OrganicAcidKindExt(soap, tag, *a, type))) return NULL; } else - { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt, sizeof(std::string), 0, NULL); + { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt, sizeof(std::string), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrganicAcidKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrganicAcidKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OrganicAcidKindExt(soap, tag ? tag : "prodml22:OrganicAcidKindExt", -2, a, type)) + if (soap_out_PointerToprodml23__OrganicAcidKindExt(soap, tag ? tag : "prodml23:OrganicAcidKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__OrganicAcidKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__OrganicAcidKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OrganicAcidKindExt(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OrganicAcidKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CationKindExt(struct soap *soap, std::string *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CationKindExt(struct soap *soap, std::string *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt)) - soap_serialize_prodml22__CationKindExt(soap, *a); + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt)) + soap_serialize_prodml23__CationKindExt(soap, *a); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CationKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CationKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__CationKindExt(soap, tag, id, *a, type); + return soap_out_prodml23__CationKindExt(soap, tag, id, *a, type); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__CationKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__CationKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -429905,50 +430090,50 @@ SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__CationKindExt(st *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__CationKindExt(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__CationKindExt(soap, tag, *a, type))) return NULL; } else - { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt, sizeof(std::string), 0, NULL); + { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt, sizeof(std::string), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CationKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CationKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CationKindExt(soap, tag ? tag : "prodml22:CationKindExt", -2, a, type)) + if (soap_out_PointerToprodml23__CationKindExt(soap, tag ? tag : "prodml23:CationKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__CationKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__CationKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CationKindExt(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CationKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AnionKindExt(struct soap *soap, std::string *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AnionKindExt(struct soap *soap, std::string *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt)) - soap_serialize_prodml22__AnionKindExt(soap, *a); + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt)) + soap_serialize_prodml23__AnionKindExt(soap, *a); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AnionKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AnionKindExt(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__AnionKindExt(soap, tag, id, *a, type); + return soap_out_prodml23__AnionKindExt(soap, tag, id, *a, type); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__AnionKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__AnionKindExt(struct soap *soap, const char *tag, std::string **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -429959,27 +430144,27 @@ SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__AnionKindExt(str *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__AnionKindExt(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__AnionKindExt(soap, tag, *a, type))) return NULL; } else - { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt, sizeof(std::string), 0, NULL); + { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt, sizeof(std::string), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AnionKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AnionKindExt(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AnionKindExt(soap, tag ? tag : "prodml22:AnionKindExt", -2, a, type)) + if (soap_out_PointerToprodml23__AnionKindExt(soap, tag ? tag : "prodml23:AnionKindExt", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__AnionKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__AnionKindExt(struct soap *soap, std::string **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AnionKindExt(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AnionKindExt(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -430457,35 +430642,35 @@ SOAP_FMAC3 eml23__ElectricalResistivityMeasureExt ** SOAP_FMAC4 soap_get_Pointer return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WaterAnalysisTestStep(struct soap *soap, const char *tag, int id, prodml22__WaterAnalysisTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WaterAnalysisTestStep(struct soap *soap, const char *tag, int id, prodml23__WaterAnalysisTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__WaterAnalysisTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__WaterAnalysisTestStep(struct soap *soap, const char *tag, prodml22__WaterAnalysisTestStep **a, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__WaterAnalysisTestStep(struct soap *soap, const char *tag, prodml23__WaterAnalysisTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__WaterAnalysisTestStep **)soap_malloc(soap, sizeof(prodml22__WaterAnalysisTestStep *)))) + if (!(a = (prodml23__WaterAnalysisTestStep **)soap_malloc(soap, sizeof(prodml23__WaterAnalysisTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__WaterAnalysisTestStep *)soap_instantiate_prodml22__WaterAnalysisTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__WaterAnalysisTestStep *)soap_instantiate_prodml23__WaterAnalysisTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430494,23 +430679,23 @@ SOAP_FMAC3 prodml22__WaterAnalysisTestStep ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__WaterAnalysisTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, sizeof(prodml22__WaterAnalysisTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__WaterAnalysisTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, sizeof(prodml23__WaterAnalysisTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__WaterAnalysisTestStep(soap, tag ? tag : "prodml22:WaterAnalysisTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__WaterAnalysisTestStep(soap, tag ? tag : "prodml23:WaterAnalysisTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__WaterAnalysisTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__WaterAnalysisTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__WaterAnalysisTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__WaterAnalysisTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -430575,35 +430760,35 @@ SOAP_FMAC3 eml23__MassPerMassMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__M return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PhaseDensity(struct soap *soap, const char *tag, int id, prodml22__PhaseDensity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PhaseDensity(struct soap *soap, const char *tag, int id, prodml23__PhaseDensity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity ? type : NULL); } -SOAP_FMAC3 prodml22__PhaseDensity ** SOAP_FMAC4 soap_in_PointerToprodml22__PhaseDensity(struct soap *soap, const char *tag, prodml22__PhaseDensity **a, const char *type) +SOAP_FMAC3 prodml23__PhaseDensity ** SOAP_FMAC4 soap_in_PointerToprodml23__PhaseDensity(struct soap *soap, const char *tag, prodml23__PhaseDensity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PhaseDensity **)soap_malloc(soap, sizeof(prodml22__PhaseDensity *)))) + if (!(a = (prodml23__PhaseDensity **)soap_malloc(soap, sizeof(prodml23__PhaseDensity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PhaseDensity *)soap_instantiate_prodml22__PhaseDensity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PhaseDensity *)soap_instantiate_prodml23__PhaseDensity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430612,57 +430797,57 @@ SOAP_FMAC3 prodml22__PhaseDensity ** SOAP_FMAC4 soap_in_PointerToprodml22__Phase } } else - { a = (prodml22__PhaseDensity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, sizeof(prodml22__PhaseDensity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PhaseDensity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, sizeof(prodml23__PhaseDensity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PhaseDensity(soap, tag ? tag : "prodml22:PhaseDensity", -2, a, type)) + if (soap_out_PointerToprodml23__PhaseDensity(soap, tag ? tag : "prodml23:PhaseDensity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PhaseDensity ** SOAP_FMAC4 soap_get_PointerToprodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PhaseDensity ** SOAP_FMAC4 soap_get_PointerToprodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PhaseDensity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PhaseDensity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PhaseViscosity(struct soap *soap, const char *tag, int id, prodml22__PhaseViscosity *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PhaseViscosity(struct soap *soap, const char *tag, int id, prodml23__PhaseViscosity *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity ? type : NULL); } -SOAP_FMAC3 prodml22__PhaseViscosity ** SOAP_FMAC4 soap_in_PointerToprodml22__PhaseViscosity(struct soap *soap, const char *tag, prodml22__PhaseViscosity **a, const char *type) +SOAP_FMAC3 prodml23__PhaseViscosity ** SOAP_FMAC4 soap_in_PointerToprodml23__PhaseViscosity(struct soap *soap, const char *tag, prodml23__PhaseViscosity **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PhaseViscosity **)soap_malloc(soap, sizeof(prodml22__PhaseViscosity *)))) + if (!(a = (prodml23__PhaseViscosity **)soap_malloc(soap, sizeof(prodml23__PhaseViscosity *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PhaseViscosity *)soap_instantiate_prodml22__PhaseViscosity(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PhaseViscosity *)soap_instantiate_prodml23__PhaseViscosity(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430671,57 +430856,57 @@ SOAP_FMAC3 prodml22__PhaseViscosity ** SOAP_FMAC4 soap_in_PointerToprodml22__Pha } } else - { a = (prodml22__PhaseViscosity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity, sizeof(prodml22__PhaseViscosity), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PhaseViscosity **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity, sizeof(prodml23__PhaseViscosity), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PhaseViscosity(soap, tag ? tag : "prodml22:PhaseViscosity", -2, a, type)) + if (soap_out_PointerToprodml23__PhaseViscosity(soap, tag ? tag : "prodml23:PhaseViscosity", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PhaseViscosity ** SOAP_FMAC4 soap_get_PointerToprodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PhaseViscosity ** SOAP_FMAC4 soap_get_PointerToprodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PhaseViscosity(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PhaseViscosity(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RefInjectedGasAdded(struct soap *soap, const char *tag, int id, prodml22__RefInjectedGasAdded *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RefInjectedGasAdded(struct soap *soap, const char *tag, int id, prodml23__RefInjectedGasAdded *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded ? type : NULL); } -SOAP_FMAC3 prodml22__RefInjectedGasAdded ** SOAP_FMAC4 soap_in_PointerToprodml22__RefInjectedGasAdded(struct soap *soap, const char *tag, prodml22__RefInjectedGasAdded **a, const char *type) +SOAP_FMAC3 prodml23__RefInjectedGasAdded ** SOAP_FMAC4 soap_in_PointerToprodml23__RefInjectedGasAdded(struct soap *soap, const char *tag, prodml23__RefInjectedGasAdded **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RefInjectedGasAdded **)soap_malloc(soap, sizeof(prodml22__RefInjectedGasAdded *)))) + if (!(a = (prodml23__RefInjectedGasAdded **)soap_malloc(soap, sizeof(prodml23__RefInjectedGasAdded *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RefInjectedGasAdded *)soap_instantiate_prodml22__RefInjectedGasAdded(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RefInjectedGasAdded *)soap_instantiate_prodml23__RefInjectedGasAdded(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430730,57 +430915,57 @@ SOAP_FMAC3 prodml22__RefInjectedGasAdded ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__RefInjectedGasAdded **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded, sizeof(prodml22__RefInjectedGasAdded), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RefInjectedGasAdded **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, sizeof(prodml23__RefInjectedGasAdded), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RefInjectedGasAdded(soap, tag ? tag : "prodml22:RefInjectedGasAdded", -2, a, type)) + if (soap_out_PointerToprodml23__RefInjectedGasAdded(soap, tag ? tag : "prodml23:RefInjectedGasAdded", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RefInjectedGasAdded ** SOAP_FMAC4 soap_get_PointerToprodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RefInjectedGasAdded ** SOAP_FMAC4 soap_get_PointerToprodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RefInjectedGasAdded(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RefInjectedGasAdded(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SwellingTestStep(struct soap *soap, const char *tag, int id, prodml22__SwellingTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SwellingTestStep(struct soap *soap, const char *tag, int id, prodml23__SwellingTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__SwellingTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__SwellingTestStep(struct soap *soap, const char *tag, prodml22__SwellingTestStep **a, const char *type) +SOAP_FMAC3 prodml23__SwellingTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__SwellingTestStep(struct soap *soap, const char *tag, prodml23__SwellingTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SwellingTestStep **)soap_malloc(soap, sizeof(prodml22__SwellingTestStep *)))) + if (!(a = (prodml23__SwellingTestStep **)soap_malloc(soap, sizeof(prodml23__SwellingTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SwellingTestStep *)soap_instantiate_prodml22__SwellingTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SwellingTestStep *)soap_instantiate_prodml23__SwellingTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430789,57 +430974,57 @@ SOAP_FMAC3 prodml22__SwellingTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__S } } else - { a = (prodml22__SwellingTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, sizeof(prodml22__SwellingTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SwellingTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, sizeof(prodml23__SwellingTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SwellingTestStep(soap, tag ? tag : "prodml22:SwellingTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__SwellingTestStep(soap, tag ? tag : "prodml23:SwellingTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SwellingTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SwellingTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SwellingTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SwellingTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Sara(struct soap *soap, prodml22__Sara *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Sara(struct soap *soap, prodml23__Sara *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Sara(struct soap *soap, const char *tag, int id, prodml22__Sara *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Sara(struct soap *soap, const char *tag, int id, prodml23__Sara *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Sara ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Sara ? type : NULL); } -SOAP_FMAC3 prodml22__Sara ** SOAP_FMAC4 soap_in_PointerToprodml22__Sara(struct soap *soap, const char *tag, prodml22__Sara **a, const char *type) +SOAP_FMAC3 prodml23__Sara ** SOAP_FMAC4 soap_in_PointerToprodml23__Sara(struct soap *soap, const char *tag, prodml23__Sara **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__Sara **)soap_malloc(soap, sizeof(prodml22__Sara *)))) + if (!(a = (prodml23__Sara **)soap_malloc(soap, sizeof(prodml23__Sara *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__Sara *)soap_instantiate_prodml22__Sara(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__Sara *)soap_instantiate_prodml23__Sara(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430848,57 +431033,57 @@ SOAP_FMAC3 prodml22__Sara ** SOAP_FMAC4 soap_in_PointerToprodml22__Sara(struct s } } else - { a = (prodml22__Sara **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, sizeof(prodml22__Sara), 0, gsoap_eml2_3_fbase); + { a = (prodml23__Sara **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, sizeof(prodml23__Sara), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Sara(struct soap *soap, prodml22__Sara *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Sara(struct soap *soap, prodml23__Sara *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__Sara(soap, tag ? tag : "prodml22:Sara", -2, a, type)) + if (soap_out_PointerToprodml23__Sara(soap, tag ? tag : "prodml23:Sara", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__Sara ** SOAP_FMAC4 soap_get_PointerToprodml22__Sara(struct soap *soap, prodml22__Sara **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__Sara ** SOAP_FMAC4 soap_get_PointerToprodml23__Sara(struct soap *soap, prodml23__Sara **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__Sara(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__Sara(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ViscosityAtTemperature(struct soap *soap, const char *tag, int id, prodml22__ViscosityAtTemperature *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ViscosityAtTemperature(struct soap *soap, const char *tag, int id, prodml23__ViscosityAtTemperature *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature ? type : NULL); } -SOAP_FMAC3 prodml22__ViscosityAtTemperature ** SOAP_FMAC4 soap_in_PointerToprodml22__ViscosityAtTemperature(struct soap *soap, const char *tag, prodml22__ViscosityAtTemperature **a, const char *type) +SOAP_FMAC3 prodml23__ViscosityAtTemperature ** SOAP_FMAC4 soap_in_PointerToprodml23__ViscosityAtTemperature(struct soap *soap, const char *tag, prodml23__ViscosityAtTemperature **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ViscosityAtTemperature **)soap_malloc(soap, sizeof(prodml22__ViscosityAtTemperature *)))) + if (!(a = (prodml23__ViscosityAtTemperature **)soap_malloc(soap, sizeof(prodml23__ViscosityAtTemperature *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ViscosityAtTemperature *)soap_instantiate_prodml22__ViscosityAtTemperature(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ViscosityAtTemperature *)soap_instantiate_prodml23__ViscosityAtTemperature(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430907,57 +431092,57 @@ SOAP_FMAC3 prodml22__ViscosityAtTemperature ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__ViscosityAtTemperature **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, sizeof(prodml22__ViscosityAtTemperature), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ViscosityAtTemperature **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, sizeof(prodml23__ViscosityAtTemperature), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ViscosityAtTemperature(soap, tag ? tag : "prodml22:ViscosityAtTemperature", -2, a, type)) + if (soap_out_PointerToprodml23__ViscosityAtTemperature(soap, tag ? tag : "prodml23:ViscosityAtTemperature", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ViscosityAtTemperature ** SOAP_FMAC4 soap_get_PointerToprodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ViscosityAtTemperature ** SOAP_FMAC4 soap_get_PointerToprodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ViscosityAtTemperature(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ViscosityAtTemperature(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__STOFlashedLiquid(struct soap *soap, const char *tag, int id, prodml22__STOFlashedLiquid *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__STOFlashedLiquid(struct soap *soap, const char *tag, int id, prodml23__STOFlashedLiquid *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid ? type : NULL); } -SOAP_FMAC3 prodml22__STOFlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml22__STOFlashedLiquid(struct soap *soap, const char *tag, prodml22__STOFlashedLiquid **a, const char *type) +SOAP_FMAC3 prodml23__STOFlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml23__STOFlashedLiquid(struct soap *soap, const char *tag, prodml23__STOFlashedLiquid **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__STOFlashedLiquid **)soap_malloc(soap, sizeof(prodml22__STOFlashedLiquid *)))) + if (!(a = (prodml23__STOFlashedLiquid **)soap_malloc(soap, sizeof(prodml23__STOFlashedLiquid *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__STOFlashedLiquid *)soap_instantiate_prodml22__STOFlashedLiquid(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__STOFlashedLiquid *)soap_instantiate_prodml23__STOFlashedLiquid(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -430966,57 +431151,57 @@ SOAP_FMAC3 prodml22__STOFlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml22__S } } else - { a = (prodml22__STOFlashedLiquid **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid, sizeof(prodml22__STOFlashedLiquid), 0, gsoap_eml2_3_fbase); + { a = (prodml23__STOFlashedLiquid **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid, sizeof(prodml23__STOFlashedLiquid), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__STOFlashedLiquid(soap, tag ? tag : "prodml22:STOFlashedLiquid", -2, a, type)) + if (soap_out_PointerToprodml23__STOFlashedLiquid(soap, tag ? tag : "prodml23:STOFlashedLiquid", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__STOFlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__STOFlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__STOFlashedLiquid(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__STOFlashedLiquid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MassBalance(struct soap *soap, prodml22__MassBalance *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MassBalance(struct soap *soap, prodml23__MassBalance *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MassBalance(struct soap *soap, const char *tag, int id, prodml22__MassBalance *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MassBalance(struct soap *soap, const char *tag, int id, prodml23__MassBalance *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance ? type : NULL); } -SOAP_FMAC3 prodml22__MassBalance ** SOAP_FMAC4 soap_in_PointerToprodml22__MassBalance(struct soap *soap, const char *tag, prodml22__MassBalance **a, const char *type) +SOAP_FMAC3 prodml23__MassBalance ** SOAP_FMAC4 soap_in_PointerToprodml23__MassBalance(struct soap *soap, const char *tag, prodml23__MassBalance **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MassBalance **)soap_malloc(soap, sizeof(prodml22__MassBalance *)))) + if (!(a = (prodml23__MassBalance **)soap_malloc(soap, sizeof(prodml23__MassBalance *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__MassBalance *)soap_instantiate_prodml22__MassBalance(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__MassBalance *)soap_instantiate_prodml23__MassBalance(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431025,57 +431210,57 @@ SOAP_FMAC3 prodml22__MassBalance ** SOAP_FMAC4 soap_in_PointerToprodml22__MassBa } } else - { a = (prodml22__MassBalance **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance, sizeof(prodml22__MassBalance), 0, gsoap_eml2_3_fbase); + { a = (prodml23__MassBalance **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance, sizeof(prodml23__MassBalance), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MassBalance(struct soap *soap, prodml22__MassBalance *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MassBalance(struct soap *soap, prodml23__MassBalance *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MassBalance(soap, tag ? tag : "prodml22:MassBalance", -2, a, type)) + if (soap_out_PointerToprodml23__MassBalance(soap, tag ? tag : "prodml23:MassBalance", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MassBalance ** SOAP_FMAC4 soap_get_PointerToprodml22__MassBalance(struct soap *soap, prodml22__MassBalance **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MassBalance ** SOAP_FMAC4 soap_get_PointerToprodml23__MassBalance(struct soap *soap, prodml23__MassBalance **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MassBalance(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MassBalance(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProducedOilProperties(struct soap *soap, const char *tag, int id, prodml22__ProducedOilProperties *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProducedOilProperties(struct soap *soap, const char *tag, int id, prodml23__ProducedOilProperties *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties ? type : NULL); } -SOAP_FMAC3 prodml22__ProducedOilProperties ** SOAP_FMAC4 soap_in_PointerToprodml22__ProducedOilProperties(struct soap *soap, const char *tag, prodml22__ProducedOilProperties **a, const char *type) +SOAP_FMAC3 prodml23__ProducedOilProperties ** SOAP_FMAC4 soap_in_PointerToprodml23__ProducedOilProperties(struct soap *soap, const char *tag, prodml23__ProducedOilProperties **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProducedOilProperties **)soap_malloc(soap, sizeof(prodml22__ProducedOilProperties *)))) + if (!(a = (prodml23__ProducedOilProperties **)soap_malloc(soap, sizeof(prodml23__ProducedOilProperties *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProducedOilProperties *)soap_instantiate_prodml22__ProducedOilProperties(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProducedOilProperties *)soap_instantiate_prodml23__ProducedOilProperties(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431084,57 +431269,57 @@ SOAP_FMAC3 prodml22__ProducedOilProperties ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__ProducedOilProperties **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties, sizeof(prodml22__ProducedOilProperties), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProducedOilProperties **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties, sizeof(prodml23__ProducedOilProperties), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProducedOilProperties(soap, tag ? tag : "prodml22:ProducedOilProperties", -2, a, type)) + if (soap_out_PointerToprodml23__ProducedOilProperties(soap, tag ? tag : "prodml23:ProducedOilProperties", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProducedOilProperties ** SOAP_FMAC4 soap_get_PointerToprodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProducedOilProperties ** SOAP_FMAC4 soap_get_PointerToprodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProducedOilProperties(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProducedOilProperties(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProducedGasProperties(struct soap *soap, const char *tag, int id, prodml22__ProducedGasProperties *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProducedGasProperties(struct soap *soap, const char *tag, int id, prodml23__ProducedGasProperties *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties ? type : NULL); } -SOAP_FMAC3 prodml22__ProducedGasProperties ** SOAP_FMAC4 soap_in_PointerToprodml22__ProducedGasProperties(struct soap *soap, const char *tag, prodml22__ProducedGasProperties **a, const char *type) +SOAP_FMAC3 prodml23__ProducedGasProperties ** SOAP_FMAC4 soap_in_PointerToprodml23__ProducedGasProperties(struct soap *soap, const char *tag, prodml23__ProducedGasProperties **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProducedGasProperties **)soap_malloc(soap, sizeof(prodml22__ProducedGasProperties *)))) + if (!(a = (prodml23__ProducedGasProperties **)soap_malloc(soap, sizeof(prodml23__ProducedGasProperties *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProducedGasProperties *)soap_instantiate_prodml22__ProducedGasProperties(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProducedGasProperties *)soap_instantiate_prodml23__ProducedGasProperties(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431143,57 +431328,57 @@ SOAP_FMAC3 prodml22__ProducedGasProperties ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__ProducedGasProperties **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties, sizeof(prodml22__ProducedGasProperties), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProducedGasProperties **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties, sizeof(prodml23__ProducedGasProperties), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProducedGasProperties(soap, tag ? tag : "prodml22:ProducedGasProperties", -2, a, type)) + if (soap_out_PointerToprodml23__ProducedGasProperties(soap, tag ? tag : "prodml23:ProducedGasProperties", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProducedGasProperties ** SOAP_FMAC4 soap_get_PointerToprodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProducedGasProperties ** SOAP_FMAC4 soap_get_PointerToprodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProducedGasProperties(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProducedGasProperties(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, int id, prodml22__SlimTubeTestVolumeStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, int id, prodml23__SlimTubeTestVolumeStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep ? type : NULL); } -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, prodml22__SlimTubeTestVolumeStep **a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, prodml23__SlimTubeTestVolumeStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SlimTubeTestVolumeStep **)soap_malloc(soap, sizeof(prodml22__SlimTubeTestVolumeStep *)))) + if (!(a = (prodml23__SlimTubeTestVolumeStep **)soap_malloc(soap, sizeof(prodml23__SlimTubeTestVolumeStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SlimTubeTestVolumeStep *)soap_instantiate_prodml22__SlimTubeTestVolumeStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SlimTubeTestVolumeStep *)soap_instantiate_prodml23__SlimTubeTestVolumeStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431202,57 +431387,57 @@ SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__SlimTubeTestVolumeStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, sizeof(prodml22__SlimTubeTestVolumeStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeTestVolumeStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, sizeof(prodml23__SlimTubeTestVolumeStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag ? tag : "prodml22:SlimTubeTestVolumeStep", -2, a, type)) + if (soap_out_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag ? tag : "prodml23:SlimTubeTestVolumeStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeSpecification(struct soap *soap, const char *tag, int id, prodml22__SlimTubeSpecification *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeSpecification(struct soap *soap, const char *tag, int id, prodml23__SlimTubeSpecification *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification ? type : NULL); } -SOAP_FMAC3 prodml22__SlimTubeSpecification ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeSpecification(struct soap *soap, const char *tag, prodml22__SlimTubeSpecification **a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeSpecification ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeSpecification(struct soap *soap, const char *tag, prodml23__SlimTubeSpecification **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SlimTubeSpecification **)soap_malloc(soap, sizeof(prodml22__SlimTubeSpecification *)))) + if (!(a = (prodml23__SlimTubeSpecification **)soap_malloc(soap, sizeof(prodml23__SlimTubeSpecification *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SlimTubeSpecification *)soap_instantiate_prodml22__SlimTubeSpecification(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SlimTubeSpecification *)soap_instantiate_prodml23__SlimTubeSpecification(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431261,57 +431446,57 @@ SOAP_FMAC3 prodml22__SlimTubeSpecification ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__SlimTubeSpecification **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, sizeof(prodml22__SlimTubeSpecification), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeSpecification **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, sizeof(prodml23__SlimTubeSpecification), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SlimTubeSpecification(soap, tag ? tag : "prodml22:SlimTubeSpecification", -2, a, type)) + if (soap_out_PointerToprodml23__SlimTubeSpecification(soap, tag ? tag : "prodml23:SlimTubeSpecification", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SlimTubeSpecification ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeSpecification ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SlimTubeSpecification(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SlimTubeSpecification(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeTestStep(struct soap *soap, const char *tag, int id, prodml22__SlimTubeTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeTestStep(struct soap *soap, const char *tag, int id, prodml23__SlimTubeTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__SlimTubeTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeTestStep(struct soap *soap, const char *tag, prodml22__SlimTubeTestStep **a, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeTestStep(struct soap *soap, const char *tag, prodml23__SlimTubeTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SlimTubeTestStep **)soap_malloc(soap, sizeof(prodml22__SlimTubeTestStep *)))) + if (!(a = (prodml23__SlimTubeTestStep **)soap_malloc(soap, sizeof(prodml23__SlimTubeTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SlimTubeTestStep *)soap_instantiate_prodml22__SlimTubeTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SlimTubeTestStep *)soap_instantiate_prodml23__SlimTubeTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431320,57 +431505,57 @@ SOAP_FMAC3 prodml22__SlimTubeTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__S } } else - { a = (prodml22__SlimTubeTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, sizeof(prodml22__SlimTubeTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SlimTubeTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, sizeof(prodml23__SlimTubeTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SlimTubeTestStep(soap, tag ? tag : "prodml22:SlimTubeTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__SlimTubeTestStep(soap, tag ? tag : "prodml23:SlimTubeTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SlimTubeTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SlimTubeTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SlimTubeTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SlimTubeTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InjectedGas(struct soap *soap, const char *tag, int id, prodml22__InjectedGas *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InjectedGas(struct soap *soap, const char *tag, int id, prodml23__InjectedGas *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas ? type : NULL); } -SOAP_FMAC3 prodml22__InjectedGas ** SOAP_FMAC4 soap_in_PointerToprodml22__InjectedGas(struct soap *soap, const char *tag, prodml22__InjectedGas **a, const char *type) +SOAP_FMAC3 prodml23__InjectedGas ** SOAP_FMAC4 soap_in_PointerToprodml23__InjectedGas(struct soap *soap, const char *tag, prodml23__InjectedGas **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InjectedGas **)soap_malloc(soap, sizeof(prodml22__InjectedGas *)))) + if (!(a = (prodml23__InjectedGas **)soap_malloc(soap, sizeof(prodml23__InjectedGas *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InjectedGas *)soap_instantiate_prodml22__InjectedGas(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InjectedGas *)soap_instantiate_prodml23__InjectedGas(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431379,57 +431564,57 @@ SOAP_FMAC3 prodml22__InjectedGas ** SOAP_FMAC4 soap_in_PointerToprodml22__Inject } } else - { a = (prodml22__InjectedGas **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, sizeof(prodml22__InjectedGas), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InjectedGas **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, sizeof(prodml23__InjectedGas), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InjectedGas(soap, tag ? tag : "prodml22:InjectedGas", -2, a, type)) + if (soap_out_PointerToprodml23__InjectedGas(soap, tag ? tag : "prodml23:InjectedGas", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InjectedGas ** SOAP_FMAC4 soap_get_PointerToprodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InjectedGas ** SOAP_FMAC4 soap_get_PointerToprodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InjectedGas(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InjectedGas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleRestoration(struct soap *soap, const char *tag, int id, prodml22__SampleRestoration *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleRestoration(struct soap *soap, const char *tag, int id, prodml23__SampleRestoration *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration ? type : NULL); } -SOAP_FMAC3 prodml22__SampleRestoration ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleRestoration(struct soap *soap, const char *tag, prodml22__SampleRestoration **a, const char *type) +SOAP_FMAC3 prodml23__SampleRestoration ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleRestoration(struct soap *soap, const char *tag, prodml23__SampleRestoration **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SampleRestoration **)soap_malloc(soap, sizeof(prodml22__SampleRestoration *)))) + if (!(a = (prodml23__SampleRestoration **)soap_malloc(soap, sizeof(prodml23__SampleRestoration *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SampleRestoration *)soap_instantiate_prodml22__SampleRestoration(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SampleRestoration *)soap_instantiate_prodml23__SampleRestoration(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431438,57 +431623,57 @@ SOAP_FMAC3 prodml22__SampleRestoration ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__SampleRestoration **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, sizeof(prodml22__SampleRestoration), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SampleRestoration **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, sizeof(prodml23__SampleRestoration), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SampleRestoration(soap, tag ? tag : "prodml22:SampleRestoration", -2, a, type)) + if (soap_out_PointerToprodml23__SampleRestoration(soap, tag ? tag : "prodml23:SampleRestoration", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SampleRestoration ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SampleRestoration ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SampleRestoration(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SampleRestoration(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationTemperature(struct soap *soap, const char *tag, int id, prodml22__SaturationTemperature *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationTemperature(struct soap *soap, const char *tag, int id, prodml23__SaturationTemperature *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature ? type : NULL); } -SOAP_FMAC3 prodml22__SaturationTemperature ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationTemperature(struct soap *soap, const char *tag, prodml22__SaturationTemperature **a, const char *type) +SOAP_FMAC3 prodml23__SaturationTemperature ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationTemperature(struct soap *soap, const char *tag, prodml23__SaturationTemperature **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SaturationTemperature **)soap_malloc(soap, sizeof(prodml22__SaturationTemperature *)))) + if (!(a = (prodml23__SaturationTemperature **)soap_malloc(soap, sizeof(prodml23__SaturationTemperature *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SaturationTemperature *)soap_instantiate_prodml22__SaturationTemperature(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SaturationTemperature *)soap_instantiate_prodml23__SaturationTemperature(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431497,57 +431682,57 @@ SOAP_FMAC3 prodml22__SaturationTemperature ** SOAP_FMAC4 soap_in_PointerToprodml } } else - { a = (prodml22__SaturationTemperature **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature, sizeof(prodml22__SaturationTemperature), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SaturationTemperature **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature, sizeof(prodml23__SaturationTemperature), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SaturationTemperature(soap, tag ? tag : "prodml22:SaturationTemperature", -2, a, type)) + if (soap_out_PointerToprodml23__SaturationTemperature(soap, tag ? tag : "prodml23:SaturationTemperature", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SaturationTemperature ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationTemperature ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SaturationTemperature(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SaturationTemperature(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OtherMeasurementTestStep(struct soap *soap, const char *tag, int id, prodml22__OtherMeasurementTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OtherMeasurementTestStep(struct soap *soap, const char *tag, int id, prodml23__OtherMeasurementTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__OtherMeasurementTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherMeasurementTestStep(struct soap *soap, const char *tag, prodml22__OtherMeasurementTestStep **a, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__OtherMeasurementTestStep(struct soap *soap, const char *tag, prodml23__OtherMeasurementTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OtherMeasurementTestStep **)soap_malloc(soap, sizeof(prodml22__OtherMeasurementTestStep *)))) + if (!(a = (prodml23__OtherMeasurementTestStep **)soap_malloc(soap, sizeof(prodml23__OtherMeasurementTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OtherMeasurementTestStep *)soap_instantiate_prodml22__OtherMeasurementTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OtherMeasurementTestStep *)soap_instantiate_prodml23__OtherMeasurementTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431556,57 +431741,57 @@ SOAP_FMAC3 prodml22__OtherMeasurementTestStep ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__OtherMeasurementTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, sizeof(prodml22__OtherMeasurementTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OtherMeasurementTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, sizeof(prodml23__OtherMeasurementTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OtherMeasurementTestStep(soap, tag ? tag : "prodml22:OtherMeasurementTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__OtherMeasurementTestStep(soap, tag ? tag : "prodml23:OtherMeasurementTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OtherMeasurementTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OtherMeasurementTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OtherMeasurementTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OtherMeasurementTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationTableFormatSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationTableFormatSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableFormatSet **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableFormatSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationTableFormatSet **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationTableFormatSet *)))) + if (!(a = (prodml23__FluidCharacterizationTableFormatSet **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationTableFormatSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationTableFormatSet *)soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationTableFormatSet *)soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431615,57 +431800,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_in_P } } else - { a = (prodml22__FluidCharacterizationTableFormatSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet, sizeof(prodml22__FluidCharacterizationTableFormatSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableFormatSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet, sizeof(prodml23__FluidCharacterizationTableFormatSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, tag ? tag : "prodml22:FluidCharacterizationTableFormatSet", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, tag ? tag : "prodml23:FluidCharacterizationTableFormatSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationTableFormatSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationTableFormatSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MassOut(struct soap *soap, prodml22__MassOut *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MassOut(struct soap *soap, prodml23__MassOut *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MassOut(struct soap *soap, const char *tag, int id, prodml22__MassOut *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MassOut(struct soap *soap, const char *tag, int id, prodml23__MassOut *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut ? type : NULL); } -SOAP_FMAC3 prodml22__MassOut ** SOAP_FMAC4 soap_in_PointerToprodml22__MassOut(struct soap *soap, const char *tag, prodml22__MassOut **a, const char *type) +SOAP_FMAC3 prodml23__MassOut ** SOAP_FMAC4 soap_in_PointerToprodml23__MassOut(struct soap *soap, const char *tag, prodml23__MassOut **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MassOut **)soap_malloc(soap, sizeof(prodml22__MassOut *)))) + if (!(a = (prodml23__MassOut **)soap_malloc(soap, sizeof(prodml23__MassOut *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__MassOut *)soap_instantiate_prodml22__MassOut(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__MassOut *)soap_instantiate_prodml23__MassOut(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431674,57 +431859,57 @@ SOAP_FMAC3 prodml22__MassOut ** SOAP_FMAC4 soap_in_PointerToprodml22__MassOut(st } } else - { a = (prodml22__MassOut **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut, sizeof(prodml22__MassOut), 0, gsoap_eml2_3_fbase); + { a = (prodml23__MassOut **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut, sizeof(prodml23__MassOut), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MassOut(struct soap *soap, prodml22__MassOut *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MassOut(struct soap *soap, prodml23__MassOut *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MassOut(soap, tag ? tag : "prodml22:MassOut", -2, a, type)) + if (soap_out_PointerToprodml23__MassOut(soap, tag ? tag : "prodml23:MassOut", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MassOut ** SOAP_FMAC4 soap_get_PointerToprodml22__MassOut(struct soap *soap, prodml22__MassOut **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MassOut ** SOAP_FMAC4 soap_get_PointerToprodml23__MassOut(struct soap *soap, prodml23__MassOut **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MassOut(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MassOut(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MassIn(struct soap *soap, prodml22__MassIn *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MassIn(struct soap *soap, prodml23__MassIn *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MassIn(struct soap *soap, const char *tag, int id, prodml22__MassIn *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MassIn(struct soap *soap, const char *tag, int id, prodml23__MassIn *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn ? type : NULL); } -SOAP_FMAC3 prodml22__MassIn ** SOAP_FMAC4 soap_in_PointerToprodml22__MassIn(struct soap *soap, const char *tag, prodml22__MassIn **a, const char *type) +SOAP_FMAC3 prodml23__MassIn ** SOAP_FMAC4 soap_in_PointerToprodml23__MassIn(struct soap *soap, const char *tag, prodml23__MassIn **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__MassIn **)soap_malloc(soap, sizeof(prodml22__MassIn *)))) + if (!(a = (prodml23__MassIn **)soap_malloc(soap, sizeof(prodml23__MassIn *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__MassIn *)soap_instantiate_prodml22__MassIn(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__MassIn *)soap_instantiate_prodml23__MassIn(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431733,57 +431918,57 @@ SOAP_FMAC3 prodml22__MassIn ** SOAP_FMAC4 soap_in_PointerToprodml22__MassIn(stru } } else - { a = (prodml22__MassIn **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn, sizeof(prodml22__MassIn), 0, gsoap_eml2_3_fbase); + { a = (prodml23__MassIn **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn, sizeof(prodml23__MassIn), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MassIn(struct soap *soap, prodml22__MassIn *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MassIn(struct soap *soap, prodml23__MassIn *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__MassIn(soap, tag ? tag : "prodml22:MassIn", -2, a, type)) + if (soap_out_PointerToprodml23__MassIn(soap, tag ? tag : "prodml23:MassIn", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__MassIn ** SOAP_FMAC4 soap_get_PointerToprodml22__MassIn(struct soap *soap, prodml22__MassIn **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__MassIn ** SOAP_FMAC4 soap_get_PointerToprodml23__MassIn(struct soap *soap, prodml23__MassIn **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__MassIn(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__MassIn(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterfacialTensionTestStep(struct soap *soap, const char *tag, int id, prodml22__InterfacialTensionTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterfacialTensionTestStep(struct soap *soap, const char *tag, int id, prodml23__InterfacialTensionTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__InterfacialTensionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__InterfacialTensionTestStep(struct soap *soap, const char *tag, prodml22__InterfacialTensionTestStep **a, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__InterfacialTensionTestStep(struct soap *soap, const char *tag, prodml23__InterfacialTensionTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__InterfacialTensionTestStep **)soap_malloc(soap, sizeof(prodml22__InterfacialTensionTestStep *)))) + if (!(a = (prodml23__InterfacialTensionTestStep **)soap_malloc(soap, sizeof(prodml23__InterfacialTensionTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__InterfacialTensionTestStep *)soap_instantiate_prodml22__InterfacialTensionTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__InterfacialTensionTestStep *)soap_instantiate_prodml23__InterfacialTensionTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431792,57 +431977,57 @@ SOAP_FMAC3 prodml22__InterfacialTensionTestStep ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__InterfacialTensionTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, sizeof(prodml22__InterfacialTensionTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__InterfacialTensionTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, sizeof(prodml23__InterfacialTensionTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__InterfacialTensionTestStep(soap, tag ? tag : "prodml22:InterfacialTensionTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__InterfacialTensionTestStep(soap, tag ? tag : "prodml23:InterfacialTensionTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__InterfacialTensionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__InterfacialTensionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__InterfacialTensionTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__InterfacialTensionTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractFluidComponent(struct soap *soap, const char *tag, int id, prodml22__AbstractFluidComponent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractFluidComponent(struct soap *soap, const char *tag, int id, prodml23__AbstractFluidComponent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractFluidComponent(struct soap *soap, const char *tag, prodml22__AbstractFluidComponent **a, const char *type) +SOAP_FMAC3 prodml23__AbstractFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractFluidComponent(struct soap *soap, const char *tag, prodml23__AbstractFluidComponent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractFluidComponent **)soap_malloc(soap, sizeof(prodml22__AbstractFluidComponent *)))) + if (!(a = (prodml23__AbstractFluidComponent **)soap_malloc(soap, sizeof(prodml23__AbstractFluidComponent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractFluidComponent *)soap_instantiate_prodml22__AbstractFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractFluidComponent *)soap_instantiate_prodml23__AbstractFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431851,57 +432036,57 @@ SOAP_FMAC3 prodml22__AbstractFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__AbstractFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent, sizeof(prodml22__AbstractFluidComponent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent, sizeof(prodml23__AbstractFluidComponent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractFluidComponent(soap, tag ? tag : "prodml22:AbstractFluidComponent", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractFluidComponent(soap, tag ? tag : "prodml23:AbstractFluidComponent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractFluidComponent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSeparatorTestStep(struct soap *soap, const char *tag, int id, prodml22__FluidSeparatorTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSeparatorTestStep(struct soap *soap, const char *tag, int id, prodml23__FluidSeparatorTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__FluidSeparatorTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSeparatorTestStep(struct soap *soap, const char *tag, prodml22__FluidSeparatorTestStep **a, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSeparatorTestStep(struct soap *soap, const char *tag, prodml23__FluidSeparatorTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidSeparatorTestStep **)soap_malloc(soap, sizeof(prodml22__FluidSeparatorTestStep *)))) + if (!(a = (prodml23__FluidSeparatorTestStep **)soap_malloc(soap, sizeof(prodml23__FluidSeparatorTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidSeparatorTestStep *)soap_instantiate_prodml22__FluidSeparatorTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidSeparatorTestStep *)soap_instantiate_prodml23__FluidSeparatorTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431910,57 +432095,57 @@ SOAP_FMAC3 prodml22__FluidSeparatorTestStep ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__FluidSeparatorTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, sizeof(prodml22__FluidSeparatorTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidSeparatorTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, sizeof(prodml23__FluidSeparatorTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidSeparatorTestStep(soap, tag ? tag : "prodml22:FluidSeparatorTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__FluidSeparatorTestStep(soap, tag ? tag : "prodml23:FluidSeparatorTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidSeparatorTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidSeparatorTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidSeparatorTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidSeparatorTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportLocation(struct soap *soap, const char *tag, int id, prodml22__ReportLocation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportLocation(struct soap *soap, const char *tag, int id, prodml23__ReportLocation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation ? type : NULL); } -SOAP_FMAC3 prodml22__ReportLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportLocation(struct soap *soap, const char *tag, prodml22__ReportLocation **a, const char *type) +SOAP_FMAC3 prodml23__ReportLocation ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportLocation(struct soap *soap, const char *tag, prodml23__ReportLocation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReportLocation **)soap_malloc(soap, sizeof(prodml22__ReportLocation *)))) + if (!(a = (prodml23__ReportLocation **)soap_malloc(soap, sizeof(prodml23__ReportLocation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ReportLocation *)soap_instantiate_prodml22__ReportLocation(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ReportLocation *)soap_instantiate_prodml23__ReportLocation(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -431969,23 +432154,23 @@ SOAP_FMAC3 prodml22__ReportLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__Rep } } else - { a = (prodml22__ReportLocation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, sizeof(prodml22__ReportLocation), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ReportLocation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, sizeof(prodml23__ReportLocation), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReportLocation(soap, tag ? tag : "prodml22:ReportLocation", -2, a, type)) + if (soap_out_PointerToprodml23__ReportLocation(soap, tag ? tag : "prodml23:ReportLocation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportLocation ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportLocation ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReportLocation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReportLocation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -432109,35 +432294,35 @@ SOAP_FMAC3 eml23__EnergyPerMassMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, int id, prodml22__FluidDifferentialLiberationTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, int id, prodml23__FluidDifferentialLiberationTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, prodml22__FluidDifferentialLiberationTestStep **a, const char *type) +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, prodml23__FluidDifferentialLiberationTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidDifferentialLiberationTestStep **)soap_malloc(soap, sizeof(prodml22__FluidDifferentialLiberationTestStep *)))) + if (!(a = (prodml23__FluidDifferentialLiberationTestStep **)soap_malloc(soap, sizeof(prodml23__FluidDifferentialLiberationTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidDifferentialLiberationTestStep *)soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidDifferentialLiberationTestStep *)soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432146,57 +432331,57 @@ SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_in_P } } else - { a = (prodml22__FluidDifferentialLiberationTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, sizeof(prodml22__FluidDifferentialLiberationTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidDifferentialLiberationTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, sizeof(prodml23__FluidDifferentialLiberationTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag ? tag : "prodml22:FluidDifferentialLiberationTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag ? tag : "prodml23:FluidDifferentialLiberationTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SeparatorConditions(struct soap *soap, const char *tag, int id, prodml22__SeparatorConditions *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SeparatorConditions(struct soap *soap, const char *tag, int id, prodml23__SeparatorConditions *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions ? type : NULL); } -SOAP_FMAC3 prodml22__SeparatorConditions ** SOAP_FMAC4 soap_in_PointerToprodml22__SeparatorConditions(struct soap *soap, const char *tag, prodml22__SeparatorConditions **a, const char *type) +SOAP_FMAC3 prodml23__SeparatorConditions ** SOAP_FMAC4 soap_in_PointerToprodml23__SeparatorConditions(struct soap *soap, const char *tag, prodml23__SeparatorConditions **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SeparatorConditions **)soap_malloc(soap, sizeof(prodml22__SeparatorConditions *)))) + if (!(a = (prodml23__SeparatorConditions **)soap_malloc(soap, sizeof(prodml23__SeparatorConditions *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SeparatorConditions *)soap_instantiate_prodml22__SeparatorConditions(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SeparatorConditions *)soap_instantiate_prodml23__SeparatorConditions(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432205,57 +432390,57 @@ SOAP_FMAC3 prodml22__SeparatorConditions ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__SeparatorConditions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions, sizeof(prodml22__SeparatorConditions), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SeparatorConditions **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions, sizeof(prodml23__SeparatorConditions), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SeparatorConditions(soap, tag ? tag : "prodml22:SeparatorConditions", -2, a, type)) + if (soap_out_PointerToprodml23__SeparatorConditions(soap, tag ? tag : "prodml23:SeparatorConditions", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SeparatorConditions ** SOAP_FMAC4 soap_get_PointerToprodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SeparatorConditions ** SOAP_FMAC4 soap_get_PointerToprodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SeparatorConditions(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SeparatorConditions(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCvdTestStep(struct soap *soap, const char *tag, int id, prodml22__FluidCvdTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCvdTestStep(struct soap *soap, const char *tag, int id, prodml23__FluidCvdTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCvdTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCvdTestStep(struct soap *soap, const char *tag, prodml22__FluidCvdTestStep **a, const char *type) +SOAP_FMAC3 prodml23__FluidCvdTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCvdTestStep(struct soap *soap, const char *tag, prodml23__FluidCvdTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCvdTestStep **)soap_malloc(soap, sizeof(prodml22__FluidCvdTestStep *)))) + if (!(a = (prodml23__FluidCvdTestStep **)soap_malloc(soap, sizeof(prodml23__FluidCvdTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCvdTestStep *)soap_instantiate_prodml22__FluidCvdTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCvdTestStep *)soap_instantiate_prodml23__FluidCvdTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432264,57 +432449,57 @@ SOAP_FMAC3 prodml22__FluidCvdTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__F } } else - { a = (prodml22__FluidCvdTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, sizeof(prodml22__FluidCvdTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCvdTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, sizeof(prodml23__FluidCvdTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCvdTestStep(soap, tag ? tag : "prodml22:FluidCvdTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCvdTestStep(soap, tag ? tag : "prodml23:FluidCvdTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCvdTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCvdTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCvdTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCvdTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LiquidComposition(struct soap *soap, const char *tag, int id, prodml22__LiquidComposition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LiquidComposition(struct soap *soap, const char *tag, int id, prodml23__LiquidComposition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition ? type : NULL); } -SOAP_FMAC3 prodml22__LiquidComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__LiquidComposition(struct soap *soap, const char *tag, prodml22__LiquidComposition **a, const char *type) +SOAP_FMAC3 prodml23__LiquidComposition ** SOAP_FMAC4 soap_in_PointerToprodml23__LiquidComposition(struct soap *soap, const char *tag, prodml23__LiquidComposition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__LiquidComposition **)soap_malloc(soap, sizeof(prodml22__LiquidComposition *)))) + if (!(a = (prodml23__LiquidComposition **)soap_malloc(soap, sizeof(prodml23__LiquidComposition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__LiquidComposition *)soap_instantiate_prodml22__LiquidComposition(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__LiquidComposition *)soap_instantiate_prodml23__LiquidComposition(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432323,57 +432508,57 @@ SOAP_FMAC3 prodml22__LiquidComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__LiquidComposition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, sizeof(prodml22__LiquidComposition), 0, gsoap_eml2_3_fbase); + { a = (prodml23__LiquidComposition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, sizeof(prodml23__LiquidComposition), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__LiquidComposition(soap, tag ? tag : "prodml22:LiquidComposition", -2, a, type)) + if (soap_out_PointerToprodml23__LiquidComposition(soap, tag ? tag : "prodml23:LiquidComposition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__LiquidComposition ** SOAP_FMAC4 soap_get_PointerToprodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__LiquidComposition ** SOAP_FMAC4 soap_get_PointerToprodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__LiquidComposition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__LiquidComposition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__VaporComposition(struct soap *soap, const char *tag, int id, prodml22__VaporComposition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__VaporComposition(struct soap *soap, const char *tag, int id, prodml23__VaporComposition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition ? type : NULL); } -SOAP_FMAC3 prodml22__VaporComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__VaporComposition(struct soap *soap, const char *tag, prodml22__VaporComposition **a, const char *type) +SOAP_FMAC3 prodml23__VaporComposition ** SOAP_FMAC4 soap_in_PointerToprodml23__VaporComposition(struct soap *soap, const char *tag, prodml23__VaporComposition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__VaporComposition **)soap_malloc(soap, sizeof(prodml22__VaporComposition *)))) + if (!(a = (prodml23__VaporComposition **)soap_malloc(soap, sizeof(prodml23__VaporComposition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__VaporComposition *)soap_instantiate_prodml22__VaporComposition(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__VaporComposition *)soap_instantiate_prodml23__VaporComposition(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432382,163 +432567,163 @@ SOAP_FMAC3 prodml22__VaporComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__V } } else - { a = (prodml22__VaporComposition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, sizeof(prodml22__VaporComposition), 0, gsoap_eml2_3_fbase); + { a = (prodml23__VaporComposition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, sizeof(prodml23__VaporComposition), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__VaporComposition(soap, tag ? tag : "prodml22:VaporComposition", -2, a, type)) + if (soap_out_PointerToprodml23__VaporComposition(soap, tag ? tag : "prodml23:VaporComposition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__VaporComposition ** SOAP_FMAC4 soap_get_PointerToprodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__VaporComposition ** SOAP_FMAC4 soap_get_PointerToprodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__VaporComposition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__VaporComposition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PhasePresent(struct soap *soap, const char *tag, int id, prodml22__PhasePresent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PhasePresent(struct soap *soap, const char *tag, int id, prodml23__PhasePresent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__PhasePresent(soap, tag, id, *a, type); + return soap_out_prodml23__PhasePresent(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__PhasePresent ** SOAP_FMAC4 soap_in_PointerToprodml22__PhasePresent(struct soap *soap, const char *tag, prodml22__PhasePresent **a, const char *type) +SOAP_FMAC3 prodml23__PhasePresent ** SOAP_FMAC4 soap_in_PointerToprodml23__PhasePresent(struct soap *soap, const char *tag, prodml23__PhasePresent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PhasePresent **)soap_malloc(soap, sizeof(prodml22__PhasePresent *)))) + if (!(a = (prodml23__PhasePresent **)soap_malloc(soap, sizeof(prodml23__PhasePresent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__PhasePresent(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__PhasePresent(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__PhasePresent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent, sizeof(prodml22__PhasePresent), 0, NULL); + { a = (prodml23__PhasePresent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent, sizeof(prodml23__PhasePresent), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PhasePresent(soap, tag ? tag : "prodml22:PhasePresent", -2, a, type)) + if (soap_out_PointerToprodml23__PhasePresent(soap, tag ? tag : "prodml23:PhasePresent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PhasePresent ** SOAP_FMAC4 soap_get_PointerToprodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PhasePresent ** SOAP_FMAC4 soap_get_PointerToprodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PhasePresent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PhasePresent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidAnalysisStepCondition(struct soap *soap, const char *tag, int id, prodml22__FluidAnalysisStepCondition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidAnalysisStepCondition(struct soap *soap, const char *tag, int id, prodml23__FluidAnalysisStepCondition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__FluidAnalysisStepCondition(soap, tag, id, *a, type); + return soap_out_prodml23__FluidAnalysisStepCondition(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidAnalysisStepCondition(struct soap *soap, const char *tag, prodml22__FluidAnalysisStepCondition **a, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidAnalysisStepCondition(struct soap *soap, const char *tag, prodml23__FluidAnalysisStepCondition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidAnalysisStepCondition **)soap_malloc(soap, sizeof(prodml22__FluidAnalysisStepCondition *)))) + if (!(a = (prodml23__FluidAnalysisStepCondition **)soap_malloc(soap, sizeof(prodml23__FluidAnalysisStepCondition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__FluidAnalysisStepCondition(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__FluidAnalysisStepCondition(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__FluidAnalysisStepCondition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition, sizeof(prodml22__FluidAnalysisStepCondition), 0, NULL); + { a = (prodml23__FluidAnalysisStepCondition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition, sizeof(prodml23__FluidAnalysisStepCondition), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidAnalysisStepCondition(soap, tag ? tag : "prodml22:FluidAnalysisStepCondition", -2, a, type)) + if (soap_out_PointerToprodml23__FluidAnalysisStepCondition(soap, tag ? tag : "prodml23:FluidAnalysisStepCondition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidAnalysisStepCondition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidAnalysisStepCondition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OilCompressibility(struct soap *soap, const char *tag, int id, prodml22__OilCompressibility *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OilCompressibility(struct soap *soap, const char *tag, int id, prodml23__OilCompressibility *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility ? type : NULL); } -SOAP_FMAC3 prodml22__OilCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml22__OilCompressibility(struct soap *soap, const char *tag, prodml22__OilCompressibility **a, const char *type) +SOAP_FMAC3 prodml23__OilCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml23__OilCompressibility(struct soap *soap, const char *tag, prodml23__OilCompressibility **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OilCompressibility **)soap_malloc(soap, sizeof(prodml22__OilCompressibility *)))) + if (!(a = (prodml23__OilCompressibility **)soap_malloc(soap, sizeof(prodml23__OilCompressibility *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OilCompressibility *)soap_instantiate_prodml22__OilCompressibility(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OilCompressibility *)soap_instantiate_prodml23__OilCompressibility(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432547,57 +432732,57 @@ SOAP_FMAC3 prodml22__OilCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__OilCompressibility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility, sizeof(prodml22__OilCompressibility), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OilCompressibility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility, sizeof(prodml23__OilCompressibility), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OilCompressibility(soap, tag ? tag : "prodml22:OilCompressibility", -2, a, type)) + if (soap_out_PointerToprodml23__OilCompressibility(soap, tag ? tag : "prodml23:OilCompressibility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OilCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OilCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OilCompressibility(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OilCompressibility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RelativeVolumeRatio(struct soap *soap, const char *tag, int id, prodml22__RelativeVolumeRatio *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RelativeVolumeRatio(struct soap *soap, const char *tag, int id, prodml23__RelativeVolumeRatio *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio ? type : NULL); } -SOAP_FMAC3 prodml22__RelativeVolumeRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__RelativeVolumeRatio(struct soap *soap, const char *tag, prodml22__RelativeVolumeRatio **a, const char *type) +SOAP_FMAC3 prodml23__RelativeVolumeRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__RelativeVolumeRatio(struct soap *soap, const char *tag, prodml23__RelativeVolumeRatio **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__RelativeVolumeRatio **)soap_malloc(soap, sizeof(prodml22__RelativeVolumeRatio *)))) + if (!(a = (prodml23__RelativeVolumeRatio **)soap_malloc(soap, sizeof(prodml23__RelativeVolumeRatio *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__RelativeVolumeRatio *)soap_instantiate_prodml22__RelativeVolumeRatio(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__RelativeVolumeRatio *)soap_instantiate_prodml23__RelativeVolumeRatio(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432606,57 +432791,57 @@ SOAP_FMAC3 prodml22__RelativeVolumeRatio ** SOAP_FMAC4 soap_in_PointerToprodml22 } } else - { a = (prodml22__RelativeVolumeRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio, sizeof(prodml22__RelativeVolumeRatio), 0, gsoap_eml2_3_fbase); + { a = (prodml23__RelativeVolumeRatio **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio, sizeof(prodml23__RelativeVolumeRatio), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__RelativeVolumeRatio(soap, tag ? tag : "prodml22:RelativeVolumeRatio", -2, a, type)) + if (soap_out_PointerToprodml23__RelativeVolumeRatio(soap, tag ? tag : "prodml23:RelativeVolumeRatio", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__RelativeVolumeRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__RelativeVolumeRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__RelativeVolumeRatio(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__RelativeVolumeRatio(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, int id, prodml22__ConstantCompositionExpansionTestStep *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, int id, prodml23__ConstantCompositionExpansionTestStep *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep ? type : NULL); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, prodml22__ConstantCompositionExpansionTestStep **a, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, prodml23__ConstantCompositionExpansionTestStep **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ConstantCompositionExpansionTestStep **)soap_malloc(soap, sizeof(prodml22__ConstantCompositionExpansionTestStep *)))) + if (!(a = (prodml23__ConstantCompositionExpansionTestStep **)soap_malloc(soap, sizeof(prodml23__ConstantCompositionExpansionTestStep *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ConstantCompositionExpansionTestStep *)soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ConstantCompositionExpansionTestStep *)soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432665,57 +432850,57 @@ SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_in_ } } else - { a = (prodml22__ConstantCompositionExpansionTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, sizeof(prodml22__ConstantCompositionExpansionTestStep), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ConstantCompositionExpansionTestStep **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, sizeof(prodml23__ConstantCompositionExpansionTestStep), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag ? tag : "prodml22:ConstantCompositionExpansionTestStep", -2, a, type)) + if (soap_out_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag ? tag : "prodml23:ConstantCompositionExpansionTestStep", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidVolumeReference(struct soap *soap, const char *tag, int id, prodml22__FluidVolumeReference *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidVolumeReference(struct soap *soap, const char *tag, int id, prodml23__FluidVolumeReference *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference ? type : NULL); } -SOAP_FMAC3 prodml22__FluidVolumeReference ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidVolumeReference(struct soap *soap, const char *tag, prodml22__FluidVolumeReference **a, const char *type) +SOAP_FMAC3 prodml23__FluidVolumeReference ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidVolumeReference(struct soap *soap, const char *tag, prodml23__FluidVolumeReference **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidVolumeReference **)soap_malloc(soap, sizeof(prodml22__FluidVolumeReference *)))) + if (!(a = (prodml23__FluidVolumeReference **)soap_malloc(soap, sizeof(prodml23__FluidVolumeReference *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidVolumeReference *)soap_instantiate_prodml22__FluidVolumeReference(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidVolumeReference *)soap_instantiate_prodml23__FluidVolumeReference(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432724,57 +432909,57 @@ SOAP_FMAC3 prodml22__FluidVolumeReference ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__FluidVolumeReference **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, sizeof(prodml22__FluidVolumeReference), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidVolumeReference **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, sizeof(prodml23__FluidVolumeReference), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidVolumeReference(soap, tag ? tag : "prodml22:FluidVolumeReference", -2, a, type)) + if (soap_out_PointerToprodml23__FluidVolumeReference(soap, tag ? tag : "prodml23:FluidVolumeReference", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidVolumeReference ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidVolumeReference ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidVolumeReference(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidVolumeReference(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationPressure(struct soap *soap, const char *tag, int id, prodml22__SaturationPressure *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationPressure(struct soap *soap, const char *tag, int id, prodml23__SaturationPressure *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure ? type : NULL); } -SOAP_FMAC3 prodml22__SaturationPressure ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationPressure(struct soap *soap, const char *tag, prodml22__SaturationPressure **a, const char *type) +SOAP_FMAC3 prodml23__SaturationPressure ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationPressure(struct soap *soap, const char *tag, prodml23__SaturationPressure **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SaturationPressure **)soap_malloc(soap, sizeof(prodml22__SaturationPressure *)))) + if (!(a = (prodml23__SaturationPressure **)soap_malloc(soap, sizeof(prodml23__SaturationPressure *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SaturationPressure *)soap_instantiate_prodml22__SaturationPressure(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SaturationPressure *)soap_instantiate_prodml23__SaturationPressure(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432783,57 +432968,57 @@ SOAP_FMAC3 prodml22__SaturationPressure ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__SaturationPressure **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure, sizeof(prodml22__SaturationPressure), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SaturationPressure **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure, sizeof(prodml23__SaturationPressure), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SaturationPressure(soap, tag ? tag : "prodml22:SaturationPressure", -2, a, type)) + if (soap_out_PointerToprodml23__SaturationPressure(soap, tag ? tag : "prodml23:SaturationPressure", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SaturationPressure ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SaturationPressure ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SaturationPressure(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SaturationPressure(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlashedGas(struct soap *soap, const char *tag, int id, prodml22__FlashedGas *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlashedGas(struct soap *soap, const char *tag, int id, prodml23__FlashedGas *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas ? type : NULL); } -SOAP_FMAC3 prodml22__FlashedGas ** SOAP_FMAC4 soap_in_PointerToprodml22__FlashedGas(struct soap *soap, const char *tag, prodml22__FlashedGas **a, const char *type) +SOAP_FMAC3 prodml23__FlashedGas ** SOAP_FMAC4 soap_in_PointerToprodml23__FlashedGas(struct soap *soap, const char *tag, prodml23__FlashedGas **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FlashedGas **)soap_malloc(soap, sizeof(prodml22__FlashedGas *)))) + if (!(a = (prodml23__FlashedGas **)soap_malloc(soap, sizeof(prodml23__FlashedGas *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FlashedGas *)soap_instantiate_prodml22__FlashedGas(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FlashedGas *)soap_instantiate_prodml23__FlashedGas(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432842,57 +433027,57 @@ SOAP_FMAC3 prodml22__FlashedGas ** SOAP_FMAC4 soap_in_PointerToprodml22__Flashed } } else - { a = (prodml22__FlashedGas **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas, sizeof(prodml22__FlashedGas), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FlashedGas **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas, sizeof(prodml23__FlashedGas), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FlashedGas(soap, tag ? tag : "prodml22:FlashedGas", -2, a, type)) + if (soap_out_PointerToprodml23__FlashedGas(soap, tag ? tag : "prodml23:FlashedGas", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlashedGas ** SOAP_FMAC4 soap_get_PointerToprodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlashedGas ** SOAP_FMAC4 soap_get_PointerToprodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FlashedGas(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FlashedGas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OverallComposition(struct soap *soap, const char *tag, int id, prodml22__OverallComposition *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OverallComposition(struct soap *soap, const char *tag, int id, prodml23__OverallComposition *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition ? type : NULL); } -SOAP_FMAC3 prodml22__OverallComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__OverallComposition(struct soap *soap, const char *tag, prodml22__OverallComposition **a, const char *type) +SOAP_FMAC3 prodml23__OverallComposition ** SOAP_FMAC4 soap_in_PointerToprodml23__OverallComposition(struct soap *soap, const char *tag, prodml23__OverallComposition **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OverallComposition **)soap_malloc(soap, sizeof(prodml22__OverallComposition *)))) + if (!(a = (prodml23__OverallComposition **)soap_malloc(soap, sizeof(prodml23__OverallComposition *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OverallComposition *)soap_instantiate_prodml22__OverallComposition(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OverallComposition *)soap_instantiate_prodml23__OverallComposition(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432901,57 +433086,57 @@ SOAP_FMAC3 prodml22__OverallComposition ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__OverallComposition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition, sizeof(prodml22__OverallComposition), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OverallComposition **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition, sizeof(prodml23__OverallComposition), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OverallComposition(soap, tag ? tag : "prodml22:OverallComposition", -2, a, type)) + if (soap_out_PointerToprodml23__OverallComposition(soap, tag ? tag : "prodml23:OverallComposition", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OverallComposition ** SOAP_FMAC4 soap_get_PointerToprodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OverallComposition ** SOAP_FMAC4 soap_get_PointerToprodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OverallComposition(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OverallComposition(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlashedLiquid(struct soap *soap, const char *tag, int id, prodml22__FlashedLiquid *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlashedLiquid(struct soap *soap, const char *tag, int id, prodml23__FlashedLiquid *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid ? type : NULL); } -SOAP_FMAC3 prodml22__FlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml22__FlashedLiquid(struct soap *soap, const char *tag, prodml22__FlashedLiquid **a, const char *type) +SOAP_FMAC3 prodml23__FlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml23__FlashedLiquid(struct soap *soap, const char *tag, prodml23__FlashedLiquid **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FlashedLiquid **)soap_malloc(soap, sizeof(prodml22__FlashedLiquid *)))) + if (!(a = (prodml23__FlashedLiquid **)soap_malloc(soap, sizeof(prodml23__FlashedLiquid *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FlashedLiquid *)soap_instantiate_prodml22__FlashedLiquid(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FlashedLiquid *)soap_instantiate_prodml23__FlashedLiquid(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -432960,23 +433145,23 @@ SOAP_FMAC3 prodml22__FlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml22__Flas } } else - { a = (prodml22__FlashedLiquid **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid, sizeof(prodml22__FlashedLiquid), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FlashedLiquid **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid, sizeof(prodml23__FlashedLiquid), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FlashedLiquid(soap, tag ? tag : "prodml22:FlashedLiquid", -2, a, type)) + if (soap_out_PointerToprodml23__FlashedLiquid(soap, tag ? tag : "prodml23:FlashedLiquid", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FlashedLiquid(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FlashedLiquid(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -433041,35 +433226,35 @@ SOAP_FMAC3 eml23__MolecularWeightMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowUnit(struct soap *soap, const char *tag, int id, prodml22__ProductFlowUnit *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowUnit(struct soap *soap, const char *tag, int id, prodml23__ProductFlowUnit *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowUnit(struct soap *soap, const char *tag, prodml22__ProductFlowUnit **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowUnit ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowUnit(struct soap *soap, const char *tag, prodml23__ProductFlowUnit **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowUnit **)soap_malloc(soap, sizeof(prodml22__ProductFlowUnit *)))) + if (!(a = (prodml23__ProductFlowUnit **)soap_malloc(soap, sizeof(prodml23__ProductFlowUnit *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowUnit *)soap_instantiate_prodml22__ProductFlowUnit(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowUnit *)soap_instantiate_prodml23__ProductFlowUnit(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433078,57 +433263,57 @@ SOAP_FMAC3 prodml22__ProductFlowUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__Pr } } else - { a = (prodml22__ProductFlowUnit **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, sizeof(prodml22__ProductFlowUnit), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowUnit **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, sizeof(prodml23__ProductFlowUnit), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowUnit(soap, tag ? tag : "prodml22:ProductFlowUnit", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowUnit(soap, tag ? tag : "prodml23:ProductFlowUnit", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowUnit ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowUnit ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowUnit(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowUnit(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowChangeLog(struct soap *soap, const char *tag, int id, prodml22__ProductFlowChangeLog *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowChangeLog(struct soap *soap, const char *tag, int id, prodml23__ProductFlowChangeLog *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowChangeLog ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowChangeLog(struct soap *soap, const char *tag, prodml22__ProductFlowChangeLog **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowChangeLog ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowChangeLog(struct soap *soap, const char *tag, prodml23__ProductFlowChangeLog **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowChangeLog **)soap_malloc(soap, sizeof(prodml22__ProductFlowChangeLog *)))) + if (!(a = (prodml23__ProductFlowChangeLog **)soap_malloc(soap, sizeof(prodml23__ProductFlowChangeLog *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowChangeLog *)soap_instantiate_prodml22__ProductFlowChangeLog(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowChangeLog *)soap_instantiate_prodml23__ProductFlowChangeLog(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433137,57 +433322,57 @@ SOAP_FMAC3 prodml22__ProductFlowChangeLog ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__ProductFlowChangeLog **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, sizeof(prodml22__ProductFlowChangeLog), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowChangeLog **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, sizeof(prodml23__ProductFlowChangeLog), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowChangeLog(soap, tag ? tag : "prodml22:ProductFlowChangeLog", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowChangeLog(soap, tag ? tag : "prodml23:ProductFlowChangeLog", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowChangeLog ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowChangeLog ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowChangeLog(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowChangeLog(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, const char *tag, int id, prodml22__ProductFlowNetworkPlan *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, const char *tag, int id, prodml23__ProductFlowNetworkPlan *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, const char *tag, prodml22__ProductFlowNetworkPlan **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, const char *tag, prodml23__ProductFlowNetworkPlan **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowNetworkPlan **)soap_malloc(soap, sizeof(prodml22__ProductFlowNetworkPlan *)))) + if (!(a = (prodml23__ProductFlowNetworkPlan **)soap_malloc(soap, sizeof(prodml23__ProductFlowNetworkPlan *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowNetworkPlan *)soap_instantiate_prodml22__ProductFlowNetworkPlan(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowNetworkPlan *)soap_instantiate_prodml23__ProductFlowNetworkPlan(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433196,57 +433381,57 @@ SOAP_FMAC3 prodml22__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__ProductFlowNetworkPlan **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, sizeof(prodml22__ProductFlowNetworkPlan), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowNetworkPlan **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, sizeof(prodml23__ProductFlowNetworkPlan), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowNetworkPlan(soap, tag ? tag : "prodml22:ProductFlowNetworkPlan", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowNetworkPlan(soap, tag ? tag : "prodml23:ProductFlowNetworkPlan", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowNetworkPlan(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowNetworkPlan(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowExternalPort(struct soap *soap, const char *tag, int id, prodml22__ProductFlowExternalPort *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowExternalPort(struct soap *soap, const char *tag, int id, prodml23__ProductFlowExternalPort *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort ? type : NULL); } -SOAP_FMAC3 prodml22__ProductFlowExternalPort ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowExternalPort(struct soap *soap, const char *tag, prodml22__ProductFlowExternalPort **a, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalPort ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowExternalPort(struct soap *soap, const char *tag, prodml23__ProductFlowExternalPort **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductFlowExternalPort **)soap_malloc(soap, sizeof(prodml22__ProductFlowExternalPort *)))) + if (!(a = (prodml23__ProductFlowExternalPort **)soap_malloc(soap, sizeof(prodml23__ProductFlowExternalPort *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductFlowExternalPort *)soap_instantiate_prodml22__ProductFlowExternalPort(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductFlowExternalPort *)soap_instantiate_prodml23__ProductFlowExternalPort(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433255,57 +433440,57 @@ SOAP_FMAC3 prodml22__ProductFlowExternalPort ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__ProductFlowExternalPort **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, sizeof(prodml22__ProductFlowExternalPort), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductFlowExternalPort **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, sizeof(prodml23__ProductFlowExternalPort), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductFlowExternalPort(soap, tag ? tag : "prodml22:ProductFlowExternalPort", -2, a, type)) + if (soap_out_PointerToprodml23__ProductFlowExternalPort(soap, tag ? tag : "prodml23:ProductFlowExternalPort", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductFlowExternalPort ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductFlowExternalPort ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductFlowExternalPort(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductFlowExternalPort(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NorthSeaOffshore(struct soap *soap, const char *tag, int id, prodml22__NorthSeaOffshore *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NorthSeaOffshore(struct soap *soap, const char *tag, int id, prodml23__NorthSeaOffshore *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore ? type : NULL); } -SOAP_FMAC3 prodml22__NorthSeaOffshore ** SOAP_FMAC4 soap_in_PointerToprodml22__NorthSeaOffshore(struct soap *soap, const char *tag, prodml22__NorthSeaOffshore **a, const char *type) +SOAP_FMAC3 prodml23__NorthSeaOffshore ** SOAP_FMAC4 soap_in_PointerToprodml23__NorthSeaOffshore(struct soap *soap, const char *tag, prodml23__NorthSeaOffshore **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__NorthSeaOffshore **)soap_malloc(soap, sizeof(prodml22__NorthSeaOffshore *)))) + if (!(a = (prodml23__NorthSeaOffshore **)soap_malloc(soap, sizeof(prodml23__NorthSeaOffshore *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__NorthSeaOffshore *)soap_instantiate_prodml22__NorthSeaOffshore(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__NorthSeaOffshore *)soap_instantiate_prodml23__NorthSeaOffshore(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433314,57 +433499,57 @@ SOAP_FMAC3 prodml22__NorthSeaOffshore ** SOAP_FMAC4 soap_in_PointerToprodml22__N } } else - { a = (prodml22__NorthSeaOffshore **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore, sizeof(prodml22__NorthSeaOffshore), 0, gsoap_eml2_3_fbase); + { a = (prodml23__NorthSeaOffshore **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore, sizeof(prodml23__NorthSeaOffshore), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__NorthSeaOffshore(soap, tag ? tag : "prodml22:NorthSeaOffshore", -2, a, type)) + if (soap_out_PointerToprodml23__NorthSeaOffshore(soap, tag ? tag : "prodml23:NorthSeaOffshore", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__NorthSeaOffshore ** SOAP_FMAC4 soap_get_PointerToprodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NorthSeaOffshore ** SOAP_FMAC4 soap_get_PointerToprodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__NorthSeaOffshore(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__NorthSeaOffshore(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidComponentFraction(struct soap *soap, const char *tag, int id, prodml22__FluidComponentFraction *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidComponentFraction(struct soap *soap, const char *tag, int id, prodml23__FluidComponentFraction *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction ? type : NULL); } -SOAP_FMAC3 prodml22__FluidComponentFraction ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidComponentFraction(struct soap *soap, const char *tag, prodml22__FluidComponentFraction **a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentFraction ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidComponentFraction(struct soap *soap, const char *tag, prodml23__FluidComponentFraction **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidComponentFraction **)soap_malloc(soap, sizeof(prodml22__FluidComponentFraction *)))) + if (!(a = (prodml23__FluidComponentFraction **)soap_malloc(soap, sizeof(prodml23__FluidComponentFraction *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidComponentFraction *)soap_instantiate_prodml22__FluidComponentFraction(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidComponentFraction *)soap_instantiate_prodml23__FluidComponentFraction(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433373,57 +433558,57 @@ SOAP_FMAC3 prodml22__FluidComponentFraction ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__FluidComponentFraction **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, sizeof(prodml22__FluidComponentFraction), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidComponentFraction **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, sizeof(prodml23__FluidComponentFraction), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidComponentFraction(soap, tag ? tag : "prodml22:FluidComponentFraction", -2, a, type)) + if (soap_out_PointerToprodml23__FluidComponentFraction(soap, tag ? tag : "prodml23:FluidComponentFraction", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidComponentFraction ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentFraction ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidComponentFraction(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidComponentFraction(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OffshoreLocation(struct soap *soap, const char *tag, int id, prodml22__OffshoreLocation *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OffshoreLocation(struct soap *soap, const char *tag, int id, prodml23__OffshoreLocation *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation ? type : NULL); } -SOAP_FMAC3 prodml22__OffshoreLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__OffshoreLocation(struct soap *soap, const char *tag, prodml22__OffshoreLocation **a, const char *type) +SOAP_FMAC3 prodml23__OffshoreLocation ** SOAP_FMAC4 soap_in_PointerToprodml23__OffshoreLocation(struct soap *soap, const char *tag, prodml23__OffshoreLocation **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__OffshoreLocation **)soap_malloc(soap, sizeof(prodml22__OffshoreLocation *)))) + if (!(a = (prodml23__OffshoreLocation **)soap_malloc(soap, sizeof(prodml23__OffshoreLocation *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__OffshoreLocation *)soap_instantiate_prodml22__OffshoreLocation(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__OffshoreLocation *)soap_instantiate_prodml23__OffshoreLocation(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433432,23 +433617,23 @@ SOAP_FMAC3 prodml22__OffshoreLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__O } } else - { a = (prodml22__OffshoreLocation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation, sizeof(prodml22__OffshoreLocation), 0, gsoap_eml2_3_fbase); + { a = (prodml23__OffshoreLocation **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation, sizeof(prodml23__OffshoreLocation), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__OffshoreLocation(soap, tag ? tag : "prodml22:OffshoreLocation", -2, a, type)) + if (soap_out_PointerToprodml23__OffshoreLocation(soap, tag ? tag : "prodml23:OffshoreLocation", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__OffshoreLocation ** SOAP_FMAC4 soap_get_PointerToprodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__OffshoreLocation ** SOAP_FMAC4 soap_get_PointerToprodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__OffshoreLocation(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__OffshoreLocation(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -433513,35 +433698,35 @@ SOAP_FMAC3 eml23__VolumePerVolumeMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml2 return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SulfurFluidComponent(struct soap *soap, const char *tag, int id, prodml22__SulfurFluidComponent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SulfurFluidComponent(struct soap *soap, const char *tag, int id, prodml23__SulfurFluidComponent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent ? type : NULL); } -SOAP_FMAC3 prodml22__SulfurFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__SulfurFluidComponent(struct soap *soap, const char *tag, prodml22__SulfurFluidComponent **a, const char *type) +SOAP_FMAC3 prodml23__SulfurFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__SulfurFluidComponent(struct soap *soap, const char *tag, prodml23__SulfurFluidComponent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__SulfurFluidComponent **)soap_malloc(soap, sizeof(prodml22__SulfurFluidComponent *)))) + if (!(a = (prodml23__SulfurFluidComponent **)soap_malloc(soap, sizeof(prodml23__SulfurFluidComponent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__SulfurFluidComponent *)soap_instantiate_prodml22__SulfurFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__SulfurFluidComponent *)soap_instantiate_prodml23__SulfurFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433550,57 +433735,57 @@ SOAP_FMAC3 prodml22__SulfurFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__SulfurFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, sizeof(prodml22__SulfurFluidComponent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__SulfurFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, sizeof(prodml23__SulfurFluidComponent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__SulfurFluidComponent(soap, tag ? tag : "prodml22:SulfurFluidComponent", -2, a, type)) + if (soap_out_PointerToprodml23__SulfurFluidComponent(soap, tag ? tag : "prodml23:SulfurFluidComponent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__SulfurFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__SulfurFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__SulfurFluidComponent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__SulfurFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PlusFluidComponent(struct soap *soap, const char *tag, int id, prodml22__PlusFluidComponent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PlusFluidComponent(struct soap *soap, const char *tag, int id, prodml23__PlusFluidComponent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent ? type : NULL); } -SOAP_FMAC3 prodml22__PlusFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__PlusFluidComponent(struct soap *soap, const char *tag, prodml22__PlusFluidComponent **a, const char *type) +SOAP_FMAC3 prodml23__PlusFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__PlusFluidComponent(struct soap *soap, const char *tag, prodml23__PlusFluidComponent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PlusFluidComponent **)soap_malloc(soap, sizeof(prodml22__PlusFluidComponent *)))) + if (!(a = (prodml23__PlusFluidComponent **)soap_malloc(soap, sizeof(prodml23__PlusFluidComponent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PlusFluidComponent *)soap_instantiate_prodml22__PlusFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PlusFluidComponent *)soap_instantiate_prodml23__PlusFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433609,57 +433794,57 @@ SOAP_FMAC3 prodml22__PlusFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__PlusFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, sizeof(prodml22__PlusFluidComponent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PlusFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, sizeof(prodml23__PlusFluidComponent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PlusFluidComponent(soap, tag ? tag : "prodml22:PlusFluidComponent", -2, a, type)) + if (soap_out_PointerToprodml23__PlusFluidComponent(soap, tag ? tag : "prodml23:PlusFluidComponent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PlusFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PlusFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PlusFluidComponent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PlusFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PseudoFluidComponent(struct soap *soap, const char *tag, int id, prodml22__PseudoFluidComponent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PseudoFluidComponent(struct soap *soap, const char *tag, int id, prodml23__PseudoFluidComponent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent ? type : NULL); } -SOAP_FMAC3 prodml22__PseudoFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__PseudoFluidComponent(struct soap *soap, const char *tag, prodml22__PseudoFluidComponent **a, const char *type) +SOAP_FMAC3 prodml23__PseudoFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__PseudoFluidComponent(struct soap *soap, const char *tag, prodml23__PseudoFluidComponent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PseudoFluidComponent **)soap_malloc(soap, sizeof(prodml22__PseudoFluidComponent *)))) + if (!(a = (prodml23__PseudoFluidComponent **)soap_malloc(soap, sizeof(prodml23__PseudoFluidComponent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PseudoFluidComponent *)soap_instantiate_prodml22__PseudoFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PseudoFluidComponent *)soap_instantiate_prodml23__PseudoFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433668,57 +433853,57 @@ SOAP_FMAC3 prodml22__PseudoFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__PseudoFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, sizeof(prodml22__PseudoFluidComponent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PseudoFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, sizeof(prodml23__PseudoFluidComponent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PseudoFluidComponent(soap, tag ? tag : "prodml22:PseudoFluidComponent", -2, a, type)) + if (soap_out_PointerToprodml23__PseudoFluidComponent(soap, tag ? tag : "prodml23:PseudoFluidComponent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PseudoFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PseudoFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PseudoFluidComponent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PseudoFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PureFluidComponent(struct soap *soap, const char *tag, int id, prodml22__PureFluidComponent *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PureFluidComponent(struct soap *soap, const char *tag, int id, prodml23__PureFluidComponent *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent ? type : NULL); } -SOAP_FMAC3 prodml22__PureFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__PureFluidComponent(struct soap *soap, const char *tag, prodml22__PureFluidComponent **a, const char *type) +SOAP_FMAC3 prodml23__PureFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__PureFluidComponent(struct soap *soap, const char *tag, prodml23__PureFluidComponent **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PureFluidComponent **)soap_malloc(soap, sizeof(prodml22__PureFluidComponent *)))) + if (!(a = (prodml23__PureFluidComponent **)soap_malloc(soap, sizeof(prodml23__PureFluidComponent *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PureFluidComponent *)soap_instantiate_prodml22__PureFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PureFluidComponent *)soap_instantiate_prodml23__PureFluidComponent(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433727,57 +433912,57 @@ SOAP_FMAC3 prodml22__PureFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22_ } } else - { a = (prodml22__PureFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, sizeof(prodml22__PureFluidComponent), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PureFluidComponent **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, sizeof(prodml23__PureFluidComponent), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PureFluidComponent(soap, tag ? tag : "prodml22:PureFluidComponent", -2, a, type)) + if (soap_out_PointerToprodml23__PureFluidComponent(soap, tag ? tag : "prodml23:PureFluidComponent", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PureFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PureFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PureFluidComponent(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PureFluidComponent(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FormationWater(struct soap *soap, prodml22__FormationWater *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FormationWater(struct soap *soap, prodml23__FormationWater *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FormationWater(struct soap *soap, const char *tag, int id, prodml22__FormationWater *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FormationWater(struct soap *soap, const char *tag, int id, prodml23__FormationWater *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater ? type : NULL); } -SOAP_FMAC3 prodml22__FormationWater ** SOAP_FMAC4 soap_in_PointerToprodml22__FormationWater(struct soap *soap, const char *tag, prodml22__FormationWater **a, const char *type) +SOAP_FMAC3 prodml23__FormationWater ** SOAP_FMAC4 soap_in_PointerToprodml23__FormationWater(struct soap *soap, const char *tag, prodml23__FormationWater **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FormationWater **)soap_malloc(soap, sizeof(prodml22__FormationWater *)))) + if (!(a = (prodml23__FormationWater **)soap_malloc(soap, sizeof(prodml23__FormationWater *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FormationWater *)soap_instantiate_prodml22__FormationWater(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FormationWater *)soap_instantiate_prodml23__FormationWater(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433786,57 +433971,57 @@ SOAP_FMAC3 prodml22__FormationWater ** SOAP_FMAC4 soap_in_PointerToprodml22__For } } else - { a = (prodml22__FormationWater **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, sizeof(prodml22__FormationWater), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FormationWater **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, sizeof(prodml23__FormationWater), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FormationWater(struct soap *soap, prodml22__FormationWater *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FormationWater(struct soap *soap, prodml23__FormationWater *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FormationWater(soap, tag ? tag : "prodml22:FormationWater", -2, a, type)) + if (soap_out_PointerToprodml23__FormationWater(soap, tag ? tag : "prodml23:FormationWater", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FormationWater ** SOAP_FMAC4 soap_get_PointerToprodml22__FormationWater(struct soap *soap, prodml22__FormationWater **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FormationWater ** SOAP_FMAC4 soap_get_PointerToprodml23__FormationWater(struct soap *soap, prodml23__FormationWater **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FormationWater(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FormationWater(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NaturalGas(struct soap *soap, const char *tag, int id, prodml22__NaturalGas *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NaturalGas(struct soap *soap, const char *tag, int id, prodml23__NaturalGas *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas ? type : NULL); } -SOAP_FMAC3 prodml22__NaturalGas ** SOAP_FMAC4 soap_in_PointerToprodml22__NaturalGas(struct soap *soap, const char *tag, prodml22__NaturalGas **a, const char *type) +SOAP_FMAC3 prodml23__NaturalGas ** SOAP_FMAC4 soap_in_PointerToprodml23__NaturalGas(struct soap *soap, const char *tag, prodml23__NaturalGas **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__NaturalGas **)soap_malloc(soap, sizeof(prodml22__NaturalGas *)))) + if (!(a = (prodml23__NaturalGas **)soap_malloc(soap, sizeof(prodml23__NaturalGas *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__NaturalGas *)soap_instantiate_prodml22__NaturalGas(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__NaturalGas *)soap_instantiate_prodml23__NaturalGas(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433845,57 +434030,57 @@ SOAP_FMAC3 prodml22__NaturalGas ** SOAP_FMAC4 soap_in_PointerToprodml22__Natural } } else - { a = (prodml22__NaturalGas **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, sizeof(prodml22__NaturalGas), 0, gsoap_eml2_3_fbase); + { a = (prodml23__NaturalGas **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, sizeof(prodml23__NaturalGas), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__NaturalGas(soap, tag ? tag : "prodml22:NaturalGas", -2, a, type)) + if (soap_out_PointerToprodml23__NaturalGas(soap, tag ? tag : "prodml23:NaturalGas", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__NaturalGas ** SOAP_FMAC4 soap_get_PointerToprodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__NaturalGas ** SOAP_FMAC4 soap_get_PointerToprodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__NaturalGas(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__NaturalGas(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__StockTankOil(struct soap *soap, const char *tag, int id, prodml22__StockTankOil *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__StockTankOil(struct soap *soap, const char *tag, int id, prodml23__StockTankOil *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil ? type : NULL); } -SOAP_FMAC3 prodml22__StockTankOil ** SOAP_FMAC4 soap_in_PointerToprodml22__StockTankOil(struct soap *soap, const char *tag, prodml22__StockTankOil **a, const char *type) +SOAP_FMAC3 prodml23__StockTankOil ** SOAP_FMAC4 soap_in_PointerToprodml23__StockTankOil(struct soap *soap, const char *tag, prodml23__StockTankOil **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__StockTankOil **)soap_malloc(soap, sizeof(prodml22__StockTankOil *)))) + if (!(a = (prodml23__StockTankOil **)soap_malloc(soap, sizeof(prodml23__StockTankOil *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__StockTankOil *)soap_instantiate_prodml22__StockTankOil(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__StockTankOil *)soap_instantiate_prodml23__StockTankOil(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -433904,110 +434089,110 @@ SOAP_FMAC3 prodml22__StockTankOil ** SOAP_FMAC4 soap_in_PointerToprodml22__Stock } } else - { a = (prodml22__StockTankOil **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, sizeof(prodml22__StockTankOil), 0, gsoap_eml2_3_fbase); + { a = (prodml23__StockTankOil **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, sizeof(prodml23__StockTankOil), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__StockTankOil(soap, tag ? tag : "prodml22:StockTankOil", -2, a, type)) + if (soap_out_PointerToprodml23__StockTankOil(soap, tag ? tag : "prodml23:StockTankOil", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__StockTankOil ** SOAP_FMAC4 soap_get_PointerToprodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__StockTankOil ** SOAP_FMAC4 soap_get_PointerToprodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__StockTankOil(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__StockTankOil(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingFacility(struct soap *soap, const char *tag, int id, prodml22__ReportingFacility *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingFacility(struct soap *soap, const char *tag, int id, prodml23__ReportingFacility *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ReportingFacility(soap, tag, id, *a, type); + return soap_out_prodml23__ReportingFacility(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ReportingFacility ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingFacility(struct soap *soap, const char *tag, prodml22__ReportingFacility **a, const char *type) +SOAP_FMAC3 prodml23__ReportingFacility ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingFacility(struct soap *soap, const char *tag, prodml23__ReportingFacility **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReportingFacility **)soap_malloc(soap, sizeof(prodml22__ReportingFacility *)))) + if (!(a = (prodml23__ReportingFacility **)soap_malloc(soap, sizeof(prodml23__ReportingFacility *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ReportingFacility(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ReportingFacility(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ReportingFacility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility, sizeof(prodml22__ReportingFacility), 0, NULL); + { a = (prodml23__ReportingFacility **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility, sizeof(prodml23__ReportingFacility), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReportingFacility(soap, tag ? tag : "prodml22:ReportingFacility", -2, a, type)) + if (soap_out_PointerToprodml23__ReportingFacility(soap, tag ? tag : "prodml23:ReportingFacility", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReportingFacility ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReportingFacility ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReportingFacility(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReportingFacility(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__GeographicContext(struct soap *soap, const char *tag, int id, prodml22__GeographicContext *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__GeographicContext(struct soap *soap, const char *tag, int id, prodml23__GeographicContext *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext ? type : NULL); } -SOAP_FMAC3 prodml22__GeographicContext ** SOAP_FMAC4 soap_in_PointerToprodml22__GeographicContext(struct soap *soap, const char *tag, prodml22__GeographicContext **a, const char *type) +SOAP_FMAC3 prodml23__GeographicContext ** SOAP_FMAC4 soap_in_PointerToprodml23__GeographicContext(struct soap *soap, const char *tag, prodml23__GeographicContext **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__GeographicContext **)soap_malloc(soap, sizeof(prodml22__GeographicContext *)))) + if (!(a = (prodml23__GeographicContext **)soap_malloc(soap, sizeof(prodml23__GeographicContext *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__GeographicContext *)soap_instantiate_prodml22__GeographicContext(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__GeographicContext *)soap_instantiate_prodml23__GeographicContext(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434016,57 +434201,57 @@ SOAP_FMAC3 prodml22__GeographicContext ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__GeographicContext **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext, sizeof(prodml22__GeographicContext), 0, gsoap_eml2_3_fbase); + { a = (prodml23__GeographicContext **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext, sizeof(prodml23__GeographicContext), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__GeographicContext(soap, tag ? tag : "prodml22:GeographicContext", -2, a, type)) + if (soap_out_PointerToprodml23__GeographicContext(soap, tag ? tag : "prodml23:GeographicContext", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__GeographicContext ** SOAP_FMAC4 soap_get_PointerToprodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__GeographicContext ** SOAP_FMAC4 soap_get_PointerToprodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__GeographicContext(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__GeographicContext(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, int id, prodml22__ProductVolumeBusinessUnit *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, int id, prodml23__ProductVolumeBusinessUnit *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit ? type : NULL); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, prodml22__ProductVolumeBusinessUnit **a, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, prodml23__ProductVolumeBusinessUnit **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ProductVolumeBusinessUnit **)soap_malloc(soap, sizeof(prodml22__ProductVolumeBusinessUnit *)))) + if (!(a = (prodml23__ProductVolumeBusinessUnit **)soap_malloc(soap, sizeof(prodml23__ProductVolumeBusinessUnit *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ProductVolumeBusinessUnit *)soap_instantiate_prodml22__ProductVolumeBusinessUnit(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ProductVolumeBusinessUnit *)soap_instantiate_prodml23__ProductVolumeBusinessUnit(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434075,57 +434260,57 @@ SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_in_PointerTopr } } else - { a = (prodml22__ProductVolumeBusinessUnit **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, sizeof(prodml22__ProductVolumeBusinessUnit), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ProductVolumeBusinessUnit **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, sizeof(prodml23__ProductVolumeBusinessUnit), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag ? tag : "prodml22:ProductVolumeBusinessUnit", -2, a, type)) + if (soap_out_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag ? tag : "prodml23:ProductVolumeBusinessUnit", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FacilityIdentifierStruct(struct soap *soap, const char *tag, int id, prodml22__FacilityIdentifierStruct *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FacilityIdentifierStruct(struct soap *soap, const char *tag, int id, prodml23__FacilityIdentifierStruct *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct ? type : NULL); } -SOAP_FMAC3 prodml22__FacilityIdentifierStruct ** SOAP_FMAC4 soap_in_PointerToprodml22__FacilityIdentifierStruct(struct soap *soap, const char *tag, prodml22__FacilityIdentifierStruct **a, const char *type) +SOAP_FMAC3 prodml23__FacilityIdentifierStruct ** SOAP_FMAC4 soap_in_PointerToprodml23__FacilityIdentifierStruct(struct soap *soap, const char *tag, prodml23__FacilityIdentifierStruct **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FacilityIdentifierStruct **)soap_malloc(soap, sizeof(prodml22__FacilityIdentifierStruct *)))) + if (!(a = (prodml23__FacilityIdentifierStruct **)soap_malloc(soap, sizeof(prodml23__FacilityIdentifierStruct *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FacilityIdentifierStruct *)soap_instantiate_prodml22__FacilityIdentifierStruct(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FacilityIdentifierStruct *)soap_instantiate_prodml23__FacilityIdentifierStruct(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434134,76 +434319,76 @@ SOAP_FMAC3 prodml22__FacilityIdentifierStruct ** SOAP_FMAC4 soap_in_PointerTopro } } else - { a = (prodml22__FacilityIdentifierStruct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, sizeof(prodml22__FacilityIdentifierStruct), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FacilityIdentifierStruct **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, sizeof(prodml23__FacilityIdentifierStruct), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, tag ? tag : "prodml22:FacilityIdentifierStruct", -2, a, type)) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, tag ? tag : "prodml23:FacilityIdentifierStruct", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FacilityIdentifierStruct ** SOAP_FMAC4 soap_get_PointerToprodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FacilityIdentifierStruct ** SOAP_FMAC4 soap_get_PointerToprodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointQualifier(struct soap *soap, const char *tag, int id, prodml22__EndpointQualifier *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointQualifier(struct soap *soap, const char *tag, int id, prodml23__EndpointQualifier *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__EndpointQualifier(soap, tag, id, *a, type); + return soap_out_prodml23__EndpointQualifier(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__EndpointQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointQualifier(struct soap *soap, const char *tag, prodml22__EndpointQualifier **a, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointQualifier(struct soap *soap, const char *tag, prodml23__EndpointQualifier **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__EndpointQualifier **)soap_malloc(soap, sizeof(prodml22__EndpointQualifier *)))) + if (!(a = (prodml23__EndpointQualifier **)soap_malloc(soap, sizeof(prodml23__EndpointQualifier *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__EndpointQualifier(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__EndpointQualifier(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__EndpointQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier, sizeof(prodml22__EndpointQualifier), 0, NULL); + { a = (prodml23__EndpointQualifier **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier, sizeof(prodml23__EndpointQualifier), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__EndpointQualifier(soap, tag ? tag : "prodml22:EndpointQualifier", -2, a, type)) + if (soap_out_PointerToprodml23__EndpointQualifier(soap, tag ? tag : "prodml23:EndpointQualifier", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__EndpointQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__EndpointQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__EndpointQualifier(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__EndpointQualifier(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -434327,54 +434512,54 @@ SOAP_FMAC3 eml23__VolumeValue ** SOAP_FMAC4 soap_get_PointerToeml23__VolumeValue return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, int id, prodml22__DetectableLimitRelativeStateKind *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, int id, prodml23__DetectableLimitRelativeStateKind *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__DetectableLimitRelativeStateKind(soap, tag, id, *a, type); + return soap_out_prodml23__DetectableLimitRelativeStateKind(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, prodml22__DetectableLimitRelativeStateKind **a, const char *type) +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *tag, prodml23__DetectableLimitRelativeStateKind **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__DetectableLimitRelativeStateKind **)soap_malloc(soap, sizeof(prodml22__DetectableLimitRelativeStateKind *)))) + if (!(a = (prodml23__DetectableLimitRelativeStateKind **)soap_malloc(soap, sizeof(prodml23__DetectableLimitRelativeStateKind *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__DetectableLimitRelativeStateKind(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__DetectableLimitRelativeStateKind(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__DetectableLimitRelativeStateKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind, sizeof(prodml22__DetectableLimitRelativeStateKind), 0, NULL); + { a = (prodml23__DetectableLimitRelativeStateKind **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind, sizeof(prodml23__DetectableLimitRelativeStateKind), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(soap, tag ? tag : "prodml22:DetectableLimitRelativeStateKind", -2, a, type)) + if (soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(soap, tag ? tag : "prodml23:DetectableLimitRelativeStateKind", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_get_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_get_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -434498,24 +434683,24 @@ SOAP_FMAC3 eml23__MassPerVolumeMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CalendarMonth(struct soap *soap, std::string *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CalendarMonth(struct soap *soap, std::string *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth)) - soap_serialize_prodml22__CalendarMonth(soap, *a); + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth)) + soap_serialize_prodml23__CalendarMonth(soap, *a); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CalendarMonth(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CalendarMonth(struct soap *soap, const char *tag, int id, std::string *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__CalendarMonth(soap, tag, id, *a, type); + return soap_out_prodml23__CalendarMonth(soap, tag, id, *a, type); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__CalendarMonth(struct soap *soap, const char *tag, std::string **a, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__CalendarMonth(struct soap *soap, const char *tag, std::string **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) @@ -434526,61 +434711,61 @@ SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__CalendarMonth(st *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__CalendarMonth(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__CalendarMonth(soap, tag, *a, type))) return NULL; } else - { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth, sizeof(std::string), 0, NULL); + { a = (std::string **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth, sizeof(std::string), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CalendarMonth(struct soap *soap, std::string *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CalendarMonth(struct soap *soap, std::string *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CalendarMonth(soap, tag ? tag : "prodml22:CalendarMonth", -2, a, type)) + if (soap_out_PointerToprodml23__CalendarMonth(soap, tag ? tag : "prodml23:CalendarMonth", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__CalendarMonth(struct soap *soap, std::string **p, const char *tag, const char *type) +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__CalendarMonth(struct soap *soap, std::string **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CalendarMonth(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CalendarMonth(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PvtModelParameter(struct soap *soap, const char *tag, int id, prodml22__PvtModelParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PvtModelParameter(struct soap *soap, const char *tag, int id, prodml23__PvtModelParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter ? type : NULL); } -SOAP_FMAC3 prodml22__PvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__PvtModelParameter(struct soap *soap, const char *tag, prodml22__PvtModelParameter **a, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__PvtModelParameter(struct soap *soap, const char *tag, prodml23__PvtModelParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PvtModelParameter **)soap_malloc(soap, sizeof(prodml22__PvtModelParameter *)))) + if (!(a = (prodml23__PvtModelParameter **)soap_malloc(soap, sizeof(prodml23__PvtModelParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PvtModelParameter *)soap_instantiate_prodml22__PvtModelParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PvtModelParameter *)soap_instantiate_prodml23__PvtModelParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434589,23 +434774,23 @@ SOAP_FMAC3 prodml22__PvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__ } } else - { a = (prodml22__PvtModelParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter, sizeof(prodml22__PvtModelParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PvtModelParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter, sizeof(prodml23__PvtModelParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PvtModelParameter(soap, tag ? tag : "prodml22:PvtModelParameter", -2, a, type)) + if (soap_out_PointerToprodml23__PvtModelParameter(soap, tag ? tag : "prodml23:PvtModelParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PvtModelParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PvtModelParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -434788,35 +434973,35 @@ SOAP_FMAC3 eml23__MolarVolumeMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__Mola return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationTableFormat *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationTableFormat *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableFormat **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableFormat **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationTableFormat **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationTableFormat *)))) + if (!(a = (prodml23__FluidCharacterizationTableFormat **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationTableFormat *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationTableFormat *)soap_instantiate_prodml22__FluidCharacterizationTableFormat(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationTableFormat *)soap_instantiate_prodml23__FluidCharacterizationTableFormat(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434825,57 +435010,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__FluidCharacterizationTableFormat **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, sizeof(prodml22__FluidCharacterizationTableFormat), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableFormat **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, sizeof(prodml23__FluidCharacterizationTableFormat), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag ? tag : "prodml22:FluidCharacterizationTableFormat", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag ? tag : "prodml23:FluidCharacterizationTableFormat", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationTableColumn *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationTableColumn *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableColumn **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableColumn **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationTableColumn **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationTableColumn *)))) + if (!(a = (prodml23__FluidCharacterizationTableColumn **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationTableColumn *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationTableColumn *)soap_instantiate_prodml22__FluidCharacterizationTableColumn(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationTableColumn *)soap_instantiate_prodml23__FluidCharacterizationTableColumn(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434884,57 +435069,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_in_Poin } } else - { a = (prodml22__FluidCharacterizationTableColumn **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, sizeof(prodml22__FluidCharacterizationTableColumn), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableColumn **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, sizeof(prodml23__FluidCharacterizationTableColumn), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag ? tag : "prodml22:FluidCharacterizationTableColumn", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag ? tag : "prodml23:FluidCharacterizationTableColumn", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationTableRow *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationTableRow *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTableRow **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTableRow **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationTableRow **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationTableRow *)))) + if (!(a = (prodml23__FluidCharacterizationTableRow **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationTableRow *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationTableRow *)soap_instantiate_prodml22__FluidCharacterizationTableRow(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationTableRow *)soap_instantiate_prodml23__FluidCharacterizationTableRow(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -434943,57 +435128,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_in_Pointer } } else - { a = (prodml22__FluidCharacterizationTableRow **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow, sizeof(prodml22__FluidCharacterizationTableRow), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTableRow **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow, sizeof(prodml23__FluidCharacterizationTableRow), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableRow(soap, tag ? tag : "prodml22:FluidCharacterizationTableRow", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationTableRow(soap, tag ? tag : "prodml23:FluidCharacterizationTableRow", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationTableRow(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationTableRow(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationParameter(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationParameter(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationParameter(struct soap *soap, const char *tag, prodml22__FluidCharacterizationParameter **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationParameter(struct soap *soap, const char *tag, prodml23__FluidCharacterizationParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationParameter **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationParameter *)))) + if (!(a = (prodml23__FluidCharacterizationParameter **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationParameter *)soap_instantiate_prodml22__FluidCharacterizationParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationParameter *)soap_instantiate_prodml23__FluidCharacterizationParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435002,110 +435187,110 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameter ** SOAP_FMAC4 soap_in_Pointe } } else - { a = (prodml22__FluidCharacterizationParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, sizeof(prodml22__FluidCharacterizationParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, sizeof(prodml23__FluidCharacterizationParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationParameter(soap, tag ? tag : "prodml22:FluidCharacterizationParameter", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationParameter(soap, tag ? tag : "prodml23:FluidCharacterizationParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase); + (void)soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ThermodynamicPhase(struct soap *soap, const char *tag, int id, prodml22__ThermodynamicPhase *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ThermodynamicPhase(struct soap *soap, const char *tag, int id, prodml23__ThermodynamicPhase *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase, NULL); if (id < 0) return soap->error; - return soap_out_prodml22__ThermodynamicPhase(soap, tag, id, *a, type); + return soap_out_prodml23__ThermodynamicPhase(soap, tag, id, *a, type); } -SOAP_FMAC3 prodml22__ThermodynamicPhase ** SOAP_FMAC4 soap_in_PointerToprodml22__ThermodynamicPhase(struct soap *soap, const char *tag, prodml22__ThermodynamicPhase **a, const char *type) +SOAP_FMAC3 prodml23__ThermodynamicPhase ** SOAP_FMAC4 soap_in_PointerToprodml23__ThermodynamicPhase(struct soap *soap, const char *tag, prodml23__ThermodynamicPhase **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ThermodynamicPhase **)soap_malloc(soap, sizeof(prodml22__ThermodynamicPhase *)))) + if (!(a = (prodml23__ThermodynamicPhase **)soap_malloc(soap, sizeof(prodml23__ThermodynamicPhase *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = soap_in_prodml22__ThermodynamicPhase(soap, tag, *a, type))) + if (!(*a = soap_in_prodml23__ThermodynamicPhase(soap, tag, *a, type))) return NULL; } else - { a = (prodml22__ThermodynamicPhase **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase, sizeof(prodml22__ThermodynamicPhase), 0, NULL); + { a = (prodml23__ThermodynamicPhase **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase, sizeof(prodml23__ThermodynamicPhase), 0, NULL); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ThermodynamicPhase(soap, tag ? tag : "prodml22:ThermodynamicPhase", -2, a, type)) + if (soap_out_PointerToprodml23__ThermodynamicPhase(soap, tag ? tag : "prodml23:ThermodynamicPhase", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ThermodynamicPhase ** SOAP_FMAC4 soap_get_PointerToprodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ThermodynamicPhase ** SOAP_FMAC4 soap_get_PointerToprodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ThermodynamicPhase(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ThermodynamicPhase(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReferenceSeparatorStage(struct soap *soap, const char *tag, int id, prodml22__ReferenceSeparatorStage *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReferenceSeparatorStage(struct soap *soap, const char *tag, int id, prodml23__ReferenceSeparatorStage *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage ? type : NULL); } -SOAP_FMAC3 prodml22__ReferenceSeparatorStage ** SOAP_FMAC4 soap_in_PointerToprodml22__ReferenceSeparatorStage(struct soap *soap, const char *tag, prodml22__ReferenceSeparatorStage **a, const char *type) +SOAP_FMAC3 prodml23__ReferenceSeparatorStage ** SOAP_FMAC4 soap_in_PointerToprodml23__ReferenceSeparatorStage(struct soap *soap, const char *tag, prodml23__ReferenceSeparatorStage **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__ReferenceSeparatorStage **)soap_malloc(soap, sizeof(prodml22__ReferenceSeparatorStage *)))) + if (!(a = (prodml23__ReferenceSeparatorStage **)soap_malloc(soap, sizeof(prodml23__ReferenceSeparatorStage *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__ReferenceSeparatorStage *)soap_instantiate_prodml22__ReferenceSeparatorStage(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__ReferenceSeparatorStage *)soap_instantiate_prodml23__ReferenceSeparatorStage(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435114,57 +435299,57 @@ SOAP_FMAC3 prodml22__ReferenceSeparatorStage ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__ReferenceSeparatorStage **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, sizeof(prodml22__ReferenceSeparatorStage), 0, gsoap_eml2_3_fbase); + { a = (prodml23__ReferenceSeparatorStage **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, sizeof(prodml23__ReferenceSeparatorStage), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__ReferenceSeparatorStage(soap, tag ? tag : "prodml22:ReferenceSeparatorStage", -2, a, type)) + if (soap_out_PointerToprodml23__ReferenceSeparatorStage(soap, tag ? tag : "prodml23:ReferenceSeparatorStage", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__ReferenceSeparatorStage ** SOAP_FMAC4 soap_get_PointerToprodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__ReferenceSeparatorStage ** SOAP_FMAC4 soap_get_PointerToprodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__ReferenceSeparatorStage(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__ReferenceSeparatorStage(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationParameterSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationParameterSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, prodml22__FluidCharacterizationParameterSet **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *tag, prodml23__FluidCharacterizationParameterSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationParameterSet **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationParameterSet *)))) + if (!(a = (prodml23__FluidCharacterizationParameterSet **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationParameterSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationParameterSet *)soap_instantiate_prodml22__FluidCharacterizationParameterSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationParameterSet *)soap_instantiate_prodml23__FluidCharacterizationParameterSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435173,57 +435358,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_in_Poi } } else - { a = (prodml22__FluidCharacterizationParameterSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet, sizeof(prodml22__FluidCharacterizationParameterSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationParameterSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet, sizeof(prodml23__FluidCharacterizationParameterSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationParameterSet(soap, tag ? tag : "prodml22:FluidCharacterizationParameterSet", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationParameterSet(soap, tag ? tag : "prodml23:FluidCharacterizationParameterSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationParameterSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationParameterSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTable(struct soap *soap, const char *tag, int id, prodml22__FluidCharacterizationTable *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTable(struct soap *soap, const char *tag, int id, prodml23__FluidCharacterizationTable *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable ? type : NULL); } -SOAP_FMAC3 prodml22__FluidCharacterizationTable ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTable(struct soap *soap, const char *tag, prodml22__FluidCharacterizationTable **a, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTable ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTable(struct soap *soap, const char *tag, prodml23__FluidCharacterizationTable **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidCharacterizationTable **)soap_malloc(soap, sizeof(prodml22__FluidCharacterizationTable *)))) + if (!(a = (prodml23__FluidCharacterizationTable **)soap_malloc(soap, sizeof(prodml23__FluidCharacterizationTable *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidCharacterizationTable *)soap_instantiate_prodml22__FluidCharacterizationTable(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidCharacterizationTable *)soap_instantiate_prodml23__FluidCharacterizationTable(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435232,57 +435417,57 @@ SOAP_FMAC3 prodml22__FluidCharacterizationTable ** SOAP_FMAC4 soap_in_PointerTop } } else - { a = (prodml22__FluidCharacterizationTable **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, sizeof(prodml22__FluidCharacterizationTable), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidCharacterizationTable **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, sizeof(prodml23__FluidCharacterizationTable), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidCharacterizationTable(soap, tag ? tag : "prodml22:FluidCharacterizationTable", -2, a, type)) + if (soap_out_PointerToprodml23__FluidCharacterizationTable(soap, tag ? tag : "prodml23:FluidCharacterizationTable", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidCharacterizationTable ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidCharacterizationTable ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidCharacterizationTable(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidCharacterizationTable(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractPvtModel(struct soap *soap, const char *tag, int id, prodml22__AbstractPvtModel *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractPvtModel(struct soap *soap, const char *tag, int id, prodml23__AbstractPvtModel *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel ? type : NULL); } -SOAP_FMAC3 prodml22__AbstractPvtModel ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractPvtModel(struct soap *soap, const char *tag, prodml22__AbstractPvtModel **a, const char *type) +SOAP_FMAC3 prodml23__AbstractPvtModel ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractPvtModel(struct soap *soap, const char *tag, prodml23__AbstractPvtModel **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__AbstractPvtModel **)soap_malloc(soap, sizeof(prodml22__AbstractPvtModel *)))) + if (!(a = (prodml23__AbstractPvtModel **)soap_malloc(soap, sizeof(prodml23__AbstractPvtModel *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__AbstractPvtModel *)soap_instantiate_prodml22__AbstractPvtModel(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__AbstractPvtModel *)soap_instantiate_prodml23__AbstractPvtModel(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435291,57 +435476,57 @@ SOAP_FMAC3 prodml22__AbstractPvtModel ** SOAP_FMAC4 soap_in_PointerToprodml22__A } } else - { a = (prodml22__AbstractPvtModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel, sizeof(prodml22__AbstractPvtModel), 0, gsoap_eml2_3_fbase); + { a = (prodml23__AbstractPvtModel **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel, sizeof(prodml23__AbstractPvtModel), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__AbstractPvtModel(soap, tag ? tag : "prodml22:AbstractPvtModel", -2, a, type)) + if (soap_out_PointerToprodml23__AbstractPvtModel(soap, tag ? tag : "prodml23:AbstractPvtModel", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__AbstractPvtModel ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__AbstractPvtModel ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__AbstractPvtModel(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__AbstractPvtModel(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CustomPvtModelParameter(struct soap *soap, const char *tag, int id, prodml22__CustomPvtModelParameter *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CustomPvtModelParameter(struct soap *soap, const char *tag, int id, prodml23__CustomPvtModelParameter *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter ? type : NULL); } -SOAP_FMAC3 prodml22__CustomPvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__CustomPvtModelParameter(struct soap *soap, const char *tag, prodml22__CustomPvtModelParameter **a, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__CustomPvtModelParameter(struct soap *soap, const char *tag, prodml23__CustomPvtModelParameter **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CustomPvtModelParameter **)soap_malloc(soap, sizeof(prodml22__CustomPvtModelParameter *)))) + if (!(a = (prodml23__CustomPvtModelParameter **)soap_malloc(soap, sizeof(prodml23__CustomPvtModelParameter *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__CustomPvtModelParameter *)soap_instantiate_prodml22__CustomPvtModelParameter(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__CustomPvtModelParameter *)soap_instantiate_prodml23__CustomPvtModelParameter(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435350,57 +435535,57 @@ SOAP_FMAC3 prodml22__CustomPvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__CustomPvtModelParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, sizeof(prodml22__CustomPvtModelParameter), 0, gsoap_eml2_3_fbase); + { a = (prodml23__CustomPvtModelParameter **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, sizeof(prodml23__CustomPvtModelParameter), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CustomPvtModelParameter(soap, tag ? tag : "prodml22:CustomPvtModelParameter", -2, a, type)) + if (soap_out_PointerToprodml23__CustomPvtModelParameter(soap, tag ? tag : "prodml23:CustomPvtModelParameter", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CustomPvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CustomPvtModelParameter(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CustomPvtModelParameter(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidComponentProperty(struct soap *soap, const char *tag, int id, prodml22__FluidComponentProperty *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidComponentProperty(struct soap *soap, const char *tag, int id, prodml23__FluidComponentProperty *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty ? type : NULL); } -SOAP_FMAC3 prodml22__FluidComponentProperty ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidComponentProperty(struct soap *soap, const char *tag, prodml22__FluidComponentProperty **a, const char *type) +SOAP_FMAC3 prodml23__FluidComponentProperty ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidComponentProperty(struct soap *soap, const char *tag, prodml23__FluidComponentProperty **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__FluidComponentProperty **)soap_malloc(soap, sizeof(prodml22__FluidComponentProperty *)))) + if (!(a = (prodml23__FluidComponentProperty **)soap_malloc(soap, sizeof(prodml23__FluidComponentProperty *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__FluidComponentProperty *)soap_instantiate_prodml22__FluidComponentProperty(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__FluidComponentProperty *)soap_instantiate_prodml23__FluidComponentProperty(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435409,57 +435594,57 @@ SOAP_FMAC3 prodml22__FluidComponentProperty ** SOAP_FMAC4 soap_in_PointerToprodm } } else - { a = (prodml22__FluidComponentProperty **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, sizeof(prodml22__FluidComponentProperty), 0, gsoap_eml2_3_fbase); + { a = (prodml23__FluidComponentProperty **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, sizeof(prodml23__FluidComponentProperty), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__FluidComponentProperty(soap, tag ? tag : "prodml22:FluidComponentProperty", -2, a, type)) + if (soap_out_PointerToprodml23__FluidComponentProperty(soap, tag ? tag : "prodml23:FluidComponentProperty", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__FluidComponentProperty ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__FluidComponentProperty ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__FluidComponentProperty(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__FluidComponentProperty(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, const char *tag, int id, prodml22__BinaryInteractionCoefficient *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, const char *tag, int id, prodml23__BinaryInteractionCoefficient *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient ? type : NULL); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, const char *tag, prodml22__BinaryInteractionCoefficient **a, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, const char *tag, prodml23__BinaryInteractionCoefficient **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__BinaryInteractionCoefficient **)soap_malloc(soap, sizeof(prodml22__BinaryInteractionCoefficient *)))) + if (!(a = (prodml23__BinaryInteractionCoefficient **)soap_malloc(soap, sizeof(prodml23__BinaryInteractionCoefficient *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__BinaryInteractionCoefficient *)soap_instantiate_prodml22__BinaryInteractionCoefficient(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__BinaryInteractionCoefficient *)soap_instantiate_prodml23__BinaryInteractionCoefficient(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435468,57 +435653,57 @@ SOAP_FMAC3 prodml22__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_in_PointerT } } else - { a = (prodml22__BinaryInteractionCoefficient **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient, sizeof(prodml22__BinaryInteractionCoefficient), 0, gsoap_eml2_3_fbase); + { a = (prodml23__BinaryInteractionCoefficient **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient, sizeof(prodml23__BinaryInteractionCoefficient), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__BinaryInteractionCoefficient(soap, tag ? tag : "prodml22:BinaryInteractionCoefficient", -2, a, type)) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficient(soap, tag ? tag : "prodml23:BinaryInteractionCoefficient", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__BinaryInteractionCoefficient(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__BinaryInteractionCoefficient(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PvtModelParameterSet(struct soap *soap, const char *tag, int id, prodml22__PvtModelParameterSet *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PvtModelParameterSet(struct soap *soap, const char *tag, int id, prodml23__PvtModelParameterSet *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet ? type : NULL); } -SOAP_FMAC3 prodml22__PvtModelParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml22__PvtModelParameterSet(struct soap *soap, const char *tag, prodml22__PvtModelParameterSet **a, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml23__PvtModelParameterSet(struct soap *soap, const char *tag, prodml23__PvtModelParameterSet **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__PvtModelParameterSet **)soap_malloc(soap, sizeof(prodml22__PvtModelParameterSet *)))) + if (!(a = (prodml23__PvtModelParameterSet **)soap_malloc(soap, sizeof(prodml23__PvtModelParameterSet *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__PvtModelParameterSet *)soap_instantiate_prodml22__PvtModelParameterSet(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__PvtModelParameterSet *)soap_instantiate_prodml23__PvtModelParameterSet(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435527,57 +435712,57 @@ SOAP_FMAC3 prodml22__PvtModelParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml2 } } else - { a = (prodml22__PvtModelParameterSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet, sizeof(prodml22__PvtModelParameterSet), 0, gsoap_eml2_3_fbase); + { a = (prodml23__PvtModelParameterSet **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet, sizeof(prodml23__PvtModelParameterSet), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__PvtModelParameterSet(soap, tag ? tag : "prodml22:PvtModelParameterSet", -2, a, type)) + if (soap_out_PointerToprodml23__PvtModelParameterSet(soap, tag ? tag : "prodml23:PvtModelParameterSet", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__PvtModelParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__PvtModelParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__PvtModelParameterSet(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__PvtModelParameterSet(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension *const*a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension *const*a) { (void)soap; (void)a; /* appease -Wall -Werror */ #ifndef WITH_NOIDREF - if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension)) + if (!soap_reference(soap, *a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension)) (*a)->soap_serialize(soap); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CustomPvtModelExtension(struct soap *soap, const char *tag, int id, prodml22__CustomPvtModelExtension *const*a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CustomPvtModelExtension(struct soap *soap, const char *tag, int id, prodml23__CustomPvtModelExtension *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension, NULL); + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension, NULL); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension ? type : NULL); + return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension ? type : NULL); } -SOAP_FMAC3 prodml22__CustomPvtModelExtension ** SOAP_FMAC4 soap_in_PointerToprodml22__CustomPvtModelExtension(struct soap *soap, const char *tag, prodml22__CustomPvtModelExtension **a, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelExtension ** SOAP_FMAC4 soap_in_PointerToprodml23__CustomPvtModelExtension(struct soap *soap, const char *tag, prodml23__CustomPvtModelExtension **a, const char *type) { (void)type; /* appease -Wall -Werror */ if (soap_element_begin_in(soap, tag, 1, NULL)) return NULL; if (!a) - if (!(a = (prodml22__CustomPvtModelExtension **)soap_malloc(soap, sizeof(prodml22__CustomPvtModelExtension *)))) + if (!(a = (prodml23__CustomPvtModelExtension **)soap_malloc(soap, sizeof(prodml23__CustomPvtModelExtension *)))) return NULL; *a = NULL; if (!soap->null && *soap->href != '#') { soap_revert(soap); - if (!(*a = (prodml22__CustomPvtModelExtension *)soap_instantiate_prodml22__CustomPvtModelExtension(soap, -1, soap->type, soap->arrayType, NULL))) + if (!(*a = (prodml23__CustomPvtModelExtension *)soap_instantiate_prodml23__CustomPvtModelExtension(soap, -1, soap->type, soap->arrayType, NULL))) return NULL; (*a)->soap_default(soap); if (!(*a)->soap_in(soap, tag, NULL)) @@ -435586,23 +435771,23 @@ SOAP_FMAC3 prodml22__CustomPvtModelExtension ** SOAP_FMAC4 soap_in_PointerToprod } } else - { a = (prodml22__CustomPvtModelExtension **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension, sizeof(prodml22__CustomPvtModelExtension), 0, gsoap_eml2_3_fbase); + { a = (prodml23__CustomPvtModelExtension **)soap_id_lookup(soap, soap->href, (void**)a, SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension, sizeof(prodml23__CustomPvtModelExtension), 0, gsoap_eml2_3_fbase); if (soap->body && soap_element_end_in(soap, tag)) return NULL; } return a; } -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension *const*a, const char *tag, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension *const*a, const char *tag, const char *type) { - if (soap_out_PointerToprodml22__CustomPvtModelExtension(soap, tag ? tag : "prodml22:CustomPvtModelExtension", -2, a, type)) + if (soap_out_PointerToprodml23__CustomPvtModelExtension(soap, tag ? tag : "prodml23:CustomPvtModelExtension", -2, a, type)) return soap->error; return soap_putindependent(soap); } -SOAP_FMAC3 prodml22__CustomPvtModelExtension ** SOAP_FMAC4 soap_get_PointerToprodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension **p, const char *tag, const char *type) +SOAP_FMAC3 prodml23__CustomPvtModelExtension ** SOAP_FMAC4 soap_get_PointerToprodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension **p, const char *tag, const char *type) { - if ((p = soap_in_PointerToprodml22__CustomPvtModelExtension(soap, tag, p, type))) + if ((p = soap_in_PointerToprodml23__CustomPvtModelExtension(soap, tag, p, type))) if (soap_getindependent(soap)) return NULL; return p; @@ -437831,10 +438016,13 @@ SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTowitsml21__StimPerforationClus SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerTowitsml21__StimPerforationCluster(struct soap *soap, const char *tag, int id, witsml21__StimPerforationCluster *const*a, const char *type) { - id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster, NULL); + char *mark; + id = soap_element_id(soap, tag, id, *a, NULL, 0, type, SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster, &mark); if (id < 0) return soap->error; - return (*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster ? type : NULL); + (void)(*a)->soap_out(soap, tag, id, (*a)->soap_type() == SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster ? type : NULL); + soap_unmark(soap, mark); + return soap->error; } SOAP_FMAC3 witsml21__StimPerforationCluster ** SOAP_FMAC4 soap_in_PointerTowitsml21__StimPerforationCluster(struct soap *soap, const char *tag, witsml21__StimPerforationCluster **a, const char *type) @@ -451170,21 +451358,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__SealedContact(soap))) return NULL; - a->emplace_back(); - resqml22__SealedContact * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__SealedContact *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__SealedContact, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__SealedContact, sizeof(resqml22__SealedContact), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__SealedContact, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__SealedContact, sizeof(resqml22__SealedContact), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__SealedContact(soap, tag, NULL, "resqml22:SealedContact")) break; } else - { if (!soap_in_PointerToresqml22__SealedContact(soap, tag, n, "resqml22:SealedContact")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__SealedContact(soap, tag, &n, "resqml22:SealedContact")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451260,21 +451450,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__AbstractSurfaceFrameworkContact(soap))) return NULL; - a->emplace_back(); - resqml22__AbstractSurfaceFrameworkContact * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AbstractSurfaceFrameworkContact *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSurfaceFrameworkContact, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractSurfaceFrameworkContact, sizeof(resqml22__AbstractSurfaceFrameworkContact), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractSurfaceFrameworkContact, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractSurfaceFrameworkContact, sizeof(resqml22__AbstractSurfaceFrameworkContact), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AbstractSurfaceFrameworkContact(soap, tag, NULL, "resqml22:AbstractSurfaceFrameworkContact")) break; } else - { if (!soap_in_PointerToresqml22__AbstractSurfaceFrameworkContact(soap, tag, n, "resqml22:AbstractSurfaceFrameworkContact")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AbstractSurfaceFrameworkContact(soap, tag, &n, "resqml22:AbstractSurfaceFrameworkContact")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451350,21 +451542,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ShowEvaluationInterval(soap))) return NULL; - a->emplace_back(); - witsml21__ShowEvaluationInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ShowEvaluationInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluationInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ShowEvaluationInterval, sizeof(witsml21__ShowEvaluationInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluationInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ShowEvaluationInterval, sizeof(witsml21__ShowEvaluationInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ShowEvaluationInterval(soap, tag, NULL, "witsml21:ShowEvaluationInterval")) break; } else - { if (!soap_in_PointerTowitsml21__ShowEvaluationInterval(soap, tag, n, "witsml21:ShowEvaluationInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ShowEvaluationInterval(soap, tag, &n, "witsml21:ShowEvaluationInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451440,21 +451634,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__InterpretedGeologyInterval(soap))) return NULL; - a->emplace_back(); - witsml21__InterpretedGeologyInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__InterpretedGeologyInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeologyInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__InterpretedGeologyInterval, sizeof(witsml21__InterpretedGeologyInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeologyInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__InterpretedGeologyInterval, sizeof(witsml21__InterpretedGeologyInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__InterpretedGeologyInterval(soap, tag, NULL, "witsml21:InterpretedGeologyInterval")) break; } else - { if (!soap_in_PointerTowitsml21__InterpretedGeologyInterval(soap, tag, n, "witsml21:InterpretedGeologyInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__InterpretedGeologyInterval(soap, tag, &n, "witsml21:InterpretedGeologyInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451530,21 +451726,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CuttingsGeologyInterval(soap))) return NULL; - a->emplace_back(); - witsml21__CuttingsGeologyInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CuttingsGeologyInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeologyInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CuttingsGeologyInterval, sizeof(witsml21__CuttingsGeologyInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeologyInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CuttingsGeologyInterval, sizeof(witsml21__CuttingsGeologyInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CuttingsGeologyInterval(soap, tag, NULL, "witsml21:CuttingsGeologyInterval")) break; } else - { if (!soap_in_PointerTowitsml21__CuttingsGeologyInterval(soap, tag, n, "witsml21:CuttingsGeologyInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CuttingsGeologyInterval(soap, tag, &n, "witsml21:CuttingsGeologyInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451620,21 +451818,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__MudLogParameter(soap))) return NULL; - a->emplace_back(); - witsml21__MudLogParameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__MudLogParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__MudLogParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudLogParameter, sizeof(witsml21__MudLogParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__MudLogParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudLogParameter, sizeof(witsml21__MudLogParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__MudLogParameter(soap, tag, NULL, "witsml21:MudLogParameter")) break; } else - { if (!soap_in_PointerTowitsml21__MudLogParameter(soap, tag, n, "witsml21:MudLogParameter")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__MudLogParameter(soap, tag, &n, "witsml21:MudLogParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451710,21 +451910,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__MudlogReportInterval(soap))) return NULL; - a->emplace_back(); - witsml21__MudlogReportInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__MudlogReportInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__MudlogReportInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudlogReportInterval, sizeof(witsml21__MudlogReportInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__MudlogReportInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudlogReportInterval, sizeof(witsml21__MudlogReportInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__MudlogReportInterval(soap, tag, NULL, "witsml21:MudlogReportInterval")) break; } else - { if (!soap_in_PointerTowitsml21__MudlogReportInterval(soap, tag, n, "witsml21:MudlogReportInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__MudlogReportInterval(soap, tag, &n, "witsml21:MudlogReportInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451800,21 +452002,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__UnstructuredGpGridPatch(soap))) return NULL; - a->emplace_back(); - resqml22__UnstructuredGpGridPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__UnstructuredGpGridPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredGpGridPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__UnstructuredGpGridPatch, sizeof(resqml22__UnstructuredGpGridPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredGpGridPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__UnstructuredGpGridPatch, sizeof(resqml22__UnstructuredGpGridPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__UnstructuredGpGridPatch(soap, tag, NULL, "resqml22:UnstructuredGpGridPatch")) break; } else - { if (!soap_in_PointerToresqml22__UnstructuredGpGridPatch(soap, tag, n, "resqml22:UnstructuredGpGridPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__UnstructuredGpGridPatch(soap, tag, &n, "resqml22:UnstructuredGpGridPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451890,21 +452094,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ColumnLayerGpGrid(soap))) return NULL; - a->emplace_back(); - resqml22__ColumnLayerGpGrid * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ColumnLayerGpGrid *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ColumnLayerGpGrid, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ColumnLayerGpGrid, sizeof(resqml22__ColumnLayerGpGrid), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ColumnLayerGpGrid, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ColumnLayerGpGrid, sizeof(resqml22__ColumnLayerGpGrid), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ColumnLayerGpGrid(soap, tag, NULL, "resqml22:ColumnLayerGpGrid")) break; } else - { if (!soap_in_PointerToresqml22__ColumnLayerGpGrid(soap, tag, n, "resqml22:ColumnLayerGpGrid")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ColumnLayerGpGrid(soap, tag, &n, "resqml22:ColumnLayerGpGrid")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -451980,21 +452186,23 @@ SOAP_FMAC3 std::vector * SOAP_FM } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ReservoirCompartmentInterpretation(soap))) return NULL; - a->emplace_back(); - resqml22__ReservoirCompartmentInterpretation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ReservoirCompartmentInterpretation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ReservoirCompartmentInterpretation, sizeof(resqml22__ReservoirCompartmentInterpretation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ReservoirCompartmentInterpretation, sizeof(resqml22__ReservoirCompartmentInterpretation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ReservoirCompartmentInterpretation(soap, tag, NULL, "resqml22:ReservoirCompartmentInterpretation")) break; } else - { if (!soap_in_PointerToresqml22__ReservoirCompartmentInterpretation(soap, tag, n, "resqml22:ReservoirCompartmentInterpretation")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ReservoirCompartmentInterpretation(soap, tag, &n, "resqml22:ReservoirCompartmentInterpretation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452070,21 +452278,23 @@ SOAP_FMAC3 std::vector * S } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__BoundaryFeatureInterpretationPlusItsRank(soap))) return NULL; - a->emplace_back(); - resqml22__BoundaryFeatureInterpretationPlusItsRank * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__BoundaryFeatureInterpretationPlusItsRank *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__BoundaryFeatureInterpretationPlusItsRank, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__BoundaryFeatureInterpretationPlusItsRank, sizeof(resqml22__BoundaryFeatureInterpretationPlusItsRank), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__BoundaryFeatureInterpretationPlusItsRank, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__BoundaryFeatureInterpretationPlusItsRank, sizeof(resqml22__BoundaryFeatureInterpretationPlusItsRank), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__BoundaryFeatureInterpretationPlusItsRank(soap, tag, NULL, "resqml22:BoundaryFeatureInterpretationPlusItsRank")) break; } else - { if (!soap_in_PointerToresqml22__BoundaryFeatureInterpretationPlusItsRank(soap, tag, n, "resqml22:BoundaryFeatureInterpretationPlusItsRank")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__BoundaryFeatureInterpretationPlusItsRank(soap, tag, &n, "resqml22:BoundaryFeatureInterpretationPlusItsRank")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452158,21 +452368,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfresqml22__StratigraphicRole(soap))) return NULL; - a->emplace_back(); - resqml22__StratigraphicRole *n = &a->back(); - soap_default_resqml22__StratigraphicRole(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__StratigraphicRole n; + soap_default_resqml22__StratigraphicRole(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicRole, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfresqml22__StratigraphicRole, sizeof(resqml22__StratigraphicRole), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicRole, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfresqml22__StratigraphicRole, sizeof(resqml22__StratigraphicRole), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_resqml22__StratigraphicRole(soap, tag, NULL, "resqml22:StratigraphicRole")) break; } else - { if (!soap_in_resqml22__StratigraphicRole(soap, tag, n, "resqml22:StratigraphicRole")) - { a->pop_back(); + { if (!soap_in_resqml22__StratigraphicRole(soap, tag, &n, "resqml22:StratigraphicRole")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452248,21 +452460,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__FaultThrow(soap))) return NULL; - a->emplace_back(); - resqml22__FaultThrow * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__FaultThrow *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__FaultThrow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__FaultThrow, sizeof(resqml22__FaultThrow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__FaultThrow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__FaultThrow, sizeof(resqml22__FaultThrow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__FaultThrow(soap, tag, NULL, "resqml22:FaultThrow")) break; } else - { if (!soap_in_PointerToresqml22__FaultThrow(soap, tag, n, "resqml22:FaultThrow")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__FaultThrow(soap, tag, &n, "resqml22:FaultThrow")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452338,21 +452552,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__TrianglePatch(soap))) return NULL; - a->emplace_back(); - resqml22__TrianglePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__TrianglePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__TrianglePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__TrianglePatch, sizeof(resqml22__TrianglePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__TrianglePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__TrianglePatch, sizeof(resqml22__TrianglePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__TrianglePatch(soap, tag, NULL, "resqml22:TrianglePatch")) break; } else - { if (!soap_in_PointerToresqml22__TrianglePatch(soap, tag, n, "resqml22:TrianglePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__TrianglePatch(soap, tag, &n, "resqml22:TrianglePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452428,21 +452644,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__VolumeRegion(soap))) return NULL; - a->emplace_back(); - resqml22__VolumeRegion * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__VolumeRegion *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__VolumeRegion, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__VolumeRegion, sizeof(resqml22__VolumeRegion), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__VolumeRegion, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__VolumeRegion, sizeof(resqml22__VolumeRegion), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__VolumeRegion(soap, tag, NULL, "resqml22:VolumeRegion")) break; } else - { if (!soap_in_PointerToresqml22__VolumeRegion(soap, tag, n, "resqml22:VolumeRegion")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__VolumeRegion(soap, tag, &n, "resqml22:VolumeRegion")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452518,21 +452736,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__AbstractPlaneGeometry(soap))) return NULL; - a->emplace_back(); - resqml22__AbstractPlaneGeometry * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AbstractPlaneGeometry *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractPlaneGeometry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractPlaneGeometry, sizeof(resqml22__AbstractPlaneGeometry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractPlaneGeometry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractPlaneGeometry, sizeof(resqml22__AbstractPlaneGeometry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AbstractPlaneGeometry(soap, tag, NULL, "resqml22:AbstractPlaneGeometry")) break; } else - { if (!soap_in_PointerToresqml22__AbstractPlaneGeometry(soap, tag, n, "resqml22:AbstractPlaneGeometry")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AbstractPlaneGeometry(soap, tag, &n, "resqml22:AbstractPlaneGeometry")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452608,21 +452828,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ContactIdentity(soap))) return NULL; - a->emplace_back(); - resqml22__ContactIdentity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ContactIdentity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ContactIdentity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContactIdentity, sizeof(resqml22__ContactIdentity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ContactIdentity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContactIdentity, sizeof(resqml22__ContactIdentity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ContactIdentity(soap, tag, NULL, "resqml22:ContactIdentity")) break; } else - { if (!soap_in_PointerToresqml22__ContactIdentity(soap, tag, n, "resqml22:ContactIdentity")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ContactIdentity(soap, tag, &n, "resqml22:ContactIdentity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452659,33 +452881,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantia return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__PrsvParameter(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__PrsvParameter(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__PrsvParameter(soap, tag, id, &(*i), "prodml22:PrsvParameter")) + if (soap_out_PointerToprodml23__PrsvParameter(soap, tag, id, &(*i), "prodml23:PrsvParameter")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -452696,23 +452918,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap))) return NULL; - a->emplace_back(); - prodml22__PrsvParameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__PrsvParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter, sizeof(prodml22__PrsvParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter, sizeof(prodml23__PrsvParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__PrsvParameter(soap, tag, NULL, "prodml22:PrsvParameter")) + if (!soap_in_PointerToprodml23__PrsvParameter(soap, tag, NULL, "prodml23:PrsvParameter")) break; } else - { if (!soap_in_PointerToprodml22__PrsvParameter(soap, tag, n, "prodml22:PrsvParameter")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__PrsvParameter(soap, tag, &n, "prodml23:PrsvParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452723,23 +452947,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__PrsvParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__PrsvParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -452788,21 +453012,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__IntegerConstantArray(soap))) return NULL; - a->emplace_back(); - eml23__IntegerConstantArray * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__IntegerConstantArray *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__IntegerConstantArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerConstantArray, sizeof(eml23__IntegerConstantArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__IntegerConstantArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerConstantArray, sizeof(eml23__IntegerConstantArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__IntegerConstantArray(soap, tag, NULL, "eml23:IntegerConstantArray")) break; } else - { if (!soap_in_PointerToeml23__IntegerConstantArray(soap, tag, n, "eml23:IntegerConstantArray")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__IntegerConstantArray(soap, tag, &n, "eml23:IntegerConstantArray")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452878,21 +453104,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__FloatingPointConstantArray(soap))) return NULL; - a->emplace_back(); - eml23__FloatingPointConstantArray * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__FloatingPointConstantArray *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__FloatingPointConstantArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FloatingPointConstantArray, sizeof(eml23__FloatingPointConstantArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__FloatingPointConstantArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FloatingPointConstantArray, sizeof(eml23__FloatingPointConstantArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__FloatingPointConstantArray(soap, tag, NULL, "eml23:FloatingPointConstantArray")) break; } else - { if (!soap_in_PointerToeml23__FloatingPointConstantArray(soap, tag, n, "eml23:FloatingPointConstantArray")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__FloatingPointConstantArray(soap, tag, &n, "eml23:FloatingPointConstantArray")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -452968,21 +453196,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__MarkerInterval(soap))) return NULL; - a->emplace_back(); - resqml22__MarkerInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__MarkerInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__MarkerInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__MarkerInterval, sizeof(resqml22__MarkerInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__MarkerInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__MarkerInterval, sizeof(resqml22__MarkerInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__MarkerInterval(soap, tag, NULL, "resqml22:MarkerInterval")) break; } else - { if (!soap_in_PointerToresqml22__MarkerInterval(soap, tag, n, "resqml22:MarkerInterval")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__MarkerInterval(soap, tag, &n, "resqml22:MarkerInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453058,21 +453288,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__MarkerBoundary(soap))) return NULL; - a->emplace_back(); - resqml22__MarkerBoundary * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__MarkerBoundary *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__MarkerBoundary, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__MarkerBoundary, sizeof(resqml22__MarkerBoundary), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__MarkerBoundary, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__MarkerBoundary, sizeof(resqml22__MarkerBoundary), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__MarkerBoundary(soap, tag, NULL, "resqml22:MarkerBoundary")) break; } else - { if (!soap_in_PointerToresqml22__MarkerBoundary(soap, tag, n, "resqml22:MarkerBoundary")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__MarkerBoundary(soap, tag, &n, "resqml22:MarkerBoundary")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453148,21 +453380,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__IntervalStratigraphicUnits(soap))) return NULL; - a->emplace_back(); - resqml22__IntervalStratigraphicUnits * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__IntervalStratigraphicUnits *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__IntervalStratigraphicUnits, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__IntervalStratigraphicUnits, sizeof(resqml22__IntervalStratigraphicUnits), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__IntervalStratigraphicUnits, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__IntervalStratigraphicUnits, sizeof(resqml22__IntervalStratigraphicUnits), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__IntervalStratigraphicUnits(soap, tag, NULL, "resqml22:IntervalStratigraphicUnits")) break; } else - { if (!soap_in_PointerToresqml22__IntervalStratigraphicUnits(soap, tag, n, "resqml22:IntervalStratigraphicUnits")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__IntervalStratigraphicUnits(soap, tag, &n, "resqml22:IntervalStratigraphicUnits")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453238,21 +453472,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__AbstractPoint3dArray(soap))) return NULL; - a->emplace_back(); - resqml22__AbstractPoint3dArray * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AbstractPoint3dArray *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractPoint3dArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractPoint3dArray, sizeof(resqml22__AbstractPoint3dArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractPoint3dArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractPoint3dArray, sizeof(resqml22__AbstractPoint3dArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AbstractPoint3dArray(soap, tag, NULL, "resqml22:AbstractPoint3dArray")) break; } else - { if (!soap_in_PointerToresqml22__AbstractPoint3dArray(soap, tag, n, "resqml22:AbstractPoint3dArray")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AbstractPoint3dArray(soap, tag, &n, "resqml22:AbstractPoint3dArray")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453328,21 +453564,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractValueArray(soap))) return NULL; - a->emplace_back(); - eml23__AbstractValueArray * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractValueArray *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractValueArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractValueArray, sizeof(eml23__AbstractValueArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractValueArray, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractValueArray, sizeof(eml23__AbstractValueArray), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractValueArray(soap, tag, NULL, "eml23:AbstractValueArray")) break; } else - { if (!soap_in_PointerToeml23__AbstractValueArray(soap, tag, n, "eml23:AbstractValueArray")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractValueArray(soap, tag, &n, "eml23:AbstractValueArray")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453418,21 +453656,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__DiscreteColorMapEntry(soap))) return NULL; - a->emplace_back(); - resqml22__DiscreteColorMapEntry * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__DiscreteColorMapEntry *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__DiscreteColorMapEntry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__DiscreteColorMapEntry, sizeof(resqml22__DiscreteColorMapEntry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__DiscreteColorMapEntry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__DiscreteColorMapEntry, sizeof(resqml22__DiscreteColorMapEntry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__DiscreteColorMapEntry(soap, tag, NULL, "resqml22:DiscreteColorMapEntry")) break; } else - { if (!soap_in_PointerToresqml22__DiscreteColorMapEntry(soap, tag, n, "resqml22:DiscreteColorMapEntry")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__DiscreteColorMapEntry(soap, tag, &n, "resqml22:DiscreteColorMapEntry")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453508,21 +453748,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ContinuousColorMapEntry(soap))) return NULL; - a->emplace_back(); - resqml22__ContinuousColorMapEntry * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ContinuousColorMapEntry *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ContinuousColorMapEntry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContinuousColorMapEntry, sizeof(resqml22__ContinuousColorMapEntry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ContinuousColorMapEntry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContinuousColorMapEntry, sizeof(resqml22__ContinuousColorMapEntry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ContinuousColorMapEntry(soap, tag, NULL, "resqml22:ContinuousColorMapEntry")) break; } else - { if (!soap_in_PointerToresqml22__ContinuousColorMapEntry(soap, tag, n, "resqml22:ContinuousColorMapEntry")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ContinuousColorMapEntry(soap, tag, &n, "resqml22:ContinuousColorMapEntry")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453598,21 +453840,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__AdditionalGridPoints(soap))) return NULL; - a->emplace_back(); - resqml22__AdditionalGridPoints * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AdditionalGridPoints *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AdditionalGridPoints, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AdditionalGridPoints, sizeof(resqml22__AdditionalGridPoints), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AdditionalGridPoints, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AdditionalGridPoints, sizeof(resqml22__AdditionalGridPoints), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AdditionalGridPoints(soap, tag, NULL, "resqml22:AdditionalGridPoints")) break; } else - { if (!soap_in_PointerToresqml22__AdditionalGridPoints(soap, tag, n, "resqml22:AdditionalGridPoints")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AdditionalGridPoints(soap, tag, &n, "resqml22:AdditionalGridPoints")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453688,21 +453932,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__SubRepresentationPatch(soap))) return NULL; - a->emplace_back(); - resqml22__SubRepresentationPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__SubRepresentationPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__SubRepresentationPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__SubRepresentationPatch, sizeof(resqml22__SubRepresentationPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__SubRepresentationPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__SubRepresentationPatch, sizeof(resqml22__SubRepresentationPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__SubRepresentationPatch(soap, tag, NULL, "resqml22:SubRepresentationPatch")) break; } else - { if (!soap_in_PointerToresqml22__SubRepresentationPatch(soap, tag, n, "resqml22:SubRepresentationPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__SubRepresentationPatch(soap, tag, &n, "resqml22:SubRepresentationPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453778,21 +454024,23 @@ SOAP_FMAC3 std::vector * SOAP_FMA } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__AbstractContactInterpretationPart(soap))) return NULL; - a->emplace_back(); - resqml22__AbstractContactInterpretationPart * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AbstractContactInterpretationPart *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractContactInterpretationPart, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractContactInterpretationPart, sizeof(resqml22__AbstractContactInterpretationPart), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractContactInterpretationPart, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractContactInterpretationPart, sizeof(resqml22__AbstractContactInterpretationPart), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AbstractContactInterpretationPart(soap, tag, NULL, "resqml22:AbstractContactInterpretationPart")) break; } else - { if (!soap_in_PointerToresqml22__AbstractContactInterpretationPart(soap, tag, n, "resqml22:AbstractContactInterpretationPart")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AbstractContactInterpretationPart(soap, tag, &n, "resqml22:AbstractContactInterpretationPart")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453868,21 +454116,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__PolylineSetPatch(soap))) return NULL; - a->emplace_back(); - resqml22__PolylineSetPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__PolylineSetPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__PolylineSetPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__PolylineSetPatch, sizeof(resqml22__PolylineSetPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__PolylineSetPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__PolylineSetPatch, sizeof(resqml22__PolylineSetPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__PolylineSetPatch(soap, tag, NULL, "resqml22:PolylineSetPatch")) break; } else - { if (!soap_in_PointerToresqml22__PolylineSetPatch(soap, tag, n, "resqml22:PolylineSetPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__PolylineSetPatch(soap, tag, &n, "resqml22:PolylineSetPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -453958,21 +454208,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__PointGeometry(soap))) return NULL; - a->emplace_back(); - resqml22__PointGeometry * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__PointGeometry *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__PointGeometry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__PointGeometry, sizeof(resqml22__PointGeometry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__PointGeometry, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__PointGeometry, sizeof(resqml22__PointGeometry), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__PointGeometry(soap, tag, NULL, "resqml22:PointGeometry")) break; } else - { if (!soap_in_PointerToresqml22__PointGeometry(soap, tag, n, "resqml22:PointGeometry")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__PointGeometry(soap, tag, &n, "resqml22:PointGeometry")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454048,21 +454300,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__PatchBoundaries(soap))) return NULL; - a->emplace_back(); - resqml22__PatchBoundaries * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__PatchBoundaries *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__PatchBoundaries, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__PatchBoundaries, sizeof(resqml22__PatchBoundaries), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__PatchBoundaries, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__PatchBoundaries, sizeof(resqml22__PatchBoundaries), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__PatchBoundaries(soap, tag, NULL, "resqml22:PatchBoundaries")) break; } else - { if (!soap_in_PointerToresqml22__PatchBoundaries(soap, tag, n, "resqml22:PatchBoundaries")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__PatchBoundaries(soap, tag, &n, "resqml22:PatchBoundaries")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454138,21 +454392,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ThreePoint3d(soap))) return NULL; - a->emplace_back(); - resqml22__ThreePoint3d * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ThreePoint3d *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ThreePoint3d, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ThreePoint3d, sizeof(resqml22__ThreePoint3d), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ThreePoint3d, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ThreePoint3d, sizeof(resqml22__ThreePoint3d), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ThreePoint3d(soap, tag, NULL, "resqml22:ThreePoint3d")) break; } else - { if (!soap_in_PointerToresqml22__ThreePoint3d(soap, tag, n, "resqml22:ThreePoint3d")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ThreePoint3d(soap, tag, &n, "resqml22:ThreePoint3d")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454189,33 +454445,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ReservoirZoneSubModel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ReservoirZoneSubModel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ReservoirZoneSubModel(soap, tag, id, &(*i), "prodml22:ReservoirZoneSubModel")) + if (soap_out_PointerToprodml23__ReservoirZoneSubModel(soap, tag, id, &(*i), "prodml23:ReservoirZoneSubModel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454226,23 +454482,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap))) return NULL; - a->emplace_back(); - prodml22__ReservoirZoneSubModel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ReservoirZoneSubModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel, sizeof(prodml22__ReservoirZoneSubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel, sizeof(prodml23__ReservoirZoneSubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ReservoirZoneSubModel(soap, tag, NULL, "prodml22:ReservoirZoneSubModel")) + if (!soap_in_PointerToprodml23__ReservoirZoneSubModel(soap, tag, NULL, "prodml23:ReservoirZoneSubModel")) break; } else - { if (!soap_in_PointerToprodml22__ReservoirZoneSubModel(soap, tag, n, "prodml22:ReservoirZoneSubModel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ReservoirZoneSubModel(soap, tag, &n, "prodml23:ReservoirZoneSubModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454253,23 +454511,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454279,33 +454537,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ins return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__InternalFaultSubModel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__InternalFaultSubModel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__InternalFaultSubModel(soap, tag, id, &(*i), "prodml22:InternalFaultSubModel")) + if (soap_out_PointerToprodml23__InternalFaultSubModel(soap, tag, id, &(*i), "prodml23:InternalFaultSubModel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454316,23 +454574,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap))) return NULL; - a->emplace_back(); - prodml22__InternalFaultSubModel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__InternalFaultSubModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel, sizeof(prodml22__InternalFaultSubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel, sizeof(prodml23__InternalFaultSubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__InternalFaultSubModel(soap, tag, NULL, "prodml22:InternalFaultSubModel")) + if (!soap_in_PointerToprodml23__InternalFaultSubModel(soap, tag, NULL, "prodml23:InternalFaultSubModel")) break; } else - { if (!soap_in_PointerToprodml22__InternalFaultSubModel(soap, tag, n, "prodml22:InternalFaultSubModel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__InternalFaultSubModel(soap, tag, &n, "prodml23:InternalFaultSubModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454343,23 +454603,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454369,33 +454629,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ins return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SingleBoundarySubModel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SingleBoundarySubModel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SingleBoundarySubModel(soap, tag, id, &(*i), "prodml22:SingleBoundarySubModel")) + if (soap_out_PointerToprodml23__SingleBoundarySubModel(soap, tag, id, &(*i), "prodml23:SingleBoundarySubModel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454406,23 +454666,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap))) return NULL; - a->emplace_back(); - prodml22__SingleBoundarySubModel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SingleBoundarySubModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel, sizeof(prodml22__SingleBoundarySubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel, sizeof(prodml23__SingleBoundarySubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SingleBoundarySubModel(soap, tag, NULL, "prodml22:SingleBoundarySubModel")) + if (!soap_in_PointerToprodml23__SingleBoundarySubModel(soap, tag, NULL, "prodml23:SingleBoundarySubModel")) break; } else - { if (!soap_in_PointerToprodml22__SingleBoundarySubModel(soap, tag, n, "prodml22:SingleBoundarySubModel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SingleBoundarySubModel(soap, tag, &n, "prodml23:SingleBoundarySubModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454433,23 +454695,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454459,33 +454721,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SingleFractureSubModel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SingleFractureSubModel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SingleFractureSubModel(soap, tag, id, &(*i), "prodml22:SingleFractureSubModel")) + if (soap_out_PointerToprodml23__SingleFractureSubModel(soap, tag, id, &(*i), "prodml23:SingleFractureSubModel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454496,23 +454758,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap))) return NULL; - a->emplace_back(); - prodml22__SingleFractureSubModel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SingleFractureSubModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel, sizeof(prodml22__SingleFractureSubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel, sizeof(prodml23__SingleFractureSubModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SingleFractureSubModel(soap, tag, NULL, "prodml22:SingleFractureSubModel")) + if (!soap_in_PointerToprodml23__SingleFractureSubModel(soap, tag, NULL, "prodml23:SingleFractureSubModel")) break; } else - { if (!soap_in_PointerToprodml22__SingleFractureSubModel(soap, tag, n, "prodml22:SingleFractureSubModel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SingleFractureSubModel(soap, tag, &n, "prodml23:SingleFractureSubModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454523,23 +454787,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454549,33 +454813,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FlowTestMeasurementSet(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FlowTestMeasurementSet(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FlowTestMeasurementSet(soap, tag, id, &(*i), "prodml22:FlowTestMeasurementSet")) + if (soap_out_PointerToprodml23__FlowTestMeasurementSet(soap, tag, id, &(*i), "prodml23:FlowTestMeasurementSet")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454586,23 +454850,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap))) return NULL; - a->emplace_back(); - prodml22__FlowTestMeasurementSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__FlowTestMeasurementSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet, sizeof(prodml22__FlowTestMeasurementSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet, sizeof(prodml23__FlowTestMeasurementSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, tag, NULL, "prodml22:FlowTestMeasurementSet")) + if (!soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, tag, NULL, "prodml23:FlowTestMeasurementSet")) break; } else - { if (!soap_in_PointerToprodml22__FlowTestMeasurementSet(soap, tag, n, "prodml22:FlowTestMeasurementSet")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FlowTestMeasurementSet(soap, tag, &n, "prodml23:FlowTestMeasurementSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454613,23 +454879,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454639,33 +454905,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__WaterSampleComponent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__WaterSampleComponent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__WaterSampleComponent(soap, tag, id, &(*i), "prodml22:WaterSampleComponent")) + if (soap_out_PointerToprodml23__WaterSampleComponent(soap, tag, id, &(*i), "prodml23:WaterSampleComponent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454676,23 +454942,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap))) return NULL; - a->emplace_back(); - prodml22__WaterSampleComponent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__WaterSampleComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent, sizeof(prodml22__WaterSampleComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent, sizeof(prodml23__WaterSampleComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__WaterSampleComponent(soap, tag, NULL, "prodml22:WaterSampleComponent")) + if (!soap_in_PointerToprodml23__WaterSampleComponent(soap, tag, NULL, "prodml23:WaterSampleComponent")) break; } else - { if (!soap_in_PointerToprodml22__WaterSampleComponent(soap, tag, n, "prodml22:WaterSampleComponent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__WaterSampleComponent(soap, tag, &n, "prodml23:WaterSampleComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454703,23 +454971,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454729,33 +454997,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__WaterAnalysisTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__WaterAnalysisTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__WaterAnalysisTest(soap, tag, id, &(*i), "prodml22:WaterAnalysisTest")) + if (soap_out_PointerToprodml23__WaterAnalysisTest(soap, tag, id, &(*i), "prodml23:WaterAnalysisTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454766,23 +455034,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap))) return NULL; - a->emplace_back(); - prodml22__WaterAnalysisTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__WaterAnalysisTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest, sizeof(prodml22__WaterAnalysisTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest, sizeof(prodml23__WaterAnalysisTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__WaterAnalysisTest(soap, tag, NULL, "prodml22:WaterAnalysisTest")) + if (!soap_in_PointerToprodml23__WaterAnalysisTest(soap, tag, NULL, "prodml23:WaterAnalysisTest")) break; } else - { if (!soap_in_PointerToprodml22__WaterAnalysisTest(soap, tag, n, "prodml22:WaterAnalysisTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__WaterAnalysisTest(soap, tag, &n, "prodml23:WaterAnalysisTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454793,23 +455063,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454819,33 +455089,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__NonHydrocarbonTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__NonHydrocarbonTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__NonHydrocarbonTest(soap, tag, id, &(*i), "prodml22:NonHydrocarbonTest")) + if (soap_out_PointerToprodml23__NonHydrocarbonTest(soap, tag, id, &(*i), "prodml23:NonHydrocarbonTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454856,23 +455126,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap))) return NULL; - a->emplace_back(); - prodml22__NonHydrocarbonTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__NonHydrocarbonTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest, sizeof(prodml22__NonHydrocarbonTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest, sizeof(prodml23__NonHydrocarbonTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__NonHydrocarbonTest(soap, tag, NULL, "prodml22:NonHydrocarbonTest")) + if (!soap_in_PointerToprodml23__NonHydrocarbonTest(soap, tag, NULL, "prodml23:NonHydrocarbonTest")) break; } else - { if (!soap_in_PointerToprodml22__NonHydrocarbonTest(soap, tag, n, "prodml22:NonHydrocarbonTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__NonHydrocarbonTest(soap, tag, &n, "prodml23:NonHydrocarbonTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454883,23 +455155,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454909,33 +455181,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instan return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__InterfacialTensionTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__InterfacialTensionTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__InterfacialTensionTest(soap, tag, id, &(*i), "prodml22:InterfacialTensionTest")) + if (soap_out_PointerToprodml23__InterfacialTensionTest(soap, tag, id, &(*i), "prodml23:InterfacialTensionTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -454946,23 +455218,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap))) return NULL; - a->emplace_back(); - prodml22__InterfacialTensionTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__InterfacialTensionTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest, sizeof(prodml22__InterfacialTensionTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest, sizeof(prodml23__InterfacialTensionTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__InterfacialTensionTest(soap, tag, NULL, "prodml22:InterfacialTensionTest")) + if (!soap_in_PointerToprodml23__InterfacialTensionTest(soap, tag, NULL, "prodml23:InterfacialTensionTest")) break; } else - { if (!soap_in_PointerToprodml22__InterfacialTensionTest(soap, tag, n, "prodml22:InterfacialTensionTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__InterfacialTensionTest(soap, tag, &n, "prodml23:InterfacialTensionTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -454973,23 +455247,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -454999,33 +455273,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__STOAnalysis(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__STOAnalysis(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__STOAnalysis(soap, tag, id, &(*i), "prodml22:STOAnalysis")) + if (soap_out_PointerToprodml23__STOAnalysis(soap, tag, id, &(*i), "prodml23:STOAnalysis")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455036,23 +455310,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap))) return NULL; - a->emplace_back(); - prodml22__STOAnalysis * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__STOAnalysis *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis, sizeof(prodml22__STOAnalysis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis, sizeof(prodml23__STOAnalysis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__STOAnalysis(soap, tag, NULL, "prodml22:STOAnalysis")) + if (!soap_in_PointerToprodml23__STOAnalysis(soap, tag, NULL, "prodml23:STOAnalysis")) break; } else - { if (!soap_in_PointerToprodml22__STOAnalysis(soap, tag, n, "prodml22:STOAnalysis")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__STOAnalysis(soap, tag, &n, "prodml23:STOAnalysis")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455063,23 +455339,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__STOAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__STOAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455089,33 +455365,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__MultipleContactMiscibilityTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__MultipleContactMiscibilityTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag, id, &(*i), "prodml22:MultipleContactMiscibilityTest")) + if (soap_out_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag, id, &(*i), "prodml23:MultipleContactMiscibilityTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455126,23 +455402,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap))) return NULL; - a->emplace_back(); - prodml22__MultipleContactMiscibilityTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__MultipleContactMiscibilityTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest, sizeof(prodml22__MultipleContactMiscibilityTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest, sizeof(prodml23__MultipleContactMiscibilityTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag, NULL, "prodml22:MultipleContactMiscibilityTest")) + if (!soap_in_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag, NULL, "prodml23:MultipleContactMiscibilityTest")) break; } else - { if (!soap_in_PointerToprodml22__MultipleContactMiscibilityTest(soap, tag, n, "prodml22:MultipleContactMiscibilityTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__MultipleContactMiscibilityTest(soap, tag, &n, "prodml23:MultipleContactMiscibilityTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455153,23 +455431,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455179,33 +455457,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SlimTubeTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SlimTubeTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SlimTubeTest(soap, tag, id, &(*i), "prodml22:SlimTubeTest")) + if (soap_out_PointerToprodml23__SlimTubeTest(soap, tag, id, &(*i), "prodml23:SlimTubeTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455216,23 +455494,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap))) return NULL; - a->emplace_back(); - prodml22__SlimTubeTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SlimTubeTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest, sizeof(prodml22__SlimTubeTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest, sizeof(prodml23__SlimTubeTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SlimTubeTest(soap, tag, NULL, "prodml22:SlimTubeTest")) + if (!soap_in_PointerToprodml23__SlimTubeTest(soap, tag, NULL, "prodml23:SlimTubeTest")) break; } else - { if (!soap_in_PointerToprodml22__SlimTubeTest(soap, tag, n, "prodml22:SlimTubeTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SlimTubeTest(soap, tag, &n, "prodml23:SlimTubeTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455243,23 +455523,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455269,33 +455549,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SwellingTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SwellingTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SwellingTest(soap, tag, id, &(*i), "prodml22:SwellingTest")) + if (soap_out_PointerToprodml23__SwellingTest(soap, tag, id, &(*i), "prodml23:SwellingTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455306,23 +455586,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap))) return NULL; - a->emplace_back(); - prodml22__SwellingTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SwellingTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest, sizeof(prodml22__SwellingTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest, sizeof(prodml23__SwellingTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SwellingTest(soap, tag, NULL, "prodml22:SwellingTest")) + if (!soap_in_PointerToprodml23__SwellingTest(soap, tag, NULL, "prodml23:SwellingTest")) break; } else - { if (!soap_in_PointerToprodml22__SwellingTest(soap, tag, n, "prodml22:SwellingTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SwellingTest(soap, tag, &n, "prodml23:SwellingTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455333,23 +455615,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455359,33 +455641,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__VaporLiquidEquilibriumTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__VaporLiquidEquilibriumTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag, id, &(*i), "prodml22:VaporLiquidEquilibriumTest")) + if (soap_out_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag, id, &(*i), "prodml23:VaporLiquidEquilibriumTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455396,23 +455678,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap))) return NULL; - a->emplace_back(); - prodml22__VaporLiquidEquilibriumTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__VaporLiquidEquilibriumTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest, sizeof(prodml22__VaporLiquidEquilibriumTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest, sizeof(prodml23__VaporLiquidEquilibriumTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag, NULL, "prodml22:VaporLiquidEquilibriumTest")) + if (!soap_in_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag, NULL, "prodml23:VaporLiquidEquilibriumTest")) break; } else - { if (!soap_in_PointerToprodml22__VaporLiquidEquilibriumTest(soap, tag, n, "prodml22:VaporLiquidEquilibriumTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__VaporLiquidEquilibriumTest(soap, tag, &n, "prodml23:VaporLiquidEquilibriumTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455423,23 +455707,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455449,33 +455733,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soa return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__OtherMeasurementTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__OtherMeasurementTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__OtherMeasurementTest(soap, tag, id, &(*i), "prodml22:OtherMeasurementTest")) + if (soap_out_PointerToprodml23__OtherMeasurementTest(soap, tag, id, &(*i), "prodml23:OtherMeasurementTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455486,23 +455770,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap))) return NULL; - a->emplace_back(); - prodml22__OtherMeasurementTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__OtherMeasurementTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest, sizeof(prodml22__OtherMeasurementTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest, sizeof(prodml23__OtherMeasurementTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__OtherMeasurementTest(soap, tag, NULL, "prodml22:OtherMeasurementTest")) + if (!soap_in_PointerToprodml23__OtherMeasurementTest(soap, tag, NULL, "prodml23:OtherMeasurementTest")) break; } else - { if (!soap_in_PointerToprodml22__OtherMeasurementTest(soap, tag, n, "prodml22:OtherMeasurementTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__OtherMeasurementTest(soap, tag, &n, "prodml23:OtherMeasurementTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455513,23 +455799,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455539,33 +455825,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidSeparatorTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidSeparatorTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidSeparatorTest(soap, tag, id, &(*i), "prodml22:FluidSeparatorTest")) + if (soap_out_PointerToprodml23__FluidSeparatorTest(soap, tag, id, &(*i), "prodml23:FluidSeparatorTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455576,23 +455862,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap))) return NULL; - a->emplace_back(); - prodml22__FluidSeparatorTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__FluidSeparatorTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest, sizeof(prodml22__FluidSeparatorTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest, sizeof(prodml23__FluidSeparatorTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidSeparatorTest(soap, tag, NULL, "prodml22:FluidSeparatorTest")) + if (!soap_in_PointerToprodml23__FluidSeparatorTest(soap, tag, NULL, "prodml23:FluidSeparatorTest")) break; } else - { if (!soap_in_PointerToprodml22__FluidSeparatorTest(soap, tag, n, "prodml22:FluidSeparatorTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidSeparatorTest(soap, tag, &n, "prodml23:FluidSeparatorTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455603,23 +455891,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455629,33 +455917,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instan return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ConstantVolumeDepletionTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ConstantVolumeDepletionTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag, id, &(*i), "prodml22:ConstantVolumeDepletionTest")) + if (soap_out_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag, id, &(*i), "prodml23:ConstantVolumeDepletionTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455666,23 +455954,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap))) return NULL; - a->emplace_back(); - prodml22__ConstantVolumeDepletionTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ConstantVolumeDepletionTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest, sizeof(prodml22__ConstantVolumeDepletionTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest, sizeof(prodml23__ConstantVolumeDepletionTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag, NULL, "prodml22:ConstantVolumeDepletionTest")) + if (!soap_in_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag, NULL, "prodml23:ConstantVolumeDepletionTest")) break; } else - { if (!soap_in_PointerToprodml22__ConstantVolumeDepletionTest(soap, tag, n, "prodml22:ConstantVolumeDepletionTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ConstantVolumeDepletionTest(soap, tag, &n, "prodml23:ConstantVolumeDepletionTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455693,23 +455983,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455719,33 +456009,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 so return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__DifferentialLiberationTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__DifferentialLiberationTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__DifferentialLiberationTest(soap, tag, id, &(*i), "prodml22:DifferentialLiberationTest")) + if (soap_out_PointerToprodml23__DifferentialLiberationTest(soap, tag, id, &(*i), "prodml23:DifferentialLiberationTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455756,23 +456046,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap))) return NULL; - a->emplace_back(); - prodml22__DifferentialLiberationTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__DifferentialLiberationTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest, sizeof(prodml22__DifferentialLiberationTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest, sizeof(prodml23__DifferentialLiberationTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__DifferentialLiberationTest(soap, tag, NULL, "prodml22:DifferentialLiberationTest")) + if (!soap_in_PointerToprodml23__DifferentialLiberationTest(soap, tag, NULL, "prodml23:DifferentialLiberationTest")) break; } else - { if (!soap_in_PointerToprodml22__DifferentialLiberationTest(soap, tag, n, "prodml22:DifferentialLiberationTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__DifferentialLiberationTest(soap, tag, &n, "prodml23:DifferentialLiberationTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455783,23 +456075,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455809,33 +456101,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soa return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SaturationTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SaturationTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SaturationTest(soap, tag, id, &(*i), "prodml22:SaturationTest")) + if (soap_out_PointerToprodml23__SaturationTest(soap, tag, id, &(*i), "prodml23:SaturationTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455846,23 +456138,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap))) return NULL; - a->emplace_back(); - prodml22__SaturationTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SaturationTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest, sizeof(prodml22__SaturationTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest, sizeof(prodml23__SaturationTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SaturationTest(soap, tag, NULL, "prodml22:SaturationTest")) + if (!soap_in_PointerToprodml23__SaturationTest(soap, tag, NULL, "prodml23:SaturationTest")) break; } else - { if (!soap_in_PointerToprodml22__SaturationTest(soap, tag, n, "prodml22:SaturationTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SaturationTest(soap, tag, &n, "prodml23:SaturationTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455873,23 +456167,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SaturationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SaturationTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455899,33 +456193,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiat return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ConstantCompositionExpansionTest(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ConstantCompositionExpansionTest(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag, id, &(*i), "prodml22:ConstantCompositionExpansionTest")) + if (soap_out_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag, id, &(*i), "prodml23:ConstantCompositionExpansionTest")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -455936,23 +456230,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap))) return NULL; - a->emplace_back(); - prodml22__ConstantCompositionExpansionTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ConstantCompositionExpansionTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest, sizeof(prodml22__ConstantCompositionExpansionTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest, sizeof(prodml23__ConstantCompositionExpansionTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag, NULL, "prodml22:ConstantCompositionExpansionTest")) + if (!soap_in_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag, NULL, "prodml23:ConstantCompositionExpansionTest")) break; } else - { if (!soap_in_PointerToprodml22__ConstantCompositionExpansionTest(soap, tag, n, "prodml22:ConstantCompositionExpansionTest")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ConstantCompositionExpansionTest(soap, tag, &n, "prodml23:ConstantCompositionExpansionTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -455963,23 +456259,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -455989,33 +456285,33 @@ SOAP_FMAC1 std::vector * SOAP_FMA return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, id, &(*i), "prodml22:AtmosphericFlashTestAndCompositionalAnalysis")) + if (soap_out_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, id, &(*i), "prodml23:AtmosphericFlashTestAndCompositionalAnalysis")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -456026,23 +456322,25 @@ SOAP_FMAC3 std::vector break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap))) return NULL; - a->emplace_back(); - prodml22__AtmosphericFlashTestAndCompositionalAnalysis * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__AtmosphericFlashTestAndCompositionalAnalysis *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml22__AtmosphericFlashTestAndCompositionalAnalysis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis, sizeof(prodml23__AtmosphericFlashTestAndCompositionalAnalysis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis")) + if (!soap_in_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, NULL, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis")) break; } else - { if (!soap_in_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, n, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, tag, &n, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456053,23 +456351,23 @@ SOAP_FMAC3 std::vector return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -456118,21 +456416,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics(soap))) return NULL; - a->emplace_back(); - eml23__IntegerArrayStatistics * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__IntegerArrayStatistics *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__IntegerArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics, sizeof(eml23__IntegerArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__IntegerArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__IntegerArrayStatistics, sizeof(eml23__IntegerArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__IntegerArrayStatistics(soap, tag, NULL, "eml23:IntegerArrayStatistics")) break; } else - { if (!soap_in_PointerToeml23__IntegerArrayStatistics(soap, tag, n, "eml23:IntegerArrayStatistics")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__IntegerArrayStatistics(soap, tag, &n, "eml23:IntegerArrayStatistics")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456208,21 +456508,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__FloatingPointArrayStatistics(soap))) return NULL; - a->emplace_back(); - eml23__FloatingPointArrayStatistics * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__FloatingPointArrayStatistics *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__FloatingPointArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FloatingPointArrayStatistics, sizeof(eml23__FloatingPointArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__FloatingPointArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FloatingPointArrayStatistics, sizeof(eml23__FloatingPointArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__FloatingPointArrayStatistics(soap, tag, NULL, "eml23:FloatingPointArrayStatistics")) break; } else - { if (!soap_in_PointerToeml23__FloatingPointArrayStatistics(soap, tag, n, "eml23:FloatingPointArrayStatistics")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__FloatingPointArrayStatistics(soap, tag, &n, "eml23:FloatingPointArrayStatistics")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456298,21 +456600,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__SourceTrajectoryStation(soap))) return NULL; - a->emplace_back(); - witsml21__SourceTrajectoryStation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__SourceTrajectoryStation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__SourceTrajectoryStation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SourceTrajectoryStation, sizeof(witsml21__SourceTrajectoryStation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__SourceTrajectoryStation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SourceTrajectoryStation, sizeof(witsml21__SourceTrajectoryStation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__SourceTrajectoryStation(soap, tag, NULL, "witsml21:SourceTrajectoryStation")) break; } else - { if (!soap_in_PointerTowitsml21__SourceTrajectoryStation(soap, tag, n, "witsml21:SourceTrajectoryStation")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__SourceTrajectoryStation(soap, tag, &n, "witsml21:SourceTrajectoryStation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456388,21 +456692,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ChannelSet(soap))) return NULL; - a->emplace_back(); - witsml21__ChannelSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ChannelSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ChannelSet, sizeof(witsml21__ChannelSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ChannelSet, sizeof(witsml21__ChannelSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ChannelSet(soap, tag, NULL, "witsml21:ChannelSet")) break; } else - { if (!soap_in_PointerTowitsml21__ChannelSet(soap, tag, n, "witsml21:ChannelSet")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ChannelSet(soap, tag, &n, "witsml21:ChannelSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456478,21 +456784,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Channel(soap))) return NULL; - a->emplace_back(); - witsml21__Channel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Channel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Channel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Channel, sizeof(witsml21__Channel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Channel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Channel, sizeof(witsml21__Channel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Channel(soap, tag, NULL, "witsml21:Channel")) break; } else - { if (!soap_in_PointerTowitsml21__Channel(soap, tag, n, "witsml21:Channel")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Channel(soap, tag, &n, "witsml21:Channel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456568,21 +456876,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PointMetadata(soap))) return NULL; - a->emplace_back(); - witsml21__PointMetadata * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PointMetadata *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PointMetadata, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PointMetadata, sizeof(witsml21__PointMetadata), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PointMetadata, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PointMetadata, sizeof(witsml21__PointMetadata), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PointMetadata(soap, tag, NULL, "witsml21:PointMetadata")) break; } else - { if (!soap_in_PointerTowitsml21__PointMetadata(soap, tag, n, "witsml21:PointMetadata")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PointMetadata(soap, tag, &n, "witsml21:PointMetadata")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456658,21 +456968,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ChannelIndex(soap))) return NULL; - a->emplace_back(); - witsml21__ChannelIndex * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ChannelIndex *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelIndex, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ChannelIndex, sizeof(witsml21__ChannelIndex), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelIndex, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ChannelIndex, sizeof(witsml21__ChannelIndex), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ChannelIndex(soap, tag, NULL, "witsml21:ChannelIndex")) break; } else - { if (!soap_in_PointerTowitsml21__ChannelIndex(soap, tag, n, "witsml21:ChannelIndex")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ChannelIndex(soap, tag, &n, "witsml21:ChannelIndex")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456748,21 +457060,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PassDetail(soap))) return NULL; - a->emplace_back(); - witsml21__PassDetail * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PassDetail *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PassDetail, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PassDetail, sizeof(witsml21__PassDetail), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PassDetail, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PassDetail, sizeof(witsml21__PassDetail), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PassDetail(soap, tag, NULL, "witsml21:PassDetail")) break; } else - { if (!soap_in_PointerTowitsml21__PassDetail(soap, tag, n, "witsml21:PassDetail")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PassDetail(soap, tag, &n, "witsml21:PassDetail")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456838,21 +457152,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__LithostratigraphicUnit(soap))) return NULL; - a->emplace_back(); - witsml21__LithostratigraphicUnit * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__LithostratigraphicUnit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__LithostratigraphicUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LithostratigraphicUnit, sizeof(witsml21__LithostratigraphicUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__LithostratigraphicUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LithostratigraphicUnit, sizeof(witsml21__LithostratigraphicUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__LithostratigraphicUnit(soap, tag, NULL, "witsml21:LithostratigraphicUnit")) break; } else - { if (!soap_in_PointerTowitsml21__LithostratigraphicUnit(soap, tag, n, "witsml21:LithostratigraphicUnit")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__LithostratigraphicUnit(soap, tag, &n, "witsml21:LithostratigraphicUnit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -456928,21 +457244,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__GeochronologicalUnit(soap))) return NULL; - a->emplace_back(); - witsml21__GeochronologicalUnit * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__GeochronologicalUnit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__GeochronologicalUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GeochronologicalUnit, sizeof(witsml21__GeochronologicalUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__GeochronologicalUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GeochronologicalUnit, sizeof(witsml21__GeochronologicalUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__GeochronologicalUnit(soap, tag, NULL, "witsml21:GeochronologicalUnit")) break; } else - { if (!soap_in_PointerTowitsml21__GeochronologicalUnit(soap, tag, n, "witsml21:GeochronologicalUnit")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__GeochronologicalUnit(soap, tag, &n, "witsml21:GeochronologicalUnit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457018,21 +457336,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CuttingsIntervalLithology(soap))) return NULL; - a->emplace_back(); - witsml21__CuttingsIntervalLithology * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CuttingsIntervalLithology *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsIntervalLithology, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CuttingsIntervalLithology, sizeof(witsml21__CuttingsIntervalLithology), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsIntervalLithology, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CuttingsIntervalLithology, sizeof(witsml21__CuttingsIntervalLithology), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CuttingsIntervalLithology(soap, tag, NULL, "witsml21:CuttingsIntervalLithology")) break; } else - { if (!soap_in_PointerTowitsml21__CuttingsIntervalLithology(soap, tag, n, "witsml21:CuttingsIntervalLithology")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CuttingsIntervalLithology(soap, tag, &n, "witsml21:CuttingsIntervalLithology")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457108,21 +457428,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__MudGas(soap))) return NULL; - a->emplace_back(); - witsml21__MudGas * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__MudGas *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__MudGas, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudGas, sizeof(witsml21__MudGas), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__MudGas, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudGas, sizeof(witsml21__MudGas), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__MudGas(soap, tag, NULL, "witsml21:MudGas")) break; } else - { if (!soap_in_PointerTowitsml21__MudGas(soap, tag, n, "witsml21:MudGas")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__MudGas(soap, tag, &n, "witsml21:MudGas")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457198,21 +457520,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillingParameters(soap))) return NULL; - a->emplace_back(); - witsml21__DrillingParameters * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillingParameters *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillingParameters, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillingParameters, sizeof(witsml21__DrillingParameters), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillingParameters, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillingParameters, sizeof(witsml21__DrillingParameters), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillingParameters(soap, tag, NULL, "witsml21:DrillingParameters")) break; } else - { if (!soap_in_PointerTowitsml21__DrillingParameters(soap, tag, n, "witsml21:DrillingParameters")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillingParameters(soap, tag, &n, "witsml21:DrillingParameters")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457288,21 +457612,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Shaker(soap))) return NULL; - a->emplace_back(); - witsml21__Shaker * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Shaker *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Shaker, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Shaker, sizeof(witsml21__Shaker), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Shaker, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Shaker, sizeof(witsml21__Shaker), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Shaker(soap, tag, NULL, "witsml21:Shaker")) break; } else - { if (!soap_in_PointerTowitsml21__Shaker(soap, tag, n, "witsml21:Shaker")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Shaker(soap, tag, &n, "witsml21:Shaker")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457378,21 +457704,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Degasser(soap))) return NULL; - a->emplace_back(); - witsml21__Degasser * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Degasser *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Degasser, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Degasser, sizeof(witsml21__Degasser), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Degasser, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Degasser, sizeof(witsml21__Degasser), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Degasser(soap, tag, NULL, "witsml21:Degasser")) break; } else - { if (!soap_in_PointerTowitsml21__Degasser(soap, tag, n, "witsml21:Degasser")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Degasser(soap, tag, &n, "witsml21:Degasser")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457468,21 +457796,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Hydrocyclone(soap))) return NULL; - a->emplace_back(); - witsml21__Hydrocyclone * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Hydrocyclone *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Hydrocyclone, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Hydrocyclone, sizeof(witsml21__Hydrocyclone), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Hydrocyclone, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Hydrocyclone, sizeof(witsml21__Hydrocyclone), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Hydrocyclone(soap, tag, NULL, "witsml21:Hydrocyclone")) break; } else - { if (!soap_in_PointerTowitsml21__Hydrocyclone(soap, tag, n, "witsml21:Hydrocyclone")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Hydrocyclone(soap, tag, &n, "witsml21:Hydrocyclone")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457558,21 +457888,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Centrifuge(soap))) return NULL; - a->emplace_back(); - witsml21__Centrifuge * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Centrifuge *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Centrifuge, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Centrifuge, sizeof(witsml21__Centrifuge), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Centrifuge, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Centrifuge, sizeof(witsml21__Centrifuge), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Centrifuge(soap, tag, NULL, "witsml21:Centrifuge")) break; } else - { if (!soap_in_PointerTowitsml21__Centrifuge(soap, tag, n, "witsml21:Centrifuge")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Centrifuge(soap, tag, &n, "witsml21:Centrifuge")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457648,21 +457980,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__MudPump(soap))) return NULL; - a->emplace_back(); - witsml21__MudPump * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__MudPump *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__MudPump, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudPump, sizeof(witsml21__MudPump), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__MudPump, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MudPump, sizeof(witsml21__MudPump), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__MudPump(soap, tag, NULL, "witsml21:MudPump")) break; } else - { if (!soap_in_PointerTowitsml21__MudPump(soap, tag, n, "witsml21:MudPump")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__MudPump(soap, tag, &n, "witsml21:MudPump")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457738,21 +458072,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplate } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Pit(soap))) return NULL; - a->emplace_back(); - witsml21__Pit * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Pit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Pit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Pit, sizeof(witsml21__Pit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Pit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Pit, sizeof(witsml21__Pit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Pit(soap, tag, NULL, "witsml21:Pit")) break; } else - { if (!soap_in_PointerTowitsml21__Pit(soap, tag, n, "witsml21:Pit")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Pit(soap, tag, &n, "witsml21:Pit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457828,21 +458164,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractPosition(soap))) return NULL; - a->emplace_back(); - eml23__AbstractPosition * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractPosition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractPosition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractPosition, sizeof(eml23__AbstractPosition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractPosition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractPosition, sizeof(eml23__AbstractPosition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractPosition(soap, tag, NULL, "eml23:AbstractPosition")) break; } else - { if (!soap_in_PointerToeml23__AbstractPosition(soap, tag, n, "eml23:AbstractPosition")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractPosition(soap, tag, &n, "eml23:AbstractPosition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -457918,21 +458256,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__WellPurposePeriod(soap))) return NULL; - a->emplace_back(); - witsml21__WellPurposePeriod * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__WellPurposePeriod *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__WellPurposePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WellPurposePeriod, sizeof(witsml21__WellPurposePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__WellPurposePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WellPurposePeriod, sizeof(witsml21__WellPurposePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__WellPurposePeriod(soap, tag, NULL, "witsml21:WellPurposePeriod")) break; } else - { if (!soap_in_PointerTowitsml21__WellPurposePeriod(soap, tag, n, "witsml21:WellPurposePeriod")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__WellPurposePeriod(soap, tag, &n, "witsml21:WellPurposePeriod")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458008,21 +458348,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__WellStatusPeriod(soap))) return NULL; - a->emplace_back(); - eml23__WellStatusPeriod * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__WellStatusPeriod *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__WellStatusPeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__WellStatusPeriod, sizeof(eml23__WellStatusPeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__WellStatusPeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__WellStatusPeriod, sizeof(eml23__WellStatusPeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__WellStatusPeriod(soap, tag, NULL, "eml23:WellStatusPeriod")) break; } else - { if (!soap_in_PointerToeml23__WellStatusPeriod(soap, tag, n, "eml23:WellStatusPeriod")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__WellStatusPeriod(soap, tag, &n, "eml23:WellStatusPeriod")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458098,21 +458440,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__FacilityOperator(soap))) return NULL; - a->emplace_back(); - eml23__FacilityOperator * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__FacilityOperator *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__FacilityOperator, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FacilityOperator, sizeof(eml23__FacilityOperator), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__FacilityOperator, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FacilityOperator, sizeof(eml23__FacilityOperator), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__FacilityOperator(soap, tag, NULL, "eml23:FacilityOperator")) break; } else - { if (!soap_in_PointerToeml23__FacilityOperator(soap, tag, n, "eml23:FacilityOperator")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__FacilityOperator(soap, tag, &n, "eml23:FacilityOperator")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458188,21 +458532,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__FacilityLifecyclePeriod(soap))) return NULL; - a->emplace_back(); - eml23__FacilityLifecyclePeriod * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__FacilityLifecyclePeriod *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__FacilityLifecyclePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FacilityLifecyclePeriod, sizeof(eml23__FacilityLifecyclePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__FacilityLifecyclePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FacilityLifecyclePeriod, sizeof(eml23__FacilityLifecyclePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__FacilityLifecyclePeriod(soap, tag, NULL, "eml23:FacilityLifecyclePeriod")) break; } else - { if (!soap_in_PointerToeml23__FacilityLifecyclePeriod(soap, tag, n, "eml23:FacilityLifecyclePeriod")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__FacilityLifecyclePeriod(soap, tag, &n, "eml23:FacilityLifecyclePeriod")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458278,21 +458624,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__LicensePeriod(soap))) return NULL; - a->emplace_back(); - witsml21__LicensePeriod * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__LicensePeriod *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__LicensePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LicensePeriod, sizeof(witsml21__LicensePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__LicensePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LicensePeriod, sizeof(witsml21__LicensePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__LicensePeriod(soap, tag, NULL, "witsml21:LicensePeriod")) break; } else - { if (!soap_in_PointerTowitsml21__LicensePeriod(soap, tag, n, "witsml21:LicensePeriod")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__LicensePeriod(soap, tag, &n, "witsml21:LicensePeriod")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458368,21 +458716,23 @@ SOAP_FMAC3 std::vectoremplace_back(); - resqml22__AbstractGraphicalInformationForIndexableElement * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AbstractGraphicalInformationForIndexableElement *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGraphicalInformationForIndexableElement, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractGraphicalInformationForIndexableElement, sizeof(resqml22__AbstractGraphicalInformationForIndexableElement), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractGraphicalInformationForIndexableElement, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractGraphicalInformationForIndexableElement, sizeof(resqml22__AbstractGraphicalInformationForIndexableElement), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AbstractGraphicalInformationForIndexableElement(soap, tag, NULL, "resqml22:AbstractGraphicalInformationForIndexableElement")) break; } else - { if (!soap_in_PointerToresqml22__AbstractGraphicalInformationForIndexableElement(soap, tag, n, "resqml22:AbstractGraphicalInformationForIndexableElement")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AbstractGraphicalInformationForIndexableElement(soap, tag, &n, "resqml22:AbstractGraphicalInformationForIndexableElement")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458458,21 +458808,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__AbstractColorMap(soap))) return NULL; - a->emplace_back(); - resqml22__AbstractColorMap * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__AbstractColorMap *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractColorMap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractColorMap, sizeof(resqml22__AbstractColorMap), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__AbstractColorMap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__AbstractColorMap, sizeof(resqml22__AbstractColorMap), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__AbstractColorMap(soap, tag, NULL, "resqml22:AbstractColorMap")) break; } else - { if (!soap_in_PointerToresqml22__AbstractColorMap(soap, tag, n, "resqml22:AbstractColorMap")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__AbstractColorMap(soap, tag, &n, "resqml22:AbstractColorMap")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458548,21 +458900,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ColumnSubnodePatch(soap))) return NULL; - a->emplace_back(); - resqml22__ColumnSubnodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ColumnSubnodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ColumnSubnodePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ColumnSubnodePatch, sizeof(resqml22__ColumnSubnodePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ColumnSubnodePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ColumnSubnodePatch, sizeof(resqml22__ColumnSubnodePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ColumnSubnodePatch(soap, tag, NULL, "resqml22:ColumnSubnodePatch")) break; } else - { if (!soap_in_PointerToresqml22__ColumnSubnodePatch(soap, tag, n, "resqml22:ColumnSubnodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ColumnSubnodePatch(soap, tag, &n, "resqml22:ColumnSubnodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458638,21 +458992,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__RepresentationIdentity(soap))) return NULL; - a->emplace_back(); - resqml22__RepresentationIdentity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__RepresentationIdentity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__RepresentationIdentity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__RepresentationIdentity, sizeof(resqml22__RepresentationIdentity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__RepresentationIdentity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__RepresentationIdentity, sizeof(resqml22__RepresentationIdentity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__RepresentationIdentity(soap, tag, NULL, "resqml22:RepresentationIdentity")) break; } else - { if (!soap_in_PointerToresqml22__RepresentationIdentity(soap, tag, n, "resqml22:RepresentationIdentity")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__RepresentationIdentity(soap, tag, &n, "resqml22:RepresentationIdentity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458728,21 +459084,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ContactPatch(soap))) return NULL; - a->emplace_back(); - resqml22__ContactPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ContactPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ContactPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContactPatch, sizeof(resqml22__ContactPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ContactPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ContactPatch, sizeof(resqml22__ContactPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ContactPatch(soap, tag, NULL, "resqml22:ContactPatch")) break; } else - { if (!soap_in_PointerToresqml22__ContactPatch(soap, tag, n, "resqml22:ContactPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ContactPatch(soap, tag, &n, "resqml22:ContactPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458818,21 +459176,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__Point3dLatticeDimension(soap))) return NULL; - a->emplace_back(); - resqml22__Point3dLatticeDimension * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__Point3dLatticeDimension *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__Point3dLatticeDimension, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__Point3dLatticeDimension, sizeof(resqml22__Point3dLatticeDimension), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__Point3dLatticeDimension, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__Point3dLatticeDimension, sizeof(resqml22__Point3dLatticeDimension), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__Point3dLatticeDimension(soap, tag, NULL, "resqml22:Point3dLatticeDimension")) break; } else - { if (!soap_in_PointerToresqml22__Point3dLatticeDimension(soap, tag, n, "resqml22:Point3dLatticeDimension")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__Point3dLatticeDimension(soap, tag, &n, "resqml22:Point3dLatticeDimension")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458869,33 +459229,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_i return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AbstractValue(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AbstractValue(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AbstractValue(soap, tag, id, &(*i), "prodml22:AbstractValue")) + if (soap_out_PointerToprodml23__AbstractValue(soap, tag, id, &(*i), "prodml23:AbstractValue")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -458906,23 +459266,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__AbstractValue * *n = &a->back(); - *n = NULL; + } + prodml23__AbstractValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue, sizeof(prodml22__AbstractValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue, sizeof(prodml23__AbstractValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AbstractValue(soap, tag, NULL, "prodml22:AbstractValue")) + if (!soap_in_PointerToprodml23__AbstractValue(soap, tag, NULL, "prodml23:AbstractValue")) break; } else - { if (!soap_in_PointerToprodml22__AbstractValue(soap, tag, n, "prodml22:AbstractValue")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AbstractValue(soap, tag, &n, "prodml23:AbstractValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -458933,23 +459295,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -458959,33 +459321,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__KeywordValueStruct(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__KeywordValueStruct(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__KeywordValueStruct(soap, tag, id, &(*i), "prodml22:KeywordValueStruct")) + if (soap_out_PointerToprodml23__KeywordValueStruct(soap, tag, id, &(*i), "prodml23:KeywordValueStruct")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -458996,23 +459358,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__KeywordValueStruct * *n = &a->back(); - *n = NULL; + } + prodml23__KeywordValueStruct *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct, sizeof(prodml22__KeywordValueStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct, sizeof(prodml23__KeywordValueStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__KeywordValueStruct(soap, tag, NULL, "prodml22:KeywordValueStruct")) + if (!soap_in_PointerToprodml23__KeywordValueStruct(soap, tag, NULL, "prodml23:KeywordValueStruct")) break; } else - { if (!soap_in_PointerToprodml22__KeywordValueStruct(soap, tag, n, "prodml22:KeywordValueStruct")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__KeywordValueStruct(soap, tag, &n, "prodml23:KeywordValueStruct")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459023,23 +459387,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459049,31 +459413,31 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instan return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml22__FlowQualifier(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml23__FlowQualifier(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml22__FlowQualifier(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml23__FlowQualifier(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml22__FlowQualifier(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml23__FlowQualifier(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_prodml22__FlowQualifier(soap, tag, id, &(*i), "prodml22:FlowQualifier")) + if (soap_out_prodml23__FlowQualifier(soap, tag, id, &(*i), "prodml23:FlowQualifier")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml22__FlowQualifier(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml23__FlowQualifier(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459084,23 +459448,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfprodml22__FlowQualifier(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfprodml23__FlowQualifier(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FlowQualifier *n = &a->back(); - soap_default_prodml22__FlowQualifier(soap, n); + } + prodml23__FlowQualifier n; + soap_default_prodml23__FlowQualifier(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier, sizeof(prodml22__FlowQualifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier, sizeof(prodml23__FlowQualifier), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_prodml22__FlowQualifier(soap, tag, NULL, "prodml22:FlowQualifier")) + if (!soap_in_prodml23__FlowQualifier(soap, tag, NULL, "prodml23:FlowQualifier")) break; } else - { if (!soap_in_prodml22__FlowQualifier(soap, tag, n, "prodml22:FlowQualifier")) - { a->pop_back(); + { if (!soap_in_prodml23__FlowQualifier(soap, tag, &n, "prodml23:FlowQualifier")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459111,23 +459477,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml22__FlowQualifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml23__FlowQualifier(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfprodml22__FlowQualifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfprodml23__FlowQualifier(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459137,33 +459503,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowNetwork(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowNetwork(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowNetwork(soap, tag, id, &(*i), "prodml22:ProductFlowNetwork")) + if (soap_out_PointerToprodml23__ProductFlowNetwork(soap, tag, id, &(*i), "prodml23:ProductFlowNetwork")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459174,23 +459540,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap))) return NULL; - a->emplace_back(); - prodml22__ProductFlowNetwork * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductFlowNetwork *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork, sizeof(prodml22__ProductFlowNetwork), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork, sizeof(prodml23__ProductFlowNetwork), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowNetwork(soap, tag, NULL, "prodml22:ProductFlowNetwork")) + if (!soap_in_PointerToprodml23__ProductFlowNetwork(soap, tag, NULL, "prodml23:ProductFlowNetwork")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowNetwork(soap, tag, n, "prodml22:ProductFlowNetwork")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowNetwork(soap, tag, &n, "prodml23:ProductFlowNetwork")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459201,23 +459569,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459227,33 +459595,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instan return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowExternalReference(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowExternalReference(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowExternalReference(soap, tag, id, &(*i), "prodml22:ProductFlowExternalReference")) + if (soap_out_PointerToprodml23__ProductFlowExternalReference(soap, tag, id, &(*i), "prodml23:ProductFlowExternalReference")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459264,23 +459632,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductFlowExternalReference * *n = &a->back(); - *n = NULL; + } + prodml23__ProductFlowExternalReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference, sizeof(prodml22__ProductFlowExternalReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference, sizeof(prodml23__ProductFlowExternalReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowExternalReference(soap, tag, NULL, "prodml22:ProductFlowExternalReference")) + if (!soap_in_PointerToprodml23__ProductFlowExternalReference(soap, tag, NULL, "prodml23:ProductFlowExternalReference")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowExternalReference(soap, tag, n, "prodml22:ProductFlowExternalReference")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowExternalReference(soap, tag, &n, "prodml23:ProductFlowExternalReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459291,23 +459661,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459317,33 +459687,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeBusinessUnit(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeBusinessUnit(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag, id, &(*i), "prodml22:ProductVolumeBusinessUnit")) + if (soap_out_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag, id, &(*i), "prodml23:ProductVolumeBusinessUnit")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459354,23 +459724,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductVolumeBusinessUnit * *n = &a->back(); - *n = NULL; + } + prodml23__ProductVolumeBusinessUnit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit, sizeof(prodml22__ProductVolumeBusinessUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit, sizeof(prodml23__ProductVolumeBusinessUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag, NULL, "prodml22:ProductVolumeBusinessUnit")) + if (!soap_in_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag, NULL, "prodml23:ProductVolumeBusinessUnit")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeBusinessUnit(soap, tag, n, "prodml22:ProductVolumeBusinessUnit")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeBusinessUnit(soap, tag, &n, "prodml23:ProductVolumeBusinessUnit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459381,23 +459753,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459407,33 +459779,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeFacility(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeFacility(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeFacility(soap, tag, id, &(*i), "prodml22:ProductVolumeFacility")) + if (soap_out_PointerToprodml23__ProductVolumeFacility(soap, tag, id, &(*i), "prodml23:ProductVolumeFacility")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459444,23 +459816,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductVolumeFacility * *n = &a->back(); - *n = NULL; + } + prodml23__ProductVolumeFacility *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility, sizeof(prodml22__ProductVolumeFacility), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility, sizeof(prodml23__ProductVolumeFacility), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeFacility(soap, tag, NULL, "prodml22:ProductVolumeFacility")) + if (!soap_in_PointerToprodml23__ProductVolumeFacility(soap, tag, NULL, "prodml23:ProductVolumeFacility")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeFacility(soap, tag, n, "prodml22:ProductVolumeFacility")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeFacility(soap, tag, &n, "prodml23:ProductVolumeFacility")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459471,23 +459845,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459534,21 +459908,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfdouble( } if (!a && !(a = soap_new_std__vectorTemplateOfdouble(soap))) return NULL; - a->emplace_back(); - double *n = &a->back(); - soap_default_double(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + double n; + soap_default_double(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_double, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfdouble, sizeof(double), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_double, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfdouble, sizeof(double), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_double(soap, tag, NULL, "xsd:double")) break; } else - { if (!soap_in_double(soap, tag, n, "xsd:double")) - { a->pop_back(); + { if (!soap_in_double(soap, tag, &n, "xsd:double")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459585,33 +459961,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplat return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidSampleAcquisition(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidSampleAcquisition(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidSampleAcquisition(soap, tag, id, &(*i), "prodml22:FluidSampleAcquisition")) + if (soap_out_PointerToprodml23__FluidSampleAcquisition(soap, tag, id, &(*i), "prodml23:FluidSampleAcquisition")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459622,23 +459998,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidSampleAcquisition * *n = &a->back(); - *n = NULL; + } + prodml23__FluidSampleAcquisition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition, sizeof(prodml22__FluidSampleAcquisition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition, sizeof(prodml23__FluidSampleAcquisition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidSampleAcquisition(soap, tag, NULL, "prodml22:FluidSampleAcquisition")) + if (!soap_in_PointerToprodml23__FluidSampleAcquisition(soap, tag, NULL, "prodml23:FluidSampleAcquisition")) break; } else - { if (!soap_in_PointerToprodml22__FluidSampleAcquisition(soap, tag, n, "prodml22:FluidSampleAcquisition")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidSampleAcquisition(soap, tag, &n, "prodml23:FluidSampleAcquisition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459649,23 +460027,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459675,33 +460053,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag, id, &(*i), "prodml22:FluidSampleChainOfCustodyEvent")) + if (soap_out_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag, id, &(*i), "prodml23:FluidSampleChainOfCustodyEvent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459712,23 +460090,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap))) return NULL; - a->emplace_back(); - prodml22__FluidSampleChainOfCustodyEvent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__FluidSampleChainOfCustodyEvent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent, sizeof(prodml22__FluidSampleChainOfCustodyEvent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent, sizeof(prodml23__FluidSampleChainOfCustodyEvent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag, NULL, "prodml22:FluidSampleChainOfCustodyEvent")) + if (!soap_in_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag, NULL, "prodml23:FluidSampleChainOfCustodyEvent")) break; } else - { if (!soap_in_PointerToprodml22__FluidSampleChainOfCustodyEvent(soap, tag, n, "prodml22:FluidSampleChainOfCustodyEvent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidSampleChainOfCustodyEvent(soap, tag, &n, "prodml23:FluidSampleChainOfCustodyEvent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459739,23 +460119,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459765,33 +460145,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AbstractDeconvolutionOutput(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AbstractDeconvolutionOutput(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag, id, &(*i), "prodml22:AbstractDeconvolutionOutput")) + if (soap_out_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag, id, &(*i), "prodml23:AbstractDeconvolutionOutput")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459802,23 +460182,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap))) return NULL; - a->emplace_back(); - prodml22__AbstractDeconvolutionOutput * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__AbstractDeconvolutionOutput *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput, sizeof(prodml22__AbstractDeconvolutionOutput), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput, sizeof(prodml23__AbstractDeconvolutionOutput), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag, NULL, "prodml22:AbstractDeconvolutionOutput")) + if (!soap_in_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag, NULL, "prodml23:AbstractDeconvolutionOutput")) break; } else - { if (!soap_in_PointerToprodml22__AbstractDeconvolutionOutput(soap, tag, n, "prodml22:AbstractDeconvolutionOutput")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AbstractDeconvolutionOutput(soap, tag, &n, "prodml23:AbstractDeconvolutionOutput")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -459829,23 +460211,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -459855,33 +460237,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 so return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_prodml22__DataConditioningExt(soap, &(*i)); + soap_serialize_prodml23__DataConditioningExt(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_prodml22__DataConditioningExt(soap, tag, id, &(*i), "prodml22:DataConditioningExt")) + if (soap_out_prodml23__DataConditioningExt(soap, tag, id, &(*i), "prodml23:DataConditioningExt")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459892,33 +460274,37 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfpr break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfprodml22__DataConditioningExt(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfprodml23__DataConditioningExt(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); } - std::string *n = &a->back(); - soap_default_prodml22__DataConditioningExt(soap, n); + std::string n; + soap_default_prodml23__DataConditioningExt(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_prodml22__DataConditioningExt(soap, tag, NULL, "prodml22:DataConditioningExt")) + if (!soap_in_prodml23__DataConditioningExt(soap, tag, NULL, "prodml23:DataConditioningExt")) break; } else - { if (!soap_in_prodml22__DataConditioningExt(soap, tag, n, "prodml22:DataConditioningExt")) - { a->pop_back(); + { if (!soap_in_prodml23__DataConditioningExt(soap, tag, &n, "prodml23:DataConditioningExt")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -459929,13 +460315,13 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfpr return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfprodml22__DataConditioningExt(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfprodml23__DataConditioningExt(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ std::vector *p; size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt, n, gsoap_eml2_3_fdelete); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) @@ -459955,33 +460341,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTe return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AbstractFlowTestData(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AbstractFlowTestData(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AbstractFlowTestData(soap, tag, id, &(*i), "prodml22:AbstractFlowTestData")) + if (soap_out_PointerToprodml23__AbstractFlowTestData(soap, tag, id, &(*i), "prodml23:AbstractFlowTestData")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -459992,23 +460378,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__AbstractFlowTestData * *n = &a->back(); - *n = NULL; + } + prodml23__AbstractFlowTestData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData, sizeof(prodml22__AbstractFlowTestData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData, sizeof(prodml23__AbstractFlowTestData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AbstractFlowTestData(soap, tag, NULL, "prodml22:AbstractFlowTestData")) + if (!soap_in_PointerToprodml23__AbstractFlowTestData(soap, tag, NULL, "prodml23:AbstractFlowTestData")) break; } else - { if (!soap_in_PointerToprodml22__AbstractFlowTestData(soap, tag, n, "prodml22:AbstractFlowTestData")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AbstractFlowTestData(soap, tag, &n, "prodml23:AbstractFlowTestData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460019,23 +460407,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460045,33 +460433,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SpecializedAnalysis(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SpecializedAnalysis(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SpecializedAnalysis(soap, tag, id, &(*i), "prodml22:SpecializedAnalysis")) + if (soap_out_PointerToprodml23__SpecializedAnalysis(soap, tag, id, &(*i), "prodml23:SpecializedAnalysis")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460082,23 +460470,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__SpecializedAnalysis * *n = &a->back(); - *n = NULL; + } + prodml23__SpecializedAnalysis *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis, sizeof(prodml22__SpecializedAnalysis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis, sizeof(prodml23__SpecializedAnalysis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SpecializedAnalysis(soap, tag, NULL, "prodml22:SpecializedAnalysis")) + if (!soap_in_PointerToprodml23__SpecializedAnalysis(soap, tag, NULL, "prodml23:SpecializedAnalysis")) break; } else - { if (!soap_in_PointerToprodml22__SpecializedAnalysis(soap, tag, n, "prodml22:SpecializedAnalysis")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SpecializedAnalysis(soap, tag, &n, "prodml23:SpecializedAnalysis")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460109,23 +460499,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460135,33 +460525,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_insta return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__InterferingFlowTestInterval(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__InterferingFlowTestInterval(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__InterferingFlowTestInterval(soap, tag, id, &(*i), "prodml22:InterferingFlowTestInterval")) + if (soap_out_PointerToprodml23__InterferingFlowTestInterval(soap, tag, id, &(*i), "prodml23:InterferingFlowTestInterval")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460172,23 +460562,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__InterferingFlowTestInterval * *n = &a->back(); - *n = NULL; + } + prodml23__InterferingFlowTestInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval, sizeof(prodml22__InterferingFlowTestInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval, sizeof(prodml23__InterferingFlowTestInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__InterferingFlowTestInterval(soap, tag, NULL, "prodml22:InterferingFlowTestInterval")) + if (!soap_in_PointerToprodml23__InterferingFlowTestInterval(soap, tag, NULL, "prodml23:InterferingFlowTestInterval")) break; } else - { if (!soap_in_PointerToprodml22__InterferingFlowTestInterval(soap, tag, n, "prodml22:InterferingFlowTestInterval")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__InterferingFlowTestInterval(soap, tag, &n, "prodml23:InterferingFlowTestInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460199,23 +460591,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460225,33 +460617,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 so return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__LayerModel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__LayerModel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__LayerModel(soap, tag, id, &(*i), "prodml22:LayerModel")) + if (soap_out_PointerToprodml23__LayerModel(soap, tag, id, &(*i), "prodml23:LayerModel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460262,23 +460654,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__LayerModel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__LayerModel(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__LayerModel * *n = &a->back(); - *n = NULL; + } + prodml23__LayerModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel, sizeof(prodml22__LayerModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel, sizeof(prodml23__LayerModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__LayerModel(soap, tag, NULL, "prodml22:LayerModel")) + if (!soap_in_PointerToprodml23__LayerModel(soap, tag, NULL, "prodml23:LayerModel")) break; } else - { if (!soap_in_PointerToprodml22__LayerModel(soap, tag, n, "prodml22:LayerModel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__LayerModel(soap, tag, &n, "prodml23:LayerModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460289,23 +460683,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460315,33 +460709,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_st return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__Channel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__Channel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__Channel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__Channel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__Channel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__Channel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__Channel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__Channel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__Channel(soap, tag, id, &(*i), "prodml22:Channel")) + if (soap_out_PointerToprodml23__Channel(soap, tag, id, &(*i), "prodml23:Channel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__Channel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__Channel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460352,23 +460746,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__Channel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__Channel(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__Channel * *n = &a->back(); - *n = NULL; + } + prodml23__Channel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__Channel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel, sizeof(prodml22__Channel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__Channel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel, sizeof(prodml23__Channel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__Channel(soap, tag, NULL, "prodml22:Channel")) + if (!soap_in_PointerToprodml23__Channel(soap, tag, NULL, "prodml23:Channel")) break; } else - { if (!soap_in_PointerToprodml22__Channel(soap, tag, n, "prodml22:Channel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__Channel(soap, tag, &n, "prodml23:Channel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460379,23 +460775,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__Channel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__Channel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__Channel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__Channel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460444,31 +460840,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfst } if (!a && !(a = soap_new_std__vectorTemplateOfstd__string(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_std__string(soap, n); + std::string n; + soap_default_std__string(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_std__string, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfstd__string, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_std__string, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfstd__string, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_std__string(soap, tag, NULL, "xsd:string")) break; } else - { if (!soap_in_std__string(soap, tag, n, "xsd:string")) - { a->pop_back(); + { if (!soap_in_std__string(soap, tag, &n, "xsd:string")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -460505,33 +460905,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTe return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SampleContaminant(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SampleContaminant(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SampleContaminant(soap, tag, id, &(*i), "prodml22:SampleContaminant")) + if (soap_out_PointerToprodml23__SampleContaminant(soap, tag, id, &(*i), "prodml23:SampleContaminant")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460542,23 +460942,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__SampleContaminant * *n = &a->back(); - *n = NULL; + } + prodml23__SampleContaminant *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant, sizeof(prodml22__SampleContaminant), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant, sizeof(prodml23__SampleContaminant), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SampleContaminant(soap, tag, NULL, "prodml22:SampleContaminant")) + if (!soap_in_PointerToprodml23__SampleContaminant(soap, tag, NULL, "prodml23:SampleContaminant")) break; } else - { if (!soap_in_PointerToprodml22__SampleContaminant(soap, tag, n, "prodml22:SampleContaminant")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SampleContaminant(soap, tag, &n, "prodml23:SampleContaminant")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460569,23 +460971,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleContaminant(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleContaminant(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460595,33 +460997,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidAnalysisReport(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidAnalysisReport(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidAnalysisReport(soap, tag, id, &(*i), "prodml22:FluidAnalysisReport")) + if (soap_out_PointerToprodml23__FluidAnalysisReport(soap, tag, id, &(*i), "prodml23:FluidAnalysisReport")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460632,23 +461034,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidAnalysisReport * *n = &a->back(); - *n = NULL; + } + prodml23__FluidAnalysisReport *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport, sizeof(prodml22__FluidAnalysisReport), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport, sizeof(prodml23__FluidAnalysisReport), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidAnalysisReport(soap, tag, NULL, "prodml22:FluidAnalysisReport")) + if (!soap_in_PointerToprodml23__FluidAnalysisReport(soap, tag, NULL, "prodml23:FluidAnalysisReport")) break; } else - { if (!soap_in_PointerToprodml22__FluidAnalysisReport(soap, tag, n, "prodml22:FluidAnalysisReport")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidAnalysisReport(soap, tag, &n, "prodml23:FluidAnalysisReport")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460659,23 +461063,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460685,33 +461089,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_insta return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationModel(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationModel(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationModel(soap, tag, id, &(*i), "prodml22:FluidCharacterizationModel")) + if (soap_out_PointerToprodml23__FluidCharacterizationModel(soap, tag, id, &(*i), "prodml23:FluidCharacterizationModel")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460722,23 +461126,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationModel * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel, sizeof(prodml22__FluidCharacterizationModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel, sizeof(prodml23__FluidCharacterizationModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationModel(soap, tag, NULL, "prodml22:FluidCharacterizationModel")) + if (!soap_in_PointerToprodml23__FluidCharacterizationModel(soap, tag, NULL, "prodml23:FluidCharacterizationModel")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationModel(soap, tag, n, "prodml22:FluidCharacterizationModel")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationModel(soap, tag, &n, "prodml23:FluidCharacterizationModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460749,23 +461155,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460775,33 +461181,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soa return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationSource(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationSource(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationSource(soap, tag, id, &(*i), "prodml22:FluidCharacterizationSource")) + if (soap_out_PointerToprodml23__FluidCharacterizationSource(soap, tag, id, &(*i), "prodml23:FluidCharacterizationSource")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -460812,23 +461218,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationSource * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationSource *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource, sizeof(prodml22__FluidCharacterizationSource), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource, sizeof(prodml23__FluidCharacterizationSource), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationSource(soap, tag, NULL, "prodml22:FluidCharacterizationSource")) + if (!soap_in_PointerToprodml23__FluidCharacterizationSource(soap, tag, NULL, "prodml23:FluidCharacterizationSource")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationSource(soap, tag, n, "prodml22:FluidCharacterizationSource")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationSource(soap, tag, &n, "prodml23:FluidCharacterizationSource")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460839,23 +461247,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -460904,21 +461312,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation(soap))) return NULL; - a->emplace_back(); - eml23__AbstractGraphicalInformation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractGraphicalInformation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGraphicalInformation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation, sizeof(eml23__AbstractGraphicalInformation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGraphicalInformation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractGraphicalInformation, sizeof(eml23__AbstractGraphicalInformation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractGraphicalInformation(soap, tag, NULL, "eml23:AbstractGraphicalInformation")) break; } else - { if (!soap_in_PointerToeml23__AbstractGraphicalInformation(soap, tag, n, "eml23:AbstractGraphicalInformation")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractGraphicalInformation(soap, tag, &n, "eml23:AbstractGraphicalInformation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -460994,21 +461404,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__FailingRule(soap))) return NULL; - a->emplace_back(); - eml23__FailingRule * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__FailingRule *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__FailingRule, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FailingRule, sizeof(eml23__FailingRule), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__FailingRule, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FailingRule, sizeof(eml23__FailingRule), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__FailingRule(soap, tag, NULL, "eml23:FailingRule")) break; } else - { if (!soap_in_PointerToeml23__FailingRule(soap, tag, n, "eml23:FailingRule")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__FailingRule(soap, tag, &n, "eml23:FailingRule")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461084,21 +461496,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__SingleCollectionAssociation(soap))) return NULL; - a->emplace_back(); - eml23__SingleCollectionAssociation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__SingleCollectionAssociation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__SingleCollectionAssociation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__SingleCollectionAssociation, sizeof(eml23__SingleCollectionAssociation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__SingleCollectionAssociation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__SingleCollectionAssociation, sizeof(eml23__SingleCollectionAssociation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__SingleCollectionAssociation(soap, tag, NULL, "eml23:SingleCollectionAssociation")) break; } else - { if (!soap_in_PointerToeml23__SingleCollectionAssociation(soap, tag, n, "eml23:SingleCollectionAssociation")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__SingleCollectionAssociation(soap, tag, &n, "eml23:SingleCollectionAssociation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461174,21 +461588,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractObject(soap))) return NULL; - a->emplace_back(); - eml23__AbstractObject * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractObject *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractObject, sizeof(eml23__AbstractObject), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractObject, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractObject, sizeof(eml23__AbstractObject), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractObject(soap, tag, NULL, "eml23:AbstractObject")) break; } else - { if (!soap_in_PointerToeml23__AbstractObject(soap, tag, n, "eml23:AbstractObject")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractObject(soap, tag, &n, "eml23:AbstractObject")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461264,21 +461680,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__ParameterTemplate(soap))) return NULL; - a->emplace_back(); - eml23__ParameterTemplate * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__ParameterTemplate *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__ParameterTemplate, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ParameterTemplate, sizeof(eml23__ParameterTemplate), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__ParameterTemplate, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ParameterTemplate, sizeof(eml23__ParameterTemplate), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__ParameterTemplate(soap, tag, NULL, "eml23:ParameterTemplate")) break; } else - { if (!soap_in_PointerToeml23__ParameterTemplate(soap, tag, n, "eml23:ParameterTemplate")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__ParameterTemplate(soap, tag, &n, "eml23:ParameterTemplate")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461354,21 +461772,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__EmailQualifierStruct(soap))) return NULL; - a->emplace_back(); - eml23__EmailQualifierStruct * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__EmailQualifierStruct *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__EmailQualifierStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__EmailQualifierStruct, sizeof(eml23__EmailQualifierStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__EmailQualifierStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__EmailQualifierStruct, sizeof(eml23__EmailQualifierStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__EmailQualifierStruct(soap, tag, NULL, "eml23:EmailQualifierStruct")) break; } else - { if (!soap_in_PointerToeml23__EmailQualifierStruct(soap, tag, n, "eml23:EmailQualifierStruct")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__EmailQualifierStruct(soap, tag, &n, "eml23:EmailQualifierStruct")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461444,21 +461864,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__PhoneNumberStruct(soap))) return NULL; - a->emplace_back(); - eml23__PhoneNumberStruct * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__PhoneNumberStruct *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__PhoneNumberStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PhoneNumberStruct, sizeof(eml23__PhoneNumberStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__PhoneNumberStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PhoneNumberStruct, sizeof(eml23__PhoneNumberStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__PhoneNumberStruct(soap, tag, NULL, "eml23:PhoneNumberStruct")) break; } else - { if (!soap_in_PointerToeml23__PhoneNumberStruct(soap, tag, n, "eml23:PhoneNumberStruct")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__PhoneNumberStruct(soap, tag, &n, "eml23:PhoneNumberStruct")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461534,21 +461956,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__GeologicTime(soap))) return NULL; - a->emplace_back(); - eml23__GeologicTime * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__GeologicTime *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__GeologicTime, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__GeologicTime, sizeof(eml23__GeologicTime), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__GeologicTime, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__GeologicTime, sizeof(eml23__GeologicTime), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__GeologicTime(soap, tag, NULL, "eml23:GeologicTime")) break; } else - { if (!soap_in_PointerToeml23__GeologicTime(soap, tag, n, "eml23:GeologicTime")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__GeologicTime(soap, tag, &n, "eml23:GeologicTime")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461624,21 +462048,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__PropertyKind(soap))) return NULL; - a->emplace_back(); - eml23__PropertyKind * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__PropertyKind *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PropertyKind, sizeof(eml23__PropertyKind), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PropertyKind, sizeof(eml23__PropertyKind), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__PropertyKind(soap, tag, NULL, "eml23:PropertyKind")) break; } else - { if (!soap_in_PointerToeml23__PropertyKind(soap, tag, n, "eml23:PropertyKind")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__PropertyKind(soap, tag, &n, "eml23:PropertyKind")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461714,21 +462140,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__StringArrayStatistics(soap))) return NULL; - a->emplace_back(); - eml23__StringArrayStatistics * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__StringArrayStatistics *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__StringArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__StringArrayStatistics, sizeof(eml23__StringArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__StringArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__StringArrayStatistics, sizeof(eml23__StringArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__StringArrayStatistics(soap, tag, NULL, "eml23:StringArrayStatistics")) break; } else - { if (!soap_in_PointerToeml23__StringArrayStatistics(soap, tag, n, "eml23:StringArrayStatistics")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__StringArrayStatistics(soap, tag, &n, "eml23:StringArrayStatistics")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461804,21 +462232,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__BooleanArrayStatistics(soap))) return NULL; - a->emplace_back(); - eml23__BooleanArrayStatistics * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__BooleanArrayStatistics *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__BooleanArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__BooleanArrayStatistics, sizeof(eml23__BooleanArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__BooleanArrayStatistics, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__BooleanArrayStatistics, sizeof(eml23__BooleanArrayStatistics), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__BooleanArrayStatistics(soap, tag, NULL, "eml23:BooleanArrayStatistics")) break; } else - { if (!soap_in_PointerToeml23__BooleanArrayStatistics(soap, tag, n, "eml23:BooleanArrayStatistics")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__BooleanArrayStatistics(soap, tag, &n, "eml23:BooleanArrayStatistics")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461894,21 +462324,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__WellboreMarker(soap))) return NULL; - a->emplace_back(); - witsml21__WellboreMarker * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__WellboreMarker *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WellboreMarker, sizeof(witsml21__WellboreMarker), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WellboreMarker, sizeof(witsml21__WellboreMarker), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__WellboreMarker(soap, tag, NULL, "witsml21:WellboreMarker")) break; } else - { if (!soap_in_PointerTowitsml21__WellboreMarker(soap, tag, n, "witsml21:WellboreMarker")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__WellboreMarker(soap, tag, &n, "witsml21:WellboreMarker")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -461984,21 +462416,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PitVolume(soap))) return NULL; - a->emplace_back(); - witsml21__PitVolume * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PitVolume *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PitVolume, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PitVolume, sizeof(witsml21__PitVolume), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PitVolume, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PitVolume, sizeof(witsml21__PitVolume), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PitVolume(soap, tag, NULL, "witsml21:PitVolume")) break; } else - { if (!soap_in_PointerTowitsml21__PitVolume(soap, tag, n, "witsml21:PitVolume")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PitVolume(soap, tag, &n, "witsml21:PitVolume")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462074,21 +462508,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PumpOp(soap))) return NULL; - a->emplace_back(); - witsml21__PumpOp * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PumpOp *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PumpOp, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PumpOp, sizeof(witsml21__PumpOp), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PumpOp, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PumpOp, sizeof(witsml21__PumpOp), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PumpOp(soap, tag, NULL, "witsml21:PumpOp")) break; } else - { if (!soap_in_PointerTowitsml21__PumpOp(soap, tag, n, "witsml21:PumpOp")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PumpOp(soap, tag, &n, "witsml21:PumpOp")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462164,21 +462600,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Personnel(soap))) return NULL; - a->emplace_back(); - witsml21__Personnel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Personnel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Personnel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Personnel, sizeof(witsml21__Personnel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Personnel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Personnel, sizeof(witsml21__Personnel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Personnel(soap, tag, NULL, "witsml21:Personnel")) break; } else - { if (!soap_in_PointerTowitsml21__Personnel(soap, tag, n, "witsml21:Personnel")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Personnel(soap, tag, &n, "witsml21:Personnel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462254,21 +462692,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Inventory(soap))) return NULL; - a->emplace_back(); - witsml21__Inventory * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Inventory *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Inventory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Inventory, sizeof(witsml21__Inventory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Inventory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Inventory, sizeof(witsml21__Inventory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Inventory(soap, tag, NULL, "witsml21:Inventory")) break; } else - { if (!soap_in_PointerTowitsml21__Inventory(soap, tag, n, "witsml21:Inventory")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Inventory(soap, tag, &n, "witsml21:Inventory")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462344,21 +462784,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Weather(soap))) return NULL; - a->emplace_back(); - witsml21__Weather * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Weather *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Weather, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Weather, sizeof(witsml21__Weather), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Weather, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Weather, sizeof(witsml21__Weather), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Weather(soap, tag, NULL, "witsml21:Weather")) break; } else - { if (!soap_in_PointerTowitsml21__Weather(soap, tag, n, "witsml21:Weather")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Weather(soap, tag, &n, "witsml21:Weather")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462434,21 +462876,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__SupportCraft(soap))) return NULL; - a->emplace_back(); - witsml21__SupportCraft * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__SupportCraft *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__SupportCraft, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SupportCraft, sizeof(witsml21__SupportCraft), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__SupportCraft, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SupportCraft, sizeof(witsml21__SupportCraft), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__SupportCraft(soap, tag, NULL, "witsml21:SupportCraft")) break; } else - { if (!soap_in_PointerTowitsml21__SupportCraft(soap, tag, n, "witsml21:SupportCraft")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__SupportCraft(soap, tag, &n, "witsml21:SupportCraft")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462524,21 +462968,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ShakerOp(soap))) return NULL; - a->emplace_back(); - witsml21__ShakerOp * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ShakerOp *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ShakerOp, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ShakerOp, sizeof(witsml21__ShakerOp), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ShakerOp, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ShakerOp, sizeof(witsml21__ShakerOp), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ShakerOp(soap, tag, NULL, "witsml21:ShakerOp")) break; } else - { if (!soap_in_PointerTowitsml21__ShakerOp(soap, tag, n, "witsml21:ShakerOp")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ShakerOp(soap, tag, &n, "witsml21:ShakerOp")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462614,21 +463060,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplate } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Scr(soap))) return NULL; - a->emplace_back(); - witsml21__Scr * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Scr *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Scr, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Scr, sizeof(witsml21__Scr), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Scr, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Scr, sizeof(witsml21__Scr), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Scr(soap, tag, NULL, "witsml21:Scr")) break; } else - { if (!soap_in_PointerTowitsml21__Scr(soap, tag, n, "witsml21:Scr")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Scr(soap, tag, &n, "witsml21:Scr")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462704,21 +463152,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimISO13503_USCORE5Point(soap))) return NULL; - a->emplace_back(); - witsml21__StimISO13503_USCORE5Point * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimISO13503_USCORE5Point *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimISO13503_USCORE5Point, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimISO13503_USCORE5Point, sizeof(witsml21__StimISO13503_USCORE5Point), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimISO13503_USCORE5Point, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimISO13503_USCORE5Point, sizeof(witsml21__StimISO13503_USCORE5Point), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimISO13503_USCORE5Point(soap, tag, NULL, "witsml21:StimISO13503_5Point")) break; } else - { if (!soap_in_PointerTowitsml21__StimISO13503_USCORE5Point(soap, tag, n, "witsml21:StimISO13503_5Point")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimISO13503_USCORE5Point(soap, tag, &n, "witsml21:StimISO13503_5Point")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462794,21 +463244,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimISO13503_USCORE2Properties(soap))) return NULL; - a->emplace_back(); - witsml21__StimISO13503_USCORE2Properties * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimISO13503_USCORE2Properties *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimISO13503_USCORE2Properties, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimISO13503_USCORE2Properties, sizeof(witsml21__StimISO13503_USCORE2Properties), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimISO13503_USCORE2Properties, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimISO13503_USCORE2Properties, sizeof(witsml21__StimISO13503_USCORE2Properties), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimISO13503_USCORE2Properties(soap, tag, NULL, "witsml21:StimISO13503_2Properties")) break; } else - { if (!soap_in_PointerTowitsml21__StimISO13503_USCORE2Properties(soap, tag, n, "witsml21:StimISO13503_2Properties")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimISO13503_USCORE2Properties(soap, tag, &n, "witsml21:StimISO13503_2Properties")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462884,21 +463336,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimReservoirInterval(soap))) return NULL; - a->emplace_back(); - witsml21__StimReservoirInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimReservoirInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimReservoirInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimReservoirInterval, sizeof(witsml21__StimReservoirInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimReservoirInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimReservoirInterval, sizeof(witsml21__StimReservoirInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimReservoirInterval(soap, tag, NULL, "witsml21:StimReservoirInterval")) break; } else - { if (!soap_in_PointerTowitsml21__StimReservoirInterval(soap, tag, n, "witsml21:StimReservoirInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimReservoirInterval(soap, tag, &n, "witsml21:StimReservoirInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -462974,21 +463428,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimJobStep(soap))) return NULL; - a->emplace_back(); - witsml21__StimJobStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimJobStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobStep, sizeof(witsml21__StimJobStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobStep, sizeof(witsml21__StimJobStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimJobStep(soap, tag, NULL, "witsml21:StimJobStep")) break; } else - { if (!soap_in_PointerTowitsml21__StimJobStep(soap, tag, n, "witsml21:StimJobStep")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimJobStep(soap, tag, &n, "witsml21:StimJobStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463064,21 +463520,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimEvent(soap))) return NULL; - a->emplace_back(); - witsml21__StimEvent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimEvent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimEvent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimEvent, sizeof(witsml21__StimEvent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimEvent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimEvent, sizeof(witsml21__StimEvent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimEvent(soap, tag, NULL, "witsml21:StimEvent")) break; } else - { if (!soap_in_PointerTowitsml21__StimEvent(soap, tag, n, "witsml21:StimEvent")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimEvent(soap, tag, &n, "witsml21:StimEvent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463154,21 +463612,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimShutInPressure(soap))) return NULL; - a->emplace_back(); - witsml21__StimShutInPressure * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimShutInPressure *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimShutInPressure, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimShutInPressure, sizeof(witsml21__StimShutInPressure), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimShutInPressure, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimShutInPressure, sizeof(witsml21__StimShutInPressure), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimShutInPressure(soap, tag, NULL, "witsml21:StimShutInPressure")) break; } else - { if (!soap_in_PointerTowitsml21__StimShutInPressure(soap, tag, n, "witsml21:StimShutInPressure")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimShutInPressure(soap, tag, &n, "witsml21:StimShutInPressure")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463244,21 +463704,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimJobDiagnosticSession(soap))) return NULL; - a->emplace_back(); - witsml21__StimJobDiagnosticSession * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimJobDiagnosticSession *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobDiagnosticSession, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobDiagnosticSession, sizeof(witsml21__StimJobDiagnosticSession), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobDiagnosticSession, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobDiagnosticSession, sizeof(witsml21__StimJobDiagnosticSession), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimJobDiagnosticSession(soap, tag, NULL, "witsml21:StimJobDiagnosticSession")) break; } else - { if (!soap_in_PointerTowitsml21__StimJobDiagnosticSession(soap, tag, n, "witsml21:StimJobDiagnosticSession")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimJobDiagnosticSession(soap, tag, &n, "witsml21:StimJobDiagnosticSession")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463334,21 +463796,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimJobLogCatalog(soap))) return NULL; - a->emplace_back(); - witsml21__StimJobLogCatalog * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimJobLogCatalog *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobLogCatalog, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobLogCatalog, sizeof(witsml21__StimJobLogCatalog), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobLogCatalog, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobLogCatalog, sizeof(witsml21__StimJobLogCatalog), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimJobLogCatalog(soap, tag, NULL, "witsml21:StimJobLogCatalog")) break; } else - { if (!soap_in_PointerTowitsml21__StimJobLogCatalog(soap, tag, n, "witsml21:StimJobLogCatalog")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimJobLogCatalog(soap, tag, &n, "witsml21:StimJobLogCatalog")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463424,21 +463888,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimJobStage(soap))) return NULL; - a->emplace_back(); - witsml21__StimJobStage * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimJobStage *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobStage, sizeof(witsml21__StimJobStage), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimJobStage, sizeof(witsml21__StimJobStage), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimJobStage(soap, tag, NULL, "witsml21:StimJobStage")) break; } else - { if (!soap_in_PointerTowitsml21__StimJobStage(soap, tag, n, "witsml21:StimJobStage")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimJobStage(soap, tag, &n, "witsml21:StimJobStage")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463514,21 +463980,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CementStageReport(soap))) return NULL; - a->emplace_back(); - witsml21__CementStageReport * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CementStageReport *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CementStageReport, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementStageReport, sizeof(witsml21__CementStageReport), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CementStageReport, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementStageReport, sizeof(witsml21__CementStageReport), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CementStageReport(soap, tag, NULL, "witsml21:CementStageReport")) break; } else - { if (!soap_in_PointerTowitsml21__CementStageReport(soap, tag, n, "witsml21:CementStageReport")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CementStageReport(soap, tag, &n, "witsml21:CementStageReport")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463604,21 +464072,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CementStageDesign(soap))) return NULL; - a->emplace_back(); - witsml21__CementStageDesign * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CementStageDesign *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CementStageDesign, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementStageDesign, sizeof(witsml21__CementStageDesign), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CementStageDesign, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementStageDesign, sizeof(witsml21__CementStageDesign), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CementStageDesign(soap, tag, NULL, "witsml21:CementStageDesign")) break; } else - { if (!soap_in_PointerTowitsml21__CementStageDesign(soap, tag, n, "witsml21:CementStageDesign")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CementStageDesign(soap, tag, &n, "witsml21:CementStageDesign")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463694,21 +464164,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CementingFluid(soap))) return NULL; - a->emplace_back(); - witsml21__CementingFluid * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CementingFluid *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CementingFluid, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementingFluid, sizeof(witsml21__CementingFluid), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CementingFluid, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementingFluid, sizeof(witsml21__CementingFluid), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CementingFluid(soap, tag, NULL, "witsml21:CementingFluid")) break; } else - { if (!soap_in_PointerTowitsml21__CementingFluid(soap, tag, n, "witsml21:CementingFluid")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CementingFluid(soap, tag, &n, "witsml21:CementingFluid")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463784,21 +464256,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__SurveySection(soap))) return NULL; - a->emplace_back(); - witsml21__SurveySection * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__SurveySection *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__SurveySection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SurveySection, sizeof(witsml21__SurveySection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__SurveySection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SurveySection, sizeof(witsml21__SurveySection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__SurveySection(soap, tag, NULL, "witsml21:SurveySection")) break; } else - { if (!soap_in_PointerTowitsml21__SurveySection(soap, tag, n, "witsml21:SurveySection")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__SurveySection(soap, tag, &n, "witsml21:SurveySection")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463874,21 +464348,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__WeightingFunction(soap))) return NULL; - a->emplace_back(); - witsml21__WeightingFunction * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__WeightingFunction *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WeightingFunction, sizeof(witsml21__WeightingFunction), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WeightingFunction, sizeof(witsml21__WeightingFunction), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__WeightingFunction(soap, tag, NULL, "witsml21:WeightingFunction")) break; } else - { if (!soap_in_PointerTowitsml21__WeightingFunction(soap, tag, n, "witsml21:WeightingFunction")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__WeightingFunction(soap, tag, &n, "witsml21:WeightingFunction")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -463964,21 +464440,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ContinuousAzimuthFormula(soap))) return NULL; - a->emplace_back(); - witsml21__ContinuousAzimuthFormula * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ContinuousAzimuthFormula *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ContinuousAzimuthFormula, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ContinuousAzimuthFormula, sizeof(witsml21__ContinuousAzimuthFormula), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ContinuousAzimuthFormula, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ContinuousAzimuthFormula, sizeof(witsml21__ContinuousAzimuthFormula), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ContinuousAzimuthFormula(soap, tag, NULL, "witsml21:ContinuousAzimuthFormula")) break; } else - { if (!soap_in_PointerTowitsml21__ContinuousAzimuthFormula(soap, tag, n, "witsml21:ContinuousAzimuthFormula")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ContinuousAzimuthFormula(soap, tag, &n, "witsml21:ContinuousAzimuthFormula")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464054,21 +464532,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ToolErrorModel(soap))) return NULL; - a->emplace_back(); - witsml21__ToolErrorModel * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ToolErrorModel *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ToolErrorModel, sizeof(witsml21__ToolErrorModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ToolErrorModel, sizeof(witsml21__ToolErrorModel), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ToolErrorModel(soap, tag, NULL, "witsml21:ToolErrorModel")) break; } else - { if (!soap_in_PointerTowitsml21__ToolErrorModel(soap, tag, n, "witsml21:ToolErrorModel")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ToolErrorModel(soap, tag, &n, "witsml21:ToolErrorModel")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464144,21 +464624,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ErrorTermValue(soap))) return NULL; - a->emplace_back(); - witsml21__ErrorTermValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ErrorTermValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTermValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ErrorTermValue, sizeof(witsml21__ErrorTermValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTermValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ErrorTermValue, sizeof(witsml21__ErrorTermValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ErrorTermValue(soap, tag, NULL, "witsml21:ErrorTermValue")) break; } else - { if (!soap_in_PointerTowitsml21__ErrorTermValue(soap, tag, n, "witsml21:ErrorTermValue")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ErrorTermValue(soap, tag, &n, "witsml21:ErrorTermValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464234,31 +464716,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfwi } if (!a && !(a = soap_new_std__vectorTemplateOfwitsml21__CorrectionConsideredExt(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_witsml21__CorrectionConsideredExt(soap, n); + std::string n; + soap_default_witsml21__CorrectionConsideredExt(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CorrectionConsideredExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__CorrectionConsideredExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CorrectionConsideredExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__CorrectionConsideredExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_witsml21__CorrectionConsideredExt(soap, tag, NULL, "witsml21:CorrectionConsideredExt")) break; } else - { if (!soap_in_witsml21__CorrectionConsideredExt(soap, tag, n, "witsml21:CorrectionConsideredExt")) - { a->pop_back(); + { if (!soap_in_witsml21__CorrectionConsideredExt(soap, tag, &n, "witsml21:CorrectionConsideredExt")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -464334,31 +464820,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfwi } if (!a && !(a = soap_new_std__vectorTemplateOfwitsml21__OperatingConditionExt(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_witsml21__OperatingConditionExt(soap, n); + std::string n; + soap_default_witsml21__OperatingConditionExt(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__OperatingConditionExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__OperatingConditionExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__OperatingConditionExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__OperatingConditionExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_witsml21__OperatingConditionExt(soap, tag, NULL, "witsml21:OperatingConditionExt")) break; } else - { if (!soap_in_witsml21__OperatingConditionExt(soap, tag, n, "witsml21:OperatingConditionExt")) - { a->pop_back(); + { if (!soap_in_witsml21__OperatingConditionExt(soap, tag, &n, "witsml21:OperatingConditionExt")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -464434,31 +464924,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfwi } if (!a && !(a = soap_new_std__vectorTemplateOfwitsml21__ToolSubKindExt(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_witsml21__ToolSubKindExt(soap, n); + std::string n; + soap_default_witsml21__ToolSubKindExt(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ToolSubKindExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__ToolSubKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ToolSubKindExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__ToolSubKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_witsml21__ToolSubKindExt(soap, tag, NULL, "witsml21:ToolSubKindExt")) break; } else - { if (!soap_in_witsml21__ToolSubKindExt(soap, tag, n, "witsml21:ToolSubKindExt")) - { a->pop_back(); + { if (!soap_in_witsml21__ToolSubKindExt(soap, tag, &n, "witsml21:ToolSubKindExt")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -464534,21 +465028,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ErrorTerm(soap))) return NULL; - a->emplace_back(); - witsml21__ErrorTerm * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ErrorTerm *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ErrorTerm, sizeof(witsml21__ErrorTerm), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ErrorTerm, sizeof(witsml21__ErrorTerm), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ErrorTerm(soap, tag, NULL, "witsml21:ErrorTerm")) break; } else - { if (!soap_in_PointerTowitsml21__ErrorTerm(soap, tag, n, "witsml21:ErrorTerm")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ErrorTerm(soap, tag, &n, "witsml21:ErrorTerm")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464624,21 +465120,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__TargetSection(soap))) return NULL; - a->emplace_back(); - witsml21__TargetSection * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__TargetSection *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__TargetSection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TargetSection, sizeof(witsml21__TargetSection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__TargetSection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TargetSection, sizeof(witsml21__TargetSection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__TargetSection(soap, tag, NULL, "witsml21:TargetSection")) break; } else - { if (!soap_in_PointerTowitsml21__TargetSection(soap, tag, n, "witsml21:TargetSection")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__TargetSection(soap, tag, &n, "witsml21:TargetSection")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464714,21 +465212,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__LoggingToolKind(soap))) return NULL; - a->emplace_back(); - witsml21__LoggingToolKind * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__LoggingToolKind *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LoggingToolKind, sizeof(witsml21__LoggingToolKind), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LoggingToolKind, sizeof(witsml21__LoggingToolKind), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__LoggingToolKind(soap, tag, NULL, "witsml21:LoggingToolKind")) break; } else - { if (!soap_in_PointerTowitsml21__LoggingToolKind(soap, tag, n, "witsml21:LoggingToolKind")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__LoggingToolKind(soap, tag, &n, "witsml21:LoggingToolKind")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464804,21 +465304,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ChannelKind(soap))) return NULL; - a->emplace_back(); - witsml21__ChannelKind * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ChannelKind *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ChannelKind, sizeof(witsml21__ChannelKind), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ChannelKind, sizeof(witsml21__ChannelKind), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ChannelKind(soap, tag, NULL, "witsml21:ChannelKind")) break; } else - { if (!soap_in_PointerTowitsml21__ChannelKind(soap, tag, n, "witsml21:ChannelKind")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ChannelKind(soap, tag, &n, "witsml21:ChannelKind")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464894,21 +465396,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__TubularComponent(soap))) return NULL; - a->emplace_back(); - witsml21__TubularComponent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__TubularComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__TubularComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TubularComponent, sizeof(witsml21__TubularComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__TubularComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TubularComponent, sizeof(witsml21__TubularComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__TubularComponent(soap, tag, NULL, "witsml21:TubularComponent")) break; } else - { if (!soap_in_PointerTowitsml21__TubularComponent(soap, tag, n, "witsml21:TubularComponent")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__TubularComponent(soap, tag, &n, "witsml21:TubularComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -464984,21 +465488,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__TubularUmbilical(soap))) return NULL; - a->emplace_back(); - witsml21__TubularUmbilical * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__TubularUmbilical *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__TubularUmbilical, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TubularUmbilical, sizeof(witsml21__TubularUmbilical), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__TubularUmbilical, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TubularUmbilical, sizeof(witsml21__TubularUmbilical), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__TubularUmbilical(soap, tag, NULL, "witsml21:TubularUmbilical")) break; } else - { if (!soap_in_PointerTowitsml21__TubularUmbilical(soap, tag, n, "witsml21:TubularUmbilical")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__TubularUmbilical(soap, tag, &n, "witsml21:TubularUmbilical")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465074,21 +465580,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillingParams(soap))) return NULL; - a->emplace_back(); - witsml21__DrillingParams * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillingParams *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillingParams, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillingParams, sizeof(witsml21__DrillingParams), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillingParams, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillingParams, sizeof(witsml21__DrillingParams), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillingParams(soap, tag, NULL, "witsml21:DrillingParams")) break; } else - { if (!soap_in_PointerTowitsml21__DrillingParams(soap, tag, n, "witsml21:DrillingParams")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillingParams(soap, tag, &n, "witsml21:DrillingParams")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465164,21 +465672,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportGasReadingInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportGasReadingInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportGasReadingInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportGasReadingInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportGasReadingInfo, sizeof(witsml21__DrillReportGasReadingInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportGasReadingInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportGasReadingInfo, sizeof(witsml21__DrillReportGasReadingInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportGasReadingInfo(soap, tag, NULL, "witsml21:DrillReportGasReadingInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportGasReadingInfo(soap, tag, n, "witsml21:DrillReportGasReadingInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportGasReadingInfo(soap, tag, &n, "witsml21:DrillReportGasReadingInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465254,21 +465764,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportPerfInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportPerfInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportPerfInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportPerfInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportPerfInfo, sizeof(witsml21__DrillReportPerfInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportPerfInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportPerfInfo, sizeof(witsml21__DrillReportPerfInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportPerfInfo(soap, tag, NULL, "witsml21:DrillReportPerfInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportPerfInfo(soap, tag, n, "witsml21:DrillReportPerfInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportPerfInfo(soap, tag, &n, "witsml21:DrillReportPerfInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465344,21 +465856,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportStratInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportStratInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportStratInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportStratInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportStratInfo, sizeof(witsml21__DrillReportStratInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportStratInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportStratInfo, sizeof(witsml21__DrillReportStratInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportStratInfo(soap, tag, NULL, "witsml21:DrillReportStratInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportStratInfo(soap, tag, n, "witsml21:DrillReportStratInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportStratInfo(soap, tag, &n, "witsml21:DrillReportStratInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465434,21 +465948,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportControlIncidentInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportControlIncidentInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportControlIncidentInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportControlIncidentInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportControlIncidentInfo, sizeof(witsml21__DrillReportControlIncidentInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportControlIncidentInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportControlIncidentInfo, sizeof(witsml21__DrillReportControlIncidentInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportControlIncidentInfo(soap, tag, NULL, "witsml21:DrillReportControlIncidentInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportControlIncidentInfo(soap, tag, n, "witsml21:DrillReportControlIncidentInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportControlIncidentInfo(soap, tag, &n, "witsml21:DrillReportControlIncidentInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465524,21 +466040,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportEquipFailureInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportEquipFailureInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportEquipFailureInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportEquipFailureInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportEquipFailureInfo, sizeof(witsml21__DrillReportEquipFailureInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportEquipFailureInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportEquipFailureInfo, sizeof(witsml21__DrillReportEquipFailureInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportEquipFailureInfo(soap, tag, NULL, "witsml21:DrillReportEquipFailureInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportEquipFailureInfo(soap, tag, n, "witsml21:DrillReportEquipFailureInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportEquipFailureInfo(soap, tag, &n, "witsml21:DrillReportEquipFailureInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465614,21 +466132,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportLithShowInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportLithShowInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportLithShowInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportLithShowInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportLithShowInfo, sizeof(witsml21__DrillReportLithShowInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportLithShowInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportLithShowInfo, sizeof(witsml21__DrillReportLithShowInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportLithShowInfo(soap, tag, NULL, "witsml21:DrillReportLithShowInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportLithShowInfo(soap, tag, n, "witsml21:DrillReportLithShowInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportLithShowInfo(soap, tag, &n, "witsml21:DrillReportLithShowInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465704,21 +466224,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportFormTestInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportFormTestInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportFormTestInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportFormTestInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportFormTestInfo, sizeof(witsml21__DrillReportFormTestInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportFormTestInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportFormTestInfo, sizeof(witsml21__DrillReportFormTestInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportFormTestInfo(soap, tag, NULL, "witsml21:DrillReportFormTestInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportFormTestInfo(soap, tag, n, "witsml21:DrillReportFormTestInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportFormTestInfo(soap, tag, &n, "witsml21:DrillReportFormTestInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465794,21 +466316,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportWellTestInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportWellTestInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportWellTestInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportWellTestInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportWellTestInfo, sizeof(witsml21__DrillReportWellTestInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportWellTestInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportWellTestInfo, sizeof(witsml21__DrillReportWellTestInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportWellTestInfo(soap, tag, NULL, "witsml21:DrillReportWellTestInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportWellTestInfo(soap, tag, n, "witsml21:DrillReportWellTestInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportWellTestInfo(soap, tag, &n, "witsml21:DrillReportWellTestInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465884,21 +466408,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportCoreInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportCoreInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportCoreInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportCoreInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportCoreInfo, sizeof(witsml21__DrillReportCoreInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportCoreInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportCoreInfo, sizeof(witsml21__DrillReportCoreInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportCoreInfo(soap, tag, NULL, "witsml21:DrillReportCoreInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportCoreInfo(soap, tag, n, "witsml21:DrillReportCoreInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportCoreInfo(soap, tag, &n, "witsml21:DrillReportCoreInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -465974,21 +466500,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportLogInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportLogInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportLogInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportLogInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportLogInfo, sizeof(witsml21__DrillReportLogInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportLogInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportLogInfo, sizeof(witsml21__DrillReportLogInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportLogInfo(soap, tag, NULL, "witsml21:DrillReportLogInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportLogInfo(soap, tag, n, "witsml21:DrillReportLogInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportLogInfo(soap, tag, &n, "witsml21:DrillReportLogInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466064,21 +466592,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillActivity(soap))) return NULL; - a->emplace_back(); - witsml21__DrillActivity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillActivity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillActivity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillActivity, sizeof(witsml21__DrillActivity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillActivity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillActivity, sizeof(witsml21__DrillActivity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillActivity(soap, tag, NULL, "witsml21:DrillActivity")) break; } else - { if (!soap_in_PointerTowitsml21__DrillActivity(soap, tag, n, "witsml21:DrillActivity")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillActivity(soap, tag, &n, "witsml21:DrillActivity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466154,21 +466684,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportPorePressure(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportPorePressure * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportPorePressure *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportPorePressure, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportPorePressure, sizeof(witsml21__DrillReportPorePressure), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportPorePressure, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportPorePressure, sizeof(witsml21__DrillReportPorePressure), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportPorePressure(soap, tag, NULL, "witsml21:DrillReportPorePressure")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportPorePressure(soap, tag, n, "witsml21:DrillReportPorePressure")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportPorePressure(soap, tag, &n, "witsml21:DrillReportPorePressure")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466244,21 +466776,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempla } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Fluid(soap))) return NULL; - a->emplace_back(); - witsml21__Fluid * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Fluid *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Fluid, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Fluid, sizeof(witsml21__Fluid), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Fluid, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Fluid, sizeof(witsml21__Fluid), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Fluid(soap, tag, NULL, "witsml21:Fluid")) break; } else - { if (!soap_in_PointerTowitsml21__Fluid(soap, tag, n, "witsml21:Fluid")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Fluid(soap, tag, &n, "witsml21:Fluid")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466334,21 +466868,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportStatusInfo(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportStatusInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportStatusInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportStatusInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportStatusInfo, sizeof(witsml21__DrillReportStatusInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportStatusInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportStatusInfo, sizeof(witsml21__DrillReportStatusInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportStatusInfo(soap, tag, NULL, "witsml21:DrillReportStatusInfo")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportStatusInfo(soap, tag, n, "witsml21:DrillReportStatusInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportStatusInfo(soap, tag, &n, "witsml21:DrillReportStatusInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466424,21 +466960,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__BitRecord(soap))) return NULL; - a->emplace_back(); - witsml21__BitRecord * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__BitRecord *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__BitRecord, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BitRecord, sizeof(witsml21__BitRecord), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__BitRecord, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BitRecord, sizeof(witsml21__BitRecord), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__BitRecord(soap, tag, NULL, "witsml21:BitRecord")) break; } else - { if (!soap_in_PointerTowitsml21__BitRecord(soap, tag, n, "witsml21:BitRecord")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__BitRecord(soap, tag, &n, "witsml21:BitRecord")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466514,21 +467052,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DayCost(soap))) return NULL; - a->emplace_back(); - witsml21__DayCost * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DayCost *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DayCost, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DayCost, sizeof(witsml21__DayCost), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DayCost, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DayCost, sizeof(witsml21__DayCost), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DayCost(soap, tag, NULL, "witsml21:DayCost")) break; } else - { if (!soap_in_PointerTowitsml21__DayCost(soap, tag, n, "witsml21:DayCost")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DayCost(soap, tag, &n, "witsml21:DayCost")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466604,21 +467144,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__AbstractEventExtension(soap))) return NULL; - a->emplace_back(); - witsml21__AbstractEventExtension * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__AbstractEventExtension *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__AbstractEventExtension, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__AbstractEventExtension, sizeof(witsml21__AbstractEventExtension), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__AbstractEventExtension, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__AbstractEventExtension, sizeof(witsml21__AbstractEventExtension), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__AbstractEventExtension(soap, tag, NULL, "witsml21:AbstractEventExtension")) break; } else - { if (!soap_in_PointerTowitsml21__AbstractEventExtension(soap, tag, n, "witsml21:AbstractEventExtension")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__AbstractEventExtension(soap, tag, &n, "witsml21:AbstractEventExtension")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466694,21 +467236,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Perforating(soap))) return NULL; - a->emplace_back(); - witsml21__Perforating * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Perforating *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Perforating, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Perforating, sizeof(witsml21__Perforating), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Perforating, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Perforating, sizeof(witsml21__Perforating), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Perforating(soap, tag, NULL, "witsml21:Perforating")) break; } else - { if (!soap_in_PointerTowitsml21__Perforating(soap, tag, n, "witsml21:Perforating")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Perforating(soap, tag, &n, "witsml21:Perforating")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466784,21 +467328,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CompletionStatusHistory(soap))) return NULL; - a->emplace_back(); - witsml21__CompletionStatusHistory * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CompletionStatusHistory *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CompletionStatusHistory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CompletionStatusHistory, sizeof(witsml21__CompletionStatusHistory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CompletionStatusHistory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CompletionStatusHistory, sizeof(witsml21__CompletionStatusHistory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CompletionStatusHistory(soap, tag, NULL, "witsml21:CompletionStatusHistory")) break; } else - { if (!soap_in_PointerTowitsml21__CompletionStatusHistory(soap, tag, n, "witsml21:CompletionStatusHistory")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CompletionStatusHistory(soap, tag, &n, "witsml21:CompletionStatusHistory")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466874,21 +467420,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__UniformSubnodePatch(soap))) return NULL; - a->emplace_back(); - resqml22__UniformSubnodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__UniformSubnodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__UniformSubnodePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__UniformSubnodePatch, sizeof(resqml22__UniformSubnodePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__UniformSubnodePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__UniformSubnodePatch, sizeof(resqml22__UniformSubnodePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__UniformSubnodePatch(soap, tag, NULL, "resqml22:UniformSubnodePatch")) break; } else - { if (!soap_in_PointerToresqml22__UniformSubnodePatch(soap, tag, n, "resqml22:UniformSubnodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__UniformSubnodePatch(soap, tag, &n, "resqml22:UniformSubnodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -466964,21 +467512,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__VariableSubnodePatch(soap))) return NULL; - a->emplace_back(); - resqml22__VariableSubnodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__VariableSubnodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__VariableSubnodePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__VariableSubnodePatch, sizeof(resqml22__VariableSubnodePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__VariableSubnodePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__VariableSubnodePatch, sizeof(resqml22__VariableSubnodePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__VariableSubnodePatch(soap, tag, NULL, "resqml22:VariableSubnodePatch")) break; } else - { if (!soap_in_PointerToresqml22__VariableSubnodePatch(soap, tag, n, "resqml22:VariableSubnodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__VariableSubnodePatch(soap, tag, &n, "resqml22:VariableSubnodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467054,21 +467604,23 @@ SOAP_FMAC3 std::vector * SOAP_FM } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__UnstructuredColumnLayerGpGridPatch(soap))) return NULL; - a->emplace_back(); - resqml22__UnstructuredColumnLayerGpGridPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__UnstructuredColumnLayerGpGridPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredColumnLayerGpGridPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__UnstructuredColumnLayerGpGridPatch, sizeof(resqml22__UnstructuredColumnLayerGpGridPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredColumnLayerGpGridPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__UnstructuredColumnLayerGpGridPatch, sizeof(resqml22__UnstructuredColumnLayerGpGridPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__UnstructuredColumnLayerGpGridPatch(soap, tag, NULL, "resqml22:UnstructuredColumnLayerGpGridPatch")) break; } else - { if (!soap_in_PointerToresqml22__UnstructuredColumnLayerGpGridPatch(soap, tag, n, "resqml22:UnstructuredColumnLayerGpGridPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__UnstructuredColumnLayerGpGridPatch(soap, tag, &n, "resqml22:UnstructuredColumnLayerGpGridPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467144,21 +467696,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__IjkGpGridPatch(soap))) return NULL; - a->emplace_back(); - resqml22__IjkGpGridPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__IjkGpGridPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__IjkGpGridPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__IjkGpGridPatch, sizeof(resqml22__IjkGpGridPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__IjkGpGridPatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__IjkGpGridPatch, sizeof(resqml22__IjkGpGridPatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__IjkGpGridPatch(soap, tag, NULL, "resqml22:IjkGpGridPatch")) break; } else - { if (!soap_in_PointerToresqml22__IjkGpGridPatch(soap, tag, n, "resqml22:IjkGpGridPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__IjkGpGridPatch(soap, tag, &n, "resqml22:IjkGpGridPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467234,21 +467788,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__ElementIdentity(soap))) return NULL; - a->emplace_back(); - resqml22__ElementIdentity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__ElementIdentity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ElementIdentity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ElementIdentity, sizeof(resqml22__ElementIdentity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ElementIdentity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__ElementIdentity, sizeof(resqml22__ElementIdentity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__ElementIdentity(soap, tag, NULL, "resqml22:ElementIdentity")) break; } else - { if (!soap_in_PointerToresqml22__ElementIdentity(soap, tag, n, "resqml22:ElementIdentity")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__ElementIdentity(soap, tag, &n, "resqml22:ElementIdentity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467324,31 +467880,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfre } if (!a && !(a = soap_new_std__vectorTemplateOfresqml22__ThrowKindExt(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_resqml22__ThrowKindExt(soap, n); + std::string n; + soap_default_resqml22__ThrowKindExt(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__ThrowKindExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfresqml22__ThrowKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__ThrowKindExt, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfresqml22__ThrowKindExt, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_resqml22__ThrowKindExt(soap, tag, NULL, "resqml22:ThrowKindExt")) break; } else - { if (!soap_in_resqml22__ThrowKindExt(soap, tag, n, "resqml22:ThrowKindExt")) - { a->pop_back(); + { if (!soap_in_resqml22__ThrowKindExt(soap, tag, &n, "resqml22:ThrowKindExt")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -467424,21 +467984,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__VolumeShell(soap))) return NULL; - a->emplace_back(); - resqml22__VolumeShell * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__VolumeShell *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__VolumeShell, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__VolumeShell, sizeof(resqml22__VolumeShell), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__VolumeShell, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__VolumeShell, sizeof(resqml22__VolumeShell), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__VolumeShell(soap, tag, NULL, "resqml22:VolumeShell")) break; } else - { if (!soap_in_PointerToresqml22__VolumeShell(soap, tag, n, "resqml22:VolumeShell")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__VolumeShell(soap, tag, &n, "resqml22:VolumeShell")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467514,21 +468076,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__EdgePatch(soap))) return NULL; - a->emplace_back(); - resqml22__EdgePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__EdgePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__EdgePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__EdgePatch, sizeof(resqml22__EdgePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__EdgePatch, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__EdgePatch, sizeof(resqml22__EdgePatch), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__EdgePatch(soap, tag, NULL, "resqml22:EdgePatch")) break; } else - { if (!soap_in_PointerToresqml22__EdgePatch(soap, tag, n, "resqml22:EdgePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__EdgePatch(soap, tag, &n, "resqml22:EdgePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467604,21 +468168,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml22__Point3d(soap))) return NULL; - a->emplace_back(); - resqml22__Point3d * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml22__Point3d *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_resqml22__Point3d, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__Point3d, sizeof(resqml22__Point3d), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_resqml22__Point3d, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToresqml22__Point3d, sizeof(resqml22__Point3d), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToresqml22__Point3d(soap, tag, NULL, "resqml22:Point3d")) break; } else - { if (!soap_in_PointerToresqml22__Point3d(soap, tag, n, "resqml22:Point3d")) - { a->pop_back(); + { if (!soap_in_PointerToresqml22__Point3d(soap, tag, &n, "resqml22:Point3d")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467655,33 +468221,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowPort(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowPort(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowPort(soap, tag, id, &(*i), "prodml22:ProductFlowPort")) + if (soap_out_PointerToprodml23__ProductFlowPort(soap, tag, id, &(*i), "prodml23:ProductFlowPort")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -467692,23 +468258,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap))) return NULL; - a->emplace_back(); - prodml22__ProductFlowPort * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductFlowPort *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort, sizeof(prodml22__ProductFlowPort), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort, sizeof(prodml23__ProductFlowPort), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowPort(soap, tag, NULL, "prodml22:ProductFlowPort")) + if (!soap_in_PointerToprodml23__ProductFlowPort(soap, tag, NULL, "prodml23:ProductFlowPort")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowPort(soap, tag, n, "prodml22:ProductFlowPort")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowPort(soap, tag, &n, "prodml23:ProductFlowPort")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467719,23 +468287,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -467745,33 +468313,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantia return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FacilityIdentifierStruct(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FacilityIdentifierStruct(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FacilityIdentifierStruct(soap, tag, id, &(*i), "prodml22:FacilityIdentifierStruct")) + if (soap_out_PointerToprodml23__FacilityIdentifierStruct(soap, tag, id, &(*i), "prodml23:FacilityIdentifierStruct")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -467782,23 +468350,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap))) return NULL; - a->emplace_back(); - prodml22__FacilityIdentifierStruct * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__FacilityIdentifierStruct *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct, sizeof(prodml22__FacilityIdentifierStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct, sizeof(prodml23__FacilityIdentifierStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, tag, NULL, "prodml22:FacilityIdentifierStruct")) + if (!soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, tag, NULL, "prodml23:FacilityIdentifierStruct")) break; } else - { if (!soap_in_PointerToprodml22__FacilityIdentifierStruct(soap, tag, n, "prodml22:FacilityIdentifierStruct")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FacilityIdentifierStruct(soap, tag, &n, "prodml23:FacilityIdentifierStruct")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467809,23 +468379,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -467835,33 +468405,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag, id, &(*i), "prodml22:ProductFlowExpectedUnitProperty")) + if (soap_out_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag, id, &(*i), "prodml23:ProductFlowExpectedUnitProperty")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -467872,23 +468442,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap))) return NULL; - a->emplace_back(); - prodml22__ProductFlowExpectedUnitProperty * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductFlowExpectedUnitProperty *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty, sizeof(prodml22__ProductFlowExpectedUnitProperty), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty, sizeof(prodml23__ProductFlowExpectedUnitProperty), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag, NULL, "prodml22:ProductFlowExpectedUnitProperty")) + if (!soap_in_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag, NULL, "prodml23:ProductFlowExpectedUnitProperty")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowExpectedUnitProperty(soap, tag, n, "prodml22:ProductFlowExpectedUnitProperty")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowExpectedUnitProperty(soap, tag, &n, "prodml23:ProductFlowExpectedUnitProperty")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467899,23 +468471,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -467925,33 +468497,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ConnectedNode(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ConnectedNode(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ConnectedNode(soap, tag, id, &(*i), "prodml22:ConnectedNode")) + if (soap_out_PointerToprodml23__ConnectedNode(soap, tag, id, &(*i), "prodml23:ConnectedNode")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -467962,23 +468534,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap))) return NULL; - a->emplace_back(); - prodml22__ConnectedNode * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ConnectedNode *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode, sizeof(prodml22__ConnectedNode), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode, sizeof(prodml23__ConnectedNode), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ConnectedNode(soap, tag, NULL, "prodml22:ConnectedNode")) + if (!soap_in_PointerToprodml23__ConnectedNode(soap, tag, NULL, "prodml23:ConnectedNode")) break; } else - { if (!soap_in_PointerToprodml22__ConnectedNode(soap, tag, n, "prodml22:ConnectedNode")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ConnectedNode(soap, tag, &n, "prodml23:ConnectedNode")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -467989,23 +468563,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConnectedNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConnectedNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468015,33 +468589,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowQualifierExpected(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowQualifierExpected(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowQualifierExpected(soap, tag, id, &(*i), "prodml22:ProductFlowQualifierExpected")) + if (soap_out_PointerToprodml23__ProductFlowQualifierExpected(soap, tag, id, &(*i), "prodml23:ProductFlowQualifierExpected")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468052,23 +468626,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap))) return NULL; - a->emplace_back(); - prodml22__ProductFlowQualifierExpected * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductFlowQualifierExpected *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected, sizeof(prodml22__ProductFlowQualifierExpected), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected, sizeof(prodml23__ProductFlowQualifierExpected), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowQualifierExpected(soap, tag, NULL, "prodml22:ProductFlowQualifierExpected")) + if (!soap_in_PointerToprodml23__ProductFlowQualifierExpected(soap, tag, NULL, "prodml23:ProductFlowQualifierExpected")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowQualifierExpected(soap, tag, n, "prodml22:ProductFlowQualifierExpected")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowQualifierExpected(soap, tag, &n, "prodml23:ProductFlowQualifierExpected")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468079,23 +468655,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468105,33 +468681,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumePeriod(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumePeriod(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumePeriod(soap, tag, id, &(*i), "prodml22:ProductVolumePeriod")) + if (soap_out_PointerToprodml23__ProductVolumePeriod(soap, tag, id, &(*i), "prodml23:ProductVolumePeriod")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468142,23 +468718,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumePeriod * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumePeriod *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod, sizeof(prodml22__ProductVolumePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod, sizeof(prodml23__ProductVolumePeriod), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumePeriod(soap, tag, NULL, "prodml22:ProductVolumePeriod")) + if (!soap_in_PointerToprodml23__ProductVolumePeriod(soap, tag, NULL, "prodml23:ProductVolumePeriod")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumePeriod(soap, tag, n, "prodml22:ProductVolumePeriod")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumePeriod(soap, tag, &n, "prodml23:ProductVolumePeriod")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468169,23 +468747,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468195,33 +468773,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_insta return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeBalanceSet(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeBalanceSet(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeBalanceSet(soap, tag, id, &(*i), "prodml22:ProductVolumeBalanceSet")) + if (soap_out_PointerToprodml23__ProductVolumeBalanceSet(soap, tag, id, &(*i), "prodml23:ProductVolumeBalanceSet")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468232,23 +468810,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeBalanceSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeBalanceSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet, sizeof(prodml22__ProductVolumeBalanceSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet, sizeof(prodml23__ProductVolumeBalanceSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeBalanceSet(soap, tag, NULL, "prodml22:ProductVolumeBalanceSet")) + if (!soap_in_PointerToprodml23__ProductVolumeBalanceSet(soap, tag, NULL, "prodml23:ProductVolumeBalanceSet")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeBalanceSet(soap, tag, n, "prodml22:ProductVolumeBalanceSet")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeBalanceSet(soap, tag, &n, "prodml23:ProductVolumeBalanceSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468259,23 +468839,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468285,33 +468865,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_i return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AbstractMeasureData(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AbstractMeasureData(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AbstractMeasureData(soap, tag, id, &(*i), "prodml22:AbstractMeasureData")) + if (soap_out_PointerToprodml23__AbstractMeasureData(soap, tag, id, &(*i), "prodml23:AbstractMeasureData")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468322,23 +468902,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap))) return NULL; - a->emplace_back(); - prodml22__AbstractMeasureData * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__AbstractMeasureData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData, sizeof(prodml22__AbstractMeasureData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData, sizeof(prodml23__AbstractMeasureData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AbstractMeasureData(soap, tag, NULL, "prodml22:AbstractMeasureData")) + if (!soap_in_PointerToprodml23__AbstractMeasureData(soap, tag, NULL, "prodml23:AbstractMeasureData")) break; } else - { if (!soap_in_PointerToprodml22__AbstractMeasureData(soap, tag, n, "prodml22:AbstractMeasureData")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AbstractMeasureData(soap, tag, &n, "prodml23:AbstractMeasureData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468349,23 +468931,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468375,33 +468957,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_insta return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__CurveDefinition(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__CurveDefinition(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__CurveDefinition(soap, tag, id, &(*i), "prodml22:CurveDefinition")) + if (soap_out_PointerToprodml23__CurveDefinition(soap, tag, id, &(*i), "prodml23:CurveDefinition")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468412,23 +468994,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap))) return NULL; - a->emplace_back(); - prodml22__CurveDefinition * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__CurveDefinition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition, sizeof(prodml22__CurveDefinition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition, sizeof(prodml23__CurveDefinition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__CurveDefinition(soap, tag, NULL, "prodml22:CurveDefinition")) + if (!soap_in_PointerToprodml23__CurveDefinition(soap, tag, NULL, "prodml23:CurveDefinition")) break; } else - { if (!soap_in_PointerToprodml22__CurveDefinition(soap, tag, n, "prodml22:CurveDefinition")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__CurveDefinition(soap, tag, &n, "prodml23:CurveDefinition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468439,23 +469023,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__CurveDefinition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__CurveDefinition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468465,33 +469049,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantia return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeParameterValue(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeParameterValue(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeParameterValue(soap, tag, id, &(*i), "prodml22:ProductVolumeParameterValue")) + if (soap_out_PointerToprodml23__ProductVolumeParameterValue(soap, tag, id, &(*i), "prodml23:ProductVolumeParameterValue")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468502,23 +469086,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeParameterValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeParameterValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue, sizeof(prodml22__ProductVolumeParameterValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue, sizeof(prodml23__ProductVolumeParameterValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeParameterValue(soap, tag, NULL, "prodml22:ProductVolumeParameterValue")) + if (!soap_in_PointerToprodml23__ProductVolumeParameterValue(soap, tag, NULL, "prodml23:ProductVolumeParameterValue")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeParameterValue(soap, tag, n, "prodml22:ProductVolumeParameterValue")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeParameterValue(soap, tag, &n, "prodml23:ProductVolumeParameterValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468529,23 +469115,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468555,33 +469141,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 so return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeProduct(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeProduct(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeProduct(soap, tag, id, &(*i), "prodml22:ProductVolumeProduct")) + if (soap_out_PointerToprodml23__ProductVolumeProduct(soap, tag, id, &(*i), "prodml23:ProductVolumeProduct")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468592,23 +469178,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeProduct * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeProduct *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct, sizeof(prodml22__ProductVolumeProduct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct, sizeof(prodml23__ProductVolumeProduct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeProduct(soap, tag, NULL, "prodml22:ProductVolumeProduct")) + if (!soap_in_PointerToprodml23__ProductVolumeProduct(soap, tag, NULL, "prodml23:ProductVolumeProduct")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeProduct(soap, tag, n, "prodml22:ProductVolumeProduct")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeProduct(soap, tag, &n, "prodml23:ProductVolumeProduct")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468619,23 +469207,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468645,33 +469233,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__DatedComment(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__DatedComment(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__DatedComment(soap, tag, id, &(*i), "prodml22:DatedComment")) + if (soap_out_PointerToprodml23__DatedComment(soap, tag, id, &(*i), "prodml23:DatedComment")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468682,23 +469270,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__DatedComment(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__DatedComment(soap))) return NULL; - a->emplace_back(); - prodml22__DatedComment * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__DatedComment *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment, sizeof(prodml22__DatedComment), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment, sizeof(prodml23__DatedComment), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__DatedComment(soap, tag, NULL, "prodml22:DatedComment")) + if (!soap_in_PointerToprodml23__DatedComment(soap, tag, NULL, "prodml23:DatedComment")) break; } else - { if (!soap_in_PointerToprodml22__DatedComment(soap, tag, n, "prodml22:DatedComment")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__DatedComment(soap, tag, &n, "prodml23:DatedComment")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468709,23 +469299,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__DatedComment(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__DatedComment(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468735,33 +469325,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeParameterSet(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeParameterSet(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeParameterSet(soap, tag, id, &(*i), "prodml22:ProductVolumeParameterSet")) + if (soap_out_PointerToprodml23__ProductVolumeParameterSet(soap, tag, id, &(*i), "prodml23:ProductVolumeParameterSet")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468772,23 +469362,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeParameterSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeParameterSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet, sizeof(prodml22__ProductVolumeParameterSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet, sizeof(prodml23__ProductVolumeParameterSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeParameterSet(soap, tag, NULL, "prodml22:ProductVolumeParameterSet")) + if (!soap_in_PointerToprodml23__ProductVolumeParameterSet(soap, tag, NULL, "prodml23:ProductVolumeParameterSet")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeParameterSet(soap, tag, n, "prodml22:ProductVolumeParameterSet")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeParameterSet(soap, tag, &n, "prodml23:ProductVolumeParameterSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468799,23 +469391,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468825,33 +469417,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeFlow(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeFlow(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeFlow(soap, tag, id, &(*i), "prodml22:ProductVolumeFlow")) + if (soap_out_PointerToprodml23__ProductVolumeFlow(soap, tag, id, &(*i), "prodml23:ProductVolumeFlow")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468862,23 +469454,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeFlow * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeFlow *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow, sizeof(prodml22__ProductVolumeFlow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow, sizeof(prodml23__ProductVolumeFlow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeFlow(soap, tag, NULL, "prodml22:ProductVolumeFlow")) + if (!soap_in_PointerToprodml23__ProductVolumeFlow(soap, tag, NULL, "prodml23:ProductVolumeFlow")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeFlow(soap, tag, n, "prodml22:ProductVolumeFlow")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeFlow(soap, tag, &n, "prodml23:ProductVolumeFlow")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468889,23 +469483,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -468915,33 +469509,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag, id, &(*i), "prodml22:ProductVolumeBusinessSubUnit")) + if (soap_out_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag, id, &(*i), "prodml23:ProductVolumeBusinessSubUnit")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -468952,23 +469546,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeBusinessSubUnit * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeBusinessSubUnit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit, sizeof(prodml22__ProductVolumeBusinessSubUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit, sizeof(prodml23__ProductVolumeBusinessSubUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag, NULL, "prodml22:ProductVolumeBusinessSubUnit")) + if (!soap_in_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag, NULL, "prodml23:ProductVolumeBusinessSubUnit")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeBusinessSubUnit(soap, tag, n, "prodml22:ProductVolumeBusinessSubUnit")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeBusinessSubUnit(soap, tag, &n, "prodml23:ProductVolumeBusinessSubUnit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -468979,23 +469575,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469005,33 +469601,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeBalanceDetail(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeBalanceDetail(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag, id, &(*i), "prodml22:ProductVolumeBalanceDetail")) + if (soap_out_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag, id, &(*i), "prodml23:ProductVolumeBalanceDetail")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469042,23 +469638,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeBalanceDetail * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeBalanceDetail *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail, sizeof(prodml22__ProductVolumeBalanceDetail), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail, sizeof(prodml23__ProductVolumeBalanceDetail), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag, NULL, "prodml22:ProductVolumeBalanceDetail")) + if (!soap_in_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag, NULL, "prodml23:ProductVolumeBalanceDetail")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeBalanceDetail(soap, tag, n, "prodml22:ProductVolumeBalanceDetail")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeBalanceDetail(soap, tag, &n, "prodml23:ProductVolumeBalanceDetail")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469069,23 +469667,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469095,33 +469693,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soa return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeBalanceEvent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeBalanceEvent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag, id, &(*i), "prodml22:ProductVolumeBalanceEvent")) + if (soap_out_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag, id, &(*i), "prodml23:ProductVolumeBalanceEvent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469132,23 +469730,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeBalanceEvent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeBalanceEvent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent, sizeof(prodml22__ProductVolumeBalanceEvent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent, sizeof(prodml23__ProductVolumeBalanceEvent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag, NULL, "prodml22:ProductVolumeBalanceEvent")) + if (!soap_in_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag, NULL, "prodml23:ProductVolumeBalanceEvent")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeBalanceEvent(soap, tag, n, "prodml22:ProductVolumeBalanceEvent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeBalanceEvent(soap, tag, &n, "prodml23:ProductVolumeBalanceEvent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469159,23 +469759,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469185,33 +469785,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumeComponentContent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumeComponentContent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumeComponentContent(soap, tag, id, &(*i), "prodml22:ProductVolumeComponentContent")) + if (soap_out_PointerToprodml23__ProductVolumeComponentContent(soap, tag, id, &(*i), "prodml23:ProductVolumeComponentContent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469222,23 +469822,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumeComponentContent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumeComponentContent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent, sizeof(prodml22__ProductVolumeComponentContent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent, sizeof(prodml23__ProductVolumeComponentContent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumeComponentContent(soap, tag, NULL, "prodml22:ProductVolumeComponentContent")) + if (!soap_in_PointerToprodml23__ProductVolumeComponentContent(soap, tag, NULL, "prodml23:ProductVolumeComponentContent")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumeComponentContent(soap, tag, n, "prodml22:ProductVolumeComponentContent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumeComponentContent(soap, tag, &n, "prodml23:ProductVolumeComponentContent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469249,23 +469851,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469314,21 +469916,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__FlowRateValue(soap))) return NULL; - a->emplace_back(); - eml23__FlowRateValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__FlowRateValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__FlowRateValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FlowRateValue, sizeof(eml23__FlowRateValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__FlowRateValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__FlowRateValue, sizeof(eml23__FlowRateValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__FlowRateValue(soap, tag, NULL, "eml23:FlowRateValue")) break; } else - { if (!soap_in_PointerToeml23__FlowRateValue(soap, tag, n, "eml23:FlowRateValue")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__FlowRateValue(soap, tag, &n, "eml23:FlowRateValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469365,33 +469969,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_st return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductVolumePortDifference(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductVolumePortDifference(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductVolumePortDifference(soap, tag, id, &(*i), "prodml22:ProductVolumePortDifference")) + if (soap_out_PointerToprodml23__ProductVolumePortDifference(soap, tag, id, &(*i), "prodml23:ProductVolumePortDifference")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469402,23 +470006,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap))) return NULL; - a->emplace_back(); - prodml22__ProductVolumePortDifference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductVolumePortDifference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference, sizeof(prodml22__ProductVolumePortDifference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference, sizeof(prodml23__ProductVolumePortDifference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductVolumePortDifference(soap, tag, NULL, "prodml22:ProductVolumePortDifference")) + if (!soap_in_PointerToprodml23__ProductVolumePortDifference(soap, tag, NULL, "prodml23:ProductVolumePortDifference")) break; } else - { if (!soap_in_PointerToprodml22__ProductVolumePortDifference(soap, tag, n, "prodml22:ProductVolumePortDifference")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductVolumePortDifference(soap, tag, &n, "prodml23:ProductVolumePortDifference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469429,23 +470035,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469494,21 +470100,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__VolumeValue(soap))) return NULL; - a->emplace_back(); - eml23__VolumeValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__VolumeValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__VolumeValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__VolumeValue, sizeof(eml23__VolumeValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__VolumeValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__VolumeValue, sizeof(eml23__VolumeValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__VolumeValue(soap, tag, NULL, "eml23:VolumeValue")) break; } else - { if (!soap_in_PointerToeml23__VolumeValue(soap, tag, n, "eml23:VolumeValue")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__VolumeValue(soap, tag, &n, "eml23:VolumeValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469584,21 +470192,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__DensityValue(soap))) return NULL; - a->emplace_back(); - eml23__DensityValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__DensityValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__DensityValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DensityValue, sizeof(eml23__DensityValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__DensityValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DensityValue, sizeof(eml23__DensityValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__DensityValue(soap, tag, NULL, "eml23:DensityValue")) break; } else - { if (!soap_in_PointerToeml23__DensityValue(soap, tag, n, "eml23:DensityValue")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__DensityValue(soap, tag, &n, "eml23:DensityValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469635,33 +470245,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__RecombinedSampleFraction(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__RecombinedSampleFraction(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__RecombinedSampleFraction(soap, tag, id, &(*i), "prodml22:RecombinedSampleFraction")) + if (soap_out_PointerToprodml23__RecombinedSampleFraction(soap, tag, id, &(*i), "prodml23:RecombinedSampleFraction")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469672,23 +470282,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap))) return NULL; - a->emplace_back(); - prodml22__RecombinedSampleFraction * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__RecombinedSampleFraction *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction, sizeof(prodml22__RecombinedSampleFraction), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction, sizeof(prodml23__RecombinedSampleFraction), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__RecombinedSampleFraction(soap, tag, NULL, "prodml22:RecombinedSampleFraction")) + if (!soap_in_PointerToprodml23__RecombinedSampleFraction(soap, tag, NULL, "prodml23:RecombinedSampleFraction")) break; } else - { if (!soap_in_PointerToprodml22__RecombinedSampleFraction(soap, tag, n, "prodml22:RecombinedSampleFraction")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__RecombinedSampleFraction(soap, tag, &n, "prodml23:RecombinedSampleFraction")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469699,23 +470311,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469725,33 +470337,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__CustomParameter(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__CustomParameter(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__CustomParameter(soap, tag, id, &(*i), "prodml22:CustomParameter")) + if (soap_out_PointerToprodml23__CustomParameter(soap, tag, id, &(*i), "prodml23:CustomParameter")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469762,23 +470374,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap))) return NULL; - a->emplace_back(); - prodml22__CustomParameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__CustomParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter, sizeof(prodml22__CustomParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter, sizeof(prodml23__CustomParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__CustomParameter(soap, tag, NULL, "prodml22:CustomParameter")) + if (!soap_in_PointerToprodml23__CustomParameter(soap, tag, NULL, "prodml23:CustomParameter")) break; } else - { if (!soap_in_PointerToprodml22__CustomParameter(soap, tag, n, "prodml22:CustomParameter")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__CustomParameter(soap, tag, &n, "prodml23:CustomParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469789,23 +470403,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469815,33 +470429,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantia return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AbstractParameter(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AbstractParameter(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AbstractParameter(soap, tag, id, &(*i), "prodml22:AbstractParameter")) + if (soap_out_PointerToprodml23__AbstractParameter(soap, tag, id, &(*i), "prodml23:AbstractParameter")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469852,23 +470466,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap))) return NULL; - a->emplace_back(); - prodml22__AbstractParameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__AbstractParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter, sizeof(prodml22__AbstractParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter, sizeof(prodml23__AbstractParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AbstractParameter(soap, tag, NULL, "prodml22:AbstractParameter")) + if (!soap_in_PointerToprodml23__AbstractParameter(soap, tag, NULL, "prodml23:AbstractParameter")) break; } else - { if (!soap_in_PointerToprodml22__AbstractParameter(soap, tag, n, "prodml22:AbstractParameter")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AbstractParameter(soap, tag, &n, "prodml23:AbstractParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469879,23 +470495,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469905,33 +470521,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__LocationIn2D(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__LocationIn2D(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__LocationIn2D(soap, tag, id, &(*i), "prodml22:LocationIn2D")) + if (soap_out_PointerToprodml23__LocationIn2D(soap, tag, id, &(*i), "prodml23:LocationIn2D")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -469942,23 +470558,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap))) return NULL; - a->emplace_back(); - prodml22__LocationIn2D * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__LocationIn2D *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D, sizeof(prodml22__LocationIn2D), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D, sizeof(prodml23__LocationIn2D), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__LocationIn2D(soap, tag, NULL, "prodml22:LocationIn2D")) + if (!soap_in_PointerToprodml23__LocationIn2D(soap, tag, NULL, "prodml23:LocationIn2D")) break; } else - { if (!soap_in_PointerToprodml22__LocationIn2D(soap, tag, n, "prodml22:LocationIn2D")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__LocationIn2D(soap, tag, &n, "prodml23:LocationIn2D")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -469969,23 +470587,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__LocationIn2D(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__LocationIn2D(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -469995,33 +470613,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AnalysisLine(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AnalysisLine(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AnalysisLine(soap, tag, id, &(*i), "prodml22:AnalysisLine")) + if (soap_out_PointerToprodml23__AnalysisLine(soap, tag, id, &(*i), "prodml23:AnalysisLine")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470032,23 +470650,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap))) return NULL; - a->emplace_back(); - prodml22__AnalysisLine * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__AnalysisLine *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine, sizeof(prodml22__AnalysisLine), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine, sizeof(prodml23__AnalysisLine), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AnalysisLine(soap, tag, NULL, "prodml22:AnalysisLine")) + if (!soap_in_PointerToprodml23__AnalysisLine(soap, tag, NULL, "prodml23:AnalysisLine")) break; } else - { if (!soap_in_PointerToprodml22__AnalysisLine(soap, tag, n, "prodml22:AnalysisLine")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AnalysisLine(soap, tag, &n, "prodml23:AnalysisLine")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470059,23 +470679,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AnalysisLine(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AnalysisLine(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470085,33 +470705,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__LayerToLayerConnection(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__LayerToLayerConnection(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__LayerToLayerConnection(soap, tag, id, &(*i), "prodml22:LayerToLayerConnection")) + if (soap_out_PointerToprodml23__LayerToLayerConnection(soap, tag, id, &(*i), "prodml23:LayerToLayerConnection")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470122,23 +470742,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap))) return NULL; - a->emplace_back(); - prodml22__LayerToLayerConnection * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__LayerToLayerConnection *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection, sizeof(prodml22__LayerToLayerConnection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection, sizeof(prodml23__LayerToLayerConnection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__LayerToLayerConnection(soap, tag, NULL, "prodml22:LayerToLayerConnection")) + if (!soap_in_PointerToprodml23__LayerToLayerConnection(soap, tag, NULL, "prodml23:LayerToLayerConnection")) break; } else - { if (!soap_in_PointerToprodml22__LayerToLayerConnection(soap, tag, n, "prodml22:LayerToLayerConnection")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__LayerToLayerConnection(soap, tag, &n, "prodml23:LayerToLayerConnection")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470149,23 +470771,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470175,33 +470797,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ReportingHierarchyNode(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ReportingHierarchyNode(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ReportingHierarchyNode(soap, tag, id, &(*i), "prodml22:ReportingHierarchyNode")) + if (soap_out_PointerToprodml23__ReportingHierarchyNode(soap, tag, id, &(*i), "prodml23:ReportingHierarchyNode")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470212,23 +470834,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap))) return NULL; - a->emplace_back(); - prodml22__ReportingHierarchyNode * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ReportingHierarchyNode *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode, sizeof(prodml22__ReportingHierarchyNode), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode, sizeof(prodml23__ReportingHierarchyNode), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ReportingHierarchyNode(soap, tag, NULL, "prodml22:ReportingHierarchyNode")) + if (!soap_in_PointerToprodml23__ReportingHierarchyNode(soap, tag, NULL, "prodml23:ReportingHierarchyNode")) break; } else - { if (!soap_in_PointerToprodml22__ReportingHierarchyNode(soap, tag, n, "prodml22:ReportingHierarchyNode")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ReportingHierarchyNode(soap, tag, &n, "prodml23:ReportingHierarchyNode")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470239,23 +470863,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470265,33 +470889,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductRate(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductRate(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductRate(soap, tag, id, &(*i), "prodml22:ProductRate")) + if (soap_out_PointerToprodml23__ProductRate(soap, tag, id, &(*i), "prodml23:ProductRate")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470302,23 +470926,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductRate(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductRate(soap))) return NULL; - a->emplace_back(); - prodml22__ProductRate * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ProductRate *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate, sizeof(prodml22__ProductRate), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate, sizeof(prodml23__ProductRate), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductRate(soap, tag, NULL, "prodml22:ProductRate")) + if (!soap_in_PointerToprodml23__ProductRate(soap, tag, NULL, "prodml23:ProductRate")) break; } else - { if (!soap_in_PointerToprodml22__ProductRate(soap, tag, n, "prodml22:ProductRate")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductRate(soap, tag, &n, "prodml23:ProductRate")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470329,23 +470955,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductRate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductRate(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470355,33 +470981,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__MeasuredPressureData(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__MeasuredPressureData(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__MeasuredPressureData(soap, tag, id, &(*i), "prodml22:MeasuredPressureData")) + if (soap_out_PointerToprodml23__MeasuredPressureData(soap, tag, id, &(*i), "prodml23:MeasuredPressureData")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470392,23 +471018,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap))) return NULL; - a->emplace_back(); - prodml22__MeasuredPressureData * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__MeasuredPressureData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData, sizeof(prodml22__MeasuredPressureData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData, sizeof(prodml23__MeasuredPressureData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__MeasuredPressureData(soap, tag, NULL, "prodml22:MeasuredPressureData")) + if (!soap_in_PointerToprodml23__MeasuredPressureData(soap, tag, NULL, "prodml23:MeasuredPressureData")) break; } else - { if (!soap_in_PointerToprodml22__MeasuredPressureData(soap, tag, n, "prodml22:MeasuredPressureData")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__MeasuredPressureData(soap, tag, &n, "prodml23:MeasuredPressureData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470419,23 +471047,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470445,33 +471073,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__AbstractPtaFlowData(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__AbstractPtaFlowData(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__AbstractPtaFlowData(soap, tag, id, &(*i), "prodml22:AbstractPtaFlowData")) + if (soap_out_PointerToprodml23__AbstractPtaFlowData(soap, tag, id, &(*i), "prodml23:AbstractPtaFlowData")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470482,23 +471110,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap))) return NULL; - a->emplace_back(); - prodml22__AbstractPtaFlowData * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__AbstractPtaFlowData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData, sizeof(prodml22__AbstractPtaFlowData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData, sizeof(prodml23__AbstractPtaFlowData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__AbstractPtaFlowData(soap, tag, NULL, "prodml22:AbstractPtaFlowData")) + if (!soap_in_PointerToprodml23__AbstractPtaFlowData(soap, tag, NULL, "prodml23:AbstractPtaFlowData")) break; } else - { if (!soap_in_PointerToprodml22__AbstractPtaFlowData(soap, tag, n, "prodml22:AbstractPtaFlowData")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__AbstractPtaFlowData(soap, tag, &n, "prodml23:AbstractPtaFlowData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470509,23 +471139,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470535,33 +471165,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_insta return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__OtherData(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__OtherData(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__OtherData(soap, tag, id, &(*i), "prodml22:OtherData")) + if (soap_out_PointerToprodml23__OtherData(soap, tag, id, &(*i), "prodml23:OtherData")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470572,23 +471202,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__OtherData(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__OtherData(soap))) return NULL; - a->emplace_back(); - prodml22__OtherData * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__OtherData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData, sizeof(prodml22__OtherData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData, sizeof(prodml23__OtherData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__OtherData(soap, tag, NULL, "prodml22:OtherData")) + if (!soap_in_PointerToprodml23__OtherData(soap, tag, NULL, "prodml23:OtherData")) break; } else - { if (!soap_in_PointerToprodml22__OtherData(soap, tag, n, "prodml22:OtherData")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__OtherData(soap, tag, &n, "prodml23:OtherData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470599,23 +471231,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherData(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470625,33 +471257,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__WaterAnalysisTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__WaterAnalysisTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__WaterAnalysisTestStep(soap, tag, id, &(*i), "prodml22:WaterAnalysisTestStep")) + if (soap_out_PointerToprodml23__WaterAnalysisTestStep(soap, tag, id, &(*i), "prodml23:WaterAnalysisTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470662,23 +471294,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap))) return NULL; - a->emplace_back(); - prodml22__WaterAnalysisTestStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__WaterAnalysisTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep, sizeof(prodml22__WaterAnalysisTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep, sizeof(prodml23__WaterAnalysisTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__WaterAnalysisTestStep(soap, tag, NULL, "prodml22:WaterAnalysisTestStep")) + if (!soap_in_PointerToprodml23__WaterAnalysisTestStep(soap, tag, NULL, "prodml23:WaterAnalysisTestStep")) break; } else - { if (!soap_in_PointerToprodml22__WaterAnalysisTestStep(soap, tag, n, "prodml22:WaterAnalysisTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__WaterAnalysisTestStep(soap, tag, &n, "prodml23:WaterAnalysisTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470689,23 +471323,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470715,33 +471349,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ins return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__LiquidComposition(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__LiquidComposition(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__LiquidComposition(soap, tag, id, &(*i), "prodml22:LiquidComposition")) + if (soap_out_PointerToprodml23__LiquidComposition(soap, tag, id, &(*i), "prodml23:LiquidComposition")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470752,23 +471386,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap))) return NULL; - a->emplace_back(); - prodml22__LiquidComposition * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__LiquidComposition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition, sizeof(prodml22__LiquidComposition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition, sizeof(prodml23__LiquidComposition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__LiquidComposition(soap, tag, NULL, "prodml22:LiquidComposition")) + if (!soap_in_PointerToprodml23__LiquidComposition(soap, tag, NULL, "prodml23:LiquidComposition")) break; } else - { if (!soap_in_PointerToprodml22__LiquidComposition(soap, tag, n, "prodml22:LiquidComposition")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__LiquidComposition(soap, tag, &n, "prodml23:LiquidComposition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470779,23 +471415,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__LiquidComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__LiquidComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470805,33 +471441,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__PhaseDensity(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__PhaseDensity(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__PhaseDensity(soap, tag, id, &(*i), "prodml22:PhaseDensity")) + if (soap_out_PointerToprodml23__PhaseDensity(soap, tag, id, &(*i), "prodml23:PhaseDensity")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470842,23 +471478,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap))) return NULL; - a->emplace_back(); - prodml22__PhaseDensity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__PhaseDensity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity, sizeof(prodml22__PhaseDensity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity, sizeof(prodml23__PhaseDensity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__PhaseDensity(soap, tag, NULL, "prodml22:PhaseDensity")) + if (!soap_in_PointerToprodml23__PhaseDensity(soap, tag, NULL, "prodml23:PhaseDensity")) break; } else - { if (!soap_in_PointerToprodml22__PhaseDensity(soap, tag, n, "prodml22:PhaseDensity")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__PhaseDensity(soap, tag, &n, "prodml23:PhaseDensity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470869,23 +471507,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__PhaseDensity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__PhaseDensity(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470895,33 +471533,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__RefInjectedGasAdded(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__RefInjectedGasAdded(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__RefInjectedGasAdded(soap, tag, id, &(*i), "prodml22:RefInjectedGasAdded")) + if (soap_out_PointerToprodml23__RefInjectedGasAdded(soap, tag, id, &(*i), "prodml23:RefInjectedGasAdded")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -470932,23 +471570,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap))) return NULL; - a->emplace_back(); - prodml22__RefInjectedGasAdded * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__RefInjectedGasAdded *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded, sizeof(prodml22__RefInjectedGasAdded), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded, sizeof(prodml23__RefInjectedGasAdded), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__RefInjectedGasAdded(soap, tag, NULL, "prodml22:RefInjectedGasAdded")) + if (!soap_in_PointerToprodml23__RefInjectedGasAdded(soap, tag, NULL, "prodml23:RefInjectedGasAdded")) break; } else - { if (!soap_in_PointerToprodml22__RefInjectedGasAdded(soap, tag, n, "prodml22:RefInjectedGasAdded")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__RefInjectedGasAdded(soap, tag, &n, "prodml23:RefInjectedGasAdded")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -470959,23 +471599,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -470985,33 +471625,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_insta return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SwellingTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SwellingTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SwellingTestStep(soap, tag, id, &(*i), "prodml22:SwellingTestStep")) + if (soap_out_PointerToprodml23__SwellingTestStep(soap, tag, id, &(*i), "prodml23:SwellingTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471022,23 +471662,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap))) return NULL; - a->emplace_back(); - prodml22__SwellingTestStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SwellingTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep, sizeof(prodml22__SwellingTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep, sizeof(prodml23__SwellingTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SwellingTestStep(soap, tag, NULL, "prodml22:SwellingTestStep")) + if (!soap_in_PointerToprodml23__SwellingTestStep(soap, tag, NULL, "prodml23:SwellingTestStep")) break; } else - { if (!soap_in_PointerToprodml22__SwellingTestStep(soap, tag, n, "prodml22:SwellingTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SwellingTestStep(soap, tag, &n, "prodml23:SwellingTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471049,23 +471691,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471075,33 +471717,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instanti return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__Sara(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__Sara(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__Sara(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__Sara(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__Sara(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__Sara(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__Sara(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__Sara(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__Sara(soap, tag, id, &(*i), "prodml22:Sara")) + if (soap_out_PointerToprodml23__Sara(soap, tag, id, &(*i), "prodml23:Sara")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__Sara(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__Sara(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471112,23 +471754,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplat break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__Sara(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__Sara(soap))) return NULL; - a->emplace_back(); - prodml22__Sara * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__Sara *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__Sara, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara, sizeof(prodml22__Sara), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__Sara, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara, sizeof(prodml23__Sara), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__Sara(soap, tag, NULL, "prodml22:Sara")) + if (!soap_in_PointerToprodml23__Sara(soap, tag, NULL, "prodml23:Sara")) break; } else - { if (!soap_in_PointerToprodml22__Sara(soap, tag, n, "prodml22:Sara")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__Sara(soap, tag, &n, "prodml23:Sara")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471139,23 +471783,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplat return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__Sara(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__Sara(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__Sara(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__Sara(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471165,33 +471809,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vec return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ViscosityAtTemperature(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ViscosityAtTemperature(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ViscosityAtTemperature(soap, tag, id, &(*i), "prodml22:ViscosityAtTemperature")) + if (soap_out_PointerToprodml23__ViscosityAtTemperature(soap, tag, id, &(*i), "prodml23:ViscosityAtTemperature")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471202,23 +471846,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap))) return NULL; - a->emplace_back(); - prodml22__ViscosityAtTemperature * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ViscosityAtTemperature *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature, sizeof(prodml22__ViscosityAtTemperature), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature, sizeof(prodml23__ViscosityAtTemperature), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ViscosityAtTemperature(soap, tag, NULL, "prodml22:ViscosityAtTemperature")) + if (!soap_in_PointerToprodml23__ViscosityAtTemperature(soap, tag, NULL, "prodml23:ViscosityAtTemperature")) break; } else - { if (!soap_in_PointerToprodml22__ViscosityAtTemperature(soap, tag, n, "prodml22:ViscosityAtTemperature")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ViscosityAtTemperature(soap, tag, &n, "prodml23:ViscosityAtTemperature")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471229,23 +471875,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471255,33 +471901,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SlimTubeTestVolumeStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SlimTubeTestVolumeStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag, id, &(*i), "prodml22:SlimTubeTestVolumeStep")) + if (soap_out_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag, id, &(*i), "prodml23:SlimTubeTestVolumeStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471292,23 +471938,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap))) return NULL; - a->emplace_back(); - prodml22__SlimTubeTestVolumeStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SlimTubeTestVolumeStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep, sizeof(prodml22__SlimTubeTestVolumeStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep, sizeof(prodml23__SlimTubeTestVolumeStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag, NULL, "prodml22:SlimTubeTestVolumeStep")) + if (!soap_in_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag, NULL, "prodml23:SlimTubeTestVolumeStep")) break; } else - { if (!soap_in_PointerToprodml22__SlimTubeTestVolumeStep(soap, tag, n, "prodml22:SlimTubeTestVolumeStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SlimTubeTestVolumeStep(soap, tag, &n, "prodml23:SlimTubeTestVolumeStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471319,23 +471967,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471345,33 +471993,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SlimTubeSpecification(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SlimTubeSpecification(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SlimTubeSpecification(soap, tag, id, &(*i), "prodml22:SlimTubeSpecification")) + if (soap_out_PointerToprodml23__SlimTubeSpecification(soap, tag, id, &(*i), "prodml23:SlimTubeSpecification")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471382,23 +472030,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap))) return NULL; - a->emplace_back(); - prodml22__SlimTubeSpecification * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SlimTubeSpecification *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification, sizeof(prodml22__SlimTubeSpecification), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification, sizeof(prodml23__SlimTubeSpecification), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SlimTubeSpecification(soap, tag, NULL, "prodml22:SlimTubeSpecification")) + if (!soap_in_PointerToprodml23__SlimTubeSpecification(soap, tag, NULL, "prodml23:SlimTubeSpecification")) break; } else - { if (!soap_in_PointerToprodml22__SlimTubeSpecification(soap, tag, n, "prodml22:SlimTubeSpecification")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SlimTubeSpecification(soap, tag, &n, "prodml23:SlimTubeSpecification")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471409,23 +472059,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471435,33 +472085,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ins return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SlimTubeTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SlimTubeTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SlimTubeTestStep(soap, tag, id, &(*i), "prodml22:SlimTubeTestStep")) + if (soap_out_PointerToprodml23__SlimTubeTestStep(soap, tag, id, &(*i), "prodml23:SlimTubeTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471472,23 +472122,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap))) return NULL; - a->emplace_back(); - prodml22__SlimTubeTestStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__SlimTubeTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep, sizeof(prodml22__SlimTubeTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep, sizeof(prodml23__SlimTubeTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SlimTubeTestStep(soap, tag, NULL, "prodml22:SlimTubeTestStep")) + if (!soap_in_PointerToprodml23__SlimTubeTestStep(soap, tag, NULL, "prodml23:SlimTubeTestStep")) break; } else - { if (!soap_in_PointerToprodml22__SlimTubeTestStep(soap, tag, n, "prodml22:SlimTubeTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SlimTubeTestStep(soap, tag, &n, "prodml23:SlimTubeTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471499,23 +472151,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471525,33 +472177,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instanti return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__InjectedGas(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__InjectedGas(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__InjectedGas(soap, tag, id, &(*i), "prodml22:InjectedGas")) + if (soap_out_PointerToprodml23__InjectedGas(soap, tag, id, &(*i), "prodml23:InjectedGas")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471562,23 +472214,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap))) return NULL; - a->emplace_back(); - prodml22__InjectedGas * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__InjectedGas *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas, sizeof(prodml22__InjectedGas), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas, sizeof(prodml23__InjectedGas), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__InjectedGas(soap, tag, NULL, "prodml22:InjectedGas")) + if (!soap_in_PointerToprodml23__InjectedGas(soap, tag, NULL, "prodml23:InjectedGas")) break; } else - { if (!soap_in_PointerToprodml22__InjectedGas(soap, tag, n, "prodml22:InjectedGas")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__InjectedGas(soap, tag, &n, "prodml23:InjectedGas")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471589,23 +472243,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__InjectedGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__InjectedGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471615,33 +472269,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_s return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SampleRestoration(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SampleRestoration(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SampleRestoration(soap, tag, id, &(*i), "prodml22:SampleRestoration")) + if (soap_out_PointerToprodml23__SampleRestoration(soap, tag, id, &(*i), "prodml23:SampleRestoration")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471652,23 +472306,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__SampleRestoration * *n = &a->back(); - *n = NULL; + } + prodml23__SampleRestoration *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration, sizeof(prodml22__SampleRestoration), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration, sizeof(prodml23__SampleRestoration), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SampleRestoration(soap, tag, NULL, "prodml22:SampleRestoration")) + if (!soap_in_PointerToprodml23__SampleRestoration(soap, tag, NULL, "prodml23:SampleRestoration")) break; } else - { if (!soap_in_PointerToprodml22__SampleRestoration(soap, tag, n, "prodml22:SampleRestoration")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SampleRestoration(soap, tag, &n, "prodml23:SampleRestoration")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471679,23 +472335,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleRestoration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleRestoration(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471705,33 +472361,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__VaporComposition(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__VaporComposition(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__VaporComposition(soap, tag, id, &(*i), "prodml22:VaporComposition")) + if (soap_out_PointerToprodml23__VaporComposition(soap, tag, id, &(*i), "prodml23:VaporComposition")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471742,23 +472398,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap))) return NULL; - a->emplace_back(); - prodml22__VaporComposition * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__VaporComposition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition, sizeof(prodml22__VaporComposition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition, sizeof(prodml23__VaporComposition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__VaporComposition(soap, tag, NULL, "prodml22:VaporComposition")) + if (!soap_in_PointerToprodml23__VaporComposition(soap, tag, NULL, "prodml23:VaporComposition")) break; } else - { if (!soap_in_PointerToprodml22__VaporComposition(soap, tag, n, "prodml22:VaporComposition")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__VaporComposition(soap, tag, &n, "prodml23:VaporComposition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471769,23 +472427,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporComposition(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471795,33 +472453,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instanti return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__OtherMeasurementTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__OtherMeasurementTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__OtherMeasurementTestStep(soap, tag, id, &(*i), "prodml22:OtherMeasurementTestStep")) + if (soap_out_PointerToprodml23__OtherMeasurementTestStep(soap, tag, id, &(*i), "prodml23:OtherMeasurementTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471832,23 +472490,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__OtherMeasurementTestStep * *n = &a->back(); - *n = NULL; + } + prodml23__OtherMeasurementTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep, sizeof(prodml22__OtherMeasurementTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep, sizeof(prodml23__OtherMeasurementTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__OtherMeasurementTestStep(soap, tag, NULL, "prodml22:OtherMeasurementTestStep")) + if (!soap_in_PointerToprodml23__OtherMeasurementTestStep(soap, tag, NULL, "prodml23:OtherMeasurementTestStep")) break; } else - { if (!soap_in_PointerToprodml22__OtherMeasurementTestStep(soap, tag, n, "prodml22:OtherMeasurementTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__OtherMeasurementTestStep(soap, tag, &n, "prodml23:OtherMeasurementTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471859,23 +472519,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471885,33 +472545,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__InterfacialTensionTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__InterfacialTensionTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__InterfacialTensionTestStep(soap, tag, id, &(*i), "prodml22:InterfacialTensionTestStep")) + if (soap_out_PointerToprodml23__InterfacialTensionTestStep(soap, tag, id, &(*i), "prodml23:InterfacialTensionTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -471922,23 +472582,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__InterfacialTensionTestStep * *n = &a->back(); - *n = NULL; + } + prodml23__InterfacialTensionTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep, sizeof(prodml22__InterfacialTensionTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep, sizeof(prodml23__InterfacialTensionTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__InterfacialTensionTestStep(soap, tag, NULL, "prodml22:InterfacialTensionTestStep")) + if (!soap_in_PointerToprodml23__InterfacialTensionTestStep(soap, tag, NULL, "prodml23:InterfacialTensionTestStep")) break; } else - { if (!soap_in_PointerToprodml22__InterfacialTensionTestStep(soap, tag, n, "prodml22:InterfacialTensionTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__InterfacialTensionTestStep(soap, tag, &n, "prodml23:InterfacialTensionTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -471949,23 +472611,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -471975,33 +472637,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soa return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidSeparatorTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidSeparatorTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidSeparatorTestStep(soap, tag, id, &(*i), "prodml22:FluidSeparatorTestStep")) + if (soap_out_PointerToprodml23__FluidSeparatorTestStep(soap, tag, id, &(*i), "prodml23:FluidSeparatorTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472012,23 +472674,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidSeparatorTestStep * *n = &a->back(); - *n = NULL; + } + prodml23__FluidSeparatorTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep, sizeof(prodml22__FluidSeparatorTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep, sizeof(prodml23__FluidSeparatorTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidSeparatorTestStep(soap, tag, NULL, "prodml22:FluidSeparatorTestStep")) + if (!soap_in_PointerToprodml23__FluidSeparatorTestStep(soap, tag, NULL, "prodml23:FluidSeparatorTestStep")) break; } else - { if (!soap_in_PointerToprodml22__FluidSeparatorTestStep(soap, tag, n, "prodml22:FluidSeparatorTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidSeparatorTestStep(soap, tag, &n, "prodml23:FluidSeparatorTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472039,23 +472703,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472065,33 +472729,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ReportLocation(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ReportLocation(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ReportLocation(soap, tag, id, &(*i), "prodml22:ReportLocation")) + if (soap_out_PointerToprodml23__ReportLocation(soap, tag, id, &(*i), "prodml23:ReportLocation")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472102,23 +472766,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap))) return NULL; - a->emplace_back(); - prodml22__ReportLocation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__ReportLocation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation, sizeof(prodml22__ReportLocation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation, sizeof(prodml23__ReportLocation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ReportLocation(soap, tag, NULL, "prodml22:ReportLocation")) + if (!soap_in_PointerToprodml23__ReportLocation(soap, tag, NULL, "prodml23:ReportLocation")) break; } else - { if (!soap_in_PointerToprodml22__ReportLocation(soap, tag, n, "prodml22:ReportLocation")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ReportLocation(soap, tag, &n, "prodml23:ReportLocation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472129,23 +472795,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportLocation(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472155,33 +472821,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiat return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag, id, &(*i), "prodml22:FluidDifferentialLiberationTestStep")) + if (soap_out_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag, id, &(*i), "prodml23:FluidDifferentialLiberationTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472192,23 +472858,25 @@ SOAP_FMAC3 std::vector * SOAP_F break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidDifferentialLiberationTestStep * *n = &a->back(); - *n = NULL; + } + prodml23__FluidDifferentialLiberationTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep, sizeof(prodml22__FluidDifferentialLiberationTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep, sizeof(prodml23__FluidDifferentialLiberationTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag, NULL, "prodml22:FluidDifferentialLiberationTestStep")) + if (!soap_in_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag, NULL, "prodml23:FluidDifferentialLiberationTestStep")) break; } else - { if (!soap_in_PointerToprodml22__FluidDifferentialLiberationTestStep(soap, tag, n, "prodml22:FluidDifferentialLiberationTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidDifferentialLiberationTestStep(soap, tag, &n, "prodml23:FluidDifferentialLiberationTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472219,23 +472887,23 @@ SOAP_FMAC3 std::vector * SOAP_F return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472245,33 +472913,33 @@ SOAP_FMAC1 std::vector * SOAP_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCvdTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCvdTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCvdTestStep(soap, tag, id, &(*i), "prodml22:FluidCvdTestStep")) + if (soap_out_PointerToprodml23__FluidCvdTestStep(soap, tag, id, &(*i), "prodml23:FluidCvdTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472282,23 +472950,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCvdTestStep * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCvdTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep, sizeof(prodml22__FluidCvdTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep, sizeof(prodml23__FluidCvdTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCvdTestStep(soap, tag, NULL, "prodml22:FluidCvdTestStep")) + if (!soap_in_PointerToprodml23__FluidCvdTestStep(soap, tag, NULL, "prodml23:FluidCvdTestStep")) break; } else - { if (!soap_in_PointerToprodml22__FluidCvdTestStep(soap, tag, n, "prodml22:FluidCvdTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCvdTestStep(soap, tag, &n, "prodml23:FluidCvdTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472309,23 +472979,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472335,33 +473005,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instanti return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag, id, &(*i), "prodml22:ConstantCompositionExpansionTestStep")) + if (soap_out_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag, id, &(*i), "prodml23:ConstantCompositionExpansionTestStep")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472372,23 +473042,25 @@ SOAP_FMAC3 std::vector * SOAP_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ConstantCompositionExpansionTestStep * *n = &a->back(); - *n = NULL; + } + prodml23__ConstantCompositionExpansionTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep, sizeof(prodml22__ConstantCompositionExpansionTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep, sizeof(prodml23__ConstantCompositionExpansionTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag, NULL, "prodml22:ConstantCompositionExpansionTestStep")) + if (!soap_in_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag, NULL, "prodml23:ConstantCompositionExpansionTestStep")) break; } else - { if (!soap_in_PointerToprodml22__ConstantCompositionExpansionTestStep(soap, tag, n, "prodml22:ConstantCompositionExpansionTestStep")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ConstantCompositionExpansionTestStep(soap, tag, &n, "prodml23:ConstantCompositionExpansionTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472399,23 +473071,23 @@ SOAP_FMAC3 std::vector * SOAP_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472425,33 +473097,33 @@ SOAP_FMAC1 std::vector * SOAP return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidVolumeReference(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidVolumeReference(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidVolumeReference(soap, tag, id, &(*i), "prodml22:FluidVolumeReference")) + if (soap_out_PointerToprodml23__FluidVolumeReference(soap, tag, id, &(*i), "prodml23:FluidVolumeReference")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472462,23 +473134,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidVolumeReference * *n = &a->back(); - *n = NULL; + } + prodml23__FluidVolumeReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference, sizeof(prodml22__FluidVolumeReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference, sizeof(prodml23__FluidVolumeReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidVolumeReference(soap, tag, NULL, "prodml22:FluidVolumeReference")) + if (!soap_in_PointerToprodml23__FluidVolumeReference(soap, tag, NULL, "prodml23:FluidVolumeReference")) break; } else - { if (!soap_in_PointerToprodml22__FluidVolumeReference(soap, tag, n, "prodml22:FluidVolumeReference")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidVolumeReference(soap, tag, &n, "prodml23:FluidVolumeReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472489,23 +473163,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472515,33 +473189,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowUnit(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowUnit(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowUnit(soap, tag, id, &(*i), "prodml22:ProductFlowUnit")) + if (soap_out_PointerToprodml23__ProductFlowUnit(soap, tag, id, &(*i), "prodml23:ProductFlowUnit")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472552,23 +473226,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductFlowUnit * *n = &a->back(); - *n = NULL; + } + prodml23__ProductFlowUnit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit, sizeof(prodml22__ProductFlowUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit, sizeof(prodml23__ProductFlowUnit), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowUnit(soap, tag, NULL, "prodml22:ProductFlowUnit")) + if (!soap_in_PointerToprodml23__ProductFlowUnit(soap, tag, NULL, "prodml23:ProductFlowUnit")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowUnit(soap, tag, n, "prodml22:ProductFlowUnit")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowUnit(soap, tag, &n, "prodml23:ProductFlowUnit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472579,23 +473255,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472605,33 +473281,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantia return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowChangeLog(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowChangeLog(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowChangeLog(soap, tag, id, &(*i), "prodml22:ProductFlowChangeLog")) + if (soap_out_PointerToprodml23__ProductFlowChangeLog(soap, tag, id, &(*i), "prodml23:ProductFlowChangeLog")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472642,23 +473318,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductFlowChangeLog * *n = &a->back(); - *n = NULL; + } + prodml23__ProductFlowChangeLog *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog, sizeof(prodml22__ProductFlowChangeLog), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog, sizeof(prodml23__ProductFlowChangeLog), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowChangeLog(soap, tag, NULL, "prodml22:ProductFlowChangeLog")) + if (!soap_in_PointerToprodml23__ProductFlowChangeLog(soap, tag, NULL, "prodml23:ProductFlowChangeLog")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowChangeLog(soap, tag, n, "prodml22:ProductFlowChangeLog")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowChangeLog(soap, tag, &n, "prodml23:ProductFlowChangeLog")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472669,23 +473347,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472695,33 +473373,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowNetworkPlan(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowNetworkPlan(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowNetworkPlan(soap, tag, id, &(*i), "prodml22:ProductFlowNetworkPlan")) + if (soap_out_PointerToprodml23__ProductFlowNetworkPlan(soap, tag, id, &(*i), "prodml23:ProductFlowNetworkPlan")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472732,23 +473410,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductFlowNetworkPlan * *n = &a->back(); - *n = NULL; + } + prodml23__ProductFlowNetworkPlan *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan, sizeof(prodml22__ProductFlowNetworkPlan), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan, sizeof(prodml23__ProductFlowNetworkPlan), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowNetworkPlan(soap, tag, NULL, "prodml22:ProductFlowNetworkPlan")) + if (!soap_in_PointerToprodml23__ProductFlowNetworkPlan(soap, tag, NULL, "prodml23:ProductFlowNetworkPlan")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowNetworkPlan(soap, tag, n, "prodml22:ProductFlowNetworkPlan")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowNetworkPlan(soap, tag, &n, "prodml23:ProductFlowNetworkPlan")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472759,23 +473439,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472785,33 +473465,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ProductFlowExternalPort(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ProductFlowExternalPort(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ProductFlowExternalPort(soap, tag, id, &(*i), "prodml22:ProductFlowExternalPort")) + if (soap_out_PointerToprodml23__ProductFlowExternalPort(soap, tag, id, &(*i), "prodml23:ProductFlowExternalPort")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472822,23 +473502,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ProductFlowExternalPort * *n = &a->back(); - *n = NULL; + } + prodml23__ProductFlowExternalPort *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort, sizeof(prodml22__ProductFlowExternalPort), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort, sizeof(prodml23__ProductFlowExternalPort), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ProductFlowExternalPort(soap, tag, NULL, "prodml22:ProductFlowExternalPort")) + if (!soap_in_PointerToprodml23__ProductFlowExternalPort(soap, tag, NULL, "prodml23:ProductFlowExternalPort")) break; } else - { if (!soap_in_PointerToprodml22__ProductFlowExternalPort(soap, tag, n, "prodml22:ProductFlowExternalPort")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ProductFlowExternalPort(soap, tag, &n, "prodml23:ProductFlowExternalPort")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472849,23 +473531,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472875,33 +473557,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_i return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidComponentFraction(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidComponentFraction(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidComponentFraction(soap, tag, id, &(*i), "prodml22:FluidComponentFraction")) + if (soap_out_PointerToprodml23__FluidComponentFraction(soap, tag, id, &(*i), "prodml23:FluidComponentFraction")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -472912,23 +473594,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidComponentFraction * *n = &a->back(); - *n = NULL; + } + prodml23__FluidComponentFraction *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction, sizeof(prodml22__FluidComponentFraction), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction, sizeof(prodml23__FluidComponentFraction), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidComponentFraction(soap, tag, NULL, "prodml22:FluidComponentFraction")) + if (!soap_in_PointerToprodml23__FluidComponentFraction(soap, tag, NULL, "prodml23:FluidComponentFraction")) break; } else - { if (!soap_in_PointerToprodml22__FluidComponentFraction(soap, tag, n, "prodml22:FluidComponentFraction")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidComponentFraction(soap, tag, &n, "prodml23:FluidComponentFraction")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -472939,23 +473623,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -472965,33 +473649,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__SulfurFluidComponent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__SulfurFluidComponent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__SulfurFluidComponent(soap, tag, id, &(*i), "prodml22:SulfurFluidComponent")) + if (soap_out_PointerToprodml23__SulfurFluidComponent(soap, tag, id, &(*i), "prodml23:SulfurFluidComponent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473002,23 +473686,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__SulfurFluidComponent * *n = &a->back(); - *n = NULL; + } + prodml23__SulfurFluidComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent, sizeof(prodml22__SulfurFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent, sizeof(prodml23__SulfurFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__SulfurFluidComponent(soap, tag, NULL, "prodml22:SulfurFluidComponent")) + if (!soap_in_PointerToprodml23__SulfurFluidComponent(soap, tag, NULL, "prodml23:SulfurFluidComponent")) break; } else - { if (!soap_in_PointerToprodml22__SulfurFluidComponent(soap, tag, n, "prodml22:SulfurFluidComponent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__SulfurFluidComponent(soap, tag, &n, "prodml23:SulfurFluidComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473029,23 +473715,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473055,33 +473741,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__PlusFluidComponent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__PlusFluidComponent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__PlusFluidComponent(soap, tag, id, &(*i), "prodml22:PlusFluidComponent")) + if (soap_out_PointerToprodml23__PlusFluidComponent(soap, tag, id, &(*i), "prodml23:PlusFluidComponent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473092,23 +473778,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__PlusFluidComponent * *n = &a->back(); - *n = NULL; + } + prodml23__PlusFluidComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent, sizeof(prodml22__PlusFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent, sizeof(prodml23__PlusFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__PlusFluidComponent(soap, tag, NULL, "prodml22:PlusFluidComponent")) + if (!soap_in_PointerToprodml23__PlusFluidComponent(soap, tag, NULL, "prodml23:PlusFluidComponent")) break; } else - { if (!soap_in_PointerToprodml22__PlusFluidComponent(soap, tag, n, "prodml22:PlusFluidComponent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__PlusFluidComponent(soap, tag, &n, "prodml23:PlusFluidComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473119,23 +473807,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473145,33 +473833,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instan return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__PseudoFluidComponent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__PseudoFluidComponent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__PseudoFluidComponent(soap, tag, id, &(*i), "prodml22:PseudoFluidComponent")) + if (soap_out_PointerToprodml23__PseudoFluidComponent(soap, tag, id, &(*i), "prodml23:PseudoFluidComponent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473182,23 +473870,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__PseudoFluidComponent * *n = &a->back(); - *n = NULL; + } + prodml23__PseudoFluidComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent, sizeof(prodml22__PseudoFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent, sizeof(prodml23__PseudoFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__PseudoFluidComponent(soap, tag, NULL, "prodml22:PseudoFluidComponent")) + if (!soap_in_PointerToprodml23__PseudoFluidComponent(soap, tag, NULL, "prodml23:PseudoFluidComponent")) break; } else - { if (!soap_in_PointerToprodml22__PseudoFluidComponent(soap, tag, n, "prodml22:PseudoFluidComponent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__PseudoFluidComponent(soap, tag, &n, "prodml23:PseudoFluidComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473209,23 +473899,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473235,33 +473925,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_inst return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__PureFluidComponent(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__PureFluidComponent(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__PureFluidComponent(soap, tag, id, &(*i), "prodml22:PureFluidComponent")) + if (soap_out_PointerToprodml23__PureFluidComponent(soap, tag, id, &(*i), "prodml23:PureFluidComponent")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473272,23 +473962,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__PureFluidComponent * *n = &a->back(); - *n = NULL; + } + prodml23__PureFluidComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent, sizeof(prodml22__PureFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent, sizeof(prodml23__PureFluidComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__PureFluidComponent(soap, tag, NULL, "prodml22:PureFluidComponent")) + if (!soap_in_PointerToprodml23__PureFluidComponent(soap, tag, NULL, "prodml23:PureFluidComponent")) break; } else - { if (!soap_in_PointerToprodml22__PureFluidComponent(soap, tag, n, "prodml22:PureFluidComponent")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__PureFluidComponent(soap, tag, &n, "prodml23:PureFluidComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473299,23 +473991,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473325,33 +474017,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instan return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FormationWater(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FormationWater(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FormationWater(soap, tag, id, &(*i), "prodml22:FormationWater")) + if (soap_out_PointerToprodml23__FormationWater(soap, tag, id, &(*i), "prodml23:FormationWater")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473362,23 +474054,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FormationWater(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FormationWater(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FormationWater * *n = &a->back(); - *n = NULL; + } + prodml23__FormationWater *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater, sizeof(prodml22__FormationWater), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater, sizeof(prodml23__FormationWater), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FormationWater(soap, tag, NULL, "prodml22:FormationWater")) + if (!soap_in_PointerToprodml23__FormationWater(soap, tag, NULL, "prodml23:FormationWater")) break; } else - { if (!soap_in_PointerToprodml22__FormationWater(soap, tag, n, "prodml22:FormationWater")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FormationWater(soap, tag, &n, "prodml23:FormationWater")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473389,23 +474083,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FormationWater(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FormationWater(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473415,33 +474109,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiat return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__NaturalGas(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__NaturalGas(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__NaturalGas(soap, tag, id, &(*i), "prodml22:NaturalGas")) + if (soap_out_PointerToprodml23__NaturalGas(soap, tag, id, &(*i), "prodml23:NaturalGas")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473452,23 +474146,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__NaturalGas * *n = &a->back(); - *n = NULL; + } + prodml23__NaturalGas *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas, sizeof(prodml22__NaturalGas), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas, sizeof(prodml23__NaturalGas), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__NaturalGas(soap, tag, NULL, "prodml22:NaturalGas")) + if (!soap_in_PointerToprodml23__NaturalGas(soap, tag, NULL, "prodml23:NaturalGas")) break; } else - { if (!soap_in_PointerToprodml22__NaturalGas(soap, tag, n, "prodml22:NaturalGas")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__NaturalGas(soap, tag, &n, "prodml23:NaturalGas")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473479,23 +474175,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__NaturalGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__NaturalGas(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473505,33 +474201,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_st return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__StockTankOil(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__StockTankOil(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__StockTankOil(soap, tag, id, &(*i), "prodml22:StockTankOil")) + if (soap_out_PointerToprodml23__StockTankOil(soap, tag, id, &(*i), "prodml23:StockTankOil")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473542,23 +474238,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__StockTankOil * *n = &a->back(); - *n = NULL; + } + prodml23__StockTankOil *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil, sizeof(prodml22__StockTankOil), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil, sizeof(prodml23__StockTankOil), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__StockTankOil(soap, tag, NULL, "prodml22:StockTankOil")) + if (!soap_in_PointerToprodml23__StockTankOil(soap, tag, NULL, "prodml23:StockTankOil")) break; } else - { if (!soap_in_PointerToprodml22__StockTankOil(soap, tag, n, "prodml22:StockTankOil")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__StockTankOil(soap, tag, &n, "prodml23:StockTankOil")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473569,23 +474267,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__StockTankOil(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__StockTankOil(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473595,33 +474293,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_ return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__PvtModelParameter(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__PvtModelParameter(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__PvtModelParameter(soap, tag, id, &(*i), "prodml22:PvtModelParameter")) + if (soap_out_PointerToprodml23__PvtModelParameter(soap, tag, id, &(*i), "prodml23:PvtModelParameter")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473632,23 +474330,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__PvtModelParameter * *n = &a->back(); - *n = NULL; + } + prodml23__PvtModelParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter, sizeof(prodml22__PvtModelParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter, sizeof(prodml23__PvtModelParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__PvtModelParameter(soap, tag, NULL, "prodml22:PvtModelParameter")) + if (!soap_in_PointerToprodml23__PvtModelParameter(soap, tag, NULL, "prodml23:PvtModelParameter")) break; } else - { if (!soap_in_PointerToprodml22__PvtModelParameter(soap, tag, n, "prodml22:PvtModelParameter")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__PvtModelParameter(soap, tag, &n, "prodml23:PvtModelParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473659,23 +474359,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473685,33 +474385,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instant return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationTableFormat(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationTableFormat(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag, id, &(*i), "prodml22:FluidCharacterizationTableFormat")) + if (soap_out_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag, id, &(*i), "prodml23:FluidCharacterizationTableFormat")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473722,23 +474422,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationTableFormat * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationTableFormat *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat, sizeof(prodml22__FluidCharacterizationTableFormat), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat, sizeof(prodml23__FluidCharacterizationTableFormat), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag, NULL, "prodml22:FluidCharacterizationTableFormat")) + if (!soap_in_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag, NULL, "prodml23:FluidCharacterizationTableFormat")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationTableFormat(soap, tag, n, "prodml22:FluidCharacterizationTableFormat")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationTableFormat(soap, tag, &n, "prodml23:FluidCharacterizationTableFormat")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473749,23 +474451,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473775,33 +474477,33 @@ SOAP_FMAC1 std::vector * SOAP_FMA return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationTableColumn(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationTableColumn(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag, id, &(*i), "prodml22:FluidCharacterizationTableColumn")) + if (soap_out_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag, id, &(*i), "prodml23:FluidCharacterizationTableColumn")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473812,23 +474514,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationTableColumn * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationTableColumn *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn, sizeof(prodml22__FluidCharacterizationTableColumn), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn, sizeof(prodml23__FluidCharacterizationTableColumn), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag, NULL, "prodml22:FluidCharacterizationTableColumn")) + if (!soap_in_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag, NULL, "prodml23:FluidCharacterizationTableColumn")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationTableColumn(soap, tag, n, "prodml22:FluidCharacterizationTableColumn")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationTableColumn(soap, tag, &n, "prodml23:FluidCharacterizationTableColumn")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473839,23 +474543,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473865,33 +474569,33 @@ SOAP_FMAC1 std::vector * SOAP_FMA return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationTableRow(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationTableRow(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationTableRow(soap, tag, id, &(*i), "prodml22:FluidCharacterizationTableRow")) + if (soap_out_PointerToprodml23__FluidCharacterizationTableRow(soap, tag, id, &(*i), "prodml23:FluidCharacterizationTableRow")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473902,23 +474606,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 s break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationTableRow * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationTableRow *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow, sizeof(prodml22__FluidCharacterizationTableRow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow, sizeof(prodml23__FluidCharacterizationTableRow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationTableRow(soap, tag, NULL, "prodml22:FluidCharacterizationTableRow")) + if (!soap_in_PointerToprodml23__FluidCharacterizationTableRow(soap, tag, NULL, "prodml23:FluidCharacterizationTableRow")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationTableRow(soap, tag, n, "prodml22:FluidCharacterizationTableRow")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationTableRow(soap, tag, &n, "prodml23:FluidCharacterizationTableRow")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -473929,23 +474635,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 s return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -473955,33 +474661,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationParameter(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationParameter(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationParameter(soap, tag, id, &(*i), "prodml22:FluidCharacterizationParameter")) + if (soap_out_PointerToprodml23__FluidCharacterizationParameter(soap, tag, id, &(*i), "prodml23:FluidCharacterizationParameter")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -473992,23 +474698,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationParameter * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter, sizeof(prodml22__FluidCharacterizationParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter, sizeof(prodml23__FluidCharacterizationParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationParameter(soap, tag, NULL, "prodml22:FluidCharacterizationParameter")) + if (!soap_in_PointerToprodml23__FluidCharacterizationParameter(soap, tag, NULL, "prodml23:FluidCharacterizationParameter")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationParameter(soap, tag, n, "prodml22:FluidCharacterizationParameter")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationParameter(soap, tag, &n, "prodml23:FluidCharacterizationParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474019,23 +474727,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -474045,33 +474753,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__ReferenceSeparatorStage(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__ReferenceSeparatorStage(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__ReferenceSeparatorStage(soap, tag, id, &(*i), "prodml22:ReferenceSeparatorStage")) + if (soap_out_PointerToprodml23__ReferenceSeparatorStage(soap, tag, id, &(*i), "prodml23:ReferenceSeparatorStage")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -474082,23 +474790,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__ReferenceSeparatorStage * *n = &a->back(); - *n = NULL; + } + prodml23__ReferenceSeparatorStage *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage, sizeof(prodml22__ReferenceSeparatorStage), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage, sizeof(prodml23__ReferenceSeparatorStage), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__ReferenceSeparatorStage(soap, tag, NULL, "prodml22:ReferenceSeparatorStage")) + if (!soap_in_PointerToprodml23__ReferenceSeparatorStage(soap, tag, NULL, "prodml23:ReferenceSeparatorStage")) break; } else - { if (!soap_in_PointerToprodml22__ReferenceSeparatorStage(soap, tag, n, "prodml22:ReferenceSeparatorStage")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__ReferenceSeparatorStage(soap, tag, &n, "prodml23:ReferenceSeparatorStage")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474109,23 +474819,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -474135,33 +474845,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_i return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidCharacterizationTable(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidCharacterizationTable(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidCharacterizationTable(soap, tag, id, &(*i), "prodml22:FluidCharacterizationTable")) + if (soap_out_PointerToprodml23__FluidCharacterizationTable(soap, tag, id, &(*i), "prodml23:FluidCharacterizationTable")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -474172,23 +474882,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__FluidCharacterizationTable * *n = &a->back(); - *n = NULL; + } + prodml23__FluidCharacterizationTable *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable, sizeof(prodml22__FluidCharacterizationTable), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable, sizeof(prodml23__FluidCharacterizationTable), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidCharacterizationTable(soap, tag, NULL, "prodml22:FluidCharacterizationTable")) + if (!soap_in_PointerToprodml23__FluidCharacterizationTable(soap, tag, NULL, "prodml23:FluidCharacterizationTable")) break; } else - { if (!soap_in_PointerToprodml22__FluidCharacterizationTable(soap, tag, n, "prodml22:FluidCharacterizationTable")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidCharacterizationTable(soap, tag, &n, "prodml23:FluidCharacterizationTable")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474199,23 +474911,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -474225,33 +474937,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soa return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__CustomPvtModelParameter(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__CustomPvtModelParameter(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__CustomPvtModelParameter(soap, tag, id, &(*i), "prodml22:CustomPvtModelParameter")) + if (soap_out_PointerToprodml23__CustomPvtModelParameter(soap, tag, id, &(*i), "prodml23:CustomPvtModelParameter")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -474262,23 +474974,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__CustomPvtModelParameter * *n = &a->back(); - *n = NULL; + } + prodml23__CustomPvtModelParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter, sizeof(prodml22__CustomPvtModelParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter, sizeof(prodml23__CustomPvtModelParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__CustomPvtModelParameter(soap, tag, NULL, "prodml22:CustomPvtModelParameter")) + if (!soap_in_PointerToprodml23__CustomPvtModelParameter(soap, tag, NULL, "prodml23:CustomPvtModelParameter")) break; } else - { if (!soap_in_PointerToprodml22__CustomPvtModelParameter(soap, tag, n, "prodml22:CustomPvtModelParameter")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__CustomPvtModelParameter(soap, tag, &n, "prodml23:CustomPvtModelParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474289,23 +475003,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -474315,33 +475029,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_i return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__FluidComponentProperty(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__FluidComponentProperty(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__FluidComponentProperty(soap, tag, id, &(*i), "prodml22:FluidComponentProperty")) + if (soap_out_PointerToprodml23__FluidComponentProperty(soap, tag, id, &(*i), "prodml23:FluidComponentProperty")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -474352,23 +475066,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap))) return NULL; - a->emplace_back(); - prodml22__FluidComponentProperty * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + prodml23__FluidComponentProperty *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty, sizeof(prodml22__FluidComponentProperty), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty, sizeof(prodml23__FluidComponentProperty), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__FluidComponentProperty(soap, tag, NULL, "prodml22:FluidComponentProperty")) + if (!soap_in_PointerToprodml23__FluidComponentProperty(soap, tag, NULL, "prodml23:FluidComponentProperty")) break; } else - { if (!soap_in_PointerToprodml22__FluidComponentProperty(soap, tag, n, "prodml22:FluidComponentProperty")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__FluidComponentProperty(soap, tag, &n, "prodml23:FluidComponentProperty")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474379,23 +475095,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -474405,33 +475121,33 @@ SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_in return p; } -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, std::vector *p) +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, std::vector *p) { (void)soap; /* appease -Wall -Werror */ p->clear(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, const std::vector *a) +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, const std::vector *a) { (void)soap; (void)a;/* appease -Wall -Werror */ #ifndef WITH_NOIDREF - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) - soap_serialize_PointerToprodml22__BinaryInteractionCoefficient(soap, &(*i)); + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + soap_serialize_PointerToprodml23__BinaryInteractionCoefficient(soap, &(*i)); #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, const char *tag, int id, const std::vector *a, const char *type) { (void)id; (void)type; /* appease -Wall -Werror */ - for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) + for (std::vector ::const_iterator i = a->begin(); i != a->end(); ++i) { - if (soap_out_PointerToprodml22__BinaryInteractionCoefficient(soap, tag, id, &(*i), "prodml22:BinaryInteractionCoefficient")) + if (soap_out_PointerToprodml23__BinaryInteractionCoefficient(soap, tag, id, &(*i), "prodml23:BinaryInteractionCoefficient")) return soap->error; } return SOAP_OK; } -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, const char *tag, std::vector *a, const char *type) +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, const char *tag, std::vector *a, const char *type) { (void)type; /* appease -Wall -Werror */ short soap_flag; @@ -474442,23 +475158,25 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so break; soap_revert(soap); } - if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap))) + if (!a && !(a = soap_new_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap))) + return NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; return NULL; - a->emplace_back(); - prodml22__BinaryInteractionCoefficient * *n = &a->back(); - *n = NULL; + } + prodml23__BinaryInteractionCoefficient *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient, sizeof(prodml22__BinaryInteractionCoefficient), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient, sizeof(prodml23__BinaryInteractionCoefficient), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; - if (!soap_in_PointerToprodml22__BinaryInteractionCoefficient(soap, tag, NULL, "prodml22:BinaryInteractionCoefficient")) + if (!soap_in_PointerToprodml23__BinaryInteractionCoefficient(soap, tag, NULL, "prodml23:BinaryInteractionCoefficient")) break; } else - { if (!soap_in_PointerToprodml22__BinaryInteractionCoefficient(soap, tag, n, "prodml22:BinaryInteractionCoefficient")) - { a->pop_back(); + { if (!soap_in_PointerToprodml23__BinaryInteractionCoefficient(soap, tag, &n, "prodml23:BinaryInteractionCoefficient")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474469,23 +475187,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 so return NULL; } -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size) { - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(%p, %d, %s, %s)\n", (void*)soap, n, type?type:"", arrayType?arrayType:"")); (void)type; (void)arrayType; /* appease -Wall -Werror */ - std::vector *p; - size_t k = sizeof(std::vector ); - struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient, n, gsoap_eml2_3_fdelete); + std::vector *p; + size_t k = sizeof(std::vector ); + struct soap_clist *cp = soap_link(soap, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient, n, gsoap_eml2_3_fdelete); if (!cp && soap && n != SOAP_NO_LINK_TO_DELETE) return NULL; if (n < 0) - { p = SOAP_NEW(soap, std::vector ); + { p = SOAP_NEW(soap, std::vector ); } else - { p = SOAP_NEW_ARRAY(soap, std::vector , n); + { p = SOAP_NEW_ARRAY(soap, std::vector , n); k *= n; } - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated std::vector location=%p n=%d\n", (void*)p, n)); if (size) *size = k; if (!p) @@ -474534,21 +475252,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplate } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__Column(soap))) return NULL; - a->emplace_back(); - eml23__Column * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__Column *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__Column, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Column, sizeof(eml23__Column), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__Column, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Column, sizeof(eml23__Column), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__Column(soap, tag, NULL, "eml23:Column")) break; } else - { if (!soap_in_PointerToeml23__Column(soap, tag, n, "eml23:Column")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__Column(soap, tag, &n, "eml23:Column")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474624,21 +475344,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__PropertyKindFacet(soap))) return NULL; - a->emplace_back(); - eml23__PropertyKindFacet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__PropertyKindFacet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKindFacet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PropertyKindFacet, sizeof(eml23__PropertyKindFacet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKindFacet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__PropertyKindFacet, sizeof(eml23__PropertyKindFacet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__PropertyKindFacet(soap, tag, NULL, "eml23:PropertyKindFacet")) break; } else - { if (!soap_in_PointerToeml23__PropertyKindFacet(soap, tag, n, "eml23:PropertyKindFacet")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__PropertyKindFacet(soap, tag, &n, "eml23:PropertyKindFacet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474714,21 +475436,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractActivityParameter(soap))) return NULL; - a->emplace_back(); - eml23__AbstractActivityParameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractActivityParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractActivityParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractActivityParameter, sizeof(eml23__AbstractActivityParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractActivityParameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractActivityParameter, sizeof(eml23__AbstractActivityParameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractActivityParameter(soap, tag, NULL, "eml23:AbstractActivityParameter")) break; } else - { if (!soap_in_PointerToeml23__AbstractActivityParameter(soap, tag, n, "eml23:AbstractActivityParameter")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractActivityParameter(soap, tag, &n, "eml23:AbstractActivityParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474804,31 +475528,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfem } if (!a && !(a = soap_new_std__vectorTemplateOfeml23__String2000(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_eml23__String2000(soap, n); + std::string n; + soap_default_eml23__String2000(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__String2000, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__String2000, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__String2000, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__String2000, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_eml23__String2000(soap, tag, NULL, "eml23:String2000")) break; } else - { if (!soap_in_eml23__String2000(soap, tag, n, "eml23:String2000")) - { a->pop_back(); + { if (!soap_in_eml23__String2000(soap, tag, &n, "eml23:String2000")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -474902,21 +475630,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfeml23__ActivityParameterKind(soap))) return NULL; - a->emplace_back(); - eml23__ActivityParameterKind *n = &a->back(); - soap_default_eml23__ActivityParameterKind(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__ActivityParameterKind n; + soap_default_eml23__ActivityParameterKind(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__ActivityParameterKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__ActivityParameterKind, sizeof(eml23__ActivityParameterKind), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__ActivityParameterKind, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__ActivityParameterKind, sizeof(eml23__ActivityParameterKind), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_eml23__ActivityParameterKind(soap, tag, NULL, "eml23:ActivityParameterKind")) break; } else - { if (!soap_in_eml23__ActivityParameterKind(soap, tag, n, "eml23:ActivityParameterKind")) - { a->pop_back(); + { if (!soap_in_eml23__ActivityParameterKind(soap, tag, &n, "eml23:ActivityParameterKind")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -474992,21 +475722,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractParameterKey(soap))) return NULL; - a->emplace_back(); - eml23__AbstractParameterKey * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractParameterKey *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractParameterKey, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractParameterKey, sizeof(eml23__AbstractParameterKey), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractParameterKey, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractParameterKey, sizeof(eml23__AbstractParameterKey), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractParameterKey(soap, tag, NULL, "eml23:AbstractParameterKey")) break; } else - { if (!soap_in_PointerToeml23__AbstractParameterKey(soap, tag, n, "eml23:AbstractParameterKey")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractParameterKey(soap, tag, &n, "eml23:AbstractParameterKey")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475082,21 +475814,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__OSDULineageAssertion(soap))) return NULL; - a->emplace_back(); - eml23__OSDULineageAssertion * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__OSDULineageAssertion *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__OSDULineageAssertion, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__OSDULineageAssertion, sizeof(eml23__OSDULineageAssertion), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__OSDULineageAssertion, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__OSDULineageAssertion, sizeof(eml23__OSDULineageAssertion), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__OSDULineageAssertion(soap, tag, NULL, "eml23:OSDULineageAssertion")) break; } else - { if (!soap_in_PointerToeml23__OSDULineageAssertion(soap, tag, n, "eml23:OSDULineageAssertion")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__OSDULineageAssertion(soap, tag, &n, "eml23:OSDULineageAssertion")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475170,21 +475904,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfeml23__ } if (!a && !(a = soap_new_std__vectorTemplateOfeml23__NonNegativeLong(soap))) return NULL; - a->emplace_back(); - LONG64 *n = &a->back(); - soap_default_eml23__NonNegativeLong(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + LONG64 n; + soap_default_eml23__NonNegativeLong(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__NonNegativeLong, sizeof(LONG64), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__NonNegativeLong, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__NonNegativeLong, sizeof(LONG64), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_eml23__NonNegativeLong(soap, tag, NULL, "eml23:NonNegativeLong")) break; } else - { if (!soap_in_eml23__NonNegativeLong(soap, tag, n, "eml23:NonNegativeLong")) - { a->pop_back(); + { if (!soap_in_eml23__NonNegativeLong(soap, tag, &n, "eml23:NonNegativeLong")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475258,21 +475994,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfeml23__ } if (!a && !(a = soap_new_std__vectorTemplateOfeml23__PositiveLong(soap))) return NULL; - a->emplace_back(); - LONG64 *n = &a->back(); - soap_default_eml23__PositiveLong(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + LONG64 n; + soap_default_eml23__PositiveLong(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__PositiveLong, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__PositiveLong, sizeof(LONG64), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__PositiveLong, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__PositiveLong, sizeof(LONG64), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_eml23__PositiveLong(soap, tag, NULL, "eml23:PositiveLong")) break; } else - { if (!soap_in_eml23__PositiveLong(soap, tag, n, "eml23:PositiveLong")) - { a->pop_back(); + { if (!soap_in_eml23__PositiveLong(soap, tag, &n, "eml23:PositiveLong")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475348,21 +476086,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__ExternalDataArrayPart(soap))) return NULL; - a->emplace_back(); - eml23__ExternalDataArrayPart * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__ExternalDataArrayPart *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__ExternalDataArrayPart, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ExternalDataArrayPart, sizeof(eml23__ExternalDataArrayPart), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__ExternalDataArrayPart, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ExternalDataArrayPart, sizeof(eml23__ExternalDataArrayPart), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__ExternalDataArrayPart(soap, tag, NULL, "eml23:ExternalDataArrayPart")) break; } else - { if (!soap_in_PointerToeml23__ExternalDataArrayPart(soap, tag, n, "eml23:ExternalDataArrayPart")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__ExternalDataArrayPart(soap, tag, &n, "eml23:ExternalDataArrayPart")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475438,31 +476178,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxs } if (!a && !(a = soap_new_std__vectorTemplateOfxsd__anyURI(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_xsd__anyURI(soap, n); + std::string n; + soap_default_xsd__anyURI(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_xsd__anyURI, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfxsd__anyURI, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_xsd__anyURI, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfxsd__anyURI, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_xsd__anyURI(soap, tag, NULL, "xsd:anyURI")) break; } else - { if (!soap_in_xsd__anyURI(soap, tag, n, "xsd:anyURI")) - { a->pop_back(); + { if (!soap_in_xsd__anyURI(soap, tag, &n, "xsd:anyURI")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -475536,21 +476280,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOf_XML(st } if (!a && !(a = soap_new_std__vectorTemplateOf_XML(soap))) return NULL; - a->emplace_back(); - char * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + char *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3__XML, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOf_XML, sizeof(char *), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3__XML, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOf_XML, sizeof(char *), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_inliteral(soap, tag, NULL)) break; } else - { if (!soap_inliteral(soap, tag, n)) - { a->pop_back(); + { if (!soap_inliteral(soap, tag, &n)) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475626,31 +476372,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfem } if (!a && !(a = soap_new_std__vectorTemplateOfeml23__String64(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_eml23__String64(soap, n); + std::string n; + soap_default_eml23__String64(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__String64, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__String64, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__String64, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__String64, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_eml23__String64(soap, tag, NULL, "eml23:String64")) break; } else - { if (!soap_in_eml23__String64(soap, tag, n, "eml23:String64")) - { a->pop_back(); + { if (!soap_in_eml23__String64(soap, tag, &n, "eml23:String64")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -475726,21 +476476,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__ObjectAlias(soap))) return NULL; - a->emplace_back(); - eml23__ObjectAlias * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__ObjectAlias *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__ObjectAlias, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ObjectAlias, sizeof(eml23__ObjectAlias), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__ObjectAlias, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ObjectAlias, sizeof(eml23__ObjectAlias), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__ObjectAlias(soap, tag, NULL, "eml23:ObjectAlias")) break; } else - { if (!soap_in_PointerToeml23__ObjectAlias(soap, tag, n, "eml23:ObjectAlias")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__ObjectAlias(soap, tag, &n, "eml23:ObjectAlias")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475816,21 +476568,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__AnchorState(soap))) return NULL; - a->emplace_back(); - witsml21__AnchorState * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__AnchorState *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__AnchorState, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__AnchorState, sizeof(witsml21__AnchorState), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__AnchorState, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__AnchorState, sizeof(witsml21__AnchorState), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__AnchorState(soap, tag, NULL, "witsml21:AnchorState")) break; } else - { if (!soap_in_PointerTowitsml21__AnchorState(soap, tag, n, "witsml21:AnchorState")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__AnchorState(soap, tag, &n, "witsml21:AnchorState")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475906,21 +476660,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Incident(soap))) return NULL; - a->emplace_back(); - witsml21__Incident * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Incident *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Incident, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Incident, sizeof(witsml21__Incident), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Incident, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Incident, sizeof(witsml21__Incident), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Incident(soap, tag, NULL, "witsml21:Incident")) break; } else - { if (!soap_in_PointerTowitsml21__Incident(soap, tag, n, "witsml21:Incident")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Incident(soap, tag, &n, "witsml21:Incident")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -475996,21 +476752,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimPressureFlowRate(soap))) return NULL; - a->emplace_back(); - witsml21__StimPressureFlowRate * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimPressureFlowRate *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimPressureFlowRate, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPressureFlowRate, sizeof(witsml21__StimPressureFlowRate), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimPressureFlowRate, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPressureFlowRate, sizeof(witsml21__StimPressureFlowRate), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimPressureFlowRate(soap, tag, NULL, "witsml21:StimPressureFlowRate")) break; } else - { if (!soap_in_PointerTowitsml21__StimPressureFlowRate(soap, tag, n, "witsml21:StimPressureFlowRate")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimPressureFlowRate(soap, tag, &n, "witsml21:StimPressureFlowRate")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476086,21 +476844,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimPumpFlowBackTestStep(soap))) return NULL; - a->emplace_back(); - witsml21__StimPumpFlowBackTestStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimPumpFlowBackTestStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimPumpFlowBackTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPumpFlowBackTestStep, sizeof(witsml21__StimPumpFlowBackTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimPumpFlowBackTestStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPumpFlowBackTestStep, sizeof(witsml21__StimPumpFlowBackTestStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimPumpFlowBackTestStep(soap, tag, NULL, "witsml21:StimPumpFlowBackTestStep")) break; } else - { if (!soap_in_PointerTowitsml21__StimPumpFlowBackTestStep(soap, tag, n, "witsml21:StimPumpFlowBackTestStep")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimPumpFlowBackTestStep(soap, tag, &n, "witsml21:StimPumpFlowBackTestStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476176,21 +476936,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimPerforationCluster(soap))) return NULL; - a->emplace_back(); - witsml21__StimPerforationCluster * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimPerforationCluster *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPerforationCluster, sizeof(witsml21__StimPerforationCluster), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPerforationCluster, sizeof(witsml21__StimPerforationCluster), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimPerforationCluster(soap, tag, NULL, "witsml21:StimPerforationCluster")) break; } else - { if (!soap_in_PointerTowitsml21__StimPerforationCluster(soap, tag, n, "witsml21:StimPerforationCluster")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimPerforationCluster(soap, tag, &n, "witsml21:StimPerforationCluster")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476266,21 +477028,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimProppantAgent(soap))) return NULL; - a->emplace_back(); - witsml21__StimProppantAgent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimProppantAgent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimProppantAgent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimProppantAgent, sizeof(witsml21__StimProppantAgent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimProppantAgent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimProppantAgent, sizeof(witsml21__StimProppantAgent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimProppantAgent(soap, tag, NULL, "witsml21:StimProppantAgent")) break; } else - { if (!soap_in_PointerTowitsml21__StimProppantAgent(soap, tag, n, "witsml21:StimProppantAgent")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimProppantAgent(soap, tag, &n, "witsml21:StimProppantAgent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476356,21 +477120,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimAdditive(soap))) return NULL; - a->emplace_back(); - witsml21__StimAdditive * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimAdditive *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimAdditive, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimAdditive, sizeof(witsml21__StimAdditive), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimAdditive, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimAdditive, sizeof(witsml21__StimAdditive), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimAdditive(soap, tag, NULL, "witsml21:StimAdditive")) break; } else - { if (!soap_in_PointerTowitsml21__StimAdditive(soap, tag, n, "witsml21:StimAdditive")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimAdditive(soap, tag, &n, "witsml21:StimAdditive")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476446,21 +477212,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimPumpFlowBackTest(soap))) return NULL; - a->emplace_back(); - witsml21__StimPumpFlowBackTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimPumpFlowBackTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimPumpFlowBackTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPumpFlowBackTest, sizeof(witsml21__StimPumpFlowBackTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimPumpFlowBackTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimPumpFlowBackTest, sizeof(witsml21__StimPumpFlowBackTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimPumpFlowBackTest(soap, tag, NULL, "witsml21:StimPumpFlowBackTest")) break; } else - { if (!soap_in_PointerTowitsml21__StimPumpFlowBackTest(soap, tag, n, "witsml21:StimPumpFlowBackTest")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimPumpFlowBackTest(soap, tag, &n, "witsml21:StimPumpFlowBackTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476536,21 +477304,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimStepDownTest(soap))) return NULL; - a->emplace_back(); - witsml21__StimStepDownTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimStepDownTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimStepDownTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimStepDownTest, sizeof(witsml21__StimStepDownTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimStepDownTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimStepDownTest, sizeof(witsml21__StimStepDownTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimStepDownTest(soap, tag, NULL, "witsml21:StimStepDownTest")) break; } else - { if (!soap_in_PointerTowitsml21__StimStepDownTest(soap, tag, n, "witsml21:StimStepDownTest")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimStepDownTest(soap, tag, &n, "witsml21:StimStepDownTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476626,21 +477396,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimStepTest(soap))) return NULL; - a->emplace_back(); - witsml21__StimStepTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimStepTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimStepTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimStepTest, sizeof(witsml21__StimStepTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimStepTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimStepTest, sizeof(witsml21__StimStepTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimStepTest(soap, tag, NULL, "witsml21:StimStepTest")) break; } else - { if (!soap_in_PointerTowitsml21__StimStepTest(soap, tag, n, "witsml21:StimStepTest")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimStepTest(soap, tag, &n, "witsml21:StimStepTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476716,21 +477488,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimFetTest(soap))) return NULL; - a->emplace_back(); - witsml21__StimFetTest * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimFetTest *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimFetTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimFetTest, sizeof(witsml21__StimFetTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimFetTest, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimFetTest, sizeof(witsml21__StimFetTest), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimFetTest(soap, tag, NULL, "witsml21:StimFetTest")) break; } else - { if (!soap_in_PointerTowitsml21__StimFetTest(soap, tag, n, "witsml21:StimFetTest")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimFetTest(soap, tag, &n, "witsml21:StimFetTest")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476806,21 +477580,23 @@ SOAP_FMAC3 std::vector * SOAP_FMA } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ISO13503_USCORE2SieveAnalysisData(soap))) return NULL; - a->emplace_back(); - witsml21__ISO13503_USCORE2SieveAnalysisData * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ISO13503_USCORE2SieveAnalysisData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ISO13503_USCORE2SieveAnalysisData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ISO13503_USCORE2SieveAnalysisData, sizeof(witsml21__ISO13503_USCORE2SieveAnalysisData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ISO13503_USCORE2SieveAnalysisData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ISO13503_USCORE2SieveAnalysisData, sizeof(witsml21__ISO13503_USCORE2SieveAnalysisData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ISO13503_USCORE2SieveAnalysisData(soap, tag, NULL, "witsml21:ISO13503_2SieveAnalysisData")) break; } else - { if (!soap_in_PointerTowitsml21__ISO13503_USCORE2SieveAnalysisData(soap, tag, n, "witsml21:ISO13503_2SieveAnalysisData")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ISO13503_USCORE2SieveAnalysisData(soap, tag, &n, "witsml21:ISO13503_2SieveAnalysisData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476896,21 +477672,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ISO13503_USCORE2CrushTestData(soap))) return NULL; - a->emplace_back(); - witsml21__ISO13503_USCORE2CrushTestData * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ISO13503_USCORE2CrushTestData *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ISO13503_USCORE2CrushTestData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ISO13503_USCORE2CrushTestData, sizeof(witsml21__ISO13503_USCORE2CrushTestData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ISO13503_USCORE2CrushTestData, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ISO13503_USCORE2CrushTestData, sizeof(witsml21__ISO13503_USCORE2CrushTestData), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ISO13503_USCORE2CrushTestData(soap, tag, NULL, "witsml21:ISO13503_2CrushTestData")) break; } else - { if (!soap_in_PointerTowitsml21__ISO13503_USCORE2CrushTestData(soap, tag, n, "witsml21:ISO13503_2CrushTestData")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ISO13503_USCORE2CrushTestData(soap, tag, &n, "witsml21:ISO13503_2CrushTestData")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -476986,21 +477764,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimMaterialQuantity(soap))) return NULL; - a->emplace_back(); - witsml21__StimMaterialQuantity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimMaterialQuantity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimMaterialQuantity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimMaterialQuantity, sizeof(witsml21__StimMaterialQuantity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimMaterialQuantity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimMaterialQuantity, sizeof(witsml21__StimMaterialQuantity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimMaterialQuantity(soap, tag, NULL, "witsml21:StimMaterialQuantity")) break; } else - { if (!soap_in_PointerTowitsml21__StimMaterialQuantity(soap, tag, n, "witsml21:StimMaterialQuantity")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimMaterialQuantity(soap, tag, &n, "witsml21:StimMaterialQuantity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477076,21 +477856,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StimTubular(soap))) return NULL; - a->emplace_back(); - witsml21__StimTubular * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimTubular *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimTubular, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimTubular, sizeof(witsml21__StimTubular), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimTubular, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StimTubular, sizeof(witsml21__StimTubular), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StimTubular(soap, tag, NULL, "witsml21:StimTubular")) break; } else - { if (!soap_in_PointerTowitsml21__StimTubular(soap, tag, n, "witsml21:StimTubular")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StimTubular(soap, tag, &n, "witsml21:StimTubular")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477164,21 +477946,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfwitsml21__StimFetTestAnalysisMethod(soap))) return NULL; - a->emplace_back(); - witsml21__StimFetTestAnalysisMethod *n = &a->back(); - soap_default_witsml21__StimFetTestAnalysisMethod(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StimFetTestAnalysisMethod n; + soap_default_witsml21__StimFetTestAnalysisMethod(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StimFetTestAnalysisMethod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__StimFetTestAnalysisMethod, sizeof(witsml21__StimFetTestAnalysisMethod), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StimFetTestAnalysisMethod, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfwitsml21__StimFetTestAnalysisMethod, sizeof(witsml21__StimFetTestAnalysisMethod), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_witsml21__StimFetTestAnalysisMethod(soap, tag, NULL, "witsml21:StimFetTestAnalysisMethod")) break; } else - { if (!soap_in_witsml21__StimFetTestAnalysisMethod(soap, tag, n, "witsml21:StimFetTestAnalysisMethod")) - { a->pop_back(); + { if (!soap_in_witsml21__StimFetTestAnalysisMethod(soap, tag, &n, "witsml21:StimFetTestAnalysisMethod")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477254,21 +478038,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__WellboreGeometrySection(soap))) return NULL; - a->emplace_back(); - witsml21__WellboreGeometrySection * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__WellboreGeometrySection *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreGeometrySection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WellboreGeometrySection, sizeof(witsml21__WellboreGeometrySection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreGeometrySection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__WellboreGeometrySection, sizeof(witsml21__WellboreGeometrySection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__WellboreGeometrySection(soap, tag, NULL, "witsml21:WellboreGeometrySection")) break; } else - { if (!soap_in_PointerTowitsml21__WellboreGeometrySection(soap, tag, n, "witsml21:WellboreGeometrySection")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__WellboreGeometrySection(soap, tag, &n, "witsml21:WellboreGeometrySection")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477344,21 +478130,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CementAdditive(soap))) return NULL; - a->emplace_back(); - witsml21__CementAdditive * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CementAdditive *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CementAdditive, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementAdditive, sizeof(witsml21__CementAdditive), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CementAdditive, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementAdditive, sizeof(witsml21__CementAdditive), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CementAdditive(soap, tag, NULL, "witsml21:CementAdditive")) break; } else - { if (!soap_in_PointerTowitsml21__CementAdditive(soap, tag, n, "witsml21:CementAdditive")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CementAdditive(soap, tag, &n, "witsml21:CementAdditive")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477434,21 +478222,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__FluidLocation(soap))) return NULL; - a->emplace_back(); - witsml21__FluidLocation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__FluidLocation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__FluidLocation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__FluidLocation, sizeof(witsml21__FluidLocation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__FluidLocation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__FluidLocation, sizeof(witsml21__FluidLocation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__FluidLocation(soap, tag, NULL, "witsml21:FluidLocation")) break; } else - { if (!soap_in_PointerTowitsml21__FluidLocation(soap, tag, n, "witsml21:FluidLocation")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__FluidLocation(soap, tag, &n, "witsml21:FluidLocation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477524,21 +478314,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CementPumpScheduleStep(soap))) return NULL; - a->emplace_back(); - witsml21__CementPumpScheduleStep * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CementPumpScheduleStep *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CementPumpScheduleStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementPumpScheduleStep, sizeof(witsml21__CementPumpScheduleStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CementPumpScheduleStep, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CementPumpScheduleStep, sizeof(witsml21__CementPumpScheduleStep), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CementPumpScheduleStep(soap, tag, NULL, "witsml21:CementPumpScheduleStep")) break; } else - { if (!soap_in_PointerTowitsml21__CementPumpScheduleStep(soap, tag, n, "witsml21:CementPumpScheduleStep")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CementPumpScheduleStep(soap, tag, &n, "witsml21:CementPumpScheduleStep")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477614,21 +478406,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__AzimuthRange(soap))) return NULL; - a->emplace_back(); - witsml21__AzimuthRange * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__AzimuthRange *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__AzimuthRange, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__AzimuthRange, sizeof(witsml21__AzimuthRange), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__AzimuthRange, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__AzimuthRange, sizeof(witsml21__AzimuthRange), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__AzimuthRange(soap, tag, NULL, "witsml21:AzimuthRange")) break; } else - { if (!soap_in_PointerTowitsml21__AzimuthRange(soap, tag, n, "witsml21:AzimuthRange")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__AzimuthRange(soap, tag, &n, "witsml21:AzimuthRange")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477704,21 +478498,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PlaneAngleOperatingRange(soap))) return NULL; - a->emplace_back(); - witsml21__PlaneAngleOperatingRange * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PlaneAngleOperatingRange *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PlaneAngleOperatingRange, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PlaneAngleOperatingRange, sizeof(witsml21__PlaneAngleOperatingRange), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PlaneAngleOperatingRange, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PlaneAngleOperatingRange, sizeof(witsml21__PlaneAngleOperatingRange), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PlaneAngleOperatingRange(soap, tag, NULL, "witsml21:PlaneAngleOperatingRange")) break; } else - { if (!soap_in_PointerTowitsml21__PlaneAngleOperatingRange(soap, tag, n, "witsml21:PlaneAngleOperatingRange")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PlaneAngleOperatingRange(soap, tag, &n, "witsml21:PlaneAngleOperatingRange")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477794,21 +478590,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CustomOperatingRange(soap))) return NULL; - a->emplace_back(); - witsml21__CustomOperatingRange * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CustomOperatingRange *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CustomOperatingRange, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CustomOperatingRange, sizeof(witsml21__CustomOperatingRange), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CustomOperatingRange, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CustomOperatingRange, sizeof(witsml21__CustomOperatingRange), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CustomOperatingRange(soap, tag, NULL, "witsml21:CustomOperatingRange")) break; } else - { if (!soap_in_PointerTowitsml21__CustomOperatingRange(soap, tag, n, "witsml21:CustomOperatingRange")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CustomOperatingRange(soap, tag, &n, "witsml21:CustomOperatingRange")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477884,21 +478682,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__AbstractTvdInterval(soap))) return NULL; - a->emplace_back(); - eml23__AbstractTvdInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__AbstractTvdInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__AbstractTvdInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractTvdInterval, sizeof(eml23__AbstractTvdInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__AbstractTvdInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__AbstractTvdInterval, sizeof(eml23__AbstractTvdInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__AbstractTvdInterval(soap, tag, NULL, "eml23:AbstractTvdInterval")) break; } else - { if (!soap_in_PointerToeml23__AbstractTvdInterval(soap, tag, n, "eml23:AbstractTvdInterval")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__AbstractTvdInterval(soap, tag, &n, "eml23:AbstractTvdInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -477974,21 +478774,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__MdInterval(soap))) return NULL; - a->emplace_back(); - eml23__MdInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__MdInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__MdInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__MdInterval, sizeof(eml23__MdInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__MdInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__MdInterval, sizeof(eml23__MdInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__MdInterval(soap, tag, NULL, "eml23:MdInterval")) break; } else - { if (!soap_in_PointerToeml23__MdInterval(soap, tag, n, "eml23:MdInterval")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__MdInterval(soap, tag, &n, "eml23:MdInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478064,21 +478866,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__GenericMeasure(soap))) return NULL; - a->emplace_back(); - eml23__GenericMeasure * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__GenericMeasure *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__GenericMeasure, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__GenericMeasure, sizeof(eml23__GenericMeasure), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__GenericMeasure, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__GenericMeasure, sizeof(eml23__GenericMeasure), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__GenericMeasure(soap, tag, NULL, "eml23:GenericMeasure")) break; } else - { if (!soap_in_PointerToeml23__GenericMeasure(soap, tag, n, "eml23:GenericMeasure")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__GenericMeasure(soap, tag, &n, "eml23:GenericMeasure")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478154,21 +478958,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StationaryGyro(soap))) return NULL; - a->emplace_back(); - witsml21__StationaryGyro * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StationaryGyro *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StationaryGyro, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StationaryGyro, sizeof(witsml21__StationaryGyro), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StationaryGyro, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StationaryGyro, sizeof(witsml21__StationaryGyro), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StationaryGyro(soap, tag, NULL, "witsml21:StationaryGyro")) break; } else - { if (!soap_in_PointerTowitsml21__StationaryGyro(soap, tag, n, "witsml21:StationaryGyro")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StationaryGyro(soap, tag, &n, "witsml21:StationaryGyro")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478244,21 +479050,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ContinuousGyro(soap))) return NULL; - a->emplace_back(); - witsml21__ContinuousGyro * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ContinuousGyro *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ContinuousGyro, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ContinuousGyro, sizeof(witsml21__ContinuousGyro), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ContinuousGyro, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ContinuousGyro, sizeof(witsml21__ContinuousGyro), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ContinuousGyro(soap, tag, NULL, "witsml21:ContinuousGyro")) break; } else - { if (!soap_in_PointerTowitsml21__ContinuousGyro(soap, tag, n, "witsml21:ContinuousGyro")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ContinuousGyro(soap, tag, &n, "witsml21:ContinuousGyro")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478334,21 +479142,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Parameter(soap))) return NULL; - a->emplace_back(); - witsml21__Parameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Parameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Parameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Parameter, sizeof(witsml21__Parameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Parameter, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Parameter, sizeof(witsml21__Parameter), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Parameter(soap, tag, NULL, "witsml21:Parameter")) break; } else - { if (!soap_in_PointerTowitsml21__Parameter(soap, tag, n, "witsml21:Parameter")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Parameter(soap, tag, &n, "witsml21:Parameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478424,21 +479234,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__Abstract3dPosition(soap))) return NULL; - a->emplace_back(); - eml23__Abstract3dPosition * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__Abstract3dPosition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__Abstract3dPosition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Abstract3dPosition, sizeof(eml23__Abstract3dPosition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__Abstract3dPosition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Abstract3dPosition, sizeof(eml23__Abstract3dPosition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__Abstract3dPosition(soap, tag, NULL, "eml23:Abstract3dPosition")) break; } else - { if (!soap_in_PointerToeml23__Abstract3dPosition(soap, tag, n, "eml23:Abstract3dPosition")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__Abstract3dPosition(soap, tag, &n, "eml23:Abstract3dPosition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478514,21 +479326,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__TrajectoryStation(soap))) return NULL; - a->emplace_back(); - witsml21__TrajectoryStation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__TrajectoryStation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__TrajectoryStation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TrajectoryStation, sizeof(witsml21__TrajectoryStation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__TrajectoryStation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TrajectoryStation, sizeof(witsml21__TrajectoryStation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__TrajectoryStation(soap, tag, NULL, "witsml21:TrajectoryStation")) break; } else - { if (!soap_in_PointerTowitsml21__TrajectoryStation(soap, tag, n, "witsml21:TrajectoryStation")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__TrajectoryStation(soap, tag, &n, "witsml21:TrajectoryStation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478604,31 +479418,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfem } if (!a && !(a = soap_new_std__vectorTemplateOfeml23__String256(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_eml23__String256(soap, n); + std::string n; + soap_default_eml23__String256(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__String256, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__String256, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__String256, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfeml23__String256, sizeof(std::string), 0, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_eml23__String256(soap, tag, NULL, "eml23:String256")) break; } else - { if (!soap_in_eml23__String256(soap, tag, n, "eml23:String256")) - { a->pop_back(); + { if (!soap_in_eml23__String256(soap, tag, &n, "eml23:String256")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -478704,21 +479522,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__LogChannelAxis(soap))) return NULL; - a->emplace_back(); - witsml21__LogChannelAxis * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__LogChannelAxis *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__LogChannelAxis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LogChannelAxis, sizeof(witsml21__LogChannelAxis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__LogChannelAxis, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LogChannelAxis, sizeof(witsml21__LogChannelAxis), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__LogChannelAxis(soap, tag, NULL, "witsml21:LogChannelAxis")) break; } else - { if (!soap_in_PointerTowitsml21__LogChannelAxis(soap, tag, n, "witsml21:LogChannelAxis")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__LogChannelAxis(soap, tag, &n, "witsml21:LogChannelAxis")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478794,21 +479614,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__LithologyQualifier(soap))) return NULL; - a->emplace_back(); - witsml21__LithologyQualifier * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__LithologyQualifier *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__LithologyQualifier, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LithologyQualifier, sizeof(witsml21__LithologyQualifier), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__LithologyQualifier, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__LithologyQualifier, sizeof(witsml21__LithologyQualifier), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__LithologyQualifier(soap, tag, NULL, "witsml21:LithologyQualifier")) break; } else - { if (!soap_in_PointerTowitsml21__LithologyQualifier(soap, tag, n, "witsml21:LithologyQualifier")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__LithologyQualifier(soap, tag, &n, "witsml21:LithologyQualifier")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478884,21 +479706,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__CuttingsIntervalShow(soap))) return NULL; - a->emplace_back(); - witsml21__CuttingsIntervalShow * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__CuttingsIntervalShow *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsIntervalShow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CuttingsIntervalShow, sizeof(witsml21__CuttingsIntervalShow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsIntervalShow, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__CuttingsIntervalShow, sizeof(witsml21__CuttingsIntervalShow), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__CuttingsIntervalShow(soap, tag, NULL, "witsml21:CuttingsIntervalShow")) break; } else - { if (!soap_in_PointerTowitsml21__CuttingsIntervalShow(soap, tag, n, "witsml21:CuttingsIntervalShow")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__CuttingsIntervalShow(soap, tag, &n, "witsml21:CuttingsIntervalShow")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -478974,21 +479798,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__GasPeak(soap))) return NULL; - a->emplace_back(); - witsml21__GasPeak * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__GasPeak *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__GasPeak, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GasPeak, sizeof(witsml21__GasPeak), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__GasPeak, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GasPeak, sizeof(witsml21__GasPeak), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__GasPeak(soap, tag, NULL, "witsml21:GasPeak")) break; } else - { if (!soap_in_PointerTowitsml21__GasPeak(soap, tag, n, "witsml21:GasPeak")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__GasPeak(soap, tag, &n, "witsml21:GasPeak")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479064,21 +479890,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__TubularUmbilicalCut(soap))) return NULL; - a->emplace_back(); - witsml21__TubularUmbilicalCut * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__TubularUmbilicalCut *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__TubularUmbilicalCut, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TubularUmbilicalCut, sizeof(witsml21__TubularUmbilicalCut), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__TubularUmbilicalCut, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__TubularUmbilicalCut, sizeof(witsml21__TubularUmbilicalCut), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__TubularUmbilicalCut(soap, tag, NULL, "witsml21:TubularUmbilicalCut")) break; } else - { if (!soap_in_PointerTowitsml21__TubularUmbilicalCut(soap, tag, n, "witsml21:TubularUmbilicalCut")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__TubularUmbilicalCut(soap, tag, &n, "witsml21:TubularUmbilicalCut")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479154,21 +479982,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Nozzle(soap))) return NULL; - a->emplace_back(); - witsml21__Nozzle * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Nozzle *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Nozzle, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Nozzle, sizeof(witsml21__Nozzle), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Nozzle, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Nozzle, sizeof(witsml21__Nozzle), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Nozzle(soap, tag, NULL, "witsml21:Nozzle")) break; } else - { if (!soap_in_PointerTowitsml21__Nozzle(soap, tag, n, "witsml21:Nozzle")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Nozzle(soap, tag, &n, "witsml21:Nozzle")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479244,21 +480074,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplat } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Bend(soap))) return NULL; - a->emplace_back(); - witsml21__Bend * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Bend *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Bend, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Bend, sizeof(witsml21__Bend), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Bend, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Bend, sizeof(witsml21__Bend), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Bend(soap, tag, NULL, "witsml21:Bend")) break; } else - { if (!soap_in_PointerTowitsml21__Bend(soap, tag, n, "witsml21:Bend")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Bend(soap, tag, &n, "witsml21:Bend")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479334,21 +480166,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Stabilizer(soap))) return NULL; - a->emplace_back(); - witsml21__Stabilizer * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Stabilizer *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Stabilizer, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Stabilizer, sizeof(witsml21__Stabilizer), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Stabilizer, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Stabilizer, sizeof(witsml21__Stabilizer), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Stabilizer(soap, tag, NULL, "witsml21:Stabilizer")) break; } else - { if (!soap_in_PointerTowitsml21__Stabilizer(soap, tag, n, "witsml21:Stabilizer")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Stabilizer(soap, tag, &n, "witsml21:Stabilizer")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479424,21 +480258,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Connection(soap))) return NULL; - a->emplace_back(); - witsml21__Connection * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Connection *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Connection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Connection, sizeof(witsml21__Connection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Connection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Connection, sizeof(witsml21__Connection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Connection(soap, tag, NULL, "witsml21:Connection")) break; } else - { if (!soap_in_PointerTowitsml21__Connection(soap, tag, n, "witsml21:Connection")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Connection(soap, tag, &n, "witsml21:Connection")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479514,21 +480350,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Sensor(soap))) return NULL; - a->emplace_back(); - witsml21__Sensor * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Sensor *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Sensor, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Sensor, sizeof(witsml21__Sensor), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Sensor, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Sensor, sizeof(witsml21__Sensor), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Sensor(soap, tag, NULL, "witsml21:Sensor")) break; } else - { if (!soap_in_PointerTowitsml21__Sensor(soap, tag, n, "witsml21:Sensor")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Sensor(soap, tag, &n, "witsml21:Sensor")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479604,21 +480442,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__RheometerViscosity(soap))) return NULL; - a->emplace_back(); - witsml21__RheometerViscosity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__RheometerViscosity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__RheometerViscosity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__RheometerViscosity, sizeof(witsml21__RheometerViscosity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__RheometerViscosity, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__RheometerViscosity, sizeof(witsml21__RheometerViscosity), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__RheometerViscosity(soap, tag, NULL, "witsml21:RheometerViscosity")) break; } else - { if (!soap_in_PointerTowitsml21__RheometerViscosity(soap, tag, n, "witsml21:RheometerViscosity")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__RheometerViscosity(soap, tag, &n, "witsml21:RheometerViscosity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479694,21 +480534,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Rheometer(soap))) return NULL; - a->emplace_back(); - witsml21__Rheometer * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Rheometer *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Rheometer, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Rheometer, sizeof(witsml21__Rheometer), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Rheometer, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Rheometer, sizeof(witsml21__Rheometer), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Rheometer(soap, tag, NULL, "witsml21:Rheometer")) break; } else - { if (!soap_in_PointerTowitsml21__Rheometer(soap, tag, n, "witsml21:Rheometer")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Rheometer(soap, tag, &n, "witsml21:Rheometer")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479784,21 +480626,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__BopComponent(soap))) return NULL; - a->emplace_back(); - witsml21__BopComponent * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__BopComponent *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__BopComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BopComponent, sizeof(witsml21__BopComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__BopComponent, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BopComponent, sizeof(witsml21__BopComponent), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__BopComponent(soap, tag, NULL, "witsml21:BopComponent")) break; } else - { if (!soap_in_PointerTowitsml21__BopComponent(soap, tag, n, "witsml21:BopComponent")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__BopComponent(soap, tag, &n, "witsml21:BopComponent")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479874,21 +480718,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__NameTag(soap))) return NULL; - a->emplace_back(); - witsml21__NameTag * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__NameTag *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__NameTag, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__NameTag, sizeof(witsml21__NameTag), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__NameTag, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__NameTag, sizeof(witsml21__NameTag), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__NameTag(soap, tag, NULL, "witsml21:NameTag")) break; } else - { if (!soap_in_PointerTowitsml21__NameTag(soap, tag, n, "witsml21:NameTag")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__NameTag(soap, tag, &n, "witsml21:NameTag")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -479964,21 +480810,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DrillReportSurveyStation(soap))) return NULL; - a->emplace_back(); - witsml21__DrillReportSurveyStation * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DrillReportSurveyStation *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportSurveyStation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportSurveyStation, sizeof(witsml21__DrillReportSurveyStation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DrillReportSurveyStation, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DrillReportSurveyStation, sizeof(witsml21__DrillReportSurveyStation), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DrillReportSurveyStation(soap, tag, NULL, "witsml21:DrillReportSurveyStation")) break; } else - { if (!soap_in_PointerTowitsml21__DrillReportSurveyStation(soap, tag, n, "witsml21:DrillReportSurveyStation")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DrillReportSurveyStation(soap, tag, &n, "witsml21:DrillReportSurveyStation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480054,21 +480902,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__Abstract2dPosition(soap))) return NULL; - a->emplace_back(); - eml23__Abstract2dPosition * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__Abstract2dPosition *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__Abstract2dPosition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Abstract2dPosition, sizeof(eml23__Abstract2dPosition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__Abstract2dPosition, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__Abstract2dPosition, sizeof(eml23__Abstract2dPosition), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__Abstract2dPosition(soap, tag, NULL, "eml23:Abstract2dPosition")) break; } else - { if (!soap_in_PointerToeml23__Abstract2dPosition(soap, tag, n, "eml23:Abstract2dPosition")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__Abstract2dPosition(soap, tag, &n, "eml23:Abstract2dPosition")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480144,21 +480994,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__NameStruct(soap))) return NULL; - a->emplace_back(); - eml23__NameStruct * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__NameStruct *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__NameStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__NameStruct, sizeof(eml23__NameStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__NameStruct, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__NameStruct, sizeof(eml23__NameStruct), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__NameStruct(soap, tag, NULL, "eml23:NameStruct")) break; } else - { if (!soap_in_PointerToeml23__NameStruct(soap, tag, n, "eml23:NameStruct")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__NameStruct(soap, tag, &n, "eml23:NameStruct")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480234,21 +481086,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__MemberObject(soap))) return NULL; - a->emplace_back(); - witsml21__MemberObject * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__MemberObject *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__MemberObject, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MemberObject, sizeof(witsml21__MemberObject), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__MemberObject, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__MemberObject, sizeof(witsml21__MemberObject), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__MemberObject(soap, tag, NULL, "witsml21:MemberObject")) break; } else - { if (!soap_in_PointerTowitsml21__MemberObject(soap, tag, n, "witsml21:MemberObject")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__MemberObject(soap, tag, &n, "witsml21:MemberObject")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480324,21 +481178,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DownholeStringReference(soap))) return NULL; - a->emplace_back(); - witsml21__DownholeStringReference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DownholeStringReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DownholeStringReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DownholeStringReference, sizeof(witsml21__DownholeStringReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DownholeStringReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DownholeStringReference, sizeof(witsml21__DownholeStringReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DownholeStringReference(soap, tag, NULL, "witsml21:DownholeStringReference")) break; } else - { if (!soap_in_PointerTowitsml21__DownholeStringReference(soap, tag, n, "witsml21:DownholeStringReference")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DownholeStringReference(soap, tag, &n, "witsml21:DownholeStringReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480414,21 +481270,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__BoreholeStringReference(soap))) return NULL; - a->emplace_back(); - witsml21__BoreholeStringReference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__BoreholeStringReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__BoreholeStringReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BoreholeStringReference, sizeof(witsml21__BoreholeStringReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__BoreholeStringReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BoreholeStringReference, sizeof(witsml21__BoreholeStringReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__BoreholeStringReference(soap, tag, NULL, "witsml21:BoreholeStringReference")) break; } else - { if (!soap_in_PointerTowitsml21__BoreholeStringReference(soap, tag, n, "witsml21:BoreholeStringReference")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__BoreholeStringReference(soap, tag, &n, "witsml21:BoreholeStringReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480504,21 +481362,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__EquipmentConnection(soap))) return NULL; - a->emplace_back(); - witsml21__EquipmentConnection * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__EquipmentConnection *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__EquipmentConnection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__EquipmentConnection, sizeof(witsml21__EquipmentConnection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__EquipmentConnection, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__EquipmentConnection, sizeof(witsml21__EquipmentConnection), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__EquipmentConnection(soap, tag, NULL, "witsml21:EquipmentConnection")) break; } else - { if (!soap_in_PointerTowitsml21__EquipmentConnection(soap, tag, n, "witsml21:EquipmentConnection")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__EquipmentConnection(soap, tag, &n, "witsml21:EquipmentConnection")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480594,21 +481454,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ReferenceContainer(soap))) return NULL; - a->emplace_back(); - witsml21__ReferenceContainer * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ReferenceContainer *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ReferenceContainer, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ReferenceContainer, sizeof(witsml21__ReferenceContainer), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ReferenceContainer, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ReferenceContainer, sizeof(witsml21__ReferenceContainer), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ReferenceContainer(soap, tag, NULL, "witsml21:ReferenceContainer")) break; } else - { if (!soap_in_PointerTowitsml21__ReferenceContainer(soap, tag, n, "witsml21:ReferenceContainer")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ReferenceContainer(soap, tag, &n, "witsml21:ReferenceContainer")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480684,21 +481546,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__EventInfo(soap))) return NULL; - a->emplace_back(); - witsml21__EventInfo * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__EventInfo *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__EventInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__EventInfo, sizeof(witsml21__EventInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__EventInfo, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__EventInfo, sizeof(witsml21__EventInfo), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__EventInfo(soap, tag, NULL, "witsml21:EventInfo")) break; } else - { if (!soap_in_PointerTowitsml21__EventInfo(soap, tag, n, "witsml21:EventInfo")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__EventInfo(soap, tag, &n, "witsml21:EventInfo")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480774,21 +481638,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PerforationSet(soap))) return NULL; - a->emplace_back(); - witsml21__PerforationSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PerforationSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PerforationSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerforationSet, sizeof(witsml21__PerforationSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PerforationSet, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerforationSet, sizeof(witsml21__PerforationSet), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PerforationSet(soap, tag, NULL, "witsml21:PerforationSet")) break; } else - { if (!soap_in_PointerTowitsml21__PerforationSet(soap, tag, n, "witsml21:PerforationSet")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PerforationSet(soap, tag, &n, "witsml21:PerforationSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480864,21 +481730,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__ComponentReference(soap))) return NULL; - a->emplace_back(); - eml23__ComponentReference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__ComponentReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__ComponentReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ComponentReference, sizeof(eml23__ComponentReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__ComponentReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ComponentReference, sizeof(eml23__ComponentReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__ComponentReference(soap, tag, NULL, "eml23:ComponentReference")) break; } else - { if (!soap_in_PointerToeml23__ComponentReference(soap, tag, n, "eml23:ComponentReference")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__ComponentReference(soap, tag, &n, "eml23:ComponentReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -480954,21 +481822,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Equipment(soap))) return NULL; - a->emplace_back(); - witsml21__Equipment * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Equipment *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Equipment, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Equipment, sizeof(witsml21__Equipment), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Equipment, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Equipment, sizeof(witsml21__Equipment), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Equipment(soap, tag, NULL, "witsml21:Equipment")) break; } else - { if (!soap_in_PointerTowitsml21__Equipment(soap, tag, n, "witsml21:Equipment")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Equipment(soap, tag, &n, "witsml21:Equipment")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481044,21 +481914,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PerfHole(soap))) return NULL; - a->emplace_back(); - witsml21__PerfHole * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PerfHole *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PerfHole, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerfHole, sizeof(witsml21__PerfHole), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PerfHole, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerfHole, sizeof(witsml21__PerfHole), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PerfHole(soap, tag, NULL, "witsml21:PerfHole")) break; } else - { if (!soap_in_PointerTowitsml21__PerfHole(soap, tag, n, "witsml21:PerfHole")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PerfHole(soap, tag, &n, "witsml21:PerfHole")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481134,21 +482006,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PerfSlot(soap))) return NULL; - a->emplace_back(); - witsml21__PerfSlot * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PerfSlot *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PerfSlot, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerfSlot, sizeof(witsml21__PerfSlot), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PerfSlot, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerfSlot, sizeof(witsml21__PerfSlot), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PerfSlot(soap, tag, NULL, "witsml21:PerfSlot")) break; } else - { if (!soap_in_PointerTowitsml21__PerfSlot(soap, tag, n, "witsml21:PerfSlot")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PerfSlot(soap, tag, &n, "witsml21:PerfSlot")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481224,21 +482098,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__ExtPropNameValue(soap))) return NULL; - a->emplace_back(); - witsml21__ExtPropNameValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__ExtPropNameValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__ExtPropNameValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ExtPropNameValue, sizeof(witsml21__ExtPropNameValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__ExtPropNameValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__ExtPropNameValue, sizeof(witsml21__ExtPropNameValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__ExtPropNameValue(soap, tag, NULL, "witsml21:ExtPropNameValue")) break; } else - { if (!soap_in_PointerTowitsml21__ExtPropNameValue(soap, tag, n, "witsml21:ExtPropNameValue")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__ExtPropNameValue(soap, tag, &n, "witsml21:ExtPropNameValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481314,21 +482190,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__DownholeString(soap))) return NULL; - a->emplace_back(); - witsml21__DownholeString * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__DownholeString *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__DownholeString, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DownholeString, sizeof(witsml21__DownholeString), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__DownholeString, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__DownholeString, sizeof(witsml21__DownholeString), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__DownholeString(soap, tag, NULL, "witsml21:DownholeString")) break; } else - { if (!soap_in_PointerTowitsml21__DownholeString(soap, tag, n, "witsml21:DownholeString")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__DownholeString(soap, tag, &n, "witsml21:DownholeString")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481404,21 +482282,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__BoreholeString(soap))) return NULL; - a->emplace_back(); - witsml21__BoreholeString * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__BoreholeString *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__BoreholeString, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BoreholeString, sizeof(witsml21__BoreholeString), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__BoreholeString, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__BoreholeString, sizeof(witsml21__BoreholeString), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__BoreholeString(soap, tag, NULL, "witsml21:BoreholeString")) break; } else - { if (!soap_in_PointerTowitsml21__BoreholeString(soap, tag, n, "witsml21:BoreholeString")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__BoreholeString(soap, tag, &n, "witsml21:BoreholeString")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481494,21 +482374,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__GeologyFeature(soap))) return NULL; - a->emplace_back(); - witsml21__GeologyFeature * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__GeologyFeature *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__GeologyFeature, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GeologyFeature, sizeof(witsml21__GeologyFeature), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__GeologyFeature, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GeologyFeature, sizeof(witsml21__GeologyFeature), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__GeologyFeature(soap, tag, NULL, "witsml21:GeologyFeature")) break; } else - { if (!soap_in_PointerTowitsml21__GeologyFeature(soap, tag, n, "witsml21:GeologyFeature")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__GeologyFeature(soap, tag, &n, "witsml21:GeologyFeature")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481584,21 +482466,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__Borehole(soap))) return NULL; - a->emplace_back(); - witsml21__Borehole * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__Borehole *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__Borehole, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Borehole, sizeof(witsml21__Borehole), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__Borehole, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__Borehole, sizeof(witsml21__Borehole), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__Borehole(soap, tag, NULL, "witsml21:Borehole")) break; } else - { if (!soap_in_PointerTowitsml21__Borehole(soap, tag, n, "witsml21:Borehole")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__Borehole(soap, tag, &n, "witsml21:Borehole")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481674,21 +482558,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__StringEquipment(soap))) return NULL; - a->emplace_back(); - witsml21__StringEquipment * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__StringEquipment *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__StringEquipment, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StringEquipment, sizeof(witsml21__StringEquipment), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__StringEquipment, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__StringEquipment, sizeof(witsml21__StringEquipment), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__StringEquipment(soap, tag, NULL, "witsml21:StringEquipment")) break; } else - { if (!soap_in_PointerTowitsml21__StringEquipment(soap, tag, n, "witsml21:StringEquipment")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__StringEquipment(soap, tag, &n, "witsml21:StringEquipment")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481764,21 +482650,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_i } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PerforationStatusHistory(soap))) return NULL; - a->emplace_back(); - witsml21__PerforationStatusHistory * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PerforationStatusHistory *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PerforationStatusHistory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerforationStatusHistory, sizeof(witsml21__PerforationStatusHistory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PerforationStatusHistory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerforationStatusHistory, sizeof(witsml21__PerforationStatusHistory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PerforationStatusHistory(soap, tag, NULL, "witsml21:PerforationStatusHistory")) break; } else - { if (!soap_in_PointerTowitsml21__PerforationStatusHistory(soap, tag, n, "witsml21:PerforationStatusHistory")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PerforationStatusHistory(soap, tag, &n, "witsml21:PerforationStatusHistory")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481854,21 +482742,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__IntervalStatusHistory(soap))) return NULL; - a->emplace_back(); - witsml21__IntervalStatusHistory * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__IntervalStatusHistory *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__IntervalStatusHistory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__IntervalStatusHistory, sizeof(witsml21__IntervalStatusHistory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__IntervalStatusHistory, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__IntervalStatusHistory, sizeof(witsml21__IntervalStatusHistory), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__IntervalStatusHistory(soap, tag, NULL, "witsml21:IntervalStatusHistory")) break; } else - { if (!soap_in_PointerTowitsml21__IntervalStatusHistory(soap, tag, n, "witsml21:IntervalStatusHistory")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__IntervalStatusHistory(soap, tag, &n, "witsml21:IntervalStatusHistory")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -481944,21 +482834,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__ExtensionNameValue(soap))) return NULL; - a->emplace_back(); - eml23__ExtensionNameValue * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__ExtensionNameValue *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__ExtensionNameValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ExtensionNameValue, sizeof(eml23__ExtensionNameValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__ExtensionNameValue, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__ExtensionNameValue, sizeof(eml23__ExtensionNameValue), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__ExtensionNameValue(soap, tag, NULL, "eml23:ExtensionNameValue")) break; } else - { if (!soap_in_PointerToeml23__ExtensionNameValue(soap, tag, n, "eml23:ExtensionNameValue")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__ExtensionNameValue(soap, tag, &n, "eml23:ExtensionNameValue")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -482034,21 +482926,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__DataObjectReference(soap))) return NULL; - a->emplace_back(); - eml23__DataObjectReference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__DataObjectReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__DataObjectReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DataObjectReference, sizeof(eml23__DataObjectReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__DataObjectReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DataObjectReference, sizeof(eml23__DataObjectReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__DataObjectReference(soap, tag, NULL, "eml23:DataObjectReference")) break; } else - { if (!soap_in_PointerToeml23__DataObjectReference(soap, tag, n, "eml23:DataObjectReference")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__DataObjectReference(soap, tag, &n, "eml23:DataObjectReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -482124,21 +483018,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml23__DataObjectComponentReference(soap))) return NULL; - a->emplace_back(); - eml23__DataObjectComponentReference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml23__DataObjectComponentReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_eml23__DataObjectComponentReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DataObjectComponentReference, sizeof(eml23__DataObjectComponentReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_eml23__DataObjectComponentReference, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToeml23__DataObjectComponentReference, sizeof(eml23__DataObjectComponentReference), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerToeml23__DataObjectComponentReference(soap, tag, NULL, "eml23:DataObjectComponentReference")) break; } else - { if (!soap_in_PointerToeml23__DataObjectComponentReference(soap, tag, n, "eml23:DataObjectComponentReference")) - { a->pop_back(); + { if (!soap_in_PointerToeml23__DataObjectComponentReference(soap, tag, &n, "eml23:DataObjectComponentReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -482214,21 +483110,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__SlotsInterval(soap))) return NULL; - a->emplace_back(); - witsml21__SlotsInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__SlotsInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__SlotsInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SlotsInterval, sizeof(witsml21__SlotsInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__SlotsInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__SlotsInterval, sizeof(witsml21__SlotsInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__SlotsInterval(soap, tag, NULL, "witsml21:SlotsInterval")) break; } else - { if (!soap_in_PointerTowitsml21__SlotsInterval(soap, tag, n, "witsml21:SlotsInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__SlotsInterval(soap, tag, &n, "witsml21:SlotsInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -482304,21 +483202,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__PerforationSetInterval(soap))) return NULL; - a->emplace_back(); - witsml21__PerforationSetInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__PerforationSetInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__PerforationSetInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerforationSetInterval, sizeof(witsml21__PerforationSetInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__PerforationSetInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__PerforationSetInterval, sizeof(witsml21__PerforationSetInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__PerforationSetInterval(soap, tag, NULL, "witsml21:PerforationSetInterval")) break; } else - { if (!soap_in_PointerTowitsml21__PerforationSetInterval(soap, tag, n, "witsml21:PerforationSetInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__PerforationSetInterval(soap, tag, &n, "witsml21:PerforationSetInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -482394,21 +483294,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__OpenHoleInterval(soap))) return NULL; - a->emplace_back(); - witsml21__OpenHoleInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__OpenHoleInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__OpenHoleInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__OpenHoleInterval, sizeof(witsml21__OpenHoleInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__OpenHoleInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__OpenHoleInterval, sizeof(witsml21__OpenHoleInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__OpenHoleInterval(soap, tag, NULL, "witsml21:OpenHoleInterval")) break; } else - { if (!soap_in_PointerTowitsml21__OpenHoleInterval(soap, tag, n, "witsml21:OpenHoleInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__OpenHoleInterval(soap, tag, &n, "witsml21:OpenHoleInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -482484,21 +483386,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTowitsml21__GravelPackInterval(soap))) return NULL; - a->emplace_back(); - witsml21__GravelPackInterval * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + witsml21__GravelPackInterval *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_eml2_3_witsml21__GravelPackInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GravelPackInterval, sizeof(witsml21__GravelPackInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_eml2_3_witsml21__GravelPackInterval, SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerTowitsml21__GravelPackInterval, sizeof(witsml21__GravelPackInterval), 1, gsoap_eml2_3_finsert, gsoap_eml2_3_fbase)) break; if (!soap_in_PointerTowitsml21__GravelPackInterval(soap, tag, NULL, "witsml21:GravelPackInterval")) break; } else - { if (!soap_in_PointerTowitsml21__GravelPackInterval(soap, tag, n, "witsml21:GravelPackInterval")) - { a->pop_back(); + { if (!soap_in_PointerTowitsml21__GravelPackInterval(soap, tag, &n, "witsml21:GravelPackInterval")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } diff --git a/src/proxies/gsoap_eml2_3H.h b/src/proxies/gsoap_eml2_3H.h index ab9bdadd1..0611de606 100644 --- a/src/proxies/gsoap_eml2_3H.h +++ b/src/proxies/gsoap_eml2_3H.h @@ -1,8 +1,8 @@ /* gsoap_eml2_3H.h - Generated by gSOAP 2.8.127E for eml2_3ForGsoap.h + Generated by gSOAP 2.8.139E for eml2_3ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -183,57 +183,57 @@ inline int soap_POST_recv_int(struct soap *soap, int *p) return soap_closesock(soap); } #endif -/* prodml22__CalendarYear is a typedef synonym of xsd__integer */ +/* prodml23__CalendarYear is a typedef synonym of xsd__integer */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear_DEFINED -#define soap_default_prodml22__CalendarYear soap_default_xsd__integer +#define soap_default_prodml23__CalendarYear soap_default_xsd__integer -#define soap_prodml22__CalendarYear2s soap_xsd__integer2s +#define soap_prodml23__CalendarYear2s soap_xsd__integer2s -#define soap_out_prodml22__CalendarYear soap_out_xsd__integer +#define soap_out_prodml23__CalendarYear soap_out_xsd__integer -#define soap_s2prodml22__CalendarYear soap_s2xsd__integer +#define soap_s2prodml23__CalendarYear soap_s2xsd__integer -#define soap_in_prodml22__CalendarYear soap_in_xsd__integer +#define soap_in_prodml23__CalendarYear soap_in_xsd__integer -#define soap_instantiate_prodml22__CalendarYear soap_instantiate_xsd__integer +#define soap_instantiate_prodml23__CalendarYear soap_instantiate_xsd__integer -#define soap_new_prodml22__CalendarYear soap_new_xsd__integer +#define soap_new_prodml23__CalendarYear soap_new_xsd__integer -#define soap_put_prodml22__CalendarYear soap_put_xsd__integer +#define soap_put_prodml23__CalendarYear soap_put_xsd__integer -#define soap_write_prodml22__CalendarYear soap_write_xsd__integer +#define soap_write_prodml23__CalendarYear soap_write_xsd__integer -#define soap_PUT_prodml22__CalendarYear soap_PUT_xsd__integer +#define soap_PUT_prodml23__CalendarYear soap_PUT_xsd__integer -#define soap_PATCH_prodml22__CalendarYear soap_PATCH_xsd__integer +#define soap_PATCH_prodml23__CalendarYear soap_PATCH_xsd__integer -#define soap_POST_send_prodml22__CalendarYear soap_POST_send_xsd__integer +#define soap_POST_send_prodml23__CalendarYear soap_POST_send_xsd__integer -#define soap_get_prodml22__CalendarYear soap_get_xsd__integer +#define soap_get_prodml23__CalendarYear soap_get_xsd__integer -#define soap_read_prodml22__CalendarYear soap_read_xsd__integer +#define soap_read_prodml23__CalendarYear soap_read_xsd__integer -#define soap_GET_prodml22__CalendarYear soap_GET_xsd__integer +#define soap_GET_prodml23__CalendarYear soap_GET_xsd__integer -#define soap_POST_recv_prodml22__CalendarYear soap_POST_recv_xsd__integer +#define soap_POST_recv_prodml23__CalendarYear soap_POST_recv_xsd__integer #endif @@ -739,86 +739,86 @@ inline int soap_POST_recv_LONG64(struct soap *soap, LONG64 *p) } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction_DEFINED -inline void soap_default_prodml22__NonNegativeFraction(struct soap *soap, float *a) +inline void soap_default_prodml23__NonNegativeFraction(struct soap *soap, float *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__NonNegativeFraction - *a = SOAP_DEFAULT_prodml22__NonNegativeFraction; +#ifdef SOAP_DEFAULT_prodml23__NonNegativeFraction + *a = SOAP_DEFAULT_prodml23__NonNegativeFraction; #else *a = (float)0; #endif } -#define soap_prodml22__NonNegativeFraction2s soap_float2s +#define soap_prodml23__NonNegativeFraction2s soap_float2s -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonNegativeFraction(struct soap*, const char*, int, const float *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__NonNegativeFraction(struct soap*, const char*, float *); -SOAP_FMAC3 float * SOAP_FMAC4 soap_in_prodml22__NonNegativeFraction(struct soap*, const char*, float *, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NonNegativeFraction(struct soap*, const char*, int, const float *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__NonNegativeFraction(struct soap*, const char*, float *); +SOAP_FMAC3 float * SOAP_FMAC4 soap_in_prodml23__NonNegativeFraction(struct soap*, const char*, float *, const char*); -#define soap_instantiate_prodml22__NonNegativeFraction soap_instantiate_float +#define soap_instantiate_prodml23__NonNegativeFraction soap_instantiate_float -#define soap_new_prodml22__NonNegativeFraction soap_new_float +#define soap_new_prodml23__NonNegativeFraction soap_new_float -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__NonNegativeFraction(struct soap*, const float *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__NonNegativeFraction(struct soap*, const float *, const char*, const char*); -inline int soap_write_prodml22__NonNegativeFraction(struct soap *soap, float const*p) +inline int soap_write_prodml23__NonNegativeFraction(struct soap *soap, float const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__NonNegativeFraction(soap, p, "prodml22:NonNegativeFraction", "prodml22:NonNegativeFraction") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__NonNegativeFraction(soap, p, "prodml23:NonNegativeFraction", "prodml23:NonNegativeFraction") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__NonNegativeFraction(struct soap *soap, const char *URL, float const*p) +inline int soap_PUT_prodml23__NonNegativeFraction(struct soap *soap, const char *URL, float const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__NonNegativeFraction(soap, p, "prodml22:NonNegativeFraction", "prodml22:NonNegativeFraction") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__NonNegativeFraction(soap, p, "prodml23:NonNegativeFraction", "prodml23:NonNegativeFraction") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NonNegativeFraction(struct soap *soap, const char *URL, float const*p) +inline int soap_PATCH_prodml23__NonNegativeFraction(struct soap *soap, const char *URL, float const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__NonNegativeFraction(soap, p, "prodml22:NonNegativeFraction", "prodml22:NonNegativeFraction") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__NonNegativeFraction(soap, p, "prodml23:NonNegativeFraction", "prodml23:NonNegativeFraction") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NonNegativeFraction(struct soap *soap, const char *URL, float const*p) +inline int soap_POST_send_prodml23__NonNegativeFraction(struct soap *soap, const char *URL, float const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__NonNegativeFraction(soap, p, "prodml22:NonNegativeFraction", "prodml22:NonNegativeFraction") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__NonNegativeFraction(soap, p, "prodml23:NonNegativeFraction", "prodml23:NonNegativeFraction") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 float * SOAP_FMAC4 soap_get_prodml22__NonNegativeFraction(struct soap*, float *, const char*, const char*); +SOAP_FMAC3 float * SOAP_FMAC4 soap_get_prodml23__NonNegativeFraction(struct soap*, float *, const char*, const char*); -inline int soap_read_prodml22__NonNegativeFraction(struct soap *soap, float *p) +inline int soap_read_prodml23__NonNegativeFraction(struct soap *soap, float *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NonNegativeFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NonNegativeFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NonNegativeFraction(struct soap *soap, const char *URL, float *p) +inline int soap_GET_prodml23__NonNegativeFraction(struct soap *soap, const char *URL, float *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NonNegativeFraction(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NonNegativeFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NonNegativeFraction(struct soap *soap, float *p) +inline int soap_POST_recv_prodml23__NonNegativeFraction(struct soap *soap, float *p) { - if (gsoap_eml2_3::soap_read_prodml22__NonNegativeFraction(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NonNegativeFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } @@ -4395,5452 +4395,5452 @@ inline int soap_POST_recv_resqml22__CulturalFeatureKind(struct soap *soap, resqm } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword_DEFINED -inline void soap_default_prodml22__TimeSeriesKeyword(struct soap *soap, prodml22__TimeSeriesKeyword *a) +inline void soap_default_prodml23__TimeSeriesKeyword(struct soap *soap, prodml23__TimeSeriesKeyword *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__TimeSeriesKeyword - *a = SOAP_DEFAULT_prodml22__TimeSeriesKeyword; +#ifdef SOAP_DEFAULT_prodml23__TimeSeriesKeyword + *a = SOAP_DEFAULT_prodml23__TimeSeriesKeyword; #else - *a = (prodml22__TimeSeriesKeyword)0; + *a = (prodml23__TimeSeriesKeyword)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesKeyword(struct soap*, const char*, int, const prodml22__TimeSeriesKeyword *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TimeSeriesKeyword2s(struct soap*, prodml22__TimeSeriesKeyword); -SOAP_FMAC3 prodml22__TimeSeriesKeyword * SOAP_FMAC4 soap_in_prodml22__TimeSeriesKeyword(struct soap*, const char*, prodml22__TimeSeriesKeyword *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeSeriesKeyword(struct soap*, const char*, prodml22__TimeSeriesKeyword *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesKeyword(struct soap*, const char*, int, const prodml23__TimeSeriesKeyword *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TimeSeriesKeyword2s(struct soap*, prodml23__TimeSeriesKeyword); +SOAP_FMAC3 prodml23__TimeSeriesKeyword * SOAP_FMAC4 soap_in_prodml23__TimeSeriesKeyword(struct soap*, const char*, prodml23__TimeSeriesKeyword *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TimeSeriesKeyword(struct soap*, const char*, prodml23__TimeSeriesKeyword *); -SOAP_FMAC3 prodml22__TimeSeriesKeyword * SOAP_FMAC4 soap_new_prodml22__TimeSeriesKeyword(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TimeSeriesKeyword(struct soap*, const prodml22__TimeSeriesKeyword *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesKeyword * SOAP_FMAC4 soap_new_prodml23__TimeSeriesKeyword(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TimeSeriesKeyword(struct soap*, const prodml23__TimeSeriesKeyword *, const char*, const char*); -inline int soap_write_prodml22__TimeSeriesKeyword(struct soap *soap, prodml22__TimeSeriesKeyword const*p) +inline int soap_write_prodml23__TimeSeriesKeyword(struct soap *soap, prodml23__TimeSeriesKeyword const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__TimeSeriesKeyword(soap, p, "prodml22:TimeSeriesKeyword", "prodml22:TimeSeriesKeyword") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__TimeSeriesKeyword(soap, p, "prodml23:TimeSeriesKeyword", "prodml23:TimeSeriesKeyword") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml22__TimeSeriesKeyword const*p) +inline int soap_PUT_prodml23__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml23__TimeSeriesKeyword const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeSeriesKeyword(soap, p, "prodml22:TimeSeriesKeyword", "prodml22:TimeSeriesKeyword") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeSeriesKeyword(soap, p, "prodml23:TimeSeriesKeyword", "prodml23:TimeSeriesKeyword") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml22__TimeSeriesKeyword const*p) +inline int soap_PATCH_prodml23__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml23__TimeSeriesKeyword const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeSeriesKeyword(soap, p, "prodml22:TimeSeriesKeyword", "prodml22:TimeSeriesKeyword") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeSeriesKeyword(soap, p, "prodml23:TimeSeriesKeyword", "prodml23:TimeSeriesKeyword") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml22__TimeSeriesKeyword const*p) +inline int soap_POST_send_prodml23__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml23__TimeSeriesKeyword const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeSeriesKeyword(soap, p, "prodml22:TimeSeriesKeyword", "prodml22:TimeSeriesKeyword") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeSeriesKeyword(soap, p, "prodml23:TimeSeriesKeyword", "prodml23:TimeSeriesKeyword") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesKeyword * SOAP_FMAC4 soap_get_prodml22__TimeSeriesKeyword(struct soap*, prodml22__TimeSeriesKeyword *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesKeyword * SOAP_FMAC4 soap_get_prodml23__TimeSeriesKeyword(struct soap*, prodml23__TimeSeriesKeyword *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesKeyword(struct soap *soap, prodml22__TimeSeriesKeyword *p) +inline int soap_read_prodml23__TimeSeriesKeyword(struct soap *soap, prodml23__TimeSeriesKeyword *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesKeyword(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesKeyword(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml22__TimeSeriesKeyword *p) +inline int soap_GET_prodml23__TimeSeriesKeyword(struct soap *soap, const char *URL, prodml23__TimeSeriesKeyword *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesKeyword(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesKeyword(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesKeyword(struct soap *soap, prodml22__TimeSeriesKeyword *p) +inline int soap_POST_recv_prodml23__TimeSeriesKeyword(struct soap *soap, prodml23__TimeSeriesKeyword *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesKeyword(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesKeyword(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval_DEFINED -inline void soap_default_prodml22__EndpointQualifierInterval(struct soap *soap, prodml22__EndpointQualifierInterval *a) +inline void soap_default_prodml23__EndpointQualifierInterval(struct soap *soap, prodml23__EndpointQualifierInterval *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__EndpointQualifierInterval - *a = SOAP_DEFAULT_prodml22__EndpointQualifierInterval; +#ifdef SOAP_DEFAULT_prodml23__EndpointQualifierInterval + *a = SOAP_DEFAULT_prodml23__EndpointQualifierInterval; #else - *a = (prodml22__EndpointQualifierInterval)0; + *a = (prodml23__EndpointQualifierInterval)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifierInterval(struct soap*, const char*, int, const prodml22__EndpointQualifierInterval *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__EndpointQualifierInterval2s(struct soap*, prodml22__EndpointQualifierInterval); -SOAP_FMAC3 prodml22__EndpointQualifierInterval * SOAP_FMAC4 soap_in_prodml22__EndpointQualifierInterval(struct soap*, const char*, prodml22__EndpointQualifierInterval *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__EndpointQualifierInterval(struct soap*, const char*, prodml22__EndpointQualifierInterval *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifierInterval(struct soap*, const char*, int, const prodml23__EndpointQualifierInterval *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__EndpointQualifierInterval2s(struct soap*, prodml23__EndpointQualifierInterval); +SOAP_FMAC3 prodml23__EndpointQualifierInterval * SOAP_FMAC4 soap_in_prodml23__EndpointQualifierInterval(struct soap*, const char*, prodml23__EndpointQualifierInterval *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__EndpointQualifierInterval(struct soap*, const char*, prodml23__EndpointQualifierInterval *); -SOAP_FMAC3 prodml22__EndpointQualifierInterval * SOAP_FMAC4 soap_new_prodml22__EndpointQualifierInterval(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__EndpointQualifierInterval(struct soap*, const prodml22__EndpointQualifierInterval *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifierInterval * SOAP_FMAC4 soap_new_prodml23__EndpointQualifierInterval(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__EndpointQualifierInterval(struct soap*, const prodml23__EndpointQualifierInterval *, const char*, const char*); -inline int soap_write_prodml22__EndpointQualifierInterval(struct soap *soap, prodml22__EndpointQualifierInterval const*p) +inline int soap_write_prodml23__EndpointQualifierInterval(struct soap *soap, prodml23__EndpointQualifierInterval const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__EndpointQualifierInterval(soap, p, "prodml22:EndpointQualifierInterval", "prodml22:EndpointQualifierInterval") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__EndpointQualifierInterval(soap, p, "prodml23:EndpointQualifierInterval", "prodml23:EndpointQualifierInterval") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml22__EndpointQualifierInterval const*p) +inline int soap_PUT_prodml23__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml23__EndpointQualifierInterval const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__EndpointQualifierInterval(soap, p, "prodml22:EndpointQualifierInterval", "prodml22:EndpointQualifierInterval") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__EndpointQualifierInterval(soap, p, "prodml23:EndpointQualifierInterval", "prodml23:EndpointQualifierInterval") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml22__EndpointQualifierInterval const*p) +inline int soap_PATCH_prodml23__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml23__EndpointQualifierInterval const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__EndpointQualifierInterval(soap, p, "prodml22:EndpointQualifierInterval", "prodml22:EndpointQualifierInterval") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__EndpointQualifierInterval(soap, p, "prodml23:EndpointQualifierInterval", "prodml23:EndpointQualifierInterval") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml22__EndpointQualifierInterval const*p) +inline int soap_POST_send_prodml23__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml23__EndpointQualifierInterval const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__EndpointQualifierInterval(soap, p, "prodml22:EndpointQualifierInterval", "prodml22:EndpointQualifierInterval") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__EndpointQualifierInterval(soap, p, "prodml23:EndpointQualifierInterval", "prodml23:EndpointQualifierInterval") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQualifierInterval * SOAP_FMAC4 soap_get_prodml22__EndpointQualifierInterval(struct soap*, prodml22__EndpointQualifierInterval *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifierInterval * SOAP_FMAC4 soap_get_prodml23__EndpointQualifierInterval(struct soap*, prodml23__EndpointQualifierInterval *, const char*, const char*); -inline int soap_read_prodml22__EndpointQualifierInterval(struct soap *soap, prodml22__EndpointQualifierInterval *p) +inline int soap_read_prodml23__EndpointQualifierInterval(struct soap *soap, prodml23__EndpointQualifierInterval *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__EndpointQualifierInterval(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__EndpointQualifierInterval(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml22__EndpointQualifierInterval *p) +inline int soap_GET_prodml23__EndpointQualifierInterval(struct soap *soap, const char *URL, prodml23__EndpointQualifierInterval *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__EndpointQualifierInterval(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__EndpointQualifierInterval(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__EndpointQualifierInterval(struct soap *soap, prodml22__EndpointQualifierInterval *p) +inline int soap_POST_recv_prodml23__EndpointQualifierInterval(struct soap *soap, prodml23__EndpointQualifierInterval *p) { - if (gsoap_eml2_3::soap_read_prodml22__EndpointQualifierInterval(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__EndpointQualifierInterval(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod_DEFINED -inline void soap_default_prodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod *a) +inline void soap_default_prodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__WellOperationMethod - *a = SOAP_DEFAULT_prodml22__WellOperationMethod; +#ifdef SOAP_DEFAULT_prodml23__WellOperationMethod + *a = SOAP_DEFAULT_prodml23__WellOperationMethod; #else - *a = (prodml22__WellOperationMethod)0; + *a = (prodml23__WellOperationMethod)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellOperationMethod(struct soap*, const char*, int, const prodml22__WellOperationMethod *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellOperationMethod2s(struct soap*, prodml22__WellOperationMethod); -SOAP_FMAC3 prodml22__WellOperationMethod * SOAP_FMAC4 soap_in_prodml22__WellOperationMethod(struct soap*, const char*, prodml22__WellOperationMethod *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellOperationMethod(struct soap*, const char*, prodml22__WellOperationMethod *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellOperationMethod(struct soap*, const char*, int, const prodml23__WellOperationMethod *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellOperationMethod2s(struct soap*, prodml23__WellOperationMethod); +SOAP_FMAC3 prodml23__WellOperationMethod * SOAP_FMAC4 soap_in_prodml23__WellOperationMethod(struct soap*, const char*, prodml23__WellOperationMethod *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellOperationMethod(struct soap*, const char*, prodml23__WellOperationMethod *); -SOAP_FMAC3 prodml22__WellOperationMethod * SOAP_FMAC4 soap_new_prodml22__WellOperationMethod(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellOperationMethod(struct soap*, const prodml22__WellOperationMethod *, const char*, const char*); +SOAP_FMAC3 prodml23__WellOperationMethod * SOAP_FMAC4 soap_new_prodml23__WellOperationMethod(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellOperationMethod(struct soap*, const prodml23__WellOperationMethod *, const char*, const char*); -inline int soap_write_prodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod const*p) +inline int soap_write_prodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__WellOperationMethod(soap, p, "prodml22:WellOperationMethod", "prodml22:WellOperationMethod") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__WellOperationMethod(soap, p, "prodml23:WellOperationMethod", "prodml23:WellOperationMethod") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__WellOperationMethod(struct soap *soap, const char *URL, prodml22__WellOperationMethod const*p) +inline int soap_PUT_prodml23__WellOperationMethod(struct soap *soap, const char *URL, prodml23__WellOperationMethod const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellOperationMethod(soap, p, "prodml22:WellOperationMethod", "prodml22:WellOperationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellOperationMethod(soap, p, "prodml23:WellOperationMethod", "prodml23:WellOperationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellOperationMethod(struct soap *soap, const char *URL, prodml22__WellOperationMethod const*p) +inline int soap_PATCH_prodml23__WellOperationMethod(struct soap *soap, const char *URL, prodml23__WellOperationMethod const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellOperationMethod(soap, p, "prodml22:WellOperationMethod", "prodml22:WellOperationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellOperationMethod(soap, p, "prodml23:WellOperationMethod", "prodml23:WellOperationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellOperationMethod(struct soap *soap, const char *URL, prodml22__WellOperationMethod const*p) +inline int soap_POST_send_prodml23__WellOperationMethod(struct soap *soap, const char *URL, prodml23__WellOperationMethod const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellOperationMethod(soap, p, "prodml22:WellOperationMethod", "prodml22:WellOperationMethod") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellOperationMethod(soap, p, "prodml23:WellOperationMethod", "prodml23:WellOperationMethod") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellOperationMethod * SOAP_FMAC4 soap_get_prodml22__WellOperationMethod(struct soap*, prodml22__WellOperationMethod *, const char*, const char*); +SOAP_FMAC3 prodml23__WellOperationMethod * SOAP_FMAC4 soap_get_prodml23__WellOperationMethod(struct soap*, prodml23__WellOperationMethod *, const char*, const char*); -inline int soap_read_prodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod *p) +inline int soap_read_prodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellOperationMethod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellOperationMethod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellOperationMethod(struct soap *soap, const char *URL, prodml22__WellOperationMethod *p) +inline int soap_GET_prodml23__WellOperationMethod(struct soap *soap, const char *URL, prodml23__WellOperationMethod *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellOperationMethod(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellOperationMethod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellOperationMethod(struct soap *soap, prodml22__WellOperationMethod *p) +inline int soap_POST_recv_prodml23__WellOperationMethod(struct soap *soap, prodml23__WellOperationMethod *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellOperationMethod(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellOperationMethod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis_DEFINED -inline void soap_default_prodml22__FluidComponentBasis(struct soap *soap, prodml22__FluidComponentBasis *a) +inline void soap_default_prodml23__FluidComponentBasis(struct soap *soap, prodml23__FluidComponentBasis *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FluidComponentBasis - *a = SOAP_DEFAULT_prodml22__FluidComponentBasis; +#ifdef SOAP_DEFAULT_prodml23__FluidComponentBasis + *a = SOAP_DEFAULT_prodml23__FluidComponentBasis; #else - *a = (prodml22__FluidComponentBasis)0; + *a = (prodml23__FluidComponentBasis)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentBasis(struct soap*, const char*, int, const prodml22__FluidComponentBasis *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidComponentBasis2s(struct soap*, prodml22__FluidComponentBasis); -SOAP_FMAC3 prodml22__FluidComponentBasis * SOAP_FMAC4 soap_in_prodml22__FluidComponentBasis(struct soap*, const char*, prodml22__FluidComponentBasis *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidComponentBasis(struct soap*, const char*, prodml22__FluidComponentBasis *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentBasis(struct soap*, const char*, int, const prodml23__FluidComponentBasis *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidComponentBasis2s(struct soap*, prodml23__FluidComponentBasis); +SOAP_FMAC3 prodml23__FluidComponentBasis * SOAP_FMAC4 soap_in_prodml23__FluidComponentBasis(struct soap*, const char*, prodml23__FluidComponentBasis *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidComponentBasis(struct soap*, const char*, prodml23__FluidComponentBasis *); -SOAP_FMAC3 prodml22__FluidComponentBasis * SOAP_FMAC4 soap_new_prodml22__FluidComponentBasis(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidComponentBasis(struct soap*, const prodml22__FluidComponentBasis *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentBasis * SOAP_FMAC4 soap_new_prodml23__FluidComponentBasis(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidComponentBasis(struct soap*, const prodml23__FluidComponentBasis *, const char*, const char*); -inline int soap_write_prodml22__FluidComponentBasis(struct soap *soap, prodml22__FluidComponentBasis const*p) +inline int soap_write_prodml23__FluidComponentBasis(struct soap *soap, prodml23__FluidComponentBasis const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidComponentBasis(soap, p, "prodml22:FluidComponentBasis", "prodml22:FluidComponentBasis") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidComponentBasis(soap, p, "prodml23:FluidComponentBasis", "prodml23:FluidComponentBasis") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidComponentBasis(struct soap *soap, const char *URL, prodml22__FluidComponentBasis const*p) +inline int soap_PUT_prodml23__FluidComponentBasis(struct soap *soap, const char *URL, prodml23__FluidComponentBasis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidComponentBasis(soap, p, "prodml22:FluidComponentBasis", "prodml22:FluidComponentBasis") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidComponentBasis(soap, p, "prodml23:FluidComponentBasis", "prodml23:FluidComponentBasis") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidComponentBasis(struct soap *soap, const char *URL, prodml22__FluidComponentBasis const*p) +inline int soap_PATCH_prodml23__FluidComponentBasis(struct soap *soap, const char *URL, prodml23__FluidComponentBasis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidComponentBasis(soap, p, "prodml22:FluidComponentBasis", "prodml22:FluidComponentBasis") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidComponentBasis(soap, p, "prodml23:FluidComponentBasis", "prodml23:FluidComponentBasis") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidComponentBasis(struct soap *soap, const char *URL, prodml22__FluidComponentBasis const*p) +inline int soap_POST_send_prodml23__FluidComponentBasis(struct soap *soap, const char *URL, prodml23__FluidComponentBasis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidComponentBasis(soap, p, "prodml22:FluidComponentBasis", "prodml22:FluidComponentBasis") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidComponentBasis(soap, p, "prodml23:FluidComponentBasis", "prodml23:FluidComponentBasis") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidComponentBasis * SOAP_FMAC4 soap_get_prodml22__FluidComponentBasis(struct soap*, prodml22__FluidComponentBasis *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentBasis * SOAP_FMAC4 soap_get_prodml23__FluidComponentBasis(struct soap*, prodml23__FluidComponentBasis *, const char*, const char*); -inline int soap_read_prodml22__FluidComponentBasis(struct soap *soap, prodml22__FluidComponentBasis *p) +inline int soap_read_prodml23__FluidComponentBasis(struct soap *soap, prodml23__FluidComponentBasis *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidComponentBasis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidComponentBasis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidComponentBasis(struct soap *soap, const char *URL, prodml22__FluidComponentBasis *p) +inline int soap_GET_prodml23__FluidComponentBasis(struct soap *soap, const char *URL, prodml23__FluidComponentBasis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidComponentBasis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidComponentBasis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidComponentBasis(struct soap *soap, prodml22__FluidComponentBasis *p) +inline int soap_POST_recv_prodml23__FluidComponentBasis(struct soap *soap, prodml23__FluidComponentBasis *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidComponentBasis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidComponentBasis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod_DEFINED -inline void soap_default_prodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod *a) +inline void soap_default_prodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__CalculationMethod - *a = SOAP_DEFAULT_prodml22__CalculationMethod; +#ifdef SOAP_DEFAULT_prodml23__CalculationMethod + *a = SOAP_DEFAULT_prodml23__CalculationMethod; #else - *a = (prodml22__CalculationMethod)0; + *a = (prodml23__CalculationMethod)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CalculationMethod(struct soap*, const char*, int, const prodml22__CalculationMethod *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__CalculationMethod2s(struct soap*, prodml22__CalculationMethod); -SOAP_FMAC3 prodml22__CalculationMethod * SOAP_FMAC4 soap_in_prodml22__CalculationMethod(struct soap*, const char*, prodml22__CalculationMethod *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CalculationMethod(struct soap*, const char*, prodml22__CalculationMethod *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CalculationMethod(struct soap*, const char*, int, const prodml23__CalculationMethod *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__CalculationMethod2s(struct soap*, prodml23__CalculationMethod); +SOAP_FMAC3 prodml23__CalculationMethod * SOAP_FMAC4 soap_in_prodml23__CalculationMethod(struct soap*, const char*, prodml23__CalculationMethod *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__CalculationMethod(struct soap*, const char*, prodml23__CalculationMethod *); -SOAP_FMAC3 prodml22__CalculationMethod * SOAP_FMAC4 soap_new_prodml22__CalculationMethod(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CalculationMethod(struct soap*, const prodml22__CalculationMethod *, const char*, const char*); +SOAP_FMAC3 prodml23__CalculationMethod * SOAP_FMAC4 soap_new_prodml23__CalculationMethod(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CalculationMethod(struct soap*, const prodml23__CalculationMethod *, const char*, const char*); -inline int soap_write_prodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod const*p) +inline int soap_write_prodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__CalculationMethod(soap, p, "prodml22:CalculationMethod", "prodml22:CalculationMethod") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__CalculationMethod(soap, p, "prodml23:CalculationMethod", "prodml23:CalculationMethod") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__CalculationMethod(struct soap *soap, const char *URL, prodml22__CalculationMethod const*p) +inline int soap_PUT_prodml23__CalculationMethod(struct soap *soap, const char *URL, prodml23__CalculationMethod const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CalculationMethod(soap, p, "prodml22:CalculationMethod", "prodml22:CalculationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CalculationMethod(soap, p, "prodml23:CalculationMethod", "prodml23:CalculationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CalculationMethod(struct soap *soap, const char *URL, prodml22__CalculationMethod const*p) +inline int soap_PATCH_prodml23__CalculationMethod(struct soap *soap, const char *URL, prodml23__CalculationMethod const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CalculationMethod(soap, p, "prodml22:CalculationMethod", "prodml22:CalculationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CalculationMethod(soap, p, "prodml23:CalculationMethod", "prodml23:CalculationMethod") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CalculationMethod(struct soap *soap, const char *URL, prodml22__CalculationMethod const*p) +inline int soap_POST_send_prodml23__CalculationMethod(struct soap *soap, const char *URL, prodml23__CalculationMethod const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CalculationMethod(soap, p, "prodml22:CalculationMethod", "prodml22:CalculationMethod") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CalculationMethod(soap, p, "prodml23:CalculationMethod", "prodml23:CalculationMethod") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CalculationMethod * SOAP_FMAC4 soap_get_prodml22__CalculationMethod(struct soap*, prodml22__CalculationMethod *, const char*, const char*); +SOAP_FMAC3 prodml23__CalculationMethod * SOAP_FMAC4 soap_get_prodml23__CalculationMethod(struct soap*, prodml23__CalculationMethod *, const char*, const char*); -inline int soap_read_prodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod *p) +inline int soap_read_prodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CalculationMethod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CalculationMethod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CalculationMethod(struct soap *soap, const char *URL, prodml22__CalculationMethod *p) +inline int soap_GET_prodml23__CalculationMethod(struct soap *soap, const char *URL, prodml23__CalculationMethod *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CalculationMethod(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CalculationMethod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CalculationMethod(struct soap *soap, prodml22__CalculationMethod *p) +inline int soap_POST_recv_prodml23__CalculationMethod(struct soap *soap, prodml23__CalculationMethod *p) { - if (gsoap_eml2_3::soap_read_prodml22__CalculationMethod(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CalculationMethod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart_DEFINED -inline void soap_default_prodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart *a) +inline void soap_default_prodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__BalanceFlowPart - *a = SOAP_DEFAULT_prodml22__BalanceFlowPart; +#ifdef SOAP_DEFAULT_prodml23__BalanceFlowPart + *a = SOAP_DEFAULT_prodml23__BalanceFlowPart; #else - *a = (prodml22__BalanceFlowPart)0; + *a = (prodml23__BalanceFlowPart)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BalanceFlowPart(struct soap*, const char*, int, const prodml22__BalanceFlowPart *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BalanceFlowPart2s(struct soap*, prodml22__BalanceFlowPart); -SOAP_FMAC3 prodml22__BalanceFlowPart * SOAP_FMAC4 soap_in_prodml22__BalanceFlowPart(struct soap*, const char*, prodml22__BalanceFlowPart *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceFlowPart(struct soap*, const char*, prodml22__BalanceFlowPart *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BalanceFlowPart(struct soap*, const char*, int, const prodml23__BalanceFlowPart *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BalanceFlowPart2s(struct soap*, prodml23__BalanceFlowPart); +SOAP_FMAC3 prodml23__BalanceFlowPart * SOAP_FMAC4 soap_in_prodml23__BalanceFlowPart(struct soap*, const char*, prodml23__BalanceFlowPart *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BalanceFlowPart(struct soap*, const char*, prodml23__BalanceFlowPart *); -SOAP_FMAC3 prodml22__BalanceFlowPart * SOAP_FMAC4 soap_new_prodml22__BalanceFlowPart(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BalanceFlowPart(struct soap*, const prodml22__BalanceFlowPart *, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceFlowPart * SOAP_FMAC4 soap_new_prodml23__BalanceFlowPart(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BalanceFlowPart(struct soap*, const prodml23__BalanceFlowPart *, const char*, const char*); -inline int soap_write_prodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart const*p) +inline int soap_write_prodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__BalanceFlowPart(soap, p, "prodml22:BalanceFlowPart", "prodml22:BalanceFlowPart") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__BalanceFlowPart(soap, p, "prodml23:BalanceFlowPart", "prodml23:BalanceFlowPart") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__BalanceFlowPart(struct soap *soap, const char *URL, prodml22__BalanceFlowPart const*p) +inline int soap_PUT_prodml23__BalanceFlowPart(struct soap *soap, const char *URL, prodml23__BalanceFlowPart const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceFlowPart(soap, p, "prodml22:BalanceFlowPart", "prodml22:BalanceFlowPart") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceFlowPart(soap, p, "prodml23:BalanceFlowPart", "prodml23:BalanceFlowPart") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BalanceFlowPart(struct soap *soap, const char *URL, prodml22__BalanceFlowPart const*p) +inline int soap_PATCH_prodml23__BalanceFlowPart(struct soap *soap, const char *URL, prodml23__BalanceFlowPart const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceFlowPart(soap, p, "prodml22:BalanceFlowPart", "prodml22:BalanceFlowPart") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceFlowPart(soap, p, "prodml23:BalanceFlowPart", "prodml23:BalanceFlowPart") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BalanceFlowPart(struct soap *soap, const char *URL, prodml22__BalanceFlowPart const*p) +inline int soap_POST_send_prodml23__BalanceFlowPart(struct soap *soap, const char *URL, prodml23__BalanceFlowPart const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceFlowPart(soap, p, "prodml22:BalanceFlowPart", "prodml22:BalanceFlowPart") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceFlowPart(soap, p, "prodml23:BalanceFlowPart", "prodml23:BalanceFlowPart") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BalanceFlowPart * SOAP_FMAC4 soap_get_prodml22__BalanceFlowPart(struct soap*, prodml22__BalanceFlowPart *, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceFlowPart * SOAP_FMAC4 soap_get_prodml23__BalanceFlowPart(struct soap*, prodml23__BalanceFlowPart *, const char*, const char*); -inline int soap_read_prodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart *p) +inline int soap_read_prodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BalanceFlowPart(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BalanceFlowPart(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BalanceFlowPart(struct soap *soap, const char *URL, prodml22__BalanceFlowPart *p) +inline int soap_GET_prodml23__BalanceFlowPart(struct soap *soap, const char *URL, prodml23__BalanceFlowPart *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BalanceFlowPart(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BalanceFlowPart(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BalanceFlowPart(struct soap *soap, prodml22__BalanceFlowPart *p) +inline int soap_POST_recv_prodml23__BalanceFlowPart(struct soap *soap, prodml23__BalanceFlowPart *p) { - if (gsoap_eml2_3::soap_read_prodml22__BalanceFlowPart(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BalanceFlowPart(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind_DEFINED -inline void soap_default_prodml22__BalanceEventKind(struct soap *soap, prodml22__BalanceEventKind *a) +inline void soap_default_prodml23__BalanceEventKind(struct soap *soap, prodml23__BalanceEventKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__BalanceEventKind - *a = SOAP_DEFAULT_prodml22__BalanceEventKind; +#ifdef SOAP_DEFAULT_prodml23__BalanceEventKind + *a = SOAP_DEFAULT_prodml23__BalanceEventKind; #else - *a = (prodml22__BalanceEventKind)0; + *a = (prodml23__BalanceEventKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BalanceEventKind(struct soap*, const char*, int, const prodml22__BalanceEventKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BalanceEventKind2s(struct soap*, prodml22__BalanceEventKind); -SOAP_FMAC3 prodml22__BalanceEventKind * SOAP_FMAC4 soap_in_prodml22__BalanceEventKind(struct soap*, const char*, prodml22__BalanceEventKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceEventKind(struct soap*, const char*, prodml22__BalanceEventKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BalanceEventKind(struct soap*, const char*, int, const prodml23__BalanceEventKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BalanceEventKind2s(struct soap*, prodml23__BalanceEventKind); +SOAP_FMAC3 prodml23__BalanceEventKind * SOAP_FMAC4 soap_in_prodml23__BalanceEventKind(struct soap*, const char*, prodml23__BalanceEventKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BalanceEventKind(struct soap*, const char*, prodml23__BalanceEventKind *); -SOAP_FMAC3 prodml22__BalanceEventKind * SOAP_FMAC4 soap_new_prodml22__BalanceEventKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BalanceEventKind(struct soap*, const prodml22__BalanceEventKind *, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceEventKind * SOAP_FMAC4 soap_new_prodml23__BalanceEventKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BalanceEventKind(struct soap*, const prodml23__BalanceEventKind *, const char*, const char*); -inline int soap_write_prodml22__BalanceEventKind(struct soap *soap, prodml22__BalanceEventKind const*p) +inline int soap_write_prodml23__BalanceEventKind(struct soap *soap, prodml23__BalanceEventKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__BalanceEventKind(soap, p, "prodml22:BalanceEventKind", "prodml22:BalanceEventKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__BalanceEventKind(soap, p, "prodml23:BalanceEventKind", "prodml23:BalanceEventKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__BalanceEventKind(struct soap *soap, const char *URL, prodml22__BalanceEventKind const*p) +inline int soap_PUT_prodml23__BalanceEventKind(struct soap *soap, const char *URL, prodml23__BalanceEventKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceEventKind(soap, p, "prodml22:BalanceEventKind", "prodml22:BalanceEventKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceEventKind(soap, p, "prodml23:BalanceEventKind", "prodml23:BalanceEventKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BalanceEventKind(struct soap *soap, const char *URL, prodml22__BalanceEventKind const*p) +inline int soap_PATCH_prodml23__BalanceEventKind(struct soap *soap, const char *URL, prodml23__BalanceEventKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceEventKind(soap, p, "prodml22:BalanceEventKind", "prodml22:BalanceEventKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceEventKind(soap, p, "prodml23:BalanceEventKind", "prodml23:BalanceEventKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BalanceEventKind(struct soap *soap, const char *URL, prodml22__BalanceEventKind const*p) +inline int soap_POST_send_prodml23__BalanceEventKind(struct soap *soap, const char *URL, prodml23__BalanceEventKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceEventKind(soap, p, "prodml22:BalanceEventKind", "prodml22:BalanceEventKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceEventKind(soap, p, "prodml23:BalanceEventKind", "prodml23:BalanceEventKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BalanceEventKind * SOAP_FMAC4 soap_get_prodml22__BalanceEventKind(struct soap*, prodml22__BalanceEventKind *, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceEventKind * SOAP_FMAC4 soap_get_prodml23__BalanceEventKind(struct soap*, prodml23__BalanceEventKind *, const char*, const char*); -inline int soap_read_prodml22__BalanceEventKind(struct soap *soap, prodml22__BalanceEventKind *p) +inline int soap_read_prodml23__BalanceEventKind(struct soap *soap, prodml23__BalanceEventKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BalanceEventKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BalanceEventKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BalanceEventKind(struct soap *soap, const char *URL, prodml22__BalanceEventKind *p) +inline int soap_GET_prodml23__BalanceEventKind(struct soap *soap, const char *URL, prodml23__BalanceEventKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BalanceEventKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BalanceEventKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BalanceEventKind(struct soap *soap, prodml22__BalanceEventKind *p) +inline int soap_POST_recv_prodml23__BalanceEventKind(struct soap *soap, prodml23__BalanceEventKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__BalanceEventKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BalanceEventKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType_DEFINED -inline void soap_default_prodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType *a) +inline void soap_default_prodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__BalanceDestinationType - *a = SOAP_DEFAULT_prodml22__BalanceDestinationType; +#ifdef SOAP_DEFAULT_prodml23__BalanceDestinationType + *a = SOAP_DEFAULT_prodml23__BalanceDestinationType; #else - *a = (prodml22__BalanceDestinationType)0; + *a = (prodml23__BalanceDestinationType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BalanceDestinationType(struct soap*, const char*, int, const prodml22__BalanceDestinationType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BalanceDestinationType2s(struct soap*, prodml22__BalanceDestinationType); -SOAP_FMAC3 prodml22__BalanceDestinationType * SOAP_FMAC4 soap_in_prodml22__BalanceDestinationType(struct soap*, const char*, prodml22__BalanceDestinationType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BalanceDestinationType(struct soap*, const char*, prodml22__BalanceDestinationType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BalanceDestinationType(struct soap*, const char*, int, const prodml23__BalanceDestinationType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BalanceDestinationType2s(struct soap*, prodml23__BalanceDestinationType); +SOAP_FMAC3 prodml23__BalanceDestinationType * SOAP_FMAC4 soap_in_prodml23__BalanceDestinationType(struct soap*, const char*, prodml23__BalanceDestinationType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BalanceDestinationType(struct soap*, const char*, prodml23__BalanceDestinationType *); -SOAP_FMAC3 prodml22__BalanceDestinationType * SOAP_FMAC4 soap_new_prodml22__BalanceDestinationType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BalanceDestinationType(struct soap*, const prodml22__BalanceDestinationType *, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceDestinationType * SOAP_FMAC4 soap_new_prodml23__BalanceDestinationType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BalanceDestinationType(struct soap*, const prodml23__BalanceDestinationType *, const char*, const char*); -inline int soap_write_prodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType const*p) +inline int soap_write_prodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__BalanceDestinationType(soap, p, "prodml22:BalanceDestinationType", "prodml22:BalanceDestinationType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__BalanceDestinationType(soap, p, "prodml23:BalanceDestinationType", "prodml23:BalanceDestinationType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__BalanceDestinationType(struct soap *soap, const char *URL, prodml22__BalanceDestinationType const*p) +inline int soap_PUT_prodml23__BalanceDestinationType(struct soap *soap, const char *URL, prodml23__BalanceDestinationType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceDestinationType(soap, p, "prodml22:BalanceDestinationType", "prodml22:BalanceDestinationType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceDestinationType(soap, p, "prodml23:BalanceDestinationType", "prodml23:BalanceDestinationType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BalanceDestinationType(struct soap *soap, const char *URL, prodml22__BalanceDestinationType const*p) +inline int soap_PATCH_prodml23__BalanceDestinationType(struct soap *soap, const char *URL, prodml23__BalanceDestinationType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceDestinationType(soap, p, "prodml22:BalanceDestinationType", "prodml22:BalanceDestinationType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceDestinationType(soap, p, "prodml23:BalanceDestinationType", "prodml23:BalanceDestinationType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BalanceDestinationType(struct soap *soap, const char *URL, prodml22__BalanceDestinationType const*p) +inline int soap_POST_send_prodml23__BalanceDestinationType(struct soap *soap, const char *URL, prodml23__BalanceDestinationType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BalanceDestinationType(soap, p, "prodml22:BalanceDestinationType", "prodml22:BalanceDestinationType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BalanceDestinationType(soap, p, "prodml23:BalanceDestinationType", "prodml23:BalanceDestinationType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BalanceDestinationType * SOAP_FMAC4 soap_get_prodml22__BalanceDestinationType(struct soap*, prodml22__BalanceDestinationType *, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceDestinationType * SOAP_FMAC4 soap_get_prodml23__BalanceDestinationType(struct soap*, prodml23__BalanceDestinationType *, const char*, const char*); -inline int soap_read_prodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType *p) +inline int soap_read_prodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BalanceDestinationType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BalanceDestinationType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BalanceDestinationType(struct soap *soap, const char *URL, prodml22__BalanceDestinationType *p) +inline int soap_GET_prodml23__BalanceDestinationType(struct soap *soap, const char *URL, prodml23__BalanceDestinationType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BalanceDestinationType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BalanceDestinationType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BalanceDestinationType(struct soap *soap, prodml22__BalanceDestinationType *p) +inline int soap_POST_recv_prodml23__BalanceDestinationType(struct soap *soap, prodml23__BalanceDestinationType *p) { - if (gsoap_eml2_3::soap_read_prodml22__BalanceDestinationType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BalanceDestinationType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction_DEFINED -inline void soap_default_prodml22__SampleAction(struct soap *soap, prodml22__SampleAction *a) +inline void soap_default_prodml23__SampleAction(struct soap *soap, prodml23__SampleAction *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__SampleAction - *a = SOAP_DEFAULT_prodml22__SampleAction; +#ifdef SOAP_DEFAULT_prodml23__SampleAction + *a = SOAP_DEFAULT_prodml23__SampleAction; #else - *a = (prodml22__SampleAction)0; + *a = (prodml23__SampleAction)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleAction(struct soap*, const char*, int, const prodml22__SampleAction *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SampleAction2s(struct soap*, prodml22__SampleAction); -SOAP_FMAC3 prodml22__SampleAction * SOAP_FMAC4 soap_in_prodml22__SampleAction(struct soap*, const char*, prodml22__SampleAction *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SampleAction(struct soap*, const char*, prodml22__SampleAction *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleAction(struct soap*, const char*, int, const prodml23__SampleAction *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SampleAction2s(struct soap*, prodml23__SampleAction); +SOAP_FMAC3 prodml23__SampleAction * SOAP_FMAC4 soap_in_prodml23__SampleAction(struct soap*, const char*, prodml23__SampleAction *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SampleAction(struct soap*, const char*, prodml23__SampleAction *); -SOAP_FMAC3 prodml22__SampleAction * SOAP_FMAC4 soap_new_prodml22__SampleAction(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SampleAction(struct soap*, const prodml22__SampleAction *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleAction * SOAP_FMAC4 soap_new_prodml23__SampleAction(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SampleAction(struct soap*, const prodml23__SampleAction *, const char*, const char*); -inline int soap_write_prodml22__SampleAction(struct soap *soap, prodml22__SampleAction const*p) +inline int soap_write_prodml23__SampleAction(struct soap *soap, prodml23__SampleAction const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SampleAction(soap, p, "prodml22:SampleAction", "prodml22:SampleAction") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SampleAction(soap, p, "prodml23:SampleAction", "prodml23:SampleAction") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SampleAction(struct soap *soap, const char *URL, prodml22__SampleAction const*p) +inline int soap_PUT_prodml23__SampleAction(struct soap *soap, const char *URL, prodml23__SampleAction const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SampleAction(soap, p, "prodml22:SampleAction", "prodml22:SampleAction") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SampleAction(soap, p, "prodml23:SampleAction", "prodml23:SampleAction") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SampleAction(struct soap *soap, const char *URL, prodml22__SampleAction const*p) +inline int soap_PATCH_prodml23__SampleAction(struct soap *soap, const char *URL, prodml23__SampleAction const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SampleAction(soap, p, "prodml22:SampleAction", "prodml22:SampleAction") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SampleAction(soap, p, "prodml23:SampleAction", "prodml23:SampleAction") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SampleAction(struct soap *soap, const char *URL, prodml22__SampleAction const*p) +inline int soap_POST_send_prodml23__SampleAction(struct soap *soap, const char *URL, prodml23__SampleAction const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SampleAction(soap, p, "prodml22:SampleAction", "prodml22:SampleAction") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SampleAction(soap, p, "prodml23:SampleAction", "prodml23:SampleAction") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleAction * SOAP_FMAC4 soap_get_prodml22__SampleAction(struct soap*, prodml22__SampleAction *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleAction * SOAP_FMAC4 soap_get_prodml23__SampleAction(struct soap*, prodml23__SampleAction *, const char*, const char*); -inline int soap_read_prodml22__SampleAction(struct soap *soap, prodml22__SampleAction *p) +inline int soap_read_prodml23__SampleAction(struct soap *soap, prodml23__SampleAction *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SampleAction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SampleAction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SampleAction(struct soap *soap, const char *URL, prodml22__SampleAction *p) +inline int soap_GET_prodml23__SampleAction(struct soap *soap, const char *URL, prodml23__SampleAction *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SampleAction(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SampleAction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SampleAction(struct soap *soap, prodml22__SampleAction *p) +inline int soap_POST_recv_prodml23__SampleAction(struct soap *soap, prodml23__SampleAction *p) { - if (gsoap_eml2_3::soap_read_prodml22__SampleAction(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SampleAction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind_DEFINED -inline void soap_default_prodml22__FluidSampleKind(struct soap *soap, prodml22__FluidSampleKind *a) +inline void soap_default_prodml23__FluidSampleKind(struct soap *soap, prodml23__FluidSampleKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FluidSampleKind - *a = SOAP_DEFAULT_prodml22__FluidSampleKind; +#ifdef SOAP_DEFAULT_prodml23__FluidSampleKind + *a = SOAP_DEFAULT_prodml23__FluidSampleKind; #else - *a = (prodml22__FluidSampleKind)0; + *a = (prodml23__FluidSampleKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleKind(struct soap*, const char*, int, const prodml22__FluidSampleKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidSampleKind2s(struct soap*, prodml22__FluidSampleKind); -SOAP_FMAC3 prodml22__FluidSampleKind * SOAP_FMAC4 soap_in_prodml22__FluidSampleKind(struct soap*, const char*, prodml22__FluidSampleKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidSampleKind(struct soap*, const char*, prodml22__FluidSampleKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleKind(struct soap*, const char*, int, const prodml23__FluidSampleKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidSampleKind2s(struct soap*, prodml23__FluidSampleKind); +SOAP_FMAC3 prodml23__FluidSampleKind * SOAP_FMAC4 soap_in_prodml23__FluidSampleKind(struct soap*, const char*, prodml23__FluidSampleKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidSampleKind(struct soap*, const char*, prodml23__FluidSampleKind *); -SOAP_FMAC3 prodml22__FluidSampleKind * SOAP_FMAC4 soap_new_prodml22__FluidSampleKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidSampleKind(struct soap*, const prodml22__FluidSampleKind *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleKind * SOAP_FMAC4 soap_new_prodml23__FluidSampleKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidSampleKind(struct soap*, const prodml23__FluidSampleKind *, const char*, const char*); -inline int soap_write_prodml22__FluidSampleKind(struct soap *soap, prodml22__FluidSampleKind const*p) +inline int soap_write_prodml23__FluidSampleKind(struct soap *soap, prodml23__FluidSampleKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidSampleKind(soap, p, "prodml22:FluidSampleKind", "prodml22:FluidSampleKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidSampleKind(soap, p, "prodml23:FluidSampleKind", "prodml23:FluidSampleKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleKind(struct soap *soap, const char *URL, prodml22__FluidSampleKind const*p) +inline int soap_PUT_prodml23__FluidSampleKind(struct soap *soap, const char *URL, prodml23__FluidSampleKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidSampleKind(soap, p, "prodml22:FluidSampleKind", "prodml22:FluidSampleKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidSampleKind(soap, p, "prodml23:FluidSampleKind", "prodml23:FluidSampleKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleKind(struct soap *soap, const char *URL, prodml22__FluidSampleKind const*p) +inline int soap_PATCH_prodml23__FluidSampleKind(struct soap *soap, const char *URL, prodml23__FluidSampleKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidSampleKind(soap, p, "prodml22:FluidSampleKind", "prodml22:FluidSampleKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidSampleKind(soap, p, "prodml23:FluidSampleKind", "prodml23:FluidSampleKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleKind(struct soap *soap, const char *URL, prodml22__FluidSampleKind const*p) +inline int soap_POST_send_prodml23__FluidSampleKind(struct soap *soap, const char *URL, prodml23__FluidSampleKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidSampleKind(soap, p, "prodml22:FluidSampleKind", "prodml22:FluidSampleKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidSampleKind(soap, p, "prodml23:FluidSampleKind", "prodml23:FluidSampleKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleKind * SOAP_FMAC4 soap_get_prodml22__FluidSampleKind(struct soap*, prodml22__FluidSampleKind *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleKind * SOAP_FMAC4 soap_get_prodml23__FluidSampleKind(struct soap*, prodml23__FluidSampleKind *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleKind(struct soap *soap, prodml22__FluidSampleKind *p) +inline int soap_read_prodml23__FluidSampleKind(struct soap *soap, prodml23__FluidSampleKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleKind(struct soap *soap, const char *URL, prodml22__FluidSampleKind *p) +inline int soap_GET_prodml23__FluidSampleKind(struct soap *soap, const char *URL, prodml23__FluidSampleKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleKind(struct soap *soap, prodml22__FluidSampleKind *p) +inline int soap_POST_recv_prodml23__FluidSampleKind(struct soap *soap, prodml23__FluidSampleKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType_DEFINED -inline void soap_default_prodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType *a) +inline void soap_default_prodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__WellboreStorageMechanismType - *a = SOAP_DEFAULT_prodml22__WellboreStorageMechanismType; +#ifdef SOAP_DEFAULT_prodml23__WellboreStorageMechanismType + *a = SOAP_DEFAULT_prodml23__WellboreStorageMechanismType; #else - *a = (prodml22__WellboreStorageMechanismType)0; + *a = (prodml23__WellboreStorageMechanismType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreStorageMechanismType(struct soap*, const char*, int, const prodml22__WellboreStorageMechanismType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellboreStorageMechanismType2s(struct soap*, prodml22__WellboreStorageMechanismType); -SOAP_FMAC3 prodml22__WellboreStorageMechanismType * SOAP_FMAC4 soap_in_prodml22__WellboreStorageMechanismType(struct soap*, const char*, prodml22__WellboreStorageMechanismType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellboreStorageMechanismType(struct soap*, const char*, prodml22__WellboreStorageMechanismType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreStorageMechanismType(struct soap*, const char*, int, const prodml23__WellboreStorageMechanismType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellboreStorageMechanismType2s(struct soap*, prodml23__WellboreStorageMechanismType); +SOAP_FMAC3 prodml23__WellboreStorageMechanismType * SOAP_FMAC4 soap_in_prodml23__WellboreStorageMechanismType(struct soap*, const char*, prodml23__WellboreStorageMechanismType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellboreStorageMechanismType(struct soap*, const char*, prodml23__WellboreStorageMechanismType *); -SOAP_FMAC3 prodml22__WellboreStorageMechanismType * SOAP_FMAC4 soap_new_prodml22__WellboreStorageMechanismType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellboreStorageMechanismType(struct soap*, const prodml22__WellboreStorageMechanismType *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreStorageMechanismType * SOAP_FMAC4 soap_new_prodml23__WellboreStorageMechanismType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellboreStorageMechanismType(struct soap*, const prodml23__WellboreStorageMechanismType *, const char*, const char*); -inline int soap_write_prodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType const*p) +inline int soap_write_prodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__WellboreStorageMechanismType(soap, p, "prodml22:WellboreStorageMechanismType", "prodml22:WellboreStorageMechanismType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__WellboreStorageMechanismType(soap, p, "prodml23:WellboreStorageMechanismType", "prodml23:WellboreStorageMechanismType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml22__WellboreStorageMechanismType const*p) +inline int soap_PUT_prodml23__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml23__WellboreStorageMechanismType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellboreStorageMechanismType(soap, p, "prodml22:WellboreStorageMechanismType", "prodml22:WellboreStorageMechanismType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellboreStorageMechanismType(soap, p, "prodml23:WellboreStorageMechanismType", "prodml23:WellboreStorageMechanismType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml22__WellboreStorageMechanismType const*p) +inline int soap_PATCH_prodml23__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml23__WellboreStorageMechanismType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellboreStorageMechanismType(soap, p, "prodml22:WellboreStorageMechanismType", "prodml22:WellboreStorageMechanismType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellboreStorageMechanismType(soap, p, "prodml23:WellboreStorageMechanismType", "prodml23:WellboreStorageMechanismType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml22__WellboreStorageMechanismType const*p) +inline int soap_POST_send_prodml23__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml23__WellboreStorageMechanismType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellboreStorageMechanismType(soap, p, "prodml22:WellboreStorageMechanismType", "prodml22:WellboreStorageMechanismType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellboreStorageMechanismType(soap, p, "prodml23:WellboreStorageMechanismType", "prodml23:WellboreStorageMechanismType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreStorageMechanismType * SOAP_FMAC4 soap_get_prodml22__WellboreStorageMechanismType(struct soap*, prodml22__WellboreStorageMechanismType *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreStorageMechanismType * SOAP_FMAC4 soap_get_prodml23__WellboreStorageMechanismType(struct soap*, prodml23__WellboreStorageMechanismType *, const char*, const char*); -inline int soap_read_prodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType *p) +inline int soap_read_prodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreStorageMechanismType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreStorageMechanismType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml22__WellboreStorageMechanismType *p) +inline int soap_GET_prodml23__WellboreStorageMechanismType(struct soap *soap, const char *URL, prodml23__WellboreStorageMechanismType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreStorageMechanismType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreStorageMechanismType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreStorageMechanismType(struct soap *soap, prodml22__WellboreStorageMechanismType *p) +inline int soap_POST_recv_prodml23__WellboreStorageMechanismType(struct soap *soap, prodml23__WellboreStorageMechanismType *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreStorageMechanismType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreStorageMechanismType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType_DEFINED -inline void soap_default_prodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType *a) +inline void soap_default_prodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__UpperBoundaryType - *a = SOAP_DEFAULT_prodml22__UpperBoundaryType; +#ifdef SOAP_DEFAULT_prodml23__UpperBoundaryType + *a = SOAP_DEFAULT_prodml23__UpperBoundaryType; #else - *a = (prodml22__UpperBoundaryType)0; + *a = (prodml23__UpperBoundaryType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__UpperBoundaryType(struct soap*, const char*, int, const prodml22__UpperBoundaryType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__UpperBoundaryType2s(struct soap*, prodml22__UpperBoundaryType); -SOAP_FMAC3 prodml22__UpperBoundaryType * SOAP_FMAC4 soap_in_prodml22__UpperBoundaryType(struct soap*, const char*, prodml22__UpperBoundaryType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__UpperBoundaryType(struct soap*, const char*, prodml22__UpperBoundaryType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__UpperBoundaryType(struct soap*, const char*, int, const prodml23__UpperBoundaryType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__UpperBoundaryType2s(struct soap*, prodml23__UpperBoundaryType); +SOAP_FMAC3 prodml23__UpperBoundaryType * SOAP_FMAC4 soap_in_prodml23__UpperBoundaryType(struct soap*, const char*, prodml23__UpperBoundaryType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__UpperBoundaryType(struct soap*, const char*, prodml23__UpperBoundaryType *); -SOAP_FMAC3 prodml22__UpperBoundaryType * SOAP_FMAC4 soap_new_prodml22__UpperBoundaryType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__UpperBoundaryType(struct soap*, const prodml22__UpperBoundaryType *, const char*, const char*); +SOAP_FMAC3 prodml23__UpperBoundaryType * SOAP_FMAC4 soap_new_prodml23__UpperBoundaryType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__UpperBoundaryType(struct soap*, const prodml23__UpperBoundaryType *, const char*, const char*); -inline int soap_write_prodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType const*p) +inline int soap_write_prodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__UpperBoundaryType(soap, p, "prodml22:UpperBoundaryType", "prodml22:UpperBoundaryType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__UpperBoundaryType(soap, p, "prodml23:UpperBoundaryType", "prodml23:UpperBoundaryType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__UpperBoundaryType(struct soap *soap, const char *URL, prodml22__UpperBoundaryType const*p) +inline int soap_PUT_prodml23__UpperBoundaryType(struct soap *soap, const char *URL, prodml23__UpperBoundaryType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__UpperBoundaryType(soap, p, "prodml22:UpperBoundaryType", "prodml22:UpperBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__UpperBoundaryType(soap, p, "prodml23:UpperBoundaryType", "prodml23:UpperBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__UpperBoundaryType(struct soap *soap, const char *URL, prodml22__UpperBoundaryType const*p) +inline int soap_PATCH_prodml23__UpperBoundaryType(struct soap *soap, const char *URL, prodml23__UpperBoundaryType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__UpperBoundaryType(soap, p, "prodml22:UpperBoundaryType", "prodml22:UpperBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__UpperBoundaryType(soap, p, "prodml23:UpperBoundaryType", "prodml23:UpperBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__UpperBoundaryType(struct soap *soap, const char *URL, prodml22__UpperBoundaryType const*p) +inline int soap_POST_send_prodml23__UpperBoundaryType(struct soap *soap, const char *URL, prodml23__UpperBoundaryType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__UpperBoundaryType(soap, p, "prodml22:UpperBoundaryType", "prodml22:UpperBoundaryType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__UpperBoundaryType(soap, p, "prodml23:UpperBoundaryType", "prodml23:UpperBoundaryType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__UpperBoundaryType * SOAP_FMAC4 soap_get_prodml22__UpperBoundaryType(struct soap*, prodml22__UpperBoundaryType *, const char*, const char*); +SOAP_FMAC3 prodml23__UpperBoundaryType * SOAP_FMAC4 soap_get_prodml23__UpperBoundaryType(struct soap*, prodml23__UpperBoundaryType *, const char*, const char*); -inline int soap_read_prodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType *p) +inline int soap_read_prodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__UpperBoundaryType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__UpperBoundaryType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__UpperBoundaryType(struct soap *soap, const char *URL, prodml22__UpperBoundaryType *p) +inline int soap_GET_prodml23__UpperBoundaryType(struct soap *soap, const char *URL, prodml23__UpperBoundaryType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__UpperBoundaryType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__UpperBoundaryType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__UpperBoundaryType(struct soap *soap, prodml22__UpperBoundaryType *p) +inline int soap_POST_recv_prodml23__UpperBoundaryType(struct soap *soap, prodml23__UpperBoundaryType *p) { - if (gsoap_eml2_3::soap_read_prodml22__UpperBoundaryType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__UpperBoundaryType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection_DEFINED -inline void soap_default_prodml22__ParameterDirection(struct soap *soap, prodml22__ParameterDirection *a) +inline void soap_default_prodml23__ParameterDirection(struct soap *soap, prodml23__ParameterDirection *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ParameterDirection - *a = SOAP_DEFAULT_prodml22__ParameterDirection; +#ifdef SOAP_DEFAULT_prodml23__ParameterDirection + *a = SOAP_DEFAULT_prodml23__ParameterDirection; #else - *a = (prodml22__ParameterDirection)0; + *a = (prodml23__ParameterDirection)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ParameterDirection(struct soap*, const char*, int, const prodml22__ParameterDirection *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ParameterDirection2s(struct soap*, prodml22__ParameterDirection); -SOAP_FMAC3 prodml22__ParameterDirection * SOAP_FMAC4 soap_in_prodml22__ParameterDirection(struct soap*, const char*, prodml22__ParameterDirection *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ParameterDirection(struct soap*, const char*, prodml22__ParameterDirection *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ParameterDirection(struct soap*, const char*, int, const prodml23__ParameterDirection *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ParameterDirection2s(struct soap*, prodml23__ParameterDirection); +SOAP_FMAC3 prodml23__ParameterDirection * SOAP_FMAC4 soap_in_prodml23__ParameterDirection(struct soap*, const char*, prodml23__ParameterDirection *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ParameterDirection(struct soap*, const char*, prodml23__ParameterDirection *); -SOAP_FMAC3 prodml22__ParameterDirection * SOAP_FMAC4 soap_new_prodml22__ParameterDirection(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ParameterDirection(struct soap*, const prodml22__ParameterDirection *, const char*, const char*); +SOAP_FMAC3 prodml23__ParameterDirection * SOAP_FMAC4 soap_new_prodml23__ParameterDirection(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ParameterDirection(struct soap*, const prodml23__ParameterDirection *, const char*, const char*); -inline int soap_write_prodml22__ParameterDirection(struct soap *soap, prodml22__ParameterDirection const*p) +inline int soap_write_prodml23__ParameterDirection(struct soap *soap, prodml23__ParameterDirection const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ParameterDirection(soap, p, "prodml22:ParameterDirection", "prodml22:ParameterDirection") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ParameterDirection(soap, p, "prodml23:ParameterDirection", "prodml23:ParameterDirection") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ParameterDirection(struct soap *soap, const char *URL, prodml22__ParameterDirection const*p) +inline int soap_PUT_prodml23__ParameterDirection(struct soap *soap, const char *URL, prodml23__ParameterDirection const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ParameterDirection(soap, p, "prodml22:ParameterDirection", "prodml22:ParameterDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ParameterDirection(soap, p, "prodml23:ParameterDirection", "prodml23:ParameterDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ParameterDirection(struct soap *soap, const char *URL, prodml22__ParameterDirection const*p) +inline int soap_PATCH_prodml23__ParameterDirection(struct soap *soap, const char *URL, prodml23__ParameterDirection const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ParameterDirection(soap, p, "prodml22:ParameterDirection", "prodml22:ParameterDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ParameterDirection(soap, p, "prodml23:ParameterDirection", "prodml23:ParameterDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ParameterDirection(struct soap *soap, const char *URL, prodml22__ParameterDirection const*p) +inline int soap_POST_send_prodml23__ParameterDirection(struct soap *soap, const char *URL, prodml23__ParameterDirection const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ParameterDirection(soap, p, "prodml22:ParameterDirection", "prodml22:ParameterDirection") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ParameterDirection(soap, p, "prodml23:ParameterDirection", "prodml23:ParameterDirection") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ParameterDirection * SOAP_FMAC4 soap_get_prodml22__ParameterDirection(struct soap*, prodml22__ParameterDirection *, const char*, const char*); +SOAP_FMAC3 prodml23__ParameterDirection * SOAP_FMAC4 soap_get_prodml23__ParameterDirection(struct soap*, prodml23__ParameterDirection *, const char*, const char*); -inline int soap_read_prodml22__ParameterDirection(struct soap *soap, prodml22__ParameterDirection *p) +inline int soap_read_prodml23__ParameterDirection(struct soap *soap, prodml23__ParameterDirection *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ParameterDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ParameterDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ParameterDirection(struct soap *soap, const char *URL, prodml22__ParameterDirection *p) +inline int soap_GET_prodml23__ParameterDirection(struct soap *soap, const char *URL, prodml23__ParameterDirection *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ParameterDirection(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ParameterDirection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ParameterDirection(struct soap *soap, prodml22__ParameterDirection *p) +inline int soap_POST_recv_prodml23__ParameterDirection(struct soap *soap, prodml23__ParameterDirection *p) { - if (gsoap_eml2_3::soap_read_prodml22__ParameterDirection(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ParameterDirection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType_DEFINED -inline void soap_default_prodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType *a) +inline void soap_default_prodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__LowerBoundaryType - *a = SOAP_DEFAULT_prodml22__LowerBoundaryType; +#ifdef SOAP_DEFAULT_prodml23__LowerBoundaryType + *a = SOAP_DEFAULT_prodml23__LowerBoundaryType; #else - *a = (prodml22__LowerBoundaryType)0; + *a = (prodml23__LowerBoundaryType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LowerBoundaryType(struct soap*, const char*, int, const prodml22__LowerBoundaryType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__LowerBoundaryType2s(struct soap*, prodml22__LowerBoundaryType); -SOAP_FMAC3 prodml22__LowerBoundaryType * SOAP_FMAC4 soap_in_prodml22__LowerBoundaryType(struct soap*, const char*, prodml22__LowerBoundaryType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LowerBoundaryType(struct soap*, const char*, prodml22__LowerBoundaryType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LowerBoundaryType(struct soap*, const char*, int, const prodml23__LowerBoundaryType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__LowerBoundaryType2s(struct soap*, prodml23__LowerBoundaryType); +SOAP_FMAC3 prodml23__LowerBoundaryType * SOAP_FMAC4 soap_in_prodml23__LowerBoundaryType(struct soap*, const char*, prodml23__LowerBoundaryType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__LowerBoundaryType(struct soap*, const char*, prodml23__LowerBoundaryType *); -SOAP_FMAC3 prodml22__LowerBoundaryType * SOAP_FMAC4 soap_new_prodml22__LowerBoundaryType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__LowerBoundaryType(struct soap*, const prodml22__LowerBoundaryType *, const char*, const char*); +SOAP_FMAC3 prodml23__LowerBoundaryType * SOAP_FMAC4 soap_new_prodml23__LowerBoundaryType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__LowerBoundaryType(struct soap*, const prodml23__LowerBoundaryType *, const char*, const char*); -inline int soap_write_prodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType const*p) +inline int soap_write_prodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__LowerBoundaryType(soap, p, "prodml22:LowerBoundaryType", "prodml22:LowerBoundaryType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__LowerBoundaryType(soap, p, "prodml23:LowerBoundaryType", "prodml23:LowerBoundaryType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__LowerBoundaryType(struct soap *soap, const char *URL, prodml22__LowerBoundaryType const*p) +inline int soap_PUT_prodml23__LowerBoundaryType(struct soap *soap, const char *URL, prodml23__LowerBoundaryType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LowerBoundaryType(soap, p, "prodml22:LowerBoundaryType", "prodml22:LowerBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LowerBoundaryType(soap, p, "prodml23:LowerBoundaryType", "prodml23:LowerBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LowerBoundaryType(struct soap *soap, const char *URL, prodml22__LowerBoundaryType const*p) +inline int soap_PATCH_prodml23__LowerBoundaryType(struct soap *soap, const char *URL, prodml23__LowerBoundaryType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LowerBoundaryType(soap, p, "prodml22:LowerBoundaryType", "prodml22:LowerBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LowerBoundaryType(soap, p, "prodml23:LowerBoundaryType", "prodml23:LowerBoundaryType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LowerBoundaryType(struct soap *soap, const char *URL, prodml22__LowerBoundaryType const*p) +inline int soap_POST_send_prodml23__LowerBoundaryType(struct soap *soap, const char *URL, prodml23__LowerBoundaryType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LowerBoundaryType(soap, p, "prodml22:LowerBoundaryType", "prodml22:LowerBoundaryType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LowerBoundaryType(soap, p, "prodml23:LowerBoundaryType", "prodml23:LowerBoundaryType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LowerBoundaryType * SOAP_FMAC4 soap_get_prodml22__LowerBoundaryType(struct soap*, prodml22__LowerBoundaryType *, const char*, const char*); +SOAP_FMAC3 prodml23__LowerBoundaryType * SOAP_FMAC4 soap_get_prodml23__LowerBoundaryType(struct soap*, prodml23__LowerBoundaryType *, const char*, const char*); -inline int soap_read_prodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType *p) +inline int soap_read_prodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LowerBoundaryType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LowerBoundaryType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LowerBoundaryType(struct soap *soap, const char *URL, prodml22__LowerBoundaryType *p) +inline int soap_GET_prodml23__LowerBoundaryType(struct soap *soap, const char *URL, prodml23__LowerBoundaryType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LowerBoundaryType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LowerBoundaryType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LowerBoundaryType(struct soap *soap, prodml22__LowerBoundaryType *p) +inline int soap_POST_recv_prodml23__LowerBoundaryType(struct soap *soap, prodml23__LowerBoundaryType *p) { - if (gsoap_eml2_3::soap_read_prodml22__LowerBoundaryType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LowerBoundaryType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType_DEFINED -inline void soap_default_prodml22__FractureModelType(struct soap *soap, prodml22__FractureModelType *a) +inline void soap_default_prodml23__FractureModelType(struct soap *soap, prodml23__FractureModelType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FractureModelType - *a = SOAP_DEFAULT_prodml22__FractureModelType; +#ifdef SOAP_DEFAULT_prodml23__FractureModelType + *a = SOAP_DEFAULT_prodml23__FractureModelType; #else - *a = (prodml22__FractureModelType)0; + *a = (prodml23__FractureModelType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureModelType(struct soap*, const char*, int, const prodml22__FractureModelType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FractureModelType2s(struct soap*, prodml22__FractureModelType); -SOAP_FMAC3 prodml22__FractureModelType * SOAP_FMAC4 soap_in_prodml22__FractureModelType(struct soap*, const char*, prodml22__FractureModelType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FractureModelType(struct soap*, const char*, prodml22__FractureModelType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureModelType(struct soap*, const char*, int, const prodml23__FractureModelType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FractureModelType2s(struct soap*, prodml23__FractureModelType); +SOAP_FMAC3 prodml23__FractureModelType * SOAP_FMAC4 soap_in_prodml23__FractureModelType(struct soap*, const char*, prodml23__FractureModelType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FractureModelType(struct soap*, const char*, prodml23__FractureModelType *); -SOAP_FMAC3 prodml22__FractureModelType * SOAP_FMAC4 soap_new_prodml22__FractureModelType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FractureModelType(struct soap*, const prodml22__FractureModelType *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureModelType * SOAP_FMAC4 soap_new_prodml23__FractureModelType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FractureModelType(struct soap*, const prodml23__FractureModelType *, const char*, const char*); -inline int soap_write_prodml22__FractureModelType(struct soap *soap, prodml22__FractureModelType const*p) +inline int soap_write_prodml23__FractureModelType(struct soap *soap, prodml23__FractureModelType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FractureModelType(soap, p, "prodml22:FractureModelType", "prodml22:FractureModelType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FractureModelType(soap, p, "prodml23:FractureModelType", "prodml23:FractureModelType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FractureModelType(struct soap *soap, const char *URL, prodml22__FractureModelType const*p) +inline int soap_PUT_prodml23__FractureModelType(struct soap *soap, const char *URL, prodml23__FractureModelType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FractureModelType(soap, p, "prodml22:FractureModelType", "prodml22:FractureModelType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FractureModelType(soap, p, "prodml23:FractureModelType", "prodml23:FractureModelType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureModelType(struct soap *soap, const char *URL, prodml22__FractureModelType const*p) +inline int soap_PATCH_prodml23__FractureModelType(struct soap *soap, const char *URL, prodml23__FractureModelType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FractureModelType(soap, p, "prodml22:FractureModelType", "prodml22:FractureModelType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FractureModelType(soap, p, "prodml23:FractureModelType", "prodml23:FractureModelType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureModelType(struct soap *soap, const char *URL, prodml22__FractureModelType const*p) +inline int soap_POST_send_prodml23__FractureModelType(struct soap *soap, const char *URL, prodml23__FractureModelType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FractureModelType(soap, p, "prodml22:FractureModelType", "prodml22:FractureModelType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FractureModelType(soap, p, "prodml23:FractureModelType", "prodml23:FractureModelType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureModelType * SOAP_FMAC4 soap_get_prodml22__FractureModelType(struct soap*, prodml22__FractureModelType *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureModelType * SOAP_FMAC4 soap_get_prodml23__FractureModelType(struct soap*, prodml23__FractureModelType *, const char*, const char*); -inline int soap_read_prodml22__FractureModelType(struct soap *soap, prodml22__FractureModelType *p) +inline int soap_read_prodml23__FractureModelType(struct soap *soap, prodml23__FractureModelType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureModelType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureModelType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureModelType(struct soap *soap, const char *URL, prodml22__FractureModelType *p) +inline int soap_GET_prodml23__FractureModelType(struct soap *soap, const char *URL, prodml23__FractureModelType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureModelType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureModelType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureModelType(struct soap *soap, prodml22__FractureModelType *p) +inline int soap_POST_recv_prodml23__FractureModelType(struct soap *soap, prodml23__FractureModelType *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureModelType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureModelType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type_DEFINED -inline void soap_default_prodml22__Boundary4Type(struct soap *soap, prodml22__Boundary4Type *a) +inline void soap_default_prodml23__Boundary4Type(struct soap *soap, prodml23__Boundary4Type *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__Boundary4Type - *a = SOAP_DEFAULT_prodml22__Boundary4Type; +#ifdef SOAP_DEFAULT_prodml23__Boundary4Type + *a = SOAP_DEFAULT_prodml23__Boundary4Type; #else - *a = (prodml22__Boundary4Type)0; + *a = (prodml23__Boundary4Type)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary4Type(struct soap*, const char*, int, const prodml22__Boundary4Type *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary4Type2s(struct soap*, prodml22__Boundary4Type); -SOAP_FMAC3 prodml22__Boundary4Type * SOAP_FMAC4 soap_in_prodml22__Boundary4Type(struct soap*, const char*, prodml22__Boundary4Type *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary4Type(struct soap*, const char*, prodml22__Boundary4Type *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary4Type(struct soap*, const char*, int, const prodml23__Boundary4Type *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary4Type2s(struct soap*, prodml23__Boundary4Type); +SOAP_FMAC3 prodml23__Boundary4Type * SOAP_FMAC4 soap_in_prodml23__Boundary4Type(struct soap*, const char*, prodml23__Boundary4Type *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary4Type(struct soap*, const char*, prodml23__Boundary4Type *); -SOAP_FMAC3 prodml22__Boundary4Type * SOAP_FMAC4 soap_new_prodml22__Boundary4Type(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary4Type(struct soap*, const prodml22__Boundary4Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary4Type * SOAP_FMAC4 soap_new_prodml23__Boundary4Type(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary4Type(struct soap*, const prodml23__Boundary4Type *, const char*, const char*); -inline int soap_write_prodml22__Boundary4Type(struct soap *soap, prodml22__Boundary4Type const*p) +inline int soap_write_prodml23__Boundary4Type(struct soap *soap, prodml23__Boundary4Type const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__Boundary4Type(soap, p, "prodml22:Boundary4Type", "prodml22:Boundary4Type") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__Boundary4Type(soap, p, "prodml23:Boundary4Type", "prodml23:Boundary4Type") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__Boundary4Type(struct soap *soap, const char *URL, prodml22__Boundary4Type const*p) +inline int soap_PUT_prodml23__Boundary4Type(struct soap *soap, const char *URL, prodml23__Boundary4Type const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary4Type(soap, p, "prodml22:Boundary4Type", "prodml22:Boundary4Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary4Type(soap, p, "prodml23:Boundary4Type", "prodml23:Boundary4Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Boundary4Type(struct soap *soap, const char *URL, prodml22__Boundary4Type const*p) +inline int soap_PATCH_prodml23__Boundary4Type(struct soap *soap, const char *URL, prodml23__Boundary4Type const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary4Type(soap, p, "prodml22:Boundary4Type", "prodml22:Boundary4Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary4Type(soap, p, "prodml23:Boundary4Type", "prodml23:Boundary4Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Boundary4Type(struct soap *soap, const char *URL, prodml22__Boundary4Type const*p) +inline int soap_POST_send_prodml23__Boundary4Type(struct soap *soap, const char *URL, prodml23__Boundary4Type const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary4Type(soap, p, "prodml22:Boundary4Type", "prodml22:Boundary4Type") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary4Type(soap, p, "prodml23:Boundary4Type", "prodml23:Boundary4Type") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary4Type * SOAP_FMAC4 soap_get_prodml22__Boundary4Type(struct soap*, prodml22__Boundary4Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary4Type * SOAP_FMAC4 soap_get_prodml23__Boundary4Type(struct soap*, prodml23__Boundary4Type *, const char*, const char*); -inline int soap_read_prodml22__Boundary4Type(struct soap *soap, prodml22__Boundary4Type *p) +inline int soap_read_prodml23__Boundary4Type(struct soap *soap, prodml23__Boundary4Type *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Boundary4Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Boundary4Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Boundary4Type(struct soap *soap, const char *URL, prodml22__Boundary4Type *p) +inline int soap_GET_prodml23__Boundary4Type(struct soap *soap, const char *URL, prodml23__Boundary4Type *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Boundary4Type(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Boundary4Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Boundary4Type(struct soap *soap, prodml22__Boundary4Type *p) +inline int soap_POST_recv_prodml23__Boundary4Type(struct soap *soap, prodml23__Boundary4Type *p) { - if (gsoap_eml2_3::soap_read_prodml22__Boundary4Type(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Boundary4Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type_DEFINED -inline void soap_default_prodml22__Boundary3Type(struct soap *soap, prodml22__Boundary3Type *a) +inline void soap_default_prodml23__Boundary3Type(struct soap *soap, prodml23__Boundary3Type *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__Boundary3Type - *a = SOAP_DEFAULT_prodml22__Boundary3Type; +#ifdef SOAP_DEFAULT_prodml23__Boundary3Type + *a = SOAP_DEFAULT_prodml23__Boundary3Type; #else - *a = (prodml22__Boundary3Type)0; + *a = (prodml23__Boundary3Type)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary3Type(struct soap*, const char*, int, const prodml22__Boundary3Type *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary3Type2s(struct soap*, prodml22__Boundary3Type); -SOAP_FMAC3 prodml22__Boundary3Type * SOAP_FMAC4 soap_in_prodml22__Boundary3Type(struct soap*, const char*, prodml22__Boundary3Type *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary3Type(struct soap*, const char*, prodml22__Boundary3Type *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary3Type(struct soap*, const char*, int, const prodml23__Boundary3Type *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary3Type2s(struct soap*, prodml23__Boundary3Type); +SOAP_FMAC3 prodml23__Boundary3Type * SOAP_FMAC4 soap_in_prodml23__Boundary3Type(struct soap*, const char*, prodml23__Boundary3Type *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary3Type(struct soap*, const char*, prodml23__Boundary3Type *); -SOAP_FMAC3 prodml22__Boundary3Type * SOAP_FMAC4 soap_new_prodml22__Boundary3Type(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary3Type(struct soap*, const prodml22__Boundary3Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary3Type * SOAP_FMAC4 soap_new_prodml23__Boundary3Type(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary3Type(struct soap*, const prodml23__Boundary3Type *, const char*, const char*); -inline int soap_write_prodml22__Boundary3Type(struct soap *soap, prodml22__Boundary3Type const*p) +inline int soap_write_prodml23__Boundary3Type(struct soap *soap, prodml23__Boundary3Type const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__Boundary3Type(soap, p, "prodml22:Boundary3Type", "prodml22:Boundary3Type") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__Boundary3Type(soap, p, "prodml23:Boundary3Type", "prodml23:Boundary3Type") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__Boundary3Type(struct soap *soap, const char *URL, prodml22__Boundary3Type const*p) +inline int soap_PUT_prodml23__Boundary3Type(struct soap *soap, const char *URL, prodml23__Boundary3Type const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary3Type(soap, p, "prodml22:Boundary3Type", "prodml22:Boundary3Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary3Type(soap, p, "prodml23:Boundary3Type", "prodml23:Boundary3Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Boundary3Type(struct soap *soap, const char *URL, prodml22__Boundary3Type const*p) +inline int soap_PATCH_prodml23__Boundary3Type(struct soap *soap, const char *URL, prodml23__Boundary3Type const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary3Type(soap, p, "prodml22:Boundary3Type", "prodml22:Boundary3Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary3Type(soap, p, "prodml23:Boundary3Type", "prodml23:Boundary3Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Boundary3Type(struct soap *soap, const char *URL, prodml22__Boundary3Type const*p) +inline int soap_POST_send_prodml23__Boundary3Type(struct soap *soap, const char *URL, prodml23__Boundary3Type const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary3Type(soap, p, "prodml22:Boundary3Type", "prodml22:Boundary3Type") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary3Type(soap, p, "prodml23:Boundary3Type", "prodml23:Boundary3Type") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary3Type * SOAP_FMAC4 soap_get_prodml22__Boundary3Type(struct soap*, prodml22__Boundary3Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary3Type * SOAP_FMAC4 soap_get_prodml23__Boundary3Type(struct soap*, prodml23__Boundary3Type *, const char*, const char*); -inline int soap_read_prodml22__Boundary3Type(struct soap *soap, prodml22__Boundary3Type *p) +inline int soap_read_prodml23__Boundary3Type(struct soap *soap, prodml23__Boundary3Type *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Boundary3Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Boundary3Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Boundary3Type(struct soap *soap, const char *URL, prodml22__Boundary3Type *p) +inline int soap_GET_prodml23__Boundary3Type(struct soap *soap, const char *URL, prodml23__Boundary3Type *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Boundary3Type(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Boundary3Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Boundary3Type(struct soap *soap, prodml22__Boundary3Type *p) +inline int soap_POST_recv_prodml23__Boundary3Type(struct soap *soap, prodml23__Boundary3Type *p) { - if (gsoap_eml2_3::soap_read_prodml22__Boundary3Type(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Boundary3Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type_DEFINED -inline void soap_default_prodml22__Boundary2Type(struct soap *soap, prodml22__Boundary2Type *a) +inline void soap_default_prodml23__Boundary2Type(struct soap *soap, prodml23__Boundary2Type *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__Boundary2Type - *a = SOAP_DEFAULT_prodml22__Boundary2Type; +#ifdef SOAP_DEFAULT_prodml23__Boundary2Type + *a = SOAP_DEFAULT_prodml23__Boundary2Type; #else - *a = (prodml22__Boundary2Type)0; + *a = (prodml23__Boundary2Type)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary2Type(struct soap*, const char*, int, const prodml22__Boundary2Type *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary2Type2s(struct soap*, prodml22__Boundary2Type); -SOAP_FMAC3 prodml22__Boundary2Type * SOAP_FMAC4 soap_in_prodml22__Boundary2Type(struct soap*, const char*, prodml22__Boundary2Type *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary2Type(struct soap*, const char*, prodml22__Boundary2Type *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary2Type(struct soap*, const char*, int, const prodml23__Boundary2Type *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary2Type2s(struct soap*, prodml23__Boundary2Type); +SOAP_FMAC3 prodml23__Boundary2Type * SOAP_FMAC4 soap_in_prodml23__Boundary2Type(struct soap*, const char*, prodml23__Boundary2Type *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary2Type(struct soap*, const char*, prodml23__Boundary2Type *); -SOAP_FMAC3 prodml22__Boundary2Type * SOAP_FMAC4 soap_new_prodml22__Boundary2Type(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary2Type(struct soap*, const prodml22__Boundary2Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary2Type * SOAP_FMAC4 soap_new_prodml23__Boundary2Type(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary2Type(struct soap*, const prodml23__Boundary2Type *, const char*, const char*); -inline int soap_write_prodml22__Boundary2Type(struct soap *soap, prodml22__Boundary2Type const*p) +inline int soap_write_prodml23__Boundary2Type(struct soap *soap, prodml23__Boundary2Type const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__Boundary2Type(soap, p, "prodml22:Boundary2Type", "prodml22:Boundary2Type") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__Boundary2Type(soap, p, "prodml23:Boundary2Type", "prodml23:Boundary2Type") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__Boundary2Type(struct soap *soap, const char *URL, prodml22__Boundary2Type const*p) +inline int soap_PUT_prodml23__Boundary2Type(struct soap *soap, const char *URL, prodml23__Boundary2Type const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary2Type(soap, p, "prodml22:Boundary2Type", "prodml22:Boundary2Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary2Type(soap, p, "prodml23:Boundary2Type", "prodml23:Boundary2Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Boundary2Type(struct soap *soap, const char *URL, prodml22__Boundary2Type const*p) +inline int soap_PATCH_prodml23__Boundary2Type(struct soap *soap, const char *URL, prodml23__Boundary2Type const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary2Type(soap, p, "prodml22:Boundary2Type", "prodml22:Boundary2Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary2Type(soap, p, "prodml23:Boundary2Type", "prodml23:Boundary2Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Boundary2Type(struct soap *soap, const char *URL, prodml22__Boundary2Type const*p) +inline int soap_POST_send_prodml23__Boundary2Type(struct soap *soap, const char *URL, prodml23__Boundary2Type const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary2Type(soap, p, "prodml22:Boundary2Type", "prodml22:Boundary2Type") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary2Type(soap, p, "prodml23:Boundary2Type", "prodml23:Boundary2Type") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary2Type * SOAP_FMAC4 soap_get_prodml22__Boundary2Type(struct soap*, prodml22__Boundary2Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary2Type * SOAP_FMAC4 soap_get_prodml23__Boundary2Type(struct soap*, prodml23__Boundary2Type *, const char*, const char*); -inline int soap_read_prodml22__Boundary2Type(struct soap *soap, prodml22__Boundary2Type *p) +inline int soap_read_prodml23__Boundary2Type(struct soap *soap, prodml23__Boundary2Type *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Boundary2Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Boundary2Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Boundary2Type(struct soap *soap, const char *URL, prodml22__Boundary2Type *p) +inline int soap_GET_prodml23__Boundary2Type(struct soap *soap, const char *URL, prodml23__Boundary2Type *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Boundary2Type(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Boundary2Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Boundary2Type(struct soap *soap, prodml22__Boundary2Type *p) +inline int soap_POST_recv_prodml23__Boundary2Type(struct soap *soap, prodml23__Boundary2Type *p) { - if (gsoap_eml2_3::soap_read_prodml22__Boundary2Type(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Boundary2Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type_DEFINED -inline void soap_default_prodml22__Boundary1Type(struct soap *soap, prodml22__Boundary1Type *a) +inline void soap_default_prodml23__Boundary1Type(struct soap *soap, prodml23__Boundary1Type *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__Boundary1Type - *a = SOAP_DEFAULT_prodml22__Boundary1Type; +#ifdef SOAP_DEFAULT_prodml23__Boundary1Type + *a = SOAP_DEFAULT_prodml23__Boundary1Type; #else - *a = (prodml22__Boundary1Type)0; + *a = (prodml23__Boundary1Type)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Boundary1Type(struct soap*, const char*, int, const prodml22__Boundary1Type *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__Boundary1Type2s(struct soap*, prodml22__Boundary1Type); -SOAP_FMAC3 prodml22__Boundary1Type * SOAP_FMAC4 soap_in_prodml22__Boundary1Type(struct soap*, const char*, prodml22__Boundary1Type *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__Boundary1Type(struct soap*, const char*, prodml22__Boundary1Type *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Boundary1Type(struct soap*, const char*, int, const prodml23__Boundary1Type *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__Boundary1Type2s(struct soap*, prodml23__Boundary1Type); +SOAP_FMAC3 prodml23__Boundary1Type * SOAP_FMAC4 soap_in_prodml23__Boundary1Type(struct soap*, const char*, prodml23__Boundary1Type *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__Boundary1Type(struct soap*, const char*, prodml23__Boundary1Type *); -SOAP_FMAC3 prodml22__Boundary1Type * SOAP_FMAC4 soap_new_prodml22__Boundary1Type(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__Boundary1Type(struct soap*, const prodml22__Boundary1Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary1Type * SOAP_FMAC4 soap_new_prodml23__Boundary1Type(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__Boundary1Type(struct soap*, const prodml23__Boundary1Type *, const char*, const char*); -inline int soap_write_prodml22__Boundary1Type(struct soap *soap, prodml22__Boundary1Type const*p) +inline int soap_write_prodml23__Boundary1Type(struct soap *soap, prodml23__Boundary1Type const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__Boundary1Type(soap, p, "prodml22:Boundary1Type", "prodml22:Boundary1Type") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__Boundary1Type(soap, p, "prodml23:Boundary1Type", "prodml23:Boundary1Type") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__Boundary1Type(struct soap *soap, const char *URL, prodml22__Boundary1Type const*p) +inline int soap_PUT_prodml23__Boundary1Type(struct soap *soap, const char *URL, prodml23__Boundary1Type const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary1Type(soap, p, "prodml22:Boundary1Type", "prodml22:Boundary1Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary1Type(soap, p, "prodml23:Boundary1Type", "prodml23:Boundary1Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Boundary1Type(struct soap *soap, const char *URL, prodml22__Boundary1Type const*p) +inline int soap_PATCH_prodml23__Boundary1Type(struct soap *soap, const char *URL, prodml23__Boundary1Type const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary1Type(soap, p, "prodml22:Boundary1Type", "prodml22:Boundary1Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary1Type(soap, p, "prodml23:Boundary1Type", "prodml23:Boundary1Type") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Boundary1Type(struct soap *soap, const char *URL, prodml22__Boundary1Type const*p) +inline int soap_POST_send_prodml23__Boundary1Type(struct soap *soap, const char *URL, prodml23__Boundary1Type const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__Boundary1Type(soap, p, "prodml22:Boundary1Type", "prodml22:Boundary1Type") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__Boundary1Type(soap, p, "prodml23:Boundary1Type", "prodml23:Boundary1Type") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Boundary1Type * SOAP_FMAC4 soap_get_prodml22__Boundary1Type(struct soap*, prodml22__Boundary1Type *, const char*, const char*); +SOAP_FMAC3 prodml23__Boundary1Type * SOAP_FMAC4 soap_get_prodml23__Boundary1Type(struct soap*, prodml23__Boundary1Type *, const char*, const char*); -inline int soap_read_prodml22__Boundary1Type(struct soap *soap, prodml22__Boundary1Type *p) +inline int soap_read_prodml23__Boundary1Type(struct soap *soap, prodml23__Boundary1Type *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Boundary1Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Boundary1Type(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Boundary1Type(struct soap *soap, const char *URL, prodml22__Boundary1Type *p) +inline int soap_GET_prodml23__Boundary1Type(struct soap *soap, const char *URL, prodml23__Boundary1Type *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Boundary1Type(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Boundary1Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Boundary1Type(struct soap *soap, prodml22__Boundary1Type *p) +inline int soap_POST_recv_prodml23__Boundary1Type(struct soap *soap, prodml23__Boundary1Type *p) { - if (gsoap_eml2_3::soap_read_prodml22__Boundary1Type(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Boundary1Type(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind_DEFINED -inline void soap_default_prodml22__TimeNonLinearTransformKind(struct soap *soap, prodml22__TimeNonLinearTransformKind *a) +inline void soap_default_prodml23__TimeNonLinearTransformKind(struct soap *soap, prodml23__TimeNonLinearTransformKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__TimeNonLinearTransformKind - *a = SOAP_DEFAULT_prodml22__TimeNonLinearTransformKind; +#ifdef SOAP_DEFAULT_prodml23__TimeNonLinearTransformKind + *a = SOAP_DEFAULT_prodml23__TimeNonLinearTransformKind; #else - *a = (prodml22__TimeNonLinearTransformKind)0; + *a = (prodml23__TimeNonLinearTransformKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeNonLinearTransformKind(struct soap*, const char*, int, const prodml22__TimeNonLinearTransformKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TimeNonLinearTransformKind2s(struct soap*, prodml22__TimeNonLinearTransformKind); -SOAP_FMAC3 prodml22__TimeNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml22__TimeNonLinearTransformKind(struct soap*, const char*, prodml22__TimeNonLinearTransformKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeNonLinearTransformKind(struct soap*, const char*, prodml22__TimeNonLinearTransformKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeNonLinearTransformKind(struct soap*, const char*, int, const prodml23__TimeNonLinearTransformKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TimeNonLinearTransformKind2s(struct soap*, prodml23__TimeNonLinearTransformKind); +SOAP_FMAC3 prodml23__TimeNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml23__TimeNonLinearTransformKind(struct soap*, const char*, prodml23__TimeNonLinearTransformKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TimeNonLinearTransformKind(struct soap*, const char*, prodml23__TimeNonLinearTransformKind *); -SOAP_FMAC3 prodml22__TimeNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml22__TimeNonLinearTransformKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TimeNonLinearTransformKind(struct soap*, const prodml22__TimeNonLinearTransformKind *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml23__TimeNonLinearTransformKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TimeNonLinearTransformKind(struct soap*, const prodml23__TimeNonLinearTransformKind *, const char*, const char*); -inline int soap_write_prodml22__TimeNonLinearTransformKind(struct soap *soap, prodml22__TimeNonLinearTransformKind const*p) +inline int soap_write_prodml23__TimeNonLinearTransformKind(struct soap *soap, prodml23__TimeNonLinearTransformKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__TimeNonLinearTransformKind(soap, p, "prodml22:TimeNonLinearTransformKind", "prodml22:TimeNonLinearTransformKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__TimeNonLinearTransformKind(soap, p, "prodml23:TimeNonLinearTransformKind", "prodml23:TimeNonLinearTransformKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__TimeNonLinearTransformKind const*p) +inline int soap_PUT_prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__TimeNonLinearTransformKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeNonLinearTransformKind(soap, p, "prodml22:TimeNonLinearTransformKind", "prodml22:TimeNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeNonLinearTransformKind(soap, p, "prodml23:TimeNonLinearTransformKind", "prodml23:TimeNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__TimeNonLinearTransformKind const*p) +inline int soap_PATCH_prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__TimeNonLinearTransformKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeNonLinearTransformKind(soap, p, "prodml22:TimeNonLinearTransformKind", "prodml22:TimeNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeNonLinearTransformKind(soap, p, "prodml23:TimeNonLinearTransformKind", "prodml23:TimeNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__TimeNonLinearTransformKind const*p) +inline int soap_POST_send_prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__TimeNonLinearTransformKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeNonLinearTransformKind(soap, p, "prodml22:TimeNonLinearTransformKind", "prodml22:TimeNonLinearTransformKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeNonLinearTransformKind(soap, p, "prodml23:TimeNonLinearTransformKind", "prodml23:TimeNonLinearTransformKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml22__TimeNonLinearTransformKind(struct soap*, prodml22__TimeNonLinearTransformKind *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml23__TimeNonLinearTransformKind(struct soap*, prodml23__TimeNonLinearTransformKind *, const char*, const char*); -inline int soap_read_prodml22__TimeNonLinearTransformKind(struct soap *soap, prodml22__TimeNonLinearTransformKind *p) +inline int soap_read_prodml23__TimeNonLinearTransformKind(struct soap *soap, prodml23__TimeNonLinearTransformKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeNonLinearTransformKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeNonLinearTransformKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__TimeNonLinearTransformKind *p) +inline int soap_GET_prodml23__TimeNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__TimeNonLinearTransformKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeNonLinearTransformKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeNonLinearTransformKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeNonLinearTransformKind(struct soap *soap, prodml22__TimeNonLinearTransformKind *p) +inline int soap_POST_recv_prodml23__TimeNonLinearTransformKind(struct soap *soap, prodml23__TimeNonLinearTransformKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeNonLinearTransformKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeNonLinearTransformKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied_DEFINED -inline void soap_default_prodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied *a) +inline void soap_default_prodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PseudoPressureEffectApplied - *a = SOAP_DEFAULT_prodml22__PseudoPressureEffectApplied; +#ifdef SOAP_DEFAULT_prodml23__PseudoPressureEffectApplied + *a = SOAP_DEFAULT_prodml23__PseudoPressureEffectApplied; #else - *a = (prodml22__PseudoPressureEffectApplied)0; + *a = (prodml23__PseudoPressureEffectApplied)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoPressureEffectApplied(struct soap*, const char*, int, const prodml22__PseudoPressureEffectApplied *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PseudoPressureEffectApplied2s(struct soap*, prodml22__PseudoPressureEffectApplied); -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied * SOAP_FMAC4 soap_in_prodml22__PseudoPressureEffectApplied(struct soap*, const char*, prodml22__PseudoPressureEffectApplied *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PseudoPressureEffectApplied(struct soap*, const char*, prodml22__PseudoPressureEffectApplied *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoPressureEffectApplied(struct soap*, const char*, int, const prodml23__PseudoPressureEffectApplied *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PseudoPressureEffectApplied2s(struct soap*, prodml23__PseudoPressureEffectApplied); +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied * SOAP_FMAC4 soap_in_prodml23__PseudoPressureEffectApplied(struct soap*, const char*, prodml23__PseudoPressureEffectApplied *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PseudoPressureEffectApplied(struct soap*, const char*, prodml23__PseudoPressureEffectApplied *); -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied * SOAP_FMAC4 soap_new_prodml22__PseudoPressureEffectApplied(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PseudoPressureEffectApplied(struct soap*, const prodml22__PseudoPressureEffectApplied *, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied * SOAP_FMAC4 soap_new_prodml23__PseudoPressureEffectApplied(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PseudoPressureEffectApplied(struct soap*, const prodml23__PseudoPressureEffectApplied *, const char*, const char*); -inline int soap_write_prodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied const*p) +inline int soap_write_prodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PseudoPressureEffectApplied(soap, p, "prodml22:PseudoPressureEffectApplied", "prodml22:PseudoPressureEffectApplied") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PseudoPressureEffectApplied(soap, p, "prodml23:PseudoPressureEffectApplied", "prodml23:PseudoPressureEffectApplied") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml22__PseudoPressureEffectApplied const*p) +inline int soap_PUT_prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml23__PseudoPressureEffectApplied const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PseudoPressureEffectApplied(soap, p, "prodml22:PseudoPressureEffectApplied", "prodml22:PseudoPressureEffectApplied") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoPressureEffectApplied(soap, p, "prodml23:PseudoPressureEffectApplied", "prodml23:PseudoPressureEffectApplied") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml22__PseudoPressureEffectApplied const*p) +inline int soap_PATCH_prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml23__PseudoPressureEffectApplied const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PseudoPressureEffectApplied(soap, p, "prodml22:PseudoPressureEffectApplied", "prodml22:PseudoPressureEffectApplied") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoPressureEffectApplied(soap, p, "prodml23:PseudoPressureEffectApplied", "prodml23:PseudoPressureEffectApplied") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml22__PseudoPressureEffectApplied const*p) +inline int soap_POST_send_prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml23__PseudoPressureEffectApplied const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PseudoPressureEffectApplied(soap, p, "prodml22:PseudoPressureEffectApplied", "prodml22:PseudoPressureEffectApplied") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoPressureEffectApplied(soap, p, "prodml23:PseudoPressureEffectApplied", "prodml23:PseudoPressureEffectApplied") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied * SOAP_FMAC4 soap_get_prodml22__PseudoPressureEffectApplied(struct soap*, prodml22__PseudoPressureEffectApplied *, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied * SOAP_FMAC4 soap_get_prodml23__PseudoPressureEffectApplied(struct soap*, prodml23__PseudoPressureEffectApplied *, const char*, const char*); -inline int soap_read_prodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied *p) +inline int soap_read_prodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PseudoPressureEffectApplied(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PseudoPressureEffectApplied(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml22__PseudoPressureEffectApplied *p) +inline int soap_GET_prodml23__PseudoPressureEffectApplied(struct soap *soap, const char *URL, prodml23__PseudoPressureEffectApplied *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PseudoPressureEffectApplied(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PseudoPressureEffectApplied(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PseudoPressureEffectApplied(struct soap *soap, prodml22__PseudoPressureEffectApplied *p) +inline int soap_POST_recv_prodml23__PseudoPressureEffectApplied(struct soap *soap, prodml23__PseudoPressureEffectApplied *p) { - if (gsoap_eml2_3::soap_read_prodml22__PseudoPressureEffectApplied(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PseudoPressureEffectApplied(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind_DEFINED -inline void soap_default_prodml22__PressureNonLinearTransformKind(struct soap *soap, prodml22__PressureNonLinearTransformKind *a) +inline void soap_default_prodml23__PressureNonLinearTransformKind(struct soap *soap, prodml23__PressureNonLinearTransformKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PressureNonLinearTransformKind - *a = SOAP_DEFAULT_prodml22__PressureNonLinearTransformKind; +#ifdef SOAP_DEFAULT_prodml23__PressureNonLinearTransformKind + *a = SOAP_DEFAULT_prodml23__PressureNonLinearTransformKind; #else - *a = (prodml22__PressureNonLinearTransformKind)0; + *a = (prodml23__PressureNonLinearTransformKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureNonLinearTransformKind(struct soap*, const char*, int, const prodml22__PressureNonLinearTransformKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PressureNonLinearTransformKind2s(struct soap*, prodml22__PressureNonLinearTransformKind); -SOAP_FMAC3 prodml22__PressureNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml22__PressureNonLinearTransformKind(struct soap*, const char*, prodml22__PressureNonLinearTransformKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PressureNonLinearTransformKind(struct soap*, const char*, prodml22__PressureNonLinearTransformKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PressureNonLinearTransformKind(struct soap*, const char*, int, const prodml23__PressureNonLinearTransformKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PressureNonLinearTransformKind2s(struct soap*, prodml23__PressureNonLinearTransformKind); +SOAP_FMAC3 prodml23__PressureNonLinearTransformKind * SOAP_FMAC4 soap_in_prodml23__PressureNonLinearTransformKind(struct soap*, const char*, prodml23__PressureNonLinearTransformKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PressureNonLinearTransformKind(struct soap*, const char*, prodml23__PressureNonLinearTransformKind *); -SOAP_FMAC3 prodml22__PressureNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml22__PressureNonLinearTransformKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PressureNonLinearTransformKind(struct soap*, const prodml22__PressureNonLinearTransformKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PressureNonLinearTransformKind * SOAP_FMAC4 soap_new_prodml23__PressureNonLinearTransformKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PressureNonLinearTransformKind(struct soap*, const prodml23__PressureNonLinearTransformKind *, const char*, const char*); -inline int soap_write_prodml22__PressureNonLinearTransformKind(struct soap *soap, prodml22__PressureNonLinearTransformKind const*p) +inline int soap_write_prodml23__PressureNonLinearTransformKind(struct soap *soap, prodml23__PressureNonLinearTransformKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PressureNonLinearTransformKind(soap, p, "prodml22:PressureNonLinearTransformKind", "prodml22:PressureNonLinearTransformKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PressureNonLinearTransformKind(soap, p, "prodml23:PressureNonLinearTransformKind", "prodml23:PressureNonLinearTransformKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__PressureNonLinearTransformKind const*p) +inline int soap_PUT_prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__PressureNonLinearTransformKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PressureNonLinearTransformKind(soap, p, "prodml22:PressureNonLinearTransformKind", "prodml22:PressureNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PressureNonLinearTransformKind(soap, p, "prodml23:PressureNonLinearTransformKind", "prodml23:PressureNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__PressureNonLinearTransformKind const*p) +inline int soap_PATCH_prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__PressureNonLinearTransformKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PressureNonLinearTransformKind(soap, p, "prodml22:PressureNonLinearTransformKind", "prodml22:PressureNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PressureNonLinearTransformKind(soap, p, "prodml23:PressureNonLinearTransformKind", "prodml23:PressureNonLinearTransformKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__PressureNonLinearTransformKind const*p) +inline int soap_POST_send_prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__PressureNonLinearTransformKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PressureNonLinearTransformKind(soap, p, "prodml22:PressureNonLinearTransformKind", "prodml22:PressureNonLinearTransformKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PressureNonLinearTransformKind(soap, p, "prodml23:PressureNonLinearTransformKind", "prodml23:PressureNonLinearTransformKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PressureNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml22__PressureNonLinearTransformKind(struct soap*, prodml22__PressureNonLinearTransformKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PressureNonLinearTransformKind * SOAP_FMAC4 soap_get_prodml23__PressureNonLinearTransformKind(struct soap*, prodml23__PressureNonLinearTransformKind *, const char*, const char*); -inline int soap_read_prodml22__PressureNonLinearTransformKind(struct soap *soap, prodml22__PressureNonLinearTransformKind *p) +inline int soap_read_prodml23__PressureNonLinearTransformKind(struct soap *soap, prodml23__PressureNonLinearTransformKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PressureNonLinearTransformKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PressureNonLinearTransformKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml22__PressureNonLinearTransformKind *p) +inline int soap_GET_prodml23__PressureNonLinearTransformKind(struct soap *soap, const char *URL, prodml23__PressureNonLinearTransformKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PressureNonLinearTransformKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PressureNonLinearTransformKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PressureNonLinearTransformKind(struct soap *soap, prodml22__PressureNonLinearTransformKind *p) +inline int soap_POST_recv_prodml23__PressureNonLinearTransformKind(struct soap *soap, prodml23__PressureNonLinearTransformKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__PressureNonLinearTransformKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PressureNonLinearTransformKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform_DEFINED -inline void soap_default_prodml22__LogLogTimeTransform(struct soap *soap, prodml22__LogLogTimeTransform *a) +inline void soap_default_prodml23__LogLogTimeTransform(struct soap *soap, prodml23__LogLogTimeTransform *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__LogLogTimeTransform - *a = SOAP_DEFAULT_prodml22__LogLogTimeTransform; +#ifdef SOAP_DEFAULT_prodml23__LogLogTimeTransform + *a = SOAP_DEFAULT_prodml23__LogLogTimeTransform; #else - *a = (prodml22__LogLogTimeTransform)0; + *a = (prodml23__LogLogTimeTransform)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LogLogTimeTransform(struct soap*, const char*, int, const prodml22__LogLogTimeTransform *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__LogLogTimeTransform2s(struct soap*, prodml22__LogLogTimeTransform); -SOAP_FMAC3 prodml22__LogLogTimeTransform * SOAP_FMAC4 soap_in_prodml22__LogLogTimeTransform(struct soap*, const char*, prodml22__LogLogTimeTransform *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LogLogTimeTransform(struct soap*, const char*, prodml22__LogLogTimeTransform *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LogLogTimeTransform(struct soap*, const char*, int, const prodml23__LogLogTimeTransform *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__LogLogTimeTransform2s(struct soap*, prodml23__LogLogTimeTransform); +SOAP_FMAC3 prodml23__LogLogTimeTransform * SOAP_FMAC4 soap_in_prodml23__LogLogTimeTransform(struct soap*, const char*, prodml23__LogLogTimeTransform *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__LogLogTimeTransform(struct soap*, const char*, prodml23__LogLogTimeTransform *); -SOAP_FMAC3 prodml22__LogLogTimeTransform * SOAP_FMAC4 soap_new_prodml22__LogLogTimeTransform(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__LogLogTimeTransform(struct soap*, const prodml22__LogLogTimeTransform *, const char*, const char*); +SOAP_FMAC3 prodml23__LogLogTimeTransform * SOAP_FMAC4 soap_new_prodml23__LogLogTimeTransform(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__LogLogTimeTransform(struct soap*, const prodml23__LogLogTimeTransform *, const char*, const char*); -inline int soap_write_prodml22__LogLogTimeTransform(struct soap *soap, prodml22__LogLogTimeTransform const*p) +inline int soap_write_prodml23__LogLogTimeTransform(struct soap *soap, prodml23__LogLogTimeTransform const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__LogLogTimeTransform(soap, p, "prodml22:LogLogTimeTransform", "prodml22:LogLogTimeTransform") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__LogLogTimeTransform(soap, p, "prodml23:LogLogTimeTransform", "prodml23:LogLogTimeTransform") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__LogLogTimeTransform(struct soap *soap, const char *URL, prodml22__LogLogTimeTransform const*p) +inline int soap_PUT_prodml23__LogLogTimeTransform(struct soap *soap, const char *URL, prodml23__LogLogTimeTransform const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LogLogTimeTransform(soap, p, "prodml22:LogLogTimeTransform", "prodml22:LogLogTimeTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LogLogTimeTransform(soap, p, "prodml23:LogLogTimeTransform", "prodml23:LogLogTimeTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LogLogTimeTransform(struct soap *soap, const char *URL, prodml22__LogLogTimeTransform const*p) +inline int soap_PATCH_prodml23__LogLogTimeTransform(struct soap *soap, const char *URL, prodml23__LogLogTimeTransform const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LogLogTimeTransform(soap, p, "prodml22:LogLogTimeTransform", "prodml22:LogLogTimeTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LogLogTimeTransform(soap, p, "prodml23:LogLogTimeTransform", "prodml23:LogLogTimeTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LogLogTimeTransform(struct soap *soap, const char *URL, prodml22__LogLogTimeTransform const*p) +inline int soap_POST_send_prodml23__LogLogTimeTransform(struct soap *soap, const char *URL, prodml23__LogLogTimeTransform const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LogLogTimeTransform(soap, p, "prodml22:LogLogTimeTransform", "prodml22:LogLogTimeTransform") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LogLogTimeTransform(soap, p, "prodml23:LogLogTimeTransform", "prodml23:LogLogTimeTransform") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LogLogTimeTransform * SOAP_FMAC4 soap_get_prodml22__LogLogTimeTransform(struct soap*, prodml22__LogLogTimeTransform *, const char*, const char*); +SOAP_FMAC3 prodml23__LogLogTimeTransform * SOAP_FMAC4 soap_get_prodml23__LogLogTimeTransform(struct soap*, prodml23__LogLogTimeTransform *, const char*, const char*); -inline int soap_read_prodml22__LogLogTimeTransform(struct soap *soap, prodml22__LogLogTimeTransform *p) +inline int soap_read_prodml23__LogLogTimeTransform(struct soap *soap, prodml23__LogLogTimeTransform *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LogLogTimeTransform(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LogLogTimeTransform(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LogLogTimeTransform(struct soap *soap, const char *URL, prodml22__LogLogTimeTransform *p) +inline int soap_GET_prodml23__LogLogTimeTransform(struct soap *soap, const char *URL, prodml23__LogLogTimeTransform *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LogLogTimeTransform(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LogLogTimeTransform(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LogLogTimeTransform(struct soap *soap, prodml22__LogLogTimeTransform *p) +inline int soap_POST_recv_prodml23__LogLogTimeTransform(struct soap *soap, prodml23__LogLogTimeTransform *p) { - if (gsoap_eml2_3::soap_read_prodml22__LogLogTimeTransform(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LogLogTimeTransform(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform_DEFINED -inline void soap_default_prodml22__LogLogPressureTransform(struct soap *soap, prodml22__LogLogPressureTransform *a) +inline void soap_default_prodml23__LogLogPressureTransform(struct soap *soap, prodml23__LogLogPressureTransform *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__LogLogPressureTransform - *a = SOAP_DEFAULT_prodml22__LogLogPressureTransform; +#ifdef SOAP_DEFAULT_prodml23__LogLogPressureTransform + *a = SOAP_DEFAULT_prodml23__LogLogPressureTransform; #else - *a = (prodml22__LogLogPressureTransform)0; + *a = (prodml23__LogLogPressureTransform)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LogLogPressureTransform(struct soap*, const char*, int, const prodml22__LogLogPressureTransform *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__LogLogPressureTransform2s(struct soap*, prodml22__LogLogPressureTransform); -SOAP_FMAC3 prodml22__LogLogPressureTransform * SOAP_FMAC4 soap_in_prodml22__LogLogPressureTransform(struct soap*, const char*, prodml22__LogLogPressureTransform *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__LogLogPressureTransform(struct soap*, const char*, prodml22__LogLogPressureTransform *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LogLogPressureTransform(struct soap*, const char*, int, const prodml23__LogLogPressureTransform *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__LogLogPressureTransform2s(struct soap*, prodml23__LogLogPressureTransform); +SOAP_FMAC3 prodml23__LogLogPressureTransform * SOAP_FMAC4 soap_in_prodml23__LogLogPressureTransform(struct soap*, const char*, prodml23__LogLogPressureTransform *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__LogLogPressureTransform(struct soap*, const char*, prodml23__LogLogPressureTransform *); -SOAP_FMAC3 prodml22__LogLogPressureTransform * SOAP_FMAC4 soap_new_prodml22__LogLogPressureTransform(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__LogLogPressureTransform(struct soap*, const prodml22__LogLogPressureTransform *, const char*, const char*); +SOAP_FMAC3 prodml23__LogLogPressureTransform * SOAP_FMAC4 soap_new_prodml23__LogLogPressureTransform(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__LogLogPressureTransform(struct soap*, const prodml23__LogLogPressureTransform *, const char*, const char*); -inline int soap_write_prodml22__LogLogPressureTransform(struct soap *soap, prodml22__LogLogPressureTransform const*p) +inline int soap_write_prodml23__LogLogPressureTransform(struct soap *soap, prodml23__LogLogPressureTransform const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__LogLogPressureTransform(soap, p, "prodml22:LogLogPressureTransform", "prodml22:LogLogPressureTransform") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__LogLogPressureTransform(soap, p, "prodml23:LogLogPressureTransform", "prodml23:LogLogPressureTransform") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__LogLogPressureTransform(struct soap *soap, const char *URL, prodml22__LogLogPressureTransform const*p) +inline int soap_PUT_prodml23__LogLogPressureTransform(struct soap *soap, const char *URL, prodml23__LogLogPressureTransform const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LogLogPressureTransform(soap, p, "prodml22:LogLogPressureTransform", "prodml22:LogLogPressureTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LogLogPressureTransform(soap, p, "prodml23:LogLogPressureTransform", "prodml23:LogLogPressureTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LogLogPressureTransform(struct soap *soap, const char *URL, prodml22__LogLogPressureTransform const*p) +inline int soap_PATCH_prodml23__LogLogPressureTransform(struct soap *soap, const char *URL, prodml23__LogLogPressureTransform const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LogLogPressureTransform(soap, p, "prodml22:LogLogPressureTransform", "prodml22:LogLogPressureTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LogLogPressureTransform(soap, p, "prodml23:LogLogPressureTransform", "prodml23:LogLogPressureTransform") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LogLogPressureTransform(struct soap *soap, const char *URL, prodml22__LogLogPressureTransform const*p) +inline int soap_POST_send_prodml23__LogLogPressureTransform(struct soap *soap, const char *URL, prodml23__LogLogPressureTransform const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__LogLogPressureTransform(soap, p, "prodml22:LogLogPressureTransform", "prodml22:LogLogPressureTransform") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__LogLogPressureTransform(soap, p, "prodml23:LogLogPressureTransform", "prodml23:LogLogPressureTransform") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LogLogPressureTransform * SOAP_FMAC4 soap_get_prodml22__LogLogPressureTransform(struct soap*, prodml22__LogLogPressureTransform *, const char*, const char*); +SOAP_FMAC3 prodml23__LogLogPressureTransform * SOAP_FMAC4 soap_get_prodml23__LogLogPressureTransform(struct soap*, prodml23__LogLogPressureTransform *, const char*, const char*); -inline int soap_read_prodml22__LogLogPressureTransform(struct soap *soap, prodml22__LogLogPressureTransform *p) +inline int soap_read_prodml23__LogLogPressureTransform(struct soap *soap, prodml23__LogLogPressureTransform *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LogLogPressureTransform(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LogLogPressureTransform(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LogLogPressureTransform(struct soap *soap, const char *URL, prodml22__LogLogPressureTransform *p) +inline int soap_GET_prodml23__LogLogPressureTransform(struct soap *soap, const char *URL, prodml23__LogLogPressureTransform *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LogLogPressureTransform(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LogLogPressureTransform(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LogLogPressureTransform(struct soap *soap, prodml22__LogLogPressureTransform *p) +inline int soap_POST_recv_prodml23__LogLogPressureTransform(struct soap *soap, prodml23__LogLogPressureTransform *p) { - if (gsoap_eml2_3::soap_read_prodml22__LogLogPressureTransform(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LogLogPressureTransform(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind_DEFINED -inline void soap_default_prodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind *a) +inline void soap_default_prodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FluidPhaseKind - *a = SOAP_DEFAULT_prodml22__FluidPhaseKind; +#ifdef SOAP_DEFAULT_prodml23__FluidPhaseKind + *a = SOAP_DEFAULT_prodml23__FluidPhaseKind; #else - *a = (prodml22__FluidPhaseKind)0; + *a = (prodml23__FluidPhaseKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidPhaseKind(struct soap*, const char*, int, const prodml22__FluidPhaseKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidPhaseKind2s(struct soap*, prodml22__FluidPhaseKind); -SOAP_FMAC3 prodml22__FluidPhaseKind * SOAP_FMAC4 soap_in_prodml22__FluidPhaseKind(struct soap*, const char*, prodml22__FluidPhaseKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidPhaseKind(struct soap*, const char*, prodml22__FluidPhaseKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidPhaseKind(struct soap*, const char*, int, const prodml23__FluidPhaseKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidPhaseKind2s(struct soap*, prodml23__FluidPhaseKind); +SOAP_FMAC3 prodml23__FluidPhaseKind * SOAP_FMAC4 soap_in_prodml23__FluidPhaseKind(struct soap*, const char*, prodml23__FluidPhaseKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidPhaseKind(struct soap*, const char*, prodml23__FluidPhaseKind *); -SOAP_FMAC3 prodml22__FluidPhaseKind * SOAP_FMAC4 soap_new_prodml22__FluidPhaseKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidPhaseKind(struct soap*, const prodml22__FluidPhaseKind *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidPhaseKind * SOAP_FMAC4 soap_new_prodml23__FluidPhaseKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidPhaseKind(struct soap*, const prodml23__FluidPhaseKind *, const char*, const char*); -inline int soap_write_prodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind const*p) +inline int soap_write_prodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidPhaseKind(soap, p, "prodml22:FluidPhaseKind", "prodml22:FluidPhaseKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidPhaseKind(soap, p, "prodml23:FluidPhaseKind", "prodml23:FluidPhaseKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidPhaseKind(struct soap *soap, const char *URL, prodml22__FluidPhaseKind const*p) +inline int soap_PUT_prodml23__FluidPhaseKind(struct soap *soap, const char *URL, prodml23__FluidPhaseKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidPhaseKind(soap, p, "prodml22:FluidPhaseKind", "prodml22:FluidPhaseKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidPhaseKind(soap, p, "prodml23:FluidPhaseKind", "prodml23:FluidPhaseKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidPhaseKind(struct soap *soap, const char *URL, prodml22__FluidPhaseKind const*p) +inline int soap_PATCH_prodml23__FluidPhaseKind(struct soap *soap, const char *URL, prodml23__FluidPhaseKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidPhaseKind(soap, p, "prodml22:FluidPhaseKind", "prodml22:FluidPhaseKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidPhaseKind(soap, p, "prodml23:FluidPhaseKind", "prodml23:FluidPhaseKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidPhaseKind(struct soap *soap, const char *URL, prodml22__FluidPhaseKind const*p) +inline int soap_POST_send_prodml23__FluidPhaseKind(struct soap *soap, const char *URL, prodml23__FluidPhaseKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidPhaseKind(soap, p, "prodml22:FluidPhaseKind", "prodml22:FluidPhaseKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidPhaseKind(soap, p, "prodml23:FluidPhaseKind", "prodml23:FluidPhaseKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidPhaseKind * SOAP_FMAC4 soap_get_prodml22__FluidPhaseKind(struct soap*, prodml22__FluidPhaseKind *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidPhaseKind * SOAP_FMAC4 soap_get_prodml23__FluidPhaseKind(struct soap*, prodml23__FluidPhaseKind *, const char*, const char*); -inline int soap_read_prodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind *p) +inline int soap_read_prodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidPhaseKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidPhaseKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidPhaseKind(struct soap *soap, const char *URL, prodml22__FluidPhaseKind *p) +inline int soap_GET_prodml23__FluidPhaseKind(struct soap *soap, const char *URL, prodml23__FluidPhaseKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidPhaseKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidPhaseKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidPhaseKind(struct soap *soap, prodml22__FluidPhaseKind *p) +inline int soap_POST_recv_prodml23__FluidPhaseKind(struct soap *soap, prodml23__FluidPhaseKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidPhaseKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidPhaseKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation_DEFINED -inline void soap_default_prodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation *a) +inline void soap_default_prodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__TimeSeriesPointRepresentation - *a = SOAP_DEFAULT_prodml22__TimeSeriesPointRepresentation; +#ifdef SOAP_DEFAULT_prodml23__TimeSeriesPointRepresentation + *a = SOAP_DEFAULT_prodml23__TimeSeriesPointRepresentation; #else - *a = (prodml22__TimeSeriesPointRepresentation)0; + *a = (prodml23__TimeSeriesPointRepresentation)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesPointRepresentation(struct soap*, const char*, int, const prodml22__TimeSeriesPointRepresentation *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TimeSeriesPointRepresentation2s(struct soap*, prodml22__TimeSeriesPointRepresentation); -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_in_prodml22__TimeSeriesPointRepresentation(struct soap*, const char*, prodml22__TimeSeriesPointRepresentation *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TimeSeriesPointRepresentation(struct soap*, const char*, prodml22__TimeSeriesPointRepresentation *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesPointRepresentation(struct soap*, const char*, int, const prodml23__TimeSeriesPointRepresentation *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TimeSeriesPointRepresentation2s(struct soap*, prodml23__TimeSeriesPointRepresentation); +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_in_prodml23__TimeSeriesPointRepresentation(struct soap*, const char*, prodml23__TimeSeriesPointRepresentation *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TimeSeriesPointRepresentation(struct soap*, const char*, prodml23__TimeSeriesPointRepresentation *); -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_new_prodml22__TimeSeriesPointRepresentation(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TimeSeriesPointRepresentation(struct soap*, const prodml22__TimeSeriesPointRepresentation *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_new_prodml23__TimeSeriesPointRepresentation(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TimeSeriesPointRepresentation(struct soap*, const prodml23__TimeSeriesPointRepresentation *, const char*, const char*); -inline int soap_write_prodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation const*p) +inline int soap_write_prodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__TimeSeriesPointRepresentation(soap, p, "prodml22:TimeSeriesPointRepresentation", "prodml22:TimeSeriesPointRepresentation") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__TimeSeriesPointRepresentation(soap, p, "prodml23:TimeSeriesPointRepresentation", "prodml23:TimeSeriesPointRepresentation") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml22__TimeSeriesPointRepresentation const*p) +inline int soap_PUT_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml23__TimeSeriesPointRepresentation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeSeriesPointRepresentation(soap, p, "prodml22:TimeSeriesPointRepresentation", "prodml22:TimeSeriesPointRepresentation") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeSeriesPointRepresentation(soap, p, "prodml23:TimeSeriesPointRepresentation", "prodml23:TimeSeriesPointRepresentation") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml22__TimeSeriesPointRepresentation const*p) +inline int soap_PATCH_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml23__TimeSeriesPointRepresentation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeSeriesPointRepresentation(soap, p, "prodml22:TimeSeriesPointRepresentation", "prodml22:TimeSeriesPointRepresentation") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeSeriesPointRepresentation(soap, p, "prodml23:TimeSeriesPointRepresentation", "prodml23:TimeSeriesPointRepresentation") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml22__TimeSeriesPointRepresentation const*p) +inline int soap_POST_send_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml23__TimeSeriesPointRepresentation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TimeSeriesPointRepresentation(soap, p, "prodml22:TimeSeriesPointRepresentation", "prodml22:TimeSeriesPointRepresentation") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TimeSeriesPointRepresentation(soap, p, "prodml23:TimeSeriesPointRepresentation", "prodml23:TimeSeriesPointRepresentation") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_get_prodml22__TimeSeriesPointRepresentation(struct soap*, prodml22__TimeSeriesPointRepresentation *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation * SOAP_FMAC4 soap_get_prodml23__TimeSeriesPointRepresentation(struct soap*, prodml23__TimeSeriesPointRepresentation *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation *p) +inline int soap_read_prodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesPointRepresentation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesPointRepresentation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml22__TimeSeriesPointRepresentation *p) +inline int soap_GET_prodml23__TimeSeriesPointRepresentation(struct soap *soap, const char *URL, prodml23__TimeSeriesPointRepresentation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesPointRepresentation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesPointRepresentation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesPointRepresentation(struct soap *soap, prodml22__TimeSeriesPointRepresentation *p) +inline int soap_POST_recv_prodml23__TimeSeriesPointRepresentation(struct soap *soap, prodml23__TimeSeriesPointRepresentation *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesPointRepresentation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesPointRepresentation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind_DEFINED -inline void soap_default_prodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind *a) +inline void soap_default_prodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__TestPeriodKind - *a = SOAP_DEFAULT_prodml22__TestPeriodKind; +#ifdef SOAP_DEFAULT_prodml23__TestPeriodKind + *a = SOAP_DEFAULT_prodml23__TestPeriodKind; #else - *a = (prodml22__TestPeriodKind)0; + *a = (prodml23__TestPeriodKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TestPeriodKind(struct soap*, const char*, int, const prodml22__TestPeriodKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__TestPeriodKind2s(struct soap*, prodml22__TestPeriodKind); -SOAP_FMAC3 prodml22__TestPeriodKind * SOAP_FMAC4 soap_in_prodml22__TestPeriodKind(struct soap*, const char*, prodml22__TestPeriodKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__TestPeriodKind(struct soap*, const char*, prodml22__TestPeriodKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TestPeriodKind(struct soap*, const char*, int, const prodml23__TestPeriodKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__TestPeriodKind2s(struct soap*, prodml23__TestPeriodKind); +SOAP_FMAC3 prodml23__TestPeriodKind * SOAP_FMAC4 soap_in_prodml23__TestPeriodKind(struct soap*, const char*, prodml23__TestPeriodKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__TestPeriodKind(struct soap*, const char*, prodml23__TestPeriodKind *); -SOAP_FMAC3 prodml22__TestPeriodKind * SOAP_FMAC4 soap_new_prodml22__TestPeriodKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__TestPeriodKind(struct soap*, const prodml22__TestPeriodKind *, const char*, const char*); +SOAP_FMAC3 prodml23__TestPeriodKind * SOAP_FMAC4 soap_new_prodml23__TestPeriodKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__TestPeriodKind(struct soap*, const prodml23__TestPeriodKind *, const char*, const char*); -inline int soap_write_prodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind const*p) +inline int soap_write_prodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__TestPeriodKind(soap, p, "prodml22:TestPeriodKind", "prodml22:TestPeriodKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__TestPeriodKind(soap, p, "prodml23:TestPeriodKind", "prodml23:TestPeriodKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__TestPeriodKind(struct soap *soap, const char *URL, prodml22__TestPeriodKind const*p) +inline int soap_PUT_prodml23__TestPeriodKind(struct soap *soap, const char *URL, prodml23__TestPeriodKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TestPeriodKind(soap, p, "prodml22:TestPeriodKind", "prodml22:TestPeriodKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TestPeriodKind(soap, p, "prodml23:TestPeriodKind", "prodml23:TestPeriodKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TestPeriodKind(struct soap *soap, const char *URL, prodml22__TestPeriodKind const*p) +inline int soap_PATCH_prodml23__TestPeriodKind(struct soap *soap, const char *URL, prodml23__TestPeriodKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TestPeriodKind(soap, p, "prodml22:TestPeriodKind", "prodml22:TestPeriodKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TestPeriodKind(soap, p, "prodml23:TestPeriodKind", "prodml23:TestPeriodKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TestPeriodKind(struct soap *soap, const char *URL, prodml22__TestPeriodKind const*p) +inline int soap_POST_send_prodml23__TestPeriodKind(struct soap *soap, const char *URL, prodml23__TestPeriodKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__TestPeriodKind(soap, p, "prodml22:TestPeriodKind", "prodml22:TestPeriodKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__TestPeriodKind(soap, p, "prodml23:TestPeriodKind", "prodml23:TestPeriodKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TestPeriodKind * SOAP_FMAC4 soap_get_prodml22__TestPeriodKind(struct soap*, prodml22__TestPeriodKind *, const char*, const char*); +SOAP_FMAC3 prodml23__TestPeriodKind * SOAP_FMAC4 soap_get_prodml23__TestPeriodKind(struct soap*, prodml23__TestPeriodKind *, const char*, const char*); -inline int soap_read_prodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind *p) +inline int soap_read_prodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TestPeriodKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TestPeriodKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TestPeriodKind(struct soap *soap, const char *URL, prodml22__TestPeriodKind *p) +inline int soap_GET_prodml23__TestPeriodKind(struct soap *soap, const char *URL, prodml23__TestPeriodKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TestPeriodKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TestPeriodKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TestPeriodKind(struct soap *soap, prodml22__TestPeriodKind *p) +inline int soap_POST_recv_prodml23__TestPeriodKind(struct soap *soap, prodml23__TestPeriodKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__TestPeriodKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TestPeriodKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind_DEFINED -inline void soap_default_prodml22__FluidPhaseMeasuredKind(struct soap *soap, prodml22__FluidPhaseMeasuredKind *a) +inline void soap_default_prodml23__FluidPhaseMeasuredKind(struct soap *soap, prodml23__FluidPhaseMeasuredKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FluidPhaseMeasuredKind - *a = SOAP_DEFAULT_prodml22__FluidPhaseMeasuredKind; +#ifdef SOAP_DEFAULT_prodml23__FluidPhaseMeasuredKind + *a = SOAP_DEFAULT_prodml23__FluidPhaseMeasuredKind; #else - *a = (prodml22__FluidPhaseMeasuredKind)0; + *a = (prodml23__FluidPhaseMeasuredKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidPhaseMeasuredKind(struct soap*, const char*, int, const prodml22__FluidPhaseMeasuredKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidPhaseMeasuredKind2s(struct soap*, prodml22__FluidPhaseMeasuredKind); -SOAP_FMAC3 prodml22__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_in_prodml22__FluidPhaseMeasuredKind(struct soap*, const char*, prodml22__FluidPhaseMeasuredKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidPhaseMeasuredKind(struct soap*, const char*, prodml22__FluidPhaseMeasuredKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidPhaseMeasuredKind(struct soap*, const char*, int, const prodml23__FluidPhaseMeasuredKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidPhaseMeasuredKind2s(struct soap*, prodml23__FluidPhaseMeasuredKind); +SOAP_FMAC3 prodml23__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_in_prodml23__FluidPhaseMeasuredKind(struct soap*, const char*, prodml23__FluidPhaseMeasuredKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidPhaseMeasuredKind(struct soap*, const char*, prodml23__FluidPhaseMeasuredKind *); -SOAP_FMAC3 prodml22__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_new_prodml22__FluidPhaseMeasuredKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidPhaseMeasuredKind(struct soap*, const prodml22__FluidPhaseMeasuredKind *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_new_prodml23__FluidPhaseMeasuredKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidPhaseMeasuredKind(struct soap*, const prodml23__FluidPhaseMeasuredKind *, const char*, const char*); -inline int soap_write_prodml22__FluidPhaseMeasuredKind(struct soap *soap, prodml22__FluidPhaseMeasuredKind const*p) +inline int soap_write_prodml23__FluidPhaseMeasuredKind(struct soap *soap, prodml23__FluidPhaseMeasuredKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidPhaseMeasuredKind(soap, p, "prodml22:FluidPhaseMeasuredKind", "prodml22:FluidPhaseMeasuredKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidPhaseMeasuredKind(soap, p, "prodml23:FluidPhaseMeasuredKind", "prodml23:FluidPhaseMeasuredKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml22__FluidPhaseMeasuredKind const*p) +inline int soap_PUT_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml23__FluidPhaseMeasuredKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidPhaseMeasuredKind(soap, p, "prodml22:FluidPhaseMeasuredKind", "prodml22:FluidPhaseMeasuredKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidPhaseMeasuredKind(soap, p, "prodml23:FluidPhaseMeasuredKind", "prodml23:FluidPhaseMeasuredKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml22__FluidPhaseMeasuredKind const*p) +inline int soap_PATCH_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml23__FluidPhaseMeasuredKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidPhaseMeasuredKind(soap, p, "prodml22:FluidPhaseMeasuredKind", "prodml22:FluidPhaseMeasuredKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidPhaseMeasuredKind(soap, p, "prodml23:FluidPhaseMeasuredKind", "prodml23:FluidPhaseMeasuredKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml22__FluidPhaseMeasuredKind const*p) +inline int soap_POST_send_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml23__FluidPhaseMeasuredKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidPhaseMeasuredKind(soap, p, "prodml22:FluidPhaseMeasuredKind", "prodml22:FluidPhaseMeasuredKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidPhaseMeasuredKind(soap, p, "prodml23:FluidPhaseMeasuredKind", "prodml23:FluidPhaseMeasuredKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_get_prodml22__FluidPhaseMeasuredKind(struct soap*, prodml22__FluidPhaseMeasuredKind *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidPhaseMeasuredKind * SOAP_FMAC4 soap_get_prodml23__FluidPhaseMeasuredKind(struct soap*, prodml23__FluidPhaseMeasuredKind *, const char*, const char*); -inline int soap_read_prodml22__FluidPhaseMeasuredKind(struct soap *soap, prodml22__FluidPhaseMeasuredKind *p) +inline int soap_read_prodml23__FluidPhaseMeasuredKind(struct soap *soap, prodml23__FluidPhaseMeasuredKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidPhaseMeasuredKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidPhaseMeasuredKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml22__FluidPhaseMeasuredKind *p) +inline int soap_GET_prodml23__FluidPhaseMeasuredKind(struct soap *soap, const char *URL, prodml23__FluidPhaseMeasuredKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidPhaseMeasuredKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidPhaseMeasuredKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidPhaseMeasuredKind(struct soap *soap, prodml22__FluidPhaseMeasuredKind *p) +inline int soap_POST_recv_prodml23__FluidPhaseMeasuredKind(struct soap *soap, prodml23__FluidPhaseMeasuredKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidPhaseMeasuredKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidPhaseMeasuredKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning_DEFINED -inline void soap_default_prodml22__DataConditioning(struct soap *soap, prodml22__DataConditioning *a) +inline void soap_default_prodml23__DataConditioning(struct soap *soap, prodml23__DataConditioning *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__DataConditioning - *a = SOAP_DEFAULT_prodml22__DataConditioning; +#ifdef SOAP_DEFAULT_prodml23__DataConditioning + *a = SOAP_DEFAULT_prodml23__DataConditioning; #else - *a = (prodml22__DataConditioning)0; + *a = (prodml23__DataConditioning)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DataConditioning(struct soap*, const char*, int, const prodml22__DataConditioning *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__DataConditioning2s(struct soap*, prodml22__DataConditioning); -SOAP_FMAC3 prodml22__DataConditioning * SOAP_FMAC4 soap_in_prodml22__DataConditioning(struct soap*, const char*, prodml22__DataConditioning *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__DataConditioning(struct soap*, const char*, prodml22__DataConditioning *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DataConditioning(struct soap*, const char*, int, const prodml23__DataConditioning *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__DataConditioning2s(struct soap*, prodml23__DataConditioning); +SOAP_FMAC3 prodml23__DataConditioning * SOAP_FMAC4 soap_in_prodml23__DataConditioning(struct soap*, const char*, prodml23__DataConditioning *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__DataConditioning(struct soap*, const char*, prodml23__DataConditioning *); -SOAP_FMAC3 prodml22__DataConditioning * SOAP_FMAC4 soap_new_prodml22__DataConditioning(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__DataConditioning(struct soap*, const prodml22__DataConditioning *, const char*, const char*); +SOAP_FMAC3 prodml23__DataConditioning * SOAP_FMAC4 soap_new_prodml23__DataConditioning(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__DataConditioning(struct soap*, const prodml23__DataConditioning *, const char*, const char*); -inline int soap_write_prodml22__DataConditioning(struct soap *soap, prodml22__DataConditioning const*p) +inline int soap_write_prodml23__DataConditioning(struct soap *soap, prodml23__DataConditioning const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__DataConditioning(soap, p, "prodml22:DataConditioning", "prodml22:DataConditioning") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__DataConditioning(soap, p, "prodml23:DataConditioning", "prodml23:DataConditioning") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__DataConditioning(struct soap *soap, const char *URL, prodml22__DataConditioning const*p) +inline int soap_PUT_prodml23__DataConditioning(struct soap *soap, const char *URL, prodml23__DataConditioning const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__DataConditioning(soap, p, "prodml22:DataConditioning", "prodml22:DataConditioning") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DataConditioning(soap, p, "prodml23:DataConditioning", "prodml23:DataConditioning") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DataConditioning(struct soap *soap, const char *URL, prodml22__DataConditioning const*p) +inline int soap_PATCH_prodml23__DataConditioning(struct soap *soap, const char *URL, prodml23__DataConditioning const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__DataConditioning(soap, p, "prodml22:DataConditioning", "prodml22:DataConditioning") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DataConditioning(soap, p, "prodml23:DataConditioning", "prodml23:DataConditioning") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DataConditioning(struct soap *soap, const char *URL, prodml22__DataConditioning const*p) +inline int soap_POST_send_prodml23__DataConditioning(struct soap *soap, const char *URL, prodml23__DataConditioning const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__DataConditioning(soap, p, "prodml22:DataConditioning", "prodml22:DataConditioning") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DataConditioning(soap, p, "prodml23:DataConditioning", "prodml23:DataConditioning") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DataConditioning * SOAP_FMAC4 soap_get_prodml22__DataConditioning(struct soap*, prodml22__DataConditioning *, const char*, const char*); +SOAP_FMAC3 prodml23__DataConditioning * SOAP_FMAC4 soap_get_prodml23__DataConditioning(struct soap*, prodml23__DataConditioning *, const char*, const char*); -inline int soap_read_prodml22__DataConditioning(struct soap *soap, prodml22__DataConditioning *p) +inline int soap_read_prodml23__DataConditioning(struct soap *soap, prodml23__DataConditioning *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DataConditioning(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DataConditioning(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DataConditioning(struct soap *soap, const char *URL, prodml22__DataConditioning *p) +inline int soap_GET_prodml23__DataConditioning(struct soap *soap, const char *URL, prodml23__DataConditioning *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DataConditioning(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DataConditioning(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DataConditioning(struct soap *soap, prodml22__DataConditioning *p) +inline int soap_POST_recv_prodml23__DataConditioning(struct soap *soap, prodml23__DataConditioning *p) { - if (gsoap_eml2_3::soap_read_prodml22__DataConditioning(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DataConditioning(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState_DEFINED -inline void soap_default_prodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState *a) +inline void soap_default_prodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReservoirLifeCycleState - *a = SOAP_DEFAULT_prodml22__ReservoirLifeCycleState; +#ifdef SOAP_DEFAULT_prodml23__ReservoirLifeCycleState + *a = SOAP_DEFAULT_prodml23__ReservoirLifeCycleState; #else - *a = (prodml22__ReservoirLifeCycleState)0; + *a = (prodml23__ReservoirLifeCycleState)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirLifeCycleState(struct soap*, const char*, int, const prodml22__ReservoirLifeCycleState *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReservoirLifeCycleState2s(struct soap*, prodml22__ReservoirLifeCycleState); -SOAP_FMAC3 prodml22__ReservoirLifeCycleState * SOAP_FMAC4 soap_in_prodml22__ReservoirLifeCycleState(struct soap*, const char*, prodml22__ReservoirLifeCycleState *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReservoirLifeCycleState(struct soap*, const char*, prodml22__ReservoirLifeCycleState *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirLifeCycleState(struct soap*, const char*, int, const prodml23__ReservoirLifeCycleState *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReservoirLifeCycleState2s(struct soap*, prodml23__ReservoirLifeCycleState); +SOAP_FMAC3 prodml23__ReservoirLifeCycleState * SOAP_FMAC4 soap_in_prodml23__ReservoirLifeCycleState(struct soap*, const char*, prodml23__ReservoirLifeCycleState *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReservoirLifeCycleState(struct soap*, const char*, prodml23__ReservoirLifeCycleState *); -SOAP_FMAC3 prodml22__ReservoirLifeCycleState * SOAP_FMAC4 soap_new_prodml22__ReservoirLifeCycleState(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReservoirLifeCycleState(struct soap*, const prodml22__ReservoirLifeCycleState *, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirLifeCycleState * SOAP_FMAC4 soap_new_prodml23__ReservoirLifeCycleState(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReservoirLifeCycleState(struct soap*, const prodml23__ReservoirLifeCycleState *, const char*, const char*); -inline int soap_write_prodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState const*p) +inline int soap_write_prodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReservoirLifeCycleState(soap, p, "prodml22:ReservoirLifeCycleState", "prodml22:ReservoirLifeCycleState") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReservoirLifeCycleState(soap, p, "prodml23:ReservoirLifeCycleState", "prodml23:ReservoirLifeCycleState") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml22__ReservoirLifeCycleState const*p) +inline int soap_PUT_prodml23__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml23__ReservoirLifeCycleState const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReservoirLifeCycleState(soap, p, "prodml22:ReservoirLifeCycleState", "prodml22:ReservoirLifeCycleState") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReservoirLifeCycleState(soap, p, "prodml23:ReservoirLifeCycleState", "prodml23:ReservoirLifeCycleState") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml22__ReservoirLifeCycleState const*p) +inline int soap_PATCH_prodml23__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml23__ReservoirLifeCycleState const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReservoirLifeCycleState(soap, p, "prodml22:ReservoirLifeCycleState", "prodml22:ReservoirLifeCycleState") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReservoirLifeCycleState(soap, p, "prodml23:ReservoirLifeCycleState", "prodml23:ReservoirLifeCycleState") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml22__ReservoirLifeCycleState const*p) +inline int soap_POST_send_prodml23__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml23__ReservoirLifeCycleState const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReservoirLifeCycleState(soap, p, "prodml22:ReservoirLifeCycleState", "prodml22:ReservoirLifeCycleState") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReservoirLifeCycleState(soap, p, "prodml23:ReservoirLifeCycleState", "prodml23:ReservoirLifeCycleState") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReservoirLifeCycleState * SOAP_FMAC4 soap_get_prodml22__ReservoirLifeCycleState(struct soap*, prodml22__ReservoirLifeCycleState *, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirLifeCycleState * SOAP_FMAC4 soap_get_prodml23__ReservoirLifeCycleState(struct soap*, prodml23__ReservoirLifeCycleState *, const char*, const char*); -inline int soap_read_prodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState *p) +inline int soap_read_prodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReservoirLifeCycleState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReservoirLifeCycleState(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml22__ReservoirLifeCycleState *p) +inline int soap_GET_prodml23__ReservoirLifeCycleState(struct soap *soap, const char *URL, prodml23__ReservoirLifeCycleState *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReservoirLifeCycleState(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReservoirLifeCycleState(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReservoirLifeCycleState(struct soap *soap, prodml22__ReservoirLifeCycleState *p) +inline int soap_POST_recv_prodml23__ReservoirLifeCycleState(struct soap *soap, prodml23__ReservoirLifeCycleState *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReservoirLifeCycleState(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReservoirLifeCycleState(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent_DEFINED -inline void soap_default_prodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent *a) +inline void soap_default_prodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PhasePresent - *a = SOAP_DEFAULT_prodml22__PhasePresent; +#ifdef SOAP_DEFAULT_prodml23__PhasePresent + *a = SOAP_DEFAULT_prodml23__PhasePresent; #else - *a = (prodml22__PhasePresent)0; + *a = (prodml23__PhasePresent)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PhasePresent(struct soap*, const char*, int, const prodml22__PhasePresent *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PhasePresent2s(struct soap*, prodml22__PhasePresent); -SOAP_FMAC3 prodml22__PhasePresent * SOAP_FMAC4 soap_in_prodml22__PhasePresent(struct soap*, const char*, prodml22__PhasePresent *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PhasePresent(struct soap*, const char*, prodml22__PhasePresent *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PhasePresent(struct soap*, const char*, int, const prodml23__PhasePresent *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PhasePresent2s(struct soap*, prodml23__PhasePresent); +SOAP_FMAC3 prodml23__PhasePresent * SOAP_FMAC4 soap_in_prodml23__PhasePresent(struct soap*, const char*, prodml23__PhasePresent *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PhasePresent(struct soap*, const char*, prodml23__PhasePresent *); -SOAP_FMAC3 prodml22__PhasePresent * SOAP_FMAC4 soap_new_prodml22__PhasePresent(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PhasePresent(struct soap*, const prodml22__PhasePresent *, const char*, const char*); +SOAP_FMAC3 prodml23__PhasePresent * SOAP_FMAC4 soap_new_prodml23__PhasePresent(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PhasePresent(struct soap*, const prodml23__PhasePresent *, const char*, const char*); -inline int soap_write_prodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent const*p) +inline int soap_write_prodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PhasePresent(soap, p, "prodml22:PhasePresent", "prodml22:PhasePresent") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PhasePresent(soap, p, "prodml23:PhasePresent", "prodml23:PhasePresent") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PhasePresent(struct soap *soap, const char *URL, prodml22__PhasePresent const*p) +inline int soap_PUT_prodml23__PhasePresent(struct soap *soap, const char *URL, prodml23__PhasePresent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PhasePresent(soap, p, "prodml22:PhasePresent", "prodml22:PhasePresent") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PhasePresent(soap, p, "prodml23:PhasePresent", "prodml23:PhasePresent") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PhasePresent(struct soap *soap, const char *URL, prodml22__PhasePresent const*p) +inline int soap_PATCH_prodml23__PhasePresent(struct soap *soap, const char *URL, prodml23__PhasePresent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PhasePresent(soap, p, "prodml22:PhasePresent", "prodml22:PhasePresent") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PhasePresent(soap, p, "prodml23:PhasePresent", "prodml23:PhasePresent") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PhasePresent(struct soap *soap, const char *URL, prodml22__PhasePresent const*p) +inline int soap_POST_send_prodml23__PhasePresent(struct soap *soap, const char *URL, prodml23__PhasePresent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PhasePresent(soap, p, "prodml22:PhasePresent", "prodml22:PhasePresent") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PhasePresent(soap, p, "prodml23:PhasePresent", "prodml23:PhasePresent") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PhasePresent * SOAP_FMAC4 soap_get_prodml22__PhasePresent(struct soap*, prodml22__PhasePresent *, const char*, const char*); +SOAP_FMAC3 prodml23__PhasePresent * SOAP_FMAC4 soap_get_prodml23__PhasePresent(struct soap*, prodml23__PhasePresent *, const char*, const char*); -inline int soap_read_prodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent *p) +inline int soap_read_prodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PhasePresent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PhasePresent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PhasePresent(struct soap *soap, const char *URL, prodml22__PhasePresent *p) +inline int soap_GET_prodml23__PhasePresent(struct soap *soap, const char *URL, prodml23__PhasePresent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PhasePresent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PhasePresent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PhasePresent(struct soap *soap, prodml22__PhasePresent *p) +inline int soap_POST_recv_prodml23__PhasePresent(struct soap *soap, prodml23__PhasePresent *p) { - if (gsoap_eml2_3::soap_read_prodml22__PhasePresent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PhasePresent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind_DEFINED -inline void soap_default_prodml22__VolumeReferenceKind(struct soap *soap, prodml22__VolumeReferenceKind *a) +inline void soap_default_prodml23__VolumeReferenceKind(struct soap *soap, prodml23__VolumeReferenceKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__VolumeReferenceKind - *a = SOAP_DEFAULT_prodml22__VolumeReferenceKind; +#ifdef SOAP_DEFAULT_prodml23__VolumeReferenceKind + *a = SOAP_DEFAULT_prodml23__VolumeReferenceKind; #else - *a = (prodml22__VolumeReferenceKind)0; + *a = (prodml23__VolumeReferenceKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VolumeReferenceKind(struct soap*, const char*, int, const prodml22__VolumeReferenceKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__VolumeReferenceKind2s(struct soap*, prodml22__VolumeReferenceKind); -SOAP_FMAC3 prodml22__VolumeReferenceKind * SOAP_FMAC4 soap_in_prodml22__VolumeReferenceKind(struct soap*, const char*, prodml22__VolumeReferenceKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__VolumeReferenceKind(struct soap*, const char*, prodml22__VolumeReferenceKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VolumeReferenceKind(struct soap*, const char*, int, const prodml23__VolumeReferenceKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__VolumeReferenceKind2s(struct soap*, prodml23__VolumeReferenceKind); +SOAP_FMAC3 prodml23__VolumeReferenceKind * SOAP_FMAC4 soap_in_prodml23__VolumeReferenceKind(struct soap*, const char*, prodml23__VolumeReferenceKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__VolumeReferenceKind(struct soap*, const char*, prodml23__VolumeReferenceKind *); -SOAP_FMAC3 prodml22__VolumeReferenceKind * SOAP_FMAC4 soap_new_prodml22__VolumeReferenceKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__VolumeReferenceKind(struct soap*, const prodml22__VolumeReferenceKind *, const char*, const char*); +SOAP_FMAC3 prodml23__VolumeReferenceKind * SOAP_FMAC4 soap_new_prodml23__VolumeReferenceKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__VolumeReferenceKind(struct soap*, const prodml23__VolumeReferenceKind *, const char*, const char*); -inline int soap_write_prodml22__VolumeReferenceKind(struct soap *soap, prodml22__VolumeReferenceKind const*p) +inline int soap_write_prodml23__VolumeReferenceKind(struct soap *soap, prodml23__VolumeReferenceKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKind(soap, p, "prodml22:VolumeReferenceKind", "prodml22:VolumeReferenceKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKind(soap, p, "prodml23:VolumeReferenceKind", "prodml23:VolumeReferenceKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__VolumeReferenceKind(struct soap *soap, const char *URL, prodml22__VolumeReferenceKind const*p) +inline int soap_PUT_prodml23__VolumeReferenceKind(struct soap *soap, const char *URL, prodml23__VolumeReferenceKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKind(soap, p, "prodml22:VolumeReferenceKind", "prodml22:VolumeReferenceKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKind(soap, p, "prodml23:VolumeReferenceKind", "prodml23:VolumeReferenceKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__VolumeReferenceKind(struct soap *soap, const char *URL, prodml22__VolumeReferenceKind const*p) +inline int soap_PATCH_prodml23__VolumeReferenceKind(struct soap *soap, const char *URL, prodml23__VolumeReferenceKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKind(soap, p, "prodml22:VolumeReferenceKind", "prodml22:VolumeReferenceKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKind(soap, p, "prodml23:VolumeReferenceKind", "prodml23:VolumeReferenceKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__VolumeReferenceKind(struct soap *soap, const char *URL, prodml22__VolumeReferenceKind const*p) +inline int soap_POST_send_prodml23__VolumeReferenceKind(struct soap *soap, const char *URL, prodml23__VolumeReferenceKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKind(soap, p, "prodml22:VolumeReferenceKind", "prodml22:VolumeReferenceKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKind(soap, p, "prodml23:VolumeReferenceKind", "prodml23:VolumeReferenceKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__VolumeReferenceKind * SOAP_FMAC4 soap_get_prodml22__VolumeReferenceKind(struct soap*, prodml22__VolumeReferenceKind *, const char*, const char*); +SOAP_FMAC3 prodml23__VolumeReferenceKind * SOAP_FMAC4 soap_get_prodml23__VolumeReferenceKind(struct soap*, prodml23__VolumeReferenceKind *, const char*, const char*); -inline int soap_read_prodml22__VolumeReferenceKind(struct soap *soap, prodml22__VolumeReferenceKind *p) +inline int soap_read_prodml23__VolumeReferenceKind(struct soap *soap, prodml23__VolumeReferenceKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__VolumeReferenceKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__VolumeReferenceKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__VolumeReferenceKind(struct soap *soap, const char *URL, prodml22__VolumeReferenceKind *p) +inline int soap_GET_prodml23__VolumeReferenceKind(struct soap *soap, const char *URL, prodml23__VolumeReferenceKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__VolumeReferenceKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__VolumeReferenceKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__VolumeReferenceKind(struct soap *soap, prodml22__VolumeReferenceKind *p) +inline int soap_POST_recv_prodml23__VolumeReferenceKind(struct soap *soap, prodml23__VolumeReferenceKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__VolumeReferenceKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__VolumeReferenceKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase_DEFINED -inline void soap_default_prodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase *a) +inline void soap_default_prodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ThermodynamicPhase - *a = SOAP_DEFAULT_prodml22__ThermodynamicPhase; +#ifdef SOAP_DEFAULT_prodml23__ThermodynamicPhase + *a = SOAP_DEFAULT_prodml23__ThermodynamicPhase; #else - *a = (prodml22__ThermodynamicPhase)0; + *a = (prodml23__ThermodynamicPhase)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ThermodynamicPhase(struct soap*, const char*, int, const prodml22__ThermodynamicPhase *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ThermodynamicPhase2s(struct soap*, prodml22__ThermodynamicPhase); -SOAP_FMAC3 prodml22__ThermodynamicPhase * SOAP_FMAC4 soap_in_prodml22__ThermodynamicPhase(struct soap*, const char*, prodml22__ThermodynamicPhase *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ThermodynamicPhase(struct soap*, const char*, prodml22__ThermodynamicPhase *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ThermodynamicPhase(struct soap*, const char*, int, const prodml23__ThermodynamicPhase *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ThermodynamicPhase2s(struct soap*, prodml23__ThermodynamicPhase); +SOAP_FMAC3 prodml23__ThermodynamicPhase * SOAP_FMAC4 soap_in_prodml23__ThermodynamicPhase(struct soap*, const char*, prodml23__ThermodynamicPhase *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ThermodynamicPhase(struct soap*, const char*, prodml23__ThermodynamicPhase *); -SOAP_FMAC3 prodml22__ThermodynamicPhase * SOAP_FMAC4 soap_new_prodml22__ThermodynamicPhase(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ThermodynamicPhase(struct soap*, const prodml22__ThermodynamicPhase *, const char*, const char*); +SOAP_FMAC3 prodml23__ThermodynamicPhase * SOAP_FMAC4 soap_new_prodml23__ThermodynamicPhase(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ThermodynamicPhase(struct soap*, const prodml23__ThermodynamicPhase *, const char*, const char*); -inline int soap_write_prodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase const*p) +inline int soap_write_prodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ThermodynamicPhase(soap, p, "prodml22:ThermodynamicPhase", "prodml22:ThermodynamicPhase") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ThermodynamicPhase(soap, p, "prodml23:ThermodynamicPhase", "prodml23:ThermodynamicPhase") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ThermodynamicPhase(struct soap *soap, const char *URL, prodml22__ThermodynamicPhase const*p) +inline int soap_PUT_prodml23__ThermodynamicPhase(struct soap *soap, const char *URL, prodml23__ThermodynamicPhase const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ThermodynamicPhase(soap, p, "prodml22:ThermodynamicPhase", "prodml22:ThermodynamicPhase") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ThermodynamicPhase(soap, p, "prodml23:ThermodynamicPhase", "prodml23:ThermodynamicPhase") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ThermodynamicPhase(struct soap *soap, const char *URL, prodml22__ThermodynamicPhase const*p) +inline int soap_PATCH_prodml23__ThermodynamicPhase(struct soap *soap, const char *URL, prodml23__ThermodynamicPhase const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ThermodynamicPhase(soap, p, "prodml22:ThermodynamicPhase", "prodml22:ThermodynamicPhase") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ThermodynamicPhase(soap, p, "prodml23:ThermodynamicPhase", "prodml23:ThermodynamicPhase") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ThermodynamicPhase(struct soap *soap, const char *URL, prodml22__ThermodynamicPhase const*p) +inline int soap_POST_send_prodml23__ThermodynamicPhase(struct soap *soap, const char *URL, prodml23__ThermodynamicPhase const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ThermodynamicPhase(soap, p, "prodml22:ThermodynamicPhase", "prodml22:ThermodynamicPhase") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ThermodynamicPhase(soap, p, "prodml23:ThermodynamicPhase", "prodml23:ThermodynamicPhase") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ThermodynamicPhase * SOAP_FMAC4 soap_get_prodml22__ThermodynamicPhase(struct soap*, prodml22__ThermodynamicPhase *, const char*, const char*); +SOAP_FMAC3 prodml23__ThermodynamicPhase * SOAP_FMAC4 soap_get_prodml23__ThermodynamicPhase(struct soap*, prodml23__ThermodynamicPhase *, const char*, const char*); -inline int soap_read_prodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase *p) +inline int soap_read_prodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ThermodynamicPhase(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ThermodynamicPhase(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ThermodynamicPhase(struct soap *soap, const char *URL, prodml22__ThermodynamicPhase *p) +inline int soap_GET_prodml23__ThermodynamicPhase(struct soap *soap, const char *URL, prodml23__ThermodynamicPhase *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ThermodynamicPhase(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ThermodynamicPhase(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ThermodynamicPhase(struct soap *soap, prodml22__ThermodynamicPhase *p) +inline int soap_POST_recv_prodml23__ThermodynamicPhase(struct soap *soap, prodml23__ThermodynamicPhase *p) { - if (gsoap_eml2_3::soap_read_prodml22__ThermodynamicPhase(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ThermodynamicPhase(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality_DEFINED -inline void soap_default_prodml22__SampleQuality(struct soap *soap, prodml22__SampleQuality *a) +inline void soap_default_prodml23__SampleQuality(struct soap *soap, prodml23__SampleQuality *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__SampleQuality - *a = SOAP_DEFAULT_prodml22__SampleQuality; +#ifdef SOAP_DEFAULT_prodml23__SampleQuality + *a = SOAP_DEFAULT_prodml23__SampleQuality; #else - *a = (prodml22__SampleQuality)0; + *a = (prodml23__SampleQuality)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleQuality(struct soap*, const char*, int, const prodml22__SampleQuality *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SampleQuality2s(struct soap*, prodml22__SampleQuality); -SOAP_FMAC3 prodml22__SampleQuality * SOAP_FMAC4 soap_in_prodml22__SampleQuality(struct soap*, const char*, prodml22__SampleQuality *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SampleQuality(struct soap*, const char*, prodml22__SampleQuality *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleQuality(struct soap*, const char*, int, const prodml23__SampleQuality *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SampleQuality2s(struct soap*, prodml23__SampleQuality); +SOAP_FMAC3 prodml23__SampleQuality * SOAP_FMAC4 soap_in_prodml23__SampleQuality(struct soap*, const char*, prodml23__SampleQuality *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SampleQuality(struct soap*, const char*, prodml23__SampleQuality *); -SOAP_FMAC3 prodml22__SampleQuality * SOAP_FMAC4 soap_new_prodml22__SampleQuality(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SampleQuality(struct soap*, const prodml22__SampleQuality *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleQuality * SOAP_FMAC4 soap_new_prodml23__SampleQuality(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SampleQuality(struct soap*, const prodml23__SampleQuality *, const char*, const char*); -inline int soap_write_prodml22__SampleQuality(struct soap *soap, prodml22__SampleQuality const*p) +inline int soap_write_prodml23__SampleQuality(struct soap *soap, prodml23__SampleQuality const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SampleQuality(soap, p, "prodml22:SampleQuality", "prodml22:SampleQuality") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SampleQuality(soap, p, "prodml23:SampleQuality", "prodml23:SampleQuality") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SampleQuality(struct soap *soap, const char *URL, prodml22__SampleQuality const*p) +inline int soap_PUT_prodml23__SampleQuality(struct soap *soap, const char *URL, prodml23__SampleQuality const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SampleQuality(soap, p, "prodml22:SampleQuality", "prodml22:SampleQuality") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SampleQuality(soap, p, "prodml23:SampleQuality", "prodml23:SampleQuality") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SampleQuality(struct soap *soap, const char *URL, prodml22__SampleQuality const*p) +inline int soap_PATCH_prodml23__SampleQuality(struct soap *soap, const char *URL, prodml23__SampleQuality const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SampleQuality(soap, p, "prodml22:SampleQuality", "prodml22:SampleQuality") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SampleQuality(soap, p, "prodml23:SampleQuality", "prodml23:SampleQuality") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SampleQuality(struct soap *soap, const char *URL, prodml22__SampleQuality const*p) +inline int soap_POST_send_prodml23__SampleQuality(struct soap *soap, const char *URL, prodml23__SampleQuality const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SampleQuality(soap, p, "prodml22:SampleQuality", "prodml22:SampleQuality") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SampleQuality(soap, p, "prodml23:SampleQuality", "prodml23:SampleQuality") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleQuality * SOAP_FMAC4 soap_get_prodml22__SampleQuality(struct soap*, prodml22__SampleQuality *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleQuality * SOAP_FMAC4 soap_get_prodml23__SampleQuality(struct soap*, prodml23__SampleQuality *, const char*, const char*); -inline int soap_read_prodml22__SampleQuality(struct soap *soap, prodml22__SampleQuality *p) +inline int soap_read_prodml23__SampleQuality(struct soap *soap, prodml23__SampleQuality *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SampleQuality(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SampleQuality(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SampleQuality(struct soap *soap, const char *URL, prodml22__SampleQuality *p) +inline int soap_GET_prodml23__SampleQuality(struct soap *soap, const char *URL, prodml23__SampleQuality *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SampleQuality(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SampleQuality(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SampleQuality(struct soap *soap, prodml22__SampleQuality *p) +inline int soap_POST_recv_prodml23__SampleQuality(struct soap *soap, prodml23__SampleQuality *p) { - if (gsoap_eml2_3::soap_read_prodml22__SampleQuality(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SampleQuality(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind_DEFINED -inline void soap_default_prodml22__OrganicAcidKind(struct soap *soap, prodml22__OrganicAcidKind *a) +inline void soap_default_prodml23__OrganicAcidKind(struct soap *soap, prodml23__OrganicAcidKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__OrganicAcidKind - *a = SOAP_DEFAULT_prodml22__OrganicAcidKind; +#ifdef SOAP_DEFAULT_prodml23__OrganicAcidKind + *a = SOAP_DEFAULT_prodml23__OrganicAcidKind; #else - *a = (prodml22__OrganicAcidKind)0; + *a = (prodml23__OrganicAcidKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrganicAcidKind(struct soap*, const char*, int, const prodml22__OrganicAcidKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__OrganicAcidKind2s(struct soap*, prodml22__OrganicAcidKind); -SOAP_FMAC3 prodml22__OrganicAcidKind * SOAP_FMAC4 soap_in_prodml22__OrganicAcidKind(struct soap*, const char*, prodml22__OrganicAcidKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__OrganicAcidKind(struct soap*, const char*, prodml22__OrganicAcidKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrganicAcidKind(struct soap*, const char*, int, const prodml23__OrganicAcidKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__OrganicAcidKind2s(struct soap*, prodml23__OrganicAcidKind); +SOAP_FMAC3 prodml23__OrganicAcidKind * SOAP_FMAC4 soap_in_prodml23__OrganicAcidKind(struct soap*, const char*, prodml23__OrganicAcidKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__OrganicAcidKind(struct soap*, const char*, prodml23__OrganicAcidKind *); -SOAP_FMAC3 prodml22__OrganicAcidKind * SOAP_FMAC4 soap_new_prodml22__OrganicAcidKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OrganicAcidKind(struct soap*, const prodml22__OrganicAcidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__OrganicAcidKind * SOAP_FMAC4 soap_new_prodml23__OrganicAcidKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OrganicAcidKind(struct soap*, const prodml23__OrganicAcidKind *, const char*, const char*); -inline int soap_write_prodml22__OrganicAcidKind(struct soap *soap, prodml22__OrganicAcidKind const*p) +inline int soap_write_prodml23__OrganicAcidKind(struct soap *soap, prodml23__OrganicAcidKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKind(soap, p, "prodml22:OrganicAcidKind", "prodml22:OrganicAcidKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKind(soap, p, "prodml23:OrganicAcidKind", "prodml23:OrganicAcidKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__OrganicAcidKind(struct soap *soap, const char *URL, prodml22__OrganicAcidKind const*p) +inline int soap_PUT_prodml23__OrganicAcidKind(struct soap *soap, const char *URL, prodml23__OrganicAcidKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKind(soap, p, "prodml22:OrganicAcidKind", "prodml22:OrganicAcidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKind(soap, p, "prodml23:OrganicAcidKind", "prodml23:OrganicAcidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrganicAcidKind(struct soap *soap, const char *URL, prodml22__OrganicAcidKind const*p) +inline int soap_PATCH_prodml23__OrganicAcidKind(struct soap *soap, const char *URL, prodml23__OrganicAcidKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKind(soap, p, "prodml22:OrganicAcidKind", "prodml22:OrganicAcidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKind(soap, p, "prodml23:OrganicAcidKind", "prodml23:OrganicAcidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrganicAcidKind(struct soap *soap, const char *URL, prodml22__OrganicAcidKind const*p) +inline int soap_POST_send_prodml23__OrganicAcidKind(struct soap *soap, const char *URL, prodml23__OrganicAcidKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKind(soap, p, "prodml22:OrganicAcidKind", "prodml22:OrganicAcidKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKind(soap, p, "prodml23:OrganicAcidKind", "prodml23:OrganicAcidKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OrganicAcidKind * SOAP_FMAC4 soap_get_prodml22__OrganicAcidKind(struct soap*, prodml22__OrganicAcidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__OrganicAcidKind * SOAP_FMAC4 soap_get_prodml23__OrganicAcidKind(struct soap*, prodml23__OrganicAcidKind *, const char*, const char*); -inline int soap_read_prodml22__OrganicAcidKind(struct soap *soap, prodml22__OrganicAcidKind *p) +inline int soap_read_prodml23__OrganicAcidKind(struct soap *soap, prodml23__OrganicAcidKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrganicAcidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrganicAcidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrganicAcidKind(struct soap *soap, const char *URL, prodml22__OrganicAcidKind *p) +inline int soap_GET_prodml23__OrganicAcidKind(struct soap *soap, const char *URL, prodml23__OrganicAcidKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrganicAcidKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrganicAcidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrganicAcidKind(struct soap *soap, prodml22__OrganicAcidKind *p) +inline int soap_POST_recv_prodml23__OrganicAcidKind(struct soap *soap, prodml23__OrganicAcidKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrganicAcidKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrganicAcidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant_DEFINED -inline void soap_default_prodml22__FluidContaminant(struct soap *soap, prodml22__FluidContaminant *a) +inline void soap_default_prodml23__FluidContaminant(struct soap *soap, prodml23__FluidContaminant *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FluidContaminant - *a = SOAP_DEFAULT_prodml22__FluidContaminant; +#ifdef SOAP_DEFAULT_prodml23__FluidContaminant + *a = SOAP_DEFAULT_prodml23__FluidContaminant; #else - *a = (prodml22__FluidContaminant)0; + *a = (prodml23__FluidContaminant)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidContaminant(struct soap*, const char*, int, const prodml22__FluidContaminant *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidContaminant2s(struct soap*, prodml22__FluidContaminant); -SOAP_FMAC3 prodml22__FluidContaminant * SOAP_FMAC4 soap_in_prodml22__FluidContaminant(struct soap*, const char*, prodml22__FluidContaminant *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidContaminant(struct soap*, const char*, prodml22__FluidContaminant *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidContaminant(struct soap*, const char*, int, const prodml23__FluidContaminant *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidContaminant2s(struct soap*, prodml23__FluidContaminant); +SOAP_FMAC3 prodml23__FluidContaminant * SOAP_FMAC4 soap_in_prodml23__FluidContaminant(struct soap*, const char*, prodml23__FluidContaminant *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidContaminant(struct soap*, const char*, prodml23__FluidContaminant *); -SOAP_FMAC3 prodml22__FluidContaminant * SOAP_FMAC4 soap_new_prodml22__FluidContaminant(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidContaminant(struct soap*, const prodml22__FluidContaminant *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidContaminant * SOAP_FMAC4 soap_new_prodml23__FluidContaminant(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidContaminant(struct soap*, const prodml23__FluidContaminant *, const char*, const char*); -inline int soap_write_prodml22__FluidContaminant(struct soap *soap, prodml22__FluidContaminant const*p) +inline int soap_write_prodml23__FluidContaminant(struct soap *soap, prodml23__FluidContaminant const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidContaminant(soap, p, "prodml22:FluidContaminant", "prodml22:FluidContaminant") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidContaminant(soap, p, "prodml23:FluidContaminant", "prodml23:FluidContaminant") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidContaminant(struct soap *soap, const char *URL, prodml22__FluidContaminant const*p) +inline int soap_PUT_prodml23__FluidContaminant(struct soap *soap, const char *URL, prodml23__FluidContaminant const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidContaminant(soap, p, "prodml22:FluidContaminant", "prodml22:FluidContaminant") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidContaminant(soap, p, "prodml23:FluidContaminant", "prodml23:FluidContaminant") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidContaminant(struct soap *soap, const char *URL, prodml22__FluidContaminant const*p) +inline int soap_PATCH_prodml23__FluidContaminant(struct soap *soap, const char *URL, prodml23__FluidContaminant const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidContaminant(soap, p, "prodml22:FluidContaminant", "prodml22:FluidContaminant") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidContaminant(soap, p, "prodml23:FluidContaminant", "prodml23:FluidContaminant") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidContaminant(struct soap *soap, const char *URL, prodml22__FluidContaminant const*p) +inline int soap_POST_send_prodml23__FluidContaminant(struct soap *soap, const char *URL, prodml23__FluidContaminant const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidContaminant(soap, p, "prodml22:FluidContaminant", "prodml22:FluidContaminant") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidContaminant(soap, p, "prodml23:FluidContaminant", "prodml23:FluidContaminant") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidContaminant * SOAP_FMAC4 soap_get_prodml22__FluidContaminant(struct soap*, prodml22__FluidContaminant *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidContaminant * SOAP_FMAC4 soap_get_prodml23__FluidContaminant(struct soap*, prodml23__FluidContaminant *, const char*, const char*); -inline int soap_read_prodml22__FluidContaminant(struct soap *soap, prodml22__FluidContaminant *p) +inline int soap_read_prodml23__FluidContaminant(struct soap *soap, prodml23__FluidContaminant *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidContaminant(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidContaminant(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidContaminant(struct soap *soap, const char *URL, prodml22__FluidContaminant *p) +inline int soap_GET_prodml23__FluidContaminant(struct soap *soap, const char *URL, prodml23__FluidContaminant *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidContaminant(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidContaminant(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidContaminant(struct soap *soap, prodml22__FluidContaminant *p) +inline int soap_POST_recv_prodml23__FluidContaminant(struct soap *soap, prodml23__FluidContaminant *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidContaminant(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidContaminant(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition_DEFINED -inline void soap_default_prodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition *a) +inline void soap_default_prodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FluidAnalysisStepCondition - *a = SOAP_DEFAULT_prodml22__FluidAnalysisStepCondition; +#ifdef SOAP_DEFAULT_prodml23__FluidAnalysisStepCondition + *a = SOAP_DEFAULT_prodml23__FluidAnalysisStepCondition; #else - *a = (prodml22__FluidAnalysisStepCondition)0; + *a = (prodml23__FluidAnalysisStepCondition)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysisStepCondition(struct soap*, const char*, int, const prodml22__FluidAnalysisStepCondition *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FluidAnalysisStepCondition2s(struct soap*, prodml22__FluidAnalysisStepCondition); -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition * SOAP_FMAC4 soap_in_prodml22__FluidAnalysisStepCondition(struct soap*, const char*, prodml22__FluidAnalysisStepCondition *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FluidAnalysisStepCondition(struct soap*, const char*, prodml22__FluidAnalysisStepCondition *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidAnalysisStepCondition(struct soap*, const char*, int, const prodml23__FluidAnalysisStepCondition *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FluidAnalysisStepCondition2s(struct soap*, prodml23__FluidAnalysisStepCondition); +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition * SOAP_FMAC4 soap_in_prodml23__FluidAnalysisStepCondition(struct soap*, const char*, prodml23__FluidAnalysisStepCondition *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FluidAnalysisStepCondition(struct soap*, const char*, prodml23__FluidAnalysisStepCondition *); -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition * SOAP_FMAC4 soap_new_prodml22__FluidAnalysisStepCondition(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidAnalysisStepCondition(struct soap*, const prodml22__FluidAnalysisStepCondition *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition * SOAP_FMAC4 soap_new_prodml23__FluidAnalysisStepCondition(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidAnalysisStepCondition(struct soap*, const prodml23__FluidAnalysisStepCondition *, const char*, const char*); -inline int soap_write_prodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition const*p) +inline int soap_write_prodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidAnalysisStepCondition(soap, p, "prodml22:FluidAnalysisStepCondition", "prodml22:FluidAnalysisStepCondition") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidAnalysisStepCondition(soap, p, "prodml23:FluidAnalysisStepCondition", "prodml23:FluidAnalysisStepCondition") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml22__FluidAnalysisStepCondition const*p) +inline int soap_PUT_prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml23__FluidAnalysisStepCondition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidAnalysisStepCondition(soap, p, "prodml22:FluidAnalysisStepCondition", "prodml22:FluidAnalysisStepCondition") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidAnalysisStepCondition(soap, p, "prodml23:FluidAnalysisStepCondition", "prodml23:FluidAnalysisStepCondition") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml22__FluidAnalysisStepCondition const*p) +inline int soap_PATCH_prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml23__FluidAnalysisStepCondition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidAnalysisStepCondition(soap, p, "prodml22:FluidAnalysisStepCondition", "prodml22:FluidAnalysisStepCondition") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidAnalysisStepCondition(soap, p, "prodml23:FluidAnalysisStepCondition", "prodml23:FluidAnalysisStepCondition") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml22__FluidAnalysisStepCondition const*p) +inline int soap_POST_send_prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml23__FluidAnalysisStepCondition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FluidAnalysisStepCondition(soap, p, "prodml22:FluidAnalysisStepCondition", "prodml22:FluidAnalysisStepCondition") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidAnalysisStepCondition(soap, p, "prodml23:FluidAnalysisStepCondition", "prodml23:FluidAnalysisStepCondition") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition * SOAP_FMAC4 soap_get_prodml22__FluidAnalysisStepCondition(struct soap*, prodml22__FluidAnalysisStepCondition *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition * SOAP_FMAC4 soap_get_prodml23__FluidAnalysisStepCondition(struct soap*, prodml23__FluidAnalysisStepCondition *, const char*, const char*); -inline int soap_read_prodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition *p) +inline int soap_read_prodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidAnalysisStepCondition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidAnalysisStepCondition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml22__FluidAnalysisStepCondition *p) +inline int soap_GET_prodml23__FluidAnalysisStepCondition(struct soap *soap, const char *URL, prodml23__FluidAnalysisStepCondition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidAnalysisStepCondition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidAnalysisStepCondition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidAnalysisStepCondition(struct soap *soap, prodml22__FluidAnalysisStepCondition *p) +inline int soap_POST_recv_prodml23__FluidAnalysisStepCondition(struct soap *soap, prodml23__FluidAnalysisStepCondition *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidAnalysisStepCondition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidAnalysisStepCondition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind_DEFINED -inline void soap_default_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind *a) +inline void soap_default_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__DetectableLimitRelativeStateKind - *a = SOAP_DEFAULT_prodml22__DetectableLimitRelativeStateKind; +#ifdef SOAP_DEFAULT_prodml23__DetectableLimitRelativeStateKind + *a = SOAP_DEFAULT_prodml23__DetectableLimitRelativeStateKind; #else - *a = (prodml22__DetectableLimitRelativeStateKind)0; + *a = (prodml23__DetectableLimitRelativeStateKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DetectableLimitRelativeStateKind(struct soap*, const char*, int, const prodml22__DetectableLimitRelativeStateKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__DetectableLimitRelativeStateKind2s(struct soap*, prodml22__DetectableLimitRelativeStateKind); -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_in_prodml22__DetectableLimitRelativeStateKind(struct soap*, const char*, prodml22__DetectableLimitRelativeStateKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__DetectableLimitRelativeStateKind(struct soap*, const char*, prodml22__DetectableLimitRelativeStateKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DetectableLimitRelativeStateKind(struct soap*, const char*, int, const prodml23__DetectableLimitRelativeStateKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__DetectableLimitRelativeStateKind2s(struct soap*, prodml23__DetectableLimitRelativeStateKind); +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_in_prodml23__DetectableLimitRelativeStateKind(struct soap*, const char*, prodml23__DetectableLimitRelativeStateKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__DetectableLimitRelativeStateKind(struct soap*, const char*, prodml23__DetectableLimitRelativeStateKind *); -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_new_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__DetectableLimitRelativeStateKind(struct soap*, const prodml22__DetectableLimitRelativeStateKind *, const char*, const char*); +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_new_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__DetectableLimitRelativeStateKind(struct soap*, const prodml23__DetectableLimitRelativeStateKind *, const char*, const char*); -inline int soap_write_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind const*p) +inline int soap_write_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__DetectableLimitRelativeStateKind(soap, p, "prodml22:DetectableLimitRelativeStateKind", "prodml22:DetectableLimitRelativeStateKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__DetectableLimitRelativeStateKind(soap, p, "prodml23:DetectableLimitRelativeStateKind", "prodml23:DetectableLimitRelativeStateKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml22__DetectableLimitRelativeStateKind const*p) +inline int soap_PUT_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml23__DetectableLimitRelativeStateKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__DetectableLimitRelativeStateKind(soap, p, "prodml22:DetectableLimitRelativeStateKind", "prodml22:DetectableLimitRelativeStateKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DetectableLimitRelativeStateKind(soap, p, "prodml23:DetectableLimitRelativeStateKind", "prodml23:DetectableLimitRelativeStateKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml22__DetectableLimitRelativeStateKind const*p) +inline int soap_PATCH_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml23__DetectableLimitRelativeStateKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__DetectableLimitRelativeStateKind(soap, p, "prodml22:DetectableLimitRelativeStateKind", "prodml22:DetectableLimitRelativeStateKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DetectableLimitRelativeStateKind(soap, p, "prodml23:DetectableLimitRelativeStateKind", "prodml23:DetectableLimitRelativeStateKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml22__DetectableLimitRelativeStateKind const*p) +inline int soap_POST_send_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml23__DetectableLimitRelativeStateKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__DetectableLimitRelativeStateKind(soap, p, "prodml22:DetectableLimitRelativeStateKind", "prodml22:DetectableLimitRelativeStateKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DetectableLimitRelativeStateKind(soap, p, "prodml23:DetectableLimitRelativeStateKind", "prodml23:DetectableLimitRelativeStateKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_get_prodml22__DetectableLimitRelativeStateKind(struct soap*, prodml22__DetectableLimitRelativeStateKind *, const char*, const char*); +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind * SOAP_FMAC4 soap_get_prodml23__DetectableLimitRelativeStateKind(struct soap*, prodml23__DetectableLimitRelativeStateKind *, const char*, const char*); -inline int soap_read_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind *p) +inline int soap_read_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DetectableLimitRelativeStateKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DetectableLimitRelativeStateKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml22__DetectableLimitRelativeStateKind *p) +inline int soap_GET_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, const char *URL, prodml23__DetectableLimitRelativeStateKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DetectableLimitRelativeStateKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DetectableLimitRelativeStateKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DetectableLimitRelativeStateKind(struct soap *soap, prodml22__DetectableLimitRelativeStateKind *p) +inline int soap_POST_recv_prodml23__DetectableLimitRelativeStateKind(struct soap *soap, prodml23__DetectableLimitRelativeStateKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__DetectableLimitRelativeStateKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DetectableLimitRelativeStateKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind_DEFINED -inline void soap_default_prodml22__CompressibilityKind(struct soap *soap, prodml22__CompressibilityKind *a) +inline void soap_default_prodml23__CompressibilityKind(struct soap *soap, prodml23__CompressibilityKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__CompressibilityKind - *a = SOAP_DEFAULT_prodml22__CompressibilityKind; +#ifdef SOAP_DEFAULT_prodml23__CompressibilityKind + *a = SOAP_DEFAULT_prodml23__CompressibilityKind; #else - *a = (prodml22__CompressibilityKind)0; + *a = (prodml23__CompressibilityKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CompressibilityKind(struct soap*, const char*, int, const prodml22__CompressibilityKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__CompressibilityKind2s(struct soap*, prodml22__CompressibilityKind); -SOAP_FMAC3 prodml22__CompressibilityKind * SOAP_FMAC4 soap_in_prodml22__CompressibilityKind(struct soap*, const char*, prodml22__CompressibilityKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CompressibilityKind(struct soap*, const char*, prodml22__CompressibilityKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CompressibilityKind(struct soap*, const char*, int, const prodml23__CompressibilityKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__CompressibilityKind2s(struct soap*, prodml23__CompressibilityKind); +SOAP_FMAC3 prodml23__CompressibilityKind * SOAP_FMAC4 soap_in_prodml23__CompressibilityKind(struct soap*, const char*, prodml23__CompressibilityKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__CompressibilityKind(struct soap*, const char*, prodml23__CompressibilityKind *); -SOAP_FMAC3 prodml22__CompressibilityKind * SOAP_FMAC4 soap_new_prodml22__CompressibilityKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CompressibilityKind(struct soap*, const prodml22__CompressibilityKind *, const char*, const char*); +SOAP_FMAC3 prodml23__CompressibilityKind * SOAP_FMAC4 soap_new_prodml23__CompressibilityKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CompressibilityKind(struct soap*, const prodml23__CompressibilityKind *, const char*, const char*); -inline int soap_write_prodml22__CompressibilityKind(struct soap *soap, prodml22__CompressibilityKind const*p) +inline int soap_write_prodml23__CompressibilityKind(struct soap *soap, prodml23__CompressibilityKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__CompressibilityKind(soap, p, "prodml22:CompressibilityKind", "prodml22:CompressibilityKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__CompressibilityKind(soap, p, "prodml23:CompressibilityKind", "prodml23:CompressibilityKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__CompressibilityKind(struct soap *soap, const char *URL, prodml22__CompressibilityKind const*p) +inline int soap_PUT_prodml23__CompressibilityKind(struct soap *soap, const char *URL, prodml23__CompressibilityKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CompressibilityKind(soap, p, "prodml22:CompressibilityKind", "prodml22:CompressibilityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CompressibilityKind(soap, p, "prodml23:CompressibilityKind", "prodml23:CompressibilityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CompressibilityKind(struct soap *soap, const char *URL, prodml22__CompressibilityKind const*p) +inline int soap_PATCH_prodml23__CompressibilityKind(struct soap *soap, const char *URL, prodml23__CompressibilityKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CompressibilityKind(soap, p, "prodml22:CompressibilityKind", "prodml22:CompressibilityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CompressibilityKind(soap, p, "prodml23:CompressibilityKind", "prodml23:CompressibilityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CompressibilityKind(struct soap *soap, const char *URL, prodml22__CompressibilityKind const*p) +inline int soap_POST_send_prodml23__CompressibilityKind(struct soap *soap, const char *URL, prodml23__CompressibilityKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CompressibilityKind(soap, p, "prodml22:CompressibilityKind", "prodml22:CompressibilityKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CompressibilityKind(soap, p, "prodml23:CompressibilityKind", "prodml23:CompressibilityKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CompressibilityKind * SOAP_FMAC4 soap_get_prodml22__CompressibilityKind(struct soap*, prodml22__CompressibilityKind *, const char*, const char*); +SOAP_FMAC3 prodml23__CompressibilityKind * SOAP_FMAC4 soap_get_prodml23__CompressibilityKind(struct soap*, prodml23__CompressibilityKind *, const char*, const char*); -inline int soap_read_prodml22__CompressibilityKind(struct soap *soap, prodml22__CompressibilityKind *p) +inline int soap_read_prodml23__CompressibilityKind(struct soap *soap, prodml23__CompressibilityKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CompressibilityKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CompressibilityKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CompressibilityKind(struct soap *soap, const char *URL, prodml22__CompressibilityKind *p) +inline int soap_GET_prodml23__CompressibilityKind(struct soap *soap, const char *URL, prodml23__CompressibilityKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CompressibilityKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CompressibilityKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CompressibilityKind(struct soap *soap, prodml22__CompressibilityKind *p) +inline int soap_POST_recv_prodml23__CompressibilityKind(struct soap *soap, prodml23__CompressibilityKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__CompressibilityKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CompressibilityKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind_DEFINED -inline void soap_default_prodml22__CationKind(struct soap *soap, prodml22__CationKind *a) +inline void soap_default_prodml23__CationKind(struct soap *soap, prodml23__CationKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__CationKind - *a = SOAP_DEFAULT_prodml22__CationKind; +#ifdef SOAP_DEFAULT_prodml23__CationKind + *a = SOAP_DEFAULT_prodml23__CationKind; #else - *a = (prodml22__CationKind)0; + *a = (prodml23__CationKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CationKind(struct soap*, const char*, int, const prodml22__CationKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__CationKind2s(struct soap*, prodml22__CationKind); -SOAP_FMAC3 prodml22__CationKind * SOAP_FMAC4 soap_in_prodml22__CationKind(struct soap*, const char*, prodml22__CationKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__CationKind(struct soap*, const char*, prodml22__CationKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CationKind(struct soap*, const char*, int, const prodml23__CationKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__CationKind2s(struct soap*, prodml23__CationKind); +SOAP_FMAC3 prodml23__CationKind * SOAP_FMAC4 soap_in_prodml23__CationKind(struct soap*, const char*, prodml23__CationKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__CationKind(struct soap*, const char*, prodml23__CationKind *); -SOAP_FMAC3 prodml22__CationKind * SOAP_FMAC4 soap_new_prodml22__CationKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CationKind(struct soap*, const prodml22__CationKind *, const char*, const char*); +SOAP_FMAC3 prodml23__CationKind * SOAP_FMAC4 soap_new_prodml23__CationKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CationKind(struct soap*, const prodml23__CationKind *, const char*, const char*); -inline int soap_write_prodml22__CationKind(struct soap *soap, prodml22__CationKind const*p) +inline int soap_write_prodml23__CationKind(struct soap *soap, prodml23__CationKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__CationKind(soap, p, "prodml22:CationKind", "prodml22:CationKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__CationKind(soap, p, "prodml23:CationKind", "prodml23:CationKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__CationKind(struct soap *soap, const char *URL, prodml22__CationKind const*p) +inline int soap_PUT_prodml23__CationKind(struct soap *soap, const char *URL, prodml23__CationKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CationKind(soap, p, "prodml22:CationKind", "prodml22:CationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CationKind(soap, p, "prodml23:CationKind", "prodml23:CationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CationKind(struct soap *soap, const char *URL, prodml22__CationKind const*p) +inline int soap_PATCH_prodml23__CationKind(struct soap *soap, const char *URL, prodml23__CationKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CationKind(soap, p, "prodml22:CationKind", "prodml22:CationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CationKind(soap, p, "prodml23:CationKind", "prodml23:CationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CationKind(struct soap *soap, const char *URL, prodml22__CationKind const*p) +inline int soap_POST_send_prodml23__CationKind(struct soap *soap, const char *URL, prodml23__CationKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__CationKind(soap, p, "prodml22:CationKind", "prodml22:CationKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CationKind(soap, p, "prodml23:CationKind", "prodml23:CationKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CationKind * SOAP_FMAC4 soap_get_prodml22__CationKind(struct soap*, prodml22__CationKind *, const char*, const char*); +SOAP_FMAC3 prodml23__CationKind * SOAP_FMAC4 soap_get_prodml23__CationKind(struct soap*, prodml23__CationKind *, const char*, const char*); -inline int soap_read_prodml22__CationKind(struct soap *soap, prodml22__CationKind *p) +inline int soap_read_prodml23__CationKind(struct soap *soap, prodml23__CationKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CationKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CationKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CationKind(struct soap *soap, const char *URL, prodml22__CationKind *p) +inline int soap_GET_prodml23__CationKind(struct soap *soap, const char *URL, prodml23__CationKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CationKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CationKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CationKind(struct soap *soap, prodml22__CationKind *p) +inline int soap_POST_recv_prodml23__CationKind(struct soap *soap, prodml23__CationKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__CationKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CationKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind_DEFINED -inline void soap_default_prodml22__AnionKind(struct soap *soap, prodml22__AnionKind *a) +inline void soap_default_prodml23__AnionKind(struct soap *soap, prodml23__AnionKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__AnionKind - *a = SOAP_DEFAULT_prodml22__AnionKind; +#ifdef SOAP_DEFAULT_prodml23__AnionKind + *a = SOAP_DEFAULT_prodml23__AnionKind; #else - *a = (prodml22__AnionKind)0; + *a = (prodml23__AnionKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AnionKind(struct soap*, const char*, int, const prodml22__AnionKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__AnionKind2s(struct soap*, prodml22__AnionKind); -SOAP_FMAC3 prodml22__AnionKind * SOAP_FMAC4 soap_in_prodml22__AnionKind(struct soap*, const char*, prodml22__AnionKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__AnionKind(struct soap*, const char*, prodml22__AnionKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AnionKind(struct soap*, const char*, int, const prodml23__AnionKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__AnionKind2s(struct soap*, prodml23__AnionKind); +SOAP_FMAC3 prodml23__AnionKind * SOAP_FMAC4 soap_in_prodml23__AnionKind(struct soap*, const char*, prodml23__AnionKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__AnionKind(struct soap*, const char*, prodml23__AnionKind *); -SOAP_FMAC3 prodml22__AnionKind * SOAP_FMAC4 soap_new_prodml22__AnionKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__AnionKind(struct soap*, const prodml22__AnionKind *, const char*, const char*); +SOAP_FMAC3 prodml23__AnionKind * SOAP_FMAC4 soap_new_prodml23__AnionKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__AnionKind(struct soap*, const prodml23__AnionKind *, const char*, const char*); -inline int soap_write_prodml22__AnionKind(struct soap *soap, prodml22__AnionKind const*p) +inline int soap_write_prodml23__AnionKind(struct soap *soap, prodml23__AnionKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__AnionKind(soap, p, "prodml22:AnionKind", "prodml22:AnionKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__AnionKind(soap, p, "prodml23:AnionKind", "prodml23:AnionKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__AnionKind(struct soap *soap, const char *URL, prodml22__AnionKind const*p) +inline int soap_PUT_prodml23__AnionKind(struct soap *soap, const char *URL, prodml23__AnionKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__AnionKind(soap, p, "prodml22:AnionKind", "prodml22:AnionKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__AnionKind(soap, p, "prodml23:AnionKind", "prodml23:AnionKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AnionKind(struct soap *soap, const char *URL, prodml22__AnionKind const*p) +inline int soap_PATCH_prodml23__AnionKind(struct soap *soap, const char *URL, prodml23__AnionKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__AnionKind(soap, p, "prodml22:AnionKind", "prodml22:AnionKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__AnionKind(soap, p, "prodml23:AnionKind", "prodml23:AnionKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AnionKind(struct soap *soap, const char *URL, prodml22__AnionKind const*p) +inline int soap_POST_send_prodml23__AnionKind(struct soap *soap, const char *URL, prodml23__AnionKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__AnionKind(soap, p, "prodml22:AnionKind", "prodml22:AnionKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__AnionKind(soap, p, "prodml23:AnionKind", "prodml23:AnionKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AnionKind * SOAP_FMAC4 soap_get_prodml22__AnionKind(struct soap*, prodml22__AnionKind *, const char*, const char*); +SOAP_FMAC3 prodml23__AnionKind * SOAP_FMAC4 soap_get_prodml23__AnionKind(struct soap*, prodml23__AnionKind *, const char*, const char*); -inline int soap_read_prodml22__AnionKind(struct soap *soap, prodml22__AnionKind *p) +inline int soap_read_prodml23__AnionKind(struct soap *soap, prodml23__AnionKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AnionKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AnionKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AnionKind(struct soap *soap, const char *URL, prodml22__AnionKind *p) +inline int soap_GET_prodml23__AnionKind(struct soap *soap, const char *URL, prodml23__AnionKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AnionKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AnionKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AnionKind(struct soap *soap, prodml22__AnionKind *p) +inline int soap_POST_recv_prodml23__AnionKind(struct soap *soap, prodml23__AnionKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__AnionKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AnionKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid_DEFINED -inline void soap_default_prodml22__WellFluid(struct soap *soap, prodml22__WellFluid *a) +inline void soap_default_prodml23__WellFluid(struct soap *soap, prodml23__WellFluid *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__WellFluid - *a = SOAP_DEFAULT_prodml22__WellFluid; +#ifdef SOAP_DEFAULT_prodml23__WellFluid + *a = SOAP_DEFAULT_prodml23__WellFluid; #else - *a = (prodml22__WellFluid)0; + *a = (prodml23__WellFluid)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellFluid(struct soap*, const char*, int, const prodml22__WellFluid *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellFluid2s(struct soap*, prodml22__WellFluid); -SOAP_FMAC3 prodml22__WellFluid * SOAP_FMAC4 soap_in_prodml22__WellFluid(struct soap*, const char*, prodml22__WellFluid *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellFluid(struct soap*, const char*, prodml22__WellFluid *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellFluid(struct soap*, const char*, int, const prodml23__WellFluid *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellFluid2s(struct soap*, prodml23__WellFluid); +SOAP_FMAC3 prodml23__WellFluid * SOAP_FMAC4 soap_in_prodml23__WellFluid(struct soap*, const char*, prodml23__WellFluid *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellFluid(struct soap*, const char*, prodml23__WellFluid *); -SOAP_FMAC3 prodml22__WellFluid * SOAP_FMAC4 soap_new_prodml22__WellFluid(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellFluid(struct soap*, const prodml22__WellFluid *, const char*, const char*); +SOAP_FMAC3 prodml23__WellFluid * SOAP_FMAC4 soap_new_prodml23__WellFluid(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellFluid(struct soap*, const prodml23__WellFluid *, const char*, const char*); -inline int soap_write_prodml22__WellFluid(struct soap *soap, prodml22__WellFluid const*p) +inline int soap_write_prodml23__WellFluid(struct soap *soap, prodml23__WellFluid const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__WellFluid(soap, p, "prodml22:WellFluid", "prodml22:WellFluid") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__WellFluid(soap, p, "prodml23:WellFluid", "prodml23:WellFluid") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__WellFluid(struct soap *soap, const char *URL, prodml22__WellFluid const*p) +inline int soap_PUT_prodml23__WellFluid(struct soap *soap, const char *URL, prodml23__WellFluid const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellFluid(soap, p, "prodml22:WellFluid", "prodml22:WellFluid") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellFluid(soap, p, "prodml23:WellFluid", "prodml23:WellFluid") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellFluid(struct soap *soap, const char *URL, prodml22__WellFluid const*p) +inline int soap_PATCH_prodml23__WellFluid(struct soap *soap, const char *URL, prodml23__WellFluid const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellFluid(soap, p, "prodml22:WellFluid", "prodml22:WellFluid") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellFluid(soap, p, "prodml23:WellFluid", "prodml23:WellFluid") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellFluid(struct soap *soap, const char *URL, prodml22__WellFluid const*p) +inline int soap_POST_send_prodml23__WellFluid(struct soap *soap, const char *URL, prodml23__WellFluid const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellFluid(soap, p, "prodml22:WellFluid", "prodml22:WellFluid") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellFluid(soap, p, "prodml23:WellFluid", "prodml23:WellFluid") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellFluid * SOAP_FMAC4 soap_get_prodml22__WellFluid(struct soap*, prodml22__WellFluid *, const char*, const char*); +SOAP_FMAC3 prodml23__WellFluid * SOAP_FMAC4 soap_get_prodml23__WellFluid(struct soap*, prodml23__WellFluid *, const char*, const char*); -inline int soap_read_prodml22__WellFluid(struct soap *soap, prodml22__WellFluid *p) +inline int soap_read_prodml23__WellFluid(struct soap *soap, prodml23__WellFluid *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellFluid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellFluid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellFluid(struct soap *soap, const char *URL, prodml22__WellFluid *p) +inline int soap_GET_prodml23__WellFluid(struct soap *soap, const char *URL, prodml23__WellFluid *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellFluid(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellFluid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellFluid(struct soap *soap, prodml22__WellFluid *p) +inline int soap_POST_recv_prodml23__WellFluid(struct soap *soap, prodml23__WellFluid *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellFluid(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellFluid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection_DEFINED -inline void soap_default_prodml22__WellDirection(struct soap *soap, prodml22__WellDirection *a) +inline void soap_default_prodml23__WellDirection(struct soap *soap, prodml23__WellDirection *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__WellDirection - *a = SOAP_DEFAULT_prodml22__WellDirection; +#ifdef SOAP_DEFAULT_prodml23__WellDirection + *a = SOAP_DEFAULT_prodml23__WellDirection; #else - *a = (prodml22__WellDirection)0; + *a = (prodml23__WellDirection)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellDirection(struct soap*, const char*, int, const prodml22__WellDirection *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__WellDirection2s(struct soap*, prodml22__WellDirection); -SOAP_FMAC3 prodml22__WellDirection * SOAP_FMAC4 soap_in_prodml22__WellDirection(struct soap*, const char*, prodml22__WellDirection *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__WellDirection(struct soap*, const char*, prodml22__WellDirection *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellDirection(struct soap*, const char*, int, const prodml23__WellDirection *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__WellDirection2s(struct soap*, prodml23__WellDirection); +SOAP_FMAC3 prodml23__WellDirection * SOAP_FMAC4 soap_in_prodml23__WellDirection(struct soap*, const char*, prodml23__WellDirection *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__WellDirection(struct soap*, const char*, prodml23__WellDirection *); -SOAP_FMAC3 prodml22__WellDirection * SOAP_FMAC4 soap_new_prodml22__WellDirection(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__WellDirection(struct soap*, const prodml22__WellDirection *, const char*, const char*); +SOAP_FMAC3 prodml23__WellDirection * SOAP_FMAC4 soap_new_prodml23__WellDirection(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__WellDirection(struct soap*, const prodml23__WellDirection *, const char*, const char*); -inline int soap_write_prodml22__WellDirection(struct soap *soap, prodml22__WellDirection const*p) +inline int soap_write_prodml23__WellDirection(struct soap *soap, prodml23__WellDirection const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__WellDirection(soap, p, "prodml22:WellDirection", "prodml22:WellDirection") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__WellDirection(soap, p, "prodml23:WellDirection", "prodml23:WellDirection") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__WellDirection(struct soap *soap, const char *URL, prodml22__WellDirection const*p) +inline int soap_PUT_prodml23__WellDirection(struct soap *soap, const char *URL, prodml23__WellDirection const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellDirection(soap, p, "prodml22:WellDirection", "prodml22:WellDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellDirection(soap, p, "prodml23:WellDirection", "prodml23:WellDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellDirection(struct soap *soap, const char *URL, prodml22__WellDirection const*p) +inline int soap_PATCH_prodml23__WellDirection(struct soap *soap, const char *URL, prodml23__WellDirection const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellDirection(soap, p, "prodml22:WellDirection", "prodml22:WellDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellDirection(soap, p, "prodml23:WellDirection", "prodml23:WellDirection") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellDirection(struct soap *soap, const char *URL, prodml22__WellDirection const*p) +inline int soap_POST_send_prodml23__WellDirection(struct soap *soap, const char *URL, prodml23__WellDirection const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__WellDirection(soap, p, "prodml22:WellDirection", "prodml22:WellDirection") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__WellDirection(soap, p, "prodml23:WellDirection", "prodml23:WellDirection") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellDirection * SOAP_FMAC4 soap_get_prodml22__WellDirection(struct soap*, prodml22__WellDirection *, const char*, const char*); +SOAP_FMAC3 prodml23__WellDirection * SOAP_FMAC4 soap_get_prodml23__WellDirection(struct soap*, prodml23__WellDirection *, const char*, const char*); -inline int soap_read_prodml22__WellDirection(struct soap *soap, prodml22__WellDirection *p) +inline int soap_read_prodml23__WellDirection(struct soap *soap, prodml23__WellDirection *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellDirection(struct soap *soap, const char *URL, prodml22__WellDirection *p) +inline int soap_GET_prodml23__WellDirection(struct soap *soap, const char *URL, prodml23__WellDirection *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellDirection(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellDirection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellDirection(struct soap *soap, prodml22__WellDirection *p) +inline int soap_POST_recv_prodml23__WellDirection(struct soap *soap, prodml23__WellDirection *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellDirection(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellDirection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus_DEFINED -inline void soap_default_prodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus *a) +inline void soap_default_prodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ValueStatus - *a = SOAP_DEFAULT_prodml22__ValueStatus; +#ifdef SOAP_DEFAULT_prodml23__ValueStatus + *a = SOAP_DEFAULT_prodml23__ValueStatus; #else - *a = (prodml22__ValueStatus)0; + *a = (prodml23__ValueStatus)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ValueStatus(struct soap*, const char*, int, const prodml22__ValueStatus *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ValueStatus2s(struct soap*, prodml22__ValueStatus); -SOAP_FMAC3 prodml22__ValueStatus * SOAP_FMAC4 soap_in_prodml22__ValueStatus(struct soap*, const char*, prodml22__ValueStatus *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ValueStatus(struct soap*, const char*, prodml22__ValueStatus *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ValueStatus(struct soap*, const char*, int, const prodml23__ValueStatus *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ValueStatus2s(struct soap*, prodml23__ValueStatus); +SOAP_FMAC3 prodml23__ValueStatus * SOAP_FMAC4 soap_in_prodml23__ValueStatus(struct soap*, const char*, prodml23__ValueStatus *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ValueStatus(struct soap*, const char*, prodml23__ValueStatus *); -SOAP_FMAC3 prodml22__ValueStatus * SOAP_FMAC4 soap_new_prodml22__ValueStatus(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ValueStatus(struct soap*, const prodml22__ValueStatus *, const char*, const char*); +SOAP_FMAC3 prodml23__ValueStatus * SOAP_FMAC4 soap_new_prodml23__ValueStatus(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ValueStatus(struct soap*, const prodml23__ValueStatus *, const char*, const char*); -inline int soap_write_prodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus const*p) +inline int soap_write_prodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ValueStatus(soap, p, "prodml22:ValueStatus", "prodml22:ValueStatus") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ValueStatus(soap, p, "prodml23:ValueStatus", "prodml23:ValueStatus") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ValueStatus(struct soap *soap, const char *URL, prodml22__ValueStatus const*p) +inline int soap_PUT_prodml23__ValueStatus(struct soap *soap, const char *URL, prodml23__ValueStatus const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ValueStatus(soap, p, "prodml22:ValueStatus", "prodml22:ValueStatus") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ValueStatus(soap, p, "prodml23:ValueStatus", "prodml23:ValueStatus") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ValueStatus(struct soap *soap, const char *URL, prodml22__ValueStatus const*p) +inline int soap_PATCH_prodml23__ValueStatus(struct soap *soap, const char *URL, prodml23__ValueStatus const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ValueStatus(soap, p, "prodml22:ValueStatus", "prodml22:ValueStatus") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ValueStatus(soap, p, "prodml23:ValueStatus", "prodml23:ValueStatus") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ValueStatus(struct soap *soap, const char *URL, prodml22__ValueStatus const*p) +inline int soap_POST_send_prodml23__ValueStatus(struct soap *soap, const char *URL, prodml23__ValueStatus const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ValueStatus(soap, p, "prodml22:ValueStatus", "prodml22:ValueStatus") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ValueStatus(soap, p, "prodml23:ValueStatus", "prodml23:ValueStatus") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ValueStatus * SOAP_FMAC4 soap_get_prodml22__ValueStatus(struct soap*, prodml22__ValueStatus *, const char*, const char*); +SOAP_FMAC3 prodml23__ValueStatus * SOAP_FMAC4 soap_get_prodml23__ValueStatus(struct soap*, prodml23__ValueStatus *, const char*, const char*); -inline int soap_read_prodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus *p) +inline int soap_read_prodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ValueStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ValueStatus(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ValueStatus(struct soap *soap, const char *URL, prodml22__ValueStatus *p) +inline int soap_GET_prodml23__ValueStatus(struct soap *soap, const char *URL, prodml23__ValueStatus *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ValueStatus(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ValueStatus(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ValueStatus(struct soap *soap, prodml22__ValueStatus *p) +inline int soap_POST_recv_prodml23__ValueStatus(struct soap *soap, prodml23__ValueStatus *p) { - if (gsoap_eml2_3::soap_read_prodml22__ValueStatus(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ValueStatus(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind_DEFINED -inline void soap_default_prodml22__SulfurComponentKind(struct soap *soap, prodml22__SulfurComponentKind *a) +inline void soap_default_prodml23__SulfurComponentKind(struct soap *soap, prodml23__SulfurComponentKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__SulfurComponentKind - *a = SOAP_DEFAULT_prodml22__SulfurComponentKind; +#ifdef SOAP_DEFAULT_prodml23__SulfurComponentKind + *a = SOAP_DEFAULT_prodml23__SulfurComponentKind; #else - *a = (prodml22__SulfurComponentKind)0; + *a = (prodml23__SulfurComponentKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SulfurComponentKind(struct soap*, const char*, int, const prodml22__SulfurComponentKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SulfurComponentKind2s(struct soap*, prodml22__SulfurComponentKind); -SOAP_FMAC3 prodml22__SulfurComponentKind * SOAP_FMAC4 soap_in_prodml22__SulfurComponentKind(struct soap*, const char*, prodml22__SulfurComponentKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SulfurComponentKind(struct soap*, const char*, prodml22__SulfurComponentKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SulfurComponentKind(struct soap*, const char*, int, const prodml23__SulfurComponentKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SulfurComponentKind2s(struct soap*, prodml23__SulfurComponentKind); +SOAP_FMAC3 prodml23__SulfurComponentKind * SOAP_FMAC4 soap_in_prodml23__SulfurComponentKind(struct soap*, const char*, prodml23__SulfurComponentKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SulfurComponentKind(struct soap*, const char*, prodml23__SulfurComponentKind *); -SOAP_FMAC3 prodml22__SulfurComponentKind * SOAP_FMAC4 soap_new_prodml22__SulfurComponentKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SulfurComponentKind(struct soap*, const prodml22__SulfurComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__SulfurComponentKind * SOAP_FMAC4 soap_new_prodml23__SulfurComponentKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SulfurComponentKind(struct soap*, const prodml23__SulfurComponentKind *, const char*, const char*); -inline int soap_write_prodml22__SulfurComponentKind(struct soap *soap, prodml22__SulfurComponentKind const*p) +inline int soap_write_prodml23__SulfurComponentKind(struct soap *soap, prodml23__SulfurComponentKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKind(soap, p, "prodml22:SulfurComponentKind", "prodml22:SulfurComponentKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKind(soap, p, "prodml23:SulfurComponentKind", "prodml23:SulfurComponentKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SulfurComponentKind(struct soap *soap, const char *URL, prodml22__SulfurComponentKind const*p) +inline int soap_PUT_prodml23__SulfurComponentKind(struct soap *soap, const char *URL, prodml23__SulfurComponentKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKind(soap, p, "prodml22:SulfurComponentKind", "prodml22:SulfurComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKind(soap, p, "prodml23:SulfurComponentKind", "prodml23:SulfurComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SulfurComponentKind(struct soap *soap, const char *URL, prodml22__SulfurComponentKind const*p) +inline int soap_PATCH_prodml23__SulfurComponentKind(struct soap *soap, const char *URL, prodml23__SulfurComponentKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKind(soap, p, "prodml22:SulfurComponentKind", "prodml22:SulfurComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKind(soap, p, "prodml23:SulfurComponentKind", "prodml23:SulfurComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SulfurComponentKind(struct soap *soap, const char *URL, prodml22__SulfurComponentKind const*p) +inline int soap_POST_send_prodml23__SulfurComponentKind(struct soap *soap, const char *URL, prodml23__SulfurComponentKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKind(soap, p, "prodml22:SulfurComponentKind", "prodml22:SulfurComponentKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKind(soap, p, "prodml23:SulfurComponentKind", "prodml23:SulfurComponentKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SulfurComponentKind * SOAP_FMAC4 soap_get_prodml22__SulfurComponentKind(struct soap*, prodml22__SulfurComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__SulfurComponentKind * SOAP_FMAC4 soap_get_prodml23__SulfurComponentKind(struct soap*, prodml23__SulfurComponentKind *, const char*, const char*); -inline int soap_read_prodml22__SulfurComponentKind(struct soap *soap, prodml22__SulfurComponentKind *p) +inline int soap_read_prodml23__SulfurComponentKind(struct soap *soap, prodml23__SulfurComponentKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SulfurComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SulfurComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SulfurComponentKind(struct soap *soap, const char *URL, prodml22__SulfurComponentKind *p) +inline int soap_GET_prodml23__SulfurComponentKind(struct soap *soap, const char *URL, prodml23__SulfurComponentKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SulfurComponentKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SulfurComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SulfurComponentKind(struct soap *soap, prodml22__SulfurComponentKind *p) +inline int soap_POST_recv_prodml23__SulfurComponentKind(struct soap *soap, prodml23__SulfurComponentKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__SulfurComponentKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SulfurComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind_DEFINED -inline void soap_default_prodml22__ServiceFluidKind(struct soap *soap, prodml22__ServiceFluidKind *a) +inline void soap_default_prodml23__ServiceFluidKind(struct soap *soap, prodml23__ServiceFluidKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ServiceFluidKind - *a = SOAP_DEFAULT_prodml22__ServiceFluidKind; +#ifdef SOAP_DEFAULT_prodml23__ServiceFluidKind + *a = SOAP_DEFAULT_prodml23__ServiceFluidKind; #else - *a = (prodml22__ServiceFluidKind)0; + *a = (prodml23__ServiceFluidKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ServiceFluidKind(struct soap*, const char*, int, const prodml22__ServiceFluidKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ServiceFluidKind2s(struct soap*, prodml22__ServiceFluidKind); -SOAP_FMAC3 prodml22__ServiceFluidKind * SOAP_FMAC4 soap_in_prodml22__ServiceFluidKind(struct soap*, const char*, prodml22__ServiceFluidKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ServiceFluidKind(struct soap*, const char*, prodml22__ServiceFluidKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ServiceFluidKind(struct soap*, const char*, int, const prodml23__ServiceFluidKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ServiceFluidKind2s(struct soap*, prodml23__ServiceFluidKind); +SOAP_FMAC3 prodml23__ServiceFluidKind * SOAP_FMAC4 soap_in_prodml23__ServiceFluidKind(struct soap*, const char*, prodml23__ServiceFluidKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ServiceFluidKind(struct soap*, const char*, prodml23__ServiceFluidKind *); -SOAP_FMAC3 prodml22__ServiceFluidKind * SOAP_FMAC4 soap_new_prodml22__ServiceFluidKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ServiceFluidKind(struct soap*, const prodml22__ServiceFluidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ServiceFluidKind * SOAP_FMAC4 soap_new_prodml23__ServiceFluidKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ServiceFluidKind(struct soap*, const prodml23__ServiceFluidKind *, const char*, const char*); -inline int soap_write_prodml22__ServiceFluidKind(struct soap *soap, prodml22__ServiceFluidKind const*p) +inline int soap_write_prodml23__ServiceFluidKind(struct soap *soap, prodml23__ServiceFluidKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKind(soap, p, "prodml22:ServiceFluidKind", "prodml22:ServiceFluidKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKind(soap, p, "prodml23:ServiceFluidKind", "prodml23:ServiceFluidKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ServiceFluidKind(struct soap *soap, const char *URL, prodml22__ServiceFluidKind const*p) +inline int soap_PUT_prodml23__ServiceFluidKind(struct soap *soap, const char *URL, prodml23__ServiceFluidKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKind(soap, p, "prodml22:ServiceFluidKind", "prodml22:ServiceFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKind(soap, p, "prodml23:ServiceFluidKind", "prodml23:ServiceFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ServiceFluidKind(struct soap *soap, const char *URL, prodml22__ServiceFluidKind const*p) +inline int soap_PATCH_prodml23__ServiceFluidKind(struct soap *soap, const char *URL, prodml23__ServiceFluidKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKind(soap, p, "prodml22:ServiceFluidKind", "prodml22:ServiceFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKind(soap, p, "prodml23:ServiceFluidKind", "prodml23:ServiceFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ServiceFluidKind(struct soap *soap, const char *URL, prodml22__ServiceFluidKind const*p) +inline int soap_POST_send_prodml23__ServiceFluidKind(struct soap *soap, const char *URL, prodml23__ServiceFluidKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKind(soap, p, "prodml22:ServiceFluidKind", "prodml22:ServiceFluidKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKind(soap, p, "prodml23:ServiceFluidKind", "prodml23:ServiceFluidKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ServiceFluidKind * SOAP_FMAC4 soap_get_prodml22__ServiceFluidKind(struct soap*, prodml22__ServiceFluidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ServiceFluidKind * SOAP_FMAC4 soap_get_prodml23__ServiceFluidKind(struct soap*, prodml23__ServiceFluidKind *, const char*, const char*); -inline int soap_read_prodml22__ServiceFluidKind(struct soap *soap, prodml22__ServiceFluidKind *p) +inline int soap_read_prodml23__ServiceFluidKind(struct soap *soap, prodml23__ServiceFluidKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ServiceFluidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ServiceFluidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ServiceFluidKind(struct soap *soap, const char *URL, prodml22__ServiceFluidKind *p) +inline int soap_GET_prodml23__ServiceFluidKind(struct soap *soap, const char *URL, prodml23__ServiceFluidKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ServiceFluidKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ServiceFluidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ServiceFluidKind(struct soap *soap, prodml22__ServiceFluidKind *p) +inline int soap_POST_recv_prodml23__ServiceFluidKind(struct soap *soap, prodml23__ServiceFluidKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__ServiceFluidKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ServiceFluidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind_DEFINED -inline void soap_default_prodml22__SaturationPointKind(struct soap *soap, prodml22__SaturationPointKind *a) +inline void soap_default_prodml23__SaturationPointKind(struct soap *soap, prodml23__SaturationPointKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__SaturationPointKind - *a = SOAP_DEFAULT_prodml22__SaturationPointKind; +#ifdef SOAP_DEFAULT_prodml23__SaturationPointKind + *a = SOAP_DEFAULT_prodml23__SaturationPointKind; #else - *a = (prodml22__SaturationPointKind)0; + *a = (prodml23__SaturationPointKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationPointKind(struct soap*, const char*, int, const prodml22__SaturationPointKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SaturationPointKind2s(struct soap*, prodml22__SaturationPointKind); -SOAP_FMAC3 prodml22__SaturationPointKind * SOAP_FMAC4 soap_in_prodml22__SaturationPointKind(struct soap*, const char*, prodml22__SaturationPointKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SaturationPointKind(struct soap*, const char*, prodml22__SaturationPointKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationPointKind(struct soap*, const char*, int, const prodml23__SaturationPointKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SaturationPointKind2s(struct soap*, prodml23__SaturationPointKind); +SOAP_FMAC3 prodml23__SaturationPointKind * SOAP_FMAC4 soap_in_prodml23__SaturationPointKind(struct soap*, const char*, prodml23__SaturationPointKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SaturationPointKind(struct soap*, const char*, prodml23__SaturationPointKind *); -SOAP_FMAC3 prodml22__SaturationPointKind * SOAP_FMAC4 soap_new_prodml22__SaturationPointKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SaturationPointKind(struct soap*, const prodml22__SaturationPointKind *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationPointKind * SOAP_FMAC4 soap_new_prodml23__SaturationPointKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SaturationPointKind(struct soap*, const prodml23__SaturationPointKind *, const char*, const char*); -inline int soap_write_prodml22__SaturationPointKind(struct soap *soap, prodml22__SaturationPointKind const*p) +inline int soap_write_prodml23__SaturationPointKind(struct soap *soap, prodml23__SaturationPointKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SaturationPointKind(soap, p, "prodml22:SaturationPointKind", "prodml22:SaturationPointKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SaturationPointKind(soap, p, "prodml23:SaturationPointKind", "prodml23:SaturationPointKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SaturationPointKind(struct soap *soap, const char *URL, prodml22__SaturationPointKind const*p) +inline int soap_PUT_prodml23__SaturationPointKind(struct soap *soap, const char *URL, prodml23__SaturationPointKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SaturationPointKind(soap, p, "prodml22:SaturationPointKind", "prodml22:SaturationPointKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SaturationPointKind(soap, p, "prodml23:SaturationPointKind", "prodml23:SaturationPointKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SaturationPointKind(struct soap *soap, const char *URL, prodml22__SaturationPointKind const*p) +inline int soap_PATCH_prodml23__SaturationPointKind(struct soap *soap, const char *URL, prodml23__SaturationPointKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SaturationPointKind(soap, p, "prodml22:SaturationPointKind", "prodml22:SaturationPointKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SaturationPointKind(soap, p, "prodml23:SaturationPointKind", "prodml23:SaturationPointKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SaturationPointKind(struct soap *soap, const char *URL, prodml22__SaturationPointKind const*p) +inline int soap_POST_send_prodml23__SaturationPointKind(struct soap *soap, const char *URL, prodml23__SaturationPointKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SaturationPointKind(soap, p, "prodml22:SaturationPointKind", "prodml22:SaturationPointKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SaturationPointKind(soap, p, "prodml23:SaturationPointKind", "prodml23:SaturationPointKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationPointKind * SOAP_FMAC4 soap_get_prodml22__SaturationPointKind(struct soap*, prodml22__SaturationPointKind *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationPointKind * SOAP_FMAC4 soap_get_prodml23__SaturationPointKind(struct soap*, prodml23__SaturationPointKind *, const char*, const char*); -inline int soap_read_prodml22__SaturationPointKind(struct soap *soap, prodml22__SaturationPointKind *p) +inline int soap_read_prodml23__SaturationPointKind(struct soap *soap, prodml23__SaturationPointKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SaturationPointKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SaturationPointKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SaturationPointKind(struct soap *soap, const char *URL, prodml22__SaturationPointKind *p) +inline int soap_GET_prodml23__SaturationPointKind(struct soap *soap, const char *URL, prodml23__SaturationPointKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SaturationPointKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SaturationPointKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SaturationPointKind(struct soap *soap, prodml22__SaturationPointKind *p) +inline int soap_POST_recv_prodml23__SaturationPointKind(struct soap *soap, prodml23__SaturationPointKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__SaturationPointKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SaturationPointKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType_DEFINED -inline void soap_default_prodml22__SafetyType(struct soap *soap, prodml22__SafetyType *a) +inline void soap_default_prodml23__SafetyType(struct soap *soap, prodml23__SafetyType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__SafetyType - *a = SOAP_DEFAULT_prodml22__SafetyType; +#ifdef SOAP_DEFAULT_prodml23__SafetyType + *a = SOAP_DEFAULT_prodml23__SafetyType; #else - *a = (prodml22__SafetyType)0; + *a = (prodml23__SafetyType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SafetyType(struct soap*, const char*, int, const prodml22__SafetyType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SafetyType2s(struct soap*, prodml22__SafetyType); -SOAP_FMAC3 prodml22__SafetyType * SOAP_FMAC4 soap_in_prodml22__SafetyType(struct soap*, const char*, prodml22__SafetyType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SafetyType(struct soap*, const char*, prodml22__SafetyType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SafetyType(struct soap*, const char*, int, const prodml23__SafetyType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SafetyType2s(struct soap*, prodml23__SafetyType); +SOAP_FMAC3 prodml23__SafetyType * SOAP_FMAC4 soap_in_prodml23__SafetyType(struct soap*, const char*, prodml23__SafetyType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SafetyType(struct soap*, const char*, prodml23__SafetyType *); -SOAP_FMAC3 prodml22__SafetyType * SOAP_FMAC4 soap_new_prodml22__SafetyType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SafetyType(struct soap*, const prodml22__SafetyType *, const char*, const char*); +SOAP_FMAC3 prodml23__SafetyType * SOAP_FMAC4 soap_new_prodml23__SafetyType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SafetyType(struct soap*, const prodml23__SafetyType *, const char*, const char*); -inline int soap_write_prodml22__SafetyType(struct soap *soap, prodml22__SafetyType const*p) +inline int soap_write_prodml23__SafetyType(struct soap *soap, prodml23__SafetyType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SafetyType(soap, p, "prodml22:SafetyType", "prodml22:SafetyType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SafetyType(soap, p, "prodml23:SafetyType", "prodml23:SafetyType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SafetyType(struct soap *soap, const char *URL, prodml22__SafetyType const*p) +inline int soap_PUT_prodml23__SafetyType(struct soap *soap, const char *URL, prodml23__SafetyType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SafetyType(soap, p, "prodml22:SafetyType", "prodml22:SafetyType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SafetyType(soap, p, "prodml23:SafetyType", "prodml23:SafetyType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SafetyType(struct soap *soap, const char *URL, prodml22__SafetyType const*p) +inline int soap_PATCH_prodml23__SafetyType(struct soap *soap, const char *URL, prodml23__SafetyType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SafetyType(soap, p, "prodml22:SafetyType", "prodml22:SafetyType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SafetyType(soap, p, "prodml23:SafetyType", "prodml23:SafetyType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SafetyType(struct soap *soap, const char *URL, prodml22__SafetyType const*p) +inline int soap_POST_send_prodml23__SafetyType(struct soap *soap, const char *URL, prodml23__SafetyType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SafetyType(soap, p, "prodml22:SafetyType", "prodml22:SafetyType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SafetyType(soap, p, "prodml23:SafetyType", "prodml23:SafetyType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SafetyType * SOAP_FMAC4 soap_get_prodml22__SafetyType(struct soap*, prodml22__SafetyType *, const char*, const char*); +SOAP_FMAC3 prodml23__SafetyType * SOAP_FMAC4 soap_get_prodml23__SafetyType(struct soap*, prodml23__SafetyType *, const char*, const char*); -inline int soap_read_prodml22__SafetyType(struct soap *soap, prodml22__SafetyType *p) +inline int soap_read_prodml23__SafetyType(struct soap *soap, prodml23__SafetyType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SafetyType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SafetyType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SafetyType(struct soap *soap, const char *URL, prodml22__SafetyType *p) +inline int soap_GET_prodml23__SafetyType(struct soap *soap, const char *URL, prodml23__SafetyType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SafetyType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SafetyType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SafetyType(struct soap *soap, prodml22__SafetyType *p) +inline int soap_POST_recv_prodml23__SafetyType(struct soap *soap, prodml23__SafetyType *p) { - if (gsoap_eml2_3::soap_read_prodml22__SafetyType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SafetyType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind_DEFINED -inline void soap_default_prodml22__ReservoirFluidKind(struct soap *soap, prodml22__ReservoirFluidKind *a) +inline void soap_default_prodml23__ReservoirFluidKind(struct soap *soap, prodml23__ReservoirFluidKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReservoirFluidKind - *a = SOAP_DEFAULT_prodml22__ReservoirFluidKind; +#ifdef SOAP_DEFAULT_prodml23__ReservoirFluidKind + *a = SOAP_DEFAULT_prodml23__ReservoirFluidKind; #else - *a = (prodml22__ReservoirFluidKind)0; + *a = (prodml23__ReservoirFluidKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirFluidKind(struct soap*, const char*, int, const prodml22__ReservoirFluidKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReservoirFluidKind2s(struct soap*, prodml22__ReservoirFluidKind); -SOAP_FMAC3 prodml22__ReservoirFluidKind * SOAP_FMAC4 soap_in_prodml22__ReservoirFluidKind(struct soap*, const char*, prodml22__ReservoirFluidKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReservoirFluidKind(struct soap*, const char*, prodml22__ReservoirFluidKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirFluidKind(struct soap*, const char*, int, const prodml23__ReservoirFluidKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReservoirFluidKind2s(struct soap*, prodml23__ReservoirFluidKind); +SOAP_FMAC3 prodml23__ReservoirFluidKind * SOAP_FMAC4 soap_in_prodml23__ReservoirFluidKind(struct soap*, const char*, prodml23__ReservoirFluidKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReservoirFluidKind(struct soap*, const char*, prodml23__ReservoirFluidKind *); -SOAP_FMAC3 prodml22__ReservoirFluidKind * SOAP_FMAC4 soap_new_prodml22__ReservoirFluidKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReservoirFluidKind(struct soap*, const prodml22__ReservoirFluidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirFluidKind * SOAP_FMAC4 soap_new_prodml23__ReservoirFluidKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReservoirFluidKind(struct soap*, const prodml23__ReservoirFluidKind *, const char*, const char*); -inline int soap_write_prodml22__ReservoirFluidKind(struct soap *soap, prodml22__ReservoirFluidKind const*p) +inline int soap_write_prodml23__ReservoirFluidKind(struct soap *soap, prodml23__ReservoirFluidKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReservoirFluidKind(soap, p, "prodml22:ReservoirFluidKind", "prodml22:ReservoirFluidKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReservoirFluidKind(soap, p, "prodml23:ReservoirFluidKind", "prodml23:ReservoirFluidKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReservoirFluidKind(struct soap *soap, const char *URL, prodml22__ReservoirFluidKind const*p) +inline int soap_PUT_prodml23__ReservoirFluidKind(struct soap *soap, const char *URL, prodml23__ReservoirFluidKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReservoirFluidKind(soap, p, "prodml22:ReservoirFluidKind", "prodml22:ReservoirFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReservoirFluidKind(soap, p, "prodml23:ReservoirFluidKind", "prodml23:ReservoirFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReservoirFluidKind(struct soap *soap, const char *URL, prodml22__ReservoirFluidKind const*p) +inline int soap_PATCH_prodml23__ReservoirFluidKind(struct soap *soap, const char *URL, prodml23__ReservoirFluidKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReservoirFluidKind(soap, p, "prodml22:ReservoirFluidKind", "prodml22:ReservoirFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReservoirFluidKind(soap, p, "prodml23:ReservoirFluidKind", "prodml23:ReservoirFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReservoirFluidKind(struct soap *soap, const char *URL, prodml22__ReservoirFluidKind const*p) +inline int soap_POST_send_prodml23__ReservoirFluidKind(struct soap *soap, const char *URL, prodml23__ReservoirFluidKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReservoirFluidKind(soap, p, "prodml22:ReservoirFluidKind", "prodml22:ReservoirFluidKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReservoirFluidKind(soap, p, "prodml23:ReservoirFluidKind", "prodml23:ReservoirFluidKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReservoirFluidKind * SOAP_FMAC4 soap_get_prodml22__ReservoirFluidKind(struct soap*, prodml22__ReservoirFluidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirFluidKind * SOAP_FMAC4 soap_get_prodml23__ReservoirFluidKind(struct soap*, prodml23__ReservoirFluidKind *, const char*, const char*); -inline int soap_read_prodml22__ReservoirFluidKind(struct soap *soap, prodml22__ReservoirFluidKind *p) +inline int soap_read_prodml23__ReservoirFluidKind(struct soap *soap, prodml23__ReservoirFluidKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReservoirFluidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReservoirFluidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReservoirFluidKind(struct soap *soap, const char *URL, prodml22__ReservoirFluidKind *p) +inline int soap_GET_prodml23__ReservoirFluidKind(struct soap *soap, const char *URL, prodml23__ReservoirFluidKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReservoirFluidKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReservoirFluidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReservoirFluidKind(struct soap *soap, prodml22__ReservoirFluidKind *p) +inline int soap_POST_recv_prodml23__ReservoirFluidKind(struct soap *soap, prodml23__ReservoirFluidKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReservoirFluidKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReservoirFluidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct_DEFINED -inline void soap_default_prodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct *a) +inline void soap_default_prodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReportingProduct - *a = SOAP_DEFAULT_prodml22__ReportingProduct; +#ifdef SOAP_DEFAULT_prodml23__ReportingProduct + *a = SOAP_DEFAULT_prodml23__ReportingProduct; #else - *a = (prodml22__ReportingProduct)0; + *a = (prodml23__ReportingProduct)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingProduct(struct soap*, const char*, int, const prodml22__ReportingProduct *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingProduct2s(struct soap*, prodml22__ReportingProduct); -SOAP_FMAC3 prodml22__ReportingProduct * SOAP_FMAC4 soap_in_prodml22__ReportingProduct(struct soap*, const char*, prodml22__ReportingProduct *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingProduct(struct soap*, const char*, prodml22__ReportingProduct *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingProduct(struct soap*, const char*, int, const prodml23__ReportingProduct *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingProduct2s(struct soap*, prodml23__ReportingProduct); +SOAP_FMAC3 prodml23__ReportingProduct * SOAP_FMAC4 soap_in_prodml23__ReportingProduct(struct soap*, const char*, prodml23__ReportingProduct *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingProduct(struct soap*, const char*, prodml23__ReportingProduct *); -SOAP_FMAC3 prodml22__ReportingProduct * SOAP_FMAC4 soap_new_prodml22__ReportingProduct(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingProduct(struct soap*, const prodml22__ReportingProduct *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingProduct * SOAP_FMAC4 soap_new_prodml23__ReportingProduct(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingProduct(struct soap*, const prodml23__ReportingProduct *, const char*, const char*); -inline int soap_write_prodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct const*p) +inline int soap_write_prodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingProduct(soap, p, "prodml22:ReportingProduct", "prodml22:ReportingProduct") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingProduct(soap, p, "prodml23:ReportingProduct", "prodml23:ReportingProduct") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingProduct(struct soap *soap, const char *URL, prodml22__ReportingProduct const*p) +inline int soap_PUT_prodml23__ReportingProduct(struct soap *soap, const char *URL, prodml23__ReportingProduct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingProduct(soap, p, "prodml22:ReportingProduct", "prodml22:ReportingProduct") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingProduct(soap, p, "prodml23:ReportingProduct", "prodml23:ReportingProduct") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingProduct(struct soap *soap, const char *URL, prodml22__ReportingProduct const*p) +inline int soap_PATCH_prodml23__ReportingProduct(struct soap *soap, const char *URL, prodml23__ReportingProduct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingProduct(soap, p, "prodml22:ReportingProduct", "prodml22:ReportingProduct") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingProduct(soap, p, "prodml23:ReportingProduct", "prodml23:ReportingProduct") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingProduct(struct soap *soap, const char *URL, prodml22__ReportingProduct const*p) +inline int soap_POST_send_prodml23__ReportingProduct(struct soap *soap, const char *URL, prodml23__ReportingProduct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingProduct(soap, p, "prodml22:ReportingProduct", "prodml22:ReportingProduct") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingProduct(soap, p, "prodml23:ReportingProduct", "prodml23:ReportingProduct") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingProduct * SOAP_FMAC4 soap_get_prodml22__ReportingProduct(struct soap*, prodml22__ReportingProduct *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingProduct * SOAP_FMAC4 soap_get_prodml23__ReportingProduct(struct soap*, prodml23__ReportingProduct *, const char*, const char*); -inline int soap_read_prodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct *p) +inline int soap_read_prodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingProduct(struct soap *soap, const char *URL, prodml22__ReportingProduct *p) +inline int soap_GET_prodml23__ReportingProduct(struct soap *soap, const char *URL, prodml23__ReportingProduct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingProduct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingProduct(struct soap *soap, prodml22__ReportingProduct *p) +inline int soap_POST_recv_prodml23__ReportingProduct(struct soap *soap, prodml23__ReportingProduct *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingProduct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow_DEFINED -inline void soap_default_prodml22__ReportingFlow(struct soap *soap, prodml22__ReportingFlow *a) +inline void soap_default_prodml23__ReportingFlow(struct soap *soap, prodml23__ReportingFlow *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReportingFlow - *a = SOAP_DEFAULT_prodml22__ReportingFlow; +#ifdef SOAP_DEFAULT_prodml23__ReportingFlow + *a = SOAP_DEFAULT_prodml23__ReportingFlow; #else - *a = (prodml22__ReportingFlow)0; + *a = (prodml23__ReportingFlow)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingFlow(struct soap*, const char*, int, const prodml22__ReportingFlow *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingFlow2s(struct soap*, prodml22__ReportingFlow); -SOAP_FMAC3 prodml22__ReportingFlow * SOAP_FMAC4 soap_in_prodml22__ReportingFlow(struct soap*, const char*, prodml22__ReportingFlow *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingFlow(struct soap*, const char*, prodml22__ReportingFlow *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingFlow(struct soap*, const char*, int, const prodml23__ReportingFlow *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingFlow2s(struct soap*, prodml23__ReportingFlow); +SOAP_FMAC3 prodml23__ReportingFlow * SOAP_FMAC4 soap_in_prodml23__ReportingFlow(struct soap*, const char*, prodml23__ReportingFlow *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingFlow(struct soap*, const char*, prodml23__ReportingFlow *); -SOAP_FMAC3 prodml22__ReportingFlow * SOAP_FMAC4 soap_new_prodml22__ReportingFlow(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingFlow(struct soap*, const prodml22__ReportingFlow *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingFlow * SOAP_FMAC4 soap_new_prodml23__ReportingFlow(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingFlow(struct soap*, const prodml23__ReportingFlow *, const char*, const char*); -inline int soap_write_prodml22__ReportingFlow(struct soap *soap, prodml22__ReportingFlow const*p) +inline int soap_write_prodml23__ReportingFlow(struct soap *soap, prodml23__ReportingFlow const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingFlow(soap, p, "prodml22:ReportingFlow", "prodml22:ReportingFlow") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingFlow(soap, p, "prodml23:ReportingFlow", "prodml23:ReportingFlow") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingFlow(struct soap *soap, const char *URL, prodml22__ReportingFlow const*p) +inline int soap_PUT_prodml23__ReportingFlow(struct soap *soap, const char *URL, prodml23__ReportingFlow const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingFlow(soap, p, "prodml22:ReportingFlow", "prodml22:ReportingFlow") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFlow(soap, p, "prodml23:ReportingFlow", "prodml23:ReportingFlow") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingFlow(struct soap *soap, const char *URL, prodml22__ReportingFlow const*p) +inline int soap_PATCH_prodml23__ReportingFlow(struct soap *soap, const char *URL, prodml23__ReportingFlow const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingFlow(soap, p, "prodml22:ReportingFlow", "prodml22:ReportingFlow") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFlow(soap, p, "prodml23:ReportingFlow", "prodml23:ReportingFlow") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingFlow(struct soap *soap, const char *URL, prodml22__ReportingFlow const*p) +inline int soap_POST_send_prodml23__ReportingFlow(struct soap *soap, const char *URL, prodml23__ReportingFlow const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingFlow(soap, p, "prodml22:ReportingFlow", "prodml22:ReportingFlow") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFlow(soap, p, "prodml23:ReportingFlow", "prodml23:ReportingFlow") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingFlow * SOAP_FMAC4 soap_get_prodml22__ReportingFlow(struct soap*, prodml22__ReportingFlow *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingFlow * SOAP_FMAC4 soap_get_prodml23__ReportingFlow(struct soap*, prodml23__ReportingFlow *, const char*, const char*); -inline int soap_read_prodml22__ReportingFlow(struct soap *soap, prodml22__ReportingFlow *p) +inline int soap_read_prodml23__ReportingFlow(struct soap *soap, prodml23__ReportingFlow *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingFlow(struct soap *soap, const char *URL, prodml22__ReportingFlow *p) +inline int soap_GET_prodml23__ReportingFlow(struct soap *soap, const char *URL, prodml23__ReportingFlow *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingFlow(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingFlow(struct soap *soap, prodml22__ReportingFlow *p) +inline int soap_POST_recv_prodml23__ReportingFlow(struct soap *soap, prodml23__ReportingFlow *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingFlow(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility_DEFINED -inline void soap_default_prodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility *a) +inline void soap_default_prodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReportingFacility - *a = SOAP_DEFAULT_prodml22__ReportingFacility; +#ifdef SOAP_DEFAULT_prodml23__ReportingFacility + *a = SOAP_DEFAULT_prodml23__ReportingFacility; #else - *a = (prodml22__ReportingFacility)0; + *a = (prodml23__ReportingFacility)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingFacility(struct soap*, const char*, int, const prodml22__ReportingFacility *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingFacility2s(struct soap*, prodml22__ReportingFacility); -SOAP_FMAC3 prodml22__ReportingFacility * SOAP_FMAC4 soap_in_prodml22__ReportingFacility(struct soap*, const char*, prodml22__ReportingFacility *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingFacility(struct soap*, const char*, prodml22__ReportingFacility *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingFacility(struct soap*, const char*, int, const prodml23__ReportingFacility *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingFacility2s(struct soap*, prodml23__ReportingFacility); +SOAP_FMAC3 prodml23__ReportingFacility * SOAP_FMAC4 soap_in_prodml23__ReportingFacility(struct soap*, const char*, prodml23__ReportingFacility *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingFacility(struct soap*, const char*, prodml23__ReportingFacility *); -SOAP_FMAC3 prodml22__ReportingFacility * SOAP_FMAC4 soap_new_prodml22__ReportingFacility(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingFacility(struct soap*, const prodml22__ReportingFacility *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingFacility * SOAP_FMAC4 soap_new_prodml23__ReportingFacility(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingFacility(struct soap*, const prodml23__ReportingFacility *, const char*, const char*); -inline int soap_write_prodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility const*p) +inline int soap_write_prodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingFacility(soap, p, "prodml22:ReportingFacility", "prodml22:ReportingFacility") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingFacility(soap, p, "prodml23:ReportingFacility", "prodml23:ReportingFacility") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingFacility(struct soap *soap, const char *URL, prodml22__ReportingFacility const*p) +inline int soap_PUT_prodml23__ReportingFacility(struct soap *soap, const char *URL, prodml23__ReportingFacility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingFacility(soap, p, "prodml22:ReportingFacility", "prodml22:ReportingFacility") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFacility(soap, p, "prodml23:ReportingFacility", "prodml23:ReportingFacility") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingFacility(struct soap *soap, const char *URL, prodml22__ReportingFacility const*p) +inline int soap_PATCH_prodml23__ReportingFacility(struct soap *soap, const char *URL, prodml23__ReportingFacility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingFacility(soap, p, "prodml22:ReportingFacility", "prodml22:ReportingFacility") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFacility(soap, p, "prodml23:ReportingFacility", "prodml23:ReportingFacility") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingFacility(struct soap *soap, const char *URL, prodml22__ReportingFacility const*p) +inline int soap_POST_send_prodml23__ReportingFacility(struct soap *soap, const char *URL, prodml23__ReportingFacility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingFacility(soap, p, "prodml22:ReportingFacility", "prodml22:ReportingFacility") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFacility(soap, p, "prodml23:ReportingFacility", "prodml23:ReportingFacility") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingFacility * SOAP_FMAC4 soap_get_prodml22__ReportingFacility(struct soap*, prodml22__ReportingFacility *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingFacility * SOAP_FMAC4 soap_get_prodml23__ReportingFacility(struct soap*, prodml23__ReportingFacility *, const char*, const char*); -inline int soap_read_prodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility *p) +inline int soap_read_prodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingFacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingFacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingFacility(struct soap *soap, const char *URL, prodml22__ReportingFacility *p) +inline int soap_GET_prodml23__ReportingFacility(struct soap *soap, const char *URL, prodml23__ReportingFacility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingFacility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingFacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingFacility(struct soap *soap, prodml22__ReportingFacility *p) +inline int soap_POST_recv_prodml23__ReportingFacility(struct soap *soap, prodml23__ReportingFacility *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingFacility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingFacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind_DEFINED -inline void soap_default_prodml22__ReportingEntityKind(struct soap *soap, prodml22__ReportingEntityKind *a) +inline void soap_default_prodml23__ReportingEntityKind(struct soap *soap, prodml23__ReportingEntityKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReportingEntityKind - *a = SOAP_DEFAULT_prodml22__ReportingEntityKind; +#ifdef SOAP_DEFAULT_prodml23__ReportingEntityKind + *a = SOAP_DEFAULT_prodml23__ReportingEntityKind; #else - *a = (prodml22__ReportingEntityKind)0; + *a = (prodml23__ReportingEntityKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingEntityKind(struct soap*, const char*, int, const prodml22__ReportingEntityKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingEntityKind2s(struct soap*, prodml22__ReportingEntityKind); -SOAP_FMAC3 prodml22__ReportingEntityKind * SOAP_FMAC4 soap_in_prodml22__ReportingEntityKind(struct soap*, const char*, prodml22__ReportingEntityKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingEntityKind(struct soap*, const char*, prodml22__ReportingEntityKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingEntityKind(struct soap*, const char*, int, const prodml23__ReportingEntityKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingEntityKind2s(struct soap*, prodml23__ReportingEntityKind); +SOAP_FMAC3 prodml23__ReportingEntityKind * SOAP_FMAC4 soap_in_prodml23__ReportingEntityKind(struct soap*, const char*, prodml23__ReportingEntityKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingEntityKind(struct soap*, const char*, prodml23__ReportingEntityKind *); -SOAP_FMAC3 prodml22__ReportingEntityKind * SOAP_FMAC4 soap_new_prodml22__ReportingEntityKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingEntityKind(struct soap*, const prodml22__ReportingEntityKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingEntityKind * SOAP_FMAC4 soap_new_prodml23__ReportingEntityKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingEntityKind(struct soap*, const prodml23__ReportingEntityKind *, const char*, const char*); -inline int soap_write_prodml22__ReportingEntityKind(struct soap *soap, prodml22__ReportingEntityKind const*p) +inline int soap_write_prodml23__ReportingEntityKind(struct soap *soap, prodml23__ReportingEntityKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingEntityKind(soap, p, "prodml22:ReportingEntityKind", "prodml22:ReportingEntityKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingEntityKind(soap, p, "prodml23:ReportingEntityKind", "prodml23:ReportingEntityKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingEntityKind(struct soap *soap, const char *URL, prodml22__ReportingEntityKind const*p) +inline int soap_PUT_prodml23__ReportingEntityKind(struct soap *soap, const char *URL, prodml23__ReportingEntityKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingEntityKind(soap, p, "prodml22:ReportingEntityKind", "prodml22:ReportingEntityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingEntityKind(soap, p, "prodml23:ReportingEntityKind", "prodml23:ReportingEntityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingEntityKind(struct soap *soap, const char *URL, prodml22__ReportingEntityKind const*p) +inline int soap_PATCH_prodml23__ReportingEntityKind(struct soap *soap, const char *URL, prodml23__ReportingEntityKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingEntityKind(soap, p, "prodml22:ReportingEntityKind", "prodml22:ReportingEntityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingEntityKind(soap, p, "prodml23:ReportingEntityKind", "prodml23:ReportingEntityKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingEntityKind(struct soap *soap, const char *URL, prodml22__ReportingEntityKind const*p) +inline int soap_POST_send_prodml23__ReportingEntityKind(struct soap *soap, const char *URL, prodml23__ReportingEntityKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingEntityKind(soap, p, "prodml22:ReportingEntityKind", "prodml22:ReportingEntityKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingEntityKind(soap, p, "prodml23:ReportingEntityKind", "prodml23:ReportingEntityKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingEntityKind * SOAP_FMAC4 soap_get_prodml22__ReportingEntityKind(struct soap*, prodml22__ReportingEntityKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingEntityKind * SOAP_FMAC4 soap_get_prodml23__ReportingEntityKind(struct soap*, prodml23__ReportingEntityKind *, const char*, const char*); -inline int soap_read_prodml22__ReportingEntityKind(struct soap *soap, prodml22__ReportingEntityKind *p) +inline int soap_read_prodml23__ReportingEntityKind(struct soap *soap, prodml23__ReportingEntityKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingEntityKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingEntityKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingEntityKind(struct soap *soap, const char *URL, prodml22__ReportingEntityKind *p) +inline int soap_GET_prodml23__ReportingEntityKind(struct soap *soap, const char *URL, prodml23__ReportingEntityKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingEntityKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingEntityKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingEntityKind(struct soap *soap, prodml22__ReportingEntityKind *p) +inline int soap_POST_recv_prodml23__ReportingEntityKind(struct soap *soap, prodml23__ReportingEntityKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingEntityKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingEntityKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind_DEFINED -inline void soap_default_prodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind *a) +inline void soap_default_prodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ReportingDurationKind - *a = SOAP_DEFAULT_prodml22__ReportingDurationKind; +#ifdef SOAP_DEFAULT_prodml23__ReportingDurationKind + *a = SOAP_DEFAULT_prodml23__ReportingDurationKind; #else - *a = (prodml22__ReportingDurationKind)0; + *a = (prodml23__ReportingDurationKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingDurationKind(struct soap*, const char*, int, const prodml22__ReportingDurationKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ReportingDurationKind2s(struct soap*, prodml22__ReportingDurationKind); -SOAP_FMAC3 prodml22__ReportingDurationKind * SOAP_FMAC4 soap_in_prodml22__ReportingDurationKind(struct soap*, const char*, prodml22__ReportingDurationKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ReportingDurationKind(struct soap*, const char*, prodml22__ReportingDurationKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingDurationKind(struct soap*, const char*, int, const prodml23__ReportingDurationKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ReportingDurationKind2s(struct soap*, prodml23__ReportingDurationKind); +SOAP_FMAC3 prodml23__ReportingDurationKind * SOAP_FMAC4 soap_in_prodml23__ReportingDurationKind(struct soap*, const char*, prodml23__ReportingDurationKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ReportingDurationKind(struct soap*, const char*, prodml23__ReportingDurationKind *); -SOAP_FMAC3 prodml22__ReportingDurationKind * SOAP_FMAC4 soap_new_prodml22__ReportingDurationKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingDurationKind(struct soap*, const prodml22__ReportingDurationKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingDurationKind * SOAP_FMAC4 soap_new_prodml23__ReportingDurationKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingDurationKind(struct soap*, const prodml23__ReportingDurationKind *, const char*, const char*); -inline int soap_write_prodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind const*p) +inline int soap_write_prodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKind(soap, p, "prodml22:ReportingDurationKind", "prodml22:ReportingDurationKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKind(soap, p, "prodml23:ReportingDurationKind", "prodml23:ReportingDurationKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingDurationKind(struct soap *soap, const char *URL, prodml22__ReportingDurationKind const*p) +inline int soap_PUT_prodml23__ReportingDurationKind(struct soap *soap, const char *URL, prodml23__ReportingDurationKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKind(soap, p, "prodml22:ReportingDurationKind", "prodml22:ReportingDurationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKind(soap, p, "prodml23:ReportingDurationKind", "prodml23:ReportingDurationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingDurationKind(struct soap *soap, const char *URL, prodml22__ReportingDurationKind const*p) +inline int soap_PATCH_prodml23__ReportingDurationKind(struct soap *soap, const char *URL, prodml23__ReportingDurationKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKind(soap, p, "prodml22:ReportingDurationKind", "prodml22:ReportingDurationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKind(soap, p, "prodml23:ReportingDurationKind", "prodml23:ReportingDurationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingDurationKind(struct soap *soap, const char *URL, prodml22__ReportingDurationKind const*p) +inline int soap_POST_send_prodml23__ReportingDurationKind(struct soap *soap, const char *URL, prodml23__ReportingDurationKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKind(soap, p, "prodml22:ReportingDurationKind", "prodml22:ReportingDurationKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKind(soap, p, "prodml23:ReportingDurationKind", "prodml23:ReportingDurationKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingDurationKind * SOAP_FMAC4 soap_get_prodml22__ReportingDurationKind(struct soap*, prodml22__ReportingDurationKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingDurationKind * SOAP_FMAC4 soap_get_prodml23__ReportingDurationKind(struct soap*, prodml23__ReportingDurationKind *, const char*, const char*); -inline int soap_read_prodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind *p) +inline int soap_read_prodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingDurationKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingDurationKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingDurationKind(struct soap *soap, const char *URL, prodml22__ReportingDurationKind *p) +inline int soap_GET_prodml23__ReportingDurationKind(struct soap *soap, const char *URL, prodml23__ReportingDurationKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingDurationKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingDurationKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingDurationKind(struct soap *soap, prodml22__ReportingDurationKind *p) +inline int soap_POST_recv_prodml23__ReportingDurationKind(struct soap *soap, prodml23__ReportingDurationKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingDurationKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingDurationKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind_DEFINED -inline void soap_default_prodml22__PureComponentKind(struct soap *soap, prodml22__PureComponentKind *a) +inline void soap_default_prodml23__PureComponentKind(struct soap *soap, prodml23__PureComponentKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PureComponentKind - *a = SOAP_DEFAULT_prodml22__PureComponentKind; +#ifdef SOAP_DEFAULT_prodml23__PureComponentKind + *a = SOAP_DEFAULT_prodml23__PureComponentKind; #else - *a = (prodml22__PureComponentKind)0; + *a = (prodml23__PureComponentKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PureComponentKind(struct soap*, const char*, int, const prodml22__PureComponentKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PureComponentKind2s(struct soap*, prodml22__PureComponentKind); -SOAP_FMAC3 prodml22__PureComponentKind * SOAP_FMAC4 soap_in_prodml22__PureComponentKind(struct soap*, const char*, prodml22__PureComponentKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PureComponentKind(struct soap*, const char*, prodml22__PureComponentKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PureComponentKind(struct soap*, const char*, int, const prodml23__PureComponentKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PureComponentKind2s(struct soap*, prodml23__PureComponentKind); +SOAP_FMAC3 prodml23__PureComponentKind * SOAP_FMAC4 soap_in_prodml23__PureComponentKind(struct soap*, const char*, prodml23__PureComponentKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PureComponentKind(struct soap*, const char*, prodml23__PureComponentKind *); -SOAP_FMAC3 prodml22__PureComponentKind * SOAP_FMAC4 soap_new_prodml22__PureComponentKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PureComponentKind(struct soap*, const prodml22__PureComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PureComponentKind * SOAP_FMAC4 soap_new_prodml23__PureComponentKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PureComponentKind(struct soap*, const prodml23__PureComponentKind *, const char*, const char*); -inline int soap_write_prodml22__PureComponentKind(struct soap *soap, prodml22__PureComponentKind const*p) +inline int soap_write_prodml23__PureComponentKind(struct soap *soap, prodml23__PureComponentKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PureComponentKind(soap, p, "prodml22:PureComponentKind", "prodml22:PureComponentKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PureComponentKind(soap, p, "prodml23:PureComponentKind", "prodml23:PureComponentKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PureComponentKind(struct soap *soap, const char *URL, prodml22__PureComponentKind const*p) +inline int soap_PUT_prodml23__PureComponentKind(struct soap *soap, const char *URL, prodml23__PureComponentKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PureComponentKind(soap, p, "prodml22:PureComponentKind", "prodml22:PureComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PureComponentKind(soap, p, "prodml23:PureComponentKind", "prodml23:PureComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PureComponentKind(struct soap *soap, const char *URL, prodml22__PureComponentKind const*p) +inline int soap_PATCH_prodml23__PureComponentKind(struct soap *soap, const char *URL, prodml23__PureComponentKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PureComponentKind(soap, p, "prodml22:PureComponentKind", "prodml22:PureComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PureComponentKind(soap, p, "prodml23:PureComponentKind", "prodml23:PureComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PureComponentKind(struct soap *soap, const char *URL, prodml22__PureComponentKind const*p) +inline int soap_POST_send_prodml23__PureComponentKind(struct soap *soap, const char *URL, prodml23__PureComponentKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PureComponentKind(soap, p, "prodml22:PureComponentKind", "prodml22:PureComponentKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PureComponentKind(soap, p, "prodml23:PureComponentKind", "prodml23:PureComponentKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PureComponentKind * SOAP_FMAC4 soap_get_prodml22__PureComponentKind(struct soap*, prodml22__PureComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PureComponentKind * SOAP_FMAC4 soap_get_prodml23__PureComponentKind(struct soap*, prodml23__PureComponentKind *, const char*, const char*); -inline int soap_read_prodml22__PureComponentKind(struct soap *soap, prodml22__PureComponentKind *p) +inline int soap_read_prodml23__PureComponentKind(struct soap *soap, prodml23__PureComponentKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PureComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PureComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PureComponentKind(struct soap *soap, const char *URL, prodml22__PureComponentKind *p) +inline int soap_GET_prodml23__PureComponentKind(struct soap *soap, const char *URL, prodml23__PureComponentKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PureComponentKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PureComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PureComponentKind(struct soap *soap, prodml22__PureComponentKind *p) +inline int soap_POST_recv_prodml23__PureComponentKind(struct soap *soap, prodml23__PureComponentKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__PureComponentKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PureComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind_DEFINED -inline void soap_default_prodml22__PseudoComponentKind(struct soap *soap, prodml22__PseudoComponentKind *a) +inline void soap_default_prodml23__PseudoComponentKind(struct soap *soap, prodml23__PseudoComponentKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PseudoComponentKind - *a = SOAP_DEFAULT_prodml22__PseudoComponentKind; +#ifdef SOAP_DEFAULT_prodml23__PseudoComponentKind + *a = SOAP_DEFAULT_prodml23__PseudoComponentKind; #else - *a = (prodml22__PseudoComponentKind)0; + *a = (prodml23__PseudoComponentKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoComponentKind(struct soap*, const char*, int, const prodml22__PseudoComponentKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PseudoComponentKind2s(struct soap*, prodml22__PseudoComponentKind); -SOAP_FMAC3 prodml22__PseudoComponentKind * SOAP_FMAC4 soap_in_prodml22__PseudoComponentKind(struct soap*, const char*, prodml22__PseudoComponentKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PseudoComponentKind(struct soap*, const char*, prodml22__PseudoComponentKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoComponentKind(struct soap*, const char*, int, const prodml23__PseudoComponentKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PseudoComponentKind2s(struct soap*, prodml23__PseudoComponentKind); +SOAP_FMAC3 prodml23__PseudoComponentKind * SOAP_FMAC4 soap_in_prodml23__PseudoComponentKind(struct soap*, const char*, prodml23__PseudoComponentKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PseudoComponentKind(struct soap*, const char*, prodml23__PseudoComponentKind *); -SOAP_FMAC3 prodml22__PseudoComponentKind * SOAP_FMAC4 soap_new_prodml22__PseudoComponentKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PseudoComponentKind(struct soap*, const prodml22__PseudoComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoComponentKind * SOAP_FMAC4 soap_new_prodml23__PseudoComponentKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PseudoComponentKind(struct soap*, const prodml23__PseudoComponentKind *, const char*, const char*); -inline int soap_write_prodml22__PseudoComponentKind(struct soap *soap, prodml22__PseudoComponentKind const*p) +inline int soap_write_prodml23__PseudoComponentKind(struct soap *soap, prodml23__PseudoComponentKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKind(soap, p, "prodml22:PseudoComponentKind", "prodml22:PseudoComponentKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKind(soap, p, "prodml23:PseudoComponentKind", "prodml23:PseudoComponentKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PseudoComponentKind(struct soap *soap, const char *URL, prodml22__PseudoComponentKind const*p) +inline int soap_PUT_prodml23__PseudoComponentKind(struct soap *soap, const char *URL, prodml23__PseudoComponentKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKind(soap, p, "prodml22:PseudoComponentKind", "prodml22:PseudoComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKind(soap, p, "prodml23:PseudoComponentKind", "prodml23:PseudoComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PseudoComponentKind(struct soap *soap, const char *URL, prodml22__PseudoComponentKind const*p) +inline int soap_PATCH_prodml23__PseudoComponentKind(struct soap *soap, const char *URL, prodml23__PseudoComponentKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKind(soap, p, "prodml22:PseudoComponentKind", "prodml22:PseudoComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKind(soap, p, "prodml23:PseudoComponentKind", "prodml23:PseudoComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PseudoComponentKind(struct soap *soap, const char *URL, prodml22__PseudoComponentKind const*p) +inline int soap_POST_send_prodml23__PseudoComponentKind(struct soap *soap, const char *URL, prodml23__PseudoComponentKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKind(soap, p, "prodml22:PseudoComponentKind", "prodml22:PseudoComponentKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKind(soap, p, "prodml23:PseudoComponentKind", "prodml23:PseudoComponentKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PseudoComponentKind * SOAP_FMAC4 soap_get_prodml22__PseudoComponentKind(struct soap*, prodml22__PseudoComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoComponentKind * SOAP_FMAC4 soap_get_prodml23__PseudoComponentKind(struct soap*, prodml23__PseudoComponentKind *, const char*, const char*); -inline int soap_read_prodml22__PseudoComponentKind(struct soap *soap, prodml22__PseudoComponentKind *p) +inline int soap_read_prodml23__PseudoComponentKind(struct soap *soap, prodml23__PseudoComponentKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PseudoComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PseudoComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PseudoComponentKind(struct soap *soap, const char *URL, prodml22__PseudoComponentKind *p) +inline int soap_GET_prodml23__PseudoComponentKind(struct soap *soap, const char *URL, prodml23__PseudoComponentKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PseudoComponentKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PseudoComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PseudoComponentKind(struct soap *soap, prodml22__PseudoComponentKind *p) +inline int soap_POST_recv_prodml23__PseudoComponentKind(struct soap *soap, prodml23__PseudoComponentKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__PseudoComponentKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PseudoComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind_DEFINED -inline void soap_default_prodml22__ProductFluidKind(struct soap *soap, prodml22__ProductFluidKind *a) +inline void soap_default_prodml23__ProductFluidKind(struct soap *soap, prodml23__ProductFluidKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ProductFluidKind - *a = SOAP_DEFAULT_prodml22__ProductFluidKind; +#ifdef SOAP_DEFAULT_prodml23__ProductFluidKind + *a = SOAP_DEFAULT_prodml23__ProductFluidKind; #else - *a = (prodml22__ProductFluidKind)0; + *a = (prodml23__ProductFluidKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFluidKind(struct soap*, const char*, int, const prodml22__ProductFluidKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ProductFluidKind2s(struct soap*, prodml22__ProductFluidKind); -SOAP_FMAC3 prodml22__ProductFluidKind * SOAP_FMAC4 soap_in_prodml22__ProductFluidKind(struct soap*, const char*, prodml22__ProductFluidKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ProductFluidKind(struct soap*, const char*, prodml22__ProductFluidKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFluidKind(struct soap*, const char*, int, const prodml23__ProductFluidKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ProductFluidKind2s(struct soap*, prodml23__ProductFluidKind); +SOAP_FMAC3 prodml23__ProductFluidKind * SOAP_FMAC4 soap_in_prodml23__ProductFluidKind(struct soap*, const char*, prodml23__ProductFluidKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ProductFluidKind(struct soap*, const char*, prodml23__ProductFluidKind *); -SOAP_FMAC3 prodml22__ProductFluidKind * SOAP_FMAC4 soap_new_prodml22__ProductFluidKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ProductFluidKind(struct soap*, const prodml22__ProductFluidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFluidKind * SOAP_FMAC4 soap_new_prodml23__ProductFluidKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ProductFluidKind(struct soap*, const prodml23__ProductFluidKind *, const char*, const char*); -inline int soap_write_prodml22__ProductFluidKind(struct soap *soap, prodml22__ProductFluidKind const*p) +inline int soap_write_prodml23__ProductFluidKind(struct soap *soap, prodml23__ProductFluidKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ProductFluidKind(soap, p, "prodml22:ProductFluidKind", "prodml22:ProductFluidKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ProductFluidKind(soap, p, "prodml23:ProductFluidKind", "prodml23:ProductFluidKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFluidKind(struct soap *soap, const char *URL, prodml22__ProductFluidKind const*p) +inline int soap_PUT_prodml23__ProductFluidKind(struct soap *soap, const char *URL, prodml23__ProductFluidKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ProductFluidKind(soap, p, "prodml22:ProductFluidKind", "prodml22:ProductFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFluidKind(soap, p, "prodml23:ProductFluidKind", "prodml23:ProductFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFluidKind(struct soap *soap, const char *URL, prodml22__ProductFluidKind const*p) +inline int soap_PATCH_prodml23__ProductFluidKind(struct soap *soap, const char *URL, prodml23__ProductFluidKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ProductFluidKind(soap, p, "prodml22:ProductFluidKind", "prodml22:ProductFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFluidKind(soap, p, "prodml23:ProductFluidKind", "prodml23:ProductFluidKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFluidKind(struct soap *soap, const char *URL, prodml22__ProductFluidKind const*p) +inline int soap_POST_send_prodml23__ProductFluidKind(struct soap *soap, const char *URL, prodml23__ProductFluidKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ProductFluidKind(soap, p, "prodml22:ProductFluidKind", "prodml22:ProductFluidKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFluidKind(soap, p, "prodml23:ProductFluidKind", "prodml23:ProductFluidKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFluidKind * SOAP_FMAC4 soap_get_prodml22__ProductFluidKind(struct soap*, prodml22__ProductFluidKind *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFluidKind * SOAP_FMAC4 soap_get_prodml23__ProductFluidKind(struct soap*, prodml23__ProductFluidKind *, const char*, const char*); -inline int soap_read_prodml22__ProductFluidKind(struct soap *soap, prodml22__ProductFluidKind *p) +inline int soap_read_prodml23__ProductFluidKind(struct soap *soap, prodml23__ProductFluidKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFluidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFluidKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFluidKind(struct soap *soap, const char *URL, prodml22__ProductFluidKind *p) +inline int soap_GET_prodml23__ProductFluidKind(struct soap *soap, const char *URL, prodml23__ProductFluidKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFluidKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFluidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFluidKind(struct soap *soap, prodml22__ProductFluidKind *p) +inline int soap_POST_recv_prodml23__ProductFluidKind(struct soap *soap, prodml23__ProductFluidKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFluidKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFluidKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType_DEFINED -inline void soap_default_prodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType *a) +inline void soap_default_prodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__ProductFlowPortType - *a = SOAP_DEFAULT_prodml22__ProductFlowPortType; +#ifdef SOAP_DEFAULT_prodml23__ProductFlowPortType + *a = SOAP_DEFAULT_prodml23__ProductFlowPortType; #else - *a = (prodml22__ProductFlowPortType)0; + *a = (prodml23__ProductFlowPortType)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowPortType(struct soap*, const char*, int, const prodml22__ProductFlowPortType *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__ProductFlowPortType2s(struct soap*, prodml22__ProductFlowPortType); -SOAP_FMAC3 prodml22__ProductFlowPortType * SOAP_FMAC4 soap_in_prodml22__ProductFlowPortType(struct soap*, const char*, prodml22__ProductFlowPortType *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__ProductFlowPortType(struct soap*, const char*, prodml22__ProductFlowPortType *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowPortType(struct soap*, const char*, int, const prodml23__ProductFlowPortType *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__ProductFlowPortType2s(struct soap*, prodml23__ProductFlowPortType); +SOAP_FMAC3 prodml23__ProductFlowPortType * SOAP_FMAC4 soap_in_prodml23__ProductFlowPortType(struct soap*, const char*, prodml23__ProductFlowPortType *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__ProductFlowPortType(struct soap*, const char*, prodml23__ProductFlowPortType *); -SOAP_FMAC3 prodml22__ProductFlowPortType * SOAP_FMAC4 soap_new_prodml22__ProductFlowPortType(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ProductFlowPortType(struct soap*, const prodml22__ProductFlowPortType *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowPortType * SOAP_FMAC4 soap_new_prodml23__ProductFlowPortType(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ProductFlowPortType(struct soap*, const prodml23__ProductFlowPortType *, const char*, const char*); -inline int soap_write_prodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType const*p) +inline int soap_write_prodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ProductFlowPortType(soap, p, "prodml22:ProductFlowPortType", "prodml22:ProductFlowPortType") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ProductFlowPortType(soap, p, "prodml23:ProductFlowPortType", "prodml23:ProductFlowPortType") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowPortType(struct soap *soap, const char *URL, prodml22__ProductFlowPortType const*p) +inline int soap_PUT_prodml23__ProductFlowPortType(struct soap *soap, const char *URL, prodml23__ProductFlowPortType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ProductFlowPortType(soap, p, "prodml22:ProductFlowPortType", "prodml22:ProductFlowPortType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFlowPortType(soap, p, "prodml23:ProductFlowPortType", "prodml23:ProductFlowPortType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowPortType(struct soap *soap, const char *URL, prodml22__ProductFlowPortType const*p) +inline int soap_PATCH_prodml23__ProductFlowPortType(struct soap *soap, const char *URL, prodml23__ProductFlowPortType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ProductFlowPortType(soap, p, "prodml22:ProductFlowPortType", "prodml22:ProductFlowPortType") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFlowPortType(soap, p, "prodml23:ProductFlowPortType", "prodml23:ProductFlowPortType") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowPortType(struct soap *soap, const char *URL, prodml22__ProductFlowPortType const*p) +inline int soap_POST_send_prodml23__ProductFlowPortType(struct soap *soap, const char *URL, prodml23__ProductFlowPortType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__ProductFlowPortType(soap, p, "prodml22:ProductFlowPortType", "prodml22:ProductFlowPortType") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFlowPortType(soap, p, "prodml23:ProductFlowPortType", "prodml23:ProductFlowPortType") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowPortType * SOAP_FMAC4 soap_get_prodml22__ProductFlowPortType(struct soap*, prodml22__ProductFlowPortType *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowPortType * SOAP_FMAC4 soap_get_prodml23__ProductFlowPortType(struct soap*, prodml23__ProductFlowPortType *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType *p) +inline int soap_read_prodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowPortType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowPortType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowPortType(struct soap *soap, const char *URL, prodml22__ProductFlowPortType *p) +inline int soap_GET_prodml23__ProductFlowPortType(struct soap *soap, const char *URL, prodml23__ProductFlowPortType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowPortType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowPortType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowPortType(struct soap *soap, prodml22__ProductFlowPortType *p) +inline int soap_POST_recv_prodml23__ProductFlowPortType(struct soap *soap, prodml23__ProductFlowPortType *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowPortType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowPortType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind_DEFINED -inline void soap_default_prodml22__PlusComponentKind(struct soap *soap, prodml22__PlusComponentKind *a) +inline void soap_default_prodml23__PlusComponentKind(struct soap *soap, prodml23__PlusComponentKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PlusComponentKind - *a = SOAP_DEFAULT_prodml22__PlusComponentKind; +#ifdef SOAP_DEFAULT_prodml23__PlusComponentKind + *a = SOAP_DEFAULT_prodml23__PlusComponentKind; #else - *a = (prodml22__PlusComponentKind)0; + *a = (prodml23__PlusComponentKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PlusComponentKind(struct soap*, const char*, int, const prodml22__PlusComponentKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PlusComponentKind2s(struct soap*, prodml22__PlusComponentKind); -SOAP_FMAC3 prodml22__PlusComponentKind * SOAP_FMAC4 soap_in_prodml22__PlusComponentKind(struct soap*, const char*, prodml22__PlusComponentKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PlusComponentKind(struct soap*, const char*, prodml22__PlusComponentKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PlusComponentKind(struct soap*, const char*, int, const prodml23__PlusComponentKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PlusComponentKind2s(struct soap*, prodml23__PlusComponentKind); +SOAP_FMAC3 prodml23__PlusComponentKind * SOAP_FMAC4 soap_in_prodml23__PlusComponentKind(struct soap*, const char*, prodml23__PlusComponentKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PlusComponentKind(struct soap*, const char*, prodml23__PlusComponentKind *); -SOAP_FMAC3 prodml22__PlusComponentKind * SOAP_FMAC4 soap_new_prodml22__PlusComponentKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PlusComponentKind(struct soap*, const prodml22__PlusComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PlusComponentKind * SOAP_FMAC4 soap_new_prodml23__PlusComponentKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PlusComponentKind(struct soap*, const prodml23__PlusComponentKind *, const char*, const char*); -inline int soap_write_prodml22__PlusComponentKind(struct soap *soap, prodml22__PlusComponentKind const*p) +inline int soap_write_prodml23__PlusComponentKind(struct soap *soap, prodml23__PlusComponentKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PlusComponentKind(soap, p, "prodml22:PlusComponentKind", "prodml22:PlusComponentKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PlusComponentKind(soap, p, "prodml23:PlusComponentKind", "prodml23:PlusComponentKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PlusComponentKind(struct soap *soap, const char *URL, prodml22__PlusComponentKind const*p) +inline int soap_PUT_prodml23__PlusComponentKind(struct soap *soap, const char *URL, prodml23__PlusComponentKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PlusComponentKind(soap, p, "prodml22:PlusComponentKind", "prodml22:PlusComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PlusComponentKind(soap, p, "prodml23:PlusComponentKind", "prodml23:PlusComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PlusComponentKind(struct soap *soap, const char *URL, prodml22__PlusComponentKind const*p) +inline int soap_PATCH_prodml23__PlusComponentKind(struct soap *soap, const char *URL, prodml23__PlusComponentKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PlusComponentKind(soap, p, "prodml22:PlusComponentKind", "prodml22:PlusComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PlusComponentKind(soap, p, "prodml23:PlusComponentKind", "prodml23:PlusComponentKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PlusComponentKind(struct soap *soap, const char *URL, prodml22__PlusComponentKind const*p) +inline int soap_POST_send_prodml23__PlusComponentKind(struct soap *soap, const char *URL, prodml23__PlusComponentKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PlusComponentKind(soap, p, "prodml22:PlusComponentKind", "prodml22:PlusComponentKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PlusComponentKind(soap, p, "prodml23:PlusComponentKind", "prodml23:PlusComponentKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PlusComponentKind * SOAP_FMAC4 soap_get_prodml22__PlusComponentKind(struct soap*, prodml22__PlusComponentKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PlusComponentKind * SOAP_FMAC4 soap_get_prodml23__PlusComponentKind(struct soap*, prodml23__PlusComponentKind *, const char*, const char*); -inline int soap_read_prodml22__PlusComponentKind(struct soap *soap, prodml22__PlusComponentKind *p) +inline int soap_read_prodml23__PlusComponentKind(struct soap *soap, prodml23__PlusComponentKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PlusComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PlusComponentKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PlusComponentKind(struct soap *soap, const char *URL, prodml22__PlusComponentKind *p) +inline int soap_GET_prodml23__PlusComponentKind(struct soap *soap, const char *URL, prodml23__PlusComponentKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PlusComponentKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PlusComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PlusComponentKind(struct soap *soap, prodml22__PlusComponentKind *p) +inline int soap_POST_recv_prodml23__PlusComponentKind(struct soap *soap, prodml23__PlusComponentKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__PlusComponentKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PlusComponentKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier_DEFINED -inline void soap_default_prodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier *a) +inline void soap_default_prodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FlowSubQualifier - *a = SOAP_DEFAULT_prodml22__FlowSubQualifier; +#ifdef SOAP_DEFAULT_prodml23__FlowSubQualifier + *a = SOAP_DEFAULT_prodml23__FlowSubQualifier; #else - *a = (prodml22__FlowSubQualifier)0; + *a = (prodml23__FlowSubQualifier)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowSubQualifier(struct soap*, const char*, int, const prodml22__FlowSubQualifier *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FlowSubQualifier2s(struct soap*, prodml22__FlowSubQualifier); -SOAP_FMAC3 prodml22__FlowSubQualifier * SOAP_FMAC4 soap_in_prodml22__FlowSubQualifier(struct soap*, const char*, prodml22__FlowSubQualifier *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FlowSubQualifier(struct soap*, const char*, prodml22__FlowSubQualifier *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowSubQualifier(struct soap*, const char*, int, const prodml23__FlowSubQualifier *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FlowSubQualifier2s(struct soap*, prodml23__FlowSubQualifier); +SOAP_FMAC3 prodml23__FlowSubQualifier * SOAP_FMAC4 soap_in_prodml23__FlowSubQualifier(struct soap*, const char*, prodml23__FlowSubQualifier *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FlowSubQualifier(struct soap*, const char*, prodml23__FlowSubQualifier *); -SOAP_FMAC3 prodml22__FlowSubQualifier * SOAP_FMAC4 soap_new_prodml22__FlowSubQualifier(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FlowSubQualifier(struct soap*, const prodml22__FlowSubQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowSubQualifier * SOAP_FMAC4 soap_new_prodml23__FlowSubQualifier(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FlowSubQualifier(struct soap*, const prodml23__FlowSubQualifier *, const char*, const char*); -inline int soap_write_prodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier const*p) +inline int soap_write_prodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FlowSubQualifier(soap, p, "prodml22:FlowSubQualifier", "prodml22:FlowSubQualifier") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FlowSubQualifier(soap, p, "prodml23:FlowSubQualifier", "prodml23:FlowSubQualifier") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FlowSubQualifier(struct soap *soap, const char *URL, prodml22__FlowSubQualifier const*p) +inline int soap_PUT_prodml23__FlowSubQualifier(struct soap *soap, const char *URL, prodml23__FlowSubQualifier const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FlowSubQualifier(soap, p, "prodml22:FlowSubQualifier", "prodml22:FlowSubQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FlowSubQualifier(soap, p, "prodml23:FlowSubQualifier", "prodml23:FlowSubQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlowSubQualifier(struct soap *soap, const char *URL, prodml22__FlowSubQualifier const*p) +inline int soap_PATCH_prodml23__FlowSubQualifier(struct soap *soap, const char *URL, prodml23__FlowSubQualifier const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FlowSubQualifier(soap, p, "prodml22:FlowSubQualifier", "prodml22:FlowSubQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FlowSubQualifier(soap, p, "prodml23:FlowSubQualifier", "prodml23:FlowSubQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlowSubQualifier(struct soap *soap, const char *URL, prodml22__FlowSubQualifier const*p) +inline int soap_POST_send_prodml23__FlowSubQualifier(struct soap *soap, const char *URL, prodml23__FlowSubQualifier const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FlowSubQualifier(soap, p, "prodml22:FlowSubQualifier", "prodml22:FlowSubQualifier") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FlowSubQualifier(soap, p, "prodml23:FlowSubQualifier", "prodml23:FlowSubQualifier") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowSubQualifier * SOAP_FMAC4 soap_get_prodml22__FlowSubQualifier(struct soap*, prodml22__FlowSubQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowSubQualifier * SOAP_FMAC4 soap_get_prodml23__FlowSubQualifier(struct soap*, prodml23__FlowSubQualifier *, const char*, const char*); -inline int soap_read_prodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier *p) +inline int soap_read_prodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlowSubQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlowSubQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlowSubQualifier(struct soap *soap, const char *URL, prodml22__FlowSubQualifier *p) +inline int soap_GET_prodml23__FlowSubQualifier(struct soap *soap, const char *URL, prodml23__FlowSubQualifier *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlowSubQualifier(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlowSubQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlowSubQualifier(struct soap *soap, prodml22__FlowSubQualifier *p) +inline int soap_POST_recv_prodml23__FlowSubQualifier(struct soap *soap, prodml23__FlowSubQualifier *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlowSubQualifier(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlowSubQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier_DEFINED -inline void soap_default_prodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier *a) +inline void soap_default_prodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FlowQualifier - *a = SOAP_DEFAULT_prodml22__FlowQualifier; +#ifdef SOAP_DEFAULT_prodml23__FlowQualifier + *a = SOAP_DEFAULT_prodml23__FlowQualifier; #else - *a = (prodml22__FlowQualifier)0; + *a = (prodml23__FlowQualifier)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowQualifier(struct soap*, const char*, int, const prodml22__FlowQualifier *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FlowQualifier2s(struct soap*, prodml22__FlowQualifier); -SOAP_FMAC3 prodml22__FlowQualifier * SOAP_FMAC4 soap_in_prodml22__FlowQualifier(struct soap*, const char*, prodml22__FlowQualifier *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FlowQualifier(struct soap*, const char*, prodml22__FlowQualifier *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowQualifier(struct soap*, const char*, int, const prodml23__FlowQualifier *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FlowQualifier2s(struct soap*, prodml23__FlowQualifier); +SOAP_FMAC3 prodml23__FlowQualifier * SOAP_FMAC4 soap_in_prodml23__FlowQualifier(struct soap*, const char*, prodml23__FlowQualifier *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FlowQualifier(struct soap*, const char*, prodml23__FlowQualifier *); -SOAP_FMAC3 prodml22__FlowQualifier * SOAP_FMAC4 soap_new_prodml22__FlowQualifier(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FlowQualifier(struct soap*, const prodml22__FlowQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowQualifier * SOAP_FMAC4 soap_new_prodml23__FlowQualifier(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FlowQualifier(struct soap*, const prodml23__FlowQualifier *, const char*, const char*); -inline int soap_write_prodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier const*p) +inline int soap_write_prodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FlowQualifier(soap, p, "prodml22:FlowQualifier", "prodml22:FlowQualifier") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FlowQualifier(soap, p, "prodml23:FlowQualifier", "prodml23:FlowQualifier") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FlowQualifier(struct soap *soap, const char *URL, prodml22__FlowQualifier const*p) +inline int soap_PUT_prodml23__FlowQualifier(struct soap *soap, const char *URL, prodml23__FlowQualifier const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FlowQualifier(soap, p, "prodml22:FlowQualifier", "prodml22:FlowQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FlowQualifier(soap, p, "prodml23:FlowQualifier", "prodml23:FlowQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlowQualifier(struct soap *soap, const char *URL, prodml22__FlowQualifier const*p) +inline int soap_PATCH_prodml23__FlowQualifier(struct soap *soap, const char *URL, prodml23__FlowQualifier const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FlowQualifier(soap, p, "prodml22:FlowQualifier", "prodml22:FlowQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FlowQualifier(soap, p, "prodml23:FlowQualifier", "prodml23:FlowQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlowQualifier(struct soap *soap, const char *URL, prodml22__FlowQualifier const*p) +inline int soap_POST_send_prodml23__FlowQualifier(struct soap *soap, const char *URL, prodml23__FlowQualifier const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FlowQualifier(soap, p, "prodml22:FlowQualifier", "prodml22:FlowQualifier") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FlowQualifier(soap, p, "prodml23:FlowQualifier", "prodml23:FlowQualifier") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowQualifier * SOAP_FMAC4 soap_get_prodml22__FlowQualifier(struct soap*, prodml22__FlowQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowQualifier * SOAP_FMAC4 soap_get_prodml23__FlowQualifier(struct soap*, prodml23__FlowQualifier *, const char*, const char*); -inline int soap_read_prodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier *p) +inline int soap_read_prodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlowQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlowQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlowQualifier(struct soap *soap, const char *URL, prodml22__FlowQualifier *p) +inline int soap_GET_prodml23__FlowQualifier(struct soap *soap, const char *URL, prodml23__FlowQualifier *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlowQualifier(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlowQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlowQualifier(struct soap *soap, prodml22__FlowQualifier *p) +inline int soap_POST_recv_prodml23__FlowQualifier(struct soap *soap, prodml23__FlowQualifier *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlowQualifier(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlowQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode_DEFINED -inline void soap_default_prodml22__FiberMode(struct soap *soap, prodml22__FiberMode *a) +inline void soap_default_prodml23__FiberMode(struct soap *soap, prodml23__FiberMode *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FiberMode - *a = SOAP_DEFAULT_prodml22__FiberMode; +#ifdef SOAP_DEFAULT_prodml23__FiberMode + *a = SOAP_DEFAULT_prodml23__FiberMode; #else - *a = (prodml22__FiberMode)0; + *a = (prodml23__FiberMode)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FiberMode(struct soap*, const char*, int, const prodml22__FiberMode *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FiberMode2s(struct soap*, prodml22__FiberMode); -SOAP_FMAC3 prodml22__FiberMode * SOAP_FMAC4 soap_in_prodml22__FiberMode(struct soap*, const char*, prodml22__FiberMode *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FiberMode(struct soap*, const char*, prodml22__FiberMode *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FiberMode(struct soap*, const char*, int, const prodml23__FiberMode *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FiberMode2s(struct soap*, prodml23__FiberMode); +SOAP_FMAC3 prodml23__FiberMode * SOAP_FMAC4 soap_in_prodml23__FiberMode(struct soap*, const char*, prodml23__FiberMode *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FiberMode(struct soap*, const char*, prodml23__FiberMode *); -SOAP_FMAC3 prodml22__FiberMode * SOAP_FMAC4 soap_new_prodml22__FiberMode(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FiberMode(struct soap*, const prodml22__FiberMode *, const char*, const char*); +SOAP_FMAC3 prodml23__FiberMode * SOAP_FMAC4 soap_new_prodml23__FiberMode(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FiberMode(struct soap*, const prodml23__FiberMode *, const char*, const char*); -inline int soap_write_prodml22__FiberMode(struct soap *soap, prodml22__FiberMode const*p) +inline int soap_write_prodml23__FiberMode(struct soap *soap, prodml23__FiberMode const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FiberMode(soap, p, "prodml22:FiberMode", "prodml22:FiberMode") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FiberMode(soap, p, "prodml23:FiberMode", "prodml23:FiberMode") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FiberMode(struct soap *soap, const char *URL, prodml22__FiberMode const*p) +inline int soap_PUT_prodml23__FiberMode(struct soap *soap, const char *URL, prodml23__FiberMode const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FiberMode(soap, p, "prodml22:FiberMode", "prodml22:FiberMode") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FiberMode(soap, p, "prodml23:FiberMode", "prodml23:FiberMode") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FiberMode(struct soap *soap, const char *URL, prodml22__FiberMode const*p) +inline int soap_PATCH_prodml23__FiberMode(struct soap *soap, const char *URL, prodml23__FiberMode const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FiberMode(soap, p, "prodml22:FiberMode", "prodml22:FiberMode") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FiberMode(soap, p, "prodml23:FiberMode", "prodml23:FiberMode") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FiberMode(struct soap *soap, const char *URL, prodml22__FiberMode const*p) +inline int soap_POST_send_prodml23__FiberMode(struct soap *soap, const char *URL, prodml23__FiberMode const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FiberMode(soap, p, "prodml22:FiberMode", "prodml22:FiberMode") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FiberMode(soap, p, "prodml23:FiberMode", "prodml23:FiberMode") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FiberMode * SOAP_FMAC4 soap_get_prodml22__FiberMode(struct soap*, prodml22__FiberMode *, const char*, const char*); +SOAP_FMAC3 prodml23__FiberMode * SOAP_FMAC4 soap_get_prodml23__FiberMode(struct soap*, prodml23__FiberMode *, const char*, const char*); -inline int soap_read_prodml22__FiberMode(struct soap *soap, prodml22__FiberMode *p) +inline int soap_read_prodml23__FiberMode(struct soap *soap, prodml23__FiberMode *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FiberMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FiberMode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FiberMode(struct soap *soap, const char *URL, prodml22__FiberMode *p) +inline int soap_GET_prodml23__FiberMode(struct soap *soap, const char *URL, prodml23__FiberMode *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FiberMode(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FiberMode(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FiberMode(struct soap *soap, prodml22__FiberMode *p) +inline int soap_POST_recv_prodml23__FiberMode(struct soap *soap, prodml23__FiberMode *p) { - if (gsoap_eml2_3::soap_read_prodml22__FiberMode(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FiberMode(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter_DEFINED -inline void soap_default_prodml22__FacilityParameter(struct soap *soap, prodml22__FacilityParameter *a) +inline void soap_default_prodml23__FacilityParameter(struct soap *soap, prodml23__FacilityParameter *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__FacilityParameter - *a = SOAP_DEFAULT_prodml22__FacilityParameter; +#ifdef SOAP_DEFAULT_prodml23__FacilityParameter + *a = SOAP_DEFAULT_prodml23__FacilityParameter; #else - *a = (prodml22__FacilityParameter)0; + *a = (prodml23__FacilityParameter)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityParameter(struct soap*, const char*, int, const prodml22__FacilityParameter *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__FacilityParameter2s(struct soap*, prodml22__FacilityParameter); -SOAP_FMAC3 prodml22__FacilityParameter * SOAP_FMAC4 soap_in_prodml22__FacilityParameter(struct soap*, const char*, prodml22__FacilityParameter *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__FacilityParameter(struct soap*, const char*, prodml22__FacilityParameter *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityParameter(struct soap*, const char*, int, const prodml23__FacilityParameter *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__FacilityParameter2s(struct soap*, prodml23__FacilityParameter); +SOAP_FMAC3 prodml23__FacilityParameter * SOAP_FMAC4 soap_in_prodml23__FacilityParameter(struct soap*, const char*, prodml23__FacilityParameter *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__FacilityParameter(struct soap*, const char*, prodml23__FacilityParameter *); -SOAP_FMAC3 prodml22__FacilityParameter * SOAP_FMAC4 soap_new_prodml22__FacilityParameter(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FacilityParameter(struct soap*, const prodml22__FacilityParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityParameter * SOAP_FMAC4 soap_new_prodml23__FacilityParameter(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FacilityParameter(struct soap*, const prodml23__FacilityParameter *, const char*, const char*); -inline int soap_write_prodml22__FacilityParameter(struct soap *soap, prodml22__FacilityParameter const*p) +inline int soap_write_prodml23__FacilityParameter(struct soap *soap, prodml23__FacilityParameter const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FacilityParameter(soap, p, "prodml22:FacilityParameter", "prodml22:FacilityParameter") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FacilityParameter(soap, p, "prodml23:FacilityParameter", "prodml23:FacilityParameter") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FacilityParameter(struct soap *soap, const char *URL, prodml22__FacilityParameter const*p) +inline int soap_PUT_prodml23__FacilityParameter(struct soap *soap, const char *URL, prodml23__FacilityParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FacilityParameter(soap, p, "prodml22:FacilityParameter", "prodml22:FacilityParameter") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FacilityParameter(soap, p, "prodml23:FacilityParameter", "prodml23:FacilityParameter") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilityParameter(struct soap *soap, const char *URL, prodml22__FacilityParameter const*p) +inline int soap_PATCH_prodml23__FacilityParameter(struct soap *soap, const char *URL, prodml23__FacilityParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FacilityParameter(soap, p, "prodml22:FacilityParameter", "prodml22:FacilityParameter") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FacilityParameter(soap, p, "prodml23:FacilityParameter", "prodml23:FacilityParameter") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilityParameter(struct soap *soap, const char *URL, prodml22__FacilityParameter const*p) +inline int soap_POST_send_prodml23__FacilityParameter(struct soap *soap, const char *URL, prodml23__FacilityParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__FacilityParameter(soap, p, "prodml22:FacilityParameter", "prodml22:FacilityParameter") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FacilityParameter(soap, p, "prodml23:FacilityParameter", "prodml23:FacilityParameter") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilityParameter * SOAP_FMAC4 soap_get_prodml22__FacilityParameter(struct soap*, prodml22__FacilityParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityParameter * SOAP_FMAC4 soap_get_prodml23__FacilityParameter(struct soap*, prodml23__FacilityParameter *, const char*, const char*); -inline int soap_read_prodml22__FacilityParameter(struct soap *soap, prodml22__FacilityParameter *p) +inline int soap_read_prodml23__FacilityParameter(struct soap *soap, prodml23__FacilityParameter *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilityParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilityParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilityParameter(struct soap *soap, const char *URL, prodml22__FacilityParameter *p) +inline int soap_GET_prodml23__FacilityParameter(struct soap *soap, const char *URL, prodml23__FacilityParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilityParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilityParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilityParameter(struct soap *soap, prodml22__FacilityParameter *p) +inline int soap_POST_recv_prodml23__FacilityParameter(struct soap *soap, prodml23__FacilityParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilityParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilityParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier_DEFINED -inline void soap_default_prodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier *a) +inline void soap_default_prodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__EndpointQualifier - *a = SOAP_DEFAULT_prodml22__EndpointQualifier; +#ifdef SOAP_DEFAULT_prodml23__EndpointQualifier + *a = SOAP_DEFAULT_prodml23__EndpointQualifier; #else - *a = (prodml22__EndpointQualifier)0; + *a = (prodml23__EndpointQualifier)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifier(struct soap*, const char*, int, const prodml22__EndpointQualifier *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__EndpointQualifier2s(struct soap*, prodml22__EndpointQualifier); -SOAP_FMAC3 prodml22__EndpointQualifier * SOAP_FMAC4 soap_in_prodml22__EndpointQualifier(struct soap*, const char*, prodml22__EndpointQualifier *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__EndpointQualifier(struct soap*, const char*, prodml22__EndpointQualifier *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifier(struct soap*, const char*, int, const prodml23__EndpointQualifier *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__EndpointQualifier2s(struct soap*, prodml23__EndpointQualifier); +SOAP_FMAC3 prodml23__EndpointQualifier * SOAP_FMAC4 soap_in_prodml23__EndpointQualifier(struct soap*, const char*, prodml23__EndpointQualifier *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__EndpointQualifier(struct soap*, const char*, prodml23__EndpointQualifier *); -SOAP_FMAC3 prodml22__EndpointQualifier * SOAP_FMAC4 soap_new_prodml22__EndpointQualifier(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__EndpointQualifier(struct soap*, const prodml22__EndpointQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifier * SOAP_FMAC4 soap_new_prodml23__EndpointQualifier(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__EndpointQualifier(struct soap*, const prodml23__EndpointQualifier *, const char*, const char*); -inline int soap_write_prodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier const*p) +inline int soap_write_prodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__EndpointQualifier(soap, p, "prodml22:EndpointQualifier", "prodml22:EndpointQualifier") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__EndpointQualifier(soap, p, "prodml23:EndpointQualifier", "prodml23:EndpointQualifier") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__EndpointQualifier(struct soap *soap, const char *URL, prodml22__EndpointQualifier const*p) +inline int soap_PUT_prodml23__EndpointQualifier(struct soap *soap, const char *URL, prodml23__EndpointQualifier const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__EndpointQualifier(soap, p, "prodml22:EndpointQualifier", "prodml22:EndpointQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__EndpointQualifier(soap, p, "prodml23:EndpointQualifier", "prodml23:EndpointQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__EndpointQualifier(struct soap *soap, const char *URL, prodml22__EndpointQualifier const*p) +inline int soap_PATCH_prodml23__EndpointQualifier(struct soap *soap, const char *URL, prodml23__EndpointQualifier const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__EndpointQualifier(soap, p, "prodml22:EndpointQualifier", "prodml22:EndpointQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__EndpointQualifier(soap, p, "prodml23:EndpointQualifier", "prodml23:EndpointQualifier") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__EndpointQualifier(struct soap *soap, const char *URL, prodml22__EndpointQualifier const*p) +inline int soap_POST_send_prodml23__EndpointQualifier(struct soap *soap, const char *URL, prodml23__EndpointQualifier const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__EndpointQualifier(soap, p, "prodml22:EndpointQualifier", "prodml22:EndpointQualifier") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__EndpointQualifier(soap, p, "prodml23:EndpointQualifier", "prodml23:EndpointQualifier") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQualifier * SOAP_FMAC4 soap_get_prodml22__EndpointQualifier(struct soap*, prodml22__EndpointQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifier * SOAP_FMAC4 soap_get_prodml23__EndpointQualifier(struct soap*, prodml23__EndpointQualifier *, const char*, const char*); -inline int soap_read_prodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier *p) +inline int soap_read_prodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__EndpointQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__EndpointQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__EndpointQualifier(struct soap *soap, const char *URL, prodml22__EndpointQualifier *p) +inline int soap_GET_prodml23__EndpointQualifier(struct soap *soap, const char *URL, prodml23__EndpointQualifier *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__EndpointQualifier(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__EndpointQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__EndpointQualifier(struct soap *soap, prodml22__EndpointQualifier *p) +inline int soap_POST_recv_prodml23__EndpointQualifier(struct soap *soap, prodml23__EndpointQualifier *p) { - if (gsoap_eml2_3::soap_read_prodml22__EndpointQualifier(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__EndpointQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind_DEFINED -inline void soap_default_prodml22__BusinessUnitKind(struct soap *soap, prodml22__BusinessUnitKind *a) +inline void soap_default_prodml23__BusinessUnitKind(struct soap *soap, prodml23__BusinessUnitKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__BusinessUnitKind - *a = SOAP_DEFAULT_prodml22__BusinessUnitKind; +#ifdef SOAP_DEFAULT_prodml23__BusinessUnitKind + *a = SOAP_DEFAULT_prodml23__BusinessUnitKind; #else - *a = (prodml22__BusinessUnitKind)0; + *a = (prodml23__BusinessUnitKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BusinessUnitKind(struct soap*, const char*, int, const prodml22__BusinessUnitKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__BusinessUnitKind2s(struct soap*, prodml22__BusinessUnitKind); -SOAP_FMAC3 prodml22__BusinessUnitKind * SOAP_FMAC4 soap_in_prodml22__BusinessUnitKind(struct soap*, const char*, prodml22__BusinessUnitKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__BusinessUnitKind(struct soap*, const char*, prodml22__BusinessUnitKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BusinessUnitKind(struct soap*, const char*, int, const prodml23__BusinessUnitKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__BusinessUnitKind2s(struct soap*, prodml23__BusinessUnitKind); +SOAP_FMAC3 prodml23__BusinessUnitKind * SOAP_FMAC4 soap_in_prodml23__BusinessUnitKind(struct soap*, const char*, prodml23__BusinessUnitKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__BusinessUnitKind(struct soap*, const char*, prodml23__BusinessUnitKind *); -SOAP_FMAC3 prodml22__BusinessUnitKind * SOAP_FMAC4 soap_new_prodml22__BusinessUnitKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__BusinessUnitKind(struct soap*, const prodml22__BusinessUnitKind *, const char*, const char*); +SOAP_FMAC3 prodml23__BusinessUnitKind * SOAP_FMAC4 soap_new_prodml23__BusinessUnitKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__BusinessUnitKind(struct soap*, const prodml23__BusinessUnitKind *, const char*, const char*); -inline int soap_write_prodml22__BusinessUnitKind(struct soap *soap, prodml22__BusinessUnitKind const*p) +inline int soap_write_prodml23__BusinessUnitKind(struct soap *soap, prodml23__BusinessUnitKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__BusinessUnitKind(soap, p, "prodml22:BusinessUnitKind", "prodml22:BusinessUnitKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__BusinessUnitKind(soap, p, "prodml23:BusinessUnitKind", "prodml23:BusinessUnitKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__BusinessUnitKind(struct soap *soap, const char *URL, prodml22__BusinessUnitKind const*p) +inline int soap_PUT_prodml23__BusinessUnitKind(struct soap *soap, const char *URL, prodml23__BusinessUnitKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BusinessUnitKind(soap, p, "prodml22:BusinessUnitKind", "prodml22:BusinessUnitKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BusinessUnitKind(soap, p, "prodml23:BusinessUnitKind", "prodml23:BusinessUnitKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BusinessUnitKind(struct soap *soap, const char *URL, prodml22__BusinessUnitKind const*p) +inline int soap_PATCH_prodml23__BusinessUnitKind(struct soap *soap, const char *URL, prodml23__BusinessUnitKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BusinessUnitKind(soap, p, "prodml22:BusinessUnitKind", "prodml22:BusinessUnitKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BusinessUnitKind(soap, p, "prodml23:BusinessUnitKind", "prodml23:BusinessUnitKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BusinessUnitKind(struct soap *soap, const char *URL, prodml22__BusinessUnitKind const*p) +inline int soap_POST_send_prodml23__BusinessUnitKind(struct soap *soap, const char *URL, prodml23__BusinessUnitKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__BusinessUnitKind(soap, p, "prodml22:BusinessUnitKind", "prodml22:BusinessUnitKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__BusinessUnitKind(soap, p, "prodml23:BusinessUnitKind", "prodml23:BusinessUnitKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BusinessUnitKind * SOAP_FMAC4 soap_get_prodml22__BusinessUnitKind(struct soap*, prodml22__BusinessUnitKind *, const char*, const char*); +SOAP_FMAC3 prodml23__BusinessUnitKind * SOAP_FMAC4 soap_get_prodml23__BusinessUnitKind(struct soap*, prodml23__BusinessUnitKind *, const char*, const char*); -inline int soap_read_prodml22__BusinessUnitKind(struct soap *soap, prodml22__BusinessUnitKind *p) +inline int soap_read_prodml23__BusinessUnitKind(struct soap *soap, prodml23__BusinessUnitKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BusinessUnitKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BusinessUnitKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BusinessUnitKind(struct soap *soap, const char *URL, prodml22__BusinessUnitKind *p) +inline int soap_GET_prodml23__BusinessUnitKind(struct soap *soap, const char *URL, prodml23__BusinessUnitKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BusinessUnitKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BusinessUnitKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BusinessUnitKind(struct soap *soap, prodml22__BusinessUnitKind *p) +inline int soap_POST_recv_prodml23__BusinessUnitKind(struct soap *soap, prodml23__BusinessUnitKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__BusinessUnitKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BusinessUnitKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind_DEFINED -inline void soap_default_prodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind *a) +inline void soap_default_prodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__SaturationKind - *a = SOAP_DEFAULT_prodml22__SaturationKind; +#ifdef SOAP_DEFAULT_prodml23__SaturationKind + *a = SOAP_DEFAULT_prodml23__SaturationKind; #else - *a = (prodml22__SaturationKind)0; + *a = (prodml23__SaturationKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationKind(struct soap*, const char*, int, const prodml22__SaturationKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__SaturationKind2s(struct soap*, prodml22__SaturationKind); -SOAP_FMAC3 prodml22__SaturationKind * SOAP_FMAC4 soap_in_prodml22__SaturationKind(struct soap*, const char*, prodml22__SaturationKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__SaturationKind(struct soap*, const char*, prodml22__SaturationKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationKind(struct soap*, const char*, int, const prodml23__SaturationKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__SaturationKind2s(struct soap*, prodml23__SaturationKind); +SOAP_FMAC3 prodml23__SaturationKind * SOAP_FMAC4 soap_in_prodml23__SaturationKind(struct soap*, const char*, prodml23__SaturationKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__SaturationKind(struct soap*, const char*, prodml23__SaturationKind *); -SOAP_FMAC3 prodml22__SaturationKind * SOAP_FMAC4 soap_new_prodml22__SaturationKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SaturationKind(struct soap*, const prodml22__SaturationKind *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationKind * SOAP_FMAC4 soap_new_prodml23__SaturationKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SaturationKind(struct soap*, const prodml23__SaturationKind *, const char*, const char*); -inline int soap_write_prodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind const*p) +inline int soap_write_prodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SaturationKind(soap, p, "prodml22:SaturationKind", "prodml22:SaturationKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SaturationKind(soap, p, "prodml23:SaturationKind", "prodml23:SaturationKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SaturationKind(struct soap *soap, const char *URL, prodml22__SaturationKind const*p) +inline int soap_PUT_prodml23__SaturationKind(struct soap *soap, const char *URL, prodml23__SaturationKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SaturationKind(soap, p, "prodml22:SaturationKind", "prodml22:SaturationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SaturationKind(soap, p, "prodml23:SaturationKind", "prodml23:SaturationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SaturationKind(struct soap *soap, const char *URL, prodml22__SaturationKind const*p) +inline int soap_PATCH_prodml23__SaturationKind(struct soap *soap, const char *URL, prodml23__SaturationKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SaturationKind(soap, p, "prodml22:SaturationKind", "prodml22:SaturationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SaturationKind(soap, p, "prodml23:SaturationKind", "prodml23:SaturationKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SaturationKind(struct soap *soap, const char *URL, prodml22__SaturationKind const*p) +inline int soap_POST_send_prodml23__SaturationKind(struct soap *soap, const char *URL, prodml23__SaturationKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__SaturationKind(soap, p, "prodml22:SaturationKind", "prodml22:SaturationKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SaturationKind(soap, p, "prodml23:SaturationKind", "prodml23:SaturationKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationKind * SOAP_FMAC4 soap_get_prodml22__SaturationKind(struct soap*, prodml22__SaturationKind *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationKind * SOAP_FMAC4 soap_get_prodml23__SaturationKind(struct soap*, prodml23__SaturationKind *, const char*, const char*); -inline int soap_read_prodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind *p) +inline int soap_read_prodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SaturationKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SaturationKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SaturationKind(struct soap *soap, const char *URL, prodml22__SaturationKind *p) +inline int soap_GET_prodml23__SaturationKind(struct soap *soap, const char *URL, prodml23__SaturationKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SaturationKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SaturationKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SaturationKind(struct soap *soap, prodml22__SaturationKind *p) +inline int soap_POST_recv_prodml23__SaturationKind(struct soap *soap, prodml23__SaturationKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__SaturationKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SaturationKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind_DEFINED -inline void soap_default_prodml22__PvtModelParameterKind(struct soap *soap, prodml22__PvtModelParameterKind *a) +inline void soap_default_prodml23__PvtModelParameterKind(struct soap *soap, prodml23__PvtModelParameterKind *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__PvtModelParameterKind - *a = SOAP_DEFAULT_prodml22__PvtModelParameterKind; +#ifdef SOAP_DEFAULT_prodml23__PvtModelParameterKind + *a = SOAP_DEFAULT_prodml23__PvtModelParameterKind; #else - *a = (prodml22__PvtModelParameterKind)0; + *a = (prodml23__PvtModelParameterKind)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameterKind(struct soap*, const char*, int, const prodml22__PvtModelParameterKind *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__PvtModelParameterKind2s(struct soap*, prodml22__PvtModelParameterKind); -SOAP_FMAC3 prodml22__PvtModelParameterKind * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterKind(struct soap*, const char*, prodml22__PvtModelParameterKind *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__PvtModelParameterKind(struct soap*, const char*, prodml22__PvtModelParameterKind *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameterKind(struct soap*, const char*, int, const prodml23__PvtModelParameterKind *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__PvtModelParameterKind2s(struct soap*, prodml23__PvtModelParameterKind); +SOAP_FMAC3 prodml23__PvtModelParameterKind * SOAP_FMAC4 soap_in_prodml23__PvtModelParameterKind(struct soap*, const char*, prodml23__PvtModelParameterKind *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__PvtModelParameterKind(struct soap*, const char*, prodml23__PvtModelParameterKind *); -SOAP_FMAC3 prodml22__PvtModelParameterKind * SOAP_FMAC4 soap_new_prodml22__PvtModelParameterKind(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PvtModelParameterKind(struct soap*, const prodml22__PvtModelParameterKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PvtModelParameterKind * SOAP_FMAC4 soap_new_prodml23__PvtModelParameterKind(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PvtModelParameterKind(struct soap*, const prodml23__PvtModelParameterKind *, const char*, const char*); -inline int soap_write_prodml22__PvtModelParameterKind(struct soap *soap, prodml22__PvtModelParameterKind const*p) +inline int soap_write_prodml23__PvtModelParameterKind(struct soap *soap, prodml23__PvtModelParameterKind const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKind(soap, p, "prodml22:PvtModelParameterKind", "prodml22:PvtModelParameterKind") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKind(soap, p, "prodml23:PvtModelParameterKind", "prodml23:PvtModelParameterKind") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PvtModelParameterKind(struct soap *soap, const char *URL, prodml22__PvtModelParameterKind const*p) +inline int soap_PUT_prodml23__PvtModelParameterKind(struct soap *soap, const char *URL, prodml23__PvtModelParameterKind const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKind(soap, p, "prodml22:PvtModelParameterKind", "prodml22:PvtModelParameterKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKind(soap, p, "prodml23:PvtModelParameterKind", "prodml23:PvtModelParameterKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PvtModelParameterKind(struct soap *soap, const char *URL, prodml22__PvtModelParameterKind const*p) +inline int soap_PATCH_prodml23__PvtModelParameterKind(struct soap *soap, const char *URL, prodml23__PvtModelParameterKind const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKind(soap, p, "prodml22:PvtModelParameterKind", "prodml22:PvtModelParameterKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKind(soap, p, "prodml23:PvtModelParameterKind", "prodml23:PvtModelParameterKind") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PvtModelParameterKind(struct soap *soap, const char *URL, prodml22__PvtModelParameterKind const*p) +inline int soap_POST_send_prodml23__PvtModelParameterKind(struct soap *soap, const char *URL, prodml23__PvtModelParameterKind const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKind(soap, p, "prodml22:PvtModelParameterKind", "prodml22:PvtModelParameterKind") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKind(soap, p, "prodml23:PvtModelParameterKind", "prodml23:PvtModelParameterKind") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PvtModelParameterKind * SOAP_FMAC4 soap_get_prodml22__PvtModelParameterKind(struct soap*, prodml22__PvtModelParameterKind *, const char*, const char*); +SOAP_FMAC3 prodml23__PvtModelParameterKind * SOAP_FMAC4 soap_get_prodml23__PvtModelParameterKind(struct soap*, prodml23__PvtModelParameterKind *, const char*, const char*); -inline int soap_read_prodml22__PvtModelParameterKind(struct soap *soap, prodml22__PvtModelParameterKind *p) +inline int soap_read_prodml23__PvtModelParameterKind(struct soap *soap, prodml23__PvtModelParameterKind *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PvtModelParameterKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PvtModelParameterKind(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PvtModelParameterKind(struct soap *soap, const char *URL, prodml22__PvtModelParameterKind *p) +inline int soap_GET_prodml23__PvtModelParameterKind(struct soap *soap, const char *URL, prodml23__PvtModelParameterKind *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PvtModelParameterKind(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PvtModelParameterKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PvtModelParameterKind(struct soap *soap, prodml22__PvtModelParameterKind *p) +inline int soap_POST_recv_prodml23__PvtModelParameterKind(struct soap *soap, prodml23__PvtModelParameterKind *p) { - if (gsoap_eml2_3::soap_read_prodml22__PvtModelParameterKind(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PvtModelParameterKind(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty_DEFINED -inline void soap_default_prodml22__OutputFluidProperty(struct soap *soap, prodml22__OutputFluidProperty *a) +inline void soap_default_prodml23__OutputFluidProperty(struct soap *soap, prodml23__OutputFluidProperty *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__OutputFluidProperty - *a = SOAP_DEFAULT_prodml22__OutputFluidProperty; +#ifdef SOAP_DEFAULT_prodml23__OutputFluidProperty + *a = SOAP_DEFAULT_prodml23__OutputFluidProperty; #else - *a = (prodml22__OutputFluidProperty)0; + *a = (prodml23__OutputFluidProperty)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputFluidProperty(struct soap*, const char*, int, const prodml22__OutputFluidProperty *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__OutputFluidProperty2s(struct soap*, prodml22__OutputFluidProperty); -SOAP_FMAC3 prodml22__OutputFluidProperty * SOAP_FMAC4 soap_in_prodml22__OutputFluidProperty(struct soap*, const char*, prodml22__OutputFluidProperty *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__OutputFluidProperty(struct soap*, const char*, prodml22__OutputFluidProperty *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputFluidProperty(struct soap*, const char*, int, const prodml23__OutputFluidProperty *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__OutputFluidProperty2s(struct soap*, prodml23__OutputFluidProperty); +SOAP_FMAC3 prodml23__OutputFluidProperty * SOAP_FMAC4 soap_in_prodml23__OutputFluidProperty(struct soap*, const char*, prodml23__OutputFluidProperty *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__OutputFluidProperty(struct soap*, const char*, prodml23__OutputFluidProperty *); -SOAP_FMAC3 prodml22__OutputFluidProperty * SOAP_FMAC4 soap_new_prodml22__OutputFluidProperty(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OutputFluidProperty(struct soap*, const prodml22__OutputFluidProperty *, const char*, const char*); +SOAP_FMAC3 prodml23__OutputFluidProperty * SOAP_FMAC4 soap_new_prodml23__OutputFluidProperty(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OutputFluidProperty(struct soap*, const prodml23__OutputFluidProperty *, const char*, const char*); -inline int soap_write_prodml22__OutputFluidProperty(struct soap *soap, prodml22__OutputFluidProperty const*p) +inline int soap_write_prodml23__OutputFluidProperty(struct soap *soap, prodml23__OutputFluidProperty const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__OutputFluidProperty(soap, p, "prodml22:OutputFluidProperty", "prodml22:OutputFluidProperty") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__OutputFluidProperty(soap, p, "prodml23:OutputFluidProperty", "prodml23:OutputFluidProperty") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__OutputFluidProperty(struct soap *soap, const char *URL, prodml22__OutputFluidProperty const*p) +inline int soap_PUT_prodml23__OutputFluidProperty(struct soap *soap, const char *URL, prodml23__OutputFluidProperty const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__OutputFluidProperty(soap, p, "prodml22:OutputFluidProperty", "prodml22:OutputFluidProperty") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OutputFluidProperty(soap, p, "prodml23:OutputFluidProperty", "prodml23:OutputFluidProperty") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OutputFluidProperty(struct soap *soap, const char *URL, prodml22__OutputFluidProperty const*p) +inline int soap_PATCH_prodml23__OutputFluidProperty(struct soap *soap, const char *URL, prodml23__OutputFluidProperty const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__OutputFluidProperty(soap, p, "prodml22:OutputFluidProperty", "prodml22:OutputFluidProperty") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OutputFluidProperty(soap, p, "prodml23:OutputFluidProperty", "prodml23:OutputFluidProperty") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OutputFluidProperty(struct soap *soap, const char *URL, prodml22__OutputFluidProperty const*p) +inline int soap_POST_send_prodml23__OutputFluidProperty(struct soap *soap, const char *URL, prodml23__OutputFluidProperty const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__OutputFluidProperty(soap, p, "prodml22:OutputFluidProperty", "prodml22:OutputFluidProperty") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OutputFluidProperty(soap, p, "prodml23:OutputFluidProperty", "prodml23:OutputFluidProperty") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OutputFluidProperty * SOAP_FMAC4 soap_get_prodml22__OutputFluidProperty(struct soap*, prodml22__OutputFluidProperty *, const char*, const char*); +SOAP_FMAC3 prodml23__OutputFluidProperty * SOAP_FMAC4 soap_get_prodml23__OutputFluidProperty(struct soap*, prodml23__OutputFluidProperty *, const char*, const char*); -inline int soap_read_prodml22__OutputFluidProperty(struct soap *soap, prodml22__OutputFluidProperty *p) +inline int soap_read_prodml23__OutputFluidProperty(struct soap *soap, prodml23__OutputFluidProperty *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OutputFluidProperty(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OutputFluidProperty(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OutputFluidProperty(struct soap *soap, const char *URL, prodml22__OutputFluidProperty *p) +inline int soap_GET_prodml23__OutputFluidProperty(struct soap *soap, const char *URL, prodml23__OutputFluidProperty *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OutputFluidProperty(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OutputFluidProperty(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OutputFluidProperty(struct soap *soap, prodml22__OutputFluidProperty *p) +inline int soap_POST_recv_prodml23__OutputFluidProperty(struct soap *soap, prodml23__OutputFluidProperty *p) { - if (gsoap_eml2_3::soap_read_prodml22__OutputFluidProperty(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OutputFluidProperty(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule_DEFINED -inline void soap_default_prodml22__MixingRule(struct soap *soap, prodml22__MixingRule *a) +inline void soap_default_prodml23__MixingRule(struct soap *soap, prodml23__MixingRule *a) { (void)soap; /* appease -Wall -Werror */ -#ifdef SOAP_DEFAULT_prodml22__MixingRule - *a = SOAP_DEFAULT_prodml22__MixingRule; +#ifdef SOAP_DEFAULT_prodml23__MixingRule + *a = SOAP_DEFAULT_prodml23__MixingRule; #else - *a = (prodml22__MixingRule)0; + *a = (prodml23__MixingRule)0; #endif } -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MixingRule(struct soap*, const char*, int, const prodml22__MixingRule *, const char*); -SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml22__MixingRule2s(struct soap*, prodml22__MixingRule); -SOAP_FMAC3 prodml22__MixingRule * SOAP_FMAC4 soap_in_prodml22__MixingRule(struct soap*, const char*, prodml22__MixingRule *, const char*); -SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml22__MixingRule(struct soap*, const char*, prodml22__MixingRule *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MixingRule(struct soap*, const char*, int, const prodml23__MixingRule *, const char*); +SOAP_FMAC3S const char* SOAP_FMAC4S soap_prodml23__MixingRule2s(struct soap*, prodml23__MixingRule); +SOAP_FMAC3 prodml23__MixingRule * SOAP_FMAC4 soap_in_prodml23__MixingRule(struct soap*, const char*, prodml23__MixingRule *, const char*); +SOAP_FMAC3S int SOAP_FMAC4S soap_s2prodml23__MixingRule(struct soap*, const char*, prodml23__MixingRule *); -SOAP_FMAC3 prodml22__MixingRule * SOAP_FMAC4 soap_new_prodml22__MixingRule(struct soap *soap, int n = -1); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__MixingRule(struct soap*, const prodml22__MixingRule *, const char*, const char*); +SOAP_FMAC3 prodml23__MixingRule * SOAP_FMAC4 soap_new_prodml23__MixingRule(struct soap *soap, int n = -1); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__MixingRule(struct soap*, const prodml23__MixingRule *, const char*, const char*); -inline int soap_write_prodml22__MixingRule(struct soap *soap, prodml22__MixingRule const*p) +inline int soap_write_prodml23__MixingRule(struct soap *soap, prodml23__MixingRule const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__MixingRule(soap, p, "prodml22:MixingRule", "prodml22:MixingRule") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__MixingRule(soap, p, "prodml23:MixingRule", "prodml23:MixingRule") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__MixingRule(struct soap *soap, const char *URL, prodml22__MixingRule const*p) +inline int soap_PUT_prodml23__MixingRule(struct soap *soap, const char *URL, prodml23__MixingRule const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__MixingRule(soap, p, "prodml22:MixingRule", "prodml22:MixingRule") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__MixingRule(soap, p, "prodml23:MixingRule", "prodml23:MixingRule") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MixingRule(struct soap *soap, const char *URL, prodml22__MixingRule const*p) +inline int soap_PATCH_prodml23__MixingRule(struct soap *soap, const char *URL, prodml23__MixingRule const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__MixingRule(soap, p, "prodml22:MixingRule", "prodml22:MixingRule") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__MixingRule(soap, p, "prodml23:MixingRule", "prodml23:MixingRule") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MixingRule(struct soap *soap, const char *URL, prodml22__MixingRule const*p) +inline int soap_POST_send_prodml23__MixingRule(struct soap *soap, const char *URL, prodml23__MixingRule const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml22__MixingRule(soap, p, "prodml22:MixingRule", "prodml22:MixingRule") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__MixingRule(soap, p, "prodml23:MixingRule", "prodml23:MixingRule") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MixingRule * SOAP_FMAC4 soap_get_prodml22__MixingRule(struct soap*, prodml22__MixingRule *, const char*, const char*); +SOAP_FMAC3 prodml23__MixingRule * SOAP_FMAC4 soap_get_prodml23__MixingRule(struct soap*, prodml23__MixingRule *, const char*, const char*); -inline int soap_read_prodml22__MixingRule(struct soap *soap, prodml22__MixingRule *p) +inline int soap_read_prodml23__MixingRule(struct soap *soap, prodml23__MixingRule *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MixingRule(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MixingRule(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MixingRule(struct soap *soap, const char *URL, prodml22__MixingRule *p) +inline int soap_GET_prodml23__MixingRule(struct soap *soap, const char *URL, prodml23__MixingRule *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MixingRule(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MixingRule(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MixingRule(struct soap *soap, prodml22__MixingRule *p) +inline int soap_POST_recv_prodml23__MixingRule(struct soap *soap, prodml23__MixingRule *p) { - if (gsoap_eml2_3::soap_read_prodml22__MixingRule(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MixingRule(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } @@ -43088,1764 +43088,1764 @@ inline int soap_POST_send__resqml22__BoundaryFeature(struct soap *soap, const ch #define soap_POST_recv__resqml22__BoundaryFeature soap_POST_recv_resqml22__BoundaryFeature #endif -/* _prodml22__TimeSeriesStatistic is a typedef synonym of prodml22__TimeSeriesStatistic */ +/* _prodml23__TimeSeriesStatistic is a typedef synonym of prodml23__TimeSeriesStatistic */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic_DEFINED -#define soap_default__prodml22__TimeSeriesStatistic(soap, a) (a)->prodml22__TimeSeriesStatistic::soap_default(soap) +#define soap_default__prodml23__TimeSeriesStatistic(soap, a) (a)->prodml23__TimeSeriesStatistic::soap_default(soap) -#define soap_serialize__prodml22__TimeSeriesStatistic(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__TimeSeriesStatistic(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__TimeSeriesStatistic2s soap_prodml22__TimeSeriesStatistic2s +#define soap__prodml23__TimeSeriesStatistic2s soap_prodml23__TimeSeriesStatistic2s -#define soap_out__prodml22__TimeSeriesStatistic soap_out_prodml22__TimeSeriesStatistic +#define soap_out__prodml23__TimeSeriesStatistic soap_out_prodml23__TimeSeriesStatistic -#define soap_s2_prodml22__TimeSeriesStatistic soap_s2prodml22__TimeSeriesStatistic +#define soap_s2_prodml23__TimeSeriesStatistic soap_s2prodml23__TimeSeriesStatistic -#define soap_in__prodml22__TimeSeriesStatistic soap_in_prodml22__TimeSeriesStatistic +#define soap_in__prodml23__TimeSeriesStatistic soap_in_prodml23__TimeSeriesStatistic -#define soap_instantiate__prodml22__TimeSeriesStatistic soap_instantiate_prodml22__TimeSeriesStatistic +#define soap_instantiate__prodml23__TimeSeriesStatistic soap_instantiate_prodml23__TimeSeriesStatistic -#define soap_new__prodml22__TimeSeriesStatistic soap_new_prodml22__TimeSeriesStatistic +#define soap_new__prodml23__TimeSeriesStatistic soap_new_prodml23__TimeSeriesStatistic -#define soap_new_req__prodml22__TimeSeriesStatistic soap_new_req_prodml22__TimeSeriesStatistic +#define soap_new_req__prodml23__TimeSeriesStatistic soap_new_req_prodml23__TimeSeriesStatistic -#define soap_new_set__prodml22__TimeSeriesStatistic soap_new_set_prodml22__TimeSeriesStatistic +#define soap_new_set__prodml23__TimeSeriesStatistic soap_new_set_prodml23__TimeSeriesStatistic -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__TimeSeriesStatistic(struct soap*, const prodml22__TimeSeriesStatistic *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__TimeSeriesStatistic(struct soap*, const prodml23__TimeSeriesStatistic *, const char*, const char*); -inline int soap_write__prodml22__TimeSeriesStatistic(struct soap *soap, prodml22__TimeSeriesStatistic const*p) +inline int soap_write__prodml23__TimeSeriesStatistic(struct soap *soap, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic const*p) +inline int soap_PUT__prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic const*p) +inline int soap_PATCH__prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic const*p) +inline int soap_POST_send__prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__TimeSeriesStatistic soap_get_prodml22__TimeSeriesStatistic +#define soap_get__prodml23__TimeSeriesStatistic soap_get_prodml23__TimeSeriesStatistic -#define soap_read__prodml22__TimeSeriesStatistic soap_read_prodml22__TimeSeriesStatistic +#define soap_read__prodml23__TimeSeriesStatistic soap_read_prodml23__TimeSeriesStatistic -#define soap_GET__prodml22__TimeSeriesStatistic soap_GET_prodml22__TimeSeriesStatistic +#define soap_GET__prodml23__TimeSeriesStatistic soap_GET_prodml23__TimeSeriesStatistic -#define soap_POST_recv__prodml22__TimeSeriesStatistic soap_POST_recv_prodml22__TimeSeriesStatistic +#define soap_POST_recv__prodml23__TimeSeriesStatistic soap_POST_recv_prodml23__TimeSeriesStatistic #endif -/* _prodml22__TimeSeriesData is a typedef synonym of prodml22__TimeSeriesData */ +/* _prodml23__TimeSeriesData is a typedef synonym of prodml23__TimeSeriesData */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData_DEFINED -#define soap_default__prodml22__TimeSeriesData(soap, a) (a)->prodml22__TimeSeriesData::soap_default(soap) +#define soap_default__prodml23__TimeSeriesData(soap, a) (a)->prodml23__TimeSeriesData::soap_default(soap) -#define soap_serialize__prodml22__TimeSeriesData(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__TimeSeriesData(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__TimeSeriesData2s soap_prodml22__TimeSeriesData2s +#define soap__prodml23__TimeSeriesData2s soap_prodml23__TimeSeriesData2s -#define soap_out__prodml22__TimeSeriesData soap_out_prodml22__TimeSeriesData +#define soap_out__prodml23__TimeSeriesData soap_out_prodml23__TimeSeriesData -#define soap_s2_prodml22__TimeSeriesData soap_s2prodml22__TimeSeriesData +#define soap_s2_prodml23__TimeSeriesData soap_s2prodml23__TimeSeriesData -#define soap_in__prodml22__TimeSeriesData soap_in_prodml22__TimeSeriesData +#define soap_in__prodml23__TimeSeriesData soap_in_prodml23__TimeSeriesData -#define soap_instantiate__prodml22__TimeSeriesData soap_instantiate_prodml22__TimeSeriesData +#define soap_instantiate__prodml23__TimeSeriesData soap_instantiate_prodml23__TimeSeriesData -#define soap_new__prodml22__TimeSeriesData soap_new_prodml22__TimeSeriesData +#define soap_new__prodml23__TimeSeriesData soap_new_prodml23__TimeSeriesData -#define soap_new_req__prodml22__TimeSeriesData soap_new_req_prodml22__TimeSeriesData +#define soap_new_req__prodml23__TimeSeriesData soap_new_req_prodml23__TimeSeriesData -#define soap_new_set__prodml22__TimeSeriesData soap_new_set_prodml22__TimeSeriesData +#define soap_new_set__prodml23__TimeSeriesData soap_new_set_prodml23__TimeSeriesData -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__TimeSeriesData(struct soap*, const prodml22__TimeSeriesData *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__TimeSeriesData(struct soap*, const prodml23__TimeSeriesData *, const char*, const char*); -inline int soap_write__prodml22__TimeSeriesData(struct soap *soap, prodml22__TimeSeriesData const*p) +inline int soap_write__prodml23__TimeSeriesData(struct soap *soap, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData const*p) +inline int soap_PUT__prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData const*p) +inline int soap_PATCH__prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData const*p) +inline int soap_POST_send__prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__TimeSeriesData soap_get_prodml22__TimeSeriesData +#define soap_get__prodml23__TimeSeriesData soap_get_prodml23__TimeSeriesData -#define soap_read__prodml22__TimeSeriesData soap_read_prodml22__TimeSeriesData +#define soap_read__prodml23__TimeSeriesData soap_read_prodml23__TimeSeriesData -#define soap_GET__prodml22__TimeSeriesData soap_GET_prodml22__TimeSeriesData +#define soap_GET__prodml23__TimeSeriesData soap_GET_prodml23__TimeSeriesData -#define soap_POST_recv__prodml22__TimeSeriesData soap_POST_recv_prodml22__TimeSeriesData +#define soap_POST_recv__prodml23__TimeSeriesData soap_POST_recv_prodml23__TimeSeriesData #endif -/* _prodml22__ProductFlowModel is a typedef synonym of prodml22__ProductFlowModel */ +/* _prodml23__ProductFlowModel is a typedef synonym of prodml23__ProductFlowModel */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel_DEFINED -#define soap_default__prodml22__ProductFlowModel(soap, a) (a)->prodml22__ProductFlowModel::soap_default(soap) +#define soap_default__prodml23__ProductFlowModel(soap, a) (a)->prodml23__ProductFlowModel::soap_default(soap) -#define soap_serialize__prodml22__ProductFlowModel(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__ProductFlowModel(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__ProductFlowModel2s soap_prodml22__ProductFlowModel2s +#define soap__prodml23__ProductFlowModel2s soap_prodml23__ProductFlowModel2s -#define soap_out__prodml22__ProductFlowModel soap_out_prodml22__ProductFlowModel +#define soap_out__prodml23__ProductFlowModel soap_out_prodml23__ProductFlowModel -#define soap_s2_prodml22__ProductFlowModel soap_s2prodml22__ProductFlowModel +#define soap_s2_prodml23__ProductFlowModel soap_s2prodml23__ProductFlowModel -#define soap_in__prodml22__ProductFlowModel soap_in_prodml22__ProductFlowModel +#define soap_in__prodml23__ProductFlowModel soap_in_prodml23__ProductFlowModel -#define soap_instantiate__prodml22__ProductFlowModel soap_instantiate_prodml22__ProductFlowModel +#define soap_instantiate__prodml23__ProductFlowModel soap_instantiate_prodml23__ProductFlowModel -#define soap_new__prodml22__ProductFlowModel soap_new_prodml22__ProductFlowModel +#define soap_new__prodml23__ProductFlowModel soap_new_prodml23__ProductFlowModel -#define soap_new_req__prodml22__ProductFlowModel soap_new_req_prodml22__ProductFlowModel +#define soap_new_req__prodml23__ProductFlowModel soap_new_req_prodml23__ProductFlowModel -#define soap_new_set__prodml22__ProductFlowModel soap_new_set_prodml22__ProductFlowModel +#define soap_new_set__prodml23__ProductFlowModel soap_new_set_prodml23__ProductFlowModel -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ProductFlowModel(struct soap*, const prodml22__ProductFlowModel *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ProductFlowModel(struct soap*, const prodml23__ProductFlowModel *, const char*, const char*); -inline int soap_write__prodml22__ProductFlowModel(struct soap *soap, prodml22__ProductFlowModel const*p) +inline int soap_write__prodml23__ProductFlowModel(struct soap *soap, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel const*p) +inline int soap_PUT__prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel const*p) +inline int soap_PATCH__prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel const*p) +inline int soap_POST_send__prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__ProductFlowModel soap_get_prodml22__ProductFlowModel +#define soap_get__prodml23__ProductFlowModel soap_get_prodml23__ProductFlowModel -#define soap_read__prodml22__ProductFlowModel soap_read_prodml22__ProductFlowModel +#define soap_read__prodml23__ProductFlowModel soap_read_prodml23__ProductFlowModel -#define soap_GET__prodml22__ProductFlowModel soap_GET_prodml22__ProductFlowModel +#define soap_GET__prodml23__ProductFlowModel soap_GET_prodml23__ProductFlowModel -#define soap_POST_recv__prodml22__ProductFlowModel soap_POST_recv_prodml22__ProductFlowModel +#define soap_POST_recv__prodml23__ProductFlowModel soap_POST_recv_prodml23__ProductFlowModel #endif -/* _prodml22__ProductVolume is a typedef synonym of prodml22__ProductVolume */ +/* _prodml23__ProductVolume is a typedef synonym of prodml23__ProductVolume */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume_DEFINED -#define soap_default__prodml22__ProductVolume(soap, a) (a)->prodml22__ProductVolume::soap_default(soap) +#define soap_default__prodml23__ProductVolume(soap, a) (a)->prodml23__ProductVolume::soap_default(soap) -#define soap_serialize__prodml22__ProductVolume(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__ProductVolume(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__ProductVolume2s soap_prodml22__ProductVolume2s +#define soap__prodml23__ProductVolume2s soap_prodml23__ProductVolume2s -#define soap_out__prodml22__ProductVolume soap_out_prodml22__ProductVolume +#define soap_out__prodml23__ProductVolume soap_out_prodml23__ProductVolume -#define soap_s2_prodml22__ProductVolume soap_s2prodml22__ProductVolume +#define soap_s2_prodml23__ProductVolume soap_s2prodml23__ProductVolume -#define soap_in__prodml22__ProductVolume soap_in_prodml22__ProductVolume +#define soap_in__prodml23__ProductVolume soap_in_prodml23__ProductVolume -#define soap_instantiate__prodml22__ProductVolume soap_instantiate_prodml22__ProductVolume +#define soap_instantiate__prodml23__ProductVolume soap_instantiate_prodml23__ProductVolume -#define soap_new__prodml22__ProductVolume soap_new_prodml22__ProductVolume +#define soap_new__prodml23__ProductVolume soap_new_prodml23__ProductVolume -#define soap_new_req__prodml22__ProductVolume soap_new_req_prodml22__ProductVolume +#define soap_new_req__prodml23__ProductVolume soap_new_req_prodml23__ProductVolume -#define soap_new_set__prodml22__ProductVolume soap_new_set_prodml22__ProductVolume +#define soap_new_set__prodml23__ProductVolume soap_new_set_prodml23__ProductVolume -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ProductVolume(struct soap*, const prodml22__ProductVolume *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ProductVolume(struct soap*, const prodml23__ProductVolume *, const char*, const char*); -inline int soap_write__prodml22__ProductVolume(struct soap *soap, prodml22__ProductVolume const*p) +inline int soap_write__prodml23__ProductVolume(struct soap *soap, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume const*p) +inline int soap_PUT__prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume const*p) +inline int soap_PATCH__prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume const*p) +inline int soap_POST_send__prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__ProductVolume soap_get_prodml22__ProductVolume +#define soap_get__prodml23__ProductVolume soap_get_prodml23__ProductVolume -#define soap_read__prodml22__ProductVolume soap_read_prodml22__ProductVolume +#define soap_read__prodml23__ProductVolume soap_read_prodml23__ProductVolume -#define soap_GET__prodml22__ProductVolume soap_GET_prodml22__ProductVolume +#define soap_GET__prodml23__ProductVolume soap_GET_prodml23__ProductVolume -#define soap_POST_recv__prodml22__ProductVolume soap_POST_recv_prodml22__ProductVolume +#define soap_POST_recv__prodml23__ProductVolume soap_POST_recv_prodml23__ProductVolume #endif -/* _prodml22__FlowTestJob is a typedef synonym of prodml22__FlowTestJob */ +/* _prodml23__FlowTestJob is a typedef synonym of prodml23__FlowTestJob */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob_DEFINED -#define soap_default__prodml22__FlowTestJob(soap, a) (a)->prodml22__FlowTestJob::soap_default(soap) +#define soap_default__prodml23__FlowTestJob(soap, a) (a)->prodml23__FlowTestJob::soap_default(soap) -#define soap_serialize__prodml22__FlowTestJob(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FlowTestJob(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FlowTestJob2s soap_prodml22__FlowTestJob2s +#define soap__prodml23__FlowTestJob2s soap_prodml23__FlowTestJob2s -#define soap_out__prodml22__FlowTestJob soap_out_prodml22__FlowTestJob +#define soap_out__prodml23__FlowTestJob soap_out_prodml23__FlowTestJob -#define soap_s2_prodml22__FlowTestJob soap_s2prodml22__FlowTestJob +#define soap_s2_prodml23__FlowTestJob soap_s2prodml23__FlowTestJob -#define soap_in__prodml22__FlowTestJob soap_in_prodml22__FlowTestJob +#define soap_in__prodml23__FlowTestJob soap_in_prodml23__FlowTestJob -#define soap_instantiate__prodml22__FlowTestJob soap_instantiate_prodml22__FlowTestJob +#define soap_instantiate__prodml23__FlowTestJob soap_instantiate_prodml23__FlowTestJob -#define soap_new__prodml22__FlowTestJob soap_new_prodml22__FlowTestJob +#define soap_new__prodml23__FlowTestJob soap_new_prodml23__FlowTestJob -#define soap_new_req__prodml22__FlowTestJob soap_new_req_prodml22__FlowTestJob +#define soap_new_req__prodml23__FlowTestJob soap_new_req_prodml23__FlowTestJob -#define soap_new_set__prodml22__FlowTestJob soap_new_set_prodml22__FlowTestJob +#define soap_new_set__prodml23__FlowTestJob soap_new_set_prodml23__FlowTestJob -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FlowTestJob(struct soap*, const prodml22__FlowTestJob *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FlowTestJob(struct soap*, const prodml23__FlowTestJob *, const char*, const char*); -inline int soap_write__prodml22__FlowTestJob(struct soap *soap, prodml22__FlowTestJob const*p) +inline int soap_write__prodml23__FlowTestJob(struct soap *soap, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob const*p) +inline int soap_PUT__prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob const*p) +inline int soap_PATCH__prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob const*p) +inline int soap_POST_send__prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FlowTestJob soap_get_prodml22__FlowTestJob +#define soap_get__prodml23__FlowTestJob soap_get_prodml23__FlowTestJob -#define soap_read__prodml22__FlowTestJob soap_read_prodml22__FlowTestJob +#define soap_read__prodml23__FlowTestJob soap_read_prodml23__FlowTestJob -#define soap_GET__prodml22__FlowTestJob soap_GET_prodml22__FlowTestJob +#define soap_GET__prodml23__FlowTestJob soap_GET_prodml23__FlowTestJob -#define soap_POST_recv__prodml22__FlowTestJob soap_POST_recv_prodml22__FlowTestJob +#define soap_POST_recv__prodml23__FlowTestJob soap_POST_recv_prodml23__FlowTestJob #endif -/* _prodml22__FluidSampleAcquisitionJob is a typedef synonym of prodml22__FluidSampleAcquisitionJob */ +/* _prodml23__FluidSampleAcquisitionJob is a typedef synonym of prodml23__FluidSampleAcquisitionJob */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob_DEFINED -#define soap_default__prodml22__FluidSampleAcquisitionJob(soap, a) (a)->prodml22__FluidSampleAcquisitionJob::soap_default(soap) +#define soap_default__prodml23__FluidSampleAcquisitionJob(soap, a) (a)->prodml23__FluidSampleAcquisitionJob::soap_default(soap) -#define soap_serialize__prodml22__FluidSampleAcquisitionJob(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FluidSampleAcquisitionJob(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FluidSampleAcquisitionJob2s soap_prodml22__FluidSampleAcquisitionJob2s +#define soap__prodml23__FluidSampleAcquisitionJob2s soap_prodml23__FluidSampleAcquisitionJob2s -#define soap_out__prodml22__FluidSampleAcquisitionJob soap_out_prodml22__FluidSampleAcquisitionJob +#define soap_out__prodml23__FluidSampleAcquisitionJob soap_out_prodml23__FluidSampleAcquisitionJob -#define soap_s2_prodml22__FluidSampleAcquisitionJob soap_s2prodml22__FluidSampleAcquisitionJob +#define soap_s2_prodml23__FluidSampleAcquisitionJob soap_s2prodml23__FluidSampleAcquisitionJob -#define soap_in__prodml22__FluidSampleAcquisitionJob soap_in_prodml22__FluidSampleAcquisitionJob +#define soap_in__prodml23__FluidSampleAcquisitionJob soap_in_prodml23__FluidSampleAcquisitionJob -#define soap_instantiate__prodml22__FluidSampleAcquisitionJob soap_instantiate_prodml22__FluidSampleAcquisitionJob +#define soap_instantiate__prodml23__FluidSampleAcquisitionJob soap_instantiate_prodml23__FluidSampleAcquisitionJob -#define soap_new__prodml22__FluidSampleAcquisitionJob soap_new_prodml22__FluidSampleAcquisitionJob +#define soap_new__prodml23__FluidSampleAcquisitionJob soap_new_prodml23__FluidSampleAcquisitionJob -#define soap_new_req__prodml22__FluidSampleAcquisitionJob soap_new_req_prodml22__FluidSampleAcquisitionJob +#define soap_new_req__prodml23__FluidSampleAcquisitionJob soap_new_req_prodml23__FluidSampleAcquisitionJob -#define soap_new_set__prodml22__FluidSampleAcquisitionJob soap_new_set_prodml22__FluidSampleAcquisitionJob +#define soap_new_set__prodml23__FluidSampleAcquisitionJob soap_new_set_prodml23__FluidSampleAcquisitionJob -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSampleAcquisitionJob(struct soap*, const prodml22__FluidSampleAcquisitionJob *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSampleAcquisitionJob(struct soap*, const prodml23__FluidSampleAcquisitionJob *, const char*, const char*); -inline int soap_write__prodml22__FluidSampleAcquisitionJob(struct soap *soap, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_write__prodml23__FluidSampleAcquisitionJob(struct soap *soap, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_PUT__prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_PATCH__prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_POST_send__prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FluidSampleAcquisitionJob soap_get_prodml22__FluidSampleAcquisitionJob +#define soap_get__prodml23__FluidSampleAcquisitionJob soap_get_prodml23__FluidSampleAcquisitionJob -#define soap_read__prodml22__FluidSampleAcquisitionJob soap_read_prodml22__FluidSampleAcquisitionJob +#define soap_read__prodml23__FluidSampleAcquisitionJob soap_read_prodml23__FluidSampleAcquisitionJob -#define soap_GET__prodml22__FluidSampleAcquisitionJob soap_GET_prodml22__FluidSampleAcquisitionJob +#define soap_GET__prodml23__FluidSampleAcquisitionJob soap_GET_prodml23__FluidSampleAcquisitionJob -#define soap_POST_recv__prodml22__FluidSampleAcquisitionJob soap_POST_recv_prodml22__FluidSampleAcquisitionJob +#define soap_POST_recv__prodml23__FluidSampleAcquisitionJob soap_POST_recv_prodml23__FluidSampleAcquisitionJob #endif -/* _prodml22__FluidSampleContainer is a typedef synonym of prodml22__FluidSampleContainer */ +/* _prodml23__FluidSampleContainer is a typedef synonym of prodml23__FluidSampleContainer */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer_DEFINED -#define soap_default__prodml22__FluidSampleContainer(soap, a) (a)->prodml22__FluidSampleContainer::soap_default(soap) +#define soap_default__prodml23__FluidSampleContainer(soap, a) (a)->prodml23__FluidSampleContainer::soap_default(soap) -#define soap_serialize__prodml22__FluidSampleContainer(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FluidSampleContainer(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FluidSampleContainer2s soap_prodml22__FluidSampleContainer2s +#define soap__prodml23__FluidSampleContainer2s soap_prodml23__FluidSampleContainer2s -#define soap_out__prodml22__FluidSampleContainer soap_out_prodml22__FluidSampleContainer +#define soap_out__prodml23__FluidSampleContainer soap_out_prodml23__FluidSampleContainer -#define soap_s2_prodml22__FluidSampleContainer soap_s2prodml22__FluidSampleContainer +#define soap_s2_prodml23__FluidSampleContainer soap_s2prodml23__FluidSampleContainer -#define soap_in__prodml22__FluidSampleContainer soap_in_prodml22__FluidSampleContainer +#define soap_in__prodml23__FluidSampleContainer soap_in_prodml23__FluidSampleContainer -#define soap_instantiate__prodml22__FluidSampleContainer soap_instantiate_prodml22__FluidSampleContainer +#define soap_instantiate__prodml23__FluidSampleContainer soap_instantiate_prodml23__FluidSampleContainer -#define soap_new__prodml22__FluidSampleContainer soap_new_prodml22__FluidSampleContainer +#define soap_new__prodml23__FluidSampleContainer soap_new_prodml23__FluidSampleContainer -#define soap_new_req__prodml22__FluidSampleContainer soap_new_req_prodml22__FluidSampleContainer +#define soap_new_req__prodml23__FluidSampleContainer soap_new_req_prodml23__FluidSampleContainer -#define soap_new_set__prodml22__FluidSampleContainer soap_new_set_prodml22__FluidSampleContainer +#define soap_new_set__prodml23__FluidSampleContainer soap_new_set_prodml23__FluidSampleContainer -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSampleContainer(struct soap*, const prodml22__FluidSampleContainer *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSampleContainer(struct soap*, const prodml23__FluidSampleContainer *, const char*, const char*); -inline int soap_write__prodml22__FluidSampleContainer(struct soap *soap, prodml22__FluidSampleContainer const*p) +inline int soap_write__prodml23__FluidSampleContainer(struct soap *soap, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer const*p) +inline int soap_PUT__prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer const*p) +inline int soap_PATCH__prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer const*p) +inline int soap_POST_send__prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FluidSampleContainer soap_get_prodml22__FluidSampleContainer +#define soap_get__prodml23__FluidSampleContainer soap_get_prodml23__FluidSampleContainer -#define soap_read__prodml22__FluidSampleContainer soap_read_prodml22__FluidSampleContainer +#define soap_read__prodml23__FluidSampleContainer soap_read_prodml23__FluidSampleContainer -#define soap_GET__prodml22__FluidSampleContainer soap_GET_prodml22__FluidSampleContainer +#define soap_GET__prodml23__FluidSampleContainer soap_GET_prodml23__FluidSampleContainer -#define soap_POST_recv__prodml22__FluidSampleContainer soap_POST_recv_prodml22__FluidSampleContainer +#define soap_POST_recv__prodml23__FluidSampleContainer soap_POST_recv_prodml23__FluidSampleContainer #endif -/* _prodml22__FluidSample is a typedef synonym of prodml22__FluidSample */ +/* _prodml23__FluidSample is a typedef synonym of prodml23__FluidSample */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample_DEFINED -#define soap_default__prodml22__FluidSample(soap, a) (a)->prodml22__FluidSample::soap_default(soap) +#define soap_default__prodml23__FluidSample(soap, a) (a)->prodml23__FluidSample::soap_default(soap) -#define soap_serialize__prodml22__FluidSample(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FluidSample(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FluidSample2s soap_prodml22__FluidSample2s +#define soap__prodml23__FluidSample2s soap_prodml23__FluidSample2s -#define soap_out__prodml22__FluidSample soap_out_prodml22__FluidSample +#define soap_out__prodml23__FluidSample soap_out_prodml23__FluidSample -#define soap_s2_prodml22__FluidSample soap_s2prodml22__FluidSample +#define soap_s2_prodml23__FluidSample soap_s2prodml23__FluidSample -#define soap_in__prodml22__FluidSample soap_in_prodml22__FluidSample +#define soap_in__prodml23__FluidSample soap_in_prodml23__FluidSample -#define soap_instantiate__prodml22__FluidSample soap_instantiate_prodml22__FluidSample +#define soap_instantiate__prodml23__FluidSample soap_instantiate_prodml23__FluidSample -#define soap_new__prodml22__FluidSample soap_new_prodml22__FluidSample +#define soap_new__prodml23__FluidSample soap_new_prodml23__FluidSample -#define soap_new_req__prodml22__FluidSample soap_new_req_prodml22__FluidSample +#define soap_new_req__prodml23__FluidSample soap_new_req_prodml23__FluidSample -#define soap_new_set__prodml22__FluidSample soap_new_set_prodml22__FluidSample +#define soap_new_set__prodml23__FluidSample soap_new_set_prodml23__FluidSample -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSample(struct soap*, const prodml22__FluidSample *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSample(struct soap*, const prodml23__FluidSample *, const char*, const char*); -inline int soap_write__prodml22__FluidSample(struct soap *soap, prodml22__FluidSample const*p) +inline int soap_write__prodml23__FluidSample(struct soap *soap, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample const*p) +inline int soap_PUT__prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample const*p) +inline int soap_PATCH__prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample const*p) +inline int soap_POST_send__prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FluidSample soap_get_prodml22__FluidSample +#define soap_get__prodml23__FluidSample soap_get_prodml23__FluidSample -#define soap_read__prodml22__FluidSample soap_read_prodml22__FluidSample +#define soap_read__prodml23__FluidSample soap_read_prodml23__FluidSample -#define soap_GET__prodml22__FluidSample soap_GET_prodml22__FluidSample +#define soap_GET__prodml23__FluidSample soap_GET_prodml23__FluidSample -#define soap_POST_recv__prodml22__FluidSample soap_POST_recv_prodml22__FluidSample +#define soap_POST_recv__prodml23__FluidSample soap_POST_recv_prodml23__FluidSample #endif -/* _prodml22__PtaDeconvolution is a typedef synonym of prodml22__PtaDeconvolution */ +/* _prodml23__PtaDeconvolution is a typedef synonym of prodml23__PtaDeconvolution */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution_DEFINED -#define soap_default__prodml22__PtaDeconvolution(soap, a) (a)->prodml22__PtaDeconvolution::soap_default(soap) +#define soap_default__prodml23__PtaDeconvolution(soap, a) (a)->prodml23__PtaDeconvolution::soap_default(soap) -#define soap_serialize__prodml22__PtaDeconvolution(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__PtaDeconvolution(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__PtaDeconvolution2s soap_prodml22__PtaDeconvolution2s +#define soap__prodml23__PtaDeconvolution2s soap_prodml23__PtaDeconvolution2s -#define soap_out__prodml22__PtaDeconvolution soap_out_prodml22__PtaDeconvolution +#define soap_out__prodml23__PtaDeconvolution soap_out_prodml23__PtaDeconvolution -#define soap_s2_prodml22__PtaDeconvolution soap_s2prodml22__PtaDeconvolution +#define soap_s2_prodml23__PtaDeconvolution soap_s2prodml23__PtaDeconvolution -#define soap_in__prodml22__PtaDeconvolution soap_in_prodml22__PtaDeconvolution +#define soap_in__prodml23__PtaDeconvolution soap_in_prodml23__PtaDeconvolution -#define soap_instantiate__prodml22__PtaDeconvolution soap_instantiate_prodml22__PtaDeconvolution +#define soap_instantiate__prodml23__PtaDeconvolution soap_instantiate_prodml23__PtaDeconvolution -#define soap_new__prodml22__PtaDeconvolution soap_new_prodml22__PtaDeconvolution +#define soap_new__prodml23__PtaDeconvolution soap_new_prodml23__PtaDeconvolution -#define soap_new_req__prodml22__PtaDeconvolution soap_new_req_prodml22__PtaDeconvolution +#define soap_new_req__prodml23__PtaDeconvolution soap_new_req_prodml23__PtaDeconvolution -#define soap_new_set__prodml22__PtaDeconvolution soap_new_set_prodml22__PtaDeconvolution +#define soap_new_set__prodml23__PtaDeconvolution soap_new_set_prodml23__PtaDeconvolution -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__PtaDeconvolution(struct soap*, const prodml22__PtaDeconvolution *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__PtaDeconvolution(struct soap*, const prodml23__PtaDeconvolution *, const char*, const char*); -inline int soap_write__prodml22__PtaDeconvolution(struct soap *soap, prodml22__PtaDeconvolution const*p) +inline int soap_write__prodml23__PtaDeconvolution(struct soap *soap, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution const*p) +inline int soap_PUT__prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution const*p) +inline int soap_PATCH__prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution const*p) +inline int soap_POST_send__prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__PtaDeconvolution soap_get_prodml22__PtaDeconvolution +#define soap_get__prodml23__PtaDeconvolution soap_get_prodml23__PtaDeconvolution -#define soap_read__prodml22__PtaDeconvolution soap_read_prodml22__PtaDeconvolution +#define soap_read__prodml23__PtaDeconvolution soap_read_prodml23__PtaDeconvolution -#define soap_GET__prodml22__PtaDeconvolution soap_GET_prodml22__PtaDeconvolution +#define soap_GET__prodml23__PtaDeconvolution soap_GET_prodml23__PtaDeconvolution -#define soap_POST_recv__prodml22__PtaDeconvolution soap_POST_recv_prodml22__PtaDeconvolution +#define soap_POST_recv__prodml23__PtaDeconvolution soap_POST_recv_prodml23__PtaDeconvolution #endif -/* _prodml22__PtaDataPreProcess is a typedef synonym of prodml22__PtaDataPreProcess */ +/* _prodml23__PtaDataPreProcess is a typedef synonym of prodml23__PtaDataPreProcess */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess_DEFINED -#define soap_default__prodml22__PtaDataPreProcess(soap, a) (a)->prodml22__PtaDataPreProcess::soap_default(soap) +#define soap_default__prodml23__PtaDataPreProcess(soap, a) (a)->prodml23__PtaDataPreProcess::soap_default(soap) -#define soap_serialize__prodml22__PtaDataPreProcess(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__PtaDataPreProcess(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__PtaDataPreProcess2s soap_prodml22__PtaDataPreProcess2s +#define soap__prodml23__PtaDataPreProcess2s soap_prodml23__PtaDataPreProcess2s -#define soap_out__prodml22__PtaDataPreProcess soap_out_prodml22__PtaDataPreProcess +#define soap_out__prodml23__PtaDataPreProcess soap_out_prodml23__PtaDataPreProcess -#define soap_s2_prodml22__PtaDataPreProcess soap_s2prodml22__PtaDataPreProcess +#define soap_s2_prodml23__PtaDataPreProcess soap_s2prodml23__PtaDataPreProcess -#define soap_in__prodml22__PtaDataPreProcess soap_in_prodml22__PtaDataPreProcess +#define soap_in__prodml23__PtaDataPreProcess soap_in_prodml23__PtaDataPreProcess -#define soap_instantiate__prodml22__PtaDataPreProcess soap_instantiate_prodml22__PtaDataPreProcess +#define soap_instantiate__prodml23__PtaDataPreProcess soap_instantiate_prodml23__PtaDataPreProcess -#define soap_new__prodml22__PtaDataPreProcess soap_new_prodml22__PtaDataPreProcess +#define soap_new__prodml23__PtaDataPreProcess soap_new_prodml23__PtaDataPreProcess -#define soap_new_req__prodml22__PtaDataPreProcess soap_new_req_prodml22__PtaDataPreProcess +#define soap_new_req__prodml23__PtaDataPreProcess soap_new_req_prodml23__PtaDataPreProcess -#define soap_new_set__prodml22__PtaDataPreProcess soap_new_set_prodml22__PtaDataPreProcess +#define soap_new_set__prodml23__PtaDataPreProcess soap_new_set_prodml23__PtaDataPreProcess -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__PtaDataPreProcess(struct soap*, const prodml22__PtaDataPreProcess *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__PtaDataPreProcess(struct soap*, const prodml23__PtaDataPreProcess *, const char*, const char*); -inline int soap_write__prodml22__PtaDataPreProcess(struct soap *soap, prodml22__PtaDataPreProcess const*p) +inline int soap_write__prodml23__PtaDataPreProcess(struct soap *soap, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess const*p) +inline int soap_PUT__prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess const*p) +inline int soap_PATCH__prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess const*p) +inline int soap_POST_send__prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__PtaDataPreProcess soap_get_prodml22__PtaDataPreProcess +#define soap_get__prodml23__PtaDataPreProcess soap_get_prodml23__PtaDataPreProcess -#define soap_read__prodml22__PtaDataPreProcess soap_read_prodml22__PtaDataPreProcess +#define soap_read__prodml23__PtaDataPreProcess soap_read_prodml23__PtaDataPreProcess -#define soap_GET__prodml22__PtaDataPreProcess soap_GET_prodml22__PtaDataPreProcess +#define soap_GET__prodml23__PtaDataPreProcess soap_GET_prodml23__PtaDataPreProcess -#define soap_POST_recv__prodml22__PtaDataPreProcess soap_POST_recv_prodml22__PtaDataPreProcess +#define soap_POST_recv__prodml23__PtaDataPreProcess soap_POST_recv_prodml23__PtaDataPreProcess #endif -/* _prodml22__PressureTransientAnalysis is a typedef synonym of prodml22__PressureTransientAnalysis */ +/* _prodml23__PressureTransientAnalysis is a typedef synonym of prodml23__PressureTransientAnalysis */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis_DEFINED -#define soap_default__prodml22__PressureTransientAnalysis(soap, a) (a)->prodml22__PressureTransientAnalysis::soap_default(soap) +#define soap_default__prodml23__PressureTransientAnalysis(soap, a) (a)->prodml23__PressureTransientAnalysis::soap_default(soap) -#define soap_serialize__prodml22__PressureTransientAnalysis(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__PressureTransientAnalysis(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__PressureTransientAnalysis2s soap_prodml22__PressureTransientAnalysis2s +#define soap__prodml23__PressureTransientAnalysis2s soap_prodml23__PressureTransientAnalysis2s -#define soap_out__prodml22__PressureTransientAnalysis soap_out_prodml22__PressureTransientAnalysis +#define soap_out__prodml23__PressureTransientAnalysis soap_out_prodml23__PressureTransientAnalysis -#define soap_s2_prodml22__PressureTransientAnalysis soap_s2prodml22__PressureTransientAnalysis +#define soap_s2_prodml23__PressureTransientAnalysis soap_s2prodml23__PressureTransientAnalysis -#define soap_in__prodml22__PressureTransientAnalysis soap_in_prodml22__PressureTransientAnalysis +#define soap_in__prodml23__PressureTransientAnalysis soap_in_prodml23__PressureTransientAnalysis -#define soap_instantiate__prodml22__PressureTransientAnalysis soap_instantiate_prodml22__PressureTransientAnalysis +#define soap_instantiate__prodml23__PressureTransientAnalysis soap_instantiate_prodml23__PressureTransientAnalysis -#define soap_new__prodml22__PressureTransientAnalysis soap_new_prodml22__PressureTransientAnalysis +#define soap_new__prodml23__PressureTransientAnalysis soap_new_prodml23__PressureTransientAnalysis -#define soap_new_req__prodml22__PressureTransientAnalysis soap_new_req_prodml22__PressureTransientAnalysis +#define soap_new_req__prodml23__PressureTransientAnalysis soap_new_req_prodml23__PressureTransientAnalysis -#define soap_new_set__prodml22__PressureTransientAnalysis soap_new_set_prodml22__PressureTransientAnalysis +#define soap_new_set__prodml23__PressureTransientAnalysis soap_new_set_prodml23__PressureTransientAnalysis -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__PressureTransientAnalysis(struct soap*, const prodml22__PressureTransientAnalysis *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__PressureTransientAnalysis(struct soap*, const prodml23__PressureTransientAnalysis *, const char*, const char*); -inline int soap_write__prodml22__PressureTransientAnalysis(struct soap *soap, prodml22__PressureTransientAnalysis const*p) +inline int soap_write__prodml23__PressureTransientAnalysis(struct soap *soap, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis const*p) +inline int soap_PUT__prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis const*p) +inline int soap_PATCH__prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis const*p) +inline int soap_POST_send__prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__PressureTransientAnalysis soap_get_prodml22__PressureTransientAnalysis +#define soap_get__prodml23__PressureTransientAnalysis soap_get_prodml23__PressureTransientAnalysis -#define soap_read__prodml22__PressureTransientAnalysis soap_read_prodml22__PressureTransientAnalysis +#define soap_read__prodml23__PressureTransientAnalysis soap_read_prodml23__PressureTransientAnalysis -#define soap_GET__prodml22__PressureTransientAnalysis soap_GET_prodml22__PressureTransientAnalysis +#define soap_GET__prodml23__PressureTransientAnalysis soap_GET_prodml23__PressureTransientAnalysis -#define soap_POST_recv__prodml22__PressureTransientAnalysis soap_POST_recv_prodml22__PressureTransientAnalysis +#define soap_POST_recv__prodml23__PressureTransientAnalysis soap_POST_recv_prodml23__PressureTransientAnalysis #endif -/* _prodml22__ReportingHierarchy is a typedef synonym of prodml22__ReportingHierarchy */ +/* _prodml23__ReportingHierarchy is a typedef synonym of prodml23__ReportingHierarchy */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy_DEFINED -#define soap_default__prodml22__ReportingHierarchy(soap, a) (a)->prodml22__ReportingHierarchy::soap_default(soap) +#define soap_default__prodml23__ReportingHierarchy(soap, a) (a)->prodml23__ReportingHierarchy::soap_default(soap) -#define soap_serialize__prodml22__ReportingHierarchy(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__ReportingHierarchy(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__ReportingHierarchy2s soap_prodml22__ReportingHierarchy2s +#define soap__prodml23__ReportingHierarchy2s soap_prodml23__ReportingHierarchy2s -#define soap_out__prodml22__ReportingHierarchy soap_out_prodml22__ReportingHierarchy +#define soap_out__prodml23__ReportingHierarchy soap_out_prodml23__ReportingHierarchy -#define soap_s2_prodml22__ReportingHierarchy soap_s2prodml22__ReportingHierarchy +#define soap_s2_prodml23__ReportingHierarchy soap_s2prodml23__ReportingHierarchy -#define soap_in__prodml22__ReportingHierarchy soap_in_prodml22__ReportingHierarchy +#define soap_in__prodml23__ReportingHierarchy soap_in_prodml23__ReportingHierarchy -#define soap_instantiate__prodml22__ReportingHierarchy soap_instantiate_prodml22__ReportingHierarchy +#define soap_instantiate__prodml23__ReportingHierarchy soap_instantiate_prodml23__ReportingHierarchy -#define soap_new__prodml22__ReportingHierarchy soap_new_prodml22__ReportingHierarchy +#define soap_new__prodml23__ReportingHierarchy soap_new_prodml23__ReportingHierarchy -#define soap_new_req__prodml22__ReportingHierarchy soap_new_req_prodml22__ReportingHierarchy +#define soap_new_req__prodml23__ReportingHierarchy soap_new_req_prodml23__ReportingHierarchy -#define soap_new_set__prodml22__ReportingHierarchy soap_new_set_prodml22__ReportingHierarchy +#define soap_new_set__prodml23__ReportingHierarchy soap_new_set_prodml23__ReportingHierarchy -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ReportingHierarchy(struct soap*, const prodml22__ReportingHierarchy *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ReportingHierarchy(struct soap*, const prodml23__ReportingHierarchy *, const char*, const char*); -inline int soap_write__prodml22__ReportingHierarchy(struct soap *soap, prodml22__ReportingHierarchy const*p) +inline int soap_write__prodml23__ReportingHierarchy(struct soap *soap, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy const*p) +inline int soap_PUT__prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy const*p) +inline int soap_PATCH__prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy const*p) +inline int soap_POST_send__prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__ReportingHierarchy soap_get_prodml22__ReportingHierarchy +#define soap_get__prodml23__ReportingHierarchy soap_get_prodml23__ReportingHierarchy -#define soap_read__prodml22__ReportingHierarchy soap_read_prodml22__ReportingHierarchy +#define soap_read__prodml23__ReportingHierarchy soap_read_prodml23__ReportingHierarchy -#define soap_GET__prodml22__ReportingHierarchy soap_GET_prodml22__ReportingHierarchy +#define soap_GET__prodml23__ReportingHierarchy soap_GET_prodml23__ReportingHierarchy -#define soap_POST_recv__prodml22__ReportingHierarchy soap_POST_recv_prodml22__ReportingHierarchy +#define soap_POST_recv__prodml23__ReportingHierarchy soap_POST_recv_prodml23__ReportingHierarchy #endif -/* _prodml22__ReportingEntity is a typedef synonym of prodml22__ReportingEntity */ +/* _prodml23__ReportingEntity is a typedef synonym of prodml23__ReportingEntity */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity_DEFINED -#define soap_default__prodml22__ReportingEntity(soap, a) (a)->prodml22__ReportingEntity::soap_default(soap) +#define soap_default__prodml23__ReportingEntity(soap, a) (a)->prodml23__ReportingEntity::soap_default(soap) -#define soap_serialize__prodml22__ReportingEntity(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__ReportingEntity(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__ReportingEntity2s soap_prodml22__ReportingEntity2s +#define soap__prodml23__ReportingEntity2s soap_prodml23__ReportingEntity2s -#define soap_out__prodml22__ReportingEntity soap_out_prodml22__ReportingEntity +#define soap_out__prodml23__ReportingEntity soap_out_prodml23__ReportingEntity -#define soap_s2_prodml22__ReportingEntity soap_s2prodml22__ReportingEntity +#define soap_s2_prodml23__ReportingEntity soap_s2prodml23__ReportingEntity -#define soap_in__prodml22__ReportingEntity soap_in_prodml22__ReportingEntity +#define soap_in__prodml23__ReportingEntity soap_in_prodml23__ReportingEntity -#define soap_instantiate__prodml22__ReportingEntity soap_instantiate_prodml22__ReportingEntity +#define soap_instantiate__prodml23__ReportingEntity soap_instantiate_prodml23__ReportingEntity -#define soap_new__prodml22__ReportingEntity soap_new_prodml22__ReportingEntity +#define soap_new__prodml23__ReportingEntity soap_new_prodml23__ReportingEntity -#define soap_new_req__prodml22__ReportingEntity soap_new_req_prodml22__ReportingEntity +#define soap_new_req__prodml23__ReportingEntity soap_new_req_prodml23__ReportingEntity -#define soap_new_set__prodml22__ReportingEntity soap_new_set_prodml22__ReportingEntity +#define soap_new_set__prodml23__ReportingEntity soap_new_set_prodml23__ReportingEntity -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ReportingEntity(struct soap*, const prodml22__ReportingEntity *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ReportingEntity(struct soap*, const prodml23__ReportingEntity *, const char*, const char*); -inline int soap_write__prodml22__ReportingEntity(struct soap *soap, prodml22__ReportingEntity const*p) +inline int soap_write__prodml23__ReportingEntity(struct soap *soap, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity const*p) +inline int soap_PUT__prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity const*p) +inline int soap_PATCH__prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity const*p) +inline int soap_POST_send__prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__ReportingEntity soap_get_prodml22__ReportingEntity +#define soap_get__prodml23__ReportingEntity soap_get_prodml23__ReportingEntity -#define soap_read__prodml22__ReportingEntity soap_read_prodml22__ReportingEntity +#define soap_read__prodml23__ReportingEntity soap_read_prodml23__ReportingEntity -#define soap_GET__prodml22__ReportingEntity soap_GET_prodml22__ReportingEntity +#define soap_GET__prodml23__ReportingEntity soap_GET_prodml23__ReportingEntity -#define soap_POST_recv__prodml22__ReportingEntity soap_POST_recv_prodml22__ReportingEntity +#define soap_POST_recv__prodml23__ReportingEntity soap_POST_recv_prodml23__ReportingEntity #endif -/* _prodml22__Facility is a typedef synonym of prodml22__Facility */ +/* _prodml23__Facility is a typedef synonym of prodml23__Facility */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__Facility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__Facility_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__Facility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__Facility_DEFINED -#define soap_default__prodml22__Facility(soap, a) (a)->prodml22__Facility::soap_default(soap) +#define soap_default__prodml23__Facility(soap, a) (a)->prodml23__Facility::soap_default(soap) -#define soap_serialize__prodml22__Facility(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__Facility(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__Facility2s soap_prodml22__Facility2s +#define soap__prodml23__Facility2s soap_prodml23__Facility2s -#define soap_out__prodml22__Facility soap_out_prodml22__Facility +#define soap_out__prodml23__Facility soap_out_prodml23__Facility -#define soap_s2_prodml22__Facility soap_s2prodml22__Facility +#define soap_s2_prodml23__Facility soap_s2prodml23__Facility -#define soap_in__prodml22__Facility soap_in_prodml22__Facility +#define soap_in__prodml23__Facility soap_in_prodml23__Facility -#define soap_instantiate__prodml22__Facility soap_instantiate_prodml22__Facility +#define soap_instantiate__prodml23__Facility soap_instantiate_prodml23__Facility -#define soap_new__prodml22__Facility soap_new_prodml22__Facility +#define soap_new__prodml23__Facility soap_new_prodml23__Facility -#define soap_new_req__prodml22__Facility soap_new_req_prodml22__Facility +#define soap_new_req__prodml23__Facility soap_new_req_prodml23__Facility -#define soap_new_set__prodml22__Facility soap_new_set_prodml22__Facility +#define soap_new_set__prodml23__Facility soap_new_set_prodml23__Facility -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__Facility(struct soap*, const prodml22__Facility *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__Facility(struct soap*, const prodml23__Facility *, const char*, const char*); -inline int soap_write__prodml22__Facility(struct soap *soap, prodml22__Facility const*p) +inline int soap_write__prodml23__Facility(struct soap *soap, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Facility ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Facility ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility const*p) +inline int soap_PUT__prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Facility ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Facility ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility const*p) +inline int soap_PATCH__prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Facility ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Facility ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility const*p) +inline int soap_POST_send__prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Facility ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Facility ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__Facility soap_get_prodml22__Facility +#define soap_get__prodml23__Facility soap_get_prodml23__Facility -#define soap_read__prodml22__Facility soap_read_prodml22__Facility +#define soap_read__prodml23__Facility soap_read_prodml23__Facility -#define soap_GET__prodml22__Facility soap_GET_prodml22__Facility +#define soap_GET__prodml23__Facility soap_GET_prodml23__Facility -#define soap_POST_recv__prodml22__Facility soap_POST_recv_prodml22__Facility +#define soap_POST_recv__prodml23__Facility soap_POST_recv_prodml23__Facility #endif -/* _prodml22__FlowTestActivity is a typedef synonym of prodml22__FlowTestActivity */ +/* _prodml23__FlowTestActivity is a typedef synonym of prodml23__FlowTestActivity */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity_DEFINED -#define soap_default__prodml22__FlowTestActivity(soap, a) (a)->prodml22__FlowTestActivity::soap_default(soap) +#define soap_default__prodml23__FlowTestActivity(soap, a) (a)->prodml23__FlowTestActivity::soap_default(soap) -#define soap_serialize__prodml22__FlowTestActivity(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FlowTestActivity(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FlowTestActivity2s soap_prodml22__FlowTestActivity2s +#define soap__prodml23__FlowTestActivity2s soap_prodml23__FlowTestActivity2s -#define soap_out__prodml22__FlowTestActivity soap_out_prodml22__FlowTestActivity +#define soap_out__prodml23__FlowTestActivity soap_out_prodml23__FlowTestActivity -#define soap_s2_prodml22__FlowTestActivity soap_s2prodml22__FlowTestActivity +#define soap_s2_prodml23__FlowTestActivity soap_s2prodml23__FlowTestActivity -#define soap_in__prodml22__FlowTestActivity soap_in_prodml22__FlowTestActivity +#define soap_in__prodml23__FlowTestActivity soap_in_prodml23__FlowTestActivity -#define soap_instantiate__prodml22__FlowTestActivity soap_instantiate_prodml22__FlowTestActivity +#define soap_instantiate__prodml23__FlowTestActivity soap_instantiate_prodml23__FlowTestActivity -#define soap_new__prodml22__FlowTestActivity soap_new_prodml22__FlowTestActivity +#define soap_new__prodml23__FlowTestActivity soap_new_prodml23__FlowTestActivity -#define soap_new_req__prodml22__FlowTestActivity soap_new_req_prodml22__FlowTestActivity +#define soap_new_req__prodml23__FlowTestActivity soap_new_req_prodml23__FlowTestActivity -#define soap_new_set__prodml22__FlowTestActivity soap_new_set_prodml22__FlowTestActivity +#define soap_new_set__prodml23__FlowTestActivity soap_new_set_prodml23__FlowTestActivity -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FlowTestActivity(struct soap*, const prodml22__FlowTestActivity *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FlowTestActivity(struct soap*, const prodml23__FlowTestActivity *, const char*, const char*); -inline int soap_write__prodml22__FlowTestActivity(struct soap *soap, prodml22__FlowTestActivity const*p) +inline int soap_write__prodml23__FlowTestActivity(struct soap *soap, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity const*p) +inline int soap_PUT__prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity const*p) +inline int soap_PATCH__prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity const*p) +inline int soap_POST_send__prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FlowTestActivity soap_get_prodml22__FlowTestActivity +#define soap_get__prodml23__FlowTestActivity soap_get_prodml23__FlowTestActivity -#define soap_read__prodml22__FlowTestActivity soap_read_prodml22__FlowTestActivity +#define soap_read__prodml23__FlowTestActivity soap_read_prodml23__FlowTestActivity -#define soap_GET__prodml22__FlowTestActivity soap_GET_prodml22__FlowTestActivity +#define soap_GET__prodml23__FlowTestActivity soap_GET_prodml23__FlowTestActivity -#define soap_POST_recv__prodml22__FlowTestActivity soap_POST_recv_prodml22__FlowTestActivity +#define soap_POST_recv__prodml23__FlowTestActivity soap_POST_recv_prodml23__FlowTestActivity #endif -/* _prodml22__ChannelSet is a typedef synonym of prodml22__ChannelSet */ +/* _prodml23__ChannelSet is a typedef synonym of prodml23__ChannelSet */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet_DEFINED -#define soap_default__prodml22__ChannelSet(soap, a) (a)->prodml22__ChannelSet::soap_default(soap) +#define soap_default__prodml23__ChannelSet(soap, a) (a)->prodml23__ChannelSet::soap_default(soap) -#define soap_serialize__prodml22__ChannelSet(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__ChannelSet(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__ChannelSet2s soap_prodml22__ChannelSet2s +#define soap__prodml23__ChannelSet2s soap_prodml23__ChannelSet2s -#define soap_out__prodml22__ChannelSet soap_out_prodml22__ChannelSet +#define soap_out__prodml23__ChannelSet soap_out_prodml23__ChannelSet -#define soap_s2_prodml22__ChannelSet soap_s2prodml22__ChannelSet +#define soap_s2_prodml23__ChannelSet soap_s2prodml23__ChannelSet -#define soap_in__prodml22__ChannelSet soap_in_prodml22__ChannelSet +#define soap_in__prodml23__ChannelSet soap_in_prodml23__ChannelSet -#define soap_instantiate__prodml22__ChannelSet soap_instantiate_prodml22__ChannelSet +#define soap_instantiate__prodml23__ChannelSet soap_instantiate_prodml23__ChannelSet -#define soap_new__prodml22__ChannelSet soap_new_prodml22__ChannelSet +#define soap_new__prodml23__ChannelSet soap_new_prodml23__ChannelSet -#define soap_new_req__prodml22__ChannelSet soap_new_req_prodml22__ChannelSet +#define soap_new_req__prodml23__ChannelSet soap_new_req_prodml23__ChannelSet -#define soap_new_set__prodml22__ChannelSet soap_new_set_prodml22__ChannelSet +#define soap_new_set__prodml23__ChannelSet soap_new_set_prodml23__ChannelSet -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__ChannelSet(struct soap*, const prodml22__ChannelSet *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__ChannelSet(struct soap*, const prodml23__ChannelSet *, const char*, const char*); -inline int soap_write__prodml22__ChannelSet(struct soap *soap, prodml22__ChannelSet const*p) +inline int soap_write__prodml23__ChannelSet(struct soap *soap, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet const*p) +inline int soap_PUT__prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet const*p) +inline int soap_PATCH__prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet const*p) +inline int soap_POST_send__prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__ChannelSet soap_get_prodml22__ChannelSet +#define soap_get__prodml23__ChannelSet soap_get_prodml23__ChannelSet -#define soap_read__prodml22__ChannelSet soap_read_prodml22__ChannelSet +#define soap_read__prodml23__ChannelSet soap_read_prodml23__ChannelSet -#define soap_GET__prodml22__ChannelSet soap_GET_prodml22__ChannelSet +#define soap_GET__prodml23__ChannelSet soap_GET_prodml23__ChannelSet -#define soap_POST_recv__prodml22__ChannelSet soap_POST_recv_prodml22__ChannelSet +#define soap_POST_recv__prodml23__ChannelSet soap_POST_recv_prodml23__ChannelSet #endif -/* _prodml22__Channel is a typedef synonym of prodml22__Channel */ +/* _prodml23__Channel is a typedef synonym of prodml23__Channel */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__Channel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__Channel_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__Channel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__Channel_DEFINED -#define soap_default__prodml22__Channel(soap, a) (a)->prodml22__Channel::soap_default(soap) +#define soap_default__prodml23__Channel(soap, a) (a)->prodml23__Channel::soap_default(soap) -#define soap_serialize__prodml22__Channel(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__Channel(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__Channel2s soap_prodml22__Channel2s +#define soap__prodml23__Channel2s soap_prodml23__Channel2s -#define soap_out__prodml22__Channel soap_out_prodml22__Channel +#define soap_out__prodml23__Channel soap_out_prodml23__Channel -#define soap_s2_prodml22__Channel soap_s2prodml22__Channel +#define soap_s2_prodml23__Channel soap_s2prodml23__Channel -#define soap_in__prodml22__Channel soap_in_prodml22__Channel +#define soap_in__prodml23__Channel soap_in_prodml23__Channel -#define soap_instantiate__prodml22__Channel soap_instantiate_prodml22__Channel +#define soap_instantiate__prodml23__Channel soap_instantiate_prodml23__Channel -#define soap_new__prodml22__Channel soap_new_prodml22__Channel +#define soap_new__prodml23__Channel soap_new_prodml23__Channel -#define soap_new_req__prodml22__Channel soap_new_req_prodml22__Channel +#define soap_new_req__prodml23__Channel soap_new_req_prodml23__Channel -#define soap_new_set__prodml22__Channel soap_new_set_prodml22__Channel +#define soap_new_set__prodml23__Channel soap_new_set_prodml23__Channel -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__Channel(struct soap*, const prodml22__Channel *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__Channel(struct soap*, const prodml23__Channel *, const char*, const char*); -inline int soap_write__prodml22__Channel(struct soap *soap, prodml22__Channel const*p) +inline int soap_write__prodml23__Channel(struct soap *soap, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Channel ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Channel ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel const*p) +inline int soap_PUT__prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Channel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Channel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel const*p) +inline int soap_PATCH__prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Channel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Channel ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel const*p) +inline int soap_POST_send__prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__Channel ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__Channel ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__Channel soap_get_prodml22__Channel +#define soap_get__prodml23__Channel soap_get_prodml23__Channel -#define soap_read__prodml22__Channel soap_read_prodml22__Channel +#define soap_read__prodml23__Channel soap_read_prodml23__Channel -#define soap_GET__prodml22__Channel soap_GET_prodml22__Channel +#define soap_GET__prodml23__Channel soap_GET_prodml23__Channel -#define soap_POST_recv__prodml22__Channel soap_POST_recv_prodml22__Channel +#define soap_POST_recv__prodml23__Channel soap_POST_recv_prodml23__Channel #endif -/* _prodml22__FluidSystem is a typedef synonym of prodml22__FluidSystem */ +/* _prodml23__FluidSystem is a typedef synonym of prodml23__FluidSystem */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem_DEFINED -#define soap_default__prodml22__FluidSystem(soap, a) (a)->prodml22__FluidSystem::soap_default(soap) +#define soap_default__prodml23__FluidSystem(soap, a) (a)->prodml23__FluidSystem::soap_default(soap) -#define soap_serialize__prodml22__FluidSystem(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FluidSystem(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FluidSystem2s soap_prodml22__FluidSystem2s +#define soap__prodml23__FluidSystem2s soap_prodml23__FluidSystem2s -#define soap_out__prodml22__FluidSystem soap_out_prodml22__FluidSystem +#define soap_out__prodml23__FluidSystem soap_out_prodml23__FluidSystem -#define soap_s2_prodml22__FluidSystem soap_s2prodml22__FluidSystem +#define soap_s2_prodml23__FluidSystem soap_s2prodml23__FluidSystem -#define soap_in__prodml22__FluidSystem soap_in_prodml22__FluidSystem +#define soap_in__prodml23__FluidSystem soap_in_prodml23__FluidSystem -#define soap_instantiate__prodml22__FluidSystem soap_instantiate_prodml22__FluidSystem +#define soap_instantiate__prodml23__FluidSystem soap_instantiate_prodml23__FluidSystem -#define soap_new__prodml22__FluidSystem soap_new_prodml22__FluidSystem +#define soap_new__prodml23__FluidSystem soap_new_prodml23__FluidSystem -#define soap_new_req__prodml22__FluidSystem soap_new_req_prodml22__FluidSystem +#define soap_new_req__prodml23__FluidSystem soap_new_req_prodml23__FluidSystem -#define soap_new_set__prodml22__FluidSystem soap_new_set_prodml22__FluidSystem +#define soap_new_set__prodml23__FluidSystem soap_new_set_prodml23__FluidSystem -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidSystem(struct soap*, const prodml22__FluidSystem *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidSystem(struct soap*, const prodml23__FluidSystem *, const char*, const char*); -inline int soap_write__prodml22__FluidSystem(struct soap *soap, prodml22__FluidSystem const*p) +inline int soap_write__prodml23__FluidSystem(struct soap *soap, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem const*p) +inline int soap_PUT__prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem const*p) +inline int soap_PATCH__prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem const*p) +inline int soap_POST_send__prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FluidSystem soap_get_prodml22__FluidSystem +#define soap_get__prodml23__FluidSystem soap_get_prodml23__FluidSystem -#define soap_read__prodml22__FluidSystem soap_read_prodml22__FluidSystem +#define soap_read__prodml23__FluidSystem soap_read_prodml23__FluidSystem -#define soap_GET__prodml22__FluidSystem soap_GET_prodml22__FluidSystem +#define soap_GET__prodml23__FluidSystem soap_GET_prodml23__FluidSystem -#define soap_POST_recv__prodml22__FluidSystem soap_POST_recv_prodml22__FluidSystem +#define soap_POST_recv__prodml23__FluidSystem soap_POST_recv_prodml23__FluidSystem #endif -/* _prodml22__WaterAnalysis is a typedef synonym of prodml22__WaterAnalysis */ +/* _prodml23__WaterAnalysis is a typedef synonym of prodml23__WaterAnalysis */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis_DEFINED -#define soap_default__prodml22__WaterAnalysis(soap, a) (a)->prodml22__WaterAnalysis::soap_default(soap) +#define soap_default__prodml23__WaterAnalysis(soap, a) (a)->prodml23__WaterAnalysis::soap_default(soap) -#define soap_serialize__prodml22__WaterAnalysis(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__WaterAnalysis(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__WaterAnalysis2s soap_prodml22__WaterAnalysis2s +#define soap__prodml23__WaterAnalysis2s soap_prodml23__WaterAnalysis2s -#define soap_out__prodml22__WaterAnalysis soap_out_prodml22__WaterAnalysis +#define soap_out__prodml23__WaterAnalysis soap_out_prodml23__WaterAnalysis -#define soap_s2_prodml22__WaterAnalysis soap_s2prodml22__WaterAnalysis +#define soap_s2_prodml23__WaterAnalysis soap_s2prodml23__WaterAnalysis -#define soap_in__prodml22__WaterAnalysis soap_in_prodml22__WaterAnalysis +#define soap_in__prodml23__WaterAnalysis soap_in_prodml23__WaterAnalysis -#define soap_instantiate__prodml22__WaterAnalysis soap_instantiate_prodml22__WaterAnalysis +#define soap_instantiate__prodml23__WaterAnalysis soap_instantiate_prodml23__WaterAnalysis -#define soap_new__prodml22__WaterAnalysis soap_new_prodml22__WaterAnalysis +#define soap_new__prodml23__WaterAnalysis soap_new_prodml23__WaterAnalysis -#define soap_new_req__prodml22__WaterAnalysis soap_new_req_prodml22__WaterAnalysis +#define soap_new_req__prodml23__WaterAnalysis soap_new_req_prodml23__WaterAnalysis -#define soap_new_set__prodml22__WaterAnalysis soap_new_set_prodml22__WaterAnalysis +#define soap_new_set__prodml23__WaterAnalysis soap_new_set_prodml23__WaterAnalysis -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__WaterAnalysis(struct soap*, const prodml22__WaterAnalysis *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__WaterAnalysis(struct soap*, const prodml23__WaterAnalysis *, const char*, const char*); -inline int soap_write__prodml22__WaterAnalysis(struct soap *soap, prodml22__WaterAnalysis const*p) +inline int soap_write__prodml23__WaterAnalysis(struct soap *soap, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis const*p) +inline int soap_PUT__prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis const*p) +inline int soap_PATCH__prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis const*p) +inline int soap_POST_send__prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__WaterAnalysis soap_get_prodml22__WaterAnalysis +#define soap_get__prodml23__WaterAnalysis soap_get_prodml23__WaterAnalysis -#define soap_read__prodml22__WaterAnalysis soap_read_prodml22__WaterAnalysis +#define soap_read__prodml23__WaterAnalysis soap_read_prodml23__WaterAnalysis -#define soap_GET__prodml22__WaterAnalysis soap_GET_prodml22__WaterAnalysis +#define soap_GET__prodml23__WaterAnalysis soap_GET_prodml23__WaterAnalysis -#define soap_POST_recv__prodml22__WaterAnalysis soap_POST_recv_prodml22__WaterAnalysis +#define soap_POST_recv__prodml23__WaterAnalysis soap_POST_recv_prodml23__WaterAnalysis #endif -/* _prodml22__HydrocarbonAnalysis is a typedef synonym of prodml22__HydrocarbonAnalysis */ +/* _prodml23__HydrocarbonAnalysis is a typedef synonym of prodml23__HydrocarbonAnalysis */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis_DEFINED -#define soap_default__prodml22__HydrocarbonAnalysis(soap, a) (a)->prodml22__HydrocarbonAnalysis::soap_default(soap) +#define soap_default__prodml23__HydrocarbonAnalysis(soap, a) (a)->prodml23__HydrocarbonAnalysis::soap_default(soap) -#define soap_serialize__prodml22__HydrocarbonAnalysis(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__HydrocarbonAnalysis(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__HydrocarbonAnalysis2s soap_prodml22__HydrocarbonAnalysis2s +#define soap__prodml23__HydrocarbonAnalysis2s soap_prodml23__HydrocarbonAnalysis2s -#define soap_out__prodml22__HydrocarbonAnalysis soap_out_prodml22__HydrocarbonAnalysis +#define soap_out__prodml23__HydrocarbonAnalysis soap_out_prodml23__HydrocarbonAnalysis -#define soap_s2_prodml22__HydrocarbonAnalysis soap_s2prodml22__HydrocarbonAnalysis +#define soap_s2_prodml23__HydrocarbonAnalysis soap_s2prodml23__HydrocarbonAnalysis -#define soap_in__prodml22__HydrocarbonAnalysis soap_in_prodml22__HydrocarbonAnalysis +#define soap_in__prodml23__HydrocarbonAnalysis soap_in_prodml23__HydrocarbonAnalysis -#define soap_instantiate__prodml22__HydrocarbonAnalysis soap_instantiate_prodml22__HydrocarbonAnalysis +#define soap_instantiate__prodml23__HydrocarbonAnalysis soap_instantiate_prodml23__HydrocarbonAnalysis -#define soap_new__prodml22__HydrocarbonAnalysis soap_new_prodml22__HydrocarbonAnalysis +#define soap_new__prodml23__HydrocarbonAnalysis soap_new_prodml23__HydrocarbonAnalysis -#define soap_new_req__prodml22__HydrocarbonAnalysis soap_new_req_prodml22__HydrocarbonAnalysis +#define soap_new_req__prodml23__HydrocarbonAnalysis soap_new_req_prodml23__HydrocarbonAnalysis -#define soap_new_set__prodml22__HydrocarbonAnalysis soap_new_set_prodml22__HydrocarbonAnalysis +#define soap_new_set__prodml23__HydrocarbonAnalysis soap_new_set_prodml23__HydrocarbonAnalysis -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__HydrocarbonAnalysis(struct soap*, const prodml22__HydrocarbonAnalysis *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__HydrocarbonAnalysis(struct soap*, const prodml23__HydrocarbonAnalysis *, const char*, const char*); -inline int soap_write__prodml22__HydrocarbonAnalysis(struct soap *soap, prodml22__HydrocarbonAnalysis const*p) +inline int soap_write__prodml23__HydrocarbonAnalysis(struct soap *soap, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis const*p) +inline int soap_PUT__prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis const*p) +inline int soap_PATCH__prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis const*p) +inline int soap_POST_send__prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__HydrocarbonAnalysis soap_get_prodml22__HydrocarbonAnalysis +#define soap_get__prodml23__HydrocarbonAnalysis soap_get_prodml23__HydrocarbonAnalysis -#define soap_read__prodml22__HydrocarbonAnalysis soap_read_prodml22__HydrocarbonAnalysis +#define soap_read__prodml23__HydrocarbonAnalysis soap_read_prodml23__HydrocarbonAnalysis -#define soap_GET__prodml22__HydrocarbonAnalysis soap_GET_prodml22__HydrocarbonAnalysis +#define soap_GET__prodml23__HydrocarbonAnalysis soap_GET_prodml23__HydrocarbonAnalysis -#define soap_POST_recv__prodml22__HydrocarbonAnalysis soap_POST_recv_prodml22__HydrocarbonAnalysis +#define soap_POST_recv__prodml23__HydrocarbonAnalysis soap_POST_recv_prodml23__HydrocarbonAnalysis #endif -/* _prodml22__FluidAnalysis is a typedef synonym of prodml22__FluidAnalysis */ +/* _prodml23__FluidAnalysis is a typedef synonym of prodml23__FluidAnalysis */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis_DEFINED -#define soap_default__prodml22__FluidAnalysis(soap, a) (a)->prodml22__FluidAnalysis::soap_default(soap) +#define soap_default__prodml23__FluidAnalysis(soap, a) (a)->prodml23__FluidAnalysis::soap_default(soap) -#define soap_serialize__prodml22__FluidAnalysis(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FluidAnalysis(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FluidAnalysis2s soap_prodml22__FluidAnalysis2s +#define soap__prodml23__FluidAnalysis2s soap_prodml23__FluidAnalysis2s -#define soap_out__prodml22__FluidAnalysis soap_out_prodml22__FluidAnalysis +#define soap_out__prodml23__FluidAnalysis soap_out_prodml23__FluidAnalysis -#define soap_s2_prodml22__FluidAnalysis soap_s2prodml22__FluidAnalysis +#define soap_s2_prodml23__FluidAnalysis soap_s2prodml23__FluidAnalysis -#define soap_in__prodml22__FluidAnalysis soap_in_prodml22__FluidAnalysis +#define soap_in__prodml23__FluidAnalysis soap_in_prodml23__FluidAnalysis -#define soap_instantiate__prodml22__FluidAnalysis soap_instantiate_prodml22__FluidAnalysis +#define soap_instantiate__prodml23__FluidAnalysis soap_instantiate_prodml23__FluidAnalysis -#define soap_new__prodml22__FluidAnalysis soap_new_prodml22__FluidAnalysis +#define soap_new__prodml23__FluidAnalysis soap_new_prodml23__FluidAnalysis -#define soap_new_req__prodml22__FluidAnalysis soap_new_req_prodml22__FluidAnalysis +#define soap_new_req__prodml23__FluidAnalysis soap_new_req_prodml23__FluidAnalysis -#define soap_new_set__prodml22__FluidAnalysis soap_new_set_prodml22__FluidAnalysis +#define soap_new_set__prodml23__FluidAnalysis soap_new_set_prodml23__FluidAnalysis -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidAnalysis(struct soap*, const prodml22__FluidAnalysis *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidAnalysis(struct soap*, const prodml23__FluidAnalysis *, const char*, const char*); -inline int soap_write__prodml22__FluidAnalysis(struct soap *soap, prodml22__FluidAnalysis const*p) +inline int soap_write__prodml23__FluidAnalysis(struct soap *soap, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis const*p) +inline int soap_PUT__prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis const*p) +inline int soap_PATCH__prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis const*p) +inline int soap_POST_send__prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FluidAnalysis soap_get_prodml22__FluidAnalysis +#define soap_get__prodml23__FluidAnalysis soap_get_prodml23__FluidAnalysis -#define soap_read__prodml22__FluidAnalysis soap_read_prodml22__FluidAnalysis +#define soap_read__prodml23__FluidAnalysis soap_read_prodml23__FluidAnalysis -#define soap_GET__prodml22__FluidAnalysis soap_GET_prodml22__FluidAnalysis +#define soap_GET__prodml23__FluidAnalysis soap_GET_prodml23__FluidAnalysis -#define soap_POST_recv__prodml22__FluidAnalysis soap_POST_recv_prodml22__FluidAnalysis +#define soap_POST_recv__prodml23__FluidAnalysis soap_POST_recv_prodml23__FluidAnalysis #endif -/* _prodml22__FluidCharacterization is a typedef synonym of prodml22__FluidCharacterization */ +/* _prodml23__FluidCharacterization is a typedef synonym of prodml23__FluidCharacterization */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization_DEFINED -#define soap_default__prodml22__FluidCharacterization(soap, a) (a)->prodml22__FluidCharacterization::soap_default(soap) +#define soap_default__prodml23__FluidCharacterization(soap, a) (a)->prodml23__FluidCharacterization::soap_default(soap) -#define soap_serialize__prodml22__FluidCharacterization(soap, a) (a)->soap_serialize(soap) +#define soap_serialize__prodml23__FluidCharacterization(soap, a) (a)->soap_serialize(soap) -#define soap__prodml22__FluidCharacterization2s soap_prodml22__FluidCharacterization2s +#define soap__prodml23__FluidCharacterization2s soap_prodml23__FluidCharacterization2s -#define soap_out__prodml22__FluidCharacterization soap_out_prodml22__FluidCharacterization +#define soap_out__prodml23__FluidCharacterization soap_out_prodml23__FluidCharacterization -#define soap_s2_prodml22__FluidCharacterization soap_s2prodml22__FluidCharacterization +#define soap_s2_prodml23__FluidCharacterization soap_s2prodml23__FluidCharacterization -#define soap_in__prodml22__FluidCharacterization soap_in_prodml22__FluidCharacterization +#define soap_in__prodml23__FluidCharacterization soap_in_prodml23__FluidCharacterization -#define soap_instantiate__prodml22__FluidCharacterization soap_instantiate_prodml22__FluidCharacterization +#define soap_instantiate__prodml23__FluidCharacterization soap_instantiate_prodml23__FluidCharacterization -#define soap_new__prodml22__FluidCharacterization soap_new_prodml22__FluidCharacterization +#define soap_new__prodml23__FluidCharacterization soap_new_prodml23__FluidCharacterization -#define soap_new_req__prodml22__FluidCharacterization soap_new_req_prodml22__FluidCharacterization +#define soap_new_req__prodml23__FluidCharacterization soap_new_req_prodml23__FluidCharacterization -#define soap_new_set__prodml22__FluidCharacterization soap_new_set_prodml22__FluidCharacterization +#define soap_new_set__prodml23__FluidCharacterization soap_new_set_prodml23__FluidCharacterization -SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml22__FluidCharacterization(struct soap*, const prodml22__FluidCharacterization *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put__prodml23__FluidCharacterization(struct soap*, const prodml23__FluidCharacterization *, const char*, const char*); -inline int soap_write__prodml22__FluidCharacterization(struct soap *soap, prodml22__FluidCharacterization const*p) +inline int soap_write__prodml23__FluidCharacterization(struct soap *soap, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization ? "" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization ? "" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT__prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization const*p) +inline int soap_PUT__prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH__prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization const*p) +inline int soap_PATCH__prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization ? "" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send__prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization const*p) +inline int soap_POST_send__prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization ? "" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization ? "" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -#define soap_get__prodml22__FluidCharacterization soap_get_prodml22__FluidCharacterization +#define soap_get__prodml23__FluidCharacterization soap_get_prodml23__FluidCharacterization -#define soap_read__prodml22__FluidCharacterization soap_read_prodml22__FluidCharacterization +#define soap_read__prodml23__FluidCharacterization soap_read_prodml23__FluidCharacterization -#define soap_GET__prodml22__FluidCharacterization soap_GET_prodml22__FluidCharacterization +#define soap_GET__prodml23__FluidCharacterization soap_GET_prodml23__FluidCharacterization -#define soap_POST_recv__prodml22__FluidCharacterization soap_POST_recv_prodml22__FluidCharacterization +#define soap_POST_recv__prodml23__FluidCharacterization soap_POST_recv_prodml23__FluidCharacterization #endif /* _eml23__GraphicalInformationSet is a typedef synonym of eml23__GraphicalInformationSet */ @@ -50448,84 +50448,84 @@ inline int soap_POST_send__witsml21__Well(struct soap *soap, const char *URL, wi #define soap_POST_recv__witsml21__Well soap_POST_recv_witsml21__Well #endif -/* prodml22__CalendarMonth is a typedef restriction of eml23__String64 */ +/* prodml23__CalendarMonth is a typedef restriction of eml23__String64 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth_DEFINED -#define soap_default_prodml22__CalendarMonth soap_default_eml23__String64 +#define soap_default_prodml23__CalendarMonth soap_default_eml23__String64 -#define soap_serialize_prodml22__CalendarMonth soap_serialize_eml23__String64 +#define soap_serialize_prodml23__CalendarMonth soap_serialize_eml23__String64 -#define soap_prodml22__CalendarMonth2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CalendarMonth(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__CalendarMonth2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CalendarMonth(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__CalendarMonth(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, "([1-9][0-9][0-9][0-9])-(([0][0-9])|([1][0-2]))") -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__CalendarMonth(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__CalendarMonth(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, 64, "([1-9][0-9][0-9][0-9])-(([0][0-9])|([1][0-2]))") +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__CalendarMonth(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__CalendarMonth soap_instantiate_eml23__String64 +#define soap_instantiate_prodml23__CalendarMonth soap_instantiate_eml23__String64 -#define soap_new_prodml22__CalendarMonth soap_new_eml23__String64 +#define soap_new_prodml23__CalendarMonth soap_new_eml23__String64 -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CalendarMonth(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CalendarMonth(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__CalendarMonth(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__CalendarMonth(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__CalendarMonth(soap, p, "prodml22:CalendarMonth", "prodml22:CalendarMonth") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__CalendarMonth(soap, p, "prodml23:CalendarMonth", "prodml23:CalendarMonth") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__CalendarMonth(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__CalendarMonth(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") || gsoap_eml2_3::soap_put_prodml22__CalendarMonth(soap, p, "prodml22:CalendarMonth", "prodml22:CalendarMonth") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CalendarMonth(soap, p, "prodml23:CalendarMonth", "prodml23:CalendarMonth") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CalendarMonth(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__CalendarMonth(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") || gsoap_eml2_3::soap_put_prodml22__CalendarMonth(soap, p, "prodml22:CalendarMonth", "prodml22:CalendarMonth") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CalendarMonth(soap, p, "prodml23:CalendarMonth", "prodml23:CalendarMonth") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CalendarMonth(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__CalendarMonth(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") || gsoap_eml2_3::soap_put_prodml22__CalendarMonth(soap, p, "prodml22:CalendarMonth", "prodml22:CalendarMonth") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CalendarMonth(soap, p, "prodml23:CalendarMonth", "prodml23:CalendarMonth") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__CalendarMonth(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__CalendarMonth(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__CalendarMonth(struct soap *soap, std::string *p) +inline int soap_read_prodml23__CalendarMonth(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CalendarMonth(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CalendarMonth(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CalendarMonth(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__CalendarMonth(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CalendarMonth(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CalendarMonth(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CalendarMonth(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__CalendarMonth(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__CalendarMonth(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CalendarMonth(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } @@ -51486,58 +51486,58 @@ inline int soap_POST_recv_eml23__EnumExtensionPattern(struct soap *soap, std::st return soap_closesock(soap); } #endif -/* prodml22__ProdmlRelativeIdentifier is a typedef synonym of xsd__anyURI */ +/* prodml23__ProdmlRelativeIdentifier is a typedef synonym of xsd__anyURI */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier_DEFINED -#define soap_default_prodml22__ProdmlRelativeIdentifier soap_default_xsd__anyURI +#define soap_default_prodml23__ProdmlRelativeIdentifier soap_default_xsd__anyURI -#define soap_serialize_prodml22__ProdmlRelativeIdentifier soap_serialize_xsd__anyURI +#define soap_serialize_prodml23__ProdmlRelativeIdentifier soap_serialize_xsd__anyURI -#define soap_prodml22__ProdmlRelativeIdentifier2s(soap, a) ((a).c_str()) +#define soap_prodml23__ProdmlRelativeIdentifier2s(soap, a) ((a).c_str()) -#define soap_out_prodml22__ProdmlRelativeIdentifier soap_out_xsd__anyURI +#define soap_out_prodml23__ProdmlRelativeIdentifier soap_out_xsd__anyURI -#define soap_s2prodml22__ProdmlRelativeIdentifier(soap, s, a) soap_s2stdchar((soap), (s), (a), 4, 0, -1, NULL) +#define soap_s2prodml23__ProdmlRelativeIdentifier(soap, s, a) soap_s2stdchar((soap), (s), (a), 4, 0, -1, NULL) -#define soap_in_prodml22__ProdmlRelativeIdentifier soap_in_xsd__anyURI +#define soap_in_prodml23__ProdmlRelativeIdentifier soap_in_xsd__anyURI -#define soap_instantiate_prodml22__ProdmlRelativeIdentifier soap_instantiate_xsd__anyURI +#define soap_instantiate_prodml23__ProdmlRelativeIdentifier soap_instantiate_xsd__anyURI -#define soap_new_prodml22__ProdmlRelativeIdentifier soap_new_xsd__anyURI +#define soap_new_prodml23__ProdmlRelativeIdentifier soap_new_xsd__anyURI -#define soap_put_prodml22__ProdmlRelativeIdentifier soap_put_xsd__anyURI +#define soap_put_prodml23__ProdmlRelativeIdentifier soap_put_xsd__anyURI -#define soap_write_prodml22__ProdmlRelativeIdentifier soap_write_xsd__anyURI +#define soap_write_prodml23__ProdmlRelativeIdentifier soap_write_xsd__anyURI -#define soap_PUT_prodml22__ProdmlRelativeIdentifier soap_PUT_xsd__anyURI +#define soap_PUT_prodml23__ProdmlRelativeIdentifier soap_PUT_xsd__anyURI -#define soap_PATCH_prodml22__ProdmlRelativeIdentifier soap_PATCH_xsd__anyURI +#define soap_PATCH_prodml23__ProdmlRelativeIdentifier soap_PATCH_xsd__anyURI -#define soap_POST_send_prodml22__ProdmlRelativeIdentifier soap_POST_send_xsd__anyURI +#define soap_POST_send_prodml23__ProdmlRelativeIdentifier soap_POST_send_xsd__anyURI -#define soap_get_prodml22__ProdmlRelativeIdentifier soap_get_xsd__anyURI +#define soap_get_prodml23__ProdmlRelativeIdentifier soap_get_xsd__anyURI -#define soap_read_prodml22__ProdmlRelativeIdentifier soap_read_xsd__anyURI +#define soap_read_prodml23__ProdmlRelativeIdentifier soap_read_xsd__anyURI -#define soap_GET_prodml22__ProdmlRelativeIdentifier soap_GET_xsd__anyURI +#define soap_GET_prodml23__ProdmlRelativeIdentifier soap_GET_xsd__anyURI -#define soap_POST_recv_prodml22__ProdmlRelativeIdentifier soap_POST_recv_xsd__anyURI +#define soap_POST_recv_prodml23__ProdmlRelativeIdentifier soap_POST_recv_xsd__anyURI #endif @@ -52525,1395 +52525,1395 @@ inline int soap_POST_recv_resqml22__CulturalFeatureKindExt(struct soap *soap, st } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt_DEFINED -inline void soap_default_prodml22__FluidSampleKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__FluidSampleKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__FluidSampleKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__FluidSampleKindExt(struct soap*, const std::string *); -#define soap_prodml22__FluidSampleKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__FluidSampleKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__FluidSampleKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__FluidSampleKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__FluidSampleKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__FluidSampleKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__FluidSampleKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__FluidSampleKindExt soap_instantiate_std__string -#define soap_new_prodml22__FluidSampleKindExt soap_new_std__string +#define soap_new_prodml23__FluidSampleKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FluidSampleKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FluidSampleKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__FluidSampleKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__FluidSampleKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FluidSampleKindExt(soap, p, "prodml22:FluidSampleKindExt", "prodml22:FluidSampleKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FluidSampleKindExt(soap, p, "prodml23:FluidSampleKindExt", "prodml23:FluidSampleKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__FluidSampleKindExt(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") || gsoap_eml2_3::soap_put_prodml22__FluidSampleKindExt(soap, p, "prodml22:FluidSampleKindExt", "prodml22:FluidSampleKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidSampleKindExt(soap, p, "prodml23:FluidSampleKindExt", "prodml23:FluidSampleKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__FluidSampleKindExt(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") || gsoap_eml2_3::soap_put_prodml22__FluidSampleKindExt(soap, p, "prodml22:FluidSampleKindExt", "prodml22:FluidSampleKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidSampleKindExt(soap, p, "prodml23:FluidSampleKindExt", "prodml23:FluidSampleKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__FluidSampleKindExt(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") || gsoap_eml2_3::soap_put_prodml22__FluidSampleKindExt(soap, p, "prodml22:FluidSampleKindExt", "prodml22:FluidSampleKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FluidSampleKindExt(soap, p, "prodml23:FluidSampleKindExt", "prodml23:FluidSampleKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__FluidSampleKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__FluidSampleKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__FluidSampleKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__FluidSampleKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__FluidSampleKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt_DEFINED -inline void soap_default_prodml22__DataConditioningExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__DataConditioningExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__DataConditioningExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__DataConditioningExt(struct soap*, const std::string *); -#define soap_prodml22__DataConditioningExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DataConditioningExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__DataConditioningExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DataConditioningExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__DataConditioningExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__DataConditioningExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__DataConditioningExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__DataConditioningExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__DataConditioningExt soap_instantiate_std__string +#define soap_instantiate_prodml23__DataConditioningExt soap_instantiate_std__string -#define soap_new_prodml22__DataConditioningExt soap_new_std__string +#define soap_new_prodml23__DataConditioningExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__DataConditioningExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__DataConditioningExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__DataConditioningExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__DataConditioningExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__DataConditioningExt(soap, p, "prodml22:DataConditioningExt", "prodml22:DataConditioningExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__DataConditioningExt(soap, p, "prodml23:DataConditioningExt", "prodml23:DataConditioningExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__DataConditioningExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__DataConditioningExt(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") || gsoap_eml2_3::soap_put_prodml22__DataConditioningExt(soap, p, "prodml22:DataConditioningExt", "prodml22:DataConditioningExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DataConditioningExt(soap, p, "prodml23:DataConditioningExt", "prodml23:DataConditioningExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DataConditioningExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__DataConditioningExt(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") || gsoap_eml2_3::soap_put_prodml22__DataConditioningExt(soap, p, "prodml22:DataConditioningExt", "prodml22:DataConditioningExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DataConditioningExt(soap, p, "prodml23:DataConditioningExt", "prodml23:DataConditioningExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DataConditioningExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__DataConditioningExt(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") || gsoap_eml2_3::soap_put_prodml22__DataConditioningExt(soap, p, "prodml22:DataConditioningExt", "prodml22:DataConditioningExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__DataConditioningExt(soap, p, "prodml23:DataConditioningExt", "prodml23:DataConditioningExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__DataConditioningExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__DataConditioningExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__DataConditioningExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__DataConditioningExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DataConditioningExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DataConditioningExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DataConditioningExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__DataConditioningExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DataConditioningExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DataConditioningExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DataConditioningExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__DataConditioningExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__DataConditioningExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DataConditioningExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt_DEFINED -inline void soap_default_prodml22__VolumeReferenceKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__VolumeReferenceKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__VolumeReferenceKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__VolumeReferenceKindExt(struct soap*, const std::string *); -#define soap_prodml22__VolumeReferenceKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VolumeReferenceKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__VolumeReferenceKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VolumeReferenceKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__VolumeReferenceKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__VolumeReferenceKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__VolumeReferenceKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__VolumeReferenceKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__VolumeReferenceKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__VolumeReferenceKindExt soap_instantiate_std__string -#define soap_new_prodml22__VolumeReferenceKindExt soap_new_std__string +#define soap_new_prodml23__VolumeReferenceKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__VolumeReferenceKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__VolumeReferenceKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__VolumeReferenceKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__VolumeReferenceKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKindExt(soap, p, "prodml22:VolumeReferenceKindExt", "prodml22:VolumeReferenceKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKindExt(soap, p, "prodml23:VolumeReferenceKindExt", "prodml23:VolumeReferenceKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__VolumeReferenceKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__VolumeReferenceKindExt(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") || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKindExt(soap, p, "prodml22:VolumeReferenceKindExt", "prodml22:VolumeReferenceKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKindExt(soap, p, "prodml23:VolumeReferenceKindExt", "prodml23:VolumeReferenceKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__VolumeReferenceKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__VolumeReferenceKindExt(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") || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKindExt(soap, p, "prodml22:VolumeReferenceKindExt", "prodml22:VolumeReferenceKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKindExt(soap, p, "prodml23:VolumeReferenceKindExt", "prodml23:VolumeReferenceKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__VolumeReferenceKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__VolumeReferenceKindExt(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") || gsoap_eml2_3::soap_put_prodml22__VolumeReferenceKindExt(soap, p, "prodml22:VolumeReferenceKindExt", "prodml22:VolumeReferenceKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__VolumeReferenceKindExt(soap, p, "prodml23:VolumeReferenceKindExt", "prodml23:VolumeReferenceKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__VolumeReferenceKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__VolumeReferenceKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__VolumeReferenceKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__VolumeReferenceKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__VolumeReferenceKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__VolumeReferenceKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__VolumeReferenceKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__VolumeReferenceKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__VolumeReferenceKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__VolumeReferenceKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__VolumeReferenceKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__VolumeReferenceKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__VolumeReferenceKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__VolumeReferenceKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt_DEFINED -inline void soap_default_prodml22__OrganicAcidKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__OrganicAcidKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__OrganicAcidKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__OrganicAcidKindExt(struct soap*, const std::string *); -#define soap_prodml22__OrganicAcidKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrganicAcidKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__OrganicAcidKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrganicAcidKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__OrganicAcidKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__OrganicAcidKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__OrganicAcidKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__OrganicAcidKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__OrganicAcidKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__OrganicAcidKindExt soap_instantiate_std__string -#define soap_new_prodml22__OrganicAcidKindExt soap_new_std__string +#define soap_new_prodml23__OrganicAcidKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OrganicAcidKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OrganicAcidKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__OrganicAcidKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__OrganicAcidKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKindExt(soap, p, "prodml22:OrganicAcidKindExt", "prodml22:OrganicAcidKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKindExt(soap, p, "prodml23:OrganicAcidKindExt", "prodml23:OrganicAcidKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__OrganicAcidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__OrganicAcidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKindExt(soap, p, "prodml22:OrganicAcidKindExt", "prodml22:OrganicAcidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKindExt(soap, p, "prodml23:OrganicAcidKindExt", "prodml23:OrganicAcidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrganicAcidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__OrganicAcidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKindExt(soap, p, "prodml22:OrganicAcidKindExt", "prodml22:OrganicAcidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKindExt(soap, p, "prodml23:OrganicAcidKindExt", "prodml23:OrganicAcidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrganicAcidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__OrganicAcidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__OrganicAcidKindExt(soap, p, "prodml22:OrganicAcidKindExt", "prodml22:OrganicAcidKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OrganicAcidKindExt(soap, p, "prodml23:OrganicAcidKindExt", "prodml23:OrganicAcidKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__OrganicAcidKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__OrganicAcidKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__OrganicAcidKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__OrganicAcidKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrganicAcidKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrganicAcidKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrganicAcidKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__OrganicAcidKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrganicAcidKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrganicAcidKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrganicAcidKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__OrganicAcidKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrganicAcidKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrganicAcidKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt_DEFINED -inline void soap_default_prodml22__CationKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__CationKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__CationKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__CationKindExt(struct soap*, const std::string *); -#define soap_prodml22__CationKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CationKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__CationKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CationKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__CationKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__CationKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__CationKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__CationKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__CationKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__CationKindExt soap_instantiate_std__string -#define soap_new_prodml22__CationKindExt soap_new_std__string +#define soap_new_prodml23__CationKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__CationKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__CationKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__CationKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__CationKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__CationKindExt(soap, p, "prodml22:CationKindExt", "prodml22:CationKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__CationKindExt(soap, p, "prodml23:CationKindExt", "prodml23:CationKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__CationKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__CationKindExt(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") || gsoap_eml2_3::soap_put_prodml22__CationKindExt(soap, p, "prodml22:CationKindExt", "prodml22:CationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CationKindExt(soap, p, "prodml23:CationKindExt", "prodml23:CationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CationKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__CationKindExt(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") || gsoap_eml2_3::soap_put_prodml22__CationKindExt(soap, p, "prodml22:CationKindExt", "prodml22:CationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CationKindExt(soap, p, "prodml23:CationKindExt", "prodml23:CationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CationKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__CationKindExt(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") || gsoap_eml2_3::soap_put_prodml22__CationKindExt(soap, p, "prodml22:CationKindExt", "prodml22:CationKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__CationKindExt(soap, p, "prodml23:CationKindExt", "prodml23:CationKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__CationKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__CationKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__CationKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__CationKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CationKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CationKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CationKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__CationKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CationKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CationKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CationKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__CationKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__CationKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CationKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt_DEFINED -inline void soap_default_prodml22__AnionKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__AnionKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__AnionKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__AnionKindExt(struct soap*, const std::string *); -#define soap_prodml22__AnionKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AnionKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__AnionKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AnionKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__AnionKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__AnionKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__AnionKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__AnionKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__AnionKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__AnionKindExt soap_instantiate_std__string -#define soap_new_prodml22__AnionKindExt soap_new_std__string +#define soap_new_prodml23__AnionKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__AnionKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__AnionKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__AnionKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__AnionKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__AnionKindExt(soap, p, "prodml22:AnionKindExt", "prodml22:AnionKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__AnionKindExt(soap, p, "prodml23:AnionKindExt", "prodml23:AnionKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__AnionKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__AnionKindExt(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") || gsoap_eml2_3::soap_put_prodml22__AnionKindExt(soap, p, "prodml22:AnionKindExt", "prodml22:AnionKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__AnionKindExt(soap, p, "prodml23:AnionKindExt", "prodml23:AnionKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AnionKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__AnionKindExt(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") || gsoap_eml2_3::soap_put_prodml22__AnionKindExt(soap, p, "prodml22:AnionKindExt", "prodml22:AnionKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__AnionKindExt(soap, p, "prodml23:AnionKindExt", "prodml23:AnionKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AnionKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__AnionKindExt(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") || gsoap_eml2_3::soap_put_prodml22__AnionKindExt(soap, p, "prodml22:AnionKindExt", "prodml22:AnionKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__AnionKindExt(soap, p, "prodml23:AnionKindExt", "prodml23:AnionKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__AnionKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__AnionKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__AnionKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__AnionKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AnionKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AnionKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AnionKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__AnionKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AnionKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AnionKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AnionKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__AnionKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__AnionKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AnionKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt_DEFINED -inline void soap_default_prodml22__SulfurComponentKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__SulfurComponentKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__SulfurComponentKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__SulfurComponentKindExt(struct soap*, const std::string *); -#define soap_prodml22__SulfurComponentKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SulfurComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__SulfurComponentKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SulfurComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__SulfurComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__SulfurComponentKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__SulfurComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__SulfurComponentKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__SulfurComponentKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__SulfurComponentKindExt soap_instantiate_std__string -#define soap_new_prodml22__SulfurComponentKindExt soap_new_std__string +#define soap_new_prodml23__SulfurComponentKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__SulfurComponentKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__SulfurComponentKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__SulfurComponentKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__SulfurComponentKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKindExt(soap, p, "prodml22:SulfurComponentKindExt", "prodml22:SulfurComponentKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKindExt(soap, p, "prodml23:SulfurComponentKindExt", "prodml23:SulfurComponentKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__SulfurComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__SulfurComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKindExt(soap, p, "prodml22:SulfurComponentKindExt", "prodml22:SulfurComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKindExt(soap, p, "prodml23:SulfurComponentKindExt", "prodml23:SulfurComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SulfurComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__SulfurComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKindExt(soap, p, "prodml22:SulfurComponentKindExt", "prodml22:SulfurComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKindExt(soap, p, "prodml23:SulfurComponentKindExt", "prodml23:SulfurComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SulfurComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__SulfurComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__SulfurComponentKindExt(soap, p, "prodml22:SulfurComponentKindExt", "prodml22:SulfurComponentKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__SulfurComponentKindExt(soap, p, "prodml23:SulfurComponentKindExt", "prodml23:SulfurComponentKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__SulfurComponentKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__SulfurComponentKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__SulfurComponentKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__SulfurComponentKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SulfurComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SulfurComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SulfurComponentKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__SulfurComponentKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SulfurComponentKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SulfurComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SulfurComponentKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__SulfurComponentKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__SulfurComponentKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SulfurComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt_DEFINED -inline void soap_default_prodml22__ServiceFluidKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__ServiceFluidKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ServiceFluidKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ServiceFluidKindExt(struct soap*, const std::string *); -#define soap_prodml22__ServiceFluidKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ServiceFluidKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__ServiceFluidKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ServiceFluidKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__ServiceFluidKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ServiceFluidKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__ServiceFluidKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ServiceFluidKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__ServiceFluidKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__ServiceFluidKindExt soap_instantiate_std__string -#define soap_new_prodml22__ServiceFluidKindExt soap_new_std__string +#define soap_new_prodml23__ServiceFluidKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ServiceFluidKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ServiceFluidKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__ServiceFluidKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__ServiceFluidKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKindExt(soap, p, "prodml22:ServiceFluidKindExt", "prodml22:ServiceFluidKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKindExt(soap, p, "prodml23:ServiceFluidKindExt", "prodml23:ServiceFluidKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ServiceFluidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__ServiceFluidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKindExt(soap, p, "prodml22:ServiceFluidKindExt", "prodml22:ServiceFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKindExt(soap, p, "prodml23:ServiceFluidKindExt", "prodml23:ServiceFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ServiceFluidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__ServiceFluidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKindExt(soap, p, "prodml22:ServiceFluidKindExt", "prodml22:ServiceFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKindExt(soap, p, "prodml23:ServiceFluidKindExt", "prodml23:ServiceFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ServiceFluidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__ServiceFluidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ServiceFluidKindExt(soap, p, "prodml22:ServiceFluidKindExt", "prodml22:ServiceFluidKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ServiceFluidKindExt(soap, p, "prodml23:ServiceFluidKindExt", "prodml23:ServiceFluidKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ServiceFluidKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ServiceFluidKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__ServiceFluidKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__ServiceFluidKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ServiceFluidKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ServiceFluidKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ServiceFluidKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__ServiceFluidKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ServiceFluidKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ServiceFluidKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ServiceFluidKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__ServiceFluidKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__ServiceFluidKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ServiceFluidKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt_DEFINED -inline void soap_default_prodml22__ReportingFacilityExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__ReportingFacilityExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ReportingFacilityExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ReportingFacilityExt(struct soap*, const std::string *); -#define soap_prodml22__ReportingFacilityExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingFacilityExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__ReportingFacilityExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingFacilityExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__ReportingFacilityExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ReportingFacilityExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__ReportingFacilityExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ReportingFacilityExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__ReportingFacilityExt soap_instantiate_std__string +#define soap_instantiate_prodml23__ReportingFacilityExt soap_instantiate_std__string -#define soap_new_prodml22__ReportingFacilityExt soap_new_std__string +#define soap_new_prodml23__ReportingFacilityExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingFacilityExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingFacilityExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__ReportingFacilityExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__ReportingFacilityExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingFacilityExt(soap, p, "prodml22:ReportingFacilityExt", "prodml22:ReportingFacilityExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingFacilityExt(soap, p, "prodml23:ReportingFacilityExt", "prodml23:ReportingFacilityExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingFacilityExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__ReportingFacilityExt(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") || gsoap_eml2_3::soap_put_prodml22__ReportingFacilityExt(soap, p, "prodml22:ReportingFacilityExt", "prodml22:ReportingFacilityExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFacilityExt(soap, p, "prodml23:ReportingFacilityExt", "prodml23:ReportingFacilityExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingFacilityExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__ReportingFacilityExt(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") || gsoap_eml2_3::soap_put_prodml22__ReportingFacilityExt(soap, p, "prodml22:ReportingFacilityExt", "prodml22:ReportingFacilityExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFacilityExt(soap, p, "prodml23:ReportingFacilityExt", "prodml23:ReportingFacilityExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingFacilityExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__ReportingFacilityExt(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") || gsoap_eml2_3::soap_put_prodml22__ReportingFacilityExt(soap, p, "prodml22:ReportingFacilityExt", "prodml22:ReportingFacilityExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingFacilityExt(soap, p, "prodml23:ReportingFacilityExt", "prodml23:ReportingFacilityExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ReportingFacilityExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ReportingFacilityExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__ReportingFacilityExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__ReportingFacilityExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingFacilityExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingFacilityExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingFacilityExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__ReportingFacilityExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingFacilityExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingFacilityExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingFacilityExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__ReportingFacilityExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingFacilityExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingFacilityExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt_DEFINED -inline void soap_default_prodml22__ReportingDurationKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__ReportingDurationKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ReportingDurationKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ReportingDurationKindExt(struct soap*, const std::string *); -#define soap_prodml22__ReportingDurationKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingDurationKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__ReportingDurationKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingDurationKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__ReportingDurationKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ReportingDurationKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__ReportingDurationKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ReportingDurationKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__ReportingDurationKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__ReportingDurationKindExt soap_instantiate_std__string -#define soap_new_prodml22__ReportingDurationKindExt soap_new_std__string +#define soap_new_prodml23__ReportingDurationKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ReportingDurationKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ReportingDurationKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__ReportingDurationKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__ReportingDurationKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKindExt(soap, p, "prodml22:ReportingDurationKindExt", "prodml22:ReportingDurationKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKindExt(soap, p, "prodml23:ReportingDurationKindExt", "prodml23:ReportingDurationKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingDurationKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__ReportingDurationKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKindExt(soap, p, "prodml22:ReportingDurationKindExt", "prodml22:ReportingDurationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKindExt(soap, p, "prodml23:ReportingDurationKindExt", "prodml23:ReportingDurationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingDurationKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__ReportingDurationKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKindExt(soap, p, "prodml22:ReportingDurationKindExt", "prodml22:ReportingDurationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKindExt(soap, p, "prodml23:ReportingDurationKindExt", "prodml23:ReportingDurationKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingDurationKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__ReportingDurationKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ReportingDurationKindExt(soap, p, "prodml22:ReportingDurationKindExt", "prodml22:ReportingDurationKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ReportingDurationKindExt(soap, p, "prodml23:ReportingDurationKindExt", "prodml23:ReportingDurationKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ReportingDurationKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ReportingDurationKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__ReportingDurationKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__ReportingDurationKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingDurationKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingDurationKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingDurationKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__ReportingDurationKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingDurationKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingDurationKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingDurationKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__ReportingDurationKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingDurationKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingDurationKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt_DEFINED -inline void soap_default_prodml22__PureComponentKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__PureComponentKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PureComponentKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PureComponentKindExt(struct soap*, const std::string *); -#define soap_prodml22__PureComponentKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PureComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__PureComponentKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PureComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__PureComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PureComponentKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__PureComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PureComponentKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__PureComponentKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__PureComponentKindExt soap_instantiate_std__string -#define soap_new_prodml22__PureComponentKindExt soap_new_std__string +#define soap_new_prodml23__PureComponentKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PureComponentKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PureComponentKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__PureComponentKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__PureComponentKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PureComponentKindExt(soap, p, "prodml22:PureComponentKindExt", "prodml22:PureComponentKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PureComponentKindExt(soap, p, "prodml23:PureComponentKindExt", "prodml23:PureComponentKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PureComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__PureComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PureComponentKindExt(soap, p, "prodml22:PureComponentKindExt", "prodml22:PureComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PureComponentKindExt(soap, p, "prodml23:PureComponentKindExt", "prodml23:PureComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PureComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__PureComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PureComponentKindExt(soap, p, "prodml22:PureComponentKindExt", "prodml22:PureComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PureComponentKindExt(soap, p, "prodml23:PureComponentKindExt", "prodml23:PureComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PureComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__PureComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PureComponentKindExt(soap, p, "prodml22:PureComponentKindExt", "prodml22:PureComponentKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PureComponentKindExt(soap, p, "prodml23:PureComponentKindExt", "prodml23:PureComponentKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PureComponentKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PureComponentKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__PureComponentKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__PureComponentKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PureComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PureComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PureComponentKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__PureComponentKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PureComponentKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PureComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PureComponentKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__PureComponentKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__PureComponentKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PureComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt_DEFINED -inline void soap_default_prodml22__PseudoComponentKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__PseudoComponentKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PseudoComponentKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PseudoComponentKindExt(struct soap*, const std::string *); -#define soap_prodml22__PseudoComponentKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__PseudoComponentKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__PseudoComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PseudoComponentKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__PseudoComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PseudoComponentKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__PseudoComponentKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__PseudoComponentKindExt soap_instantiate_std__string -#define soap_new_prodml22__PseudoComponentKindExt soap_new_std__string +#define soap_new_prodml23__PseudoComponentKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PseudoComponentKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PseudoComponentKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__PseudoComponentKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__PseudoComponentKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKindExt(soap, p, "prodml22:PseudoComponentKindExt", "prodml22:PseudoComponentKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKindExt(soap, p, "prodml23:PseudoComponentKindExt", "prodml23:PseudoComponentKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PseudoComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__PseudoComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKindExt(soap, p, "prodml22:PseudoComponentKindExt", "prodml22:PseudoComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKindExt(soap, p, "prodml23:PseudoComponentKindExt", "prodml23:PseudoComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PseudoComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__PseudoComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKindExt(soap, p, "prodml22:PseudoComponentKindExt", "prodml22:PseudoComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKindExt(soap, p, "prodml23:PseudoComponentKindExt", "prodml23:PseudoComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PseudoComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__PseudoComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PseudoComponentKindExt(soap, p, "prodml22:PseudoComponentKindExt", "prodml22:PseudoComponentKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PseudoComponentKindExt(soap, p, "prodml23:PseudoComponentKindExt", "prodml23:PseudoComponentKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PseudoComponentKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PseudoComponentKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__PseudoComponentKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__PseudoComponentKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PseudoComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PseudoComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PseudoComponentKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__PseudoComponentKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PseudoComponentKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PseudoComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PseudoComponentKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__PseudoComponentKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__PseudoComponentKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PseudoComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt_DEFINED -inline void soap_default_prodml22__ProductFluidKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__ProductFluidKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__ProductFluidKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__ProductFluidKindExt(struct soap*, const std::string *); -#define soap_prodml22__ProductFluidKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFluidKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__ProductFluidKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFluidKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__ProductFluidKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__ProductFluidKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__ProductFluidKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__ProductFluidKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__ProductFluidKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__ProductFluidKindExt soap_instantiate_std__string -#define soap_new_prodml22__ProductFluidKindExt soap_new_std__string +#define soap_new_prodml23__ProductFluidKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__ProductFluidKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__ProductFluidKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__ProductFluidKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__ProductFluidKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__ProductFluidKindExt(soap, p, "prodml22:ProductFluidKindExt", "prodml22:ProductFluidKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__ProductFluidKindExt(soap, p, "prodml23:ProductFluidKindExt", "prodml23:ProductFluidKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFluidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__ProductFluidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ProductFluidKindExt(soap, p, "prodml22:ProductFluidKindExt", "prodml22:ProductFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFluidKindExt(soap, p, "prodml23:ProductFluidKindExt", "prodml23:ProductFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFluidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__ProductFluidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ProductFluidKindExt(soap, p, "prodml22:ProductFluidKindExt", "prodml22:ProductFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFluidKindExt(soap, p, "prodml23:ProductFluidKindExt", "prodml23:ProductFluidKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFluidKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__ProductFluidKindExt(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") || gsoap_eml2_3::soap_put_prodml22__ProductFluidKindExt(soap, p, "prodml22:ProductFluidKindExt", "prodml22:ProductFluidKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__ProductFluidKindExt(soap, p, "prodml23:ProductFluidKindExt", "prodml23:ProductFluidKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__ProductFluidKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__ProductFluidKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__ProductFluidKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__ProductFluidKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFluidKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFluidKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFluidKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__ProductFluidKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFluidKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFluidKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFluidKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__ProductFluidKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFluidKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFluidKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt_DEFINED -inline void soap_default_prodml22__PlusComponentKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__PlusComponentKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PlusComponentKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PlusComponentKindExt(struct soap*, const std::string *); -#define soap_prodml22__PlusComponentKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PlusComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__PlusComponentKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PlusComponentKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__PlusComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PlusComponentKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__PlusComponentKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PlusComponentKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__PlusComponentKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__PlusComponentKindExt soap_instantiate_std__string -#define soap_new_prodml22__PlusComponentKindExt soap_new_std__string +#define soap_new_prodml23__PlusComponentKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PlusComponentKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PlusComponentKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__PlusComponentKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__PlusComponentKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PlusComponentKindExt(soap, p, "prodml22:PlusComponentKindExt", "prodml22:PlusComponentKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PlusComponentKindExt(soap, p, "prodml23:PlusComponentKindExt", "prodml23:PlusComponentKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PlusComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__PlusComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PlusComponentKindExt(soap, p, "prodml22:PlusComponentKindExt", "prodml22:PlusComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PlusComponentKindExt(soap, p, "prodml23:PlusComponentKindExt", "prodml23:PlusComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PlusComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__PlusComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PlusComponentKindExt(soap, p, "prodml22:PlusComponentKindExt", "prodml22:PlusComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PlusComponentKindExt(soap, p, "prodml23:PlusComponentKindExt", "prodml23:PlusComponentKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PlusComponentKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__PlusComponentKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PlusComponentKindExt(soap, p, "prodml22:PlusComponentKindExt", "prodml22:PlusComponentKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PlusComponentKindExt(soap, p, "prodml23:PlusComponentKindExt", "prodml23:PlusComponentKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PlusComponentKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PlusComponentKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__PlusComponentKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__PlusComponentKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PlusComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PlusComponentKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PlusComponentKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__PlusComponentKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PlusComponentKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PlusComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PlusComponentKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__PlusComponentKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__PlusComponentKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PlusComponentKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt_DEFINED -inline void soap_default_prodml22__FacilityKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__FacilityKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__FacilityKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__FacilityKindExt(struct soap*, const std::string *); -#define soap_prodml22__FacilityKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__FacilityKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__FacilityKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__FacilityKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__FacilityKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__FacilityKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__FacilityKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__FacilityKindExt soap_instantiate_std__string -#define soap_new_prodml22__FacilityKindExt soap_new_std__string +#define soap_new_prodml23__FacilityKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__FacilityKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__FacilityKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__FacilityKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__FacilityKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__FacilityKindExt(soap, p, "prodml22:FacilityKindExt", "prodml22:FacilityKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__FacilityKindExt(soap, p, "prodml23:FacilityKindExt", "prodml23:FacilityKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__FacilityKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__FacilityKindExt(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") || gsoap_eml2_3::soap_put_prodml22__FacilityKindExt(soap, p, "prodml22:FacilityKindExt", "prodml22:FacilityKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FacilityKindExt(soap, p, "prodml23:FacilityKindExt", "prodml23:FacilityKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilityKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__FacilityKindExt(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") || gsoap_eml2_3::soap_put_prodml22__FacilityKindExt(soap, p, "prodml22:FacilityKindExt", "prodml22:FacilityKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FacilityKindExt(soap, p, "prodml23:FacilityKindExt", "prodml23:FacilityKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilityKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__FacilityKindExt(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") || gsoap_eml2_3::soap_put_prodml22__FacilityKindExt(soap, p, "prodml22:FacilityKindExt", "prodml22:FacilityKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__FacilityKindExt(soap, p, "prodml23:FacilityKindExt", "prodml23:FacilityKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__FacilityKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__FacilityKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__FacilityKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__FacilityKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilityKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilityKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilityKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__FacilityKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilityKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilityKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilityKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__FacilityKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilityKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilityKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt_DEFINED -inline void soap_default_prodml22__PvtModelParameterKindExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__PvtModelParameterKindExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__PvtModelParameterKindExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__PvtModelParameterKindExt(struct soap*, const std::string *); -#define soap_prodml22__PvtModelParameterKindExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameterKindExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__PvtModelParameterKindExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameterKindExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__PvtModelParameterKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterKindExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__PvtModelParameterKindExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__PvtModelParameterKindExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__PvtModelParameterKindExt soap_instantiate_std__string +#define soap_instantiate_prodml23__PvtModelParameterKindExt soap_instantiate_std__string -#define soap_new_prodml22__PvtModelParameterKindExt soap_new_std__string +#define soap_new_prodml23__PvtModelParameterKindExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__PvtModelParameterKindExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__PvtModelParameterKindExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__PvtModelParameterKindExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__PvtModelParameterKindExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKindExt(soap, p, "prodml22:PvtModelParameterKindExt", "prodml22:PvtModelParameterKindExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKindExt(soap, p, "prodml23:PvtModelParameterKindExt", "prodml23:PvtModelParameterKindExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__PvtModelParameterKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__PvtModelParameterKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKindExt(soap, p, "prodml22:PvtModelParameterKindExt", "prodml22:PvtModelParameterKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKindExt(soap, p, "prodml23:PvtModelParameterKindExt", "prodml23:PvtModelParameterKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PvtModelParameterKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__PvtModelParameterKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKindExt(soap, p, "prodml22:PvtModelParameterKindExt", "prodml22:PvtModelParameterKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKindExt(soap, p, "prodml23:PvtModelParameterKindExt", "prodml23:PvtModelParameterKindExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PvtModelParameterKindExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__PvtModelParameterKindExt(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") || gsoap_eml2_3::soap_put_prodml22__PvtModelParameterKindExt(soap, p, "prodml22:PvtModelParameterKindExt", "prodml22:PvtModelParameterKindExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__PvtModelParameterKindExt(soap, p, "prodml23:PvtModelParameterKindExt", "prodml23:PvtModelParameterKindExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__PvtModelParameterKindExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__PvtModelParameterKindExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__PvtModelParameterKindExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__PvtModelParameterKindExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PvtModelParameterKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PvtModelParameterKindExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PvtModelParameterKindExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__PvtModelParameterKindExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PvtModelParameterKindExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PvtModelParameterKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PvtModelParameterKindExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__PvtModelParameterKindExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__PvtModelParameterKindExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PvtModelParameterKindExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt_DEFINED +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt_DEFINED -inline void soap_default_prodml22__OutputFluidPropertyExt(struct soap *soap, std::string *p) +inline void soap_default_prodml23__OutputFluidPropertyExt(struct soap *soap, std::string *p) { (void)soap; /* appease -Wall -Werror */ p->erase(); } -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml22__OutputFluidPropertyExt(struct soap*, const std::string *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_prodml23__OutputFluidPropertyExt(struct soap*, const std::string *); -#define soap_prodml22__OutputFluidPropertyExt2s(soap, a) ((a).c_str()) -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputFluidPropertyExt(struct soap*, const char*, int, const std::string*, const char*); +#define soap_prodml23__OutputFluidPropertyExt2s(soap, a) ((a).c_str()) +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputFluidPropertyExt(struct soap*, const char*, int, const std::string*, const char*); -#define soap_s2prodml22__OutputFluidPropertyExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml22__OutputFluidPropertyExt(struct soap*, const char*, std::string*, const char*); +#define soap_s2prodml23__OutputFluidPropertyExt(soap, s, a) soap_s2stdchar((soap), (s), (a), 1, 0, -1, NULL) +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_in_prodml23__OutputFluidPropertyExt(struct soap*, const char*, std::string*, const char*); -#define soap_instantiate_prodml22__OutputFluidPropertyExt soap_instantiate_std__string +#define soap_instantiate_prodml23__OutputFluidPropertyExt soap_instantiate_std__string -#define soap_new_prodml22__OutputFluidPropertyExt soap_new_std__string +#define soap_new_prodml23__OutputFluidPropertyExt soap_new_std__string -SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml22__OutputFluidPropertyExt(struct soap*, const std::string *, const char*, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_prodml23__OutputFluidPropertyExt(struct soap*, const std::string *, const char*, const char*); -inline int soap_write_prodml22__OutputFluidPropertyExt(struct soap *soap, std::string const*p) +inline int soap_write_prodml23__OutputFluidPropertyExt(struct soap *soap, std::string const*p) { soap_free_temp(soap); if (p) - { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml22__OutputFluidPropertyExt(soap, p, "prodml22:OutputFluidPropertyExt", "prodml22:OutputFluidPropertyExt") || soap_end_send(soap)) + { if (soap_begin_send(soap) || gsoap_eml2_3::soap_put_prodml23__OutputFluidPropertyExt(soap, p, "prodml23:OutputFluidPropertyExt", "prodml23:OutputFluidPropertyExt") || soap_end_send(soap)) return soap->error; } return SOAP_OK; } -inline int soap_PUT_prodml22__OutputFluidPropertyExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PUT_prodml23__OutputFluidPropertyExt(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") || gsoap_eml2_3::soap_put_prodml22__OutputFluidPropertyExt(soap, p, "prodml22:OutputFluidPropertyExt", "prodml22:OutputFluidPropertyExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OutputFluidPropertyExt(soap, p, "prodml23:OutputFluidPropertyExt", "prodml23:OutputFluidPropertyExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OutputFluidPropertyExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_PATCH_prodml23__OutputFluidPropertyExt(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") || gsoap_eml2_3::soap_put_prodml22__OutputFluidPropertyExt(soap, p, "prodml22:OutputFluidPropertyExt", "prodml22:OutputFluidPropertyExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OutputFluidPropertyExt(soap, p, "prodml23:OutputFluidPropertyExt", "prodml23:OutputFluidPropertyExt") || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OutputFluidPropertyExt(struct soap *soap, const char *URL, std::string const*p) +inline int soap_POST_send_prodml23__OutputFluidPropertyExt(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") || gsoap_eml2_3::soap_put_prodml22__OutputFluidPropertyExt(soap, p, "prodml22:OutputFluidPropertyExt", "prodml22:OutputFluidPropertyExt") || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || gsoap_eml2_3::soap_put_prodml23__OutputFluidPropertyExt(soap, p, "prodml23:OutputFluidPropertyExt", "prodml23:OutputFluidPropertyExt") || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml22__OutputFluidPropertyExt(struct soap*, std::string *, const char*, const char*); +SOAP_FMAC3 std::string * SOAP_FMAC4 soap_get_prodml23__OutputFluidPropertyExt(struct soap*, std::string *, const char*, const char*); -inline int soap_read_prodml22__OutputFluidPropertyExt(struct soap *soap, std::string *p) +inline int soap_read_prodml23__OutputFluidPropertyExt(struct soap *soap, std::string *p) { if (p) - { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OutputFluidPropertyExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + { if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OutputFluidPropertyExt(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OutputFluidPropertyExt(struct soap *soap, const char *URL, std::string *p) +inline int soap_GET_prodml23__OutputFluidPropertyExt(struct soap *soap, const char *URL, std::string *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OutputFluidPropertyExt(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OutputFluidPropertyExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OutputFluidPropertyExt(struct soap *soap, std::string *p) +inline int soap_POST_recv_prodml23__OutputFluidPropertyExt(struct soap *soap, std::string *p) { - if (gsoap_eml2_3::soap_read_prodml22__OutputFluidPropertyExt(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OutputFluidPropertyExt(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } @@ -96311,127 +96311,127 @@ inline int soap_POST_recv_resqml22__AbstractFeature(struct soap *soap, resqml22_ } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesThreshold(struct soap*, const char*, int, const prodml22__TimeSeriesThreshold *, const char*); -SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml22__TimeSeriesThreshold(struct soap*, const char*, prodml22__TimeSeriesThreshold *, const char*); -SOAP_FMAC1 prodml22__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesThreshold(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesThreshold(struct soap*, const char*, int, const prodml23__TimeSeriesThreshold *, const char*); +SOAP_FMAC3 prodml23__TimeSeriesThreshold * SOAP_FMAC4 soap_in_prodml23__TimeSeriesThreshold(struct soap*, const char*, prodml23__TimeSeriesThreshold *, const char*); +SOAP_FMAC1 prodml23__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesThreshold(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TimeSeriesThreshold * soap_new_prodml22__TimeSeriesThreshold(struct soap *soap, int n = -1) +inline prodml23__TimeSeriesThreshold * soap_new_prodml23__TimeSeriesThreshold(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TimeSeriesThreshold(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TimeSeriesThreshold(soap, n, NULL, NULL, NULL); } -inline prodml22__TimeSeriesThreshold * soap_new_req_prodml22__TimeSeriesThreshold( +inline prodml23__TimeSeriesThreshold * soap_new_req_prodml23__TimeSeriesThreshold( struct soap *soap, eml23__TimeMeasure *Duration) { - prodml22__TimeSeriesThreshold *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesThreshold(soap); + prodml23__TimeSeriesThreshold *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesThreshold(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesThreshold::Duration = Duration; + _p->prodml23__TimeSeriesThreshold::Duration = Duration; } return _p; } -inline prodml22__TimeSeriesThreshold * soap_new_set_prodml22__TimeSeriesThreshold( +inline prodml23__TimeSeriesThreshold * soap_new_set_prodml23__TimeSeriesThreshold( struct soap *soap, - prodml22__EndpointQuantity *ThresholdMinimum, - prodml22__EndpointQuantity *ThresholdMaximum, + prodml23__EndpointQuantity *ThresholdMinimum, + prodml23__EndpointQuantity *ThresholdMaximum, eml23__TimeMeasure *Duration) { - prodml22__TimeSeriesThreshold *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesThreshold(soap); + prodml23__TimeSeriesThreshold *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesThreshold(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesThreshold::ThresholdMinimum = ThresholdMinimum; - _p->prodml22__TimeSeriesThreshold::ThresholdMaximum = ThresholdMaximum; - _p->prodml22__TimeSeriesThreshold::Duration = Duration; + _p->prodml23__TimeSeriesThreshold::ThresholdMinimum = ThresholdMinimum; + _p->prodml23__TimeSeriesThreshold::ThresholdMaximum = ThresholdMaximum; + _p->prodml23__TimeSeriesThreshold::Duration = Duration; } return _p; } -inline int soap_write_prodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold const*p) +inline int soap_write_prodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold ? "prodml22:TimeSeriesThreshold" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold ? "prodml23:TimeSeriesThreshold" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml22__TimeSeriesThreshold const*p) +inline int soap_PUT_prodml23__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml23__TimeSeriesThreshold const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold ? "prodml22:TimeSeriesThreshold" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold ? "prodml23:TimeSeriesThreshold" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml22__TimeSeriesThreshold const*p) +inline int soap_PATCH_prodml23__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml23__TimeSeriesThreshold const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold ? "prodml22:TimeSeriesThreshold" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold ? "prodml23:TimeSeriesThreshold" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml22__TimeSeriesThreshold const*p) +inline int soap_POST_send_prodml23__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml23__TimeSeriesThreshold const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold ? "prodml22:TimeSeriesThreshold" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesThreshold", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold ? "prodml23:TimeSeriesThreshold" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesThreshold * SOAP_FMAC4 soap_get_prodml22__TimeSeriesThreshold(struct soap*, prodml22__TimeSeriesThreshold *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesThreshold * SOAP_FMAC4 soap_get_prodml23__TimeSeriesThreshold(struct soap*, prodml23__TimeSeriesThreshold *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold *p) +inline int soap_read_prodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesThreshold(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesThreshold(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml22__TimeSeriesThreshold *p) +inline int soap_GET_prodml23__TimeSeriesThreshold(struct soap *soap, const char *URL, prodml23__TimeSeriesThreshold *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesThreshold(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesThreshold(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesThreshold(struct soap *soap, prodml22__TimeSeriesThreshold *p) +inline int soap_POST_recv_prodml23__TimeSeriesThreshold(struct soap *soap, prodml23__TimeSeriesThreshold *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesThreshold(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesThreshold(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesStatistic(struct soap*, const char*, int, const prodml22__TimeSeriesStatistic *, const char*); -SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml22__TimeSeriesStatistic(struct soap*, const char*, prodml22__TimeSeriesStatistic *, const char*); -SOAP_FMAC1 prodml22__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesStatistic(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesStatistic(struct soap*, const char*, int, const prodml23__TimeSeriesStatistic *, const char*); +SOAP_FMAC3 prodml23__TimeSeriesStatistic * SOAP_FMAC4 soap_in_prodml23__TimeSeriesStatistic(struct soap*, const char*, prodml23__TimeSeriesStatistic *, const char*); +SOAP_FMAC1 prodml23__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesStatistic(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TimeSeriesStatistic * soap_new_prodml22__TimeSeriesStatistic(struct soap *soap, int n = -1) +inline prodml23__TimeSeriesStatistic * soap_new_prodml23__TimeSeriesStatistic(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TimeSeriesStatistic(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TimeSeriesStatistic(soap, n, NULL, NULL, NULL); } -inline prodml22__TimeSeriesStatistic * soap_new_req_prodml22__TimeSeriesStatistic( +inline prodml23__TimeSeriesStatistic * soap_new_req_prodml23__TimeSeriesStatistic( struct soap *soap, - prodml22__EndpointDateTime *DTimMin, - prodml22__EndpointDateTime *DTimMax, + prodml23__EndpointDateTime *DTimMin, + prodml23__EndpointDateTime *DTimMax, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__TimeSeriesStatistic *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesStatistic(soap); + prodml23__TimeSeriesStatistic *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesStatistic(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesStatistic::DTimMin = DTimMin; - _p->prodml22__TimeSeriesStatistic::DTimMax = DTimMax; + _p->prodml23__TimeSeriesStatistic::DTimMin = DTimMin; + _p->prodml23__TimeSeriesStatistic::DTimMax = DTimMax; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -96439,9 +96439,9 @@ inline prodml22__TimeSeriesStatistic * soap_new_req_prodml22__TimeSeriesStatisti return _p; } -inline prodml22__TimeSeriesStatistic * soap_new_set_prodml22__TimeSeriesStatistic( +inline prodml23__TimeSeriesStatistic * soap_new_set_prodml23__TimeSeriesStatistic( struct soap *soap, - const std::vector & Key, + const std::vector & Key, std::string *Uom, eml23__MeasureClass *MeasureClass, std::string *Comment, @@ -96451,9 +96451,9 @@ inline prodml22__TimeSeriesStatistic * soap_new_set_prodml22__TimeSeriesStatisti eml23__DimensionlessMeasure *Mean, eml23__DimensionlessMeasure *Median, eml23__DimensionlessMeasure *StandardDeviation, - prodml22__EndpointDateTime *DTimMin, - prodml22__EndpointDateTime *DTimMax, - prodml22__TimeSeriesThreshold *TimeAtThreshold, + prodml23__EndpointDateTime *DTimMin, + prodml23__EndpointDateTime *DTimMax, + prodml23__TimeSeriesThreshold *TimeAtThreshold, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -96466,22 +96466,22 @@ inline prodml22__TimeSeriesStatistic * soap_new_set_prodml22__TimeSeriesStatisti const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__TimeSeriesStatistic *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesStatistic(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__TimeSeriesStatistic::Key = Key; - _p->prodml22__TimeSeriesStatistic::Uom = Uom; - _p->prodml22__TimeSeriesStatistic::MeasureClass = MeasureClass; - _p->prodml22__TimeSeriesStatistic::Comment = Comment; - _p->prodml22__TimeSeriesStatistic::Minimum = Minimum; - _p->prodml22__TimeSeriesStatistic::Maximum = Maximum; - _p->prodml22__TimeSeriesStatistic::Sum = Sum; - _p->prodml22__TimeSeriesStatistic::Mean = Mean; - _p->prodml22__TimeSeriesStatistic::Median = Median; - _p->prodml22__TimeSeriesStatistic::StandardDeviation = StandardDeviation; - _p->prodml22__TimeSeriesStatistic::DTimMin = DTimMin; - _p->prodml22__TimeSeriesStatistic::DTimMax = DTimMax; - _p->prodml22__TimeSeriesStatistic::TimeAtThreshold = TimeAtThreshold; + prodml23__TimeSeriesStatistic *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesStatistic(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__TimeSeriesStatistic::Key = Key; + _p->prodml23__TimeSeriesStatistic::Uom = Uom; + _p->prodml23__TimeSeriesStatistic::MeasureClass = MeasureClass; + _p->prodml23__TimeSeriesStatistic::Comment = Comment; + _p->prodml23__TimeSeriesStatistic::Minimum = Minimum; + _p->prodml23__TimeSeriesStatistic::Maximum = Maximum; + _p->prodml23__TimeSeriesStatistic::Sum = Sum; + _p->prodml23__TimeSeriesStatistic::Mean = Mean; + _p->prodml23__TimeSeriesStatistic::Median = Median; + _p->prodml23__TimeSeriesStatistic::StandardDeviation = StandardDeviation; + _p->prodml23__TimeSeriesStatistic::DTimMin = DTimMin; + _p->prodml23__TimeSeriesStatistic::DTimMax = DTimMax; + _p->prodml23__TimeSeriesStatistic::TimeAtThreshold = TimeAtThreshold; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -96497,565 +96497,565 @@ inline prodml22__TimeSeriesStatistic * soap_new_set_prodml22__TimeSeriesStatisti return _p; } -inline int soap_write_prodml22__TimeSeriesStatistic(struct soap *soap, prodml22__TimeSeriesStatistic const*p) +inline int soap_write_prodml23__TimeSeriesStatistic(struct soap *soap, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic ? "prodml22:TimeSeriesStatistic" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic ? "prodml23:TimeSeriesStatistic" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic const*p) +inline int soap_PUT_prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic ? "prodml22:TimeSeriesStatistic" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic ? "prodml23:TimeSeriesStatistic" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic const*p) +inline int soap_PATCH_prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic ? "prodml22:TimeSeriesStatistic" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic ? "prodml23:TimeSeriesStatistic" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic const*p) +inline int soap_POST_send_prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic ? "prodml22:TimeSeriesStatistic" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStatistic", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic ? "prodml23:TimeSeriesStatistic" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesStatistic * SOAP_FMAC4 soap_get_prodml22__TimeSeriesStatistic(struct soap*, prodml22__TimeSeriesStatistic *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesStatistic * SOAP_FMAC4 soap_get_prodml23__TimeSeriesStatistic(struct soap*, prodml23__TimeSeriesStatistic *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesStatistic(struct soap *soap, prodml22__TimeSeriesStatistic *p) +inline int soap_read_prodml23__TimeSeriesStatistic(struct soap *soap, prodml23__TimeSeriesStatistic *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesStatistic(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesStatistic(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml22__TimeSeriesStatistic *p) +inline int soap_GET_prodml23__TimeSeriesStatistic(struct soap *soap, const char *URL, prodml23__TimeSeriesStatistic *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesStatistic(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesStatistic(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesStatistic(struct soap *soap, prodml22__TimeSeriesStatistic *p) +inline int soap_POST_recv_prodml23__TimeSeriesStatistic(struct soap *soap, prodml23__TimeSeriesStatistic *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesStatistic(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesStatistic(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__KeywordValueStruct(struct soap*, const char*, int, const prodml22__KeywordValueStruct *, const char*); -SOAP_FMAC3 prodml22__KeywordValueStruct * SOAP_FMAC4 soap_in_prodml22__KeywordValueStruct(struct soap*, const char*, prodml22__KeywordValueStruct *, const char*); -SOAP_FMAC1 prodml22__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml22__KeywordValueStruct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__KeywordValueStruct(struct soap*, const char*, int, const prodml23__KeywordValueStruct *, const char*); +SOAP_FMAC3 prodml23__KeywordValueStruct * SOAP_FMAC4 soap_in_prodml23__KeywordValueStruct(struct soap*, const char*, prodml23__KeywordValueStruct *, const char*); +SOAP_FMAC1 prodml23__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml23__KeywordValueStruct(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__KeywordValueStruct * soap_new_prodml22__KeywordValueStruct(struct soap *soap, int n = -1) +inline prodml23__KeywordValueStruct * soap_new_prodml23__KeywordValueStruct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__KeywordValueStruct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__KeywordValueStruct(soap, n, NULL, NULL, NULL); } -inline prodml22__KeywordValueStruct * soap_new_req_prodml22__KeywordValueStruct( +inline prodml23__KeywordValueStruct * soap_new_req_prodml23__KeywordValueStruct( struct soap *soap, const std::string& __item, - prodml22__TimeSeriesKeyword keyword) + prodml23__TimeSeriesKeyword keyword) { - prodml22__KeywordValueStruct *_p = gsoap_eml2_3::soap_new_prodml22__KeywordValueStruct(soap); + prodml23__KeywordValueStruct *_p = gsoap_eml2_3::soap_new_prodml23__KeywordValueStruct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__KeywordValueStruct::__item = __item; - _p->prodml22__KeywordValueStruct::keyword = keyword; + _p->prodml23__KeywordValueStruct::__item = __item; + _p->prodml23__KeywordValueStruct::keyword = keyword; } return _p; } -inline prodml22__KeywordValueStruct * soap_new_set_prodml22__KeywordValueStruct( +inline prodml23__KeywordValueStruct * soap_new_set_prodml23__KeywordValueStruct( struct soap *soap, const std::string& __item, - prodml22__TimeSeriesKeyword keyword) + prodml23__TimeSeriesKeyword keyword) { - prodml22__KeywordValueStruct *_p = gsoap_eml2_3::soap_new_prodml22__KeywordValueStruct(soap); + prodml23__KeywordValueStruct *_p = gsoap_eml2_3::soap_new_prodml23__KeywordValueStruct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__KeywordValueStruct::__item = __item; - _p->prodml22__KeywordValueStruct::keyword = keyword; + _p->prodml23__KeywordValueStruct::__item = __item; + _p->prodml23__KeywordValueStruct::keyword = keyword; } return _p; } -inline int soap_write_prodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct const*p) +inline int soap_write_prodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct ? "prodml22:KeywordValueStruct" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct ? "prodml23:KeywordValueStruct" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__KeywordValueStruct(struct soap *soap, const char *URL, prodml22__KeywordValueStruct const*p) +inline int soap_PUT_prodml23__KeywordValueStruct(struct soap *soap, const char *URL, prodml23__KeywordValueStruct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct ? "prodml22:KeywordValueStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct ? "prodml23:KeywordValueStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__KeywordValueStruct(struct soap *soap, const char *URL, prodml22__KeywordValueStruct const*p) +inline int soap_PATCH_prodml23__KeywordValueStruct(struct soap *soap, const char *URL, prodml23__KeywordValueStruct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct ? "prodml22:KeywordValueStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct ? "prodml23:KeywordValueStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__KeywordValueStruct(struct soap *soap, const char *URL, prodml22__KeywordValueStruct const*p) +inline int soap_POST_send_prodml23__KeywordValueStruct(struct soap *soap, const char *URL, prodml23__KeywordValueStruct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct ? "prodml22:KeywordValueStruct" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KeywordValueStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct ? "prodml23:KeywordValueStruct" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__KeywordValueStruct * SOAP_FMAC4 soap_get_prodml22__KeywordValueStruct(struct soap*, prodml22__KeywordValueStruct *, const char*, const char*); +SOAP_FMAC3 prodml23__KeywordValueStruct * SOAP_FMAC4 soap_get_prodml23__KeywordValueStruct(struct soap*, prodml23__KeywordValueStruct *, const char*, const char*); -inline int soap_read_prodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct *p) +inline int soap_read_prodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__KeywordValueStruct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__KeywordValueStruct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__KeywordValueStruct(struct soap *soap, const char *URL, prodml22__KeywordValueStruct *p) +inline int soap_GET_prodml23__KeywordValueStruct(struct soap *soap, const char *URL, prodml23__KeywordValueStruct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__KeywordValueStruct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__KeywordValueStruct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__KeywordValueStruct(struct soap *soap, prodml22__KeywordValueStruct *p) +inline int soap_POST_recv_prodml23__KeywordValueStruct(struct soap *soap, prodml23__KeywordValueStruct *p) { - if (gsoap_eml2_3::soap_read_prodml22__KeywordValueStruct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__KeywordValueStruct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQuantity(struct soap*, const char*, int, const prodml22__EndpointQuantity *, const char*); -SOAP_FMAC3 prodml22__EndpointQuantity * SOAP_FMAC4 soap_in_prodml22__EndpointQuantity(struct soap*, const char*, prodml22__EndpointQuantity *, const char*); -SOAP_FMAC1 prodml22__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQuantity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQuantity(struct soap*, const char*, int, const prodml23__EndpointQuantity *, const char*); +SOAP_FMAC3 prodml23__EndpointQuantity * SOAP_FMAC4 soap_in_prodml23__EndpointQuantity(struct soap*, const char*, prodml23__EndpointQuantity *, const char*); +SOAP_FMAC1 prodml23__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQuantity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__EndpointQuantity * soap_new_prodml22__EndpointQuantity(struct soap *soap, int n = -1) +inline prodml23__EndpointQuantity * soap_new_prodml23__EndpointQuantity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__EndpointQuantity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__EndpointQuantity(soap, n, NULL, NULL, NULL); } -inline prodml22__EndpointQuantity * soap_new_req_prodml22__EndpointQuantity( +inline prodml23__EndpointQuantity * soap_new_req_prodml23__EndpointQuantity( struct soap *soap, double __item, - prodml22__EndpointQualifierInterval endpoint) + prodml23__EndpointQualifierInterval endpoint) { - prodml22__EndpointQuantity *_p = gsoap_eml2_3::soap_new_prodml22__EndpointQuantity(soap); + prodml23__EndpointQuantity *_p = gsoap_eml2_3::soap_new_prodml23__EndpointQuantity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__EndpointQuantity::__item = __item; - _p->prodml22__EndpointQuantity::endpoint = endpoint; + _p->prodml23__EndpointQuantity::__item = __item; + _p->prodml23__EndpointQuantity::endpoint = endpoint; } return _p; } -inline prodml22__EndpointQuantity * soap_new_set_prodml22__EndpointQuantity( +inline prodml23__EndpointQuantity * soap_new_set_prodml23__EndpointQuantity( struct soap *soap, double __item, - prodml22__EndpointQualifierInterval endpoint) + prodml23__EndpointQualifierInterval endpoint) { - prodml22__EndpointQuantity *_p = gsoap_eml2_3::soap_new_prodml22__EndpointQuantity(soap); + prodml23__EndpointQuantity *_p = gsoap_eml2_3::soap_new_prodml23__EndpointQuantity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__EndpointQuantity::__item = __item; - _p->prodml22__EndpointQuantity::endpoint = endpoint; + _p->prodml23__EndpointQuantity::__item = __item; + _p->prodml23__EndpointQuantity::endpoint = endpoint; } return _p; } -inline int soap_write_prodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity const*p) +inline int soap_write_prodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity ? "prodml22:EndpointQuantity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity ? "prodml23:EndpointQuantity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__EndpointQuantity(struct soap *soap, const char *URL, prodml22__EndpointQuantity const*p) +inline int soap_PUT_prodml23__EndpointQuantity(struct soap *soap, const char *URL, prodml23__EndpointQuantity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity ? "prodml22:EndpointQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity ? "prodml23:EndpointQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__EndpointQuantity(struct soap *soap, const char *URL, prodml22__EndpointQuantity const*p) +inline int soap_PATCH_prodml23__EndpointQuantity(struct soap *soap, const char *URL, prodml23__EndpointQuantity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity ? "prodml22:EndpointQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity ? "prodml23:EndpointQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__EndpointQuantity(struct soap *soap, const char *URL, prodml22__EndpointQuantity const*p) +inline int soap_POST_send_prodml23__EndpointQuantity(struct soap *soap, const char *URL, prodml23__EndpointQuantity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity ? "prodml22:EndpointQuantity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity ? "prodml23:EndpointQuantity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQuantity * SOAP_FMAC4 soap_get_prodml22__EndpointQuantity(struct soap*, prodml22__EndpointQuantity *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQuantity * SOAP_FMAC4 soap_get_prodml23__EndpointQuantity(struct soap*, prodml23__EndpointQuantity *, const char*, const char*); -inline int soap_read_prodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity *p) +inline int soap_read_prodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__EndpointQuantity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__EndpointQuantity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__EndpointQuantity(struct soap *soap, const char *URL, prodml22__EndpointQuantity *p) +inline int soap_GET_prodml23__EndpointQuantity(struct soap *soap, const char *URL, prodml23__EndpointQuantity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__EndpointQuantity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__EndpointQuantity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__EndpointQuantity(struct soap *soap, prodml22__EndpointQuantity *p) +inline int soap_POST_recv_prodml23__EndpointQuantity(struct soap *soap, prodml23__EndpointQuantity *p) { - if (gsoap_eml2_3::soap_read_prodml22__EndpointQuantity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__EndpointQuantity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointDateTime(struct soap*, const char*, int, const prodml22__EndpointDateTime *, const char*); -SOAP_FMAC3 prodml22__EndpointDateTime * SOAP_FMAC4 soap_in_prodml22__EndpointDateTime(struct soap*, const char*, prodml22__EndpointDateTime *, const char*); -SOAP_FMAC1 prodml22__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml22__EndpointDateTime(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointDateTime(struct soap*, const char*, int, const prodml23__EndpointDateTime *, const char*); +SOAP_FMAC3 prodml23__EndpointDateTime * SOAP_FMAC4 soap_in_prodml23__EndpointDateTime(struct soap*, const char*, prodml23__EndpointDateTime *, const char*); +SOAP_FMAC1 prodml23__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml23__EndpointDateTime(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__EndpointDateTime * soap_new_prodml22__EndpointDateTime(struct soap *soap, int n = -1) +inline prodml23__EndpointDateTime * soap_new_prodml23__EndpointDateTime(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__EndpointDateTime(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__EndpointDateTime(soap, n, NULL, NULL, NULL); } -inline prodml22__EndpointDateTime * soap_new_req_prodml22__EndpointDateTime( +inline prodml23__EndpointDateTime * soap_new_req_prodml23__EndpointDateTime( struct soap *soap, const struct tm& __item, - prodml22__EndpointQualifierInterval endpoint) + prodml23__EndpointQualifierInterval endpoint) { - prodml22__EndpointDateTime *_p = gsoap_eml2_3::soap_new_prodml22__EndpointDateTime(soap); + prodml23__EndpointDateTime *_p = gsoap_eml2_3::soap_new_prodml23__EndpointDateTime(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__EndpointDateTime::__item = __item; - _p->prodml22__EndpointDateTime::endpoint = endpoint; + _p->prodml23__EndpointDateTime::__item = __item; + _p->prodml23__EndpointDateTime::endpoint = endpoint; } return _p; } -inline prodml22__EndpointDateTime * soap_new_set_prodml22__EndpointDateTime( +inline prodml23__EndpointDateTime * soap_new_set_prodml23__EndpointDateTime( struct soap *soap, const struct tm& __item, - prodml22__EndpointQualifierInterval endpoint) + prodml23__EndpointQualifierInterval endpoint) { - prodml22__EndpointDateTime *_p = gsoap_eml2_3::soap_new_prodml22__EndpointDateTime(soap); + prodml23__EndpointDateTime *_p = gsoap_eml2_3::soap_new_prodml23__EndpointDateTime(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__EndpointDateTime::__item = __item; - _p->prodml22__EndpointDateTime::endpoint = endpoint; + _p->prodml23__EndpointDateTime::__item = __item; + _p->prodml23__EndpointDateTime::endpoint = endpoint; } return _p; } -inline int soap_write_prodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime const*p) +inline int soap_write_prodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime ? "prodml22:EndpointDateTime" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime ? "prodml23:EndpointDateTime" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__EndpointDateTime(struct soap *soap, const char *URL, prodml22__EndpointDateTime const*p) +inline int soap_PUT_prodml23__EndpointDateTime(struct soap *soap, const char *URL, prodml23__EndpointDateTime const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime ? "prodml22:EndpointDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime ? "prodml23:EndpointDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__EndpointDateTime(struct soap *soap, const char *URL, prodml22__EndpointDateTime const*p) +inline int soap_PATCH_prodml23__EndpointDateTime(struct soap *soap, const char *URL, prodml23__EndpointDateTime const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime ? "prodml22:EndpointDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime ? "prodml23:EndpointDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__EndpointDateTime(struct soap *soap, const char *URL, prodml22__EndpointDateTime const*p) +inline int soap_POST_send_prodml23__EndpointDateTime(struct soap *soap, const char *URL, prodml23__EndpointDateTime const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime ? "prodml22:EndpointDateTime" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime ? "prodml23:EndpointDateTime" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointDateTime * SOAP_FMAC4 soap_get_prodml22__EndpointDateTime(struct soap*, prodml22__EndpointDateTime *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointDateTime * SOAP_FMAC4 soap_get_prodml23__EndpointDateTime(struct soap*, prodml23__EndpointDateTime *, const char*, const char*); -inline int soap_read_prodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime *p) +inline int soap_read_prodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__EndpointDateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__EndpointDateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__EndpointDateTime(struct soap *soap, const char *URL, prodml22__EndpointDateTime *p) +inline int soap_GET_prodml23__EndpointDateTime(struct soap *soap, const char *URL, prodml23__EndpointDateTime *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__EndpointDateTime(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__EndpointDateTime(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__EndpointDateTime(struct soap *soap, prodml22__EndpointDateTime *p) +inline int soap_POST_recv_prodml23__EndpointDateTime(struct soap *soap, prodml23__EndpointDateTime *p) { - if (gsoap_eml2_3::soap_read_prodml22__EndpointDateTime(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__EndpointDateTime(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesStringSample(struct soap*, const char*, int, const prodml22__TimeSeriesStringSample *, const char*); -SOAP_FMAC3 prodml22__TimeSeriesStringSample * SOAP_FMAC4 soap_in_prodml22__TimeSeriesStringSample(struct soap*, const char*, prodml22__TimeSeriesStringSample *, const char*); -SOAP_FMAC1 prodml22__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesStringSample(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesStringSample(struct soap*, const char*, int, const prodml23__TimeSeriesStringSample *, const char*); +SOAP_FMAC3 prodml23__TimeSeriesStringSample * SOAP_FMAC4 soap_in_prodml23__TimeSeriesStringSample(struct soap*, const char*, prodml23__TimeSeriesStringSample *, const char*); +SOAP_FMAC1 prodml23__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesStringSample(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TimeSeriesStringSample * soap_new_prodml22__TimeSeriesStringSample(struct soap *soap, int n = -1) +inline prodml23__TimeSeriesStringSample * soap_new_prodml23__TimeSeriesStringSample(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TimeSeriesStringSample(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TimeSeriesStringSample(soap, n, NULL, NULL, NULL); } -inline prodml22__TimeSeriesStringSample * soap_new_req_prodml22__TimeSeriesStringSample( +inline prodml23__TimeSeriesStringSample * soap_new_req_prodml23__TimeSeriesStringSample( struct soap *soap, const std::string& __item) { - prodml22__TimeSeriesStringSample *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesStringSample(soap); + prodml23__TimeSeriesStringSample *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesStringSample(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesStringSample::__item = __item; + _p->prodml23__TimeSeriesStringSample::__item = __item; } return _p; } -inline prodml22__TimeSeriesStringSample * soap_new_set_prodml22__TimeSeriesStringSample( +inline prodml23__TimeSeriesStringSample * soap_new_set_prodml23__TimeSeriesStringSample( struct soap *soap, const std::string& __item, struct tm *dTim) { - prodml22__TimeSeriesStringSample *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesStringSample(soap); + prodml23__TimeSeriesStringSample *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesStringSample(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesStringSample::__item = __item; - _p->prodml22__TimeSeriesStringSample::dTim = dTim; + _p->prodml23__TimeSeriesStringSample::__item = __item; + _p->prodml23__TimeSeriesStringSample::dTim = dTim; } return _p; } -inline int soap_write_prodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample const*p) +inline int soap_write_prodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample ? "prodml22:TimeSeriesStringSample" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample ? "prodml23:TimeSeriesStringSample" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml22__TimeSeriesStringSample const*p) +inline int soap_PUT_prodml23__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml23__TimeSeriesStringSample const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample ? "prodml22:TimeSeriesStringSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample ? "prodml23:TimeSeriesStringSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml22__TimeSeriesStringSample const*p) +inline int soap_PATCH_prodml23__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml23__TimeSeriesStringSample const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample ? "prodml22:TimeSeriesStringSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample ? "prodml23:TimeSeriesStringSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml22__TimeSeriesStringSample const*p) +inline int soap_POST_send_prodml23__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml23__TimeSeriesStringSample const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample ? "prodml22:TimeSeriesStringSample" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesStringSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample ? "prodml23:TimeSeriesStringSample" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesStringSample * SOAP_FMAC4 soap_get_prodml22__TimeSeriesStringSample(struct soap*, prodml22__TimeSeriesStringSample *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesStringSample * SOAP_FMAC4 soap_get_prodml23__TimeSeriesStringSample(struct soap*, prodml23__TimeSeriesStringSample *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample *p) +inline int soap_read_prodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesStringSample(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesStringSample(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml22__TimeSeriesStringSample *p) +inline int soap_GET_prodml23__TimeSeriesStringSample(struct soap *soap, const char *URL, prodml23__TimeSeriesStringSample *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesStringSample(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesStringSample(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesStringSample(struct soap *soap, prodml22__TimeSeriesStringSample *p) +inline int soap_POST_recv_prodml23__TimeSeriesStringSample(struct soap *soap, prodml23__TimeSeriesStringSample *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesStringSample(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesStringSample(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesDoubleSample(struct soap*, const char*, int, const prodml22__TimeSeriesDoubleSample *, const char*); -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample * SOAP_FMAC4 soap_in_prodml22__TimeSeriesDoubleSample(struct soap*, const char*, prodml22__TimeSeriesDoubleSample *, const char*); -SOAP_FMAC1 prodml22__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesDoubleSample(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesDoubleSample(struct soap*, const char*, int, const prodml23__TimeSeriesDoubleSample *, const char*); +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample * SOAP_FMAC4 soap_in_prodml23__TimeSeriesDoubleSample(struct soap*, const char*, prodml23__TimeSeriesDoubleSample *, const char*); +SOAP_FMAC1 prodml23__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesDoubleSample(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TimeSeriesDoubleSample * soap_new_prodml22__TimeSeriesDoubleSample(struct soap *soap, int n = -1) +inline prodml23__TimeSeriesDoubleSample * soap_new_prodml23__TimeSeriesDoubleSample(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TimeSeriesDoubleSample(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TimeSeriesDoubleSample(soap, n, NULL, NULL, NULL); } -inline prodml22__TimeSeriesDoubleSample * soap_new_req_prodml22__TimeSeriesDoubleSample( +inline prodml23__TimeSeriesDoubleSample * soap_new_req_prodml23__TimeSeriesDoubleSample( struct soap *soap, double __item) { - prodml22__TimeSeriesDoubleSample *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesDoubleSample(soap); + prodml23__TimeSeriesDoubleSample *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesDoubleSample(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesDoubleSample::__item = __item; + _p->prodml23__TimeSeriesDoubleSample::__item = __item; } return _p; } -inline prodml22__TimeSeriesDoubleSample * soap_new_set_prodml22__TimeSeriesDoubleSample( +inline prodml23__TimeSeriesDoubleSample * soap_new_set_prodml23__TimeSeriesDoubleSample( struct soap *soap, double __item, struct tm *dTim, - prodml22__ValueStatus *status) + prodml23__ValueStatus *status) { - prodml22__TimeSeriesDoubleSample *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesDoubleSample(soap); + prodml23__TimeSeriesDoubleSample *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesDoubleSample(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesDoubleSample::__item = __item; - _p->prodml22__TimeSeriesDoubleSample::dTim = dTim; - _p->prodml22__TimeSeriesDoubleSample::status = status; + _p->prodml23__TimeSeriesDoubleSample::__item = __item; + _p->prodml23__TimeSeriesDoubleSample::dTim = dTim; + _p->prodml23__TimeSeriesDoubleSample::status = status; } return _p; } -inline int soap_write_prodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample const*p) +inline int soap_write_prodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample ? "prodml22:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample ? "prodml23:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml22__TimeSeriesDoubleSample const*p) +inline int soap_PUT_prodml23__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml23__TimeSeriesDoubleSample const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample ? "prodml22:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample ? "prodml23:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml22__TimeSeriesDoubleSample const*p) +inline int soap_PATCH_prodml23__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml23__TimeSeriesDoubleSample const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample ? "prodml22:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample ? "prodml23:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml22__TimeSeriesDoubleSample const*p) +inline int soap_POST_send_prodml23__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml23__TimeSeriesDoubleSample const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample ? "prodml22:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesDoubleSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample ? "prodml23:TimeSeriesDoubleSample" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample * SOAP_FMAC4 soap_get_prodml22__TimeSeriesDoubleSample(struct soap*, prodml22__TimeSeriesDoubleSample *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample * SOAP_FMAC4 soap_get_prodml23__TimeSeriesDoubleSample(struct soap*, prodml23__TimeSeriesDoubleSample *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample *p) +inline int soap_read_prodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesDoubleSample(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesDoubleSample(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml22__TimeSeriesDoubleSample *p) +inline int soap_GET_prodml23__TimeSeriesDoubleSample(struct soap *soap, const char *URL, prodml23__TimeSeriesDoubleSample *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesDoubleSample(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesDoubleSample(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesDoubleSample(struct soap *soap, prodml22__TimeSeriesDoubleSample *p) +inline int soap_POST_recv_prodml23__TimeSeriesDoubleSample(struct soap *soap, prodml23__TimeSeriesDoubleSample *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesDoubleSample(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesDoubleSample(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TimeSeriesData(struct soap*, const char*, int, const prodml22__TimeSeriesData *, const char*); -SOAP_FMAC3 prodml22__TimeSeriesData * SOAP_FMAC4 soap_in_prodml22__TimeSeriesData(struct soap*, const char*, prodml22__TimeSeriesData *, const char*); -SOAP_FMAC1 prodml22__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TimeSeriesData(struct soap*, const char*, int, const prodml23__TimeSeriesData *, const char*); +SOAP_FMAC3 prodml23__TimeSeriesData * SOAP_FMAC4 soap_in_prodml23__TimeSeriesData(struct soap*, const char*, prodml23__TimeSeriesData *, const char*); +SOAP_FMAC1 prodml23__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TimeSeriesData * soap_new_prodml22__TimeSeriesData(struct soap *soap, int n = -1) +inline prodml23__TimeSeriesData * soap_new_prodml23__TimeSeriesData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TimeSeriesData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TimeSeriesData(soap, n, NULL, NULL, NULL); } -inline prodml22__TimeSeriesData * soap_new_req_prodml22__TimeSeriesData( +inline prodml23__TimeSeriesData * soap_new_req_prodml23__TimeSeriesData( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__TimeSeriesData *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesData(soap); + prodml23__TimeSeriesData *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesData(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -97065,13 +97065,13 @@ inline prodml22__TimeSeriesData * soap_new_req_prodml22__TimeSeriesData( return _p; } -inline prodml22__TimeSeriesData * soap_new_set_prodml22__TimeSeriesData( +inline prodml23__TimeSeriesData * soap_new_set_prodml23__TimeSeriesData( struct soap *soap, - const std::vector & Key, + const std::vector & Key, std::string *Uom, eml23__MeasureClass *MeasureClass, std::string *Comment, - const std::vector & DataValue, + const std::vector & DataValue, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -97084,14 +97084,14 @@ inline prodml22__TimeSeriesData * soap_new_set_prodml22__TimeSeriesData( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__TimeSeriesData *_p = gsoap_eml2_3::soap_new_prodml22__TimeSeriesData(soap); + prodml23__TimeSeriesData *_p = gsoap_eml2_3::soap_new_prodml23__TimeSeriesData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TimeSeriesData::Key = Key; - _p->prodml22__TimeSeriesData::Uom = Uom; - _p->prodml22__TimeSeriesData::MeasureClass = MeasureClass; - _p->prodml22__TimeSeriesData::Comment = Comment; - _p->prodml22__TimeSeriesData::DataValue = DataValue; + _p->prodml23__TimeSeriesData::Key = Key; + _p->prodml23__TimeSeriesData::Uom = Uom; + _p->prodml23__TimeSeriesData::MeasureClass = MeasureClass; + _p->prodml23__TimeSeriesData::Comment = Comment; + _p->prodml23__TimeSeriesData::DataValue = DataValue; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -97107,989 +97107,989 @@ inline prodml22__TimeSeriesData * soap_new_set_prodml22__TimeSeriesData( return _p; } -inline int soap_write_prodml22__TimeSeriesData(struct soap *soap, prodml22__TimeSeriesData const*p) +inline int soap_write_prodml23__TimeSeriesData(struct soap *soap, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData ? "prodml22:TimeSeriesData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData ? "prodml23:TimeSeriesData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData const*p) +inline int soap_PUT_prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData ? "prodml22:TimeSeriesData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData ? "prodml23:TimeSeriesData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData const*p) +inline int soap_PATCH_prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData ? "prodml22:TimeSeriesData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData ? "prodml23:TimeSeriesData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData const*p) +inline int soap_POST_send_prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData ? "prodml22:TimeSeriesData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TimeSeriesData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData ? "prodml23:TimeSeriesData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TimeSeriesData * SOAP_FMAC4 soap_get_prodml22__TimeSeriesData(struct soap*, prodml22__TimeSeriesData *, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesData * SOAP_FMAC4 soap_get_prodml23__TimeSeriesData(struct soap*, prodml23__TimeSeriesData *, const char*, const char*); -inline int soap_read_prodml22__TimeSeriesData(struct soap *soap, prodml22__TimeSeriesData *p) +inline int soap_read_prodml23__TimeSeriesData(struct soap *soap, prodml23__TimeSeriesData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TimeSeriesData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TimeSeriesData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TimeSeriesData(struct soap *soap, const char *URL, prodml22__TimeSeriesData *p) +inline int soap_GET_prodml23__TimeSeriesData(struct soap *soap, const char *URL, prodml23__TimeSeriesData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TimeSeriesData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TimeSeriesData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TimeSeriesData(struct soap *soap, prodml22__TimeSeriesData *p) +inline int soap_POST_recv_prodml23__TimeSeriesData(struct soap *soap, prodml23__TimeSeriesData *p) { - if (gsoap_eml2_3::soap_read_prodml22__TimeSeriesData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TimeSeriesData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StringValue(struct soap*, const char*, int, const prodml22__StringValue *, const char*); -SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_in_prodml22__StringValue(struct soap*, const char*, prodml22__StringValue *, const char*); -SOAP_FMAC1 prodml22__StringValue * SOAP_FMAC2 soap_instantiate_prodml22__StringValue(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StringValue(struct soap*, const char*, int, const prodml23__StringValue *, const char*); +SOAP_FMAC3 prodml23__StringValue * SOAP_FMAC4 soap_in_prodml23__StringValue(struct soap*, const char*, prodml23__StringValue *, const char*); +SOAP_FMAC1 prodml23__StringValue * SOAP_FMAC2 soap_instantiate_prodml23__StringValue(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__StringValue * soap_new_prodml22__StringValue(struct soap *soap, int n = -1) +inline prodml23__StringValue * soap_new_prodml23__StringValue(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__StringValue(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__StringValue(soap, n, NULL, NULL, NULL); } -inline prodml22__StringValue * soap_new_req_prodml22__StringValue( +inline prodml23__StringValue * soap_new_req_prodml23__StringValue( struct soap *soap, - prodml22__TimeSeriesStringSample *StringValue) + prodml23__TimeSeriesStringSample *StringValue) { - prodml22__StringValue *_p = gsoap_eml2_3::soap_new_prodml22__StringValue(soap); + prodml23__StringValue *_p = gsoap_eml2_3::soap_new_prodml23__StringValue(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StringValue::StringValue = StringValue; + _p->prodml23__StringValue::StringValue = StringValue; } return _p; } -inline prodml22__StringValue * soap_new_set_prodml22__StringValue( +inline prodml23__StringValue * soap_new_set_prodml23__StringValue( struct soap *soap, - prodml22__TimeSeriesStringSample *StringValue) + prodml23__TimeSeriesStringSample *StringValue) { - prodml22__StringValue *_p = gsoap_eml2_3::soap_new_prodml22__StringValue(soap); + prodml23__StringValue *_p = gsoap_eml2_3::soap_new_prodml23__StringValue(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StringValue::StringValue = StringValue; + _p->prodml23__StringValue::StringValue = StringValue; } return _p; } -inline int soap_write_prodml22__StringValue(struct soap *soap, prodml22__StringValue const*p) +inline int soap_write_prodml23__StringValue(struct soap *soap, prodml23__StringValue const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue ? "prodml22:StringValue" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue ? "prodml23:StringValue" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__StringValue(struct soap *soap, const char *URL, prodml22__StringValue const*p) +inline int soap_PUT_prodml23__StringValue(struct soap *soap, const char *URL, prodml23__StringValue const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue ? "prodml22:StringValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue ? "prodml23:StringValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__StringValue(struct soap *soap, const char *URL, prodml22__StringValue const*p) +inline int soap_PATCH_prodml23__StringValue(struct soap *soap, const char *URL, prodml23__StringValue const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue ? "prodml22:StringValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue ? "prodml23:StringValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__StringValue(struct soap *soap, const char *URL, prodml22__StringValue const*p) +inline int soap_POST_send_prodml23__StringValue(struct soap *soap, const char *URL, prodml23__StringValue const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue ? "prodml22:StringValue" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue ? "prodml23:StringValue" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__StringValue * SOAP_FMAC4 soap_get_prodml22__StringValue(struct soap*, prodml22__StringValue *, const char*, const char*); +SOAP_FMAC3 prodml23__StringValue * SOAP_FMAC4 soap_get_prodml23__StringValue(struct soap*, prodml23__StringValue *, const char*, const char*); -inline int soap_read_prodml22__StringValue(struct soap *soap, prodml22__StringValue *p) +inline int soap_read_prodml23__StringValue(struct soap *soap, prodml23__StringValue *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__StringValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__StringValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__StringValue(struct soap *soap, const char *URL, prodml22__StringValue *p) +inline int soap_GET_prodml23__StringValue(struct soap *soap, const char *URL, prodml23__StringValue *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__StringValue(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__StringValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__StringValue(struct soap *soap, prodml22__StringValue *p) +inline int soap_POST_recv_prodml23__StringValue(struct soap *soap, prodml23__StringValue *p) { - if (gsoap_eml2_3::soap_read_prodml22__StringValue(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__StringValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DoubleValue(struct soap*, const char*, int, const prodml22__DoubleValue *, const char*); -SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_in_prodml22__DoubleValue(struct soap*, const char*, prodml22__DoubleValue *, const char*); -SOAP_FMAC1 prodml22__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml22__DoubleValue(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DoubleValue(struct soap*, const char*, int, const prodml23__DoubleValue *, const char*); +SOAP_FMAC3 prodml23__DoubleValue * SOAP_FMAC4 soap_in_prodml23__DoubleValue(struct soap*, const char*, prodml23__DoubleValue *, const char*); +SOAP_FMAC1 prodml23__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml23__DoubleValue(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DoubleValue * soap_new_prodml22__DoubleValue(struct soap *soap, int n = -1) +inline prodml23__DoubleValue * soap_new_prodml23__DoubleValue(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DoubleValue(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DoubleValue(soap, n, NULL, NULL, NULL); } -inline prodml22__DoubleValue * soap_new_req_prodml22__DoubleValue( +inline prodml23__DoubleValue * soap_new_req_prodml23__DoubleValue( struct soap *soap, - prodml22__TimeSeriesDoubleSample *DoubleValue) + prodml23__TimeSeriesDoubleSample *DoubleValue) { - prodml22__DoubleValue *_p = gsoap_eml2_3::soap_new_prodml22__DoubleValue(soap); + prodml23__DoubleValue *_p = gsoap_eml2_3::soap_new_prodml23__DoubleValue(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DoubleValue::DoubleValue = DoubleValue; + _p->prodml23__DoubleValue::DoubleValue = DoubleValue; } return _p; } -inline prodml22__DoubleValue * soap_new_set_prodml22__DoubleValue( +inline prodml23__DoubleValue * soap_new_set_prodml23__DoubleValue( struct soap *soap, - prodml22__TimeSeriesDoubleSample *DoubleValue) + prodml23__TimeSeriesDoubleSample *DoubleValue) { - prodml22__DoubleValue *_p = gsoap_eml2_3::soap_new_prodml22__DoubleValue(soap); + prodml23__DoubleValue *_p = gsoap_eml2_3::soap_new_prodml23__DoubleValue(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DoubleValue::DoubleValue = DoubleValue; + _p->prodml23__DoubleValue::DoubleValue = DoubleValue; } return _p; } -inline int soap_write_prodml22__DoubleValue(struct soap *soap, prodml22__DoubleValue const*p) +inline int soap_write_prodml23__DoubleValue(struct soap *soap, prodml23__DoubleValue const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue ? "prodml22:DoubleValue" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue ? "prodml23:DoubleValue" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DoubleValue(struct soap *soap, const char *URL, prodml22__DoubleValue const*p) +inline int soap_PUT_prodml23__DoubleValue(struct soap *soap, const char *URL, prodml23__DoubleValue const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue ? "prodml22:DoubleValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue ? "prodml23:DoubleValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DoubleValue(struct soap *soap, const char *URL, prodml22__DoubleValue const*p) +inline int soap_PATCH_prodml23__DoubleValue(struct soap *soap, const char *URL, prodml23__DoubleValue const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue ? "prodml22:DoubleValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue ? "prodml23:DoubleValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DoubleValue(struct soap *soap, const char *URL, prodml22__DoubleValue const*p) +inline int soap_POST_send_prodml23__DoubleValue(struct soap *soap, const char *URL, prodml23__DoubleValue const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue ? "prodml22:DoubleValue" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DoubleValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue ? "prodml23:DoubleValue" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DoubleValue * SOAP_FMAC4 soap_get_prodml22__DoubleValue(struct soap*, prodml22__DoubleValue *, const char*, const char*); +SOAP_FMAC3 prodml23__DoubleValue * SOAP_FMAC4 soap_get_prodml23__DoubleValue(struct soap*, prodml23__DoubleValue *, const char*, const char*); -inline int soap_read_prodml22__DoubleValue(struct soap *soap, prodml22__DoubleValue *p) +inline int soap_read_prodml23__DoubleValue(struct soap *soap, prodml23__DoubleValue *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DoubleValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DoubleValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DoubleValue(struct soap *soap, const char *URL, prodml22__DoubleValue *p) +inline int soap_GET_prodml23__DoubleValue(struct soap *soap, const char *URL, prodml23__DoubleValue *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DoubleValue(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DoubleValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DoubleValue(struct soap *soap, prodml22__DoubleValue *p) +inline int soap_POST_recv_prodml23__DoubleValue(struct soap *soap, prodml23__DoubleValue *p) { - if (gsoap_eml2_3::soap_read_prodml22__DoubleValue(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DoubleValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractValue(struct soap*, const char*, int, const prodml22__AbstractValue *, const char*); -SOAP_FMAC3 prodml22__AbstractValue * SOAP_FMAC4 soap_in_prodml22__AbstractValue(struct soap*, const char*, prodml22__AbstractValue *, const char*); -SOAP_FMAC1 prodml22__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml22__AbstractValue(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractValue(struct soap*, const char*, int, const prodml23__AbstractValue *, const char*); +SOAP_FMAC3 prodml23__AbstractValue * SOAP_FMAC4 soap_in_prodml23__AbstractValue(struct soap*, const char*, prodml23__AbstractValue *, const char*); +SOAP_FMAC1 prodml23__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml23__AbstractValue(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractValue * soap_new_prodml22__AbstractValue(struct soap *soap, int n = -1) +inline prodml23__AbstractValue * soap_new_prodml23__AbstractValue(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractValue(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractValue(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractValue * soap_new_req_prodml22__AbstractValue( +inline prodml23__AbstractValue * soap_new_req_prodml23__AbstractValue( struct soap *soap) { - prodml22__AbstractValue *_p = gsoap_eml2_3::soap_new_prodml22__AbstractValue(soap); + prodml23__AbstractValue *_p = gsoap_eml2_3::soap_new_prodml23__AbstractValue(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractValue * soap_new_set_prodml22__AbstractValue( +inline prodml23__AbstractValue * soap_new_set_prodml23__AbstractValue( struct soap *soap) { - prodml22__AbstractValue *_p = gsoap_eml2_3::soap_new_prodml22__AbstractValue(soap); + prodml23__AbstractValue *_p = gsoap_eml2_3::soap_new_prodml23__AbstractValue(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue const*p) +inline int soap_write_prodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue ? "prodml22:AbstractValue" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue ? "prodml23:AbstractValue" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractValue(struct soap *soap, const char *URL, prodml22__AbstractValue const*p) +inline int soap_PUT_prodml23__AbstractValue(struct soap *soap, const char *URL, prodml23__AbstractValue const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue ? "prodml22:AbstractValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue ? "prodml23:AbstractValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractValue(struct soap *soap, const char *URL, prodml22__AbstractValue const*p) +inline int soap_PATCH_prodml23__AbstractValue(struct soap *soap, const char *URL, prodml23__AbstractValue const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue ? "prodml22:AbstractValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue ? "prodml23:AbstractValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractValue(struct soap *soap, const char *URL, prodml22__AbstractValue const*p) +inline int soap_POST_send_prodml23__AbstractValue(struct soap *soap, const char *URL, prodml23__AbstractValue const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue ? "prodml22:AbstractValue" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue ? "prodml23:AbstractValue" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractValue * SOAP_FMAC4 soap_get_prodml22__AbstractValue(struct soap*, prodml22__AbstractValue *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractValue * SOAP_FMAC4 soap_get_prodml23__AbstractValue(struct soap*, prodml23__AbstractValue *, const char*, const char*); -inline int soap_read_prodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue *p) +inline int soap_read_prodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractValue(struct soap *soap, const char *URL, prodml22__AbstractValue *p) +inline int soap_GET_prodml23__AbstractValue(struct soap *soap, const char *URL, prodml23__AbstractValue *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractValue(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractValue(struct soap *soap, prodml22__AbstractValue *p) +inline int soap_POST_recv_prodml23__AbstractValue(struct soap *soap, prodml23__AbstractValue *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractValue(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RelativeCoordinate(struct soap*, const char*, int, const prodml22__RelativeCoordinate *, const char*); -SOAP_FMAC3 prodml22__RelativeCoordinate * SOAP_FMAC4 soap_in_prodml22__RelativeCoordinate(struct soap*, const char*, prodml22__RelativeCoordinate *, const char*); -SOAP_FMAC1 prodml22__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml22__RelativeCoordinate(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RelativeCoordinate(struct soap*, const char*, int, const prodml23__RelativeCoordinate *, const char*); +SOAP_FMAC3 prodml23__RelativeCoordinate * SOAP_FMAC4 soap_in_prodml23__RelativeCoordinate(struct soap*, const char*, prodml23__RelativeCoordinate *, const char*); +SOAP_FMAC1 prodml23__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml23__RelativeCoordinate(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RelativeCoordinate * soap_new_prodml22__RelativeCoordinate(struct soap *soap, int n = -1) +inline prodml23__RelativeCoordinate * soap_new_prodml23__RelativeCoordinate(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RelativeCoordinate(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RelativeCoordinate(soap, n, NULL, NULL, NULL); } -inline prodml22__RelativeCoordinate * soap_new_req_prodml22__RelativeCoordinate( +inline prodml23__RelativeCoordinate * soap_new_req_prodml23__RelativeCoordinate( struct soap *soap) { - prodml22__RelativeCoordinate *_p = gsoap_eml2_3::soap_new_prodml22__RelativeCoordinate(soap); + prodml23__RelativeCoordinate *_p = gsoap_eml2_3::soap_new_prodml23__RelativeCoordinate(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__RelativeCoordinate * soap_new_set_prodml22__RelativeCoordinate( +inline prodml23__RelativeCoordinate * soap_new_set_prodml23__RelativeCoordinate( struct soap *soap, eml23__LengthPerLengthMeasure *X, eml23__LengthPerLengthMeasure *Y, eml23__LengthPerLengthMeasure *Z) { - prodml22__RelativeCoordinate *_p = gsoap_eml2_3::soap_new_prodml22__RelativeCoordinate(soap); + prodml23__RelativeCoordinate *_p = gsoap_eml2_3::soap_new_prodml23__RelativeCoordinate(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RelativeCoordinate::X = X; - _p->prodml22__RelativeCoordinate::Y = Y; - _p->prodml22__RelativeCoordinate::Z = Z; + _p->prodml23__RelativeCoordinate::X = X; + _p->prodml23__RelativeCoordinate::Y = Y; + _p->prodml23__RelativeCoordinate::Z = Z; } return _p; } -inline int soap_write_prodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate const*p) +inline int soap_write_prodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate ? "prodml22:RelativeCoordinate" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate ? "prodml23:RelativeCoordinate" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RelativeCoordinate(struct soap *soap, const char *URL, prodml22__RelativeCoordinate const*p) +inline int soap_PUT_prodml23__RelativeCoordinate(struct soap *soap, const char *URL, prodml23__RelativeCoordinate const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate ? "prodml22:RelativeCoordinate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate ? "prodml23:RelativeCoordinate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RelativeCoordinate(struct soap *soap, const char *URL, prodml22__RelativeCoordinate const*p) +inline int soap_PATCH_prodml23__RelativeCoordinate(struct soap *soap, const char *URL, prodml23__RelativeCoordinate const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate ? "prodml22:RelativeCoordinate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate ? "prodml23:RelativeCoordinate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RelativeCoordinate(struct soap *soap, const char *URL, prodml22__RelativeCoordinate const*p) +inline int soap_POST_send_prodml23__RelativeCoordinate(struct soap *soap, const char *URL, prodml23__RelativeCoordinate const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate ? "prodml22:RelativeCoordinate" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeCoordinate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate ? "prodml23:RelativeCoordinate" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RelativeCoordinate * SOAP_FMAC4 soap_get_prodml22__RelativeCoordinate(struct soap*, prodml22__RelativeCoordinate *, const char*, const char*); +SOAP_FMAC3 prodml23__RelativeCoordinate * SOAP_FMAC4 soap_get_prodml23__RelativeCoordinate(struct soap*, prodml23__RelativeCoordinate *, const char*, const char*); -inline int soap_read_prodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate *p) +inline int soap_read_prodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RelativeCoordinate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RelativeCoordinate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RelativeCoordinate(struct soap *soap, const char *URL, prodml22__RelativeCoordinate *p) +inline int soap_GET_prodml23__RelativeCoordinate(struct soap *soap, const char *URL, prodml23__RelativeCoordinate *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RelativeCoordinate(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RelativeCoordinate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RelativeCoordinate(struct soap *soap, prodml22__RelativeCoordinate *p) +inline int soap_POST_recv_prodml23__RelativeCoordinate(struct soap *soap, prodml23__RelativeCoordinate *p) { - if (gsoap_eml2_3::soap_read_prodml22__RelativeCoordinate(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RelativeCoordinate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Qualifier(struct soap*, const char*, int, const prodml22__Qualifier *, const char*); -SOAP_FMAC3 prodml22__Qualifier * SOAP_FMAC4 soap_in_prodml22__Qualifier(struct soap*, const char*, prodml22__Qualifier *, const char*); -SOAP_FMAC1 prodml22__Qualifier * SOAP_FMAC2 soap_instantiate_prodml22__Qualifier(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Qualifier(struct soap*, const char*, int, const prodml23__Qualifier *, const char*); +SOAP_FMAC3 prodml23__Qualifier * SOAP_FMAC4 soap_in_prodml23__Qualifier(struct soap*, const char*, prodml23__Qualifier *, const char*); +SOAP_FMAC1 prodml23__Qualifier * SOAP_FMAC2 soap_instantiate_prodml23__Qualifier(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Qualifier * soap_new_prodml22__Qualifier(struct soap *soap, int n = -1) +inline prodml23__Qualifier * soap_new_prodml23__Qualifier(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Qualifier(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Qualifier(soap, n, NULL, NULL, NULL); } -inline prodml22__Qualifier * soap_new_req_prodml22__Qualifier( +inline prodml23__Qualifier * soap_new_req_prodml23__Qualifier( struct soap *soap) { - prodml22__Qualifier *_p = gsoap_eml2_3::soap_new_prodml22__Qualifier(soap); + prodml23__Qualifier *_p = gsoap_eml2_3::soap_new_prodml23__Qualifier(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__Qualifier * soap_new_set_prodml22__Qualifier( +inline prodml23__Qualifier * soap_new_set_prodml23__Qualifier( struct soap *soap, - const std::vector & Qualifier) + const std::vector & Qualifier) { - prodml22__Qualifier *_p = gsoap_eml2_3::soap_new_prodml22__Qualifier(soap); + prodml23__Qualifier *_p = gsoap_eml2_3::soap_new_prodml23__Qualifier(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Qualifier::Qualifier = Qualifier; + _p->prodml23__Qualifier::Qualifier = Qualifier; } return _p; } -inline int soap_write_prodml22__Qualifier(struct soap *soap, prodml22__Qualifier const*p) +inline int soap_write_prodml23__Qualifier(struct soap *soap, prodml23__Qualifier const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier ? "prodml22:Qualifier" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier ? "prodml23:Qualifier" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Qualifier(struct soap *soap, const char *URL, prodml22__Qualifier const*p) +inline int soap_PUT_prodml23__Qualifier(struct soap *soap, const char *URL, prodml23__Qualifier const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier ? "prodml22:Qualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier ? "prodml23:Qualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Qualifier(struct soap *soap, const char *URL, prodml22__Qualifier const*p) +inline int soap_PATCH_prodml23__Qualifier(struct soap *soap, const char *URL, prodml23__Qualifier const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier ? "prodml22:Qualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier ? "prodml23:Qualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Qualifier(struct soap *soap, const char *URL, prodml22__Qualifier const*p) +inline int soap_POST_send_prodml23__Qualifier(struct soap *soap, const char *URL, prodml23__Qualifier const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier ? "prodml22:Qualifier" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Qualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier ? "prodml23:Qualifier" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Qualifier * SOAP_FMAC4 soap_get_prodml22__Qualifier(struct soap*, prodml22__Qualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__Qualifier * SOAP_FMAC4 soap_get_prodml23__Qualifier(struct soap*, prodml23__Qualifier *, const char*, const char*); -inline int soap_read_prodml22__Qualifier(struct soap *soap, prodml22__Qualifier *p) +inline int soap_read_prodml23__Qualifier(struct soap *soap, prodml23__Qualifier *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Qualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Qualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Qualifier(struct soap *soap, const char *URL, prodml22__Qualifier *p) +inline int soap_GET_prodml23__Qualifier(struct soap *soap, const char *URL, prodml23__Qualifier *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Qualifier(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Qualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Qualifier(struct soap *soap, prodml22__Qualifier *p) +inline int soap_POST_recv_prodml23__Qualifier(struct soap *soap, prodml23__Qualifier *p) { - if (gsoap_eml2_3::soap_read_prodml22__Qualifier(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Qualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowUnit(struct soap*, const char*, int, const prodml22__ProductFlowUnit *, const char*); -SOAP_FMAC3 prodml22__ProductFlowUnit * SOAP_FMAC4 soap_in_prodml22__ProductFlowUnit(struct soap*, const char*, prodml22__ProductFlowUnit *, const char*); -SOAP_FMAC1 prodml22__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowUnit(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowUnit(struct soap*, const char*, int, const prodml23__ProductFlowUnit *, const char*); +SOAP_FMAC3 prodml23__ProductFlowUnit * SOAP_FMAC4 soap_in_prodml23__ProductFlowUnit(struct soap*, const char*, prodml23__ProductFlowUnit *, const char*); +SOAP_FMAC1 prodml23__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowUnit(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowUnit * soap_new_prodml22__ProductFlowUnit(struct soap *soap, int n = -1) +inline prodml23__ProductFlowUnit * soap_new_prodml23__ProductFlowUnit(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowUnit(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowUnit(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowUnit * soap_new_req_prodml22__ProductFlowUnit( +inline prodml23__ProductFlowUnit * soap_new_req_prodml23__ProductFlowUnit( struct soap *soap, const std::string& uid) { - prodml22__ProductFlowUnit *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowUnit(soap); + prodml23__ProductFlowUnit *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowUnit(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowUnit::uid = uid; + _p->prodml23__ProductFlowUnit::uid = uid; } return _p; } -inline prodml22__ProductFlowUnit * soap_new_set_prodml22__ProductFlowUnit( +inline prodml23__ProductFlowUnit * soap_new_set_prodml23__ProductFlowUnit( struct soap *soap, std::string *Name, std::string *PlanName, std::string *InternalNetworkReference, - prodml22__FacilityIdentifierStruct *Facility, - prodml22__FacilityIdentifierStruct *FacilityParent1, - prodml22__FacilityIdentifierStruct *FacilityParent2, - const std::vector & ContextFacility, + prodml23__FacilityIdentifierStruct *Facility, + prodml23__FacilityIdentifierStruct *FacilityParent1, + prodml23__FacilityIdentifierStruct *FacilityParent2, + const std::vector & ContextFacility, std::string *Comment, - const std::vector & ExpectedProperty, - const std::vector & Port, - prodml22__RelativeCoordinate *RelativeCoordinate, + const std::vector & ExpectedProperty, + const std::vector & Port, + prodml23__RelativeCoordinate *RelativeCoordinate, const std::vector & FacilityAlias, const std::string& uid) { - prodml22__ProductFlowUnit *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowUnit(soap); + prodml23__ProductFlowUnit *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowUnit(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowUnit::Name = Name; - _p->prodml22__ProductFlowUnit::PlanName = PlanName; - _p->prodml22__ProductFlowUnit::InternalNetworkReference = InternalNetworkReference; - _p->prodml22__ProductFlowUnit::Facility = Facility; - _p->prodml22__ProductFlowUnit::FacilityParent1 = FacilityParent1; - _p->prodml22__ProductFlowUnit::FacilityParent2 = FacilityParent2; - _p->prodml22__ProductFlowUnit::ContextFacility = ContextFacility; - _p->prodml22__ProductFlowUnit::Comment = Comment; - _p->prodml22__ProductFlowUnit::ExpectedProperty = ExpectedProperty; - _p->prodml22__ProductFlowUnit::Port = Port; - _p->prodml22__ProductFlowUnit::RelativeCoordinate = RelativeCoordinate; - _p->prodml22__ProductFlowUnit::FacilityAlias = FacilityAlias; - _p->prodml22__ProductFlowUnit::uid = uid; + _p->prodml23__ProductFlowUnit::Name = Name; + _p->prodml23__ProductFlowUnit::PlanName = PlanName; + _p->prodml23__ProductFlowUnit::InternalNetworkReference = InternalNetworkReference; + _p->prodml23__ProductFlowUnit::Facility = Facility; + _p->prodml23__ProductFlowUnit::FacilityParent1 = FacilityParent1; + _p->prodml23__ProductFlowUnit::FacilityParent2 = FacilityParent2; + _p->prodml23__ProductFlowUnit::ContextFacility = ContextFacility; + _p->prodml23__ProductFlowUnit::Comment = Comment; + _p->prodml23__ProductFlowUnit::ExpectedProperty = ExpectedProperty; + _p->prodml23__ProductFlowUnit::Port = Port; + _p->prodml23__ProductFlowUnit::RelativeCoordinate = RelativeCoordinate; + _p->prodml23__ProductFlowUnit::FacilityAlias = FacilityAlias; + _p->prodml23__ProductFlowUnit::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit const*p) +inline int soap_write_prodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit ? "prodml22:ProductFlowUnit" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit ? "prodml23:ProductFlowUnit" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowUnit(struct soap *soap, const char *URL, prodml22__ProductFlowUnit const*p) +inline int soap_PUT_prodml23__ProductFlowUnit(struct soap *soap, const char *URL, prodml23__ProductFlowUnit const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit ? "prodml22:ProductFlowUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit ? "prodml23:ProductFlowUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowUnit(struct soap *soap, const char *URL, prodml22__ProductFlowUnit const*p) +inline int soap_PATCH_prodml23__ProductFlowUnit(struct soap *soap, const char *URL, prodml23__ProductFlowUnit const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit ? "prodml22:ProductFlowUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit ? "prodml23:ProductFlowUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowUnit(struct soap *soap, const char *URL, prodml22__ProductFlowUnit const*p) +inline int soap_POST_send_prodml23__ProductFlowUnit(struct soap *soap, const char *URL, prodml23__ProductFlowUnit const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit ? "prodml22:ProductFlowUnit" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit ? "prodml23:ProductFlowUnit" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowUnit * SOAP_FMAC4 soap_get_prodml22__ProductFlowUnit(struct soap*, prodml22__ProductFlowUnit *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowUnit * SOAP_FMAC4 soap_get_prodml23__ProductFlowUnit(struct soap*, prodml23__ProductFlowUnit *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit *p) +inline int soap_read_prodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowUnit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowUnit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowUnit(struct soap *soap, const char *URL, prodml22__ProductFlowUnit *p) +inline int soap_GET_prodml23__ProductFlowUnit(struct soap *soap, const char *URL, prodml23__ProductFlowUnit *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowUnit(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowUnit(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowUnit(struct soap *soap, prodml22__ProductFlowUnit *p) +inline int soap_POST_recv_prodml23__ProductFlowUnit(struct soap *soap, prodml23__ProductFlowUnit *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowUnit(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowUnit(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowQualifierExpected(struct soap*, const char*, int, const prodml22__ProductFlowQualifierExpected *, const char*); -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected * SOAP_FMAC4 soap_in_prodml22__ProductFlowQualifierExpected(struct soap*, const char*, prodml22__ProductFlowQualifierExpected *, const char*); -SOAP_FMAC1 prodml22__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowQualifierExpected(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowQualifierExpected(struct soap*, const char*, int, const prodml23__ProductFlowQualifierExpected *, const char*); +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected * SOAP_FMAC4 soap_in_prodml23__ProductFlowQualifierExpected(struct soap*, const char*, prodml23__ProductFlowQualifierExpected *, const char*); +SOAP_FMAC1 prodml23__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowQualifierExpected(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowQualifierExpected * soap_new_prodml22__ProductFlowQualifierExpected(struct soap *soap, int n = -1) +inline prodml23__ProductFlowQualifierExpected * soap_new_prodml23__ProductFlowQualifierExpected(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowQualifierExpected(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowQualifierExpected(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowQualifierExpected * soap_new_req_prodml22__ProductFlowQualifierExpected( +inline prodml23__ProductFlowQualifierExpected * soap_new_req_prodml23__ProductFlowQualifierExpected( struct soap *soap, - prodml22__ReportingFlow Flow, + prodml23__ReportingFlow Flow, const std::string& uid) { - prodml22__ProductFlowQualifierExpected *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowQualifierExpected(soap); + prodml23__ProductFlowQualifierExpected *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowQualifierExpected(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowQualifierExpected::Flow = Flow; - _p->prodml22__ProductFlowQualifierExpected::uid = uid; + _p->prodml23__ProductFlowQualifierExpected::Flow = Flow; + _p->prodml23__ProductFlowQualifierExpected::uid = uid; } return _p; } -inline prodml22__ProductFlowQualifierExpected * soap_new_set_prodml22__ProductFlowQualifierExpected( +inline prodml23__ProductFlowQualifierExpected * soap_new_set_prodml23__ProductFlowQualifierExpected( struct soap *soap, - prodml22__ReportingFlow Flow, - prodml22__ReportingProduct *Product, - const std::vector & Qualifier, + prodml23__ReportingFlow Flow, + prodml23__ReportingProduct *Product, + const std::vector & Qualifier, const std::string& uid) { - prodml22__ProductFlowQualifierExpected *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowQualifierExpected(soap); + prodml23__ProductFlowQualifierExpected *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowQualifierExpected(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowQualifierExpected::Flow = Flow; - _p->prodml22__ProductFlowQualifierExpected::Product = Product; - _p->prodml22__ProductFlowQualifierExpected::Qualifier = Qualifier; - _p->prodml22__ProductFlowQualifierExpected::uid = uid; + _p->prodml23__ProductFlowQualifierExpected::Flow = Flow; + _p->prodml23__ProductFlowQualifierExpected::Product = Product; + _p->prodml23__ProductFlowQualifierExpected::Qualifier = Qualifier; + _p->prodml23__ProductFlowQualifierExpected::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected const*p) +inline int soap_write_prodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected ? "prodml22:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected ? "prodml23:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml22__ProductFlowQualifierExpected const*p) +inline int soap_PUT_prodml23__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml23__ProductFlowQualifierExpected const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected ? "prodml22:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected ? "prodml23:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml22__ProductFlowQualifierExpected const*p) +inline int soap_PATCH_prodml23__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml23__ProductFlowQualifierExpected const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected ? "prodml22:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected ? "prodml23:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml22__ProductFlowQualifierExpected const*p) +inline int soap_POST_send_prodml23__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml23__ProductFlowQualifierExpected const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected ? "prodml22:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowQualifierExpected", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected ? "prodml23:ProductFlowQualifierExpected" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected * SOAP_FMAC4 soap_get_prodml22__ProductFlowQualifierExpected(struct soap*, prodml22__ProductFlowQualifierExpected *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected * SOAP_FMAC4 soap_get_prodml23__ProductFlowQualifierExpected(struct soap*, prodml23__ProductFlowQualifierExpected *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected *p) +inline int soap_read_prodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowQualifierExpected(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowQualifierExpected(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml22__ProductFlowQualifierExpected *p) +inline int soap_GET_prodml23__ProductFlowQualifierExpected(struct soap *soap, const char *URL, prodml23__ProductFlowQualifierExpected *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowQualifierExpected(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowQualifierExpected(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowQualifierExpected(struct soap *soap, prodml22__ProductFlowQualifierExpected *p) +inline int soap_POST_recv_prodml23__ProductFlowQualifierExpected(struct soap *soap, prodml23__ProductFlowQualifierExpected *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowQualifierExpected(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowQualifierExpected(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowPort(struct soap*, const char*, int, const prodml22__ProductFlowPort *, const char*); -SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowPort(struct soap*, const char*, prodml22__ProductFlowPort *, const char*); -SOAP_FMAC1 prodml22__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowPort(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowPort(struct soap*, const char*, int, const prodml23__ProductFlowPort *, const char*); +SOAP_FMAC3 prodml23__ProductFlowPort * SOAP_FMAC4 soap_in_prodml23__ProductFlowPort(struct soap*, const char*, prodml23__ProductFlowPort *, const char*); +SOAP_FMAC1 prodml23__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowPort(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowPort * soap_new_prodml22__ProductFlowPort(struct soap *soap, int n = -1) +inline prodml23__ProductFlowPort * soap_new_prodml23__ProductFlowPort(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowPort(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowPort(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowPort * soap_new_req_prodml22__ProductFlowPort( +inline prodml23__ProductFlowPort * soap_new_req_prodml23__ProductFlowPort( struct soap *soap, - prodml22__ProductFlowPortType Direction, + prodml23__ProductFlowPortType Direction, const std::string& Name, - const std::vector & ConnectedNode, + const std::vector & ConnectedNode, const std::string& uid) { - prodml22__ProductFlowPort *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowPort(soap); + prodml23__ProductFlowPort *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowPort(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowPort::Direction = Direction; - _p->prodml22__ProductFlowPort::Name = Name; - _p->prodml22__ProductFlowPort::ConnectedNode = ConnectedNode; - _p->prodml22__ProductFlowPort::uid = uid; + _p->prodml23__ProductFlowPort::Direction = Direction; + _p->prodml23__ProductFlowPort::Name = Name; + _p->prodml23__ProductFlowPort::ConnectedNode = ConnectedNode; + _p->prodml23__ProductFlowPort::uid = uid; } return _p; } -inline prodml22__ProductFlowPort * soap_new_set_prodml22__ProductFlowPort( +inline prodml23__ProductFlowPort * soap_new_set_prodml23__ProductFlowPort( struct soap *soap, - prodml22__ProductFlowPortType Direction, + prodml23__ProductFlowPortType Direction, const std::string& Name, std::string *PlanName, - prodml22__FacilityIdentifierStruct *Facility, + prodml23__FacilityIdentifierStruct *Facility, const std::vector & FacilityAlias, bool *Exposed, std::string *Comment, - const std::vector & ConnectedNode, - const std::vector & ExpectedFlowProperty, - const std::vector & ExpectedFlowProduct, + const std::vector & ConnectedNode, + const std::vector & ExpectedFlowProperty, + const std::vector & ExpectedFlowProduct, const std::string& uid) { - prodml22__ProductFlowPort *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowPort(soap); + prodml23__ProductFlowPort *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowPort(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowPort::Direction = Direction; - _p->prodml22__ProductFlowPort::Name = Name; - _p->prodml22__ProductFlowPort::PlanName = PlanName; - _p->prodml22__ProductFlowPort::Facility = Facility; - _p->prodml22__ProductFlowPort::FacilityAlias = FacilityAlias; - _p->prodml22__ProductFlowPort::Exposed = Exposed; - _p->prodml22__ProductFlowPort::Comment = Comment; - _p->prodml22__ProductFlowPort::ConnectedNode = ConnectedNode; - _p->prodml22__ProductFlowPort::ExpectedFlowProperty = ExpectedFlowProperty; - _p->prodml22__ProductFlowPort::ExpectedFlowProduct = ExpectedFlowProduct; - _p->prodml22__ProductFlowPort::uid = uid; + _p->prodml23__ProductFlowPort::Direction = Direction; + _p->prodml23__ProductFlowPort::Name = Name; + _p->prodml23__ProductFlowPort::PlanName = PlanName; + _p->prodml23__ProductFlowPort::Facility = Facility; + _p->prodml23__ProductFlowPort::FacilityAlias = FacilityAlias; + _p->prodml23__ProductFlowPort::Exposed = Exposed; + _p->prodml23__ProductFlowPort::Comment = Comment; + _p->prodml23__ProductFlowPort::ConnectedNode = ConnectedNode; + _p->prodml23__ProductFlowPort::ExpectedFlowProperty = ExpectedFlowProperty; + _p->prodml23__ProductFlowPort::ExpectedFlowProduct = ExpectedFlowProduct; + _p->prodml23__ProductFlowPort::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort const*p) +inline int soap_write_prodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort ? "prodml22:ProductFlowPort" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort ? "prodml23:ProductFlowPort" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowPort(struct soap *soap, const char *URL, prodml22__ProductFlowPort const*p) +inline int soap_PUT_prodml23__ProductFlowPort(struct soap *soap, const char *URL, prodml23__ProductFlowPort const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort ? "prodml22:ProductFlowPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort ? "prodml23:ProductFlowPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowPort(struct soap *soap, const char *URL, prodml22__ProductFlowPort const*p) +inline int soap_PATCH_prodml23__ProductFlowPort(struct soap *soap, const char *URL, prodml23__ProductFlowPort const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort ? "prodml22:ProductFlowPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort ? "prodml23:ProductFlowPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowPort(struct soap *soap, const char *URL, prodml22__ProductFlowPort const*p) +inline int soap_POST_send_prodml23__ProductFlowPort(struct soap *soap, const char *URL, prodml23__ProductFlowPort const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort ? "prodml22:ProductFlowPort" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort ? "prodml23:ProductFlowPort" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowPort * SOAP_FMAC4 soap_get_prodml22__ProductFlowPort(struct soap*, prodml22__ProductFlowPort *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowPort * SOAP_FMAC4 soap_get_prodml23__ProductFlowPort(struct soap*, prodml23__ProductFlowPort *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort *p) +inline int soap_read_prodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowPort(struct soap *soap, const char *URL, prodml22__ProductFlowPort *p) +inline int soap_GET_prodml23__ProductFlowPort(struct soap *soap, const char *URL, prodml23__ProductFlowPort *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowPort(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowPort(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowPort(struct soap *soap, prodml22__ProductFlowPort *p) +inline int soap_POST_recv_prodml23__ProductFlowPort(struct soap *soap, prodml23__ProductFlowPort *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowPort(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowPort(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowNetworkPlan(struct soap*, const char*, int, const prodml22__ProductFlowNetworkPlan *, const char*); -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan * SOAP_FMAC4 soap_in_prodml22__ProductFlowNetworkPlan(struct soap*, const char*, prodml22__ProductFlowNetworkPlan *, const char*); -SOAP_FMAC1 prodml22__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowNetworkPlan(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowNetworkPlan(struct soap*, const char*, int, const prodml23__ProductFlowNetworkPlan *, const char*); +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan * SOAP_FMAC4 soap_in_prodml23__ProductFlowNetworkPlan(struct soap*, const char*, prodml23__ProductFlowNetworkPlan *, const char*); +SOAP_FMAC1 prodml23__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowNetworkPlan(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowNetworkPlan * soap_new_prodml22__ProductFlowNetworkPlan(struct soap *soap, int n = -1) +inline prodml23__ProductFlowNetworkPlan * soap_new_prodml23__ProductFlowNetworkPlan(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowNetworkPlan(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowNetworkPlan(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowNetworkPlan * soap_new_req_prodml22__ProductFlowNetworkPlan( +inline prodml23__ProductFlowNetworkPlan * soap_new_req_prodml23__ProductFlowNetworkPlan( struct soap *soap, const std::string& Name, const struct tm& DTimStart, const std::string& uid) { - prodml22__ProductFlowNetworkPlan *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowNetworkPlan(soap); + prodml23__ProductFlowNetworkPlan *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowNetworkPlan(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowNetworkPlan::Name = Name; - _p->prodml22__ProductFlowNetworkPlan::DTimStart = DTimStart; - _p->prodml22__ProductFlowNetworkPlan::uid = uid; + _p->prodml23__ProductFlowNetworkPlan::Name = Name; + _p->prodml23__ProductFlowNetworkPlan::DTimStart = DTimStart; + _p->prodml23__ProductFlowNetworkPlan::uid = uid; } return _p; } -inline prodml22__ProductFlowNetworkPlan * soap_new_set_prodml22__ProductFlowNetworkPlan( +inline prodml23__ProductFlowNetworkPlan * soap_new_set_prodml23__ProductFlowNetworkPlan( struct soap *soap, const std::string& Name, const struct tm& DTimStart, std::string *Purpose, - const std::vector & ChangeLog, + const std::vector & ChangeLog, const std::string& uid) { - prodml22__ProductFlowNetworkPlan *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowNetworkPlan(soap); + prodml23__ProductFlowNetworkPlan *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowNetworkPlan(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowNetworkPlan::Name = Name; - _p->prodml22__ProductFlowNetworkPlan::DTimStart = DTimStart; - _p->prodml22__ProductFlowNetworkPlan::Purpose = Purpose; - _p->prodml22__ProductFlowNetworkPlan::ChangeLog = ChangeLog; - _p->prodml22__ProductFlowNetworkPlan::uid = uid; + _p->prodml23__ProductFlowNetworkPlan::Name = Name; + _p->prodml23__ProductFlowNetworkPlan::DTimStart = DTimStart; + _p->prodml23__ProductFlowNetworkPlan::Purpose = Purpose; + _p->prodml23__ProductFlowNetworkPlan::ChangeLog = ChangeLog; + _p->prodml23__ProductFlowNetworkPlan::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan const*p) +inline int soap_write_prodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan ? "prodml22:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan ? "prodml23:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml22__ProductFlowNetworkPlan const*p) +inline int soap_PUT_prodml23__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml23__ProductFlowNetworkPlan const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan ? "prodml22:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan ? "prodml23:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml22__ProductFlowNetworkPlan const*p) +inline int soap_PATCH_prodml23__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml23__ProductFlowNetworkPlan const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan ? "prodml22:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan ? "prodml23:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml22__ProductFlowNetworkPlan const*p) +inline int soap_POST_send_prodml23__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml23__ProductFlowNetworkPlan const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan ? "prodml22:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetworkPlan", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan ? "prodml23:ProductFlowNetworkPlan" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan * SOAP_FMAC4 soap_get_prodml22__ProductFlowNetworkPlan(struct soap*, prodml22__ProductFlowNetworkPlan *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan * SOAP_FMAC4 soap_get_prodml23__ProductFlowNetworkPlan(struct soap*, prodml23__ProductFlowNetworkPlan *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan *p) +inline int soap_read_prodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowNetworkPlan(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowNetworkPlan(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml22__ProductFlowNetworkPlan *p) +inline int soap_GET_prodml23__ProductFlowNetworkPlan(struct soap *soap, const char *URL, prodml23__ProductFlowNetworkPlan *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowNetworkPlan(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowNetworkPlan(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowNetworkPlan(struct soap *soap, prodml22__ProductFlowNetworkPlan *p) +inline int soap_POST_recv_prodml23__ProductFlowNetworkPlan(struct soap *soap, prodml23__ProductFlowNetworkPlan *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowNetworkPlan(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowNetworkPlan(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowModel(struct soap*, const char*, int, const prodml22__ProductFlowModel *, const char*); -SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_in_prodml22__ProductFlowModel(struct soap*, const char*, prodml22__ProductFlowModel *, const char*); -SOAP_FMAC1 prodml22__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowModel(struct soap*, const char*, int, const prodml23__ProductFlowModel *, const char*); +SOAP_FMAC3 prodml23__ProductFlowModel * SOAP_FMAC4 soap_in_prodml23__ProductFlowModel(struct soap*, const char*, prodml23__ProductFlowModel *, const char*); +SOAP_FMAC1 prodml23__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowModel * soap_new_prodml22__ProductFlowModel(struct soap *soap, int n = -1) +inline prodml23__ProductFlowModel * soap_new_prodml23__ProductFlowModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowModel * soap_new_req_prodml22__ProductFlowModel( +inline prodml23__ProductFlowModel * soap_new_req_prodml23__ProductFlowModel( struct soap *soap, - const std::vector & Network, + const std::vector & Network, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__ProductFlowModel *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowModel(soap); + prodml23__ProductFlowModel *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowModel::Network = Network; + _p->prodml23__ProductFlowModel::Network = Network; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -98097,18 +98097,18 @@ inline prodml22__ProductFlowModel * soap_new_req_prodml22__ProductFlowModel( return _p; } -inline prodml22__ProductFlowModel * soap_new_set_prodml22__ProductFlowModel( +inline prodml23__ProductFlowModel * soap_new_set_prodml23__ProductFlowModel( struct soap *soap, - prodml22__FacilityIdentifierStruct *Installation, - const std::vector & ContextFacility, + prodml23__FacilityIdentifierStruct *Installation, + const std::vector & ContextFacility, struct tm *DTimStart, struct tm *DTimEnd, - prodml22__EndpointQualifiedDateTime *ExistenceTime, - prodml22__EndpointQualifiedDateTime *DTimMin, - prodml22__EndpointQualifiedDateTime *DTimMax, + prodml23__EndpointQualifiedDateTime *ExistenceTime, + prodml23__EndpointQualifiedDateTime *DTimMin, + prodml23__EndpointQualifiedDateTime *DTimMax, std::string *Comment, - const std::vector & ExternalConnect, - const std::vector & Network, + const std::vector & ExternalConnect, + const std::vector & Network, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -98121,19 +98121,19 @@ inline prodml22__ProductFlowModel * soap_new_set_prodml22__ProductFlowModel( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__ProductFlowModel *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowModel(soap); + prodml23__ProductFlowModel *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowModel::Installation = Installation; - _p->prodml22__ProductFlowModel::ContextFacility = ContextFacility; - _p->prodml22__ProductFlowModel::DTimStart = DTimStart; - _p->prodml22__ProductFlowModel::DTimEnd = DTimEnd; - _p->prodml22__ProductFlowModel::ExistenceTime = ExistenceTime; - _p->prodml22__ProductFlowModel::DTimMin = DTimMin; - _p->prodml22__ProductFlowModel::DTimMax = DTimMax; - _p->prodml22__ProductFlowModel::Comment = Comment; - _p->prodml22__ProductFlowModel::ExternalConnect = ExternalConnect; - _p->prodml22__ProductFlowModel::Network = Network; + _p->prodml23__ProductFlowModel::Installation = Installation; + _p->prodml23__ProductFlowModel::ContextFacility = ContextFacility; + _p->prodml23__ProductFlowModel::DTimStart = DTimStart; + _p->prodml23__ProductFlowModel::DTimEnd = DTimEnd; + _p->prodml23__ProductFlowModel::ExistenceTime = ExistenceTime; + _p->prodml23__ProductFlowModel::DTimMin = DTimMin; + _p->prodml23__ProductFlowModel::DTimMax = DTimMax; + _p->prodml23__ProductFlowModel::Comment = Comment; + _p->prodml23__ProductFlowModel::ExternalConnect = ExternalConnect; + _p->prodml23__ProductFlowModel::Network = Network; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -98149,502 +98149,502 @@ inline prodml22__ProductFlowModel * soap_new_set_prodml22__ProductFlowModel( return _p; } -inline int soap_write_prodml22__ProductFlowModel(struct soap *soap, prodml22__ProductFlowModel const*p) +inline int soap_write_prodml23__ProductFlowModel(struct soap *soap, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel ? "prodml22:ProductFlowModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel ? "prodml23:ProductFlowModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel const*p) +inline int soap_PUT_prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel ? "prodml22:ProductFlowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel ? "prodml23:ProductFlowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel const*p) +inline int soap_PATCH_prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel ? "prodml22:ProductFlowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel ? "prodml23:ProductFlowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel const*p) +inline int soap_POST_send_prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel ? "prodml22:ProductFlowModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel ? "prodml23:ProductFlowModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowModel * SOAP_FMAC4 soap_get_prodml22__ProductFlowModel(struct soap*, prodml22__ProductFlowModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowModel * SOAP_FMAC4 soap_get_prodml23__ProductFlowModel(struct soap*, prodml23__ProductFlowModel *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowModel(struct soap *soap, prodml22__ProductFlowModel *p) +inline int soap_read_prodml23__ProductFlowModel(struct soap *soap, prodml23__ProductFlowModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowModel(struct soap *soap, const char *URL, prodml22__ProductFlowModel *p) +inline int soap_GET_prodml23__ProductFlowModel(struct soap *soap, const char *URL, prodml23__ProductFlowModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowModel(struct soap *soap, prodml22__ProductFlowModel *p) +inline int soap_POST_recv_prodml23__ProductFlowModel(struct soap *soap, prodml23__ProductFlowModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowExternalPort(struct soap*, const char*, int, const prodml22__ProductFlowExternalPort *, const char*); -SOAP_FMAC3 prodml22__ProductFlowExternalPort * SOAP_FMAC4 soap_in_prodml22__ProductFlowExternalPort(struct soap*, const char*, prodml22__ProductFlowExternalPort *, const char*); -SOAP_FMAC1 prodml22__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExternalPort(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowExternalPort(struct soap*, const char*, int, const prodml23__ProductFlowExternalPort *, const char*); +SOAP_FMAC3 prodml23__ProductFlowExternalPort * SOAP_FMAC4 soap_in_prodml23__ProductFlowExternalPort(struct soap*, const char*, prodml23__ProductFlowExternalPort *, const char*); +SOAP_FMAC1 prodml23__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExternalPort(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowExternalPort * soap_new_prodml22__ProductFlowExternalPort(struct soap *soap, int n = -1) +inline prodml23__ProductFlowExternalPort * soap_new_prodml23__ProductFlowExternalPort(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowExternalPort(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowExternalPort(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowExternalPort * soap_new_req_prodml22__ProductFlowExternalPort( +inline prodml23__ProductFlowExternalPort * soap_new_req_prodml23__ProductFlowExternalPort( struct soap *soap, const std::string& Name, - prodml22__ProductFlowPortType Direction, + prodml23__ProductFlowPortType Direction, const std::string& ConnectedNode, const std::string& uid) { - prodml22__ProductFlowExternalPort *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowExternalPort(soap); + prodml23__ProductFlowExternalPort *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowExternalPort(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowExternalPort::Name = Name; - _p->prodml22__ProductFlowExternalPort::Direction = Direction; - _p->prodml22__ProductFlowExternalPort::ConnectedNode = ConnectedNode; - _p->prodml22__ProductFlowExternalPort::uid = uid; + _p->prodml23__ProductFlowExternalPort::Name = Name; + _p->prodml23__ProductFlowExternalPort::Direction = Direction; + _p->prodml23__ProductFlowExternalPort::ConnectedNode = ConnectedNode; + _p->prodml23__ProductFlowExternalPort::uid = uid; } return _p; } -inline prodml22__ProductFlowExternalPort * soap_new_set_prodml22__ProductFlowExternalPort( +inline prodml23__ProductFlowExternalPort * soap_new_set_prodml23__ProductFlowExternalPort( struct soap *soap, const std::string& Name, - prodml22__ProductFlowPortType Direction, + prodml23__ProductFlowPortType Direction, bool *Exposed, const std::string& ConnectedNode, std::string *Comment, const std::string& uid) { - prodml22__ProductFlowExternalPort *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowExternalPort(soap); + prodml23__ProductFlowExternalPort *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowExternalPort(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowExternalPort::Name = Name; - _p->prodml22__ProductFlowExternalPort::Direction = Direction; - _p->prodml22__ProductFlowExternalPort::Exposed = Exposed; - _p->prodml22__ProductFlowExternalPort::ConnectedNode = ConnectedNode; - _p->prodml22__ProductFlowExternalPort::Comment = Comment; - _p->prodml22__ProductFlowExternalPort::uid = uid; + _p->prodml23__ProductFlowExternalPort::Name = Name; + _p->prodml23__ProductFlowExternalPort::Direction = Direction; + _p->prodml23__ProductFlowExternalPort::Exposed = Exposed; + _p->prodml23__ProductFlowExternalPort::ConnectedNode = ConnectedNode; + _p->prodml23__ProductFlowExternalPort::Comment = Comment; + _p->prodml23__ProductFlowExternalPort::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort const*p) +inline int soap_write_prodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort ? "prodml22:ProductFlowExternalPort" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort ? "prodml23:ProductFlowExternalPort" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml22__ProductFlowExternalPort const*p) +inline int soap_PUT_prodml23__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml23__ProductFlowExternalPort const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort ? "prodml22:ProductFlowExternalPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort ? "prodml23:ProductFlowExternalPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml22__ProductFlowExternalPort const*p) +inline int soap_PATCH_prodml23__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml23__ProductFlowExternalPort const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort ? "prodml22:ProductFlowExternalPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort ? "prodml23:ProductFlowExternalPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml22__ProductFlowExternalPort const*p) +inline int soap_POST_send_prodml23__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml23__ProductFlowExternalPort const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort ? "prodml22:ProductFlowExternalPort" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort ? "prodml23:ProductFlowExternalPort" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowExternalPort * SOAP_FMAC4 soap_get_prodml22__ProductFlowExternalPort(struct soap*, prodml22__ProductFlowExternalPort *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowExternalPort * SOAP_FMAC4 soap_get_prodml23__ProductFlowExternalPort(struct soap*, prodml23__ProductFlowExternalPort *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort *p) +inline int soap_read_prodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowExternalPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowExternalPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml22__ProductFlowExternalPort *p) +inline int soap_GET_prodml23__ProductFlowExternalPort(struct soap *soap, const char *URL, prodml23__ProductFlowExternalPort *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowExternalPort(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowExternalPort(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowExternalPort(struct soap *soap, prodml22__ProductFlowExternalPort *p) +inline int soap_POST_recv_prodml23__ProductFlowExternalPort(struct soap *soap, prodml23__ProductFlowExternalPort *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowExternalPort(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowExternalPort(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowExpectedUnitProperty(struct soap*, const char*, int, const prodml22__ProductFlowExpectedUnitProperty *, const char*); -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_in_prodml22__ProductFlowExpectedUnitProperty(struct soap*, const char*, prodml22__ProductFlowExpectedUnitProperty *, const char*); -SOAP_FMAC1 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowExpectedUnitProperty(struct soap*, const char*, int, const prodml23__ProductFlowExpectedUnitProperty *, const char*); +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_in_prodml23__ProductFlowExpectedUnitProperty(struct soap*, const char*, prodml23__ProductFlowExpectedUnitProperty *, const char*); +SOAP_FMAC1 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowExpectedUnitProperty * soap_new_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, int n = -1) +inline prodml23__ProductFlowExpectedUnitProperty * soap_new_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowExpectedUnitProperty * soap_new_req_prodml22__ProductFlowExpectedUnitProperty( +inline prodml23__ProductFlowExpectedUnitProperty * soap_new_req_prodml23__ProductFlowExpectedUnitProperty( struct soap *soap, - prodml22__FacilityParameter Property, + prodml23__FacilityParameter Property, const std::string& uid) { - prodml22__ProductFlowExpectedUnitProperty *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowExpectedUnitProperty(soap); + prodml23__ProductFlowExpectedUnitProperty *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowExpectedUnitProperty(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowExpectedUnitProperty::Property = Property; - _p->prodml22__ProductFlowExpectedUnitProperty::uid = uid; + _p->prodml23__ProductFlowExpectedUnitProperty::Property = Property; + _p->prodml23__ProductFlowExpectedUnitProperty::uid = uid; } return _p; } -inline prodml22__ProductFlowExpectedUnitProperty * soap_new_set_prodml22__ProductFlowExpectedUnitProperty( +inline prodml23__ProductFlowExpectedUnitProperty * soap_new_set_prodml23__ProductFlowExpectedUnitProperty( struct soap *soap, - prodml22__FacilityParameter Property, + prodml23__FacilityParameter Property, std::string *ChildFacilityIdentifier, const std::vector & TagAlias, - prodml22__GeneralMeasureType *Deadband, + prodml23__GeneralMeasureType *Deadband, eml23__TimeMeasure *MaximumFrequency, std::string *Comment, - prodml22__ExpectedFlowQualifier *ExpectedFlowQualifier, - const std::vector & ExpectedFlowProduct, + prodml23__ExpectedFlowQualifier *ExpectedFlowQualifier, + const std::vector & ExpectedFlowProduct, const std::string& uid) { - prodml22__ProductFlowExpectedUnitProperty *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowExpectedUnitProperty(soap); + prodml23__ProductFlowExpectedUnitProperty *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowExpectedUnitProperty(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowExpectedUnitProperty::Property = Property; - _p->prodml22__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier = ChildFacilityIdentifier; - _p->prodml22__ProductFlowExpectedUnitProperty::TagAlias = TagAlias; - _p->prodml22__ProductFlowExpectedUnitProperty::Deadband = Deadband; - _p->prodml22__ProductFlowExpectedUnitProperty::MaximumFrequency = MaximumFrequency; - _p->prodml22__ProductFlowExpectedUnitProperty::Comment = Comment; - _p->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier = ExpectedFlowQualifier; - _p->prodml22__ProductFlowExpectedUnitProperty::ExpectedFlowProduct = ExpectedFlowProduct; - _p->prodml22__ProductFlowExpectedUnitProperty::uid = uid; + _p->prodml23__ProductFlowExpectedUnitProperty::Property = Property; + _p->prodml23__ProductFlowExpectedUnitProperty::ChildFacilityIdentifier = ChildFacilityIdentifier; + _p->prodml23__ProductFlowExpectedUnitProperty::TagAlias = TagAlias; + _p->prodml23__ProductFlowExpectedUnitProperty::Deadband = Deadband; + _p->prodml23__ProductFlowExpectedUnitProperty::MaximumFrequency = MaximumFrequency; + _p->prodml23__ProductFlowExpectedUnitProperty::Comment = Comment; + _p->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowQualifier = ExpectedFlowQualifier; + _p->prodml23__ProductFlowExpectedUnitProperty::ExpectedFlowProduct = ExpectedFlowProduct; + _p->prodml23__ProductFlowExpectedUnitProperty::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty const*p) +inline int soap_write_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty ? "prodml22:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty ? "prodml23:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml22__ProductFlowExpectedUnitProperty const*p) +inline int soap_PUT_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml23__ProductFlowExpectedUnitProperty const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty ? "prodml22:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty ? "prodml23:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml22__ProductFlowExpectedUnitProperty const*p) +inline int soap_PATCH_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml23__ProductFlowExpectedUnitProperty const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty ? "prodml22:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty ? "prodml23:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml22__ProductFlowExpectedUnitProperty const*p) +inline int soap_POST_send_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml23__ProductFlowExpectedUnitProperty const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty ? "prodml22:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExpectedUnitProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty ? "prodml23:ProductFlowExpectedUnitProperty" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_get_prodml22__ProductFlowExpectedUnitProperty(struct soap*, prodml22__ProductFlowExpectedUnitProperty *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC4 soap_get_prodml23__ProductFlowExpectedUnitProperty(struct soap*, prodml23__ProductFlowExpectedUnitProperty *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty *p) +inline int soap_read_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowExpectedUnitProperty(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowExpectedUnitProperty(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml22__ProductFlowExpectedUnitProperty *p) +inline int soap_GET_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, const char *URL, prodml23__ProductFlowExpectedUnitProperty *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowExpectedUnitProperty(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowExpectedUnitProperty(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowExpectedUnitProperty(struct soap *soap, prodml22__ProductFlowExpectedUnitProperty *p) +inline int soap_POST_recv_prodml23__ProductFlowExpectedUnitProperty(struct soap *soap, prodml23__ProductFlowExpectedUnitProperty *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowExpectedUnitProperty(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowExpectedUnitProperty(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowChangeLog(struct soap*, const char*, int, const prodml22__ProductFlowChangeLog *, const char*); -SOAP_FMAC3 prodml22__ProductFlowChangeLog * SOAP_FMAC4 soap_in_prodml22__ProductFlowChangeLog(struct soap*, const char*, prodml22__ProductFlowChangeLog *, const char*); -SOAP_FMAC1 prodml22__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowChangeLog(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowChangeLog(struct soap*, const char*, int, const prodml23__ProductFlowChangeLog *, const char*); +SOAP_FMAC3 prodml23__ProductFlowChangeLog * SOAP_FMAC4 soap_in_prodml23__ProductFlowChangeLog(struct soap*, const char*, prodml23__ProductFlowChangeLog *, const char*); +SOAP_FMAC1 prodml23__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowChangeLog(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowChangeLog * soap_new_prodml22__ProductFlowChangeLog(struct soap *soap, int n = -1) +inline prodml23__ProductFlowChangeLog * soap_new_prodml23__ProductFlowChangeLog(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowChangeLog(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowChangeLog(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowChangeLog * soap_new_req_prodml22__ProductFlowChangeLog( +inline prodml23__ProductFlowChangeLog * soap_new_req_prodml23__ProductFlowChangeLog( struct soap *soap, const std::string& Name, const struct tm& DTim, const std::string& uid) { - prodml22__ProductFlowChangeLog *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowChangeLog(soap); + prodml23__ProductFlowChangeLog *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowChangeLog(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowChangeLog::Name = Name; - _p->prodml22__ProductFlowChangeLog::DTim = DTim; - _p->prodml22__ProductFlowChangeLog::uid = uid; + _p->prodml23__ProductFlowChangeLog::Name = Name; + _p->prodml23__ProductFlowChangeLog::DTim = DTim; + _p->prodml23__ProductFlowChangeLog::uid = uid; } return _p; } -inline prodml22__ProductFlowChangeLog * soap_new_set_prodml22__ProductFlowChangeLog( +inline prodml23__ProductFlowChangeLog * soap_new_set_prodml23__ProductFlowChangeLog( struct soap *soap, const std::string& Name, const struct tm& DTim, std::string *Reason, const std::string& uid) { - prodml22__ProductFlowChangeLog *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowChangeLog(soap); + prodml23__ProductFlowChangeLog *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowChangeLog(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowChangeLog::Name = Name; - _p->prodml22__ProductFlowChangeLog::DTim = DTim; - _p->prodml22__ProductFlowChangeLog::Reason = Reason; - _p->prodml22__ProductFlowChangeLog::uid = uid; + _p->prodml23__ProductFlowChangeLog::Name = Name; + _p->prodml23__ProductFlowChangeLog::DTim = DTim; + _p->prodml23__ProductFlowChangeLog::Reason = Reason; + _p->prodml23__ProductFlowChangeLog::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog const*p) +inline int soap_write_prodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog ? "prodml22:ProductFlowChangeLog" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog ? "prodml23:ProductFlowChangeLog" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml22__ProductFlowChangeLog const*p) +inline int soap_PUT_prodml23__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml23__ProductFlowChangeLog const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog ? "prodml22:ProductFlowChangeLog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog ? "prodml23:ProductFlowChangeLog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml22__ProductFlowChangeLog const*p) +inline int soap_PATCH_prodml23__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml23__ProductFlowChangeLog const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog ? "prodml22:ProductFlowChangeLog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog ? "prodml23:ProductFlowChangeLog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml22__ProductFlowChangeLog const*p) +inline int soap_POST_send_prodml23__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml23__ProductFlowChangeLog const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog ? "prodml22:ProductFlowChangeLog" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowChangeLog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog ? "prodml23:ProductFlowChangeLog" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowChangeLog * SOAP_FMAC4 soap_get_prodml22__ProductFlowChangeLog(struct soap*, prodml22__ProductFlowChangeLog *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowChangeLog * SOAP_FMAC4 soap_get_prodml23__ProductFlowChangeLog(struct soap*, prodml23__ProductFlowChangeLog *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog *p) +inline int soap_read_prodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowChangeLog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowChangeLog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml22__ProductFlowChangeLog *p) +inline int soap_GET_prodml23__ProductFlowChangeLog(struct soap *soap, const char *URL, prodml23__ProductFlowChangeLog *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowChangeLog(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowChangeLog(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowChangeLog(struct soap *soap, prodml22__ProductFlowChangeLog *p) +inline int soap_POST_recv_prodml23__ProductFlowChangeLog(struct soap *soap, prodml23__ProductFlowChangeLog *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowChangeLog(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowChangeLog(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ExpectedFlowQualifier(struct soap*, const char*, int, const prodml22__ExpectedFlowQualifier *, const char*); -SOAP_FMAC3 prodml22__ExpectedFlowQualifier * SOAP_FMAC4 soap_in_prodml22__ExpectedFlowQualifier(struct soap*, const char*, prodml22__ExpectedFlowQualifier *, const char*); -SOAP_FMAC1 prodml22__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml22__ExpectedFlowQualifier(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ExpectedFlowQualifier(struct soap*, const char*, int, const prodml23__ExpectedFlowQualifier *, const char*); +SOAP_FMAC3 prodml23__ExpectedFlowQualifier * SOAP_FMAC4 soap_in_prodml23__ExpectedFlowQualifier(struct soap*, const char*, prodml23__ExpectedFlowQualifier *, const char*); +SOAP_FMAC1 prodml23__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml23__ExpectedFlowQualifier(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ExpectedFlowQualifier * soap_new_prodml22__ExpectedFlowQualifier(struct soap *soap, int n = -1) +inline prodml23__ExpectedFlowQualifier * soap_new_prodml23__ExpectedFlowQualifier(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ExpectedFlowQualifier(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ExpectedFlowQualifier(soap, n, NULL, NULL, NULL); } -inline prodml22__ExpectedFlowQualifier * soap_new_req_prodml22__ExpectedFlowQualifier( +inline prodml23__ExpectedFlowQualifier * soap_new_req_prodml23__ExpectedFlowQualifier( struct soap *soap) { - prodml22__ExpectedFlowQualifier *_p = gsoap_eml2_3::soap_new_prodml22__ExpectedFlowQualifier(soap); + prodml23__ExpectedFlowQualifier *_p = gsoap_eml2_3::soap_new_prodml23__ExpectedFlowQualifier(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__ExpectedFlowQualifier * soap_new_set_prodml22__ExpectedFlowQualifier( +inline prodml23__ExpectedFlowQualifier * soap_new_set_prodml23__ExpectedFlowQualifier( struct soap *soap) { - prodml22__ExpectedFlowQualifier *_p = gsoap_eml2_3::soap_new_prodml22__ExpectedFlowQualifier(soap); + prodml23__ExpectedFlowQualifier *_p = gsoap_eml2_3::soap_new_prodml23__ExpectedFlowQualifier(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier const*p) +inline int soap_write_prodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier ? "prodml22:ExpectedFlowQualifier" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier ? "prodml23:ExpectedFlowQualifier" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml22__ExpectedFlowQualifier const*p) +inline int soap_PUT_prodml23__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml23__ExpectedFlowQualifier const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier ? "prodml22:ExpectedFlowQualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier ? "prodml23:ExpectedFlowQualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml22__ExpectedFlowQualifier const*p) +inline int soap_PATCH_prodml23__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml23__ExpectedFlowQualifier const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier ? "prodml22:ExpectedFlowQualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier ? "prodml23:ExpectedFlowQualifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml22__ExpectedFlowQualifier const*p) +inline int soap_POST_send_prodml23__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml23__ExpectedFlowQualifier const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier ? "prodml22:ExpectedFlowQualifier" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ExpectedFlowQualifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier ? "prodml23:ExpectedFlowQualifier" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ExpectedFlowQualifier * SOAP_FMAC4 soap_get_prodml22__ExpectedFlowQualifier(struct soap*, prodml22__ExpectedFlowQualifier *, const char*, const char*); +SOAP_FMAC3 prodml23__ExpectedFlowQualifier * SOAP_FMAC4 soap_get_prodml23__ExpectedFlowQualifier(struct soap*, prodml23__ExpectedFlowQualifier *, const char*, const char*); -inline int soap_read_prodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier *p) +inline int soap_read_prodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ExpectedFlowQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ExpectedFlowQualifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml22__ExpectedFlowQualifier *p) +inline int soap_GET_prodml23__ExpectedFlowQualifier(struct soap *soap, const char *URL, prodml23__ExpectedFlowQualifier *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ExpectedFlowQualifier(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ExpectedFlowQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ExpectedFlowQualifier(struct soap *soap, prodml22__ExpectedFlowQualifier *p) +inline int soap_POST_recv_prodml23__ExpectedFlowQualifier(struct soap *soap, prodml23__ExpectedFlowQualifier *p) { - if (gsoap_eml2_3::soap_read_prodml22__ExpectedFlowQualifier(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ExpectedFlowQualifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConnectedNode(struct soap*, const char*, int, const prodml22__ConnectedNode *, const char*); -SOAP_FMAC3 prodml22__ConnectedNode * SOAP_FMAC4 soap_in_prodml22__ConnectedNode(struct soap*, const char*, prodml22__ConnectedNode *, const char*); -SOAP_FMAC1 prodml22__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml22__ConnectedNode(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConnectedNode(struct soap*, const char*, int, const prodml23__ConnectedNode *, const char*); +SOAP_FMAC3 prodml23__ConnectedNode * SOAP_FMAC4 soap_in_prodml23__ConnectedNode(struct soap*, const char*, prodml23__ConnectedNode *, const char*); +SOAP_FMAC1 prodml23__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml23__ConnectedNode(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ConnectedNode * soap_new_prodml22__ConnectedNode(struct soap *soap, int n = -1) +inline prodml23__ConnectedNode * soap_new_prodml23__ConnectedNode(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ConnectedNode(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ConnectedNode(soap, n, NULL, NULL, NULL); } -inline prodml22__ConnectedNode * soap_new_req_prodml22__ConnectedNode( +inline prodml23__ConnectedNode * soap_new_req_prodml23__ConnectedNode( struct soap *soap, const std::string& Node, const std::string& uid) { - prodml22__ConnectedNode *_p = gsoap_eml2_3::soap_new_prodml22__ConnectedNode(soap); + prodml23__ConnectedNode *_p = gsoap_eml2_3::soap_new_prodml23__ConnectedNode(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConnectedNode::Node = Node; - _p->prodml22__ConnectedNode::uid = uid; + _p->prodml23__ConnectedNode::Node = Node; + _p->prodml23__ConnectedNode::uid = uid; } return _p; } -inline prodml22__ConnectedNode * soap_new_set_prodml22__ConnectedNode( +inline prodml23__ConnectedNode * soap_new_set_prodml23__ConnectedNode( struct soap *soap, const std::string& Node, std::string *PlanName, @@ -98653,501 +98653,501 @@ inline prodml22__ConnectedNode * soap_new_set_prodml22__ConnectedNode( std::string *Comment, const std::string& uid) { - prodml22__ConnectedNode *_p = gsoap_eml2_3::soap_new_prodml22__ConnectedNode(soap); + prodml23__ConnectedNode *_p = gsoap_eml2_3::soap_new_prodml23__ConnectedNode(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConnectedNode::Node = Node; - _p->prodml22__ConnectedNode::PlanName = PlanName; - _p->prodml22__ConnectedNode::DTimStart = DTimStart; - _p->prodml22__ConnectedNode::DTimEnd = DTimEnd; - _p->prodml22__ConnectedNode::Comment = Comment; - _p->prodml22__ConnectedNode::uid = uid; + _p->prodml23__ConnectedNode::Node = Node; + _p->prodml23__ConnectedNode::PlanName = PlanName; + _p->prodml23__ConnectedNode::DTimStart = DTimStart; + _p->prodml23__ConnectedNode::DTimEnd = DTimEnd; + _p->prodml23__ConnectedNode::Comment = Comment; + _p->prodml23__ConnectedNode::uid = uid; } return _p; } -inline int soap_write_prodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode const*p) +inline int soap_write_prodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode ? "prodml22:ConnectedNode" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode ? "prodml23:ConnectedNode" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ConnectedNode(struct soap *soap, const char *URL, prodml22__ConnectedNode const*p) +inline int soap_PUT_prodml23__ConnectedNode(struct soap *soap, const char *URL, prodml23__ConnectedNode const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode ? "prodml22:ConnectedNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode ? "prodml23:ConnectedNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ConnectedNode(struct soap *soap, const char *URL, prodml22__ConnectedNode const*p) +inline int soap_PATCH_prodml23__ConnectedNode(struct soap *soap, const char *URL, prodml23__ConnectedNode const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode ? "prodml22:ConnectedNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode ? "prodml23:ConnectedNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ConnectedNode(struct soap *soap, const char *URL, prodml22__ConnectedNode const*p) +inline int soap_POST_send_prodml23__ConnectedNode(struct soap *soap, const char *URL, prodml23__ConnectedNode const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode ? "prodml22:ConnectedNode" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConnectedNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode ? "prodml23:ConnectedNode" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ConnectedNode * SOAP_FMAC4 soap_get_prodml22__ConnectedNode(struct soap*, prodml22__ConnectedNode *, const char*, const char*); +SOAP_FMAC3 prodml23__ConnectedNode * SOAP_FMAC4 soap_get_prodml23__ConnectedNode(struct soap*, prodml23__ConnectedNode *, const char*, const char*); -inline int soap_read_prodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode *p) +inline int soap_read_prodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ConnectedNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ConnectedNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ConnectedNode(struct soap *soap, const char *URL, prodml22__ConnectedNode *p) +inline int soap_GET_prodml23__ConnectedNode(struct soap *soap, const char *URL, prodml23__ConnectedNode *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ConnectedNode(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ConnectedNode(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ConnectedNode(struct soap *soap, prodml22__ConnectedNode *p) +inline int soap_POST_recv_prodml23__ConnectedNode(struct soap *soap, prodml23__ConnectedNode *p) { - if (gsoap_eml2_3::soap_read_prodml22__ConnectedNode(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ConnectedNode(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StringData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StringData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StringData(struct soap*, const char*, int, const prodml22__StringData *, const char*); -SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_in_prodml22__StringData(struct soap*, const char*, prodml22__StringData *, const char*); -SOAP_FMAC1 prodml22__StringData * SOAP_FMAC2 soap_instantiate_prodml22__StringData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StringData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StringData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StringData(struct soap*, const char*, int, const prodml23__StringData *, const char*); +SOAP_FMAC3 prodml23__StringData * SOAP_FMAC4 soap_in_prodml23__StringData(struct soap*, const char*, prodml23__StringData *, const char*); +SOAP_FMAC1 prodml23__StringData * SOAP_FMAC2 soap_instantiate_prodml23__StringData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__StringData * soap_new_prodml22__StringData(struct soap *soap, int n = -1) +inline prodml23__StringData * soap_new_prodml23__StringData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__StringData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__StringData(soap, n, NULL, NULL, NULL); } -inline prodml22__StringData * soap_new_req_prodml22__StringData( +inline prodml23__StringData * soap_new_req_prodml23__StringData( struct soap *soap, - prodml22__KindQualifiedString *StringValue) + prodml23__KindQualifiedString *StringValue) { - prodml22__StringData *_p = gsoap_eml2_3::soap_new_prodml22__StringData(soap); + prodml23__StringData *_p = gsoap_eml2_3::soap_new_prodml23__StringData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StringData::StringValue = StringValue; + _p->prodml23__StringData::StringValue = StringValue; } return _p; } -inline prodml22__StringData * soap_new_set_prodml22__StringData( +inline prodml23__StringData * soap_new_set_prodml23__StringData( struct soap *soap, - prodml22__KindQualifiedString *StringValue) + prodml23__KindQualifiedString *StringValue) { - prodml22__StringData *_p = gsoap_eml2_3::soap_new_prodml22__StringData(soap); + prodml23__StringData *_p = gsoap_eml2_3::soap_new_prodml23__StringData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StringData::StringValue = StringValue; + _p->prodml23__StringData::StringValue = StringValue; } return _p; } -inline int soap_write_prodml22__StringData(struct soap *soap, prodml22__StringData const*p) +inline int soap_write_prodml23__StringData(struct soap *soap, prodml23__StringData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringData ? "prodml22:StringData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringData ? "prodml23:StringData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__StringData(struct soap *soap, const char *URL, prodml22__StringData const*p) +inline int soap_PUT_prodml23__StringData(struct soap *soap, const char *URL, prodml23__StringData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringData ? "prodml22:StringData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringData ? "prodml23:StringData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__StringData(struct soap *soap, const char *URL, prodml22__StringData const*p) +inline int soap_PATCH_prodml23__StringData(struct soap *soap, const char *URL, prodml23__StringData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringData ? "prodml22:StringData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringData ? "prodml23:StringData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__StringData(struct soap *soap, const char *URL, prodml22__StringData const*p) +inline int soap_POST_send_prodml23__StringData(struct soap *soap, const char *URL, prodml23__StringData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StringData ? "prodml22:StringData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StringData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StringData ? "prodml23:StringData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__StringData * SOAP_FMAC4 soap_get_prodml22__StringData(struct soap*, prodml22__StringData *, const char*, const char*); +SOAP_FMAC3 prodml23__StringData * SOAP_FMAC4 soap_get_prodml23__StringData(struct soap*, prodml23__StringData *, const char*, const char*); -inline int soap_read_prodml22__StringData(struct soap *soap, prodml22__StringData *p) +inline int soap_read_prodml23__StringData(struct soap *soap, prodml23__StringData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__StringData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__StringData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__StringData(struct soap *soap, const char *URL, prodml22__StringData *p) +inline int soap_GET_prodml23__StringData(struct soap *soap, const char *URL, prodml23__StringData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__StringData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__StringData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__StringData(struct soap *soap, prodml22__StringData *p) +inline int soap_POST_recv_prodml23__StringData(struct soap *soap, prodml23__StringData *p) { - if (gsoap_eml2_3::soap_read_prodml22__StringData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__StringData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReferenceFlow(struct soap*, const char*, int, const prodml22__ReferenceFlow *, const char*); -SOAP_FMAC3 prodml22__ReferenceFlow * SOAP_FMAC4 soap_in_prodml22__ReferenceFlow(struct soap*, const char*, prodml22__ReferenceFlow *, const char*); -SOAP_FMAC1 prodml22__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml22__ReferenceFlow(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReferenceFlow(struct soap*, const char*, int, const prodml23__ReferenceFlow *, const char*); +SOAP_FMAC3 prodml23__ReferenceFlow * SOAP_FMAC4 soap_in_prodml23__ReferenceFlow(struct soap*, const char*, prodml23__ReferenceFlow *, const char*); +SOAP_FMAC1 prodml23__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml23__ReferenceFlow(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReferenceFlow * soap_new_prodml22__ReferenceFlow(struct soap *soap, int n = -1) +inline prodml23__ReferenceFlow * soap_new_prodml23__ReferenceFlow(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReferenceFlow(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReferenceFlow(soap, n, NULL, NULL, NULL); } -inline prodml22__ReferenceFlow * soap_new_req_prodml22__ReferenceFlow( +inline prodml23__ReferenceFlow * soap_new_req_prodml23__ReferenceFlow( struct soap *soap, const std::string& FlowReference, - const union _prodml22__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) + const union _prodml23__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) { - prodml22__ReferenceFlow *_p = gsoap_eml2_3::soap_new_prodml22__ReferenceFlow(soap); + prodml23__ReferenceFlow *_p = gsoap_eml2_3::soap_new_prodml23__ReferenceFlow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReferenceFlow::FlowReference = FlowReference; - _p->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; + _p->prodml23__ReferenceFlow::FlowReference = FlowReference; + _p->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; } return _p; } -inline prodml22__ReferenceFlow * soap_new_set_prodml22__ReferenceFlow( +inline prodml23__ReferenceFlow * soap_new_set_prodml23__ReferenceFlow( struct soap *soap, const std::string& FlowReference, int __union_AbstractRefProductFlow__1, - const union _prodml22__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) + const union _prodml23__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) { - prodml22__ReferenceFlow *_p = gsoap_eml2_3::soap_new_prodml22__ReferenceFlow(soap); + prodml23__ReferenceFlow *_p = gsoap_eml2_3::soap_new_prodml23__ReferenceFlow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReferenceFlow::FlowReference = FlowReference; - _p->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow = __union_AbstractRefProductFlow__1; - _p->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; + _p->prodml23__ReferenceFlow::FlowReference = FlowReference; + _p->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow = __union_AbstractRefProductFlow__1; + _p->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; } return _p; } -inline int soap_write_prodml22__ReferenceFlow(struct soap *soap, prodml22__ReferenceFlow const*p) +inline int soap_write_prodml23__ReferenceFlow(struct soap *soap, prodml23__ReferenceFlow const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow ? "prodml22:ReferenceFlow" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow ? "prodml23:ReferenceFlow" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReferenceFlow(struct soap *soap, const char *URL, prodml22__ReferenceFlow const*p) +inline int soap_PUT_prodml23__ReferenceFlow(struct soap *soap, const char *URL, prodml23__ReferenceFlow const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow ? "prodml22:ReferenceFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow ? "prodml23:ReferenceFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReferenceFlow(struct soap *soap, const char *URL, prodml22__ReferenceFlow const*p) +inline int soap_PATCH_prodml23__ReferenceFlow(struct soap *soap, const char *URL, prodml23__ReferenceFlow const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow ? "prodml22:ReferenceFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow ? "prodml23:ReferenceFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReferenceFlow(struct soap *soap, const char *URL, prodml22__ReferenceFlow const*p) +inline int soap_POST_send_prodml23__ReferenceFlow(struct soap *soap, const char *URL, prodml23__ReferenceFlow const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow ? "prodml22:ReferenceFlow" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow ? "prodml23:ReferenceFlow" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReferenceFlow * SOAP_FMAC4 soap_get_prodml22__ReferenceFlow(struct soap*, prodml22__ReferenceFlow *, const char*, const char*); +SOAP_FMAC3 prodml23__ReferenceFlow * SOAP_FMAC4 soap_get_prodml23__ReferenceFlow(struct soap*, prodml23__ReferenceFlow *, const char*, const char*); -inline int soap_read_prodml22__ReferenceFlow(struct soap *soap, prodml22__ReferenceFlow *p) +inline int soap_read_prodml23__ReferenceFlow(struct soap *soap, prodml23__ReferenceFlow *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReferenceFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReferenceFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReferenceFlow(struct soap *soap, const char *URL, prodml22__ReferenceFlow *p) +inline int soap_GET_prodml23__ReferenceFlow(struct soap *soap, const char *URL, prodml23__ReferenceFlow *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReferenceFlow(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReferenceFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReferenceFlow(struct soap *soap, prodml22__ReferenceFlow *p) +inline int soap_POST_recv_prodml23__ReferenceFlow(struct soap *soap, prodml23__ReferenceFlow *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReferenceFlow(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReferenceFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeRelatedFacility(struct soap*, const char*, int, const prodml22__ProductVolumeRelatedFacility *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_in_prodml22__ProductVolumeRelatedFacility(struct soap*, const char*, prodml22__ProductVolumeRelatedFacility *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeRelatedFacility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeRelatedFacility(struct soap*, const char*, int, const prodml23__ProductVolumeRelatedFacility *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_in_prodml23__ProductVolumeRelatedFacility(struct soap*, const char*, prodml23__ProductVolumeRelatedFacility *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeRelatedFacility(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeRelatedFacility * soap_new_prodml22__ProductVolumeRelatedFacility(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeRelatedFacility * soap_new_prodml23__ProductVolumeRelatedFacility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeRelatedFacility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeRelatedFacility(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeRelatedFacility * soap_new_req_prodml22__ProductVolumeRelatedFacility( +inline prodml23__ProductVolumeRelatedFacility * soap_new_req_prodml23__ProductVolumeRelatedFacility( struct soap *soap) { - prodml22__ProductVolumeRelatedFacility *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeRelatedFacility(soap); + prodml23__ProductVolumeRelatedFacility *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeRelatedFacility(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__ProductVolumeRelatedFacility * soap_new_set_prodml22__ProductVolumeRelatedFacility( +inline prodml23__ProductVolumeRelatedFacility * soap_new_set_prodml23__ProductVolumeRelatedFacility( struct soap *soap, - prodml22__ReportingFacility *Kind, - prodml22__AbstractRelatedFacilityObject *RelatedFacilityObject) + prodml23__ReportingFacility *Kind, + prodml23__AbstractRelatedFacilityObject *RelatedFacilityObject) { - prodml22__ProductVolumeRelatedFacility *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeRelatedFacility(soap); + prodml23__ProductVolumeRelatedFacility *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeRelatedFacility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeRelatedFacility::Kind = Kind; - _p->prodml22__ProductVolumeRelatedFacility::RelatedFacilityObject = RelatedFacilityObject; + _p->prodml23__ProductVolumeRelatedFacility::Kind = Kind; + _p->prodml23__ProductVolumeRelatedFacility::RelatedFacilityObject = RelatedFacilityObject; } return _p; } -inline int soap_write_prodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility const*p) +inline int soap_write_prodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility ? "prodml22:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility ? "prodml23:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeRelatedFacility const*p) +inline int soap_PUT_prodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeRelatedFacility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility ? "prodml22:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility ? "prodml23:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeRelatedFacility const*p) +inline int soap_PATCH_prodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeRelatedFacility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility ? "prodml22:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility ? "prodml23:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeRelatedFacility const*p) +inline int soap_POST_send_prodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeRelatedFacility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility ? "prodml22:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeRelatedFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility ? "prodml23:ProductVolumeRelatedFacility" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_get_prodml22__ProductVolumeRelatedFacility(struct soap*, prodml22__ProductVolumeRelatedFacility *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC4 soap_get_prodml23__ProductVolumeRelatedFacility(struct soap*, prodml23__ProductVolumeRelatedFacility *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility *p) +inline int soap_read_prodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeRelatedFacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeRelatedFacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeRelatedFacility *p) +inline int soap_GET_prodml23__ProductVolumeRelatedFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeRelatedFacility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeRelatedFacility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeRelatedFacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeRelatedFacility(struct soap *soap, prodml22__ProductVolumeRelatedFacility *p) +inline int soap_POST_recv_prodml23__ProductVolumeRelatedFacility(struct soap *soap, prodml23__ProductVolumeRelatedFacility *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeRelatedFacility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeRelatedFacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeProduct(struct soap*, const char*, int, const prodml22__ProductVolumeProduct *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml22__ProductVolumeProduct(struct soap*, const char*, prodml22__ProductVolumeProduct *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeProduct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeProduct(struct soap*, const char*, int, const prodml23__ProductVolumeProduct *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeProduct * SOAP_FMAC4 soap_in_prodml23__ProductVolumeProduct(struct soap*, const char*, prodml23__ProductVolumeProduct *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeProduct(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeProduct * soap_new_prodml22__ProductVolumeProduct(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeProduct * soap_new_prodml23__ProductVolumeProduct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeProduct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeProduct(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeProduct * soap_new_req_prodml22__ProductVolumeProduct( +inline prodml23__ProductVolumeProduct * soap_new_req_prodml23__ProductVolumeProduct( struct soap *soap, - prodml22__ReportingProduct Kind, - const std::vector & Period, + prodml23__ReportingProduct Kind, + const std::vector & Period, const std::string& uid) { - prodml22__ProductVolumeProduct *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeProduct(soap); + prodml23__ProductVolumeProduct *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeProduct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeProduct::Kind = Kind; - _p->prodml22__ProductVolumeProduct::Period = Period; - _p->prodml22__ProductVolumeProduct::uid = uid; + _p->prodml23__ProductVolumeProduct::Kind = Kind; + _p->prodml23__ProductVolumeProduct::Period = Period; + _p->prodml23__ProductVolumeProduct::uid = uid; } return _p; } -inline prodml22__ProductVolumeProduct * soap_new_set_prodml22__ProductVolumeProduct( +inline prodml23__ProductVolumeProduct * soap_new_set_prodml23__ProductVolumeProduct( struct soap *soap, - prodml22__ReportingProduct Kind, + prodml23__ReportingProduct Kind, eml23__NameStruct *Name, float *SplitFactor, eml23__MassPerMassMeasure *MassFraction, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction, - const std::vector & ComponentContent, - prodml22__AbstractRefProductFlow *SourceFlow, - const std::vector & Period, - prodml22__CommonPropertiesProductVolume *Properties, + const std::vector & ComponentContent, + prodml23__AbstractRefProductFlow *SourceFlow, + const std::vector & Period, + prodml23__CommonPropertiesProductVolume *Properties, const std::string& uid) { - prodml22__ProductVolumeProduct *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeProduct(soap); + prodml23__ProductVolumeProduct *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeProduct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeProduct::Kind = Kind; - _p->prodml22__ProductVolumeProduct::Name = Name; - _p->prodml22__ProductVolumeProduct::SplitFactor = SplitFactor; - _p->prodml22__ProductVolumeProduct::MassFraction = MassFraction; - _p->prodml22__ProductVolumeProduct::MoleFraction = MoleFraction; - _p->prodml22__ProductVolumeProduct::ComponentContent = ComponentContent; - _p->prodml22__ProductVolumeProduct::SourceFlow = SourceFlow; - _p->prodml22__ProductVolumeProduct::Period = Period; - _p->prodml22__ProductVolumeProduct::Properties = Properties; - _p->prodml22__ProductVolumeProduct::uid = uid; + _p->prodml23__ProductVolumeProduct::Kind = Kind; + _p->prodml23__ProductVolumeProduct::Name = Name; + _p->prodml23__ProductVolumeProduct::SplitFactor = SplitFactor; + _p->prodml23__ProductVolumeProduct::MassFraction = MassFraction; + _p->prodml23__ProductVolumeProduct::MoleFraction = MoleFraction; + _p->prodml23__ProductVolumeProduct::ComponentContent = ComponentContent; + _p->prodml23__ProductVolumeProduct::SourceFlow = SourceFlow; + _p->prodml23__ProductVolumeProduct::Period = Period; + _p->prodml23__ProductVolumeProduct::Properties = Properties; + _p->prodml23__ProductVolumeProduct::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct const*p) +inline int soap_write_prodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct ? "prodml22:ProductVolumeProduct" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct ? "prodml23:ProductVolumeProduct" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeProduct(struct soap *soap, const char *URL, prodml22__ProductVolumeProduct const*p) +inline int soap_PUT_prodml23__ProductVolumeProduct(struct soap *soap, const char *URL, prodml23__ProductVolumeProduct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct ? "prodml22:ProductVolumeProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct ? "prodml23:ProductVolumeProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeProduct(struct soap *soap, const char *URL, prodml22__ProductVolumeProduct const*p) +inline int soap_PATCH_prodml23__ProductVolumeProduct(struct soap *soap, const char *URL, prodml23__ProductVolumeProduct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct ? "prodml22:ProductVolumeProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct ? "prodml23:ProductVolumeProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeProduct(struct soap *soap, const char *URL, prodml22__ProductVolumeProduct const*p) +inline int soap_POST_send_prodml23__ProductVolumeProduct(struct soap *soap, const char *URL, prodml23__ProductVolumeProduct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct ? "prodml22:ProductVolumeProduct" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct ? "prodml23:ProductVolumeProduct" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeProduct * SOAP_FMAC4 soap_get_prodml22__ProductVolumeProduct(struct soap*, prodml22__ProductVolumeProduct *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeProduct * SOAP_FMAC4 soap_get_prodml23__ProductVolumeProduct(struct soap*, prodml23__ProductVolumeProduct *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct *p) +inline int soap_read_prodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeProduct(struct soap *soap, const char *URL, prodml22__ProductVolumeProduct *p) +inline int soap_GET_prodml23__ProductVolumeProduct(struct soap *soap, const char *URL, prodml23__ProductVolumeProduct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeProduct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeProduct(struct soap *soap, prodml22__ProductVolumeProduct *p) +inline int soap_POST_recv_prodml23__ProductVolumeProduct(struct soap *soap, prodml23__ProductVolumeProduct *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeProduct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumePortDifference(struct soap*, const char*, int, const prodml22__ProductVolumePortDifference *, const char*); -SOAP_FMAC3 prodml22__ProductVolumePortDifference * SOAP_FMAC4 soap_in_prodml22__ProductVolumePortDifference(struct soap*, const char*, prodml22__ProductVolumePortDifference *, const char*); -SOAP_FMAC1 prodml22__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumePortDifference(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumePortDifference(struct soap*, const char*, int, const prodml23__ProductVolumePortDifference *, const char*); +SOAP_FMAC3 prodml23__ProductVolumePortDifference * SOAP_FMAC4 soap_in_prodml23__ProductVolumePortDifference(struct soap*, const char*, prodml23__ProductVolumePortDifference *, const char*); +SOAP_FMAC1 prodml23__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumePortDifference(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumePortDifference * soap_new_prodml22__ProductVolumePortDifference(struct soap *soap, int n = -1) +inline prodml23__ProductVolumePortDifference * soap_new_prodml23__ProductVolumePortDifference(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumePortDifference(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumePortDifference(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumePortDifference * soap_new_req_prodml22__ProductVolumePortDifference( +inline prodml23__ProductVolumePortDifference * soap_new_req_prodml23__ProductVolumePortDifference( struct soap *soap, const std::string& uid) { - prodml22__ProductVolumePortDifference *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumePortDifference(soap); + prodml23__ProductVolumePortDifference *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumePortDifference(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumePortDifference::uid = uid; + _p->prodml23__ProductVolumePortDifference::uid = uid; } return _p; } -inline prodml22__ProductVolumePortDifference * soap_new_set_prodml22__ProductVolumePortDifference( +inline prodml23__ProductVolumePortDifference * soap_new_set_prodml23__ProductVolumePortDifference( struct soap *soap, std::string *PortReference, eml23__PressureMeasure *PresDiff, @@ -99156,1300 +99156,1300 @@ inline prodml22__ProductVolumePortDifference * soap_new_set_prodml22__ProductVol eml23__LengthPerLengthMeasure *ChokeRelative, const std::string& uid) { - prodml22__ProductVolumePortDifference *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumePortDifference(soap); + prodml23__ProductVolumePortDifference *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumePortDifference(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumePortDifference::PortReference = PortReference; - _p->prodml22__ProductVolumePortDifference::PresDiff = PresDiff; - _p->prodml22__ProductVolumePortDifference::TempDiff = TempDiff; - _p->prodml22__ProductVolumePortDifference::ChokeSize = ChokeSize; - _p->prodml22__ProductVolumePortDifference::ChokeRelative = ChokeRelative; - _p->prodml22__ProductVolumePortDifference::uid = uid; + _p->prodml23__ProductVolumePortDifference::PortReference = PortReference; + _p->prodml23__ProductVolumePortDifference::PresDiff = PresDiff; + _p->prodml23__ProductVolumePortDifference::TempDiff = TempDiff; + _p->prodml23__ProductVolumePortDifference::ChokeSize = ChokeSize; + _p->prodml23__ProductVolumePortDifference::ChokeRelative = ChokeRelative; + _p->prodml23__ProductVolumePortDifference::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference const*p) +inline int soap_write_prodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference ? "prodml22:ProductVolumePortDifference" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference ? "prodml23:ProductVolumePortDifference" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml22__ProductVolumePortDifference const*p) +inline int soap_PUT_prodml23__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml23__ProductVolumePortDifference const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference ? "prodml22:ProductVolumePortDifference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference ? "prodml23:ProductVolumePortDifference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml22__ProductVolumePortDifference const*p) +inline int soap_PATCH_prodml23__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml23__ProductVolumePortDifference const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference ? "prodml22:ProductVolumePortDifference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference ? "prodml23:ProductVolumePortDifference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml22__ProductVolumePortDifference const*p) +inline int soap_POST_send_prodml23__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml23__ProductVolumePortDifference const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference ? "prodml22:ProductVolumePortDifference" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePortDifference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference ? "prodml23:ProductVolumePortDifference" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumePortDifference * SOAP_FMAC4 soap_get_prodml22__ProductVolumePortDifference(struct soap*, prodml22__ProductVolumePortDifference *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumePortDifference * SOAP_FMAC4 soap_get_prodml23__ProductVolumePortDifference(struct soap*, prodml23__ProductVolumePortDifference *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference *p) +inline int soap_read_prodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumePortDifference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumePortDifference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml22__ProductVolumePortDifference *p) +inline int soap_GET_prodml23__ProductVolumePortDifference(struct soap *soap, const char *URL, prodml23__ProductVolumePortDifference *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumePortDifference(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumePortDifference(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumePortDifference(struct soap *soap, prodml22__ProductVolumePortDifference *p) +inline int soap_POST_recv_prodml23__ProductVolumePortDifference(struct soap *soap, prodml23__ProductVolumePortDifference *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumePortDifference(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumePortDifference(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumePeriod(struct soap*, const char*, int, const prodml22__ProductVolumePeriod *, const char*); -SOAP_FMAC3 prodml22__ProductVolumePeriod * SOAP_FMAC4 soap_in_prodml22__ProductVolumePeriod(struct soap*, const char*, prodml22__ProductVolumePeriod *, const char*); -SOAP_FMAC1 prodml22__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumePeriod(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumePeriod(struct soap*, const char*, int, const prodml23__ProductVolumePeriod *, const char*); +SOAP_FMAC3 prodml23__ProductVolumePeriod * SOAP_FMAC4 soap_in_prodml23__ProductVolumePeriod(struct soap*, const char*, prodml23__ProductVolumePeriod *, const char*); +SOAP_FMAC1 prodml23__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumePeriod(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumePeriod * soap_new_prodml22__ProductVolumePeriod(struct soap *soap, int n = -1) +inline prodml23__ProductVolumePeriod * soap_new_prodml23__ProductVolumePeriod(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumePeriod(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumePeriod(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumePeriod * soap_new_req_prodml22__ProductVolumePeriod( +inline prodml23__ProductVolumePeriod * soap_new_req_prodml23__ProductVolumePeriod( struct soap *soap, const std::string& uid) { - prodml22__ProductVolumePeriod *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumePeriod(soap); + prodml23__ProductVolumePeriod *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumePeriod(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumePeriod::uid = uid; + _p->prodml23__ProductVolumePeriod::uid = uid; } return _p; } -inline prodml22__ProductVolumePeriod * soap_new_set_prodml22__ProductVolumePeriod( +inline prodml23__ProductVolumePeriod * soap_new_set_prodml23__ProductVolumePeriod( struct soap *soap, - prodml22__ReportingDurationKind *Kind, - const std::vector & Comment, - const std::vector & BalanceSet, - const std::vector & ComponentContent, - prodml22__CommonPropertiesProductVolume *Properties, - prodml22__ProductVolumeAlert *Alert, - prodml22__AbstractDateTimeClass *DateTime, + prodml23__ReportingDurationKind *Kind, + const std::vector & Comment, + const std::vector & BalanceSet, + const std::vector & ComponentContent, + prodml23__CommonPropertiesProductVolume *Properties, + prodml23__ProductVolumeAlert *Alert, + prodml23__AbstractDateTimeClass *DateTime, const std::string& uid) { - prodml22__ProductVolumePeriod *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumePeriod(soap); + prodml23__ProductVolumePeriod *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumePeriod(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumePeriod::Kind = Kind; - _p->prodml22__ProductVolumePeriod::Comment = Comment; - _p->prodml22__ProductVolumePeriod::BalanceSet = BalanceSet; - _p->prodml22__ProductVolumePeriod::ComponentContent = ComponentContent; - _p->prodml22__ProductVolumePeriod::Properties = Properties; - _p->prodml22__ProductVolumePeriod::Alert = Alert; - _p->prodml22__ProductVolumePeriod::DateTime = DateTime; - _p->prodml22__ProductVolumePeriod::uid = uid; + _p->prodml23__ProductVolumePeriod::Kind = Kind; + _p->prodml23__ProductVolumePeriod::Comment = Comment; + _p->prodml23__ProductVolumePeriod::BalanceSet = BalanceSet; + _p->prodml23__ProductVolumePeriod::ComponentContent = ComponentContent; + _p->prodml23__ProductVolumePeriod::Properties = Properties; + _p->prodml23__ProductVolumePeriod::Alert = Alert; + _p->prodml23__ProductVolumePeriod::DateTime = DateTime; + _p->prodml23__ProductVolumePeriod::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod const*p) +inline int soap_write_prodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod ? "prodml22:ProductVolumePeriod" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod ? "prodml23:ProductVolumePeriod" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumePeriod(struct soap *soap, const char *URL, prodml22__ProductVolumePeriod const*p) +inline int soap_PUT_prodml23__ProductVolumePeriod(struct soap *soap, const char *URL, prodml23__ProductVolumePeriod const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod ? "prodml22:ProductVolumePeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod ? "prodml23:ProductVolumePeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumePeriod(struct soap *soap, const char *URL, prodml22__ProductVolumePeriod const*p) +inline int soap_PATCH_prodml23__ProductVolumePeriod(struct soap *soap, const char *URL, prodml23__ProductVolumePeriod const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod ? "prodml22:ProductVolumePeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod ? "prodml23:ProductVolumePeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumePeriod(struct soap *soap, const char *URL, prodml22__ProductVolumePeriod const*p) +inline int soap_POST_send_prodml23__ProductVolumePeriod(struct soap *soap, const char *URL, prodml23__ProductVolumePeriod const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod ? "prodml22:ProductVolumePeriod" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumePeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod ? "prodml23:ProductVolumePeriod" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumePeriod * SOAP_FMAC4 soap_get_prodml22__ProductVolumePeriod(struct soap*, prodml22__ProductVolumePeriod *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumePeriod * SOAP_FMAC4 soap_get_prodml23__ProductVolumePeriod(struct soap*, prodml23__ProductVolumePeriod *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod *p) +inline int soap_read_prodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumePeriod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumePeriod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumePeriod(struct soap *soap, const char *URL, prodml22__ProductVolumePeriod *p) +inline int soap_GET_prodml23__ProductVolumePeriod(struct soap *soap, const char *URL, prodml23__ProductVolumePeriod *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumePeriod(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumePeriod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumePeriod(struct soap *soap, prodml22__ProductVolumePeriod *p) +inline int soap_POST_recv_prodml23__ProductVolumePeriod(struct soap *soap, prodml23__ProductVolumePeriod *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumePeriod(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumePeriod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeParameterValue(struct soap*, const char*, int, const prodml22__ProductVolumeParameterValue *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml22__ProductVolumeParameterValue(struct soap*, const char*, prodml22__ProductVolumeParameterValue *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeParameterValue(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeParameterValue(struct soap*, const char*, int, const prodml23__ProductVolumeParameterValue *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeParameterValue * SOAP_FMAC4 soap_in_prodml23__ProductVolumeParameterValue(struct soap*, const char*, prodml23__ProductVolumeParameterValue *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeParameterValue(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeParameterValue * soap_new_prodml22__ProductVolumeParameterValue(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeParameterValue * soap_new_prodml23__ProductVolumeParameterValue(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeParameterValue(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeParameterValue(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeParameterValue * soap_new_req_prodml22__ProductVolumeParameterValue( +inline prodml23__ProductVolumeParameterValue * soap_new_req_prodml23__ProductVolumeParameterValue( struct soap *soap, - const std::vector & MeasureDataType, + const std::vector & MeasureDataType, const std::string& uid) { - prodml22__ProductVolumeParameterValue *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeParameterValue(soap); + prodml23__ProductVolumeParameterValue *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeParameterValue(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeParameterValue::MeasureDataType = MeasureDataType; - _p->prodml22__ProductVolumeParameterValue::uid = uid; + _p->prodml23__ProductVolumeParameterValue::MeasureDataType = MeasureDataType; + _p->prodml23__ProductVolumeParameterValue::uid = uid; } return _p; } -inline prodml22__ProductVolumeParameterValue * soap_new_set_prodml22__ProductVolumeParameterValue( +inline prodml23__ProductVolumeParameterValue * soap_new_set_prodml23__ProductVolumeParameterValue( struct soap *soap, struct tm *DTim, struct tm *DTimEnd, std::string *Port, std::string *Unit, - const std::vector & MeasureDataType, - prodml22__ProductVolumeAlert *Alert, + const std::vector & MeasureDataType, + prodml23__ProductVolumeAlert *Alert, const std::string& uid) { - prodml22__ProductVolumeParameterValue *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeParameterValue(soap); + prodml23__ProductVolumeParameterValue *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeParameterValue(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeParameterValue::DTim = DTim; - _p->prodml22__ProductVolumeParameterValue::DTimEnd = DTimEnd; - _p->prodml22__ProductVolumeParameterValue::Port = Port; - _p->prodml22__ProductVolumeParameterValue::Unit = Unit; - _p->prodml22__ProductVolumeParameterValue::MeasureDataType = MeasureDataType; - _p->prodml22__ProductVolumeParameterValue::Alert = Alert; - _p->prodml22__ProductVolumeParameterValue::uid = uid; + _p->prodml23__ProductVolumeParameterValue::DTim = DTim; + _p->prodml23__ProductVolumeParameterValue::DTimEnd = DTimEnd; + _p->prodml23__ProductVolumeParameterValue::Port = Port; + _p->prodml23__ProductVolumeParameterValue::Unit = Unit; + _p->prodml23__ProductVolumeParameterValue::MeasureDataType = MeasureDataType; + _p->prodml23__ProductVolumeParameterValue::Alert = Alert; + _p->prodml23__ProductVolumeParameterValue::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue const*p) +inline int soap_write_prodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue ? "prodml22:ProductVolumeParameterValue" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue ? "prodml23:ProductVolumeParameterValue" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterValue const*p) +inline int soap_PUT_prodml23__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterValue const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue ? "prodml22:ProductVolumeParameterValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue ? "prodml23:ProductVolumeParameterValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterValue const*p) +inline int soap_PATCH_prodml23__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterValue const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue ? "prodml22:ProductVolumeParameterValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue ? "prodml23:ProductVolumeParameterValue" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterValue const*p) +inline int soap_POST_send_prodml23__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterValue const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue ? "prodml22:ProductVolumeParameterValue" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterValue", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue ? "prodml23:ProductVolumeParameterValue" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeParameterValue * SOAP_FMAC4 soap_get_prodml22__ProductVolumeParameterValue(struct soap*, prodml22__ProductVolumeParameterValue *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeParameterValue * SOAP_FMAC4 soap_get_prodml23__ProductVolumeParameterValue(struct soap*, prodml23__ProductVolumeParameterValue *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue *p) +inline int soap_read_prodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeParameterValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeParameterValue(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterValue *p) +inline int soap_GET_prodml23__ProductVolumeParameterValue(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterValue *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeParameterValue(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeParameterValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeParameterValue(struct soap *soap, prodml22__ProductVolumeParameterValue *p) +inline int soap_POST_recv_prodml23__ProductVolumeParameterValue(struct soap *soap, prodml23__ProductVolumeParameterValue *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeParameterValue(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeParameterValue(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeParameterSet(struct soap*, const char*, int, const prodml22__ProductVolumeParameterSet *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml22__ProductVolumeParameterSet(struct soap*, const char*, prodml22__ProductVolumeParameterSet *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeParameterSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeParameterSet(struct soap*, const char*, int, const prodml23__ProductVolumeParameterSet *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeParameterSet * SOAP_FMAC4 soap_in_prodml23__ProductVolumeParameterSet(struct soap*, const char*, prodml23__ProductVolumeParameterSet *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeParameterSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeParameterSet * soap_new_prodml22__ProductVolumeParameterSet(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeParameterSet * soap_new_prodml23__ProductVolumeParameterSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeParameterSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeParameterSet(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeParameterSet * soap_new_req_prodml22__ProductVolumeParameterSet( +inline prodml23__ProductVolumeParameterSet * soap_new_req_prodml23__ProductVolumeParameterSet( struct soap *soap, - prodml22__FacilityParameter Name, - const std::vector & Parameter, + prodml23__FacilityParameter Name, + const std::vector & Parameter, const std::string& uid) { - prodml22__ProductVolumeParameterSet *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeParameterSet(soap); + prodml23__ProductVolumeParameterSet *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeParameterSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeParameterSet::Name = Name; - _p->prodml22__ProductVolumeParameterSet::Parameter = Parameter; - _p->prodml22__ProductVolumeParameterSet::uid = uid; + _p->prodml23__ProductVolumeParameterSet::Name = Name; + _p->prodml23__ProductVolumeParameterSet::Parameter = Parameter; + _p->prodml23__ProductVolumeParameterSet::uid = uid; } return _p; } -inline prodml22__ProductVolumeParameterSet * soap_new_set_prodml22__ProductVolumeParameterSet( +inline prodml23__ProductVolumeParameterSet * soap_new_set_prodml23__ProductVolumeParameterSet( struct soap *soap, - prodml22__FacilityParameter Name, + prodml23__FacilityParameter Name, std::string *ChildFacilityIdentifier, std::string *Port, eml23__MeasureClass *MeasureClass, std::string *CoordinateReferenceSystem, - prodml22__FlowQualifier *Qualifier, - prodml22__FlowSubQualifier *SubQualifier, + prodml23__FlowQualifier *Qualifier, + prodml23__FlowSubQualifier *SubQualifier, struct tm *Version, std::string *VersionSource, - prodml22__ReportingProduct *Product, - prodml22__ReportingDurationKind *PeriodKind, + prodml23__ReportingProduct *Product, + prodml23__ReportingDurationKind *PeriodKind, std::string *Comment, - const std::vector & Parameter, - const std::vector & CurveDefinition, + const std::vector & Parameter, + const std::vector & CurveDefinition, const std::string& uid) { - prodml22__ProductVolumeParameterSet *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeParameterSet(soap); + prodml23__ProductVolumeParameterSet *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeParameterSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeParameterSet::Name = Name; - _p->prodml22__ProductVolumeParameterSet::ChildFacilityIdentifier = ChildFacilityIdentifier; - _p->prodml22__ProductVolumeParameterSet::Port = Port; - _p->prodml22__ProductVolumeParameterSet::MeasureClass = MeasureClass; - _p->prodml22__ProductVolumeParameterSet::CoordinateReferenceSystem = CoordinateReferenceSystem; - _p->prodml22__ProductVolumeParameterSet::Qualifier = Qualifier; - _p->prodml22__ProductVolumeParameterSet::SubQualifier = SubQualifier; - _p->prodml22__ProductVolumeParameterSet::Version = Version; - _p->prodml22__ProductVolumeParameterSet::VersionSource = VersionSource; - _p->prodml22__ProductVolumeParameterSet::Product = Product; - _p->prodml22__ProductVolumeParameterSet::PeriodKind = PeriodKind; - _p->prodml22__ProductVolumeParameterSet::Comment = Comment; - _p->prodml22__ProductVolumeParameterSet::Parameter = Parameter; - _p->prodml22__ProductVolumeParameterSet::CurveDefinition = CurveDefinition; - _p->prodml22__ProductVolumeParameterSet::uid = uid; + _p->prodml23__ProductVolumeParameterSet::Name = Name; + _p->prodml23__ProductVolumeParameterSet::ChildFacilityIdentifier = ChildFacilityIdentifier; + _p->prodml23__ProductVolumeParameterSet::Port = Port; + _p->prodml23__ProductVolumeParameterSet::MeasureClass = MeasureClass; + _p->prodml23__ProductVolumeParameterSet::CoordinateReferenceSystem = CoordinateReferenceSystem; + _p->prodml23__ProductVolumeParameterSet::Qualifier = Qualifier; + _p->prodml23__ProductVolumeParameterSet::SubQualifier = SubQualifier; + _p->prodml23__ProductVolumeParameterSet::Version = Version; + _p->prodml23__ProductVolumeParameterSet::VersionSource = VersionSource; + _p->prodml23__ProductVolumeParameterSet::Product = Product; + _p->prodml23__ProductVolumeParameterSet::PeriodKind = PeriodKind; + _p->prodml23__ProductVolumeParameterSet::Comment = Comment; + _p->prodml23__ProductVolumeParameterSet::Parameter = Parameter; + _p->prodml23__ProductVolumeParameterSet::CurveDefinition = CurveDefinition; + _p->prodml23__ProductVolumeParameterSet::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet const*p) +inline int soap_write_prodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet ? "prodml22:ProductVolumeParameterSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet ? "prodml23:ProductVolumeParameterSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterSet const*p) +inline int soap_PUT_prodml23__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet ? "prodml22:ProductVolumeParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet ? "prodml23:ProductVolumeParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterSet const*p) +inline int soap_PATCH_prodml23__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet ? "prodml22:ProductVolumeParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet ? "prodml23:ProductVolumeParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterSet const*p) +inline int soap_POST_send_prodml23__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet ? "prodml22:ProductVolumeParameterSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet ? "prodml23:ProductVolumeParameterSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeParameterSet * SOAP_FMAC4 soap_get_prodml22__ProductVolumeParameterSet(struct soap*, prodml22__ProductVolumeParameterSet *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeParameterSet * SOAP_FMAC4 soap_get_prodml23__ProductVolumeParameterSet(struct soap*, prodml23__ProductVolumeParameterSet *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet *p) +inline int soap_read_prodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeParameterSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeParameterSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml22__ProductVolumeParameterSet *p) +inline int soap_GET_prodml23__ProductVolumeParameterSet(struct soap *soap, const char *URL, prodml23__ProductVolumeParameterSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeParameterSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeParameterSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeParameterSet(struct soap *soap, prodml22__ProductVolumeParameterSet *p) +inline int soap_POST_recv_prodml23__ProductVolumeParameterSet(struct soap *soap, prodml23__ProductVolumeParameterSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeParameterSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeParameterSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeFlow(struct soap*, const char*, int, const prodml22__ProductVolumeFlow *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeFlow * SOAP_FMAC4 soap_in_prodml22__ProductVolumeFlow(struct soap*, const char*, prodml22__ProductVolumeFlow *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeFlow(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeFlow(struct soap*, const char*, int, const prodml23__ProductVolumeFlow *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeFlow * SOAP_FMAC4 soap_in_prodml23__ProductVolumeFlow(struct soap*, const char*, prodml23__ProductVolumeFlow *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeFlow(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeFlow * soap_new_prodml22__ProductVolumeFlow(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeFlow * soap_new_prodml23__ProductVolumeFlow(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeFlow(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeFlow(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeFlow * soap_new_req_prodml22__ProductVolumeFlow( +inline prodml23__ProductVolumeFlow * soap_new_req_prodml23__ProductVolumeFlow( struct soap *soap, - prodml22__ReportingFlow Kind, + prodml23__ReportingFlow Kind, const std::string& uid) { - prodml22__ProductVolumeFlow *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeFlow(soap); + prodml23__ProductVolumeFlow *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeFlow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeFlow::Kind = Kind; - _p->prodml22__ProductVolumeFlow::uid = uid; + _p->prodml23__ProductVolumeFlow::Kind = Kind; + _p->prodml23__ProductVolumeFlow::uid = uid; } return _p; } -inline prodml22__ProductVolumeFlow * soap_new_set_prodml22__ProductVolumeFlow( +inline prodml23__ProductVolumeFlow * soap_new_set_prodml23__ProductVolumeFlow( struct soap *soap, std::string *Name, - prodml22__ReportingFlow Kind, + prodml23__ReportingFlow Kind, std::string *Port, - prodml22__ProductFlowPortType *Direction, - prodml22__FacilityIdentifierStruct *Facility, + prodml23__ProductFlowPortType *Direction, + prodml23__FacilityIdentifierStruct *Facility, const std::vector & FacilityAlias, - prodml22__FlowQualifier *Qualifier, - prodml22__FlowSubQualifier *SubQualifier, + prodml23__FlowQualifier *Qualifier, + prodml23__FlowSubQualifier *SubQualifier, struct tm *Version, std::string *VersionSource, std::string *SourceFlow, - prodml22__ProductVolumeRelatedFacility *RelatedFacility, - const std::vector & Product, - prodml22__CommonPropertiesProductVolume *Properties, + prodml23__ProductVolumeRelatedFacility *RelatedFacility, + const std::vector & Product, + prodml23__CommonPropertiesProductVolume *Properties, const std::string& uid) { - prodml22__ProductVolumeFlow *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeFlow(soap); + prodml23__ProductVolumeFlow *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeFlow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeFlow::Name = Name; - _p->prodml22__ProductVolumeFlow::Kind = Kind; - _p->prodml22__ProductVolumeFlow::Port = Port; - _p->prodml22__ProductVolumeFlow::Direction = Direction; - _p->prodml22__ProductVolumeFlow::Facility = Facility; - _p->prodml22__ProductVolumeFlow::FacilityAlias = FacilityAlias; - _p->prodml22__ProductVolumeFlow::Qualifier = Qualifier; - _p->prodml22__ProductVolumeFlow::SubQualifier = SubQualifier; - _p->prodml22__ProductVolumeFlow::Version = Version; - _p->prodml22__ProductVolumeFlow::VersionSource = VersionSource; - _p->prodml22__ProductVolumeFlow::SourceFlow = SourceFlow; - _p->prodml22__ProductVolumeFlow::RelatedFacility = RelatedFacility; - _p->prodml22__ProductVolumeFlow::Product = Product; - _p->prodml22__ProductVolumeFlow::Properties = Properties; - _p->prodml22__ProductVolumeFlow::uid = uid; + _p->prodml23__ProductVolumeFlow::Name = Name; + _p->prodml23__ProductVolumeFlow::Kind = Kind; + _p->prodml23__ProductVolumeFlow::Port = Port; + _p->prodml23__ProductVolumeFlow::Direction = Direction; + _p->prodml23__ProductVolumeFlow::Facility = Facility; + _p->prodml23__ProductVolumeFlow::FacilityAlias = FacilityAlias; + _p->prodml23__ProductVolumeFlow::Qualifier = Qualifier; + _p->prodml23__ProductVolumeFlow::SubQualifier = SubQualifier; + _p->prodml23__ProductVolumeFlow::Version = Version; + _p->prodml23__ProductVolumeFlow::VersionSource = VersionSource; + _p->prodml23__ProductVolumeFlow::SourceFlow = SourceFlow; + _p->prodml23__ProductVolumeFlow::RelatedFacility = RelatedFacility; + _p->prodml23__ProductVolumeFlow::Product = Product; + _p->prodml23__ProductVolumeFlow::Properties = Properties; + _p->prodml23__ProductVolumeFlow::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow const*p) +inline int soap_write_prodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow ? "prodml22:ProductVolumeFlow" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow ? "prodml23:ProductVolumeFlow" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeFlow(struct soap *soap, const char *URL, prodml22__ProductVolumeFlow const*p) +inline int soap_PUT_prodml23__ProductVolumeFlow(struct soap *soap, const char *URL, prodml23__ProductVolumeFlow const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow ? "prodml22:ProductVolumeFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow ? "prodml23:ProductVolumeFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeFlow(struct soap *soap, const char *URL, prodml22__ProductVolumeFlow const*p) +inline int soap_PATCH_prodml23__ProductVolumeFlow(struct soap *soap, const char *URL, prodml23__ProductVolumeFlow const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow ? "prodml22:ProductVolumeFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow ? "prodml23:ProductVolumeFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeFlow(struct soap *soap, const char *URL, prodml22__ProductVolumeFlow const*p) +inline int soap_POST_send_prodml23__ProductVolumeFlow(struct soap *soap, const char *URL, prodml23__ProductVolumeFlow const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow ? "prodml22:ProductVolumeFlow" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow ? "prodml23:ProductVolumeFlow" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeFlow * SOAP_FMAC4 soap_get_prodml22__ProductVolumeFlow(struct soap*, prodml22__ProductVolumeFlow *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeFlow * SOAP_FMAC4 soap_get_prodml23__ProductVolumeFlow(struct soap*, prodml23__ProductVolumeFlow *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow *p) +inline int soap_read_prodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeFlow(struct soap *soap, const char *URL, prodml22__ProductVolumeFlow *p) +inline int soap_GET_prodml23__ProductVolumeFlow(struct soap *soap, const char *URL, prodml23__ProductVolumeFlow *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeFlow(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeFlow(struct soap *soap, prodml22__ProductVolumeFlow *p) +inline int soap_POST_recv_prodml23__ProductVolumeFlow(struct soap *soap, prodml23__ProductVolumeFlow *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeFlow(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeFacility(struct soap*, const char*, int, const prodml22__ProductVolumeFacility *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml22__ProductVolumeFacility(struct soap*, const char*, prodml22__ProductVolumeFacility *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeFacility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeFacility(struct soap*, const char*, int, const prodml23__ProductVolumeFacility *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeFacility * SOAP_FMAC4 soap_in_prodml23__ProductVolumeFacility(struct soap*, const char*, prodml23__ProductVolumeFacility *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeFacility(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeFacility * soap_new_prodml22__ProductVolumeFacility(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeFacility * soap_new_prodml23__ProductVolumeFacility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeFacility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeFacility(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeFacility * soap_new_req_prodml22__ProductVolumeFacility( +inline prodml23__ProductVolumeFacility * soap_new_req_prodml23__ProductVolumeFacility( struct soap *soap, - prodml22__FacilityIdentifierStruct *Name, + prodml23__FacilityIdentifierStruct *Name, const std::string& uid) { - prodml22__ProductVolumeFacility *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeFacility(soap); + prodml23__ProductVolumeFacility *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeFacility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeFacility::Name = Name; - _p->prodml22__ProductVolumeFacility::uid = uid; + _p->prodml23__ProductVolumeFacility::Name = Name; + _p->prodml23__ProductVolumeFacility::uid = uid; } return _p; } -inline prodml22__ProductVolumeFacility * soap_new_set_prodml22__ProductVolumeFacility( +inline prodml23__ProductVolumeFacility * soap_new_set_prodml23__ProductVolumeFacility( struct soap *soap, - prodml22__FacilityIdentifierStruct *FacilityParent, - prodml22__FacilityIdentifierStruct *FacilityParent2, + prodml23__FacilityIdentifierStruct *FacilityParent, + prodml23__FacilityIdentifierStruct *FacilityParent2, const std::vector & FacilityAlias, std::string *Unit, std::string *NetWork, - prodml22__FacilityIdentifierStruct *Name, + prodml23__FacilityIdentifierStruct *Name, eml23__WellStatus *StatusWell, - prodml22__WellFluid *FluidWell, - prodml22__WellOperationMethod *OperatingMethod, + prodml23__WellFluid *FluidWell, + prodml23__WellOperationMethod *OperatingMethod, bool *WellProducing, bool *WellInjecting, eml23__VolumeMeasure *Capacity, eml23__TimeMeasure *OperationTime, - const std::vector & Flow, - const std::vector & ParameterSet, - const std::vector & Comment, - const std::vector & DowntimeReason, + const std::vector & Flow, + const std::vector & ParameterSet, + const std::vector & Comment, + const std::vector & DowntimeReason, const std::string& uid) { - prodml22__ProductVolumeFacility *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeFacility(soap); + prodml23__ProductVolumeFacility *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeFacility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeFacility::FacilityParent = FacilityParent; - _p->prodml22__ProductVolumeFacility::FacilityParent2 = FacilityParent2; - _p->prodml22__ProductVolumeFacility::FacilityAlias = FacilityAlias; - _p->prodml22__ProductVolumeFacility::Unit = Unit; - _p->prodml22__ProductVolumeFacility::NetWork = NetWork; - _p->prodml22__ProductVolumeFacility::Name = Name; - _p->prodml22__ProductVolumeFacility::StatusWell = StatusWell; - _p->prodml22__ProductVolumeFacility::FluidWell = FluidWell; - _p->prodml22__ProductVolumeFacility::OperatingMethod = OperatingMethod; - _p->prodml22__ProductVolumeFacility::WellProducing = WellProducing; - _p->prodml22__ProductVolumeFacility::WellInjecting = WellInjecting; - _p->prodml22__ProductVolumeFacility::Capacity = Capacity; - _p->prodml22__ProductVolumeFacility::OperationTime = OperationTime; - _p->prodml22__ProductVolumeFacility::Flow = Flow; - _p->prodml22__ProductVolumeFacility::ParameterSet = ParameterSet; - _p->prodml22__ProductVolumeFacility::Comment = Comment; - _p->prodml22__ProductVolumeFacility::DowntimeReason = DowntimeReason; - _p->prodml22__ProductVolumeFacility::uid = uid; + _p->prodml23__ProductVolumeFacility::FacilityParent = FacilityParent; + _p->prodml23__ProductVolumeFacility::FacilityParent2 = FacilityParent2; + _p->prodml23__ProductVolumeFacility::FacilityAlias = FacilityAlias; + _p->prodml23__ProductVolumeFacility::Unit = Unit; + _p->prodml23__ProductVolumeFacility::NetWork = NetWork; + _p->prodml23__ProductVolumeFacility::Name = Name; + _p->prodml23__ProductVolumeFacility::StatusWell = StatusWell; + _p->prodml23__ProductVolumeFacility::FluidWell = FluidWell; + _p->prodml23__ProductVolumeFacility::OperatingMethod = OperatingMethod; + _p->prodml23__ProductVolumeFacility::WellProducing = WellProducing; + _p->prodml23__ProductVolumeFacility::WellInjecting = WellInjecting; + _p->prodml23__ProductVolumeFacility::Capacity = Capacity; + _p->prodml23__ProductVolumeFacility::OperationTime = OperationTime; + _p->prodml23__ProductVolumeFacility::Flow = Flow; + _p->prodml23__ProductVolumeFacility::ParameterSet = ParameterSet; + _p->prodml23__ProductVolumeFacility::Comment = Comment; + _p->prodml23__ProductVolumeFacility::DowntimeReason = DowntimeReason; + _p->prodml23__ProductVolumeFacility::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility const*p) +inline int soap_write_prodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility ? "prodml22:ProductVolumeFacility" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility ? "prodml23:ProductVolumeFacility" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeFacility const*p) +inline int soap_PUT_prodml23__ProductVolumeFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeFacility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility ? "prodml22:ProductVolumeFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility ? "prodml23:ProductVolumeFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeFacility const*p) +inline int soap_PATCH_prodml23__ProductVolumeFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeFacility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility ? "prodml22:ProductVolumeFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility ? "prodml23:ProductVolumeFacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeFacility const*p) +inline int soap_POST_send_prodml23__ProductVolumeFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeFacility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility ? "prodml22:ProductVolumeFacility" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeFacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility ? "prodml23:ProductVolumeFacility" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeFacility * SOAP_FMAC4 soap_get_prodml22__ProductVolumeFacility(struct soap*, prodml22__ProductVolumeFacility *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeFacility * SOAP_FMAC4 soap_get_prodml23__ProductVolumeFacility(struct soap*, prodml23__ProductVolumeFacility *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility *p) +inline int soap_read_prodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeFacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeFacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeFacility(struct soap *soap, const char *URL, prodml22__ProductVolumeFacility *p) +inline int soap_GET_prodml23__ProductVolumeFacility(struct soap *soap, const char *URL, prodml23__ProductVolumeFacility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeFacility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeFacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeFacility(struct soap *soap, prodml22__ProductVolumeFacility *p) +inline int soap_POST_recv_prodml23__ProductVolumeFacility(struct soap *soap, prodml23__ProductVolumeFacility *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeFacility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeFacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeDestination(struct soap*, const char*, int, const prodml22__ProductVolumeDestination *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeDestination * SOAP_FMAC4 soap_in_prodml22__ProductVolumeDestination(struct soap*, const char*, prodml22__ProductVolumeDestination *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeDestination(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeDestination(struct soap*, const char*, int, const prodml23__ProductVolumeDestination *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeDestination * SOAP_FMAC4 soap_in_prodml23__ProductVolumeDestination(struct soap*, const char*, prodml23__ProductVolumeDestination *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeDestination(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeDestination * soap_new_prodml22__ProductVolumeDestination(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeDestination * soap_new_prodml23__ProductVolumeDestination(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeDestination(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeDestination(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeDestination * soap_new_req_prodml22__ProductVolumeDestination( +inline prodml23__ProductVolumeDestination * soap_new_req_prodml23__ProductVolumeDestination( struct soap *soap) { - prodml22__ProductVolumeDestination *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeDestination(soap); + prodml23__ProductVolumeDestination *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeDestination(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__ProductVolumeDestination * soap_new_set_prodml22__ProductVolumeDestination( +inline prodml23__ProductVolumeDestination * soap_new_set_prodml23__ProductVolumeDestination( struct soap *soap, std::string *Name, - prodml22__BalanceDestinationType *Type, + prodml23__BalanceDestinationType *Type, std::string *Country) { - prodml22__ProductVolumeDestination *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeDestination(soap); + prodml23__ProductVolumeDestination *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeDestination(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeDestination::Name = Name; - _p->prodml22__ProductVolumeDestination::Type = Type; - _p->prodml22__ProductVolumeDestination::Country = Country; + _p->prodml23__ProductVolumeDestination::Name = Name; + _p->prodml23__ProductVolumeDestination::Type = Type; + _p->prodml23__ProductVolumeDestination::Country = Country; } return _p; } -inline int soap_write_prodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination const*p) +inline int soap_write_prodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination ? "prodml22:ProductVolumeDestination" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination ? "prodml23:ProductVolumeDestination" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeDestination(struct soap *soap, const char *URL, prodml22__ProductVolumeDestination const*p) +inline int soap_PUT_prodml23__ProductVolumeDestination(struct soap *soap, const char *URL, prodml23__ProductVolumeDestination const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination ? "prodml22:ProductVolumeDestination" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination ? "prodml23:ProductVolumeDestination" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeDestination(struct soap *soap, const char *URL, prodml22__ProductVolumeDestination const*p) +inline int soap_PATCH_prodml23__ProductVolumeDestination(struct soap *soap, const char *URL, prodml23__ProductVolumeDestination const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination ? "prodml22:ProductVolumeDestination" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination ? "prodml23:ProductVolumeDestination" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeDestination(struct soap *soap, const char *URL, prodml22__ProductVolumeDestination const*p) +inline int soap_POST_send_prodml23__ProductVolumeDestination(struct soap *soap, const char *URL, prodml23__ProductVolumeDestination const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination ? "prodml22:ProductVolumeDestination" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeDestination", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination ? "prodml23:ProductVolumeDestination" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeDestination * SOAP_FMAC4 soap_get_prodml22__ProductVolumeDestination(struct soap*, prodml22__ProductVolumeDestination *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeDestination * SOAP_FMAC4 soap_get_prodml23__ProductVolumeDestination(struct soap*, prodml23__ProductVolumeDestination *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination *p) +inline int soap_read_prodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeDestination(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeDestination(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeDestination(struct soap *soap, const char *URL, prodml22__ProductVolumeDestination *p) +inline int soap_GET_prodml23__ProductVolumeDestination(struct soap *soap, const char *URL, prodml23__ProductVolumeDestination *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeDestination(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeDestination(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeDestination(struct soap *soap, prodml22__ProductVolumeDestination *p) +inline int soap_POST_recv_prodml23__ProductVolumeDestination(struct soap *soap, prodml23__ProductVolumeDestination *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeDestination(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeDestination(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeComponentContent(struct soap*, const char*, int, const prodml22__ProductVolumeComponentContent *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeComponentContent * SOAP_FMAC4 soap_in_prodml22__ProductVolumeComponentContent(struct soap*, const char*, prodml22__ProductVolumeComponentContent *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeComponentContent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeComponentContent(struct soap*, const char*, int, const prodml23__ProductVolumeComponentContent *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeComponentContent * SOAP_FMAC4 soap_in_prodml23__ProductVolumeComponentContent(struct soap*, const char*, prodml23__ProductVolumeComponentContent *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeComponentContent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeComponentContent * soap_new_prodml22__ProductVolumeComponentContent(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeComponentContent * soap_new_prodml23__ProductVolumeComponentContent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeComponentContent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeComponentContent(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeComponentContent * soap_new_req_prodml22__ProductVolumeComponentContent( +inline prodml23__ProductVolumeComponentContent * soap_new_req_prodml23__ProductVolumeComponentContent( struct soap *soap, - prodml22__ReportingProduct Kind, + prodml23__ReportingProduct Kind, const std::string& uid) { - prodml22__ProductVolumeComponentContent *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeComponentContent(soap); + prodml23__ProductVolumeComponentContent *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeComponentContent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeComponentContent::Kind = Kind; - _p->prodml22__ProductVolumeComponentContent::uid = uid; + _p->prodml23__ProductVolumeComponentContent::Kind = Kind; + _p->prodml23__ProductVolumeComponentContent::uid = uid; } return _p; } -inline prodml22__ProductVolumeComponentContent * soap_new_set_prodml22__ProductVolumeComponentContent( +inline prodml23__ProductVolumeComponentContent * soap_new_set_prodml23__ProductVolumeComponentContent( struct soap *soap, - prodml22__ReportingProduct Kind, - prodml22__ReportingProduct *ReferenceKind, - prodml22__CommonPropertiesProductVolume *Properties, + prodml23__ReportingProduct Kind, + prodml23__ReportingProduct *ReferenceKind, + prodml23__CommonPropertiesProductVolume *Properties, const std::string& uid) { - prodml22__ProductVolumeComponentContent *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeComponentContent(soap); + prodml23__ProductVolumeComponentContent *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeComponentContent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeComponentContent::Kind = Kind; - _p->prodml22__ProductVolumeComponentContent::ReferenceKind = ReferenceKind; - _p->prodml22__ProductVolumeComponentContent::Properties = Properties; - _p->prodml22__ProductVolumeComponentContent::uid = uid; + _p->prodml23__ProductVolumeComponentContent::Kind = Kind; + _p->prodml23__ProductVolumeComponentContent::ReferenceKind = ReferenceKind; + _p->prodml23__ProductVolumeComponentContent::Properties = Properties; + _p->prodml23__ProductVolumeComponentContent::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent const*p) +inline int soap_write_prodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent ? "prodml22:ProductVolumeComponentContent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent ? "prodml23:ProductVolumeComponentContent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml22__ProductVolumeComponentContent const*p) +inline int soap_PUT_prodml23__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml23__ProductVolumeComponentContent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent ? "prodml22:ProductVolumeComponentContent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent ? "prodml23:ProductVolumeComponentContent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml22__ProductVolumeComponentContent const*p) +inline int soap_PATCH_prodml23__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml23__ProductVolumeComponentContent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent ? "prodml22:ProductVolumeComponentContent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent ? "prodml23:ProductVolumeComponentContent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml22__ProductVolumeComponentContent const*p) +inline int soap_POST_send_prodml23__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml23__ProductVolumeComponentContent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent ? "prodml22:ProductVolumeComponentContent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeComponentContent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent ? "prodml23:ProductVolumeComponentContent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeComponentContent * SOAP_FMAC4 soap_get_prodml22__ProductVolumeComponentContent(struct soap*, prodml22__ProductVolumeComponentContent *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeComponentContent * SOAP_FMAC4 soap_get_prodml23__ProductVolumeComponentContent(struct soap*, prodml23__ProductVolumeComponentContent *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent *p) +inline int soap_read_prodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeComponentContent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeComponentContent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml22__ProductVolumeComponentContent *p) +inline int soap_GET_prodml23__ProductVolumeComponentContent(struct soap *soap, const char *URL, prodml23__ProductVolumeComponentContent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeComponentContent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeComponentContent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeComponentContent(struct soap *soap, prodml22__ProductVolumeComponentContent *p) +inline int soap_POST_recv_prodml23__ProductVolumeComponentContent(struct soap *soap, prodml23__ProductVolumeComponentContent *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeComponentContent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeComponentContent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBusinessUnit(struct soap*, const char*, int, const prodml22__ProductVolumeBusinessUnit *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBusinessUnit(struct soap*, const char*, prodml22__ProductVolumeBusinessUnit *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBusinessUnit(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBusinessUnit(struct soap*, const char*, int, const prodml23__ProductVolumeBusinessUnit *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBusinessUnit(struct soap*, const char*, prodml23__ProductVolumeBusinessUnit *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBusinessUnit(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeBusinessUnit * soap_new_prodml22__ProductVolumeBusinessUnit(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeBusinessUnit * soap_new_prodml23__ProductVolumeBusinessUnit(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeBusinessUnit(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeBusinessUnit(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeBusinessUnit * soap_new_req_prodml22__ProductVolumeBusinessUnit( +inline prodml23__ProductVolumeBusinessUnit * soap_new_req_prodml23__ProductVolumeBusinessUnit( struct soap *soap, - prodml22__BusinessUnitKind Kind, + prodml23__BusinessUnitKind Kind, const std::string& uid) { - prodml22__ProductVolumeBusinessUnit *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBusinessUnit(soap); + prodml23__ProductVolumeBusinessUnit *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBusinessUnit(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBusinessUnit::Kind = Kind; - _p->prodml22__ProductVolumeBusinessUnit::uid = uid; + _p->prodml23__ProductVolumeBusinessUnit::Kind = Kind; + _p->prodml23__ProductVolumeBusinessUnit::uid = uid; } return _p; } -inline prodml22__ProductVolumeBusinessUnit * soap_new_set_prodml22__ProductVolumeBusinessUnit( +inline prodml23__ProductVolumeBusinessUnit * soap_new_set_prodml23__ProductVolumeBusinessUnit( struct soap *soap, - prodml22__BusinessUnitKind Kind, + prodml23__BusinessUnitKind Kind, std::string *Name, std::string *Description, - const std::vector & SubUnit, + const std::vector & SubUnit, const std::string& uid) { - prodml22__ProductVolumeBusinessUnit *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBusinessUnit(soap); + prodml23__ProductVolumeBusinessUnit *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBusinessUnit(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBusinessUnit::Kind = Kind; - _p->prodml22__ProductVolumeBusinessUnit::Name = Name; - _p->prodml22__ProductVolumeBusinessUnit::Description = Description; - _p->prodml22__ProductVolumeBusinessUnit::SubUnit = SubUnit; - _p->prodml22__ProductVolumeBusinessUnit::uid = uid; + _p->prodml23__ProductVolumeBusinessUnit::Kind = Kind; + _p->prodml23__ProductVolumeBusinessUnit::Name = Name; + _p->prodml23__ProductVolumeBusinessUnit::Description = Description; + _p->prodml23__ProductVolumeBusinessUnit::SubUnit = SubUnit; + _p->prodml23__ProductVolumeBusinessUnit::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit const*p) +inline int soap_write_prodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit ? "prodml22:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit ? "prodml23:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessUnit const*p) +inline int soap_PUT_prodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessUnit const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit ? "prodml22:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit ? "prodml23:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessUnit const*p) +inline int soap_PATCH_prodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessUnit const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit ? "prodml22:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit ? "prodml23:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessUnit const*p) +inline int soap_POST_send_prodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessUnit const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit ? "prodml22:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit ? "prodml23:ProductVolumeBusinessUnit" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBusinessUnit(struct soap*, prodml22__ProductVolumeBusinessUnit *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBusinessUnit(struct soap*, prodml23__ProductVolumeBusinessUnit *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit *p) +inline int soap_read_prodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeBusinessUnit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeBusinessUnit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessUnit *p) +inline int soap_GET_prodml23__ProductVolumeBusinessUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessUnit *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeBusinessUnit(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeBusinessUnit(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeBusinessUnit(struct soap *soap, prodml22__ProductVolumeBusinessUnit *p) +inline int soap_POST_recv_prodml23__ProductVolumeBusinessUnit(struct soap *soap, prodml23__ProductVolumeBusinessUnit *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeBusinessUnit(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeBusinessUnit(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBusinessSubUnit(struct soap*, const char*, int, const prodml22__ProductVolumeBusinessSubUnit *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBusinessSubUnit(struct soap*, const char*, prodml22__ProductVolumeBusinessSubUnit *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBusinessSubUnit(struct soap*, const char*, int, const prodml23__ProductVolumeBusinessSubUnit *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBusinessSubUnit(struct soap*, const char*, prodml23__ProductVolumeBusinessSubUnit *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeBusinessSubUnit * soap_new_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeBusinessSubUnit * soap_new_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeBusinessSubUnit * soap_new_req_prodml22__ProductVolumeBusinessSubUnit( +inline prodml23__ProductVolumeBusinessSubUnit * soap_new_req_prodml23__ProductVolumeBusinessSubUnit( struct soap *soap, const std::string& Kind, - prodml22__OwnershipBusinessAcct *OwnershipBusinessAcct, + prodml23__OwnershipBusinessAcct *OwnershipBusinessAcct, const std::string& uid) { - prodml22__ProductVolumeBusinessSubUnit *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBusinessSubUnit(soap); + prodml23__ProductVolumeBusinessSubUnit *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBusinessSubUnit(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBusinessSubUnit::Kind = Kind; - _p->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct = OwnershipBusinessAcct; - _p->prodml22__ProductVolumeBusinessSubUnit::uid = uid; + _p->prodml23__ProductVolumeBusinessSubUnit::Kind = Kind; + _p->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct = OwnershipBusinessAcct; + _p->prodml23__ProductVolumeBusinessSubUnit::uid = uid; } return _p; } -inline prodml22__ProductVolumeBusinessSubUnit * soap_new_set_prodml22__ProductVolumeBusinessSubUnit( +inline prodml23__ProductVolumeBusinessSubUnit * soap_new_set_prodml23__ProductVolumeBusinessSubUnit( struct soap *soap, const std::string& Kind, - prodml22__OwnershipBusinessAcct *OwnershipBusinessAcct, + prodml23__OwnershipBusinessAcct *OwnershipBusinessAcct, const std::string& uid) { - prodml22__ProductVolumeBusinessSubUnit *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBusinessSubUnit(soap); + prodml23__ProductVolumeBusinessSubUnit *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBusinessSubUnit(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBusinessSubUnit::Kind = Kind; - _p->prodml22__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct = OwnershipBusinessAcct; - _p->prodml22__ProductVolumeBusinessSubUnit::uid = uid; + _p->prodml23__ProductVolumeBusinessSubUnit::Kind = Kind; + _p->prodml23__ProductVolumeBusinessSubUnit::OwnershipBusinessAcct = OwnershipBusinessAcct; + _p->prodml23__ProductVolumeBusinessSubUnit::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit const*p) +inline int soap_write_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit ? "prodml22:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit ? "prodml23:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessSubUnit const*p) +inline int soap_PUT_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessSubUnit const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit ? "prodml22:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit ? "prodml23:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessSubUnit const*p) +inline int soap_PATCH_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessSubUnit const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit ? "prodml22:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit ? "prodml23:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessSubUnit const*p) +inline int soap_POST_send_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessSubUnit const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit ? "prodml22:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBusinessSubUnit", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit ? "prodml23:ProductVolumeBusinessSubUnit" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBusinessSubUnit(struct soap*, prodml22__ProductVolumeBusinessSubUnit *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBusinessSubUnit(struct soap*, prodml23__ProductVolumeBusinessSubUnit *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit *p) +inline int soap_read_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeBusinessSubUnit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeBusinessSubUnit(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml22__ProductVolumeBusinessSubUnit *p) +inline int soap_GET_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, const char *URL, prodml23__ProductVolumeBusinessSubUnit *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeBusinessSubUnit(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeBusinessSubUnit(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeBusinessSubUnit(struct soap *soap, prodml22__ProductVolumeBusinessSubUnit *p) +inline int soap_POST_recv_prodml23__ProductVolumeBusinessSubUnit(struct soap *soap, prodml23__ProductVolumeBusinessSubUnit *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeBusinessSubUnit(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeBusinessSubUnit(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBalanceSet(struct soap*, const char*, int, const prodml22__ProductVolumeBalanceSet *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBalanceSet(struct soap*, const char*, prodml22__ProductVolumeBalanceSet *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBalanceSet(struct soap*, const char*, int, const prodml23__ProductVolumeBalanceSet *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBalanceSet(struct soap*, const char*, prodml23__ProductVolumeBalanceSet *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeBalanceSet * soap_new_prodml22__ProductVolumeBalanceSet(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeBalanceSet * soap_new_prodml23__ProductVolumeBalanceSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeBalanceSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeBalanceSet(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeBalanceSet * soap_new_req_prodml22__ProductVolumeBalanceSet( +inline prodml23__ProductVolumeBalanceSet * soap_new_req_prodml23__ProductVolumeBalanceSet( struct soap *soap, const std::string& uid) { - prodml22__ProductVolumeBalanceSet *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBalanceSet(soap); + prodml23__ProductVolumeBalanceSet *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBalanceSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBalanceSet::uid = uid; + _p->prodml23__ProductVolumeBalanceSet::uid = uid; } return _p; } -inline prodml22__ProductVolumeBalanceSet * soap_new_set_prodml22__ProductVolumeBalanceSet( +inline prodml23__ProductVolumeBalanceSet * soap_new_set_prodml23__ProductVolumeBalanceSet( struct soap *soap, - prodml22__BalanceFlowPart *Kind, + prodml23__BalanceFlowPart *Kind, std::string *CargoNumber, ULONG64 *CargoBatchNumber, std::string *Shipper, - const std::vector & BalanceDetail, - prodml22__ProductVolumeDestination *Destination, + const std::vector & BalanceDetail, + prodml23__ProductVolumeDestination *Destination, const std::string& uid) { - prodml22__ProductVolumeBalanceSet *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBalanceSet(soap); + prodml23__ProductVolumeBalanceSet *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBalanceSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBalanceSet::Kind = Kind; - _p->prodml22__ProductVolumeBalanceSet::CargoNumber = CargoNumber; - _p->prodml22__ProductVolumeBalanceSet::CargoBatchNumber = CargoBatchNumber; - _p->prodml22__ProductVolumeBalanceSet::Shipper = Shipper; - _p->prodml22__ProductVolumeBalanceSet::BalanceDetail = BalanceDetail; - _p->prodml22__ProductVolumeBalanceSet::Destination = Destination; - _p->prodml22__ProductVolumeBalanceSet::uid = uid; + _p->prodml23__ProductVolumeBalanceSet::Kind = Kind; + _p->prodml23__ProductVolumeBalanceSet::CargoNumber = CargoNumber; + _p->prodml23__ProductVolumeBalanceSet::CargoBatchNumber = CargoBatchNumber; + _p->prodml23__ProductVolumeBalanceSet::Shipper = Shipper; + _p->prodml23__ProductVolumeBalanceSet::BalanceDetail = BalanceDetail; + _p->prodml23__ProductVolumeBalanceSet::Destination = Destination; + _p->prodml23__ProductVolumeBalanceSet::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet const*p) +inline int soap_write_prodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet ? "prodml22:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet ? "prodml23:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceSet const*p) +inline int soap_PUT_prodml23__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet ? "prodml22:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet ? "prodml23:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceSet const*p) +inline int soap_PATCH_prodml23__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet ? "prodml22:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet ? "prodml23:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceSet const*p) +inline int soap_POST_send_prodml23__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet ? "prodml22:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet ? "prodml23:ProductVolumeBalanceSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBalanceSet(struct soap*, prodml22__ProductVolumeBalanceSet *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBalanceSet(struct soap*, prodml23__ProductVolumeBalanceSet *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet *p) +inline int soap_read_prodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeBalanceSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeBalanceSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceSet *p) +inline int soap_GET_prodml23__ProductVolumeBalanceSet(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeBalanceSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeBalanceSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeBalanceSet(struct soap *soap, prodml22__ProductVolumeBalanceSet *p) +inline int soap_POST_recv_prodml23__ProductVolumeBalanceSet(struct soap *soap, prodml23__ProductVolumeBalanceSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeBalanceSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeBalanceSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBalanceEvent(struct soap*, const char*, int, const prodml22__ProductVolumeBalanceEvent *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBalanceEvent(struct soap*, const char*, prodml22__ProductVolumeBalanceEvent *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceEvent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBalanceEvent(struct soap*, const char*, int, const prodml23__ProductVolumeBalanceEvent *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBalanceEvent(struct soap*, const char*, prodml23__ProductVolumeBalanceEvent *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceEvent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeBalanceEvent * soap_new_prodml22__ProductVolumeBalanceEvent(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeBalanceEvent * soap_new_prodml23__ProductVolumeBalanceEvent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeBalanceEvent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeBalanceEvent(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeBalanceEvent * soap_new_req_prodml22__ProductVolumeBalanceEvent( +inline prodml23__ProductVolumeBalanceEvent * soap_new_req_prodml23__ProductVolumeBalanceEvent( struct soap *soap, const std::string& Date, - prodml22__BalanceEventKind Kind, + prodml23__BalanceEventKind Kind, const std::string& uid) { - prodml22__ProductVolumeBalanceEvent *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBalanceEvent(soap); + prodml23__ProductVolumeBalanceEvent *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBalanceEvent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBalanceEvent::Date = Date; - _p->prodml22__ProductVolumeBalanceEvent::Kind = Kind; - _p->prodml22__ProductVolumeBalanceEvent::uid = uid; + _p->prodml23__ProductVolumeBalanceEvent::Date = Date; + _p->prodml23__ProductVolumeBalanceEvent::Kind = Kind; + _p->prodml23__ProductVolumeBalanceEvent::uid = uid; } return _p; } -inline prodml22__ProductVolumeBalanceEvent * soap_new_set_prodml22__ProductVolumeBalanceEvent( +inline prodml23__ProductVolumeBalanceEvent * soap_new_set_prodml23__ProductVolumeBalanceEvent( struct soap *soap, const std::string& Date, - prodml22__BalanceEventKind Kind, + prodml23__BalanceEventKind Kind, const std::string& uid) { - prodml22__ProductVolumeBalanceEvent *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBalanceEvent(soap); + prodml23__ProductVolumeBalanceEvent *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBalanceEvent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBalanceEvent::Date = Date; - _p->prodml22__ProductVolumeBalanceEvent::Kind = Kind; - _p->prodml22__ProductVolumeBalanceEvent::uid = uid; + _p->prodml23__ProductVolumeBalanceEvent::Date = Date; + _p->prodml23__ProductVolumeBalanceEvent::Kind = Kind; + _p->prodml23__ProductVolumeBalanceEvent::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent const*p) +inline int soap_write_prodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent ? "prodml22:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent ? "prodml23:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceEvent const*p) +inline int soap_PUT_prodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceEvent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent ? "prodml22:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent ? "prodml23:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceEvent const*p) +inline int soap_PATCH_prodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceEvent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent ? "prodml22:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent ? "prodml23:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceEvent const*p) +inline int soap_POST_send_prodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceEvent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent ? "prodml22:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent ? "prodml23:ProductVolumeBalanceEvent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBalanceEvent(struct soap*, prodml22__ProductVolumeBalanceEvent *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBalanceEvent(struct soap*, prodml23__ProductVolumeBalanceEvent *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent *p) +inline int soap_read_prodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeBalanceEvent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeBalanceEvent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceEvent *p) +inline int soap_GET_prodml23__ProductVolumeBalanceEvent(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceEvent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeBalanceEvent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeBalanceEvent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeBalanceEvent(struct soap *soap, prodml22__ProductVolumeBalanceEvent *p) +inline int soap_POST_recv_prodml23__ProductVolumeBalanceEvent(struct soap *soap, prodml23__ProductVolumeBalanceEvent *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeBalanceEvent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeBalanceEvent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeBalanceDetail(struct soap*, const char*, int, const prodml22__ProductVolumeBalanceDetail *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_in_prodml22__ProductVolumeBalanceDetail(struct soap*, const char*, prodml22__ProductVolumeBalanceDetail *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceDetail(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeBalanceDetail(struct soap*, const char*, int, const prodml23__ProductVolumeBalanceDetail *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_in_prodml23__ProductVolumeBalanceDetail(struct soap*, const char*, prodml23__ProductVolumeBalanceDetail *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceDetail(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeBalanceDetail * soap_new_prodml22__ProductVolumeBalanceDetail(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeBalanceDetail * soap_new_prodml23__ProductVolumeBalanceDetail(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeBalanceDetail(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeBalanceDetail(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeBalanceDetail * soap_new_req_prodml22__ProductVolumeBalanceDetail( +inline prodml23__ProductVolumeBalanceDetail * soap_new_req_prodml23__ProductVolumeBalanceDetail( struct soap *soap, const std::string& Owner, const std::string& uid) { - prodml22__ProductVolumeBalanceDetail *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBalanceDetail(soap); + prodml23__ProductVolumeBalanceDetail *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBalanceDetail(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBalanceDetail::Owner = Owner; - _p->prodml22__ProductVolumeBalanceDetail::uid = uid; + _p->prodml23__ProductVolumeBalanceDetail::Owner = Owner; + _p->prodml23__ProductVolumeBalanceDetail::uid = uid; } return _p; } -inline prodml22__ProductVolumeBalanceDetail * soap_new_set_prodml22__ProductVolumeBalanceDetail( +inline prodml23__ProductVolumeBalanceDetail * soap_new_set_prodml23__ProductVolumeBalanceDetail( struct soap *soap, const std::string& Owner, std::string *SourceUnit, @@ -100457,203 +100457,203 @@ inline prodml22__ProductVolumeBalanceDetail * soap_new_set_prodml22__ProductVolu std::string *AccountNumber, const std::vector & SampleAnalysisResult, const std::vector & VolumeValue, - const std::vector & ComponentContent, - const std::vector & Event, + const std::vector & ComponentContent, + const std::vector & Event, const std::string& uid) { - prodml22__ProductVolumeBalanceDetail *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeBalanceDetail(soap); + prodml23__ProductVolumeBalanceDetail *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeBalanceDetail(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeBalanceDetail::Owner = Owner; - _p->prodml22__ProductVolumeBalanceDetail::SourceUnit = SourceUnit; - _p->prodml22__ProductVolumeBalanceDetail::Share = Share; - _p->prodml22__ProductVolumeBalanceDetail::AccountNumber = AccountNumber; - _p->prodml22__ProductVolumeBalanceDetail::SampleAnalysisResult = SampleAnalysisResult; - _p->prodml22__ProductVolumeBalanceDetail::VolumeValue = VolumeValue; - _p->prodml22__ProductVolumeBalanceDetail::ComponentContent = ComponentContent; - _p->prodml22__ProductVolumeBalanceDetail::Event = Event; - _p->prodml22__ProductVolumeBalanceDetail::uid = uid; + _p->prodml23__ProductVolumeBalanceDetail::Owner = Owner; + _p->prodml23__ProductVolumeBalanceDetail::SourceUnit = SourceUnit; + _p->prodml23__ProductVolumeBalanceDetail::Share = Share; + _p->prodml23__ProductVolumeBalanceDetail::AccountNumber = AccountNumber; + _p->prodml23__ProductVolumeBalanceDetail::SampleAnalysisResult = SampleAnalysisResult; + _p->prodml23__ProductVolumeBalanceDetail::VolumeValue = VolumeValue; + _p->prodml23__ProductVolumeBalanceDetail::ComponentContent = ComponentContent; + _p->prodml23__ProductVolumeBalanceDetail::Event = Event; + _p->prodml23__ProductVolumeBalanceDetail::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail const*p) +inline int soap_write_prodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail ? "prodml22:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail ? "prodml23:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceDetail const*p) +inline int soap_PUT_prodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceDetail const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail ? "prodml22:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail ? "prodml23:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceDetail const*p) +inline int soap_PATCH_prodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceDetail const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail ? "prodml22:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail ? "prodml23:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceDetail const*p) +inline int soap_POST_send_prodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceDetail const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail ? "prodml22:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeBalanceDetail", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail ? "prodml23:ProductVolumeBalanceDetail" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_get_prodml22__ProductVolumeBalanceDetail(struct soap*, prodml22__ProductVolumeBalanceDetail *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC4 soap_get_prodml23__ProductVolumeBalanceDetail(struct soap*, prodml23__ProductVolumeBalanceDetail *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail *p) +inline int soap_read_prodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeBalanceDetail(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeBalanceDetail(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml22__ProductVolumeBalanceDetail *p) +inline int soap_GET_prodml23__ProductVolumeBalanceDetail(struct soap *soap, const char *URL, prodml23__ProductVolumeBalanceDetail *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeBalanceDetail(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeBalanceDetail(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeBalanceDetail(struct soap *soap, prodml22__ProductVolumeBalanceDetail *p) +inline int soap_POST_recv_prodml23__ProductVolumeBalanceDetail(struct soap *soap, prodml23__ProductVolumeBalanceDetail *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeBalanceDetail(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeBalanceDetail(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolumeAlert(struct soap*, const char*, int, const prodml22__ProductVolumeAlert *, const char*); -SOAP_FMAC3 prodml22__ProductVolumeAlert * SOAP_FMAC4 soap_in_prodml22__ProductVolumeAlert(struct soap*, const char*, prodml22__ProductVolumeAlert *, const char*); -SOAP_FMAC1 prodml22__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeAlert(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolumeAlert(struct soap*, const char*, int, const prodml23__ProductVolumeAlert *, const char*); +SOAP_FMAC3 prodml23__ProductVolumeAlert * SOAP_FMAC4 soap_in_prodml23__ProductVolumeAlert(struct soap*, const char*, prodml23__ProductVolumeAlert *, const char*); +SOAP_FMAC1 prodml23__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeAlert(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolumeAlert * soap_new_prodml22__ProductVolumeAlert(struct soap *soap, int n = -1) +inline prodml23__ProductVolumeAlert * soap_new_prodml23__ProductVolumeAlert(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolumeAlert(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolumeAlert(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolumeAlert * soap_new_req_prodml22__ProductVolumeAlert( +inline prodml23__ProductVolumeAlert * soap_new_req_prodml23__ProductVolumeAlert( struct soap *soap) { - prodml22__ProductVolumeAlert *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeAlert(soap); + prodml23__ProductVolumeAlert *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeAlert(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__ProductVolumeAlert * soap_new_set_prodml22__ProductVolumeAlert( +inline prodml23__ProductVolumeAlert * soap_new_set_prodml23__ProductVolumeAlert( struct soap *soap, std::string *Target, std::string *Level, std::string *Type, std::string *Description) { - prodml22__ProductVolumeAlert *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolumeAlert(soap); + prodml23__ProductVolumeAlert *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolumeAlert(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolumeAlert::Target = Target; - _p->prodml22__ProductVolumeAlert::Level = Level; - _p->prodml22__ProductVolumeAlert::Type = Type; - _p->prodml22__ProductVolumeAlert::Description = Description; + _p->prodml23__ProductVolumeAlert::Target = Target; + _p->prodml23__ProductVolumeAlert::Level = Level; + _p->prodml23__ProductVolumeAlert::Type = Type; + _p->prodml23__ProductVolumeAlert::Description = Description; } return _p; } -inline int soap_write_prodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert const*p) +inline int soap_write_prodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert ? "prodml22:ProductVolumeAlert" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert ? "prodml23:ProductVolumeAlert" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolumeAlert(struct soap *soap, const char *URL, prodml22__ProductVolumeAlert const*p) +inline int soap_PUT_prodml23__ProductVolumeAlert(struct soap *soap, const char *URL, prodml23__ProductVolumeAlert const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert ? "prodml22:ProductVolumeAlert" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert ? "prodml23:ProductVolumeAlert" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolumeAlert(struct soap *soap, const char *URL, prodml22__ProductVolumeAlert const*p) +inline int soap_PATCH_prodml23__ProductVolumeAlert(struct soap *soap, const char *URL, prodml23__ProductVolumeAlert const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert ? "prodml22:ProductVolumeAlert" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert ? "prodml23:ProductVolumeAlert" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolumeAlert(struct soap *soap, const char *URL, prodml22__ProductVolumeAlert const*p) +inline int soap_POST_send_prodml23__ProductVolumeAlert(struct soap *soap, const char *URL, prodml23__ProductVolumeAlert const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert ? "prodml22:ProductVolumeAlert" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolumeAlert", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert ? "prodml23:ProductVolumeAlert" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolumeAlert * SOAP_FMAC4 soap_get_prodml22__ProductVolumeAlert(struct soap*, prodml22__ProductVolumeAlert *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeAlert * SOAP_FMAC4 soap_get_prodml23__ProductVolumeAlert(struct soap*, prodml23__ProductVolumeAlert *, const char*, const char*); -inline int soap_read_prodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert *p) +inline int soap_read_prodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolumeAlert(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolumeAlert(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolumeAlert(struct soap *soap, const char *URL, prodml22__ProductVolumeAlert *p) +inline int soap_GET_prodml23__ProductVolumeAlert(struct soap *soap, const char *URL, prodml23__ProductVolumeAlert *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolumeAlert(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolumeAlert(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolumeAlert(struct soap *soap, prodml22__ProductVolumeAlert *p) +inline int soap_POST_recv_prodml23__ProductVolumeAlert(struct soap *soap, prodml23__ProductVolumeAlert *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolumeAlert(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolumeAlert(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductVolume(struct soap*, const char*, int, const prodml22__ProductVolume *, const char*); -SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_in_prodml22__ProductVolume(struct soap*, const char*, prodml22__ProductVolume *, const char*); -SOAP_FMAC1 prodml22__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductVolume(struct soap*, const char*, int, const prodml23__ProductVolume *, const char*); +SOAP_FMAC3 prodml23__ProductVolume * SOAP_FMAC4 soap_in_prodml23__ProductVolume(struct soap*, const char*, prodml23__ProductVolume *, const char*); +SOAP_FMAC1 prodml23__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductVolume * soap_new_prodml22__ProductVolume(struct soap *soap, int n = -1) +inline prodml23__ProductVolume * soap_new_prodml23__ProductVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductVolume * soap_new_req_prodml22__ProductVolume( +inline prodml23__ProductVolume * soap_new_req_prodml23__ProductVolume( struct soap *soap, - const std::vector & Facility, + const std::vector & Facility, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__ProductVolume *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolume(soap); + prodml23__ProductVolume *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductVolume::Facility = Facility; + _p->prodml23__ProductVolume::Facility = Facility; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -100661,28 +100661,28 @@ inline prodml22__ProductVolume * soap_new_req_prodml22__ProductVolume( return _p; } -inline prodml22__ProductVolume * soap_new_set_prodml22__ProductVolume( +inline prodml23__ProductVolume * soap_new_set_prodml23__ProductVolume( struct soap *soap, - prodml22__FacilityIdentifierStruct *Installation, - const std::vector & ContextFacility, + prodml23__FacilityIdentifierStruct *Installation, + const std::vector & ContextFacility, std::string *Kind, - prodml22__ReportingDurationKind *PeriodKind, - prodml22__EndpointQualifiedDateTime *DTimMin, - prodml22__EndpointQualifiedDateTime *DTimMax, + prodml23__ReportingDurationKind *PeriodKind, + prodml23__EndpointQualifiedDateTime *DTimMin, + prodml23__EndpointQualifiedDateTime *DTimMax, struct tm *DTimCurrent, - prodml22__CalculationMethod *CalculationMethod, + prodml23__CalculationMethod *CalculationMethod, eml23__DataObjectReference *Operator, eml23__NameStruct *Title, - prodml22__GeographicContext *GeographicContext, + prodml23__GeographicContext *GeographicContext, std::string *IssueDate, eml23__DataObjectReference *IssuedBy, std::string *ApprovalDate, eml23__DataObjectReference *Approver, eml23__ReferenceCondition *StandardTempPres, - const std::vector & Facility, - const std::vector & BusinessUnit, + const std::vector & Facility, + const std::vector & BusinessUnit, eml23__DataObjectReference *ProductFlowModel, - prodml22__AbstractDateTimeClass *DateTime, + prodml23__AbstractDateTimeClass *DateTime, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -100695,29 +100695,29 @@ inline prodml22__ProductVolume * soap_new_set_prodml22__ProductVolume( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__ProductVolume *_p = gsoap_eml2_3::soap_new_prodml22__ProductVolume(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__ProductVolume::Installation = Installation; - _p->prodml22__ProductVolume::ContextFacility = ContextFacility; - _p->prodml22__ProductVolume::Kind = Kind; - _p->prodml22__ProductVolume::PeriodKind = PeriodKind; - _p->prodml22__ProductVolume::DTimMin = DTimMin; - _p->prodml22__ProductVolume::DTimMax = DTimMax; - _p->prodml22__ProductVolume::DTimCurrent = DTimCurrent; - _p->prodml22__ProductVolume::CalculationMethod = CalculationMethod; - _p->prodml22__ProductVolume::Operator = Operator; - _p->prodml22__ProductVolume::Title = Title; - _p->prodml22__ProductVolume::GeographicContext = GeographicContext; - _p->prodml22__ProductVolume::IssueDate = IssueDate; - _p->prodml22__ProductVolume::IssuedBy = IssuedBy; - _p->prodml22__ProductVolume::ApprovalDate = ApprovalDate; - _p->prodml22__ProductVolume::Approver = Approver; - _p->prodml22__ProductVolume::StandardTempPres = StandardTempPres; - _p->prodml22__ProductVolume::Facility = Facility; - _p->prodml22__ProductVolume::BusinessUnit = BusinessUnit; - _p->prodml22__ProductVolume::ProductFlowModel = ProductFlowModel; - _p->prodml22__ProductVolume::DateTime = DateTime; + prodml23__ProductVolume *_p = gsoap_eml2_3::soap_new_prodml23__ProductVolume(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__ProductVolume::Installation = Installation; + _p->prodml23__ProductVolume::ContextFacility = ContextFacility; + _p->prodml23__ProductVolume::Kind = Kind; + _p->prodml23__ProductVolume::PeriodKind = PeriodKind; + _p->prodml23__ProductVolume::DTimMin = DTimMin; + _p->prodml23__ProductVolume::DTimMax = DTimMax; + _p->prodml23__ProductVolume::DTimCurrent = DTimCurrent; + _p->prodml23__ProductVolume::CalculationMethod = CalculationMethod; + _p->prodml23__ProductVolume::Operator = Operator; + _p->prodml23__ProductVolume::Title = Title; + _p->prodml23__ProductVolume::GeographicContext = GeographicContext; + _p->prodml23__ProductVolume::IssueDate = IssueDate; + _p->prodml23__ProductVolume::IssuedBy = IssuedBy; + _p->prodml23__ProductVolume::ApprovalDate = ApprovalDate; + _p->prodml23__ProductVolume::Approver = Approver; + _p->prodml23__ProductVolume::StandardTempPres = StandardTempPres; + _p->prodml23__ProductVolume::Facility = Facility; + _p->prodml23__ProductVolume::BusinessUnit = BusinessUnit; + _p->prodml23__ProductVolume::ProductFlowModel = ProductFlowModel; + _p->prodml23__ProductVolume::DateTime = DateTime; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -100733,561 +100733,561 @@ inline prodml22__ProductVolume * soap_new_set_prodml22__ProductVolume( return _p; } -inline int soap_write_prodml22__ProductVolume(struct soap *soap, prodml22__ProductVolume const*p) +inline int soap_write_prodml23__ProductVolume(struct soap *soap, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume ? "prodml22:ProductVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume ? "prodml23:ProductVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume const*p) +inline int soap_PUT_prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume ? "prodml22:ProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume ? "prodml23:ProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume const*p) +inline int soap_PATCH_prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume ? "prodml22:ProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume ? "prodml23:ProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume const*p) +inline int soap_POST_send_prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume ? "prodml22:ProductVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume ? "prodml23:ProductVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductVolume * SOAP_FMAC4 soap_get_prodml22__ProductVolume(struct soap*, prodml22__ProductVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolume * SOAP_FMAC4 soap_get_prodml23__ProductVolume(struct soap*, prodml23__ProductVolume *, const char*, const char*); -inline int soap_read_prodml22__ProductVolume(struct soap *soap, prodml22__ProductVolume *p) +inline int soap_read_prodml23__ProductVolume(struct soap *soap, prodml23__ProductVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductVolume(struct soap *soap, const char *URL, prodml22__ProductVolume *p) +inline int soap_GET_prodml23__ProductVolume(struct soap *soap, const char *URL, prodml23__ProductVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductVolume(struct soap *soap, prodml22__ProductVolume *p) +inline int soap_POST_recv_prodml23__ProductVolume(struct soap *soap, prodml23__ProductVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Parentfacility(struct soap*, const char*, int, const prodml22__Parentfacility *, const char*); -SOAP_FMAC3 prodml22__Parentfacility * SOAP_FMAC4 soap_in_prodml22__Parentfacility(struct soap*, const char*, prodml22__Parentfacility *, const char*); -SOAP_FMAC1 prodml22__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml22__Parentfacility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Parentfacility(struct soap*, const char*, int, const prodml23__Parentfacility *, const char*); +SOAP_FMAC3 prodml23__Parentfacility * SOAP_FMAC4 soap_in_prodml23__Parentfacility(struct soap*, const char*, prodml23__Parentfacility *, const char*); +SOAP_FMAC1 prodml23__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml23__Parentfacility(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Parentfacility * soap_new_prodml22__Parentfacility(struct soap *soap, int n = -1) +inline prodml23__Parentfacility * soap_new_prodml23__Parentfacility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Parentfacility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Parentfacility(soap, n, NULL, NULL, NULL); } -inline prodml22__Parentfacility * soap_new_req_prodml22__Parentfacility( +inline prodml23__Parentfacility * soap_new_req_prodml23__Parentfacility( struct soap *soap, const std::string& ParentfacilityReference, - const union _prodml22__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) + const union _prodml23__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) { - prodml22__Parentfacility *_p = gsoap_eml2_3::soap_new_prodml22__Parentfacility(soap); + prodml23__Parentfacility *_p = gsoap_eml2_3::soap_new_prodml23__Parentfacility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Parentfacility::ParentfacilityReference = ParentfacilityReference; - _p->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; + _p->prodml23__Parentfacility::ParentfacilityReference = ParentfacilityReference; + _p->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; } return _p; } -inline prodml22__Parentfacility * soap_new_set_prodml22__Parentfacility( +inline prodml23__Parentfacility * soap_new_set_prodml23__Parentfacility( struct soap *soap, const std::string& ParentfacilityReference, int __union_AbstractRefProductFlow__1, - const union _prodml22__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) + const union _prodml23__union_AbstractRefProductFlow& union_AbstractRefProductFlow__1) { - prodml22__Parentfacility *_p = gsoap_eml2_3::soap_new_prodml22__Parentfacility(soap); + prodml23__Parentfacility *_p = gsoap_eml2_3::soap_new_prodml23__Parentfacility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Parentfacility::ParentfacilityReference = ParentfacilityReference; - _p->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow = __union_AbstractRefProductFlow__1; - _p->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; + _p->prodml23__Parentfacility::ParentfacilityReference = ParentfacilityReference; + _p->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow = __union_AbstractRefProductFlow__1; + _p->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow__1; } return _p; } -inline int soap_write_prodml22__Parentfacility(struct soap *soap, prodml22__Parentfacility const*p) +inline int soap_write_prodml23__Parentfacility(struct soap *soap, prodml23__Parentfacility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility ? "prodml22:Parentfacility" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility ? "prodml23:Parentfacility" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Parentfacility(struct soap *soap, const char *URL, prodml22__Parentfacility const*p) +inline int soap_PUT_prodml23__Parentfacility(struct soap *soap, const char *URL, prodml23__Parentfacility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility ? "prodml22:Parentfacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility ? "prodml23:Parentfacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Parentfacility(struct soap *soap, const char *URL, prodml22__Parentfacility const*p) +inline int soap_PATCH_prodml23__Parentfacility(struct soap *soap, const char *URL, prodml23__Parentfacility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility ? "prodml22:Parentfacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility ? "prodml23:Parentfacility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Parentfacility(struct soap *soap, const char *URL, prodml22__Parentfacility const*p) +inline int soap_POST_send_prodml23__Parentfacility(struct soap *soap, const char *URL, prodml23__Parentfacility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility ? "prodml22:Parentfacility" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Parentfacility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility ? "prodml23:Parentfacility" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Parentfacility * SOAP_FMAC4 soap_get_prodml22__Parentfacility(struct soap*, prodml22__Parentfacility *, const char*, const char*); +SOAP_FMAC3 prodml23__Parentfacility * SOAP_FMAC4 soap_get_prodml23__Parentfacility(struct soap*, prodml23__Parentfacility *, const char*, const char*); -inline int soap_read_prodml22__Parentfacility(struct soap *soap, prodml22__Parentfacility *p) +inline int soap_read_prodml23__Parentfacility(struct soap *soap, prodml23__Parentfacility *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Parentfacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Parentfacility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Parentfacility(struct soap *soap, const char *URL, prodml22__Parentfacility *p) +inline int soap_GET_prodml23__Parentfacility(struct soap *soap, const char *URL, prodml23__Parentfacility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Parentfacility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Parentfacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Parentfacility(struct soap *soap, prodml22__Parentfacility *p) +inline int soap_POST_recv_prodml23__Parentfacility(struct soap *soap, prodml23__Parentfacility *p) { - if (gsoap_eml2_3::soap_read_prodml22__Parentfacility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Parentfacility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OwnershipBusinessAcct(struct soap*, const char*, int, const prodml22__OwnershipBusinessAcct *, const char*); -SOAP_FMAC3 prodml22__OwnershipBusinessAcct * SOAP_FMAC4 soap_in_prodml22__OwnershipBusinessAcct(struct soap*, const char*, prodml22__OwnershipBusinessAcct *, const char*); -SOAP_FMAC1 prodml22__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml22__OwnershipBusinessAcct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OwnershipBusinessAcct(struct soap*, const char*, int, const prodml23__OwnershipBusinessAcct *, const char*); +SOAP_FMAC3 prodml23__OwnershipBusinessAcct * SOAP_FMAC4 soap_in_prodml23__OwnershipBusinessAcct(struct soap*, const char*, prodml23__OwnershipBusinessAcct *, const char*); +SOAP_FMAC1 prodml23__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml23__OwnershipBusinessAcct(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OwnershipBusinessAcct * soap_new_prodml22__OwnershipBusinessAcct(struct soap *soap, int n = -1) +inline prodml23__OwnershipBusinessAcct * soap_new_prodml23__OwnershipBusinessAcct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OwnershipBusinessAcct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OwnershipBusinessAcct(soap, n, NULL, NULL, NULL); } -inline prodml22__OwnershipBusinessAcct * soap_new_req_prodml22__OwnershipBusinessAcct( +inline prodml23__OwnershipBusinessAcct * soap_new_req_prodml23__OwnershipBusinessAcct( struct soap *soap) { - prodml22__OwnershipBusinessAcct *_p = gsoap_eml2_3::soap_new_prodml22__OwnershipBusinessAcct(soap); + prodml23__OwnershipBusinessAcct *_p = gsoap_eml2_3::soap_new_prodml23__OwnershipBusinessAcct(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__OwnershipBusinessAcct * soap_new_set_prodml22__OwnershipBusinessAcct( +inline prodml23__OwnershipBusinessAcct * soap_new_set_prodml23__OwnershipBusinessAcct( struct soap *soap) { - prodml22__OwnershipBusinessAcct *_p = gsoap_eml2_3::soap_new_prodml22__OwnershipBusinessAcct(soap); + prodml23__OwnershipBusinessAcct *_p = gsoap_eml2_3::soap_new_prodml23__OwnershipBusinessAcct(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct const*p) +inline int soap_write_prodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct ? "prodml22:OwnershipBusinessAcct" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct ? "prodml23:OwnershipBusinessAcct" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml22__OwnershipBusinessAcct const*p) +inline int soap_PUT_prodml23__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml23__OwnershipBusinessAcct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct ? "prodml22:OwnershipBusinessAcct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct ? "prodml23:OwnershipBusinessAcct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml22__OwnershipBusinessAcct const*p) +inline int soap_PATCH_prodml23__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml23__OwnershipBusinessAcct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct ? "prodml22:OwnershipBusinessAcct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct ? "prodml23:OwnershipBusinessAcct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml22__OwnershipBusinessAcct const*p) +inline int soap_POST_send_prodml23__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml23__OwnershipBusinessAcct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct ? "prodml22:OwnershipBusinessAcct" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OwnershipBusinessAcct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct ? "prodml23:OwnershipBusinessAcct" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OwnershipBusinessAcct * SOAP_FMAC4 soap_get_prodml22__OwnershipBusinessAcct(struct soap*, prodml22__OwnershipBusinessAcct *, const char*, const char*); +SOAP_FMAC3 prodml23__OwnershipBusinessAcct * SOAP_FMAC4 soap_get_prodml23__OwnershipBusinessAcct(struct soap*, prodml23__OwnershipBusinessAcct *, const char*, const char*); -inline int soap_read_prodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct *p) +inline int soap_read_prodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OwnershipBusinessAcct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OwnershipBusinessAcct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml22__OwnershipBusinessAcct *p) +inline int soap_GET_prodml23__OwnershipBusinessAcct(struct soap *soap, const char *URL, prodml23__OwnershipBusinessAcct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OwnershipBusinessAcct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OwnershipBusinessAcct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OwnershipBusinessAcct(struct soap *soap, prodml22__OwnershipBusinessAcct *p) +inline int soap_POST_recv_prodml23__OwnershipBusinessAcct(struct soap *soap, prodml23__OwnershipBusinessAcct *p) { - if (gsoap_eml2_3::soap_read_prodml22__OwnershipBusinessAcct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OwnershipBusinessAcct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__IntegerData(struct soap*, const char*, int, const prodml22__IntegerData *, const char*); -SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_in_prodml22__IntegerData(struct soap*, const char*, prodml22__IntegerData *, const char*); -SOAP_FMAC1 prodml22__IntegerData * SOAP_FMAC2 soap_instantiate_prodml22__IntegerData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__IntegerData(struct soap*, const char*, int, const prodml23__IntegerData *, const char*); +SOAP_FMAC3 prodml23__IntegerData * SOAP_FMAC4 soap_in_prodml23__IntegerData(struct soap*, const char*, prodml23__IntegerData *, const char*); +SOAP_FMAC1 prodml23__IntegerData * SOAP_FMAC2 soap_instantiate_prodml23__IntegerData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__IntegerData * soap_new_prodml22__IntegerData(struct soap *soap, int n = -1) +inline prodml23__IntegerData * soap_new_prodml23__IntegerData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__IntegerData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__IntegerData(soap, n, NULL, NULL, NULL); } -inline prodml22__IntegerData * soap_new_req_prodml22__IntegerData( +inline prodml23__IntegerData * soap_new_req_prodml23__IntegerData( struct soap *soap, - prodml22__IntegerQualifiedCount *IntegerValue) + prodml23__IntegerQualifiedCount *IntegerValue) { - prodml22__IntegerData *_p = gsoap_eml2_3::soap_new_prodml22__IntegerData(soap); + prodml23__IntegerData *_p = gsoap_eml2_3::soap_new_prodml23__IntegerData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__IntegerData::IntegerValue = IntegerValue; + _p->prodml23__IntegerData::IntegerValue = IntegerValue; } return _p; } -inline prodml22__IntegerData * soap_new_set_prodml22__IntegerData( +inline prodml23__IntegerData * soap_new_set_prodml23__IntegerData( struct soap *soap, - prodml22__IntegerQualifiedCount *IntegerValue) + prodml23__IntegerQualifiedCount *IntegerValue) { - prodml22__IntegerData *_p = gsoap_eml2_3::soap_new_prodml22__IntegerData(soap); + prodml23__IntegerData *_p = gsoap_eml2_3::soap_new_prodml23__IntegerData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__IntegerData::IntegerValue = IntegerValue; + _p->prodml23__IntegerData::IntegerValue = IntegerValue; } return _p; } -inline int soap_write_prodml22__IntegerData(struct soap *soap, prodml22__IntegerData const*p) +inline int soap_write_prodml23__IntegerData(struct soap *soap, prodml23__IntegerData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData ? "prodml22:IntegerData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData ? "prodml23:IntegerData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__IntegerData(struct soap *soap, const char *URL, prodml22__IntegerData const*p) +inline int soap_PUT_prodml23__IntegerData(struct soap *soap, const char *URL, prodml23__IntegerData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData ? "prodml22:IntegerData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData ? "prodml23:IntegerData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__IntegerData(struct soap *soap, const char *URL, prodml22__IntegerData const*p) +inline int soap_PATCH_prodml23__IntegerData(struct soap *soap, const char *URL, prodml23__IntegerData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData ? "prodml22:IntegerData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData ? "prodml23:IntegerData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__IntegerData(struct soap *soap, const char *URL, prodml22__IntegerData const*p) +inline int soap_POST_send_prodml23__IntegerData(struct soap *soap, const char *URL, prodml23__IntegerData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData ? "prodml22:IntegerData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData ? "prodml23:IntegerData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__IntegerData * SOAP_FMAC4 soap_get_prodml22__IntegerData(struct soap*, prodml22__IntegerData *, const char*, const char*); +SOAP_FMAC3 prodml23__IntegerData * SOAP_FMAC4 soap_get_prodml23__IntegerData(struct soap*, prodml23__IntegerData *, const char*, const char*); -inline int soap_read_prodml22__IntegerData(struct soap *soap, prodml22__IntegerData *p) +inline int soap_read_prodml23__IntegerData(struct soap *soap, prodml23__IntegerData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__IntegerData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__IntegerData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__IntegerData(struct soap *soap, const char *URL, prodml22__IntegerData *p) +inline int soap_GET_prodml23__IntegerData(struct soap *soap, const char *URL, prodml23__IntegerData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__IntegerData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__IntegerData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__IntegerData(struct soap *soap, prodml22__IntegerData *p) +inline int soap_POST_recv_prodml23__IntegerData(struct soap *soap, prodml23__IntegerData *p) { - if (gsoap_eml2_3::soap_read_prodml22__IntegerData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__IntegerData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityUnitPort(struct soap*, const char*, int, const prodml22__FacilityUnitPort *, const char*); -SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml22__FacilityUnitPort(struct soap*, const char*, prodml22__FacilityUnitPort *, const char*); -SOAP_FMAC1 prodml22__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml22__FacilityUnitPort(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityUnitPort(struct soap*, const char*, int, const prodml23__FacilityUnitPort *, const char*); +SOAP_FMAC3 prodml23__FacilityUnitPort * SOAP_FMAC4 soap_in_prodml23__FacilityUnitPort(struct soap*, const char*, prodml23__FacilityUnitPort *, const char*); +SOAP_FMAC1 prodml23__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml23__FacilityUnitPort(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FacilityUnitPort * soap_new_prodml22__FacilityUnitPort(struct soap *soap, int n = -1) +inline prodml23__FacilityUnitPort * soap_new_prodml23__FacilityUnitPort(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FacilityUnitPort(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FacilityUnitPort(soap, n, NULL, NULL, NULL); } -inline prodml22__FacilityUnitPort * soap_new_req_prodml22__FacilityUnitPort( +inline prodml23__FacilityUnitPort * soap_new_req_prodml23__FacilityUnitPort( struct soap *soap, const std::string& PortReference, const std::string& UnitReference, - prodml22__FacilityParent *FacilityParent__1) + prodml23__FacilityParent *FacilityParent__1) { - prodml22__FacilityUnitPort *_p = gsoap_eml2_3::soap_new_prodml22__FacilityUnitPort(soap); + prodml23__FacilityUnitPort *_p = gsoap_eml2_3::soap_new_prodml23__FacilityUnitPort(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityUnitPort::PortReference = PortReference; - _p->prodml22__FacilityUnitPort::UnitReference = UnitReference; - _p->prodml22__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; + _p->prodml23__FacilityUnitPort::PortReference = PortReference; + _p->prodml23__FacilityUnitPort::UnitReference = UnitReference; + _p->prodml23__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; } return _p; } -inline prodml22__FacilityUnitPort * soap_new_set_prodml22__FacilityUnitPort( +inline prodml23__FacilityUnitPort * soap_new_set_prodml23__FacilityUnitPort( struct soap *soap, const std::string& PortReference, const std::string& UnitReference, std::string *NetworkReference, - prodml22__FacilityParent *FacilityParent__1) + prodml23__FacilityParent *FacilityParent__1) { - prodml22__FacilityUnitPort *_p = gsoap_eml2_3::soap_new_prodml22__FacilityUnitPort(soap); + prodml23__FacilityUnitPort *_p = gsoap_eml2_3::soap_new_prodml23__FacilityUnitPort(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityUnitPort::PortReference = PortReference; - _p->prodml22__FacilityUnitPort::UnitReference = UnitReference; - _p->prodml22__FacilityUnitPort::NetworkReference = NetworkReference; - _p->prodml22__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; + _p->prodml23__FacilityUnitPort::PortReference = PortReference; + _p->prodml23__FacilityUnitPort::UnitReference = UnitReference; + _p->prodml23__FacilityUnitPort::NetworkReference = NetworkReference; + _p->prodml23__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; } return _p; } -inline int soap_write_prodml22__FacilityUnitPort(struct soap *soap, prodml22__FacilityUnitPort const*p) +inline int soap_write_prodml23__FacilityUnitPort(struct soap *soap, prodml23__FacilityUnitPort const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort ? "prodml22:FacilityUnitPort" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort ? "prodml23:FacilityUnitPort" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FacilityUnitPort(struct soap *soap, const char *URL, prodml22__FacilityUnitPort const*p) +inline int soap_PUT_prodml23__FacilityUnitPort(struct soap *soap, const char *URL, prodml23__FacilityUnitPort const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort ? "prodml22:FacilityUnitPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort ? "prodml23:FacilityUnitPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilityUnitPort(struct soap *soap, const char *URL, prodml22__FacilityUnitPort const*p) +inline int soap_PATCH_prodml23__FacilityUnitPort(struct soap *soap, const char *URL, prodml23__FacilityUnitPort const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort ? "prodml22:FacilityUnitPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort ? "prodml23:FacilityUnitPort" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilityUnitPort(struct soap *soap, const char *URL, prodml22__FacilityUnitPort const*p) +inline int soap_POST_send_prodml23__FacilityUnitPort(struct soap *soap, const char *URL, prodml23__FacilityUnitPort const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort ? "prodml22:FacilityUnitPort" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityUnitPort", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort ? "prodml23:FacilityUnitPort" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilityUnitPort * SOAP_FMAC4 soap_get_prodml22__FacilityUnitPort(struct soap*, prodml22__FacilityUnitPort *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityUnitPort * SOAP_FMAC4 soap_get_prodml23__FacilityUnitPort(struct soap*, prodml23__FacilityUnitPort *, const char*, const char*); -inline int soap_read_prodml22__FacilityUnitPort(struct soap *soap, prodml22__FacilityUnitPort *p) +inline int soap_read_prodml23__FacilityUnitPort(struct soap *soap, prodml23__FacilityUnitPort *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilityUnitPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilityUnitPort(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilityUnitPort(struct soap *soap, const char *URL, prodml22__FacilityUnitPort *p) +inline int soap_GET_prodml23__FacilityUnitPort(struct soap *soap, const char *URL, prodml23__FacilityUnitPort *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilityUnitPort(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilityUnitPort(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilityUnitPort(struct soap *soap, prodml22__FacilityUnitPort *p) +inline int soap_POST_recv_prodml23__FacilityUnitPort(struct soap *soap, prodml23__FacilityUnitPort *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilityUnitPort(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilityUnitPort(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityParent(struct soap*, const char*, int, const prodml22__FacilityParent *, const char*); -SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_in_prodml22__FacilityParent(struct soap*, const char*, prodml22__FacilityParent *, const char*); -SOAP_FMAC1 prodml22__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml22__FacilityParent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityParent(struct soap*, const char*, int, const prodml23__FacilityParent *, const char*); +SOAP_FMAC3 prodml23__FacilityParent * SOAP_FMAC4 soap_in_prodml23__FacilityParent(struct soap*, const char*, prodml23__FacilityParent *, const char*); +SOAP_FMAC1 prodml23__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml23__FacilityParent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FacilityParent * soap_new_prodml22__FacilityParent(struct soap *soap, int n = -1) +inline prodml23__FacilityParent * soap_new_prodml23__FacilityParent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FacilityParent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FacilityParent(soap, n, NULL, NULL, NULL); } -inline prodml22__FacilityParent * soap_new_req_prodml22__FacilityParent( +inline prodml23__FacilityParent * soap_new_req_prodml23__FacilityParent( struct soap *soap, - prodml22__FacilityIdentifierStruct *Name, - prodml22__FacilityParent *FacilityParent__1) + prodml23__FacilityIdentifierStruct *Name, + prodml23__FacilityParent *FacilityParent__1) { - prodml22__FacilityParent *_p = gsoap_eml2_3::soap_new_prodml22__FacilityParent(soap); + prodml23__FacilityParent *_p = gsoap_eml2_3::soap_new_prodml23__FacilityParent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityParent::Name = Name; - _p->prodml22__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; + _p->prodml23__FacilityParent::Name = Name; + _p->prodml23__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; } return _p; } -inline prodml22__FacilityParent * soap_new_set_prodml22__FacilityParent( +inline prodml23__FacilityParent * soap_new_set_prodml23__FacilityParent( struct soap *soap, - prodml22__FacilityIdentifierStruct *Name, - prodml22__FacilityIdentifierStruct *FacilityParent1, - prodml22__FacilityIdentifierStruct *FacilityParent2, - prodml22__FacilityParent *FacilityParent__1) + prodml23__FacilityIdentifierStruct *Name, + prodml23__FacilityIdentifierStruct *FacilityParent1, + prodml23__FacilityIdentifierStruct *FacilityParent2, + prodml23__FacilityParent *FacilityParent__1) { - prodml22__FacilityParent *_p = gsoap_eml2_3::soap_new_prodml22__FacilityParent(soap); + prodml23__FacilityParent *_p = gsoap_eml2_3::soap_new_prodml23__FacilityParent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityParent::Name = Name; - _p->prodml22__FacilityParent::FacilityParent1 = FacilityParent1; - _p->prodml22__FacilityParent::FacilityParent2 = FacilityParent2; - _p->prodml22__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; + _p->prodml23__FacilityParent::Name = Name; + _p->prodml23__FacilityParent::FacilityParent1 = FacilityParent1; + _p->prodml23__FacilityParent::FacilityParent2 = FacilityParent2; + _p->prodml23__AbstractRelatedFacilityObject::FacilityParent = FacilityParent__1; } return _p; } -inline int soap_write_prodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent const*p) +inline int soap_write_prodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent ? "prodml22:FacilityParent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent ? "prodml23:FacilityParent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FacilityParent(struct soap *soap, const char *URL, prodml22__FacilityParent const*p) +inline int soap_PUT_prodml23__FacilityParent(struct soap *soap, const char *URL, prodml23__FacilityParent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent ? "prodml22:FacilityParent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent ? "prodml23:FacilityParent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilityParent(struct soap *soap, const char *URL, prodml22__FacilityParent const*p) +inline int soap_PATCH_prodml23__FacilityParent(struct soap *soap, const char *URL, prodml23__FacilityParent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent ? "prodml22:FacilityParent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent ? "prodml23:FacilityParent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilityParent(struct soap *soap, const char *URL, prodml22__FacilityParent const*p) +inline int soap_POST_send_prodml23__FacilityParent(struct soap *soap, const char *URL, prodml23__FacilityParent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent ? "prodml22:FacilityParent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityParent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent ? "prodml23:FacilityParent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilityParent * SOAP_FMAC4 soap_get_prodml22__FacilityParent(struct soap*, prodml22__FacilityParent *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityParent * SOAP_FMAC4 soap_get_prodml23__FacilityParent(struct soap*, prodml23__FacilityParent *, const char*, const char*); -inline int soap_read_prodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent *p) +inline int soap_read_prodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilityParent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilityParent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilityParent(struct soap *soap, const char *URL, prodml22__FacilityParent *p) +inline int soap_GET_prodml23__FacilityParent(struct soap *soap, const char *URL, prodml23__FacilityParent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilityParent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilityParent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilityParent(struct soap *soap, prodml22__FacilityParent *p) +inline int soap_POST_recv_prodml23__FacilityParent(struct soap *soap, prodml23__FacilityParent *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilityParent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilityParent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CurveDefinition(struct soap*, const char*, int, const prodml22__CurveDefinition *, const char*); -SOAP_FMAC3 prodml22__CurveDefinition * SOAP_FMAC4 soap_in_prodml22__CurveDefinition(struct soap*, const char*, prodml22__CurveDefinition *, const char*); -SOAP_FMAC1 prodml22__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml22__CurveDefinition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CurveDefinition(struct soap*, const char*, int, const prodml23__CurveDefinition *, const char*); +SOAP_FMAC3 prodml23__CurveDefinition * SOAP_FMAC4 soap_in_prodml23__CurveDefinition(struct soap*, const char*, prodml23__CurveDefinition *, const char*); +SOAP_FMAC1 prodml23__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml23__CurveDefinition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CurveDefinition * soap_new_prodml22__CurveDefinition(struct soap *soap, int n = -1) +inline prodml23__CurveDefinition * soap_new_prodml23__CurveDefinition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CurveDefinition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CurveDefinition(soap, n, NULL, NULL, NULL); } -inline prodml22__CurveDefinition * soap_new_req_prodml22__CurveDefinition( +inline prodml23__CurveDefinition * soap_new_req_prodml23__CurveDefinition( struct soap *soap, LONG64 Order, const std::string& Parameter, @@ -101295,19 +101295,19 @@ inline prodml22__CurveDefinition * soap_new_req_prodml22__CurveDefinition( const std::string& Unit, const std::string& uid) { - prodml22__CurveDefinition *_p = gsoap_eml2_3::soap_new_prodml22__CurveDefinition(soap); + prodml23__CurveDefinition *_p = gsoap_eml2_3::soap_new_prodml23__CurveDefinition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CurveDefinition::Order = Order; - _p->prodml22__CurveDefinition::Parameter = Parameter; - _p->prodml22__CurveDefinition::MeasureClass = MeasureClass; - _p->prodml22__CurveDefinition::Unit = Unit; - _p->prodml22__CurveDefinition::uid = uid; + _p->prodml23__CurveDefinition::Order = Order; + _p->prodml23__CurveDefinition::Parameter = Parameter; + _p->prodml23__CurveDefinition::MeasureClass = MeasureClass; + _p->prodml23__CurveDefinition::Unit = Unit; + _p->prodml23__CurveDefinition::uid = uid; } return _p; } -inline prodml22__CurveDefinition * soap_new_set_prodml22__CurveDefinition( +inline prodml23__CurveDefinition * soap_new_set_prodml23__CurveDefinition( struct soap *soap, LONG64 Order, const std::string& Parameter, @@ -101316,477 +101316,477 @@ inline prodml22__CurveDefinition * soap_new_set_prodml22__CurveDefinition( const std::string& Unit, const std::string& uid) { - prodml22__CurveDefinition *_p = gsoap_eml2_3::soap_new_prodml22__CurveDefinition(soap); + prodml23__CurveDefinition *_p = gsoap_eml2_3::soap_new_prodml23__CurveDefinition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CurveDefinition::Order = Order; - _p->prodml22__CurveDefinition::Parameter = Parameter; - _p->prodml22__CurveDefinition::IsIndex = IsIndex; - _p->prodml22__CurveDefinition::MeasureClass = MeasureClass; - _p->prodml22__CurveDefinition::Unit = Unit; - _p->prodml22__CurveDefinition::uid = uid; + _p->prodml23__CurveDefinition::Order = Order; + _p->prodml23__CurveDefinition::Parameter = Parameter; + _p->prodml23__CurveDefinition::IsIndex = IsIndex; + _p->prodml23__CurveDefinition::MeasureClass = MeasureClass; + _p->prodml23__CurveDefinition::Unit = Unit; + _p->prodml23__CurveDefinition::uid = uid; } return _p; } -inline int soap_write_prodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition const*p) +inline int soap_write_prodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition ? "prodml22:CurveDefinition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition ? "prodml23:CurveDefinition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CurveDefinition(struct soap *soap, const char *URL, prodml22__CurveDefinition const*p) +inline int soap_PUT_prodml23__CurveDefinition(struct soap *soap, const char *URL, prodml23__CurveDefinition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition ? "prodml22:CurveDefinition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition ? "prodml23:CurveDefinition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CurveDefinition(struct soap *soap, const char *URL, prodml22__CurveDefinition const*p) +inline int soap_PATCH_prodml23__CurveDefinition(struct soap *soap, const char *URL, prodml23__CurveDefinition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition ? "prodml22:CurveDefinition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition ? "prodml23:CurveDefinition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CurveDefinition(struct soap *soap, const char *URL, prodml22__CurveDefinition const*p) +inline int soap_POST_send_prodml23__CurveDefinition(struct soap *soap, const char *URL, prodml23__CurveDefinition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition ? "prodml22:CurveDefinition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveDefinition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition ? "prodml23:CurveDefinition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CurveDefinition * SOAP_FMAC4 soap_get_prodml22__CurveDefinition(struct soap*, prodml22__CurveDefinition *, const char*, const char*); +SOAP_FMAC3 prodml23__CurveDefinition * SOAP_FMAC4 soap_get_prodml23__CurveDefinition(struct soap*, prodml23__CurveDefinition *, const char*, const char*); -inline int soap_read_prodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition *p) +inline int soap_read_prodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CurveDefinition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CurveDefinition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CurveDefinition(struct soap *soap, const char *URL, prodml22__CurveDefinition *p) +inline int soap_GET_prodml23__CurveDefinition(struct soap *soap, const char *URL, prodml23__CurveDefinition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CurveDefinition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CurveDefinition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CurveDefinition(struct soap *soap, prodml22__CurveDefinition *p) +inline int soap_POST_recv_prodml23__CurveDefinition(struct soap *soap, prodml23__CurveDefinition *p) { - if (gsoap_eml2_3::soap_read_prodml22__CurveDefinition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CurveDefinition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CurveData(struct soap*, const char*, int, const prodml22__CurveData *, const char*); -SOAP_FMAC3 prodml22__CurveData * SOAP_FMAC4 soap_in_prodml22__CurveData(struct soap*, const char*, prodml22__CurveData *, const char*); -SOAP_FMAC1 prodml22__CurveData * SOAP_FMAC2 soap_instantiate_prodml22__CurveData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CurveData(struct soap*, const char*, int, const prodml23__CurveData *, const char*); +SOAP_FMAC3 prodml23__CurveData * SOAP_FMAC4 soap_in_prodml23__CurveData(struct soap*, const char*, prodml23__CurveData *, const char*); +SOAP_FMAC1 prodml23__CurveData * SOAP_FMAC2 soap_instantiate_prodml23__CurveData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CurveData * soap_new_prodml22__CurveData(struct soap *soap, int n = -1) +inline prodml23__CurveData * soap_new_prodml23__CurveData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CurveData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CurveData(soap, n, NULL, NULL, NULL); } -inline prodml22__CurveData * soap_new_req_prodml22__CurveData( +inline prodml23__CurveData * soap_new_req_prodml23__CurveData( struct soap *soap, const std::vector & Index, const std::vector & Value, const std::string& uid) { - prodml22__CurveData *_p = gsoap_eml2_3::soap_new_prodml22__CurveData(soap); + prodml23__CurveData *_p = gsoap_eml2_3::soap_new_prodml23__CurveData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CurveData::Index = Index; - _p->prodml22__CurveData::Value = Value; - _p->prodml22__CurveData::uid = uid; + _p->prodml23__CurveData::Index = Index; + _p->prodml23__CurveData::Value = Value; + _p->prodml23__CurveData::uid = uid; } return _p; } -inline prodml22__CurveData * soap_new_set_prodml22__CurveData( +inline prodml23__CurveData * soap_new_set_prodml23__CurveData( struct soap *soap, const std::vector & Index, const std::vector & Value, const std::string& uid) { - prodml22__CurveData *_p = gsoap_eml2_3::soap_new_prodml22__CurveData(soap); + prodml23__CurveData *_p = gsoap_eml2_3::soap_new_prodml23__CurveData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CurveData::Index = Index; - _p->prodml22__CurveData::Value = Value; - _p->prodml22__CurveData::uid = uid; + _p->prodml23__CurveData::Index = Index; + _p->prodml23__CurveData::Value = Value; + _p->prodml23__CurveData::uid = uid; } return _p; } -inline int soap_write_prodml22__CurveData(struct soap *soap, prodml22__CurveData const*p) +inline int soap_write_prodml23__CurveData(struct soap *soap, prodml23__CurveData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData ? "prodml22:CurveData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData ? "prodml23:CurveData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CurveData(struct soap *soap, const char *URL, prodml22__CurveData const*p) +inline int soap_PUT_prodml23__CurveData(struct soap *soap, const char *URL, prodml23__CurveData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData ? "prodml22:CurveData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData ? "prodml23:CurveData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CurveData(struct soap *soap, const char *URL, prodml22__CurveData const*p) +inline int soap_PATCH_prodml23__CurveData(struct soap *soap, const char *URL, prodml23__CurveData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData ? "prodml22:CurveData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData ? "prodml23:CurveData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CurveData(struct soap *soap, const char *URL, prodml22__CurveData const*p) +inline int soap_POST_send_prodml23__CurveData(struct soap *soap, const char *URL, prodml23__CurveData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData ? "prodml22:CurveData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CurveData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData ? "prodml23:CurveData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CurveData * SOAP_FMAC4 soap_get_prodml22__CurveData(struct soap*, prodml22__CurveData *, const char*, const char*); +SOAP_FMAC3 prodml23__CurveData * SOAP_FMAC4 soap_get_prodml23__CurveData(struct soap*, prodml23__CurveData *, const char*, const char*); -inline int soap_read_prodml22__CurveData(struct soap *soap, prodml22__CurveData *p) +inline int soap_read_prodml23__CurveData(struct soap *soap, prodml23__CurveData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CurveData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CurveData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CurveData(struct soap *soap, const char *URL, prodml22__CurveData *p) +inline int soap_GET_prodml23__CurveData(struct soap *soap, const char *URL, prodml23__CurveData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CurveData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CurveData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CurveData(struct soap *soap, prodml22__CurveData *p) +inline int soap_POST_recv_prodml23__CurveData(struct soap *soap, prodml23__CurveData *p) { - if (gsoap_eml2_3::soap_read_prodml22__CurveData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CurveData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractRelatedFacilityObject(struct soap*, const char*, int, const prodml22__AbstractRelatedFacilityObject *, const char*); -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml22__AbstractRelatedFacilityObject(struct soap*, const char*, prodml22__AbstractRelatedFacilityObject *, const char*); -SOAP_FMAC1 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRelatedFacilityObject(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractRelatedFacilityObject(struct soap*, const char*, int, const prodml23__AbstractRelatedFacilityObject *, const char*); +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_in_prodml23__AbstractRelatedFacilityObject(struct soap*, const char*, prodml23__AbstractRelatedFacilityObject *, const char*); +SOAP_FMAC1 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRelatedFacilityObject(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractRelatedFacilityObject * soap_new_prodml22__AbstractRelatedFacilityObject(struct soap *soap, int n = -1) +inline prodml23__AbstractRelatedFacilityObject * soap_new_prodml23__AbstractRelatedFacilityObject(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractRelatedFacilityObject(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractRelatedFacilityObject(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractRelatedFacilityObject * soap_new_req_prodml22__AbstractRelatedFacilityObject( +inline prodml23__AbstractRelatedFacilityObject * soap_new_req_prodml23__AbstractRelatedFacilityObject( struct soap *soap, - prodml22__FacilityParent *FacilityParent) + prodml23__FacilityParent *FacilityParent) { - prodml22__AbstractRelatedFacilityObject *_p = gsoap_eml2_3::soap_new_prodml22__AbstractRelatedFacilityObject(soap); + prodml23__AbstractRelatedFacilityObject *_p = gsoap_eml2_3::soap_new_prodml23__AbstractRelatedFacilityObject(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractRelatedFacilityObject::FacilityParent = FacilityParent; + _p->prodml23__AbstractRelatedFacilityObject::FacilityParent = FacilityParent; } return _p; } -inline prodml22__AbstractRelatedFacilityObject * soap_new_set_prodml22__AbstractRelatedFacilityObject( +inline prodml23__AbstractRelatedFacilityObject * soap_new_set_prodml23__AbstractRelatedFacilityObject( struct soap *soap, - prodml22__FacilityParent *FacilityParent) + prodml23__FacilityParent *FacilityParent) { - prodml22__AbstractRelatedFacilityObject *_p = gsoap_eml2_3::soap_new_prodml22__AbstractRelatedFacilityObject(soap); + prodml23__AbstractRelatedFacilityObject *_p = gsoap_eml2_3::soap_new_prodml23__AbstractRelatedFacilityObject(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractRelatedFacilityObject::FacilityParent = FacilityParent; + _p->prodml23__AbstractRelatedFacilityObject::FacilityParent = FacilityParent; } return _p; } -inline int soap_write_prodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject const*p) +inline int soap_write_prodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject ? "prodml22:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject ? "prodml23:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml22__AbstractRelatedFacilityObject const*p) +inline int soap_PUT_prodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml23__AbstractRelatedFacilityObject const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject ? "prodml22:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject ? "prodml23:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml22__AbstractRelatedFacilityObject const*p) +inline int soap_PATCH_prodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml23__AbstractRelatedFacilityObject const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject ? "prodml22:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject ? "prodml23:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml22__AbstractRelatedFacilityObject const*p) +inline int soap_POST_send_prodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml23__AbstractRelatedFacilityObject const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject ? "prodml22:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRelatedFacilityObject", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject ? "prodml23:AbstractRelatedFacilityObject" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_get_prodml22__AbstractRelatedFacilityObject(struct soap*, prodml22__AbstractRelatedFacilityObject *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC4 soap_get_prodml23__AbstractRelatedFacilityObject(struct soap*, prodml23__AbstractRelatedFacilityObject *, const char*, const char*); -inline int soap_read_prodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject *p) +inline int soap_read_prodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractRelatedFacilityObject(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractRelatedFacilityObject(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml22__AbstractRelatedFacilityObject *p) +inline int soap_GET_prodml23__AbstractRelatedFacilityObject(struct soap *soap, const char *URL, prodml23__AbstractRelatedFacilityObject *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractRelatedFacilityObject(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractRelatedFacilityObject(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractRelatedFacilityObject(struct soap *soap, prodml22__AbstractRelatedFacilityObject *p) +inline int soap_POST_recv_prodml23__AbstractRelatedFacilityObject(struct soap *soap, prodml23__AbstractRelatedFacilityObject *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractRelatedFacilityObject(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractRelatedFacilityObject(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractRefProductFlow(struct soap*, const char*, int, const prodml22__AbstractRefProductFlow *, const char*); -SOAP_FMAC3 prodml22__AbstractRefProductFlow * SOAP_FMAC4 soap_in_prodml22__AbstractRefProductFlow(struct soap*, const char*, prodml22__AbstractRefProductFlow *, const char*); -SOAP_FMAC1 prodml22__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRefProductFlow(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractRefProductFlow(struct soap*, const char*, int, const prodml23__AbstractRefProductFlow *, const char*); +SOAP_FMAC3 prodml23__AbstractRefProductFlow * SOAP_FMAC4 soap_in_prodml23__AbstractRefProductFlow(struct soap*, const char*, prodml23__AbstractRefProductFlow *, const char*); +SOAP_FMAC1 prodml23__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRefProductFlow(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractRefProductFlow * soap_new_prodml22__AbstractRefProductFlow(struct soap *soap, int n = -1) +inline prodml23__AbstractRefProductFlow * soap_new_prodml23__AbstractRefProductFlow(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractRefProductFlow(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractRefProductFlow(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractRefProductFlow * soap_new_req_prodml22__AbstractRefProductFlow( +inline prodml23__AbstractRefProductFlow * soap_new_req_prodml23__AbstractRefProductFlow( struct soap *soap, - const union _prodml22__union_AbstractRefProductFlow& union_AbstractRefProductFlow) + const union _prodml23__union_AbstractRefProductFlow& union_AbstractRefProductFlow) { - prodml22__AbstractRefProductFlow *_p = gsoap_eml2_3::soap_new_prodml22__AbstractRefProductFlow(soap); + prodml23__AbstractRefProductFlow *_p = gsoap_eml2_3::soap_new_prodml23__AbstractRefProductFlow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow; + _p->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow; } return _p; } -inline prodml22__AbstractRefProductFlow * soap_new_set_prodml22__AbstractRefProductFlow( +inline prodml23__AbstractRefProductFlow * soap_new_set_prodml23__AbstractRefProductFlow( struct soap *soap, int __union_AbstractRefProductFlow, - const union _prodml22__union_AbstractRefProductFlow& union_AbstractRefProductFlow) + const union _prodml23__union_AbstractRefProductFlow& union_AbstractRefProductFlow) { - prodml22__AbstractRefProductFlow *_p = gsoap_eml2_3::soap_new_prodml22__AbstractRefProductFlow(soap); + prodml23__AbstractRefProductFlow *_p = gsoap_eml2_3::soap_new_prodml23__AbstractRefProductFlow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractRefProductFlow::__union_AbstractRefProductFlow = __union_AbstractRefProductFlow; - _p->prodml22__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow; + _p->prodml23__AbstractRefProductFlow::__union_AbstractRefProductFlow = __union_AbstractRefProductFlow; + _p->prodml23__AbstractRefProductFlow::union_AbstractRefProductFlow = union_AbstractRefProductFlow; } return _p; } -inline int soap_write_prodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow const*p) +inline int soap_write_prodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow ? "prodml22:AbstractRefProductFlow" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow ? "prodml23:AbstractRefProductFlow" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml22__AbstractRefProductFlow const*p) +inline int soap_PUT_prodml23__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml23__AbstractRefProductFlow const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow ? "prodml22:AbstractRefProductFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow ? "prodml23:AbstractRefProductFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml22__AbstractRefProductFlow const*p) +inline int soap_PATCH_prodml23__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml23__AbstractRefProductFlow const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow ? "prodml22:AbstractRefProductFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow ? "prodml23:AbstractRefProductFlow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml22__AbstractRefProductFlow const*p) +inline int soap_POST_send_prodml23__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml23__AbstractRefProductFlow const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow ? "prodml22:AbstractRefProductFlow" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRefProductFlow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow ? "prodml23:AbstractRefProductFlow" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractRefProductFlow * SOAP_FMAC4 soap_get_prodml22__AbstractRefProductFlow(struct soap*, prodml22__AbstractRefProductFlow *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractRefProductFlow * SOAP_FMAC4 soap_get_prodml23__AbstractRefProductFlow(struct soap*, prodml23__AbstractRefProductFlow *, const char*, const char*); -inline int soap_read_prodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow *p) +inline int soap_read_prodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractRefProductFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractRefProductFlow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml22__AbstractRefProductFlow *p) +inline int soap_GET_prodml23__AbstractRefProductFlow(struct soap *soap, const char *URL, prodml23__AbstractRefProductFlow *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractRefProductFlow(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractRefProductFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractRefProductFlow(struct soap *soap, prodml22__AbstractRefProductFlow *p) +inline int soap_POST_recv_prodml23__AbstractRefProductFlow(struct soap *soap, prodml23__AbstractRefProductFlow *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractRefProductFlow(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractRefProductFlow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractMeasureData(struct soap*, const char*, int, const prodml22__AbstractMeasureData *, const char*); -SOAP_FMAC3 prodml22__AbstractMeasureData * SOAP_FMAC4 soap_in_prodml22__AbstractMeasureData(struct soap*, const char*, prodml22__AbstractMeasureData *, const char*); -SOAP_FMAC1 prodml22__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractMeasureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractMeasureData(struct soap*, const char*, int, const prodml23__AbstractMeasureData *, const char*); +SOAP_FMAC3 prodml23__AbstractMeasureData * SOAP_FMAC4 soap_in_prodml23__AbstractMeasureData(struct soap*, const char*, prodml23__AbstractMeasureData *, const char*); +SOAP_FMAC1 prodml23__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractMeasureData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractMeasureData * soap_new_prodml22__AbstractMeasureData(struct soap *soap, int n = -1) +inline prodml23__AbstractMeasureData * soap_new_prodml23__AbstractMeasureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractMeasureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractMeasureData(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractMeasureData * soap_new_req_prodml22__AbstractMeasureData( +inline prodml23__AbstractMeasureData * soap_new_req_prodml23__AbstractMeasureData( struct soap *soap) { - prodml22__AbstractMeasureData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractMeasureData(soap); + prodml23__AbstractMeasureData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractMeasureData(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractMeasureData * soap_new_set_prodml22__AbstractMeasureData( +inline prodml23__AbstractMeasureData * soap_new_set_prodml23__AbstractMeasureData( struct soap *soap) { - prodml22__AbstractMeasureData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractMeasureData(soap); + prodml23__AbstractMeasureData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractMeasureData(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData const*p) +inline int soap_write_prodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData ? "prodml22:AbstractMeasureData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData ? "prodml23:AbstractMeasureData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractMeasureData(struct soap *soap, const char *URL, prodml22__AbstractMeasureData const*p) +inline int soap_PUT_prodml23__AbstractMeasureData(struct soap *soap, const char *URL, prodml23__AbstractMeasureData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData ? "prodml22:AbstractMeasureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData ? "prodml23:AbstractMeasureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractMeasureData(struct soap *soap, const char *URL, prodml22__AbstractMeasureData const*p) +inline int soap_PATCH_prodml23__AbstractMeasureData(struct soap *soap, const char *URL, prodml23__AbstractMeasureData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData ? "prodml22:AbstractMeasureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData ? "prodml23:AbstractMeasureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractMeasureData(struct soap *soap, const char *URL, prodml22__AbstractMeasureData const*p) +inline int soap_POST_send_prodml23__AbstractMeasureData(struct soap *soap, const char *URL, prodml23__AbstractMeasureData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData ? "prodml22:AbstractMeasureData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractMeasureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData ? "prodml23:AbstractMeasureData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractMeasureData * SOAP_FMAC4 soap_get_prodml22__AbstractMeasureData(struct soap*, prodml22__AbstractMeasureData *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractMeasureData * SOAP_FMAC4 soap_get_prodml23__AbstractMeasureData(struct soap*, prodml23__AbstractMeasureData *, const char*, const char*); -inline int soap_read_prodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData *p) +inline int soap_read_prodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractMeasureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractMeasureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractMeasureData(struct soap *soap, const char *URL, prodml22__AbstractMeasureData *p) +inline int soap_GET_prodml23__AbstractMeasureData(struct soap *soap, const char *URL, prodml23__AbstractMeasureData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractMeasureData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractMeasureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractMeasureData(struct soap *soap, prodml22__AbstractMeasureData *p) +inline int soap_POST_recv_prodml23__AbstractMeasureData(struct soap *soap, prodml23__AbstractMeasureData *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractMeasureData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractMeasureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CommonPropertiesProductVolume(struct soap*, const char*, int, const prodml22__CommonPropertiesProductVolume *, const char*); -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume * SOAP_FMAC4 soap_in_prodml22__CommonPropertiesProductVolume(struct soap*, const char*, prodml22__CommonPropertiesProductVolume *, const char*); -SOAP_FMAC1 prodml22__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__CommonPropertiesProductVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CommonPropertiesProductVolume(struct soap*, const char*, int, const prodml23__CommonPropertiesProductVolume *, const char*); +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume * SOAP_FMAC4 soap_in_prodml23__CommonPropertiesProductVolume(struct soap*, const char*, prodml23__CommonPropertiesProductVolume *, const char*); +SOAP_FMAC1 prodml23__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate_prodml23__CommonPropertiesProductVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CommonPropertiesProductVolume * soap_new_prodml22__CommonPropertiesProductVolume(struct soap *soap, int n = -1) +inline prodml23__CommonPropertiesProductVolume * soap_new_prodml23__CommonPropertiesProductVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CommonPropertiesProductVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CommonPropertiesProductVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__CommonPropertiesProductVolume * soap_new_req_prodml22__CommonPropertiesProductVolume( +inline prodml23__CommonPropertiesProductVolume * soap_new_req_prodml23__CommonPropertiesProductVolume( struct soap *soap) { - prodml22__CommonPropertiesProductVolume *_p = gsoap_eml2_3::soap_new_prodml22__CommonPropertiesProductVolume(soap); + prodml23__CommonPropertiesProductVolume *_p = gsoap_eml2_3::soap_new_prodml23__CommonPropertiesProductVolume(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__CommonPropertiesProductVolume * soap_new_set_prodml22__CommonPropertiesProductVolume( +inline prodml23__CommonPropertiesProductVolume * soap_new_set_prodml23__CommonPropertiesProductVolume( struct soap *soap, eml23__VolumePerVolumeMeasure *Gor, eml23__VolumePerVolumeMeasure *GorMTD, @@ -101820,126 +101820,126 @@ inline prodml22__CommonPropertiesProductVolume * soap_new_set_prodml22__CommonPr eml23__MassPerVolumeMeasure *DensityStabilizedCrude, const std::vector & DensityValue, const std::vector & VolumeValue, - const std::vector & PortDiff, + const std::vector & PortDiff, const std::vector & FlowRateValue) { - prodml22__CommonPropertiesProductVolume *_p = gsoap_eml2_3::soap_new_prodml22__CommonPropertiesProductVolume(soap); + prodml23__CommonPropertiesProductVolume *_p = gsoap_eml2_3::soap_new_prodml23__CommonPropertiesProductVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CommonPropertiesProductVolume::Gor = Gor; - _p->prodml22__CommonPropertiesProductVolume::GorMTD = GorMTD; - _p->prodml22__CommonPropertiesProductVolume::GasLiquidRatio = GasLiquidRatio; - _p->prodml22__CommonPropertiesProductVolume::WaterConcMass = WaterConcMass; - _p->prodml22__CommonPropertiesProductVolume::WaterConcVol = WaterConcVol; - _p->prodml22__CommonPropertiesProductVolume::Atmosphere = Atmosphere; - _p->prodml22__CommonPropertiesProductVolume::Temp = Temp; - _p->prodml22__CommonPropertiesProductVolume::Pres = Pres; - _p->prodml22__CommonPropertiesProductVolume::AbsoluteMinPres = AbsoluteMinPres; - _p->prodml22__CommonPropertiesProductVolume::Mass = Mass; - _p->prodml22__CommonPropertiesProductVolume::Work = Work; - _p->prodml22__CommonPropertiesProductVolume::Efficiency = Efficiency; - _p->prodml22__CommonPropertiesProductVolume::Rvp = Rvp; - _p->prodml22__CommonPropertiesProductVolume::Tvp = Tvp; - _p->prodml22__CommonPropertiesProductVolume::Bsw = Bsw; - _p->prodml22__CommonPropertiesProductVolume::BswPrevious = BswPrevious; - _p->prodml22__CommonPropertiesProductVolume::DensityFlowRate = DensityFlowRate; - _p->prodml22__CommonPropertiesProductVolume::Concentration = Concentration; - _p->prodml22__CommonPropertiesProductVolume::MolecularWeight = MolecularWeight; - _p->prodml22__CommonPropertiesProductVolume::WeightPercent = WeightPercent; - _p->prodml22__CommonPropertiesProductVolume::MolePercent = MolePercent; - _p->prodml22__CommonPropertiesProductVolume::MoleAmt = MoleAmt; - _p->prodml22__CommonPropertiesProductVolume::Sg = Sg; - _p->prodml22__CommonPropertiesProductVolume::HcDewpoint = HcDewpoint; - _p->prodml22__CommonPropertiesProductVolume::WaterDewpoint = WaterDewpoint; - _p->prodml22__CommonPropertiesProductVolume::WobbeIndex = WobbeIndex; - _p->prodml22__CommonPropertiesProductVolume::GrossCalorificValueStd = GrossCalorificValueStd; - _p->prodml22__CommonPropertiesProductVolume::RvpStabilizedCrude = RvpStabilizedCrude; - _p->prodml22__CommonPropertiesProductVolume::BswStabilizedCrude = BswStabilizedCrude; - _p->prodml22__CommonPropertiesProductVolume::DensityStabilizedCrude = DensityStabilizedCrude; - _p->prodml22__CommonPropertiesProductVolume::DensityValue = DensityValue; - _p->prodml22__CommonPropertiesProductVolume::VolumeValue = VolumeValue; - _p->prodml22__CommonPropertiesProductVolume::PortDiff = PortDiff; - _p->prodml22__CommonPropertiesProductVolume::FlowRateValue = FlowRateValue; + _p->prodml23__CommonPropertiesProductVolume::Gor = Gor; + _p->prodml23__CommonPropertiesProductVolume::GorMTD = GorMTD; + _p->prodml23__CommonPropertiesProductVolume::GasLiquidRatio = GasLiquidRatio; + _p->prodml23__CommonPropertiesProductVolume::WaterConcMass = WaterConcMass; + _p->prodml23__CommonPropertiesProductVolume::WaterConcVol = WaterConcVol; + _p->prodml23__CommonPropertiesProductVolume::Atmosphere = Atmosphere; + _p->prodml23__CommonPropertiesProductVolume::Temp = Temp; + _p->prodml23__CommonPropertiesProductVolume::Pres = Pres; + _p->prodml23__CommonPropertiesProductVolume::AbsoluteMinPres = AbsoluteMinPres; + _p->prodml23__CommonPropertiesProductVolume::Mass = Mass; + _p->prodml23__CommonPropertiesProductVolume::Work = Work; + _p->prodml23__CommonPropertiesProductVolume::Efficiency = Efficiency; + _p->prodml23__CommonPropertiesProductVolume::Rvp = Rvp; + _p->prodml23__CommonPropertiesProductVolume::Tvp = Tvp; + _p->prodml23__CommonPropertiesProductVolume::Bsw = Bsw; + _p->prodml23__CommonPropertiesProductVolume::BswPrevious = BswPrevious; + _p->prodml23__CommonPropertiesProductVolume::DensityFlowRate = DensityFlowRate; + _p->prodml23__CommonPropertiesProductVolume::Concentration = Concentration; + _p->prodml23__CommonPropertiesProductVolume::MolecularWeight = MolecularWeight; + _p->prodml23__CommonPropertiesProductVolume::WeightPercent = WeightPercent; + _p->prodml23__CommonPropertiesProductVolume::MolePercent = MolePercent; + _p->prodml23__CommonPropertiesProductVolume::MoleAmt = MoleAmt; + _p->prodml23__CommonPropertiesProductVolume::Sg = Sg; + _p->prodml23__CommonPropertiesProductVolume::HcDewpoint = HcDewpoint; + _p->prodml23__CommonPropertiesProductVolume::WaterDewpoint = WaterDewpoint; + _p->prodml23__CommonPropertiesProductVolume::WobbeIndex = WobbeIndex; + _p->prodml23__CommonPropertiesProductVolume::GrossCalorificValueStd = GrossCalorificValueStd; + _p->prodml23__CommonPropertiesProductVolume::RvpStabilizedCrude = RvpStabilizedCrude; + _p->prodml23__CommonPropertiesProductVolume::BswStabilizedCrude = BswStabilizedCrude; + _p->prodml23__CommonPropertiesProductVolume::DensityStabilizedCrude = DensityStabilizedCrude; + _p->prodml23__CommonPropertiesProductVolume::DensityValue = DensityValue; + _p->prodml23__CommonPropertiesProductVolume::VolumeValue = VolumeValue; + _p->prodml23__CommonPropertiesProductVolume::PortDiff = PortDiff; + _p->prodml23__CommonPropertiesProductVolume::FlowRateValue = FlowRateValue; } return _p; } -inline int soap_write_prodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume const*p) +inline int soap_write_prodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume ? "prodml22:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume ? "prodml23:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml22__CommonPropertiesProductVolume const*p) +inline int soap_PUT_prodml23__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml23__CommonPropertiesProductVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume ? "prodml22:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume ? "prodml23:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml22__CommonPropertiesProductVolume const*p) +inline int soap_PATCH_prodml23__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml23__CommonPropertiesProductVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume ? "prodml22:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume ? "prodml23:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml22__CommonPropertiesProductVolume const*p) +inline int soap_POST_send_prodml23__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml23__CommonPropertiesProductVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume ? "prodml22:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CommonPropertiesProductVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume ? "prodml23:CommonPropertiesProductVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume * SOAP_FMAC4 soap_get_prodml22__CommonPropertiesProductVolume(struct soap*, prodml22__CommonPropertiesProductVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume * SOAP_FMAC4 soap_get_prodml23__CommonPropertiesProductVolume(struct soap*, prodml23__CommonPropertiesProductVolume *, const char*, const char*); -inline int soap_read_prodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume *p) +inline int soap_read_prodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CommonPropertiesProductVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CommonPropertiesProductVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml22__CommonPropertiesProductVolume *p) +inline int soap_GET_prodml23__CommonPropertiesProductVolume(struct soap *soap, const char *URL, prodml23__CommonPropertiesProductVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CommonPropertiesProductVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CommonPropertiesProductVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CommonPropertiesProductVolume(struct soap *soap, prodml22__CommonPropertiesProductVolume *p) +inline int soap_POST_recv_prodml23__CommonPropertiesProductVolume(struct soap *soap, prodml23__CommonPropertiesProductVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__CommonPropertiesProductVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CommonPropertiesProductVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestJob(struct soap*, const char*, int, const prodml22__FlowTestJob *, const char*); -SOAP_FMAC3 prodml22__FlowTestJob * SOAP_FMAC4 soap_in_prodml22__FlowTestJob(struct soap*, const char*, prodml22__FlowTestJob *, const char*); -SOAP_FMAC1 prodml22__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestJob(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestJob(struct soap*, const char*, int, const prodml23__FlowTestJob *, const char*); +SOAP_FMAC3 prodml23__FlowTestJob * SOAP_FMAC4 soap_in_prodml23__FlowTestJob(struct soap*, const char*, prodml23__FlowTestJob *, const char*); +SOAP_FMAC1 prodml23__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestJob(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FlowTestJob * soap_new_prodml22__FlowTestJob(struct soap *soap, int n = -1) +inline prodml23__FlowTestJob * soap_new_prodml23__FlowTestJob(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FlowTestJob(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FlowTestJob(soap, n, NULL, NULL, NULL); } -inline prodml22__FlowTestJob * soap_new_req_prodml22__FlowTestJob( +inline prodml23__FlowTestJob * soap_new_req_prodml23__FlowTestJob( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FlowTestJob *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestJob(soap); + prodml23__FlowTestJob *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestJob(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -101949,7 +101949,7 @@ inline prodml22__FlowTestJob * soap_new_req_prodml22__FlowTestJob( return _p; } -inline prodml22__FlowTestJob * soap_new_set_prodml22__FlowTestJob( +inline prodml23__FlowTestJob * soap_new_set_prodml23__FlowTestJob( struct soap *soap, eml23__DataObjectReference *Client, eml23__DataObjectReference *ServiceCompany, @@ -101972,18 +101972,18 @@ inline prodml22__FlowTestJob * soap_new_set_prodml22__FlowTestJob( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FlowTestJob *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestJob(soap); + prodml23__FlowTestJob *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestJob(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FlowTestJob::Client = Client; - _p->prodml22__FlowTestJob::ServiceCompany = ServiceCompany; - _p->prodml22__FlowTestJob::StartTime = StartTime; - _p->prodml22__FlowTestJob::FluidSampleAcquisitionJob = FluidSampleAcquisitionJob; - _p->prodml22__FlowTestJob::PtaDataPreProcess = PtaDataPreProcess; - _p->prodml22__FlowTestJob::FlowTestActivity = FlowTestActivity; - _p->prodml22__FlowTestJob::PtaDeconvolution = PtaDeconvolution; - _p->prodml22__FlowTestJob::PressureTransientAnalysis = PressureTransientAnalysis; - _p->prodml22__FlowTestJob::EndTime = EndTime; + _p->prodml23__FlowTestJob::Client = Client; + _p->prodml23__FlowTestJob::ServiceCompany = ServiceCompany; + _p->prodml23__FlowTestJob::StartTime = StartTime; + _p->prodml23__FlowTestJob::FluidSampleAcquisitionJob = FluidSampleAcquisitionJob; + _p->prodml23__FlowTestJob::PtaDataPreProcess = PtaDataPreProcess; + _p->prodml23__FlowTestJob::FlowTestActivity = FlowTestActivity; + _p->prodml23__FlowTestJob::PtaDeconvolution = PtaDeconvolution; + _p->prodml23__FlowTestJob::PressureTransientAnalysis = PressureTransientAnalysis; + _p->prodml23__FlowTestJob::EndTime = EndTime; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -101999,76 +101999,76 @@ inline prodml22__FlowTestJob * soap_new_set_prodml22__FlowTestJob( return _p; } -inline int soap_write_prodml22__FlowTestJob(struct soap *soap, prodml22__FlowTestJob const*p) +inline int soap_write_prodml23__FlowTestJob(struct soap *soap, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob ? "prodml22:FlowTestJob" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob ? "prodml23:FlowTestJob" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob const*p) +inline int soap_PUT_prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob ? "prodml22:FlowTestJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob ? "prodml23:FlowTestJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob const*p) +inline int soap_PATCH_prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob ? "prodml22:FlowTestJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob ? "prodml23:FlowTestJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob const*p) +inline int soap_POST_send_prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob ? "prodml22:FlowTestJob" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob ? "prodml23:FlowTestJob" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowTestJob * SOAP_FMAC4 soap_get_prodml22__FlowTestJob(struct soap*, prodml22__FlowTestJob *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowTestJob * SOAP_FMAC4 soap_get_prodml23__FlowTestJob(struct soap*, prodml23__FlowTestJob *, const char*, const char*); -inline int soap_read_prodml22__FlowTestJob(struct soap *soap, prodml22__FlowTestJob *p) +inline int soap_read_prodml23__FlowTestJob(struct soap *soap, prodml23__FlowTestJob *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlowTestJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlowTestJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlowTestJob(struct soap *soap, const char *URL, prodml22__FlowTestJob *p) +inline int soap_GET_prodml23__FlowTestJob(struct soap *soap, const char *URL, prodml23__FlowTestJob *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlowTestJob(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlowTestJob(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlowTestJob(struct soap *soap, prodml22__FlowTestJob *p) +inline int soap_POST_recv_prodml23__FlowTestJob(struct soap *soap, prodml23__FlowTestJob *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlowTestJob(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlowTestJob(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellheadSampleAcquisition(struct soap*, const char*, int, const prodml22__WellheadSampleAcquisition *, const char*); -SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__WellheadSampleAcquisition(struct soap*, const char*, prodml22__WellheadSampleAcquisition *, const char*); -SOAP_FMAC1 prodml22__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__WellheadSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellheadSampleAcquisition(struct soap*, const char*, int, const prodml23__WellheadSampleAcquisition *, const char*); +SOAP_FMAC3 prodml23__WellheadSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__WellheadSampleAcquisition(struct soap*, const char*, prodml23__WellheadSampleAcquisition *, const char*); +SOAP_FMAC1 prodml23__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__WellheadSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellheadSampleAcquisition * soap_new_prodml22__WellheadSampleAcquisition(struct soap *soap, int n = -1) +inline prodml23__WellheadSampleAcquisition * soap_new_prodml23__WellheadSampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellheadSampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellheadSampleAcquisition(soap, n, NULL, NULL, NULL); } -inline prodml22__WellheadSampleAcquisition * soap_new_req_prodml22__WellheadSampleAcquisition( +inline prodml23__WellheadSampleAcquisition * soap_new_req_prodml23__WellheadSampleAcquisition( struct soap *soap, eml23__AbstractPressureValue *WellheadPressure, eml23__ThermodynamicTemperatureMeasure *WellheadTemperature, @@ -102079,22 +102079,22 @@ inline prodml22__WellheadSampleAcquisition * soap_new_req_prodml22__WellheadSamp eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__WellheadSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__WellheadSampleAcquisition(soap); + prodml23__WellheadSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__WellheadSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellheadSampleAcquisition::WellheadPressure = WellheadPressure; - _p->prodml22__WellheadSampleAcquisition::WellheadTemperature = WellheadTemperature; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__WellheadSampleAcquisition::WellheadPressure = WellheadPressure; + _p->prodml23__WellheadSampleAcquisition::WellheadTemperature = WellheadTemperature; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline prodml22__WellheadSampleAcquisition * soap_new_set_prodml22__WellheadSampleAcquisition( +inline prodml23__WellheadSampleAcquisition * soap_new_set_prodml23__WellheadSampleAcquisition( struct soap *soap, eml23__DataObjectReference *Well, eml23__DataObjectReference *WellCompletion, @@ -102116,102 +102116,102 @@ inline prodml22__WellheadSampleAcquisition * soap_new_set_prodml22__WellheadSamp eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__WellheadSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__WellheadSampleAcquisition(soap); + prodml23__WellheadSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__WellheadSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellheadSampleAcquisition::Well = Well; - _p->prodml22__WellheadSampleAcquisition::WellCompletion = WellCompletion; - _p->prodml22__WellheadSampleAcquisition::WellheadPressure = WellheadPressure; - _p->prodml22__WellheadSampleAcquisition::WellheadTemperature = WellheadTemperature; - _p->prodml22__WellheadSampleAcquisition::SamplingPoint = SamplingPoint; - _p->prodml22__WellheadSampleAcquisition::FlowTestActivity = FlowTestActivity; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; - _p->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; - _p->prodml22__FluidSampleAcquisition::FormationPressure = FormationPressure__1; - _p->prodml22__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__WellheadSampleAcquisition::Well = Well; + _p->prodml23__WellheadSampleAcquisition::WellCompletion = WellCompletion; + _p->prodml23__WellheadSampleAcquisition::WellheadPressure = WellheadPressure; + _p->prodml23__WellheadSampleAcquisition::WellheadTemperature = WellheadTemperature; + _p->prodml23__WellheadSampleAcquisition::SamplingPoint = SamplingPoint; + _p->prodml23__WellheadSampleAcquisition::FlowTestActivity = FlowTestActivity; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; + _p->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; + _p->prodml23__FluidSampleAcquisition::FormationPressure = FormationPressure__1; + _p->prodml23__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline int soap_write_prodml22__WellheadSampleAcquisition(struct soap *soap, prodml22__WellheadSampleAcquisition const*p) +inline int soap_write_prodml23__WellheadSampleAcquisition(struct soap *soap, prodml23__WellheadSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition ? "prodml22:WellheadSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition ? "prodml23:WellheadSampleAcquisition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml22__WellheadSampleAcquisition const*p) +inline int soap_PUT_prodml23__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml23__WellheadSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition ? "prodml22:WellheadSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition ? "prodml23:WellheadSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml22__WellheadSampleAcquisition const*p) +inline int soap_PATCH_prodml23__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml23__WellheadSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition ? "prodml22:WellheadSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition ? "prodml23:WellheadSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml22__WellheadSampleAcquisition const*p) +inline int soap_POST_send_prodml23__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml23__WellheadSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition ? "prodml22:WellheadSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellheadSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition ? "prodml23:WellheadSampleAcquisition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellheadSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__WellheadSampleAcquisition(struct soap*, prodml22__WellheadSampleAcquisition *, const char*, const char*); +SOAP_FMAC3 prodml23__WellheadSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__WellheadSampleAcquisition(struct soap*, prodml23__WellheadSampleAcquisition *, const char*, const char*); -inline int soap_read_prodml22__WellheadSampleAcquisition(struct soap *soap, prodml22__WellheadSampleAcquisition *p) +inline int soap_read_prodml23__WellheadSampleAcquisition(struct soap *soap, prodml23__WellheadSampleAcquisition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellheadSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellheadSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml22__WellheadSampleAcquisition *p) +inline int soap_GET_prodml23__WellheadSampleAcquisition(struct soap *soap, const char *URL, prodml23__WellheadSampleAcquisition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellheadSampleAcquisition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellheadSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellheadSampleAcquisition(struct soap *soap, prodml22__WellheadSampleAcquisition *p) +inline int soap_POST_recv_prodml23__WellheadSampleAcquisition(struct soap *soap, prodml23__WellheadSampleAcquisition *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellheadSampleAcquisition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellheadSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SeparatorSampleAcquisition(struct soap*, const char*, int, const prodml22__SeparatorSampleAcquisition *, const char*); -SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__SeparatorSampleAcquisition(struct soap*, const char*, prodml22__SeparatorSampleAcquisition *, const char*); -SOAP_FMAC1 prodml22__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__SeparatorSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SeparatorSampleAcquisition(struct soap*, const char*, int, const prodml23__SeparatorSampleAcquisition *, const char*); +SOAP_FMAC3 prodml23__SeparatorSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__SeparatorSampleAcquisition(struct soap*, const char*, prodml23__SeparatorSampleAcquisition *, const char*); +SOAP_FMAC1 prodml23__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__SeparatorSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SeparatorSampleAcquisition * soap_new_prodml22__SeparatorSampleAcquisition(struct soap *soap, int n = -1) +inline prodml23__SeparatorSampleAcquisition * soap_new_prodml23__SeparatorSampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SeparatorSampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SeparatorSampleAcquisition(soap, n, NULL, NULL, NULL); } -inline prodml22__SeparatorSampleAcquisition * soap_new_req_prodml22__SeparatorSampleAcquisition( +inline prodml23__SeparatorSampleAcquisition * soap_new_req_prodml23__SeparatorSampleAcquisition( struct soap *soap, const std::string& Separator, eml23__AbstractPressureValue *SeparatorPressure, @@ -102223,23 +102223,23 @@ inline prodml22__SeparatorSampleAcquisition * soap_new_req_prodml22__SeparatorSa eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__SeparatorSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__SeparatorSampleAcquisition(soap); + prodml23__SeparatorSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__SeparatorSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SeparatorSampleAcquisition::Separator = Separator; - _p->prodml22__SeparatorSampleAcquisition::SeparatorPressure = SeparatorPressure; - _p->prodml22__SeparatorSampleAcquisition::SeparatorTemperature = SeparatorTemperature; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__SeparatorSampleAcquisition::Separator = Separator; + _p->prodml23__SeparatorSampleAcquisition::SeparatorPressure = SeparatorPressure; + _p->prodml23__SeparatorSampleAcquisition::SeparatorTemperature = SeparatorTemperature; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline prodml22__SeparatorSampleAcquisition * soap_new_set_prodml22__SeparatorSampleAcquisition( +inline prodml23__SeparatorSampleAcquisition * soap_new_set_prodml23__SeparatorSampleAcquisition( struct soap *soap, const std::string& Separator, eml23__DataObjectReference *WellCompletion, @@ -102267,108 +102267,108 @@ inline prodml22__SeparatorSampleAcquisition * soap_new_set_prodml22__SeparatorSa eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__SeparatorSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__SeparatorSampleAcquisition(soap); + prodml23__SeparatorSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__SeparatorSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SeparatorSampleAcquisition::Separator = Separator; - _p->prodml22__SeparatorSampleAcquisition::WellCompletion = WellCompletion; - _p->prodml22__SeparatorSampleAcquisition::SeparatorPressure = SeparatorPressure; - _p->prodml22__SeparatorSampleAcquisition::SeparatorTemperature = SeparatorTemperature; - _p->prodml22__SeparatorSampleAcquisition::SamplingPoint = SamplingPoint; - _p->prodml22__SeparatorSampleAcquisition::CorrectedOilRate = CorrectedOilRate; - _p->prodml22__SeparatorSampleAcquisition::CorrectedGasRate = CorrectedGasRate; - _p->prodml22__SeparatorSampleAcquisition::CorrectedWaterRate = CorrectedWaterRate; - _p->prodml22__SeparatorSampleAcquisition::MeasuredOilRate = MeasuredOilRate; - _p->prodml22__SeparatorSampleAcquisition::MeasuredGasRate = MeasuredGasRate; - _p->prodml22__SeparatorSampleAcquisition::MeasuredWaterRate = MeasuredWaterRate; - _p->prodml22__SeparatorSampleAcquisition::FlowTestActivity = FlowTestActivity; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; - _p->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; - _p->prodml22__FluidSampleAcquisition::FormationPressure = FormationPressure__1; - _p->prodml22__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__SeparatorSampleAcquisition::Separator = Separator; + _p->prodml23__SeparatorSampleAcquisition::WellCompletion = WellCompletion; + _p->prodml23__SeparatorSampleAcquisition::SeparatorPressure = SeparatorPressure; + _p->prodml23__SeparatorSampleAcquisition::SeparatorTemperature = SeparatorTemperature; + _p->prodml23__SeparatorSampleAcquisition::SamplingPoint = SamplingPoint; + _p->prodml23__SeparatorSampleAcquisition::CorrectedOilRate = CorrectedOilRate; + _p->prodml23__SeparatorSampleAcquisition::CorrectedGasRate = CorrectedGasRate; + _p->prodml23__SeparatorSampleAcquisition::CorrectedWaterRate = CorrectedWaterRate; + _p->prodml23__SeparatorSampleAcquisition::MeasuredOilRate = MeasuredOilRate; + _p->prodml23__SeparatorSampleAcquisition::MeasuredGasRate = MeasuredGasRate; + _p->prodml23__SeparatorSampleAcquisition::MeasuredWaterRate = MeasuredWaterRate; + _p->prodml23__SeparatorSampleAcquisition::FlowTestActivity = FlowTestActivity; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; + _p->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; + _p->prodml23__FluidSampleAcquisition::FormationPressure = FormationPressure__1; + _p->prodml23__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline int soap_write_prodml22__SeparatorSampleAcquisition(struct soap *soap, prodml22__SeparatorSampleAcquisition const*p) +inline int soap_write_prodml23__SeparatorSampleAcquisition(struct soap *soap, prodml23__SeparatorSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition ? "prodml22:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition ? "prodml23:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml22__SeparatorSampleAcquisition const*p) +inline int soap_PUT_prodml23__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml23__SeparatorSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition ? "prodml22:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition ? "prodml23:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml22__SeparatorSampleAcquisition const*p) +inline int soap_PATCH_prodml23__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml23__SeparatorSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition ? "prodml22:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition ? "prodml23:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml22__SeparatorSampleAcquisition const*p) +inline int soap_POST_send_prodml23__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml23__SeparatorSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition ? "prodml22:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition ? "prodml23:SeparatorSampleAcquisition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SeparatorSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__SeparatorSampleAcquisition(struct soap*, prodml22__SeparatorSampleAcquisition *, const char*, const char*); +SOAP_FMAC3 prodml23__SeparatorSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__SeparatorSampleAcquisition(struct soap*, prodml23__SeparatorSampleAcquisition *, const char*, const char*); -inline int soap_read_prodml22__SeparatorSampleAcquisition(struct soap *soap, prodml22__SeparatorSampleAcquisition *p) +inline int soap_read_prodml23__SeparatorSampleAcquisition(struct soap *soap, prodml23__SeparatorSampleAcquisition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SeparatorSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SeparatorSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml22__SeparatorSampleAcquisition *p) +inline int soap_GET_prodml23__SeparatorSampleAcquisition(struct soap *soap, const char *URL, prodml23__SeparatorSampleAcquisition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SeparatorSampleAcquisition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SeparatorSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SeparatorSampleAcquisition(struct soap *soap, prodml22__SeparatorSampleAcquisition *p) +inline int soap_POST_recv_prodml23__SeparatorSampleAcquisition(struct soap *soap, prodml23__SeparatorSampleAcquisition *p) { - if (gsoap_eml2_3::soap_read_prodml22__SeparatorSampleAcquisition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SeparatorSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationTesterSampleAcquisition(struct soap*, const char*, int, const prodml22__FormationTesterSampleAcquisition *, const char*); -SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__FormationTesterSampleAcquisition(struct soap*, const char*, prodml22__FormationTesterSampleAcquisition *, const char*); -SOAP_FMAC1 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FormationTesterSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FormationTesterSampleAcquisition(struct soap*, const char*, int, const prodml23__FormationTesterSampleAcquisition *, const char*); +SOAP_FMAC3 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__FormationTesterSampleAcquisition(struct soap*, const char*, prodml23__FormationTesterSampleAcquisition *, const char*); +SOAP_FMAC1 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FormationTesterSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FormationTesterSampleAcquisition * soap_new_prodml22__FormationTesterSampleAcquisition(struct soap *soap, int n = -1) +inline prodml23__FormationTesterSampleAcquisition * soap_new_prodml23__FormationTesterSampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FormationTesterSampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FormationTesterSampleAcquisition(soap, n, NULL, NULL, NULL); } -inline prodml22__FormationTesterSampleAcquisition * soap_new_req_prodml22__FormationTesterSampleAcquisition( +inline prodml23__FormationTesterSampleAcquisition * soap_new_req_prodml23__FormationTesterSampleAcquisition( struct soap *soap, const struct tm& StartTime__1, const struct tm& EndTime__1, @@ -102377,20 +102377,20 @@ inline prodml22__FormationTesterSampleAcquisition * soap_new_req_prodml22__Forma eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__FormationTesterSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__FormationTesterSampleAcquisition(soap); + prodml23__FormationTesterSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__FormationTesterSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline prodml22__FormationTesterSampleAcquisition * soap_new_set_prodml22__FormationTesterSampleAcquisition( +inline prodml23__FormationTesterSampleAcquisition * soap_new_set_prodml23__FormationTesterSampleAcquisition( struct soap *soap, eml23__DataObjectReference *Wellbore, eml23__MeasuredDepth *MdTop, @@ -102417,117 +102417,117 @@ inline prodml22__FormationTesterSampleAcquisition * soap_new_set_prodml22__Forma eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__FormationTesterSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__FormationTesterSampleAcquisition(soap); + prodml23__FormationTesterSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__FormationTesterSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FormationTesterSampleAcquisition::Wellbore = Wellbore; - _p->prodml22__FormationTesterSampleAcquisition::MdTop = MdTop; - _p->prodml22__FormationTesterSampleAcquisition::MdBase = MdBase; - _p->prodml22__FormationTesterSampleAcquisition::SampleContainerName = SampleContainerName; - _p->prodml22__FormationTesterSampleAcquisition::SampleCarrierSlotName = SampleCarrierSlotName; - _p->prodml22__FormationTesterSampleAcquisition::SampleContainerConfiguration = SampleContainerConfiguration; - _p->prodml22__FormationTesterSampleAcquisition::CushionPressure = CushionPressure; - _p->prodml22__FormationTesterSampleAcquisition::GrossFluidKind = GrossFluidKind; - _p->prodml22__FormationTesterSampleAcquisition::ToolSerialNumber = ToolSerialNumber; - _p->prodml22__FormationTesterSampleAcquisition::ToolSectionName = ToolSectionName; - _p->prodml22__FormationTesterSampleAcquisition::FlowTestActivity = FlowTestActivity; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; - _p->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; - _p->prodml22__FluidSampleAcquisition::FormationPressure = FormationPressure__1; - _p->prodml22__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__FormationTesterSampleAcquisition::Wellbore = Wellbore; + _p->prodml23__FormationTesterSampleAcquisition::MdTop = MdTop; + _p->prodml23__FormationTesterSampleAcquisition::MdBase = MdBase; + _p->prodml23__FormationTesterSampleAcquisition::SampleContainerName = SampleContainerName; + _p->prodml23__FormationTesterSampleAcquisition::SampleCarrierSlotName = SampleCarrierSlotName; + _p->prodml23__FormationTesterSampleAcquisition::SampleContainerConfiguration = SampleContainerConfiguration; + _p->prodml23__FormationTesterSampleAcquisition::CushionPressure = CushionPressure; + _p->prodml23__FormationTesterSampleAcquisition::GrossFluidKind = GrossFluidKind; + _p->prodml23__FormationTesterSampleAcquisition::ToolSerialNumber = ToolSerialNumber; + _p->prodml23__FormationTesterSampleAcquisition::ToolSectionName = ToolSectionName; + _p->prodml23__FormationTesterSampleAcquisition::FlowTestActivity = FlowTestActivity; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; + _p->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; + _p->prodml23__FluidSampleAcquisition::FormationPressure = FormationPressure__1; + _p->prodml23__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline int soap_write_prodml22__FormationTesterSampleAcquisition(struct soap *soap, prodml22__FormationTesterSampleAcquisition const*p) +inline int soap_write_prodml23__FormationTesterSampleAcquisition(struct soap *soap, prodml23__FormationTesterSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition ? "prodml22:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition ? "prodml23:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml22__FormationTesterSampleAcquisition const*p) +inline int soap_PUT_prodml23__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml23__FormationTesterSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition ? "prodml22:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition ? "prodml23:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml22__FormationTesterSampleAcquisition const*p) +inline int soap_PATCH_prodml23__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml23__FormationTesterSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition ? "prodml22:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition ? "prodml23:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml22__FormationTesterSampleAcquisition const*p) +inline int soap_POST_send_prodml23__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml23__FormationTesterSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition ? "prodml22:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition ? "prodml23:FormationTesterSampleAcquisition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__FormationTesterSampleAcquisition(struct soap*, prodml22__FormationTesterSampleAcquisition *, const char*, const char*); +SOAP_FMAC3 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__FormationTesterSampleAcquisition(struct soap*, prodml23__FormationTesterSampleAcquisition *, const char*, const char*); -inline int soap_read_prodml22__FormationTesterSampleAcquisition(struct soap *soap, prodml22__FormationTesterSampleAcquisition *p) +inline int soap_read_prodml23__FormationTesterSampleAcquisition(struct soap *soap, prodml23__FormationTesterSampleAcquisition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FormationTesterSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FormationTesterSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml22__FormationTesterSampleAcquisition *p) +inline int soap_GET_prodml23__FormationTesterSampleAcquisition(struct soap *soap, const char *URL, prodml23__FormationTesterSampleAcquisition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FormationTesterSampleAcquisition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FormationTesterSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FormationTesterSampleAcquisition(struct soap *soap, prodml22__FormationTesterSampleAcquisition *p) +inline int soap_POST_recv_prodml23__FormationTesterSampleAcquisition(struct soap *soap, prodml23__FormationTesterSampleAcquisition *p) { - if (gsoap_eml2_3::soap_read_prodml22__FormationTesterSampleAcquisition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FormationTesterSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisitionJob(struct soap*, const char*, int, const prodml22__FluidSampleAcquisitionJob *, const char*); -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml22__FluidSampleAcquisitionJob(struct soap*, const char*, prodml22__FluidSampleAcquisitionJob *, const char*); -SOAP_FMAC1 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisitionJob(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleAcquisitionJob(struct soap*, const char*, int, const prodml23__FluidSampleAcquisitionJob *, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_in_prodml23__FluidSampleAcquisitionJob(struct soap*, const char*, prodml23__FluidSampleAcquisitionJob *, const char*); +SOAP_FMAC1 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisitionJob(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSampleAcquisitionJob * soap_new_prodml22__FluidSampleAcquisitionJob(struct soap *soap, int n = -1) +inline prodml23__FluidSampleAcquisitionJob * soap_new_prodml23__FluidSampleAcquisitionJob(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSampleAcquisitionJob(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSampleAcquisitionJob(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSampleAcquisitionJob * soap_new_req_prodml22__FluidSampleAcquisitionJob( +inline prodml23__FluidSampleAcquisitionJob * soap_new_req_prodml23__FluidSampleAcquisitionJob( struct soap *soap, eml23__DataObjectReference *FluidSystem, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FluidSampleAcquisitionJob *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleAcquisitionJob(soap); + prodml23__FluidSampleAcquisitionJob *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleAcquisitionJob(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisitionJob::FluidSystem = FluidSystem; + _p->prodml23__FluidSampleAcquisitionJob::FluidSystem = FluidSystem; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -102535,13 +102535,13 @@ inline prodml22__FluidSampleAcquisitionJob * soap_new_req_prodml22__FluidSampleA return _p; } -inline prodml22__FluidSampleAcquisitionJob * soap_new_set_prodml22__FluidSampleAcquisitionJob( +inline prodml23__FluidSampleAcquisitionJob * soap_new_set_prodml23__FluidSampleAcquisitionJob( struct soap *soap, eml23__DataObjectReference *Client, struct tm *StartTime, struct tm *EndTime, eml23__DataObjectReference *FlowTestJob, - const std::vector & FluidSampleAcquisition, + const std::vector & FluidSampleAcquisition, eml23__DataObjectReference *FluidSystem, eml23__DataObjectReference *ServiceCompany, const std::vector & Aliases__1, @@ -102556,16 +102556,16 @@ inline prodml22__FluidSampleAcquisitionJob * soap_new_set_prodml22__FluidSampleA const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FluidSampleAcquisitionJob *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleAcquisitionJob(soap); + prodml23__FluidSampleAcquisitionJob *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleAcquisitionJob(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisitionJob::Client = Client; - _p->prodml22__FluidSampleAcquisitionJob::StartTime = StartTime; - _p->prodml22__FluidSampleAcquisitionJob::EndTime = EndTime; - _p->prodml22__FluidSampleAcquisitionJob::FlowTestJob = FlowTestJob; - _p->prodml22__FluidSampleAcquisitionJob::FluidSampleAcquisition = FluidSampleAcquisition; - _p->prodml22__FluidSampleAcquisitionJob::FluidSystem = FluidSystem; - _p->prodml22__FluidSampleAcquisitionJob::ServiceCompany = ServiceCompany; + _p->prodml23__FluidSampleAcquisitionJob::Client = Client; + _p->prodml23__FluidSampleAcquisitionJob::StartTime = StartTime; + _p->prodml23__FluidSampleAcquisitionJob::EndTime = EndTime; + _p->prodml23__FluidSampleAcquisitionJob::FlowTestJob = FlowTestJob; + _p->prodml23__FluidSampleAcquisitionJob::FluidSampleAcquisition = FluidSampleAcquisition; + _p->prodml23__FluidSampleAcquisitionJob::FluidSystem = FluidSystem; + _p->prodml23__FluidSampleAcquisitionJob::ServiceCompany = ServiceCompany; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -102581,76 +102581,76 @@ inline prodml22__FluidSampleAcquisitionJob * soap_new_set_prodml22__FluidSampleA return _p; } -inline int soap_write_prodml22__FluidSampleAcquisitionJob(struct soap *soap, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_write_prodml23__FluidSampleAcquisitionJob(struct soap *soap, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob ? "prodml22:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob ? "prodml23:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_PUT_prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob ? "prodml22:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob ? "prodml23:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_PATCH_prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob ? "prodml22:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob ? "prodml23:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob const*p) +inline int soap_POST_send_prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob ? "prodml22:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJob", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob ? "prodml23:FluidSampleAcquisitionJob" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_get_prodml22__FluidSampleAcquisitionJob(struct soap*, prodml22__FluidSampleAcquisitionJob *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC4 soap_get_prodml23__FluidSampleAcquisitionJob(struct soap*, prodml23__FluidSampleAcquisitionJob *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleAcquisitionJob(struct soap *soap, prodml22__FluidSampleAcquisitionJob *p) +inline int soap_read_prodml23__FluidSampleAcquisitionJob(struct soap *soap, prodml23__FluidSampleAcquisitionJob *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleAcquisitionJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleAcquisitionJob(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJob *p) +inline int soap_GET_prodml23__FluidSampleAcquisitionJob(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJob *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleAcquisitionJob(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleAcquisitionJob(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleAcquisitionJob(struct soap *soap, prodml22__FluidSampleAcquisitionJob *p) +inline int soap_POST_recv_prodml23__FluidSampleAcquisitionJob(struct soap *soap, prodml23__FluidSampleAcquisitionJob *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleAcquisitionJob(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleAcquisitionJob(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisition(struct soap*, const char*, int, const prodml22__FluidSampleAcquisition *, const char*); -SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__FluidSampleAcquisition(struct soap*, const char*, prodml22__FluidSampleAcquisition *, const char*); -SOAP_FMAC1 prodml22__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleAcquisition(struct soap*, const char*, int, const prodml23__FluidSampleAcquisition *, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__FluidSampleAcquisition(struct soap*, const char*, prodml23__FluidSampleAcquisition *, const char*); +SOAP_FMAC1 prodml23__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSampleAcquisition * soap_new_prodml22__FluidSampleAcquisition(struct soap *soap, int n = -1) +inline prodml23__FluidSampleAcquisition * soap_new_prodml23__FluidSampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSampleAcquisition(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSampleAcquisition * soap_new_req_prodml22__FluidSampleAcquisition( +inline prodml23__FluidSampleAcquisition * soap_new_req_prodml23__FluidSampleAcquisition( struct soap *soap, const struct tm& StartTime, const struct tm& EndTime, @@ -102659,20 +102659,20 @@ inline prodml22__FluidSampleAcquisition * soap_new_req_prodml22__FluidSampleAcqu eml23__DataObjectReference *FluidSample, const std::string& uid) { - prodml22__FluidSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleAcquisition(soap); + prodml23__FluidSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime; - _p->prodml22__FluidSampleAcquisition::Remark = Remark; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample; - _p->prodml22__FluidSampleAcquisition::uid = uid; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime; + _p->prodml23__FluidSampleAcquisition::Remark = Remark; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample; + _p->prodml23__FluidSampleAcquisition::uid = uid; } return _p; } -inline prodml22__FluidSampleAcquisition * soap_new_set_prodml22__FluidSampleAcquisition( +inline prodml23__FluidSampleAcquisition * soap_new_set_prodml23__FluidSampleAcquisition( struct soap *soap, const struct tm& StartTime, const struct tm& EndTime, @@ -102688,96 +102688,96 @@ inline prodml22__FluidSampleAcquisition * soap_new_set_prodml22__FluidSampleAcqu eml23__DataObjectReference *FluidSample, const std::string& uid) { - prodml22__FluidSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleAcquisition(soap); + prodml23__FluidSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime; - _p->prodml22__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure; - _p->prodml22__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature; - _p->prodml22__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume; - _p->prodml22__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR; - _p->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum; - _p->prodml22__FluidSampleAcquisition::FormationPressure = FormationPressure; - _p->prodml22__FluidSampleAcquisition::FormationTemperature = FormationTemperature; - _p->prodml22__FluidSampleAcquisition::Remark = Remark; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample; - _p->prodml22__FluidSampleAcquisition::uid = uid; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime; + _p->prodml23__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure; + _p->prodml23__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature; + _p->prodml23__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume; + _p->prodml23__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR; + _p->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum; + _p->prodml23__FluidSampleAcquisition::FormationPressure = FormationPressure; + _p->prodml23__FluidSampleAcquisition::FormationTemperature = FormationTemperature; + _p->prodml23__FluidSampleAcquisition::Remark = Remark; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample; + _p->prodml23__FluidSampleAcquisition::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition const*p) +inline int soap_write_prodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition ? "prodml22:FluidSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition ? "prodml23:FluidSampleAcquisition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisition const*p) +inline int soap_PUT_prodml23__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition ? "prodml22:FluidSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition ? "prodml23:FluidSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisition const*p) +inline int soap_PATCH_prodml23__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition ? "prodml22:FluidSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition ? "prodml23:FluidSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisition const*p) +inline int soap_POST_send_prodml23__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition ? "prodml22:FluidSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition ? "prodml23:FluidSampleAcquisition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__FluidSampleAcquisition(struct soap*, prodml22__FluidSampleAcquisition *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__FluidSampleAcquisition(struct soap*, prodml23__FluidSampleAcquisition *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition *p) +inline int soap_read_prodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisition *p) +inline int soap_GET_prodml23__FluidSampleAcquisition(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleAcquisition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleAcquisition(struct soap *soap, prodml22__FluidSampleAcquisition *p) +inline int soap_POST_recv_prodml23__FluidSampleAcquisition(struct soap *soap, prodml23__FluidSampleAcquisition *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleAcquisition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilitySampleAcquisition(struct soap*, const char*, int, const prodml22__FacilitySampleAcquisition *, const char*); -SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml22__FacilitySampleAcquisition(struct soap*, const char*, prodml22__FacilitySampleAcquisition *, const char*); -SOAP_FMAC1 prodml22__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FacilitySampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilitySampleAcquisition(struct soap*, const char*, int, const prodml23__FacilitySampleAcquisition *, const char*); +SOAP_FMAC3 prodml23__FacilitySampleAcquisition * SOAP_FMAC4 soap_in_prodml23__FacilitySampleAcquisition(struct soap*, const char*, prodml23__FacilitySampleAcquisition *, const char*); +SOAP_FMAC1 prodml23__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FacilitySampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FacilitySampleAcquisition * soap_new_prodml22__FacilitySampleAcquisition(struct soap *soap, int n = -1) +inline prodml23__FacilitySampleAcquisition * soap_new_prodml23__FacilitySampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FacilitySampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FacilitySampleAcquisition(soap, n, NULL, NULL, NULL); } -inline prodml22__FacilitySampleAcquisition * soap_new_req_prodml22__FacilitySampleAcquisition( +inline prodml23__FacilitySampleAcquisition * soap_new_req_prodml23__FacilitySampleAcquisition( struct soap *soap, eml23__AbstractPressureValue *FacilityPressure, eml23__ThermodynamicTemperatureMeasure *FacilityTemperature, @@ -102788,22 +102788,22 @@ inline prodml22__FacilitySampleAcquisition * soap_new_req_prodml22__FacilitySamp eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__FacilitySampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__FacilitySampleAcquisition(soap); + prodml23__FacilitySampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__FacilitySampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilitySampleAcquisition::FacilityPressure = FacilityPressure; - _p->prodml22__FacilitySampleAcquisition::FacilityTemperature = FacilityTemperature; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__FacilitySampleAcquisition::FacilityPressure = FacilityPressure; + _p->prodml23__FacilitySampleAcquisition::FacilityTemperature = FacilityTemperature; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline prodml22__FacilitySampleAcquisition * soap_new_set_prodml22__FacilitySampleAcquisition( +inline prodml23__FacilitySampleAcquisition * soap_new_set_prodml23__FacilitySampleAcquisition( struct soap *soap, std::string *SamplingPoint, eml23__AbstractPressureValue *FacilityPressure, @@ -102823,100 +102823,100 @@ inline prodml22__FacilitySampleAcquisition * soap_new_set_prodml22__FacilitySamp eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__FacilitySampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__FacilitySampleAcquisition(soap); + prodml23__FacilitySampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__FacilitySampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilitySampleAcquisition::SamplingPoint = SamplingPoint; - _p->prodml22__FacilitySampleAcquisition::FacilityPressure = FacilityPressure; - _p->prodml22__FacilitySampleAcquisition::FacilityTemperature = FacilityTemperature; - _p->prodml22__FacilitySampleAcquisition::Facility = Facility; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; - _p->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; - _p->prodml22__FluidSampleAcquisition::FormationPressure = FormationPressure__1; - _p->prodml22__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__FacilitySampleAcquisition::SamplingPoint = SamplingPoint; + _p->prodml23__FacilitySampleAcquisition::FacilityPressure = FacilityPressure; + _p->prodml23__FacilitySampleAcquisition::FacilityTemperature = FacilityTemperature; + _p->prodml23__FacilitySampleAcquisition::Facility = Facility; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; + _p->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; + _p->prodml23__FluidSampleAcquisition::FormationPressure = FormationPressure__1; + _p->prodml23__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline int soap_write_prodml22__FacilitySampleAcquisition(struct soap *soap, prodml22__FacilitySampleAcquisition const*p) +inline int soap_write_prodml23__FacilitySampleAcquisition(struct soap *soap, prodml23__FacilitySampleAcquisition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition ? "prodml22:FacilitySampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition ? "prodml23:FacilitySampleAcquisition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml22__FacilitySampleAcquisition const*p) +inline int soap_PUT_prodml23__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml23__FacilitySampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition ? "prodml22:FacilitySampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition ? "prodml23:FacilitySampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml22__FacilitySampleAcquisition const*p) +inline int soap_PATCH_prodml23__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml23__FacilitySampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition ? "prodml22:FacilitySampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition ? "prodml23:FacilitySampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml22__FacilitySampleAcquisition const*p) +inline int soap_POST_send_prodml23__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml23__FacilitySampleAcquisition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition ? "prodml22:FacilitySampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilitySampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition ? "prodml23:FacilitySampleAcquisition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilitySampleAcquisition * SOAP_FMAC4 soap_get_prodml22__FacilitySampleAcquisition(struct soap*, prodml22__FacilitySampleAcquisition *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilitySampleAcquisition * SOAP_FMAC4 soap_get_prodml23__FacilitySampleAcquisition(struct soap*, prodml23__FacilitySampleAcquisition *, const char*, const char*); -inline int soap_read_prodml22__FacilitySampleAcquisition(struct soap *soap, prodml22__FacilitySampleAcquisition *p) +inline int soap_read_prodml23__FacilitySampleAcquisition(struct soap *soap, prodml23__FacilitySampleAcquisition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilitySampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilitySampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml22__FacilitySampleAcquisition *p) +inline int soap_GET_prodml23__FacilitySampleAcquisition(struct soap *soap, const char *URL, prodml23__FacilitySampleAcquisition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilitySampleAcquisition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilitySampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilitySampleAcquisition(struct soap *soap, prodml22__FacilitySampleAcquisition *p) +inline int soap_POST_recv_prodml23__FacilitySampleAcquisition(struct soap *soap, prodml23__FacilitySampleAcquisition *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilitySampleAcquisition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilitySampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DownholeSampleAcquisition(struct soap*, const char*, int, const prodml22__DownholeSampleAcquisition *, const char*); -SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml22__DownholeSampleAcquisition(struct soap*, const char*, prodml22__DownholeSampleAcquisition *, const char*); -SOAP_FMAC1 prodml22__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__DownholeSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DownholeSampleAcquisition(struct soap*, const char*, int, const prodml23__DownholeSampleAcquisition *, const char*); +SOAP_FMAC3 prodml23__DownholeSampleAcquisition * SOAP_FMAC4 soap_in_prodml23__DownholeSampleAcquisition(struct soap*, const char*, prodml23__DownholeSampleAcquisition *, const char*); +SOAP_FMAC1 prodml23__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__DownholeSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DownholeSampleAcquisition * soap_new_prodml22__DownholeSampleAcquisition(struct soap *soap, int n = -1) +inline prodml23__DownholeSampleAcquisition * soap_new_prodml23__DownholeSampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DownholeSampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DownholeSampleAcquisition(soap, n, NULL, NULL, NULL); } -inline prodml22__DownholeSampleAcquisition * soap_new_req_prodml22__DownholeSampleAcquisition( +inline prodml23__DownholeSampleAcquisition * soap_new_req_prodml23__DownholeSampleAcquisition( struct soap *soap, eml23__DataObjectReference *Wellbore, LONG64 SamplingRun, @@ -102928,23 +102928,23 @@ inline prodml22__DownholeSampleAcquisition * soap_new_req_prodml22__DownholeSamp eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__DownholeSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__DownholeSampleAcquisition(soap); + prodml23__DownholeSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__DownholeSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DownholeSampleAcquisition::Wellbore = Wellbore; - _p->prodml22__DownholeSampleAcquisition::SamplingRun = SamplingRun; - _p->prodml22__DownholeSampleAcquisition::TopMD = TopMD; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__DownholeSampleAcquisition::Wellbore = Wellbore; + _p->prodml23__DownholeSampleAcquisition::SamplingRun = SamplingRun; + _p->prodml23__DownholeSampleAcquisition::TopMD = TopMD; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline prodml22__DownholeSampleAcquisition * soap_new_set_prodml22__DownholeSampleAcquisition( +inline prodml23__DownholeSampleAcquisition * soap_new_set_prodml23__DownholeSampleAcquisition( struct soap *soap, eml23__DataObjectReference *Wellbore, eml23__DataObjectReference *WellboreCompletion, @@ -102968,110 +102968,110 @@ inline prodml22__DownholeSampleAcquisition * soap_new_set_prodml22__DownholeSamp eml23__DataObjectReference *FluidSample__1, const std::string& uid__1) { - prodml22__DownholeSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml22__DownholeSampleAcquisition(soap); + prodml23__DownholeSampleAcquisition *_p = gsoap_eml2_3::soap_new_prodml23__DownholeSampleAcquisition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DownholeSampleAcquisition::Wellbore = Wellbore; - _p->prodml22__DownholeSampleAcquisition::WellboreCompletion = WellboreCompletion; - _p->prodml22__DownholeSampleAcquisition::SamplingRun = SamplingRun; - _p->prodml22__DownholeSampleAcquisition::TopMD = TopMD; - _p->prodml22__DownholeSampleAcquisition::BaseMD = BaseMD; - _p->prodml22__DownholeSampleAcquisition::ToolSerialNumber = ToolSerialNumber; - _p->prodml22__DownholeSampleAcquisition::ToolKind = ToolKind; - _p->prodml22__DownholeSampleAcquisition::FlowTestActivity = FlowTestActivity; - _p->prodml22__FluidSampleAcquisition::StartTime = StartTime__1; - _p->prodml22__FluidSampleAcquisition::EndTime = EndTime__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; - _p->prodml22__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; - _p->prodml22__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; - _p->prodml22__FluidSampleAcquisition::FormationPressure = FormationPressure__1; - _p->prodml22__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; - _p->prodml22__FluidSampleAcquisition::Remark = Remark__1; - _p->prodml22__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; - _p->prodml22__FluidSampleAcquisition::FluidSample = FluidSample__1; - _p->prodml22__FluidSampleAcquisition::uid = uid__1; + _p->prodml23__DownholeSampleAcquisition::Wellbore = Wellbore; + _p->prodml23__DownholeSampleAcquisition::WellboreCompletion = WellboreCompletion; + _p->prodml23__DownholeSampleAcquisition::SamplingRun = SamplingRun; + _p->prodml23__DownholeSampleAcquisition::TopMD = TopMD; + _p->prodml23__DownholeSampleAcquisition::BaseMD = BaseMD; + _p->prodml23__DownholeSampleAcquisition::ToolSerialNumber = ToolSerialNumber; + _p->prodml23__DownholeSampleAcquisition::ToolKind = ToolKind; + _p->prodml23__DownholeSampleAcquisition::FlowTestActivity = FlowTestActivity; + _p->prodml23__FluidSampleAcquisition::StartTime = StartTime__1; + _p->prodml23__FluidSampleAcquisition::EndTime = EndTime__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionPressure = AcquisitionPressure__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionTemperature = AcquisitionTemperature__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionVolume = AcquisitionVolume__1; + _p->prodml23__FluidSampleAcquisition::AcquisitionGOR = AcquisitionGOR__1; + _p->prodml23__FluidSampleAcquisition::FormationPressureTemperatureDatum = FormationPressureTemperatureDatum__1; + _p->prodml23__FluidSampleAcquisition::FormationPressure = FormationPressure__1; + _p->prodml23__FluidSampleAcquisition::FormationTemperature = FormationTemperature__1; + _p->prodml23__FluidSampleAcquisition::Remark = Remark__1; + _p->prodml23__FluidSampleAcquisition::FluidSampleContainer = FluidSampleContainer__1; + _p->prodml23__FluidSampleAcquisition::FluidSample = FluidSample__1; + _p->prodml23__FluidSampleAcquisition::uid = uid__1; } return _p; } -inline int soap_write_prodml22__DownholeSampleAcquisition(struct soap *soap, prodml22__DownholeSampleAcquisition const*p) +inline int soap_write_prodml23__DownholeSampleAcquisition(struct soap *soap, prodml23__DownholeSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition ? "prodml22:DownholeSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition ? "prodml23:DownholeSampleAcquisition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml22__DownholeSampleAcquisition const*p) +inline int soap_PUT_prodml23__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml23__DownholeSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition ? "prodml22:DownholeSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition ? "prodml23:DownholeSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml22__DownholeSampleAcquisition const*p) +inline int soap_PATCH_prodml23__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml23__DownholeSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition ? "prodml22:DownholeSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition ? "prodml23:DownholeSampleAcquisition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml22__DownholeSampleAcquisition const*p) +inline int soap_POST_send_prodml23__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml23__DownholeSampleAcquisition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition ? "prodml22:DownholeSampleAcquisition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DownholeSampleAcquisition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition ? "prodml23:DownholeSampleAcquisition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DownholeSampleAcquisition * SOAP_FMAC4 soap_get_prodml22__DownholeSampleAcquisition(struct soap*, prodml22__DownholeSampleAcquisition *, const char*, const char*); +SOAP_FMAC3 prodml23__DownholeSampleAcquisition * SOAP_FMAC4 soap_get_prodml23__DownholeSampleAcquisition(struct soap*, prodml23__DownholeSampleAcquisition *, const char*, const char*); -inline int soap_read_prodml22__DownholeSampleAcquisition(struct soap *soap, prodml22__DownholeSampleAcquisition *p) +inline int soap_read_prodml23__DownholeSampleAcquisition(struct soap *soap, prodml23__DownholeSampleAcquisition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DownholeSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DownholeSampleAcquisition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml22__DownholeSampleAcquisition *p) +inline int soap_GET_prodml23__DownholeSampleAcquisition(struct soap *soap, const char *URL, prodml23__DownholeSampleAcquisition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DownholeSampleAcquisition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DownholeSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DownholeSampleAcquisition(struct soap *soap, prodml22__DownholeSampleAcquisition *p) +inline int soap_POST_recv_prodml23__DownholeSampleAcquisition(struct soap *soap, prodml23__DownholeSampleAcquisition *p) { - if (gsoap_eml2_3::soap_read_prodml22__DownholeSampleAcquisition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DownholeSampleAcquisition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleContainer(struct soap*, const char*, int, const prodml22__FluidSampleContainer *, const char*); -SOAP_FMAC3 prodml22__FluidSampleContainer * SOAP_FMAC4 soap_in_prodml22__FluidSampleContainer(struct soap*, const char*, prodml22__FluidSampleContainer *, const char*); -SOAP_FMAC1 prodml22__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleContainer(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleContainer(struct soap*, const char*, int, const prodml23__FluidSampleContainer *, const char*); +SOAP_FMAC3 prodml23__FluidSampleContainer * SOAP_FMAC4 soap_in_prodml23__FluidSampleContainer(struct soap*, const char*, prodml23__FluidSampleContainer *, const char*); +SOAP_FMAC1 prodml23__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleContainer(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSampleContainer * soap_new_prodml22__FluidSampleContainer(struct soap *soap, int n = -1) +inline prodml23__FluidSampleContainer * soap_new_prodml23__FluidSampleContainer(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSampleContainer(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSampleContainer(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSampleContainer * soap_new_req_prodml22__FluidSampleContainer( +inline prodml23__FluidSampleContainer * soap_new_req_prodml23__FluidSampleContainer( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FluidSampleContainer *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleContainer(soap); + prodml23__FluidSampleContainer *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleContainer(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -103081,7 +103081,7 @@ inline prodml22__FluidSampleContainer * soap_new_req_prodml22__FluidSampleContai return _p; } -inline prodml22__FluidSampleContainer * soap_new_set_prodml22__FluidSampleContainer( +inline prodml23__FluidSampleContainer * soap_new_set_prodml23__FluidSampleContainer( struct soap *soap, std::string *Make, std::string *Model, @@ -103108,22 +103108,22 @@ inline prodml22__FluidSampleContainer * soap_new_set_prodml22__FluidSampleContai const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FluidSampleContainer *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleContainer(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__FluidSampleContainer::Make = Make; - _p->prodml22__FluidSampleContainer::Model = Model; - _p->prodml22__FluidSampleContainer::SerialNumber = SerialNumber; - _p->prodml22__FluidSampleContainer::BottleID = BottleID; - _p->prodml22__FluidSampleContainer::Capacity = Capacity; - _p->prodml22__FluidSampleContainer::Owner = Owner; - _p->prodml22__FluidSampleContainer::Kind = Kind; - _p->prodml22__FluidSampleContainer::Metallurgy = Metallurgy; - _p->prodml22__FluidSampleContainer::PressureRating = PressureRating; - _p->prodml22__FluidSampleContainer::TemperatureRating = TemperatureRating; - _p->prodml22__FluidSampleContainer::LastInspectionDate = LastInspectionDate; - _p->prodml22__FluidSampleContainer::TransportCertificateReference = TransportCertificateReference; - _p->prodml22__FluidSampleContainer::Remark = Remark; + prodml23__FluidSampleContainer *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleContainer(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__FluidSampleContainer::Make = Make; + _p->prodml23__FluidSampleContainer::Model = Model; + _p->prodml23__FluidSampleContainer::SerialNumber = SerialNumber; + _p->prodml23__FluidSampleContainer::BottleID = BottleID; + _p->prodml23__FluidSampleContainer::Capacity = Capacity; + _p->prodml23__FluidSampleContainer::Owner = Owner; + _p->prodml23__FluidSampleContainer::Kind = Kind; + _p->prodml23__FluidSampleContainer::Metallurgy = Metallurgy; + _p->prodml23__FluidSampleContainer::PressureRating = PressureRating; + _p->prodml23__FluidSampleContainer::TemperatureRating = TemperatureRating; + _p->prodml23__FluidSampleContainer::LastInspectionDate = LastInspectionDate; + _p->prodml23__FluidSampleContainer::TransportCertificateReference = TransportCertificateReference; + _p->prodml23__FluidSampleContainer::Remark = Remark; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -103139,193 +103139,193 @@ inline prodml22__FluidSampleContainer * soap_new_set_prodml22__FluidSampleContai return _p; } -inline int soap_write_prodml22__FluidSampleContainer(struct soap *soap, prodml22__FluidSampleContainer const*p) +inline int soap_write_prodml23__FluidSampleContainer(struct soap *soap, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer ? "prodml22:FluidSampleContainer" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer ? "prodml23:FluidSampleContainer" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer const*p) +inline int soap_PUT_prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer ? "prodml22:FluidSampleContainer" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer ? "prodml23:FluidSampleContainer" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer const*p) +inline int soap_PATCH_prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer ? "prodml22:FluidSampleContainer" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer ? "prodml23:FluidSampleContainer" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer const*p) +inline int soap_POST_send_prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer ? "prodml22:FluidSampleContainer" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleContainer", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer ? "prodml23:FluidSampleContainer" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleContainer * SOAP_FMAC4 soap_get_prodml22__FluidSampleContainer(struct soap*, prodml22__FluidSampleContainer *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleContainer * SOAP_FMAC4 soap_get_prodml23__FluidSampleContainer(struct soap*, prodml23__FluidSampleContainer *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleContainer(struct soap *soap, prodml22__FluidSampleContainer *p) +inline int soap_read_prodml23__FluidSampleContainer(struct soap *soap, prodml23__FluidSampleContainer *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleContainer(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleContainer(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleContainer(struct soap *soap, const char *URL, prodml22__FluidSampleContainer *p) +inline int soap_GET_prodml23__FluidSampleContainer(struct soap *soap, const char *URL, prodml23__FluidSampleContainer *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleContainer(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleContainer(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleContainer(struct soap *soap, prodml22__FluidSampleContainer *p) +inline int soap_POST_recv_prodml23__FluidSampleContainer(struct soap *soap, prodml23__FluidSampleContainer *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleContainer(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleContainer(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleRecombinationSpecification(struct soap*, const char*, int, const prodml22__SampleRecombinationSpecification *, const char*); -SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodml22__SampleRecombinationSpecification(struct soap*, const char*, prodml22__SampleRecombinationSpecification *, const char*); -SOAP_FMAC1 prodml22__SampleRecombinationSpecification * SOAP_FMAC2 soap_instantiate_prodml22__SampleRecombinationSpecification(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleRecombinationSpecification(struct soap*, const char*, int, const prodml23__SampleRecombinationSpecification *, const char*); +SOAP_FMAC3 prodml23__SampleRecombinationSpecification * SOAP_FMAC4 soap_in_prodml23__SampleRecombinationSpecification(struct soap*, const char*, prodml23__SampleRecombinationSpecification *, const char*); +SOAP_FMAC1 prodml23__SampleRecombinationSpecification * SOAP_FMAC2 soap_instantiate_prodml23__SampleRecombinationSpecification(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SampleRecombinationSpecification * soap_new_prodml22__SampleRecombinationSpecification(struct soap *soap, int n = -1) +inline prodml23__SampleRecombinationSpecification * soap_new_prodml23__SampleRecombinationSpecification(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SampleRecombinationSpecification(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SampleRecombinationSpecification(soap, n, NULL, NULL, NULL); } -inline prodml22__SampleRecombinationSpecification * soap_new_req_prodml22__SampleRecombinationSpecification( +inline prodml23__SampleRecombinationSpecification * soap_new_req_prodml23__SampleRecombinationSpecification( struct soap *soap, - const std::vector & RecombinedSampleFraction) + const std::vector & RecombinedSampleFraction) { - prodml22__SampleRecombinationSpecification *_p = gsoap_eml2_3::soap_new_prodml22__SampleRecombinationSpecification(soap); + prodml23__SampleRecombinationSpecification *_p = gsoap_eml2_3::soap_new_prodml23__SampleRecombinationSpecification(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction = RecombinedSampleFraction; + _p->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction = RecombinedSampleFraction; } return _p; } -inline prodml22__SampleRecombinationSpecification * soap_new_set_prodml22__SampleRecombinationSpecification( +inline prodml23__SampleRecombinationSpecification * soap_new_set_prodml23__SampleRecombinationSpecification( struct soap *soap, eml23__AbstractPressureValue *RecombinationPressure, eml23__ThermodynamicTemperatureMeasure *RecombinationTemperature, eml23__VolumePerVolumeMeasure *RecombinationGOR, - prodml22__SaturationPressure *RecombinationSaturationPressure, - prodml22__OverallComposition *OverallComposition, + prodml23__SaturationPressure *RecombinationSaturationPressure, + prodml23__OverallComposition *OverallComposition, std::string *Remark, - const std::vector & RecombinedSampleFraction) + const std::vector & RecombinedSampleFraction) { - prodml22__SampleRecombinationSpecification *_p = gsoap_eml2_3::soap_new_prodml22__SampleRecombinationSpecification(soap); + prodml23__SampleRecombinationSpecification *_p = gsoap_eml2_3::soap_new_prodml23__SampleRecombinationSpecification(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleRecombinationSpecification::RecombinationPressure = RecombinationPressure; - _p->prodml22__SampleRecombinationSpecification::RecombinationTemperature = RecombinationTemperature; - _p->prodml22__SampleRecombinationSpecification::RecombinationGOR = RecombinationGOR; - _p->prodml22__SampleRecombinationSpecification::RecombinationSaturationPressure = RecombinationSaturationPressure; - _p->prodml22__SampleRecombinationSpecification::OverallComposition = OverallComposition; - _p->prodml22__SampleRecombinationSpecification::Remark = Remark; - _p->prodml22__SampleRecombinationSpecification::RecombinedSampleFraction = RecombinedSampleFraction; + _p->prodml23__SampleRecombinationSpecification::RecombinationPressure = RecombinationPressure; + _p->prodml23__SampleRecombinationSpecification::RecombinationTemperature = RecombinationTemperature; + _p->prodml23__SampleRecombinationSpecification::RecombinationGOR = RecombinationGOR; + _p->prodml23__SampleRecombinationSpecification::RecombinationSaturationPressure = RecombinationSaturationPressure; + _p->prodml23__SampleRecombinationSpecification::OverallComposition = OverallComposition; + _p->prodml23__SampleRecombinationSpecification::Remark = Remark; + _p->prodml23__SampleRecombinationSpecification::RecombinedSampleFraction = RecombinedSampleFraction; } return _p; } -inline int soap_write_prodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification const*p) +inline int soap_write_prodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification ? "prodml22:SampleRecombinationSpecification" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification ? "prodml23:SampleRecombinationSpecification" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml22__SampleRecombinationSpecification const*p) +inline int soap_PUT_prodml23__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml23__SampleRecombinationSpecification const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification ? "prodml22:SampleRecombinationSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification ? "prodml23:SampleRecombinationSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml22__SampleRecombinationSpecification const*p) +inline int soap_PATCH_prodml23__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml23__SampleRecombinationSpecification const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification ? "prodml22:SampleRecombinationSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification ? "prodml23:SampleRecombinationSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml22__SampleRecombinationSpecification const*p) +inline int soap_POST_send_prodml23__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml23__SampleRecombinationSpecification const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification ? "prodml22:SampleRecombinationSpecification" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRecombinationSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification ? "prodml23:SampleRecombinationSpecification" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleRecombinationSpecification * SOAP_FMAC4 soap_get_prodml22__SampleRecombinationSpecification(struct soap*, prodml22__SampleRecombinationSpecification *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleRecombinationSpecification * SOAP_FMAC4 soap_get_prodml23__SampleRecombinationSpecification(struct soap*, prodml23__SampleRecombinationSpecification *, const char*, const char*); -inline int soap_read_prodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification *p) +inline int soap_read_prodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SampleRecombinationSpecification(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SampleRecombinationSpecification(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml22__SampleRecombinationSpecification *p) +inline int soap_GET_prodml23__SampleRecombinationSpecification(struct soap *soap, const char *URL, prodml23__SampleRecombinationSpecification *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SampleRecombinationSpecification(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SampleRecombinationSpecification(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SampleRecombinationSpecification(struct soap *soap, prodml22__SampleRecombinationSpecification *p) +inline int soap_POST_recv_prodml23__SampleRecombinationSpecification(struct soap *soap, prodml23__SampleRecombinationSpecification *p) { - if (gsoap_eml2_3::soap_read_prodml22__SampleRecombinationSpecification(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SampleRecombinationSpecification(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RecombinedSampleFraction(struct soap*, const char*, int, const prodml22__RecombinedSampleFraction *, const char*); -SOAP_FMAC3 prodml22__RecombinedSampleFraction * SOAP_FMAC4 soap_in_prodml22__RecombinedSampleFraction(struct soap*, const char*, prodml22__RecombinedSampleFraction *, const char*); -SOAP_FMAC1 prodml22__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prodml22__RecombinedSampleFraction(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RecombinedSampleFraction(struct soap*, const char*, int, const prodml23__RecombinedSampleFraction *, const char*); +SOAP_FMAC3 prodml23__RecombinedSampleFraction * SOAP_FMAC4 soap_in_prodml23__RecombinedSampleFraction(struct soap*, const char*, prodml23__RecombinedSampleFraction *, const char*); +SOAP_FMAC1 prodml23__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prodml23__RecombinedSampleFraction(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RecombinedSampleFraction * soap_new_prodml22__RecombinedSampleFraction(struct soap *soap, int n = -1) +inline prodml23__RecombinedSampleFraction * soap_new_prodml23__RecombinedSampleFraction(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RecombinedSampleFraction(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RecombinedSampleFraction(soap, n, NULL, NULL, NULL); } -inline prodml22__RecombinedSampleFraction * soap_new_req_prodml22__RecombinedSampleFraction( +inline prodml23__RecombinedSampleFraction * soap_new_req_prodml23__RecombinedSampleFraction( struct soap *soap, const std::string& uid) { - prodml22__RecombinedSampleFraction *_p = gsoap_eml2_3::soap_new_prodml22__RecombinedSampleFraction(soap); + prodml23__RecombinedSampleFraction *_p = gsoap_eml2_3::soap_new_prodml23__RecombinedSampleFraction(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RecombinedSampleFraction::uid = uid; + _p->prodml23__RecombinedSampleFraction::uid = uid; } return _p; } -inline prodml22__RecombinedSampleFraction * soap_new_set_prodml22__RecombinedSampleFraction( +inline prodml23__RecombinedSampleFraction * soap_new_set_prodml23__RecombinedSampleFraction( struct soap *soap, eml23__VolumePerVolumeMeasure *VolumeFraction, eml23__MassPerMassMeasure *MassFraction, @@ -103334,114 +103334,114 @@ inline prodml22__RecombinedSampleFraction * soap_new_set_prodml22__RecombinedSam eml23__DataObjectReference *FluidSample, const std::string& uid) { - prodml22__RecombinedSampleFraction *_p = gsoap_eml2_3::soap_new_prodml22__RecombinedSampleFraction(soap); + prodml23__RecombinedSampleFraction *_p = gsoap_eml2_3::soap_new_prodml23__RecombinedSampleFraction(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RecombinedSampleFraction::VolumeFraction = VolumeFraction; - _p->prodml22__RecombinedSampleFraction::MassFraction = MassFraction; - _p->prodml22__RecombinedSampleFraction::MoleFraction = MoleFraction; - _p->prodml22__RecombinedSampleFraction::Remark = Remark; - _p->prodml22__RecombinedSampleFraction::FluidSample = FluidSample; - _p->prodml22__RecombinedSampleFraction::uid = uid; + _p->prodml23__RecombinedSampleFraction::VolumeFraction = VolumeFraction; + _p->prodml23__RecombinedSampleFraction::MassFraction = MassFraction; + _p->prodml23__RecombinedSampleFraction::MoleFraction = MoleFraction; + _p->prodml23__RecombinedSampleFraction::Remark = Remark; + _p->prodml23__RecombinedSampleFraction::FluidSample = FluidSample; + _p->prodml23__RecombinedSampleFraction::uid = uid; } return _p; } -inline int soap_write_prodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction const*p) +inline int soap_write_prodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction ? "prodml22:RecombinedSampleFraction" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction ? "prodml23:RecombinedSampleFraction" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml22__RecombinedSampleFraction const*p) +inline int soap_PUT_prodml23__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml23__RecombinedSampleFraction const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction ? "prodml22:RecombinedSampleFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction ? "prodml23:RecombinedSampleFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml22__RecombinedSampleFraction const*p) +inline int soap_PATCH_prodml23__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml23__RecombinedSampleFraction const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction ? "prodml22:RecombinedSampleFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction ? "prodml23:RecombinedSampleFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml22__RecombinedSampleFraction const*p) +inline int soap_POST_send_prodml23__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml23__RecombinedSampleFraction const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction ? "prodml22:RecombinedSampleFraction" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RecombinedSampleFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction ? "prodml23:RecombinedSampleFraction" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RecombinedSampleFraction * SOAP_FMAC4 soap_get_prodml22__RecombinedSampleFraction(struct soap*, prodml22__RecombinedSampleFraction *, const char*, const char*); +SOAP_FMAC3 prodml23__RecombinedSampleFraction * SOAP_FMAC4 soap_get_prodml23__RecombinedSampleFraction(struct soap*, prodml23__RecombinedSampleFraction *, const char*, const char*); -inline int soap_read_prodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction *p) +inline int soap_read_prodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RecombinedSampleFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RecombinedSampleFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml22__RecombinedSampleFraction *p) +inline int soap_GET_prodml23__RecombinedSampleFraction(struct soap *soap, const char *URL, prodml23__RecombinedSampleFraction *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RecombinedSampleFraction(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RecombinedSampleFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RecombinedSampleFraction(struct soap *soap, prodml22__RecombinedSampleFraction *p) +inline int soap_POST_recv_prodml23__RecombinedSampleFraction(struct soap *soap, prodml23__RecombinedSampleFraction *p) { - if (gsoap_eml2_3::soap_read_prodml22__RecombinedSampleFraction(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RecombinedSampleFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleChainOfCustodyEvent(struct soap*, const char*, int, const prodml22__FluidSampleChainOfCustodyEvent *, const char*); -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml22__FluidSampleChainOfCustodyEvent(struct soap*, const char*, prodml22__FluidSampleChainOfCustodyEvent *, const char*); -SOAP_FMAC1 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleChainOfCustodyEvent(struct soap*, const char*, int, const prodml23__FluidSampleChainOfCustodyEvent *, const char*); +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_in_prodml23__FluidSampleChainOfCustodyEvent(struct soap*, const char*, prodml23__FluidSampleChainOfCustodyEvent *, const char*); +SOAP_FMAC1 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSampleChainOfCustodyEvent * soap_new_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, int n = -1) +inline prodml23__FluidSampleChainOfCustodyEvent * soap_new_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSampleChainOfCustodyEvent * soap_new_req_prodml22__FluidSampleChainOfCustodyEvent( +inline prodml23__FluidSampleChainOfCustodyEvent * soap_new_req_prodml23__FluidSampleChainOfCustodyEvent( struct soap *soap, - prodml22__SampleQuality SampleIntegrity, + prodml23__SampleQuality SampleIntegrity, eml23__DataObjectReference *CurrentContainer, const std::string& uid) { - prodml22__FluidSampleChainOfCustodyEvent *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleChainOfCustodyEvent(soap); + prodml23__FluidSampleChainOfCustodyEvent *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleChainOfCustodyEvent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleChainOfCustodyEvent::SampleIntegrity = SampleIntegrity; - _p->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer = CurrentContainer; - _p->prodml22__FluidSampleChainOfCustodyEvent::uid = uid; + _p->prodml23__FluidSampleChainOfCustodyEvent::SampleIntegrity = SampleIntegrity; + _p->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer = CurrentContainer; + _p->prodml23__FluidSampleChainOfCustodyEvent::uid = uid; } return _p; } -inline prodml22__FluidSampleChainOfCustodyEvent * soap_new_set_prodml22__FluidSampleChainOfCustodyEvent( +inline prodml23__FluidSampleChainOfCustodyEvent * soap_new_set_prodml23__FluidSampleChainOfCustodyEvent( struct soap *soap, eml23__VolumeMeasure *TransferVolume, eml23__AbstractPressureValue *TransferPressure, eml23__ThermodynamicTemperatureMeasure *TransferTemperature, - prodml22__SampleQuality SampleIntegrity, + prodml23__SampleQuality SampleIntegrity, eml23__VolumeMeasure *RemainingVolume, eml23__VolumeMeasure *LostVolume, std::string *CustodyDate, - prodml22__SampleAction *CustodyAction, + prodml23__SampleAction *CustodyAction, std::string *Custodian, std::string *ContainerLocation, std::string *Remark, @@ -103449,200 +103449,200 @@ inline prodml22__FluidSampleChainOfCustodyEvent * soap_new_set_prodml22__FluidSa eml23__DataObjectReference *CurrentContainer, const std::string& uid) { - prodml22__FluidSampleChainOfCustodyEvent *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleChainOfCustodyEvent(soap); + prodml23__FluidSampleChainOfCustodyEvent *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleChainOfCustodyEvent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleChainOfCustodyEvent::TransferVolume = TransferVolume; - _p->prodml22__FluidSampleChainOfCustodyEvent::TransferPressure = TransferPressure; - _p->prodml22__FluidSampleChainOfCustodyEvent::TransferTemperature = TransferTemperature; - _p->prodml22__FluidSampleChainOfCustodyEvent::SampleIntegrity = SampleIntegrity; - _p->prodml22__FluidSampleChainOfCustodyEvent::RemainingVolume = RemainingVolume; - _p->prodml22__FluidSampleChainOfCustodyEvent::LostVolume = LostVolume; - _p->prodml22__FluidSampleChainOfCustodyEvent::CustodyDate = CustodyDate; - _p->prodml22__FluidSampleChainOfCustodyEvent::CustodyAction = CustodyAction; - _p->prodml22__FluidSampleChainOfCustodyEvent::Custodian = Custodian; - _p->prodml22__FluidSampleChainOfCustodyEvent::ContainerLocation = ContainerLocation; - _p->prodml22__FluidSampleChainOfCustodyEvent::Remark = Remark; - _p->prodml22__FluidSampleChainOfCustodyEvent::PrevContainer = PrevContainer; - _p->prodml22__FluidSampleChainOfCustodyEvent::CurrentContainer = CurrentContainer; - _p->prodml22__FluidSampleChainOfCustodyEvent::uid = uid; + _p->prodml23__FluidSampleChainOfCustodyEvent::TransferVolume = TransferVolume; + _p->prodml23__FluidSampleChainOfCustodyEvent::TransferPressure = TransferPressure; + _p->prodml23__FluidSampleChainOfCustodyEvent::TransferTemperature = TransferTemperature; + _p->prodml23__FluidSampleChainOfCustodyEvent::SampleIntegrity = SampleIntegrity; + _p->prodml23__FluidSampleChainOfCustodyEvent::RemainingVolume = RemainingVolume; + _p->prodml23__FluidSampleChainOfCustodyEvent::LostVolume = LostVolume; + _p->prodml23__FluidSampleChainOfCustodyEvent::CustodyDate = CustodyDate; + _p->prodml23__FluidSampleChainOfCustodyEvent::CustodyAction = CustodyAction; + _p->prodml23__FluidSampleChainOfCustodyEvent::Custodian = Custodian; + _p->prodml23__FluidSampleChainOfCustodyEvent::ContainerLocation = ContainerLocation; + _p->prodml23__FluidSampleChainOfCustodyEvent::Remark = Remark; + _p->prodml23__FluidSampleChainOfCustodyEvent::PrevContainer = PrevContainer; + _p->prodml23__FluidSampleChainOfCustodyEvent::CurrentContainer = CurrentContainer; + _p->prodml23__FluidSampleChainOfCustodyEvent::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent const*p) +inline int soap_write_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent ? "prodml22:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent ? "prodml23:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml22__FluidSampleChainOfCustodyEvent const*p) +inline int soap_PUT_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml23__FluidSampleChainOfCustodyEvent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent ? "prodml22:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent ? "prodml23:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml22__FluidSampleChainOfCustodyEvent const*p) +inline int soap_PATCH_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml23__FluidSampleChainOfCustodyEvent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent ? "prodml22:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent ? "prodml23:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml22__FluidSampleChainOfCustodyEvent const*p) +inline int soap_POST_send_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml23__FluidSampleChainOfCustodyEvent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent ? "prodml22:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleChainOfCustodyEvent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent ? "prodml23:FluidSampleChainOfCustodyEvent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_get_prodml22__FluidSampleChainOfCustodyEvent(struct soap*, prodml22__FluidSampleChainOfCustodyEvent *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC4 soap_get_prodml23__FluidSampleChainOfCustodyEvent(struct soap*, prodml23__FluidSampleChainOfCustodyEvent *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent *p) +inline int soap_read_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleChainOfCustodyEvent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleChainOfCustodyEvent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml22__FluidSampleChainOfCustodyEvent *p) +inline int soap_GET_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, const char *URL, prodml23__FluidSampleChainOfCustodyEvent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleChainOfCustodyEvent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleChainOfCustodyEvent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml22__FluidSampleChainOfCustodyEvent *p) +inline int soap_POST_recv_prodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, prodml23__FluidSampleChainOfCustodyEvent *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleChainOfCustodyEvent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleChainOfCustodyEvent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSampleAcquisitionJobSource(struct soap*, const char*, int, const prodml22__FluidSampleAcquisitionJobSource *, const char*); -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml22__FluidSampleAcquisitionJobSource(struct soap*, const char*, prodml22__FluidSampleAcquisitionJobSource *, const char*); -SOAP_FMAC1 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSampleAcquisitionJobSource(struct soap*, const char*, int, const prodml23__FluidSampleAcquisitionJobSource *, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_in_prodml23__FluidSampleAcquisitionJobSource(struct soap*, const char*, prodml23__FluidSampleAcquisitionJobSource *, const char*); +SOAP_FMAC1 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSampleAcquisitionJobSource * soap_new_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, int n = -1) +inline prodml23__FluidSampleAcquisitionJobSource * soap_new_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSampleAcquisitionJobSource * soap_new_req_prodml22__FluidSampleAcquisitionJobSource( +inline prodml23__FluidSampleAcquisitionJobSource * soap_new_req_prodml23__FluidSampleAcquisitionJobSource( struct soap *soap, const std::string& FluidSampleAcquisitionReference, eml23__DataObjectReference *FluidSampleAcquisitionJobReference) { - prodml22__FluidSampleAcquisitionJobSource *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleAcquisitionJobSource(soap); + prodml23__FluidSampleAcquisitionJobSource *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleAcquisitionJobSource(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference = FluidSampleAcquisitionReference; - _p->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference = FluidSampleAcquisitionJobReference; + _p->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference = FluidSampleAcquisitionReference; + _p->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference = FluidSampleAcquisitionJobReference; } return _p; } -inline prodml22__FluidSampleAcquisitionJobSource * soap_new_set_prodml22__FluidSampleAcquisitionJobSource( +inline prodml23__FluidSampleAcquisitionJobSource * soap_new_set_prodml23__FluidSampleAcquisitionJobSource( struct soap *soap, const std::string& FluidSampleAcquisitionReference, eml23__DataObjectReference *FluidSampleAcquisitionJobReference) { - prodml22__FluidSampleAcquisitionJobSource *_p = gsoap_eml2_3::soap_new_prodml22__FluidSampleAcquisitionJobSource(soap); + prodml23__FluidSampleAcquisitionJobSource *_p = gsoap_eml2_3::soap_new_prodml23__FluidSampleAcquisitionJobSource(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference = FluidSampleAcquisitionReference; - _p->prodml22__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference = FluidSampleAcquisitionJobReference; + _p->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionReference = FluidSampleAcquisitionReference; + _p->prodml23__FluidSampleAcquisitionJobSource::FluidSampleAcquisitionJobReference = FluidSampleAcquisitionJobReference; } return _p; } -inline int soap_write_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource const*p) +inline int soap_write_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource ? "prodml22:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource ? "prodml23:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJobSource const*p) +inline int soap_PUT_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJobSource const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource ? "prodml22:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource ? "prodml23:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJobSource const*p) +inline int soap_PATCH_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJobSource const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource ? "prodml22:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource ? "prodml23:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJobSource const*p) +inline int soap_POST_send_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJobSource const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource ? "prodml22:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSampleAcquisitionJobSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource ? "prodml23:FluidSampleAcquisitionJobSource" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_get_prodml22__FluidSampleAcquisitionJobSource(struct soap*, prodml22__FluidSampleAcquisitionJobSource *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC4 soap_get_prodml23__FluidSampleAcquisitionJobSource(struct soap*, prodml23__FluidSampleAcquisitionJobSource *, const char*, const char*); -inline int soap_read_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource *p) +inline int soap_read_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSampleAcquisitionJobSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSampleAcquisitionJobSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml22__FluidSampleAcquisitionJobSource *p) +inline int soap_GET_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, const char *URL, prodml23__FluidSampleAcquisitionJobSource *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSampleAcquisitionJobSource(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSampleAcquisitionJobSource(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSampleAcquisitionJobSource(struct soap *soap, prodml22__FluidSampleAcquisitionJobSource *p) +inline int soap_POST_recv_prodml23__FluidSampleAcquisitionJobSource(struct soap *soap, prodml23__FluidSampleAcquisitionJobSource *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSampleAcquisitionJobSource(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSampleAcquisitionJobSource(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSample(struct soap*, const char*, int, const prodml22__FluidSample *, const char*); -SOAP_FMAC3 prodml22__FluidSample * SOAP_FMAC4 soap_in_prodml22__FluidSample(struct soap*, const char*, prodml22__FluidSample *, const char*); -SOAP_FMAC1 prodml22__FluidSample * SOAP_FMAC2 soap_instantiate_prodml22__FluidSample(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSample(struct soap*, const char*, int, const prodml23__FluidSample *, const char*); +SOAP_FMAC3 prodml23__FluidSample * SOAP_FMAC4 soap_in_prodml23__FluidSample(struct soap*, const char*, prodml23__FluidSample *, const char*); +SOAP_FMAC1 prodml23__FluidSample * SOAP_FMAC2 soap_instantiate_prodml23__FluidSample(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSample * soap_new_prodml22__FluidSample(struct soap *soap, int n = -1) +inline prodml23__FluidSample * soap_new_prodml23__FluidSample(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSample(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSample(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSample * soap_new_req_prodml22__FluidSample( +inline prodml23__FluidSample * soap_new_req_prodml23__FluidSample( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FluidSample *_p = gsoap_eml2_3::soap_new_prodml22__FluidSample(soap); + prodml23__FluidSample *_p = gsoap_eml2_3::soap_new_prodml23__FluidSample(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -103652,18 +103652,18 @@ inline prodml22__FluidSample * soap_new_req_prodml22__FluidSample( return _p; } -inline prodml22__FluidSample * soap_new_set_prodml22__FluidSample( +inline prodml23__FluidSample * soap_new_set_prodml23__FluidSample( struct soap *soap, std::string *SampleKind, eml23__DataObjectReference *RockFluidUnitInterpretation, bool *Representative, std::string *SampleDisposition, std::string *Remark, - const std::vector & FluidSampleChainOfCustodyEvent, + const std::vector & FluidSampleChainOfCustodyEvent, eml23__DataObjectReference *OriginalSampleContainer, eml23__DataObjectReference *FluidSystem, - prodml22__FluidSampleAcquisitionJobSource *FluidSampleAcquisitionJobSource, - prodml22__SampleRecombinationSpecification *SampleRecombinationSpecification, + prodml23__FluidSampleAcquisitionJobSource *FluidSampleAcquisitionJobSource, + prodml23__SampleRecombinationSpecification *SampleRecombinationSpecification, const std::vector & AssociatedFluidSample, const std::vector & Aliases__1, eml23__Citation *Citation__1, @@ -103677,20 +103677,20 @@ inline prodml22__FluidSample * soap_new_set_prodml22__FluidSample( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FluidSample *_p = gsoap_eml2_3::soap_new_prodml22__FluidSample(soap); + prodml23__FluidSample *_p = gsoap_eml2_3::soap_new_prodml23__FluidSample(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSample::SampleKind = SampleKind; - _p->prodml22__FluidSample::RockFluidUnitInterpretation = RockFluidUnitInterpretation; - _p->prodml22__FluidSample::Representative = Representative; - _p->prodml22__FluidSample::SampleDisposition = SampleDisposition; - _p->prodml22__FluidSample::Remark = Remark; - _p->prodml22__FluidSample::FluidSampleChainOfCustodyEvent = FluidSampleChainOfCustodyEvent; - _p->prodml22__FluidSample::OriginalSampleContainer = OriginalSampleContainer; - _p->prodml22__FluidSample::FluidSystem = FluidSystem; - _p->prodml22__FluidSample::FluidSampleAcquisitionJobSource = FluidSampleAcquisitionJobSource; - _p->prodml22__FluidSample::SampleRecombinationSpecification = SampleRecombinationSpecification; - _p->prodml22__FluidSample::AssociatedFluidSample = AssociatedFluidSample; + _p->prodml23__FluidSample::SampleKind = SampleKind; + _p->prodml23__FluidSample::RockFluidUnitInterpretation = RockFluidUnitInterpretation; + _p->prodml23__FluidSample::Representative = Representative; + _p->prodml23__FluidSample::SampleDisposition = SampleDisposition; + _p->prodml23__FluidSample::Remark = Remark; + _p->prodml23__FluidSample::FluidSampleChainOfCustodyEvent = FluidSampleChainOfCustodyEvent; + _p->prodml23__FluidSample::OriginalSampleContainer = OriginalSampleContainer; + _p->prodml23__FluidSample::FluidSystem = FluidSystem; + _p->prodml23__FluidSample::FluidSampleAcquisitionJobSource = FluidSampleAcquisitionJobSource; + _p->prodml23__FluidSample::SampleRecombinationSpecification = SampleRecombinationSpecification; + _p->prodml23__FluidSample::AssociatedFluidSample = AssociatedFluidSample; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -103706,92 +103706,92 @@ inline prodml22__FluidSample * soap_new_set_prodml22__FluidSample( return _p; } -inline int soap_write_prodml22__FluidSample(struct soap *soap, prodml22__FluidSample const*p) +inline int soap_write_prodml23__FluidSample(struct soap *soap, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample ? "prodml22:FluidSample" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample ? "prodml23:FluidSample" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample const*p) +inline int soap_PUT_prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample ? "prodml22:FluidSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample ? "prodml23:FluidSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample const*p) +inline int soap_PATCH_prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample ? "prodml22:FluidSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample ? "prodml23:FluidSample" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample const*p) +inline int soap_POST_send_prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample ? "prodml22:FluidSample" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSample", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample ? "prodml23:FluidSample" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSample * SOAP_FMAC4 soap_get_prodml22__FluidSample(struct soap*, prodml22__FluidSample *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSample * SOAP_FMAC4 soap_get_prodml23__FluidSample(struct soap*, prodml23__FluidSample *, const char*, const char*); -inline int soap_read_prodml22__FluidSample(struct soap *soap, prodml22__FluidSample *p) +inline int soap_read_prodml23__FluidSample(struct soap *soap, prodml23__FluidSample *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSample(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSample(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSample(struct soap *soap, const char *URL, prodml22__FluidSample *p) +inline int soap_GET_prodml23__FluidSample(struct soap *soap, const char *URL, prodml23__FluidSample *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSample(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSample(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSample(struct soap *soap, prodml22__FluidSample *p) +inline int soap_POST_recv_prodml23__FluidSample(struct soap *soap, prodml23__FluidSample *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSample(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSample(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreVolume(struct soap*, const char*, int, const prodml22__WellboreVolume *, const char*); -SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_in_prodml22__WellboreVolume(struct soap*, const char*, prodml22__WellboreVolume *, const char*); -SOAP_FMAC1 prodml22__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml22__WellboreVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreVolume(struct soap*, const char*, int, const prodml23__WellboreVolume *, const char*); +SOAP_FMAC3 prodml23__WellboreVolume * SOAP_FMAC4 soap_in_prodml23__WellboreVolume(struct soap*, const char*, prodml23__WellboreVolume *, const char*); +SOAP_FMAC1 prodml23__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml23__WellboreVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellboreVolume * soap_new_prodml22__WellboreVolume(struct soap *soap, int n = -1) +inline prodml23__WellboreVolume * soap_new_prodml23__WellboreVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellboreVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellboreVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__WellboreVolume * soap_new_req_prodml22__WellboreVolume( +inline prodml23__WellboreVolume * soap_new_req_prodml23__WellboreVolume( struct soap *soap, const std::string& Abbreviation, eml23__VolumeMeasure *Volume, const std::string& Uid__1) { - prodml22__WellboreVolume *_p = gsoap_eml2_3::soap_new_prodml22__WellboreVolume(soap); + prodml23__WellboreVolume *_p = gsoap_eml2_3::soap_new_prodml23__WellboreVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreVolume::Abbreviation = Abbreviation; - _p->prodml22__WellboreVolume::Volume = Volume; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreVolume::Abbreviation = Abbreviation; + _p->prodml23__WellboreVolume::Volume = Volume; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__WellboreVolume * soap_new_set_prodml22__WellboreVolume( +inline prodml23__WellboreVolume * soap_new_set_prodml23__WellboreVolume( struct soap *soap, const std::string& Abbreviation, eml23__VolumeMeasure *Volume, @@ -103799,104 +103799,104 @@ inline prodml22__WellboreVolume * soap_new_set_prodml22__WellboreVolume( std::string *Remark__1, const std::string& Uid__1) { - prodml22__WellboreVolume *_p = gsoap_eml2_3::soap_new_prodml22__WellboreVolume(soap); + prodml23__WellboreVolume *_p = gsoap_eml2_3::soap_new_prodml23__WellboreVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreVolume::Abbreviation = Abbreviation; - _p->prodml22__WellboreVolume::Volume = Volume; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreVolume::Abbreviation = Abbreviation; + _p->prodml23__WellboreVolume::Volume = Volume; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume const*p) +inline int soap_write_prodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume ? "prodml22:WellboreVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume ? "prodml23:WellboreVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreVolume(struct soap *soap, const char *URL, prodml22__WellboreVolume const*p) +inline int soap_PUT_prodml23__WellboreVolume(struct soap *soap, const char *URL, prodml23__WellboreVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume ? "prodml22:WellboreVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume ? "prodml23:WellboreVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreVolume(struct soap *soap, const char *URL, prodml22__WellboreVolume const*p) +inline int soap_PATCH_prodml23__WellboreVolume(struct soap *soap, const char *URL, prodml23__WellboreVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume ? "prodml22:WellboreVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume ? "prodml23:WellboreVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreVolume(struct soap *soap, const char *URL, prodml22__WellboreVolume const*p) +inline int soap_POST_send_prodml23__WellboreVolume(struct soap *soap, const char *URL, prodml23__WellboreVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume ? "prodml22:WellboreVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume ? "prodml23:WellboreVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreVolume * SOAP_FMAC4 soap_get_prodml22__WellboreVolume(struct soap*, prodml22__WellboreVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreVolume * SOAP_FMAC4 soap_get_prodml23__WellboreVolume(struct soap*, prodml23__WellboreVolume *, const char*, const char*); -inline int soap_read_prodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume *p) +inline int soap_read_prodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreVolume(struct soap *soap, const char *URL, prodml22__WellboreVolume *p) +inline int soap_GET_prodml23__WellboreVolume(struct soap *soap, const char *URL, prodml23__WellboreVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreVolume(struct soap *soap, prodml22__WellboreVolume *p) +inline int soap_POST_recv_prodml23__WellboreVolume(struct soap *soap, prodml23__WellboreVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreStorageCoefficient(struct soap*, const char*, int, const prodml22__WellboreStorageCoefficient *, const char*); -SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml22__WellboreStorageCoefficient(struct soap*, const char*, prodml22__WellboreStorageCoefficient *, const char*); -SOAP_FMAC1 prodml22__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_prodml22__WellboreStorageCoefficient(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreStorageCoefficient(struct soap*, const char*, int, const prodml23__WellboreStorageCoefficient *, const char*); +SOAP_FMAC3 prodml23__WellboreStorageCoefficient * SOAP_FMAC4 soap_in_prodml23__WellboreStorageCoefficient(struct soap*, const char*, prodml23__WellboreStorageCoefficient *, const char*); +SOAP_FMAC1 prodml23__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_prodml23__WellboreStorageCoefficient(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellboreStorageCoefficient * soap_new_prodml22__WellboreStorageCoefficient(struct soap *soap, int n = -1) +inline prodml23__WellboreStorageCoefficient * soap_new_prodml23__WellboreStorageCoefficient(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellboreStorageCoefficient(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellboreStorageCoefficient(soap, n, NULL, NULL, NULL); } -inline prodml22__WellboreStorageCoefficient * soap_new_req_prodml22__WellboreStorageCoefficient( +inline prodml23__WellboreStorageCoefficient * soap_new_req_prodml23__WellboreStorageCoefficient( struct soap *soap, const std::string& Abbreviation, eml23__VolumePerPressureMeasureExt *VolumePerPressure, const std::string& Uid__1) { - prodml22__WellboreStorageCoefficient *_p = gsoap_eml2_3::soap_new_prodml22__WellboreStorageCoefficient(soap); + prodml23__WellboreStorageCoefficient *_p = gsoap_eml2_3::soap_new_prodml23__WellboreStorageCoefficient(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreStorageCoefficient::Abbreviation = Abbreviation; - _p->prodml22__WellboreStorageCoefficient::VolumePerPressure = VolumePerPressure; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreStorageCoefficient::Abbreviation = Abbreviation; + _p->prodml23__WellboreStorageCoefficient::VolumePerPressure = VolumePerPressure; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__WellboreStorageCoefficient * soap_new_set_prodml22__WellboreStorageCoefficient( +inline prodml23__WellboreStorageCoefficient * soap_new_set_prodml23__WellboreStorageCoefficient( struct soap *soap, const std::string& Abbreviation, eml23__VolumePerPressureMeasureExt *VolumePerPressure, @@ -103904,104 +103904,104 @@ inline prodml22__WellboreStorageCoefficient * soap_new_set_prodml22__WellboreSto std::string *Remark__1, const std::string& Uid__1) { - prodml22__WellboreStorageCoefficient *_p = gsoap_eml2_3::soap_new_prodml22__WellboreStorageCoefficient(soap); + prodml23__WellboreStorageCoefficient *_p = gsoap_eml2_3::soap_new_prodml23__WellboreStorageCoefficient(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreStorageCoefficient::Abbreviation = Abbreviation; - _p->prodml22__WellboreStorageCoefficient::VolumePerPressure = VolumePerPressure; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreStorageCoefficient::Abbreviation = Abbreviation; + _p->prodml23__WellboreStorageCoefficient::VolumePerPressure = VolumePerPressure; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient const*p) +inline int soap_write_prodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient ? "prodml22:WellboreStorageCoefficient" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient ? "prodml23:WellboreStorageCoefficient" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml22__WellboreStorageCoefficient const*p) +inline int soap_PUT_prodml23__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml23__WellboreStorageCoefficient const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient ? "prodml22:WellboreStorageCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient ? "prodml23:WellboreStorageCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml22__WellboreStorageCoefficient const*p) +inline int soap_PATCH_prodml23__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml23__WellboreStorageCoefficient const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient ? "prodml22:WellboreStorageCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient ? "prodml23:WellboreStorageCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml22__WellboreStorageCoefficient const*p) +inline int soap_POST_send_prodml23__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml23__WellboreStorageCoefficient const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient ? "prodml22:WellboreStorageCoefficient" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreStorageCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient ? "prodml23:WellboreStorageCoefficient" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreStorageCoefficient * SOAP_FMAC4 soap_get_prodml22__WellboreStorageCoefficient(struct soap*, prodml22__WellboreStorageCoefficient *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreStorageCoefficient * SOAP_FMAC4 soap_get_prodml23__WellboreStorageCoefficient(struct soap*, prodml23__WellboreStorageCoefficient *, const char*, const char*); -inline int soap_read_prodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient *p) +inline int soap_read_prodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreStorageCoefficient(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreStorageCoefficient(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml22__WellboreStorageCoefficient *p) +inline int soap_GET_prodml23__WellboreStorageCoefficient(struct soap *soap, const char *URL, prodml23__WellboreStorageCoefficient *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreStorageCoefficient(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreStorageCoefficient(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreStorageCoefficient(struct soap *soap, prodml22__WellboreStorageCoefficient *p) +inline int soap_POST_recv_prodml23__WellboreStorageCoefficient(struct soap *soap, prodml23__WellboreStorageCoefficient *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreStorageCoefficient(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreStorageCoefficient(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreRadius(struct soap*, const char*, int, const prodml22__WellboreRadius *, const char*); -SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_in_prodml22__WellboreRadius(struct soap*, const char*, prodml22__WellboreRadius *, const char*); -SOAP_FMAC1 prodml22__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml22__WellboreRadius(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreRadius(struct soap*, const char*, int, const prodml23__WellboreRadius *, const char*); +SOAP_FMAC3 prodml23__WellboreRadius * SOAP_FMAC4 soap_in_prodml23__WellboreRadius(struct soap*, const char*, prodml23__WellboreRadius *, const char*); +SOAP_FMAC1 prodml23__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml23__WellboreRadius(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellboreRadius * soap_new_prodml22__WellboreRadius(struct soap *soap, int n = -1) +inline prodml23__WellboreRadius * soap_new_prodml23__WellboreRadius(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellboreRadius(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellboreRadius(soap, n, NULL, NULL, NULL); } -inline prodml22__WellboreRadius * soap_new_req_prodml22__WellboreRadius( +inline prodml23__WellboreRadius * soap_new_req_prodml23__WellboreRadius( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__WellboreRadius *_p = gsoap_eml2_3::soap_new_prodml22__WellboreRadius(soap); + prodml23__WellboreRadius *_p = gsoap_eml2_3::soap_new_prodml23__WellboreRadius(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreRadius::Abbreviation = Abbreviation; - _p->prodml22__WellboreRadius::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreRadius::Abbreviation = Abbreviation; + _p->prodml23__WellboreRadius::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__WellboreRadius * soap_new_set_prodml22__WellboreRadius( +inline prodml23__WellboreRadius * soap_new_set_prodml23__WellboreRadius( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -104009,104 +104009,104 @@ inline prodml22__WellboreRadius * soap_new_set_prodml22__WellboreRadius( std::string *Remark__1, const std::string& Uid__1) { - prodml22__WellboreRadius *_p = gsoap_eml2_3::soap_new_prodml22__WellboreRadius(soap); + prodml23__WellboreRadius *_p = gsoap_eml2_3::soap_new_prodml23__WellboreRadius(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreRadius::Abbreviation = Abbreviation; - _p->prodml22__WellboreRadius::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreRadius::Abbreviation = Abbreviation; + _p->prodml23__WellboreRadius::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius const*p) +inline int soap_write_prodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius ? "prodml22:WellboreRadius" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius ? "prodml23:WellboreRadius" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreRadius(struct soap *soap, const char *URL, prodml22__WellboreRadius const*p) +inline int soap_PUT_prodml23__WellboreRadius(struct soap *soap, const char *URL, prodml23__WellboreRadius const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius ? "prodml22:WellboreRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius ? "prodml23:WellboreRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreRadius(struct soap *soap, const char *URL, prodml22__WellboreRadius const*p) +inline int soap_PATCH_prodml23__WellboreRadius(struct soap *soap, const char *URL, prodml23__WellboreRadius const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius ? "prodml22:WellboreRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius ? "prodml23:WellboreRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreRadius(struct soap *soap, const char *URL, prodml22__WellboreRadius const*p) +inline int soap_POST_send_prodml23__WellboreRadius(struct soap *soap, const char *URL, prodml23__WellboreRadius const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius ? "prodml22:WellboreRadius" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius ? "prodml23:WellboreRadius" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreRadius * SOAP_FMAC4 soap_get_prodml22__WellboreRadius(struct soap*, prodml22__WellboreRadius *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreRadius * SOAP_FMAC4 soap_get_prodml23__WellboreRadius(struct soap*, prodml23__WellboreRadius *, const char*, const char*); -inline int soap_read_prodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius *p) +inline int soap_read_prodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreRadius(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreRadius(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreRadius(struct soap *soap, const char *URL, prodml22__WellboreRadius *p) +inline int soap_GET_prodml23__WellboreRadius(struct soap *soap, const char *URL, prodml23__WellboreRadius *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreRadius(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreRadius(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreRadius(struct soap *soap, prodml22__WellboreRadius *p) +inline int soap_POST_recv_prodml23__WellboreRadius(struct soap *soap, prodml23__WellboreRadius *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreRadius(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreRadius(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreFluidCompressibility(struct soap*, const char*, int, const prodml22__WellboreFluidCompressibility *, const char*); -SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml22__WellboreFluidCompressibility(struct soap*, const char*, prodml22__WellboreFluidCompressibility *, const char*); -SOAP_FMAC1 prodml22__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__WellboreFluidCompressibility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreFluidCompressibility(struct soap*, const char*, int, const prodml23__WellboreFluidCompressibility *, const char*); +SOAP_FMAC3 prodml23__WellboreFluidCompressibility * SOAP_FMAC4 soap_in_prodml23__WellboreFluidCompressibility(struct soap*, const char*, prodml23__WellboreFluidCompressibility *, const char*); +SOAP_FMAC1 prodml23__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_prodml23__WellboreFluidCompressibility(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellboreFluidCompressibility * soap_new_prodml22__WellboreFluidCompressibility(struct soap *soap, int n = -1) +inline prodml23__WellboreFluidCompressibility * soap_new_prodml23__WellboreFluidCompressibility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellboreFluidCompressibility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellboreFluidCompressibility(soap, n, NULL, NULL, NULL); } -inline prodml22__WellboreFluidCompressibility * soap_new_req_prodml22__WellboreFluidCompressibility( +inline prodml23__WellboreFluidCompressibility * soap_new_req_prodml23__WellboreFluidCompressibility( struct soap *soap, const std::string& Abbreviation, eml23__ReciprocalPressureMeasureExt *Compressibility, const std::string& Uid__1) { - prodml22__WellboreFluidCompressibility *_p = gsoap_eml2_3::soap_new_prodml22__WellboreFluidCompressibility(soap); + prodml23__WellboreFluidCompressibility *_p = gsoap_eml2_3::soap_new_prodml23__WellboreFluidCompressibility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreFluidCompressibility::Abbreviation = Abbreviation; - _p->prodml22__WellboreFluidCompressibility::Compressibility = Compressibility; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreFluidCompressibility::Abbreviation = Abbreviation; + _p->prodml23__WellboreFluidCompressibility::Compressibility = Compressibility; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__WellboreFluidCompressibility * soap_new_set_prodml22__WellboreFluidCompressibility( +inline prodml23__WellboreFluidCompressibility * soap_new_set_prodml23__WellboreFluidCompressibility( struct soap *soap, const std::string& Abbreviation, eml23__ReciprocalPressureMeasureExt *Compressibility, @@ -104114,104 +104114,104 @@ inline prodml22__WellboreFluidCompressibility * soap_new_set_prodml22__WellboreF std::string *Remark__1, const std::string& Uid__1) { - prodml22__WellboreFluidCompressibility *_p = gsoap_eml2_3::soap_new_prodml22__WellboreFluidCompressibility(soap); + prodml23__WellboreFluidCompressibility *_p = gsoap_eml2_3::soap_new_prodml23__WellboreFluidCompressibility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreFluidCompressibility::Abbreviation = Abbreviation; - _p->prodml22__WellboreFluidCompressibility::Compressibility = Compressibility; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreFluidCompressibility::Abbreviation = Abbreviation; + _p->prodml23__WellboreFluidCompressibility::Compressibility = Compressibility; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility const*p) +inline int soap_write_prodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility ? "prodml22:WellboreFluidCompressibility" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility ? "prodml23:WellboreFluidCompressibility" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml22__WellboreFluidCompressibility const*p) +inline int soap_PUT_prodml23__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml23__WellboreFluidCompressibility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility ? "prodml22:WellboreFluidCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility ? "prodml23:WellboreFluidCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml22__WellboreFluidCompressibility const*p) +inline int soap_PATCH_prodml23__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml23__WellboreFluidCompressibility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility ? "prodml22:WellboreFluidCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility ? "prodml23:WellboreFluidCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml22__WellboreFluidCompressibility const*p) +inline int soap_POST_send_prodml23__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml23__WellboreFluidCompressibility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility ? "prodml22:WellboreFluidCompressibility" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreFluidCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility ? "prodml23:WellboreFluidCompressibility" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreFluidCompressibility * SOAP_FMAC4 soap_get_prodml22__WellboreFluidCompressibility(struct soap*, prodml22__WellboreFluidCompressibility *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreFluidCompressibility * SOAP_FMAC4 soap_get_prodml23__WellboreFluidCompressibility(struct soap*, prodml23__WellboreFluidCompressibility *, const char*, const char*); -inline int soap_read_prodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility *p) +inline int soap_read_prodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreFluidCompressibility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreFluidCompressibility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml22__WellboreFluidCompressibility *p) +inline int soap_GET_prodml23__WellboreFluidCompressibility(struct soap *soap, const char *URL, prodml23__WellboreFluidCompressibility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreFluidCompressibility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreFluidCompressibility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreFluidCompressibility(struct soap *soap, prodml22__WellboreFluidCompressibility *p) +inline int soap_POST_recv_prodml23__WellboreFluidCompressibility(struct soap *soap, prodml23__WellboreFluidCompressibility *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreFluidCompressibility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreFluidCompressibility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreDeviationAngle(struct soap*, const char*, int, const prodml22__WellboreDeviationAngle *, const char*); -SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml22__WellboreDeviationAngle(struct soap*, const char*, prodml22__WellboreDeviationAngle *, const char*); -SOAP_FMAC1 prodml22__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml22__WellboreDeviationAngle(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreDeviationAngle(struct soap*, const char*, int, const prodml23__WellboreDeviationAngle *, const char*); +SOAP_FMAC3 prodml23__WellboreDeviationAngle * SOAP_FMAC4 soap_in_prodml23__WellboreDeviationAngle(struct soap*, const char*, prodml23__WellboreDeviationAngle *, const char*); +SOAP_FMAC1 prodml23__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml23__WellboreDeviationAngle(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellboreDeviationAngle * soap_new_prodml22__WellboreDeviationAngle(struct soap *soap, int n = -1) +inline prodml23__WellboreDeviationAngle * soap_new_prodml23__WellboreDeviationAngle(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellboreDeviationAngle(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellboreDeviationAngle(soap, n, NULL, NULL, NULL); } -inline prodml22__WellboreDeviationAngle * soap_new_req_prodml22__WellboreDeviationAngle( +inline prodml23__WellboreDeviationAngle * soap_new_req_prodml23__WellboreDeviationAngle( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *PlaneAngle, const std::string& Uid__1) { - prodml22__WellboreDeviationAngle *_p = gsoap_eml2_3::soap_new_prodml22__WellboreDeviationAngle(soap); + prodml23__WellboreDeviationAngle *_p = gsoap_eml2_3::soap_new_prodml23__WellboreDeviationAngle(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreDeviationAngle::Abbreviation = Abbreviation; - _p->prodml22__WellboreDeviationAngle::PlaneAngle = PlaneAngle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreDeviationAngle::Abbreviation = Abbreviation; + _p->prodml23__WellboreDeviationAngle::PlaneAngle = PlaneAngle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__WellboreDeviationAngle * soap_new_set_prodml22__WellboreDeviationAngle( +inline prodml23__WellboreDeviationAngle * soap_new_set_prodml23__WellboreDeviationAngle( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *PlaneAngle, @@ -104219,104 +104219,104 @@ inline prodml22__WellboreDeviationAngle * soap_new_set_prodml22__WellboreDeviati std::string *Remark__1, const std::string& Uid__1) { - prodml22__WellboreDeviationAngle *_p = gsoap_eml2_3::soap_new_prodml22__WellboreDeviationAngle(soap); + prodml23__WellboreDeviationAngle *_p = gsoap_eml2_3::soap_new_prodml23__WellboreDeviationAngle(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreDeviationAngle::Abbreviation = Abbreviation; - _p->prodml22__WellboreDeviationAngle::PlaneAngle = PlaneAngle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__WellboreDeviationAngle::Abbreviation = Abbreviation; + _p->prodml23__WellboreDeviationAngle::PlaneAngle = PlaneAngle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle const*p) +inline int soap_write_prodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle ? "prodml22:WellboreDeviationAngle" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle ? "prodml23:WellboreDeviationAngle" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml22__WellboreDeviationAngle const*p) +inline int soap_PUT_prodml23__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml23__WellboreDeviationAngle const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle ? "prodml22:WellboreDeviationAngle" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle ? "prodml23:WellboreDeviationAngle" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml22__WellboreDeviationAngle const*p) +inline int soap_PATCH_prodml23__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml23__WellboreDeviationAngle const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle ? "prodml22:WellboreDeviationAngle" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle ? "prodml23:WellboreDeviationAngle" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml22__WellboreDeviationAngle const*p) +inline int soap_POST_send_prodml23__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml23__WellboreDeviationAngle const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle ? "prodml22:WellboreDeviationAngle" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreDeviationAngle", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle ? "prodml23:WellboreDeviationAngle" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreDeviationAngle * SOAP_FMAC4 soap_get_prodml22__WellboreDeviationAngle(struct soap*, prodml22__WellboreDeviationAngle *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreDeviationAngle * SOAP_FMAC4 soap_get_prodml23__WellboreDeviationAngle(struct soap*, prodml23__WellboreDeviationAngle *, const char*, const char*); -inline int soap_read_prodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle *p) +inline int soap_read_prodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreDeviationAngle(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreDeviationAngle(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml22__WellboreDeviationAngle *p) +inline int soap_GET_prodml23__WellboreDeviationAngle(struct soap *soap, const char *URL, prodml23__WellboreDeviationAngle *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreDeviationAngle(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreDeviationAngle(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreDeviationAngle(struct soap *soap, prodml22__WellboreDeviationAngle *p) +inline int soap_POST_recv_prodml23__WellboreDeviationAngle(struct soap *soap, prodml23__WellboreDeviationAngle *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreDeviationAngle(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreDeviationAngle(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VerticalAnisotropyKvToKr(struct soap*, const char*, int, const prodml22__VerticalAnisotropyKvToKr *, const char*); -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml22__VerticalAnisotropyKvToKr(struct soap*, const char*, prodml22__VerticalAnisotropyKvToKr *, const char*); -SOAP_FMAC1 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prodml22__VerticalAnisotropyKvToKr(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VerticalAnisotropyKvToKr(struct soap*, const char*, int, const prodml23__VerticalAnisotropyKvToKr *, const char*); +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_in_prodml23__VerticalAnisotropyKvToKr(struct soap*, const char*, prodml23__VerticalAnisotropyKvToKr *, const char*); +SOAP_FMAC1 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prodml23__VerticalAnisotropyKvToKr(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__VerticalAnisotropyKvToKr * soap_new_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, int n = -1) +inline prodml23__VerticalAnisotropyKvToKr * soap_new_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__VerticalAnisotropyKvToKr(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__VerticalAnisotropyKvToKr(soap, n, NULL, NULL, NULL); } -inline prodml22__VerticalAnisotropyKvToKr * soap_new_req_prodml22__VerticalAnisotropyKvToKr( +inline prodml23__VerticalAnisotropyKvToKr * soap_new_req_prodml23__VerticalAnisotropyKvToKr( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__VerticalAnisotropyKvToKr *_p = gsoap_eml2_3::soap_new_prodml22__VerticalAnisotropyKvToKr(soap); + prodml23__VerticalAnisotropyKvToKr *_p = gsoap_eml2_3::soap_new_prodml23__VerticalAnisotropyKvToKr(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VerticalAnisotropyKvToKr::Abbreviation = Abbreviation; - _p->prodml22__VerticalAnisotropyKvToKr::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__VerticalAnisotropyKvToKr::Abbreviation = Abbreviation; + _p->prodml23__VerticalAnisotropyKvToKr::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__VerticalAnisotropyKvToKr * soap_new_set_prodml22__VerticalAnisotropyKvToKr( +inline prodml23__VerticalAnisotropyKvToKr * soap_new_set_prodml23__VerticalAnisotropyKvToKr( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -104324,104 +104324,104 @@ inline prodml22__VerticalAnisotropyKvToKr * soap_new_set_prodml22__VerticalAniso std::string *Remark__1, const std::string& Uid__1) { - prodml22__VerticalAnisotropyKvToKr *_p = gsoap_eml2_3::soap_new_prodml22__VerticalAnisotropyKvToKr(soap); + prodml23__VerticalAnisotropyKvToKr *_p = gsoap_eml2_3::soap_new_prodml23__VerticalAnisotropyKvToKr(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VerticalAnisotropyKvToKr::Abbreviation = Abbreviation; - _p->prodml22__VerticalAnisotropyKvToKr::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__VerticalAnisotropyKvToKr::Abbreviation = Abbreviation; + _p->prodml23__VerticalAnisotropyKvToKr::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr const*p) +inline int soap_write_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr ? "prodml22:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr ? "prodml23:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml22__VerticalAnisotropyKvToKr const*p) +inline int soap_PUT_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml23__VerticalAnisotropyKvToKr const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr ? "prodml22:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr ? "prodml23:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml22__VerticalAnisotropyKvToKr const*p) +inline int soap_PATCH_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml23__VerticalAnisotropyKvToKr const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr ? "prodml22:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr ? "prodml23:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml22__VerticalAnisotropyKvToKr const*p) +inline int soap_POST_send_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml23__VerticalAnisotropyKvToKr const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr ? "prodml22:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalAnisotropyKvToKr", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr ? "prodml23:VerticalAnisotropyKvToKr" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_get_prodml22__VerticalAnisotropyKvToKr(struct soap*, prodml22__VerticalAnisotropyKvToKr *, const char*, const char*); +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC4 soap_get_prodml23__VerticalAnisotropyKvToKr(struct soap*, prodml23__VerticalAnisotropyKvToKr *, const char*, const char*); -inline int soap_read_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr *p) +inline int soap_read_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__VerticalAnisotropyKvToKr(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__VerticalAnisotropyKvToKr(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml22__VerticalAnisotropyKvToKr *p) +inline int soap_GET_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, const char *URL, prodml23__VerticalAnisotropyKvToKr *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__VerticalAnisotropyKvToKr(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__VerticalAnisotropyKvToKr(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__VerticalAnisotropyKvToKr(struct soap *soap, prodml22__VerticalAnisotropyKvToKr *p) +inline int soap_POST_recv_prodml23__VerticalAnisotropyKvToKr(struct soap *soap, prodml23__VerticalAnisotropyKvToKr *p) { - if (gsoap_eml2_3::soap_read_prodml22__VerticalAnisotropyKvToKr(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__VerticalAnisotropyKvToKr(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TubingInteralDiameter(struct soap*, const char*, int, const prodml22__TubingInteralDiameter *, const char*); -SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml22__TubingInteralDiameter(struct soap*, const char*, prodml22__TubingInteralDiameter *, const char*); -SOAP_FMAC1 prodml22__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml22__TubingInteralDiameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TubingInteralDiameter(struct soap*, const char*, int, const prodml23__TubingInteralDiameter *, const char*); +SOAP_FMAC3 prodml23__TubingInteralDiameter * SOAP_FMAC4 soap_in_prodml23__TubingInteralDiameter(struct soap*, const char*, prodml23__TubingInteralDiameter *, const char*); +SOAP_FMAC1 prodml23__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml23__TubingInteralDiameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TubingInteralDiameter * soap_new_prodml22__TubingInteralDiameter(struct soap *soap, int n = -1) +inline prodml23__TubingInteralDiameter * soap_new_prodml23__TubingInteralDiameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TubingInteralDiameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TubingInteralDiameter(soap, n, NULL, NULL, NULL); } -inline prodml22__TubingInteralDiameter * soap_new_req_prodml22__TubingInteralDiameter( +inline prodml23__TubingInteralDiameter * soap_new_req_prodml23__TubingInteralDiameter( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__TubingInteralDiameter *_p = gsoap_eml2_3::soap_new_prodml22__TubingInteralDiameter(soap); + prodml23__TubingInteralDiameter *_p = gsoap_eml2_3::soap_new_prodml23__TubingInteralDiameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TubingInteralDiameter::Abbreviation = Abbreviation; - _p->prodml22__TubingInteralDiameter::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__TubingInteralDiameter::Abbreviation = Abbreviation; + _p->prodml23__TubingInteralDiameter::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__TubingInteralDiameter * soap_new_set_prodml22__TubingInteralDiameter( +inline prodml23__TubingInteralDiameter * soap_new_set_prodml23__TubingInteralDiameter( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -104429,104 +104429,104 @@ inline prodml22__TubingInteralDiameter * soap_new_set_prodml22__TubingInteralDia std::string *Remark__1, const std::string& Uid__1) { - prodml22__TubingInteralDiameter *_p = gsoap_eml2_3::soap_new_prodml22__TubingInteralDiameter(soap); + prodml23__TubingInteralDiameter *_p = gsoap_eml2_3::soap_new_prodml23__TubingInteralDiameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TubingInteralDiameter::Abbreviation = Abbreviation; - _p->prodml22__TubingInteralDiameter::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__TubingInteralDiameter::Abbreviation = Abbreviation; + _p->prodml23__TubingInteralDiameter::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter const*p) +inline int soap_write_prodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter ? "prodml22:TubingInteralDiameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter ? "prodml23:TubingInteralDiameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TubingInteralDiameter(struct soap *soap, const char *URL, prodml22__TubingInteralDiameter const*p) +inline int soap_PUT_prodml23__TubingInteralDiameter(struct soap *soap, const char *URL, prodml23__TubingInteralDiameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter ? "prodml22:TubingInteralDiameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter ? "prodml23:TubingInteralDiameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TubingInteralDiameter(struct soap *soap, const char *URL, prodml22__TubingInteralDiameter const*p) +inline int soap_PATCH_prodml23__TubingInteralDiameter(struct soap *soap, const char *URL, prodml23__TubingInteralDiameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter ? "prodml22:TubingInteralDiameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter ? "prodml23:TubingInteralDiameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TubingInteralDiameter(struct soap *soap, const char *URL, prodml22__TubingInteralDiameter const*p) +inline int soap_POST_send_prodml23__TubingInteralDiameter(struct soap *soap, const char *URL, prodml23__TubingInteralDiameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter ? "prodml22:TubingInteralDiameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TubingInteralDiameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter ? "prodml23:TubingInteralDiameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TubingInteralDiameter * SOAP_FMAC4 soap_get_prodml22__TubingInteralDiameter(struct soap*, prodml22__TubingInteralDiameter *, const char*, const char*); +SOAP_FMAC3 prodml23__TubingInteralDiameter * SOAP_FMAC4 soap_get_prodml23__TubingInteralDiameter(struct soap*, prodml23__TubingInteralDiameter *, const char*, const char*); -inline int soap_read_prodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter *p) +inline int soap_read_prodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TubingInteralDiameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TubingInteralDiameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TubingInteralDiameter(struct soap *soap, const char *URL, prodml22__TubingInteralDiameter *p) +inline int soap_GET_prodml23__TubingInteralDiameter(struct soap *soap, const char *URL, prodml23__TubingInteralDiameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TubingInteralDiameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TubingInteralDiameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TubingInteralDiameter(struct soap *soap, prodml22__TubingInteralDiameter *p) +inline int soap_POST_recv_prodml23__TubingInteralDiameter(struct soap *soap, prodml23__TubingInteralDiameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__TubingInteralDiameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TubingInteralDiameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char*, int, const prodml22__TransmissibilityReductionFactorOfLinearFront *, const char*); -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_in_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char*, prodml22__TransmissibilityReductionFactorOfLinearFront *, const char*); -SOAP_FMAC1 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char*, int, const prodml23__TransmissibilityReductionFactorOfLinearFront *, const char*); +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_in_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char*, prodml23__TransmissibilityReductionFactorOfLinearFront *, const char*); +SOAP_FMAC1 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TransmissibilityReductionFactorOfLinearFront * soap_new_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, int n = -1) +inline prodml23__TransmissibilityReductionFactorOfLinearFront * soap_new_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, n, NULL, NULL, NULL); } -inline prodml22__TransmissibilityReductionFactorOfLinearFront * soap_new_req_prodml22__TransmissibilityReductionFactorOfLinearFront( +inline prodml23__TransmissibilityReductionFactorOfLinearFront * soap_new_req_prodml23__TransmissibilityReductionFactorOfLinearFront( struct soap *soap, const std::string& abbreviation, const std::string& value, const std::string& Uid__1) { - prodml22__TransmissibilityReductionFactorOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml22__TransmissibilityReductionFactorOfLinearFront(soap); + prodml23__TransmissibilityReductionFactorOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml23__TransmissibilityReductionFactorOfLinearFront(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation = abbreviation; - _p->prodml22__TransmissibilityReductionFactorOfLinearFront::value = value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation = abbreviation; + _p->prodml23__TransmissibilityReductionFactorOfLinearFront::value = value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__TransmissibilityReductionFactorOfLinearFront * soap_new_set_prodml22__TransmissibilityReductionFactorOfLinearFront( +inline prodml23__TransmissibilityReductionFactorOfLinearFront * soap_new_set_prodml23__TransmissibilityReductionFactorOfLinearFront( struct soap *soap, const std::string& abbreviation, const std::string& value, @@ -104534,104 +104534,104 @@ inline prodml22__TransmissibilityReductionFactorOfLinearFront * soap_new_set_pro std::string *Remark__1, const std::string& Uid__1) { - prodml22__TransmissibilityReductionFactorOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml22__TransmissibilityReductionFactorOfLinearFront(soap); + prodml23__TransmissibilityReductionFactorOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml23__TransmissibilityReductionFactorOfLinearFront(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TransmissibilityReductionFactorOfLinearFront::abbreviation = abbreviation; - _p->prodml22__TransmissibilityReductionFactorOfLinearFront::value = value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__TransmissibilityReductionFactorOfLinearFront::abbreviation = abbreviation; + _p->prodml23__TransmissibilityReductionFactorOfLinearFront::value = value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront const*p) +inline int soap_write_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront ? "prodml22:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront ? "prodml23:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml22__TransmissibilityReductionFactorOfLinearFront const*p) +inline int soap_PUT_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml23__TransmissibilityReductionFactorOfLinearFront const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront ? "prodml22:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront ? "prodml23:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml22__TransmissibilityReductionFactorOfLinearFront const*p) +inline int soap_PATCH_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml23__TransmissibilityReductionFactorOfLinearFront const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront ? "prodml22:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront ? "prodml23:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml22__TransmissibilityReductionFactorOfLinearFront const*p) +inline int soap_POST_send_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml23__TransmissibilityReductionFactorOfLinearFront const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront ? "prodml22:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TransmissibilityReductionFactorOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront ? "prodml23:TransmissibilityReductionFactorOfLinearFront" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_get_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml22__TransmissibilityReductionFactorOfLinearFront *, const char*, const char*); +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC4 soap_get_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml23__TransmissibilityReductionFactorOfLinearFront *, const char*, const char*); -inline int soap_read_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront *p) +inline int soap_read_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml22__TransmissibilityReductionFactorOfLinearFront *p) +inline int soap_GET_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, const char *URL, prodml23__TransmissibilityReductionFactorOfLinearFront *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml22__TransmissibilityReductionFactorOfLinearFront *p) +inline int soap_POST_recv_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap *soap, prodml23__TransmissibilityReductionFactorOfLinearFront *p) { - if (gsoap_eml2_3::soap_read_prodml22__TransmissibilityReductionFactorOfLinearFront(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TransmissibilityReductionFactorOfLinearFront(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TotalThickness(struct soap*, const char*, int, const prodml22__TotalThickness *, const char*); -SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_in_prodml22__TotalThickness(struct soap*, const char*, prodml22__TotalThickness *, const char*); -SOAP_FMAC1 prodml22__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__TotalThickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TotalThickness(struct soap*, const char*, int, const prodml23__TotalThickness *, const char*); +SOAP_FMAC3 prodml23__TotalThickness * SOAP_FMAC4 soap_in_prodml23__TotalThickness(struct soap*, const char*, prodml23__TotalThickness *, const char*); +SOAP_FMAC1 prodml23__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__TotalThickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TotalThickness * soap_new_prodml22__TotalThickness(struct soap *soap, int n = -1) +inline prodml23__TotalThickness * soap_new_prodml23__TotalThickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TotalThickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TotalThickness(soap, n, NULL, NULL, NULL); } -inline prodml22__TotalThickness * soap_new_req_prodml22__TotalThickness( +inline prodml23__TotalThickness * soap_new_req_prodml23__TotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__TotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__TotalThickness(soap); + prodml23__TotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__TotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TotalThickness::Abbreviation = Abbreviation; - _p->prodml22__TotalThickness::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__TotalThickness::Abbreviation = Abbreviation; + _p->prodml23__TotalThickness::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__TotalThickness * soap_new_set_prodml22__TotalThickness( +inline prodml23__TotalThickness * soap_new_set_prodml23__TotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -104639,104 +104639,104 @@ inline prodml22__TotalThickness * soap_new_set_prodml22__TotalThickness( std::string *Remark__1, const std::string& Uid__1) { - prodml22__TotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__TotalThickness(soap); + prodml23__TotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__TotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TotalThickness::Abbreviation = Abbreviation; - _p->prodml22__TotalThickness::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__TotalThickness::Abbreviation = Abbreviation; + _p->prodml23__TotalThickness::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness const*p) +inline int soap_write_prodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness ? "prodml22:TotalThickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness ? "prodml23:TotalThickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TotalThickness(struct soap *soap, const char *URL, prodml22__TotalThickness const*p) +inline int soap_PUT_prodml23__TotalThickness(struct soap *soap, const char *URL, prodml23__TotalThickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness ? "prodml22:TotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness ? "prodml23:TotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TotalThickness(struct soap *soap, const char *URL, prodml22__TotalThickness const*p) +inline int soap_PATCH_prodml23__TotalThickness(struct soap *soap, const char *URL, prodml23__TotalThickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness ? "prodml22:TotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness ? "prodml23:TotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TotalThickness(struct soap *soap, const char *URL, prodml22__TotalThickness const*p) +inline int soap_POST_send_prodml23__TotalThickness(struct soap *soap, const char *URL, prodml23__TotalThickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness ? "prodml22:TotalThickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness ? "prodml23:TotalThickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TotalThickness * SOAP_FMAC4 soap_get_prodml22__TotalThickness(struct soap*, prodml22__TotalThickness *, const char*, const char*); +SOAP_FMAC3 prodml23__TotalThickness * SOAP_FMAC4 soap_get_prodml23__TotalThickness(struct soap*, prodml23__TotalThickness *, const char*, const char*); -inline int soap_read_prodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness *p) +inline int soap_read_prodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TotalThickness(struct soap *soap, const char *URL, prodml22__TotalThickness *p) +inline int soap_GET_prodml23__TotalThickness(struct soap *soap, const char *URL, prodml23__TotalThickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TotalThickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TotalThickness(struct soap *soap, prodml22__TotalThickness *p) +inline int soap_POST_recv_prodml23__TotalThickness(struct soap *soap, prodml23__TotalThickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__TotalThickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StorativityRatio(struct soap*, const char*, int, const prodml22__StorativityRatio *, const char*); -SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_in_prodml22__StorativityRatio(struct soap*, const char*, prodml22__StorativityRatio *, const char*); -SOAP_FMAC1 prodml22__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__StorativityRatio(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StorativityRatio(struct soap*, const char*, int, const prodml23__StorativityRatio *, const char*); +SOAP_FMAC3 prodml23__StorativityRatio * SOAP_FMAC4 soap_in_prodml23__StorativityRatio(struct soap*, const char*, prodml23__StorativityRatio *, const char*); +SOAP_FMAC1 prodml23__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml23__StorativityRatio(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__StorativityRatio * soap_new_prodml22__StorativityRatio(struct soap *soap, int n = -1) +inline prodml23__StorativityRatio * soap_new_prodml23__StorativityRatio(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__StorativityRatio(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__StorativityRatio(soap, n, NULL, NULL, NULL); } -inline prodml22__StorativityRatio * soap_new_req_prodml22__StorativityRatio( +inline prodml23__StorativityRatio * soap_new_req_prodml23__StorativityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__StorativityRatio *_p = gsoap_eml2_3::soap_new_prodml22__StorativityRatio(soap); + prodml23__StorativityRatio *_p = gsoap_eml2_3::soap_new_prodml23__StorativityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StorativityRatio::Abbreviation = Abbreviation; - _p->prodml22__StorativityRatio::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__StorativityRatio::Abbreviation = Abbreviation; + _p->prodml23__StorativityRatio::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__StorativityRatio * soap_new_set_prodml22__StorativityRatio( +inline prodml23__StorativityRatio * soap_new_set_prodml23__StorativityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -104744,104 +104744,104 @@ inline prodml22__StorativityRatio * soap_new_set_prodml22__StorativityRatio( std::string *Remark__1, const std::string& Uid__1) { - prodml22__StorativityRatio *_p = gsoap_eml2_3::soap_new_prodml22__StorativityRatio(soap); + prodml23__StorativityRatio *_p = gsoap_eml2_3::soap_new_prodml23__StorativityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StorativityRatio::Abbreviation = Abbreviation; - _p->prodml22__StorativityRatio::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__StorativityRatio::Abbreviation = Abbreviation; + _p->prodml23__StorativityRatio::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio const*p) +inline int soap_write_prodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio ? "prodml22:StorativityRatio" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio ? "prodml23:StorativityRatio" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__StorativityRatio(struct soap *soap, const char *URL, prodml22__StorativityRatio const*p) +inline int soap_PUT_prodml23__StorativityRatio(struct soap *soap, const char *URL, prodml23__StorativityRatio const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio ? "prodml22:StorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio ? "prodml23:StorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__StorativityRatio(struct soap *soap, const char *URL, prodml22__StorativityRatio const*p) +inline int soap_PATCH_prodml23__StorativityRatio(struct soap *soap, const char *URL, prodml23__StorativityRatio const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio ? "prodml22:StorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio ? "prodml23:StorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__StorativityRatio(struct soap *soap, const char *URL, prodml22__StorativityRatio const*p) +inline int soap_POST_send_prodml23__StorativityRatio(struct soap *soap, const char *URL, prodml23__StorativityRatio const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio ? "prodml22:StorativityRatio" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio ? "prodml23:StorativityRatio" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__StorativityRatio * SOAP_FMAC4 soap_get_prodml22__StorativityRatio(struct soap*, prodml22__StorativityRatio *, const char*, const char*); +SOAP_FMAC3 prodml23__StorativityRatio * SOAP_FMAC4 soap_get_prodml23__StorativityRatio(struct soap*, prodml23__StorativityRatio *, const char*, const char*); -inline int soap_read_prodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio *p) +inline int soap_read_prodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__StorativityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__StorativityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__StorativityRatio(struct soap *soap, const char *URL, prodml22__StorativityRatio *p) +inline int soap_GET_prodml23__StorativityRatio(struct soap *soap, const char *URL, prodml23__StorativityRatio *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__StorativityRatio(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__StorativityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__StorativityRatio(struct soap *soap, prodml22__StorativityRatio *p) +inline int soap_POST_recv_prodml23__StorativityRatio(struct soap *soap, prodml23__StorativityRatio *p) { - if (gsoap_eml2_3::soap_read_prodml22__StorativityRatio(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__StorativityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SkinRelativeToTotalThickness(struct soap*, const char*, int, const prodml22__SkinRelativeToTotalThickness *, const char*); -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__SkinRelativeToTotalThickness(struct soap*, const char*, prodml22__SkinRelativeToTotalThickness *, const char*); -SOAP_FMAC1 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__SkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SkinRelativeToTotalThickness(struct soap*, const char*, int, const prodml23__SkinRelativeToTotalThickness *, const char*); +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__SkinRelativeToTotalThickness(struct soap*, const char*, prodml23__SkinRelativeToTotalThickness *, const char*); +SOAP_FMAC1 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__SkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SkinRelativeToTotalThickness * soap_new_prodml22__SkinRelativeToTotalThickness(struct soap *soap, int n = -1) +inline prodml23__SkinRelativeToTotalThickness * soap_new_prodml23__SkinRelativeToTotalThickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SkinRelativeToTotalThickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SkinRelativeToTotalThickness(soap, n, NULL, NULL, NULL); } -inline prodml22__SkinRelativeToTotalThickness * soap_new_req_prodml22__SkinRelativeToTotalThickness( +inline prodml23__SkinRelativeToTotalThickness * soap_new_req_prodml23__SkinRelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__SkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__SkinRelativeToTotalThickness(soap); + prodml23__SkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__SkinRelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SkinRelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__SkinRelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__SkinRelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__SkinRelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__SkinRelativeToTotalThickness * soap_new_set_prodml22__SkinRelativeToTotalThickness( +inline prodml23__SkinRelativeToTotalThickness * soap_new_set_prodml23__SkinRelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -104849,104 +104849,104 @@ inline prodml22__SkinRelativeToTotalThickness * soap_new_set_prodml22__SkinRelat std::string *Remark__1, const std::string& Uid__1) { - prodml22__SkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__SkinRelativeToTotalThickness(soap); + prodml23__SkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__SkinRelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SkinRelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__SkinRelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__SkinRelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__SkinRelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness const*p) +inline int soap_write_prodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness ? "prodml22:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness ? "prodml23:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinRelativeToTotalThickness const*p) +inline int soap_PUT_prodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness ? "prodml22:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness ? "prodml23:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinRelativeToTotalThickness const*p) +inline int soap_PATCH_prodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness ? "prodml22:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness ? "prodml23:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinRelativeToTotalThickness const*p) +inline int soap_POST_send_prodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness ? "prodml22:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness ? "prodml23:SkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__SkinRelativeToTotalThickness(struct soap*, prodml22__SkinRelativeToTotalThickness *, const char*, const char*); +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__SkinRelativeToTotalThickness(struct soap*, prodml23__SkinRelativeToTotalThickness *, const char*, const char*); -inline int soap_read_prodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness *p) +inline int soap_read_prodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SkinRelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SkinRelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinRelativeToTotalThickness *p) +inline int soap_GET_prodml23__SkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinRelativeToTotalThickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SkinRelativeToTotalThickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SkinRelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SkinRelativeToTotalThickness(struct soap *soap, prodml22__SkinRelativeToTotalThickness *p) +inline int soap_POST_recv_prodml23__SkinRelativeToTotalThickness(struct soap *soap, prodml23__SkinRelativeToTotalThickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__SkinRelativeToTotalThickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SkinRelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SkinLayer2RelativeToTotalThickness(struct soap*, const char*, int, const prodml22__SkinLayer2RelativeToTotalThickness *, const char*); -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__SkinLayer2RelativeToTotalThickness(struct soap*, const char*, prodml22__SkinLayer2RelativeToTotalThickness *, const char*); -SOAP_FMAC1 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SkinLayer2RelativeToTotalThickness(struct soap*, const char*, int, const prodml23__SkinLayer2RelativeToTotalThickness *, const char*); +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__SkinLayer2RelativeToTotalThickness(struct soap*, const char*, prodml23__SkinLayer2RelativeToTotalThickness *, const char*); +SOAP_FMAC1 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SkinLayer2RelativeToTotalThickness * soap_new_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, int n = -1) +inline prodml23__SkinLayer2RelativeToTotalThickness * soap_new_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(soap, n, NULL, NULL, NULL); } -inline prodml22__SkinLayer2RelativeToTotalThickness * soap_new_req_prodml22__SkinLayer2RelativeToTotalThickness( +inline prodml23__SkinLayer2RelativeToTotalThickness * soap_new_req_prodml23__SkinLayer2RelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__SkinLayer2RelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__SkinLayer2RelativeToTotalThickness(soap); + prodml23__SkinLayer2RelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__SkinLayer2RelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__SkinLayer2RelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__SkinLayer2RelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__SkinLayer2RelativeToTotalThickness * soap_new_set_prodml22__SkinLayer2RelativeToTotalThickness( +inline prodml23__SkinLayer2RelativeToTotalThickness * soap_new_set_prodml23__SkinLayer2RelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -104954,104 +104954,104 @@ inline prodml22__SkinLayer2RelativeToTotalThickness * soap_new_set_prodml22__Ski std::string *Remark__1, const std::string& Uid__1) { - prodml22__SkinLayer2RelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__SkinLayer2RelativeToTotalThickness(soap); + prodml23__SkinLayer2RelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__SkinLayer2RelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SkinLayer2RelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__SkinLayer2RelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__SkinLayer2RelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__SkinLayer2RelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness const*p) +inline int soap_write_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness ? "prodml22:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness ? "prodml23:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinLayer2RelativeToTotalThickness const*p) +inline int soap_PUT_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinLayer2RelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness ? "prodml22:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness ? "prodml23:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinLayer2RelativeToTotalThickness const*p) +inline int soap_PATCH_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinLayer2RelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness ? "prodml22:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness ? "prodml23:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinLayer2RelativeToTotalThickness const*p) +inline int soap_POST_send_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinLayer2RelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness ? "prodml22:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SkinLayer2RelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness ? "prodml23:SkinLayer2RelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__SkinLayer2RelativeToTotalThickness(struct soap*, prodml22__SkinLayer2RelativeToTotalThickness *, const char*, const char*); +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__SkinLayer2RelativeToTotalThickness(struct soap*, prodml23__SkinLayer2RelativeToTotalThickness *, const char*, const char*); -inline int soap_read_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness *p) +inline int soap_read_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SkinLayer2RelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SkinLayer2RelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__SkinLayer2RelativeToTotalThickness *p) +inline int soap_GET_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__SkinLayer2RelativeToTotalThickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SkinLayer2RelativeToTotalThickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SkinLayer2RelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml22__SkinLayer2RelativeToTotalThickness *p) +inline int soap_POST_recv_prodml23__SkinLayer2RelativeToTotalThickness(struct soap *soap, prodml23__SkinLayer2RelativeToTotalThickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__SkinLayer2RelativeToTotalThickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SkinLayer2RelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Region2Thickness(struct soap*, const char*, int, const prodml22__Region2Thickness *, const char*); -SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_in_prodml22__Region2Thickness(struct soap*, const char*, prodml22__Region2Thickness *, const char*); -SOAP_FMAC1 prodml22__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Region2Thickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Region2Thickness(struct soap*, const char*, int, const prodml23__Region2Thickness *, const char*); +SOAP_FMAC3 prodml23__Region2Thickness * SOAP_FMAC4 soap_in_prodml23__Region2Thickness(struct soap*, const char*, prodml23__Region2Thickness *, const char*); +SOAP_FMAC1 prodml23__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml23__Region2Thickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Region2Thickness * soap_new_prodml22__Region2Thickness(struct soap *soap, int n = -1) +inline prodml23__Region2Thickness * soap_new_prodml23__Region2Thickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Region2Thickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Region2Thickness(soap, n, NULL, NULL, NULL); } -inline prodml22__Region2Thickness * soap_new_req_prodml22__Region2Thickness( +inline prodml23__Region2Thickness * soap_new_req_prodml23__Region2Thickness( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__Region2Thickness *_p = gsoap_eml2_3::soap_new_prodml22__Region2Thickness(soap); + prodml23__Region2Thickness *_p = gsoap_eml2_3::soap_new_prodml23__Region2Thickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Region2Thickness::Abbreviation = Abbreviation; - _p->prodml22__Region2Thickness::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__Region2Thickness::Abbreviation = Abbreviation; + _p->prodml23__Region2Thickness::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__Region2Thickness * soap_new_set_prodml22__Region2Thickness( +inline prodml23__Region2Thickness * soap_new_set_prodml23__Region2Thickness( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -105059,104 +105059,104 @@ inline prodml22__Region2Thickness * soap_new_set_prodml22__Region2Thickness( std::string *Remark__1, const std::string& Uid__1) { - prodml22__Region2Thickness *_p = gsoap_eml2_3::soap_new_prodml22__Region2Thickness(soap); + prodml23__Region2Thickness *_p = gsoap_eml2_3::soap_new_prodml23__Region2Thickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Region2Thickness::Abbreviation = Abbreviation; - _p->prodml22__Region2Thickness::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__Region2Thickness::Abbreviation = Abbreviation; + _p->prodml23__Region2Thickness::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness const*p) +inline int soap_write_prodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness ? "prodml22:Region2Thickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness ? "prodml23:Region2Thickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Region2Thickness(struct soap *soap, const char *URL, prodml22__Region2Thickness const*p) +inline int soap_PUT_prodml23__Region2Thickness(struct soap *soap, const char *URL, prodml23__Region2Thickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness ? "prodml22:Region2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness ? "prodml23:Region2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Region2Thickness(struct soap *soap, const char *URL, prodml22__Region2Thickness const*p) +inline int soap_PATCH_prodml23__Region2Thickness(struct soap *soap, const char *URL, prodml23__Region2Thickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness ? "prodml22:Region2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness ? "prodml23:Region2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Region2Thickness(struct soap *soap, const char *URL, prodml22__Region2Thickness const*p) +inline int soap_POST_send_prodml23__Region2Thickness(struct soap *soap, const char *URL, prodml23__Region2Thickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness ? "prodml22:Region2Thickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Region2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness ? "prodml23:Region2Thickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Region2Thickness * SOAP_FMAC4 soap_get_prodml22__Region2Thickness(struct soap*, prodml22__Region2Thickness *, const char*, const char*); +SOAP_FMAC3 prodml23__Region2Thickness * SOAP_FMAC4 soap_get_prodml23__Region2Thickness(struct soap*, prodml23__Region2Thickness *, const char*, const char*); -inline int soap_read_prodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness *p) +inline int soap_read_prodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Region2Thickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Region2Thickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Region2Thickness(struct soap *soap, const char *URL, prodml22__Region2Thickness *p) +inline int soap_GET_prodml23__Region2Thickness(struct soap *soap, const char *URL, prodml23__Region2Thickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Region2Thickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Region2Thickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Region2Thickness(struct soap *soap, prodml22__Region2Thickness *p) +inline int soap_POST_recv_prodml23__Region2Thickness(struct soap *soap, prodml23__Region2Thickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__Region2Thickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Region2Thickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char*, int, const prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *, const char*); -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char*, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *, const char*); -SOAP_FMAC1 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char*, int, const prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *, const char*); +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char*, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *, const char*); +SOAP_FMAC1 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, int n = -1) +inline prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, n, NULL, NULL, NULL); } -inline prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_req_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct( +inline prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_req_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap); + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation = Abbreviation; - _p->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation = Abbreviation; + _p->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_set_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct( +inline prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_set_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -105164,104 +105164,104 @@ inline prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * soap_new_set_p std::string *Remark__1, const std::string& Uid__1) { - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap); + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation = Abbreviation; - _p->prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Abbreviation = Abbreviation; + _p->prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) +inline int soap_write_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) +inline int soap_PUT_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) +inline int soap_PATCH_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) +inline int soap_POST_send_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ? "prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *, const char*, const char*); +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *, const char*, const char*); -inline int soap_read_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *p) +inline int soap_read_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *p) +inline int soap_GET_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *p) +inline int soap_POST_recv_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap *soap, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *p) { - if (gsoap_eml2_3::soap_read_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RatioInitialToFinalWellboreStorage(struct soap*, const char*, int, const prodml22__RatioInitialToFinalWellboreStorage *, const char*); -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_prodml22__RatioInitialToFinalWellboreStorage(struct soap*, const char*, prodml22__RatioInitialToFinalWellboreStorage *, const char*); -SOAP_FMAC1 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RatioInitialToFinalWellboreStorage(struct soap*, const char*, int, const prodml23__RatioInitialToFinalWellboreStorage *, const char*); +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_in_prodml23__RatioInitialToFinalWellboreStorage(struct soap*, const char*, prodml23__RatioInitialToFinalWellboreStorage *, const char*); +SOAP_FMAC1 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RatioInitialToFinalWellboreStorage * soap_new_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, int n = -1) +inline prodml23__RatioInitialToFinalWellboreStorage * soap_new_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(soap, n, NULL, NULL, NULL); } -inline prodml22__RatioInitialToFinalWellboreStorage * soap_new_req_prodml22__RatioInitialToFinalWellboreStorage( +inline prodml23__RatioInitialToFinalWellboreStorage * soap_new_req_prodml23__RatioInitialToFinalWellboreStorage( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__RatioInitialToFinalWellboreStorage *_p = gsoap_eml2_3::soap_new_prodml22__RatioInitialToFinalWellboreStorage(soap); + prodml23__RatioInitialToFinalWellboreStorage *_p = gsoap_eml2_3::soap_new_prodml23__RatioInitialToFinalWellboreStorage(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation = Abbreviation; - _p->prodml22__RatioInitialToFinalWellboreStorage::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation = Abbreviation; + _p->prodml23__RatioInitialToFinalWellboreStorage::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__RatioInitialToFinalWellboreStorage * soap_new_set_prodml22__RatioInitialToFinalWellboreStorage( +inline prodml23__RatioInitialToFinalWellboreStorage * soap_new_set_prodml23__RatioInitialToFinalWellboreStorage( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -105269,104 +105269,104 @@ inline prodml22__RatioInitialToFinalWellboreStorage * soap_new_set_prodml22__Rat std::string *Remark__1, const std::string& Uid__1) { - prodml22__RatioInitialToFinalWellboreStorage *_p = gsoap_eml2_3::soap_new_prodml22__RatioInitialToFinalWellboreStorage(soap); + prodml23__RatioInitialToFinalWellboreStorage *_p = gsoap_eml2_3::soap_new_prodml23__RatioInitialToFinalWellboreStorage(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RatioInitialToFinalWellboreStorage::Abbreviation = Abbreviation; - _p->prodml22__RatioInitialToFinalWellboreStorage::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RatioInitialToFinalWellboreStorage::Abbreviation = Abbreviation; + _p->prodml23__RatioInitialToFinalWellboreStorage::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage const*p) +inline int soap_write_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage ? "prodml22:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage ? "prodml23:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml22__RatioInitialToFinalWellboreStorage const*p) +inline int soap_PUT_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml23__RatioInitialToFinalWellboreStorage const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage ? "prodml22:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage ? "prodml23:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml22__RatioInitialToFinalWellboreStorage const*p) +inline int soap_PATCH_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml23__RatioInitialToFinalWellboreStorage const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage ? "prodml22:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage ? "prodml23:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml22__RatioInitialToFinalWellboreStorage const*p) +inline int soap_POST_send_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml23__RatioInitialToFinalWellboreStorage const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage ? "prodml22:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioInitialToFinalWellboreStorage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage ? "prodml23:RatioInitialToFinalWellboreStorage" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_get_prodml22__RatioInitialToFinalWellboreStorage(struct soap*, prodml22__RatioInitialToFinalWellboreStorage *, const char*, const char*); +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC4 soap_get_prodml23__RatioInitialToFinalWellboreStorage(struct soap*, prodml23__RatioInitialToFinalWellboreStorage *, const char*, const char*); -inline int soap_read_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage *p) +inline int soap_read_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RatioInitialToFinalWellboreStorage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RatioInitialToFinalWellboreStorage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml22__RatioInitialToFinalWellboreStorage *p) +inline int soap_GET_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, const char *URL, prodml23__RatioInitialToFinalWellboreStorage *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RatioInitialToFinalWellboreStorage(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RatioInitialToFinalWellboreStorage(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml22__RatioInitialToFinalWellboreStorage *p) +inline int soap_POST_recv_prodml23__RatioInitialToFinalWellboreStorage(struct soap *soap, prodml23__RatioInitialToFinalWellboreStorage *p) { - if (gsoap_eml2_3::soap_read_prodml22__RatioInitialToFinalWellboreStorage(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RatioInitialToFinalWellboreStorage(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RatioDpSkinToTotalDrawdown(struct soap*, const char*, int, const prodml22__RatioDpSkinToTotalDrawdown *, const char*); -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml22__RatioDpSkinToTotalDrawdown(struct soap*, const char*, prodml22__RatioDpSkinToTotalDrawdown *, const char*); -SOAP_FMAC1 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RatioDpSkinToTotalDrawdown(struct soap*, const char*, int, const prodml23__RatioDpSkinToTotalDrawdown *, const char*); +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_in_prodml23__RatioDpSkinToTotalDrawdown(struct soap*, const char*, prodml23__RatioDpSkinToTotalDrawdown *, const char*); +SOAP_FMAC1 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RatioDpSkinToTotalDrawdown * soap_new_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, int n = -1) +inline prodml23__RatioDpSkinToTotalDrawdown * soap_new_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(soap, n, NULL, NULL, NULL); } -inline prodml22__RatioDpSkinToTotalDrawdown * soap_new_req_prodml22__RatioDpSkinToTotalDrawdown( +inline prodml23__RatioDpSkinToTotalDrawdown * soap_new_req_prodml23__RatioDpSkinToTotalDrawdown( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__RatioDpSkinToTotalDrawdown *_p = gsoap_eml2_3::soap_new_prodml22__RatioDpSkinToTotalDrawdown(soap); + prodml23__RatioDpSkinToTotalDrawdown *_p = gsoap_eml2_3::soap_new_prodml23__RatioDpSkinToTotalDrawdown(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation = Abbreviation; - _p->prodml22__RatioDpSkinToTotalDrawdown::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation = Abbreviation; + _p->prodml23__RatioDpSkinToTotalDrawdown::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__RatioDpSkinToTotalDrawdown * soap_new_set_prodml22__RatioDpSkinToTotalDrawdown( +inline prodml23__RatioDpSkinToTotalDrawdown * soap_new_set_prodml23__RatioDpSkinToTotalDrawdown( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -105374,104 +105374,104 @@ inline prodml22__RatioDpSkinToTotalDrawdown * soap_new_set_prodml22__RatioDpSkin std::string *Remark__1, const std::string& Uid__1) { - prodml22__RatioDpSkinToTotalDrawdown *_p = gsoap_eml2_3::soap_new_prodml22__RatioDpSkinToTotalDrawdown(soap); + prodml23__RatioDpSkinToTotalDrawdown *_p = gsoap_eml2_3::soap_new_prodml23__RatioDpSkinToTotalDrawdown(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RatioDpSkinToTotalDrawdown::Abbreviation = Abbreviation; - _p->prodml22__RatioDpSkinToTotalDrawdown::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RatioDpSkinToTotalDrawdown::Abbreviation = Abbreviation; + _p->prodml23__RatioDpSkinToTotalDrawdown::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown const*p) +inline int soap_write_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown ? "prodml22:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown ? "prodml23:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml22__RatioDpSkinToTotalDrawdown const*p) +inline int soap_PUT_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml23__RatioDpSkinToTotalDrawdown const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown ? "prodml22:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown ? "prodml23:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml22__RatioDpSkinToTotalDrawdown const*p) +inline int soap_PATCH_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml23__RatioDpSkinToTotalDrawdown const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown ? "prodml22:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown ? "prodml23:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml22__RatioDpSkinToTotalDrawdown const*p) +inline int soap_POST_send_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml23__RatioDpSkinToTotalDrawdown const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown ? "prodml22:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RatioDpSkinToTotalDrawdown", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown ? "prodml23:RatioDpSkinToTotalDrawdown" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_get_prodml22__RatioDpSkinToTotalDrawdown(struct soap*, prodml22__RatioDpSkinToTotalDrawdown *, const char*, const char*); +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC4 soap_get_prodml23__RatioDpSkinToTotalDrawdown(struct soap*, prodml23__RatioDpSkinToTotalDrawdown *, const char*, const char*); -inline int soap_read_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown *p) +inline int soap_read_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RatioDpSkinToTotalDrawdown(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RatioDpSkinToTotalDrawdown(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml22__RatioDpSkinToTotalDrawdown *p) +inline int soap_GET_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, const char *URL, prodml23__RatioDpSkinToTotalDrawdown *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RatioDpSkinToTotalDrawdown(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RatioDpSkinToTotalDrawdown(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml22__RatioDpSkinToTotalDrawdown *p) +inline int soap_POST_recv_prodml23__RatioDpSkinToTotalDrawdown(struct soap *soap, prodml23__RatioDpSkinToTotalDrawdown *p) { - if (gsoap_eml2_3::soap_read_prodml22__RatioDpSkinToTotalDrawdown(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RatioDpSkinToTotalDrawdown(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RateDependentSkinFactor(struct soap*, const char*, int, const prodml22__RateDependentSkinFactor *, const char*); -SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml22__RateDependentSkinFactor(struct soap*, const char*, prodml22__RateDependentSkinFactor *, const char*); -SOAP_FMAC1 prodml22__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodml22__RateDependentSkinFactor(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RateDependentSkinFactor(struct soap*, const char*, int, const prodml23__RateDependentSkinFactor *, const char*); +SOAP_FMAC3 prodml23__RateDependentSkinFactor * SOAP_FMAC4 soap_in_prodml23__RateDependentSkinFactor(struct soap*, const char*, prodml23__RateDependentSkinFactor *, const char*); +SOAP_FMAC1 prodml23__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodml23__RateDependentSkinFactor(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RateDependentSkinFactor * soap_new_prodml22__RateDependentSkinFactor(struct soap *soap, int n = -1) +inline prodml23__RateDependentSkinFactor * soap_new_prodml23__RateDependentSkinFactor(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RateDependentSkinFactor(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RateDependentSkinFactor(soap, n, NULL, NULL, NULL); } -inline prodml22__RateDependentSkinFactor * soap_new_req_prodml22__RateDependentSkinFactor( +inline prodml23__RateDependentSkinFactor * soap_new_req_prodml23__RateDependentSkinFactor( struct soap *soap, const std::string& Abbreviation, eml23__TimePerVolumeMeasureExt *InverseFlowrate, const std::string& Uid__1) { - prodml22__RateDependentSkinFactor *_p = gsoap_eml2_3::soap_new_prodml22__RateDependentSkinFactor(soap); + prodml23__RateDependentSkinFactor *_p = gsoap_eml2_3::soap_new_prodml23__RateDependentSkinFactor(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RateDependentSkinFactor::Abbreviation = Abbreviation; - _p->prodml22__RateDependentSkinFactor::InverseFlowrate = InverseFlowrate; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RateDependentSkinFactor::Abbreviation = Abbreviation; + _p->prodml23__RateDependentSkinFactor::InverseFlowrate = InverseFlowrate; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__RateDependentSkinFactor * soap_new_set_prodml22__RateDependentSkinFactor( +inline prodml23__RateDependentSkinFactor * soap_new_set_prodml23__RateDependentSkinFactor( struct soap *soap, const std::string& Abbreviation, eml23__TimePerVolumeMeasureExt *InverseFlowrate, @@ -105479,104 +105479,104 @@ inline prodml22__RateDependentSkinFactor * soap_new_set_prodml22__RateDependentS std::string *Remark__1, const std::string& Uid__1) { - prodml22__RateDependentSkinFactor *_p = gsoap_eml2_3::soap_new_prodml22__RateDependentSkinFactor(soap); + prodml23__RateDependentSkinFactor *_p = gsoap_eml2_3::soap_new_prodml23__RateDependentSkinFactor(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RateDependentSkinFactor::Abbreviation = Abbreviation; - _p->prodml22__RateDependentSkinFactor::InverseFlowrate = InverseFlowrate; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RateDependentSkinFactor::Abbreviation = Abbreviation; + _p->prodml23__RateDependentSkinFactor::InverseFlowrate = InverseFlowrate; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor const*p) +inline int soap_write_prodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor ? "prodml22:RateDependentSkinFactor" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor ? "prodml23:RateDependentSkinFactor" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml22__RateDependentSkinFactor const*p) +inline int soap_PUT_prodml23__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml23__RateDependentSkinFactor const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor ? "prodml22:RateDependentSkinFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor ? "prodml23:RateDependentSkinFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml22__RateDependentSkinFactor const*p) +inline int soap_PATCH_prodml23__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml23__RateDependentSkinFactor const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor ? "prodml22:RateDependentSkinFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor ? "prodml23:RateDependentSkinFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml22__RateDependentSkinFactor const*p) +inline int soap_POST_send_prodml23__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml23__RateDependentSkinFactor const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor ? "prodml22:RateDependentSkinFactor" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RateDependentSkinFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor ? "prodml23:RateDependentSkinFactor" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RateDependentSkinFactor * SOAP_FMAC4 soap_get_prodml22__RateDependentSkinFactor(struct soap*, prodml22__RateDependentSkinFactor *, const char*, const char*); +SOAP_FMAC3 prodml23__RateDependentSkinFactor * SOAP_FMAC4 soap_get_prodml23__RateDependentSkinFactor(struct soap*, prodml23__RateDependentSkinFactor *, const char*, const char*); -inline int soap_read_prodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor *p) +inline int soap_read_prodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RateDependentSkinFactor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RateDependentSkinFactor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml22__RateDependentSkinFactor *p) +inline int soap_GET_prodml23__RateDependentSkinFactor(struct soap *soap, const char *URL, prodml23__RateDependentSkinFactor *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RateDependentSkinFactor(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RateDependentSkinFactor(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RateDependentSkinFactor(struct soap *soap, prodml22__RateDependentSkinFactor *p) +inline int soap_POST_recv_prodml23__RateDependentSkinFactor(struct soap *soap, prodml23__RateDependentSkinFactor *p) { - if (gsoap_eml2_3::soap_read_prodml22__RateDependentSkinFactor(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RateDependentSkinFactor(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RadiusOfInvestigation(struct soap*, const char*, int, const prodml22__RadiusOfInvestigation *, const char*); -SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml22__RadiusOfInvestigation(struct soap*, const char*, prodml22__RadiusOfInvestigation *, const char*); -SOAP_FMAC1 prodml22__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml22__RadiusOfInvestigation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RadiusOfInvestigation(struct soap*, const char*, int, const prodml23__RadiusOfInvestigation *, const char*); +SOAP_FMAC3 prodml23__RadiusOfInvestigation * SOAP_FMAC4 soap_in_prodml23__RadiusOfInvestigation(struct soap*, const char*, prodml23__RadiusOfInvestigation *, const char*); +SOAP_FMAC1 prodml23__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml23__RadiusOfInvestigation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RadiusOfInvestigation * soap_new_prodml22__RadiusOfInvestigation(struct soap *soap, int n = -1) +inline prodml23__RadiusOfInvestigation * soap_new_prodml23__RadiusOfInvestigation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RadiusOfInvestigation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RadiusOfInvestigation(soap, n, NULL, NULL, NULL); } -inline prodml22__RadiusOfInvestigation * soap_new_req_prodml22__RadiusOfInvestigation( +inline prodml23__RadiusOfInvestigation * soap_new_req_prodml23__RadiusOfInvestigation( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__RadiusOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml22__RadiusOfInvestigation(soap); + prodml23__RadiusOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml23__RadiusOfInvestigation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RadiusOfInvestigation::Abbreviation = Abbreviation; - _p->prodml22__RadiusOfInvestigation::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RadiusOfInvestigation::Abbreviation = Abbreviation; + _p->prodml23__RadiusOfInvestigation::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__RadiusOfInvestigation * soap_new_set_prodml22__RadiusOfInvestigation( +inline prodml23__RadiusOfInvestigation * soap_new_set_prodml23__RadiusOfInvestigation( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -105584,104 +105584,104 @@ inline prodml22__RadiusOfInvestigation * soap_new_set_prodml22__RadiusOfInvestig std::string *Remark__1, const std::string& Uid__1) { - prodml22__RadiusOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml22__RadiusOfInvestigation(soap); + prodml23__RadiusOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml23__RadiusOfInvestigation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RadiusOfInvestigation::Abbreviation = Abbreviation; - _p->prodml22__RadiusOfInvestigation::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__RadiusOfInvestigation::Abbreviation = Abbreviation; + _p->prodml23__RadiusOfInvestigation::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation const*p) +inline int soap_write_prodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation ? "prodml22:RadiusOfInvestigation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation ? "prodml23:RadiusOfInvestigation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml22__RadiusOfInvestigation const*p) +inline int soap_PUT_prodml23__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml23__RadiusOfInvestigation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation ? "prodml22:RadiusOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation ? "prodml23:RadiusOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml22__RadiusOfInvestigation const*p) +inline int soap_PATCH_prodml23__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml23__RadiusOfInvestigation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation ? "prodml22:RadiusOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation ? "prodml23:RadiusOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml22__RadiusOfInvestigation const*p) +inline int soap_POST_send_prodml23__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml23__RadiusOfInvestigation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation ? "prodml22:RadiusOfInvestigation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadiusOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation ? "prodml23:RadiusOfInvestigation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RadiusOfInvestigation * SOAP_FMAC4 soap_get_prodml22__RadiusOfInvestigation(struct soap*, prodml22__RadiusOfInvestigation *, const char*, const char*); +SOAP_FMAC3 prodml23__RadiusOfInvestigation * SOAP_FMAC4 soap_get_prodml23__RadiusOfInvestigation(struct soap*, prodml23__RadiusOfInvestigation *, const char*, const char*); -inline int soap_read_prodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation *p) +inline int soap_read_prodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RadiusOfInvestigation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RadiusOfInvestigation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml22__RadiusOfInvestigation *p) +inline int soap_GET_prodml23__RadiusOfInvestigation(struct soap *soap, const char *URL, prodml23__RadiusOfInvestigation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RadiusOfInvestigation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RadiusOfInvestigation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RadiusOfInvestigation(struct soap *soap, prodml22__RadiusOfInvestigation *p) +inline int soap_POST_recv_prodml23__RadiusOfInvestigation(struct soap *soap, prodml23__RadiusOfInvestigation *p) { - if (gsoap_eml2_3::soap_read_prodml22__RadiusOfInvestigation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RadiusOfInvestigation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureDatumTVD(struct soap*, const char*, int, const prodml22__PressureDatumTVD *, const char*); -SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml22__PressureDatumTVD(struct soap*, const char*, prodml22__PressureDatumTVD *, const char*); -SOAP_FMAC1 prodml22__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml22__PressureDatumTVD(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PressureDatumTVD(struct soap*, const char*, int, const prodml23__PressureDatumTVD *, const char*); +SOAP_FMAC3 prodml23__PressureDatumTVD * SOAP_FMAC4 soap_in_prodml23__PressureDatumTVD(struct soap*, const char*, prodml23__PressureDatumTVD *, const char*); +SOAP_FMAC1 prodml23__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml23__PressureDatumTVD(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PressureDatumTVD * soap_new_prodml22__PressureDatumTVD(struct soap *soap, int n = -1) +inline prodml23__PressureDatumTVD * soap_new_prodml23__PressureDatumTVD(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PressureDatumTVD(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PressureDatumTVD(soap, n, NULL, NULL, NULL); } -inline prodml22__PressureDatumTVD * soap_new_req_prodml22__PressureDatumTVD( +inline prodml23__PressureDatumTVD * soap_new_req_prodml23__PressureDatumTVD( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__PressureDatumTVD *_p = gsoap_eml2_3::soap_new_prodml22__PressureDatumTVD(soap); + prodml23__PressureDatumTVD *_p = gsoap_eml2_3::soap_new_prodml23__PressureDatumTVD(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PressureDatumTVD::Abbreviation = Abbreviation; - _p->prodml22__PressureDatumTVD::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PressureDatumTVD::Abbreviation = Abbreviation; + _p->prodml23__PressureDatumTVD::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__PressureDatumTVD * soap_new_set_prodml22__PressureDatumTVD( +inline prodml23__PressureDatumTVD * soap_new_set_prodml23__PressureDatumTVD( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -105689,104 +105689,104 @@ inline prodml22__PressureDatumTVD * soap_new_set_prodml22__PressureDatumTVD( std::string *Remark__1, const std::string& Uid__1) { - prodml22__PressureDatumTVD *_p = gsoap_eml2_3::soap_new_prodml22__PressureDatumTVD(soap); + prodml23__PressureDatumTVD *_p = gsoap_eml2_3::soap_new_prodml23__PressureDatumTVD(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PressureDatumTVD::Abbreviation = Abbreviation; - _p->prodml22__PressureDatumTVD::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PressureDatumTVD::Abbreviation = Abbreviation; + _p->prodml23__PressureDatumTVD::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD const*p) +inline int soap_write_prodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD ? "prodml22:PressureDatumTVD" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD ? "prodml23:PressureDatumTVD" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PressureDatumTVD(struct soap *soap, const char *URL, prodml22__PressureDatumTVD const*p) +inline int soap_PUT_prodml23__PressureDatumTVD(struct soap *soap, const char *URL, prodml23__PressureDatumTVD const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD ? "prodml22:PressureDatumTVD" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD ? "prodml23:PressureDatumTVD" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PressureDatumTVD(struct soap *soap, const char *URL, prodml22__PressureDatumTVD const*p) +inline int soap_PATCH_prodml23__PressureDatumTVD(struct soap *soap, const char *URL, prodml23__PressureDatumTVD const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD ? "prodml22:PressureDatumTVD" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD ? "prodml23:PressureDatumTVD" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PressureDatumTVD(struct soap *soap, const char *URL, prodml22__PressureDatumTVD const*p) +inline int soap_POST_send_prodml23__PressureDatumTVD(struct soap *soap, const char *URL, prodml23__PressureDatumTVD const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD ? "prodml22:PressureDatumTVD" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureDatumTVD", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD ? "prodml23:PressureDatumTVD" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PressureDatumTVD * SOAP_FMAC4 soap_get_prodml22__PressureDatumTVD(struct soap*, prodml22__PressureDatumTVD *, const char*, const char*); +SOAP_FMAC3 prodml23__PressureDatumTVD * SOAP_FMAC4 soap_get_prodml23__PressureDatumTVD(struct soap*, prodml23__PressureDatumTVD *, const char*, const char*); -inline int soap_read_prodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD *p) +inline int soap_read_prodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PressureDatumTVD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PressureDatumTVD(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PressureDatumTVD(struct soap *soap, const char *URL, prodml22__PressureDatumTVD *p) +inline int soap_GET_prodml23__PressureDatumTVD(struct soap *soap, const char *URL, prodml23__PressureDatumTVD *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PressureDatumTVD(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PressureDatumTVD(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PressureDatumTVD(struct soap *soap, prodml22__PressureDatumTVD *p) +inline int soap_POST_recv_prodml23__PressureDatumTVD(struct soap *soap, prodml23__PressureDatumTVD *p) { - if (gsoap_eml2_3::soap_read_prodml22__PressureDatumTVD(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PressureDatumTVD(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Porosity(struct soap*, const char*, int, const prodml22__Porosity *, const char*); -SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_in_prodml22__Porosity(struct soap*, const char*, prodml22__Porosity *, const char*); -SOAP_FMAC1 prodml22__Porosity * SOAP_FMAC2 soap_instantiate_prodml22__Porosity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Porosity(struct soap*, const char*, int, const prodml23__Porosity *, const char*); +SOAP_FMAC3 prodml23__Porosity * SOAP_FMAC4 soap_in_prodml23__Porosity(struct soap*, const char*, prodml23__Porosity *, const char*); +SOAP_FMAC1 prodml23__Porosity * SOAP_FMAC2 soap_instantiate_prodml23__Porosity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Porosity * soap_new_prodml22__Porosity(struct soap *soap, int n = -1) +inline prodml23__Porosity * soap_new_prodml23__Porosity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Porosity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Porosity(soap, n, NULL, NULL, NULL); } -inline prodml22__Porosity * soap_new_req_prodml22__Porosity( +inline prodml23__Porosity * soap_new_req_prodml23__Porosity( struct soap *soap, const std::string& Abbreviation, eml23__VolumePerVolumeMeasure *VolumePerVolume, const std::string& Uid__1) { - prodml22__Porosity *_p = gsoap_eml2_3::soap_new_prodml22__Porosity(soap); + prodml23__Porosity *_p = gsoap_eml2_3::soap_new_prodml23__Porosity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Porosity::Abbreviation = Abbreviation; - _p->prodml22__Porosity::VolumePerVolume = VolumePerVolume; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__Porosity::Abbreviation = Abbreviation; + _p->prodml23__Porosity::VolumePerVolume = VolumePerVolume; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__Porosity * soap_new_set_prodml22__Porosity( +inline prodml23__Porosity * soap_new_set_prodml23__Porosity( struct soap *soap, const std::string& Abbreviation, eml23__VolumePerVolumeMeasure *VolumePerVolume, @@ -105794,104 +105794,104 @@ inline prodml22__Porosity * soap_new_set_prodml22__Porosity( std::string *Remark__1, const std::string& Uid__1) { - prodml22__Porosity *_p = gsoap_eml2_3::soap_new_prodml22__Porosity(soap); + prodml23__Porosity *_p = gsoap_eml2_3::soap_new_prodml23__Porosity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Porosity::Abbreviation = Abbreviation; - _p->prodml22__Porosity::VolumePerVolume = VolumePerVolume; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__Porosity::Abbreviation = Abbreviation; + _p->prodml23__Porosity::VolumePerVolume = VolumePerVolume; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__Porosity(struct soap *soap, prodml22__Porosity const*p) +inline int soap_write_prodml23__Porosity(struct soap *soap, prodml23__Porosity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity ? "prodml22:Porosity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity ? "prodml23:Porosity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Porosity(struct soap *soap, const char *URL, prodml22__Porosity const*p) +inline int soap_PUT_prodml23__Porosity(struct soap *soap, const char *URL, prodml23__Porosity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity ? "prodml22:Porosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity ? "prodml23:Porosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Porosity(struct soap *soap, const char *URL, prodml22__Porosity const*p) +inline int soap_PATCH_prodml23__Porosity(struct soap *soap, const char *URL, prodml23__Porosity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity ? "prodml22:Porosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity ? "prodml23:Porosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Porosity(struct soap *soap, const char *URL, prodml22__Porosity const*p) +inline int soap_POST_send_prodml23__Porosity(struct soap *soap, const char *URL, prodml23__Porosity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity ? "prodml22:Porosity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Porosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity ? "prodml23:Porosity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Porosity * SOAP_FMAC4 soap_get_prodml22__Porosity(struct soap*, prodml22__Porosity *, const char*, const char*); +SOAP_FMAC3 prodml23__Porosity * SOAP_FMAC4 soap_get_prodml23__Porosity(struct soap*, prodml23__Porosity *, const char*, const char*); -inline int soap_read_prodml22__Porosity(struct soap *soap, prodml22__Porosity *p) +inline int soap_read_prodml23__Porosity(struct soap *soap, prodml23__Porosity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Porosity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Porosity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Porosity(struct soap *soap, const char *URL, prodml22__Porosity *p) +inline int soap_GET_prodml23__Porosity(struct soap *soap, const char *URL, prodml23__Porosity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Porosity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Porosity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Porosity(struct soap *soap, prodml22__Porosity *p) +inline int soap_POST_recv_prodml23__Porosity(struct soap *soap, prodml23__Porosity *p) { - if (gsoap_eml2_3::soap_read_prodml22__Porosity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Porosity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PoreVolumeOfInvestigation(struct soap*, const char*, int, const prodml22__PoreVolumeOfInvestigation *, const char*); -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml22__PoreVolumeOfInvestigation(struct soap*, const char*, prodml22__PoreVolumeOfInvestigation *, const char*); -SOAP_FMAC1 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml22__PoreVolumeOfInvestigation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PoreVolumeOfInvestigation(struct soap*, const char*, int, const prodml23__PoreVolumeOfInvestigation *, const char*); +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_in_prodml23__PoreVolumeOfInvestigation(struct soap*, const char*, prodml23__PoreVolumeOfInvestigation *, const char*); +SOAP_FMAC1 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml23__PoreVolumeOfInvestigation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PoreVolumeOfInvestigation * soap_new_prodml22__PoreVolumeOfInvestigation(struct soap *soap, int n = -1) +inline prodml23__PoreVolumeOfInvestigation * soap_new_prodml23__PoreVolumeOfInvestigation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PoreVolumeOfInvestigation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PoreVolumeOfInvestigation(soap, n, NULL, NULL, NULL); } -inline prodml22__PoreVolumeOfInvestigation * soap_new_req_prodml22__PoreVolumeOfInvestigation( +inline prodml23__PoreVolumeOfInvestigation * soap_new_req_prodml23__PoreVolumeOfInvestigation( struct soap *soap, const std::string& Abbreviation, eml23__VolumeMeasure *Volume, const std::string& Uid__1) { - prodml22__PoreVolumeOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml22__PoreVolumeOfInvestigation(soap); + prodml23__PoreVolumeOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml23__PoreVolumeOfInvestigation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PoreVolumeOfInvestigation::Abbreviation = Abbreviation; - _p->prodml22__PoreVolumeOfInvestigation::Volume = Volume; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PoreVolumeOfInvestigation::Abbreviation = Abbreviation; + _p->prodml23__PoreVolumeOfInvestigation::Volume = Volume; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__PoreVolumeOfInvestigation * soap_new_set_prodml22__PoreVolumeOfInvestigation( +inline prodml23__PoreVolumeOfInvestigation * soap_new_set_prodml23__PoreVolumeOfInvestigation( struct soap *soap, const std::string& Abbreviation, eml23__VolumeMeasure *Volume, @@ -105899,104 +105899,104 @@ inline prodml22__PoreVolumeOfInvestigation * soap_new_set_prodml22__PoreVolumeOf std::string *Remark__1, const std::string& Uid__1) { - prodml22__PoreVolumeOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml22__PoreVolumeOfInvestigation(soap); + prodml23__PoreVolumeOfInvestigation *_p = gsoap_eml2_3::soap_new_prodml23__PoreVolumeOfInvestigation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PoreVolumeOfInvestigation::Abbreviation = Abbreviation; - _p->prodml22__PoreVolumeOfInvestigation::Volume = Volume; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PoreVolumeOfInvestigation::Abbreviation = Abbreviation; + _p->prodml23__PoreVolumeOfInvestigation::Volume = Volume; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation const*p) +inline int soap_write_prodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation ? "prodml22:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation ? "prodml23:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml22__PoreVolumeOfInvestigation const*p) +inline int soap_PUT_prodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml23__PoreVolumeOfInvestigation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation ? "prodml22:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation ? "prodml23:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml22__PoreVolumeOfInvestigation const*p) +inline int soap_PATCH_prodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml23__PoreVolumeOfInvestigation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation ? "prodml22:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation ? "prodml23:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml22__PoreVolumeOfInvestigation const*p) +inline int soap_POST_send_prodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml23__PoreVolumeOfInvestigation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation ? "prodml22:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeOfInvestigation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation ? "prodml23:PoreVolumeOfInvestigation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_get_prodml22__PoreVolumeOfInvestigation(struct soap*, prodml22__PoreVolumeOfInvestigation *, const char*, const char*); +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC4 soap_get_prodml23__PoreVolumeOfInvestigation(struct soap*, prodml23__PoreVolumeOfInvestigation *, const char*, const char*); -inline int soap_read_prodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation *p) +inline int soap_read_prodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PoreVolumeOfInvestigation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PoreVolumeOfInvestigation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml22__PoreVolumeOfInvestigation *p) +inline int soap_GET_prodml23__PoreVolumeOfInvestigation(struct soap *soap, const char *URL, prodml23__PoreVolumeOfInvestigation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PoreVolumeOfInvestigation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PoreVolumeOfInvestigation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PoreVolumeOfInvestigation(struct soap *soap, prodml22__PoreVolumeOfInvestigation *p) +inline int soap_POST_recv_prodml23__PoreVolumeOfInvestigation(struct soap *soap, prodml23__PoreVolumeOfInvestigation *p) { - if (gsoap_eml2_3::soap_read_prodml22__PoreVolumeOfInvestigation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PoreVolumeOfInvestigation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PoreVolumeMeasured(struct soap*, const char*, int, const prodml22__PoreVolumeMeasured *, const char*); -SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml22__PoreVolumeMeasured(struct soap*, const char*, prodml22__PoreVolumeMeasured *, const char*); -SOAP_FMAC1 prodml22__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml22__PoreVolumeMeasured(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PoreVolumeMeasured(struct soap*, const char*, int, const prodml23__PoreVolumeMeasured *, const char*); +SOAP_FMAC3 prodml23__PoreVolumeMeasured * SOAP_FMAC4 soap_in_prodml23__PoreVolumeMeasured(struct soap*, const char*, prodml23__PoreVolumeMeasured *, const char*); +SOAP_FMAC1 prodml23__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml23__PoreVolumeMeasured(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PoreVolumeMeasured * soap_new_prodml22__PoreVolumeMeasured(struct soap *soap, int n = -1) +inline prodml23__PoreVolumeMeasured * soap_new_prodml23__PoreVolumeMeasured(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PoreVolumeMeasured(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PoreVolumeMeasured(soap, n, NULL, NULL, NULL); } -inline prodml22__PoreVolumeMeasured * soap_new_req_prodml22__PoreVolumeMeasured( +inline prodml23__PoreVolumeMeasured * soap_new_req_prodml23__PoreVolumeMeasured( struct soap *soap, const std::string& Abbreviation, eml23__VolumeMeasure *Volume, const std::string& Uid__1) { - prodml22__PoreVolumeMeasured *_p = gsoap_eml2_3::soap_new_prodml22__PoreVolumeMeasured(soap); + prodml23__PoreVolumeMeasured *_p = gsoap_eml2_3::soap_new_prodml23__PoreVolumeMeasured(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PoreVolumeMeasured::Abbreviation = Abbreviation; - _p->prodml22__PoreVolumeMeasured::Volume = Volume; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PoreVolumeMeasured::Abbreviation = Abbreviation; + _p->prodml23__PoreVolumeMeasured::Volume = Volume; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__PoreVolumeMeasured * soap_new_set_prodml22__PoreVolumeMeasured( +inline prodml23__PoreVolumeMeasured * soap_new_set_prodml23__PoreVolumeMeasured( struct soap *soap, const std::string& Abbreviation, eml23__VolumeMeasure *Volume, @@ -106004,104 +106004,104 @@ inline prodml22__PoreVolumeMeasured * soap_new_set_prodml22__PoreVolumeMeasured( std::string *Remark__1, const std::string& Uid__1) { - prodml22__PoreVolumeMeasured *_p = gsoap_eml2_3::soap_new_prodml22__PoreVolumeMeasured(soap); + prodml23__PoreVolumeMeasured *_p = gsoap_eml2_3::soap_new_prodml23__PoreVolumeMeasured(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PoreVolumeMeasured::Abbreviation = Abbreviation; - _p->prodml22__PoreVolumeMeasured::Volume = Volume; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PoreVolumeMeasured::Abbreviation = Abbreviation; + _p->prodml23__PoreVolumeMeasured::Volume = Volume; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured const*p) +inline int soap_write_prodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured ? "prodml22:PoreVolumeMeasured" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured ? "prodml23:PoreVolumeMeasured" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml22__PoreVolumeMeasured const*p) +inline int soap_PUT_prodml23__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml23__PoreVolumeMeasured const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured ? "prodml22:PoreVolumeMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured ? "prodml23:PoreVolumeMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml22__PoreVolumeMeasured const*p) +inline int soap_PATCH_prodml23__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml23__PoreVolumeMeasured const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured ? "prodml22:PoreVolumeMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured ? "prodml23:PoreVolumeMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml22__PoreVolumeMeasured const*p) +inline int soap_POST_send_prodml23__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml23__PoreVolumeMeasured const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured ? "prodml22:PoreVolumeMeasured" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PoreVolumeMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured ? "prodml23:PoreVolumeMeasured" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PoreVolumeMeasured * SOAP_FMAC4 soap_get_prodml22__PoreVolumeMeasured(struct soap*, prodml22__PoreVolumeMeasured *, const char*, const char*); +SOAP_FMAC3 prodml23__PoreVolumeMeasured * SOAP_FMAC4 soap_get_prodml23__PoreVolumeMeasured(struct soap*, prodml23__PoreVolumeMeasured *, const char*, const char*); -inline int soap_read_prodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured *p) +inline int soap_read_prodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PoreVolumeMeasured(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PoreVolumeMeasured(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml22__PoreVolumeMeasured *p) +inline int soap_GET_prodml23__PoreVolumeMeasured(struct soap *soap, const char *URL, prodml23__PoreVolumeMeasured *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PoreVolumeMeasured(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PoreVolumeMeasured(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PoreVolumeMeasured(struct soap *soap, prodml22__PoreVolumeMeasured *p) +inline int soap_POST_recv_prodml23__PoreVolumeMeasured(struct soap *soap, prodml23__PoreVolumeMeasured *p) { - if (gsoap_eml2_3::soap_read_prodml22__PoreVolumeMeasured(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PoreVolumeMeasured(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PermeabilityThicknessProduct(struct soap*, const char*, int, const prodml22__PermeabilityThicknessProduct *, const char*); -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml22__PermeabilityThicknessProduct(struct soap*, const char*, prodml22__PermeabilityThicknessProduct *, const char*); -SOAP_FMAC1 prodml22__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml22__PermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PermeabilityThicknessProduct(struct soap*, const char*, int, const prodml23__PermeabilityThicknessProduct *, const char*); +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct * SOAP_FMAC4 soap_in_prodml23__PermeabilityThicknessProduct(struct soap*, const char*, prodml23__PermeabilityThicknessProduct *, const char*); +SOAP_FMAC1 prodml23__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml23__PermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PermeabilityThicknessProduct * soap_new_prodml22__PermeabilityThicknessProduct(struct soap *soap, int n = -1) +inline prodml23__PermeabilityThicknessProduct * soap_new_prodml23__PermeabilityThicknessProduct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PermeabilityThicknessProduct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PermeabilityThicknessProduct(soap, n, NULL, NULL, NULL); } -inline prodml22__PermeabilityThicknessProduct * soap_new_req_prodml22__PermeabilityThicknessProduct( +inline prodml23__PermeabilityThicknessProduct * soap_new_req_prodml23__PermeabilityThicknessProduct( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityLengthMeasureExt *PermeabilityLength, const std::string& Uid__1) { - prodml22__PermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml22__PermeabilityThicknessProduct(soap); + prodml23__PermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml23__PermeabilityThicknessProduct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PermeabilityThicknessProduct::Abbreviation = Abbreviation; - _p->prodml22__PermeabilityThicknessProduct::PermeabilityLength = PermeabilityLength; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PermeabilityThicknessProduct::Abbreviation = Abbreviation; + _p->prodml23__PermeabilityThicknessProduct::PermeabilityLength = PermeabilityLength; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__PermeabilityThicknessProduct * soap_new_set_prodml22__PermeabilityThicknessProduct( +inline prodml23__PermeabilityThicknessProduct * soap_new_set_prodml23__PermeabilityThicknessProduct( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityLengthMeasureExt *PermeabilityLength, @@ -106109,104 +106109,104 @@ inline prodml22__PermeabilityThicknessProduct * soap_new_set_prodml22__Permeabil std::string *Remark__1, const std::string& Uid__1) { - prodml22__PermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml22__PermeabilityThicknessProduct(soap); + prodml23__PermeabilityThicknessProduct *_p = gsoap_eml2_3::soap_new_prodml23__PermeabilityThicknessProduct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PermeabilityThicknessProduct::Abbreviation = Abbreviation; - _p->prodml22__PermeabilityThicknessProduct::PermeabilityLength = PermeabilityLength; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PermeabilityThicknessProduct::Abbreviation = Abbreviation; + _p->prodml23__PermeabilityThicknessProduct::PermeabilityLength = PermeabilityLength; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct const*p) +inline int soap_write_prodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct ? "prodml22:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct ? "prodml23:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__PermeabilityThicknessProduct const*p) +inline int soap_PUT_prodml23__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__PermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct ? "prodml22:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct ? "prodml23:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__PermeabilityThicknessProduct const*p) +inline int soap_PATCH_prodml23__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__PermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct ? "prodml22:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct ? "prodml23:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__PermeabilityThicknessProduct const*p) +inline int soap_POST_send_prodml23__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__PermeabilityThicknessProduct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct ? "prodml22:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PermeabilityThicknessProduct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct ? "prodml23:PermeabilityThicknessProduct" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml22__PermeabilityThicknessProduct(struct soap*, prodml22__PermeabilityThicknessProduct *, const char*, const char*); +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct * SOAP_FMAC4 soap_get_prodml23__PermeabilityThicknessProduct(struct soap*, prodml23__PermeabilityThicknessProduct *, const char*, const char*); -inline int soap_read_prodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct *p) +inline int soap_read_prodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PermeabilityThicknessProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PermeabilityThicknessProduct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml22__PermeabilityThicknessProduct *p) +inline int soap_GET_prodml23__PermeabilityThicknessProduct(struct soap *soap, const char *URL, prodml23__PermeabilityThicknessProduct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PermeabilityThicknessProduct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PermeabilityThicknessProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PermeabilityThicknessProduct(struct soap *soap, prodml22__PermeabilityThicknessProduct *p) +inline int soap_POST_recv_prodml23__PermeabilityThicknessProduct(struct soap *soap, prodml23__PermeabilityThicknessProduct *p) { - if (gsoap_eml2_3::soap_read_prodml22__PermeabilityThicknessProduct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PermeabilityThicknessProduct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PerforatedLength(struct soap*, const char*, int, const prodml22__PerforatedLength *, const char*); -SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_in_prodml22__PerforatedLength(struct soap*, const char*, prodml22__PerforatedLength *, const char*); -SOAP_FMAC1 prodml22__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml22__PerforatedLength(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PerforatedLength(struct soap*, const char*, int, const prodml23__PerforatedLength *, const char*); +SOAP_FMAC3 prodml23__PerforatedLength * SOAP_FMAC4 soap_in_prodml23__PerforatedLength(struct soap*, const char*, prodml23__PerforatedLength *, const char*); +SOAP_FMAC1 prodml23__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml23__PerforatedLength(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PerforatedLength * soap_new_prodml22__PerforatedLength(struct soap *soap, int n = -1) +inline prodml23__PerforatedLength * soap_new_prodml23__PerforatedLength(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PerforatedLength(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PerforatedLength(soap, n, NULL, NULL, NULL); } -inline prodml22__PerforatedLength * soap_new_req_prodml22__PerforatedLength( +inline prodml23__PerforatedLength * soap_new_req_prodml23__PerforatedLength( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__PerforatedLength *_p = gsoap_eml2_3::soap_new_prodml22__PerforatedLength(soap); + prodml23__PerforatedLength *_p = gsoap_eml2_3::soap_new_prodml23__PerforatedLength(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PerforatedLength::Abbreviation = Abbreviation; - _p->prodml22__PerforatedLength::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PerforatedLength::Abbreviation = Abbreviation; + _p->prodml23__PerforatedLength::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__PerforatedLength * soap_new_set_prodml22__PerforatedLength( +inline prodml23__PerforatedLength * soap_new_set_prodml23__PerforatedLength( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -106214,104 +106214,104 @@ inline prodml22__PerforatedLength * soap_new_set_prodml22__PerforatedLength( std::string *Remark__1, const std::string& Uid__1) { - prodml22__PerforatedLength *_p = gsoap_eml2_3::soap_new_prodml22__PerforatedLength(soap); + prodml23__PerforatedLength *_p = gsoap_eml2_3::soap_new_prodml23__PerforatedLength(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PerforatedLength::Abbreviation = Abbreviation; - _p->prodml22__PerforatedLength::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__PerforatedLength::Abbreviation = Abbreviation; + _p->prodml23__PerforatedLength::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength const*p) +inline int soap_write_prodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength ? "prodml22:PerforatedLength" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength ? "prodml23:PerforatedLength" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PerforatedLength(struct soap *soap, const char *URL, prodml22__PerforatedLength const*p) +inline int soap_PUT_prodml23__PerforatedLength(struct soap *soap, const char *URL, prodml23__PerforatedLength const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength ? "prodml22:PerforatedLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength ? "prodml23:PerforatedLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PerforatedLength(struct soap *soap, const char *URL, prodml22__PerforatedLength const*p) +inline int soap_PATCH_prodml23__PerforatedLength(struct soap *soap, const char *URL, prodml23__PerforatedLength const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength ? "prodml22:PerforatedLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength ? "prodml23:PerforatedLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PerforatedLength(struct soap *soap, const char *URL, prodml22__PerforatedLength const*p) +inline int soap_POST_send_prodml23__PerforatedLength(struct soap *soap, const char *URL, prodml23__PerforatedLength const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength ? "prodml22:PerforatedLength" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PerforatedLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength ? "prodml23:PerforatedLength" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PerforatedLength * SOAP_FMAC4 soap_get_prodml22__PerforatedLength(struct soap*, prodml22__PerforatedLength *, const char*, const char*); +SOAP_FMAC3 prodml23__PerforatedLength * SOAP_FMAC4 soap_get_prodml23__PerforatedLength(struct soap*, prodml23__PerforatedLength *, const char*, const char*); -inline int soap_read_prodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength *p) +inline int soap_read_prodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PerforatedLength(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PerforatedLength(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PerforatedLength(struct soap *soap, const char *URL, prodml22__PerforatedLength *p) +inline int soap_GET_prodml23__PerforatedLength(struct soap *soap, const char *URL, prodml23__PerforatedLength *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PerforatedLength(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PerforatedLength(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PerforatedLength(struct soap *soap, prodml22__PerforatedLength *p) +inline int soap_POST_recv_prodml23__PerforatedLength(struct soap *soap, prodml23__PerforatedLength *p) { - if (gsoap_eml2_3::soap_read_prodml22__PerforatedLength(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PerforatedLength(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationWellTrajectory(struct soap*, const char*, int, const prodml22__OrientationWellTrajectory *, const char*); -SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml22__OrientationWellTrajectory(struct soap*, const char*, prodml22__OrientationWellTrajectory *, const char*); -SOAP_FMAC1 prodml22__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_prodml22__OrientationWellTrajectory(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationWellTrajectory(struct soap*, const char*, int, const prodml23__OrientationWellTrajectory *, const char*); +SOAP_FMAC3 prodml23__OrientationWellTrajectory * SOAP_FMAC4 soap_in_prodml23__OrientationWellTrajectory(struct soap*, const char*, prodml23__OrientationWellTrajectory *, const char*); +SOAP_FMAC1 prodml23__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_prodml23__OrientationWellTrajectory(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OrientationWellTrajectory * soap_new_prodml22__OrientationWellTrajectory(struct soap *soap, int n = -1) +inline prodml23__OrientationWellTrajectory * soap_new_prodml23__OrientationWellTrajectory(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OrientationWellTrajectory(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OrientationWellTrajectory(soap, n, NULL, NULL, NULL); } -inline prodml22__OrientationWellTrajectory * soap_new_req_prodml22__OrientationWellTrajectory( +inline prodml23__OrientationWellTrajectory * soap_new_req_prodml23__OrientationWellTrajectory( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__OrientationWellTrajectory *_p = gsoap_eml2_3::soap_new_prodml22__OrientationWellTrajectory(soap); + prodml23__OrientationWellTrajectory *_p = gsoap_eml2_3::soap_new_prodml23__OrientationWellTrajectory(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationWellTrajectory::Abbreviation = Abbreviation; - _p->prodml22__OrientationWellTrajectory::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationWellTrajectory::Abbreviation = Abbreviation; + _p->prodml23__OrientationWellTrajectory::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__OrientationWellTrajectory * soap_new_set_prodml22__OrientationWellTrajectory( +inline prodml23__OrientationWellTrajectory * soap_new_set_prodml23__OrientationWellTrajectory( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -106319,104 +106319,104 @@ inline prodml22__OrientationWellTrajectory * soap_new_set_prodml22__OrientationW std::string *Remark__1, const std::string& Uid__1) { - prodml22__OrientationWellTrajectory *_p = gsoap_eml2_3::soap_new_prodml22__OrientationWellTrajectory(soap); + prodml23__OrientationWellTrajectory *_p = gsoap_eml2_3::soap_new_prodml23__OrientationWellTrajectory(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationWellTrajectory::Abbreviation = Abbreviation; - _p->prodml22__OrientationWellTrajectory::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationWellTrajectory::Abbreviation = Abbreviation; + _p->prodml23__OrientationWellTrajectory::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory const*p) +inline int soap_write_prodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory ? "prodml22:OrientationWellTrajectory" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory ? "prodml23:OrientationWellTrajectory" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml22__OrientationWellTrajectory const*p) +inline int soap_PUT_prodml23__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml23__OrientationWellTrajectory const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory ? "prodml22:OrientationWellTrajectory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory ? "prodml23:OrientationWellTrajectory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml22__OrientationWellTrajectory const*p) +inline int soap_PATCH_prodml23__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml23__OrientationWellTrajectory const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory ? "prodml22:OrientationWellTrajectory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory ? "prodml23:OrientationWellTrajectory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml22__OrientationWellTrajectory const*p) +inline int soap_POST_send_prodml23__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml23__OrientationWellTrajectory const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory ? "prodml22:OrientationWellTrajectory" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationWellTrajectory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory ? "prodml23:OrientationWellTrajectory" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OrientationWellTrajectory * SOAP_FMAC4 soap_get_prodml22__OrientationWellTrajectory(struct soap*, prodml22__OrientationWellTrajectory *, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationWellTrajectory * SOAP_FMAC4 soap_get_prodml23__OrientationWellTrajectory(struct soap*, prodml23__OrientationWellTrajectory *, const char*, const char*); -inline int soap_read_prodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory *p) +inline int soap_read_prodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrientationWellTrajectory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrientationWellTrajectory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml22__OrientationWellTrajectory *p) +inline int soap_GET_prodml23__OrientationWellTrajectory(struct soap *soap, const char *URL, prodml23__OrientationWellTrajectory *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrientationWellTrajectory(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrientationWellTrajectory(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrientationWellTrajectory(struct soap *soap, prodml22__OrientationWellTrajectory *p) +inline int soap_POST_recv_prodml23__OrientationWellTrajectory(struct soap *soap, prodml23__OrientationWellTrajectory *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrientationWellTrajectory(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrientationWellTrajectory(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfNormalToBoundary1(struct soap*, const char*, int, const prodml22__OrientationOfNormalToBoundary1 *, const char*); -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml22__OrientationOfNormalToBoundary1(struct soap*, const char*, prodml22__OrientationOfNormalToBoundary1 *, const char*); -SOAP_FMAC1 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfNormalToBoundary1(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfNormalToBoundary1(struct soap*, const char*, int, const prodml23__OrientationOfNormalToBoundary1 *, const char*); +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_in_prodml23__OrientationOfNormalToBoundary1(struct soap*, const char*, prodml23__OrientationOfNormalToBoundary1 *, const char*); +SOAP_FMAC1 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfNormalToBoundary1(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OrientationOfNormalToBoundary1 * soap_new_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, int n = -1) +inline prodml23__OrientationOfNormalToBoundary1 * soap_new_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OrientationOfNormalToBoundary1(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OrientationOfNormalToBoundary1(soap, n, NULL, NULL, NULL); } -inline prodml22__OrientationOfNormalToBoundary1 * soap_new_req_prodml22__OrientationOfNormalToBoundary1( +inline prodml23__OrientationOfNormalToBoundary1 * soap_new_req_prodml23__OrientationOfNormalToBoundary1( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__OrientationOfNormalToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfNormalToBoundary1(soap); + prodml23__OrientationOfNormalToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfNormalToBoundary1(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfNormalToBoundary1::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfNormalToBoundary1::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfNormalToBoundary1::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfNormalToBoundary1::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__OrientationOfNormalToBoundary1 * soap_new_set_prodml22__OrientationOfNormalToBoundary1( +inline prodml23__OrientationOfNormalToBoundary1 * soap_new_set_prodml23__OrientationOfNormalToBoundary1( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -106424,104 +106424,104 @@ inline prodml22__OrientationOfNormalToBoundary1 * soap_new_set_prodml22__Orienta std::string *Remark__1, const std::string& Uid__1) { - prodml22__OrientationOfNormalToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfNormalToBoundary1(soap); + prodml23__OrientationOfNormalToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfNormalToBoundary1(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfNormalToBoundary1::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfNormalToBoundary1::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfNormalToBoundary1::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfNormalToBoundary1::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 const*p) +inline int soap_write_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 ? "prodml22:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 ? "prodml23:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml22__OrientationOfNormalToBoundary1 const*p) +inline int soap_PUT_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml23__OrientationOfNormalToBoundary1 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 ? "prodml22:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 ? "prodml23:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml22__OrientationOfNormalToBoundary1 const*p) +inline int soap_PATCH_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml23__OrientationOfNormalToBoundary1 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 ? "prodml22:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 ? "prodml23:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml22__OrientationOfNormalToBoundary1 const*p) +inline int soap_POST_send_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml23__OrientationOfNormalToBoundary1 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 ? "prodml22:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfNormalToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 ? "prodml23:OrientationOfNormalToBoundary1" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_get_prodml22__OrientationOfNormalToBoundary1(struct soap*, prodml22__OrientationOfNormalToBoundary1 *, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC4 soap_get_prodml23__OrientationOfNormalToBoundary1(struct soap*, prodml23__OrientationOfNormalToBoundary1 *, const char*, const char*); -inline int soap_read_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 *p) +inline int soap_read_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrientationOfNormalToBoundary1(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrientationOfNormalToBoundary1(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml22__OrientationOfNormalToBoundary1 *p) +inline int soap_GET_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, const char *URL, prodml23__OrientationOfNormalToBoundary1 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrientationOfNormalToBoundary1(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrientationOfNormalToBoundary1(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrientationOfNormalToBoundary1(struct soap *soap, prodml22__OrientationOfNormalToBoundary1 *p) +inline int soap_POST_recv_prodml23__OrientationOfNormalToBoundary1(struct soap *soap, prodml23__OrientationOfNormalToBoundary1 *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrientationOfNormalToBoundary1(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrientationOfNormalToBoundary1(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfLinearFront(struct soap*, const char*, int, const prodml22__OrientationOfLinearFront *, const char*); -SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml22__OrientationOfLinearFront(struct soap*, const char*, prodml22__OrientationOfLinearFront *, const char*); -SOAP_FMAC1 prodml22__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfLinearFront(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfLinearFront(struct soap*, const char*, int, const prodml23__OrientationOfLinearFront *, const char*); +SOAP_FMAC3 prodml23__OrientationOfLinearFront * SOAP_FMAC4 soap_in_prodml23__OrientationOfLinearFront(struct soap*, const char*, prodml23__OrientationOfLinearFront *, const char*); +SOAP_FMAC1 prodml23__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfLinearFront(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OrientationOfLinearFront * soap_new_prodml22__OrientationOfLinearFront(struct soap *soap, int n = -1) +inline prodml23__OrientationOfLinearFront * soap_new_prodml23__OrientationOfLinearFront(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OrientationOfLinearFront(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OrientationOfLinearFront(soap, n, NULL, NULL, NULL); } -inline prodml22__OrientationOfLinearFront * soap_new_req_prodml22__OrientationOfLinearFront( +inline prodml23__OrientationOfLinearFront * soap_new_req_prodml23__OrientationOfLinearFront( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__OrientationOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfLinearFront(soap); + prodml23__OrientationOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfLinearFront(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfLinearFront::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfLinearFront::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfLinearFront::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfLinearFront::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__OrientationOfLinearFront * soap_new_set_prodml22__OrientationOfLinearFront( +inline prodml23__OrientationOfLinearFront * soap_new_set_prodml23__OrientationOfLinearFront( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -106529,104 +106529,104 @@ inline prodml22__OrientationOfLinearFront * soap_new_set_prodml22__OrientationOf std::string *Remark__1, const std::string& Uid__1) { - prodml22__OrientationOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfLinearFront(soap); + prodml23__OrientationOfLinearFront *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfLinearFront(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfLinearFront::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfLinearFront::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfLinearFront::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfLinearFront::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront const*p) +inline int soap_write_prodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront ? "prodml22:OrientationOfLinearFront" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront ? "prodml23:OrientationOfLinearFront" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml22__OrientationOfLinearFront const*p) +inline int soap_PUT_prodml23__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml23__OrientationOfLinearFront const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront ? "prodml22:OrientationOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront ? "prodml23:OrientationOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml22__OrientationOfLinearFront const*p) +inline int soap_PATCH_prodml23__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml23__OrientationOfLinearFront const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront ? "prodml22:OrientationOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront ? "prodml23:OrientationOfLinearFront" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml22__OrientationOfLinearFront const*p) +inline int soap_POST_send_prodml23__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml23__OrientationOfLinearFront const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront ? "prodml22:OrientationOfLinearFront" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfLinearFront", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront ? "prodml23:OrientationOfLinearFront" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OrientationOfLinearFront * SOAP_FMAC4 soap_get_prodml22__OrientationOfLinearFront(struct soap*, prodml22__OrientationOfLinearFront *, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfLinearFront * SOAP_FMAC4 soap_get_prodml23__OrientationOfLinearFront(struct soap*, prodml23__OrientationOfLinearFront *, const char*, const char*); -inline int soap_read_prodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront *p) +inline int soap_read_prodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrientationOfLinearFront(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrientationOfLinearFront(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml22__OrientationOfLinearFront *p) +inline int soap_GET_prodml23__OrientationOfLinearFront(struct soap *soap, const char *URL, prodml23__OrientationOfLinearFront *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrientationOfLinearFront(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrientationOfLinearFront(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrientationOfLinearFront(struct soap *soap, prodml22__OrientationOfLinearFront *p) +inline int soap_POST_recv_prodml23__OrientationOfLinearFront(struct soap *soap, prodml23__OrientationOfLinearFront *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrientationOfLinearFront(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrientationOfLinearFront(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfFracturePlane(struct soap*, const char*, int, const prodml22__OrientationOfFracturePlane *, const char*); -SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml22__OrientationOfFracturePlane(struct soap*, const char*, prodml22__OrientationOfFracturePlane *, const char*); -SOAP_FMAC1 prodml22__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfFracturePlane(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfFracturePlane(struct soap*, const char*, int, const prodml23__OrientationOfFracturePlane *, const char*); +SOAP_FMAC3 prodml23__OrientationOfFracturePlane * SOAP_FMAC4 soap_in_prodml23__OrientationOfFracturePlane(struct soap*, const char*, prodml23__OrientationOfFracturePlane *, const char*); +SOAP_FMAC1 prodml23__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfFracturePlane(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OrientationOfFracturePlane * soap_new_prodml22__OrientationOfFracturePlane(struct soap *soap, int n = -1) +inline prodml23__OrientationOfFracturePlane * soap_new_prodml23__OrientationOfFracturePlane(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OrientationOfFracturePlane(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OrientationOfFracturePlane(soap, n, NULL, NULL, NULL); } -inline prodml22__OrientationOfFracturePlane * soap_new_req_prodml22__OrientationOfFracturePlane( +inline prodml23__OrientationOfFracturePlane * soap_new_req_prodml23__OrientationOfFracturePlane( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__OrientationOfFracturePlane *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfFracturePlane(soap); + prodml23__OrientationOfFracturePlane *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfFracturePlane(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfFracturePlane::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfFracturePlane::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfFracturePlane::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfFracturePlane::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__OrientationOfFracturePlane * soap_new_set_prodml22__OrientationOfFracturePlane( +inline prodml23__OrientationOfFracturePlane * soap_new_set_prodml23__OrientationOfFracturePlane( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -106634,104 +106634,104 @@ inline prodml22__OrientationOfFracturePlane * soap_new_set_prodml22__Orientation std::string *Remark__1, const std::string& Uid__1) { - prodml22__OrientationOfFracturePlane *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfFracturePlane(soap); + prodml23__OrientationOfFracturePlane *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfFracturePlane(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfFracturePlane::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfFracturePlane::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfFracturePlane::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfFracturePlane::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane const*p) +inline int soap_write_prodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane ? "prodml22:OrientationOfFracturePlane" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane ? "prodml23:OrientationOfFracturePlane" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml22__OrientationOfFracturePlane const*p) +inline int soap_PUT_prodml23__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml23__OrientationOfFracturePlane const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane ? "prodml22:OrientationOfFracturePlane" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane ? "prodml23:OrientationOfFracturePlane" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml22__OrientationOfFracturePlane const*p) +inline int soap_PATCH_prodml23__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml23__OrientationOfFracturePlane const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane ? "prodml22:OrientationOfFracturePlane" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane ? "prodml23:OrientationOfFracturePlane" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml22__OrientationOfFracturePlane const*p) +inline int soap_POST_send_prodml23__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml23__OrientationOfFracturePlane const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane ? "prodml22:OrientationOfFracturePlane" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfFracturePlane", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane ? "prodml23:OrientationOfFracturePlane" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OrientationOfFracturePlane * SOAP_FMAC4 soap_get_prodml22__OrientationOfFracturePlane(struct soap*, prodml22__OrientationOfFracturePlane *, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfFracturePlane * SOAP_FMAC4 soap_get_prodml23__OrientationOfFracturePlane(struct soap*, prodml23__OrientationOfFracturePlane *, const char*, const char*); -inline int soap_read_prodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane *p) +inline int soap_read_prodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrientationOfFracturePlane(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrientationOfFracturePlane(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml22__OrientationOfFracturePlane *p) +inline int soap_GET_prodml23__OrientationOfFracturePlane(struct soap *soap, const char *URL, prodml23__OrientationOfFracturePlane *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrientationOfFracturePlane(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrientationOfFracturePlane(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrientationOfFracturePlane(struct soap *soap, prodml22__OrientationOfFracturePlane *p) +inline int soap_POST_recv_prodml23__OrientationOfFracturePlane(struct soap *soap, prodml23__OrientationOfFracturePlane *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrientationOfFracturePlane(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrientationOfFracturePlane(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OrientationOfAnisotropyXDirection(struct soap*, const char*, int, const prodml22__OrientationOfAnisotropyXDirection *, const char*); -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prodml22__OrientationOfAnisotropyXDirection(struct soap*, const char*, prodml22__OrientationOfAnisotropyXDirection *, const char*); -SOAP_FMAC1 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OrientationOfAnisotropyXDirection(struct soap*, const char*, int, const prodml23__OrientationOfAnisotropyXDirection *, const char*); +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_in_prodml23__OrientationOfAnisotropyXDirection(struct soap*, const char*, prodml23__OrientationOfAnisotropyXDirection *, const char*); +SOAP_FMAC1 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OrientationOfAnisotropyXDirection * soap_new_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, int n = -1) +inline prodml23__OrientationOfAnisotropyXDirection * soap_new_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(soap, n, NULL, NULL, NULL); } -inline prodml22__OrientationOfAnisotropyXDirection * soap_new_req_prodml22__OrientationOfAnisotropyXDirection( +inline prodml23__OrientationOfAnisotropyXDirection * soap_new_req_prodml23__OrientationOfAnisotropyXDirection( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__OrientationOfAnisotropyXDirection *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfAnisotropyXDirection(soap); + prodml23__OrientationOfAnisotropyXDirection *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfAnisotropyXDirection(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfAnisotropyXDirection::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfAnisotropyXDirection::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfAnisotropyXDirection::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfAnisotropyXDirection::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__OrientationOfAnisotropyXDirection * soap_new_set_prodml22__OrientationOfAnisotropyXDirection( +inline prodml23__OrientationOfAnisotropyXDirection * soap_new_set_prodml23__OrientationOfAnisotropyXDirection( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -106739,104 +106739,104 @@ inline prodml22__OrientationOfAnisotropyXDirection * soap_new_set_prodml22__Orie std::string *Remark__1, const std::string& Uid__1) { - prodml22__OrientationOfAnisotropyXDirection *_p = gsoap_eml2_3::soap_new_prodml22__OrientationOfAnisotropyXDirection(soap); + prodml23__OrientationOfAnisotropyXDirection *_p = gsoap_eml2_3::soap_new_prodml23__OrientationOfAnisotropyXDirection(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OrientationOfAnisotropyXDirection::Abbreviation = Abbreviation; - _p->prodml22__OrientationOfAnisotropyXDirection::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__OrientationOfAnisotropyXDirection::Abbreviation = Abbreviation; + _p->prodml23__OrientationOfAnisotropyXDirection::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection const*p) +inline int soap_write_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection ? "prodml22:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection ? "prodml23:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml22__OrientationOfAnisotropyXDirection const*p) +inline int soap_PUT_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml23__OrientationOfAnisotropyXDirection const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection ? "prodml22:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection ? "prodml23:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml22__OrientationOfAnisotropyXDirection const*p) +inline int soap_PATCH_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml23__OrientationOfAnisotropyXDirection const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection ? "prodml22:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection ? "prodml23:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml22__OrientationOfAnisotropyXDirection const*p) +inline int soap_POST_send_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml23__OrientationOfAnisotropyXDirection const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection ? "prodml22:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OrientationOfAnisotropyXDirection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection ? "prodml23:OrientationOfAnisotropyXDirection" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_get_prodml22__OrientationOfAnisotropyXDirection(struct soap*, prodml22__OrientationOfAnisotropyXDirection *, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC4 soap_get_prodml23__OrientationOfAnisotropyXDirection(struct soap*, prodml23__OrientationOfAnisotropyXDirection *, const char*, const char*); -inline int soap_read_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection *p) +inline int soap_read_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OrientationOfAnisotropyXDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OrientationOfAnisotropyXDirection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml22__OrientationOfAnisotropyXDirection *p) +inline int soap_GET_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, const char *URL, prodml23__OrientationOfAnisotropyXDirection *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OrientationOfAnisotropyXDirection(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OrientationOfAnisotropyXDirection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OrientationOfAnisotropyXDirection(struct soap *soap, prodml22__OrientationOfAnisotropyXDirection *p) +inline int soap_POST_recv_prodml23__OrientationOfAnisotropyXDirection(struct soap *soap, prodml23__OrientationOfAnisotropyXDirection *p) { - if (gsoap_eml2_3::soap_read_prodml22__OrientationOfAnisotropyXDirection(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OrientationOfAnisotropyXDirection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumberOfFractures(struct soap*, const char*, int, const prodml22__NumberOfFractures *, const char*); -SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_in_prodml22__NumberOfFractures(struct soap*, const char*, prodml22__NumberOfFractures *, const char*); -SOAP_FMAC1 prodml22__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml22__NumberOfFractures(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumberOfFractures(struct soap*, const char*, int, const prodml23__NumberOfFractures *, const char*); +SOAP_FMAC3 prodml23__NumberOfFractures * SOAP_FMAC4 soap_in_prodml23__NumberOfFractures(struct soap*, const char*, prodml23__NumberOfFractures *, const char*); +SOAP_FMAC1 prodml23__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml23__NumberOfFractures(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NumberOfFractures * soap_new_prodml22__NumberOfFractures(struct soap *soap, int n = -1) +inline prodml23__NumberOfFractures * soap_new_prodml23__NumberOfFractures(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NumberOfFractures(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NumberOfFractures(soap, n, NULL, NULL, NULL); } -inline prodml22__NumberOfFractures * soap_new_req_prodml22__NumberOfFractures( +inline prodml23__NumberOfFractures * soap_new_req_prodml23__NumberOfFractures( struct soap *soap, const std::string& Abbreviation, LONG64 Number, const std::string& Uid__1) { - prodml22__NumberOfFractures *_p = gsoap_eml2_3::soap_new_prodml22__NumberOfFractures(soap); + prodml23__NumberOfFractures *_p = gsoap_eml2_3::soap_new_prodml23__NumberOfFractures(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumberOfFractures::Abbreviation = Abbreviation; - _p->prodml22__NumberOfFractures::Number = Number; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__NumberOfFractures::Abbreviation = Abbreviation; + _p->prodml23__NumberOfFractures::Number = Number; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__NumberOfFractures * soap_new_set_prodml22__NumberOfFractures( +inline prodml23__NumberOfFractures * soap_new_set_prodml23__NumberOfFractures( struct soap *soap, const std::string& Abbreviation, LONG64 Number, @@ -106844,104 +106844,104 @@ inline prodml22__NumberOfFractures * soap_new_set_prodml22__NumberOfFractures( std::string *Remark__1, const std::string& Uid__1) { - prodml22__NumberOfFractures *_p = gsoap_eml2_3::soap_new_prodml22__NumberOfFractures(soap); + prodml23__NumberOfFractures *_p = gsoap_eml2_3::soap_new_prodml23__NumberOfFractures(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumberOfFractures::Abbreviation = Abbreviation; - _p->prodml22__NumberOfFractures::Number = Number; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__NumberOfFractures::Abbreviation = Abbreviation; + _p->prodml23__NumberOfFractures::Number = Number; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures const*p) +inline int soap_write_prodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures ? "prodml22:NumberOfFractures" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures ? "prodml23:NumberOfFractures" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NumberOfFractures(struct soap *soap, const char *URL, prodml22__NumberOfFractures const*p) +inline int soap_PUT_prodml23__NumberOfFractures(struct soap *soap, const char *URL, prodml23__NumberOfFractures const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures ? "prodml22:NumberOfFractures" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures ? "prodml23:NumberOfFractures" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NumberOfFractures(struct soap *soap, const char *URL, prodml22__NumberOfFractures const*p) +inline int soap_PATCH_prodml23__NumberOfFractures(struct soap *soap, const char *URL, prodml23__NumberOfFractures const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures ? "prodml22:NumberOfFractures" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures ? "prodml23:NumberOfFractures" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NumberOfFractures(struct soap *soap, const char *URL, prodml22__NumberOfFractures const*p) +inline int soap_POST_send_prodml23__NumberOfFractures(struct soap *soap, const char *URL, prodml23__NumberOfFractures const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures ? "prodml22:NumberOfFractures" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumberOfFractures", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures ? "prodml23:NumberOfFractures" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NumberOfFractures * SOAP_FMAC4 soap_get_prodml22__NumberOfFractures(struct soap*, prodml22__NumberOfFractures *, const char*, const char*); +SOAP_FMAC3 prodml23__NumberOfFractures * SOAP_FMAC4 soap_get_prodml23__NumberOfFractures(struct soap*, prodml23__NumberOfFractures *, const char*, const char*); -inline int soap_read_prodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures *p) +inline int soap_read_prodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NumberOfFractures(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NumberOfFractures(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NumberOfFractures(struct soap *soap, const char *URL, prodml22__NumberOfFractures *p) +inline int soap_GET_prodml23__NumberOfFractures(struct soap *soap, const char *URL, prodml23__NumberOfFractures *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NumberOfFractures(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NumberOfFractures(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NumberOfFractures(struct soap *soap, prodml22__NumberOfFractures *p) +inline int soap_POST_recv_prodml23__NumberOfFractures(struct soap *soap, prodml23__NumberOfFractures *p) { - if (gsoap_eml2_3::soap_read_prodml22__NumberOfFractures(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NumberOfFractures(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ModelName(struct soap*, const char*, int, const prodml22__ModelName *, const char*); -SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_in_prodml22__ModelName(struct soap*, const char*, prodml22__ModelName *, const char*); -SOAP_FMAC1 prodml22__ModelName * SOAP_FMAC2 soap_instantiate_prodml22__ModelName(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ModelName(struct soap*, const char*, int, const prodml23__ModelName *, const char*); +SOAP_FMAC3 prodml23__ModelName * SOAP_FMAC4 soap_in_prodml23__ModelName(struct soap*, const char*, prodml23__ModelName *, const char*); +SOAP_FMAC1 prodml23__ModelName * SOAP_FMAC2 soap_instantiate_prodml23__ModelName(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ModelName * soap_new_prodml22__ModelName(struct soap *soap, int n = -1) +inline prodml23__ModelName * soap_new_prodml23__ModelName(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ModelName(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ModelName(soap, n, NULL, NULL, NULL); } -inline prodml22__ModelName * soap_new_req_prodml22__ModelName( +inline prodml23__ModelName * soap_new_req_prodml23__ModelName( struct soap *soap, const std::string& Abbreviation, const std::string& Name, const std::string& Uid__1) { - prodml22__ModelName *_p = gsoap_eml2_3::soap_new_prodml22__ModelName(soap); + prodml23__ModelName *_p = gsoap_eml2_3::soap_new_prodml23__ModelName(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ModelName::Abbreviation = Abbreviation; - _p->prodml22__ModelName::Name = Name; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__ModelName::Abbreviation = Abbreviation; + _p->prodml23__ModelName::Name = Name; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__ModelName * soap_new_set_prodml22__ModelName( +inline prodml23__ModelName * soap_new_set_prodml23__ModelName( struct soap *soap, const std::string& Abbreviation, const std::string& Name, @@ -106949,104 +106949,104 @@ inline prodml22__ModelName * soap_new_set_prodml22__ModelName( std::string *Remark__1, const std::string& Uid__1) { - prodml22__ModelName *_p = gsoap_eml2_3::soap_new_prodml22__ModelName(soap); + prodml23__ModelName *_p = gsoap_eml2_3::soap_new_prodml23__ModelName(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ModelName::Abbreviation = Abbreviation; - _p->prodml22__ModelName::Name = Name; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__ModelName::Abbreviation = Abbreviation; + _p->prodml23__ModelName::Name = Name; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__ModelName(struct soap *soap, prodml22__ModelName const*p) +inline int soap_write_prodml23__ModelName(struct soap *soap, prodml23__ModelName const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName ? "prodml22:ModelName" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName ? "prodml23:ModelName" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ModelName(struct soap *soap, const char *URL, prodml22__ModelName const*p) +inline int soap_PUT_prodml23__ModelName(struct soap *soap, const char *URL, prodml23__ModelName const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName ? "prodml22:ModelName" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName ? "prodml23:ModelName" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ModelName(struct soap *soap, const char *URL, prodml22__ModelName const*p) +inline int soap_PATCH_prodml23__ModelName(struct soap *soap, const char *URL, prodml23__ModelName const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName ? "prodml22:ModelName" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName ? "prodml23:ModelName" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ModelName(struct soap *soap, const char *URL, prodml22__ModelName const*p) +inline int soap_POST_send_prodml23__ModelName(struct soap *soap, const char *URL, prodml23__ModelName const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName ? "prodml22:ModelName" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ModelName", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName ? "prodml23:ModelName" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ModelName * SOAP_FMAC4 soap_get_prodml22__ModelName(struct soap*, prodml22__ModelName *, const char*, const char*); +SOAP_FMAC3 prodml23__ModelName * SOAP_FMAC4 soap_get_prodml23__ModelName(struct soap*, prodml23__ModelName *, const char*, const char*); -inline int soap_read_prodml22__ModelName(struct soap *soap, prodml22__ModelName *p) +inline int soap_read_prodml23__ModelName(struct soap *soap, prodml23__ModelName *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ModelName(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ModelName(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ModelName(struct soap *soap, const char *URL, prodml22__ModelName *p) +inline int soap_GET_prodml23__ModelName(struct soap *soap, const char *URL, prodml23__ModelName *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ModelName(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ModelName(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ModelName(struct soap *soap, prodml22__ModelName *p) +inline int soap_POST_recv_prodml23__ModelName(struct soap *soap, prodml23__ModelName *p) { - if (gsoap_eml2_3::soap_read_prodml22__ModelName(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ModelName(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, const char*, int, const prodml22__MechanicalSkinRelativeToTotalThickness *, const char*); -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, const char*, prodml22__MechanicalSkinRelativeToTotalThickness *, const char*); -SOAP_FMAC1 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, const char*, int, const prodml23__MechanicalSkinRelativeToTotalThickness *, const char*); +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, const char*, prodml23__MechanicalSkinRelativeToTotalThickness *, const char*); +SOAP_FMAC1 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MechanicalSkinRelativeToTotalThickness * soap_new_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, int n = -1) +inline prodml23__MechanicalSkinRelativeToTotalThickness * soap_new_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(soap, n, NULL, NULL, NULL); } -inline prodml22__MechanicalSkinRelativeToTotalThickness * soap_new_req_prodml22__MechanicalSkinRelativeToTotalThickness( +inline prodml23__MechanicalSkinRelativeToTotalThickness * soap_new_req_prodml23__MechanicalSkinRelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__MechanicalSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__MechanicalSkinRelativeToTotalThickness(soap); + prodml23__MechanicalSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__MechanicalSkinRelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__MechanicalSkinRelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__MechanicalSkinRelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__MechanicalSkinRelativeToTotalThickness * soap_new_set_prodml22__MechanicalSkinRelativeToTotalThickness( +inline prodml23__MechanicalSkinRelativeToTotalThickness * soap_new_set_prodml23__MechanicalSkinRelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -107054,104 +107054,104 @@ inline prodml22__MechanicalSkinRelativeToTotalThickness * soap_new_set_prodml22_ std::string *Remark__1, const std::string& Uid__1) { - prodml22__MechanicalSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__MechanicalSkinRelativeToTotalThickness(soap); + prodml23__MechanicalSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__MechanicalSkinRelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MechanicalSkinRelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__MechanicalSkinRelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__MechanicalSkinRelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__MechanicalSkinRelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness const*p) +inline int soap_write_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness ? "prodml22:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness ? "prodml23:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__MechanicalSkinRelativeToTotalThickness const*p) +inline int soap_PUT_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__MechanicalSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness ? "prodml22:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness ? "prodml23:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__MechanicalSkinRelativeToTotalThickness const*p) +inline int soap_PATCH_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__MechanicalSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness ? "prodml22:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness ? "prodml23:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__MechanicalSkinRelativeToTotalThickness const*p) +inline int soap_POST_send_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__MechanicalSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness ? "prodml22:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MechanicalSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness ? "prodml23:MechanicalSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml22__MechanicalSkinRelativeToTotalThickness *, const char*, const char*); +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml23__MechanicalSkinRelativeToTotalThickness *, const char*, const char*); -inline int soap_read_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness *p) +inline int soap_read_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MechanicalSkinRelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MechanicalSkinRelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__MechanicalSkinRelativeToTotalThickness *p) +inline int soap_GET_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__MechanicalSkinRelativeToTotalThickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MechanicalSkinRelativeToTotalThickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MechanicalSkinRelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml22__MechanicalSkinRelativeToTotalThickness *p) +inline int soap_POST_recv_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap *soap, prodml23__MechanicalSkinRelativeToTotalThickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__MechanicalSkinRelativeToTotalThickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MechanicalSkinRelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LengthHorizontalWellboreFlowing(struct soap*, const char*, int, const prodml22__LengthHorizontalWellboreFlowing *, const char*); -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml22__LengthHorizontalWellboreFlowing(struct soap*, const char*, prodml22__LengthHorizontalWellboreFlowing *, const char*); -SOAP_FMAC1 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LengthHorizontalWellboreFlowing(struct soap*, const char*, int, const prodml23__LengthHorizontalWellboreFlowing *, const char*); +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_in_prodml23__LengthHorizontalWellboreFlowing(struct soap*, const char*, prodml23__LengthHorizontalWellboreFlowing *, const char*); +SOAP_FMAC1 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LengthHorizontalWellboreFlowing * soap_new_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, int n = -1) +inline prodml23__LengthHorizontalWellboreFlowing * soap_new_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(soap, n, NULL, NULL, NULL); } -inline prodml22__LengthHorizontalWellboreFlowing * soap_new_req_prodml22__LengthHorizontalWellboreFlowing( +inline prodml23__LengthHorizontalWellboreFlowing * soap_new_req_prodml23__LengthHorizontalWellboreFlowing( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__LengthHorizontalWellboreFlowing *_p = gsoap_eml2_3::soap_new_prodml22__LengthHorizontalWellboreFlowing(soap); + prodml23__LengthHorizontalWellboreFlowing *_p = gsoap_eml2_3::soap_new_prodml23__LengthHorizontalWellboreFlowing(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LengthHorizontalWellboreFlowing::Abbreviation = Abbreviation; - _p->prodml22__LengthHorizontalWellboreFlowing::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__LengthHorizontalWellboreFlowing::Abbreviation = Abbreviation; + _p->prodml23__LengthHorizontalWellboreFlowing::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__LengthHorizontalWellboreFlowing * soap_new_set_prodml22__LengthHorizontalWellboreFlowing( +inline prodml23__LengthHorizontalWellboreFlowing * soap_new_set_prodml23__LengthHorizontalWellboreFlowing( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -107159,104 +107159,104 @@ inline prodml22__LengthHorizontalWellboreFlowing * soap_new_set_prodml22__Length std::string *Remark__1, const std::string& Uid__1) { - prodml22__LengthHorizontalWellboreFlowing *_p = gsoap_eml2_3::soap_new_prodml22__LengthHorizontalWellboreFlowing(soap); + prodml23__LengthHorizontalWellboreFlowing *_p = gsoap_eml2_3::soap_new_prodml23__LengthHorizontalWellboreFlowing(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LengthHorizontalWellboreFlowing::Abbreviation = Abbreviation; - _p->prodml22__LengthHorizontalWellboreFlowing::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__LengthHorizontalWellboreFlowing::Abbreviation = Abbreviation; + _p->prodml23__LengthHorizontalWellboreFlowing::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing const*p) +inline int soap_write_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing ? "prodml22:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing ? "prodml23:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml22__LengthHorizontalWellboreFlowing const*p) +inline int soap_PUT_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml23__LengthHorizontalWellboreFlowing const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing ? "prodml22:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing ? "prodml23:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml22__LengthHorizontalWellboreFlowing const*p) +inline int soap_PATCH_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml23__LengthHorizontalWellboreFlowing const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing ? "prodml22:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing ? "prodml23:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml22__LengthHorizontalWellboreFlowing const*p) +inline int soap_POST_send_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml23__LengthHorizontalWellboreFlowing const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing ? "prodml22:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LengthHorizontalWellboreFlowing", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing ? "prodml23:LengthHorizontalWellboreFlowing" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_get_prodml22__LengthHorizontalWellboreFlowing(struct soap*, prodml22__LengthHorizontalWellboreFlowing *, const char*, const char*); +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC4 soap_get_prodml23__LengthHorizontalWellboreFlowing(struct soap*, prodml23__LengthHorizontalWellboreFlowing *, const char*, const char*); -inline int soap_read_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing *p) +inline int soap_read_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LengthHorizontalWellboreFlowing(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LengthHorizontalWellboreFlowing(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml22__LengthHorizontalWellboreFlowing *p) +inline int soap_GET_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, const char *URL, prodml23__LengthHorizontalWellboreFlowing *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LengthHorizontalWellboreFlowing(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LengthHorizontalWellboreFlowing(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LengthHorizontalWellboreFlowing(struct soap *soap, prodml22__LengthHorizontalWellboreFlowing *p) +inline int soap_POST_recv_prodml23__LengthHorizontalWellboreFlowing(struct soap *soap, prodml23__LengthHorizontalWellboreFlowing *p) { - if (gsoap_eml2_3::soap_read_prodml22__LengthHorizontalWellboreFlowing(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LengthHorizontalWellboreFlowing(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LeakSkin(struct soap*, const char*, int, const prodml22__LeakSkin *, const char*); -SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_in_prodml22__LeakSkin(struct soap*, const char*, prodml22__LeakSkin *, const char*); -SOAP_FMAC1 prodml22__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml22__LeakSkin(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LeakSkin(struct soap*, const char*, int, const prodml23__LeakSkin *, const char*); +SOAP_FMAC3 prodml23__LeakSkin * SOAP_FMAC4 soap_in_prodml23__LeakSkin(struct soap*, const char*, prodml23__LeakSkin *, const char*); +SOAP_FMAC1 prodml23__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml23__LeakSkin(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LeakSkin * soap_new_prodml22__LeakSkin(struct soap *soap, int n = -1) +inline prodml23__LeakSkin * soap_new_prodml23__LeakSkin(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LeakSkin(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LeakSkin(soap, n, NULL, NULL, NULL); } -inline prodml22__LeakSkin * soap_new_req_prodml22__LeakSkin( +inline prodml23__LeakSkin * soap_new_req_prodml23__LeakSkin( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__LeakSkin *_p = gsoap_eml2_3::soap_new_prodml22__LeakSkin(soap); + prodml23__LeakSkin *_p = gsoap_eml2_3::soap_new_prodml23__LeakSkin(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LeakSkin::Abbreviation = Abbreviation; - _p->prodml22__LeakSkin::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__LeakSkin::Abbreviation = Abbreviation; + _p->prodml23__LeakSkin::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__LeakSkin * soap_new_set_prodml22__LeakSkin( +inline prodml23__LeakSkin * soap_new_set_prodml23__LeakSkin( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -107264,104 +107264,104 @@ inline prodml22__LeakSkin * soap_new_set_prodml22__LeakSkin( std::string *Remark__1, const std::string& Uid__1) { - prodml22__LeakSkin *_p = gsoap_eml2_3::soap_new_prodml22__LeakSkin(soap); + prodml23__LeakSkin *_p = gsoap_eml2_3::soap_new_prodml23__LeakSkin(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LeakSkin::Abbreviation = Abbreviation; - _p->prodml22__LeakSkin::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__LeakSkin::Abbreviation = Abbreviation; + _p->prodml23__LeakSkin::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin const*p) +inline int soap_write_prodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin ? "prodml22:LeakSkin" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin ? "prodml23:LeakSkin" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LeakSkin(struct soap *soap, const char *URL, prodml22__LeakSkin const*p) +inline int soap_PUT_prodml23__LeakSkin(struct soap *soap, const char *URL, prodml23__LeakSkin const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin ? "prodml22:LeakSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin ? "prodml23:LeakSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LeakSkin(struct soap *soap, const char *URL, prodml22__LeakSkin const*p) +inline int soap_PATCH_prodml23__LeakSkin(struct soap *soap, const char *URL, prodml23__LeakSkin const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin ? "prodml22:LeakSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin ? "prodml23:LeakSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LeakSkin(struct soap *soap, const char *URL, prodml22__LeakSkin const*p) +inline int soap_POST_send_prodml23__LeakSkin(struct soap *soap, const char *URL, prodml23__LeakSkin const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin ? "prodml22:LeakSkin" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeakSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin ? "prodml23:LeakSkin" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LeakSkin * SOAP_FMAC4 soap_get_prodml22__LeakSkin(struct soap*, prodml22__LeakSkin *, const char*, const char*); +SOAP_FMAC3 prodml23__LeakSkin * SOAP_FMAC4 soap_get_prodml23__LeakSkin(struct soap*, prodml23__LeakSkin *, const char*, const char*); -inline int soap_read_prodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin *p) +inline int soap_read_prodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LeakSkin(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LeakSkin(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LeakSkin(struct soap *soap, const char *URL, prodml22__LeakSkin *p) +inline int soap_GET_prodml23__LeakSkin(struct soap *soap, const char *URL, prodml23__LeakSkin *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LeakSkin(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LeakSkin(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LeakSkin(struct soap *soap, prodml22__LeakSkin *p) +inline int soap_POST_recv_prodml23__LeakSkin(struct soap *soap, prodml23__LeakSkin *p) { - if (gsoap_eml2_3::soap_read_prodml22__LeakSkin(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LeakSkin(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Layer2Thickness(struct soap*, const char*, int, const prodml22__Layer2Thickness *, const char*); -SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_in_prodml22__Layer2Thickness(struct soap*, const char*, prodml22__Layer2Thickness *, const char*); -SOAP_FMAC1 prodml22__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Layer2Thickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Layer2Thickness(struct soap*, const char*, int, const prodml23__Layer2Thickness *, const char*); +SOAP_FMAC3 prodml23__Layer2Thickness * SOAP_FMAC4 soap_in_prodml23__Layer2Thickness(struct soap*, const char*, prodml23__Layer2Thickness *, const char*); +SOAP_FMAC1 prodml23__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml23__Layer2Thickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Layer2Thickness * soap_new_prodml22__Layer2Thickness(struct soap *soap, int n = -1) +inline prodml23__Layer2Thickness * soap_new_prodml23__Layer2Thickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Layer2Thickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Layer2Thickness(soap, n, NULL, NULL, NULL); } -inline prodml22__Layer2Thickness * soap_new_req_prodml22__Layer2Thickness( +inline prodml23__Layer2Thickness * soap_new_req_prodml23__Layer2Thickness( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__Layer2Thickness *_p = gsoap_eml2_3::soap_new_prodml22__Layer2Thickness(soap); + prodml23__Layer2Thickness *_p = gsoap_eml2_3::soap_new_prodml23__Layer2Thickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Layer2Thickness::Abbreviation = Abbreviation; - _p->prodml22__Layer2Thickness::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__Layer2Thickness::Abbreviation = Abbreviation; + _p->prodml23__Layer2Thickness::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__Layer2Thickness * soap_new_set_prodml22__Layer2Thickness( +inline prodml23__Layer2Thickness * soap_new_set_prodml23__Layer2Thickness( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -107369,104 +107369,104 @@ inline prodml22__Layer2Thickness * soap_new_set_prodml22__Layer2Thickness( std::string *Remark__1, const std::string& Uid__1) { - prodml22__Layer2Thickness *_p = gsoap_eml2_3::soap_new_prodml22__Layer2Thickness(soap); + prodml23__Layer2Thickness *_p = gsoap_eml2_3::soap_new_prodml23__Layer2Thickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Layer2Thickness::Abbreviation = Abbreviation; - _p->prodml22__Layer2Thickness::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__Layer2Thickness::Abbreviation = Abbreviation; + _p->prodml23__Layer2Thickness::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness const*p) +inline int soap_write_prodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness ? "prodml22:Layer2Thickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness ? "prodml23:Layer2Thickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Layer2Thickness(struct soap *soap, const char *URL, prodml22__Layer2Thickness const*p) +inline int soap_PUT_prodml23__Layer2Thickness(struct soap *soap, const char *URL, prodml23__Layer2Thickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness ? "prodml22:Layer2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness ? "prodml23:Layer2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Layer2Thickness(struct soap *soap, const char *URL, prodml22__Layer2Thickness const*p) +inline int soap_PATCH_prodml23__Layer2Thickness(struct soap *soap, const char *URL, prodml23__Layer2Thickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness ? "prodml22:Layer2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness ? "prodml23:Layer2Thickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Layer2Thickness(struct soap *soap, const char *URL, prodml22__Layer2Thickness const*p) +inline int soap_POST_send_prodml23__Layer2Thickness(struct soap *soap, const char *URL, prodml23__Layer2Thickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness ? "prodml22:Layer2Thickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Layer2Thickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness ? "prodml23:Layer2Thickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Layer2Thickness * SOAP_FMAC4 soap_get_prodml22__Layer2Thickness(struct soap*, prodml22__Layer2Thickness *, const char*, const char*); +SOAP_FMAC3 prodml23__Layer2Thickness * SOAP_FMAC4 soap_get_prodml23__Layer2Thickness(struct soap*, prodml23__Layer2Thickness *, const char*, const char*); -inline int soap_read_prodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness *p) +inline int soap_read_prodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Layer2Thickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Layer2Thickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Layer2Thickness(struct soap *soap, const char *URL, prodml22__Layer2Thickness *p) +inline int soap_GET_prodml23__Layer2Thickness(struct soap *soap, const char *URL, prodml23__Layer2Thickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Layer2Thickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Layer2Thickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Layer2Thickness(struct soap *soap, prodml22__Layer2Thickness *p) +inline int soap_POST_recv_prodml23__Layer2Thickness(struct soap *soap, prodml23__Layer2Thickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__Layer2Thickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Layer2Thickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterporosityFlowParameter(struct soap*, const char*, int, const prodml22__InterporosityFlowParameter *, const char*); -SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml22__InterporosityFlowParameter(struct soap*, const char*, prodml22__InterporosityFlowParameter *, const char*); -SOAP_FMAC1 prodml22__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_prodml22__InterporosityFlowParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterporosityFlowParameter(struct soap*, const char*, int, const prodml23__InterporosityFlowParameter *, const char*); +SOAP_FMAC3 prodml23__InterporosityFlowParameter * SOAP_FMAC4 soap_in_prodml23__InterporosityFlowParameter(struct soap*, const char*, prodml23__InterporosityFlowParameter *, const char*); +SOAP_FMAC1 prodml23__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_prodml23__InterporosityFlowParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InterporosityFlowParameter * soap_new_prodml22__InterporosityFlowParameter(struct soap *soap, int n = -1) +inline prodml23__InterporosityFlowParameter * soap_new_prodml23__InterporosityFlowParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InterporosityFlowParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InterporosityFlowParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__InterporosityFlowParameter * soap_new_req_prodml22__InterporosityFlowParameter( +inline prodml23__InterporosityFlowParameter * soap_new_req_prodml23__InterporosityFlowParameter( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__InterporosityFlowParameter *_p = gsoap_eml2_3::soap_new_prodml22__InterporosityFlowParameter(soap); + prodml23__InterporosityFlowParameter *_p = gsoap_eml2_3::soap_new_prodml23__InterporosityFlowParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterporosityFlowParameter::Abbreviation = Abbreviation; - _p->prodml22__InterporosityFlowParameter::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InterporosityFlowParameter::Abbreviation = Abbreviation; + _p->prodml23__InterporosityFlowParameter::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__InterporosityFlowParameter * soap_new_set_prodml22__InterporosityFlowParameter( +inline prodml23__InterporosityFlowParameter * soap_new_set_prodml23__InterporosityFlowParameter( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -107474,104 +107474,104 @@ inline prodml22__InterporosityFlowParameter * soap_new_set_prodml22__Interporosi std::string *Remark__1, const std::string& Uid__1) { - prodml22__InterporosityFlowParameter *_p = gsoap_eml2_3::soap_new_prodml22__InterporosityFlowParameter(soap); + prodml23__InterporosityFlowParameter *_p = gsoap_eml2_3::soap_new_prodml23__InterporosityFlowParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterporosityFlowParameter::Abbreviation = Abbreviation; - _p->prodml22__InterporosityFlowParameter::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InterporosityFlowParameter::Abbreviation = Abbreviation; + _p->prodml23__InterporosityFlowParameter::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter const*p) +inline int soap_write_prodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter ? "prodml22:InterporosityFlowParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter ? "prodml23:InterporosityFlowParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml22__InterporosityFlowParameter const*p) +inline int soap_PUT_prodml23__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml23__InterporosityFlowParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter ? "prodml22:InterporosityFlowParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter ? "prodml23:InterporosityFlowParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml22__InterporosityFlowParameter const*p) +inline int soap_PATCH_prodml23__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml23__InterporosityFlowParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter ? "prodml22:InterporosityFlowParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter ? "prodml23:InterporosityFlowParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml22__InterporosityFlowParameter const*p) +inline int soap_POST_send_prodml23__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml23__InterporosityFlowParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter ? "prodml22:InterporosityFlowParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterporosityFlowParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter ? "prodml23:InterporosityFlowParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InterporosityFlowParameter * SOAP_FMAC4 soap_get_prodml22__InterporosityFlowParameter(struct soap*, prodml22__InterporosityFlowParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__InterporosityFlowParameter * SOAP_FMAC4 soap_get_prodml23__InterporosityFlowParameter(struct soap*, prodml23__InterporosityFlowParameter *, const char*, const char*); -inline int soap_read_prodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter *p) +inline int soap_read_prodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InterporosityFlowParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InterporosityFlowParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml22__InterporosityFlowParameter *p) +inline int soap_GET_prodml23__InterporosityFlowParameter(struct soap *soap, const char *URL, prodml23__InterporosityFlowParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InterporosityFlowParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InterporosityFlowParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InterporosityFlowParameter(struct soap *soap, prodml22__InterporosityFlowParameter *p) +inline int soap_POST_recv_prodml23__InterporosityFlowParameter(struct soap *soap, prodml23__InterporosityFlowParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__InterporosityFlowParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InterporosityFlowParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InnerToOuterZoneMobilityRatio(struct soap*, const char*, int, const prodml22__InnerToOuterZoneMobilityRatio *, const char*); -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml22__InnerToOuterZoneMobilityRatio(struct soap*, const char*, prodml22__InnerToOuterZoneMobilityRatio *, const char*); -SOAP_FMAC1 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InnerToOuterZoneMobilityRatio(struct soap*, const char*, int, const prodml23__InnerToOuterZoneMobilityRatio *, const char*); +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_in_prodml23__InnerToOuterZoneMobilityRatio(struct soap*, const char*, prodml23__InnerToOuterZoneMobilityRatio *, const char*); +SOAP_FMAC1 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InnerToOuterZoneMobilityRatio * soap_new_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, int n = -1) +inline prodml23__InnerToOuterZoneMobilityRatio * soap_new_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(soap, n, NULL, NULL, NULL); } -inline prodml22__InnerToOuterZoneMobilityRatio * soap_new_req_prodml22__InnerToOuterZoneMobilityRatio( +inline prodml23__InnerToOuterZoneMobilityRatio * soap_new_req_prodml23__InnerToOuterZoneMobilityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__InnerToOuterZoneMobilityRatio *_p = gsoap_eml2_3::soap_new_prodml22__InnerToOuterZoneMobilityRatio(soap); + prodml23__InnerToOuterZoneMobilityRatio *_p = gsoap_eml2_3::soap_new_prodml23__InnerToOuterZoneMobilityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation = Abbreviation; - _p->prodml22__InnerToOuterZoneMobilityRatio::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation = Abbreviation; + _p->prodml23__InnerToOuterZoneMobilityRatio::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__InnerToOuterZoneMobilityRatio * soap_new_set_prodml22__InnerToOuterZoneMobilityRatio( +inline prodml23__InnerToOuterZoneMobilityRatio * soap_new_set_prodml23__InnerToOuterZoneMobilityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -107579,104 +107579,104 @@ inline prodml22__InnerToOuterZoneMobilityRatio * soap_new_set_prodml22__InnerToO std::string *Remark__1, const std::string& Uid__1) { - prodml22__InnerToOuterZoneMobilityRatio *_p = gsoap_eml2_3::soap_new_prodml22__InnerToOuterZoneMobilityRatio(soap); + prodml23__InnerToOuterZoneMobilityRatio *_p = gsoap_eml2_3::soap_new_prodml23__InnerToOuterZoneMobilityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InnerToOuterZoneMobilityRatio::Abbreviation = Abbreviation; - _p->prodml22__InnerToOuterZoneMobilityRatio::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InnerToOuterZoneMobilityRatio::Abbreviation = Abbreviation; + _p->prodml23__InnerToOuterZoneMobilityRatio::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio const*p) +inline int soap_write_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio ? "prodml22:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio ? "prodml23:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneMobilityRatio const*p) +inline int soap_PUT_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneMobilityRatio const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio ? "prodml22:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio ? "prodml23:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneMobilityRatio const*p) +inline int soap_PATCH_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneMobilityRatio const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio ? "prodml22:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio ? "prodml23:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneMobilityRatio const*p) +inline int soap_POST_send_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneMobilityRatio const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio ? "prodml22:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneMobilityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio ? "prodml23:InnerToOuterZoneMobilityRatio" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_get_prodml22__InnerToOuterZoneMobilityRatio(struct soap*, prodml22__InnerToOuterZoneMobilityRatio *, const char*, const char*); +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC4 soap_get_prodml23__InnerToOuterZoneMobilityRatio(struct soap*, prodml23__InnerToOuterZoneMobilityRatio *, const char*, const char*); -inline int soap_read_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio *p) +inline int soap_read_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InnerToOuterZoneMobilityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InnerToOuterZoneMobilityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneMobilityRatio *p) +inline int soap_GET_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneMobilityRatio *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InnerToOuterZoneMobilityRatio(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InnerToOuterZoneMobilityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml22__InnerToOuterZoneMobilityRatio *p) +inline int soap_POST_recv_prodml23__InnerToOuterZoneMobilityRatio(struct soap *soap, prodml23__InnerToOuterZoneMobilityRatio *p) { - if (gsoap_eml2_3::soap_read_prodml22__InnerToOuterZoneMobilityRatio(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InnerToOuterZoneMobilityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, const char*, int, const prodml22__InnerToOuterZoneDiffusivityRatio *, const char*); -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, const char*, prodml22__InnerToOuterZoneDiffusivityRatio *, const char*); -SOAP_FMAC1 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, const char*, int, const prodml23__InnerToOuterZoneDiffusivityRatio *, const char*); +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_in_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, const char*, prodml23__InnerToOuterZoneDiffusivityRatio *, const char*); +SOAP_FMAC1 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InnerToOuterZoneDiffusivityRatio * soap_new_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, int n = -1) +inline prodml23__InnerToOuterZoneDiffusivityRatio * soap_new_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(soap, n, NULL, NULL, NULL); } -inline prodml22__InnerToOuterZoneDiffusivityRatio * soap_new_req_prodml22__InnerToOuterZoneDiffusivityRatio( +inline prodml23__InnerToOuterZoneDiffusivityRatio * soap_new_req_prodml23__InnerToOuterZoneDiffusivityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__InnerToOuterZoneDiffusivityRatio *_p = gsoap_eml2_3::soap_new_prodml22__InnerToOuterZoneDiffusivityRatio(soap); + prodml23__InnerToOuterZoneDiffusivityRatio *_p = gsoap_eml2_3::soap_new_prodml23__InnerToOuterZoneDiffusivityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation = Abbreviation; - _p->prodml22__InnerToOuterZoneDiffusivityRatio::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation = Abbreviation; + _p->prodml23__InnerToOuterZoneDiffusivityRatio::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__InnerToOuterZoneDiffusivityRatio * soap_new_set_prodml22__InnerToOuterZoneDiffusivityRatio( +inline prodml23__InnerToOuterZoneDiffusivityRatio * soap_new_set_prodml23__InnerToOuterZoneDiffusivityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -107684,104 +107684,104 @@ inline prodml22__InnerToOuterZoneDiffusivityRatio * soap_new_set_prodml22__Inner std::string *Remark__1, const std::string& Uid__1) { - prodml22__InnerToOuterZoneDiffusivityRatio *_p = gsoap_eml2_3::soap_new_prodml22__InnerToOuterZoneDiffusivityRatio(soap); + prodml23__InnerToOuterZoneDiffusivityRatio *_p = gsoap_eml2_3::soap_new_prodml23__InnerToOuterZoneDiffusivityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InnerToOuterZoneDiffusivityRatio::Abbreviation = Abbreviation; - _p->prodml22__InnerToOuterZoneDiffusivityRatio::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InnerToOuterZoneDiffusivityRatio::Abbreviation = Abbreviation; + _p->prodml23__InnerToOuterZoneDiffusivityRatio::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio const*p) +inline int soap_write_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio ? "prodml22:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio ? "prodml23:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneDiffusivityRatio const*p) +inline int soap_PUT_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneDiffusivityRatio const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio ? "prodml22:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio ? "prodml23:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneDiffusivityRatio const*p) +inline int soap_PATCH_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneDiffusivityRatio const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio ? "prodml22:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio ? "prodml23:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneDiffusivityRatio const*p) +inline int soap_POST_send_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneDiffusivityRatio const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio ? "prodml22:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InnerToOuterZoneDiffusivityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio ? "prodml23:InnerToOuterZoneDiffusivityRatio" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_get_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml22__InnerToOuterZoneDiffusivityRatio *, const char*, const char*); +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC4 soap_get_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml23__InnerToOuterZoneDiffusivityRatio *, const char*, const char*); -inline int soap_read_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio *p) +inline int soap_read_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InnerToOuterZoneDiffusivityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InnerToOuterZoneDiffusivityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml22__InnerToOuterZoneDiffusivityRatio *p) +inline int soap_GET_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, const char *URL, prodml23__InnerToOuterZoneDiffusivityRatio *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InnerToOuterZoneDiffusivityRatio(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InnerToOuterZoneDiffusivityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml22__InnerToOuterZoneDiffusivityRatio *p) +inline int soap_POST_recv_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap *soap, prodml23__InnerToOuterZoneDiffusivityRatio *p) { - if (gsoap_eml2_3::soap_read_prodml22__InnerToOuterZoneDiffusivityRatio(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InnerToOuterZoneDiffusivityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InitialPressure(struct soap*, const char*, int, const prodml22__InitialPressure *, const char*); -SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_in_prodml22__InitialPressure(struct soap*, const char*, prodml22__InitialPressure *, const char*); -SOAP_FMAC1 prodml22__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml22__InitialPressure(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InitialPressure(struct soap*, const char*, int, const prodml23__InitialPressure *, const char*); +SOAP_FMAC3 prodml23__InitialPressure * SOAP_FMAC4 soap_in_prodml23__InitialPressure(struct soap*, const char*, prodml23__InitialPressure *, const char*); +SOAP_FMAC1 prodml23__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml23__InitialPressure(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InitialPressure * soap_new_prodml22__InitialPressure(struct soap *soap, int n = -1) +inline prodml23__InitialPressure * soap_new_prodml23__InitialPressure(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InitialPressure(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InitialPressure(soap, n, NULL, NULL, NULL); } -inline prodml22__InitialPressure * soap_new_req_prodml22__InitialPressure( +inline prodml23__InitialPressure * soap_new_req_prodml23__InitialPressure( struct soap *soap, const std::string& Abbreviation, eml23__PressureMeasure *Pressure, const std::string& Uid__1) { - prodml22__InitialPressure *_p = gsoap_eml2_3::soap_new_prodml22__InitialPressure(soap); + prodml23__InitialPressure *_p = gsoap_eml2_3::soap_new_prodml23__InitialPressure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InitialPressure::Abbreviation = Abbreviation; - _p->prodml22__InitialPressure::Pressure = Pressure; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InitialPressure::Abbreviation = Abbreviation; + _p->prodml23__InitialPressure::Pressure = Pressure; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__InitialPressure * soap_new_set_prodml22__InitialPressure( +inline prodml23__InitialPressure * soap_new_set_prodml23__InitialPressure( struct soap *soap, const std::string& Abbreviation, eml23__PressureMeasure *Pressure, @@ -107789,104 +107789,104 @@ inline prodml22__InitialPressure * soap_new_set_prodml22__InitialPressure( std::string *Remark__1, const std::string& Uid__1) { - prodml22__InitialPressure *_p = gsoap_eml2_3::soap_new_prodml22__InitialPressure(soap); + prodml23__InitialPressure *_p = gsoap_eml2_3::soap_new_prodml23__InitialPressure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InitialPressure::Abbreviation = Abbreviation; - _p->prodml22__InitialPressure::Pressure = Pressure; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__InitialPressure::Abbreviation = Abbreviation; + _p->prodml23__InitialPressure::Pressure = Pressure; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure const*p) +inline int soap_write_prodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure ? "prodml22:InitialPressure" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure ? "prodml23:InitialPressure" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InitialPressure(struct soap *soap, const char *URL, prodml22__InitialPressure const*p) +inline int soap_PUT_prodml23__InitialPressure(struct soap *soap, const char *URL, prodml23__InitialPressure const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure ? "prodml22:InitialPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure ? "prodml23:InitialPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InitialPressure(struct soap *soap, const char *URL, prodml22__InitialPressure const*p) +inline int soap_PATCH_prodml23__InitialPressure(struct soap *soap, const char *URL, prodml23__InitialPressure const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure ? "prodml22:InitialPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure ? "prodml23:InitialPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InitialPressure(struct soap *soap, const char *URL, prodml22__InitialPressure const*p) +inline int soap_POST_send_prodml23__InitialPressure(struct soap *soap, const char *URL, prodml23__InitialPressure const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure ? "prodml22:InitialPressure" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InitialPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure ? "prodml23:InitialPressure" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InitialPressure * SOAP_FMAC4 soap_get_prodml22__InitialPressure(struct soap*, prodml22__InitialPressure *, const char*, const char*); +SOAP_FMAC3 prodml23__InitialPressure * SOAP_FMAC4 soap_get_prodml23__InitialPressure(struct soap*, prodml23__InitialPressure *, const char*, const char*); -inline int soap_read_prodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure *p) +inline int soap_read_prodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InitialPressure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InitialPressure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InitialPressure(struct soap *soap, const char *URL, prodml22__InitialPressure *p) +inline int soap_GET_prodml23__InitialPressure(struct soap *soap, const char *URL, prodml23__InitialPressure *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InitialPressure(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InitialPressure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InitialPressure(struct soap *soap, prodml22__InitialPressure *p) +inline int soap_POST_recv_prodml23__InitialPressure(struct soap *soap, prodml23__InitialPressure *p) { - if (gsoap_eml2_3::soap_read_prodml22__InitialPressure(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InitialPressure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalRadialPermeability(struct soap*, const char*, int, const prodml22__HorizontalRadialPermeability *, const char*); -SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml22__HorizontalRadialPermeability(struct soap*, const char*, prodml22__HorizontalRadialPermeability *, const char*); -SOAP_FMAC1 prodml22__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalRadialPermeability(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalRadialPermeability(struct soap*, const char*, int, const prodml23__HorizontalRadialPermeability *, const char*); +SOAP_FMAC3 prodml23__HorizontalRadialPermeability * SOAP_FMAC4 soap_in_prodml23__HorizontalRadialPermeability(struct soap*, const char*, prodml23__HorizontalRadialPermeability *, const char*); +SOAP_FMAC1 prodml23__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalRadialPermeability(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HorizontalRadialPermeability * soap_new_prodml22__HorizontalRadialPermeability(struct soap *soap, int n = -1) +inline prodml23__HorizontalRadialPermeability * soap_new_prodml23__HorizontalRadialPermeability(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HorizontalRadialPermeability(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HorizontalRadialPermeability(soap, n, NULL, NULL, NULL); } -inline prodml22__HorizontalRadialPermeability * soap_new_req_prodml22__HorizontalRadialPermeability( +inline prodml23__HorizontalRadialPermeability * soap_new_req_prodml23__HorizontalRadialPermeability( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityRockMeasureExt *Permeability, const std::string& Uid__1) { - prodml22__HorizontalRadialPermeability *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalRadialPermeability(soap); + prodml23__HorizontalRadialPermeability *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalRadialPermeability(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalRadialPermeability::Abbreviation = Abbreviation; - _p->prodml22__HorizontalRadialPermeability::Permeability = Permeability; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__HorizontalRadialPermeability::Abbreviation = Abbreviation; + _p->prodml23__HorizontalRadialPermeability::Permeability = Permeability; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__HorizontalRadialPermeability * soap_new_set_prodml22__HorizontalRadialPermeability( +inline prodml23__HorizontalRadialPermeability * soap_new_set_prodml23__HorizontalRadialPermeability( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityRockMeasureExt *Permeability, @@ -107894,104 +107894,104 @@ inline prodml22__HorizontalRadialPermeability * soap_new_set_prodml22__Horizonta std::string *Remark__1, const std::string& Uid__1) { - prodml22__HorizontalRadialPermeability *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalRadialPermeability(soap); + prodml23__HorizontalRadialPermeability *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalRadialPermeability(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalRadialPermeability::Abbreviation = Abbreviation; - _p->prodml22__HorizontalRadialPermeability::Permeability = Permeability; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__HorizontalRadialPermeability::Abbreviation = Abbreviation; + _p->prodml23__HorizontalRadialPermeability::Permeability = Permeability; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability const*p) +inline int soap_write_prodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability ? "prodml22:HorizontalRadialPermeability" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability ? "prodml23:HorizontalRadialPermeability" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml22__HorizontalRadialPermeability const*p) +inline int soap_PUT_prodml23__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml23__HorizontalRadialPermeability const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability ? "prodml22:HorizontalRadialPermeability" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability ? "prodml23:HorizontalRadialPermeability" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml22__HorizontalRadialPermeability const*p) +inline int soap_PATCH_prodml23__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml23__HorizontalRadialPermeability const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability ? "prodml22:HorizontalRadialPermeability" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability ? "prodml23:HorizontalRadialPermeability" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml22__HorizontalRadialPermeability const*p) +inline int soap_POST_send_prodml23__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml23__HorizontalRadialPermeability const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability ? "prodml22:HorizontalRadialPermeability" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalRadialPermeability", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability ? "prodml23:HorizontalRadialPermeability" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HorizontalRadialPermeability * SOAP_FMAC4 soap_get_prodml22__HorizontalRadialPermeability(struct soap*, prodml22__HorizontalRadialPermeability *, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalRadialPermeability * SOAP_FMAC4 soap_get_prodml23__HorizontalRadialPermeability(struct soap*, prodml23__HorizontalRadialPermeability *, const char*, const char*); -inline int soap_read_prodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability *p) +inline int soap_read_prodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HorizontalRadialPermeability(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HorizontalRadialPermeability(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml22__HorizontalRadialPermeability *p) +inline int soap_GET_prodml23__HorizontalRadialPermeability(struct soap *soap, const char *URL, prodml23__HorizontalRadialPermeability *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HorizontalRadialPermeability(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HorizontalRadialPermeability(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HorizontalRadialPermeability(struct soap *soap, prodml22__HorizontalRadialPermeability *p) +inline int soap_POST_recv_prodml23__HorizontalRadialPermeability(struct soap *soap, prodml23__HorizontalRadialPermeability *p) { - if (gsoap_eml2_3::soap_read_prodml22__HorizontalRadialPermeability(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HorizontalRadialPermeability(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalAnisotropyKxToKy(struct soap*, const char*, int, const prodml22__HorizontalAnisotropyKxToKy *, const char*); -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml22__HorizontalAnisotropyKxToKy(struct soap*, const char*, prodml22__HorizontalAnisotropyKxToKy *, const char*); -SOAP_FMAC1 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalAnisotropyKxToKy(struct soap*, const char*, int, const prodml23__HorizontalAnisotropyKxToKy *, const char*); +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_in_prodml23__HorizontalAnisotropyKxToKy(struct soap*, const char*, prodml23__HorizontalAnisotropyKxToKy *, const char*); +SOAP_FMAC1 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HorizontalAnisotropyKxToKy * soap_new_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, int n = -1) +inline prodml23__HorizontalAnisotropyKxToKy * soap_new_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(soap, n, NULL, NULL, NULL); } -inline prodml22__HorizontalAnisotropyKxToKy * soap_new_req_prodml22__HorizontalAnisotropyKxToKy( +inline prodml23__HorizontalAnisotropyKxToKy * soap_new_req_prodml23__HorizontalAnisotropyKxToKy( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__HorizontalAnisotropyKxToKy *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalAnisotropyKxToKy(soap); + prodml23__HorizontalAnisotropyKxToKy *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalAnisotropyKxToKy(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalAnisotropyKxToKy::Abbreviation = Abbreviation; - _p->prodml22__HorizontalAnisotropyKxToKy::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__HorizontalAnisotropyKxToKy::Abbreviation = Abbreviation; + _p->prodml23__HorizontalAnisotropyKxToKy::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__HorizontalAnisotropyKxToKy * soap_new_set_prodml22__HorizontalAnisotropyKxToKy( +inline prodml23__HorizontalAnisotropyKxToKy * soap_new_set_prodml23__HorizontalAnisotropyKxToKy( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -107999,104 +107999,104 @@ inline prodml22__HorizontalAnisotropyKxToKy * soap_new_set_prodml22__HorizontalA std::string *Remark__1, const std::string& Uid__1) { - prodml22__HorizontalAnisotropyKxToKy *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalAnisotropyKxToKy(soap); + prodml23__HorizontalAnisotropyKxToKy *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalAnisotropyKxToKy(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalAnisotropyKxToKy::Abbreviation = Abbreviation; - _p->prodml22__HorizontalAnisotropyKxToKy::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__HorizontalAnisotropyKxToKy::Abbreviation = Abbreviation; + _p->prodml23__HorizontalAnisotropyKxToKy::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy const*p) +inline int soap_write_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy ? "prodml22:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy ? "prodml23:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml22__HorizontalAnisotropyKxToKy const*p) +inline int soap_PUT_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml23__HorizontalAnisotropyKxToKy const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy ? "prodml22:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy ? "prodml23:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml22__HorizontalAnisotropyKxToKy const*p) +inline int soap_PATCH_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml23__HorizontalAnisotropyKxToKy const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy ? "prodml22:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy ? "prodml23:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml22__HorizontalAnisotropyKxToKy const*p) +inline int soap_POST_send_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml23__HorizontalAnisotropyKxToKy const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy ? "prodml22:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalAnisotropyKxToKy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy ? "prodml23:HorizontalAnisotropyKxToKy" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_get_prodml22__HorizontalAnisotropyKxToKy(struct soap*, prodml22__HorizontalAnisotropyKxToKy *, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC4 soap_get_prodml23__HorizontalAnisotropyKxToKy(struct soap*, prodml23__HorizontalAnisotropyKxToKy *, const char*, const char*); -inline int soap_read_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy *p) +inline int soap_read_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HorizontalAnisotropyKxToKy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HorizontalAnisotropyKxToKy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml22__HorizontalAnisotropyKxToKy *p) +inline int soap_GET_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, const char *URL, prodml23__HorizontalAnisotropyKxToKy *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HorizontalAnisotropyKxToKy(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HorizontalAnisotropyKxToKy(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HorizontalAnisotropyKxToKy(struct soap *soap, prodml22__HorizontalAnisotropyKxToKy *p) +inline int soap_POST_recv_prodml23__HorizontalAnisotropyKxToKy(struct soap *soap, prodml23__HorizontalAnisotropyKxToKy *p) { - if (gsoap_eml2_3::soap_read_prodml22__HorizontalAnisotropyKxToKy(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HorizontalAnisotropyKxToKy(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureStorativityRatio(struct soap*, const char*, int, const prodml22__FractureStorativityRatio *, const char*); -SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml22__FractureStorativityRatio(struct soap*, const char*, prodml22__FractureStorativityRatio *, const char*); -SOAP_FMAC1 prodml22__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__FractureStorativityRatio(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureStorativityRatio(struct soap*, const char*, int, const prodml23__FractureStorativityRatio *, const char*); +SOAP_FMAC3 prodml23__FractureStorativityRatio * SOAP_FMAC4 soap_in_prodml23__FractureStorativityRatio(struct soap*, const char*, prodml23__FractureStorativityRatio *, const char*); +SOAP_FMAC1 prodml23__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prodml23__FractureStorativityRatio(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureStorativityRatio * soap_new_prodml22__FractureStorativityRatio(struct soap *soap, int n = -1) +inline prodml23__FractureStorativityRatio * soap_new_prodml23__FractureStorativityRatio(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureStorativityRatio(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureStorativityRatio(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureStorativityRatio * soap_new_req_prodml22__FractureStorativityRatio( +inline prodml23__FractureStorativityRatio * soap_new_req_prodml23__FractureStorativityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__FractureStorativityRatio *_p = gsoap_eml2_3::soap_new_prodml22__FractureStorativityRatio(soap); + prodml23__FractureStorativityRatio *_p = gsoap_eml2_3::soap_new_prodml23__FractureStorativityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureStorativityRatio::Abbreviation = Abbreviation; - _p->prodml22__FractureStorativityRatio::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureStorativityRatio::Abbreviation = Abbreviation; + _p->prodml23__FractureStorativityRatio::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureStorativityRatio * soap_new_set_prodml22__FractureStorativityRatio( +inline prodml23__FractureStorativityRatio * soap_new_set_prodml23__FractureStorativityRatio( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -108104,104 +108104,104 @@ inline prodml22__FractureStorativityRatio * soap_new_set_prodml22__FractureStora std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureStorativityRatio *_p = gsoap_eml2_3::soap_new_prodml22__FractureStorativityRatio(soap); + prodml23__FractureStorativityRatio *_p = gsoap_eml2_3::soap_new_prodml23__FractureStorativityRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureStorativityRatio::Abbreviation = Abbreviation; - _p->prodml22__FractureStorativityRatio::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureStorativityRatio::Abbreviation = Abbreviation; + _p->prodml23__FractureStorativityRatio::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio const*p) +inline int soap_write_prodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio ? "prodml22:FractureStorativityRatio" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio ? "prodml23:FractureStorativityRatio" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureStorativityRatio(struct soap *soap, const char *URL, prodml22__FractureStorativityRatio const*p) +inline int soap_PUT_prodml23__FractureStorativityRatio(struct soap *soap, const char *URL, prodml23__FractureStorativityRatio const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio ? "prodml22:FractureStorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio ? "prodml23:FractureStorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureStorativityRatio(struct soap *soap, const char *URL, prodml22__FractureStorativityRatio const*p) +inline int soap_PATCH_prodml23__FractureStorativityRatio(struct soap *soap, const char *URL, prodml23__FractureStorativityRatio const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio ? "prodml22:FractureStorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio ? "prodml23:FractureStorativityRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureStorativityRatio(struct soap *soap, const char *URL, prodml22__FractureStorativityRatio const*p) +inline int soap_POST_send_prodml23__FractureStorativityRatio(struct soap *soap, const char *URL, prodml23__FractureStorativityRatio const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio ? "prodml22:FractureStorativityRatio" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureStorativityRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio ? "prodml23:FractureStorativityRatio" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureStorativityRatio * SOAP_FMAC4 soap_get_prodml22__FractureStorativityRatio(struct soap*, prodml22__FractureStorativityRatio *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureStorativityRatio * SOAP_FMAC4 soap_get_prodml23__FractureStorativityRatio(struct soap*, prodml23__FractureStorativityRatio *, const char*, const char*); -inline int soap_read_prodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio *p) +inline int soap_read_prodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureStorativityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureStorativityRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureStorativityRatio(struct soap *soap, const char *URL, prodml22__FractureStorativityRatio *p) +inline int soap_GET_prodml23__FractureStorativityRatio(struct soap *soap, const char *URL, prodml23__FractureStorativityRatio *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureStorativityRatio(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureStorativityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureStorativityRatio(struct soap *soap, prodml22__FractureStorativityRatio *p) +inline int soap_POST_recv_prodml23__FractureStorativityRatio(struct soap *soap, prodml23__FractureStorativityRatio *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureStorativityRatio(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureStorativityRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureRadius(struct soap*, const char*, int, const prodml22__FractureRadius *, const char*); -SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_in_prodml22__FractureRadius(struct soap*, const char*, prodml22__FractureRadius *, const char*); -SOAP_FMAC1 prodml22__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml22__FractureRadius(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureRadius(struct soap*, const char*, int, const prodml23__FractureRadius *, const char*); +SOAP_FMAC3 prodml23__FractureRadius * SOAP_FMAC4 soap_in_prodml23__FractureRadius(struct soap*, const char*, prodml23__FractureRadius *, const char*); +SOAP_FMAC1 prodml23__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml23__FractureRadius(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureRadius * soap_new_prodml22__FractureRadius(struct soap *soap, int n = -1) +inline prodml23__FractureRadius * soap_new_prodml23__FractureRadius(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureRadius(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureRadius(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureRadius * soap_new_req_prodml22__FractureRadius( +inline prodml23__FractureRadius * soap_new_req_prodml23__FractureRadius( struct soap *soap, const std::string& abbreviation, const std::string& length, const std::string& Uid__1) { - prodml22__FractureRadius *_p = gsoap_eml2_3::soap_new_prodml22__FractureRadius(soap); + prodml23__FractureRadius *_p = gsoap_eml2_3::soap_new_prodml23__FractureRadius(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureRadius::abbreviation = abbreviation; - _p->prodml22__FractureRadius::length = length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureRadius::abbreviation = abbreviation; + _p->prodml23__FractureRadius::length = length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureRadius * soap_new_set_prodml22__FractureRadius( +inline prodml23__FractureRadius * soap_new_set_prodml23__FractureRadius( struct soap *soap, const std::string& abbreviation, const std::string& length, @@ -108209,104 +108209,104 @@ inline prodml22__FractureRadius * soap_new_set_prodml22__FractureRadius( std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureRadius *_p = gsoap_eml2_3::soap_new_prodml22__FractureRadius(soap); + prodml23__FractureRadius *_p = gsoap_eml2_3::soap_new_prodml23__FractureRadius(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureRadius::abbreviation = abbreviation; - _p->prodml22__FractureRadius::length = length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureRadius::abbreviation = abbreviation; + _p->prodml23__FractureRadius::length = length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius const*p) +inline int soap_write_prodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius ? "prodml22:FractureRadius" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius ? "prodml23:FractureRadius" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureRadius(struct soap *soap, const char *URL, prodml22__FractureRadius const*p) +inline int soap_PUT_prodml23__FractureRadius(struct soap *soap, const char *URL, prodml23__FractureRadius const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius ? "prodml22:FractureRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius ? "prodml23:FractureRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureRadius(struct soap *soap, const char *URL, prodml22__FractureRadius const*p) +inline int soap_PATCH_prodml23__FractureRadius(struct soap *soap, const char *URL, prodml23__FractureRadius const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius ? "prodml22:FractureRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius ? "prodml23:FractureRadius" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureRadius(struct soap *soap, const char *URL, prodml22__FractureRadius const*p) +inline int soap_POST_send_prodml23__FractureRadius(struct soap *soap, const char *URL, prodml23__FractureRadius const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius ? "prodml22:FractureRadius" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureRadius", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius ? "prodml23:FractureRadius" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureRadius * SOAP_FMAC4 soap_get_prodml22__FractureRadius(struct soap*, prodml22__FractureRadius *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureRadius * SOAP_FMAC4 soap_get_prodml23__FractureRadius(struct soap*, prodml23__FractureRadius *, const char*, const char*); -inline int soap_read_prodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius *p) +inline int soap_read_prodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureRadius(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureRadius(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureRadius(struct soap *soap, const char *URL, prodml22__FractureRadius *p) +inline int soap_GET_prodml23__FractureRadius(struct soap *soap, const char *URL, prodml23__FractureRadius *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureRadius(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureRadius(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureRadius(struct soap *soap, prodml22__FractureRadius *p) +inline int soap_POST_recv_prodml23__FractureRadius(struct soap *soap, prodml23__FractureRadius *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureRadius(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureRadius(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureHeight(struct soap*, const char*, int, const prodml22__FractureHeight *, const char*); -SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_in_prodml22__FractureHeight(struct soap*, const char*, prodml22__FractureHeight *, const char*); -SOAP_FMAC1 prodml22__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml22__FractureHeight(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureHeight(struct soap*, const char*, int, const prodml23__FractureHeight *, const char*); +SOAP_FMAC3 prodml23__FractureHeight * SOAP_FMAC4 soap_in_prodml23__FractureHeight(struct soap*, const char*, prodml23__FractureHeight *, const char*); +SOAP_FMAC1 prodml23__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml23__FractureHeight(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureHeight * soap_new_prodml22__FractureHeight(struct soap *soap, int n = -1) +inline prodml23__FractureHeight * soap_new_prodml23__FractureHeight(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureHeight(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureHeight(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureHeight * soap_new_req_prodml22__FractureHeight( +inline prodml23__FractureHeight * soap_new_req_prodml23__FractureHeight( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__FractureHeight *_p = gsoap_eml2_3::soap_new_prodml22__FractureHeight(soap); + prodml23__FractureHeight *_p = gsoap_eml2_3::soap_new_prodml23__FractureHeight(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureHeight::Abbreviation = Abbreviation; - _p->prodml22__FractureHeight::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureHeight::Abbreviation = Abbreviation; + _p->prodml23__FractureHeight::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureHeight * soap_new_set_prodml22__FractureHeight( +inline prodml23__FractureHeight * soap_new_set_prodml23__FractureHeight( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -108314,104 +108314,104 @@ inline prodml22__FractureHeight * soap_new_set_prodml22__FractureHeight( std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureHeight *_p = gsoap_eml2_3::soap_new_prodml22__FractureHeight(soap); + prodml23__FractureHeight *_p = gsoap_eml2_3::soap_new_prodml23__FractureHeight(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureHeight::Abbreviation = Abbreviation; - _p->prodml22__FractureHeight::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureHeight::Abbreviation = Abbreviation; + _p->prodml23__FractureHeight::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight const*p) +inline int soap_write_prodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight ? "prodml22:FractureHeight" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight ? "prodml23:FractureHeight" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureHeight(struct soap *soap, const char *URL, prodml22__FractureHeight const*p) +inline int soap_PUT_prodml23__FractureHeight(struct soap *soap, const char *URL, prodml23__FractureHeight const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight ? "prodml22:FractureHeight" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight ? "prodml23:FractureHeight" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureHeight(struct soap *soap, const char *URL, prodml22__FractureHeight const*p) +inline int soap_PATCH_prodml23__FractureHeight(struct soap *soap, const char *URL, prodml23__FractureHeight const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight ? "prodml22:FractureHeight" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight ? "prodml23:FractureHeight" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureHeight(struct soap *soap, const char *URL, prodml22__FractureHeight const*p) +inline int soap_POST_send_prodml23__FractureHeight(struct soap *soap, const char *URL, prodml23__FractureHeight const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight ? "prodml22:FractureHeight" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHeight", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight ? "prodml23:FractureHeight" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureHeight * SOAP_FMAC4 soap_get_prodml22__FractureHeight(struct soap*, prodml22__FractureHeight *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureHeight * SOAP_FMAC4 soap_get_prodml23__FractureHeight(struct soap*, prodml23__FractureHeight *, const char*, const char*); -inline int soap_read_prodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight *p) +inline int soap_read_prodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureHeight(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureHeight(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureHeight(struct soap *soap, const char *URL, prodml22__FractureHeight *p) +inline int soap_GET_prodml23__FractureHeight(struct soap *soap, const char *URL, prodml23__FractureHeight *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureHeight(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureHeight(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureHeight(struct soap *soap, prodml22__FractureHeight *p) +inline int soap_POST_recv_prodml23__FractureHeight(struct soap *soap, prodml23__FractureHeight *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureHeight(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureHeight(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureHalfLength(struct soap*, const char*, int, const prodml22__FractureHalfLength *, const char*); -SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_in_prodml22__FractureHalfLength(struct soap*, const char*, prodml22__FractureHalfLength *, const char*); -SOAP_FMAC1 prodml22__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml22__FractureHalfLength(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureHalfLength(struct soap*, const char*, int, const prodml23__FractureHalfLength *, const char*); +SOAP_FMAC3 prodml23__FractureHalfLength * SOAP_FMAC4 soap_in_prodml23__FractureHalfLength(struct soap*, const char*, prodml23__FractureHalfLength *, const char*); +SOAP_FMAC1 prodml23__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml23__FractureHalfLength(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureHalfLength * soap_new_prodml22__FractureHalfLength(struct soap *soap, int n = -1) +inline prodml23__FractureHalfLength * soap_new_prodml23__FractureHalfLength(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureHalfLength(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureHalfLength(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureHalfLength * soap_new_req_prodml22__FractureHalfLength( +inline prodml23__FractureHalfLength * soap_new_req_prodml23__FractureHalfLength( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__FractureHalfLength *_p = gsoap_eml2_3::soap_new_prodml22__FractureHalfLength(soap); + prodml23__FractureHalfLength *_p = gsoap_eml2_3::soap_new_prodml23__FractureHalfLength(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureHalfLength::Abbreviation = Abbreviation; - _p->prodml22__FractureHalfLength::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureHalfLength::Abbreviation = Abbreviation; + _p->prodml23__FractureHalfLength::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureHalfLength * soap_new_set_prodml22__FractureHalfLength( +inline prodml23__FractureHalfLength * soap_new_set_prodml23__FractureHalfLength( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -108419,104 +108419,104 @@ inline prodml22__FractureHalfLength * soap_new_set_prodml22__FractureHalfLength( std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureHalfLength *_p = gsoap_eml2_3::soap_new_prodml22__FractureHalfLength(soap); + prodml23__FractureHalfLength *_p = gsoap_eml2_3::soap_new_prodml23__FractureHalfLength(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureHalfLength::Abbreviation = Abbreviation; - _p->prodml22__FractureHalfLength::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureHalfLength::Abbreviation = Abbreviation; + _p->prodml23__FractureHalfLength::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength const*p) +inline int soap_write_prodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength ? "prodml22:FractureHalfLength" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength ? "prodml23:FractureHalfLength" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureHalfLength(struct soap *soap, const char *URL, prodml22__FractureHalfLength const*p) +inline int soap_PUT_prodml23__FractureHalfLength(struct soap *soap, const char *URL, prodml23__FractureHalfLength const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength ? "prodml22:FractureHalfLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength ? "prodml23:FractureHalfLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureHalfLength(struct soap *soap, const char *URL, prodml22__FractureHalfLength const*p) +inline int soap_PATCH_prodml23__FractureHalfLength(struct soap *soap, const char *URL, prodml23__FractureHalfLength const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength ? "prodml22:FractureHalfLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength ? "prodml23:FractureHalfLength" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureHalfLength(struct soap *soap, const char *URL, prodml22__FractureHalfLength const*p) +inline int soap_POST_send_prodml23__FractureHalfLength(struct soap *soap, const char *URL, prodml23__FractureHalfLength const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength ? "prodml22:FractureHalfLength" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureHalfLength", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength ? "prodml23:FractureHalfLength" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureHalfLength * SOAP_FMAC4 soap_get_prodml22__FractureHalfLength(struct soap*, prodml22__FractureHalfLength *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureHalfLength * SOAP_FMAC4 soap_get_prodml23__FractureHalfLength(struct soap*, prodml23__FractureHalfLength *, const char*, const char*); -inline int soap_read_prodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength *p) +inline int soap_read_prodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureHalfLength(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureHalfLength(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureHalfLength(struct soap *soap, const char *URL, prodml22__FractureHalfLength *p) +inline int soap_GET_prodml23__FractureHalfLength(struct soap *soap, const char *URL, prodml23__FractureHalfLength *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureHalfLength(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureHalfLength(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureHalfLength(struct soap *soap, prodml22__FractureHalfLength *p) +inline int soap_POST_recv_prodml23__FractureHalfLength(struct soap *soap, prodml23__FractureHalfLength *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureHalfLength(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureHalfLength(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureFaceSkin(struct soap*, const char*, int, const prodml22__FractureFaceSkin *, const char*); -SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml22__FractureFaceSkin(struct soap*, const char*, prodml22__FractureFaceSkin *, const char*); -SOAP_FMAC1 prodml22__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml22__FractureFaceSkin(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureFaceSkin(struct soap*, const char*, int, const prodml23__FractureFaceSkin *, const char*); +SOAP_FMAC3 prodml23__FractureFaceSkin * SOAP_FMAC4 soap_in_prodml23__FractureFaceSkin(struct soap*, const char*, prodml23__FractureFaceSkin *, const char*); +SOAP_FMAC1 prodml23__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml23__FractureFaceSkin(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureFaceSkin * soap_new_prodml22__FractureFaceSkin(struct soap *soap, int n = -1) +inline prodml23__FractureFaceSkin * soap_new_prodml23__FractureFaceSkin(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureFaceSkin(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureFaceSkin(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureFaceSkin * soap_new_req_prodml22__FractureFaceSkin( +inline prodml23__FractureFaceSkin * soap_new_req_prodml23__FractureFaceSkin( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__FractureFaceSkin *_p = gsoap_eml2_3::soap_new_prodml22__FractureFaceSkin(soap); + prodml23__FractureFaceSkin *_p = gsoap_eml2_3::soap_new_prodml23__FractureFaceSkin(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureFaceSkin::Abbreviation = Abbreviation; - _p->prodml22__FractureFaceSkin::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureFaceSkin::Abbreviation = Abbreviation; + _p->prodml23__FractureFaceSkin::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureFaceSkin * soap_new_set_prodml22__FractureFaceSkin( +inline prodml23__FractureFaceSkin * soap_new_set_prodml23__FractureFaceSkin( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -108524,104 +108524,104 @@ inline prodml22__FractureFaceSkin * soap_new_set_prodml22__FractureFaceSkin( std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureFaceSkin *_p = gsoap_eml2_3::soap_new_prodml22__FractureFaceSkin(soap); + prodml23__FractureFaceSkin *_p = gsoap_eml2_3::soap_new_prodml23__FractureFaceSkin(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureFaceSkin::Abbreviation = Abbreviation; - _p->prodml22__FractureFaceSkin::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureFaceSkin::Abbreviation = Abbreviation; + _p->prodml23__FractureFaceSkin::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin const*p) +inline int soap_write_prodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin ? "prodml22:FractureFaceSkin" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin ? "prodml23:FractureFaceSkin" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureFaceSkin(struct soap *soap, const char *URL, prodml22__FractureFaceSkin const*p) +inline int soap_PUT_prodml23__FractureFaceSkin(struct soap *soap, const char *URL, prodml23__FractureFaceSkin const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin ? "prodml22:FractureFaceSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin ? "prodml23:FractureFaceSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureFaceSkin(struct soap *soap, const char *URL, prodml22__FractureFaceSkin const*p) +inline int soap_PATCH_prodml23__FractureFaceSkin(struct soap *soap, const char *URL, prodml23__FractureFaceSkin const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin ? "prodml22:FractureFaceSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin ? "prodml23:FractureFaceSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureFaceSkin(struct soap *soap, const char *URL, prodml22__FractureFaceSkin const*p) +inline int soap_POST_send_prodml23__FractureFaceSkin(struct soap *soap, const char *URL, prodml23__FractureFaceSkin const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin ? "prodml22:FractureFaceSkin" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureFaceSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin ? "prodml23:FractureFaceSkin" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureFaceSkin * SOAP_FMAC4 soap_get_prodml22__FractureFaceSkin(struct soap*, prodml22__FractureFaceSkin *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureFaceSkin * SOAP_FMAC4 soap_get_prodml23__FractureFaceSkin(struct soap*, prodml23__FractureFaceSkin *, const char*, const char*); -inline int soap_read_prodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin *p) +inline int soap_read_prodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureFaceSkin(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureFaceSkin(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureFaceSkin(struct soap *soap, const char *URL, prodml22__FractureFaceSkin *p) +inline int soap_GET_prodml23__FractureFaceSkin(struct soap *soap, const char *URL, prodml23__FractureFaceSkin *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureFaceSkin(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureFaceSkin(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureFaceSkin(struct soap *soap, prodml22__FractureFaceSkin *p) +inline int soap_POST_recv_prodml23__FractureFaceSkin(struct soap *soap, prodml23__FractureFaceSkin *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureFaceSkin(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureFaceSkin(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureConductivity(struct soap*, const char*, int, const prodml22__FractureConductivity *, const char*); -SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_in_prodml22__FractureConductivity(struct soap*, const char*, prodml22__FractureConductivity *, const char*); -SOAP_FMAC1 prodml22__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml22__FractureConductivity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureConductivity(struct soap*, const char*, int, const prodml23__FractureConductivity *, const char*); +SOAP_FMAC3 prodml23__FractureConductivity * SOAP_FMAC4 soap_in_prodml23__FractureConductivity(struct soap*, const char*, prodml23__FractureConductivity *, const char*); +SOAP_FMAC1 prodml23__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml23__FractureConductivity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureConductivity * soap_new_prodml22__FractureConductivity(struct soap *soap, int n = -1) +inline prodml23__FractureConductivity * soap_new_prodml23__FractureConductivity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureConductivity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureConductivity(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureConductivity * soap_new_req_prodml22__FractureConductivity( +inline prodml23__FractureConductivity * soap_new_req_prodml23__FractureConductivity( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityLengthMeasureExt *PermeabilityLength, const std::string& Uid__1) { - prodml22__FractureConductivity *_p = gsoap_eml2_3::soap_new_prodml22__FractureConductivity(soap); + prodml23__FractureConductivity *_p = gsoap_eml2_3::soap_new_prodml23__FractureConductivity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureConductivity::Abbreviation = Abbreviation; - _p->prodml22__FractureConductivity::PermeabilityLength = PermeabilityLength; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureConductivity::Abbreviation = Abbreviation; + _p->prodml23__FractureConductivity::PermeabilityLength = PermeabilityLength; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureConductivity * soap_new_set_prodml22__FractureConductivity( +inline prodml23__FractureConductivity * soap_new_set_prodml23__FractureConductivity( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityLengthMeasureExt *PermeabilityLength, @@ -108629,104 +108629,104 @@ inline prodml22__FractureConductivity * soap_new_set_prodml22__FractureConductiv std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureConductivity *_p = gsoap_eml2_3::soap_new_prodml22__FractureConductivity(soap); + prodml23__FractureConductivity *_p = gsoap_eml2_3::soap_new_prodml23__FractureConductivity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureConductivity::Abbreviation = Abbreviation; - _p->prodml22__FractureConductivity::PermeabilityLength = PermeabilityLength; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureConductivity::Abbreviation = Abbreviation; + _p->prodml23__FractureConductivity::PermeabilityLength = PermeabilityLength; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity const*p) +inline int soap_write_prodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity ? "prodml22:FractureConductivity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity ? "prodml23:FractureConductivity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureConductivity(struct soap *soap, const char *URL, prodml22__FractureConductivity const*p) +inline int soap_PUT_prodml23__FractureConductivity(struct soap *soap, const char *URL, prodml23__FractureConductivity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity ? "prodml22:FractureConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity ? "prodml23:FractureConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureConductivity(struct soap *soap, const char *URL, prodml22__FractureConductivity const*p) +inline int soap_PATCH_prodml23__FractureConductivity(struct soap *soap, const char *URL, prodml23__FractureConductivity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity ? "prodml22:FractureConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity ? "prodml23:FractureConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureConductivity(struct soap *soap, const char *URL, prodml22__FractureConductivity const*p) +inline int soap_POST_send_prodml23__FractureConductivity(struct soap *soap, const char *URL, prodml23__FractureConductivity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity ? "prodml22:FractureConductivity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity ? "prodml23:FractureConductivity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureConductivity * SOAP_FMAC4 soap_get_prodml22__FractureConductivity(struct soap*, prodml22__FractureConductivity *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureConductivity * SOAP_FMAC4 soap_get_prodml23__FractureConductivity(struct soap*, prodml23__FractureConductivity *, const char*, const char*); -inline int soap_read_prodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity *p) +inline int soap_read_prodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureConductivity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureConductivity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureConductivity(struct soap *soap, const char *URL, prodml22__FractureConductivity *p) +inline int soap_GET_prodml23__FractureConductivity(struct soap *soap, const char *URL, prodml23__FractureConductivity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureConductivity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureConductivity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureConductivity(struct soap *soap, prodml22__FractureConductivity *p) +inline int soap_POST_recv_prodml23__FractureConductivity(struct soap *soap, prodml23__FractureConductivity *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureConductivity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureConductivity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FractureAngleToWellbore(struct soap*, const char*, int, const prodml22__FractureAngleToWellbore *, const char*); -SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml22__FractureAngleToWellbore(struct soap*, const char*, prodml22__FractureAngleToWellbore *, const char*); -SOAP_FMAC1 prodml22__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodml22__FractureAngleToWellbore(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FractureAngleToWellbore(struct soap*, const char*, int, const prodml23__FractureAngleToWellbore *, const char*); +SOAP_FMAC3 prodml23__FractureAngleToWellbore * SOAP_FMAC4 soap_in_prodml23__FractureAngleToWellbore(struct soap*, const char*, prodml23__FractureAngleToWellbore *, const char*); +SOAP_FMAC1 prodml23__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodml23__FractureAngleToWellbore(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FractureAngleToWellbore * soap_new_prodml22__FractureAngleToWellbore(struct soap *soap, int n = -1) +inline prodml23__FractureAngleToWellbore * soap_new_prodml23__FractureAngleToWellbore(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FractureAngleToWellbore(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FractureAngleToWellbore(soap, n, NULL, NULL, NULL); } -inline prodml22__FractureAngleToWellbore * soap_new_req_prodml22__FractureAngleToWellbore( +inline prodml23__FractureAngleToWellbore * soap_new_req_prodml23__FractureAngleToWellbore( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__FractureAngleToWellbore *_p = gsoap_eml2_3::soap_new_prodml22__FractureAngleToWellbore(soap); + prodml23__FractureAngleToWellbore *_p = gsoap_eml2_3::soap_new_prodml23__FractureAngleToWellbore(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureAngleToWellbore::Abbreviation = Abbreviation; - _p->prodml22__FractureAngleToWellbore::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureAngleToWellbore::Abbreviation = Abbreviation; + _p->prodml23__FractureAngleToWellbore::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FractureAngleToWellbore * soap_new_set_prodml22__FractureAngleToWellbore( +inline prodml23__FractureAngleToWellbore * soap_new_set_prodml23__FractureAngleToWellbore( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -108734,104 +108734,104 @@ inline prodml22__FractureAngleToWellbore * soap_new_set_prodml22__FractureAngleT std::string *Remark__1, const std::string& Uid__1) { - prodml22__FractureAngleToWellbore *_p = gsoap_eml2_3::soap_new_prodml22__FractureAngleToWellbore(soap); + prodml23__FractureAngleToWellbore *_p = gsoap_eml2_3::soap_new_prodml23__FractureAngleToWellbore(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FractureAngleToWellbore::Abbreviation = Abbreviation; - _p->prodml22__FractureAngleToWellbore::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FractureAngleToWellbore::Abbreviation = Abbreviation; + _p->prodml23__FractureAngleToWellbore::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore const*p) +inline int soap_write_prodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore ? "prodml22:FractureAngleToWellbore" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore ? "prodml23:FractureAngleToWellbore" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml22__FractureAngleToWellbore const*p) +inline int soap_PUT_prodml23__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml23__FractureAngleToWellbore const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore ? "prodml22:FractureAngleToWellbore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore ? "prodml23:FractureAngleToWellbore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml22__FractureAngleToWellbore const*p) +inline int soap_PATCH_prodml23__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml23__FractureAngleToWellbore const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore ? "prodml22:FractureAngleToWellbore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore ? "prodml23:FractureAngleToWellbore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml22__FractureAngleToWellbore const*p) +inline int soap_POST_send_prodml23__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml23__FractureAngleToWellbore const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore ? "prodml22:FractureAngleToWellbore" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FractureAngleToWellbore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore ? "prodml23:FractureAngleToWellbore" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FractureAngleToWellbore * SOAP_FMAC4 soap_get_prodml22__FractureAngleToWellbore(struct soap*, prodml22__FractureAngleToWellbore *, const char*, const char*); +SOAP_FMAC3 prodml23__FractureAngleToWellbore * SOAP_FMAC4 soap_get_prodml23__FractureAngleToWellbore(struct soap*, prodml23__FractureAngleToWellbore *, const char*, const char*); -inline int soap_read_prodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore *p) +inline int soap_read_prodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FractureAngleToWellbore(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FractureAngleToWellbore(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml22__FractureAngleToWellbore *p) +inline int soap_GET_prodml23__FractureAngleToWellbore(struct soap *soap, const char *URL, prodml23__FractureAngleToWellbore *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FractureAngleToWellbore(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FractureAngleToWellbore(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FractureAngleToWellbore(struct soap *soap, prodml22__FractureAngleToWellbore *p) +inline int soap_POST_recv_prodml23__FractureAngleToWellbore(struct soap *soap, prodml23__FractureAngleToWellbore *p) { - if (gsoap_eml2_3::soap_read_prodml22__FractureAngleToWellbore(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FractureAngleToWellbore(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidDensity(struct soap*, const char*, int, const prodml22__FluidDensity *, const char*); -SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_in_prodml22__FluidDensity(struct soap*, const char*, prodml22__FluidDensity *, const char*); -SOAP_FMAC1 prodml22__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml22__FluidDensity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidDensity(struct soap*, const char*, int, const prodml23__FluidDensity *, const char*); +SOAP_FMAC3 prodml23__FluidDensity * SOAP_FMAC4 soap_in_prodml23__FluidDensity(struct soap*, const char*, prodml23__FluidDensity *, const char*); +SOAP_FMAC1 prodml23__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml23__FluidDensity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidDensity * soap_new_prodml22__FluidDensity(struct soap *soap, int n = -1) +inline prodml23__FluidDensity * soap_new_prodml23__FluidDensity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidDensity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidDensity(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidDensity * soap_new_req_prodml22__FluidDensity( +inline prodml23__FluidDensity * soap_new_req_prodml23__FluidDensity( struct soap *soap, const std::string& Abbreviation, eml23__MassPerVolumeMeasure *Density, const std::string& Uid__1) { - prodml22__FluidDensity *_p = gsoap_eml2_3::soap_new_prodml22__FluidDensity(soap); + prodml23__FluidDensity *_p = gsoap_eml2_3::soap_new_prodml23__FluidDensity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidDensity::Abbreviation = Abbreviation; - _p->prodml22__FluidDensity::Density = Density; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FluidDensity::Abbreviation = Abbreviation; + _p->prodml23__FluidDensity::Density = Density; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FluidDensity * soap_new_set_prodml22__FluidDensity( +inline prodml23__FluidDensity * soap_new_set_prodml23__FluidDensity( struct soap *soap, const std::string& Abbreviation, eml23__MassPerVolumeMeasure *Density, @@ -108839,104 +108839,104 @@ inline prodml22__FluidDensity * soap_new_set_prodml22__FluidDensity( std::string *Remark__1, const std::string& Uid__1) { - prodml22__FluidDensity *_p = gsoap_eml2_3::soap_new_prodml22__FluidDensity(soap); + prodml23__FluidDensity *_p = gsoap_eml2_3::soap_new_prodml23__FluidDensity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidDensity::Abbreviation = Abbreviation; - _p->prodml22__FluidDensity::Density = Density; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FluidDensity::Abbreviation = Abbreviation; + _p->prodml23__FluidDensity::Density = Density; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity const*p) +inline int soap_write_prodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity ? "prodml22:FluidDensity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity ? "prodml23:FluidDensity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidDensity(struct soap *soap, const char *URL, prodml22__FluidDensity const*p) +inline int soap_PUT_prodml23__FluidDensity(struct soap *soap, const char *URL, prodml23__FluidDensity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity ? "prodml22:FluidDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity ? "prodml23:FluidDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidDensity(struct soap *soap, const char *URL, prodml22__FluidDensity const*p) +inline int soap_PATCH_prodml23__FluidDensity(struct soap *soap, const char *URL, prodml23__FluidDensity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity ? "prodml22:FluidDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity ? "prodml23:FluidDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidDensity(struct soap *soap, const char *URL, prodml22__FluidDensity const*p) +inline int soap_POST_send_prodml23__FluidDensity(struct soap *soap, const char *URL, prodml23__FluidDensity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity ? "prodml22:FluidDensity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity ? "prodml23:FluidDensity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidDensity * SOAP_FMAC4 soap_get_prodml22__FluidDensity(struct soap*, prodml22__FluidDensity *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidDensity * SOAP_FMAC4 soap_get_prodml23__FluidDensity(struct soap*, prodml23__FluidDensity *, const char*, const char*); -inline int soap_read_prodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity *p) +inline int soap_read_prodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidDensity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidDensity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidDensity(struct soap *soap, const char *URL, prodml22__FluidDensity *p) +inline int soap_GET_prodml23__FluidDensity(struct soap *soap, const char *URL, prodml23__FluidDensity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidDensity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidDensity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidDensity(struct soap *soap, prodml22__FluidDensity *p) +inline int soap_POST_recv_prodml23__FluidDensity(struct soap *soap, prodml23__FluidDensity *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidDensity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidDensity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FaultConductivity(struct soap*, const char*, int, const prodml22__FaultConductivity *, const char*); -SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_in_prodml22__FaultConductivity(struct soap*, const char*, prodml22__FaultConductivity *, const char*); -SOAP_FMAC1 prodml22__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml22__FaultConductivity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FaultConductivity(struct soap*, const char*, int, const prodml23__FaultConductivity *, const char*); +SOAP_FMAC3 prodml23__FaultConductivity * SOAP_FMAC4 soap_in_prodml23__FaultConductivity(struct soap*, const char*, prodml23__FaultConductivity *, const char*); +SOAP_FMAC1 prodml23__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml23__FaultConductivity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FaultConductivity * soap_new_prodml22__FaultConductivity(struct soap *soap, int n = -1) +inline prodml23__FaultConductivity * soap_new_prodml23__FaultConductivity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FaultConductivity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FaultConductivity(soap, n, NULL, NULL, NULL); } -inline prodml22__FaultConductivity * soap_new_req_prodml22__FaultConductivity( +inline prodml23__FaultConductivity * soap_new_req_prodml23__FaultConductivity( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityLengthMeasureExt *PermeabilityLength, const std::string& Uid__1) { - prodml22__FaultConductivity *_p = gsoap_eml2_3::soap_new_prodml22__FaultConductivity(soap); + prodml23__FaultConductivity *_p = gsoap_eml2_3::soap_new_prodml23__FaultConductivity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FaultConductivity::Abbreviation = Abbreviation; - _p->prodml22__FaultConductivity::PermeabilityLength = PermeabilityLength; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FaultConductivity::Abbreviation = Abbreviation; + _p->prodml23__FaultConductivity::PermeabilityLength = PermeabilityLength; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__FaultConductivity * soap_new_set_prodml22__FaultConductivity( +inline prodml23__FaultConductivity * soap_new_set_prodml23__FaultConductivity( struct soap *soap, const std::string& Abbreviation, eml23__PermeabilityLengthMeasureExt *PermeabilityLength, @@ -108944,104 +108944,104 @@ inline prodml22__FaultConductivity * soap_new_set_prodml22__FaultConductivity( std::string *Remark__1, const std::string& Uid__1) { - prodml22__FaultConductivity *_p = gsoap_eml2_3::soap_new_prodml22__FaultConductivity(soap); + prodml23__FaultConductivity *_p = gsoap_eml2_3::soap_new_prodml23__FaultConductivity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FaultConductivity::Abbreviation = Abbreviation; - _p->prodml22__FaultConductivity::PermeabilityLength = PermeabilityLength; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__FaultConductivity::Abbreviation = Abbreviation; + _p->prodml23__FaultConductivity::PermeabilityLength = PermeabilityLength; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity const*p) +inline int soap_write_prodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity ? "prodml22:FaultConductivity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity ? "prodml23:FaultConductivity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FaultConductivity(struct soap *soap, const char *URL, prodml22__FaultConductivity const*p) +inline int soap_PUT_prodml23__FaultConductivity(struct soap *soap, const char *URL, prodml23__FaultConductivity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity ? "prodml22:FaultConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity ? "prodml23:FaultConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FaultConductivity(struct soap *soap, const char *URL, prodml22__FaultConductivity const*p) +inline int soap_PATCH_prodml23__FaultConductivity(struct soap *soap, const char *URL, prodml23__FaultConductivity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity ? "prodml22:FaultConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity ? "prodml23:FaultConductivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FaultConductivity(struct soap *soap, const char *URL, prodml22__FaultConductivity const*p) +inline int soap_POST_send_prodml23__FaultConductivity(struct soap *soap, const char *URL, prodml23__FaultConductivity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity ? "prodml22:FaultConductivity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FaultConductivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity ? "prodml23:FaultConductivity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FaultConductivity * SOAP_FMAC4 soap_get_prodml22__FaultConductivity(struct soap*, prodml22__FaultConductivity *, const char*, const char*); +SOAP_FMAC3 prodml23__FaultConductivity * SOAP_FMAC4 soap_get_prodml23__FaultConductivity(struct soap*, prodml23__FaultConductivity *, const char*, const char*); -inline int soap_read_prodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity *p) +inline int soap_read_prodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FaultConductivity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FaultConductivity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FaultConductivity(struct soap *soap, const char *URL, prodml22__FaultConductivity *p) +inline int soap_GET_prodml23__FaultConductivity(struct soap *soap, const char *URL, prodml23__FaultConductivity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FaultConductivity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FaultConductivity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FaultConductivity(struct soap *soap, prodml22__FaultConductivity *p) +inline int soap_POST_recv_prodml23__FaultConductivity(struct soap *soap, prodml23__FaultConductivity *p) { - if (gsoap_eml2_3::soap_read_prodml22__FaultConductivity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FaultConductivity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DrainageAreaMeasured(struct soap*, const char*, int, const prodml22__DrainageAreaMeasured *, const char*); -SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml22__DrainageAreaMeasured(struct soap*, const char*, prodml22__DrainageAreaMeasured *, const char*); -SOAP_FMAC1 prodml22__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml22__DrainageAreaMeasured(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DrainageAreaMeasured(struct soap*, const char*, int, const prodml23__DrainageAreaMeasured *, const char*); +SOAP_FMAC3 prodml23__DrainageAreaMeasured * SOAP_FMAC4 soap_in_prodml23__DrainageAreaMeasured(struct soap*, const char*, prodml23__DrainageAreaMeasured *, const char*); +SOAP_FMAC1 prodml23__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml23__DrainageAreaMeasured(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DrainageAreaMeasured * soap_new_prodml22__DrainageAreaMeasured(struct soap *soap, int n = -1) +inline prodml23__DrainageAreaMeasured * soap_new_prodml23__DrainageAreaMeasured(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DrainageAreaMeasured(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DrainageAreaMeasured(soap, n, NULL, NULL, NULL); } -inline prodml22__DrainageAreaMeasured * soap_new_req_prodml22__DrainageAreaMeasured( +inline prodml23__DrainageAreaMeasured * soap_new_req_prodml23__DrainageAreaMeasured( struct soap *soap, const std::string& Abbreviation, eml23__AreaMeasure *Area, const std::string& Uid__1) { - prodml22__DrainageAreaMeasured *_p = gsoap_eml2_3::soap_new_prodml22__DrainageAreaMeasured(soap); + prodml23__DrainageAreaMeasured *_p = gsoap_eml2_3::soap_new_prodml23__DrainageAreaMeasured(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DrainageAreaMeasured::Abbreviation = Abbreviation; - _p->prodml22__DrainageAreaMeasured::Area = Area; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DrainageAreaMeasured::Abbreviation = Abbreviation; + _p->prodml23__DrainageAreaMeasured::Area = Area; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DrainageAreaMeasured * soap_new_set_prodml22__DrainageAreaMeasured( +inline prodml23__DrainageAreaMeasured * soap_new_set_prodml23__DrainageAreaMeasured( struct soap *soap, const std::string& Abbreviation, eml23__AreaMeasure *Area, @@ -109049,104 +109049,104 @@ inline prodml22__DrainageAreaMeasured * soap_new_set_prodml22__DrainageAreaMeasu std::string *Remark__1, const std::string& Uid__1) { - prodml22__DrainageAreaMeasured *_p = gsoap_eml2_3::soap_new_prodml22__DrainageAreaMeasured(soap); + prodml23__DrainageAreaMeasured *_p = gsoap_eml2_3::soap_new_prodml23__DrainageAreaMeasured(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DrainageAreaMeasured::Abbreviation = Abbreviation; - _p->prodml22__DrainageAreaMeasured::Area = Area; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DrainageAreaMeasured::Abbreviation = Abbreviation; + _p->prodml23__DrainageAreaMeasured::Area = Area; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured const*p) +inline int soap_write_prodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured ? "prodml22:DrainageAreaMeasured" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured ? "prodml23:DrainageAreaMeasured" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml22__DrainageAreaMeasured const*p) +inline int soap_PUT_prodml23__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml23__DrainageAreaMeasured const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured ? "prodml22:DrainageAreaMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured ? "prodml23:DrainageAreaMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml22__DrainageAreaMeasured const*p) +inline int soap_PATCH_prodml23__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml23__DrainageAreaMeasured const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured ? "prodml22:DrainageAreaMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured ? "prodml23:DrainageAreaMeasured" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml22__DrainageAreaMeasured const*p) +inline int soap_POST_send_prodml23__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml23__DrainageAreaMeasured const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured ? "prodml22:DrainageAreaMeasured" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrainageAreaMeasured", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured ? "prodml23:DrainageAreaMeasured" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DrainageAreaMeasured * SOAP_FMAC4 soap_get_prodml22__DrainageAreaMeasured(struct soap*, prodml22__DrainageAreaMeasured *, const char*, const char*); +SOAP_FMAC3 prodml23__DrainageAreaMeasured * SOAP_FMAC4 soap_get_prodml23__DrainageAreaMeasured(struct soap*, prodml23__DrainageAreaMeasured *, const char*, const char*); -inline int soap_read_prodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured *p) +inline int soap_read_prodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DrainageAreaMeasured(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DrainageAreaMeasured(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml22__DrainageAreaMeasured *p) +inline int soap_GET_prodml23__DrainageAreaMeasured(struct soap *soap, const char *URL, prodml23__DrainageAreaMeasured *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DrainageAreaMeasured(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DrainageAreaMeasured(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DrainageAreaMeasured(struct soap *soap, prodml22__DrainageAreaMeasured *p) +inline int soap_POST_recv_prodml23__DrainageAreaMeasured(struct soap *soap, prodml23__DrainageAreaMeasured *p) { - if (gsoap_eml2_3::soap_read_prodml22__DrainageAreaMeasured(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DrainageAreaMeasured(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceWellboreToBottomBoundary(struct soap*, const char*, int, const prodml22__DistanceWellboreToBottomBoundary *, const char*); -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceWellboreToBottomBoundary(struct soap*, const char*, prodml22__DistanceWellboreToBottomBoundary *, const char*); -SOAP_FMAC1 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceWellboreToBottomBoundary(struct soap*, const char*, int, const prodml23__DistanceWellboreToBottomBoundary *, const char*); +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceWellboreToBottomBoundary(struct soap*, const char*, prodml23__DistanceWellboreToBottomBoundary *, const char*); +SOAP_FMAC1 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceWellboreToBottomBoundary * soap_new_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, int n = -1) +inline prodml23__DistanceWellboreToBottomBoundary * soap_new_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceWellboreToBottomBoundary * soap_new_req_prodml22__DistanceWellboreToBottomBoundary( +inline prodml23__DistanceWellboreToBottomBoundary * soap_new_req_prodml23__DistanceWellboreToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceWellboreToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceWellboreToBottomBoundary(soap); + prodml23__DistanceWellboreToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceWellboreToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceWellboreToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceWellboreToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceWellboreToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceWellboreToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceWellboreToBottomBoundary * soap_new_set_prodml22__DistanceWellboreToBottomBoundary( +inline prodml23__DistanceWellboreToBottomBoundary * soap_new_set_prodml23__DistanceWellboreToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109154,104 +109154,104 @@ inline prodml22__DistanceWellboreToBottomBoundary * soap_new_set_prodml22__Dista std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceWellboreToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceWellboreToBottomBoundary(soap); + prodml23__DistanceWellboreToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceWellboreToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceWellboreToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceWellboreToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceWellboreToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceWellboreToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary const*p) +inline int soap_write_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary ? "prodml22:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary ? "prodml23:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceWellboreToBottomBoundary const*p) +inline int soap_PUT_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceWellboreToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary ? "prodml22:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary ? "prodml23:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceWellboreToBottomBoundary const*p) +inline int soap_PATCH_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceWellboreToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary ? "prodml22:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary ? "prodml23:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceWellboreToBottomBoundary const*p) +inline int soap_POST_send_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceWellboreToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary ? "prodml22:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceWellboreToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary ? "prodml23:DistanceWellboreToBottomBoundary" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceWellboreToBottomBoundary(struct soap*, prodml22__DistanceWellboreToBottomBoundary *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceWellboreToBottomBoundary(struct soap*, prodml23__DistanceWellboreToBottomBoundary *, const char*, const char*); -inline int soap_read_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary *p) +inline int soap_read_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceWellboreToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceWellboreToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceWellboreToBottomBoundary *p) +inline int soap_GET_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceWellboreToBottomBoundary *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceWellboreToBottomBoundary(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceWellboreToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceWellboreToBottomBoundary(struct soap *soap, prodml22__DistanceWellboreToBottomBoundary *p) +inline int soap_POST_recv_prodml23__DistanceWellboreToBottomBoundary(struct soap *soap, prodml23__DistanceWellboreToBottomBoundary *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceWellboreToBottomBoundary(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceWellboreToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToPinchOut(struct soap*, const char*, int, const prodml22__DistanceToPinchOut *, const char*); -SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml22__DistanceToPinchOut(struct soap*, const char*, prodml22__DistanceToPinchOut *, const char*); -SOAP_FMAC1 prodml22__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToPinchOut(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToPinchOut(struct soap*, const char*, int, const prodml23__DistanceToPinchOut *, const char*); +SOAP_FMAC3 prodml23__DistanceToPinchOut * SOAP_FMAC4 soap_in_prodml23__DistanceToPinchOut(struct soap*, const char*, prodml23__DistanceToPinchOut *, const char*); +SOAP_FMAC1 prodml23__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToPinchOut(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceToPinchOut * soap_new_prodml22__DistanceToPinchOut(struct soap *soap, int n = -1) +inline prodml23__DistanceToPinchOut * soap_new_prodml23__DistanceToPinchOut(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceToPinchOut(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceToPinchOut(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceToPinchOut * soap_new_req_prodml22__DistanceToPinchOut( +inline prodml23__DistanceToPinchOut * soap_new_req_prodml23__DistanceToPinchOut( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceToPinchOut *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToPinchOut(soap); + prodml23__DistanceToPinchOut *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToPinchOut(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToPinchOut::Abbreviation = Abbreviation; - _p->prodml22__DistanceToPinchOut::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToPinchOut::Abbreviation = Abbreviation; + _p->prodml23__DistanceToPinchOut::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceToPinchOut * soap_new_set_prodml22__DistanceToPinchOut( +inline prodml23__DistanceToPinchOut * soap_new_set_prodml23__DistanceToPinchOut( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109259,104 +109259,104 @@ inline prodml22__DistanceToPinchOut * soap_new_set_prodml22__DistanceToPinchOut( std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceToPinchOut *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToPinchOut(soap); + prodml23__DistanceToPinchOut *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToPinchOut(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToPinchOut::Abbreviation = Abbreviation; - _p->prodml22__DistanceToPinchOut::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToPinchOut::Abbreviation = Abbreviation; + _p->prodml23__DistanceToPinchOut::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut const*p) +inline int soap_write_prodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut ? "prodml22:DistanceToPinchOut" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut ? "prodml23:DistanceToPinchOut" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceToPinchOut(struct soap *soap, const char *URL, prodml22__DistanceToPinchOut const*p) +inline int soap_PUT_prodml23__DistanceToPinchOut(struct soap *soap, const char *URL, prodml23__DistanceToPinchOut const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut ? "prodml22:DistanceToPinchOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut ? "prodml23:DistanceToPinchOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceToPinchOut(struct soap *soap, const char *URL, prodml22__DistanceToPinchOut const*p) +inline int soap_PATCH_prodml23__DistanceToPinchOut(struct soap *soap, const char *URL, prodml23__DistanceToPinchOut const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut ? "prodml22:DistanceToPinchOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut ? "prodml23:DistanceToPinchOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceToPinchOut(struct soap *soap, const char *URL, prodml22__DistanceToPinchOut const*p) +inline int soap_POST_send_prodml23__DistanceToPinchOut(struct soap *soap, const char *URL, prodml23__DistanceToPinchOut const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut ? "prodml22:DistanceToPinchOut" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToPinchOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut ? "prodml23:DistanceToPinchOut" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceToPinchOut * SOAP_FMAC4 soap_get_prodml22__DistanceToPinchOut(struct soap*, prodml22__DistanceToPinchOut *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToPinchOut * SOAP_FMAC4 soap_get_prodml23__DistanceToPinchOut(struct soap*, prodml23__DistanceToPinchOut *, const char*, const char*); -inline int soap_read_prodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut *p) +inline int soap_read_prodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceToPinchOut(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceToPinchOut(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceToPinchOut(struct soap *soap, const char *URL, prodml22__DistanceToPinchOut *p) +inline int soap_GET_prodml23__DistanceToPinchOut(struct soap *soap, const char *URL, prodml23__DistanceToPinchOut *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceToPinchOut(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceToPinchOut(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceToPinchOut(struct soap *soap, prodml22__DistanceToPinchOut *p) +inline int soap_POST_recv_prodml23__DistanceToPinchOut(struct soap *soap, prodml23__DistanceToPinchOut *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceToPinchOut(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceToPinchOut(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToMobilityInterface(struct soap*, const char*, int, const prodml22__DistanceToMobilityInterface *, const char*); -SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml22__DistanceToMobilityInterface(struct soap*, const char*, prodml22__DistanceToMobilityInterface *, const char*); -SOAP_FMAC1 prodml22__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToMobilityInterface(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToMobilityInterface(struct soap*, const char*, int, const prodml23__DistanceToMobilityInterface *, const char*); +SOAP_FMAC3 prodml23__DistanceToMobilityInterface * SOAP_FMAC4 soap_in_prodml23__DistanceToMobilityInterface(struct soap*, const char*, prodml23__DistanceToMobilityInterface *, const char*); +SOAP_FMAC1 prodml23__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToMobilityInterface(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceToMobilityInterface * soap_new_prodml22__DistanceToMobilityInterface(struct soap *soap, int n = -1) +inline prodml23__DistanceToMobilityInterface * soap_new_prodml23__DistanceToMobilityInterface(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceToMobilityInterface(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceToMobilityInterface(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceToMobilityInterface * soap_new_req_prodml22__DistanceToMobilityInterface( +inline prodml23__DistanceToMobilityInterface * soap_new_req_prodml23__DistanceToMobilityInterface( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceToMobilityInterface *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToMobilityInterface(soap); + prodml23__DistanceToMobilityInterface *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToMobilityInterface(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToMobilityInterface::Abbreviation = Abbreviation; - _p->prodml22__DistanceToMobilityInterface::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToMobilityInterface::Abbreviation = Abbreviation; + _p->prodml23__DistanceToMobilityInterface::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceToMobilityInterface * soap_new_set_prodml22__DistanceToMobilityInterface( +inline prodml23__DistanceToMobilityInterface * soap_new_set_prodml23__DistanceToMobilityInterface( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109364,104 +109364,104 @@ inline prodml22__DistanceToMobilityInterface * soap_new_set_prodml22__DistanceTo std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceToMobilityInterface *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToMobilityInterface(soap); + prodml23__DistanceToMobilityInterface *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToMobilityInterface(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToMobilityInterface::Abbreviation = Abbreviation; - _p->prodml22__DistanceToMobilityInterface::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToMobilityInterface::Abbreviation = Abbreviation; + _p->prodml23__DistanceToMobilityInterface::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface const*p) +inline int soap_write_prodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface ? "prodml22:DistanceToMobilityInterface" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface ? "prodml23:DistanceToMobilityInterface" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml22__DistanceToMobilityInterface const*p) +inline int soap_PUT_prodml23__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml23__DistanceToMobilityInterface const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface ? "prodml22:DistanceToMobilityInterface" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface ? "prodml23:DistanceToMobilityInterface" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml22__DistanceToMobilityInterface const*p) +inline int soap_PATCH_prodml23__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml23__DistanceToMobilityInterface const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface ? "prodml22:DistanceToMobilityInterface" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface ? "prodml23:DistanceToMobilityInterface" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml22__DistanceToMobilityInterface const*p) +inline int soap_POST_send_prodml23__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml23__DistanceToMobilityInterface const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface ? "prodml22:DistanceToMobilityInterface" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToMobilityInterface", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface ? "prodml23:DistanceToMobilityInterface" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceToMobilityInterface * SOAP_FMAC4 soap_get_prodml22__DistanceToMobilityInterface(struct soap*, prodml22__DistanceToMobilityInterface *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToMobilityInterface * SOAP_FMAC4 soap_get_prodml23__DistanceToMobilityInterface(struct soap*, prodml23__DistanceToMobilityInterface *, const char*, const char*); -inline int soap_read_prodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface *p) +inline int soap_read_prodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceToMobilityInterface(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceToMobilityInterface(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml22__DistanceToMobilityInterface *p) +inline int soap_GET_prodml23__DistanceToMobilityInterface(struct soap *soap, const char *URL, prodml23__DistanceToMobilityInterface *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceToMobilityInterface(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceToMobilityInterface(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceToMobilityInterface(struct soap *soap, prodml22__DistanceToMobilityInterface *p) +inline int soap_POST_recv_prodml23__DistanceToMobilityInterface(struct soap *soap, prodml23__DistanceToMobilityInterface *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceToMobilityInterface(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceToMobilityInterface(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary4(struct soap*, const char*, int, const prodml22__DistanceToBoundary4 *, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary4(struct soap*, const char*, prodml22__DistanceToBoundary4 *, const char*); -SOAP_FMAC1 prodml22__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary4(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary4(struct soap*, const char*, int, const prodml23__DistanceToBoundary4 *, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary4 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary4(struct soap*, const char*, prodml23__DistanceToBoundary4 *, const char*); +SOAP_FMAC1 prodml23__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary4(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceToBoundary4 * soap_new_prodml22__DistanceToBoundary4(struct soap *soap, int n = -1) +inline prodml23__DistanceToBoundary4 * soap_new_prodml23__DistanceToBoundary4(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceToBoundary4(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceToBoundary4(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceToBoundary4 * soap_new_req_prodml22__DistanceToBoundary4( +inline prodml23__DistanceToBoundary4 * soap_new_req_prodml23__DistanceToBoundary4( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceToBoundary4 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary4(soap); + prodml23__DistanceToBoundary4 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary4(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary4::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary4::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary4::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary4::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceToBoundary4 * soap_new_set_prodml22__DistanceToBoundary4( +inline prodml23__DistanceToBoundary4 * soap_new_set_prodml23__DistanceToBoundary4( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109469,104 +109469,104 @@ inline prodml22__DistanceToBoundary4 * soap_new_set_prodml22__DistanceToBoundary std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceToBoundary4 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary4(soap); + prodml23__DistanceToBoundary4 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary4(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary4::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary4::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary4::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary4::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 const*p) +inline int soap_write_prodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 ? "prodml22:DistanceToBoundary4" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 ? "prodml23:DistanceToBoundary4" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceToBoundary4(struct soap *soap, const char *URL, prodml22__DistanceToBoundary4 const*p) +inline int soap_PUT_prodml23__DistanceToBoundary4(struct soap *soap, const char *URL, prodml23__DistanceToBoundary4 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 ? "prodml22:DistanceToBoundary4" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 ? "prodml23:DistanceToBoundary4" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceToBoundary4(struct soap *soap, const char *URL, prodml22__DistanceToBoundary4 const*p) +inline int soap_PATCH_prodml23__DistanceToBoundary4(struct soap *soap, const char *URL, prodml23__DistanceToBoundary4 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 ? "prodml22:DistanceToBoundary4" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 ? "prodml23:DistanceToBoundary4" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceToBoundary4(struct soap *soap, const char *URL, prodml22__DistanceToBoundary4 const*p) +inline int soap_POST_send_prodml23__DistanceToBoundary4(struct soap *soap, const char *URL, prodml23__DistanceToBoundary4 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 ? "prodml22:DistanceToBoundary4" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary4", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 ? "prodml23:DistanceToBoundary4" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceToBoundary4 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary4(struct soap*, prodml22__DistanceToBoundary4 *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary4 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary4(struct soap*, prodml23__DistanceToBoundary4 *, const char*, const char*); -inline int soap_read_prodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 *p) +inline int soap_read_prodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceToBoundary4(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceToBoundary4(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceToBoundary4(struct soap *soap, const char *URL, prodml22__DistanceToBoundary4 *p) +inline int soap_GET_prodml23__DistanceToBoundary4(struct soap *soap, const char *URL, prodml23__DistanceToBoundary4 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary4(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary4(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceToBoundary4(struct soap *soap, prodml22__DistanceToBoundary4 *p) +inline int soap_POST_recv_prodml23__DistanceToBoundary4(struct soap *soap, prodml23__DistanceToBoundary4 *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary4(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary4(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary3(struct soap*, const char*, int, const prodml22__DistanceToBoundary3 *, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary3(struct soap*, const char*, prodml22__DistanceToBoundary3 *, const char*); -SOAP_FMAC1 prodml22__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary3(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary3(struct soap*, const char*, int, const prodml23__DistanceToBoundary3 *, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary3 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary3(struct soap*, const char*, prodml23__DistanceToBoundary3 *, const char*); +SOAP_FMAC1 prodml23__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary3(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceToBoundary3 * soap_new_prodml22__DistanceToBoundary3(struct soap *soap, int n = -1) +inline prodml23__DistanceToBoundary3 * soap_new_prodml23__DistanceToBoundary3(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceToBoundary3(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceToBoundary3(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceToBoundary3 * soap_new_req_prodml22__DistanceToBoundary3( +inline prodml23__DistanceToBoundary3 * soap_new_req_prodml23__DistanceToBoundary3( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceToBoundary3 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary3(soap); + prodml23__DistanceToBoundary3 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary3(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary3::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary3::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary3::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary3::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceToBoundary3 * soap_new_set_prodml22__DistanceToBoundary3( +inline prodml23__DistanceToBoundary3 * soap_new_set_prodml23__DistanceToBoundary3( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109574,104 +109574,104 @@ inline prodml22__DistanceToBoundary3 * soap_new_set_prodml22__DistanceToBoundary std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceToBoundary3 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary3(soap); + prodml23__DistanceToBoundary3 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary3(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary3::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary3::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary3::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary3::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 const*p) +inline int soap_write_prodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 ? "prodml22:DistanceToBoundary3" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 ? "prodml23:DistanceToBoundary3" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceToBoundary3(struct soap *soap, const char *URL, prodml22__DistanceToBoundary3 const*p) +inline int soap_PUT_prodml23__DistanceToBoundary3(struct soap *soap, const char *URL, prodml23__DistanceToBoundary3 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 ? "prodml22:DistanceToBoundary3" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 ? "prodml23:DistanceToBoundary3" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceToBoundary3(struct soap *soap, const char *URL, prodml22__DistanceToBoundary3 const*p) +inline int soap_PATCH_prodml23__DistanceToBoundary3(struct soap *soap, const char *URL, prodml23__DistanceToBoundary3 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 ? "prodml22:DistanceToBoundary3" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 ? "prodml23:DistanceToBoundary3" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceToBoundary3(struct soap *soap, const char *URL, prodml22__DistanceToBoundary3 const*p) +inline int soap_POST_send_prodml23__DistanceToBoundary3(struct soap *soap, const char *URL, prodml23__DistanceToBoundary3 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 ? "prodml22:DistanceToBoundary3" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary3", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 ? "prodml23:DistanceToBoundary3" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceToBoundary3 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary3(struct soap*, prodml22__DistanceToBoundary3 *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary3 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary3(struct soap*, prodml23__DistanceToBoundary3 *, const char*, const char*); -inline int soap_read_prodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 *p) +inline int soap_read_prodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceToBoundary3(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceToBoundary3(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceToBoundary3(struct soap *soap, const char *URL, prodml22__DistanceToBoundary3 *p) +inline int soap_GET_prodml23__DistanceToBoundary3(struct soap *soap, const char *URL, prodml23__DistanceToBoundary3 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary3(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary3(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceToBoundary3(struct soap *soap, prodml22__DistanceToBoundary3 *p) +inline int soap_POST_recv_prodml23__DistanceToBoundary3(struct soap *soap, prodml23__DistanceToBoundary3 *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary3(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary3(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary2(struct soap*, const char*, int, const prodml22__DistanceToBoundary2 *, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary2(struct soap*, const char*, prodml22__DistanceToBoundary2 *, const char*); -SOAP_FMAC1 prodml22__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary2(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary2(struct soap*, const char*, int, const prodml23__DistanceToBoundary2 *, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary2 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary2(struct soap*, const char*, prodml23__DistanceToBoundary2 *, const char*); +SOAP_FMAC1 prodml23__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary2(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceToBoundary2 * soap_new_prodml22__DistanceToBoundary2(struct soap *soap, int n = -1) +inline prodml23__DistanceToBoundary2 * soap_new_prodml23__DistanceToBoundary2(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceToBoundary2(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceToBoundary2(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceToBoundary2 * soap_new_req_prodml22__DistanceToBoundary2( +inline prodml23__DistanceToBoundary2 * soap_new_req_prodml23__DistanceToBoundary2( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceToBoundary2 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary2(soap); + prodml23__DistanceToBoundary2 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary2(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary2::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary2::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary2::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary2::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceToBoundary2 * soap_new_set_prodml22__DistanceToBoundary2( +inline prodml23__DistanceToBoundary2 * soap_new_set_prodml23__DistanceToBoundary2( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109679,104 +109679,104 @@ inline prodml22__DistanceToBoundary2 * soap_new_set_prodml22__DistanceToBoundary std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceToBoundary2 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary2(soap); + prodml23__DistanceToBoundary2 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary2(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary2::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary2::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary2::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary2::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 const*p) +inline int soap_write_prodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 ? "prodml22:DistanceToBoundary2" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 ? "prodml23:DistanceToBoundary2" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceToBoundary2(struct soap *soap, const char *URL, prodml22__DistanceToBoundary2 const*p) +inline int soap_PUT_prodml23__DistanceToBoundary2(struct soap *soap, const char *URL, prodml23__DistanceToBoundary2 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 ? "prodml22:DistanceToBoundary2" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 ? "prodml23:DistanceToBoundary2" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceToBoundary2(struct soap *soap, const char *URL, prodml22__DistanceToBoundary2 const*p) +inline int soap_PATCH_prodml23__DistanceToBoundary2(struct soap *soap, const char *URL, prodml23__DistanceToBoundary2 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 ? "prodml22:DistanceToBoundary2" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 ? "prodml23:DistanceToBoundary2" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceToBoundary2(struct soap *soap, const char *URL, prodml22__DistanceToBoundary2 const*p) +inline int soap_POST_send_prodml23__DistanceToBoundary2(struct soap *soap, const char *URL, prodml23__DistanceToBoundary2 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 ? "prodml22:DistanceToBoundary2" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary2", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 ? "prodml23:DistanceToBoundary2" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceToBoundary2 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary2(struct soap*, prodml22__DistanceToBoundary2 *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary2 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary2(struct soap*, prodml23__DistanceToBoundary2 *, const char*, const char*); -inline int soap_read_prodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 *p) +inline int soap_read_prodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceToBoundary2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceToBoundary2(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceToBoundary2(struct soap *soap, const char *URL, prodml22__DistanceToBoundary2 *p) +inline int soap_GET_prodml23__DistanceToBoundary2(struct soap *soap, const char *URL, prodml23__DistanceToBoundary2 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary2(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary2(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceToBoundary2(struct soap *soap, prodml22__DistanceToBoundary2 *p) +inline int soap_POST_recv_prodml23__DistanceToBoundary2(struct soap *soap, prodml23__DistanceToBoundary2 *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary2(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary2(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceToBoundary1(struct soap*, const char*, int, const prodml22__DistanceToBoundary1 *, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml22__DistanceToBoundary1(struct soap*, const char*, prodml22__DistanceToBoundary1 *, const char*); -SOAP_FMAC1 prodml22__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary1(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceToBoundary1(struct soap*, const char*, int, const prodml23__DistanceToBoundary1 *, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary1 * SOAP_FMAC4 soap_in_prodml23__DistanceToBoundary1(struct soap*, const char*, prodml23__DistanceToBoundary1 *, const char*); +SOAP_FMAC1 prodml23__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary1(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceToBoundary1 * soap_new_prodml22__DistanceToBoundary1(struct soap *soap, int n = -1) +inline prodml23__DistanceToBoundary1 * soap_new_prodml23__DistanceToBoundary1(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceToBoundary1(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceToBoundary1(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceToBoundary1 * soap_new_req_prodml22__DistanceToBoundary1( +inline prodml23__DistanceToBoundary1 * soap_new_req_prodml23__DistanceToBoundary1( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary1(soap); + prodml23__DistanceToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary1(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary1::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary1::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary1::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary1::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceToBoundary1 * soap_new_set_prodml22__DistanceToBoundary1( +inline prodml23__DistanceToBoundary1 * soap_new_set_prodml23__DistanceToBoundary1( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109784,104 +109784,104 @@ inline prodml22__DistanceToBoundary1 * soap_new_set_prodml22__DistanceToBoundary std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml22__DistanceToBoundary1(soap); + prodml23__DistanceToBoundary1 *_p = gsoap_eml2_3::soap_new_prodml23__DistanceToBoundary1(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceToBoundary1::Abbreviation = Abbreviation; - _p->prodml22__DistanceToBoundary1::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceToBoundary1::Abbreviation = Abbreviation; + _p->prodml23__DistanceToBoundary1::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 const*p) +inline int soap_write_prodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 ? "prodml22:DistanceToBoundary1" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 ? "prodml23:DistanceToBoundary1" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceToBoundary1(struct soap *soap, const char *URL, prodml22__DistanceToBoundary1 const*p) +inline int soap_PUT_prodml23__DistanceToBoundary1(struct soap *soap, const char *URL, prodml23__DistanceToBoundary1 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 ? "prodml22:DistanceToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 ? "prodml23:DistanceToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceToBoundary1(struct soap *soap, const char *URL, prodml22__DistanceToBoundary1 const*p) +inline int soap_PATCH_prodml23__DistanceToBoundary1(struct soap *soap, const char *URL, prodml23__DistanceToBoundary1 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 ? "prodml22:DistanceToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 ? "prodml23:DistanceToBoundary1" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceToBoundary1(struct soap *soap, const char *URL, prodml22__DistanceToBoundary1 const*p) +inline int soap_POST_send_prodml23__DistanceToBoundary1(struct soap *soap, const char *URL, prodml23__DistanceToBoundary1 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 ? "prodml22:DistanceToBoundary1" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceToBoundary1", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 ? "prodml23:DistanceToBoundary1" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceToBoundary1 * SOAP_FMAC4 soap_get_prodml22__DistanceToBoundary1(struct soap*, prodml22__DistanceToBoundary1 *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary1 * SOAP_FMAC4 soap_get_prodml23__DistanceToBoundary1(struct soap*, prodml23__DistanceToBoundary1 *, const char*, const char*); -inline int soap_read_prodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 *p) +inline int soap_read_prodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceToBoundary1(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceToBoundary1(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceToBoundary1(struct soap *soap, const char *URL, prodml22__DistanceToBoundary1 *p) +inline int soap_GET_prodml23__DistanceToBoundary1(struct soap *soap, const char *URL, prodml23__DistanceToBoundary1 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary1(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary1(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceToBoundary1(struct soap *soap, prodml22__DistanceToBoundary1 *p) +inline int soap_POST_recv_prodml23__DistanceToBoundary1(struct soap *soap, prodml23__DistanceToBoundary1 *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceToBoundary1(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceToBoundary1(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, const char*, int, const prodml22__DistanceMidPerforationsToBottomBoundary *, const char*); -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, const char*, prodml22__DistanceMidPerforationsToBottomBoundary *, const char*); -SOAP_FMAC1 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, const char*, int, const prodml23__DistanceMidPerforationsToBottomBoundary *, const char*); +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, const char*, prodml23__DistanceMidPerforationsToBottomBoundary *, const char*); +SOAP_FMAC1 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceMidPerforationsToBottomBoundary * soap_new_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, int n = -1) +inline prodml23__DistanceMidPerforationsToBottomBoundary * soap_new_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceMidPerforationsToBottomBoundary * soap_new_req_prodml22__DistanceMidPerforationsToBottomBoundary( +inline prodml23__DistanceMidPerforationsToBottomBoundary * soap_new_req_prodml23__DistanceMidPerforationsToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceMidPerforationsToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceMidPerforationsToBottomBoundary(soap); + prodml23__DistanceMidPerforationsToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceMidPerforationsToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceMidPerforationsToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceMidPerforationsToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceMidPerforationsToBottomBoundary * soap_new_set_prodml22__DistanceMidPerforationsToBottomBoundary( +inline prodml23__DistanceMidPerforationsToBottomBoundary * soap_new_set_prodml23__DistanceMidPerforationsToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109889,104 +109889,104 @@ inline prodml22__DistanceMidPerforationsToBottomBoundary * soap_new_set_prodml22 std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceMidPerforationsToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceMidPerforationsToBottomBoundary(soap); + prodml23__DistanceMidPerforationsToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceMidPerforationsToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceMidPerforationsToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceMidPerforationsToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceMidPerforationsToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceMidPerforationsToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary const*p) +inline int soap_write_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary ? "prodml22:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary ? "prodml23:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidPerforationsToBottomBoundary const*p) +inline int soap_PUT_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidPerforationsToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary ? "prodml22:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary ? "prodml23:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidPerforationsToBottomBoundary const*p) +inline int soap_PATCH_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidPerforationsToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary ? "prodml22:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary ? "prodml23:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidPerforationsToBottomBoundary const*p) +inline int soap_POST_send_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidPerforationsToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary ? "prodml22:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidPerforationsToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary ? "prodml23:DistanceMidPerforationsToBottomBoundary" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml22__DistanceMidPerforationsToBottomBoundary *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml23__DistanceMidPerforationsToBottomBoundary *, const char*, const char*); -inline int soap_read_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary *p) +inline int soap_read_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceMidPerforationsToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceMidPerforationsToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidPerforationsToBottomBoundary *p) +inline int soap_GET_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidPerforationsToBottomBoundary *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceMidPerforationsToBottomBoundary(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceMidPerforationsToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml22__DistanceMidPerforationsToBottomBoundary *p) +inline int soap_POST_recv_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap *soap, prodml23__DistanceMidPerforationsToBottomBoundary *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceMidPerforationsToBottomBoundary(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceMidPerforationsToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char*, int, const prodml22__DistanceMidFractureHeightToBottomBoundary *, const char*); -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char*, prodml22__DistanceMidFractureHeightToBottomBoundary *, const char*); -SOAP_FMAC1 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char*, int, const prodml23__DistanceMidFractureHeightToBottomBoundary *, const char*); +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char*, prodml23__DistanceMidFractureHeightToBottomBoundary *, const char*); +SOAP_FMAC1 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceMidFractureHeightToBottomBoundary * soap_new_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, int n = -1) +inline prodml23__DistanceMidFractureHeightToBottomBoundary * soap_new_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceMidFractureHeightToBottomBoundary * soap_new_req_prodml22__DistanceMidFractureHeightToBottomBoundary( +inline prodml23__DistanceMidFractureHeightToBottomBoundary * soap_new_req_prodml23__DistanceMidFractureHeightToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceMidFractureHeightToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceMidFractureHeightToBottomBoundary(soap); + prodml23__DistanceMidFractureHeightToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceMidFractureHeightToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceMidFractureHeightToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceMidFractureHeightToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceMidFractureHeightToBottomBoundary * soap_new_set_prodml22__DistanceMidFractureHeightToBottomBoundary( +inline prodml23__DistanceMidFractureHeightToBottomBoundary * soap_new_set_prodml23__DistanceMidFractureHeightToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -109994,104 +109994,104 @@ inline prodml22__DistanceMidFractureHeightToBottomBoundary * soap_new_set_prodml std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceMidFractureHeightToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceMidFractureHeightToBottomBoundary(soap); + prodml23__DistanceMidFractureHeightToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceMidFractureHeightToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceMidFractureHeightToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceMidFractureHeightToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceMidFractureHeightToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceMidFractureHeightToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary const*p) +inline int soap_write_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary ? "prodml22:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary ? "prodml23:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidFractureHeightToBottomBoundary const*p) +inline int soap_PUT_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidFractureHeightToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary ? "prodml22:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary ? "prodml23:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidFractureHeightToBottomBoundary const*p) +inline int soap_PATCH_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidFractureHeightToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary ? "prodml22:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary ? "prodml23:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidFractureHeightToBottomBoundary const*p) +inline int soap_POST_send_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidFractureHeightToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary ? "prodml22:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceMidFractureHeightToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary ? "prodml23:DistanceMidFractureHeightToBottomBoundary" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml22__DistanceMidFractureHeightToBottomBoundary *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml23__DistanceMidFractureHeightToBottomBoundary *, const char*, const char*); -inline int soap_read_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary *p) +inline int soap_read_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceMidFractureHeightToBottomBoundary *p) +inline int soap_GET_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceMidFractureHeightToBottomBoundary *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml22__DistanceMidFractureHeightToBottomBoundary *p) +inline int soap_POST_recv_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap *soap, prodml23__DistanceMidFractureHeightToBottomBoundary *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceMidFractureHeightToBottomBoundary(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceMidFractureHeightToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistanceFractureToBottomBoundary(struct soap*, const char*, int, const prodml22__DistanceFractureToBottomBoundary *, const char*); -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodml22__DistanceFractureToBottomBoundary(struct soap*, const char*, prodml22__DistanceFractureToBottomBoundary *, const char*); -SOAP_FMAC1 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceFractureToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistanceFractureToBottomBoundary(struct soap*, const char*, int, const prodml23__DistanceFractureToBottomBoundary *, const char*); +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_in_prodml23__DistanceFractureToBottomBoundary(struct soap*, const char*, prodml23__DistanceFractureToBottomBoundary *, const char*); +SOAP_FMAC1 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceFractureToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistanceFractureToBottomBoundary * soap_new_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, int n = -1) +inline prodml23__DistanceFractureToBottomBoundary * soap_new_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistanceFractureToBottomBoundary(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistanceFractureToBottomBoundary(soap, n, NULL, NULL, NULL); } -inline prodml22__DistanceFractureToBottomBoundary * soap_new_req_prodml22__DistanceFractureToBottomBoundary( +inline prodml23__DistanceFractureToBottomBoundary * soap_new_req_prodml23__DistanceFractureToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, const std::string& Uid__1) { - prodml22__DistanceFractureToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceFractureToBottomBoundary(soap); + prodml23__DistanceFractureToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceFractureToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceFractureToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceFractureToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceFractureToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceFractureToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DistanceFractureToBottomBoundary * soap_new_set_prodml22__DistanceFractureToBottomBoundary( +inline prodml23__DistanceFractureToBottomBoundary * soap_new_set_prodml23__DistanceFractureToBottomBoundary( struct soap *soap, const std::string& Abbreviation, eml23__LengthMeasure *Length, @@ -110099,104 +110099,104 @@ inline prodml22__DistanceFractureToBottomBoundary * soap_new_set_prodml22__Dista std::string *Remark__1, const std::string& Uid__1) { - prodml22__DistanceFractureToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml22__DistanceFractureToBottomBoundary(soap); + prodml23__DistanceFractureToBottomBoundary *_p = gsoap_eml2_3::soap_new_prodml23__DistanceFractureToBottomBoundary(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistanceFractureToBottomBoundary::Abbreviation = Abbreviation; - _p->prodml22__DistanceFractureToBottomBoundary::Length = Length; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DistanceFractureToBottomBoundary::Abbreviation = Abbreviation; + _p->prodml23__DistanceFractureToBottomBoundary::Length = Length; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary const*p) +inline int soap_write_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary ? "prodml22:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary ? "prodml23:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceFractureToBottomBoundary const*p) +inline int soap_PUT_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceFractureToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary ? "prodml22:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary ? "prodml23:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceFractureToBottomBoundary const*p) +inline int soap_PATCH_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceFractureToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary ? "prodml22:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary ? "prodml23:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceFractureToBottomBoundary const*p) +inline int soap_POST_send_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceFractureToBottomBoundary const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary ? "prodml22:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistanceFractureToBottomBoundary", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary ? "prodml23:DistanceFractureToBottomBoundary" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_get_prodml22__DistanceFractureToBottomBoundary(struct soap*, prodml22__DistanceFractureToBottomBoundary *, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC4 soap_get_prodml23__DistanceFractureToBottomBoundary(struct soap*, prodml23__DistanceFractureToBottomBoundary *, const char*, const char*); -inline int soap_read_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary *p) +inline int soap_read_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistanceFractureToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistanceFractureToBottomBoundary(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml22__DistanceFractureToBottomBoundary *p) +inline int soap_GET_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, const char *URL, prodml23__DistanceFractureToBottomBoundary *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistanceFractureToBottomBoundary(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistanceFractureToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistanceFractureToBottomBoundary(struct soap *soap, prodml22__DistanceFractureToBottomBoundary *p) +inline int soap_POST_recv_prodml23__DistanceFractureToBottomBoundary(struct soap *soap, prodml23__DistanceFractureToBottomBoundary *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistanceFractureToBottomBoundary(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistanceFractureToBottomBoundary(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeltaTimeStorageChanges(struct soap*, const char*, int, const prodml22__DeltaTimeStorageChanges *, const char*); -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml22__DeltaTimeStorageChanges(struct soap*, const char*, prodml22__DeltaTimeStorageChanges *, const char*); -SOAP_FMAC1 prodml22__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodml22__DeltaTimeStorageChanges(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeltaTimeStorageChanges(struct soap*, const char*, int, const prodml23__DeltaTimeStorageChanges *, const char*); +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges * SOAP_FMAC4 soap_in_prodml23__DeltaTimeStorageChanges(struct soap*, const char*, prodml23__DeltaTimeStorageChanges *, const char*); +SOAP_FMAC1 prodml23__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodml23__DeltaTimeStorageChanges(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeltaTimeStorageChanges * soap_new_prodml22__DeltaTimeStorageChanges(struct soap *soap, int n = -1) +inline prodml23__DeltaTimeStorageChanges * soap_new_prodml23__DeltaTimeStorageChanges(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeltaTimeStorageChanges(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeltaTimeStorageChanges(soap, n, NULL, NULL, NULL); } -inline prodml22__DeltaTimeStorageChanges * soap_new_req_prodml22__DeltaTimeStorageChanges( +inline prodml23__DeltaTimeStorageChanges * soap_new_req_prodml23__DeltaTimeStorageChanges( struct soap *soap, const std::string& Abbreviation, eml23__TimeMeasure *Time, const std::string& Uid__1) { - prodml22__DeltaTimeStorageChanges *_p = gsoap_eml2_3::soap_new_prodml22__DeltaTimeStorageChanges(soap); + prodml23__DeltaTimeStorageChanges *_p = gsoap_eml2_3::soap_new_prodml23__DeltaTimeStorageChanges(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeltaTimeStorageChanges::Abbreviation = Abbreviation; - _p->prodml22__DeltaTimeStorageChanges::Time = Time; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DeltaTimeStorageChanges::Abbreviation = Abbreviation; + _p->prodml23__DeltaTimeStorageChanges::Time = Time; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DeltaTimeStorageChanges * soap_new_set_prodml22__DeltaTimeStorageChanges( +inline prodml23__DeltaTimeStorageChanges * soap_new_set_prodml23__DeltaTimeStorageChanges( struct soap *soap, const std::string& Abbreviation, eml23__TimeMeasure *Time, @@ -110204,104 +110204,104 @@ inline prodml22__DeltaTimeStorageChanges * soap_new_set_prodml22__DeltaTimeStora std::string *Remark__1, const std::string& Uid__1) { - prodml22__DeltaTimeStorageChanges *_p = gsoap_eml2_3::soap_new_prodml22__DeltaTimeStorageChanges(soap); + prodml23__DeltaTimeStorageChanges *_p = gsoap_eml2_3::soap_new_prodml23__DeltaTimeStorageChanges(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeltaTimeStorageChanges::Abbreviation = Abbreviation; - _p->prodml22__DeltaTimeStorageChanges::Time = Time; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DeltaTimeStorageChanges::Abbreviation = Abbreviation; + _p->prodml23__DeltaTimeStorageChanges::Time = Time; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges const*p) +inline int soap_write_prodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges ? "prodml22:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges ? "prodml23:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml22__DeltaTimeStorageChanges const*p) +inline int soap_PUT_prodml23__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml23__DeltaTimeStorageChanges const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges ? "prodml22:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges ? "prodml23:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml22__DeltaTimeStorageChanges const*p) +inline int soap_PATCH_prodml23__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml23__DeltaTimeStorageChanges const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges ? "prodml22:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges ? "prodml23:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml22__DeltaTimeStorageChanges const*p) +inline int soap_POST_send_prodml23__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml23__DeltaTimeStorageChanges const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges ? "prodml22:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaTimeStorageChanges", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges ? "prodml23:DeltaTimeStorageChanges" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges * SOAP_FMAC4 soap_get_prodml22__DeltaTimeStorageChanges(struct soap*, prodml22__DeltaTimeStorageChanges *, const char*, const char*); +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges * SOAP_FMAC4 soap_get_prodml23__DeltaTimeStorageChanges(struct soap*, prodml23__DeltaTimeStorageChanges *, const char*, const char*); -inline int soap_read_prodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges *p) +inline int soap_read_prodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeltaTimeStorageChanges(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeltaTimeStorageChanges(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml22__DeltaTimeStorageChanges *p) +inline int soap_GET_prodml23__DeltaTimeStorageChanges(struct soap *soap, const char *URL, prodml23__DeltaTimeStorageChanges *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeltaTimeStorageChanges(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeltaTimeStorageChanges(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeltaTimeStorageChanges(struct soap *soap, prodml22__DeltaTimeStorageChanges *p) +inline int soap_POST_recv_prodml23__DeltaTimeStorageChanges(struct soap *soap, prodml23__DeltaTimeStorageChanges *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeltaTimeStorageChanges(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeltaTimeStorageChanges(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeltaPressureTotalSkin(struct soap*, const char*, int, const prodml22__DeltaPressureTotalSkin *, const char*); -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml22__DeltaPressureTotalSkin(struct soap*, const char*, prodml22__DeltaPressureTotalSkin *, const char*); -SOAP_FMAC1 prodml22__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml22__DeltaPressureTotalSkin(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeltaPressureTotalSkin(struct soap*, const char*, int, const prodml23__DeltaPressureTotalSkin *, const char*); +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin * SOAP_FMAC4 soap_in_prodml23__DeltaPressureTotalSkin(struct soap*, const char*, prodml23__DeltaPressureTotalSkin *, const char*); +SOAP_FMAC1 prodml23__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml23__DeltaPressureTotalSkin(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeltaPressureTotalSkin * soap_new_prodml22__DeltaPressureTotalSkin(struct soap *soap, int n = -1) +inline prodml23__DeltaPressureTotalSkin * soap_new_prodml23__DeltaPressureTotalSkin(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeltaPressureTotalSkin(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeltaPressureTotalSkin(soap, n, NULL, NULL, NULL); } -inline prodml22__DeltaPressureTotalSkin * soap_new_req_prodml22__DeltaPressureTotalSkin( +inline prodml23__DeltaPressureTotalSkin * soap_new_req_prodml23__DeltaPressureTotalSkin( struct soap *soap, const std::string& Abbreviation, eml23__PressureMeasure *Pressure, const std::string& Uid__1) { - prodml22__DeltaPressureTotalSkin *_p = gsoap_eml2_3::soap_new_prodml22__DeltaPressureTotalSkin(soap); + prodml23__DeltaPressureTotalSkin *_p = gsoap_eml2_3::soap_new_prodml23__DeltaPressureTotalSkin(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeltaPressureTotalSkin::Abbreviation = Abbreviation; - _p->prodml22__DeltaPressureTotalSkin::Pressure = Pressure; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DeltaPressureTotalSkin::Abbreviation = Abbreviation; + _p->prodml23__DeltaPressureTotalSkin::Pressure = Pressure; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__DeltaPressureTotalSkin * soap_new_set_prodml22__DeltaPressureTotalSkin( +inline prodml23__DeltaPressureTotalSkin * soap_new_set_prodml23__DeltaPressureTotalSkin( struct soap *soap, const std::string& Abbreviation, eml23__PressureMeasure *Pressure, @@ -110309,213 +110309,213 @@ inline prodml22__DeltaPressureTotalSkin * soap_new_set_prodml22__DeltaPressureTo std::string *Remark__1, const std::string& Uid__1) { - prodml22__DeltaPressureTotalSkin *_p = gsoap_eml2_3::soap_new_prodml22__DeltaPressureTotalSkin(soap); + prodml23__DeltaPressureTotalSkin *_p = gsoap_eml2_3::soap_new_prodml23__DeltaPressureTotalSkin(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeltaPressureTotalSkin::Abbreviation = Abbreviation; - _p->prodml22__DeltaPressureTotalSkin::Pressure = Pressure; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__DeltaPressureTotalSkin::Abbreviation = Abbreviation; + _p->prodml23__DeltaPressureTotalSkin::Pressure = Pressure; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin const*p) +inline int soap_write_prodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin ? "prodml22:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin ? "prodml23:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml22__DeltaPressureTotalSkin const*p) +inline int soap_PUT_prodml23__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml23__DeltaPressureTotalSkin const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin ? "prodml22:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin ? "prodml23:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml22__DeltaPressureTotalSkin const*p) +inline int soap_PATCH_prodml23__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml23__DeltaPressureTotalSkin const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin ? "prodml22:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin ? "prodml23:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml22__DeltaPressureTotalSkin const*p) +inline int soap_POST_send_prodml23__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml23__DeltaPressureTotalSkin const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin ? "prodml22:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeltaPressureTotalSkin", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin ? "prodml23:DeltaPressureTotalSkin" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin * SOAP_FMAC4 soap_get_prodml22__DeltaPressureTotalSkin(struct soap*, prodml22__DeltaPressureTotalSkin *, const char*, const char*); +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin * SOAP_FMAC4 soap_get_prodml23__DeltaPressureTotalSkin(struct soap*, prodml23__DeltaPressureTotalSkin *, const char*, const char*); -inline int soap_read_prodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin *p) +inline int soap_read_prodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeltaPressureTotalSkin(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeltaPressureTotalSkin(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml22__DeltaPressureTotalSkin *p) +inline int soap_GET_prodml23__DeltaPressureTotalSkin(struct soap *soap, const char *URL, prodml23__DeltaPressureTotalSkin *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeltaPressureTotalSkin(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeltaPressureTotalSkin(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeltaPressureTotalSkin(struct soap *soap, prodml22__DeltaPressureTotalSkin *p) +inline int soap_POST_recv_prodml23__DeltaPressureTotalSkin(struct soap *soap, prodml23__DeltaPressureTotalSkin *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeltaPressureTotalSkin(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeltaPressureTotalSkin(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomParameter(struct soap*, const char*, int, const prodml22__CustomParameter *, const char*); -SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_in_prodml22__CustomParameter(struct soap*, const char*, prodml22__CustomParameter *, const char*); -SOAP_FMAC1 prodml22__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml22__CustomParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomParameter(struct soap*, const char*, int, const prodml23__CustomParameter *, const char*); +SOAP_FMAC3 prodml23__CustomParameter * SOAP_FMAC4 soap_in_prodml23__CustomParameter(struct soap*, const char*, prodml23__CustomParameter *, const char*); +SOAP_FMAC1 prodml23__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml23__CustomParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomParameter * soap_new_prodml22__CustomParameter(struct soap *soap, int n = -1) +inline prodml23__CustomParameter * soap_new_prodml23__CustomParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomParameter * soap_new_req_prodml22__CustomParameter( +inline prodml23__CustomParameter * soap_new_req_prodml23__CustomParameter( struct soap *soap, const std::string& Name, const std::string& Abbreviation, - prodml22__GeneralMeasureType *MeasureValue, + prodml23__GeneralMeasureType *MeasureValue, const std::string& Uid__1) { - prodml22__CustomParameter *_p = gsoap_eml2_3::soap_new_prodml22__CustomParameter(soap); + prodml23__CustomParameter *_p = gsoap_eml2_3::soap_new_prodml23__CustomParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomParameter::Name = Name; - _p->prodml22__CustomParameter::Abbreviation = Abbreviation; - _p->prodml22__CustomParameter::MeasureValue = MeasureValue; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__CustomParameter::Name = Name; + _p->prodml23__CustomParameter::Abbreviation = Abbreviation; + _p->prodml23__CustomParameter::MeasureValue = MeasureValue; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__CustomParameter * soap_new_set_prodml22__CustomParameter( +inline prodml23__CustomParameter * soap_new_set_prodml23__CustomParameter( struct soap *soap, const std::string& Name, const std::string& Abbreviation, - prodml22__GeneralMeasureType *MeasureValue, + prodml23__GeneralMeasureType *MeasureValue, std::string *SourceResultRefID__1, std::string *Remark__1, const std::string& Uid__1) { - prodml22__CustomParameter *_p = gsoap_eml2_3::soap_new_prodml22__CustomParameter(soap); + prodml23__CustomParameter *_p = gsoap_eml2_3::soap_new_prodml23__CustomParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomParameter::Name = Name; - _p->prodml22__CustomParameter::Abbreviation = Abbreviation; - _p->prodml22__CustomParameter::MeasureValue = MeasureValue; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__CustomParameter::Name = Name; + _p->prodml23__CustomParameter::Abbreviation = Abbreviation; + _p->prodml23__CustomParameter::MeasureValue = MeasureValue; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter const*p) +inline int soap_write_prodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter ? "prodml22:CustomParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter ? "prodml23:CustomParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomParameter(struct soap *soap, const char *URL, prodml22__CustomParameter const*p) +inline int soap_PUT_prodml23__CustomParameter(struct soap *soap, const char *URL, prodml23__CustomParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter ? "prodml22:CustomParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter ? "prodml23:CustomParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomParameter(struct soap *soap, const char *URL, prodml22__CustomParameter const*p) +inline int soap_PATCH_prodml23__CustomParameter(struct soap *soap, const char *URL, prodml23__CustomParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter ? "prodml22:CustomParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter ? "prodml23:CustomParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomParameter(struct soap *soap, const char *URL, prodml22__CustomParameter const*p) +inline int soap_POST_send_prodml23__CustomParameter(struct soap *soap, const char *URL, prodml23__CustomParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter ? "prodml22:CustomParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter ? "prodml23:CustomParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomParameter * SOAP_FMAC4 soap_get_prodml22__CustomParameter(struct soap*, prodml22__CustomParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomParameter * SOAP_FMAC4 soap_get_prodml23__CustomParameter(struct soap*, prodml23__CustomParameter *, const char*, const char*); -inline int soap_read_prodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter *p) +inline int soap_read_prodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomParameter(struct soap *soap, const char *URL, prodml22__CustomParameter *p) +inline int soap_GET_prodml23__CustomParameter(struct soap *soap, const char *URL, prodml23__CustomParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomParameter(struct soap *soap, prodml22__CustomParameter *p) +inline int soap_POST_recv_prodml23__CustomParameter(struct soap *soap, prodml23__CustomParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char*, int, const prodml22__ConvergenceSkinRelativeToTotalThickness *, const char*); -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char*, prodml22__ConvergenceSkinRelativeToTotalThickness *, const char*); -SOAP_FMAC1 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char*, int, const prodml23__ConvergenceSkinRelativeToTotalThickness *, const char*); +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_in_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char*, prodml23__ConvergenceSkinRelativeToTotalThickness *, const char*); +SOAP_FMAC1 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ConvergenceSkinRelativeToTotalThickness * soap_new_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, int n = -1) +inline prodml23__ConvergenceSkinRelativeToTotalThickness * soap_new_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, n, NULL, NULL, NULL); } -inline prodml22__ConvergenceSkinRelativeToTotalThickness * soap_new_req_prodml22__ConvergenceSkinRelativeToTotalThickness( +inline prodml23__ConvergenceSkinRelativeToTotalThickness * soap_new_req_prodml23__ConvergenceSkinRelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, const std::string& Uid__1) { - prodml22__ConvergenceSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__ConvergenceSkinRelativeToTotalThickness(soap); + prodml23__ConvergenceSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__ConvergenceSkinRelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__ConvergenceSkinRelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__ConvergenceSkinRelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__ConvergenceSkinRelativeToTotalThickness * soap_new_set_prodml22__ConvergenceSkinRelativeToTotalThickness( +inline prodml23__ConvergenceSkinRelativeToTotalThickness * soap_new_set_prodml23__ConvergenceSkinRelativeToTotalThickness( struct soap *soap, const std::string& Abbreviation, eml23__DimensionlessMeasure *Value, @@ -110523,104 +110523,104 @@ inline prodml22__ConvergenceSkinRelativeToTotalThickness * soap_new_set_prodml22 std::string *Remark__1, const std::string& Uid__1) { - prodml22__ConvergenceSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml22__ConvergenceSkinRelativeToTotalThickness(soap); + prodml23__ConvergenceSkinRelativeToTotalThickness *_p = gsoap_eml2_3::soap_new_prodml23__ConvergenceSkinRelativeToTotalThickness(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConvergenceSkinRelativeToTotalThickness::Abbreviation = Abbreviation; - _p->prodml22__ConvergenceSkinRelativeToTotalThickness::Value = Value; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__ConvergenceSkinRelativeToTotalThickness::Abbreviation = Abbreviation; + _p->prodml23__ConvergenceSkinRelativeToTotalThickness::Value = Value; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness const*p) +inline int soap_write_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness ? "prodml22:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness ? "prodml23:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__ConvergenceSkinRelativeToTotalThickness const*p) +inline int soap_PUT_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__ConvergenceSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness ? "prodml22:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness ? "prodml23:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__ConvergenceSkinRelativeToTotalThickness const*p) +inline int soap_PATCH_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__ConvergenceSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness ? "prodml22:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness ? "prodml23:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__ConvergenceSkinRelativeToTotalThickness const*p) +inline int soap_POST_send_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__ConvergenceSkinRelativeToTotalThickness const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness ? "prodml22:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConvergenceSkinRelativeToTotalThickness", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness ? "prodml23:ConvergenceSkinRelativeToTotalThickness" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml22__ConvergenceSkinRelativeToTotalThickness *, const char*, const char*); +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC4 soap_get_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml23__ConvergenceSkinRelativeToTotalThickness *, const char*, const char*); -inline int soap_read_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness *p) +inline int soap_read_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml22__ConvergenceSkinRelativeToTotalThickness *p) +inline int soap_GET_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, const char *URL, prodml23__ConvergenceSkinRelativeToTotalThickness *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml22__ConvergenceSkinRelativeToTotalThickness *p) +inline int soap_POST_recv_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap *soap, prodml23__ConvergenceSkinRelativeToTotalThickness *p) { - if (gsoap_eml2_3::soap_read_prodml22__ConvergenceSkinRelativeToTotalThickness(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ConvergenceSkinRelativeToTotalThickness(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AveragePressure(struct soap*, const char*, int, const prodml22__AveragePressure *, const char*); -SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_in_prodml22__AveragePressure(struct soap*, const char*, prodml22__AveragePressure *, const char*); -SOAP_FMAC1 prodml22__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml22__AveragePressure(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AveragePressure(struct soap*, const char*, int, const prodml23__AveragePressure *, const char*); +SOAP_FMAC3 prodml23__AveragePressure * SOAP_FMAC4 soap_in_prodml23__AveragePressure(struct soap*, const char*, prodml23__AveragePressure *, const char*); +SOAP_FMAC1 prodml23__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml23__AveragePressure(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AveragePressure * soap_new_prodml22__AveragePressure(struct soap *soap, int n = -1) +inline prodml23__AveragePressure * soap_new_prodml23__AveragePressure(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AveragePressure(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AveragePressure(soap, n, NULL, NULL, NULL); } -inline prodml22__AveragePressure * soap_new_req_prodml22__AveragePressure( +inline prodml23__AveragePressure * soap_new_req_prodml23__AveragePressure( struct soap *soap, const std::string& Abbreviation, eml23__PressureMeasure *Pressure, const std::string& Uid__1) { - prodml22__AveragePressure *_p = gsoap_eml2_3::soap_new_prodml22__AveragePressure(soap); + prodml23__AveragePressure *_p = gsoap_eml2_3::soap_new_prodml23__AveragePressure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AveragePressure::Abbreviation = Abbreviation; - _p->prodml22__AveragePressure::Pressure = Pressure; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__AveragePressure::Abbreviation = Abbreviation; + _p->prodml23__AveragePressure::Pressure = Pressure; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__AveragePressure * soap_new_set_prodml22__AveragePressure( +inline prodml23__AveragePressure * soap_new_set_prodml23__AveragePressure( struct soap *soap, const std::string& Abbreviation, eml23__PressureMeasure *Pressure, @@ -110628,104 +110628,104 @@ inline prodml22__AveragePressure * soap_new_set_prodml22__AveragePressure( std::string *Remark__1, const std::string& Uid__1) { - prodml22__AveragePressure *_p = gsoap_eml2_3::soap_new_prodml22__AveragePressure(soap); + prodml23__AveragePressure *_p = gsoap_eml2_3::soap_new_prodml23__AveragePressure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AveragePressure::Abbreviation = Abbreviation; - _p->prodml22__AveragePressure::Pressure = Pressure; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__AveragePressure::Abbreviation = Abbreviation; + _p->prodml23__AveragePressure::Pressure = Pressure; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure const*p) +inline int soap_write_prodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure ? "prodml22:AveragePressure" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure ? "prodml23:AveragePressure" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AveragePressure(struct soap *soap, const char *URL, prodml22__AveragePressure const*p) +inline int soap_PUT_prodml23__AveragePressure(struct soap *soap, const char *URL, prodml23__AveragePressure const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure ? "prodml22:AveragePressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure ? "prodml23:AveragePressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AveragePressure(struct soap *soap, const char *URL, prodml22__AveragePressure const*p) +inline int soap_PATCH_prodml23__AveragePressure(struct soap *soap, const char *URL, prodml23__AveragePressure const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure ? "prodml22:AveragePressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure ? "prodml23:AveragePressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AveragePressure(struct soap *soap, const char *URL, prodml22__AveragePressure const*p) +inline int soap_POST_send_prodml23__AveragePressure(struct soap *soap, const char *URL, prodml23__AveragePressure const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure ? "prodml22:AveragePressure" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AveragePressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure ? "prodml23:AveragePressure" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AveragePressure * SOAP_FMAC4 soap_get_prodml22__AveragePressure(struct soap*, prodml22__AveragePressure *, const char*, const char*); +SOAP_FMAC3 prodml23__AveragePressure * SOAP_FMAC4 soap_get_prodml23__AveragePressure(struct soap*, prodml23__AveragePressure *, const char*, const char*); -inline int soap_read_prodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure *p) +inline int soap_read_prodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AveragePressure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AveragePressure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AveragePressure(struct soap *soap, const char *URL, prodml22__AveragePressure *p) +inline int soap_GET_prodml23__AveragePressure(struct soap *soap, const char *URL, prodml23__AveragePressure *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AveragePressure(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AveragePressure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AveragePressure(struct soap *soap, prodml22__AveragePressure *p) +inline int soap_POST_recv_prodml23__AveragePressure(struct soap *soap, prodml23__AveragePressure *p) { - if (gsoap_eml2_3::soap_read_prodml22__AveragePressure(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AveragePressure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AngleBetweenBoundaries(struct soap*, const char*, int, const prodml22__AngleBetweenBoundaries *, const char*); -SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml22__AngleBetweenBoundaries(struct soap*, const char*, prodml22__AngleBetweenBoundaries *, const char*); -SOAP_FMAC1 prodml22__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml22__AngleBetweenBoundaries(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AngleBetweenBoundaries(struct soap*, const char*, int, const prodml23__AngleBetweenBoundaries *, const char*); +SOAP_FMAC3 prodml23__AngleBetweenBoundaries * SOAP_FMAC4 soap_in_prodml23__AngleBetweenBoundaries(struct soap*, const char*, prodml23__AngleBetweenBoundaries *, const char*); +SOAP_FMAC1 prodml23__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml23__AngleBetweenBoundaries(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AngleBetweenBoundaries * soap_new_prodml22__AngleBetweenBoundaries(struct soap *soap, int n = -1) +inline prodml23__AngleBetweenBoundaries * soap_new_prodml23__AngleBetweenBoundaries(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AngleBetweenBoundaries(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AngleBetweenBoundaries(soap, n, NULL, NULL, NULL); } -inline prodml22__AngleBetweenBoundaries * soap_new_req_prodml22__AngleBetweenBoundaries( +inline prodml23__AngleBetweenBoundaries * soap_new_req_prodml23__AngleBetweenBoundaries( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, const std::string& Uid__1) { - prodml22__AngleBetweenBoundaries *_p = gsoap_eml2_3::soap_new_prodml22__AngleBetweenBoundaries(soap); + prodml23__AngleBetweenBoundaries *_p = gsoap_eml2_3::soap_new_prodml23__AngleBetweenBoundaries(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AngleBetweenBoundaries::Abbreviation = Abbreviation; - _p->prodml22__AngleBetweenBoundaries::Angle = Angle; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__AngleBetweenBoundaries::Abbreviation = Abbreviation; + _p->prodml23__AngleBetweenBoundaries::Angle = Angle; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline prodml22__AngleBetweenBoundaries * soap_new_set_prodml22__AngleBetweenBoundaries( +inline prodml23__AngleBetweenBoundaries * soap_new_set_prodml23__AngleBetweenBoundaries( struct soap *soap, const std::string& Abbreviation, eml23__PlaneAngleMeasure *Angle, @@ -110733,6936 +110733,6936 @@ inline prodml22__AngleBetweenBoundaries * soap_new_set_prodml22__AngleBetweenBou std::string *Remark__1, const std::string& Uid__1) { - prodml22__AngleBetweenBoundaries *_p = gsoap_eml2_3::soap_new_prodml22__AngleBetweenBoundaries(soap); + prodml23__AngleBetweenBoundaries *_p = gsoap_eml2_3::soap_new_prodml23__AngleBetweenBoundaries(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AngleBetweenBoundaries::Abbreviation = Abbreviation; - _p->prodml22__AngleBetweenBoundaries::Angle = Angle; - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID__1; - _p->prodml22__AbstractParameter::Remark = Remark__1; - _p->prodml22__AbstractParameter::Uid = Uid__1; + _p->prodml23__AngleBetweenBoundaries::Abbreviation = Abbreviation; + _p->prodml23__AngleBetweenBoundaries::Angle = Angle; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID__1; + _p->prodml23__AbstractParameter::Remark = Remark__1; + _p->prodml23__AbstractParameter::Uid = Uid__1; } return _p; } -inline int soap_write_prodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries const*p) +inline int soap_write_prodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries ? "prodml22:AngleBetweenBoundaries" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries ? "prodml23:AngleBetweenBoundaries" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml22__AngleBetweenBoundaries const*p) +inline int soap_PUT_prodml23__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml23__AngleBetweenBoundaries const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries ? "prodml22:AngleBetweenBoundaries" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries ? "prodml23:AngleBetweenBoundaries" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml22__AngleBetweenBoundaries const*p) +inline int soap_PATCH_prodml23__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml23__AngleBetweenBoundaries const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries ? "prodml22:AngleBetweenBoundaries" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries ? "prodml23:AngleBetweenBoundaries" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml22__AngleBetweenBoundaries const*p) +inline int soap_POST_send_prodml23__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml23__AngleBetweenBoundaries const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries ? "prodml22:AngleBetweenBoundaries" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AngleBetweenBoundaries", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries ? "prodml23:AngleBetweenBoundaries" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AngleBetweenBoundaries * SOAP_FMAC4 soap_get_prodml22__AngleBetweenBoundaries(struct soap*, prodml22__AngleBetweenBoundaries *, const char*, const char*); +SOAP_FMAC3 prodml23__AngleBetweenBoundaries * SOAP_FMAC4 soap_get_prodml23__AngleBetweenBoundaries(struct soap*, prodml23__AngleBetweenBoundaries *, const char*, const char*); -inline int soap_read_prodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries *p) +inline int soap_read_prodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AngleBetweenBoundaries(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AngleBetweenBoundaries(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml22__AngleBetweenBoundaries *p) +inline int soap_GET_prodml23__AngleBetweenBoundaries(struct soap *soap, const char *URL, prodml23__AngleBetweenBoundaries *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AngleBetweenBoundaries(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AngleBetweenBoundaries(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AngleBetweenBoundaries(struct soap *soap, prodml22__AngleBetweenBoundaries *p) +inline int soap_POST_recv_prodml23__AngleBetweenBoundaries(struct soap *soap, prodml23__AngleBetweenBoundaries *p) { - if (gsoap_eml2_3::soap_read_prodml22__AngleBetweenBoundaries(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AngleBetweenBoundaries(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractParameter(struct soap*, const char*, int, const prodml22__AbstractParameter *, const char*); -SOAP_FMAC3 prodml22__AbstractParameter * SOAP_FMAC4 soap_in_prodml22__AbstractParameter(struct soap*, const char*, prodml22__AbstractParameter *, const char*); -SOAP_FMAC1 prodml22__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml22__AbstractParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractParameter(struct soap*, const char*, int, const prodml23__AbstractParameter *, const char*); +SOAP_FMAC3 prodml23__AbstractParameter * SOAP_FMAC4 soap_in_prodml23__AbstractParameter(struct soap*, const char*, prodml23__AbstractParameter *, const char*); +SOAP_FMAC1 prodml23__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml23__AbstractParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractParameter * soap_new_prodml22__AbstractParameter(struct soap *soap, int n = -1) +inline prodml23__AbstractParameter * soap_new_prodml23__AbstractParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractParameter * soap_new_req_prodml22__AbstractParameter( +inline prodml23__AbstractParameter * soap_new_req_prodml23__AbstractParameter( struct soap *soap, const std::string& Uid) { - prodml22__AbstractParameter *_p = gsoap_eml2_3::soap_new_prodml22__AbstractParameter(soap); + prodml23__AbstractParameter *_p = gsoap_eml2_3::soap_new_prodml23__AbstractParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractParameter::Uid = Uid; + _p->prodml23__AbstractParameter::Uid = Uid; } return _p; } -inline prodml22__AbstractParameter * soap_new_set_prodml22__AbstractParameter( +inline prodml23__AbstractParameter * soap_new_set_prodml23__AbstractParameter( struct soap *soap, std::string *SourceResultRefID, std::string *Remark, const std::string& Uid) { - prodml22__AbstractParameter *_p = gsoap_eml2_3::soap_new_prodml22__AbstractParameter(soap); + prodml23__AbstractParameter *_p = gsoap_eml2_3::soap_new_prodml23__AbstractParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractParameter::SourceResultRefID = SourceResultRefID; - _p->prodml22__AbstractParameter::Remark = Remark; - _p->prodml22__AbstractParameter::Uid = Uid; + _p->prodml23__AbstractParameter::SourceResultRefID = SourceResultRefID; + _p->prodml23__AbstractParameter::Remark = Remark; + _p->prodml23__AbstractParameter::Uid = Uid; } return _p; } -inline int soap_write_prodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter const*p) +inline int soap_write_prodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter ? "prodml22:AbstractParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter ? "prodml23:AbstractParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractParameter(struct soap *soap, const char *URL, prodml22__AbstractParameter const*p) +inline int soap_PUT_prodml23__AbstractParameter(struct soap *soap, const char *URL, prodml23__AbstractParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter ? "prodml22:AbstractParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter ? "prodml23:AbstractParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractParameter(struct soap *soap, const char *URL, prodml22__AbstractParameter const*p) +inline int soap_PATCH_prodml23__AbstractParameter(struct soap *soap, const char *URL, prodml23__AbstractParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter ? "prodml22:AbstractParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter ? "prodml23:AbstractParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractParameter(struct soap *soap, const char *URL, prodml22__AbstractParameter const*p) +inline int soap_POST_send_prodml23__AbstractParameter(struct soap *soap, const char *URL, prodml23__AbstractParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter ? "prodml22:AbstractParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter ? "prodml23:AbstractParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractParameter * SOAP_FMAC4 soap_get_prodml22__AbstractParameter(struct soap*, prodml22__AbstractParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractParameter * SOAP_FMAC4 soap_get_prodml23__AbstractParameter(struct soap*, prodml23__AbstractParameter *, const char*, const char*); -inline int soap_read_prodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter *p) +inline int soap_read_prodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractParameter(struct soap *soap, const char *URL, prodml22__AbstractParameter *p) +inline int soap_GET_prodml23__AbstractParameter(struct soap *soap, const char *URL, prodml23__AbstractParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractParameter(struct soap *soap, prodml22__AbstractParameter *p) +inline int soap_POST_recv_prodml23__AbstractParameter(struct soap *soap, prodml23__AbstractParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellboreBaseModel(struct soap*, const char*, int, const prodml22__WellboreBaseModel *, const char*); -SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__WellboreBaseModel(struct soap*, const char*, prodml22__WellboreBaseModel *, const char*); -SOAP_FMAC1 prodml22__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__WellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellboreBaseModel(struct soap*, const char*, int, const prodml23__WellboreBaseModel *, const char*); +SOAP_FMAC3 prodml23__WellboreBaseModel * SOAP_FMAC4 soap_in_prodml23__WellboreBaseModel(struct soap*, const char*, prodml23__WellboreBaseModel *, const char*); +SOAP_FMAC1 prodml23__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__WellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellboreBaseModel * soap_new_prodml22__WellboreBaseModel(struct soap *soap, int n = -1) +inline prodml23__WellboreBaseModel * soap_new_prodml23__WellboreBaseModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellboreBaseModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellboreBaseModel(soap, n, NULL, NULL, NULL); } -inline prodml22__WellboreBaseModel * soap_new_req_prodml22__WellboreBaseModel( +inline prodml23__WellboreBaseModel * soap_new_req_prodml23__WellboreBaseModel( struct soap *soap, - prodml22__WellboreRadius *WellboreRadius, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient) + prodml23__WellboreRadius *WellboreRadius, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient) { - prodml22__WellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__WellboreBaseModel(soap); + prodml23__WellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__WellboreBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient; } return _p; } -inline prodml22__WellboreBaseModel * soap_new_set_prodml22__WellboreBaseModel( +inline prodml23__WellboreBaseModel * soap_new_set_prodml23__WellboreBaseModel( struct soap *soap, - prodml22__WellboreRadius *WellboreRadius, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient, - prodml22__WellboreVolume *WellboreVolume, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility, - prodml22__TubingInteralDiameter *TubingInteralDiameter, - prodml22__FluidDensity *FluidDensity, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType, + prodml23__WellboreRadius *WellboreRadius, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient, + prodml23__WellboreVolume *WellboreVolume, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility, + prodml23__TubingInteralDiameter *TubingInteralDiameter, + prodml23__FluidDensity *FluidDensity, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType, std::string *Comment__1, std::string *Method__1) { - prodml22__WellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__WellboreBaseModel(soap); + prodml23__WellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__WellboreBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType; - _p->prodml22__AbstractModelSection::Comment = Comment__1; - _p->prodml22__AbstractModelSection::Method = Method__1; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType; + _p->prodml23__AbstractModelSection::Comment = Comment__1; + _p->prodml23__AbstractModelSection::Method = Method__1; } return _p; } -inline int soap_write_prodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel const*p) +inline int soap_write_prodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel ? "prodml22:WellboreBaseModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel ? "prodml23:WellboreBaseModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellboreBaseModel(struct soap *soap, const char *URL, prodml22__WellboreBaseModel const*p) +inline int soap_PUT_prodml23__WellboreBaseModel(struct soap *soap, const char *URL, prodml23__WellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel ? "prodml22:WellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel ? "prodml23:WellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellboreBaseModel(struct soap *soap, const char *URL, prodml22__WellboreBaseModel const*p) +inline int soap_PATCH_prodml23__WellboreBaseModel(struct soap *soap, const char *URL, prodml23__WellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel ? "prodml22:WellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel ? "prodml23:WellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellboreBaseModel(struct soap *soap, const char *URL, prodml22__WellboreBaseModel const*p) +inline int soap_POST_send_prodml23__WellboreBaseModel(struct soap *soap, const char *URL, prodml23__WellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel ? "prodml22:WellboreBaseModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel ? "prodml23:WellboreBaseModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellboreBaseModel * SOAP_FMAC4 soap_get_prodml22__WellboreBaseModel(struct soap*, prodml22__WellboreBaseModel *, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreBaseModel * SOAP_FMAC4 soap_get_prodml23__WellboreBaseModel(struct soap*, prodml23__WellboreBaseModel *, const char*, const char*); -inline int soap_read_prodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel *p) +inline int soap_read_prodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellboreBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellboreBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellboreBaseModel(struct soap *soap, const char *URL, prodml22__WellboreBaseModel *p) +inline int soap_GET_prodml23__WellboreBaseModel(struct soap *soap, const char *URL, prodml23__WellboreBaseModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellboreBaseModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellboreBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellboreBaseModel(struct soap *soap, prodml22__WellboreBaseModel *p) +inline int soap_POST_recv_prodml23__WellboreBaseModel(struct soap *soap, prodml23__WellboreBaseModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellboreBaseModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellboreBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__UShapedFaultsModel(struct soap*, const char*, int, const prodml22__UShapedFaultsModel *, const char*); -SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml22__UShapedFaultsModel(struct soap*, const char*, prodml22__UShapedFaultsModel *, const char*); -SOAP_FMAC1 prodml22__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__UShapedFaultsModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__UShapedFaultsModel(struct soap*, const char*, int, const prodml23__UShapedFaultsModel *, const char*); +SOAP_FMAC3 prodml23__UShapedFaultsModel * SOAP_FMAC4 soap_in_prodml23__UShapedFaultsModel(struct soap*, const char*, prodml23__UShapedFaultsModel *, const char*); +SOAP_FMAC1 prodml23__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__UShapedFaultsModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__UShapedFaultsModel * soap_new_prodml22__UShapedFaultsModel(struct soap *soap, int n = -1) +inline prodml23__UShapedFaultsModel * soap_new_prodml23__UShapedFaultsModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__UShapedFaultsModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__UShapedFaultsModel(soap, n, NULL, NULL, NULL); } -inline prodml22__UShapedFaultsModel * soap_new_req_prodml22__UShapedFaultsModel( +inline prodml23__UShapedFaultsModel * soap_new_req_prodml23__UShapedFaultsModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary2 *DistanceToBoundary2, - prodml22__DistanceToBoundary3 *DistanceToBoundary3, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary2Type Boundary2Type, - prodml22__Boundary3Type Boundary3Type) + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary2 *DistanceToBoundary2, + prodml23__DistanceToBoundary3 *DistanceToBoundary3, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary2Type Boundary2Type, + prodml23__Boundary3Type Boundary3Type) { - prodml22__UShapedFaultsModel *_p = gsoap_eml2_3::soap_new_prodml22__UShapedFaultsModel(soap); + prodml23__UShapedFaultsModel *_p = gsoap_eml2_3::soap_new_prodml23__UShapedFaultsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__UShapedFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__UShapedFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; - _p->prodml22__UShapedFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; - _p->prodml22__UShapedFaultsModel::Boundary1Type = Boundary1Type; - _p->prodml22__UShapedFaultsModel::Boundary2Type = Boundary2Type; - _p->prodml22__UShapedFaultsModel::Boundary3Type = Boundary3Type; + _p->prodml23__UShapedFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__UShapedFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; + _p->prodml23__UShapedFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; + _p->prodml23__UShapedFaultsModel::Boundary1Type = Boundary1Type; + _p->prodml23__UShapedFaultsModel::Boundary2Type = Boundary2Type; + _p->prodml23__UShapedFaultsModel::Boundary3Type = Boundary3Type; } return _p; } -inline prodml22__UShapedFaultsModel * soap_new_set_prodml22__UShapedFaultsModel( +inline prodml23__UShapedFaultsModel * soap_new_set_prodml23__UShapedFaultsModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary2 *DistanceToBoundary2, - prodml22__DistanceToBoundary3 *DistanceToBoundary3, - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary2Type Boundary2Type, - prodml22__Boundary3Type Boundary3Type, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary2 *DistanceToBoundary2, + prodml23__DistanceToBoundary3 *DistanceToBoundary3, + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary2Type Boundary2Type, + prodml23__Boundary3Type Boundary3Type, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__UShapedFaultsModel *_p = gsoap_eml2_3::soap_new_prodml22__UShapedFaultsModel(soap); + prodml23__UShapedFaultsModel *_p = gsoap_eml2_3::soap_new_prodml23__UShapedFaultsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__UShapedFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__UShapedFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; - _p->prodml22__UShapedFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; - _p->prodml22__UShapedFaultsModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; - _p->prodml22__UShapedFaultsModel::Boundary1Type = Boundary1Type; - _p->prodml22__UShapedFaultsModel::Boundary2Type = Boundary2Type; - _p->prodml22__UShapedFaultsModel::Boundary3Type = Boundary3Type; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__UShapedFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__UShapedFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; + _p->prodml23__UShapedFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; + _p->prodml23__UShapedFaultsModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; + _p->prodml23__UShapedFaultsModel::Boundary1Type = Boundary1Type; + _p->prodml23__UShapedFaultsModel::Boundary2Type = Boundary2Type; + _p->prodml23__UShapedFaultsModel::Boundary3Type = Boundary3Type; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__UShapedFaultsModel(struct soap *soap, prodml22__UShapedFaultsModel const*p) +inline int soap_write_prodml23__UShapedFaultsModel(struct soap *soap, prodml23__UShapedFaultsModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel ? "prodml22:UShapedFaultsModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel ? "prodml23:UShapedFaultsModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__UShapedFaultsModel(struct soap *soap, const char *URL, prodml22__UShapedFaultsModel const*p) +inline int soap_PUT_prodml23__UShapedFaultsModel(struct soap *soap, const char *URL, prodml23__UShapedFaultsModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel ? "prodml22:UShapedFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel ? "prodml23:UShapedFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__UShapedFaultsModel(struct soap *soap, const char *URL, prodml22__UShapedFaultsModel const*p) +inline int soap_PATCH_prodml23__UShapedFaultsModel(struct soap *soap, const char *URL, prodml23__UShapedFaultsModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel ? "prodml22:UShapedFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel ? "prodml23:UShapedFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__UShapedFaultsModel(struct soap *soap, const char *URL, prodml22__UShapedFaultsModel const*p) +inline int soap_POST_send_prodml23__UShapedFaultsModel(struct soap *soap, const char *URL, prodml23__UShapedFaultsModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel ? "prodml22:UShapedFaultsModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:UShapedFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel ? "prodml23:UShapedFaultsModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__UShapedFaultsModel * SOAP_FMAC4 soap_get_prodml22__UShapedFaultsModel(struct soap*, prodml22__UShapedFaultsModel *, const char*, const char*); +SOAP_FMAC3 prodml23__UShapedFaultsModel * SOAP_FMAC4 soap_get_prodml23__UShapedFaultsModel(struct soap*, prodml23__UShapedFaultsModel *, const char*, const char*); -inline int soap_read_prodml22__UShapedFaultsModel(struct soap *soap, prodml22__UShapedFaultsModel *p) +inline int soap_read_prodml23__UShapedFaultsModel(struct soap *soap, prodml23__UShapedFaultsModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__UShapedFaultsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__UShapedFaultsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__UShapedFaultsModel(struct soap *soap, const char *URL, prodml22__UShapedFaultsModel *p) +inline int soap_GET_prodml23__UShapedFaultsModel(struct soap *soap, const char *URL, prodml23__UShapedFaultsModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__UShapedFaultsModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__UShapedFaultsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__UShapedFaultsModel(struct soap *soap, prodml22__UShapedFaultsModel *p) +inline int soap_POST_recv_prodml23__UShapedFaultsModel(struct soap *soap, prodml23__UShapedFaultsModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__UShapedFaultsModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__UShapedFaultsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TwoParallelFaultsModel(struct soap*, const char*, int, const prodml22__TwoParallelFaultsModel *, const char*); -SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoParallelFaultsModel(struct soap*, const char*, prodml22__TwoParallelFaultsModel *, const char*); -SOAP_FMAC1 prodml22__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__TwoParallelFaultsModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TwoParallelFaultsModel(struct soap*, const char*, int, const prodml23__TwoParallelFaultsModel *, const char*); +SOAP_FMAC3 prodml23__TwoParallelFaultsModel * SOAP_FMAC4 soap_in_prodml23__TwoParallelFaultsModel(struct soap*, const char*, prodml23__TwoParallelFaultsModel *, const char*); +SOAP_FMAC1 prodml23__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__TwoParallelFaultsModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TwoParallelFaultsModel * soap_new_prodml22__TwoParallelFaultsModel(struct soap *soap, int n = -1) +inline prodml23__TwoParallelFaultsModel * soap_new_prodml23__TwoParallelFaultsModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TwoParallelFaultsModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TwoParallelFaultsModel(soap, n, NULL, NULL, NULL); } -inline prodml22__TwoParallelFaultsModel * soap_new_req_prodml22__TwoParallelFaultsModel( +inline prodml23__TwoParallelFaultsModel * soap_new_req_prodml23__TwoParallelFaultsModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary3 *DistanceToBoundary3, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary3Type Boundary3Type) + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary3 *DistanceToBoundary3, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary3Type Boundary3Type) { - prodml22__TwoParallelFaultsModel *_p = gsoap_eml2_3::soap_new_prodml22__TwoParallelFaultsModel(soap); + prodml23__TwoParallelFaultsModel *_p = gsoap_eml2_3::soap_new_prodml23__TwoParallelFaultsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TwoParallelFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__TwoParallelFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; - _p->prodml22__TwoParallelFaultsModel::Boundary1Type = Boundary1Type; - _p->prodml22__TwoParallelFaultsModel::Boundary3Type = Boundary3Type; + _p->prodml23__TwoParallelFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__TwoParallelFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; + _p->prodml23__TwoParallelFaultsModel::Boundary1Type = Boundary1Type; + _p->prodml23__TwoParallelFaultsModel::Boundary3Type = Boundary3Type; } return _p; } -inline prodml22__TwoParallelFaultsModel * soap_new_set_prodml22__TwoParallelFaultsModel( +inline prodml23__TwoParallelFaultsModel * soap_new_set_prodml23__TwoParallelFaultsModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary3 *DistanceToBoundary3, - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary3Type Boundary3Type, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary3 *DistanceToBoundary3, + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary3Type Boundary3Type, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__TwoParallelFaultsModel *_p = gsoap_eml2_3::soap_new_prodml22__TwoParallelFaultsModel(soap); + prodml23__TwoParallelFaultsModel *_p = gsoap_eml2_3::soap_new_prodml23__TwoParallelFaultsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TwoParallelFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__TwoParallelFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; - _p->prodml22__TwoParallelFaultsModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; - _p->prodml22__TwoParallelFaultsModel::Boundary1Type = Boundary1Type; - _p->prodml22__TwoParallelFaultsModel::Boundary3Type = Boundary3Type; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__TwoParallelFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__TwoParallelFaultsModel::DistanceToBoundary3 = DistanceToBoundary3; + _p->prodml23__TwoParallelFaultsModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; + _p->prodml23__TwoParallelFaultsModel::Boundary1Type = Boundary1Type; + _p->prodml23__TwoParallelFaultsModel::Boundary3Type = Boundary3Type; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__TwoParallelFaultsModel(struct soap *soap, prodml22__TwoParallelFaultsModel const*p) +inline int soap_write_prodml23__TwoParallelFaultsModel(struct soap *soap, prodml23__TwoParallelFaultsModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel ? "prodml22:TwoParallelFaultsModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel ? "prodml23:TwoParallelFaultsModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml22__TwoParallelFaultsModel const*p) +inline int soap_PUT_prodml23__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml23__TwoParallelFaultsModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel ? "prodml22:TwoParallelFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel ? "prodml23:TwoParallelFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml22__TwoParallelFaultsModel const*p) +inline int soap_PATCH_prodml23__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml23__TwoParallelFaultsModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel ? "prodml22:TwoParallelFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel ? "prodml23:TwoParallelFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml22__TwoParallelFaultsModel const*p) +inline int soap_POST_send_prodml23__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml23__TwoParallelFaultsModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel ? "prodml22:TwoParallelFaultsModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoParallelFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel ? "prodml23:TwoParallelFaultsModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TwoParallelFaultsModel * SOAP_FMAC4 soap_get_prodml22__TwoParallelFaultsModel(struct soap*, prodml22__TwoParallelFaultsModel *, const char*, const char*); +SOAP_FMAC3 prodml23__TwoParallelFaultsModel * SOAP_FMAC4 soap_get_prodml23__TwoParallelFaultsModel(struct soap*, prodml23__TwoParallelFaultsModel *, const char*, const char*); -inline int soap_read_prodml22__TwoParallelFaultsModel(struct soap *soap, prodml22__TwoParallelFaultsModel *p) +inline int soap_read_prodml23__TwoParallelFaultsModel(struct soap *soap, prodml23__TwoParallelFaultsModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TwoParallelFaultsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TwoParallelFaultsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml22__TwoParallelFaultsModel *p) +inline int soap_GET_prodml23__TwoParallelFaultsModel(struct soap *soap, const char *URL, prodml23__TwoParallelFaultsModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TwoParallelFaultsModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TwoParallelFaultsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TwoParallelFaultsModel(struct soap *soap, prodml22__TwoParallelFaultsModel *p) +inline int soap_POST_recv_prodml23__TwoParallelFaultsModel(struct soap *soap, prodml23__TwoParallelFaultsModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__TwoParallelFaultsModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TwoParallelFaultsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TwoIntersectingFaultsModel(struct soap*, const char*, int, const prodml22__TwoIntersectingFaultsModel *, const char*); -SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml22__TwoIntersectingFaultsModel(struct soap*, const char*, prodml22__TwoIntersectingFaultsModel *, const char*); -SOAP_FMAC1 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__TwoIntersectingFaultsModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TwoIntersectingFaultsModel(struct soap*, const char*, int, const prodml23__TwoIntersectingFaultsModel *, const char*); +SOAP_FMAC3 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_in_prodml23__TwoIntersectingFaultsModel(struct soap*, const char*, prodml23__TwoIntersectingFaultsModel *, const char*); +SOAP_FMAC1 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__TwoIntersectingFaultsModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TwoIntersectingFaultsModel * soap_new_prodml22__TwoIntersectingFaultsModel(struct soap *soap, int n = -1) +inline prodml23__TwoIntersectingFaultsModel * soap_new_prodml23__TwoIntersectingFaultsModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TwoIntersectingFaultsModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TwoIntersectingFaultsModel(soap, n, NULL, NULL, NULL); } -inline prodml22__TwoIntersectingFaultsModel * soap_new_req_prodml22__TwoIntersectingFaultsModel( +inline prodml23__TwoIntersectingFaultsModel * soap_new_req_prodml23__TwoIntersectingFaultsModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary2 *DistanceToBoundary2, - prodml22__AngleBetweenBoundaries *AngleBetweenBoundaries, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary2Type Boundary2Type) + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary2 *DistanceToBoundary2, + prodml23__AngleBetweenBoundaries *AngleBetweenBoundaries, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary2Type Boundary2Type) { - prodml22__TwoIntersectingFaultsModel *_p = gsoap_eml2_3::soap_new_prodml22__TwoIntersectingFaultsModel(soap); + prodml23__TwoIntersectingFaultsModel *_p = gsoap_eml2_3::soap_new_prodml23__TwoIntersectingFaultsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; - _p->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries = AngleBetweenBoundaries; - _p->prodml22__TwoIntersectingFaultsModel::Boundary1Type = Boundary1Type; - _p->prodml22__TwoIntersectingFaultsModel::Boundary2Type = Boundary2Type; + _p->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; + _p->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries = AngleBetweenBoundaries; + _p->prodml23__TwoIntersectingFaultsModel::Boundary1Type = Boundary1Type; + _p->prodml23__TwoIntersectingFaultsModel::Boundary2Type = Boundary2Type; } return _p; } -inline prodml22__TwoIntersectingFaultsModel * soap_new_set_prodml22__TwoIntersectingFaultsModel( +inline prodml23__TwoIntersectingFaultsModel * soap_new_set_prodml23__TwoIntersectingFaultsModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary2 *DistanceToBoundary2, - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, - prodml22__AngleBetweenBoundaries *AngleBetweenBoundaries, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary2Type Boundary2Type, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary2 *DistanceToBoundary2, + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, + prodml23__AngleBetweenBoundaries *AngleBetweenBoundaries, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary2Type Boundary2Type, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__TwoIntersectingFaultsModel *_p = gsoap_eml2_3::soap_new_prodml22__TwoIntersectingFaultsModel(soap); + prodml23__TwoIntersectingFaultsModel *_p = gsoap_eml2_3::soap_new_prodml23__TwoIntersectingFaultsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__TwoIntersectingFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; - _p->prodml22__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; - _p->prodml22__TwoIntersectingFaultsModel::AngleBetweenBoundaries = AngleBetweenBoundaries; - _p->prodml22__TwoIntersectingFaultsModel::Boundary1Type = Boundary1Type; - _p->prodml22__TwoIntersectingFaultsModel::Boundary2Type = Boundary2Type; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__TwoIntersectingFaultsModel::DistanceToBoundary2 = DistanceToBoundary2; + _p->prodml23__TwoIntersectingFaultsModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; + _p->prodml23__TwoIntersectingFaultsModel::AngleBetweenBoundaries = AngleBetweenBoundaries; + _p->prodml23__TwoIntersectingFaultsModel::Boundary1Type = Boundary1Type; + _p->prodml23__TwoIntersectingFaultsModel::Boundary2Type = Boundary2Type; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__TwoIntersectingFaultsModel(struct soap *soap, prodml22__TwoIntersectingFaultsModel const*p) +inline int soap_write_prodml23__TwoIntersectingFaultsModel(struct soap *soap, prodml23__TwoIntersectingFaultsModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel ? "prodml22:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel ? "prodml23:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml22__TwoIntersectingFaultsModel const*p) +inline int soap_PUT_prodml23__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml23__TwoIntersectingFaultsModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel ? "prodml22:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel ? "prodml23:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml22__TwoIntersectingFaultsModel const*p) +inline int soap_PATCH_prodml23__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml23__TwoIntersectingFaultsModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel ? "prodml22:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel ? "prodml23:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml22__TwoIntersectingFaultsModel const*p) +inline int soap_POST_send_prodml23__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml23__TwoIntersectingFaultsModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel ? "prodml22:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TwoIntersectingFaultsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel ? "prodml23:TwoIntersectingFaultsModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_get_prodml22__TwoIntersectingFaultsModel(struct soap*, prodml22__TwoIntersectingFaultsModel *, const char*, const char*); +SOAP_FMAC3 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC4 soap_get_prodml23__TwoIntersectingFaultsModel(struct soap*, prodml23__TwoIntersectingFaultsModel *, const char*, const char*); -inline int soap_read_prodml22__TwoIntersectingFaultsModel(struct soap *soap, prodml22__TwoIntersectingFaultsModel *p) +inline int soap_read_prodml23__TwoIntersectingFaultsModel(struct soap *soap, prodml23__TwoIntersectingFaultsModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TwoIntersectingFaultsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TwoIntersectingFaultsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml22__TwoIntersectingFaultsModel *p) +inline int soap_GET_prodml23__TwoIntersectingFaultsModel(struct soap *soap, const char *URL, prodml23__TwoIntersectingFaultsModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TwoIntersectingFaultsModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TwoIntersectingFaultsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TwoIntersectingFaultsModel(struct soap *soap, prodml22__TwoIntersectingFaultsModel *p) +inline int soap_POST_recv_prodml23__TwoIntersectingFaultsModel(struct soap *soap, prodml23__TwoIntersectingFaultsModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__TwoIntersectingFaultsModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TwoIntersectingFaultsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlantedPartiallyPenetratingModel(struct soap*, const char*, int, const prodml22__SlantedPartiallyPenetratingModel *, const char*); -SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__SlantedPartiallyPenetratingModel(struct soap*, const char*, prodml22__SlantedPartiallyPenetratingModel *, const char*); -SOAP_FMAC1 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlantedPartiallyPenetratingModel(struct soap*, const char*, int, const prodml23__SlantedPartiallyPenetratingModel *, const char*); +SOAP_FMAC3 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml23__SlantedPartiallyPenetratingModel(struct soap*, const char*, prodml23__SlantedPartiallyPenetratingModel *, const char*); +SOAP_FMAC1 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SlantedPartiallyPenetratingModel * soap_new_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, int n = -1) +inline prodml23__SlantedPartiallyPenetratingModel * soap_new_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(soap, n, NULL, NULL, NULL); } -inline prodml22__SlantedPartiallyPenetratingModel * soap_new_req_prodml22__SlantedPartiallyPenetratingModel( +inline prodml23__SlantedPartiallyPenetratingModel * soap_new_req_prodml23__SlantedPartiallyPenetratingModel( struct soap *soap, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle, - prodml22__PerforatedLength *PerforatedLength, - prodml22__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__WellboreDeviationAngle *WellboreDeviationAngle, + prodml23__PerforatedLength *PerforatedLength, + prodml23__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__SlantedPartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml22__SlantedPartiallyPenetratingModel(soap); + prodml23__SlantedPartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml23__SlantedPartiallyPenetratingModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; - _p->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength = PerforatedLength; - _p->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; + _p->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength = PerforatedLength; + _p->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__SlantedPartiallyPenetratingModel * soap_new_set_prodml22__SlantedPartiallyPenetratingModel( +inline prodml23__SlantedPartiallyPenetratingModel * soap_new_set_prodml23__SlantedPartiallyPenetratingModel( struct soap *soap, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__PerforatedLength *PerforatedLength, - prodml22__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, - prodml22__OrientationWellTrajectory *OrientationWellTrajectory, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__PerforatedLength *PerforatedLength, + prodml23__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, + prodml23__OrientationWellTrajectory *OrientationWellTrajectory, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__SlantedPartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml22__SlantedPartiallyPenetratingModel(soap); + prodml23__SlantedPartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml23__SlantedPartiallyPenetratingModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlantedPartiallyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; - _p->prodml22__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__SlantedPartiallyPenetratingModel::PerforatedLength = PerforatedLength; - _p->prodml22__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; - _p->prodml22__SlantedPartiallyPenetratingModel::OrientationWellTrajectory = OrientationWellTrajectory; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__SlantedPartiallyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; + _p->prodml23__SlantedPartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__SlantedPartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__SlantedPartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__SlantedPartiallyPenetratingModel::PerforatedLength = PerforatedLength; + _p->prodml23__SlantedPartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; + _p->prodml23__SlantedPartiallyPenetratingModel::OrientationWellTrajectory = OrientationWellTrajectory; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, prodml22__SlantedPartiallyPenetratingModel const*p) +inline int soap_write_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, prodml23__SlantedPartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel ? "prodml22:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel ? "prodml23:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedPartiallyPenetratingModel const*p) +inline int soap_PUT_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedPartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel ? "prodml22:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel ? "prodml23:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedPartiallyPenetratingModel const*p) +inline int soap_PATCH_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedPartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel ? "prodml22:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel ? "prodml23:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedPartiallyPenetratingModel const*p) +inline int soap_POST_send_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedPartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel ? "prodml22:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedPartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel ? "prodml23:SlantedPartiallyPenetratingModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml22__SlantedPartiallyPenetratingModel(struct soap*, prodml22__SlantedPartiallyPenetratingModel *, const char*, const char*); +SOAP_FMAC3 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml23__SlantedPartiallyPenetratingModel(struct soap*, prodml23__SlantedPartiallyPenetratingModel *, const char*, const char*); -inline int soap_read_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, prodml22__SlantedPartiallyPenetratingModel *p) +inline int soap_read_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, prodml23__SlantedPartiallyPenetratingModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SlantedPartiallyPenetratingModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SlantedPartiallyPenetratingModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedPartiallyPenetratingModel *p) +inline int soap_GET_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedPartiallyPenetratingModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SlantedPartiallyPenetratingModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SlantedPartiallyPenetratingModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SlantedPartiallyPenetratingModel(struct soap *soap, prodml22__SlantedPartiallyPenetratingModel *p) +inline int soap_POST_recv_prodml23__SlantedPartiallyPenetratingModel(struct soap *soap, prodml23__SlantedPartiallyPenetratingModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__SlantedPartiallyPenetratingModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SlantedPartiallyPenetratingModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlantedFullyPenetratingModel(struct soap*, const char*, int, const prodml22__SlantedFullyPenetratingModel *, const char*); -SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__SlantedFullyPenetratingModel(struct soap*, const char*, prodml22__SlantedFullyPenetratingModel *, const char*); -SOAP_FMAC1 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__SlantedFullyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlantedFullyPenetratingModel(struct soap*, const char*, int, const prodml23__SlantedFullyPenetratingModel *, const char*); +SOAP_FMAC3 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_in_prodml23__SlantedFullyPenetratingModel(struct soap*, const char*, prodml23__SlantedFullyPenetratingModel *, const char*); +SOAP_FMAC1 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__SlantedFullyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SlantedFullyPenetratingModel * soap_new_prodml22__SlantedFullyPenetratingModel(struct soap *soap, int n = -1) +inline prodml23__SlantedFullyPenetratingModel * soap_new_prodml23__SlantedFullyPenetratingModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SlantedFullyPenetratingModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SlantedFullyPenetratingModel(soap, n, NULL, NULL, NULL); } -inline prodml22__SlantedFullyPenetratingModel * soap_new_req_prodml22__SlantedFullyPenetratingModel( +inline prodml23__SlantedFullyPenetratingModel * soap_new_req_prodml23__SlantedFullyPenetratingModel( struct soap *soap, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__WellboreDeviationAngle *WellboreDeviationAngle, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__SlantedFullyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml22__SlantedFullyPenetratingModel(soap); + prodml23__SlantedFullyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml23__SlantedFullyPenetratingModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__SlantedFullyPenetratingModel * soap_new_set_prodml22__SlantedFullyPenetratingModel( +inline prodml23__SlantedFullyPenetratingModel * soap_new_set_prodml23__SlantedFullyPenetratingModel( struct soap *soap, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__OrientationWellTrajectory *OrientationWellTrajectory, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__OrientationWellTrajectory *OrientationWellTrajectory, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__SlantedFullyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml22__SlantedFullyPenetratingModel(soap); + prodml23__SlantedFullyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml23__SlantedFullyPenetratingModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlantedFullyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; - _p->prodml22__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__SlantedFullyPenetratingModel::OrientationWellTrajectory = OrientationWellTrajectory; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__SlantedFullyPenetratingModel::WellboreDeviationAngle = WellboreDeviationAngle; + _p->prodml23__SlantedFullyPenetratingModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__SlantedFullyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__SlantedFullyPenetratingModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__SlantedFullyPenetratingModel::OrientationWellTrajectory = OrientationWellTrajectory; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__SlantedFullyPenetratingModel(struct soap *soap, prodml22__SlantedFullyPenetratingModel const*p) +inline int soap_write_prodml23__SlantedFullyPenetratingModel(struct soap *soap, prodml23__SlantedFullyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel ? "prodml22:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel ? "prodml23:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedFullyPenetratingModel const*p) +inline int soap_PUT_prodml23__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedFullyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel ? "prodml22:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel ? "prodml23:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedFullyPenetratingModel const*p) +inline int soap_PATCH_prodml23__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedFullyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel ? "prodml22:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel ? "prodml23:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedFullyPenetratingModel const*p) +inline int soap_POST_send_prodml23__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedFullyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel ? "prodml22:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlantedFullyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel ? "prodml23:SlantedFullyPenetratingModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_get_prodml22__SlantedFullyPenetratingModel(struct soap*, prodml22__SlantedFullyPenetratingModel *, const char*, const char*); +SOAP_FMAC3 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC4 soap_get_prodml23__SlantedFullyPenetratingModel(struct soap*, prodml23__SlantedFullyPenetratingModel *, const char*, const char*); -inline int soap_read_prodml22__SlantedFullyPenetratingModel(struct soap *soap, prodml22__SlantedFullyPenetratingModel *p) +inline int soap_read_prodml23__SlantedFullyPenetratingModel(struct soap *soap, prodml23__SlantedFullyPenetratingModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SlantedFullyPenetratingModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SlantedFullyPenetratingModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml22__SlantedFullyPenetratingModel *p) +inline int soap_GET_prodml23__SlantedFullyPenetratingModel(struct soap *soap, const char *URL, prodml23__SlantedFullyPenetratingModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SlantedFullyPenetratingModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SlantedFullyPenetratingModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SlantedFullyPenetratingModel(struct soap *soap, prodml22__SlantedFullyPenetratingModel *p) +inline int soap_POST_recv_prodml23__SlantedFullyPenetratingModel(struct soap *soap, prodml23__SlantedFullyPenetratingModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__SlantedFullyPenetratingModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SlantedFullyPenetratingModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleFaultModel(struct soap*, const char*, int, const prodml22__SingleFaultModel *, const char*); -SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_in_prodml22__SingleFaultModel(struct soap*, const char*, prodml22__SingleFaultModel *, const char*); -SOAP_FMAC1 prodml22__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleFaultModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleFaultModel(struct soap*, const char*, int, const prodml23__SingleFaultModel *, const char*); +SOAP_FMAC3 prodml23__SingleFaultModel * SOAP_FMAC4 soap_in_prodml23__SingleFaultModel(struct soap*, const char*, prodml23__SingleFaultModel *, const char*); +SOAP_FMAC1 prodml23__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleFaultModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SingleFaultModel * soap_new_prodml22__SingleFaultModel(struct soap *soap, int n = -1) +inline prodml23__SingleFaultModel * soap_new_prodml23__SingleFaultModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SingleFaultModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SingleFaultModel(soap, n, NULL, NULL, NULL); } -inline prodml22__SingleFaultModel * soap_new_req_prodml22__SingleFaultModel( +inline prodml23__SingleFaultModel * soap_new_req_prodml23__SingleFaultModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__Boundary1Type Boundary1Type) + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__Boundary1Type Boundary1Type) { - prodml22__SingleFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__SingleFaultModel(soap); + prodml23__SingleFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__SingleFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleFaultModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__SingleFaultModel::Boundary1Type = Boundary1Type; + _p->prodml23__SingleFaultModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__SingleFaultModel::Boundary1Type = Boundary1Type; } return _p; } -inline prodml22__SingleFaultModel * soap_new_set_prodml22__SingleFaultModel( +inline prodml23__SingleFaultModel * soap_new_set_prodml23__SingleFaultModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, - prodml22__Boundary1Type Boundary1Type, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, + prodml23__Boundary1Type Boundary1Type, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__SingleFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__SingleFaultModel(soap); + prodml23__SingleFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__SingleFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleFaultModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__SingleFaultModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; - _p->prodml22__SingleFaultModel::Boundary1Type = Boundary1Type; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__SingleFaultModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__SingleFaultModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; + _p->prodml23__SingleFaultModel::Boundary1Type = Boundary1Type; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__SingleFaultModel(struct soap *soap, prodml22__SingleFaultModel const*p) +inline int soap_write_prodml23__SingleFaultModel(struct soap *soap, prodml23__SingleFaultModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel ? "prodml22:SingleFaultModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel ? "prodml23:SingleFaultModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SingleFaultModel(struct soap *soap, const char *URL, prodml22__SingleFaultModel const*p) +inline int soap_PUT_prodml23__SingleFaultModel(struct soap *soap, const char *URL, prodml23__SingleFaultModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel ? "prodml22:SingleFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel ? "prodml23:SingleFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SingleFaultModel(struct soap *soap, const char *URL, prodml22__SingleFaultModel const*p) +inline int soap_PATCH_prodml23__SingleFaultModel(struct soap *soap, const char *URL, prodml23__SingleFaultModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel ? "prodml22:SingleFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel ? "prodml23:SingleFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SingleFaultModel(struct soap *soap, const char *URL, prodml22__SingleFaultModel const*p) +inline int soap_POST_send_prodml23__SingleFaultModel(struct soap *soap, const char *URL, prodml23__SingleFaultModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel ? "prodml22:SingleFaultModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel ? "prodml23:SingleFaultModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SingleFaultModel * SOAP_FMAC4 soap_get_prodml22__SingleFaultModel(struct soap*, prodml22__SingleFaultModel *, const char*, const char*); +SOAP_FMAC3 prodml23__SingleFaultModel * SOAP_FMAC4 soap_get_prodml23__SingleFaultModel(struct soap*, prodml23__SingleFaultModel *, const char*, const char*); -inline int soap_read_prodml22__SingleFaultModel(struct soap *soap, prodml22__SingleFaultModel *p) +inline int soap_read_prodml23__SingleFaultModel(struct soap *soap, prodml23__SingleFaultModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SingleFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SingleFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SingleFaultModel(struct soap *soap, const char *URL, prodml22__SingleFaultModel *p) +inline int soap_GET_prodml23__SingleFaultModel(struct soap *soap, const char *URL, prodml23__SingleFaultModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SingleFaultModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SingleFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SingleFaultModel(struct soap *soap, prodml22__SingleFaultModel *p) +inline int soap_POST_recv_prodml23__SingleFaultModel(struct soap *soap, prodml23__SingleFaultModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__SingleFaultModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SingleFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirBaseModel(struct soap*, const char*, int, const prodml22__ReservoirBaseModel *, const char*); -SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml22__ReservoirBaseModel(struct soap*, const char*, prodml22__ReservoirBaseModel *, const char*); -SOAP_FMAC1 prodml22__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__ReservoirBaseModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirBaseModel(struct soap*, const char*, int, const prodml23__ReservoirBaseModel *, const char*); +SOAP_FMAC3 prodml23__ReservoirBaseModel * SOAP_FMAC4 soap_in_prodml23__ReservoirBaseModel(struct soap*, const char*, prodml23__ReservoirBaseModel *, const char*); +SOAP_FMAC1 prodml23__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__ReservoirBaseModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReservoirBaseModel * soap_new_prodml22__ReservoirBaseModel(struct soap *soap, int n = -1) +inline prodml23__ReservoirBaseModel * soap_new_prodml23__ReservoirBaseModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReservoirBaseModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReservoirBaseModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ReservoirBaseModel * soap_new_req_prodml22__ReservoirBaseModel( +inline prodml23__ReservoirBaseModel * soap_new_req_prodml23__ReservoirBaseModel( struct soap *soap, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability, - prodml22__TotalThickness *TotalThickness, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct, - prodml22__Porosity *Porosity, - prodml22__InitialPressure *InitialPressure) + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability, + prodml23__TotalThickness *TotalThickness, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct, + prodml23__Porosity *Porosity, + prodml23__InitialPressure *InitialPressure) { - prodml22__ReservoirBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__ReservoirBaseModel(soap); + prodml23__ReservoirBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__ReservoirBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure; } return _p; } -inline prodml22__ReservoirBaseModel * soap_new_set_prodml22__ReservoirBaseModel( +inline prodml23__ReservoirBaseModel * soap_new_set_prodml23__ReservoirBaseModel( struct soap *soap, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability, - prodml22__TotalThickness *TotalThickness, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct, - prodml22__Porosity *Porosity, - prodml22__InitialPressure *InitialPressure, - prodml22__PressureDatumTVD *PressureDatumTVD, - prodml22__AveragePressure *AveragePressure, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection, - prodml22__UpperBoundaryType *UpperBoundaryType, - prodml22__LowerBoundaryType *LowerBoundaryType, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability, + prodml23__TotalThickness *TotalThickness, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct, + prodml23__Porosity *Porosity, + prodml23__InitialPressure *InitialPressure, + prodml23__PressureDatumTVD *PressureDatumTVD, + prodml23__AveragePressure *AveragePressure, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection, + prodml23__UpperBoundaryType *UpperBoundaryType, + prodml23__LowerBoundaryType *LowerBoundaryType, std::string *Comment__1, std::string *Method__1) { - prodml22__ReservoirBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__ReservoirBaseModel(soap); + prodml23__ReservoirBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__ReservoirBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType; - _p->prodml22__AbstractModelSection::Comment = Comment__1; - _p->prodml22__AbstractModelSection::Method = Method__1; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType; + _p->prodml23__AbstractModelSection::Comment = Comment__1; + _p->prodml23__AbstractModelSection::Method = Method__1; } return _p; } -inline int soap_write_prodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel const*p) +inline int soap_write_prodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel ? "prodml22:ReservoirBaseModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel ? "prodml23:ReservoirBaseModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReservoirBaseModel(struct soap *soap, const char *URL, prodml22__ReservoirBaseModel const*p) +inline int soap_PUT_prodml23__ReservoirBaseModel(struct soap *soap, const char *URL, prodml23__ReservoirBaseModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel ? "prodml22:ReservoirBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel ? "prodml23:ReservoirBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReservoirBaseModel(struct soap *soap, const char *URL, prodml22__ReservoirBaseModel const*p) +inline int soap_PATCH_prodml23__ReservoirBaseModel(struct soap *soap, const char *URL, prodml23__ReservoirBaseModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel ? "prodml22:ReservoirBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel ? "prodml23:ReservoirBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReservoirBaseModel(struct soap *soap, const char *URL, prodml22__ReservoirBaseModel const*p) +inline int soap_POST_send_prodml23__ReservoirBaseModel(struct soap *soap, const char *URL, prodml23__ReservoirBaseModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel ? "prodml22:ReservoirBaseModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel ? "prodml23:ReservoirBaseModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReservoirBaseModel * SOAP_FMAC4 soap_get_prodml22__ReservoirBaseModel(struct soap*, prodml22__ReservoirBaseModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirBaseModel * SOAP_FMAC4 soap_get_prodml23__ReservoirBaseModel(struct soap*, prodml23__ReservoirBaseModel *, const char*, const char*); -inline int soap_read_prodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel *p) +inline int soap_read_prodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReservoirBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReservoirBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReservoirBaseModel(struct soap *soap, const char *URL, prodml22__ReservoirBaseModel *p) +inline int soap_GET_prodml23__ReservoirBaseModel(struct soap *soap, const char *URL, prodml23__ReservoirBaseModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReservoirBaseModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReservoirBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReservoirBaseModel(struct soap *soap, prodml22__ReservoirBaseModel *p) +inline int soap_POST_recv_prodml23__ReservoirBaseModel(struct soap *soap, prodml23__ReservoirBaseModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReservoirBaseModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReservoirBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RadialCompositeModel(struct soap*, const char*, int, const prodml22__RadialCompositeModel *, const char*); -SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml22__RadialCompositeModel(struct soap*, const char*, prodml22__RadialCompositeModel *, const char*); -SOAP_FMAC1 prodml22__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22__RadialCompositeModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RadialCompositeModel(struct soap*, const char*, int, const prodml23__RadialCompositeModel *, const char*); +SOAP_FMAC3 prodml23__RadialCompositeModel * SOAP_FMAC4 soap_in_prodml23__RadialCompositeModel(struct soap*, const char*, prodml23__RadialCompositeModel *, const char*); +SOAP_FMAC1 prodml23__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml23__RadialCompositeModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RadialCompositeModel * soap_new_prodml22__RadialCompositeModel(struct soap *soap, int n = -1) +inline prodml23__RadialCompositeModel * soap_new_prodml23__RadialCompositeModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RadialCompositeModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RadialCompositeModel(soap, n, NULL, NULL, NULL); } -inline prodml22__RadialCompositeModel * soap_new_req_prodml22__RadialCompositeModel( +inline prodml23__RadialCompositeModel * soap_new_req_prodml23__RadialCompositeModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__RadialCompositeModel *_p = gsoap_eml2_3::soap_new_prodml22__RadialCompositeModel(soap); + prodml23__RadialCompositeModel *_p = gsoap_eml2_3::soap_new_prodml23__RadialCompositeModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__RadialCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__RadialCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__RadialCompositeModel * soap_new_set_prodml22__RadialCompositeModel( +inline prodml23__RadialCompositeModel * soap_new_set_prodml23__RadialCompositeModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__RadialCompositeModel *_p = gsoap_eml2_3::soap_new_prodml22__RadialCompositeModel(soap); + prodml23__RadialCompositeModel *_p = gsoap_eml2_3::soap_new_prodml23__RadialCompositeModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RadialCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__RadialCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__RadialCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__RadialCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__RadialCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__RadialCompositeModel(struct soap *soap, prodml22__RadialCompositeModel const*p) +inline int soap_write_prodml23__RadialCompositeModel(struct soap *soap, prodml23__RadialCompositeModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel ? "prodml22:RadialCompositeModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel ? "prodml23:RadialCompositeModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RadialCompositeModel(struct soap *soap, const char *URL, prodml22__RadialCompositeModel const*p) +inline int soap_PUT_prodml23__RadialCompositeModel(struct soap *soap, const char *URL, prodml23__RadialCompositeModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel ? "prodml22:RadialCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel ? "prodml23:RadialCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RadialCompositeModel(struct soap *soap, const char *URL, prodml22__RadialCompositeModel const*p) +inline int soap_PATCH_prodml23__RadialCompositeModel(struct soap *soap, const char *URL, prodml23__RadialCompositeModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel ? "prodml22:RadialCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel ? "prodml23:RadialCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RadialCompositeModel(struct soap *soap, const char *URL, prodml22__RadialCompositeModel const*p) +inline int soap_POST_send_prodml23__RadialCompositeModel(struct soap *soap, const char *URL, prodml23__RadialCompositeModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel ? "prodml22:RadialCompositeModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RadialCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel ? "prodml23:RadialCompositeModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RadialCompositeModel * SOAP_FMAC4 soap_get_prodml22__RadialCompositeModel(struct soap*, prodml22__RadialCompositeModel *, const char*, const char*); +SOAP_FMAC3 prodml23__RadialCompositeModel * SOAP_FMAC4 soap_get_prodml23__RadialCompositeModel(struct soap*, prodml23__RadialCompositeModel *, const char*, const char*); -inline int soap_read_prodml22__RadialCompositeModel(struct soap *soap, prodml22__RadialCompositeModel *p) +inline int soap_read_prodml23__RadialCompositeModel(struct soap *soap, prodml23__RadialCompositeModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RadialCompositeModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RadialCompositeModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RadialCompositeModel(struct soap *soap, const char *URL, prodml22__RadialCompositeModel *p) +inline int soap_GET_prodml23__RadialCompositeModel(struct soap *soap, const char *URL, prodml23__RadialCompositeModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RadialCompositeModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RadialCompositeModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RadialCompositeModel(struct soap *soap, prodml22__RadialCompositeModel *p) +inline int soap_POST_recv_prodml23__RadialCompositeModel(struct soap *soap, prodml23__RadialCompositeModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__RadialCompositeModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RadialCompositeModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PinchOutModel(struct soap*, const char*, int, const prodml22__PinchOutModel *, const char*); -SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_in_prodml22__PinchOutModel(struct soap*, const char*, prodml22__PinchOutModel *, const char*); -SOAP_FMAC1 prodml22__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml22__PinchOutModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PinchOutModel(struct soap*, const char*, int, const prodml23__PinchOutModel *, const char*); +SOAP_FMAC3 prodml23__PinchOutModel * SOAP_FMAC4 soap_in_prodml23__PinchOutModel(struct soap*, const char*, prodml23__PinchOutModel *, const char*); +SOAP_FMAC1 prodml23__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml23__PinchOutModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PinchOutModel * soap_new_prodml22__PinchOutModel(struct soap *soap, int n = -1) +inline prodml23__PinchOutModel * soap_new_prodml23__PinchOutModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PinchOutModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PinchOutModel(soap, n, NULL, NULL, NULL); } -inline prodml22__PinchOutModel * soap_new_req_prodml22__PinchOutModel( +inline prodml23__PinchOutModel * soap_new_req_prodml23__PinchOutModel( struct soap *soap, - prodml22__DistanceToPinchOut *DistanceToPinchOut) + prodml23__DistanceToPinchOut *DistanceToPinchOut) { - prodml22__PinchOutModel *_p = gsoap_eml2_3::soap_new_prodml22__PinchOutModel(soap); + prodml23__PinchOutModel *_p = gsoap_eml2_3::soap_new_prodml23__PinchOutModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PinchOutModel::DistanceToPinchOut = DistanceToPinchOut; + _p->prodml23__PinchOutModel::DistanceToPinchOut = DistanceToPinchOut; } return _p; } -inline prodml22__PinchOutModel * soap_new_set_prodml22__PinchOutModel( +inline prodml23__PinchOutModel * soap_new_set_prodml23__PinchOutModel( struct soap *soap, - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, - prodml22__DistanceToPinchOut *DistanceToPinchOut, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, + prodml23__DistanceToPinchOut *DistanceToPinchOut, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__PinchOutModel *_p = gsoap_eml2_3::soap_new_prodml22__PinchOutModel(soap); + prodml23__PinchOutModel *_p = gsoap_eml2_3::soap_new_prodml23__PinchOutModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PinchOutModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; - _p->prodml22__PinchOutModel::DistanceToPinchOut = DistanceToPinchOut; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__PinchOutModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; + _p->prodml23__PinchOutModel::DistanceToPinchOut = DistanceToPinchOut; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__PinchOutModel(struct soap *soap, prodml22__PinchOutModel const*p) +inline int soap_write_prodml23__PinchOutModel(struct soap *soap, prodml23__PinchOutModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel ? "prodml22:PinchOutModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel ? "prodml23:PinchOutModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PinchOutModel(struct soap *soap, const char *URL, prodml22__PinchOutModel const*p) +inline int soap_PUT_prodml23__PinchOutModel(struct soap *soap, const char *URL, prodml23__PinchOutModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel ? "prodml22:PinchOutModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel ? "prodml23:PinchOutModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PinchOutModel(struct soap *soap, const char *URL, prodml22__PinchOutModel const*p) +inline int soap_PATCH_prodml23__PinchOutModel(struct soap *soap, const char *URL, prodml23__PinchOutModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel ? "prodml22:PinchOutModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel ? "prodml23:PinchOutModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PinchOutModel(struct soap *soap, const char *URL, prodml22__PinchOutModel const*p) +inline int soap_POST_send_prodml23__PinchOutModel(struct soap *soap, const char *URL, prodml23__PinchOutModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel ? "prodml22:PinchOutModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PinchOutModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel ? "prodml23:PinchOutModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PinchOutModel * SOAP_FMAC4 soap_get_prodml22__PinchOutModel(struct soap*, prodml22__PinchOutModel *, const char*, const char*); +SOAP_FMAC3 prodml23__PinchOutModel * SOAP_FMAC4 soap_get_prodml23__PinchOutModel(struct soap*, prodml23__PinchOutModel *, const char*, const char*); -inline int soap_read_prodml22__PinchOutModel(struct soap *soap, prodml22__PinchOutModel *p) +inline int soap_read_prodml23__PinchOutModel(struct soap *soap, prodml23__PinchOutModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PinchOutModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PinchOutModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PinchOutModel(struct soap *soap, const char *URL, prodml22__PinchOutModel *p) +inline int soap_GET_prodml23__PinchOutModel(struct soap *soap, const char *URL, prodml23__PinchOutModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PinchOutModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PinchOutModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PinchOutModel(struct soap *soap, prodml22__PinchOutModel *p) +inline int soap_POST_recv_prodml23__PinchOutModel(struct soap *soap, prodml23__PinchOutModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__PinchOutModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PinchOutModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PartiallyPenetratingModel(struct soap*, const char*, int, const prodml22__PartiallyPenetratingModel *, const char*); -SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml22__PartiallyPenetratingModel(struct soap*, const char*, prodml22__PartiallyPenetratingModel *, const char*); -SOAP_FMAC1 prodml22__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__PartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PartiallyPenetratingModel(struct soap*, const char*, int, const prodml23__PartiallyPenetratingModel *, const char*); +SOAP_FMAC3 prodml23__PartiallyPenetratingModel * SOAP_FMAC4 soap_in_prodml23__PartiallyPenetratingModel(struct soap*, const char*, prodml23__PartiallyPenetratingModel *, const char*); +SOAP_FMAC1 prodml23__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__PartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PartiallyPenetratingModel * soap_new_prodml22__PartiallyPenetratingModel(struct soap *soap, int n = -1) +inline prodml23__PartiallyPenetratingModel * soap_new_prodml23__PartiallyPenetratingModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PartiallyPenetratingModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PartiallyPenetratingModel(soap, n, NULL, NULL, NULL); } -inline prodml22__PartiallyPenetratingModel * soap_new_req_prodml22__PartiallyPenetratingModel( +inline prodml23__PartiallyPenetratingModel * soap_new_req_prodml23__PartiallyPenetratingModel( struct soap *soap, - prodml22__PerforatedLength *PerforatedLength, - prodml22__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__PerforatedLength *PerforatedLength, + prodml23__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__PartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml22__PartiallyPenetratingModel(soap); + prodml23__PartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml23__PartiallyPenetratingModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PartiallyPenetratingModel::PerforatedLength = PerforatedLength; - _p->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__PartiallyPenetratingModel::PerforatedLength = PerforatedLength; + _p->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__PartiallyPenetratingModel * soap_new_set_prodml22__PartiallyPenetratingModel( +inline prodml23__PartiallyPenetratingModel * soap_new_set_prodml23__PartiallyPenetratingModel( struct soap *soap, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__PerforatedLength *PerforatedLength, - prodml22__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__PerforatedLength *PerforatedLength, + prodml23__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__PartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml22__PartiallyPenetratingModel(soap); + prodml23__PartiallyPenetratingModel *_p = gsoap_eml2_3::soap_new_prodml23__PartiallyPenetratingModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__PartiallyPenetratingModel::PerforatedLength = PerforatedLength; - _p->prodml22__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__PartiallyPenetratingModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__PartiallyPenetratingModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__PartiallyPenetratingModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__PartiallyPenetratingModel::PerforatedLength = PerforatedLength; + _p->prodml23__PartiallyPenetratingModel::DistanceMidPerforationsToBottomBoundary = DistanceMidPerforationsToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__PartiallyPenetratingModel(struct soap *soap, prodml22__PartiallyPenetratingModel const*p) +inline int soap_write_prodml23__PartiallyPenetratingModel(struct soap *soap, prodml23__PartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel ? "prodml22:PartiallyPenetratingModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel ? "prodml23:PartiallyPenetratingModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__PartiallyPenetratingModel const*p) +inline int soap_PUT_prodml23__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__PartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel ? "prodml22:PartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel ? "prodml23:PartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__PartiallyPenetratingModel const*p) +inline int soap_PATCH_prodml23__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__PartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel ? "prodml22:PartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel ? "prodml23:PartiallyPenetratingModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__PartiallyPenetratingModel const*p) +inline int soap_POST_send_prodml23__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__PartiallyPenetratingModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel ? "prodml22:PartiallyPenetratingModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PartiallyPenetratingModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel ? "prodml23:PartiallyPenetratingModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml22__PartiallyPenetratingModel(struct soap*, prodml22__PartiallyPenetratingModel *, const char*, const char*); +SOAP_FMAC3 prodml23__PartiallyPenetratingModel * SOAP_FMAC4 soap_get_prodml23__PartiallyPenetratingModel(struct soap*, prodml23__PartiallyPenetratingModel *, const char*, const char*); -inline int soap_read_prodml22__PartiallyPenetratingModel(struct soap *soap, prodml22__PartiallyPenetratingModel *p) +inline int soap_read_prodml23__PartiallyPenetratingModel(struct soap *soap, prodml23__PartiallyPenetratingModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PartiallyPenetratingModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PartiallyPenetratingModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml22__PartiallyPenetratingModel *p) +inline int soap_GET_prodml23__PartiallyPenetratingModel(struct soap *soap, const char *URL, prodml23__PartiallyPenetratingModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PartiallyPenetratingModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PartiallyPenetratingModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PartiallyPenetratingModel(struct soap *soap, prodml22__PartiallyPenetratingModel *p) +inline int soap_POST_recv_prodml23__PartiallyPenetratingModel(struct soap *soap, prodml23__PartiallyPenetratingModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__PartiallyPenetratingModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PartiallyPenetratingModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumericalHomogeneousReservoirModel(struct soap*, const char*, int, const prodml22__NumericalHomogeneousReservoirModel *, const char*); -SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_prodml22__NumericalHomogeneousReservoirModel(struct soap*, const char*, prodml22__NumericalHomogeneousReservoirModel *, const char*); -SOAP_FMAC1 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumericalHomogeneousReservoirModel(struct soap*, const char*, int, const prodml23__NumericalHomogeneousReservoirModel *, const char*); +SOAP_FMAC3 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_in_prodml23__NumericalHomogeneousReservoirModel(struct soap*, const char*, prodml23__NumericalHomogeneousReservoirModel *, const char*); +SOAP_FMAC1 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NumericalHomogeneousReservoirModel * soap_new_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, int n = -1) +inline prodml23__NumericalHomogeneousReservoirModel * soap_new_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(soap, n, NULL, NULL, NULL); } -inline prodml22__NumericalHomogeneousReservoirModel * soap_new_req_prodml22__NumericalHomogeneousReservoirModel( +inline prodml23__NumericalHomogeneousReservoirModel * soap_new_req_prodml23__NumericalHomogeneousReservoirModel( struct soap *soap, - prodml22__DistributedParametersSubModel *DistributedParametersSubModel, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__DistributedParametersSubModel *DistributedParametersSubModel, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__NumericalHomogeneousReservoirModel *_p = gsoap_eml2_3::soap_new_prodml22__NumericalHomogeneousReservoirModel(soap); + prodml23__NumericalHomogeneousReservoirModel *_p = gsoap_eml2_3::soap_new_prodml23__NumericalHomogeneousReservoirModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__NumericalHomogeneousReservoirModel * soap_new_set_prodml22__NumericalHomogeneousReservoirModel( +inline prodml23__NumericalHomogeneousReservoirModel * soap_new_set_prodml23__NumericalHomogeneousReservoirModel( struct soap *soap, - const std::vector & InternalFaultSubModel, - prodml22__DistributedParametersSubModel *DistributedParametersSubModel, - const std::vector & ReservoirZoneSubModel, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + const std::vector & InternalFaultSubModel, + prodml23__DistributedParametersSubModel *DistributedParametersSubModel, + const std::vector & ReservoirZoneSubModel, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__NumericalHomogeneousReservoirModel *_p = gsoap_eml2_3::soap_new_prodml22__NumericalHomogeneousReservoirModel(soap); + prodml23__NumericalHomogeneousReservoirModel *_p = gsoap_eml2_3::soap_new_prodml23__NumericalHomogeneousReservoirModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumericalHomogeneousReservoirModel::InternalFaultSubModel = InternalFaultSubModel; - _p->prodml22__NumericalHomogeneousReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; - _p->prodml22__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel = ReservoirZoneSubModel; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__NumericalHomogeneousReservoirModel::InternalFaultSubModel = InternalFaultSubModel; + _p->prodml23__NumericalHomogeneousReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; + _p->prodml23__NumericalHomogeneousReservoirModel::ReservoirZoneSubModel = ReservoirZoneSubModel; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, prodml22__NumericalHomogeneousReservoirModel const*p) +inline int soap_write_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, prodml23__NumericalHomogeneousReservoirModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel ? "prodml22:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel ? "prodml23:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalHomogeneousReservoirModel const*p) +inline int soap_PUT_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalHomogeneousReservoirModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel ? "prodml22:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel ? "prodml23:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalHomogeneousReservoirModel const*p) +inline int soap_PATCH_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalHomogeneousReservoirModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel ? "prodml22:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel ? "prodml23:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalHomogeneousReservoirModel const*p) +inline int soap_POST_send_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalHomogeneousReservoirModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel ? "prodml22:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalHomogeneousReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel ? "prodml23:NumericalHomogeneousReservoirModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_get_prodml22__NumericalHomogeneousReservoirModel(struct soap*, prodml22__NumericalHomogeneousReservoirModel *, const char*, const char*); +SOAP_FMAC3 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC4 soap_get_prodml23__NumericalHomogeneousReservoirModel(struct soap*, prodml23__NumericalHomogeneousReservoirModel *, const char*, const char*); -inline int soap_read_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, prodml22__NumericalHomogeneousReservoirModel *p) +inline int soap_read_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, prodml23__NumericalHomogeneousReservoirModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NumericalHomogeneousReservoirModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NumericalHomogeneousReservoirModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalHomogeneousReservoirModel *p) +inline int soap_GET_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalHomogeneousReservoirModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NumericalHomogeneousReservoirModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NumericalHomogeneousReservoirModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NumericalHomogeneousReservoirModel(struct soap *soap, prodml22__NumericalHomogeneousReservoirModel *p) +inline int soap_POST_recv_prodml23__NumericalHomogeneousReservoirModel(struct soap *soap, prodml23__NumericalHomogeneousReservoirModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__NumericalHomogeneousReservoirModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NumericalHomogeneousReservoirModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumericalDualPorosityReservoirModel(struct soap*, const char*, int, const prodml22__NumericalDualPorosityReservoirModel *, const char*); -SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_prodml22__NumericalDualPorosityReservoirModel(struct soap*, const char*, prodml22__NumericalDualPorosityReservoirModel *, const char*); -SOAP_FMAC1 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumericalDualPorosityReservoirModel(struct soap*, const char*, int, const prodml23__NumericalDualPorosityReservoirModel *, const char*); +SOAP_FMAC3 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_in_prodml23__NumericalDualPorosityReservoirModel(struct soap*, const char*, prodml23__NumericalDualPorosityReservoirModel *, const char*); +SOAP_FMAC1 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NumericalDualPorosityReservoirModel * soap_new_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, int n = -1) +inline prodml23__NumericalDualPorosityReservoirModel * soap_new_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(soap, n, NULL, NULL, NULL); } -inline prodml22__NumericalDualPorosityReservoirModel * soap_new_req_prodml22__NumericalDualPorosityReservoirModel( +inline prodml23__NumericalDualPorosityReservoirModel * soap_new_req_prodml23__NumericalDualPorosityReservoirModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__DistributedParametersSubModel *DistributedParametersSubModel, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__DistributedParametersSubModel *DistributedParametersSubModel, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__NumericalDualPorosityReservoirModel *_p = gsoap_eml2_3::soap_new_prodml22__NumericalDualPorosityReservoirModel(soap); + prodml23__NumericalDualPorosityReservoirModel *_p = gsoap_eml2_3::soap_new_prodml23__NumericalDualPorosityReservoirModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio = StorativityRatio; - _p->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio = StorativityRatio; + _p->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__NumericalDualPorosityReservoirModel * soap_new_set_prodml22__NumericalDualPorosityReservoirModel( +inline prodml23__NumericalDualPorosityReservoirModel * soap_new_set_prodml23__NumericalDualPorosityReservoirModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - const std::vector & InternalFaultSubModel, - prodml22__DistributedParametersSubModel *DistributedParametersSubModel, - const std::vector & ReservoirZoneSubModel, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + const std::vector & InternalFaultSubModel, + prodml23__DistributedParametersSubModel *DistributedParametersSubModel, + const std::vector & ReservoirZoneSubModel, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__NumericalDualPorosityReservoirModel *_p = gsoap_eml2_3::soap_new_prodml22__NumericalDualPorosityReservoirModel(soap); + prodml23__NumericalDualPorosityReservoirModel *_p = gsoap_eml2_3::soap_new_prodml23__NumericalDualPorosityReservoirModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumericalDualPorosityReservoirModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__NumericalDualPorosityReservoirModel::StorativityRatio = StorativityRatio; - _p->prodml22__NumericalDualPorosityReservoirModel::InternalFaultSubModel = InternalFaultSubModel; - _p->prodml22__NumericalDualPorosityReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; - _p->prodml22__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel = ReservoirZoneSubModel; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__NumericalDualPorosityReservoirModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__NumericalDualPorosityReservoirModel::StorativityRatio = StorativityRatio; + _p->prodml23__NumericalDualPorosityReservoirModel::InternalFaultSubModel = InternalFaultSubModel; + _p->prodml23__NumericalDualPorosityReservoirModel::DistributedParametersSubModel = DistributedParametersSubModel; + _p->prodml23__NumericalDualPorosityReservoirModel::ReservoirZoneSubModel = ReservoirZoneSubModel; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, prodml22__NumericalDualPorosityReservoirModel const*p) +inline int soap_write_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, prodml23__NumericalDualPorosityReservoirModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel ? "prodml22:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel ? "prodml23:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalDualPorosityReservoirModel const*p) +inline int soap_PUT_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalDualPorosityReservoirModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel ? "prodml22:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel ? "prodml23:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalDualPorosityReservoirModel const*p) +inline int soap_PATCH_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalDualPorosityReservoirModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel ? "prodml22:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel ? "prodml23:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalDualPorosityReservoirModel const*p) +inline int soap_POST_send_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalDualPorosityReservoirModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel ? "prodml22:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalDualPorosityReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel ? "prodml23:NumericalDualPorosityReservoirModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_get_prodml22__NumericalDualPorosityReservoirModel(struct soap*, prodml22__NumericalDualPorosityReservoirModel *, const char*, const char*); +SOAP_FMAC3 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC4 soap_get_prodml23__NumericalDualPorosityReservoirModel(struct soap*, prodml23__NumericalDualPorosityReservoirModel *, const char*, const char*); -inline int soap_read_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, prodml22__NumericalDualPorosityReservoirModel *p) +inline int soap_read_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, prodml23__NumericalDualPorosityReservoirModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NumericalDualPorosityReservoirModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NumericalDualPorosityReservoirModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml22__NumericalDualPorosityReservoirModel *p) +inline int soap_GET_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, const char *URL, prodml23__NumericalDualPorosityReservoirModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NumericalDualPorosityReservoirModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NumericalDualPorosityReservoirModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NumericalDualPorosityReservoirModel(struct soap *soap, prodml22__NumericalDualPorosityReservoirModel *p) +inline int soap_POST_recv_prodml23__NumericalDualPorosityReservoirModel(struct soap *soap, prodml23__NumericalDualPorosityReservoirModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__NumericalDualPorosityReservoirModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NumericalDualPorosityReservoirModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NumericalBoundaryModel(struct soap*, const char*, int, const prodml22__NumericalBoundaryModel *, const char*); -SOAP_FMAC3 prodml22__NumericalBoundaryModel * SOAP_FMAC4 soap_in_prodml22__NumericalBoundaryModel(struct soap*, const char*, prodml22__NumericalBoundaryModel *, const char*); -SOAP_FMAC1 prodml22__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalBoundaryModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NumericalBoundaryModel(struct soap*, const char*, int, const prodml23__NumericalBoundaryModel *, const char*); +SOAP_FMAC3 prodml23__NumericalBoundaryModel * SOAP_FMAC4 soap_in_prodml23__NumericalBoundaryModel(struct soap*, const char*, prodml23__NumericalBoundaryModel *, const char*); +SOAP_FMAC1 prodml23__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalBoundaryModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NumericalBoundaryModel * soap_new_prodml22__NumericalBoundaryModel(struct soap *soap, int n = -1) +inline prodml23__NumericalBoundaryModel * soap_new_prodml23__NumericalBoundaryModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NumericalBoundaryModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NumericalBoundaryModel(soap, n, NULL, NULL, NULL); } -inline prodml22__NumericalBoundaryModel * soap_new_req_prodml22__NumericalBoundaryModel( +inline prodml23__NumericalBoundaryModel * soap_new_req_prodml23__NumericalBoundaryModel( struct soap *soap) { - prodml22__NumericalBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml22__NumericalBoundaryModel(soap); + prodml23__NumericalBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml23__NumericalBoundaryModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__NumericalBoundaryModel * soap_new_set_prodml22__NumericalBoundaryModel( +inline prodml23__NumericalBoundaryModel * soap_new_set_prodml23__NumericalBoundaryModel( struct soap *soap, - prodml22__DrainageAreaMeasured *DrainageAreaMeasured, - prodml22__PoreVolumeMeasured *PoreVolumeMeasured, - const std::vector & SingleBoundarySubModel, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__DrainageAreaMeasured *DrainageAreaMeasured, + prodml23__PoreVolumeMeasured *PoreVolumeMeasured, + const std::vector & SingleBoundarySubModel, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__NumericalBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml22__NumericalBoundaryModel(soap); + prodml23__NumericalBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml23__NumericalBoundaryModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NumericalBoundaryModel::DrainageAreaMeasured = DrainageAreaMeasured; - _p->prodml22__NumericalBoundaryModel::PoreVolumeMeasured = PoreVolumeMeasured; - _p->prodml22__NumericalBoundaryModel::SingleBoundarySubModel = SingleBoundarySubModel; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__NumericalBoundaryModel::DrainageAreaMeasured = DrainageAreaMeasured; + _p->prodml23__NumericalBoundaryModel::PoreVolumeMeasured = PoreVolumeMeasured; + _p->prodml23__NumericalBoundaryModel::SingleBoundarySubModel = SingleBoundarySubModel; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__NumericalBoundaryModel(struct soap *soap, prodml22__NumericalBoundaryModel const*p) +inline int soap_write_prodml23__NumericalBoundaryModel(struct soap *soap, prodml23__NumericalBoundaryModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel ? "prodml22:NumericalBoundaryModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel ? "prodml23:NumericalBoundaryModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml22__NumericalBoundaryModel const*p) +inline int soap_PUT_prodml23__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml23__NumericalBoundaryModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel ? "prodml22:NumericalBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel ? "prodml23:NumericalBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml22__NumericalBoundaryModel const*p) +inline int soap_PATCH_prodml23__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml23__NumericalBoundaryModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel ? "prodml22:NumericalBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel ? "prodml23:NumericalBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml22__NumericalBoundaryModel const*p) +inline int soap_POST_send_prodml23__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml23__NumericalBoundaryModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel ? "prodml22:NumericalBoundaryModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NumericalBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel ? "prodml23:NumericalBoundaryModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NumericalBoundaryModel * SOAP_FMAC4 soap_get_prodml22__NumericalBoundaryModel(struct soap*, prodml22__NumericalBoundaryModel *, const char*, const char*); +SOAP_FMAC3 prodml23__NumericalBoundaryModel * SOAP_FMAC4 soap_get_prodml23__NumericalBoundaryModel(struct soap*, prodml23__NumericalBoundaryModel *, const char*, const char*); -inline int soap_read_prodml22__NumericalBoundaryModel(struct soap *soap, prodml22__NumericalBoundaryModel *p) +inline int soap_read_prodml23__NumericalBoundaryModel(struct soap *soap, prodml23__NumericalBoundaryModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NumericalBoundaryModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NumericalBoundaryModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml22__NumericalBoundaryModel *p) +inline int soap_GET_prodml23__NumericalBoundaryModel(struct soap *soap, const char *URL, prodml23__NumericalBoundaryModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NumericalBoundaryModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NumericalBoundaryModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NumericalBoundaryModel(struct soap *soap, prodml22__NumericalBoundaryModel *p) +inline int soap_POST_recv_prodml23__NumericalBoundaryModel(struct soap *soap, prodml23__NumericalBoundaryModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__NumericalBoundaryModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NumericalBoundaryModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NearWellboreBaseModel(struct soap*, const char*, int, const prodml22__NearWellboreBaseModel *, const char*); -SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml22__NearWellboreBaseModel(struct soap*, const char*, prodml22__NearWellboreBaseModel *, const char*); -SOAP_FMAC1 prodml22__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__NearWellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NearWellboreBaseModel(struct soap*, const char*, int, const prodml23__NearWellboreBaseModel *, const char*); +SOAP_FMAC3 prodml23__NearWellboreBaseModel * SOAP_FMAC4 soap_in_prodml23__NearWellboreBaseModel(struct soap*, const char*, prodml23__NearWellboreBaseModel *, const char*); +SOAP_FMAC1 prodml23__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__NearWellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NearWellboreBaseModel * soap_new_prodml22__NearWellboreBaseModel(struct soap *soap, int n = -1) +inline prodml23__NearWellboreBaseModel * soap_new_prodml23__NearWellboreBaseModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NearWellboreBaseModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NearWellboreBaseModel(soap, n, NULL, NULL, NULL); } -inline prodml22__NearWellboreBaseModel * soap_new_req_prodml22__NearWellboreBaseModel( +inline prodml23__NearWellboreBaseModel * soap_new_req_prodml23__NearWellboreBaseModel( struct soap *soap, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness) + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness) { - prodml22__NearWellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__NearWellboreBaseModel(soap); + prodml23__NearWellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__NearWellboreBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness; } return _p; } -inline prodml22__NearWellboreBaseModel * soap_new_set_prodml22__NearWellboreBaseModel( +inline prodml23__NearWellboreBaseModel * soap_new_set_prodml23__NearWellboreBaseModel( struct soap *soap, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown, std::string *Comment__1, std::string *Method__1) { - prodml22__NearWellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__NearWellboreBaseModel(soap); + prodml23__NearWellboreBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__NearWellboreBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown; - _p->prodml22__AbstractModelSection::Comment = Comment__1; - _p->prodml22__AbstractModelSection::Method = Method__1; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown; + _p->prodml23__AbstractModelSection::Comment = Comment__1; + _p->prodml23__AbstractModelSection::Method = Method__1; } return _p; } -inline int soap_write_prodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel const*p) +inline int soap_write_prodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel ? "prodml22:NearWellboreBaseModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel ? "prodml23:NearWellboreBaseModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml22__NearWellboreBaseModel const*p) +inline int soap_PUT_prodml23__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml23__NearWellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel ? "prodml22:NearWellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel ? "prodml23:NearWellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml22__NearWellboreBaseModel const*p) +inline int soap_PATCH_prodml23__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml23__NearWellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel ? "prodml22:NearWellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel ? "prodml23:NearWellboreBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml22__NearWellboreBaseModel const*p) +inline int soap_POST_send_prodml23__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml23__NearWellboreBaseModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel ? "prodml22:NearWellboreBaseModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NearWellboreBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel ? "prodml23:NearWellboreBaseModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NearWellboreBaseModel * SOAP_FMAC4 soap_get_prodml22__NearWellboreBaseModel(struct soap*, prodml22__NearWellboreBaseModel *, const char*, const char*); +SOAP_FMAC3 prodml23__NearWellboreBaseModel * SOAP_FMAC4 soap_get_prodml23__NearWellboreBaseModel(struct soap*, prodml23__NearWellboreBaseModel *, const char*, const char*); -inline int soap_read_prodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel *p) +inline int soap_read_prodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NearWellboreBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NearWellboreBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml22__NearWellboreBaseModel *p) +inline int soap_GET_prodml23__NearWellboreBaseModel(struct soap *soap, const char *URL, prodml23__NearWellboreBaseModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NearWellboreBaseModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NearWellboreBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NearWellboreBaseModel(struct soap *soap, prodml22__NearWellboreBaseModel *p) +inline int soap_POST_recv_prodml23__NearWellboreBaseModel(struct soap *soap, prodml23__NearWellboreBaseModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__NearWellboreBaseModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NearWellboreBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeWithLeakyFaultModel(struct soap*, const char*, int, const prodml22__LinearCompositeWithLeakyFaultModel *, const char*); -SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeWithLeakyFaultModel(struct soap*, const char*, prodml22__LinearCompositeWithLeakyFaultModel *, const char*); -SOAP_FMAC1 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeWithLeakyFaultModel(struct soap*, const char*, int, const prodml23__LinearCompositeWithLeakyFaultModel *, const char*); +SOAP_FMAC3 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeWithLeakyFaultModel(struct soap*, const char*, prodml23__LinearCompositeWithLeakyFaultModel *, const char*); +SOAP_FMAC1 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LinearCompositeWithLeakyFaultModel * soap_new_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, int n = -1) +inline prodml23__LinearCompositeWithLeakyFaultModel * soap_new_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(soap, n, NULL, NULL, NULL); } -inline prodml22__LinearCompositeWithLeakyFaultModel * soap_new_req_prodml22__LinearCompositeWithLeakyFaultModel( +inline prodml23__LinearCompositeWithLeakyFaultModel * soap_new_req_prodml23__LinearCompositeWithLeakyFaultModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__LinearCompositeWithLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeWithLeakyFaultModel(soap); + prodml23__LinearCompositeWithLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeWithLeakyFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__LinearCompositeWithLeakyFaultModel * soap_new_set_prodml22__LinearCompositeWithLeakyFaultModel( +inline prodml23__LinearCompositeWithLeakyFaultModel * soap_new_set_prodml23__LinearCompositeWithLeakyFaultModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__OrientationOfLinearFront *OrientationOfLinearFront, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__OrientationOfLinearFront *OrientationOfLinearFront, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__LinearCompositeWithLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeWithLeakyFaultModel(soap); + prodml23__LinearCompositeWithLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeWithLeakyFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront = OrientationOfLinearFront; - _p->prodml22__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__LinearCompositeWithLeakyFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__LinearCompositeWithLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeWithLeakyFaultModel::OrientationOfLinearFront = OrientationOfLinearFront; + _p->prodml23__LinearCompositeWithLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithLeakyFaultModel const*p) +inline int soap_write_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel ? "prodml22:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel ? "prodml23:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithLeakyFaultModel const*p) +inline int soap_PUT_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel ? "prodml22:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel ? "prodml23:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithLeakyFaultModel const*p) +inline int soap_PATCH_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel ? "prodml22:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel ? "prodml23:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithLeakyFaultModel const*p) +inline int soap_POST_send_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel ? "prodml22:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel ? "prodml23:LinearCompositeWithLeakyFaultModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeWithLeakyFaultModel(struct soap*, prodml22__LinearCompositeWithLeakyFaultModel *, const char*, const char*); +SOAP_FMAC3 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeWithLeakyFaultModel(struct soap*, prodml23__LinearCompositeWithLeakyFaultModel *, const char*, const char*); -inline int soap_read_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithLeakyFaultModel *p) +inline int soap_read_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithLeakyFaultModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LinearCompositeWithLeakyFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LinearCompositeWithLeakyFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithLeakyFaultModel *p) +inline int soap_GET_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithLeakyFaultModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LinearCompositeWithLeakyFaultModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LinearCompositeWithLeakyFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithLeakyFaultModel *p) +inline int soap_POST_recv_prodml23__LinearCompositeWithLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithLeakyFaultModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__LinearCompositeWithLeakyFaultModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LinearCompositeWithLeakyFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeWithConductiveFaultModel(struct soap*, const char*, int, const prodml22__LinearCompositeWithConductiveFaultModel *, const char*); -SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeWithConductiveFaultModel(struct soap*, const char*, prodml22__LinearCompositeWithConductiveFaultModel *, const char*); -SOAP_FMAC1 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeWithConductiveFaultModel(struct soap*, const char*, int, const prodml23__LinearCompositeWithConductiveFaultModel *, const char*); +SOAP_FMAC3 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeWithConductiveFaultModel(struct soap*, const char*, prodml23__LinearCompositeWithConductiveFaultModel *, const char*); +SOAP_FMAC1 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LinearCompositeWithConductiveFaultModel * soap_new_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, int n = -1) +inline prodml23__LinearCompositeWithConductiveFaultModel * soap_new_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(soap, n, NULL, NULL, NULL); } -inline prodml22__LinearCompositeWithConductiveFaultModel * soap_new_req_prodml22__LinearCompositeWithConductiveFaultModel( +inline prodml23__LinearCompositeWithConductiveFaultModel * soap_new_req_prodml23__LinearCompositeWithConductiveFaultModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, - prodml22__FaultConductivity *FaultConductivity, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, + prodml23__FaultConductivity *FaultConductivity, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__LinearCompositeWithConductiveFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeWithConductiveFaultModel(soap); + prodml23__LinearCompositeWithConductiveFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeWithConductiveFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; - _p->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity = FaultConductivity; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; + _p->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity = FaultConductivity; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__LinearCompositeWithConductiveFaultModel * soap_new_set_prodml22__LinearCompositeWithConductiveFaultModel( +inline prodml23__LinearCompositeWithConductiveFaultModel * soap_new_set_prodml23__LinearCompositeWithConductiveFaultModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__OrientationOfLinearFront *OrientationOfLinearFront, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, - prodml22__FaultConductivity *FaultConductivity, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__OrientationOfLinearFront *OrientationOfLinearFront, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, + prodml23__FaultConductivity *FaultConductivity, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__LinearCompositeWithConductiveFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeWithConductiveFaultModel(soap); + prodml23__LinearCompositeWithConductiveFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeWithConductiveFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront = OrientationOfLinearFront; - _p->prodml22__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; - _p->prodml22__LinearCompositeWithConductiveFaultModel::FaultConductivity = FaultConductivity; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__LinearCompositeWithConductiveFaultModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__LinearCompositeWithConductiveFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeWithConductiveFaultModel::OrientationOfLinearFront = OrientationOfLinearFront; + _p->prodml23__LinearCompositeWithConductiveFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; + _p->prodml23__LinearCompositeWithConductiveFaultModel::FaultConductivity = FaultConductivity; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml22__LinearCompositeWithConductiveFaultModel const*p) +inline int soap_write_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml23__LinearCompositeWithConductiveFaultModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel ? "prodml22:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel ? "prodml23:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithConductiveFaultModel const*p) +inline int soap_PUT_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithConductiveFaultModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel ? "prodml22:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel ? "prodml23:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithConductiveFaultModel const*p) +inline int soap_PATCH_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithConductiveFaultModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel ? "prodml22:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel ? "prodml23:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithConductiveFaultModel const*p) +inline int soap_POST_send_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithConductiveFaultModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel ? "prodml22:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithConductiveFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel ? "prodml23:LinearCompositeWithConductiveFaultModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeWithConductiveFaultModel(struct soap*, prodml22__LinearCompositeWithConductiveFaultModel *, const char*, const char*); +SOAP_FMAC3 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeWithConductiveFaultModel(struct soap*, prodml23__LinearCompositeWithConductiveFaultModel *, const char*, const char*); -inline int soap_read_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml22__LinearCompositeWithConductiveFaultModel *p) +inline int soap_read_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml23__LinearCompositeWithConductiveFaultModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LinearCompositeWithConductiveFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LinearCompositeWithConductiveFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithConductiveFaultModel *p) +inline int soap_GET_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithConductiveFaultModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LinearCompositeWithConductiveFaultModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LinearCompositeWithConductiveFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml22__LinearCompositeWithConductiveFaultModel *p) +inline int soap_POST_recv_prodml23__LinearCompositeWithConductiveFaultModel(struct soap *soap, prodml23__LinearCompositeWithConductiveFaultModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__LinearCompositeWithConductiveFaultModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LinearCompositeWithConductiveFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, const char*, int, const prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *, const char*); -SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, const char*, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *, const char*); -SOAP_FMAC1 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, const char*, int, const prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *, const char*); +SOAP_FMAC3 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, const char*, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *, const char*); +SOAP_FMAC1 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * soap_new_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, int n = -1) +inline prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * soap_new_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, n, NULL, NULL, NULL); } -inline prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * soap_new_req_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel( +inline prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * soap_new_req_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel( struct soap *soap, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, - prodml22__Region2Thickness *Region2Thickness, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, + prodml23__Region2Thickness *Region2Thickness, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap); + prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness = Region2Thickness; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness = Region2Thickness; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * soap_new_set_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel( +inline prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * soap_new_set_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel( struct soap *soap, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__OrientationOfLinearFront *OrientationOfLinearFront, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, - prodml22__Region2Thickness *Region2Thickness, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__OrientationOfLinearFront *OrientationOfLinearFront, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront, + prodml23__Region2Thickness *Region2Thickness, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap); + prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront = OrientationOfLinearFront; - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; - _p->prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness = Region2Thickness; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::OrientationOfLinearFront = OrientationOfLinearFront; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::TransmissibilityReductionFactorOfLinearFront = TransmissibilityReductionFactorOfLinearFront; + _p->prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel::Region2Thickness = Region2Thickness; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) +inline int soap_write_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) +inline int soap_PUT_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) +inline int soap_PATCH_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) +inline int soap_POST_send_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel ? "prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *, const char*, const char*); +SOAP_FMAC3 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *, const char*, const char*); -inline int soap_read_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p) +inline int soap_read_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p) +inline int soap_GET_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, const char *URL, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p) +inline int soap_POST_recv_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap *soap, prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LinearCompositeModel(struct soap*, const char*, int, const prodml22__LinearCompositeModel *, const char*); -SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml22__LinearCompositeModel(struct soap*, const char*, prodml22__LinearCompositeModel *, const char*); -SOAP_FMAC1 prodml22__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LinearCompositeModel(struct soap*, const char*, int, const prodml23__LinearCompositeModel *, const char*); +SOAP_FMAC3 prodml23__LinearCompositeModel * SOAP_FMAC4 soap_in_prodml23__LinearCompositeModel(struct soap*, const char*, prodml23__LinearCompositeModel *, const char*); +SOAP_FMAC1 prodml23__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LinearCompositeModel * soap_new_prodml22__LinearCompositeModel(struct soap *soap, int n = -1) +inline prodml23__LinearCompositeModel * soap_new_prodml23__LinearCompositeModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LinearCompositeModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LinearCompositeModel(soap, n, NULL, NULL, NULL); } -inline prodml22__LinearCompositeModel * soap_new_req_prodml22__LinearCompositeModel( +inline prodml23__LinearCompositeModel * soap_new_req_prodml23__LinearCompositeModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__LinearCompositeModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeModel(soap); + prodml23__LinearCompositeModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__LinearCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__LinearCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__LinearCompositeModel * soap_new_set_prodml22__LinearCompositeModel( +inline prodml23__LinearCompositeModel * soap_new_set_prodml23__LinearCompositeModel( struct soap *soap, - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface, - prodml22__OrientationOfLinearFront *OrientationOfLinearFront, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio, + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio, + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface, + prodml23__OrientationOfLinearFront *OrientationOfLinearFront, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__LinearCompositeModel *_p = gsoap_eml2_3::soap_new_prodml22__LinearCompositeModel(soap); + prodml23__LinearCompositeModel *_p = gsoap_eml2_3::soap_new_prodml23__LinearCompositeModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LinearCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; - _p->prodml22__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; - _p->prodml22__LinearCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; - _p->prodml22__LinearCompositeModel::OrientationOfLinearFront = OrientationOfLinearFront; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__LinearCompositeModel::InnerToOuterZoneMobilityRatio = InnerToOuterZoneMobilityRatio; + _p->prodml23__LinearCompositeModel::InnerToOuterZoneDiffusivityRatio = InnerToOuterZoneDiffusivityRatio; + _p->prodml23__LinearCompositeModel::DistanceToMobilityInterface = DistanceToMobilityInterface; + _p->prodml23__LinearCompositeModel::OrientationOfLinearFront = OrientationOfLinearFront; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__LinearCompositeModel(struct soap *soap, prodml22__LinearCompositeModel const*p) +inline int soap_write_prodml23__LinearCompositeModel(struct soap *soap, prodml23__LinearCompositeModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel ? "prodml22:LinearCompositeModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel ? "prodml23:LinearCompositeModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LinearCompositeModel(struct soap *soap, const char *URL, prodml22__LinearCompositeModel const*p) +inline int soap_PUT_prodml23__LinearCompositeModel(struct soap *soap, const char *URL, prodml23__LinearCompositeModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel ? "prodml22:LinearCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel ? "prodml23:LinearCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LinearCompositeModel(struct soap *soap, const char *URL, prodml22__LinearCompositeModel const*p) +inline int soap_PATCH_prodml23__LinearCompositeModel(struct soap *soap, const char *URL, prodml23__LinearCompositeModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel ? "prodml22:LinearCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel ? "prodml23:LinearCompositeModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LinearCompositeModel(struct soap *soap, const char *URL, prodml22__LinearCompositeModel const*p) +inline int soap_POST_send_prodml23__LinearCompositeModel(struct soap *soap, const char *URL, prodml23__LinearCompositeModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel ? "prodml22:LinearCompositeModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LinearCompositeModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel ? "prodml23:LinearCompositeModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LinearCompositeModel * SOAP_FMAC4 soap_get_prodml22__LinearCompositeModel(struct soap*, prodml22__LinearCompositeModel *, const char*, const char*); +SOAP_FMAC3 prodml23__LinearCompositeModel * SOAP_FMAC4 soap_get_prodml23__LinearCompositeModel(struct soap*, prodml23__LinearCompositeModel *, const char*, const char*); -inline int soap_read_prodml22__LinearCompositeModel(struct soap *soap, prodml22__LinearCompositeModel *p) +inline int soap_read_prodml23__LinearCompositeModel(struct soap *soap, prodml23__LinearCompositeModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LinearCompositeModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LinearCompositeModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LinearCompositeModel(struct soap *soap, const char *URL, prodml22__LinearCompositeModel *p) +inline int soap_GET_prodml23__LinearCompositeModel(struct soap *soap, const char *URL, prodml23__LinearCompositeModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LinearCompositeModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LinearCompositeModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LinearCompositeModel(struct soap *soap, prodml22__LinearCompositeModel *p) +inline int soap_POST_recv_prodml23__LinearCompositeModel(struct soap *soap, prodml23__LinearCompositeModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__LinearCompositeModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LinearCompositeModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InfiniteBoundaryModel(struct soap*, const char*, int, const prodml22__InfiniteBoundaryModel *, const char*); -SOAP_FMAC3 prodml22__InfiniteBoundaryModel * SOAP_FMAC4 soap_in_prodml22__InfiniteBoundaryModel(struct soap*, const char*, prodml22__InfiniteBoundaryModel *, const char*); -SOAP_FMAC1 prodml22__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__InfiniteBoundaryModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InfiniteBoundaryModel(struct soap*, const char*, int, const prodml23__InfiniteBoundaryModel *, const char*); +SOAP_FMAC3 prodml23__InfiniteBoundaryModel * SOAP_FMAC4 soap_in_prodml23__InfiniteBoundaryModel(struct soap*, const char*, prodml23__InfiniteBoundaryModel *, const char*); +SOAP_FMAC1 prodml23__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__InfiniteBoundaryModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InfiniteBoundaryModel * soap_new_prodml22__InfiniteBoundaryModel(struct soap *soap, int n = -1) +inline prodml23__InfiniteBoundaryModel * soap_new_prodml23__InfiniteBoundaryModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InfiniteBoundaryModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InfiniteBoundaryModel(soap, n, NULL, NULL, NULL); } -inline prodml22__InfiniteBoundaryModel * soap_new_req_prodml22__InfiniteBoundaryModel( +inline prodml23__InfiniteBoundaryModel * soap_new_req_prodml23__InfiniteBoundaryModel( struct soap *soap) { - prodml22__InfiniteBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml22__InfiniteBoundaryModel(soap); + prodml23__InfiniteBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml23__InfiniteBoundaryModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__InfiniteBoundaryModel * soap_new_set_prodml22__InfiniteBoundaryModel( +inline prodml23__InfiniteBoundaryModel * soap_new_set_prodml23__InfiniteBoundaryModel( struct soap *soap, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__InfiniteBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml22__InfiniteBoundaryModel(soap); + prodml23__InfiniteBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml23__InfiniteBoundaryModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__InfiniteBoundaryModel(struct soap *soap, prodml22__InfiniteBoundaryModel const*p) +inline int soap_write_prodml23__InfiniteBoundaryModel(struct soap *soap, prodml23__InfiniteBoundaryModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel ? "prodml22:InfiniteBoundaryModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel ? "prodml23:InfiniteBoundaryModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml22__InfiniteBoundaryModel const*p) +inline int soap_PUT_prodml23__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml23__InfiniteBoundaryModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel ? "prodml22:InfiniteBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel ? "prodml23:InfiniteBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml22__InfiniteBoundaryModel const*p) +inline int soap_PATCH_prodml23__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml23__InfiniteBoundaryModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel ? "prodml22:InfiniteBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel ? "prodml23:InfiniteBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml22__InfiniteBoundaryModel const*p) +inline int soap_POST_send_prodml23__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml23__InfiniteBoundaryModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel ? "prodml22:InfiniteBoundaryModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InfiniteBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel ? "prodml23:InfiniteBoundaryModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InfiniteBoundaryModel * SOAP_FMAC4 soap_get_prodml22__InfiniteBoundaryModel(struct soap*, prodml22__InfiniteBoundaryModel *, const char*, const char*); +SOAP_FMAC3 prodml23__InfiniteBoundaryModel * SOAP_FMAC4 soap_get_prodml23__InfiniteBoundaryModel(struct soap*, prodml23__InfiniteBoundaryModel *, const char*, const char*); -inline int soap_read_prodml22__InfiniteBoundaryModel(struct soap *soap, prodml22__InfiniteBoundaryModel *p) +inline int soap_read_prodml23__InfiniteBoundaryModel(struct soap *soap, prodml23__InfiniteBoundaryModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InfiniteBoundaryModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InfiniteBoundaryModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml22__InfiniteBoundaryModel *p) +inline int soap_GET_prodml23__InfiniteBoundaryModel(struct soap *soap, const char *URL, prodml23__InfiniteBoundaryModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InfiniteBoundaryModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InfiniteBoundaryModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InfiniteBoundaryModel(struct soap *soap, prodml22__InfiniteBoundaryModel *p) +inline int soap_POST_recv_prodml23__InfiniteBoundaryModel(struct soap *soap, prodml23__InfiniteBoundaryModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__InfiniteBoundaryModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InfiniteBoundaryModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, const char*, int, const prodml22__HorizontalWellboreMultipleVariableFracturedModel *, const char*); -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, const char*, prodml22__HorizontalWellboreMultipleVariableFracturedModel *, const char*); -SOAP_FMAC1 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, const char*, int, const prodml23__HorizontalWellboreMultipleVariableFracturedModel *, const char*); +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, const char*, prodml23__HorizontalWellboreMultipleVariableFracturedModel *, const char*); +SOAP_FMAC1 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HorizontalWellboreMultipleVariableFracturedModel * soap_new_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, int n = -1) +inline prodml23__HorizontalWellboreMultipleVariableFracturedModel * soap_new_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, n, NULL, NULL, NULL); } -inline prodml22__HorizontalWellboreMultipleVariableFracturedModel * soap_new_req_prodml22__HorizontalWellboreMultipleVariableFracturedModel( +inline prodml23__HorizontalWellboreMultipleVariableFracturedModel * soap_new_req_prodml23__HorizontalWellboreMultipleVariableFracturedModel( struct soap *soap, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__NumberOfFractures *NumberOfFractures, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__NumberOfFractures *NumberOfFractures, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__HorizontalWellboreMultipleVariableFracturedModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap); + prodml23__HorizontalWellboreMultipleVariableFracturedModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures = NumberOfFractures; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures = NumberOfFractures; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__HorizontalWellboreMultipleVariableFracturedModel * soap_new_set_prodml22__HorizontalWellboreMultipleVariableFracturedModel( +inline prodml23__HorizontalWellboreMultipleVariableFracturedModel * soap_new_set_prodml23__HorizontalWellboreMultipleVariableFracturedModel( struct soap *soap, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__OrientationWellTrajectory *OrientationWellTrajectory, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, - prodml22__NumberOfFractures *NumberOfFractures, - const std::vector & singleFractureSubModel, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__OrientationWellTrajectory *OrientationWellTrajectory, + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, + prodml23__NumberOfFractures *NumberOfFractures, + const std::vector & singleFractureSubModel, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__HorizontalWellboreMultipleVariableFracturedModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap); + prodml23__HorizontalWellboreMultipleVariableFracturedModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory = OrientationWellTrajectory; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures = NumberOfFractures; - _p->prodml22__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel = singleFractureSubModel; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::OrientationWellTrajectory = OrientationWellTrajectory; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::NumberOfFractures = NumberOfFractures; + _p->prodml23__HorizontalWellboreMultipleVariableFracturedModel::singleFractureSubModel = singleFractureSubModel; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleVariableFracturedModel const*p) +inline int soap_write_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleVariableFracturedModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel ? "prodml22:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel ? "prodml23:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleVariableFracturedModel const*p) +inline int soap_PUT_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleVariableFracturedModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel ? "prodml22:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel ? "prodml23:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleVariableFracturedModel const*p) +inline int soap_PATCH_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleVariableFracturedModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel ? "prodml22:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel ? "prodml23:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleVariableFracturedModel const*p) +inline int soap_POST_send_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleVariableFracturedModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel ? "prodml22:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleVariableFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel ? "prodml23:HorizontalWellboreMultipleVariableFracturedModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, prodml22__HorizontalWellboreMultipleVariableFracturedModel *, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, prodml23__HorizontalWellboreMultipleVariableFracturedModel *, const char*, const char*); -inline int soap_read_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleVariableFracturedModel *p) +inline int soap_read_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleVariableFracturedModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleVariableFracturedModel *p) +inline int soap_GET_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleVariableFracturedModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleVariableFracturedModel *p) +inline int soap_POST_recv_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleVariableFracturedModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__HorizontalWellboreMultipleVariableFracturedModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HorizontalWellboreMultipleVariableFracturedModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, const char*, int, const prodml22__HorizontalWellboreMultipleEqualFracturedModel *, const char*); -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, const char*, prodml22__HorizontalWellboreMultipleEqualFracturedModel *, const char*); -SOAP_FMAC1 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, const char*, int, const prodml23__HorizontalWellboreMultipleEqualFracturedModel *, const char*); +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, const char*, prodml23__HorizontalWellboreMultipleEqualFracturedModel *, const char*); +SOAP_FMAC1 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HorizontalWellboreMultipleEqualFracturedModel * soap_new_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, int n = -1) +inline prodml23__HorizontalWellboreMultipleEqualFracturedModel * soap_new_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, n, NULL, NULL, NULL); } -inline prodml22__HorizontalWellboreMultipleEqualFracturedModel * soap_new_req_prodml22__HorizontalWellboreMultipleEqualFracturedModel( +inline prodml23__HorizontalWellboreMultipleEqualFracturedModel * soap_new_req_prodml23__HorizontalWellboreMultipleEqualFracturedModel( struct soap *soap, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__NumberOfFractures *NumberOfFractures, - prodml22__FractureAngleToWellbore *FractureAngleToWellbore, - prodml22__FractureModelType FractureModelType, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__NumberOfFractures *NumberOfFractures, + prodml23__FractureAngleToWellbore *FractureAngleToWellbore, + prodml23__FractureModelType FractureModelType, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__HorizontalWellboreMultipleEqualFracturedModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap); + prodml23__HorizontalWellboreMultipleEqualFracturedModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures = NumberOfFractures; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore = FractureAngleToWellbore; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType = FractureModelType; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures = NumberOfFractures; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore = FractureAngleToWellbore; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType = FractureModelType; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__HorizontalWellboreMultipleEqualFracturedModel * soap_new_set_prodml22__HorizontalWellboreMultipleEqualFracturedModel( +inline prodml23__HorizontalWellboreMultipleEqualFracturedModel * soap_new_set_prodml23__HorizontalWellboreMultipleEqualFracturedModel( struct soap *soap, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__FractureFaceSkin *FractureFaceSkin, - prodml22__FractureConductivity *FractureConductivity, - prodml22__OrientationWellTrajectory *OrientationWellTrajectory, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, - prodml22__NumberOfFractures *NumberOfFractures, - prodml22__FractureHeight *FractureHeight, - prodml22__FractureAngleToWellbore *FractureAngleToWellbore, - prodml22__FractureStorativityRatio *FractureStorativityRatio, - prodml22__FractureModelType FractureModelType, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__FractureFaceSkin *FractureFaceSkin, + prodml23__FractureConductivity *FractureConductivity, + prodml23__OrientationWellTrajectory *OrientationWellTrajectory, + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, + prodml23__NumberOfFractures *NumberOfFractures, + prodml23__FractureHeight *FractureHeight, + prodml23__FractureAngleToWellbore *FractureAngleToWellbore, + prodml23__FractureStorativityRatio *FractureStorativityRatio, + prodml23__FractureModelType FractureModelType, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__HorizontalWellboreMultipleEqualFracturedModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap); + prodml23__HorizontalWellboreMultipleEqualFracturedModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin = FractureFaceSkin; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity = FractureConductivity; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory = OrientationWellTrajectory; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures = NumberOfFractures; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight = FractureHeight; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore = FractureAngleToWellbore; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio = FractureStorativityRatio; - _p->prodml22__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType = FractureModelType; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureFaceSkin = FractureFaceSkin; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureConductivity = FractureConductivity; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::OrientationWellTrajectory = OrientationWellTrajectory; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::NumberOfFractures = NumberOfFractures; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureHeight = FractureHeight; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureAngleToWellbore = FractureAngleToWellbore; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureStorativityRatio = FractureStorativityRatio; + _p->prodml23__HorizontalWellboreMultipleEqualFracturedModel::FractureModelType = FractureModelType; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleEqualFracturedModel const*p) +inline int soap_write_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleEqualFracturedModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel ? "prodml22:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel ? "prodml23:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleEqualFracturedModel const*p) +inline int soap_PUT_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleEqualFracturedModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel ? "prodml22:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel ? "prodml23:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleEqualFracturedModel const*p) +inline int soap_PATCH_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleEqualFracturedModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel ? "prodml22:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel ? "prodml23:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleEqualFracturedModel const*p) +inline int soap_POST_send_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleEqualFracturedModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel ? "prodml22:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreMultipleEqualFracturedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel ? "prodml23:HorizontalWellboreMultipleEqualFracturedModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, prodml22__HorizontalWellboreMultipleEqualFracturedModel *, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, prodml23__HorizontalWellboreMultipleEqualFracturedModel *, const char*, const char*); -inline int soap_read_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleEqualFracturedModel *p) +inline int soap_read_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleEqualFracturedModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreMultipleEqualFracturedModel *p) +inline int soap_GET_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreMultipleEqualFracturedModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml22__HorizontalWellboreMultipleEqualFracturedModel *p) +inline int soap_POST_recv_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap *soap, prodml23__HorizontalWellboreMultipleEqualFracturedModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__HorizontalWellboreMultipleEqualFracturedModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HorizontalWellboreMultipleEqualFracturedModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellboreModel(struct soap*, const char*, int, const prodml22__HorizontalWellboreModel *, const char*); -SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellboreModel(struct soap*, const char*, prodml22__HorizontalWellboreModel *, const char*); -SOAP_FMAC1 prodml22__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellboreModel(struct soap*, const char*, int, const prodml23__HorizontalWellboreModel *, const char*); +SOAP_FMAC3 prodml23__HorizontalWellboreModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellboreModel(struct soap*, const char*, prodml23__HorizontalWellboreModel *, const char*); +SOAP_FMAC1 prodml23__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HorizontalWellboreModel * soap_new_prodml22__HorizontalWellboreModel(struct soap *soap, int n = -1) +inline prodml23__HorizontalWellboreModel * soap_new_prodml23__HorizontalWellboreModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HorizontalWellboreModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HorizontalWellboreModel(soap, n, NULL, NULL, NULL); } -inline prodml22__HorizontalWellboreModel * soap_new_req_prodml22__HorizontalWellboreModel( +inline prodml23__HorizontalWellboreModel * soap_new_req_prodml23__HorizontalWellboreModel( struct soap *soap, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__HorizontalWellboreModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellboreModel(soap); + prodml23__HorizontalWellboreModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellboreModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__HorizontalWellboreModel * soap_new_set_prodml22__HorizontalWellboreModel( +inline prodml23__HorizontalWellboreModel * soap_new_set_prodml23__HorizontalWellboreModel( struct soap *soap, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__OrientationWellTrajectory *OrientationWellTrajectory, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__OrientationWellTrajectory *OrientationWellTrajectory, + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__HorizontalWellboreModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellboreModel(soap); + prodml23__HorizontalWellboreModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellboreModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellboreModel::OrientationWellTrajectory = OrientationWellTrajectory; - _p->prodml22__HorizontalWellboreModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellboreModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__HorizontalWellboreModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellboreModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellboreModel::OrientationWellTrajectory = OrientationWellTrajectory; + _p->prodml23__HorizontalWellboreModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellboreModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__HorizontalWellboreModel(struct soap *soap, prodml22__HorizontalWellboreModel const*p) +inline int soap_write_prodml23__HorizontalWellboreModel(struct soap *soap, prodml23__HorizontalWellboreModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel ? "prodml22:HorizontalWellboreModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel ? "prodml23:HorizontalWellboreModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreModel const*p) +inline int soap_PUT_prodml23__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel ? "prodml22:HorizontalWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel ? "prodml23:HorizontalWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreModel const*p) +inline int soap_PATCH_prodml23__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel ? "prodml22:HorizontalWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel ? "prodml23:HorizontalWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreModel const*p) +inline int soap_POST_send_prodml23__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel ? "prodml22:HorizontalWellboreModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel ? "prodml23:HorizontalWellboreModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HorizontalWellboreModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellboreModel(struct soap*, prodml22__HorizontalWellboreModel *, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalWellboreModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellboreModel(struct soap*, prodml23__HorizontalWellboreModel *, const char*, const char*); -inline int soap_read_prodml22__HorizontalWellboreModel(struct soap *soap, prodml22__HorizontalWellboreModel *p) +inline int soap_read_prodml23__HorizontalWellboreModel(struct soap *soap, prodml23__HorizontalWellboreModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HorizontalWellboreModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HorizontalWellboreModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml22__HorizontalWellboreModel *p) +inline int soap_GET_prodml23__HorizontalWellboreModel(struct soap *soap, const char *URL, prodml23__HorizontalWellboreModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HorizontalWellboreModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HorizontalWellboreModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HorizontalWellboreModel(struct soap *soap, prodml22__HorizontalWellboreModel *p) +inline int soap_POST_recv_prodml23__HorizontalWellboreModel(struct soap *soap, prodml23__HorizontalWellboreModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__HorizontalWellboreModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HorizontalWellboreModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HorizontalWellbore2LayerModel(struct soap*, const char*, int, const prodml22__HorizontalWellbore2LayerModel *, const char*); -SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml22__HorizontalWellbore2LayerModel(struct soap*, const char*, prodml22__HorizontalWellbore2LayerModel *, const char*); -SOAP_FMAC1 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellbore2LayerModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HorizontalWellbore2LayerModel(struct soap*, const char*, int, const prodml23__HorizontalWellbore2LayerModel *, const char*); +SOAP_FMAC3 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_in_prodml23__HorizontalWellbore2LayerModel(struct soap*, const char*, prodml23__HorizontalWellbore2LayerModel *, const char*); +SOAP_FMAC1 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellbore2LayerModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HorizontalWellbore2LayerModel * soap_new_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, int n = -1) +inline prodml23__HorizontalWellbore2LayerModel * soap_new_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HorizontalWellbore2LayerModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HorizontalWellbore2LayerModel(soap, n, NULL, NULL, NULL); } -inline prodml22__HorizontalWellbore2LayerModel * soap_new_req_prodml22__HorizontalWellbore2LayerModel( +inline prodml23__HorizontalWellbore2LayerModel * soap_new_req_prodml23__HorizontalWellbore2LayerModel( struct soap *soap, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__HorizontalWellbore2LayerModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellbore2LayerModel(soap); + prodml23__HorizontalWellbore2LayerModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellbore2LayerModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__HorizontalWellbore2LayerModel * soap_new_set_prodml22__HorizontalWellbore2LayerModel( +inline prodml23__HorizontalWellbore2LayerModel * soap_new_set_prodml23__HorizontalWellbore2LayerModel( struct soap *soap, - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, - prodml22__OrientationWellTrajectory *OrientationWellTrajectory, - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness, + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness, + prodml23__OrientationWellTrajectory *OrientationWellTrajectory, + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing, + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__HorizontalWellbore2LayerModel *_p = gsoap_eml2_3::soap_new_prodml22__HorizontalWellbore2LayerModel(soap); + prodml23__HorizontalWellbore2LayerModel *_p = gsoap_eml2_3::soap_new_prodml23__HorizontalWellbore2LayerModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; - _p->prodml22__HorizontalWellbore2LayerModel::OrientationWellTrajectory = OrientationWellTrajectory; - _p->prodml22__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; - _p->prodml22__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__HorizontalWellbore2LayerModel::ConvergenceSkinRelativeToTotalThickness = ConvergenceSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellbore2LayerModel::MechanicalSkinRelativeToTotalThickness = MechanicalSkinRelativeToTotalThickness; + _p->prodml23__HorizontalWellbore2LayerModel::OrientationWellTrajectory = OrientationWellTrajectory; + _p->prodml23__HorizontalWellbore2LayerModel::LengthHorizontalWellboreFlowing = LengthHorizontalWellboreFlowing; + _p->prodml23__HorizontalWellbore2LayerModel::DistanceWellboreToBottomBoundary = DistanceWellboreToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, prodml22__HorizontalWellbore2LayerModel const*p) +inline int soap_write_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, prodml23__HorizontalWellbore2LayerModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel ? "prodml22:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel ? "prodml23:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml22__HorizontalWellbore2LayerModel const*p) +inline int soap_PUT_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml23__HorizontalWellbore2LayerModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel ? "prodml22:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel ? "prodml23:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml22__HorizontalWellbore2LayerModel const*p) +inline int soap_PATCH_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml23__HorizontalWellbore2LayerModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel ? "prodml22:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel ? "prodml23:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml22__HorizontalWellbore2LayerModel const*p) +inline int soap_POST_send_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml23__HorizontalWellbore2LayerModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel ? "prodml22:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HorizontalWellbore2LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel ? "prodml23:HorizontalWellbore2LayerModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_get_prodml22__HorizontalWellbore2LayerModel(struct soap*, prodml22__HorizontalWellbore2LayerModel *, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC4 soap_get_prodml23__HorizontalWellbore2LayerModel(struct soap*, prodml23__HorizontalWellbore2LayerModel *, const char*, const char*); -inline int soap_read_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, prodml22__HorizontalWellbore2LayerModel *p) +inline int soap_read_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, prodml23__HorizontalWellbore2LayerModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HorizontalWellbore2LayerModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HorizontalWellbore2LayerModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml22__HorizontalWellbore2LayerModel *p) +inline int soap_GET_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, const char *URL, prodml23__HorizontalWellbore2LayerModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HorizontalWellbore2LayerModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HorizontalWellbore2LayerModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HorizontalWellbore2LayerModel(struct soap *soap, prodml22__HorizontalWellbore2LayerModel *p) +inline int soap_POST_recv_prodml23__HorizontalWellbore2LayerModel(struct soap *soap, prodml23__HorizontalWellbore2LayerModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__HorizontalWellbore2LayerModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HorizontalWellbore2LayerModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HomogeneousModel(struct soap*, const char*, int, const prodml22__HomogeneousModel *, const char*); -SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_in_prodml22__HomogeneousModel(struct soap*, const char*, prodml22__HomogeneousModel *, const char*); -SOAP_FMAC1 prodml22__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml22__HomogeneousModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HomogeneousModel(struct soap*, const char*, int, const prodml23__HomogeneousModel *, const char*); +SOAP_FMAC3 prodml23__HomogeneousModel * SOAP_FMAC4 soap_in_prodml23__HomogeneousModel(struct soap*, const char*, prodml23__HomogeneousModel *, const char*); +SOAP_FMAC1 prodml23__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml23__HomogeneousModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HomogeneousModel * soap_new_prodml22__HomogeneousModel(struct soap *soap, int n = -1) +inline prodml23__HomogeneousModel * soap_new_prodml23__HomogeneousModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HomogeneousModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HomogeneousModel(soap, n, NULL, NULL, NULL); } -inline prodml22__HomogeneousModel * soap_new_req_prodml22__HomogeneousModel( +inline prodml23__HomogeneousModel * soap_new_req_prodml23__HomogeneousModel( struct soap *soap, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__HomogeneousModel *_p = gsoap_eml2_3::soap_new_prodml22__HomogeneousModel(soap); + prodml23__HomogeneousModel *_p = gsoap_eml2_3::soap_new_prodml23__HomogeneousModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__HomogeneousModel * soap_new_set_prodml22__HomogeneousModel( +inline prodml23__HomogeneousModel * soap_new_set_prodml23__HomogeneousModel( struct soap *soap, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__HomogeneousModel *_p = gsoap_eml2_3::soap_new_prodml22__HomogeneousModel(soap); + prodml23__HomogeneousModel *_p = gsoap_eml2_3::soap_new_prodml23__HomogeneousModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__HomogeneousModel(struct soap *soap, prodml22__HomogeneousModel const*p) +inline int soap_write_prodml23__HomogeneousModel(struct soap *soap, prodml23__HomogeneousModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel ? "prodml22:HomogeneousModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel ? "prodml23:HomogeneousModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HomogeneousModel(struct soap *soap, const char *URL, prodml22__HomogeneousModel const*p) +inline int soap_PUT_prodml23__HomogeneousModel(struct soap *soap, const char *URL, prodml23__HomogeneousModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel ? "prodml22:HomogeneousModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel ? "prodml23:HomogeneousModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HomogeneousModel(struct soap *soap, const char *URL, prodml22__HomogeneousModel const*p) +inline int soap_PATCH_prodml23__HomogeneousModel(struct soap *soap, const char *URL, prodml23__HomogeneousModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel ? "prodml22:HomogeneousModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel ? "prodml23:HomogeneousModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HomogeneousModel(struct soap *soap, const char *URL, prodml22__HomogeneousModel const*p) +inline int soap_POST_send_prodml23__HomogeneousModel(struct soap *soap, const char *URL, prodml23__HomogeneousModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel ? "prodml22:HomogeneousModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HomogeneousModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel ? "prodml23:HomogeneousModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HomogeneousModel * SOAP_FMAC4 soap_get_prodml22__HomogeneousModel(struct soap*, prodml22__HomogeneousModel *, const char*, const char*); +SOAP_FMAC3 prodml23__HomogeneousModel * SOAP_FMAC4 soap_get_prodml23__HomogeneousModel(struct soap*, prodml23__HomogeneousModel *, const char*, const char*); -inline int soap_read_prodml22__HomogeneousModel(struct soap *soap, prodml22__HomogeneousModel *p) +inline int soap_read_prodml23__HomogeneousModel(struct soap *soap, prodml23__HomogeneousModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HomogeneousModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HomogeneousModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HomogeneousModel(struct soap *soap, const char *URL, prodml22__HomogeneousModel *p) +inline int soap_GET_prodml23__HomogeneousModel(struct soap *soap, const char *URL, prodml23__HomogeneousModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HomogeneousModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HomogeneousModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HomogeneousModel(struct soap *soap, prodml22__HomogeneousModel *p) +inline int soap_POST_recv_prodml23__HomogeneousModel(struct soap *soap, prodml23__HomogeneousModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__HomogeneousModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HomogeneousModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedUniformFluxModel(struct soap*, const char*, int, const prodml22__FracturedUniformFluxModel *, const char*); -SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__FracturedUniformFluxModel(struct soap*, const char*, prodml22__FracturedUniformFluxModel *, const char*); -SOAP_FMAC1 prodml22__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedUniformFluxModel(struct soap*, const char*, int, const prodml23__FracturedUniformFluxModel *, const char*); +SOAP_FMAC3 prodml23__FracturedUniformFluxModel * SOAP_FMAC4 soap_in_prodml23__FracturedUniformFluxModel(struct soap*, const char*, prodml23__FracturedUniformFluxModel *, const char*); +SOAP_FMAC1 prodml23__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FracturedUniformFluxModel * soap_new_prodml22__FracturedUniformFluxModel(struct soap *soap, int n = -1) +inline prodml23__FracturedUniformFluxModel * soap_new_prodml23__FracturedUniformFluxModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FracturedUniformFluxModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FracturedUniformFluxModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FracturedUniformFluxModel * soap_new_req_prodml22__FracturedUniformFluxModel( +inline prodml23__FracturedUniformFluxModel * soap_new_req_prodml23__FracturedUniformFluxModel( struct soap *soap, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FracturedUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedUniformFluxModel(soap); + prodml23__FracturedUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedUniformFluxModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedUniformFluxModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__FracturedUniformFluxModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FracturedUniformFluxModel * soap_new_set_prodml22__FracturedUniformFluxModel( +inline prodml23__FracturedUniformFluxModel * soap_new_set_prodml23__FracturedUniformFluxModel( struct soap *soap, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__FractureFaceSkin *FractureFaceSkin, - prodml22__OrientationOfFracturePlane *OrientationOfFracturePlane, - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, - prodml22__FractureHeight *FractureHeight, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__FractureFaceSkin *FractureFaceSkin, + prodml23__OrientationOfFracturePlane *OrientationOfFracturePlane, + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, + prodml23__FractureHeight *FractureHeight, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FracturedUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedUniformFluxModel(soap); + prodml23__FracturedUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedUniformFluxModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__FracturedUniformFluxModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__FracturedUniformFluxModel::FractureFaceSkin = FractureFaceSkin; - _p->prodml22__FracturedUniformFluxModel::OrientationOfFracturePlane = OrientationOfFracturePlane; - _p->prodml22__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; - _p->prodml22__FracturedUniformFluxModel::FractureHeight = FractureHeight; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FracturedUniformFluxModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__FracturedUniformFluxModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__FracturedUniformFluxModel::FractureFaceSkin = FractureFaceSkin; + _p->prodml23__FracturedUniformFluxModel::OrientationOfFracturePlane = OrientationOfFracturePlane; + _p->prodml23__FracturedUniformFluxModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; + _p->prodml23__FracturedUniformFluxModel::FractureHeight = FractureHeight; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FracturedUniformFluxModel(struct soap *soap, prodml22__FracturedUniformFluxModel const*p) +inline int soap_write_prodml23__FracturedUniformFluxModel(struct soap *soap, prodml23__FracturedUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel ? "prodml22:FracturedUniformFluxModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel ? "prodml23:FracturedUniformFluxModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedUniformFluxModel const*p) +inline int soap_PUT_prodml23__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel ? "prodml22:FracturedUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel ? "prodml23:FracturedUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedUniformFluxModel const*p) +inline int soap_PATCH_prodml23__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel ? "prodml22:FracturedUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel ? "prodml23:FracturedUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedUniformFluxModel const*p) +inline int soap_POST_send_prodml23__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel ? "prodml22:FracturedUniformFluxModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel ? "prodml23:FracturedUniformFluxModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FracturedUniformFluxModel * SOAP_FMAC4 soap_get_prodml22__FracturedUniformFluxModel(struct soap*, prodml22__FracturedUniformFluxModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FracturedUniformFluxModel * SOAP_FMAC4 soap_get_prodml23__FracturedUniformFluxModel(struct soap*, prodml23__FracturedUniformFluxModel *, const char*, const char*); -inline int soap_read_prodml22__FracturedUniformFluxModel(struct soap *soap, prodml22__FracturedUniformFluxModel *p) +inline int soap_read_prodml23__FracturedUniformFluxModel(struct soap *soap, prodml23__FracturedUniformFluxModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FracturedUniformFluxModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FracturedUniformFluxModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedUniformFluxModel *p) +inline int soap_GET_prodml23__FracturedUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedUniformFluxModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FracturedUniformFluxModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FracturedUniformFluxModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FracturedUniformFluxModel(struct soap *soap, prodml22__FracturedUniformFluxModel *p) +inline int soap_POST_recv_prodml23__FracturedUniformFluxModel(struct soap *soap, prodml23__FracturedUniformFluxModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FracturedUniformFluxModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FracturedUniformFluxModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedInfiniteConductivityModel(struct soap*, const char*, int, const prodml22__FracturedInfiniteConductivityModel *, const char*); -SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedInfiniteConductivityModel(struct soap*, const char*, prodml22__FracturedInfiniteConductivityModel *, const char*); -SOAP_FMAC1 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedInfiniteConductivityModel(struct soap*, const char*, int, const prodml23__FracturedInfiniteConductivityModel *, const char*); +SOAP_FMAC3 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedInfiniteConductivityModel(struct soap*, const char*, prodml23__FracturedInfiniteConductivityModel *, const char*); +SOAP_FMAC1 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FracturedInfiniteConductivityModel * soap_new_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, int n = -1) +inline prodml23__FracturedInfiniteConductivityModel * soap_new_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FracturedInfiniteConductivityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FracturedInfiniteConductivityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FracturedInfiniteConductivityModel * soap_new_req_prodml22__FracturedInfiniteConductivityModel( +inline prodml23__FracturedInfiniteConductivityModel * soap_new_req_prodml23__FracturedInfiniteConductivityModel( struct soap *soap, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FracturedInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedInfiniteConductivityModel(soap); + prodml23__FracturedInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedInfiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FracturedInfiniteConductivityModel * soap_new_set_prodml22__FracturedInfiniteConductivityModel( +inline prodml23__FracturedInfiniteConductivityModel * soap_new_set_prodml23__FracturedInfiniteConductivityModel( struct soap *soap, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__FractureFaceSkin *FractureFaceSkin, - prodml22__OrientationOfFracturePlane *OrientationOfFracturePlane, - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, - prodml22__FractureHeight *FractureHeight, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__FractureFaceSkin *FractureFaceSkin, + prodml23__OrientationOfFracturePlane *OrientationOfFracturePlane, + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, + prodml23__FractureHeight *FractureHeight, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FracturedInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedInfiniteConductivityModel(soap); + prodml23__FracturedInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedInfiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__FracturedInfiniteConductivityModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__FracturedInfiniteConductivityModel::FractureFaceSkin = FractureFaceSkin; - _p->prodml22__FracturedInfiniteConductivityModel::OrientationOfFracturePlane = OrientationOfFracturePlane; - _p->prodml22__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; - _p->prodml22__FracturedInfiniteConductivityModel::FractureHeight = FractureHeight; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FracturedInfiniteConductivityModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__FracturedInfiniteConductivityModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__FracturedInfiniteConductivityModel::FractureFaceSkin = FractureFaceSkin; + _p->prodml23__FracturedInfiniteConductivityModel::OrientationOfFracturePlane = OrientationOfFracturePlane; + _p->prodml23__FracturedInfiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; + _p->prodml23__FracturedInfiniteConductivityModel::FractureHeight = FractureHeight; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, prodml22__FracturedInfiniteConductivityModel const*p) +inline int soap_write_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, prodml23__FracturedInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel ? "prodml22:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel ? "prodml23:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedInfiniteConductivityModel const*p) +inline int soap_PUT_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel ? "prodml22:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel ? "prodml23:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedInfiniteConductivityModel const*p) +inline int soap_PATCH_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel ? "prodml22:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel ? "prodml23:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedInfiniteConductivityModel const*p) +inline int soap_POST_send_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel ? "prodml22:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel ? "prodml23:FracturedInfiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedInfiniteConductivityModel(struct soap*, prodml22__FracturedInfiniteConductivityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedInfiniteConductivityModel(struct soap*, prodml23__FracturedInfiniteConductivityModel *, const char*, const char*); -inline int soap_read_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, prodml22__FracturedInfiniteConductivityModel *p) +inline int soap_read_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, prodml23__FracturedInfiniteConductivityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FracturedInfiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FracturedInfiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedInfiniteConductivityModel *p) +inline int soap_GET_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedInfiniteConductivityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FracturedInfiniteConductivityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FracturedInfiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FracturedInfiniteConductivityModel(struct soap *soap, prodml22__FracturedInfiniteConductivityModel *p) +inline int soap_POST_recv_prodml23__FracturedInfiniteConductivityModel(struct soap *soap, prodml23__FracturedInfiniteConductivityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FracturedInfiniteConductivityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FracturedInfiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedHorizontalUniformFluxModel(struct soap*, const char*, int, const prodml22__FracturedHorizontalUniformFluxModel *, const char*); -SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_prodml22__FracturedHorizontalUniformFluxModel(struct soap*, const char*, prodml22__FracturedHorizontalUniformFluxModel *, const char*); -SOAP_FMAC1 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedHorizontalUniformFluxModel(struct soap*, const char*, int, const prodml23__FracturedHorizontalUniformFluxModel *, const char*); +SOAP_FMAC3 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_in_prodml23__FracturedHorizontalUniformFluxModel(struct soap*, const char*, prodml23__FracturedHorizontalUniformFluxModel *, const char*); +SOAP_FMAC1 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FracturedHorizontalUniformFluxModel * soap_new_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, int n = -1) +inline prodml23__FracturedHorizontalUniformFluxModel * soap_new_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FracturedHorizontalUniformFluxModel * soap_new_req_prodml22__FracturedHorizontalUniformFluxModel( +inline prodml23__FracturedHorizontalUniformFluxModel * soap_new_req_prodml23__FracturedHorizontalUniformFluxModel( struct soap *soap, - prodml22__FractureRadius *FractureRadius, - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureRadius *FractureRadius, + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FracturedHorizontalUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedHorizontalUniformFluxModel(soap); + prodml23__FracturedHorizontalUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedHorizontalUniformFluxModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius = FractureRadius; - _p->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius = FractureRadius; + _p->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FracturedHorizontalUniformFluxModel * soap_new_set_prodml22__FracturedHorizontalUniformFluxModel( +inline prodml23__FracturedHorizontalUniformFluxModel * soap_new_set_prodml23__FracturedHorizontalUniformFluxModel( struct soap *soap, - prodml22__FractureRadius *FractureRadius, - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__FractureRadius *FractureRadius, + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FracturedHorizontalUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedHorizontalUniformFluxModel(soap); + prodml23__FracturedHorizontalUniformFluxModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedHorizontalUniformFluxModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedHorizontalUniformFluxModel::FractureRadius = FractureRadius; - _p->prodml22__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FracturedHorizontalUniformFluxModel::FractureRadius = FractureRadius; + _p->prodml23__FracturedHorizontalUniformFluxModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml22__FracturedHorizontalUniformFluxModel const*p) +inline int soap_write_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml23__FracturedHorizontalUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel ? "prodml22:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel ? "prodml23:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalUniformFluxModel const*p) +inline int soap_PUT_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel ? "prodml22:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel ? "prodml23:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalUniformFluxModel const*p) +inline int soap_PATCH_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel ? "prodml22:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel ? "prodml23:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalUniformFluxModel const*p) +inline int soap_POST_send_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalUniformFluxModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel ? "prodml22:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalUniformFluxModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel ? "prodml23:FracturedHorizontalUniformFluxModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_get_prodml22__FracturedHorizontalUniformFluxModel(struct soap*, prodml22__FracturedHorizontalUniformFluxModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC4 soap_get_prodml23__FracturedHorizontalUniformFluxModel(struct soap*, prodml23__FracturedHorizontalUniformFluxModel *, const char*, const char*); -inline int soap_read_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml22__FracturedHorizontalUniformFluxModel *p) +inline int soap_read_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml23__FracturedHorizontalUniformFluxModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FracturedHorizontalUniformFluxModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FracturedHorizontalUniformFluxModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalUniformFluxModel *p) +inline int soap_GET_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalUniformFluxModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FracturedHorizontalUniformFluxModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FracturedHorizontalUniformFluxModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml22__FracturedHorizontalUniformFluxModel *p) +inline int soap_POST_recv_prodml23__FracturedHorizontalUniformFluxModel(struct soap *soap, prodml23__FracturedHorizontalUniformFluxModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FracturedHorizontalUniformFluxModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FracturedHorizontalUniformFluxModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap*, const char*, int, const prodml22__FracturedHorizontalInfiniteConductivityModel *, const char*); -SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap*, const char*, prodml22__FracturedHorizontalInfiniteConductivityModel *, const char*); -SOAP_FMAC1 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap*, const char*, int, const prodml23__FracturedHorizontalInfiniteConductivityModel *, const char*); +SOAP_FMAC3 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap*, const char*, prodml23__FracturedHorizontalInfiniteConductivityModel *, const char*); +SOAP_FMAC1 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FracturedHorizontalInfiniteConductivityModel * soap_new_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, int n = -1) +inline prodml23__FracturedHorizontalInfiniteConductivityModel * soap_new_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FracturedHorizontalInfiniteConductivityModel * soap_new_req_prodml22__FracturedHorizontalInfiniteConductivityModel( +inline prodml23__FracturedHorizontalInfiniteConductivityModel * soap_new_req_prodml23__FracturedHorizontalInfiniteConductivityModel( struct soap *soap, - prodml22__FractureRadius *FractureRadius, - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureRadius *FractureRadius, + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FracturedHorizontalInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedHorizontalInfiniteConductivityModel(soap); + prodml23__FracturedHorizontalInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedHorizontalInfiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius = FractureRadius; - _p->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius = FractureRadius; + _p->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FracturedHorizontalInfiniteConductivityModel * soap_new_set_prodml22__FracturedHorizontalInfiniteConductivityModel( +inline prodml23__FracturedHorizontalInfiniteConductivityModel * soap_new_set_prodml23__FracturedHorizontalInfiniteConductivityModel( struct soap *soap, - prodml22__FractureRadius *FractureRadius, - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__FractureRadius *FractureRadius, + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FracturedHorizontalInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedHorizontalInfiniteConductivityModel(soap); + prodml23__FracturedHorizontalInfiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedHorizontalInfiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedHorizontalInfiniteConductivityModel::FractureRadius = FractureRadius; - _p->prodml22__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FracturedHorizontalInfiniteConductivityModel::FractureRadius = FractureRadius; + _p->prodml23__FracturedHorizontalInfiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalInfiniteConductivityModel const*p) +inline int soap_write_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel ? "prodml22:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel ? "prodml23:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalInfiniteConductivityModel const*p) +inline int soap_PUT_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel ? "prodml22:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel ? "prodml23:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalInfiniteConductivityModel const*p) +inline int soap_PATCH_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel ? "prodml22:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel ? "prodml23:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalInfiniteConductivityModel const*p) +inline int soap_POST_send_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalInfiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel ? "prodml22:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalInfiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel ? "prodml23:FracturedHorizontalInfiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap*, prodml22__FracturedHorizontalInfiniteConductivityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap*, prodml23__FracturedHorizontalInfiniteConductivityModel *, const char*, const char*); -inline int soap_read_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalInfiniteConductivityModel *p) +inline int soap_read_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalInfiniteConductivityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalInfiniteConductivityModel *p) +inline int soap_GET_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalInfiniteConductivityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalInfiniteConductivityModel *p) +inline int soap_POST_recv_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalInfiniteConductivityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FracturedHorizontalInfiniteConductivityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FracturedHorizontalInfiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap*, const char*, int, const prodml22__FracturedHorizontalFiniteConductivityModel *, const char*); -SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap*, const char*, prodml22__FracturedHorizontalFiniteConductivityModel *, const char*); -SOAP_FMAC1 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap*, const char*, int, const prodml23__FracturedHorizontalFiniteConductivityModel *, const char*); +SOAP_FMAC3 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap*, const char*, prodml23__FracturedHorizontalFiniteConductivityModel *, const char*); +SOAP_FMAC1 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FracturedHorizontalFiniteConductivityModel * soap_new_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, int n = -1) +inline prodml23__FracturedHorizontalFiniteConductivityModel * soap_new_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FracturedHorizontalFiniteConductivityModel * soap_new_req_prodml22__FracturedHorizontalFiniteConductivityModel( +inline prodml23__FracturedHorizontalFiniteConductivityModel * soap_new_req_prodml23__FracturedHorizontalFiniteConductivityModel( struct soap *soap, - prodml22__FractureConductivity *FractureConductivity, - prodml22__FractureRadius *FractureRadius, - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureConductivity *FractureConductivity, + prodml23__FractureRadius *FractureRadius, + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FracturedHorizontalFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedHorizontalFiniteConductivityModel(soap); + prodml23__FracturedHorizontalFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedHorizontalFiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity = FractureConductivity; - _p->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius = FractureRadius; - _p->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity = FractureConductivity; + _p->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius = FractureRadius; + _p->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FracturedHorizontalFiniteConductivityModel * soap_new_set_prodml22__FracturedHorizontalFiniteConductivityModel( +inline prodml23__FracturedHorizontalFiniteConductivityModel * soap_new_set_prodml23__FracturedHorizontalFiniteConductivityModel( struct soap *soap, - prodml22__FractureConductivity *FractureConductivity, - prodml22__FractureRadius *FractureRadius, - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__FractureConductivity *FractureConductivity, + prodml23__FractureRadius *FractureRadius, + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FracturedHorizontalFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedHorizontalFiniteConductivityModel(soap); + prodml23__FracturedHorizontalFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedHorizontalFiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedHorizontalFiniteConductivityModel::FractureConductivity = FractureConductivity; - _p->prodml22__FracturedHorizontalFiniteConductivityModel::FractureRadius = FractureRadius; - _p->prodml22__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FracturedHorizontalFiniteConductivityModel::FractureConductivity = FractureConductivity; + _p->prodml23__FracturedHorizontalFiniteConductivityModel::FractureRadius = FractureRadius; + _p->prodml23__FracturedHorizontalFiniteConductivityModel::DistanceFractureToBottomBoundary = DistanceFractureToBottomBoundary; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalFiniteConductivityModel const*p) +inline int soap_write_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel ? "prodml22:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel ? "prodml23:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalFiniteConductivityModel const*p) +inline int soap_PUT_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel ? "prodml22:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel ? "prodml23:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalFiniteConductivityModel const*p) +inline int soap_PATCH_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel ? "prodml22:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel ? "prodml23:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalFiniteConductivityModel const*p) +inline int soap_POST_send_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel ? "prodml22:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedHorizontalFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel ? "prodml23:FracturedHorizontalFiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap*, prodml22__FracturedHorizontalFiniteConductivityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap*, prodml23__FracturedHorizontalFiniteConductivityModel *, const char*, const char*); -inline int soap_read_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalFiniteConductivityModel *p) +inline int soap_read_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalFiniteConductivityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FracturedHorizontalFiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FracturedHorizontalFiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedHorizontalFiniteConductivityModel *p) +inline int soap_GET_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedHorizontalFiniteConductivityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FracturedHorizontalFiniteConductivityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FracturedHorizontalFiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml22__FracturedHorizontalFiniteConductivityModel *p) +inline int soap_POST_recv_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap *soap, prodml23__FracturedHorizontalFiniteConductivityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FracturedHorizontalFiniteConductivityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FracturedHorizontalFiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FracturedFiniteConductivityModel(struct soap*, const char*, int, const prodml22__FracturedFiniteConductivityModel *, const char*); -SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml22__FracturedFiniteConductivityModel(struct soap*, const char*, prodml22__FracturedFiniteConductivityModel *, const char*); -SOAP_FMAC1 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FracturedFiniteConductivityModel(struct soap*, const char*, int, const prodml23__FracturedFiniteConductivityModel *, const char*); +SOAP_FMAC3 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_in_prodml23__FracturedFiniteConductivityModel(struct soap*, const char*, prodml23__FracturedFiniteConductivityModel *, const char*); +SOAP_FMAC1 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FracturedFiniteConductivityModel * soap_new_prodml22__FracturedFiniteConductivityModel(struct soap *soap, int n = -1) +inline prodml23__FracturedFiniteConductivityModel * soap_new_prodml23__FracturedFiniteConductivityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FracturedFiniteConductivityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FracturedFiniteConductivityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FracturedFiniteConductivityModel * soap_new_req_prodml22__FracturedFiniteConductivityModel( +inline prodml23__FracturedFiniteConductivityModel * soap_new_req_prodml23__FracturedFiniteConductivityModel( struct soap *soap, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__FractureConductivity *FractureConductivity, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__FractureConductivity *FractureConductivity, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FracturedFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedFiniteConductivityModel(soap); + prodml23__FracturedFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedFiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedFiniteConductivityModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__FracturedFiniteConductivityModel::FractureConductivity = FractureConductivity; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__FracturedFiniteConductivityModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__FracturedFiniteConductivityModel::FractureConductivity = FractureConductivity; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FracturedFiniteConductivityModel * soap_new_set_prodml22__FracturedFiniteConductivityModel( +inline prodml23__FracturedFiniteConductivityModel * soap_new_set_prodml23__FracturedFiniteConductivityModel( struct soap *soap, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__FractureHalfLength *FractureHalfLength, - prodml22__FractureFaceSkin *FractureFaceSkin, - prodml22__OrientationOfFracturePlane *OrientationOfFracturePlane, - prodml22__FractureConductivity *FractureConductivity, - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, - prodml22__FractureHeight *FractureHeight, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__FractureHalfLength *FractureHalfLength, + prodml23__FractureFaceSkin *FractureFaceSkin, + prodml23__OrientationOfFracturePlane *OrientationOfFracturePlane, + prodml23__FractureConductivity *FractureConductivity, + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, + prodml23__FractureHeight *FractureHeight, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FracturedFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml22__FracturedFiniteConductivityModel(soap); + prodml23__FracturedFiniteConductivityModel *_p = gsoap_eml2_3::soap_new_prodml23__FracturedFiniteConductivityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__FracturedFiniteConductivityModel::FractureHalfLength = FractureHalfLength; - _p->prodml22__FracturedFiniteConductivityModel::FractureFaceSkin = FractureFaceSkin; - _p->prodml22__FracturedFiniteConductivityModel::OrientationOfFracturePlane = OrientationOfFracturePlane; - _p->prodml22__FracturedFiniteConductivityModel::FractureConductivity = FractureConductivity; - _p->prodml22__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; - _p->prodml22__FracturedFiniteConductivityModel::FractureHeight = FractureHeight; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FracturedFiniteConductivityModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__FracturedFiniteConductivityModel::FractureHalfLength = FractureHalfLength; + _p->prodml23__FracturedFiniteConductivityModel::FractureFaceSkin = FractureFaceSkin; + _p->prodml23__FracturedFiniteConductivityModel::OrientationOfFracturePlane = OrientationOfFracturePlane; + _p->prodml23__FracturedFiniteConductivityModel::FractureConductivity = FractureConductivity; + _p->prodml23__FracturedFiniteConductivityModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; + _p->prodml23__FracturedFiniteConductivityModel::FractureHeight = FractureHeight; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FracturedFiniteConductivityModel(struct soap *soap, prodml22__FracturedFiniteConductivityModel const*p) +inline int soap_write_prodml23__FracturedFiniteConductivityModel(struct soap *soap, prodml23__FracturedFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel ? "prodml22:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel ? "prodml23:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedFiniteConductivityModel const*p) +inline int soap_PUT_prodml23__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel ? "prodml22:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel ? "prodml23:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedFiniteConductivityModel const*p) +inline int soap_PATCH_prodml23__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel ? "prodml22:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel ? "prodml23:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedFiniteConductivityModel const*p) +inline int soap_POST_send_prodml23__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedFiniteConductivityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel ? "prodml22:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FracturedFiniteConductivityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel ? "prodml23:FracturedFiniteConductivityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml22__FracturedFiniteConductivityModel(struct soap*, prodml22__FracturedFiniteConductivityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC4 soap_get_prodml23__FracturedFiniteConductivityModel(struct soap*, prodml23__FracturedFiniteConductivityModel *, const char*, const char*); -inline int soap_read_prodml22__FracturedFiniteConductivityModel(struct soap *soap, prodml22__FracturedFiniteConductivityModel *p) +inline int soap_read_prodml23__FracturedFiniteConductivityModel(struct soap *soap, prodml23__FracturedFiniteConductivityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FracturedFiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FracturedFiniteConductivityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml22__FracturedFiniteConductivityModel *p) +inline int soap_GET_prodml23__FracturedFiniteConductivityModel(struct soap *soap, const char *URL, prodml23__FracturedFiniteConductivityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FracturedFiniteConductivityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FracturedFiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FracturedFiniteConductivityModel(struct soap *soap, prodml22__FracturedFiniteConductivityModel *p) +inline int soap_POST_recv_prodml23__FracturedFiniteConductivityModel(struct soap *soap, prodml23__FracturedFiniteConductivityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FracturedFiniteConductivityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FracturedFiniteConductivityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FiniteRadiusModel(struct soap*, const char*, int, const prodml22__FiniteRadiusModel *, const char*); -SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml22__FiniteRadiusModel(struct soap*, const char*, prodml22__FiniteRadiusModel *, const char*); -SOAP_FMAC1 prodml22__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml22__FiniteRadiusModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FiniteRadiusModel(struct soap*, const char*, int, const prodml23__FiniteRadiusModel *, const char*); +SOAP_FMAC3 prodml23__FiniteRadiusModel * SOAP_FMAC4 soap_in_prodml23__FiniteRadiusModel(struct soap*, const char*, prodml23__FiniteRadiusModel *, const char*); +SOAP_FMAC1 prodml23__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml23__FiniteRadiusModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FiniteRadiusModel * soap_new_prodml22__FiniteRadiusModel(struct soap *soap, int n = -1) +inline prodml23__FiniteRadiusModel * soap_new_prodml23__FiniteRadiusModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FiniteRadiusModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FiniteRadiusModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FiniteRadiusModel * soap_new_req_prodml22__FiniteRadiusModel( +inline prodml23__FiniteRadiusModel * soap_new_req_prodml23__FiniteRadiusModel( struct soap *soap, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__FiniteRadiusModel *_p = gsoap_eml2_3::soap_new_prodml22__FiniteRadiusModel(soap); + prodml23__FiniteRadiusModel *_p = gsoap_eml2_3::soap_new_prodml23__FiniteRadiusModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__FiniteRadiusModel * soap_new_set_prodml22__FiniteRadiusModel( +inline prodml23__FiniteRadiusModel * soap_new_set_prodml23__FiniteRadiusModel( struct soap *soap, - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__FiniteRadiusModel *_p = gsoap_eml2_3::soap_new_prodml22__FiniteRadiusModel(soap); + prodml23__FiniteRadiusModel *_p = gsoap_eml2_3::soap_new_prodml23__FiniteRadiusModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__FiniteRadiusModel::SkinLayer2RelativeToTotalThickness = SkinLayer2RelativeToTotalThickness; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__FiniteRadiusModel(struct soap *soap, prodml22__FiniteRadiusModel const*p) +inline int soap_write_prodml23__FiniteRadiusModel(struct soap *soap, prodml23__FiniteRadiusModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel ? "prodml22:FiniteRadiusModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel ? "prodml23:FiniteRadiusModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FiniteRadiusModel(struct soap *soap, const char *URL, prodml22__FiniteRadiusModel const*p) +inline int soap_PUT_prodml23__FiniteRadiusModel(struct soap *soap, const char *URL, prodml23__FiniteRadiusModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel ? "prodml22:FiniteRadiusModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel ? "prodml23:FiniteRadiusModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FiniteRadiusModel(struct soap *soap, const char *URL, prodml22__FiniteRadiusModel const*p) +inline int soap_PATCH_prodml23__FiniteRadiusModel(struct soap *soap, const char *URL, prodml23__FiniteRadiusModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel ? "prodml22:FiniteRadiusModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel ? "prodml23:FiniteRadiusModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FiniteRadiusModel(struct soap *soap, const char *URL, prodml22__FiniteRadiusModel const*p) +inline int soap_POST_send_prodml23__FiniteRadiusModel(struct soap *soap, const char *URL, prodml23__FiniteRadiusModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel ? "prodml22:FiniteRadiusModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FiniteRadiusModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel ? "prodml23:FiniteRadiusModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FiniteRadiusModel * SOAP_FMAC4 soap_get_prodml22__FiniteRadiusModel(struct soap*, prodml22__FiniteRadiusModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FiniteRadiusModel * SOAP_FMAC4 soap_get_prodml23__FiniteRadiusModel(struct soap*, prodml23__FiniteRadiusModel *, const char*, const char*); -inline int soap_read_prodml22__FiniteRadiusModel(struct soap *soap, prodml22__FiniteRadiusModel *p) +inline int soap_read_prodml23__FiniteRadiusModel(struct soap *soap, prodml23__FiniteRadiusModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FiniteRadiusModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FiniteRadiusModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FiniteRadiusModel(struct soap *soap, const char *URL, prodml22__FiniteRadiusModel *p) +inline int soap_GET_prodml23__FiniteRadiusModel(struct soap *soap, const char *URL, prodml23__FiniteRadiusModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FiniteRadiusModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FiniteRadiusModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FiniteRadiusModel(struct soap *soap, prodml22__FiniteRadiusModel *p) +inline int soap_POST_recv_prodml23__FiniteRadiusModel(struct soap *soap, prodml23__FiniteRadiusModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FiniteRadiusModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FiniteRadiusModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPorosityTransientSpheresModel(struct soap*, const char*, int, const prodml22__DualPorosityTransientSpheresModel *, const char*); -SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prodml22__DualPorosityTransientSpheresModel(struct soap*, const char*, prodml22__DualPorosityTransientSpheresModel *, const char*); -SOAP_FMAC1 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityTransientSpheresModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPorosityTransientSpheresModel(struct soap*, const char*, int, const prodml23__DualPorosityTransientSpheresModel *, const char*); +SOAP_FMAC3 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_in_prodml23__DualPorosityTransientSpheresModel(struct soap*, const char*, prodml23__DualPorosityTransientSpheresModel *, const char*); +SOAP_FMAC1 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityTransientSpheresModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DualPorosityTransientSpheresModel * soap_new_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, int n = -1) +inline prodml23__DualPorosityTransientSpheresModel * soap_new_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DualPorosityTransientSpheresModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DualPorosityTransientSpheresModel(soap, n, NULL, NULL, NULL); } -inline prodml22__DualPorosityTransientSpheresModel * soap_new_req_prodml22__DualPorosityTransientSpheresModel( +inline prodml23__DualPorosityTransientSpheresModel * soap_new_req_prodml23__DualPorosityTransientSpheresModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__DualPorosityTransientSpheresModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPorosityTransientSpheresModel(soap); + prodml23__DualPorosityTransientSpheresModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPorosityTransientSpheresModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPorosityTransientSpheresModel::StorativityRatio = StorativityRatio; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPorosityTransientSpheresModel::StorativityRatio = StorativityRatio; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__DualPorosityTransientSpheresModel * soap_new_set_prodml22__DualPorosityTransientSpheresModel( +inline prodml23__DualPorosityTransientSpheresModel * soap_new_set_prodml23__DualPorosityTransientSpheresModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__DualPorosityTransientSpheresModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPorosityTransientSpheresModel(soap); + prodml23__DualPorosityTransientSpheresModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPorosityTransientSpheresModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPorosityTransientSpheresModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPorosityTransientSpheresModel::StorativityRatio = StorativityRatio; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__DualPorosityTransientSpheresModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPorosityTransientSpheresModel::StorativityRatio = StorativityRatio; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, prodml22__DualPorosityTransientSpheresModel const*p) +inline int soap_write_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, prodml23__DualPorosityTransientSpheresModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel ? "prodml22:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel ? "prodml23:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSpheresModel const*p) +inline int soap_PUT_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSpheresModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel ? "prodml22:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel ? "prodml23:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSpheresModel const*p) +inline int soap_PATCH_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSpheresModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel ? "prodml22:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel ? "prodml23:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSpheresModel const*p) +inline int soap_POST_send_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSpheresModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel ? "prodml22:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSpheresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel ? "prodml23:DualPorosityTransientSpheresModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_get_prodml22__DualPorosityTransientSpheresModel(struct soap*, prodml22__DualPorosityTransientSpheresModel *, const char*, const char*); +SOAP_FMAC3 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC4 soap_get_prodml23__DualPorosityTransientSpheresModel(struct soap*, prodml23__DualPorosityTransientSpheresModel *, const char*, const char*); -inline int soap_read_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, prodml22__DualPorosityTransientSpheresModel *p) +inline int soap_read_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, prodml23__DualPorosityTransientSpheresModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DualPorosityTransientSpheresModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DualPorosityTransientSpheresModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSpheresModel *p) +inline int soap_GET_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSpheresModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DualPorosityTransientSpheresModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DualPorosityTransientSpheresModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DualPorosityTransientSpheresModel(struct soap *soap, prodml22__DualPorosityTransientSpheresModel *p) +inline int soap_POST_recv_prodml23__DualPorosityTransientSpheresModel(struct soap *soap, prodml23__DualPorosityTransientSpheresModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__DualPorosityTransientSpheresModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DualPorosityTransientSpheresModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPorosityTransientSlabsModel(struct soap*, const char*, int, const prodml22__DualPorosityTransientSlabsModel *, const char*); -SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml22__DualPorosityTransientSlabsModel(struct soap*, const char*, prodml22__DualPorosityTransientSlabsModel *, const char*); -SOAP_FMAC1 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityTransientSlabsModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPorosityTransientSlabsModel(struct soap*, const char*, int, const prodml23__DualPorosityTransientSlabsModel *, const char*); +SOAP_FMAC3 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_in_prodml23__DualPorosityTransientSlabsModel(struct soap*, const char*, prodml23__DualPorosityTransientSlabsModel *, const char*); +SOAP_FMAC1 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityTransientSlabsModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DualPorosityTransientSlabsModel * soap_new_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, int n = -1) +inline prodml23__DualPorosityTransientSlabsModel * soap_new_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DualPorosityTransientSlabsModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DualPorosityTransientSlabsModel(soap, n, NULL, NULL, NULL); } -inline prodml22__DualPorosityTransientSlabsModel * soap_new_req_prodml22__DualPorosityTransientSlabsModel( +inline prodml23__DualPorosityTransientSlabsModel * soap_new_req_prodml23__DualPorosityTransientSlabsModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__DualPorosityTransientSlabsModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPorosityTransientSlabsModel(soap); + prodml23__DualPorosityTransientSlabsModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPorosityTransientSlabsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPorosityTransientSlabsModel::StorativityRatio = StorativityRatio; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPorosityTransientSlabsModel::StorativityRatio = StorativityRatio; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__DualPorosityTransientSlabsModel * soap_new_set_prodml22__DualPorosityTransientSlabsModel( +inline prodml23__DualPorosityTransientSlabsModel * soap_new_set_prodml23__DualPorosityTransientSlabsModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__DualPorosityTransientSlabsModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPorosityTransientSlabsModel(soap); + prodml23__DualPorosityTransientSlabsModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPorosityTransientSlabsModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPorosityTransientSlabsModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPorosityTransientSlabsModel::StorativityRatio = StorativityRatio; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__DualPorosityTransientSlabsModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPorosityTransientSlabsModel::StorativityRatio = StorativityRatio; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, prodml22__DualPorosityTransientSlabsModel const*p) +inline int soap_write_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, prodml23__DualPorosityTransientSlabsModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel ? "prodml22:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel ? "prodml23:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSlabsModel const*p) +inline int soap_PUT_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSlabsModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel ? "prodml22:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel ? "prodml23:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSlabsModel const*p) +inline int soap_PATCH_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSlabsModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel ? "prodml22:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel ? "prodml23:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSlabsModel const*p) +inline int soap_POST_send_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSlabsModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel ? "prodml22:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityTransientSlabsModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel ? "prodml23:DualPorosityTransientSlabsModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_get_prodml22__DualPorosityTransientSlabsModel(struct soap*, prodml22__DualPorosityTransientSlabsModel *, const char*, const char*); +SOAP_FMAC3 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC4 soap_get_prodml23__DualPorosityTransientSlabsModel(struct soap*, prodml23__DualPorosityTransientSlabsModel *, const char*, const char*); -inline int soap_read_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, prodml22__DualPorosityTransientSlabsModel *p) +inline int soap_read_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, prodml23__DualPorosityTransientSlabsModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DualPorosityTransientSlabsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DualPorosityTransientSlabsModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml22__DualPorosityTransientSlabsModel *p) +inline int soap_GET_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, const char *URL, prodml23__DualPorosityTransientSlabsModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DualPorosityTransientSlabsModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DualPorosityTransientSlabsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DualPorosityTransientSlabsModel(struct soap *soap, prodml22__DualPorosityTransientSlabsModel *p) +inline int soap_POST_recv_prodml23__DualPorosityTransientSlabsModel(struct soap *soap, prodml23__DualPorosityTransientSlabsModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__DualPorosityTransientSlabsModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DualPorosityTransientSlabsModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPorosityPseudoSteadyStateModel(struct soap*, const char*, int, const prodml22__DualPorosityPseudoSteadyStateModel *, const char*); -SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_prodml22__DualPorosityPseudoSteadyStateModel(struct soap*, const char*, prodml22__DualPorosityPseudoSteadyStateModel *, const char*); -SOAP_FMAC1 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPorosityPseudoSteadyStateModel(struct soap*, const char*, int, const prodml23__DualPorosityPseudoSteadyStateModel *, const char*); +SOAP_FMAC3 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_in_prodml23__DualPorosityPseudoSteadyStateModel(struct soap*, const char*, prodml23__DualPorosityPseudoSteadyStateModel *, const char*); +SOAP_FMAC1 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DualPorosityPseudoSteadyStateModel * soap_new_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, int n = -1) +inline prodml23__DualPorosityPseudoSteadyStateModel * soap_new_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(soap, n, NULL, NULL, NULL); } -inline prodml22__DualPorosityPseudoSteadyStateModel * soap_new_req_prodml22__DualPorosityPseudoSteadyStateModel( +inline prodml23__DualPorosityPseudoSteadyStateModel * soap_new_req_prodml23__DualPorosityPseudoSteadyStateModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__DualPorosityPseudoSteadyStateModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPorosityPseudoSteadyStateModel(soap); + prodml23__DualPorosityPseudoSteadyStateModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPorosityPseudoSteadyStateModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio = StorativityRatio; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio = StorativityRatio; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__DualPorosityPseudoSteadyStateModel * soap_new_set_prodml22__DualPorosityPseudoSteadyStateModel( +inline prodml23__DualPorosityPseudoSteadyStateModel * soap_new_set_prodml23__DualPorosityPseudoSteadyStateModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__DualPorosityPseudoSteadyStateModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPorosityPseudoSteadyStateModel(soap); + prodml23__DualPorosityPseudoSteadyStateModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPorosityPseudoSteadyStateModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPorosityPseudoSteadyStateModel::StorativityRatio = StorativityRatio; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__DualPorosityPseudoSteadyStateModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPorosityPseudoSteadyStateModel::StorativityRatio = StorativityRatio; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml22__DualPorosityPseudoSteadyStateModel const*p) +inline int soap_write_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml23__DualPorosityPseudoSteadyStateModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel ? "prodml22:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel ? "prodml23:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml22__DualPorosityPseudoSteadyStateModel const*p) +inline int soap_PUT_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml23__DualPorosityPseudoSteadyStateModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel ? "prodml22:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel ? "prodml23:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml22__DualPorosityPseudoSteadyStateModel const*p) +inline int soap_PATCH_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml23__DualPorosityPseudoSteadyStateModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel ? "prodml22:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel ? "prodml23:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml22__DualPorosityPseudoSteadyStateModel const*p) +inline int soap_POST_send_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml23__DualPorosityPseudoSteadyStateModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel ? "prodml22:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPorosityPseudoSteadyStateModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel ? "prodml23:DualPorosityPseudoSteadyStateModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_get_prodml22__DualPorosityPseudoSteadyStateModel(struct soap*, prodml22__DualPorosityPseudoSteadyStateModel *, const char*, const char*); +SOAP_FMAC3 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC4 soap_get_prodml23__DualPorosityPseudoSteadyStateModel(struct soap*, prodml23__DualPorosityPseudoSteadyStateModel *, const char*, const char*); -inline int soap_read_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml22__DualPorosityPseudoSteadyStateModel *p) +inline int soap_read_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml23__DualPorosityPseudoSteadyStateModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DualPorosityPseudoSteadyStateModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DualPorosityPseudoSteadyStateModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml22__DualPorosityPseudoSteadyStateModel *p) +inline int soap_GET_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, const char *URL, prodml23__DualPorosityPseudoSteadyStateModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DualPorosityPseudoSteadyStateModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DualPorosityPseudoSteadyStateModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml22__DualPorosityPseudoSteadyStateModel *p) +inline int soap_POST_recv_prodml23__DualPorosityPseudoSteadyStateModel(struct soap *soap, prodml23__DualPorosityPseudoSteadyStateModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__DualPorosityPseudoSteadyStateModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DualPorosityPseudoSteadyStateModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DualPermeabilityWithCrossflowModel(struct soap*, const char*, int, const prodml22__DualPermeabilityWithCrossflowModel *, const char*); -SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_prodml22__DualPermeabilityWithCrossflowModel(struct soap*, const char*, prodml22__DualPermeabilityWithCrossflowModel *, const char*); -SOAP_FMAC1 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DualPermeabilityWithCrossflowModel(struct soap*, const char*, int, const prodml23__DualPermeabilityWithCrossflowModel *, const char*); +SOAP_FMAC3 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_in_prodml23__DualPermeabilityWithCrossflowModel(struct soap*, const char*, prodml23__DualPermeabilityWithCrossflowModel *, const char*); +SOAP_FMAC1 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DualPermeabilityWithCrossflowModel * soap_new_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, int n = -1) +inline prodml23__DualPermeabilityWithCrossflowModel * soap_new_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(soap, n, NULL, NULL, NULL); } -inline prodml22__DualPermeabilityWithCrossflowModel * soap_new_req_prodml22__DualPermeabilityWithCrossflowModel( +inline prodml23__DualPermeabilityWithCrossflowModel * soap_new_req_prodml23__DualPermeabilityWithCrossflowModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *RatioLayer1ToTotalPermeabilityThicknessProduct, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *RatioLayer1ToTotalPermeabilityThicknessProduct, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__DualPermeabilityWithCrossflowModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPermeabilityWithCrossflowModel(soap); + prodml23__DualPermeabilityWithCrossflowModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPermeabilityWithCrossflowModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio = StorativityRatio; - _p->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct = RatioLayer1ToTotalPermeabilityThicknessProduct; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio = StorativityRatio; + _p->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct = RatioLayer1ToTotalPermeabilityThicknessProduct; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__DualPermeabilityWithCrossflowModel * soap_new_set_prodml22__DualPermeabilityWithCrossflowModel( +inline prodml23__DualPermeabilityWithCrossflowModel * soap_new_set_prodml23__DualPermeabilityWithCrossflowModel( struct soap *soap, - prodml22__InterporosityFlowParameter *InterporosityFlowParameter, - prodml22__StorativityRatio *StorativityRatio, - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *RatioLayer1ToTotalPermeabilityThicknessProduct, - prodml22__Layer2Thickness *Layer2Thickness, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__InterporosityFlowParameter *InterporosityFlowParameter, + prodml23__StorativityRatio *StorativityRatio, + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *RatioLayer1ToTotalPermeabilityThicknessProduct, + prodml23__Layer2Thickness *Layer2Thickness, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__DualPermeabilityWithCrossflowModel *_p = gsoap_eml2_3::soap_new_prodml22__DualPermeabilityWithCrossflowModel(soap); + prodml23__DualPermeabilityWithCrossflowModel *_p = gsoap_eml2_3::soap_new_prodml23__DualPermeabilityWithCrossflowModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter = InterporosityFlowParameter; - _p->prodml22__DualPermeabilityWithCrossflowModel::StorativityRatio = StorativityRatio; - _p->prodml22__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct = RatioLayer1ToTotalPermeabilityThicknessProduct; - _p->prodml22__DualPermeabilityWithCrossflowModel::Layer2Thickness = Layer2Thickness; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__DualPermeabilityWithCrossflowModel::InterporosityFlowParameter = InterporosityFlowParameter; + _p->prodml23__DualPermeabilityWithCrossflowModel::StorativityRatio = StorativityRatio; + _p->prodml23__DualPermeabilityWithCrossflowModel::RatioLayer1ToTotalPermeabilityThicknessProduct = RatioLayer1ToTotalPermeabilityThicknessProduct; + _p->prodml23__DualPermeabilityWithCrossflowModel::Layer2Thickness = Layer2Thickness; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml22__DualPermeabilityWithCrossflowModel const*p) +inline int soap_write_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml23__DualPermeabilityWithCrossflowModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel ? "prodml22:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel ? "prodml23:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml22__DualPermeabilityWithCrossflowModel const*p) +inline int soap_PUT_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml23__DualPermeabilityWithCrossflowModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel ? "prodml22:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel ? "prodml23:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml22__DualPermeabilityWithCrossflowModel const*p) +inline int soap_PATCH_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml23__DualPermeabilityWithCrossflowModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel ? "prodml22:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel ? "prodml23:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml22__DualPermeabilityWithCrossflowModel const*p) +inline int soap_POST_send_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml23__DualPermeabilityWithCrossflowModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel ? "prodml22:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DualPermeabilityWithCrossflowModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel ? "prodml23:DualPermeabilityWithCrossflowModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_get_prodml22__DualPermeabilityWithCrossflowModel(struct soap*, prodml22__DualPermeabilityWithCrossflowModel *, const char*, const char*); +SOAP_FMAC3 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC4 soap_get_prodml23__DualPermeabilityWithCrossflowModel(struct soap*, prodml23__DualPermeabilityWithCrossflowModel *, const char*, const char*); -inline int soap_read_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml22__DualPermeabilityWithCrossflowModel *p) +inline int soap_read_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml23__DualPermeabilityWithCrossflowModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DualPermeabilityWithCrossflowModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DualPermeabilityWithCrossflowModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml22__DualPermeabilityWithCrossflowModel *p) +inline int soap_GET_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, const char *URL, prodml23__DualPermeabilityWithCrossflowModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DualPermeabilityWithCrossflowModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DualPermeabilityWithCrossflowModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml22__DualPermeabilityWithCrossflowModel *p) +inline int soap_POST_recv_prodml23__DualPermeabilityWithCrossflowModel(struct soap *soap, prodml23__DualPermeabilityWithCrossflowModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__DualPermeabilityWithCrossflowModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DualPermeabilityWithCrossflowModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomWellboreModel(struct soap*, const char*, int, const prodml22__CustomWellboreModel *, const char*); -SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomWellboreModel(struct soap*, const char*, prodml22__CustomWellboreModel *, const char*); -SOAP_FMAC1 prodml22__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomWellboreModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomWellboreModel(struct soap*, const char*, int, const prodml23__CustomWellboreModel *, const char*); +SOAP_FMAC3 prodml23__CustomWellboreModel * SOAP_FMAC4 soap_in_prodml23__CustomWellboreModel(struct soap*, const char*, prodml23__CustomWellboreModel *, const char*); +SOAP_FMAC1 prodml23__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomWellboreModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomWellboreModel * soap_new_prodml22__CustomWellboreModel(struct soap *soap, int n = -1) +inline prodml23__CustomWellboreModel * soap_new_prodml23__CustomWellboreModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomWellboreModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomWellboreModel(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomWellboreModel * soap_new_req_prodml22__CustomWellboreModel( +inline prodml23__CustomWellboreModel * soap_new_req_prodml23__CustomWellboreModel( struct soap *soap, - prodml22__ModelName *ModelName, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1) + prodml23__ModelName *ModelName, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1) { - prodml22__CustomWellboreModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomWellboreModel(soap); + prodml23__CustomWellboreModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomWellboreModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomWellboreModel::ModelName = ModelName; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__CustomWellboreModel::ModelName = ModelName; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; } return _p; } -inline prodml22__CustomWellboreModel * soap_new_set_prodml22__CustomWellboreModel( +inline prodml23__CustomWellboreModel * soap_new_set_prodml23__CustomWellboreModel( struct soap *soap, - prodml22__ModelName *ModelName, - const std::vector & AnyParameter, - const std::vector & CustomParameter, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1, - prodml22__WellboreVolume *WellboreVolume__1, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility__1, - prodml22__TubingInteralDiameter *TubingInteralDiameter__1, - prodml22__FluidDensity *FluidDensity__1, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle__1, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType__1, + prodml23__ModelName *ModelName, + const std::vector & AnyParameter, + const std::vector & CustomParameter, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1, + prodml23__WellboreVolume *WellboreVolume__1, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility__1, + prodml23__TubingInteralDiameter *TubingInteralDiameter__1, + prodml23__FluidDensity *FluidDensity__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle__1, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__CustomWellboreModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomWellboreModel(soap); + prodml23__CustomWellboreModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomWellboreModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomWellboreModel::ModelName = ModelName; - _p->prodml22__CustomWellboreModel::AnyParameter = AnyParameter; - _p->prodml22__CustomWellboreModel::CustomParameter = CustomParameter; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume__1; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity__1; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__CustomWellboreModel::ModelName = ModelName; + _p->prodml23__CustomWellboreModel::AnyParameter = AnyParameter; + _p->prodml23__CustomWellboreModel::CustomParameter = CustomParameter; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume__1; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity__1; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__CustomWellboreModel(struct soap *soap, prodml22__CustomWellboreModel const*p) +inline int soap_write_prodml23__CustomWellboreModel(struct soap *soap, prodml23__CustomWellboreModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel ? "prodml22:CustomWellboreModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel ? "prodml23:CustomWellboreModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomWellboreModel(struct soap *soap, const char *URL, prodml22__CustomWellboreModel const*p) +inline int soap_PUT_prodml23__CustomWellboreModel(struct soap *soap, const char *URL, prodml23__CustomWellboreModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel ? "prodml22:CustomWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel ? "prodml23:CustomWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomWellboreModel(struct soap *soap, const char *URL, prodml22__CustomWellboreModel const*p) +inline int soap_PATCH_prodml23__CustomWellboreModel(struct soap *soap, const char *URL, prodml23__CustomWellboreModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel ? "prodml22:CustomWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel ? "prodml23:CustomWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomWellboreModel(struct soap *soap, const char *URL, prodml22__CustomWellboreModel const*p) +inline int soap_POST_send_prodml23__CustomWellboreModel(struct soap *soap, const char *URL, prodml23__CustomWellboreModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel ? "prodml22:CustomWellboreModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel ? "prodml23:CustomWellboreModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomWellboreModel * SOAP_FMAC4 soap_get_prodml22__CustomWellboreModel(struct soap*, prodml22__CustomWellboreModel *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomWellboreModel * SOAP_FMAC4 soap_get_prodml23__CustomWellboreModel(struct soap*, prodml23__CustomWellboreModel *, const char*, const char*); -inline int soap_read_prodml22__CustomWellboreModel(struct soap *soap, prodml22__CustomWellboreModel *p) +inline int soap_read_prodml23__CustomWellboreModel(struct soap *soap, prodml23__CustomWellboreModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomWellboreModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomWellboreModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomWellboreModel(struct soap *soap, const char *URL, prodml22__CustomWellboreModel *p) +inline int soap_GET_prodml23__CustomWellboreModel(struct soap *soap, const char *URL, prodml23__CustomWellboreModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomWellboreModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomWellboreModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomWellboreModel(struct soap *soap, prodml22__CustomWellboreModel *p) +inline int soap_POST_recv_prodml23__CustomWellboreModel(struct soap *soap, prodml23__CustomWellboreModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomWellboreModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomWellboreModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomReservoirModel(struct soap*, const char*, int, const prodml22__CustomReservoirModel *, const char*); -SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml22__CustomReservoirModel(struct soap*, const char*, prodml22__CustomReservoirModel *, const char*); -SOAP_FMAC1 prodml22__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomReservoirModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomReservoirModel(struct soap*, const char*, int, const prodml23__CustomReservoirModel *, const char*); +SOAP_FMAC3 prodml23__CustomReservoirModel * SOAP_FMAC4 soap_in_prodml23__CustomReservoirModel(struct soap*, const char*, prodml23__CustomReservoirModel *, const char*); +SOAP_FMAC1 prodml23__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomReservoirModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomReservoirModel * soap_new_prodml22__CustomReservoirModel(struct soap *soap, int n = -1) +inline prodml23__CustomReservoirModel * soap_new_prodml23__CustomReservoirModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomReservoirModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomReservoirModel(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomReservoirModel * soap_new_req_prodml22__CustomReservoirModel( +inline prodml23__CustomReservoirModel * soap_new_req_prodml23__CustomReservoirModel( struct soap *soap, - prodml22__ModelName *ModelName, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1) + prodml23__ModelName *ModelName, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1) { - prodml22__CustomReservoirModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomReservoirModel(soap); + prodml23__CustomReservoirModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomReservoirModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomReservoirModel::ModelName = ModelName; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__CustomReservoirModel::ModelName = ModelName; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; } return _p; } -inline prodml22__CustomReservoirModel * soap_new_set_prodml22__CustomReservoirModel( +inline prodml23__CustomReservoirModel * soap_new_set_prodml23__CustomReservoirModel( struct soap *soap, - prodml22__ModelName *ModelName, - const std::vector & AnyParameter, - const std::vector & CustomParameter, - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability__1, - prodml22__TotalThickness *TotalThickness__1, - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, - prodml22__Porosity *Porosity__1, - prodml22__InitialPressure *InitialPressure__1, - prodml22__PressureDatumTVD *PressureDatumTVD__1, - prodml22__AveragePressure *AveragePressure__1, - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, - prodml22__UpperBoundaryType *UpperBoundaryType__1, - prodml22__LowerBoundaryType *LowerBoundaryType__1, + prodml23__ModelName *ModelName, + const std::vector & AnyParameter, + const std::vector & CustomParameter, + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability__1, + prodml23__TotalThickness *TotalThickness__1, + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct__1, + prodml23__Porosity *Porosity__1, + prodml23__InitialPressure *InitialPressure__1, + prodml23__PressureDatumTVD *PressureDatumTVD__1, + prodml23__AveragePressure *AveragePressure__1, + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr__1, + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy__1, + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection__1, + prodml23__UpperBoundaryType *UpperBoundaryType__1, + prodml23__LowerBoundaryType *LowerBoundaryType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__CustomReservoirModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomReservoirModel(soap); + prodml23__CustomReservoirModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomReservoirModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomReservoirModel::ModelName = ModelName; - _p->prodml22__CustomReservoirModel::AnyParameter = AnyParameter; - _p->prodml22__CustomReservoirModel::CustomParameter = CustomParameter; - _p->prodml22__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; - _p->prodml22__ReservoirBaseModel::TotalThickness = TotalThickness__1; - _p->prodml22__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; - _p->prodml22__ReservoirBaseModel::Porosity = Porosity__1; - _p->prodml22__ReservoirBaseModel::InitialPressure = InitialPressure__1; - _p->prodml22__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; - _p->prodml22__ReservoirBaseModel::AveragePressure = AveragePressure__1; - _p->prodml22__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; - _p->prodml22__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; - _p->prodml22__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; - _p->prodml22__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; - _p->prodml22__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__CustomReservoirModel::ModelName = ModelName; + _p->prodml23__CustomReservoirModel::AnyParameter = AnyParameter; + _p->prodml23__CustomReservoirModel::CustomParameter = CustomParameter; + _p->prodml23__ReservoirBaseModel::HorizontalRadialPermeability = HorizontalRadialPermeability__1; + _p->prodml23__ReservoirBaseModel::TotalThickness = TotalThickness__1; + _p->prodml23__ReservoirBaseModel::PermeabilityThicknessProduct = PermeabilityThicknessProduct__1; + _p->prodml23__ReservoirBaseModel::Porosity = Porosity__1; + _p->prodml23__ReservoirBaseModel::InitialPressure = InitialPressure__1; + _p->prodml23__ReservoirBaseModel::PressureDatumTVD = PressureDatumTVD__1; + _p->prodml23__ReservoirBaseModel::AveragePressure = AveragePressure__1; + _p->prodml23__ReservoirBaseModel::VerticalAnisotropyKvToKr = VerticalAnisotropyKvToKr__1; + _p->prodml23__ReservoirBaseModel::HorizontalAnisotropyKxToKy = HorizontalAnisotropyKxToKy__1; + _p->prodml23__ReservoirBaseModel::OrientationOfAnisotropyXDirection = OrientationOfAnisotropyXDirection__1; + _p->prodml23__ReservoirBaseModel::UpperBoundaryType = UpperBoundaryType__1; + _p->prodml23__ReservoirBaseModel::LowerBoundaryType = LowerBoundaryType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__CustomReservoirModel(struct soap *soap, prodml22__CustomReservoirModel const*p) +inline int soap_write_prodml23__CustomReservoirModel(struct soap *soap, prodml23__CustomReservoirModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel ? "prodml22:CustomReservoirModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel ? "prodml23:CustomReservoirModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomReservoirModel(struct soap *soap, const char *URL, prodml22__CustomReservoirModel const*p) +inline int soap_PUT_prodml23__CustomReservoirModel(struct soap *soap, const char *URL, prodml23__CustomReservoirModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel ? "prodml22:CustomReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel ? "prodml23:CustomReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomReservoirModel(struct soap *soap, const char *URL, prodml22__CustomReservoirModel const*p) +inline int soap_PATCH_prodml23__CustomReservoirModel(struct soap *soap, const char *URL, prodml23__CustomReservoirModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel ? "prodml22:CustomReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel ? "prodml23:CustomReservoirModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomReservoirModel(struct soap *soap, const char *URL, prodml22__CustomReservoirModel const*p) +inline int soap_POST_send_prodml23__CustomReservoirModel(struct soap *soap, const char *URL, prodml23__CustomReservoirModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel ? "prodml22:CustomReservoirModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomReservoirModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel ? "prodml23:CustomReservoirModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomReservoirModel * SOAP_FMAC4 soap_get_prodml22__CustomReservoirModel(struct soap*, prodml22__CustomReservoirModel *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomReservoirModel * SOAP_FMAC4 soap_get_prodml23__CustomReservoirModel(struct soap*, prodml23__CustomReservoirModel *, const char*, const char*); -inline int soap_read_prodml22__CustomReservoirModel(struct soap *soap, prodml22__CustomReservoirModel *p) +inline int soap_read_prodml23__CustomReservoirModel(struct soap *soap, prodml23__CustomReservoirModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomReservoirModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomReservoirModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomReservoirModel(struct soap *soap, const char *URL, prodml22__CustomReservoirModel *p) +inline int soap_GET_prodml23__CustomReservoirModel(struct soap *soap, const char *URL, prodml23__CustomReservoirModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomReservoirModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomReservoirModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomReservoirModel(struct soap *soap, prodml22__CustomReservoirModel *p) +inline int soap_POST_recv_prodml23__CustomReservoirModel(struct soap *soap, prodml23__CustomReservoirModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomReservoirModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomReservoirModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomNearWellboreModel(struct soap*, const char*, int, const prodml22__CustomNearWellboreModel *, const char*); -SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml22__CustomNearWellboreModel(struct soap*, const char*, prodml22__CustomNearWellboreModel *, const char*); -SOAP_FMAC1 prodml22__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomNearWellboreModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomNearWellboreModel(struct soap*, const char*, int, const prodml23__CustomNearWellboreModel *, const char*); +SOAP_FMAC3 prodml23__CustomNearWellboreModel * SOAP_FMAC4 soap_in_prodml23__CustomNearWellboreModel(struct soap*, const char*, prodml23__CustomNearWellboreModel *, const char*); +SOAP_FMAC1 prodml23__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomNearWellboreModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomNearWellboreModel * soap_new_prodml22__CustomNearWellboreModel(struct soap *soap, int n = -1) +inline prodml23__CustomNearWellboreModel * soap_new_prodml23__CustomNearWellboreModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomNearWellboreModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomNearWellboreModel(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomNearWellboreModel * soap_new_req_prodml22__CustomNearWellboreModel( +inline prodml23__CustomNearWellboreModel * soap_new_req_prodml23__CustomNearWellboreModel( struct soap *soap, - prodml22__ModelName *ModelName, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) + prodml23__ModelName *ModelName, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1) { - prodml22__CustomNearWellboreModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomNearWellboreModel(soap); + prodml23__CustomNearWellboreModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomNearWellboreModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomNearWellboreModel::ModelName = ModelName; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__CustomNearWellboreModel::ModelName = ModelName; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; } return _p; } -inline prodml22__CustomNearWellboreModel * soap_new_set_prodml22__CustomNearWellboreModel( +inline prodml23__CustomNearWellboreModel * soap_new_set_prodml23__CustomNearWellboreModel( struct soap *soap, - prodml22__ModelName *ModelName, - const std::vector & AnyParameter, - const std::vector & CustomParameter, - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, - prodml22__RateDependentSkinFactor *RateDependentSkinFactor__1, - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, + prodml23__ModelName *ModelName, + const std::vector & AnyParameter, + const std::vector & CustomParameter, + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness__1, + prodml23__RateDependentSkinFactor *RateDependentSkinFactor__1, + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin__1, + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown__1, std::string *Comment__2, std::string *Method__2) { - prodml22__CustomNearWellboreModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomNearWellboreModel(soap); + prodml23__CustomNearWellboreModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomNearWellboreModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomNearWellboreModel::ModelName = ModelName; - _p->prodml22__CustomNearWellboreModel::AnyParameter = AnyParameter; - _p->prodml22__CustomNearWellboreModel::CustomParameter = CustomParameter; - _p->prodml22__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; - _p->prodml22__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; - _p->prodml22__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; - _p->prodml22__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__CustomNearWellboreModel::ModelName = ModelName; + _p->prodml23__CustomNearWellboreModel::AnyParameter = AnyParameter; + _p->prodml23__CustomNearWellboreModel::CustomParameter = CustomParameter; + _p->prodml23__NearWellboreBaseModel::SkinRelativeToTotalThickness = SkinRelativeToTotalThickness__1; + _p->prodml23__NearWellboreBaseModel::RateDependentSkinFactor = RateDependentSkinFactor__1; + _p->prodml23__NearWellboreBaseModel::DeltaPressureTotalSkin = DeltaPressureTotalSkin__1; + _p->prodml23__NearWellboreBaseModel::RatioDpSkinToTotalDrawdown = RatioDpSkinToTotalDrawdown__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__CustomNearWellboreModel(struct soap *soap, prodml22__CustomNearWellboreModel const*p) +inline int soap_write_prodml23__CustomNearWellboreModel(struct soap *soap, prodml23__CustomNearWellboreModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel ? "prodml22:CustomNearWellboreModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel ? "prodml23:CustomNearWellboreModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml22__CustomNearWellboreModel const*p) +inline int soap_PUT_prodml23__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml23__CustomNearWellboreModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel ? "prodml22:CustomNearWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel ? "prodml23:CustomNearWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml22__CustomNearWellboreModel const*p) +inline int soap_PATCH_prodml23__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml23__CustomNearWellboreModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel ? "prodml22:CustomNearWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel ? "prodml23:CustomNearWellboreModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml22__CustomNearWellboreModel const*p) +inline int soap_POST_send_prodml23__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml23__CustomNearWellboreModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel ? "prodml22:CustomNearWellboreModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomNearWellboreModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel ? "prodml23:CustomNearWellboreModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomNearWellboreModel * SOAP_FMAC4 soap_get_prodml22__CustomNearWellboreModel(struct soap*, prodml22__CustomNearWellboreModel *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomNearWellboreModel * SOAP_FMAC4 soap_get_prodml23__CustomNearWellboreModel(struct soap*, prodml23__CustomNearWellboreModel *, const char*, const char*); -inline int soap_read_prodml22__CustomNearWellboreModel(struct soap *soap, prodml22__CustomNearWellboreModel *p) +inline int soap_read_prodml23__CustomNearWellboreModel(struct soap *soap, prodml23__CustomNearWellboreModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomNearWellboreModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomNearWellboreModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml22__CustomNearWellboreModel *p) +inline int soap_GET_prodml23__CustomNearWellboreModel(struct soap *soap, const char *URL, prodml23__CustomNearWellboreModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomNearWellboreModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomNearWellboreModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomNearWellboreModel(struct soap *soap, prodml22__CustomNearWellboreModel *p) +inline int soap_POST_recv_prodml23__CustomNearWellboreModel(struct soap *soap, prodml23__CustomNearWellboreModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomNearWellboreModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomNearWellboreModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomBoundaryModel(struct soap*, const char*, int, const prodml22__CustomBoundaryModel *, const char*); -SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml22__CustomBoundaryModel(struct soap*, const char*, prodml22__CustomBoundaryModel *, const char*); -SOAP_FMAC1 prodml22__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomBoundaryModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomBoundaryModel(struct soap*, const char*, int, const prodml23__CustomBoundaryModel *, const char*); +SOAP_FMAC3 prodml23__CustomBoundaryModel * SOAP_FMAC4 soap_in_prodml23__CustomBoundaryModel(struct soap*, const char*, prodml23__CustomBoundaryModel *, const char*); +SOAP_FMAC1 prodml23__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomBoundaryModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomBoundaryModel * soap_new_prodml22__CustomBoundaryModel(struct soap *soap, int n = -1) +inline prodml23__CustomBoundaryModel * soap_new_prodml23__CustomBoundaryModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomBoundaryModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomBoundaryModel(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomBoundaryModel * soap_new_req_prodml22__CustomBoundaryModel( +inline prodml23__CustomBoundaryModel * soap_new_req_prodml23__CustomBoundaryModel( struct soap *soap, - prodml22__ModelName *ModelName) + prodml23__ModelName *ModelName) { - prodml22__CustomBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomBoundaryModel(soap); + prodml23__CustomBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomBoundaryModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomBoundaryModel::ModelName = ModelName; + _p->prodml23__CustomBoundaryModel::ModelName = ModelName; } return _p; } -inline prodml22__CustomBoundaryModel * soap_new_set_prodml22__CustomBoundaryModel( +inline prodml23__CustomBoundaryModel * soap_new_set_prodml23__CustomBoundaryModel( struct soap *soap, - prodml22__ModelName *ModelName, - const std::vector & AnyParameter, - const std::vector & CustomParameter, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__ModelName *ModelName, + const std::vector & AnyParameter, + const std::vector & CustomParameter, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__CustomBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml22__CustomBoundaryModel(soap); + prodml23__CustomBoundaryModel *_p = gsoap_eml2_3::soap_new_prodml23__CustomBoundaryModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomBoundaryModel::ModelName = ModelName; - _p->prodml22__CustomBoundaryModel::AnyParameter = AnyParameter; - _p->prodml22__CustomBoundaryModel::CustomParameter = CustomParameter; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__CustomBoundaryModel::ModelName = ModelName; + _p->prodml23__CustomBoundaryModel::AnyParameter = AnyParameter; + _p->prodml23__CustomBoundaryModel::CustomParameter = CustomParameter; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__CustomBoundaryModel(struct soap *soap, prodml22__CustomBoundaryModel const*p) +inline int soap_write_prodml23__CustomBoundaryModel(struct soap *soap, prodml23__CustomBoundaryModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel ? "prodml22:CustomBoundaryModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel ? "prodml23:CustomBoundaryModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomBoundaryModel(struct soap *soap, const char *URL, prodml22__CustomBoundaryModel const*p) +inline int soap_PUT_prodml23__CustomBoundaryModel(struct soap *soap, const char *URL, prodml23__CustomBoundaryModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel ? "prodml22:CustomBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel ? "prodml23:CustomBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomBoundaryModel(struct soap *soap, const char *URL, prodml22__CustomBoundaryModel const*p) +inline int soap_PATCH_prodml23__CustomBoundaryModel(struct soap *soap, const char *URL, prodml23__CustomBoundaryModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel ? "prodml22:CustomBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel ? "prodml23:CustomBoundaryModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomBoundaryModel(struct soap *soap, const char *URL, prodml22__CustomBoundaryModel const*p) +inline int soap_POST_send_prodml23__CustomBoundaryModel(struct soap *soap, const char *URL, prodml23__CustomBoundaryModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel ? "prodml22:CustomBoundaryModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomBoundaryModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel ? "prodml23:CustomBoundaryModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomBoundaryModel * SOAP_FMAC4 soap_get_prodml22__CustomBoundaryModel(struct soap*, prodml22__CustomBoundaryModel *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomBoundaryModel * SOAP_FMAC4 soap_get_prodml23__CustomBoundaryModel(struct soap*, prodml23__CustomBoundaryModel *, const char*, const char*); -inline int soap_read_prodml22__CustomBoundaryModel(struct soap *soap, prodml22__CustomBoundaryModel *p) +inline int soap_read_prodml23__CustomBoundaryModel(struct soap *soap, prodml23__CustomBoundaryModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomBoundaryModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomBoundaryModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomBoundaryModel(struct soap *soap, const char *URL, prodml22__CustomBoundaryModel *p) +inline int soap_GET_prodml23__CustomBoundaryModel(struct soap *soap, const char *URL, prodml23__CustomBoundaryModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomBoundaryModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomBoundaryModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomBoundaryModel(struct soap *soap, prodml22__CustomBoundaryModel *p) +inline int soap_POST_recv_prodml23__CustomBoundaryModel(struct soap *soap, prodml23__CustomBoundaryModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomBoundaryModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomBoundaryModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantStorageModel(struct soap*, const char*, int, const prodml22__ConstantStorageModel *, const char*); -SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml22__ConstantStorageModel(struct soap*, const char*, prodml22__ConstantStorageModel *, const char*); -SOAP_FMAC1 prodml22__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml22__ConstantStorageModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantStorageModel(struct soap*, const char*, int, const prodml23__ConstantStorageModel *, const char*); +SOAP_FMAC3 prodml23__ConstantStorageModel * SOAP_FMAC4 soap_in_prodml23__ConstantStorageModel(struct soap*, const char*, prodml23__ConstantStorageModel *, const char*); +SOAP_FMAC1 prodml23__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml23__ConstantStorageModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ConstantStorageModel * soap_new_prodml22__ConstantStorageModel(struct soap *soap, int n = -1) +inline prodml23__ConstantStorageModel * soap_new_prodml23__ConstantStorageModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ConstantStorageModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ConstantStorageModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ConstantStorageModel * soap_new_req_prodml22__ConstantStorageModel( +inline prodml23__ConstantStorageModel * soap_new_req_prodml23__ConstantStorageModel( struct soap *soap, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1) + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1) { - prodml22__ConstantStorageModel *_p = gsoap_eml2_3::soap_new_prodml22__ConstantStorageModel(soap); + prodml23__ConstantStorageModel *_p = gsoap_eml2_3::soap_new_prodml23__ConstantStorageModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; } return _p; } -inline prodml22__ConstantStorageModel * soap_new_set_prodml22__ConstantStorageModel( +inline prodml23__ConstantStorageModel * soap_new_set_prodml23__ConstantStorageModel( struct soap *soap, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1, - prodml22__WellboreVolume *WellboreVolume__1, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility__1, - prodml22__TubingInteralDiameter *TubingInteralDiameter__1, - prodml22__FluidDensity *FluidDensity__1, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle__1, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType__1, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1, + prodml23__WellboreVolume *WellboreVolume__1, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility__1, + prodml23__TubingInteralDiameter *TubingInteralDiameter__1, + prodml23__FluidDensity *FluidDensity__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle__1, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ConstantStorageModel *_p = gsoap_eml2_3::soap_new_prodml22__ConstantStorageModel(soap); + prodml23__ConstantStorageModel *_p = gsoap_eml2_3::soap_new_prodml23__ConstantStorageModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume__1; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity__1; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume__1; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity__1; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ConstantStorageModel(struct soap *soap, prodml22__ConstantStorageModel const*p) +inline int soap_write_prodml23__ConstantStorageModel(struct soap *soap, prodml23__ConstantStorageModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel ? "prodml22:ConstantStorageModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel ? "prodml23:ConstantStorageModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ConstantStorageModel(struct soap *soap, const char *URL, prodml22__ConstantStorageModel const*p) +inline int soap_PUT_prodml23__ConstantStorageModel(struct soap *soap, const char *URL, prodml23__ConstantStorageModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel ? "prodml22:ConstantStorageModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel ? "prodml23:ConstantStorageModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ConstantStorageModel(struct soap *soap, const char *URL, prodml22__ConstantStorageModel const*p) +inline int soap_PATCH_prodml23__ConstantStorageModel(struct soap *soap, const char *URL, prodml23__ConstantStorageModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel ? "prodml22:ConstantStorageModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel ? "prodml23:ConstantStorageModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ConstantStorageModel(struct soap *soap, const char *URL, prodml22__ConstantStorageModel const*p) +inline int soap_POST_send_prodml23__ConstantStorageModel(struct soap *soap, const char *URL, prodml23__ConstantStorageModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel ? "prodml22:ConstantStorageModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantStorageModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel ? "prodml23:ConstantStorageModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ConstantStorageModel * SOAP_FMAC4 soap_get_prodml22__ConstantStorageModel(struct soap*, prodml22__ConstantStorageModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantStorageModel * SOAP_FMAC4 soap_get_prodml23__ConstantStorageModel(struct soap*, prodml23__ConstantStorageModel *, const char*, const char*); -inline int soap_read_prodml22__ConstantStorageModel(struct soap *soap, prodml22__ConstantStorageModel *p) +inline int soap_read_prodml23__ConstantStorageModel(struct soap *soap, prodml23__ConstantStorageModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ConstantStorageModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ConstantStorageModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ConstantStorageModel(struct soap *soap, const char *URL, prodml22__ConstantStorageModel *p) +inline int soap_GET_prodml23__ConstantStorageModel(struct soap *soap, const char *URL, prodml23__ConstantStorageModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ConstantStorageModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ConstantStorageModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ConstantStorageModel(struct soap *soap, prodml22__ConstantStorageModel *p) +inline int soap_POST_recv_prodml23__ConstantStorageModel(struct soap *soap, prodml23__ConstantStorageModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ConstantStorageModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ConstantStorageModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ClosedRectangleModel(struct soap*, const char*, int, const prodml22__ClosedRectangleModel *, const char*); -SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml22__ClosedRectangleModel(struct soap*, const char*, prodml22__ClosedRectangleModel *, const char*); -SOAP_FMAC1 prodml22__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml22__ClosedRectangleModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ClosedRectangleModel(struct soap*, const char*, int, const prodml23__ClosedRectangleModel *, const char*); +SOAP_FMAC3 prodml23__ClosedRectangleModel * SOAP_FMAC4 soap_in_prodml23__ClosedRectangleModel(struct soap*, const char*, prodml23__ClosedRectangleModel *, const char*); +SOAP_FMAC1 prodml23__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml23__ClosedRectangleModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ClosedRectangleModel * soap_new_prodml22__ClosedRectangleModel(struct soap *soap, int n = -1) +inline prodml23__ClosedRectangleModel * soap_new_prodml23__ClosedRectangleModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ClosedRectangleModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ClosedRectangleModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ClosedRectangleModel * soap_new_req_prodml22__ClosedRectangleModel( +inline prodml23__ClosedRectangleModel * soap_new_req_prodml23__ClosedRectangleModel( struct soap *soap, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary2 *DistanceToBoundary2, - prodml22__DistanceToBoundary3 *DistanceToBoundary3, - prodml22__DistanceToBoundary4 *DistanceToBoundary4, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary2Type Boundary2Type, - prodml22__Boundary3Type Boundary3Type, - prodml22__Boundary4Type Boundary4Type) + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary2 *DistanceToBoundary2, + prodml23__DistanceToBoundary3 *DistanceToBoundary3, + prodml23__DistanceToBoundary4 *DistanceToBoundary4, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary2Type Boundary2Type, + prodml23__Boundary3Type Boundary3Type, + prodml23__Boundary4Type Boundary4Type) { - prodml22__ClosedRectangleModel *_p = gsoap_eml2_3::soap_new_prodml22__ClosedRectangleModel(soap); + prodml23__ClosedRectangleModel *_p = gsoap_eml2_3::soap_new_prodml23__ClosedRectangleModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ClosedRectangleModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary2 = DistanceToBoundary2; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary3 = DistanceToBoundary3; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary4 = DistanceToBoundary4; - _p->prodml22__ClosedRectangleModel::Boundary1Type = Boundary1Type; - _p->prodml22__ClosedRectangleModel::Boundary2Type = Boundary2Type; - _p->prodml22__ClosedRectangleModel::Boundary3Type = Boundary3Type; - _p->prodml22__ClosedRectangleModel::Boundary4Type = Boundary4Type; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary2 = DistanceToBoundary2; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary3 = DistanceToBoundary3; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary4 = DistanceToBoundary4; + _p->prodml23__ClosedRectangleModel::Boundary1Type = Boundary1Type; + _p->prodml23__ClosedRectangleModel::Boundary2Type = Boundary2Type; + _p->prodml23__ClosedRectangleModel::Boundary3Type = Boundary3Type; + _p->prodml23__ClosedRectangleModel::Boundary4Type = Boundary4Type; } return _p; } -inline prodml22__ClosedRectangleModel * soap_new_set_prodml22__ClosedRectangleModel( +inline prodml23__ClosedRectangleModel * soap_new_set_prodml23__ClosedRectangleModel( struct soap *soap, - prodml22__DrainageAreaMeasured *DrainageAreaMeasured, - prodml22__PoreVolumeMeasured *PoreVolumeMeasured, - prodml22__DistanceToBoundary1 *DistanceToBoundary1, - prodml22__DistanceToBoundary2 *DistanceToBoundary2, - prodml22__DistanceToBoundary3 *DistanceToBoundary3, - prodml22__DistanceToBoundary4 *DistanceToBoundary4, - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, - prodml22__Boundary1Type Boundary1Type, - prodml22__Boundary2Type Boundary2Type, - prodml22__Boundary3Type Boundary3Type, - prodml22__Boundary4Type Boundary4Type, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__DrainageAreaMeasured *DrainageAreaMeasured, + prodml23__PoreVolumeMeasured *PoreVolumeMeasured, + prodml23__DistanceToBoundary1 *DistanceToBoundary1, + prodml23__DistanceToBoundary2 *DistanceToBoundary2, + prodml23__DistanceToBoundary3 *DistanceToBoundary3, + prodml23__DistanceToBoundary4 *DistanceToBoundary4, + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1, + prodml23__Boundary1Type Boundary1Type, + prodml23__Boundary2Type Boundary2Type, + prodml23__Boundary3Type Boundary3Type, + prodml23__Boundary4Type Boundary4Type, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ClosedRectangleModel *_p = gsoap_eml2_3::soap_new_prodml22__ClosedRectangleModel(soap); + prodml23__ClosedRectangleModel *_p = gsoap_eml2_3::soap_new_prodml23__ClosedRectangleModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ClosedRectangleModel::DrainageAreaMeasured = DrainageAreaMeasured; - _p->prodml22__ClosedRectangleModel::PoreVolumeMeasured = PoreVolumeMeasured; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary1 = DistanceToBoundary1; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary2 = DistanceToBoundary2; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary3 = DistanceToBoundary3; - _p->prodml22__ClosedRectangleModel::DistanceToBoundary4 = DistanceToBoundary4; - _p->prodml22__ClosedRectangleModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; - _p->prodml22__ClosedRectangleModel::Boundary1Type = Boundary1Type; - _p->prodml22__ClosedRectangleModel::Boundary2Type = Boundary2Type; - _p->prodml22__ClosedRectangleModel::Boundary3Type = Boundary3Type; - _p->prodml22__ClosedRectangleModel::Boundary4Type = Boundary4Type; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ClosedRectangleModel::DrainageAreaMeasured = DrainageAreaMeasured; + _p->prodml23__ClosedRectangleModel::PoreVolumeMeasured = PoreVolumeMeasured; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary1 = DistanceToBoundary1; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary2 = DistanceToBoundary2; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary3 = DistanceToBoundary3; + _p->prodml23__ClosedRectangleModel::DistanceToBoundary4 = DistanceToBoundary4; + _p->prodml23__ClosedRectangleModel::OrientationOfNormalToBoundary1 = OrientationOfNormalToBoundary1; + _p->prodml23__ClosedRectangleModel::Boundary1Type = Boundary1Type; + _p->prodml23__ClosedRectangleModel::Boundary2Type = Boundary2Type; + _p->prodml23__ClosedRectangleModel::Boundary3Type = Boundary3Type; + _p->prodml23__ClosedRectangleModel::Boundary4Type = Boundary4Type; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ClosedRectangleModel(struct soap *soap, prodml22__ClosedRectangleModel const*p) +inline int soap_write_prodml23__ClosedRectangleModel(struct soap *soap, prodml23__ClosedRectangleModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel ? "prodml22:ClosedRectangleModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel ? "prodml23:ClosedRectangleModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ClosedRectangleModel(struct soap *soap, const char *URL, prodml22__ClosedRectangleModel const*p) +inline int soap_PUT_prodml23__ClosedRectangleModel(struct soap *soap, const char *URL, prodml23__ClosedRectangleModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel ? "prodml22:ClosedRectangleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel ? "prodml23:ClosedRectangleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ClosedRectangleModel(struct soap *soap, const char *URL, prodml22__ClosedRectangleModel const*p) +inline int soap_PATCH_prodml23__ClosedRectangleModel(struct soap *soap, const char *URL, prodml23__ClosedRectangleModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel ? "prodml22:ClosedRectangleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel ? "prodml23:ClosedRectangleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ClosedRectangleModel(struct soap *soap, const char *URL, prodml22__ClosedRectangleModel const*p) +inline int soap_POST_send_prodml23__ClosedRectangleModel(struct soap *soap, const char *URL, prodml23__ClosedRectangleModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel ? "prodml22:ClosedRectangleModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedRectangleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel ? "prodml23:ClosedRectangleModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ClosedRectangleModel * SOAP_FMAC4 soap_get_prodml22__ClosedRectangleModel(struct soap*, prodml22__ClosedRectangleModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ClosedRectangleModel * SOAP_FMAC4 soap_get_prodml23__ClosedRectangleModel(struct soap*, prodml23__ClosedRectangleModel *, const char*, const char*); -inline int soap_read_prodml22__ClosedRectangleModel(struct soap *soap, prodml22__ClosedRectangleModel *p) +inline int soap_read_prodml23__ClosedRectangleModel(struct soap *soap, prodml23__ClosedRectangleModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ClosedRectangleModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ClosedRectangleModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ClosedRectangleModel(struct soap *soap, const char *URL, prodml22__ClosedRectangleModel *p) +inline int soap_GET_prodml23__ClosedRectangleModel(struct soap *soap, const char *URL, prodml23__ClosedRectangleModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ClosedRectangleModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ClosedRectangleModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ClosedRectangleModel(struct soap *soap, prodml22__ClosedRectangleModel *p) +inline int soap_POST_recv_prodml23__ClosedRectangleModel(struct soap *soap, prodml23__ClosedRectangleModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ClosedRectangleModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ClosedRectangleModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ClosedCircleModel(struct soap*, const char*, int, const prodml22__ClosedCircleModel *, const char*); -SOAP_FMAC3 prodml22__ClosedCircleModel * SOAP_FMAC4 soap_in_prodml22__ClosedCircleModel(struct soap*, const char*, prodml22__ClosedCircleModel *, const char*); -SOAP_FMAC1 prodml22__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml22__ClosedCircleModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ClosedCircleModel(struct soap*, const char*, int, const prodml23__ClosedCircleModel *, const char*); +SOAP_FMAC3 prodml23__ClosedCircleModel * SOAP_FMAC4 soap_in_prodml23__ClosedCircleModel(struct soap*, const char*, prodml23__ClosedCircleModel *, const char*); +SOAP_FMAC1 prodml23__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml23__ClosedCircleModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ClosedCircleModel * soap_new_prodml22__ClosedCircleModel(struct soap *soap, int n = -1) +inline prodml23__ClosedCircleModel * soap_new_prodml23__ClosedCircleModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ClosedCircleModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ClosedCircleModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ClosedCircleModel * soap_new_req_prodml22__ClosedCircleModel( +inline prodml23__ClosedCircleModel * soap_new_req_prodml23__ClosedCircleModel( struct soap *soap, - prodml22__Boundary1Type Boundary1Type) + prodml23__Boundary1Type Boundary1Type) { - prodml22__ClosedCircleModel *_p = gsoap_eml2_3::soap_new_prodml22__ClosedCircleModel(soap); + prodml23__ClosedCircleModel *_p = gsoap_eml2_3::soap_new_prodml23__ClosedCircleModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ClosedCircleModel::Boundary1Type = Boundary1Type; + _p->prodml23__ClosedCircleModel::Boundary1Type = Boundary1Type; } return _p; } -inline prodml22__ClosedCircleModel * soap_new_set_prodml22__ClosedCircleModel( +inline prodml23__ClosedCircleModel * soap_new_set_prodml23__ClosedCircleModel( struct soap *soap, - prodml22__Boundary1Type Boundary1Type, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation__1, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, + prodml23__Boundary1Type Boundary1Type, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation__1, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ClosedCircleModel *_p = gsoap_eml2_3::soap_new_prodml22__ClosedCircleModel(soap); + prodml23__ClosedCircleModel *_p = gsoap_eml2_3::soap_new_prodml23__ClosedCircleModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ClosedCircleModel::Boundary1Type = Boundary1Type; - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ClosedCircleModel::Boundary1Type = Boundary1Type; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation__1; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ClosedCircleModel(struct soap *soap, prodml22__ClosedCircleModel const*p) +inline int soap_write_prodml23__ClosedCircleModel(struct soap *soap, prodml23__ClosedCircleModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel ? "prodml22:ClosedCircleModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel ? "prodml23:ClosedCircleModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ClosedCircleModel(struct soap *soap, const char *URL, prodml22__ClosedCircleModel const*p) +inline int soap_PUT_prodml23__ClosedCircleModel(struct soap *soap, const char *URL, prodml23__ClosedCircleModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel ? "prodml22:ClosedCircleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel ? "prodml23:ClosedCircleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ClosedCircleModel(struct soap *soap, const char *URL, prodml22__ClosedCircleModel const*p) +inline int soap_PATCH_prodml23__ClosedCircleModel(struct soap *soap, const char *URL, prodml23__ClosedCircleModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel ? "prodml22:ClosedCircleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel ? "prodml23:ClosedCircleModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ClosedCircleModel(struct soap *soap, const char *URL, prodml22__ClosedCircleModel const*p) +inline int soap_POST_send_prodml23__ClosedCircleModel(struct soap *soap, const char *URL, prodml23__ClosedCircleModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel ? "prodml22:ClosedCircleModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ClosedCircleModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel ? "prodml23:ClosedCircleModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ClosedCircleModel * SOAP_FMAC4 soap_get_prodml22__ClosedCircleModel(struct soap*, prodml22__ClosedCircleModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ClosedCircleModel * SOAP_FMAC4 soap_get_prodml23__ClosedCircleModel(struct soap*, prodml23__ClosedCircleModel *, const char*, const char*); -inline int soap_read_prodml22__ClosedCircleModel(struct soap *soap, prodml22__ClosedCircleModel *p) +inline int soap_read_prodml23__ClosedCircleModel(struct soap *soap, prodml23__ClosedCircleModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ClosedCircleModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ClosedCircleModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ClosedCircleModel(struct soap *soap, const char *URL, prodml22__ClosedCircleModel *p) +inline int soap_GET_prodml23__ClosedCircleModel(struct soap *soap, const char *URL, prodml23__ClosedCircleModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ClosedCircleModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ClosedCircleModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ClosedCircleModel(struct soap *soap, prodml22__ClosedCircleModel *p) +inline int soap_POST_recv_prodml23__ClosedCircleModel(struct soap *soap, prodml23__ClosedCircleModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ClosedCircleModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ClosedCircleModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageSpiveyPackerModel(struct soap*, const char*, int, const prodml22__ChangingStorageSpiveyPackerModel *, const char*); -SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageSpiveyPackerModel(struct soap*, const char*, prodml22__ChangingStorageSpiveyPackerModel *, const char*); -SOAP_FMAC1 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageSpiveyPackerModel(struct soap*, const char*, int, const prodml23__ChangingStorageSpiveyPackerModel *, const char*); +SOAP_FMAC3 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageSpiveyPackerModel(struct soap*, const char*, prodml23__ChangingStorageSpiveyPackerModel *, const char*); +SOAP_FMAC1 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ChangingStorageSpiveyPackerModel * soap_new_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, int n = -1) +inline prodml23__ChangingStorageSpiveyPackerModel * soap_new_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ChangingStorageSpiveyPackerModel * soap_new_req_prodml22__ChangingStorageSpiveyPackerModel( +inline prodml23__ChangingStorageSpiveyPackerModel * soap_new_req_prodml23__ChangingStorageSpiveyPackerModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__LeakSkin *LeakSkin, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1) + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__LeakSkin *LeakSkin, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1) { - prodml22__ChangingStorageSpiveyPackerModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageSpiveyPackerModel(soap); + prodml23__ChangingStorageSpiveyPackerModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageSpiveyPackerModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin = LeakSkin; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin = LeakSkin; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; } return _p; } -inline prodml22__ChangingStorageSpiveyPackerModel * soap_new_set_prodml22__ChangingStorageSpiveyPackerModel( +inline prodml23__ChangingStorageSpiveyPackerModel * soap_new_set_prodml23__ChangingStorageSpiveyPackerModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__LeakSkin *LeakSkin, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1, - prodml22__WellboreVolume *WellboreVolume__1, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility__1, - prodml22__TubingInteralDiameter *TubingInteralDiameter__1, - prodml22__FluidDensity *FluidDensity__1, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle__1, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType__1, + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__LeakSkin *LeakSkin, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1, + prodml23__WellboreVolume *WellboreVolume__1, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility__1, + prodml23__TubingInteralDiameter *TubingInteralDiameter__1, + prodml23__FluidDensity *FluidDensity__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle__1, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ChangingStorageSpiveyPackerModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageSpiveyPackerModel(soap); + prodml23__ChangingStorageSpiveyPackerModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageSpiveyPackerModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageSpiveyPackerModel::LeakSkin = LeakSkin; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume__1; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity__1; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ChangingStorageSpiveyPackerModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageSpiveyPackerModel::LeakSkin = LeakSkin; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume__1; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity__1; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml22__ChangingStorageSpiveyPackerModel const*p) +inline int soap_write_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml23__ChangingStorageSpiveyPackerModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel ? "prodml22:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel ? "prodml23:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyPackerModel const*p) +inline int soap_PUT_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyPackerModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel ? "prodml22:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel ? "prodml23:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyPackerModel const*p) +inline int soap_PATCH_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyPackerModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel ? "prodml22:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel ? "prodml23:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyPackerModel const*p) +inline int soap_POST_send_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyPackerModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel ? "prodml22:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyPackerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel ? "prodml23:ChangingStorageSpiveyPackerModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageSpiveyPackerModel(struct soap*, prodml22__ChangingStorageSpiveyPackerModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageSpiveyPackerModel(struct soap*, prodml23__ChangingStorageSpiveyPackerModel *, const char*, const char*); -inline int soap_read_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml22__ChangingStorageSpiveyPackerModel *p) +inline int soap_read_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml23__ChangingStorageSpiveyPackerModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ChangingStorageSpiveyPackerModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ChangingStorageSpiveyPackerModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyPackerModel *p) +inline int soap_GET_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyPackerModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ChangingStorageSpiveyPackerModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ChangingStorageSpiveyPackerModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml22__ChangingStorageSpiveyPackerModel *p) +inline int soap_POST_recv_prodml23__ChangingStorageSpiveyPackerModel(struct soap *soap, prodml23__ChangingStorageSpiveyPackerModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ChangingStorageSpiveyPackerModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ChangingStorageSpiveyPackerModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageSpiveyFissuresModel(struct soap*, const char*, int, const prodml22__ChangingStorageSpiveyFissuresModel *, const char*); -SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageSpiveyFissuresModel(struct soap*, const char*, prodml22__ChangingStorageSpiveyFissuresModel *, const char*); -SOAP_FMAC1 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageSpiveyFissuresModel(struct soap*, const char*, int, const prodml23__ChangingStorageSpiveyFissuresModel *, const char*); +SOAP_FMAC3 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageSpiveyFissuresModel(struct soap*, const char*, prodml23__ChangingStorageSpiveyFissuresModel *, const char*); +SOAP_FMAC1 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ChangingStorageSpiveyFissuresModel * soap_new_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, int n = -1) +inline prodml23__ChangingStorageSpiveyFissuresModel * soap_new_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ChangingStorageSpiveyFissuresModel * soap_new_req_prodml22__ChangingStorageSpiveyFissuresModel( +inline prodml23__ChangingStorageSpiveyFissuresModel * soap_new_req_prodml23__ChangingStorageSpiveyFissuresModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__LeakSkin *LeakSkin, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1) + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__LeakSkin *LeakSkin, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1) { - prodml22__ChangingStorageSpiveyFissuresModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageSpiveyFissuresModel(soap); + prodml23__ChangingStorageSpiveyFissuresModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageSpiveyFissuresModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin = LeakSkin; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin = LeakSkin; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; } return _p; } -inline prodml22__ChangingStorageSpiveyFissuresModel * soap_new_set_prodml22__ChangingStorageSpiveyFissuresModel( +inline prodml23__ChangingStorageSpiveyFissuresModel * soap_new_set_prodml23__ChangingStorageSpiveyFissuresModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__LeakSkin *LeakSkin, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1, - prodml22__WellboreVolume *WellboreVolume__1, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility__1, - prodml22__TubingInteralDiameter *TubingInteralDiameter__1, - prodml22__FluidDensity *FluidDensity__1, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle__1, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType__1, + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__LeakSkin *LeakSkin, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1, + prodml23__WellboreVolume *WellboreVolume__1, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility__1, + prodml23__TubingInteralDiameter *TubingInteralDiameter__1, + prodml23__FluidDensity *FluidDensity__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle__1, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ChangingStorageSpiveyFissuresModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageSpiveyFissuresModel(soap); + prodml23__ChangingStorageSpiveyFissuresModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageSpiveyFissuresModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageSpiveyFissuresModel::LeakSkin = LeakSkin; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume__1; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity__1; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ChangingStorageSpiveyFissuresModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageSpiveyFissuresModel::LeakSkin = LeakSkin; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume__1; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity__1; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml22__ChangingStorageSpiveyFissuresModel const*p) +inline int soap_write_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml23__ChangingStorageSpiveyFissuresModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel ? "prodml22:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel ? "prodml23:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyFissuresModel const*p) +inline int soap_PUT_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyFissuresModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel ? "prodml22:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel ? "prodml23:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyFissuresModel const*p) +inline int soap_PATCH_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyFissuresModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel ? "prodml22:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel ? "prodml23:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyFissuresModel const*p) +inline int soap_POST_send_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyFissuresModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel ? "prodml22:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageSpiveyFissuresModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel ? "prodml23:ChangingStorageSpiveyFissuresModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageSpiveyFissuresModel(struct soap*, prodml22__ChangingStorageSpiveyFissuresModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageSpiveyFissuresModel(struct soap*, prodml23__ChangingStorageSpiveyFissuresModel *, const char*, const char*); -inline int soap_read_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml22__ChangingStorageSpiveyFissuresModel *p) +inline int soap_read_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml23__ChangingStorageSpiveyFissuresModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ChangingStorageSpiveyFissuresModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ChangingStorageSpiveyFissuresModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml22__ChangingStorageSpiveyFissuresModel *p) +inline int soap_GET_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, const char *URL, prodml23__ChangingStorageSpiveyFissuresModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ChangingStorageSpiveyFissuresModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ChangingStorageSpiveyFissuresModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml22__ChangingStorageSpiveyFissuresModel *p) +inline int soap_POST_recv_prodml23__ChangingStorageSpiveyFissuresModel(struct soap *soap, prodml23__ChangingStorageSpiveyFissuresModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ChangingStorageSpiveyFissuresModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ChangingStorageSpiveyFissuresModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageHegemanModel(struct soap*, const char*, int, const prodml22__ChangingStorageHegemanModel *, const char*); -SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageHegemanModel(struct soap*, const char*, prodml22__ChangingStorageHegemanModel *, const char*); -SOAP_FMAC1 prodml22__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageHegemanModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageHegemanModel(struct soap*, const char*, int, const prodml23__ChangingStorageHegemanModel *, const char*); +SOAP_FMAC3 prodml23__ChangingStorageHegemanModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageHegemanModel(struct soap*, const char*, prodml23__ChangingStorageHegemanModel *, const char*); +SOAP_FMAC1 prodml23__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageHegemanModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ChangingStorageHegemanModel * soap_new_prodml22__ChangingStorageHegemanModel(struct soap *soap, int n = -1) +inline prodml23__ChangingStorageHegemanModel * soap_new_prodml23__ChangingStorageHegemanModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ChangingStorageHegemanModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ChangingStorageHegemanModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ChangingStorageHegemanModel * soap_new_req_prodml22__ChangingStorageHegemanModel( +inline prodml23__ChangingStorageHegemanModel * soap_new_req_prodml23__ChangingStorageHegemanModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__DeltaTimeStorageChanges *DeltaTimeStorageChanges, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1) + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__DeltaTimeStorageChanges *DeltaTimeStorageChanges, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1) { - prodml22__ChangingStorageHegemanModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageHegemanModel(soap); + prodml23__ChangingStorageHegemanModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageHegemanModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; } return _p; } -inline prodml22__ChangingStorageHegemanModel * soap_new_set_prodml22__ChangingStorageHegemanModel( +inline prodml23__ChangingStorageHegemanModel * soap_new_set_prodml23__ChangingStorageHegemanModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__DeltaTimeStorageChanges *DeltaTimeStorageChanges, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1, - prodml22__WellboreVolume *WellboreVolume__1, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility__1, - prodml22__TubingInteralDiameter *TubingInteralDiameter__1, - prodml22__FluidDensity *FluidDensity__1, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle__1, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType__1, + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__DeltaTimeStorageChanges *DeltaTimeStorageChanges, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1, + prodml23__WellboreVolume *WellboreVolume__1, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility__1, + prodml23__TubingInteralDiameter *TubingInteralDiameter__1, + prodml23__FluidDensity *FluidDensity__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle__1, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ChangingStorageHegemanModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageHegemanModel(soap); + prodml23__ChangingStorageHegemanModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageHegemanModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageHegemanModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume__1; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity__1; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ChangingStorageHegemanModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageHegemanModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume__1; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity__1; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ChangingStorageHegemanModel(struct soap *soap, prodml22__ChangingStorageHegemanModel const*p) +inline int soap_write_prodml23__ChangingStorageHegemanModel(struct soap *soap, prodml23__ChangingStorageHegemanModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel ? "prodml22:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel ? "prodml23:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml22__ChangingStorageHegemanModel const*p) +inline int soap_PUT_prodml23__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml23__ChangingStorageHegemanModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel ? "prodml22:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel ? "prodml23:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml22__ChangingStorageHegemanModel const*p) +inline int soap_PATCH_prodml23__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml23__ChangingStorageHegemanModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel ? "prodml22:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel ? "prodml23:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml22__ChangingStorageHegemanModel const*p) +inline int soap_POST_send_prodml23__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml23__ChangingStorageHegemanModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel ? "prodml22:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageHegemanModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel ? "prodml23:ChangingStorageHegemanModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ChangingStorageHegemanModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageHegemanModel(struct soap*, prodml22__ChangingStorageHegemanModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ChangingStorageHegemanModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageHegemanModel(struct soap*, prodml23__ChangingStorageHegemanModel *, const char*, const char*); -inline int soap_read_prodml22__ChangingStorageHegemanModel(struct soap *soap, prodml22__ChangingStorageHegemanModel *p) +inline int soap_read_prodml23__ChangingStorageHegemanModel(struct soap *soap, prodml23__ChangingStorageHegemanModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ChangingStorageHegemanModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ChangingStorageHegemanModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml22__ChangingStorageHegemanModel *p) +inline int soap_GET_prodml23__ChangingStorageHegemanModel(struct soap *soap, const char *URL, prodml23__ChangingStorageHegemanModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ChangingStorageHegemanModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ChangingStorageHegemanModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ChangingStorageHegemanModel(struct soap *soap, prodml22__ChangingStorageHegemanModel *p) +inline int soap_POST_recv_prodml23__ChangingStorageHegemanModel(struct soap *soap, prodml23__ChangingStorageHegemanModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ChangingStorageHegemanModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ChangingStorageHegemanModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChangingStorageFairModel(struct soap*, const char*, int, const prodml22__ChangingStorageFairModel *, const char*); -SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml22__ChangingStorageFairModel(struct soap*, const char*, prodml22__ChangingStorageFairModel *, const char*); -SOAP_FMAC1 prodml22__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageFairModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChangingStorageFairModel(struct soap*, const char*, int, const prodml23__ChangingStorageFairModel *, const char*); +SOAP_FMAC3 prodml23__ChangingStorageFairModel * SOAP_FMAC4 soap_in_prodml23__ChangingStorageFairModel(struct soap*, const char*, prodml23__ChangingStorageFairModel *, const char*); +SOAP_FMAC1 prodml23__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageFairModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ChangingStorageFairModel * soap_new_prodml22__ChangingStorageFairModel(struct soap *soap, int n = -1) +inline prodml23__ChangingStorageFairModel * soap_new_prodml23__ChangingStorageFairModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ChangingStorageFairModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ChangingStorageFairModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ChangingStorageFairModel * soap_new_req_prodml22__ChangingStorageFairModel( +inline prodml23__ChangingStorageFairModel * soap_new_req_prodml23__ChangingStorageFairModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__DeltaTimeStorageChanges *DeltaTimeStorageChanges, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1) + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__DeltaTimeStorageChanges *DeltaTimeStorageChanges, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1) { - prodml22__ChangingStorageFairModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageFairModel(soap); + prodml23__ChangingStorageFairModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageFairModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; } return _p; } -inline prodml22__ChangingStorageFairModel * soap_new_set_prodml22__ChangingStorageFairModel( +inline prodml23__ChangingStorageFairModel * soap_new_set_prodml23__ChangingStorageFairModel( struct soap *soap, - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, - prodml22__DeltaTimeStorageChanges *DeltaTimeStorageChanges, - prodml22__WellboreRadius *WellboreRadius__1, - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient__1, - prodml22__WellboreVolume *WellboreVolume__1, - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility__1, - prodml22__TubingInteralDiameter *TubingInteralDiameter__1, - prodml22__FluidDensity *FluidDensity__1, - prodml22__WellboreDeviationAngle *WellboreDeviationAngle__1, - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType__1, + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage, + prodml23__DeltaTimeStorageChanges *DeltaTimeStorageChanges, + prodml23__WellboreRadius *WellboreRadius__1, + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient__1, + prodml23__WellboreVolume *WellboreVolume__1, + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility__1, + prodml23__TubingInteralDiameter *TubingInteralDiameter__1, + prodml23__FluidDensity *FluidDensity__1, + prodml23__WellboreDeviationAngle *WellboreDeviationAngle__1, + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType__1, std::string *Comment__2, std::string *Method__2) { - prodml22__ChangingStorageFairModel *_p = gsoap_eml2_3::soap_new_prodml22__ChangingStorageFairModel(soap); + prodml23__ChangingStorageFairModel *_p = gsoap_eml2_3::soap_new_prodml23__ChangingStorageFairModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; - _p->prodml22__ChangingStorageFairModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; - _p->prodml22__WellboreBaseModel::WellboreRadius = WellboreRadius__1; - _p->prodml22__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; - _p->prodml22__WellboreBaseModel::WellboreVolume = WellboreVolume__1; - _p->prodml22__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; - _p->prodml22__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; - _p->prodml22__WellboreBaseModel::FluidDensity = FluidDensity__1; - _p->prodml22__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; - _p->prodml22__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; - _p->prodml22__AbstractModelSection::Comment = Comment__2; - _p->prodml22__AbstractModelSection::Method = Method__2; + _p->prodml23__ChangingStorageFairModel::RatioInitialToFinalWellboreStorage = RatioInitialToFinalWellboreStorage; + _p->prodml23__ChangingStorageFairModel::DeltaTimeStorageChanges = DeltaTimeStorageChanges; + _p->prodml23__WellboreBaseModel::WellboreRadius = WellboreRadius__1; + _p->prodml23__WellboreBaseModel::WellboreStorageCoefficient = WellboreStorageCoefficient__1; + _p->prodml23__WellboreBaseModel::WellboreVolume = WellboreVolume__1; + _p->prodml23__WellboreBaseModel::WellboreFluidCompressibility = WellboreFluidCompressibility__1; + _p->prodml23__WellboreBaseModel::TubingInteralDiameter = TubingInteralDiameter__1; + _p->prodml23__WellboreBaseModel::FluidDensity = FluidDensity__1; + _p->prodml23__WellboreBaseModel::WellboreDeviationAngle = WellboreDeviationAngle__1; + _p->prodml23__WellboreBaseModel::WellboreStorageMechanismType = WellboreStorageMechanismType__1; + _p->prodml23__AbstractModelSection::Comment = Comment__2; + _p->prodml23__AbstractModelSection::Method = Method__2; } return _p; } -inline int soap_write_prodml22__ChangingStorageFairModel(struct soap *soap, prodml22__ChangingStorageFairModel const*p) +inline int soap_write_prodml23__ChangingStorageFairModel(struct soap *soap, prodml23__ChangingStorageFairModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel ? "prodml22:ChangingStorageFairModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel ? "prodml23:ChangingStorageFairModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml22__ChangingStorageFairModel const*p) +inline int soap_PUT_prodml23__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml23__ChangingStorageFairModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel ? "prodml22:ChangingStorageFairModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel ? "prodml23:ChangingStorageFairModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml22__ChangingStorageFairModel const*p) +inline int soap_PATCH_prodml23__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml23__ChangingStorageFairModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel ? "prodml22:ChangingStorageFairModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel ? "prodml23:ChangingStorageFairModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml22__ChangingStorageFairModel const*p) +inline int soap_POST_send_prodml23__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml23__ChangingStorageFairModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel ? "prodml22:ChangingStorageFairModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChangingStorageFairModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel ? "prodml23:ChangingStorageFairModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ChangingStorageFairModel * SOAP_FMAC4 soap_get_prodml22__ChangingStorageFairModel(struct soap*, prodml22__ChangingStorageFairModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ChangingStorageFairModel * SOAP_FMAC4 soap_get_prodml23__ChangingStorageFairModel(struct soap*, prodml23__ChangingStorageFairModel *, const char*, const char*); -inline int soap_read_prodml22__ChangingStorageFairModel(struct soap *soap, prodml22__ChangingStorageFairModel *p) +inline int soap_read_prodml23__ChangingStorageFairModel(struct soap *soap, prodml23__ChangingStorageFairModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ChangingStorageFairModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ChangingStorageFairModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml22__ChangingStorageFairModel *p) +inline int soap_GET_prodml23__ChangingStorageFairModel(struct soap *soap, const char *URL, prodml23__ChangingStorageFairModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ChangingStorageFairModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ChangingStorageFairModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ChangingStorageFairModel(struct soap *soap, prodml22__ChangingStorageFairModel *p) +inline int soap_POST_recv_prodml23__ChangingStorageFairModel(struct soap *soap, prodml23__ChangingStorageFairModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ChangingStorageFairModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ChangingStorageFairModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BoundaryBaseModel(struct soap*, const char*, int, const prodml22__BoundaryBaseModel *, const char*); -SOAP_FMAC3 prodml22__BoundaryBaseModel * SOAP_FMAC4 soap_in_prodml22__BoundaryBaseModel(struct soap*, const char*, prodml22__BoundaryBaseModel *, const char*); -SOAP_FMAC1 prodml22__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__BoundaryBaseModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BoundaryBaseModel(struct soap*, const char*, int, const prodml23__BoundaryBaseModel *, const char*); +SOAP_FMAC3 prodml23__BoundaryBaseModel * SOAP_FMAC4 soap_in_prodml23__BoundaryBaseModel(struct soap*, const char*, prodml23__BoundaryBaseModel *, const char*); +SOAP_FMAC1 prodml23__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__BoundaryBaseModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__BoundaryBaseModel * soap_new_prodml22__BoundaryBaseModel(struct soap *soap, int n = -1) +inline prodml23__BoundaryBaseModel * soap_new_prodml23__BoundaryBaseModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__BoundaryBaseModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__BoundaryBaseModel(soap, n, NULL, NULL, NULL); } -inline prodml22__BoundaryBaseModel * soap_new_req_prodml22__BoundaryBaseModel( +inline prodml23__BoundaryBaseModel * soap_new_req_prodml23__BoundaryBaseModel( struct soap *soap) { - prodml22__BoundaryBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__BoundaryBaseModel(soap); + prodml23__BoundaryBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__BoundaryBaseModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__BoundaryBaseModel * soap_new_set_prodml22__BoundaryBaseModel( +inline prodml23__BoundaryBaseModel * soap_new_set_prodml23__BoundaryBaseModel( struct soap *soap, - prodml22__RadiusOfInvestigation *RadiusOfInvestigation, - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation, + prodml23__RadiusOfInvestigation *RadiusOfInvestigation, + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation, std::string *Comment__1, std::string *Method__1) { - prodml22__BoundaryBaseModel *_p = gsoap_eml2_3::soap_new_prodml22__BoundaryBaseModel(soap); + prodml23__BoundaryBaseModel *_p = gsoap_eml2_3::soap_new_prodml23__BoundaryBaseModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation; - _p->prodml22__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation; - _p->prodml22__AbstractModelSection::Comment = Comment__1; - _p->prodml22__AbstractModelSection::Method = Method__1; + _p->prodml23__BoundaryBaseModel::RadiusOfInvestigation = RadiusOfInvestigation; + _p->prodml23__BoundaryBaseModel::PoreVolumeOfInvestigation = PoreVolumeOfInvestigation; + _p->prodml23__AbstractModelSection::Comment = Comment__1; + _p->prodml23__AbstractModelSection::Method = Method__1; } return _p; } -inline int soap_write_prodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel const*p) +inline int soap_write_prodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel ? "prodml22:BoundaryBaseModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel ? "prodml23:BoundaryBaseModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__BoundaryBaseModel(struct soap *soap, const char *URL, prodml22__BoundaryBaseModel const*p) +inline int soap_PUT_prodml23__BoundaryBaseModel(struct soap *soap, const char *URL, prodml23__BoundaryBaseModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel ? "prodml22:BoundaryBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel ? "prodml23:BoundaryBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BoundaryBaseModel(struct soap *soap, const char *URL, prodml22__BoundaryBaseModel const*p) +inline int soap_PATCH_prodml23__BoundaryBaseModel(struct soap *soap, const char *URL, prodml23__BoundaryBaseModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel ? "prodml22:BoundaryBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel ? "prodml23:BoundaryBaseModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BoundaryBaseModel(struct soap *soap, const char *URL, prodml22__BoundaryBaseModel const*p) +inline int soap_POST_send_prodml23__BoundaryBaseModel(struct soap *soap, const char *URL, prodml23__BoundaryBaseModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel ? "prodml22:BoundaryBaseModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BoundaryBaseModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel ? "prodml23:BoundaryBaseModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BoundaryBaseModel * SOAP_FMAC4 soap_get_prodml22__BoundaryBaseModel(struct soap*, prodml22__BoundaryBaseModel *, const char*, const char*); +SOAP_FMAC3 prodml23__BoundaryBaseModel * SOAP_FMAC4 soap_get_prodml23__BoundaryBaseModel(struct soap*, prodml23__BoundaryBaseModel *, const char*, const char*); -inline int soap_read_prodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel *p) +inline int soap_read_prodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BoundaryBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BoundaryBaseModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BoundaryBaseModel(struct soap *soap, const char *URL, prodml22__BoundaryBaseModel *p) +inline int soap_GET_prodml23__BoundaryBaseModel(struct soap *soap, const char *URL, prodml23__BoundaryBaseModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BoundaryBaseModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BoundaryBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BoundaryBaseModel(struct soap *soap, prodml22__BoundaryBaseModel *p) +inline int soap_POST_recv_prodml23__BoundaryBaseModel(struct soap *soap, prodml23__BoundaryBaseModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__BoundaryBaseModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BoundaryBaseModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractModelSection(struct soap*, const char*, int, const prodml22__AbstractModelSection *, const char*); -SOAP_FMAC3 prodml22__AbstractModelSection * SOAP_FMAC4 soap_in_prodml22__AbstractModelSection(struct soap*, const char*, prodml22__AbstractModelSection *, const char*); -SOAP_FMAC1 prodml22__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml22__AbstractModelSection(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractModelSection(struct soap*, const char*, int, const prodml23__AbstractModelSection *, const char*); +SOAP_FMAC3 prodml23__AbstractModelSection * SOAP_FMAC4 soap_in_prodml23__AbstractModelSection(struct soap*, const char*, prodml23__AbstractModelSection *, const char*); +SOAP_FMAC1 prodml23__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml23__AbstractModelSection(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractModelSection * soap_new_prodml22__AbstractModelSection(struct soap *soap, int n = -1) +inline prodml23__AbstractModelSection * soap_new_prodml23__AbstractModelSection(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractModelSection(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractModelSection(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractModelSection * soap_new_req_prodml22__AbstractModelSection( +inline prodml23__AbstractModelSection * soap_new_req_prodml23__AbstractModelSection( struct soap *soap) { - prodml22__AbstractModelSection *_p = gsoap_eml2_3::soap_new_prodml22__AbstractModelSection(soap); + prodml23__AbstractModelSection *_p = gsoap_eml2_3::soap_new_prodml23__AbstractModelSection(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractModelSection * soap_new_set_prodml22__AbstractModelSection( +inline prodml23__AbstractModelSection * soap_new_set_prodml23__AbstractModelSection( struct soap *soap, std::string *Comment, std::string *Method) { - prodml22__AbstractModelSection *_p = gsoap_eml2_3::soap_new_prodml22__AbstractModelSection(soap); + prodml23__AbstractModelSection *_p = gsoap_eml2_3::soap_new_prodml23__AbstractModelSection(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractModelSection::Comment = Comment; - _p->prodml22__AbstractModelSection::Method = Method; + _p->prodml23__AbstractModelSection::Comment = Comment; + _p->prodml23__AbstractModelSection::Method = Method; } return _p; } -inline int soap_write_prodml22__AbstractModelSection(struct soap *soap, prodml22__AbstractModelSection const*p) +inline int soap_write_prodml23__AbstractModelSection(struct soap *soap, prodml23__AbstractModelSection const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection ? "prodml22:AbstractModelSection" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection ? "prodml23:AbstractModelSection" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractModelSection(struct soap *soap, const char *URL, prodml22__AbstractModelSection const*p) +inline int soap_PUT_prodml23__AbstractModelSection(struct soap *soap, const char *URL, prodml23__AbstractModelSection const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection ? "prodml22:AbstractModelSection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection ? "prodml23:AbstractModelSection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractModelSection(struct soap *soap, const char *URL, prodml22__AbstractModelSection const*p) +inline int soap_PATCH_prodml23__AbstractModelSection(struct soap *soap, const char *URL, prodml23__AbstractModelSection const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection ? "prodml22:AbstractModelSection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection ? "prodml23:AbstractModelSection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractModelSection(struct soap *soap, const char *URL, prodml22__AbstractModelSection const*p) +inline int soap_POST_send_prodml23__AbstractModelSection(struct soap *soap, const char *URL, prodml23__AbstractModelSection const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection ? "prodml22:AbstractModelSection" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractModelSection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection ? "prodml23:AbstractModelSection" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractModelSection * SOAP_FMAC4 soap_get_prodml22__AbstractModelSection(struct soap*, prodml22__AbstractModelSection *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractModelSection * SOAP_FMAC4 soap_get_prodml23__AbstractModelSection(struct soap*, prodml23__AbstractModelSection *, const char*, const char*); -inline int soap_read_prodml22__AbstractModelSection(struct soap *soap, prodml22__AbstractModelSection *p) +inline int soap_read_prodml23__AbstractModelSection(struct soap *soap, prodml23__AbstractModelSection *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractModelSection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractModelSection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractModelSection(struct soap *soap, const char *URL, prodml22__AbstractModelSection *p) +inline int soap_GET_prodml23__AbstractModelSection(struct soap *soap, const char *URL, prodml23__AbstractModelSection *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractModelSection(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractModelSection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractModelSection(struct soap *soap, prodml22__AbstractModelSection *p) +inline int soap_POST_recv_prodml23__AbstractModelSection(struct soap *soap, prodml23__AbstractModelSection *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractModelSection(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractModelSection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TestPeriodsFlowrateData(struct soap*, const char*, int, const prodml22__TestPeriodsFlowrateData *, const char*); -SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml22__TestPeriodsFlowrateData(struct soap*, const char*, prodml22__TestPeriodsFlowrateData *, const char*); -SOAP_FMAC1 prodml22__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__TestPeriodsFlowrateData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TestPeriodsFlowrateData(struct soap*, const char*, int, const prodml23__TestPeriodsFlowrateData *, const char*); +SOAP_FMAC3 prodml23__TestPeriodsFlowrateData * SOAP_FMAC4 soap_in_prodml23__TestPeriodsFlowrateData(struct soap*, const char*, prodml23__TestPeriodsFlowrateData *, const char*); +SOAP_FMAC1 prodml23__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__TestPeriodsFlowrateData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TestPeriodsFlowrateData * soap_new_prodml22__TestPeriodsFlowrateData(struct soap *soap, int n = -1) +inline prodml23__TestPeriodsFlowrateData * soap_new_prodml23__TestPeriodsFlowrateData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TestPeriodsFlowrateData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TestPeriodsFlowrateData(soap, n, NULL, NULL, NULL); } -inline prodml22__TestPeriodsFlowrateData * soap_new_req_prodml22__TestPeriodsFlowrateData( +inline prodml23__TestPeriodsFlowrateData * soap_new_req_prodml23__TestPeriodsFlowrateData( struct soap *soap, const std::vector & TestPeriodRef) { - prodml22__TestPeriodsFlowrateData *_p = gsoap_eml2_3::soap_new_prodml22__TestPeriodsFlowrateData(soap); + prodml23__TestPeriodsFlowrateData *_p = gsoap_eml2_3::soap_new_prodml23__TestPeriodsFlowrateData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TestPeriodsFlowrateData::TestPeriodRef = TestPeriodRef; + _p->prodml23__TestPeriodsFlowrateData::TestPeriodRef = TestPeriodRef; } return _p; } -inline prodml22__TestPeriodsFlowrateData * soap_new_set_prodml22__TestPeriodsFlowrateData( +inline prodml23__TestPeriodsFlowrateData * soap_new_set_prodml23__TestPeriodsFlowrateData( struct soap *soap, const std::vector & TestPeriodRef) { - prodml22__TestPeriodsFlowrateData *_p = gsoap_eml2_3::soap_new_prodml22__TestPeriodsFlowrateData(soap); + prodml23__TestPeriodsFlowrateData *_p = gsoap_eml2_3::soap_new_prodml23__TestPeriodsFlowrateData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TestPeriodsFlowrateData::TestPeriodRef = TestPeriodRef; + _p->prodml23__TestPeriodsFlowrateData::TestPeriodRef = TestPeriodRef; } return _p; } -inline int soap_write_prodml22__TestPeriodsFlowrateData(struct soap *soap, prodml22__TestPeriodsFlowrateData const*p) +inline int soap_write_prodml23__TestPeriodsFlowrateData(struct soap *soap, prodml23__TestPeriodsFlowrateData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData ? "prodml22:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData ? "prodml23:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml22__TestPeriodsFlowrateData const*p) +inline int soap_PUT_prodml23__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml23__TestPeriodsFlowrateData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData ? "prodml22:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData ? "prodml23:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml22__TestPeriodsFlowrateData const*p) +inline int soap_PATCH_prodml23__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml23__TestPeriodsFlowrateData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData ? "prodml22:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData ? "prodml23:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml22__TestPeriodsFlowrateData const*p) +inline int soap_POST_send_prodml23__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml23__TestPeriodsFlowrateData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData ? "prodml22:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriodsFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData ? "prodml23:TestPeriodsFlowrateData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TestPeriodsFlowrateData * SOAP_FMAC4 soap_get_prodml22__TestPeriodsFlowrateData(struct soap*, prodml22__TestPeriodsFlowrateData *, const char*, const char*); +SOAP_FMAC3 prodml23__TestPeriodsFlowrateData * SOAP_FMAC4 soap_get_prodml23__TestPeriodsFlowrateData(struct soap*, prodml23__TestPeriodsFlowrateData *, const char*, const char*); -inline int soap_read_prodml22__TestPeriodsFlowrateData(struct soap *soap, prodml22__TestPeriodsFlowrateData *p) +inline int soap_read_prodml23__TestPeriodsFlowrateData(struct soap *soap, prodml23__TestPeriodsFlowrateData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TestPeriodsFlowrateData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TestPeriodsFlowrateData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml22__TestPeriodsFlowrateData *p) +inline int soap_GET_prodml23__TestPeriodsFlowrateData(struct soap *soap, const char *URL, prodml23__TestPeriodsFlowrateData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TestPeriodsFlowrateData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TestPeriodsFlowrateData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TestPeriodsFlowrateData(struct soap *soap, prodml22__TestPeriodsFlowrateData *p) +inline int soap_POST_recv_prodml23__TestPeriodsFlowrateData(struct soap *soap, prodml23__TestPeriodsFlowrateData *p) { - if (gsoap_eml2_3::soap_read_prodml22__TestPeriodsFlowrateData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TestPeriodsFlowrateData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SpecializedAnalysis(struct soap*, const char*, int, const prodml22__SpecializedAnalysis *, const char*); -SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml22__SpecializedAnalysis(struct soap*, const char*, prodml22__SpecializedAnalysis *, const char*); -SOAP_FMAC1 prodml22__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__SpecializedAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SpecializedAnalysis(struct soap*, const char*, int, const prodml23__SpecializedAnalysis *, const char*); +SOAP_FMAC3 prodml23__SpecializedAnalysis * SOAP_FMAC4 soap_in_prodml23__SpecializedAnalysis(struct soap*, const char*, prodml23__SpecializedAnalysis *, const char*); +SOAP_FMAC1 prodml23__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__SpecializedAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SpecializedAnalysis * soap_new_prodml22__SpecializedAnalysis(struct soap *soap, int n = -1) +inline prodml23__SpecializedAnalysis * soap_new_prodml23__SpecializedAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SpecializedAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SpecializedAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__SpecializedAnalysis * soap_new_req_prodml22__SpecializedAnalysis( +inline prodml23__SpecializedAnalysis * soap_new_req_prodml23__SpecializedAnalysis( struct soap *soap, const std::string& SpecializedAnalysisType, const std::string& SpecializedXAxisDescription, const std::string& SpecializedYAxisDescription, - prodml22__AbstractPtaPressureData *AnalysisPressureFunction) + prodml23__AbstractPtaPressureData *AnalysisPressureFunction) { - prodml22__SpecializedAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__SpecializedAnalysis(soap); + prodml23__SpecializedAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__SpecializedAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SpecializedAnalysis::SpecializedAnalysisType = SpecializedAnalysisType; - _p->prodml22__SpecializedAnalysis::SpecializedXAxisDescription = SpecializedXAxisDescription; - _p->prodml22__SpecializedAnalysis::SpecializedYAxisDescription = SpecializedYAxisDescription; - _p->prodml22__SpecializedAnalysis::AnalysisPressureFunction = AnalysisPressureFunction; + _p->prodml23__SpecializedAnalysis::SpecializedAnalysisType = SpecializedAnalysisType; + _p->prodml23__SpecializedAnalysis::SpecializedXAxisDescription = SpecializedXAxisDescription; + _p->prodml23__SpecializedAnalysis::SpecializedYAxisDescription = SpecializedYAxisDescription; + _p->prodml23__SpecializedAnalysis::AnalysisPressureFunction = AnalysisPressureFunction; } return _p; } -inline prodml22__SpecializedAnalysis * soap_new_set_prodml22__SpecializedAnalysis( +inline prodml23__SpecializedAnalysis * soap_new_set_prodml23__SpecializedAnalysis( struct soap *soap, const std::string& SpecializedAnalysisType, - const std::vector & AnyParameter, - const std::vector & CustomParameter, + const std::vector & AnyParameter, + const std::vector & CustomParameter, const std::string& SpecializedXAxisDescription, const std::string& SpecializedYAxisDescription, - prodml22__AbstractPtaPressureData *AnalysisPressureFunction, + prodml23__AbstractPtaPressureData *AnalysisPressureFunction, std::string *Remark, - const std::vector & AnalysisLine) + const std::vector & AnalysisLine) { - prodml22__SpecializedAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__SpecializedAnalysis(soap); + prodml23__SpecializedAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__SpecializedAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SpecializedAnalysis::SpecializedAnalysisType = SpecializedAnalysisType; - _p->prodml22__SpecializedAnalysis::AnyParameter = AnyParameter; - _p->prodml22__SpecializedAnalysis::CustomParameter = CustomParameter; - _p->prodml22__SpecializedAnalysis::SpecializedXAxisDescription = SpecializedXAxisDescription; - _p->prodml22__SpecializedAnalysis::SpecializedYAxisDescription = SpecializedYAxisDescription; - _p->prodml22__SpecializedAnalysis::AnalysisPressureFunction = AnalysisPressureFunction; - _p->prodml22__SpecializedAnalysis::Remark = Remark; - _p->prodml22__SpecializedAnalysis::AnalysisLine = AnalysisLine; + _p->prodml23__SpecializedAnalysis::SpecializedAnalysisType = SpecializedAnalysisType; + _p->prodml23__SpecializedAnalysis::AnyParameter = AnyParameter; + _p->prodml23__SpecializedAnalysis::CustomParameter = CustomParameter; + _p->prodml23__SpecializedAnalysis::SpecializedXAxisDescription = SpecializedXAxisDescription; + _p->prodml23__SpecializedAnalysis::SpecializedYAxisDescription = SpecializedYAxisDescription; + _p->prodml23__SpecializedAnalysis::AnalysisPressureFunction = AnalysisPressureFunction; + _p->prodml23__SpecializedAnalysis::Remark = Remark; + _p->prodml23__SpecializedAnalysis::AnalysisLine = AnalysisLine; } return _p; } -inline int soap_write_prodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis const*p) +inline int soap_write_prodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis ? "prodml22:SpecializedAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis ? "prodml23:SpecializedAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SpecializedAnalysis(struct soap *soap, const char *URL, prodml22__SpecializedAnalysis const*p) +inline int soap_PUT_prodml23__SpecializedAnalysis(struct soap *soap, const char *URL, prodml23__SpecializedAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis ? "prodml22:SpecializedAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis ? "prodml23:SpecializedAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SpecializedAnalysis(struct soap *soap, const char *URL, prodml22__SpecializedAnalysis const*p) +inline int soap_PATCH_prodml23__SpecializedAnalysis(struct soap *soap, const char *URL, prodml23__SpecializedAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis ? "prodml22:SpecializedAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis ? "prodml23:SpecializedAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SpecializedAnalysis(struct soap *soap, const char *URL, prodml22__SpecializedAnalysis const*p) +inline int soap_POST_send_prodml23__SpecializedAnalysis(struct soap *soap, const char *URL, prodml23__SpecializedAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis ? "prodml22:SpecializedAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SpecializedAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis ? "prodml23:SpecializedAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SpecializedAnalysis * SOAP_FMAC4 soap_get_prodml22__SpecializedAnalysis(struct soap*, prodml22__SpecializedAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__SpecializedAnalysis * SOAP_FMAC4 soap_get_prodml23__SpecializedAnalysis(struct soap*, prodml23__SpecializedAnalysis *, const char*, const char*); -inline int soap_read_prodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis *p) +inline int soap_read_prodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SpecializedAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SpecializedAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SpecializedAnalysis(struct soap *soap, const char *URL, prodml22__SpecializedAnalysis *p) +inline int soap_GET_prodml23__SpecializedAnalysis(struct soap *soap, const char *URL, prodml23__SpecializedAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SpecializedAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SpecializedAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SpecializedAnalysis(struct soap *soap, prodml22__SpecializedAnalysis *p) +inline int soap_POST_recv_prodml23__SpecializedAnalysis(struct soap *soap, prodml23__SpecializedAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__SpecializedAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SpecializedAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleFractureSubModel(struct soap*, const char*, int, const prodml22__SingleFractureSubModel *, const char*); -SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml22__SingleFractureSubModel(struct soap*, const char*, prodml22__SingleFractureSubModel *, const char*); -SOAP_FMAC1 prodml22__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleFractureSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleFractureSubModel(struct soap*, const char*, int, const prodml23__SingleFractureSubModel *, const char*); +SOAP_FMAC3 prodml23__SingleFractureSubModel * SOAP_FMAC4 soap_in_prodml23__SingleFractureSubModel(struct soap*, const char*, prodml23__SingleFractureSubModel *, const char*); +SOAP_FMAC1 prodml23__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleFractureSubModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SingleFractureSubModel * soap_new_prodml22__SingleFractureSubModel(struct soap *soap, int n = -1) +inline prodml23__SingleFractureSubModel * soap_new_prodml23__SingleFractureSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SingleFractureSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SingleFractureSubModel(soap, n, NULL, NULL, NULL); } -inline prodml22__SingleFractureSubModel * soap_new_req_prodml22__SingleFractureSubModel( +inline prodml23__SingleFractureSubModel * soap_new_req_prodml23__SingleFractureSubModel( struct soap *soap, - prodml22__LocationIn2D *FractureTip1Location, - prodml22__LocationIn2D *FractureTip2Location, - prodml22__FractureHeight *FractureHeight, - prodml22__FractureModelType FractureModelType) + prodml23__LocationIn2D *FractureTip1Location, + prodml23__LocationIn2D *FractureTip2Location, + prodml23__FractureHeight *FractureHeight, + prodml23__FractureModelType FractureModelType) { - prodml22__SingleFractureSubModel *_p = gsoap_eml2_3::soap_new_prodml22__SingleFractureSubModel(soap); + prodml23__SingleFractureSubModel *_p = gsoap_eml2_3::soap_new_prodml23__SingleFractureSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleFractureSubModel::FractureTip1Location = FractureTip1Location; - _p->prodml22__SingleFractureSubModel::FractureTip2Location = FractureTip2Location; - _p->prodml22__SingleFractureSubModel::FractureHeight = FractureHeight; - _p->prodml22__SingleFractureSubModel::FractureModelType = FractureModelType; + _p->prodml23__SingleFractureSubModel::FractureTip1Location = FractureTip1Location; + _p->prodml23__SingleFractureSubModel::FractureTip2Location = FractureTip2Location; + _p->prodml23__SingleFractureSubModel::FractureHeight = FractureHeight; + _p->prodml23__SingleFractureSubModel::FractureModelType = FractureModelType; } return _p; } -inline prodml22__SingleFractureSubModel * soap_new_set_prodml22__SingleFractureSubModel( +inline prodml23__SingleFractureSubModel * soap_new_set_prodml23__SingleFractureSubModel( struct soap *soap, - prodml22__LocationIn2D *FractureTip1Location, - prodml22__LocationIn2D *FractureTip2Location, - prodml22__FractureHeight *FractureHeight, - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, - prodml22__FractureFaceSkin *FractureFaceSkin, - prodml22__FractureConductivity *FractureConductivity, - prodml22__FractureStorativityRatio *FractureStorativityRatio, - prodml22__FractureModelType FractureModelType) + prodml23__LocationIn2D *FractureTip1Location, + prodml23__LocationIn2D *FractureTip2Location, + prodml23__FractureHeight *FractureHeight, + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary, + prodml23__FractureFaceSkin *FractureFaceSkin, + prodml23__FractureConductivity *FractureConductivity, + prodml23__FractureStorativityRatio *FractureStorativityRatio, + prodml23__FractureModelType FractureModelType) { - prodml22__SingleFractureSubModel *_p = gsoap_eml2_3::soap_new_prodml22__SingleFractureSubModel(soap); + prodml23__SingleFractureSubModel *_p = gsoap_eml2_3::soap_new_prodml23__SingleFractureSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleFractureSubModel::FractureTip1Location = FractureTip1Location; - _p->prodml22__SingleFractureSubModel::FractureTip2Location = FractureTip2Location; - _p->prodml22__SingleFractureSubModel::FractureHeight = FractureHeight; - _p->prodml22__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; - _p->prodml22__SingleFractureSubModel::FractureFaceSkin = FractureFaceSkin; - _p->prodml22__SingleFractureSubModel::FractureConductivity = FractureConductivity; - _p->prodml22__SingleFractureSubModel::FractureStorativityRatio = FractureStorativityRatio; - _p->prodml22__SingleFractureSubModel::FractureModelType = FractureModelType; + _p->prodml23__SingleFractureSubModel::FractureTip1Location = FractureTip1Location; + _p->prodml23__SingleFractureSubModel::FractureTip2Location = FractureTip2Location; + _p->prodml23__SingleFractureSubModel::FractureHeight = FractureHeight; + _p->prodml23__SingleFractureSubModel::DistanceMidFractureHeightToBottomBoundary = DistanceMidFractureHeightToBottomBoundary; + _p->prodml23__SingleFractureSubModel::FractureFaceSkin = FractureFaceSkin; + _p->prodml23__SingleFractureSubModel::FractureConductivity = FractureConductivity; + _p->prodml23__SingleFractureSubModel::FractureStorativityRatio = FractureStorativityRatio; + _p->prodml23__SingleFractureSubModel::FractureModelType = FractureModelType; } return _p; } -inline int soap_write_prodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel const*p) +inline int soap_write_prodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel ? "prodml22:SingleFractureSubModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel ? "prodml23:SingleFractureSubModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SingleFractureSubModel(struct soap *soap, const char *URL, prodml22__SingleFractureSubModel const*p) +inline int soap_PUT_prodml23__SingleFractureSubModel(struct soap *soap, const char *URL, prodml23__SingleFractureSubModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel ? "prodml22:SingleFractureSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel ? "prodml23:SingleFractureSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SingleFractureSubModel(struct soap *soap, const char *URL, prodml22__SingleFractureSubModel const*p) +inline int soap_PATCH_prodml23__SingleFractureSubModel(struct soap *soap, const char *URL, prodml23__SingleFractureSubModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel ? "prodml22:SingleFractureSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel ? "prodml23:SingleFractureSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SingleFractureSubModel(struct soap *soap, const char *URL, prodml22__SingleFractureSubModel const*p) +inline int soap_POST_send_prodml23__SingleFractureSubModel(struct soap *soap, const char *URL, prodml23__SingleFractureSubModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel ? "prodml22:SingleFractureSubModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFractureSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel ? "prodml23:SingleFractureSubModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SingleFractureSubModel * SOAP_FMAC4 soap_get_prodml22__SingleFractureSubModel(struct soap*, prodml22__SingleFractureSubModel *, const char*, const char*); +SOAP_FMAC3 prodml23__SingleFractureSubModel * SOAP_FMAC4 soap_get_prodml23__SingleFractureSubModel(struct soap*, prodml23__SingleFractureSubModel *, const char*, const char*); -inline int soap_read_prodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel *p) +inline int soap_read_prodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SingleFractureSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SingleFractureSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SingleFractureSubModel(struct soap *soap, const char *URL, prodml22__SingleFractureSubModel *p) +inline int soap_GET_prodml23__SingleFractureSubModel(struct soap *soap, const char *URL, prodml23__SingleFractureSubModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SingleFractureSubModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SingleFractureSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SingleFractureSubModel(struct soap *soap, prodml22__SingleFractureSubModel *p) +inline int soap_POST_recv_prodml23__SingleFractureSubModel(struct soap *soap, prodml23__SingleFractureSubModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__SingleFractureSubModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SingleFractureSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleFlowrateData(struct soap*, const char*, int, const prodml22__SingleFlowrateData *, const char*); -SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml22__SingleFlowrateData(struct soap*, const char*, prodml22__SingleFlowrateData *, const char*); -SOAP_FMAC1 prodml22__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__SingleFlowrateData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleFlowrateData(struct soap*, const char*, int, const prodml23__SingleFlowrateData *, const char*); +SOAP_FMAC3 prodml23__SingleFlowrateData * SOAP_FMAC4 soap_in_prodml23__SingleFlowrateData(struct soap*, const char*, prodml23__SingleFlowrateData *, const char*); +SOAP_FMAC1 prodml23__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__SingleFlowrateData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SingleFlowrateData * soap_new_prodml22__SingleFlowrateData(struct soap *soap, int n = -1) +inline prodml23__SingleFlowrateData * soap_new_prodml23__SingleFlowrateData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SingleFlowrateData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SingleFlowrateData(soap, n, NULL, NULL, NULL); } -inline prodml22__SingleFlowrateData * soap_new_req_prodml22__SingleFlowrateData( +inline prodml23__SingleFlowrateData * soap_new_req_prodml23__SingleFlowrateData( struct soap *soap, eml23__TimeMeasure *EffectiveProducingTimeUsed, eml23__VolumePerTimeMeasure *SingleFlowrate) { - prodml22__SingleFlowrateData *_p = gsoap_eml2_3::soap_new_prodml22__SingleFlowrateData(soap); + prodml23__SingleFlowrateData *_p = gsoap_eml2_3::soap_new_prodml23__SingleFlowrateData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed = EffectiveProducingTimeUsed; - _p->prodml22__SingleFlowrateData::SingleFlowrate = SingleFlowrate; + _p->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed = EffectiveProducingTimeUsed; + _p->prodml23__SingleFlowrateData::SingleFlowrate = SingleFlowrate; } return _p; } -inline prodml22__SingleFlowrateData * soap_new_set_prodml22__SingleFlowrateData( +inline prodml23__SingleFlowrateData * soap_new_set_prodml23__SingleFlowrateData( struct soap *soap, eml23__TimeMeasure *EffectiveProducingTimeUsed, eml23__VolumePerTimeMeasure *SingleFlowrate) { - prodml22__SingleFlowrateData *_p = gsoap_eml2_3::soap_new_prodml22__SingleFlowrateData(soap); + prodml23__SingleFlowrateData *_p = gsoap_eml2_3::soap_new_prodml23__SingleFlowrateData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleFlowrateData::EffectiveProducingTimeUsed = EffectiveProducingTimeUsed; - _p->prodml22__SingleFlowrateData::SingleFlowrate = SingleFlowrate; + _p->prodml23__SingleFlowrateData::EffectiveProducingTimeUsed = EffectiveProducingTimeUsed; + _p->prodml23__SingleFlowrateData::SingleFlowrate = SingleFlowrate; } return _p; } -inline int soap_write_prodml22__SingleFlowrateData(struct soap *soap, prodml22__SingleFlowrateData const*p) +inline int soap_write_prodml23__SingleFlowrateData(struct soap *soap, prodml23__SingleFlowrateData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData ? "prodml22:SingleFlowrateData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData ? "prodml23:SingleFlowrateData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SingleFlowrateData(struct soap *soap, const char *URL, prodml22__SingleFlowrateData const*p) +inline int soap_PUT_prodml23__SingleFlowrateData(struct soap *soap, const char *URL, prodml23__SingleFlowrateData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData ? "prodml22:SingleFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData ? "prodml23:SingleFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SingleFlowrateData(struct soap *soap, const char *URL, prodml22__SingleFlowrateData const*p) +inline int soap_PATCH_prodml23__SingleFlowrateData(struct soap *soap, const char *URL, prodml23__SingleFlowrateData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData ? "prodml22:SingleFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData ? "prodml23:SingleFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SingleFlowrateData(struct soap *soap, const char *URL, prodml22__SingleFlowrateData const*p) +inline int soap_POST_send_prodml23__SingleFlowrateData(struct soap *soap, const char *URL, prodml23__SingleFlowrateData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData ? "prodml22:SingleFlowrateData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData ? "prodml23:SingleFlowrateData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SingleFlowrateData * SOAP_FMAC4 soap_get_prodml22__SingleFlowrateData(struct soap*, prodml22__SingleFlowrateData *, const char*, const char*); +SOAP_FMAC3 prodml23__SingleFlowrateData * SOAP_FMAC4 soap_get_prodml23__SingleFlowrateData(struct soap*, prodml23__SingleFlowrateData *, const char*, const char*); -inline int soap_read_prodml22__SingleFlowrateData(struct soap *soap, prodml22__SingleFlowrateData *p) +inline int soap_read_prodml23__SingleFlowrateData(struct soap *soap, prodml23__SingleFlowrateData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SingleFlowrateData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SingleFlowrateData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SingleFlowrateData(struct soap *soap, const char *URL, prodml22__SingleFlowrateData *p) +inline int soap_GET_prodml23__SingleFlowrateData(struct soap *soap, const char *URL, prodml23__SingleFlowrateData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SingleFlowrateData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SingleFlowrateData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SingleFlowrateData(struct soap *soap, prodml22__SingleFlowrateData *p) +inline int soap_POST_recv_prodml23__SingleFlowrateData(struct soap *soap, prodml23__SingleFlowrateData *p) { - if (gsoap_eml2_3::soap_read_prodml22__SingleFlowrateData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SingleFlowrateData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SingleBoundarySubModel(struct soap*, const char*, int, const prodml22__SingleBoundarySubModel *, const char*); -SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml22__SingleBoundarySubModel(struct soap*, const char*, prodml22__SingleBoundarySubModel *, const char*); -SOAP_FMAC1 prodml22__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleBoundarySubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SingleBoundarySubModel(struct soap*, const char*, int, const prodml23__SingleBoundarySubModel *, const char*); +SOAP_FMAC3 prodml23__SingleBoundarySubModel * SOAP_FMAC4 soap_in_prodml23__SingleBoundarySubModel(struct soap*, const char*, prodml23__SingleBoundarySubModel *, const char*); +SOAP_FMAC1 prodml23__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleBoundarySubModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SingleBoundarySubModel * soap_new_prodml22__SingleBoundarySubModel(struct soap *soap, int n = -1) +inline prodml23__SingleBoundarySubModel * soap_new_prodml23__SingleBoundarySubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SingleBoundarySubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SingleBoundarySubModel(soap, n, NULL, NULL, NULL); } -inline prodml22__SingleBoundarySubModel * soap_new_req_prodml22__SingleBoundarySubModel( +inline prodml23__SingleBoundarySubModel * soap_new_req_prodml23__SingleBoundarySubModel( struct soap *soap, - prodml22__Boundary1Type TypeOfBoundary, - prodml22__ResqmlModelRef *FaultRefID) + prodml23__Boundary1Type TypeOfBoundary, + prodml23__ResqmlModelRef *FaultRefID) { - prodml22__SingleBoundarySubModel *_p = gsoap_eml2_3::soap_new_prodml22__SingleBoundarySubModel(soap); + prodml23__SingleBoundarySubModel *_p = gsoap_eml2_3::soap_new_prodml23__SingleBoundarySubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleBoundarySubModel::TypeOfBoundary = TypeOfBoundary; - _p->prodml22__SingleBoundarySubModel::FaultRefID = FaultRefID; + _p->prodml23__SingleBoundarySubModel::TypeOfBoundary = TypeOfBoundary; + _p->prodml23__SingleBoundarySubModel::FaultRefID = FaultRefID; } return _p; } -inline prodml22__SingleBoundarySubModel * soap_new_set_prodml22__SingleBoundarySubModel( +inline prodml23__SingleBoundarySubModel * soap_new_set_prodml23__SingleBoundarySubModel( struct soap *soap, - prodml22__Boundary1Type TypeOfBoundary, - prodml22__ResqmlModelRef *FaultRefID) + prodml23__Boundary1Type TypeOfBoundary, + prodml23__ResqmlModelRef *FaultRefID) { - prodml22__SingleBoundarySubModel *_p = gsoap_eml2_3::soap_new_prodml22__SingleBoundarySubModel(soap); + prodml23__SingleBoundarySubModel *_p = gsoap_eml2_3::soap_new_prodml23__SingleBoundarySubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SingleBoundarySubModel::TypeOfBoundary = TypeOfBoundary; - _p->prodml22__SingleBoundarySubModel::FaultRefID = FaultRefID; + _p->prodml23__SingleBoundarySubModel::TypeOfBoundary = TypeOfBoundary; + _p->prodml23__SingleBoundarySubModel::FaultRefID = FaultRefID; } return _p; } -inline int soap_write_prodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel const*p) +inline int soap_write_prodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel ? "prodml22:SingleBoundarySubModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel ? "prodml23:SingleBoundarySubModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml22__SingleBoundarySubModel const*p) +inline int soap_PUT_prodml23__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml23__SingleBoundarySubModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel ? "prodml22:SingleBoundarySubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel ? "prodml23:SingleBoundarySubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml22__SingleBoundarySubModel const*p) +inline int soap_PATCH_prodml23__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml23__SingleBoundarySubModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel ? "prodml22:SingleBoundarySubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel ? "prodml23:SingleBoundarySubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml22__SingleBoundarySubModel const*p) +inline int soap_POST_send_prodml23__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml23__SingleBoundarySubModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel ? "prodml22:SingleBoundarySubModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SingleBoundarySubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel ? "prodml23:SingleBoundarySubModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SingleBoundarySubModel * SOAP_FMAC4 soap_get_prodml22__SingleBoundarySubModel(struct soap*, prodml22__SingleBoundarySubModel *, const char*, const char*); +SOAP_FMAC3 prodml23__SingleBoundarySubModel * SOAP_FMAC4 soap_get_prodml23__SingleBoundarySubModel(struct soap*, prodml23__SingleBoundarySubModel *, const char*, const char*); -inline int soap_read_prodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel *p) +inline int soap_read_prodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SingleBoundarySubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SingleBoundarySubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml22__SingleBoundarySubModel *p) +inline int soap_GET_prodml23__SingleBoundarySubModel(struct soap *soap, const char *URL, prodml23__SingleBoundarySubModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SingleBoundarySubModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SingleBoundarySubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SingleBoundarySubModel(struct soap *soap, prodml22__SingleBoundarySubModel *p) +inline int soap_POST_recv_prodml23__SingleBoundarySubModel(struct soap *soap, prodml23__SingleBoundarySubModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__SingleBoundarySubModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SingleBoundarySubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RtaAnalysis(struct soap*, const char*, int, const prodml22__RtaAnalysis *, const char*); -SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_in_prodml22__RtaAnalysis(struct soap*, const char*, prodml22__RtaAnalysis *, const char*); -SOAP_FMAC1 prodml22__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__RtaAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RtaAnalysis(struct soap*, const char*, int, const prodml23__RtaAnalysis *, const char*); +SOAP_FMAC3 prodml23__RtaAnalysis * SOAP_FMAC4 soap_in_prodml23__RtaAnalysis(struct soap*, const char*, prodml23__RtaAnalysis *, const char*); +SOAP_FMAC1 prodml23__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__RtaAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RtaAnalysis * soap_new_prodml22__RtaAnalysis(struct soap *soap, int n = -1) +inline prodml23__RtaAnalysis * soap_new_prodml23__RtaAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RtaAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RtaAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__RtaAnalysis * soap_new_req_prodml22__RtaAnalysis( +inline prodml23__RtaAnalysis * soap_new_req_prodml23__RtaAnalysis( struct soap *soap, - prodml22__AbstractPtaPressureData *InputPressure, - prodml22__AbstractPtaFlowData *InputFlowrateData, - prodml22__OutputFlowData *SimulatedFlowrate) + prodml23__AbstractPtaPressureData *InputPressure, + prodml23__AbstractPtaFlowData *InputFlowrateData, + prodml23__OutputFlowData *SimulatedFlowrate) { - prodml22__RtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__RtaAnalysis(soap); + prodml23__RtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__RtaAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RtaAnalysis::InputPressure = InputPressure; - _p->prodml22__RtaAnalysis::InputFlowrateData = InputFlowrateData; - _p->prodml22__RtaAnalysis::SimulatedFlowrate = SimulatedFlowrate; + _p->prodml23__RtaAnalysis::InputPressure = InputPressure; + _p->prodml23__RtaAnalysis::InputFlowrateData = InputFlowrateData; + _p->prodml23__RtaAnalysis::SimulatedFlowrate = SimulatedFlowrate; } return _p; } -inline prodml22__RtaAnalysis * soap_new_set_prodml22__RtaAnalysis( +inline prodml23__RtaAnalysis * soap_new_set_prodml23__RtaAnalysis( struct soap *soap, - prodml22__AbstractPtaPressureData *InputPressure, - prodml22__AbstractPtaFlowData *InputFlowrateData, - prodml22__OutputFlowData *SimulatedFlowrate, - prodml22__LogLogAnalysis *SimulatedLogLogData, - const std::vector & SpecializedAnalysis, - prodml22__LogLogAnalysis *MeasuredLogLogData) + prodml23__AbstractPtaPressureData *InputPressure, + prodml23__AbstractPtaFlowData *InputFlowrateData, + prodml23__OutputFlowData *SimulatedFlowrate, + prodml23__LogLogAnalysis *SimulatedLogLogData, + const std::vector & SpecializedAnalysis, + prodml23__LogLogAnalysis *MeasuredLogLogData) { - prodml22__RtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__RtaAnalysis(soap); + prodml23__RtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__RtaAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RtaAnalysis::InputPressure = InputPressure; - _p->prodml22__RtaAnalysis::InputFlowrateData = InputFlowrateData; - _p->prodml22__RtaAnalysis::SimulatedFlowrate = SimulatedFlowrate; - _p->prodml22__RtaAnalysis::SimulatedLogLogData = SimulatedLogLogData; - _p->prodml22__RtaAnalysis::SpecializedAnalysis = SpecializedAnalysis; - _p->prodml22__RtaAnalysis::MeasuredLogLogData = MeasuredLogLogData; + _p->prodml23__RtaAnalysis::InputPressure = InputPressure; + _p->prodml23__RtaAnalysis::InputFlowrateData = InputFlowrateData; + _p->prodml23__RtaAnalysis::SimulatedFlowrate = SimulatedFlowrate; + _p->prodml23__RtaAnalysis::SimulatedLogLogData = SimulatedLogLogData; + _p->prodml23__RtaAnalysis::SpecializedAnalysis = SpecializedAnalysis; + _p->prodml23__RtaAnalysis::MeasuredLogLogData = MeasuredLogLogData; } return _p; } -inline int soap_write_prodml22__RtaAnalysis(struct soap *soap, prodml22__RtaAnalysis const*p) +inline int soap_write_prodml23__RtaAnalysis(struct soap *soap, prodml23__RtaAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis ? "prodml22:RtaAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis ? "prodml23:RtaAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RtaAnalysis(struct soap *soap, const char *URL, prodml22__RtaAnalysis const*p) +inline int soap_PUT_prodml23__RtaAnalysis(struct soap *soap, const char *URL, prodml23__RtaAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis ? "prodml22:RtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis ? "prodml23:RtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RtaAnalysis(struct soap *soap, const char *URL, prodml22__RtaAnalysis const*p) +inline int soap_PATCH_prodml23__RtaAnalysis(struct soap *soap, const char *URL, prodml23__RtaAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis ? "prodml22:RtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis ? "prodml23:RtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RtaAnalysis(struct soap *soap, const char *URL, prodml22__RtaAnalysis const*p) +inline int soap_POST_send_prodml23__RtaAnalysis(struct soap *soap, const char *URL, prodml23__RtaAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis ? "prodml22:RtaAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis ? "prodml23:RtaAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RtaAnalysis * SOAP_FMAC4 soap_get_prodml22__RtaAnalysis(struct soap*, prodml22__RtaAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__RtaAnalysis * SOAP_FMAC4 soap_get_prodml23__RtaAnalysis(struct soap*, prodml23__RtaAnalysis *, const char*, const char*); -inline int soap_read_prodml22__RtaAnalysis(struct soap *soap, prodml22__RtaAnalysis *p) +inline int soap_read_prodml23__RtaAnalysis(struct soap *soap, prodml23__RtaAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RtaAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RtaAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RtaAnalysis(struct soap *soap, const char *URL, prodml22__RtaAnalysis *p) +inline int soap_GET_prodml23__RtaAnalysis(struct soap *soap, const char *URL, prodml23__RtaAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RtaAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RtaAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RtaAnalysis(struct soap *soap, prodml22__RtaAnalysis *p) +inline int soap_POST_recv_prodml23__RtaAnalysis(struct soap *soap, prodml23__RtaAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__RtaAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RtaAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ResqmlModelRef(struct soap*, const char*, int, const prodml22__ResqmlModelRef *, const char*); -SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml22__ResqmlModelRef(struct soap*, const char*, prodml22__ResqmlModelRef *, const char*); -SOAP_FMAC1 prodml22__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml22__ResqmlModelRef(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ResqmlModelRef(struct soap*, const char*, int, const prodml23__ResqmlModelRef *, const char*); +SOAP_FMAC3 prodml23__ResqmlModelRef * SOAP_FMAC4 soap_in_prodml23__ResqmlModelRef(struct soap*, const char*, prodml23__ResqmlModelRef *, const char*); +SOAP_FMAC1 prodml23__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml23__ResqmlModelRef(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ResqmlModelRef * soap_new_prodml22__ResqmlModelRef(struct soap *soap, int n = -1) +inline prodml23__ResqmlModelRef * soap_new_prodml23__ResqmlModelRef(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ResqmlModelRef(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ResqmlModelRef(soap, n, NULL, NULL, NULL); } -inline prodml22__ResqmlModelRef * soap_new_req_prodml22__ResqmlModelRef( +inline prodml23__ResqmlModelRef * soap_new_req_prodml23__ResqmlModelRef( struct soap *soap, eml23__DataObjectReference *ResqmlModelRef) { - prodml22__ResqmlModelRef *_p = gsoap_eml2_3::soap_new_prodml22__ResqmlModelRef(soap); + prodml23__ResqmlModelRef *_p = gsoap_eml2_3::soap_new_prodml23__ResqmlModelRef(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ResqmlModelRef::ResqmlModelRef = ResqmlModelRef; + _p->prodml23__ResqmlModelRef::ResqmlModelRef = ResqmlModelRef; } return _p; } -inline prodml22__ResqmlModelRef * soap_new_set_prodml22__ResqmlModelRef( +inline prodml23__ResqmlModelRef * soap_new_set_prodml23__ResqmlModelRef( struct soap *soap, eml23__DataObjectReference *ResqmlModelRef) { - prodml22__ResqmlModelRef *_p = gsoap_eml2_3::soap_new_prodml22__ResqmlModelRef(soap); + prodml23__ResqmlModelRef *_p = gsoap_eml2_3::soap_new_prodml23__ResqmlModelRef(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ResqmlModelRef::ResqmlModelRef = ResqmlModelRef; + _p->prodml23__ResqmlModelRef::ResqmlModelRef = ResqmlModelRef; } return _p; } -inline int soap_write_prodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef const*p) +inline int soap_write_prodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef ? "prodml22:ResqmlModelRef" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef ? "prodml23:ResqmlModelRef" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ResqmlModelRef(struct soap *soap, const char *URL, prodml22__ResqmlModelRef const*p) +inline int soap_PUT_prodml23__ResqmlModelRef(struct soap *soap, const char *URL, prodml23__ResqmlModelRef const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef ? "prodml22:ResqmlModelRef" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef ? "prodml23:ResqmlModelRef" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ResqmlModelRef(struct soap *soap, const char *URL, prodml22__ResqmlModelRef const*p) +inline int soap_PATCH_prodml23__ResqmlModelRef(struct soap *soap, const char *URL, prodml23__ResqmlModelRef const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef ? "prodml22:ResqmlModelRef" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef ? "prodml23:ResqmlModelRef" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ResqmlModelRef(struct soap *soap, const char *URL, prodml22__ResqmlModelRef const*p) +inline int soap_POST_send_prodml23__ResqmlModelRef(struct soap *soap, const char *URL, prodml23__ResqmlModelRef const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef ? "prodml22:ResqmlModelRef" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ResqmlModelRef", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef ? "prodml23:ResqmlModelRef" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ResqmlModelRef * SOAP_FMAC4 soap_get_prodml22__ResqmlModelRef(struct soap*, prodml22__ResqmlModelRef *, const char*, const char*); +SOAP_FMAC3 prodml23__ResqmlModelRef * SOAP_FMAC4 soap_get_prodml23__ResqmlModelRef(struct soap*, prodml23__ResqmlModelRef *, const char*, const char*); -inline int soap_read_prodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef *p) +inline int soap_read_prodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ResqmlModelRef(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ResqmlModelRef(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ResqmlModelRef(struct soap *soap, const char *URL, prodml22__ResqmlModelRef *p) +inline int soap_GET_prodml23__ResqmlModelRef(struct soap *soap, const char *URL, prodml23__ResqmlModelRef *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ResqmlModelRef(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ResqmlModelRef(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ResqmlModelRef(struct soap *soap, prodml22__ResqmlModelRef *p) +inline int soap_POST_recv_prodml23__ResqmlModelRef(struct soap *soap, prodml23__ResqmlModelRef *p) { - if (gsoap_eml2_3::soap_read_prodml22__ResqmlModelRef(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ResqmlModelRef(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReservoirZoneSubModel(struct soap*, const char*, int, const prodml22__ReservoirZoneSubModel *, const char*); -SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml22__ReservoirZoneSubModel(struct soap*, const char*, prodml22__ReservoirZoneSubModel *, const char*); -SOAP_FMAC1 prodml22__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml22__ReservoirZoneSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReservoirZoneSubModel(struct soap*, const char*, int, const prodml23__ReservoirZoneSubModel *, const char*); +SOAP_FMAC3 prodml23__ReservoirZoneSubModel * SOAP_FMAC4 soap_in_prodml23__ReservoirZoneSubModel(struct soap*, const char*, prodml23__ReservoirZoneSubModel *, const char*); +SOAP_FMAC1 prodml23__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml23__ReservoirZoneSubModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReservoirZoneSubModel * soap_new_prodml22__ReservoirZoneSubModel(struct soap *soap, int n = -1) +inline prodml23__ReservoirZoneSubModel * soap_new_prodml23__ReservoirZoneSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReservoirZoneSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReservoirZoneSubModel(soap, n, NULL, NULL, NULL); } -inline prodml22__ReservoirZoneSubModel * soap_new_req_prodml22__ReservoirZoneSubModel( +inline prodml23__ReservoirZoneSubModel * soap_new_req_prodml23__ReservoirZoneSubModel( struct soap *soap, - const std::vector & BoundingPolygonPoint) + const std::vector & BoundingPolygonPoint) { - prodml22__ReservoirZoneSubModel *_p = gsoap_eml2_3::soap_new_prodml22__ReservoirZoneSubModel(soap); + prodml23__ReservoirZoneSubModel *_p = gsoap_eml2_3::soap_new_prodml23__ReservoirZoneSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint = BoundingPolygonPoint; + _p->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint = BoundingPolygonPoint; } return _p; } -inline prodml22__ReservoirZoneSubModel * soap_new_set_prodml22__ReservoirZoneSubModel( +inline prodml23__ReservoirZoneSubModel * soap_new_set_prodml23__ReservoirZoneSubModel( struct soap *soap, - const std::vector & BoundingPolygonPoint, - prodml22__HorizontalRadialPermeability *Permeability, - prodml22__Porosity *Porosity, - prodml22__TotalThickness *Thickness) + const std::vector & BoundingPolygonPoint, + prodml23__HorizontalRadialPermeability *Permeability, + prodml23__Porosity *Porosity, + prodml23__TotalThickness *Thickness) { - prodml22__ReservoirZoneSubModel *_p = gsoap_eml2_3::soap_new_prodml22__ReservoirZoneSubModel(soap); + prodml23__ReservoirZoneSubModel *_p = gsoap_eml2_3::soap_new_prodml23__ReservoirZoneSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReservoirZoneSubModel::BoundingPolygonPoint = BoundingPolygonPoint; - _p->prodml22__ReservoirZoneSubModel::Permeability = Permeability; - _p->prodml22__ReservoirZoneSubModel::Porosity = Porosity; - _p->prodml22__ReservoirZoneSubModel::Thickness = Thickness; + _p->prodml23__ReservoirZoneSubModel::BoundingPolygonPoint = BoundingPolygonPoint; + _p->prodml23__ReservoirZoneSubModel::Permeability = Permeability; + _p->prodml23__ReservoirZoneSubModel::Porosity = Porosity; + _p->prodml23__ReservoirZoneSubModel::Thickness = Thickness; } return _p; } -inline int soap_write_prodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel const*p) +inline int soap_write_prodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel ? "prodml22:ReservoirZoneSubModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel ? "prodml23:ReservoirZoneSubModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml22__ReservoirZoneSubModel const*p) +inline int soap_PUT_prodml23__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml23__ReservoirZoneSubModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel ? "prodml22:ReservoirZoneSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel ? "prodml23:ReservoirZoneSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml22__ReservoirZoneSubModel const*p) +inline int soap_PATCH_prodml23__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml23__ReservoirZoneSubModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel ? "prodml22:ReservoirZoneSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel ? "prodml23:ReservoirZoneSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml22__ReservoirZoneSubModel const*p) +inline int soap_POST_send_prodml23__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml23__ReservoirZoneSubModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel ? "prodml22:ReservoirZoneSubModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReservoirZoneSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel ? "prodml23:ReservoirZoneSubModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReservoirZoneSubModel * SOAP_FMAC4 soap_get_prodml22__ReservoirZoneSubModel(struct soap*, prodml22__ReservoirZoneSubModel *, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirZoneSubModel * SOAP_FMAC4 soap_get_prodml23__ReservoirZoneSubModel(struct soap*, prodml23__ReservoirZoneSubModel *, const char*, const char*); -inline int soap_read_prodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel *p) +inline int soap_read_prodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReservoirZoneSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReservoirZoneSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml22__ReservoirZoneSubModel *p) +inline int soap_GET_prodml23__ReservoirZoneSubModel(struct soap *soap, const char *URL, prodml23__ReservoirZoneSubModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReservoirZoneSubModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReservoirZoneSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReservoirZoneSubModel(struct soap *soap, prodml22__ReservoirZoneSubModel *p) +inline int soap_POST_recv_prodml23__ReservoirZoneSubModel(struct soap *soap, prodml23__ReservoirZoneSubModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReservoirZoneSubModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReservoirZoneSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaDeconvolution(struct soap*, const char*, int, const prodml22__PtaDeconvolution *, const char*); -SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml22__PtaDeconvolution(struct soap*, const char*, prodml22__PtaDeconvolution *, const char*); -SOAP_FMAC1 prodml22__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml22__PtaDeconvolution(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PtaDeconvolution(struct soap*, const char*, int, const prodml23__PtaDeconvolution *, const char*); +SOAP_FMAC3 prodml23__PtaDeconvolution * SOAP_FMAC4 soap_in_prodml23__PtaDeconvolution(struct soap*, const char*, prodml23__PtaDeconvolution *, const char*); +SOAP_FMAC1 prodml23__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml23__PtaDeconvolution(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PtaDeconvolution * soap_new_prodml22__PtaDeconvolution(struct soap *soap, int n = -1) +inline prodml23__PtaDeconvolution * soap_new_prodml23__PtaDeconvolution(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PtaDeconvolution(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PtaDeconvolution(soap, n, NULL, NULL, NULL); } -inline prodml22__PtaDeconvolution * soap_new_req_prodml22__PtaDeconvolution( +inline prodml23__PtaDeconvolution * soap_new_req_prodml23__PtaDeconvolution( struct soap *soap, - eml23__DataObjectReference *FlowTestActivity, const std::string& MethodName, eml23__PressureMeasure *InitialPressure, - prodml22__AbstractPtaPressureData *InputPressure, - prodml22__AbstractPtaFlowData *InputFlowrate, - const std::vector & DeconvolutionOutput, + prodml23__AbstractPtaPressureData *InputPressure, + prodml23__AbstractPtaFlowData *InputFlowrate, + eml23__DataObjectReference *FlowTestActivity, + const std::vector & DeconvolutionOutput, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__PtaDeconvolution *_p = gsoap_eml2_3::soap_new_prodml22__PtaDeconvolution(soap); + prodml23__PtaDeconvolution *_p = gsoap_eml2_3::soap_new_prodml23__PtaDeconvolution(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PtaDeconvolution::FlowTestActivity = FlowTestActivity; - _p->prodml22__PtaDeconvolution::MethodName = MethodName; - _p->prodml22__PtaDeconvolution::InitialPressure = InitialPressure; - _p->prodml22__PtaDeconvolution::InputPressure = InputPressure; - _p->prodml22__PtaDeconvolution::InputFlowrate = InputFlowrate; - _p->prodml22__PtaDeconvolution::DeconvolutionOutput = DeconvolutionOutput; + _p->prodml23__PtaDeconvolution::MethodName = MethodName; + _p->prodml23__PtaDeconvolution::InitialPressure = InitialPressure; + _p->prodml23__PtaDeconvolution::InputPressure = InputPressure; + _p->prodml23__PtaDeconvolution::InputFlowrate = InputFlowrate; + _p->prodml23__PtaDeconvolution::FlowTestActivity = FlowTestActivity; + _p->prodml23__PtaDeconvolution::DeconvolutionOutput = DeconvolutionOutput; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -117670,19 +117670,19 @@ inline prodml22__PtaDeconvolution * soap_new_req_prodml22__PtaDeconvolution( return _p; } -inline prodml22__PtaDeconvolution * soap_new_set_prodml22__PtaDeconvolution( +inline prodml23__PtaDeconvolution * soap_new_set_prodml23__PtaDeconvolution( struct soap *soap, - eml23__DataObjectReference *FlowTestActivity, std::string *FlowTestMeasurementSetRef, const std::vector & FlowTestPeriodRef, const std::string& MethodName, eml23__PressureMeasure *InitialPressure, - prodml22__AbstractPtaPressureData *InputPressure, - prodml22__AbstractPtaFlowData *InputFlowrate, - prodml22__DeconvolvedPressureData *ReconstructedPressure, - prodml22__DeconvolvedFlowData *ReconstructedFlowrate, + prodml23__AbstractPtaPressureData *InputPressure, + prodml23__AbstractPtaFlowData *InputFlowrate, + prodml23__DeconvolvedPressureData *ReconstructedPressure, + prodml23__DeconvolvedFlowData *ReconstructedFlowrate, std::string *Remark, - const std::vector & DeconvolutionOutput, + eml23__DataObjectReference *FlowTestActivity, + const std::vector & DeconvolutionOutput, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -117695,20 +117695,20 @@ inline prodml22__PtaDeconvolution * soap_new_set_prodml22__PtaDeconvolution( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__PtaDeconvolution *_p = gsoap_eml2_3::soap_new_prodml22__PtaDeconvolution(soap); + prodml23__PtaDeconvolution *_p = gsoap_eml2_3::soap_new_prodml23__PtaDeconvolution(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PtaDeconvolution::FlowTestActivity = FlowTestActivity; - _p->prodml22__PtaDeconvolution::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; - _p->prodml22__PtaDeconvolution::FlowTestPeriodRef = FlowTestPeriodRef; - _p->prodml22__PtaDeconvolution::MethodName = MethodName; - _p->prodml22__PtaDeconvolution::InitialPressure = InitialPressure; - _p->prodml22__PtaDeconvolution::InputPressure = InputPressure; - _p->prodml22__PtaDeconvolution::InputFlowrate = InputFlowrate; - _p->prodml22__PtaDeconvolution::ReconstructedPressure = ReconstructedPressure; - _p->prodml22__PtaDeconvolution::ReconstructedFlowrate = ReconstructedFlowrate; - _p->prodml22__PtaDeconvolution::Remark = Remark; - _p->prodml22__PtaDeconvolution::DeconvolutionOutput = DeconvolutionOutput; + _p->prodml23__PtaDeconvolution::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; + _p->prodml23__PtaDeconvolution::FlowTestPeriodRef = FlowTestPeriodRef; + _p->prodml23__PtaDeconvolution::MethodName = MethodName; + _p->prodml23__PtaDeconvolution::InitialPressure = InitialPressure; + _p->prodml23__PtaDeconvolution::InputPressure = InputPressure; + _p->prodml23__PtaDeconvolution::InputFlowrate = InputFlowrate; + _p->prodml23__PtaDeconvolution::ReconstructedPressure = ReconstructedPressure; + _p->prodml23__PtaDeconvolution::ReconstructedFlowrate = ReconstructedFlowrate; + _p->prodml23__PtaDeconvolution::Remark = Remark; + _p->prodml23__PtaDeconvolution::FlowTestActivity = FlowTestActivity; + _p->prodml23__PtaDeconvolution::DeconvolutionOutput = DeconvolutionOutput; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -117724,92 +117724,90 @@ inline prodml22__PtaDeconvolution * soap_new_set_prodml22__PtaDeconvolution( return _p; } -inline int soap_write_prodml22__PtaDeconvolution(struct soap *soap, prodml22__PtaDeconvolution const*p) +inline int soap_write_prodml23__PtaDeconvolution(struct soap *soap, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution ? "prodml22:PtaDeconvolution" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution ? "prodml23:PtaDeconvolution" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution const*p) +inline int soap_PUT_prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution ? "prodml22:PtaDeconvolution" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution ? "prodml23:PtaDeconvolution" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution const*p) +inline int soap_PATCH_prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution ? "prodml22:PtaDeconvolution" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution ? "prodml23:PtaDeconvolution" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution const*p) +inline int soap_POST_send_prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution ? "prodml22:PtaDeconvolution" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDeconvolution", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution ? "prodml23:PtaDeconvolution" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PtaDeconvolution * SOAP_FMAC4 soap_get_prodml22__PtaDeconvolution(struct soap*, prodml22__PtaDeconvolution *, const char*, const char*); +SOAP_FMAC3 prodml23__PtaDeconvolution * SOAP_FMAC4 soap_get_prodml23__PtaDeconvolution(struct soap*, prodml23__PtaDeconvolution *, const char*, const char*); -inline int soap_read_prodml22__PtaDeconvolution(struct soap *soap, prodml22__PtaDeconvolution *p) +inline int soap_read_prodml23__PtaDeconvolution(struct soap *soap, prodml23__PtaDeconvolution *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PtaDeconvolution(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PtaDeconvolution(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PtaDeconvolution(struct soap *soap, const char *URL, prodml22__PtaDeconvolution *p) +inline int soap_GET_prodml23__PtaDeconvolution(struct soap *soap, const char *URL, prodml23__PtaDeconvolution *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PtaDeconvolution(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PtaDeconvolution(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PtaDeconvolution(struct soap *soap, prodml22__PtaDeconvolution *p) +inline int soap_POST_recv_prodml23__PtaDeconvolution(struct soap *soap, prodml23__PtaDeconvolution *p) { - if (gsoap_eml2_3::soap_read_prodml22__PtaDeconvolution(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PtaDeconvolution(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaDataPreProcess(struct soap*, const char*, int, const prodml22__PtaDataPreProcess *, const char*); -SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml22__PtaDataPreProcess(struct soap*, const char*, prodml22__PtaDataPreProcess *, const char*); -SOAP_FMAC1 prodml22__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml22__PtaDataPreProcess(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PtaDataPreProcess(struct soap*, const char*, int, const prodml23__PtaDataPreProcess *, const char*); +SOAP_FMAC3 prodml23__PtaDataPreProcess * SOAP_FMAC4 soap_in_prodml23__PtaDataPreProcess(struct soap*, const char*, prodml23__PtaDataPreProcess *, const char*); +SOAP_FMAC1 prodml23__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml23__PtaDataPreProcess(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PtaDataPreProcess * soap_new_prodml22__PtaDataPreProcess(struct soap *soap, int n = -1) +inline prodml23__PtaDataPreProcess * soap_new_prodml23__PtaDataPreProcess(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PtaDataPreProcess(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PtaDataPreProcess(soap, n, NULL, NULL, NULL); } -inline prodml22__PtaDataPreProcess * soap_new_req_prodml22__PtaDataPreProcess( +inline prodml23__PtaDataPreProcess * soap_new_req_prodml23__PtaDataPreProcess( struct soap *soap, + const std::vector & InputData, + prodml23__AbstractFlowTestData *PreProcessedData, eml23__DataObjectReference *FlowTestActivity, - const std::vector & InputData, - prodml22__AbstractFlowTestData *PreProcessedData, - eml23__DataObjectReference *FlowTestActivity_, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__PtaDataPreProcess *_p = gsoap_eml2_3::soap_new_prodml22__PtaDataPreProcess(soap); + prodml23__PtaDataPreProcess *_p = gsoap_eml2_3::soap_new_prodml23__PtaDataPreProcess(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PtaDataPreProcess::FlowTestActivity = FlowTestActivity; - _p->prodml22__PtaDataPreProcess::InputData = InputData; - _p->prodml22__PtaDataPreProcess::PreProcessedData = PreProcessedData; - _p->prodml22__PtaDataPreProcess::FlowTestActivity_ = FlowTestActivity_; + _p->prodml23__PtaDataPreProcess::InputData = InputData; + _p->prodml23__PtaDataPreProcess::PreProcessedData = PreProcessedData; + _p->prodml23__PtaDataPreProcess::FlowTestActivity = FlowTestActivity; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -117817,15 +117815,14 @@ inline prodml22__PtaDataPreProcess * soap_new_req_prodml22__PtaDataPreProcess( return _p; } -inline prodml22__PtaDataPreProcess * soap_new_set_prodml22__PtaDataPreProcess( +inline prodml23__PtaDataPreProcess * soap_new_set_prodml23__PtaDataPreProcess( struct soap *soap, - eml23__DataObjectReference *FlowTestActivity, std::string *FlowTestMeasurementSetRef, - const std::vector & InputData, - prodml22__AbstractFlowTestData *PreProcessedData, + const std::vector & InputData, + prodml23__AbstractFlowTestData *PreProcessedData, const std::vector & DataConditioning, std::string *Remark, - eml23__DataObjectReference *FlowTestActivity_, + eml23__DataObjectReference *FlowTestActivity, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -117838,16 +117835,15 @@ inline prodml22__PtaDataPreProcess * soap_new_set_prodml22__PtaDataPreProcess( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__PtaDataPreProcess *_p = gsoap_eml2_3::soap_new_prodml22__PtaDataPreProcess(soap); + prodml23__PtaDataPreProcess *_p = gsoap_eml2_3::soap_new_prodml23__PtaDataPreProcess(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PtaDataPreProcess::FlowTestActivity = FlowTestActivity; - _p->prodml22__PtaDataPreProcess::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; - _p->prodml22__PtaDataPreProcess::InputData = InputData; - _p->prodml22__PtaDataPreProcess::PreProcessedData = PreProcessedData; - _p->prodml22__PtaDataPreProcess::DataConditioning = DataConditioning; - _p->prodml22__PtaDataPreProcess::Remark = Remark; - _p->prodml22__PtaDataPreProcess::FlowTestActivity_ = FlowTestActivity_; + _p->prodml23__PtaDataPreProcess::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; + _p->prodml23__PtaDataPreProcess::InputData = InputData; + _p->prodml23__PtaDataPreProcess::PreProcessedData = PreProcessedData; + _p->prodml23__PtaDataPreProcess::DataConditioning = DataConditioning; + _p->prodml23__PtaDataPreProcess::Remark = Remark; + _p->prodml23__PtaDataPreProcess::FlowTestActivity = FlowTestActivity; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -117863,211 +117859,209 @@ inline prodml22__PtaDataPreProcess * soap_new_set_prodml22__PtaDataPreProcess( return _p; } -inline int soap_write_prodml22__PtaDataPreProcess(struct soap *soap, prodml22__PtaDataPreProcess const*p) +inline int soap_write_prodml23__PtaDataPreProcess(struct soap *soap, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess ? "prodml22:PtaDataPreProcess" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess ? "prodml23:PtaDataPreProcess" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess const*p) +inline int soap_PUT_prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess ? "prodml22:PtaDataPreProcess" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess ? "prodml23:PtaDataPreProcess" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess const*p) +inline int soap_PATCH_prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess ? "prodml22:PtaDataPreProcess" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess ? "prodml23:PtaDataPreProcess" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess const*p) +inline int soap_POST_send_prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess ? "prodml22:PtaDataPreProcess" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaDataPreProcess", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess ? "prodml23:PtaDataPreProcess" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PtaDataPreProcess * SOAP_FMAC4 soap_get_prodml22__PtaDataPreProcess(struct soap*, prodml22__PtaDataPreProcess *, const char*, const char*); +SOAP_FMAC3 prodml23__PtaDataPreProcess * SOAP_FMAC4 soap_get_prodml23__PtaDataPreProcess(struct soap*, prodml23__PtaDataPreProcess *, const char*, const char*); -inline int soap_read_prodml22__PtaDataPreProcess(struct soap *soap, prodml22__PtaDataPreProcess *p) +inline int soap_read_prodml23__PtaDataPreProcess(struct soap *soap, prodml23__PtaDataPreProcess *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PtaDataPreProcess(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PtaDataPreProcess(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PtaDataPreProcess(struct soap *soap, const char *URL, prodml22__PtaDataPreProcess *p) +inline int soap_GET_prodml23__PtaDataPreProcess(struct soap *soap, const char *URL, prodml23__PtaDataPreProcess *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PtaDataPreProcess(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PtaDataPreProcess(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PtaDataPreProcess(struct soap *soap, prodml22__PtaDataPreProcess *p) +inline int soap_POST_recv_prodml23__PtaDataPreProcess(struct soap *soap, prodml23__PtaDataPreProcess *p) { - if (gsoap_eml2_3::soap_read_prodml22__PtaDataPreProcess(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PtaDataPreProcess(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PtaAnalysis(struct soap*, const char*, int, const prodml22__PtaAnalysis *, const char*); -SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_in_prodml22__PtaAnalysis(struct soap*, const char*, prodml22__PtaAnalysis *, const char*); -SOAP_FMAC1 prodml22__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PtaAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PtaAnalysis(struct soap*, const char*, int, const prodml23__PtaAnalysis *, const char*); +SOAP_FMAC3 prodml23__PtaAnalysis * SOAP_FMAC4 soap_in_prodml23__PtaAnalysis(struct soap*, const char*, prodml23__PtaAnalysis *, const char*); +SOAP_FMAC1 prodml23__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__PtaAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PtaAnalysis * soap_new_prodml22__PtaAnalysis(struct soap *soap, int n = -1) +inline prodml23__PtaAnalysis * soap_new_prodml23__PtaAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PtaAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PtaAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__PtaAnalysis * soap_new_req_prodml22__PtaAnalysis( +inline prodml23__PtaAnalysis * soap_new_req_prodml23__PtaAnalysis( struct soap *soap, - prodml22__AbstractPtaPressureData *InputPressure, - prodml22__AbstractRateHistory *RateHistory) + prodml23__AbstractPtaPressureData *InputPressure, + prodml23__AbstractRateHistory *RateHistory) { - prodml22__PtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__PtaAnalysis(soap); + prodml23__PtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__PtaAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PtaAnalysis::InputPressure = InputPressure; - _p->prodml22__PtaAnalysis::RateHistory = RateHistory; + _p->prodml23__PtaAnalysis::InputPressure = InputPressure; + _p->prodml23__PtaAnalysis::RateHistory = RateHistory; } return _p; } -inline prodml22__PtaAnalysis * soap_new_set_prodml22__PtaAnalysis( +inline prodml23__PtaAnalysis * soap_new_set_prodml23__PtaAnalysis( struct soap *soap, eml23__PressureMeasure *InitialPressureP0ForImpulseTest, - prodml22__AbstractPtaPressureData *InputPressure, - prodml22__OutputPressureData *SimulatedPressure, + prodml23__AbstractPtaPressureData *InputPressure, + prodml23__OutputPressureData *SimulatedPressure, eml23__PressureMeasure *SimulatedPressureGaugeNoise, eml23__PressureMeasure *SimulatedPressureGaugeResolution, eml23__PressurePerTimeMeasure *SimulatedPressureGaugeDrift, - prodml22__LogLogAnalysis *MeasuredLogLogData, - prodml22__LogLogAnalysis *SimulatedLogLogData, - prodml22__AbstractRateHistory *RateHistory, - const std::vector & SpecializedAnalysis) + prodml23__LogLogAnalysis *MeasuredLogLogData, + prodml23__LogLogAnalysis *SimulatedLogLogData, + prodml23__AbstractRateHistory *RateHistory, + const std::vector & SpecializedAnalysis) { - prodml22__PtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__PtaAnalysis(soap); + prodml23__PtaAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__PtaAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PtaAnalysis::InitialPressureP0ForImpulseTest = InitialPressureP0ForImpulseTest; - _p->prodml22__PtaAnalysis::InputPressure = InputPressure; - _p->prodml22__PtaAnalysis::SimulatedPressure = SimulatedPressure; - _p->prodml22__PtaAnalysis::SimulatedPressureGaugeNoise = SimulatedPressureGaugeNoise; - _p->prodml22__PtaAnalysis::SimulatedPressureGaugeResolution = SimulatedPressureGaugeResolution; - _p->prodml22__PtaAnalysis::SimulatedPressureGaugeDrift = SimulatedPressureGaugeDrift; - _p->prodml22__PtaAnalysis::MeasuredLogLogData = MeasuredLogLogData; - _p->prodml22__PtaAnalysis::SimulatedLogLogData = SimulatedLogLogData; - _p->prodml22__PtaAnalysis::RateHistory = RateHistory; - _p->prodml22__PtaAnalysis::SpecializedAnalysis = SpecializedAnalysis; + _p->prodml23__PtaAnalysis::InitialPressureP0ForImpulseTest = InitialPressureP0ForImpulseTest; + _p->prodml23__PtaAnalysis::InputPressure = InputPressure; + _p->prodml23__PtaAnalysis::SimulatedPressure = SimulatedPressure; + _p->prodml23__PtaAnalysis::SimulatedPressureGaugeNoise = SimulatedPressureGaugeNoise; + _p->prodml23__PtaAnalysis::SimulatedPressureGaugeResolution = SimulatedPressureGaugeResolution; + _p->prodml23__PtaAnalysis::SimulatedPressureGaugeDrift = SimulatedPressureGaugeDrift; + _p->prodml23__PtaAnalysis::MeasuredLogLogData = MeasuredLogLogData; + _p->prodml23__PtaAnalysis::SimulatedLogLogData = SimulatedLogLogData; + _p->prodml23__PtaAnalysis::RateHistory = RateHistory; + _p->prodml23__PtaAnalysis::SpecializedAnalysis = SpecializedAnalysis; } return _p; } -inline int soap_write_prodml22__PtaAnalysis(struct soap *soap, prodml22__PtaAnalysis const*p) +inline int soap_write_prodml23__PtaAnalysis(struct soap *soap, prodml23__PtaAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis ? "prodml22:PtaAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis ? "prodml23:PtaAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PtaAnalysis(struct soap *soap, const char *URL, prodml22__PtaAnalysis const*p) +inline int soap_PUT_prodml23__PtaAnalysis(struct soap *soap, const char *URL, prodml23__PtaAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis ? "prodml22:PtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis ? "prodml23:PtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PtaAnalysis(struct soap *soap, const char *URL, prodml22__PtaAnalysis const*p) +inline int soap_PATCH_prodml23__PtaAnalysis(struct soap *soap, const char *URL, prodml23__PtaAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis ? "prodml22:PtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis ? "prodml23:PtaAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PtaAnalysis(struct soap *soap, const char *URL, prodml22__PtaAnalysis const*p) +inline int soap_POST_send_prodml23__PtaAnalysis(struct soap *soap, const char *URL, prodml23__PtaAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis ? "prodml22:PtaAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PtaAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis ? "prodml23:PtaAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PtaAnalysis * SOAP_FMAC4 soap_get_prodml22__PtaAnalysis(struct soap*, prodml22__PtaAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__PtaAnalysis * SOAP_FMAC4 soap_get_prodml23__PtaAnalysis(struct soap*, prodml23__PtaAnalysis *, const char*, const char*); -inline int soap_read_prodml22__PtaAnalysis(struct soap *soap, prodml22__PtaAnalysis *p) +inline int soap_read_prodml23__PtaAnalysis(struct soap *soap, prodml23__PtaAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PtaAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PtaAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PtaAnalysis(struct soap *soap, const char *URL, prodml22__PtaAnalysis *p) +inline int soap_GET_prodml23__PtaAnalysis(struct soap *soap, const char *URL, prodml23__PtaAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PtaAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PtaAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PtaAnalysis(struct soap *soap, prodml22__PtaAnalysis *p) +inline int soap_POST_recv_prodml23__PtaAnalysis(struct soap *soap, prodml23__PtaAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__PtaAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PtaAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PressureTransientAnalysis(struct soap*, const char*, int, const prodml22__PressureTransientAnalysis *, const char*); -SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml22__PressureTransientAnalysis(struct soap*, const char*, prodml22__PressureTransientAnalysis *, const char*); -SOAP_FMAC1 prodml22__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PressureTransientAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PressureTransientAnalysis(struct soap*, const char*, int, const prodml23__PressureTransientAnalysis *, const char*); +SOAP_FMAC3 prodml23__PressureTransientAnalysis * SOAP_FMAC4 soap_in_prodml23__PressureTransientAnalysis(struct soap*, const char*, prodml23__PressureTransientAnalysis *, const char*); +SOAP_FMAC1 prodml23__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__PressureTransientAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PressureTransientAnalysis * soap_new_prodml22__PressureTransientAnalysis(struct soap *soap, int n = -1) +inline prodml23__PressureTransientAnalysis * soap_new_prodml23__PressureTransientAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PressureTransientAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PressureTransientAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__PressureTransientAnalysis * soap_new_req_prodml22__PressureTransientAnalysis( +inline prodml23__PressureTransientAnalysis * soap_new_req_prodml23__PressureTransientAnalysis( struct soap *soap, const std::string& ModelName, - eml23__DataObjectReference *FlowTestActivity, const std::vector & PrincipalTestPeriodRef, - prodml22__FluidPhaseKind FluidPhaseAnalysisKind, - prodml22__PressureNonLinearTransformKind PressureNonLinearTransformKind, - prodml22__TimeNonLinearTransformKind TimeNonLinearTransformKind, - eml23__DataObjectReference *FlowTestActivity_, + prodml23__FluidPhaseKind FluidPhaseAnalysisKind, + prodml23__PressureNonLinearTransformKind PressureNonLinearTransformKind, + prodml23__TimeNonLinearTransformKind TimeNonLinearTransformKind, + eml23__DataObjectReference *FlowTestActivity, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__PressureTransientAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__PressureTransientAnalysis(soap); + prodml23__PressureTransientAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__PressureTransientAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PressureTransientAnalysis::ModelName = ModelName; - _p->prodml22__PressureTransientAnalysis::FlowTestActivity = FlowTestActivity; - _p->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef = PrincipalTestPeriodRef; - _p->prodml22__PressureTransientAnalysis::FluidPhaseAnalysisKind = FluidPhaseAnalysisKind; - _p->prodml22__PressureTransientAnalysis::PressureNonLinearTransformKind = PressureNonLinearTransformKind; - _p->prodml22__PressureTransientAnalysis::TimeNonLinearTransformKind = TimeNonLinearTransformKind; - _p->prodml22__PressureTransientAnalysis::FlowTestActivity_ = FlowTestActivity_; + _p->prodml23__PressureTransientAnalysis::ModelName = ModelName; + _p->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef = PrincipalTestPeriodRef; + _p->prodml23__PressureTransientAnalysis::FluidPhaseAnalysisKind = FluidPhaseAnalysisKind; + _p->prodml23__PressureTransientAnalysis::PressureNonLinearTransformKind = PressureNonLinearTransformKind; + _p->prodml23__PressureTransientAnalysis::TimeNonLinearTransformKind = TimeNonLinearTransformKind; + _p->prodml23__PressureTransientAnalysis::FlowTestActivity = FlowTestActivity; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -118075,7 +118069,7 @@ inline prodml22__PressureTransientAnalysis * soap_new_req_prodml22__PressureTran return _p; } -inline prodml22__PressureTransientAnalysis * soap_new_set_prodml22__PressureTransientAnalysis( +inline prodml23__PressureTransientAnalysis * soap_new_set_prodml23__PressureTransientAnalysis( struct soap *soap, const std::string& ModelName, struct tm *TimeAppliesFrom, @@ -118084,20 +118078,19 @@ inline prodml22__PressureTransientAnalysis * soap_new_set_prodml22__PressureTran bool *IsNumericalAnalysis, eml23__DataObjectReference *FluidCharacterization, eml23__DataObjectReference *NumericalPtaModel, - eml23__DataObjectReference *FlowTestActivity, std::string *PrincipalFlowTestMeasurementSetRef, const std::vector & PrincipalTestPeriodRef, - prodml22__WellboreBaseModel *WellboreModel, - const std::vector & LayerModel, - prodml22__FluidPhaseKind FluidPhaseAnalysisKind, - prodml22__PressureNonLinearTransformKind PressureNonLinearTransformKind, - prodml22__PseudoPressureEffectApplied *PseudoPressureEffectApplied, - prodml22__TimeNonLinearTransformKind TimeNonLinearTransformKind, + prodml23__WellboreBaseModel *WellboreModel, + const std::vector & LayerModel, + prodml23__FluidPhaseKind FluidPhaseAnalysisKind, + prodml23__PressureNonLinearTransformKind PressureNonLinearTransformKind, + prodml23__PseudoPressureEffectApplied *PseudoPressureEffectApplied, + prodml23__TimeNonLinearTransformKind TimeNonLinearTransformKind, std::string *Remark, - prodml22__AbstractAnalysis *Analysis, - prodml22__CompressibilityParameters *CompressibilityParameters, - eml23__DataObjectReference *FlowTestActivity_, - const std::vector & InterferingFlowTestInterval, + const std::vector & InterferingFlowTestInterval, + prodml23__AbstractAnalysis *Analysis, + prodml23__CompressibilityParameters *CompressibilityParameters, + eml23__DataObjectReference *FlowTestActivity, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -118110,30 +118103,29 @@ inline prodml22__PressureTransientAnalysis * soap_new_set_prodml22__PressureTran const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__PressureTransientAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__PressureTransientAnalysis(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__PressureTransientAnalysis::ModelName = ModelName; - _p->prodml22__PressureTransientAnalysis::TimeAppliesFrom = TimeAppliesFrom; - _p->prodml22__PressureTransientAnalysis::MethodName = MethodName; - _p->prodml22__PressureTransientAnalysis::TimeAppliesTo = TimeAppliesTo; - _p->prodml22__PressureTransientAnalysis::IsNumericalAnalysis = IsNumericalAnalysis; - _p->prodml22__PressureTransientAnalysis::FluidCharacterization = FluidCharacterization; - _p->prodml22__PressureTransientAnalysis::NumericalPtaModel = NumericalPtaModel; - _p->prodml22__PressureTransientAnalysis::FlowTestActivity = FlowTestActivity; - _p->prodml22__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef = PrincipalFlowTestMeasurementSetRef; - _p->prodml22__PressureTransientAnalysis::PrincipalTestPeriodRef = PrincipalTestPeriodRef; - _p->prodml22__PressureTransientAnalysis::WellboreModel = WellboreModel; - _p->prodml22__PressureTransientAnalysis::LayerModel = LayerModel; - _p->prodml22__PressureTransientAnalysis::FluidPhaseAnalysisKind = FluidPhaseAnalysisKind; - _p->prodml22__PressureTransientAnalysis::PressureNonLinearTransformKind = PressureNonLinearTransformKind; - _p->prodml22__PressureTransientAnalysis::PseudoPressureEffectApplied = PseudoPressureEffectApplied; - _p->prodml22__PressureTransientAnalysis::TimeNonLinearTransformKind = TimeNonLinearTransformKind; - _p->prodml22__PressureTransientAnalysis::Remark = Remark; - _p->prodml22__PressureTransientAnalysis::Analysis = Analysis; - _p->prodml22__PressureTransientAnalysis::CompressibilityParameters = CompressibilityParameters; - _p->prodml22__PressureTransientAnalysis::FlowTestActivity_ = FlowTestActivity_; - _p->prodml22__PressureTransientAnalysis::InterferingFlowTestInterval = InterferingFlowTestInterval; + prodml23__PressureTransientAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__PressureTransientAnalysis(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__PressureTransientAnalysis::ModelName = ModelName; + _p->prodml23__PressureTransientAnalysis::TimeAppliesFrom = TimeAppliesFrom; + _p->prodml23__PressureTransientAnalysis::MethodName = MethodName; + _p->prodml23__PressureTransientAnalysis::TimeAppliesTo = TimeAppliesTo; + _p->prodml23__PressureTransientAnalysis::IsNumericalAnalysis = IsNumericalAnalysis; + _p->prodml23__PressureTransientAnalysis::FluidCharacterization = FluidCharacterization; + _p->prodml23__PressureTransientAnalysis::NumericalPtaModel = NumericalPtaModel; + _p->prodml23__PressureTransientAnalysis::PrincipalFlowTestMeasurementSetRef = PrincipalFlowTestMeasurementSetRef; + _p->prodml23__PressureTransientAnalysis::PrincipalTestPeriodRef = PrincipalTestPeriodRef; + _p->prodml23__PressureTransientAnalysis::WellboreModel = WellboreModel; + _p->prodml23__PressureTransientAnalysis::LayerModel = LayerModel; + _p->prodml23__PressureTransientAnalysis::FluidPhaseAnalysisKind = FluidPhaseAnalysisKind; + _p->prodml23__PressureTransientAnalysis::PressureNonLinearTransformKind = PressureNonLinearTransformKind; + _p->prodml23__PressureTransientAnalysis::PseudoPressureEffectApplied = PseudoPressureEffectApplied; + _p->prodml23__PressureTransientAnalysis::TimeNonLinearTransformKind = TimeNonLinearTransformKind; + _p->prodml23__PressureTransientAnalysis::Remark = Remark; + _p->prodml23__PressureTransientAnalysis::InterferingFlowTestInterval = InterferingFlowTestInterval; + _p->prodml23__PressureTransientAnalysis::Analysis = Analysis; + _p->prodml23__PressureTransientAnalysis::CompressibilityParameters = CompressibilityParameters; + _p->prodml23__PressureTransientAnalysis::FlowTestActivity = FlowTestActivity; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -118149,94 +118141,94 @@ inline prodml22__PressureTransientAnalysis * soap_new_set_prodml22__PressureTran return _p; } -inline int soap_write_prodml22__PressureTransientAnalysis(struct soap *soap, prodml22__PressureTransientAnalysis const*p) +inline int soap_write_prodml23__PressureTransientAnalysis(struct soap *soap, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis ? "prodml22:PressureTransientAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis ? "prodml23:PressureTransientAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis const*p) +inline int soap_PUT_prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis ? "prodml22:PressureTransientAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis ? "prodml23:PressureTransientAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis const*p) +inline int soap_PATCH_prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis ? "prodml22:PressureTransientAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis ? "prodml23:PressureTransientAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis const*p) +inline int soap_POST_send_prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis ? "prodml22:PressureTransientAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PressureTransientAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis ? "prodml23:PressureTransientAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PressureTransientAnalysis * SOAP_FMAC4 soap_get_prodml22__PressureTransientAnalysis(struct soap*, prodml22__PressureTransientAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__PressureTransientAnalysis * SOAP_FMAC4 soap_get_prodml23__PressureTransientAnalysis(struct soap*, prodml23__PressureTransientAnalysis *, const char*, const char*); -inline int soap_read_prodml22__PressureTransientAnalysis(struct soap *soap, prodml22__PressureTransientAnalysis *p) +inline int soap_read_prodml23__PressureTransientAnalysis(struct soap *soap, prodml23__PressureTransientAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PressureTransientAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PressureTransientAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml22__PressureTransientAnalysis *p) +inline int soap_GET_prodml23__PressureTransientAnalysis(struct soap *soap, const char *URL, prodml23__PressureTransientAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PressureTransientAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PressureTransientAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PressureTransientAnalysis(struct soap *soap, prodml22__PressureTransientAnalysis *p) +inline int soap_POST_recv_prodml23__PressureTransientAnalysis(struct soap *soap, prodml23__PressureTransientAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__PressureTransientAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PressureTransientAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PreProcessedPressureData(struct soap*, const char*, int, const prodml22__PreProcessedPressureData *, const char*); -SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml22__PreProcessedPressureData(struct soap*, const char*, prodml22__PreProcessedPressureData *, const char*); -SOAP_FMAC1 prodml22__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prodml22__PreProcessedPressureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PreProcessedPressureData(struct soap*, const char*, int, const prodml23__PreProcessedPressureData *, const char*); +SOAP_FMAC3 prodml23__PreProcessedPressureData * SOAP_FMAC4 soap_in_prodml23__PreProcessedPressureData(struct soap*, const char*, prodml23__PreProcessedPressureData *, const char*); +SOAP_FMAC1 prodml23__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prodml23__PreProcessedPressureData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PreProcessedPressureData * soap_new_prodml22__PreProcessedPressureData(struct soap *soap, int n = -1) +inline prodml23__PreProcessedPressureData * soap_new_prodml23__PreProcessedPressureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PreProcessedPressureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PreProcessedPressureData(soap, n, NULL, NULL, NULL); } -inline prodml22__PreProcessedPressureData * soap_new_req_prodml22__PreProcessedPressureData( +inline prodml23__PreProcessedPressureData * soap_new_req_prodml23__PreProcessedPressureData( struct soap *soap, eml23__DataObjectReference *PreProcess, eml23__DataObjectReference *PressureChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__PreProcessedPressureData *_p = gsoap_eml2_3::soap_new_prodml22__PreProcessedPressureData(soap); + prodml23__PreProcessedPressureData *_p = gsoap_eml2_3::soap_new_prodml23__PreProcessedPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PreProcessedPressureData::PreProcess = PreProcess; - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__PreProcessedPressureData::PreProcess = PreProcess; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__PreProcessedPressureData * soap_new_set_prodml22__PreProcessedPressureData( +inline prodml23__PreProcessedPressureData * soap_new_set_prodml23__PreProcessedPressureData( struct soap *soap, eml23__DataObjectReference *PreProcess, eml23__DataObjectReference *PressureChannel__1, @@ -118245,226 +118237,226 @@ inline prodml22__PreProcessedPressureData * soap_new_set_prodml22__PreProcessedP eml23__ReferencePointKind *Datum__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__PreProcessedPressureData *_p = gsoap_eml2_3::soap_new_prodml22__PreProcessedPressureData(soap); + prodml23__PreProcessedPressureData *_p = gsoap_eml2_3::soap_new_prodml23__PreProcessedPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PreProcessedPressureData::PreProcess = PreProcess; - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; - _p->prodml22__AbstractPtaPressureData::Datum = Datum__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__PreProcessedPressureData::PreProcess = PreProcess; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; + _p->prodml23__AbstractPtaPressureData::Datum = Datum__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__PreProcessedPressureData(struct soap *soap, prodml22__PreProcessedPressureData const*p) +inline int soap_write_prodml23__PreProcessedPressureData(struct soap *soap, prodml23__PreProcessedPressureData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData ? "prodml22:PreProcessedPressureData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData ? "prodml23:PreProcessedPressureData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PreProcessedPressureData(struct soap *soap, const char *URL, prodml22__PreProcessedPressureData const*p) +inline int soap_PUT_prodml23__PreProcessedPressureData(struct soap *soap, const char *URL, prodml23__PreProcessedPressureData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData ? "prodml22:PreProcessedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData ? "prodml23:PreProcessedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PreProcessedPressureData(struct soap *soap, const char *URL, prodml22__PreProcessedPressureData const*p) +inline int soap_PATCH_prodml23__PreProcessedPressureData(struct soap *soap, const char *URL, prodml23__PreProcessedPressureData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData ? "prodml22:PreProcessedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData ? "prodml23:PreProcessedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PreProcessedPressureData(struct soap *soap, const char *URL, prodml22__PreProcessedPressureData const*p) +inline int soap_POST_send_prodml23__PreProcessedPressureData(struct soap *soap, const char *URL, prodml23__PreProcessedPressureData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData ? "prodml22:PreProcessedPressureData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData ? "prodml23:PreProcessedPressureData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PreProcessedPressureData * SOAP_FMAC4 soap_get_prodml22__PreProcessedPressureData(struct soap*, prodml22__PreProcessedPressureData *, const char*, const char*); +SOAP_FMAC3 prodml23__PreProcessedPressureData * SOAP_FMAC4 soap_get_prodml23__PreProcessedPressureData(struct soap*, prodml23__PreProcessedPressureData *, const char*, const char*); -inline int soap_read_prodml22__PreProcessedPressureData(struct soap *soap, prodml22__PreProcessedPressureData *p) +inline int soap_read_prodml23__PreProcessedPressureData(struct soap *soap, prodml23__PreProcessedPressureData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PreProcessedPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PreProcessedPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PreProcessedPressureData(struct soap *soap, const char *URL, prodml22__PreProcessedPressureData *p) +inline int soap_GET_prodml23__PreProcessedPressureData(struct soap *soap, const char *URL, prodml23__PreProcessedPressureData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PreProcessedPressureData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PreProcessedPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PreProcessedPressureData(struct soap *soap, prodml22__PreProcessedPressureData *p) +inline int soap_POST_recv_prodml23__PreProcessedPressureData(struct soap *soap, prodml23__PreProcessedPressureData *p) { - if (gsoap_eml2_3::soap_read_prodml22__PreProcessedPressureData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PreProcessedPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PreProcessedFlowData(struct soap*, const char*, int, const prodml22__PreProcessedFlowData *, const char*); -SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml22__PreProcessedFlowData(struct soap*, const char*, prodml22__PreProcessedFlowData *, const char*); -SOAP_FMAC1 prodml22__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml22__PreProcessedFlowData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PreProcessedFlowData(struct soap*, const char*, int, const prodml23__PreProcessedFlowData *, const char*); +SOAP_FMAC3 prodml23__PreProcessedFlowData * SOAP_FMAC4 soap_in_prodml23__PreProcessedFlowData(struct soap*, const char*, prodml23__PreProcessedFlowData *, const char*); +SOAP_FMAC1 prodml23__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml23__PreProcessedFlowData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PreProcessedFlowData * soap_new_prodml22__PreProcessedFlowData(struct soap *soap, int n = -1) +inline prodml23__PreProcessedFlowData * soap_new_prodml23__PreProcessedFlowData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PreProcessedFlowData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PreProcessedFlowData(soap, n, NULL, NULL, NULL); } -inline prodml22__PreProcessedFlowData * soap_new_req_prodml22__PreProcessedFlowData( +inline prodml23__PreProcessedFlowData * soap_new_req_prodml23__PreProcessedFlowData( struct soap *soap, eml23__DataObjectReference *PreProcess, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__PreProcessedFlowData *_p = gsoap_eml2_3::soap_new_prodml22__PreProcessedFlowData(soap); + prodml23__PreProcessedFlowData *_p = gsoap_eml2_3::soap_new_prodml23__PreProcessedFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PreProcessedFlowData::PreProcess = PreProcess; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__PreProcessedFlowData::PreProcess = PreProcess; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__PreProcessedFlowData * soap_new_set_prodml22__PreProcessedFlowData( +inline prodml23__PreProcessedFlowData * soap_new_set_prodml23__PreProcessedFlowData( struct soap *soap, eml23__DataObjectReference *PreProcess, - prodml22__FluidPhaseKind *FluidPhaseMeasuredKind__1, + prodml23__FluidPhaseKind *FluidPhaseMeasuredKind__1, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__PreProcessedFlowData *_p = gsoap_eml2_3::soap_new_prodml22__PreProcessedFlowData(soap); + prodml23__PreProcessedFlowData *_p = gsoap_eml2_3::soap_new_prodml23__PreProcessedFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PreProcessedFlowData::PreProcess = PreProcess; - _p->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__PreProcessedFlowData::PreProcess = PreProcess; + _p->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__PreProcessedFlowData(struct soap *soap, prodml22__PreProcessedFlowData const*p) +inline int soap_write_prodml23__PreProcessedFlowData(struct soap *soap, prodml23__PreProcessedFlowData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData ? "prodml22:PreProcessedFlowData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData ? "prodml23:PreProcessedFlowData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PreProcessedFlowData(struct soap *soap, const char *URL, prodml22__PreProcessedFlowData const*p) +inline int soap_PUT_prodml23__PreProcessedFlowData(struct soap *soap, const char *URL, prodml23__PreProcessedFlowData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData ? "prodml22:PreProcessedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData ? "prodml23:PreProcessedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PreProcessedFlowData(struct soap *soap, const char *URL, prodml22__PreProcessedFlowData const*p) +inline int soap_PATCH_prodml23__PreProcessedFlowData(struct soap *soap, const char *URL, prodml23__PreProcessedFlowData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData ? "prodml22:PreProcessedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData ? "prodml23:PreProcessedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PreProcessedFlowData(struct soap *soap, const char *URL, prodml22__PreProcessedFlowData const*p) +inline int soap_POST_send_prodml23__PreProcessedFlowData(struct soap *soap, const char *URL, prodml23__PreProcessedFlowData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData ? "prodml22:PreProcessedFlowData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PreProcessedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData ? "prodml23:PreProcessedFlowData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PreProcessedFlowData * SOAP_FMAC4 soap_get_prodml22__PreProcessedFlowData(struct soap*, prodml22__PreProcessedFlowData *, const char*, const char*); +SOAP_FMAC3 prodml23__PreProcessedFlowData * SOAP_FMAC4 soap_get_prodml23__PreProcessedFlowData(struct soap*, prodml23__PreProcessedFlowData *, const char*, const char*); -inline int soap_read_prodml22__PreProcessedFlowData(struct soap *soap, prodml22__PreProcessedFlowData *p) +inline int soap_read_prodml23__PreProcessedFlowData(struct soap *soap, prodml23__PreProcessedFlowData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PreProcessedFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PreProcessedFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PreProcessedFlowData(struct soap *soap, const char *URL, prodml22__PreProcessedFlowData *p) +inline int soap_GET_prodml23__PreProcessedFlowData(struct soap *soap, const char *URL, prodml23__PreProcessedFlowData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PreProcessedFlowData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PreProcessedFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PreProcessedFlowData(struct soap *soap, prodml22__PreProcessedFlowData *p) +inline int soap_POST_recv_prodml23__PreProcessedFlowData(struct soap *soap, prodml23__PreProcessedFlowData *p) { - if (gsoap_eml2_3::soap_read_prodml22__PreProcessedFlowData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PreProcessedFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputPressureData(struct soap*, const char*, int, const prodml22__OutputPressureData *, const char*); -SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_in_prodml22__OutputPressureData(struct soap*, const char*, prodml22__OutputPressureData *, const char*); -SOAP_FMAC1 prodml22__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml22__OutputPressureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputPressureData(struct soap*, const char*, int, const prodml23__OutputPressureData *, const char*); +SOAP_FMAC3 prodml23__OutputPressureData * SOAP_FMAC4 soap_in_prodml23__OutputPressureData(struct soap*, const char*, prodml23__OutputPressureData *, const char*); +SOAP_FMAC1 prodml23__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml23__OutputPressureData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OutputPressureData * soap_new_prodml22__OutputPressureData(struct soap *soap, int n = -1) +inline prodml23__OutputPressureData * soap_new_prodml23__OutputPressureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OutputPressureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OutputPressureData(soap, n, NULL, NULL, NULL); } -inline prodml22__OutputPressureData * soap_new_req_prodml22__OutputPressureData( +inline prodml23__OutputPressureData * soap_new_req_prodml23__OutputPressureData( struct soap *soap, eml23__DataObjectReference *PressureChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__OutputPressureData *_p = gsoap_eml2_3::soap_new_prodml22__OutputPressureData(soap); + prodml23__OutputPressureData *_p = gsoap_eml2_3::soap_new_prodml23__OutputPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__OutputPressureData * soap_new_set_prodml22__OutputPressureData( +inline prodml23__OutputPressureData * soap_new_set_prodml23__OutputPressureData( struct soap *soap, eml23__DataObjectReference *PressureChannel__1, eml23__DataObjectReference *PressureDerivativeChannel__1, @@ -118472,221 +118464,221 @@ inline prodml22__OutputPressureData * soap_new_set_prodml22__OutputPressureData( eml23__ReferencePointKind *Datum__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__OutputPressureData *_p = gsoap_eml2_3::soap_new_prodml22__OutputPressureData(soap); + prodml23__OutputPressureData *_p = gsoap_eml2_3::soap_new_prodml23__OutputPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; - _p->prodml22__AbstractPtaPressureData::Datum = Datum__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; + _p->prodml23__AbstractPtaPressureData::Datum = Datum__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData const*p) +inline int soap_write_prodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData ? "prodml22:OutputPressureData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData ? "prodml23:OutputPressureData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OutputPressureData(struct soap *soap, const char *URL, prodml22__OutputPressureData const*p) +inline int soap_PUT_prodml23__OutputPressureData(struct soap *soap, const char *URL, prodml23__OutputPressureData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData ? "prodml22:OutputPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData ? "prodml23:OutputPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OutputPressureData(struct soap *soap, const char *URL, prodml22__OutputPressureData const*p) +inline int soap_PATCH_prodml23__OutputPressureData(struct soap *soap, const char *URL, prodml23__OutputPressureData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData ? "prodml22:OutputPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData ? "prodml23:OutputPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OutputPressureData(struct soap *soap, const char *URL, prodml22__OutputPressureData const*p) +inline int soap_POST_send_prodml23__OutputPressureData(struct soap *soap, const char *URL, prodml23__OutputPressureData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData ? "prodml22:OutputPressureData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData ? "prodml23:OutputPressureData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OutputPressureData * SOAP_FMAC4 soap_get_prodml22__OutputPressureData(struct soap*, prodml22__OutputPressureData *, const char*, const char*); +SOAP_FMAC3 prodml23__OutputPressureData * SOAP_FMAC4 soap_get_prodml23__OutputPressureData(struct soap*, prodml23__OutputPressureData *, const char*, const char*); -inline int soap_read_prodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData *p) +inline int soap_read_prodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OutputPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OutputPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OutputPressureData(struct soap *soap, const char *URL, prodml22__OutputPressureData *p) +inline int soap_GET_prodml23__OutputPressureData(struct soap *soap, const char *URL, prodml23__OutputPressureData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OutputPressureData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OutputPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OutputPressureData(struct soap *soap, prodml22__OutputPressureData *p) +inline int soap_POST_recv_prodml23__OutputPressureData(struct soap *soap, prodml23__OutputPressureData *p) { - if (gsoap_eml2_3::soap_read_prodml22__OutputPressureData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OutputPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OutputFlowData(struct soap*, const char*, int, const prodml22__OutputFlowData *, const char*); -SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_in_prodml22__OutputFlowData(struct soap*, const char*, prodml22__OutputFlowData *, const char*); -SOAP_FMAC1 prodml22__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml22__OutputFlowData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OutputFlowData(struct soap*, const char*, int, const prodml23__OutputFlowData *, const char*); +SOAP_FMAC3 prodml23__OutputFlowData * SOAP_FMAC4 soap_in_prodml23__OutputFlowData(struct soap*, const char*, prodml23__OutputFlowData *, const char*); +SOAP_FMAC1 prodml23__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml23__OutputFlowData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OutputFlowData * soap_new_prodml22__OutputFlowData(struct soap *soap, int n = -1) +inline prodml23__OutputFlowData * soap_new_prodml23__OutputFlowData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OutputFlowData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OutputFlowData(soap, n, NULL, NULL, NULL); } -inline prodml22__OutputFlowData * soap_new_req_prodml22__OutputFlowData( +inline prodml23__OutputFlowData * soap_new_req_prodml23__OutputFlowData( struct soap *soap, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__OutputFlowData *_p = gsoap_eml2_3::soap_new_prodml22__OutputFlowData(soap); + prodml23__OutputFlowData *_p = gsoap_eml2_3::soap_new_prodml23__OutputFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__OutputFlowData * soap_new_set_prodml22__OutputFlowData( +inline prodml23__OutputFlowData * soap_new_set_prodml23__OutputFlowData( struct soap *soap, - prodml22__FluidPhaseKind *FluidPhaseMeasuredKind__1, + prodml23__FluidPhaseKind *FluidPhaseMeasuredKind__1, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__OutputFlowData *_p = gsoap_eml2_3::soap_new_prodml22__OutputFlowData(soap); + prodml23__OutputFlowData *_p = gsoap_eml2_3::soap_new_prodml23__OutputFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData const*p) +inline int soap_write_prodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData ? "prodml22:OutputFlowData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData ? "prodml23:OutputFlowData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OutputFlowData(struct soap *soap, const char *URL, prodml22__OutputFlowData const*p) +inline int soap_PUT_prodml23__OutputFlowData(struct soap *soap, const char *URL, prodml23__OutputFlowData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData ? "prodml22:OutputFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData ? "prodml23:OutputFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OutputFlowData(struct soap *soap, const char *URL, prodml22__OutputFlowData const*p) +inline int soap_PATCH_prodml23__OutputFlowData(struct soap *soap, const char *URL, prodml23__OutputFlowData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData ? "prodml22:OutputFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData ? "prodml23:OutputFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OutputFlowData(struct soap *soap, const char *URL, prodml22__OutputFlowData const*p) +inline int soap_POST_send_prodml23__OutputFlowData(struct soap *soap, const char *URL, prodml23__OutputFlowData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData ? "prodml22:OutputFlowData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OutputFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData ? "prodml23:OutputFlowData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OutputFlowData * SOAP_FMAC4 soap_get_prodml22__OutputFlowData(struct soap*, prodml22__OutputFlowData *, const char*, const char*); +SOAP_FMAC3 prodml23__OutputFlowData * SOAP_FMAC4 soap_get_prodml23__OutputFlowData(struct soap*, prodml23__OutputFlowData *, const char*, const char*); -inline int soap_read_prodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData *p) +inline int soap_read_prodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OutputFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OutputFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OutputFlowData(struct soap *soap, const char *URL, prodml22__OutputFlowData *p) +inline int soap_GET_prodml23__OutputFlowData(struct soap *soap, const char *URL, prodml23__OutputFlowData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OutputFlowData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OutputFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OutputFlowData(struct soap *soap, prodml22__OutputFlowData *p) +inline int soap_POST_recv_prodml23__OutputFlowData(struct soap *soap, prodml23__OutputFlowData *p) { - if (gsoap_eml2_3::soap_read_prodml22__OutputFlowData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OutputFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MeasuredPressureData(struct soap*, const char*, int, const prodml22__MeasuredPressureData *, const char*); -SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml22__MeasuredPressureData(struct soap*, const char*, prodml22__MeasuredPressureData *, const char*); -SOAP_FMAC1 prodml22__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredPressureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MeasuredPressureData(struct soap*, const char*, int, const prodml23__MeasuredPressureData *, const char*); +SOAP_FMAC3 prodml23__MeasuredPressureData * SOAP_FMAC4 soap_in_prodml23__MeasuredPressureData(struct soap*, const char*, prodml23__MeasuredPressureData *, const char*); +SOAP_FMAC1 prodml23__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredPressureData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MeasuredPressureData * soap_new_prodml22__MeasuredPressureData(struct soap *soap, int n = -1) +inline prodml23__MeasuredPressureData * soap_new_prodml23__MeasuredPressureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MeasuredPressureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MeasuredPressureData(soap, n, NULL, NULL, NULL); } -inline prodml22__MeasuredPressureData * soap_new_req_prodml22__MeasuredPressureData( +inline prodml23__MeasuredPressureData * soap_new_req_prodml23__MeasuredPressureData( struct soap *soap, eml23__DataObjectReference *PressureChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__MeasuredPressureData *_p = gsoap_eml2_3::soap_new_prodml22__MeasuredPressureData(soap); + prodml23__MeasuredPressureData *_p = gsoap_eml2_3::soap_new_prodml23__MeasuredPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__MeasuredPressureData * soap_new_set_prodml22__MeasuredPressureData( +inline prodml23__MeasuredPressureData * soap_new_set_prodml23__MeasuredPressureData( struct soap *soap, eml23__DataObjectReference *PressureChannel__1, eml23__DataObjectReference *PressureDerivativeChannel__1, @@ -118694,520 +118686,520 @@ inline prodml22__MeasuredPressureData * soap_new_set_prodml22__MeasuredPressureD eml23__ReferencePointKind *Datum__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__MeasuredPressureData *_p = gsoap_eml2_3::soap_new_prodml22__MeasuredPressureData(soap); + prodml23__MeasuredPressureData *_p = gsoap_eml2_3::soap_new_prodml23__MeasuredPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; - _p->prodml22__AbstractPtaPressureData::Datum = Datum__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; + _p->prodml23__AbstractPtaPressureData::Datum = Datum__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData const*p) +inline int soap_write_prodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData ? "prodml22:MeasuredPressureData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData ? "prodml23:MeasuredPressureData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MeasuredPressureData(struct soap *soap, const char *URL, prodml22__MeasuredPressureData const*p) +inline int soap_PUT_prodml23__MeasuredPressureData(struct soap *soap, const char *URL, prodml23__MeasuredPressureData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData ? "prodml22:MeasuredPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData ? "prodml23:MeasuredPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MeasuredPressureData(struct soap *soap, const char *URL, prodml22__MeasuredPressureData const*p) +inline int soap_PATCH_prodml23__MeasuredPressureData(struct soap *soap, const char *URL, prodml23__MeasuredPressureData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData ? "prodml22:MeasuredPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData ? "prodml23:MeasuredPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MeasuredPressureData(struct soap *soap, const char *URL, prodml22__MeasuredPressureData const*p) +inline int soap_POST_send_prodml23__MeasuredPressureData(struct soap *soap, const char *URL, prodml23__MeasuredPressureData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData ? "prodml22:MeasuredPressureData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData ? "prodml23:MeasuredPressureData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MeasuredPressureData * SOAP_FMAC4 soap_get_prodml22__MeasuredPressureData(struct soap*, prodml22__MeasuredPressureData *, const char*, const char*); +SOAP_FMAC3 prodml23__MeasuredPressureData * SOAP_FMAC4 soap_get_prodml23__MeasuredPressureData(struct soap*, prodml23__MeasuredPressureData *, const char*, const char*); -inline int soap_read_prodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData *p) +inline int soap_read_prodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MeasuredPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MeasuredPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MeasuredPressureData(struct soap *soap, const char *URL, prodml22__MeasuredPressureData *p) +inline int soap_GET_prodml23__MeasuredPressureData(struct soap *soap, const char *URL, prodml23__MeasuredPressureData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MeasuredPressureData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MeasuredPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MeasuredPressureData(struct soap *soap, prodml22__MeasuredPressureData *p) +inline int soap_POST_recv_prodml23__MeasuredPressureData(struct soap *soap, prodml23__MeasuredPressureData *p) { - if (gsoap_eml2_3::soap_read_prodml22__MeasuredPressureData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MeasuredPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MeasuredFlowData(struct soap*, const char*, int, const prodml22__MeasuredFlowData *, const char*); -SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml22__MeasuredFlowData(struct soap*, const char*, prodml22__MeasuredFlowData *, const char*); -SOAP_FMAC1 prodml22__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredFlowData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MeasuredFlowData(struct soap*, const char*, int, const prodml23__MeasuredFlowData *, const char*); +SOAP_FMAC3 prodml23__MeasuredFlowData * SOAP_FMAC4 soap_in_prodml23__MeasuredFlowData(struct soap*, const char*, prodml23__MeasuredFlowData *, const char*); +SOAP_FMAC1 prodml23__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredFlowData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MeasuredFlowData * soap_new_prodml22__MeasuredFlowData(struct soap *soap, int n = -1) +inline prodml23__MeasuredFlowData * soap_new_prodml23__MeasuredFlowData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MeasuredFlowData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MeasuredFlowData(soap, n, NULL, NULL, NULL); } -inline prodml22__MeasuredFlowData * soap_new_req_prodml22__MeasuredFlowData( +inline prodml23__MeasuredFlowData * soap_new_req_prodml23__MeasuredFlowData( struct soap *soap, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__MeasuredFlowData *_p = gsoap_eml2_3::soap_new_prodml22__MeasuredFlowData(soap); + prodml23__MeasuredFlowData *_p = gsoap_eml2_3::soap_new_prodml23__MeasuredFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__MeasuredFlowData * soap_new_set_prodml22__MeasuredFlowData( +inline prodml23__MeasuredFlowData * soap_new_set_prodml23__MeasuredFlowData( struct soap *soap, - prodml22__FluidPhaseKind *FluidPhaseMeasuredKind__1, + prodml23__FluidPhaseKind *FluidPhaseMeasuredKind__1, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__MeasuredFlowData *_p = gsoap_eml2_3::soap_new_prodml22__MeasuredFlowData(soap); + prodml23__MeasuredFlowData *_p = gsoap_eml2_3::soap_new_prodml23__MeasuredFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__MeasuredFlowData(struct soap *soap, prodml22__MeasuredFlowData const*p) +inline int soap_write_prodml23__MeasuredFlowData(struct soap *soap, prodml23__MeasuredFlowData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData ? "prodml22:MeasuredFlowData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData ? "prodml23:MeasuredFlowData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MeasuredFlowData(struct soap *soap, const char *URL, prodml22__MeasuredFlowData const*p) +inline int soap_PUT_prodml23__MeasuredFlowData(struct soap *soap, const char *URL, prodml23__MeasuredFlowData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData ? "prodml22:MeasuredFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData ? "prodml23:MeasuredFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MeasuredFlowData(struct soap *soap, const char *URL, prodml22__MeasuredFlowData const*p) +inline int soap_PATCH_prodml23__MeasuredFlowData(struct soap *soap, const char *URL, prodml23__MeasuredFlowData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData ? "prodml22:MeasuredFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData ? "prodml23:MeasuredFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MeasuredFlowData(struct soap *soap, const char *URL, prodml22__MeasuredFlowData const*p) +inline int soap_POST_send_prodml23__MeasuredFlowData(struct soap *soap, const char *URL, prodml23__MeasuredFlowData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData ? "prodml22:MeasuredFlowData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData ? "prodml23:MeasuredFlowData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MeasuredFlowData * SOAP_FMAC4 soap_get_prodml22__MeasuredFlowData(struct soap*, prodml22__MeasuredFlowData *, const char*, const char*); +SOAP_FMAC3 prodml23__MeasuredFlowData * SOAP_FMAC4 soap_get_prodml23__MeasuredFlowData(struct soap*, prodml23__MeasuredFlowData *, const char*, const char*); -inline int soap_read_prodml22__MeasuredFlowData(struct soap *soap, prodml22__MeasuredFlowData *p) +inline int soap_read_prodml23__MeasuredFlowData(struct soap *soap, prodml23__MeasuredFlowData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MeasuredFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MeasuredFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MeasuredFlowData(struct soap *soap, const char *URL, prodml22__MeasuredFlowData *p) +inline int soap_GET_prodml23__MeasuredFlowData(struct soap *soap, const char *URL, prodml23__MeasuredFlowData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MeasuredFlowData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MeasuredFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MeasuredFlowData(struct soap *soap, prodml22__MeasuredFlowData *p) +inline int soap_POST_recv_prodml23__MeasuredFlowData(struct soap *soap, prodml23__MeasuredFlowData *p) { - if (gsoap_eml2_3::soap_read_prodml22__MeasuredFlowData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MeasuredFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LogLogAnalysis(struct soap*, const char*, int, const prodml22__LogLogAnalysis *, const char*); -SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml22__LogLogAnalysis(struct soap*, const char*, prodml22__LogLogAnalysis *, const char*); -SOAP_FMAC1 prodml22__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__LogLogAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LogLogAnalysis(struct soap*, const char*, int, const prodml23__LogLogAnalysis *, const char*); +SOAP_FMAC3 prodml23__LogLogAnalysis * SOAP_FMAC4 soap_in_prodml23__LogLogAnalysis(struct soap*, const char*, prodml23__LogLogAnalysis *, const char*); +SOAP_FMAC1 prodml23__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__LogLogAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LogLogAnalysis * soap_new_prodml22__LogLogAnalysis(struct soap *soap, int n = -1) +inline prodml23__LogLogAnalysis * soap_new_prodml23__LogLogAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LogLogAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LogLogAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__LogLogAnalysis * soap_new_req_prodml22__LogLogAnalysis( +inline prodml23__LogLogAnalysis * soap_new_req_prodml23__LogLogAnalysis( struct soap *soap, - prodml22__AbstractPtaPressureData *AnalysisPressure, - prodml22__LogLogTimeTransform LogLogTimeDataTransform, - prodml22__LogLogPressureTransform LogLogPressureTransform) + prodml23__AbstractPtaPressureData *AnalysisPressure, + prodml23__LogLogTimeTransform LogLogTimeDataTransform, + prodml23__LogLogPressureTransform LogLogPressureTransform) { - prodml22__LogLogAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__LogLogAnalysis(soap); + prodml23__LogLogAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__LogLogAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LogLogAnalysis::AnalysisPressure = AnalysisPressure; - _p->prodml22__LogLogAnalysis::LogLogTimeDataTransform = LogLogTimeDataTransform; - _p->prodml22__LogLogAnalysis::LogLogPressureTransform = LogLogPressureTransform; + _p->prodml23__LogLogAnalysis::AnalysisPressure = AnalysisPressure; + _p->prodml23__LogLogAnalysis::LogLogTimeDataTransform = LogLogTimeDataTransform; + _p->prodml23__LogLogAnalysis::LogLogPressureTransform = LogLogPressureTransform; } return _p; } -inline prodml22__LogLogAnalysis * soap_new_set_prodml22__LogLogAnalysis( +inline prodml23__LogLogAnalysis * soap_new_set_prodml23__LogLogAnalysis( struct soap *soap, - prodml22__AbstractPtaPressureData *AnalysisPressure, - prodml22__LogLogTimeTransform LogLogTimeDataTransform, - prodml22__LogLogPressureTransform LogLogPressureTransform, + prodml23__AbstractPtaPressureData *AnalysisPressure, + prodml23__LogLogTimeTransform LogLogTimeDataTransform, + prodml23__LogLogPressureTransform LogLogPressureTransform, eml23__DimensionlessMeasure *DerivativeSmoothingFactorL, std::string *Remark, - const std::vector & AnalysisLine) + const std::vector & AnalysisLine) { - prodml22__LogLogAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__LogLogAnalysis(soap); + prodml23__LogLogAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__LogLogAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LogLogAnalysis::AnalysisPressure = AnalysisPressure; - _p->prodml22__LogLogAnalysis::LogLogTimeDataTransform = LogLogTimeDataTransform; - _p->prodml22__LogLogAnalysis::LogLogPressureTransform = LogLogPressureTransform; - _p->prodml22__LogLogAnalysis::DerivativeSmoothingFactorL = DerivativeSmoothingFactorL; - _p->prodml22__LogLogAnalysis::Remark = Remark; - _p->prodml22__LogLogAnalysis::AnalysisLine = AnalysisLine; + _p->prodml23__LogLogAnalysis::AnalysisPressure = AnalysisPressure; + _p->prodml23__LogLogAnalysis::LogLogTimeDataTransform = LogLogTimeDataTransform; + _p->prodml23__LogLogAnalysis::LogLogPressureTransform = LogLogPressureTransform; + _p->prodml23__LogLogAnalysis::DerivativeSmoothingFactorL = DerivativeSmoothingFactorL; + _p->prodml23__LogLogAnalysis::Remark = Remark; + _p->prodml23__LogLogAnalysis::AnalysisLine = AnalysisLine; } return _p; } -inline int soap_write_prodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis const*p) +inline int soap_write_prodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis ? "prodml22:LogLogAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis ? "prodml23:LogLogAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LogLogAnalysis(struct soap *soap, const char *URL, prodml22__LogLogAnalysis const*p) +inline int soap_PUT_prodml23__LogLogAnalysis(struct soap *soap, const char *URL, prodml23__LogLogAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis ? "prodml22:LogLogAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis ? "prodml23:LogLogAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LogLogAnalysis(struct soap *soap, const char *URL, prodml22__LogLogAnalysis const*p) +inline int soap_PATCH_prodml23__LogLogAnalysis(struct soap *soap, const char *URL, prodml23__LogLogAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis ? "prodml22:LogLogAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis ? "prodml23:LogLogAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LogLogAnalysis(struct soap *soap, const char *URL, prodml22__LogLogAnalysis const*p) +inline int soap_POST_send_prodml23__LogLogAnalysis(struct soap *soap, const char *URL, prodml23__LogLogAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis ? "prodml22:LogLogAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LogLogAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis ? "prodml23:LogLogAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LogLogAnalysis * SOAP_FMAC4 soap_get_prodml22__LogLogAnalysis(struct soap*, prodml22__LogLogAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__LogLogAnalysis * SOAP_FMAC4 soap_get_prodml23__LogLogAnalysis(struct soap*, prodml23__LogLogAnalysis *, const char*, const char*); -inline int soap_read_prodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis *p) +inline int soap_read_prodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LogLogAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LogLogAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LogLogAnalysis(struct soap *soap, const char *URL, prodml22__LogLogAnalysis *p) +inline int soap_GET_prodml23__LogLogAnalysis(struct soap *soap, const char *URL, prodml23__LogLogAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LogLogAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LogLogAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LogLogAnalysis(struct soap *soap, prodml22__LogLogAnalysis *p) +inline int soap_POST_recv_prodml23__LogLogAnalysis(struct soap *soap, prodml23__LogLogAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__LogLogAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LogLogAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LocationIn2D(struct soap*, const char*, int, const prodml22__LocationIn2D *, const char*); -SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_in_prodml22__LocationIn2D(struct soap*, const char*, prodml22__LocationIn2D *, const char*); -SOAP_FMAC1 prodml22__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml22__LocationIn2D(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LocationIn2D(struct soap*, const char*, int, const prodml23__LocationIn2D *, const char*); +SOAP_FMAC3 prodml23__LocationIn2D * SOAP_FMAC4 soap_in_prodml23__LocationIn2D(struct soap*, const char*, prodml23__LocationIn2D *, const char*); +SOAP_FMAC1 prodml23__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml23__LocationIn2D(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LocationIn2D * soap_new_prodml22__LocationIn2D(struct soap *soap, int n = -1) +inline prodml23__LocationIn2D * soap_new_prodml23__LocationIn2D(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LocationIn2D(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LocationIn2D(soap, n, NULL, NULL, NULL); } -inline prodml22__LocationIn2D * soap_new_req_prodml22__LocationIn2D( +inline prodml23__LocationIn2D * soap_new_req_prodml23__LocationIn2D( struct soap *soap, eml23__LengthMeasure *CoordinateX, eml23__LengthMeasure *CoordinateY) { - prodml22__LocationIn2D *_p = gsoap_eml2_3::soap_new_prodml22__LocationIn2D(soap); + prodml23__LocationIn2D *_p = gsoap_eml2_3::soap_new_prodml23__LocationIn2D(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LocationIn2D::CoordinateX = CoordinateX; - _p->prodml22__LocationIn2D::CoordinateY = CoordinateY; + _p->prodml23__LocationIn2D::CoordinateX = CoordinateX; + _p->prodml23__LocationIn2D::CoordinateY = CoordinateY; } return _p; } -inline prodml22__LocationIn2D * soap_new_set_prodml22__LocationIn2D( +inline prodml23__LocationIn2D * soap_new_set_prodml23__LocationIn2D( struct soap *soap, eml23__LengthMeasure *CoordinateX, eml23__LengthMeasure *CoordinateY) { - prodml22__LocationIn2D *_p = gsoap_eml2_3::soap_new_prodml22__LocationIn2D(soap); + prodml23__LocationIn2D *_p = gsoap_eml2_3::soap_new_prodml23__LocationIn2D(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LocationIn2D::CoordinateX = CoordinateX; - _p->prodml22__LocationIn2D::CoordinateY = CoordinateY; + _p->prodml23__LocationIn2D::CoordinateX = CoordinateX; + _p->prodml23__LocationIn2D::CoordinateY = CoordinateY; } return _p; } -inline int soap_write_prodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D const*p) +inline int soap_write_prodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D ? "prodml22:LocationIn2D" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D ? "prodml23:LocationIn2D" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LocationIn2D(struct soap *soap, const char *URL, prodml22__LocationIn2D const*p) +inline int soap_PUT_prodml23__LocationIn2D(struct soap *soap, const char *URL, prodml23__LocationIn2D const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D ? "prodml22:LocationIn2D" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D ? "prodml23:LocationIn2D" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LocationIn2D(struct soap *soap, const char *URL, prodml22__LocationIn2D const*p) +inline int soap_PATCH_prodml23__LocationIn2D(struct soap *soap, const char *URL, prodml23__LocationIn2D const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D ? "prodml22:LocationIn2D" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D ? "prodml23:LocationIn2D" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LocationIn2D(struct soap *soap, const char *URL, prodml22__LocationIn2D const*p) +inline int soap_POST_send_prodml23__LocationIn2D(struct soap *soap, const char *URL, prodml23__LocationIn2D const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D ? "prodml22:LocationIn2D" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LocationIn2D", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D ? "prodml23:LocationIn2D" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LocationIn2D * SOAP_FMAC4 soap_get_prodml22__LocationIn2D(struct soap*, prodml22__LocationIn2D *, const char*, const char*); +SOAP_FMAC3 prodml23__LocationIn2D * SOAP_FMAC4 soap_get_prodml23__LocationIn2D(struct soap*, prodml23__LocationIn2D *, const char*, const char*); -inline int soap_read_prodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D *p) +inline int soap_read_prodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LocationIn2D(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LocationIn2D(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LocationIn2D(struct soap *soap, const char *URL, prodml22__LocationIn2D *p) +inline int soap_GET_prodml23__LocationIn2D(struct soap *soap, const char *URL, prodml23__LocationIn2D *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LocationIn2D(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LocationIn2D(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LocationIn2D(struct soap *soap, prodml22__LocationIn2D *p) +inline int soap_POST_recv_prodml23__LocationIn2D(struct soap *soap, prodml23__LocationIn2D *p) { - if (gsoap_eml2_3::soap_read_prodml22__LocationIn2D(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LocationIn2D(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LayerToLayerConnection(struct soap*, const char*, int, const prodml22__LayerToLayerConnection *, const char*); -SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml22__LayerToLayerConnection(struct soap*, const char*, prodml22__LayerToLayerConnection *, const char*); -SOAP_FMAC1 prodml22__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml22__LayerToLayerConnection(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LayerToLayerConnection(struct soap*, const char*, int, const prodml23__LayerToLayerConnection *, const char*); +SOAP_FMAC3 prodml23__LayerToLayerConnection * SOAP_FMAC4 soap_in_prodml23__LayerToLayerConnection(struct soap*, const char*, prodml23__LayerToLayerConnection *, const char*); +SOAP_FMAC1 prodml23__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml23__LayerToLayerConnection(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LayerToLayerConnection * soap_new_prodml22__LayerToLayerConnection(struct soap *soap, int n = -1) +inline prodml23__LayerToLayerConnection * soap_new_prodml23__LayerToLayerConnection(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LayerToLayerConnection(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LayerToLayerConnection(soap, n, NULL, NULL, NULL); } -inline prodml22__LayerToLayerConnection * soap_new_req_prodml22__LayerToLayerConnection( +inline prodml23__LayerToLayerConnection * soap_new_req_prodml23__LayerToLayerConnection( struct soap *soap, const std::string& ConnectedLayerRefID, - prodml22__InterporosityFlowParameter *InterLayerConnectivity) + prodml23__InterporosityFlowParameter *InterLayerConnectivity) { - prodml22__LayerToLayerConnection *_p = gsoap_eml2_3::soap_new_prodml22__LayerToLayerConnection(soap); + prodml23__LayerToLayerConnection *_p = gsoap_eml2_3::soap_new_prodml23__LayerToLayerConnection(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LayerToLayerConnection::ConnectedLayerRefID = ConnectedLayerRefID; - _p->prodml22__LayerToLayerConnection::InterLayerConnectivity = InterLayerConnectivity; + _p->prodml23__LayerToLayerConnection::ConnectedLayerRefID = ConnectedLayerRefID; + _p->prodml23__LayerToLayerConnection::InterLayerConnectivity = InterLayerConnectivity; } return _p; } -inline prodml22__LayerToLayerConnection * soap_new_set_prodml22__LayerToLayerConnection( +inline prodml23__LayerToLayerConnection * soap_new_set_prodml23__LayerToLayerConnection( struct soap *soap, const std::string& ConnectedLayerRefID, - prodml22__InterporosityFlowParameter *InterLayerConnectivity) + prodml23__InterporosityFlowParameter *InterLayerConnectivity) { - prodml22__LayerToLayerConnection *_p = gsoap_eml2_3::soap_new_prodml22__LayerToLayerConnection(soap); + prodml23__LayerToLayerConnection *_p = gsoap_eml2_3::soap_new_prodml23__LayerToLayerConnection(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LayerToLayerConnection::ConnectedLayerRefID = ConnectedLayerRefID; - _p->prodml22__LayerToLayerConnection::InterLayerConnectivity = InterLayerConnectivity; + _p->prodml23__LayerToLayerConnection::ConnectedLayerRefID = ConnectedLayerRefID; + _p->prodml23__LayerToLayerConnection::InterLayerConnectivity = InterLayerConnectivity; } return _p; } -inline int soap_write_prodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection const*p) +inline int soap_write_prodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection ? "prodml22:LayerToLayerConnection" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection ? "prodml23:LayerToLayerConnection" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LayerToLayerConnection(struct soap *soap, const char *URL, prodml22__LayerToLayerConnection const*p) +inline int soap_PUT_prodml23__LayerToLayerConnection(struct soap *soap, const char *URL, prodml23__LayerToLayerConnection const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection ? "prodml22:LayerToLayerConnection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection ? "prodml23:LayerToLayerConnection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LayerToLayerConnection(struct soap *soap, const char *URL, prodml22__LayerToLayerConnection const*p) +inline int soap_PATCH_prodml23__LayerToLayerConnection(struct soap *soap, const char *URL, prodml23__LayerToLayerConnection const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection ? "prodml22:LayerToLayerConnection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection ? "prodml23:LayerToLayerConnection" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LayerToLayerConnection(struct soap *soap, const char *URL, prodml22__LayerToLayerConnection const*p) +inline int soap_POST_send_prodml23__LayerToLayerConnection(struct soap *soap, const char *URL, prodml23__LayerToLayerConnection const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection ? "prodml22:LayerToLayerConnection" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerToLayerConnection", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection ? "prodml23:LayerToLayerConnection" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LayerToLayerConnection * SOAP_FMAC4 soap_get_prodml22__LayerToLayerConnection(struct soap*, prodml22__LayerToLayerConnection *, const char*, const char*); +SOAP_FMAC3 prodml23__LayerToLayerConnection * SOAP_FMAC4 soap_get_prodml23__LayerToLayerConnection(struct soap*, prodml23__LayerToLayerConnection *, const char*, const char*); -inline int soap_read_prodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection *p) +inline int soap_read_prodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LayerToLayerConnection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LayerToLayerConnection(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LayerToLayerConnection(struct soap *soap, const char *URL, prodml22__LayerToLayerConnection *p) +inline int soap_GET_prodml23__LayerToLayerConnection(struct soap *soap, const char *URL, prodml23__LayerToLayerConnection *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LayerToLayerConnection(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LayerToLayerConnection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LayerToLayerConnection(struct soap *soap, prodml22__LayerToLayerConnection *p) +inline int soap_POST_recv_prodml23__LayerToLayerConnection(struct soap *soap, prodml23__LayerToLayerConnection *p) { - if (gsoap_eml2_3::soap_read_prodml22__LayerToLayerConnection(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LayerToLayerConnection(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LayerModel(struct soap*, const char*, int, const prodml22__LayerModel *, const char*); -SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_in_prodml22__LayerModel(struct soap*, const char*, prodml22__LayerModel *, const char*); -SOAP_FMAC1 prodml22__LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__LayerModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LayerModel(struct soap*, const char*, int, const prodml23__LayerModel *, const char*); +SOAP_FMAC3 prodml23__LayerModel * SOAP_FMAC4 soap_in_prodml23__LayerModel(struct soap*, const char*, prodml23__LayerModel *, const char*); +SOAP_FMAC1 prodml23__LayerModel * SOAP_FMAC2 soap_instantiate_prodml23__LayerModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LayerModel * soap_new_prodml22__LayerModel(struct soap *soap, int n = -1) +inline prodml23__LayerModel * soap_new_prodml23__LayerModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LayerModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LayerModel(soap, n, NULL, NULL, NULL); } -inline prodml22__LayerModel * soap_new_req_prodml22__LayerModel( +inline prodml23__LayerModel * soap_new_req_prodml23__LayerModel( struct soap *soap, const std::string& Name, bool AggregateLayersModel) { - prodml22__LayerModel *_p = gsoap_eml2_3::soap_new_prodml22__LayerModel(soap); + prodml23__LayerModel *_p = gsoap_eml2_3::soap_new_prodml23__LayerModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LayerModel::Name = Name; - _p->prodml22__LayerModel::AggregateLayersModel = AggregateLayersModel; + _p->prodml23__LayerModel::Name = Name; + _p->prodml23__LayerModel::AggregateLayersModel = AggregateLayersModel; } return _p; } -inline prodml22__LayerModel * soap_new_set_prodml22__LayerModel( +inline prodml23__LayerModel * soap_new_set_prodml23__LayerModel( struct soap *soap, const std::string& Name, bool AggregateLayersModel, @@ -119217,320 +119209,320 @@ inline prodml22__LayerModel * soap_new_set_prodml22__LayerModel( eml23__VolumePerTimePerPressureMeasure *LayerProductivityIndex, eml23__PressurePerFlowrateSquaredMeasure *LayerTurbulentFlowCoefficient, eml23__PressurePerFlowrateMeasure *LayerLaminarFlowCoefficient, - prodml22__NearWellboreBaseModel *NearWellboreModel, - prodml22__ReservoirBaseModel *ReservoirModel, - prodml22__BoundaryBaseModel *BoundaryModel, - const std::vector & LayerToLayerConnection, + prodml23__NearWellboreBaseModel *NearWellboreModel, + prodml23__ReservoirBaseModel *ReservoirModel, + prodml23__BoundaryBaseModel *BoundaryModel, + const std::vector & LayerToLayerConnection, std::string *uid) { - prodml22__LayerModel *_p = gsoap_eml2_3::soap_new_prodml22__LayerModel(soap); + prodml23__LayerModel *_p = gsoap_eml2_3::soap_new_prodml23__LayerModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LayerModel::Name = Name; - _p->prodml22__LayerModel::AggregateLayersModel = AggregateLayersModel; - _p->prodml22__LayerModel::GeologicFeature = GeologicFeature; - _p->prodml22__LayerModel::MdTopLayer = MdTopLayer; - _p->prodml22__LayerModel::MdBottomLayer = MdBottomLayer; - _p->prodml22__LayerModel::LayerProductivityIndex = LayerProductivityIndex; - _p->prodml22__LayerModel::LayerTurbulentFlowCoefficient = LayerTurbulentFlowCoefficient; - _p->prodml22__LayerModel::LayerLaminarFlowCoefficient = LayerLaminarFlowCoefficient; - _p->prodml22__LayerModel::NearWellboreModel = NearWellboreModel; - _p->prodml22__LayerModel::ReservoirModel = ReservoirModel; - _p->prodml22__LayerModel::BoundaryModel = BoundaryModel; - _p->prodml22__LayerModel::LayerToLayerConnection = LayerToLayerConnection; - _p->prodml22__LayerModel::uid = uid; + _p->prodml23__LayerModel::Name = Name; + _p->prodml23__LayerModel::AggregateLayersModel = AggregateLayersModel; + _p->prodml23__LayerModel::GeologicFeature = GeologicFeature; + _p->prodml23__LayerModel::MdTopLayer = MdTopLayer; + _p->prodml23__LayerModel::MdBottomLayer = MdBottomLayer; + _p->prodml23__LayerModel::LayerProductivityIndex = LayerProductivityIndex; + _p->prodml23__LayerModel::LayerTurbulentFlowCoefficient = LayerTurbulentFlowCoefficient; + _p->prodml23__LayerModel::LayerLaminarFlowCoefficient = LayerLaminarFlowCoefficient; + _p->prodml23__LayerModel::NearWellboreModel = NearWellboreModel; + _p->prodml23__LayerModel::ReservoirModel = ReservoirModel; + _p->prodml23__LayerModel::BoundaryModel = BoundaryModel; + _p->prodml23__LayerModel::LayerToLayerConnection = LayerToLayerConnection; + _p->prodml23__LayerModel::uid = uid; } return _p; } -inline int soap_write_prodml22__LayerModel(struct soap *soap, prodml22__LayerModel const*p) +inline int soap_write_prodml23__LayerModel(struct soap *soap, prodml23__LayerModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel ? "prodml22:LayerModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel ? "prodml23:LayerModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LayerModel(struct soap *soap, const char *URL, prodml22__LayerModel const*p) +inline int soap_PUT_prodml23__LayerModel(struct soap *soap, const char *URL, prodml23__LayerModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel ? "prodml22:LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel ? "prodml23:LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LayerModel(struct soap *soap, const char *URL, prodml22__LayerModel const*p) +inline int soap_PATCH_prodml23__LayerModel(struct soap *soap, const char *URL, prodml23__LayerModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel ? "prodml22:LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel ? "prodml23:LayerModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LayerModel(struct soap *soap, const char *URL, prodml22__LayerModel const*p) +inline int soap_POST_send_prodml23__LayerModel(struct soap *soap, const char *URL, prodml23__LayerModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel ? "prodml22:LayerModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LayerModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel ? "prodml23:LayerModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LayerModel * SOAP_FMAC4 soap_get_prodml22__LayerModel(struct soap*, prodml22__LayerModel *, const char*, const char*); +SOAP_FMAC3 prodml23__LayerModel * SOAP_FMAC4 soap_get_prodml23__LayerModel(struct soap*, prodml23__LayerModel *, const char*, const char*); -inline int soap_read_prodml22__LayerModel(struct soap *soap, prodml22__LayerModel *p) +inline int soap_read_prodml23__LayerModel(struct soap *soap, prodml23__LayerModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LayerModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LayerModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LayerModel(struct soap *soap, const char *URL, prodml22__LayerModel *p) +inline int soap_GET_prodml23__LayerModel(struct soap *soap, const char *URL, prodml23__LayerModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LayerModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LayerModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LayerModel(struct soap *soap, prodml22__LayerModel *p) +inline int soap_POST_recv_prodml23__LayerModel(struct soap *soap, prodml23__LayerModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__LayerModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LayerModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InternalFaultSubModel(struct soap*, const char*, int, const prodml22__InternalFaultSubModel *, const char*); -SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml22__InternalFaultSubModel(struct soap*, const char*, prodml22__InternalFaultSubModel *, const char*); -SOAP_FMAC1 prodml22__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml22__InternalFaultSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InternalFaultSubModel(struct soap*, const char*, int, const prodml23__InternalFaultSubModel *, const char*); +SOAP_FMAC3 prodml23__InternalFaultSubModel * SOAP_FMAC4 soap_in_prodml23__InternalFaultSubModel(struct soap*, const char*, prodml23__InternalFaultSubModel *, const char*); +SOAP_FMAC1 prodml23__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml23__InternalFaultSubModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InternalFaultSubModel * soap_new_prodml22__InternalFaultSubModel(struct soap *soap, int n = -1) +inline prodml23__InternalFaultSubModel * soap_new_prodml23__InternalFaultSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InternalFaultSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InternalFaultSubModel(soap, n, NULL, NULL, NULL); } -inline prodml22__InternalFaultSubModel * soap_new_req_prodml22__InternalFaultSubModel( +inline prodml23__InternalFaultSubModel * soap_new_req_prodml23__InternalFaultSubModel( struct soap *soap, bool IsLeaky, bool IsConductive, bool IsFiniteConductive, - prodml22__ResqmlModelRef *FaultRefID) + prodml23__ResqmlModelRef *FaultRefID) { - prodml22__InternalFaultSubModel *_p = gsoap_eml2_3::soap_new_prodml22__InternalFaultSubModel(soap); + prodml23__InternalFaultSubModel *_p = gsoap_eml2_3::soap_new_prodml23__InternalFaultSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InternalFaultSubModel::IsLeaky = IsLeaky; - _p->prodml22__InternalFaultSubModel::IsConductive = IsConductive; - _p->prodml22__InternalFaultSubModel::IsFiniteConductive = IsFiniteConductive; - _p->prodml22__InternalFaultSubModel::FaultRefID = FaultRefID; + _p->prodml23__InternalFaultSubModel::IsLeaky = IsLeaky; + _p->prodml23__InternalFaultSubModel::IsConductive = IsConductive; + _p->prodml23__InternalFaultSubModel::IsFiniteConductive = IsFiniteConductive; + _p->prodml23__InternalFaultSubModel::FaultRefID = FaultRefID; } return _p; } -inline prodml22__InternalFaultSubModel * soap_new_set_prodml22__InternalFaultSubModel( +inline prodml23__InternalFaultSubModel * soap_new_set_prodml23__InternalFaultSubModel( struct soap *soap, bool IsLeaky, - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionRatioOfLinearFront, + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionRatioOfLinearFront, bool IsConductive, bool IsFiniteConductive, - prodml22__FractureConductivity *Conductivity, - prodml22__ResqmlModelRef *FaultRefID) + prodml23__FractureConductivity *Conductivity, + prodml23__ResqmlModelRef *FaultRefID) { - prodml22__InternalFaultSubModel *_p = gsoap_eml2_3::soap_new_prodml22__InternalFaultSubModel(soap); + prodml23__InternalFaultSubModel *_p = gsoap_eml2_3::soap_new_prodml23__InternalFaultSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InternalFaultSubModel::IsLeaky = IsLeaky; - _p->prodml22__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront = TransmissibilityReductionRatioOfLinearFront; - _p->prodml22__InternalFaultSubModel::IsConductive = IsConductive; - _p->prodml22__InternalFaultSubModel::IsFiniteConductive = IsFiniteConductive; - _p->prodml22__InternalFaultSubModel::Conductivity = Conductivity; - _p->prodml22__InternalFaultSubModel::FaultRefID = FaultRefID; + _p->prodml23__InternalFaultSubModel::IsLeaky = IsLeaky; + _p->prodml23__InternalFaultSubModel::TransmissibilityReductionRatioOfLinearFront = TransmissibilityReductionRatioOfLinearFront; + _p->prodml23__InternalFaultSubModel::IsConductive = IsConductive; + _p->prodml23__InternalFaultSubModel::IsFiniteConductive = IsFiniteConductive; + _p->prodml23__InternalFaultSubModel::Conductivity = Conductivity; + _p->prodml23__InternalFaultSubModel::FaultRefID = FaultRefID; } return _p; } -inline int soap_write_prodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel const*p) +inline int soap_write_prodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel ? "prodml22:InternalFaultSubModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel ? "prodml23:InternalFaultSubModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InternalFaultSubModel(struct soap *soap, const char *URL, prodml22__InternalFaultSubModel const*p) +inline int soap_PUT_prodml23__InternalFaultSubModel(struct soap *soap, const char *URL, prodml23__InternalFaultSubModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel ? "prodml22:InternalFaultSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel ? "prodml23:InternalFaultSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InternalFaultSubModel(struct soap *soap, const char *URL, prodml22__InternalFaultSubModel const*p) +inline int soap_PATCH_prodml23__InternalFaultSubModel(struct soap *soap, const char *URL, prodml23__InternalFaultSubModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel ? "prodml22:InternalFaultSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel ? "prodml23:InternalFaultSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InternalFaultSubModel(struct soap *soap, const char *URL, prodml22__InternalFaultSubModel const*p) +inline int soap_POST_send_prodml23__InternalFaultSubModel(struct soap *soap, const char *URL, prodml23__InternalFaultSubModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel ? "prodml22:InternalFaultSubModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InternalFaultSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel ? "prodml23:InternalFaultSubModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InternalFaultSubModel * SOAP_FMAC4 soap_get_prodml22__InternalFaultSubModel(struct soap*, prodml22__InternalFaultSubModel *, const char*, const char*); +SOAP_FMAC3 prodml23__InternalFaultSubModel * SOAP_FMAC4 soap_get_prodml23__InternalFaultSubModel(struct soap*, prodml23__InternalFaultSubModel *, const char*, const char*); -inline int soap_read_prodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel *p) +inline int soap_read_prodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InternalFaultSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InternalFaultSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InternalFaultSubModel(struct soap *soap, const char *URL, prodml22__InternalFaultSubModel *p) +inline int soap_GET_prodml23__InternalFaultSubModel(struct soap *soap, const char *URL, prodml23__InternalFaultSubModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InternalFaultSubModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InternalFaultSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InternalFaultSubModel(struct soap *soap, prodml22__InternalFaultSubModel *p) +inline int soap_POST_recv_prodml23__InternalFaultSubModel(struct soap *soap, prodml23__InternalFaultSubModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__InternalFaultSubModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InternalFaultSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterferingFlowTestInterval(struct soap*, const char*, int, const prodml22__InterferingFlowTestInterval *, const char*); -SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml22__InterferingFlowTestInterval(struct soap*, const char*, prodml22__InterferingFlowTestInterval *, const char*); -SOAP_FMAC1 prodml22__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_prodml22__InterferingFlowTestInterval(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterferingFlowTestInterval(struct soap*, const char*, int, const prodml23__InterferingFlowTestInterval *, const char*); +SOAP_FMAC3 prodml23__InterferingFlowTestInterval * SOAP_FMAC4 soap_in_prodml23__InterferingFlowTestInterval(struct soap*, const char*, prodml23__InterferingFlowTestInterval *, const char*); +SOAP_FMAC1 prodml23__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_prodml23__InterferingFlowTestInterval(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InterferingFlowTestInterval * soap_new_prodml22__InterferingFlowTestInterval(struct soap *soap, int n = -1) +inline prodml23__InterferingFlowTestInterval * soap_new_prodml23__InterferingFlowTestInterval(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InterferingFlowTestInterval(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InterferingFlowTestInterval(soap, n, NULL, NULL, NULL); } -inline prodml22__InterferingFlowTestInterval * soap_new_req_prodml22__InterferingFlowTestInterval( +inline prodml23__InterferingFlowTestInterval * soap_new_req_prodml23__InterferingFlowTestInterval( struct soap *soap, const std::string& FlowTestMeasurementSetRef, const std::string& InterferingFlowrateRef, - prodml22__OutputPressureData *SimulatedInterferencePressure, + prodml23__OutputPressureData *SimulatedInterferencePressure, bool SimulatedInterferencePressureRemoved) { - prodml22__InterferingFlowTestInterval *_p = gsoap_eml2_3::soap_new_prodml22__InterferingFlowTestInterval(soap); + prodml23__InterferingFlowTestInterval *_p = gsoap_eml2_3::soap_new_prodml23__InterferingFlowTestInterval(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; - _p->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef = InterferingFlowrateRef; - _p->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure = SimulatedInterferencePressure; - _p->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved = SimulatedInterferencePressureRemoved; + _p->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; + _p->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef = InterferingFlowrateRef; + _p->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure = SimulatedInterferencePressure; + _p->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved = SimulatedInterferencePressureRemoved; } return _p; } -inline prodml22__InterferingFlowTestInterval * soap_new_set_prodml22__InterferingFlowTestInterval( +inline prodml23__InterferingFlowTestInterval * soap_new_set_prodml23__InterferingFlowTestInterval( struct soap *soap, const std::string& FlowTestMeasurementSetRef, const std::string& InterferingFlowrateRef, const std::vector & TestPeriodRef, - prodml22__OutputPressureData *SimulatedInterferencePressure, + prodml23__OutputPressureData *SimulatedInterferencePressure, bool SimulatedInterferencePressureRemoved, std::string *uid) { - prodml22__InterferingFlowTestInterval *_p = gsoap_eml2_3::soap_new_prodml22__InterferingFlowTestInterval(soap); + prodml23__InterferingFlowTestInterval *_p = gsoap_eml2_3::soap_new_prodml23__InterferingFlowTestInterval(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterferingFlowTestInterval::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; - _p->prodml22__InterferingFlowTestInterval::InterferingFlowrateRef = InterferingFlowrateRef; - _p->prodml22__InterferingFlowTestInterval::TestPeriodRef = TestPeriodRef; - _p->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressure = SimulatedInterferencePressure; - _p->prodml22__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved = SimulatedInterferencePressureRemoved; - _p->prodml22__InterferingFlowTestInterval::uid = uid; + _p->prodml23__InterferingFlowTestInterval::FlowTestMeasurementSetRef = FlowTestMeasurementSetRef; + _p->prodml23__InterferingFlowTestInterval::InterferingFlowrateRef = InterferingFlowrateRef; + _p->prodml23__InterferingFlowTestInterval::TestPeriodRef = TestPeriodRef; + _p->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressure = SimulatedInterferencePressure; + _p->prodml23__InterferingFlowTestInterval::SimulatedInterferencePressureRemoved = SimulatedInterferencePressureRemoved; + _p->prodml23__InterferingFlowTestInterval::uid = uid; } return _p; } -inline int soap_write_prodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval const*p) +inline int soap_write_prodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval ? "prodml22:InterferingFlowTestInterval" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval ? "prodml23:InterferingFlowTestInterval" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml22__InterferingFlowTestInterval const*p) +inline int soap_PUT_prodml23__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml23__InterferingFlowTestInterval const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval ? "prodml22:InterferingFlowTestInterval" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval ? "prodml23:InterferingFlowTestInterval" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml22__InterferingFlowTestInterval const*p) +inline int soap_PATCH_prodml23__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml23__InterferingFlowTestInterval const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval ? "prodml22:InterferingFlowTestInterval" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval ? "prodml23:InterferingFlowTestInterval" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml22__InterferingFlowTestInterval const*p) +inline int soap_POST_send_prodml23__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml23__InterferingFlowTestInterval const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval ? "prodml22:InterferingFlowTestInterval" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterferingFlowTestInterval", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval ? "prodml23:InterferingFlowTestInterval" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InterferingFlowTestInterval * SOAP_FMAC4 soap_get_prodml22__InterferingFlowTestInterval(struct soap*, prodml22__InterferingFlowTestInterval *, const char*, const char*); +SOAP_FMAC3 prodml23__InterferingFlowTestInterval * SOAP_FMAC4 soap_get_prodml23__InterferingFlowTestInterval(struct soap*, prodml23__InterferingFlowTestInterval *, const char*, const char*); -inline int soap_read_prodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval *p) +inline int soap_read_prodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InterferingFlowTestInterval(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InterferingFlowTestInterval(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml22__InterferingFlowTestInterval *p) +inline int soap_GET_prodml23__InterferingFlowTestInterval(struct soap *soap, const char *URL, prodml23__InterferingFlowTestInterval *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InterferingFlowTestInterval(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InterferingFlowTestInterval(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InterferingFlowTestInterval(struct soap *soap, prodml22__InterferingFlowTestInterval *p) +inline int soap_POST_recv_prodml23__InterferingFlowTestInterval(struct soap *soap, prodml23__InterferingFlowTestInterval *p) { - if (gsoap_eml2_3::soap_read_prodml22__InterferingFlowTestInterval(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InterferingFlowTestInterval(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DistributedParametersSubModel(struct soap*, const char*, int, const prodml22__DistributedParametersSubModel *, const char*); -SOAP_FMAC3 prodml22__DistributedParametersSubModel * SOAP_FMAC4 soap_in_prodml22__DistributedParametersSubModel(struct soap*, const char*, prodml22__DistributedParametersSubModel *, const char*); -SOAP_FMAC1 prodml22__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate_prodml22__DistributedParametersSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DistributedParametersSubModel(struct soap*, const char*, int, const prodml23__DistributedParametersSubModel *, const char*); +SOAP_FMAC3 prodml23__DistributedParametersSubModel * SOAP_FMAC4 soap_in_prodml23__DistributedParametersSubModel(struct soap*, const char*, prodml23__DistributedParametersSubModel *, const char*); +SOAP_FMAC1 prodml23__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate_prodml23__DistributedParametersSubModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DistributedParametersSubModel * soap_new_prodml22__DistributedParametersSubModel(struct soap *soap, int n = -1) +inline prodml23__DistributedParametersSubModel * soap_new_prodml23__DistributedParametersSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DistributedParametersSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DistributedParametersSubModel(soap, n, NULL, NULL, NULL); } -inline prodml22__DistributedParametersSubModel * soap_new_req_prodml22__DistributedParametersSubModel( +inline prodml23__DistributedParametersSubModel * soap_new_req_prodml23__DistributedParametersSubModel( struct soap *soap, bool IsPermeabilityGridded, bool IsThicknessGridded, @@ -119539,141 +119531,141 @@ inline prodml22__DistributedParametersSubModel * soap_new_req_prodml22__Distribu bool IsKvToKrGridded, bool IsKxToKyGridded) { - prodml22__DistributedParametersSubModel *_p = gsoap_eml2_3::soap_new_prodml22__DistributedParametersSubModel(soap); + prodml23__DistributedParametersSubModel *_p = gsoap_eml2_3::soap_new_prodml23__DistributedParametersSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistributedParametersSubModel::IsPermeabilityGridded = IsPermeabilityGridded; - _p->prodml22__DistributedParametersSubModel::IsThicknessGridded = IsThicknessGridded; - _p->prodml22__DistributedParametersSubModel::IsPorosityGridded = IsPorosityGridded; - _p->prodml22__DistributedParametersSubModel::IsDepthGridded = IsDepthGridded; - _p->prodml22__DistributedParametersSubModel::IsKvToKrGridded = IsKvToKrGridded; - _p->prodml22__DistributedParametersSubModel::IsKxToKyGridded = IsKxToKyGridded; + _p->prodml23__DistributedParametersSubModel::IsPermeabilityGridded = IsPermeabilityGridded; + _p->prodml23__DistributedParametersSubModel::IsThicknessGridded = IsThicknessGridded; + _p->prodml23__DistributedParametersSubModel::IsPorosityGridded = IsPorosityGridded; + _p->prodml23__DistributedParametersSubModel::IsDepthGridded = IsDepthGridded; + _p->prodml23__DistributedParametersSubModel::IsKvToKrGridded = IsKvToKrGridded; + _p->prodml23__DistributedParametersSubModel::IsKxToKyGridded = IsKxToKyGridded; } return _p; } -inline prodml22__DistributedParametersSubModel * soap_new_set_prodml22__DistributedParametersSubModel( +inline prodml23__DistributedParametersSubModel * soap_new_set_prodml23__DistributedParametersSubModel( struct soap *soap, bool IsPermeabilityGridded, - prodml22__ResqmlModelRef *PermeabilityArrayRefID, + prodml23__ResqmlModelRef *PermeabilityArrayRefID, bool IsThicknessGridded, - prodml22__ResqmlModelRef *ThicknessArrayRefID, + prodml23__ResqmlModelRef *ThicknessArrayRefID, bool IsPorosityGridded, - prodml22__ResqmlModelRef *PorosityArrayRefID, + prodml23__ResqmlModelRef *PorosityArrayRefID, bool IsDepthGridded, - prodml22__ResqmlModelRef *DepthArrayRefID, + prodml23__ResqmlModelRef *DepthArrayRefID, bool IsKvToKrGridded, - prodml22__ResqmlModelRef *KvToKrArrayRefID, + prodml23__ResqmlModelRef *KvToKrArrayRefID, bool IsKxToKyGridded, - prodml22__ResqmlModelRef *KxToKyArrayRefID) + prodml23__ResqmlModelRef *KxToKyArrayRefID) { - prodml22__DistributedParametersSubModel *_p = gsoap_eml2_3::soap_new_prodml22__DistributedParametersSubModel(soap); + prodml23__DistributedParametersSubModel *_p = gsoap_eml2_3::soap_new_prodml23__DistributedParametersSubModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DistributedParametersSubModel::IsPermeabilityGridded = IsPermeabilityGridded; - _p->prodml22__DistributedParametersSubModel::PermeabilityArrayRefID = PermeabilityArrayRefID; - _p->prodml22__DistributedParametersSubModel::IsThicknessGridded = IsThicknessGridded; - _p->prodml22__DistributedParametersSubModel::ThicknessArrayRefID = ThicknessArrayRefID; - _p->prodml22__DistributedParametersSubModel::IsPorosityGridded = IsPorosityGridded; - _p->prodml22__DistributedParametersSubModel::PorosityArrayRefID = PorosityArrayRefID; - _p->prodml22__DistributedParametersSubModel::IsDepthGridded = IsDepthGridded; - _p->prodml22__DistributedParametersSubModel::DepthArrayRefID = DepthArrayRefID; - _p->prodml22__DistributedParametersSubModel::IsKvToKrGridded = IsKvToKrGridded; - _p->prodml22__DistributedParametersSubModel::KvToKrArrayRefID = KvToKrArrayRefID; - _p->prodml22__DistributedParametersSubModel::IsKxToKyGridded = IsKxToKyGridded; - _p->prodml22__DistributedParametersSubModel::KxToKyArrayRefID = KxToKyArrayRefID; + _p->prodml23__DistributedParametersSubModel::IsPermeabilityGridded = IsPermeabilityGridded; + _p->prodml23__DistributedParametersSubModel::PermeabilityArrayRefID = PermeabilityArrayRefID; + _p->prodml23__DistributedParametersSubModel::IsThicknessGridded = IsThicknessGridded; + _p->prodml23__DistributedParametersSubModel::ThicknessArrayRefID = ThicknessArrayRefID; + _p->prodml23__DistributedParametersSubModel::IsPorosityGridded = IsPorosityGridded; + _p->prodml23__DistributedParametersSubModel::PorosityArrayRefID = PorosityArrayRefID; + _p->prodml23__DistributedParametersSubModel::IsDepthGridded = IsDepthGridded; + _p->prodml23__DistributedParametersSubModel::DepthArrayRefID = DepthArrayRefID; + _p->prodml23__DistributedParametersSubModel::IsKvToKrGridded = IsKvToKrGridded; + _p->prodml23__DistributedParametersSubModel::KvToKrArrayRefID = KvToKrArrayRefID; + _p->prodml23__DistributedParametersSubModel::IsKxToKyGridded = IsKxToKyGridded; + _p->prodml23__DistributedParametersSubModel::KxToKyArrayRefID = KxToKyArrayRefID; } return _p; } -inline int soap_write_prodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel const*p) +inline int soap_write_prodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel ? "prodml22:DistributedParametersSubModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel ? "prodml23:DistributedParametersSubModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml22__DistributedParametersSubModel const*p) +inline int soap_PUT_prodml23__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml23__DistributedParametersSubModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel ? "prodml22:DistributedParametersSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel ? "prodml23:DistributedParametersSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml22__DistributedParametersSubModel const*p) +inline int soap_PATCH_prodml23__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml23__DistributedParametersSubModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel ? "prodml22:DistributedParametersSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel ? "prodml23:DistributedParametersSubModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml22__DistributedParametersSubModel const*p) +inline int soap_POST_send_prodml23__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml23__DistributedParametersSubModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel ? "prodml22:DistributedParametersSubModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DistributedParametersSubModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel ? "prodml23:DistributedParametersSubModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DistributedParametersSubModel * SOAP_FMAC4 soap_get_prodml22__DistributedParametersSubModel(struct soap*, prodml22__DistributedParametersSubModel *, const char*, const char*); +SOAP_FMAC3 prodml23__DistributedParametersSubModel * SOAP_FMAC4 soap_get_prodml23__DistributedParametersSubModel(struct soap*, prodml23__DistributedParametersSubModel *, const char*, const char*); -inline int soap_read_prodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel *p) +inline int soap_read_prodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DistributedParametersSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DistributedParametersSubModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml22__DistributedParametersSubModel *p) +inline int soap_GET_prodml23__DistributedParametersSubModel(struct soap *soap, const char *URL, prodml23__DistributedParametersSubModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DistributedParametersSubModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DistributedParametersSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DistributedParametersSubModel(struct soap *soap, prodml22__DistributedParametersSubModel *p) +inline int soap_POST_recv_prodml23__DistributedParametersSubModel(struct soap *soap, prodml23__DistributedParametersSubModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__DistributedParametersSubModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DistributedParametersSubModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolvedPressureData(struct soap*, const char*, int, const prodml22__DeconvolvedPressureData *, const char*); -SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml22__DeconvolvedPressureData(struct soap*, const char*, prodml22__DeconvolvedPressureData *, const char*); -SOAP_FMAC1 prodml22__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolvedPressureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolvedPressureData(struct soap*, const char*, int, const prodml23__DeconvolvedPressureData *, const char*); +SOAP_FMAC3 prodml23__DeconvolvedPressureData * SOAP_FMAC4 soap_in_prodml23__DeconvolvedPressureData(struct soap*, const char*, prodml23__DeconvolvedPressureData *, const char*); +SOAP_FMAC1 prodml23__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolvedPressureData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeconvolvedPressureData * soap_new_prodml22__DeconvolvedPressureData(struct soap *soap, int n = -1) +inline prodml23__DeconvolvedPressureData * soap_new_prodml23__DeconvolvedPressureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeconvolvedPressureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeconvolvedPressureData(soap, n, NULL, NULL, NULL); } -inline prodml22__DeconvolvedPressureData * soap_new_req_prodml22__DeconvolvedPressureData( +inline prodml23__DeconvolvedPressureData * soap_new_req_prodml23__DeconvolvedPressureData( struct soap *soap, eml23__DataObjectReference *Deconvolution, eml23__DataObjectReference *PressureChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__DeconvolvedPressureData *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolvedPressureData(soap); + prodml23__DeconvolvedPressureData *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolvedPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolvedPressureData::Deconvolution = Deconvolution; - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__DeconvolvedPressureData::Deconvolution = Deconvolution; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__DeconvolvedPressureData * soap_new_set_prodml22__DeconvolvedPressureData( +inline prodml23__DeconvolvedPressureData * soap_new_set_prodml23__DeconvolvedPressureData( struct soap *soap, eml23__DataObjectReference *Deconvolution, eml23__DataObjectReference *PressureChannel__1, @@ -119682,505 +119674,505 @@ inline prodml22__DeconvolvedPressureData * soap_new_set_prodml22__DeconvolvedPre eml23__ReferencePointKind *Datum__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__DeconvolvedPressureData *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolvedPressureData(soap); + prodml23__DeconvolvedPressureData *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolvedPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolvedPressureData::Deconvolution = Deconvolution; - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; - _p->prodml22__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; - _p->prodml22__AbstractPtaPressureData::Datum = Datum__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__DeconvolvedPressureData::Deconvolution = Deconvolution; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth__1; + _p->prodml23__AbstractPtaPressureData::Datum = Datum__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData const*p) +inline int soap_write_prodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData ? "prodml22:DeconvolvedPressureData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData ? "prodml23:DeconvolvedPressureData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml22__DeconvolvedPressureData const*p) +inline int soap_PUT_prodml23__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml23__DeconvolvedPressureData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData ? "prodml22:DeconvolvedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData ? "prodml23:DeconvolvedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml22__DeconvolvedPressureData const*p) +inline int soap_PATCH_prodml23__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml23__DeconvolvedPressureData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData ? "prodml22:DeconvolvedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData ? "prodml23:DeconvolvedPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml22__DeconvolvedPressureData const*p) +inline int soap_POST_send_prodml23__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml23__DeconvolvedPressureData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData ? "prodml22:DeconvolvedPressureData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData ? "prodml23:DeconvolvedPressureData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeconvolvedPressureData * SOAP_FMAC4 soap_get_prodml22__DeconvolvedPressureData(struct soap*, prodml22__DeconvolvedPressureData *, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolvedPressureData * SOAP_FMAC4 soap_get_prodml23__DeconvolvedPressureData(struct soap*, prodml23__DeconvolvedPressureData *, const char*, const char*); -inline int soap_read_prodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData *p) +inline int soap_read_prodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeconvolvedPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeconvolvedPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml22__DeconvolvedPressureData *p) +inline int soap_GET_prodml23__DeconvolvedPressureData(struct soap *soap, const char *URL, prodml23__DeconvolvedPressureData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeconvolvedPressureData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeconvolvedPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeconvolvedPressureData(struct soap *soap, prodml22__DeconvolvedPressureData *p) +inline int soap_POST_recv_prodml23__DeconvolvedPressureData(struct soap *soap, prodml23__DeconvolvedPressureData *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeconvolvedPressureData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeconvolvedPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolvedFlowData(struct soap*, const char*, int, const prodml22__DeconvolvedFlowData *, const char*); -SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml22__DeconvolvedFlowData(struct soap*, const char*, prodml22__DeconvolvedFlowData *, const char*); -SOAP_FMAC1 prodml22__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolvedFlowData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolvedFlowData(struct soap*, const char*, int, const prodml23__DeconvolvedFlowData *, const char*); +SOAP_FMAC3 prodml23__DeconvolvedFlowData * SOAP_FMAC4 soap_in_prodml23__DeconvolvedFlowData(struct soap*, const char*, prodml23__DeconvolvedFlowData *, const char*); +SOAP_FMAC1 prodml23__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolvedFlowData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeconvolvedFlowData * soap_new_prodml22__DeconvolvedFlowData(struct soap *soap, int n = -1) +inline prodml23__DeconvolvedFlowData * soap_new_prodml23__DeconvolvedFlowData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeconvolvedFlowData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeconvolvedFlowData(soap, n, NULL, NULL, NULL); } -inline prodml22__DeconvolvedFlowData * soap_new_req_prodml22__DeconvolvedFlowData( +inline prodml23__DeconvolvedFlowData * soap_new_req_prodml23__DeconvolvedFlowData( struct soap *soap, eml23__DataObjectReference *Deconvolution, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2) { - prodml22__DeconvolvedFlowData *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolvedFlowData(soap); + prodml23__DeconvolvedFlowData *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolvedFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolvedFlowData::Deconvolution = Deconvolution; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__DeconvolvedFlowData::Deconvolution = Deconvolution; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; } return _p; } -inline prodml22__DeconvolvedFlowData * soap_new_set_prodml22__DeconvolvedFlowData( +inline prodml23__DeconvolvedFlowData * soap_new_set_prodml23__DeconvolvedFlowData( struct soap *soap, eml23__DataObjectReference *Deconvolution, - prodml22__FluidPhaseKind *FluidPhaseMeasuredKind__1, + prodml23__FluidPhaseKind *FluidPhaseMeasuredKind__1, eml23__DataObjectReference *FlowChannel__1, eml23__DataObjectReference *ChannelSet__2, eml23__DataObjectReference *TimeChannel__2, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__2, std::string *Remark__2, std::string *uid__2) { - prodml22__DeconvolvedFlowData *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolvedFlowData(soap); + prodml23__DeconvolvedFlowData *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolvedFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolvedFlowData::Deconvolution = Deconvolution; - _p->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel__1; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__2; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__2; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; - _p->prodml22__AbstractFlowTestData::Remark = Remark__2; - _p->prodml22__AbstractFlowTestData::uid = uid__2; + _p->prodml23__DeconvolvedFlowData::Deconvolution = Deconvolution; + _p->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind__1; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel__1; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__2; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__2; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__2; + _p->prodml23__AbstractFlowTestData::Remark = Remark__2; + _p->prodml23__AbstractFlowTestData::uid = uid__2; } return _p; } -inline int soap_write_prodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData const*p) +inline int soap_write_prodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData ? "prodml22:DeconvolvedFlowData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData ? "prodml23:DeconvolvedFlowData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml22__DeconvolvedFlowData const*p) +inline int soap_PUT_prodml23__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml23__DeconvolvedFlowData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData ? "prodml22:DeconvolvedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData ? "prodml23:DeconvolvedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml22__DeconvolvedFlowData const*p) +inline int soap_PATCH_prodml23__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml23__DeconvolvedFlowData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData ? "prodml22:DeconvolvedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData ? "prodml23:DeconvolvedFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml22__DeconvolvedFlowData const*p) +inline int soap_POST_send_prodml23__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml23__DeconvolvedFlowData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData ? "prodml22:DeconvolvedFlowData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolvedFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData ? "prodml23:DeconvolvedFlowData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeconvolvedFlowData * SOAP_FMAC4 soap_get_prodml22__DeconvolvedFlowData(struct soap*, prodml22__DeconvolvedFlowData *, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolvedFlowData * SOAP_FMAC4 soap_get_prodml23__DeconvolvedFlowData(struct soap*, prodml23__DeconvolvedFlowData *, const char*, const char*); -inline int soap_read_prodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData *p) +inline int soap_read_prodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeconvolvedFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeconvolvedFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml22__DeconvolvedFlowData *p) +inline int soap_GET_prodml23__DeconvolvedFlowData(struct soap *soap, const char *URL, prodml23__DeconvolvedFlowData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeconvolvedFlowData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeconvolvedFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeconvolvedFlowData(struct soap *soap, prodml22__DeconvolvedFlowData *p) +inline int soap_POST_recv_prodml23__DeconvolvedFlowData(struct soap *soap, prodml23__DeconvolvedFlowData *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeconvolvedFlowData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeconvolvedFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolutionSingleOutput(struct soap*, const char*, int, const prodml22__DeconvolutionSingleOutput *, const char*); -SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml22__DeconvolutionSingleOutput(struct soap*, const char*, prodml22__DeconvolutionSingleOutput *, const char*); -SOAP_FMAC1 prodml22__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionSingleOutput(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolutionSingleOutput(struct soap*, const char*, int, const prodml23__DeconvolutionSingleOutput *, const char*); +SOAP_FMAC3 prodml23__DeconvolutionSingleOutput * SOAP_FMAC4 soap_in_prodml23__DeconvolutionSingleOutput(struct soap*, const char*, prodml23__DeconvolutionSingleOutput *, const char*); +SOAP_FMAC1 prodml23__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionSingleOutput(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeconvolutionSingleOutput * soap_new_prodml22__DeconvolutionSingleOutput(struct soap *soap, int n = -1) +inline prodml23__DeconvolutionSingleOutput * soap_new_prodml23__DeconvolutionSingleOutput(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeconvolutionSingleOutput(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeconvolutionSingleOutput(soap, n, NULL, NULL, NULL); } -inline prodml22__DeconvolutionSingleOutput * soap_new_req_prodml22__DeconvolutionSingleOutput( +inline prodml23__DeconvolutionSingleOutput * soap_new_req_prodml23__DeconvolutionSingleOutput( struct soap *soap, - prodml22__DeconvolutionOutput *DeconvolutionSingleOutput) + prodml23__DeconvolutionOutput *DeconvolutionSingleOutput) { - prodml22__DeconvolutionSingleOutput *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolutionSingleOutput(soap); + prodml23__DeconvolutionSingleOutput *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolutionSingleOutput(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput = DeconvolutionSingleOutput; + _p->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput = DeconvolutionSingleOutput; } return _p; } -inline prodml22__DeconvolutionSingleOutput * soap_new_set_prodml22__DeconvolutionSingleOutput( +inline prodml23__DeconvolutionSingleOutput * soap_new_set_prodml23__DeconvolutionSingleOutput( struct soap *soap, - prodml22__DeconvolutionOutput *DeconvolutionSingleOutput) + prodml23__DeconvolutionOutput *DeconvolutionSingleOutput) { - prodml22__DeconvolutionSingleOutput *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolutionSingleOutput(soap); + prodml23__DeconvolutionSingleOutput *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolutionSingleOutput(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolutionSingleOutput::DeconvolutionSingleOutput = DeconvolutionSingleOutput; + _p->prodml23__DeconvolutionSingleOutput::DeconvolutionSingleOutput = DeconvolutionSingleOutput; } return _p; } -inline int soap_write_prodml22__DeconvolutionSingleOutput(struct soap *soap, prodml22__DeconvolutionSingleOutput const*p) +inline int soap_write_prodml23__DeconvolutionSingleOutput(struct soap *soap, prodml23__DeconvolutionSingleOutput const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput ? "prodml22:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput ? "prodml23:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionSingleOutput const*p) +inline int soap_PUT_prodml23__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionSingleOutput const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput ? "prodml22:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput ? "prodml23:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionSingleOutput const*p) +inline int soap_PATCH_prodml23__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionSingleOutput const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput ? "prodml22:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput ? "prodml23:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionSingleOutput const*p) +inline int soap_POST_send_prodml23__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionSingleOutput const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput ? "prodml22:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionSingleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput ? "prodml23:DeconvolutionSingleOutput" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeconvolutionSingleOutput * SOAP_FMAC4 soap_get_prodml22__DeconvolutionSingleOutput(struct soap*, prodml22__DeconvolutionSingleOutput *, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolutionSingleOutput * SOAP_FMAC4 soap_get_prodml23__DeconvolutionSingleOutput(struct soap*, prodml23__DeconvolutionSingleOutput *, const char*, const char*); -inline int soap_read_prodml22__DeconvolutionSingleOutput(struct soap *soap, prodml22__DeconvolutionSingleOutput *p) +inline int soap_read_prodml23__DeconvolutionSingleOutput(struct soap *soap, prodml23__DeconvolutionSingleOutput *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeconvolutionSingleOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeconvolutionSingleOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionSingleOutput *p) +inline int soap_GET_prodml23__DeconvolutionSingleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionSingleOutput *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeconvolutionSingleOutput(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeconvolutionSingleOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeconvolutionSingleOutput(struct soap *soap, prodml22__DeconvolutionSingleOutput *p) +inline int soap_POST_recv_prodml23__DeconvolutionSingleOutput(struct soap *soap, prodml23__DeconvolutionSingleOutput *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeconvolutionSingleOutput(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeconvolutionSingleOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolutionOutput(struct soap*, const char*, int, const prodml22__DeconvolutionOutput *, const char*); -SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__DeconvolutionOutput(struct soap*, const char*, prodml22__DeconvolutionOutput *, const char*); -SOAP_FMAC1 prodml22__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolutionOutput(struct soap*, const char*, int, const prodml23__DeconvolutionOutput *, const char*); +SOAP_FMAC3 prodml23__DeconvolutionOutput * SOAP_FMAC4 soap_in_prodml23__DeconvolutionOutput(struct soap*, const char*, prodml23__DeconvolutionOutput *, const char*); +SOAP_FMAC1 prodml23__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeconvolutionOutput * soap_new_prodml22__DeconvolutionOutput(struct soap *soap, int n = -1) +inline prodml23__DeconvolutionOutput * soap_new_prodml23__DeconvolutionOutput(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeconvolutionOutput(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeconvolutionOutput(soap, n, NULL, NULL, NULL); } -inline prodml22__DeconvolutionOutput * soap_new_req_prodml22__DeconvolutionOutput( +inline prodml23__DeconvolutionOutput * soap_new_req_prodml23__DeconvolutionOutput( struct soap *soap, eml23__VolumePerTimeMeasure *DeconvolutionReferenceFlowrateValue) { - prodml22__DeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolutionOutput(soap); + prodml23__DeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolutionOutput(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue = DeconvolutionReferenceFlowrateValue; + _p->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue = DeconvolutionReferenceFlowrateValue; } return _p; } -inline prodml22__DeconvolutionOutput * soap_new_set_prodml22__DeconvolutionOutput( +inline prodml23__DeconvolutionOutput * soap_new_set_prodml23__DeconvolutionOutput( struct soap *soap, - prodml22__DeconvolvedPressureData *DeconvolvedPressure, + prodml23__DeconvolvedPressureData *DeconvolvedPressure, eml23__VolumePerTimeMeasure *DeconvolutionReferenceFlowrateValue) { - prodml22__DeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolutionOutput(soap); + prodml23__DeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolutionOutput(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolutionOutput::DeconvolvedPressure = DeconvolvedPressure; - _p->prodml22__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue = DeconvolutionReferenceFlowrateValue; + _p->prodml23__DeconvolutionOutput::DeconvolvedPressure = DeconvolvedPressure; + _p->prodml23__DeconvolutionOutput::DeconvolutionReferenceFlowrateValue = DeconvolutionReferenceFlowrateValue; } return _p; } -inline int soap_write_prodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput const*p) +inline int soap_write_prodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput ? "prodml22:DeconvolutionOutput" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput ? "prodml23:DeconvolutionOutput" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeconvolutionOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionOutput const*p) +inline int soap_PUT_prodml23__DeconvolutionOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput ? "prodml22:DeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput ? "prodml23:DeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeconvolutionOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionOutput const*p) +inline int soap_PATCH_prodml23__DeconvolutionOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput ? "prodml22:DeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput ? "prodml23:DeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeconvolutionOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionOutput const*p) +inline int soap_POST_send_prodml23__DeconvolutionOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput ? "prodml22:DeconvolutionOutput" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput ? "prodml23:DeconvolutionOutput" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeconvolutionOutput * SOAP_FMAC4 soap_get_prodml22__DeconvolutionOutput(struct soap*, prodml22__DeconvolutionOutput *, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolutionOutput * SOAP_FMAC4 soap_get_prodml23__DeconvolutionOutput(struct soap*, prodml23__DeconvolutionOutput *, const char*, const char*); -inline int soap_read_prodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput *p) +inline int soap_read_prodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeconvolutionOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeconvolutionOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeconvolutionOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionOutput *p) +inline int soap_GET_prodml23__DeconvolutionOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionOutput *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeconvolutionOutput(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeconvolutionOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeconvolutionOutput(struct soap *soap, prodml22__DeconvolutionOutput *p) +inline int soap_POST_recv_prodml23__DeconvolutionOutput(struct soap *soap, prodml23__DeconvolutionOutput *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeconvolutionOutput(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeconvolutionOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeconvolutionMultipleOutput(struct soap*, const char*, int, const prodml22__DeconvolutionMultipleOutput *, const char*); -SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml22__DeconvolutionMultipleOutput(struct soap*, const char*, prodml22__DeconvolutionMultipleOutput *, const char*); -SOAP_FMAC1 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionMultipleOutput(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeconvolutionMultipleOutput(struct soap*, const char*, int, const prodml23__DeconvolutionMultipleOutput *, const char*); +SOAP_FMAC3 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_in_prodml23__DeconvolutionMultipleOutput(struct soap*, const char*, prodml23__DeconvolutionMultipleOutput *, const char*); +SOAP_FMAC1 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionMultipleOutput(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeconvolutionMultipleOutput * soap_new_prodml22__DeconvolutionMultipleOutput(struct soap *soap, int n = -1) +inline prodml23__DeconvolutionMultipleOutput * soap_new_prodml23__DeconvolutionMultipleOutput(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeconvolutionMultipleOutput(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeconvolutionMultipleOutput(soap, n, NULL, NULL, NULL); } -inline prodml22__DeconvolutionMultipleOutput * soap_new_req_prodml22__DeconvolutionMultipleOutput( +inline prodml23__DeconvolutionMultipleOutput * soap_new_req_prodml23__DeconvolutionMultipleOutput( struct soap *soap, const std::string& TestPeriodOutputRefId, - prodml22__DeconvolutionOutput *DeconvolutionMultipleOutput) + prodml23__DeconvolutionOutput *DeconvolutionMultipleOutput) { - prodml22__DeconvolutionMultipleOutput *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolutionMultipleOutput(soap); + prodml23__DeconvolutionMultipleOutput *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolutionMultipleOutput(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId = TestPeriodOutputRefId; - _p->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput = DeconvolutionMultipleOutput; + _p->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId = TestPeriodOutputRefId; + _p->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput = DeconvolutionMultipleOutput; } return _p; } -inline prodml22__DeconvolutionMultipleOutput * soap_new_set_prodml22__DeconvolutionMultipleOutput( +inline prodml23__DeconvolutionMultipleOutput * soap_new_set_prodml23__DeconvolutionMultipleOutput( struct soap *soap, const std::string& TestPeriodOutputRefId, - prodml22__DeconvolutionOutput *DeconvolutionMultipleOutput) + prodml23__DeconvolutionOutput *DeconvolutionMultipleOutput) { - prodml22__DeconvolutionMultipleOutput *_p = gsoap_eml2_3::soap_new_prodml22__DeconvolutionMultipleOutput(soap); + prodml23__DeconvolutionMultipleOutput *_p = gsoap_eml2_3::soap_new_prodml23__DeconvolutionMultipleOutput(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeconvolutionMultipleOutput::TestPeriodOutputRefId = TestPeriodOutputRefId; - _p->prodml22__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput = DeconvolutionMultipleOutput; + _p->prodml23__DeconvolutionMultipleOutput::TestPeriodOutputRefId = TestPeriodOutputRefId; + _p->prodml23__DeconvolutionMultipleOutput::DeconvolutionMultipleOutput = DeconvolutionMultipleOutput; } return _p; } -inline int soap_write_prodml22__DeconvolutionMultipleOutput(struct soap *soap, prodml22__DeconvolutionMultipleOutput const*p) +inline int soap_write_prodml23__DeconvolutionMultipleOutput(struct soap *soap, prodml23__DeconvolutionMultipleOutput const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput ? "prodml22:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput ? "prodml23:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionMultipleOutput const*p) +inline int soap_PUT_prodml23__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionMultipleOutput const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput ? "prodml22:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput ? "prodml23:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionMultipleOutput const*p) +inline int soap_PATCH_prodml23__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionMultipleOutput const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput ? "prodml22:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput ? "prodml23:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionMultipleOutput const*p) +inline int soap_POST_send_prodml23__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionMultipleOutput const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput ? "prodml22:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeconvolutionMultipleOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput ? "prodml23:DeconvolutionMultipleOutput" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_get_prodml22__DeconvolutionMultipleOutput(struct soap*, prodml22__DeconvolutionMultipleOutput *, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC4 soap_get_prodml23__DeconvolutionMultipleOutput(struct soap*, prodml23__DeconvolutionMultipleOutput *, const char*, const char*); -inline int soap_read_prodml22__DeconvolutionMultipleOutput(struct soap *soap, prodml22__DeconvolutionMultipleOutput *p) +inline int soap_read_prodml23__DeconvolutionMultipleOutput(struct soap *soap, prodml23__DeconvolutionMultipleOutput *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeconvolutionMultipleOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeconvolutionMultipleOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml22__DeconvolutionMultipleOutput *p) +inline int soap_GET_prodml23__DeconvolutionMultipleOutput(struct soap *soap, const char *URL, prodml23__DeconvolutionMultipleOutput *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeconvolutionMultipleOutput(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeconvolutionMultipleOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeconvolutionMultipleOutput(struct soap *soap, prodml22__DeconvolutionMultipleOutput *p) +inline int soap_POST_recv_prodml23__DeconvolutionMultipleOutput(struct soap *soap, prodml23__DeconvolutionMultipleOutput *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeconvolutionMultipleOutput(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeconvolutionMultipleOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CompressibilityParameters(struct soap*, const char*, int, const prodml22__CompressibilityParameters *, const char*); -SOAP_FMAC3 prodml22__CompressibilityParameters * SOAP_FMAC4 soap_in_prodml22__CompressibilityParameters(struct soap*, const char*, prodml22__CompressibilityParameters *, const char*); -SOAP_FMAC1 prodml22__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_prodml22__CompressibilityParameters(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CompressibilityParameters(struct soap*, const char*, int, const prodml23__CompressibilityParameters *, const char*); +SOAP_FMAC3 prodml23__CompressibilityParameters * SOAP_FMAC4 soap_in_prodml23__CompressibilityParameters(struct soap*, const char*, prodml23__CompressibilityParameters *, const char*); +SOAP_FMAC1 prodml23__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_prodml23__CompressibilityParameters(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CompressibilityParameters * soap_new_prodml22__CompressibilityParameters(struct soap *soap, int n = -1) +inline prodml23__CompressibilityParameters * soap_new_prodml23__CompressibilityParameters(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CompressibilityParameters(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CompressibilityParameters(soap, n, NULL, NULL, NULL); } -inline prodml22__CompressibilityParameters * soap_new_req_prodml22__CompressibilityParameters( +inline prodml23__CompressibilityParameters * soap_new_req_prodml23__CompressibilityParameters( struct soap *soap) { - prodml22__CompressibilityParameters *_p = gsoap_eml2_3::soap_new_prodml22__CompressibilityParameters(soap); + prodml23__CompressibilityParameters *_p = gsoap_eml2_3::soap_new_prodml23__CompressibilityParameters(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__CompressibilityParameters * soap_new_set_prodml22__CompressibilityParameters( +inline prodml23__CompressibilityParameters * soap_new_set_prodml23__CompressibilityParameters( struct soap *soap, eml23__ReciprocalPressureMeasureExt *FormationCompressibility, eml23__VolumePerVolumeMeasure *OilPhaseSaturation, @@ -120188,389 +120180,389 @@ inline prodml22__CompressibilityParameters * soap_new_set_prodml22__Compressibil eml23__VolumePerVolumeMeasure *WaterPhaseSaturation, eml23__ReciprocalPressureMeasureExt *TotalCompressibility) { - prodml22__CompressibilityParameters *_p = gsoap_eml2_3::soap_new_prodml22__CompressibilityParameters(soap); + prodml23__CompressibilityParameters *_p = gsoap_eml2_3::soap_new_prodml23__CompressibilityParameters(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CompressibilityParameters::FormationCompressibility = FormationCompressibility; - _p->prodml22__CompressibilityParameters::OilPhaseSaturation = OilPhaseSaturation; - _p->prodml22__CompressibilityParameters::GasPhaseSaturation = GasPhaseSaturation; - _p->prodml22__CompressibilityParameters::WaterPhaseSaturation = WaterPhaseSaturation; - _p->prodml22__CompressibilityParameters::TotalCompressibility = TotalCompressibility; + _p->prodml23__CompressibilityParameters::FormationCompressibility = FormationCompressibility; + _p->prodml23__CompressibilityParameters::OilPhaseSaturation = OilPhaseSaturation; + _p->prodml23__CompressibilityParameters::GasPhaseSaturation = GasPhaseSaturation; + _p->prodml23__CompressibilityParameters::WaterPhaseSaturation = WaterPhaseSaturation; + _p->prodml23__CompressibilityParameters::TotalCompressibility = TotalCompressibility; } return _p; } -inline int soap_write_prodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters const*p) +inline int soap_write_prodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters ? "prodml22:CompressibilityParameters" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters ? "prodml23:CompressibilityParameters" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CompressibilityParameters(struct soap *soap, const char *URL, prodml22__CompressibilityParameters const*p) +inline int soap_PUT_prodml23__CompressibilityParameters(struct soap *soap, const char *URL, prodml23__CompressibilityParameters const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters ? "prodml22:CompressibilityParameters" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters ? "prodml23:CompressibilityParameters" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CompressibilityParameters(struct soap *soap, const char *URL, prodml22__CompressibilityParameters const*p) +inline int soap_PATCH_prodml23__CompressibilityParameters(struct soap *soap, const char *URL, prodml23__CompressibilityParameters const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters ? "prodml22:CompressibilityParameters" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters ? "prodml23:CompressibilityParameters" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CompressibilityParameters(struct soap *soap, const char *URL, prodml22__CompressibilityParameters const*p) +inline int soap_POST_send_prodml23__CompressibilityParameters(struct soap *soap, const char *URL, prodml23__CompressibilityParameters const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters ? "prodml22:CompressibilityParameters" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompressibilityParameters", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters ? "prodml23:CompressibilityParameters" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CompressibilityParameters * SOAP_FMAC4 soap_get_prodml22__CompressibilityParameters(struct soap*, prodml22__CompressibilityParameters *, const char*, const char*); +SOAP_FMAC3 prodml23__CompressibilityParameters * SOAP_FMAC4 soap_get_prodml23__CompressibilityParameters(struct soap*, prodml23__CompressibilityParameters *, const char*, const char*); -inline int soap_read_prodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters *p) +inline int soap_read_prodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CompressibilityParameters(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CompressibilityParameters(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CompressibilityParameters(struct soap *soap, const char *URL, prodml22__CompressibilityParameters *p) +inline int soap_GET_prodml23__CompressibilityParameters(struct soap *soap, const char *URL, prodml23__CompressibilityParameters *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CompressibilityParameters(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CompressibilityParameters(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CompressibilityParameters(struct soap *soap, prodml22__CompressibilityParameters *p) +inline int soap_POST_recv_prodml23__CompressibilityParameters(struct soap *soap, prodml23__CompressibilityParameters *p) { - if (gsoap_eml2_3::soap_read_prodml22__CompressibilityParameters(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CompressibilityParameters(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChannelFlowrateData(struct soap*, const char*, int, const prodml22__ChannelFlowrateData *, const char*); -SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml22__ChannelFlowrateData(struct soap*, const char*, prodml22__ChannelFlowrateData *, const char*); -SOAP_FMAC1 prodml22__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__ChannelFlowrateData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChannelFlowrateData(struct soap*, const char*, int, const prodml23__ChannelFlowrateData *, const char*); +SOAP_FMAC3 prodml23__ChannelFlowrateData * SOAP_FMAC4 soap_in_prodml23__ChannelFlowrateData(struct soap*, const char*, prodml23__ChannelFlowrateData *, const char*); +SOAP_FMAC1 prodml23__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__ChannelFlowrateData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ChannelFlowrateData * soap_new_prodml22__ChannelFlowrateData(struct soap *soap, int n = -1) +inline prodml23__ChannelFlowrateData * soap_new_prodml23__ChannelFlowrateData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ChannelFlowrateData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ChannelFlowrateData(soap, n, NULL, NULL, NULL); } -inline prodml22__ChannelFlowrateData * soap_new_req_prodml22__ChannelFlowrateData( +inline prodml23__ChannelFlowrateData * soap_new_req_prodml23__ChannelFlowrateData( struct soap *soap, - prodml22__AbstractPtaFlowData *InputFlowrate) + prodml23__AbstractPtaFlowData *InputFlowrate) { - prodml22__ChannelFlowrateData *_p = gsoap_eml2_3::soap_new_prodml22__ChannelFlowrateData(soap); + prodml23__ChannelFlowrateData *_p = gsoap_eml2_3::soap_new_prodml23__ChannelFlowrateData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChannelFlowrateData::InputFlowrate = InputFlowrate; + _p->prodml23__ChannelFlowrateData::InputFlowrate = InputFlowrate; } return _p; } -inline prodml22__ChannelFlowrateData * soap_new_set_prodml22__ChannelFlowrateData( +inline prodml23__ChannelFlowrateData * soap_new_set_prodml23__ChannelFlowrateData( struct soap *soap, - prodml22__AbstractPtaFlowData *InputFlowrate) + prodml23__AbstractPtaFlowData *InputFlowrate) { - prodml22__ChannelFlowrateData *_p = gsoap_eml2_3::soap_new_prodml22__ChannelFlowrateData(soap); + prodml23__ChannelFlowrateData *_p = gsoap_eml2_3::soap_new_prodml23__ChannelFlowrateData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChannelFlowrateData::InputFlowrate = InputFlowrate; + _p->prodml23__ChannelFlowrateData::InputFlowrate = InputFlowrate; } return _p; } -inline int soap_write_prodml22__ChannelFlowrateData(struct soap *soap, prodml22__ChannelFlowrateData const*p) +inline int soap_write_prodml23__ChannelFlowrateData(struct soap *soap, prodml23__ChannelFlowrateData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData ? "prodml22:ChannelFlowrateData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData ? "prodml23:ChannelFlowrateData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ChannelFlowrateData(struct soap *soap, const char *URL, prodml22__ChannelFlowrateData const*p) +inline int soap_PUT_prodml23__ChannelFlowrateData(struct soap *soap, const char *URL, prodml23__ChannelFlowrateData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData ? "prodml22:ChannelFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData ? "prodml23:ChannelFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ChannelFlowrateData(struct soap *soap, const char *URL, prodml22__ChannelFlowrateData const*p) +inline int soap_PATCH_prodml23__ChannelFlowrateData(struct soap *soap, const char *URL, prodml23__ChannelFlowrateData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData ? "prodml22:ChannelFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData ? "prodml23:ChannelFlowrateData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ChannelFlowrateData(struct soap *soap, const char *URL, prodml22__ChannelFlowrateData const*p) +inline int soap_POST_send_prodml23__ChannelFlowrateData(struct soap *soap, const char *URL, prodml23__ChannelFlowrateData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData ? "prodml22:ChannelFlowrateData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelFlowrateData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData ? "prodml23:ChannelFlowrateData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ChannelFlowrateData * SOAP_FMAC4 soap_get_prodml22__ChannelFlowrateData(struct soap*, prodml22__ChannelFlowrateData *, const char*, const char*); +SOAP_FMAC3 prodml23__ChannelFlowrateData * SOAP_FMAC4 soap_get_prodml23__ChannelFlowrateData(struct soap*, prodml23__ChannelFlowrateData *, const char*, const char*); -inline int soap_read_prodml22__ChannelFlowrateData(struct soap *soap, prodml22__ChannelFlowrateData *p) +inline int soap_read_prodml23__ChannelFlowrateData(struct soap *soap, prodml23__ChannelFlowrateData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ChannelFlowrateData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ChannelFlowrateData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ChannelFlowrateData(struct soap *soap, const char *URL, prodml22__ChannelFlowrateData *p) +inline int soap_GET_prodml23__ChannelFlowrateData(struct soap *soap, const char *URL, prodml23__ChannelFlowrateData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ChannelFlowrateData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ChannelFlowrateData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ChannelFlowrateData(struct soap *soap, prodml22__ChannelFlowrateData *p) +inline int soap_POST_recv_prodml23__ChannelFlowrateData(struct soap *soap, prodml23__ChannelFlowrateData *p) { - if (gsoap_eml2_3::soap_read_prodml22__ChannelFlowrateData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ChannelFlowrateData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AnalysisLine(struct soap*, const char*, int, const prodml22__AnalysisLine *, const char*); -SOAP_FMAC3 prodml22__AnalysisLine * SOAP_FMAC4 soap_in_prodml22__AnalysisLine(struct soap*, const char*, prodml22__AnalysisLine *, const char*); -SOAP_FMAC1 prodml22__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml22__AnalysisLine(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AnalysisLine(struct soap*, const char*, int, const prodml23__AnalysisLine *, const char*); +SOAP_FMAC3 prodml23__AnalysisLine * SOAP_FMAC4 soap_in_prodml23__AnalysisLine(struct soap*, const char*, prodml23__AnalysisLine *, const char*); +SOAP_FMAC1 prodml23__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml23__AnalysisLine(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AnalysisLine * soap_new_prodml22__AnalysisLine(struct soap *soap, int n = -1) +inline prodml23__AnalysisLine * soap_new_prodml23__AnalysisLine(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AnalysisLine(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AnalysisLine(soap, n, NULL, NULL, NULL); } -inline prodml22__AnalysisLine * soap_new_req_prodml22__AnalysisLine( +inline prodml23__AnalysisLine * soap_new_req_prodml23__AnalysisLine( struct soap *soap, const std::string& LineName, double Slope, double Intercept) { - prodml22__AnalysisLine *_p = gsoap_eml2_3::soap_new_prodml22__AnalysisLine(soap); + prodml23__AnalysisLine *_p = gsoap_eml2_3::soap_new_prodml23__AnalysisLine(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AnalysisLine::LineName = LineName; - _p->prodml22__AnalysisLine::Slope = Slope; - _p->prodml22__AnalysisLine::Intercept = Intercept; + _p->prodml23__AnalysisLine::LineName = LineName; + _p->prodml23__AnalysisLine::Slope = Slope; + _p->prodml23__AnalysisLine::Intercept = Intercept; } return _p; } -inline prodml22__AnalysisLine * soap_new_set_prodml22__AnalysisLine( +inline prodml23__AnalysisLine * soap_new_set_prodml23__AnalysisLine( struct soap *soap, const std::string& LineName, double Slope, double Intercept, std::string *Remark) { - prodml22__AnalysisLine *_p = gsoap_eml2_3::soap_new_prodml22__AnalysisLine(soap); + prodml23__AnalysisLine *_p = gsoap_eml2_3::soap_new_prodml23__AnalysisLine(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AnalysisLine::LineName = LineName; - _p->prodml22__AnalysisLine::Slope = Slope; - _p->prodml22__AnalysisLine::Intercept = Intercept; - _p->prodml22__AnalysisLine::Remark = Remark; + _p->prodml23__AnalysisLine::LineName = LineName; + _p->prodml23__AnalysisLine::Slope = Slope; + _p->prodml23__AnalysisLine::Intercept = Intercept; + _p->prodml23__AnalysisLine::Remark = Remark; } return _p; } -inline int soap_write_prodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine const*p) +inline int soap_write_prodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine ? "prodml22:AnalysisLine" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine ? "prodml23:AnalysisLine" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AnalysisLine(struct soap *soap, const char *URL, prodml22__AnalysisLine const*p) +inline int soap_PUT_prodml23__AnalysisLine(struct soap *soap, const char *URL, prodml23__AnalysisLine const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine ? "prodml22:AnalysisLine" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine ? "prodml23:AnalysisLine" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AnalysisLine(struct soap *soap, const char *URL, prodml22__AnalysisLine const*p) +inline int soap_PATCH_prodml23__AnalysisLine(struct soap *soap, const char *URL, prodml23__AnalysisLine const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine ? "prodml22:AnalysisLine" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine ? "prodml23:AnalysisLine" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AnalysisLine(struct soap *soap, const char *URL, prodml22__AnalysisLine const*p) +inline int soap_POST_send_prodml23__AnalysisLine(struct soap *soap, const char *URL, prodml23__AnalysisLine const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine ? "prodml22:AnalysisLine" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AnalysisLine", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine ? "prodml23:AnalysisLine" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AnalysisLine * SOAP_FMAC4 soap_get_prodml22__AnalysisLine(struct soap*, prodml22__AnalysisLine *, const char*, const char*); +SOAP_FMAC3 prodml23__AnalysisLine * SOAP_FMAC4 soap_get_prodml23__AnalysisLine(struct soap*, prodml23__AnalysisLine *, const char*, const char*); -inline int soap_read_prodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine *p) +inline int soap_read_prodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AnalysisLine(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AnalysisLine(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AnalysisLine(struct soap *soap, const char *URL, prodml22__AnalysisLine *p) +inline int soap_GET_prodml23__AnalysisLine(struct soap *soap, const char *URL, prodml23__AnalysisLine *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AnalysisLine(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AnalysisLine(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AnalysisLine(struct soap *soap, prodml22__AnalysisLine *p) +inline int soap_POST_recv_prodml23__AnalysisLine(struct soap *soap, prodml23__AnalysisLine *p) { - if (gsoap_eml2_3::soap_read_prodml22__AnalysisLine(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AnalysisLine(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractRateHistory(struct soap*, const char*, int, const prodml22__AbstractRateHistory *, const char*); -SOAP_FMAC3 prodml22__AbstractRateHistory * SOAP_FMAC4 soap_in_prodml22__AbstractRateHistory(struct soap*, const char*, prodml22__AbstractRateHistory *, const char*); -SOAP_FMAC1 prodml22__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRateHistory(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractRateHistory(struct soap*, const char*, int, const prodml23__AbstractRateHistory *, const char*); +SOAP_FMAC3 prodml23__AbstractRateHistory * SOAP_FMAC4 soap_in_prodml23__AbstractRateHistory(struct soap*, const char*, prodml23__AbstractRateHistory *, const char*); +SOAP_FMAC1 prodml23__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRateHistory(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractRateHistory * soap_new_prodml22__AbstractRateHistory(struct soap *soap, int n = -1) +inline prodml23__AbstractRateHistory * soap_new_prodml23__AbstractRateHistory(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractRateHistory(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractRateHistory(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractRateHistory * soap_new_req_prodml22__AbstractRateHistory( +inline prodml23__AbstractRateHistory * soap_new_req_prodml23__AbstractRateHistory( struct soap *soap) { - prodml22__AbstractRateHistory *_p = gsoap_eml2_3::soap_new_prodml22__AbstractRateHistory(soap); + prodml23__AbstractRateHistory *_p = gsoap_eml2_3::soap_new_prodml23__AbstractRateHistory(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractRateHistory * soap_new_set_prodml22__AbstractRateHistory( +inline prodml23__AbstractRateHistory * soap_new_set_prodml23__AbstractRateHistory( struct soap *soap) { - prodml22__AbstractRateHistory *_p = gsoap_eml2_3::soap_new_prodml22__AbstractRateHistory(soap); + prodml23__AbstractRateHistory *_p = gsoap_eml2_3::soap_new_prodml23__AbstractRateHistory(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory const*p) +inline int soap_write_prodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory ? "prodml22:AbstractRateHistory" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory ? "prodml23:AbstractRateHistory" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractRateHistory(struct soap *soap, const char *URL, prodml22__AbstractRateHistory const*p) +inline int soap_PUT_prodml23__AbstractRateHistory(struct soap *soap, const char *URL, prodml23__AbstractRateHistory const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory ? "prodml22:AbstractRateHistory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory ? "prodml23:AbstractRateHistory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractRateHistory(struct soap *soap, const char *URL, prodml22__AbstractRateHistory const*p) +inline int soap_PATCH_prodml23__AbstractRateHistory(struct soap *soap, const char *URL, prodml23__AbstractRateHistory const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory ? "prodml22:AbstractRateHistory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory ? "prodml23:AbstractRateHistory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractRateHistory(struct soap *soap, const char *URL, prodml22__AbstractRateHistory const*p) +inline int soap_POST_send_prodml23__AbstractRateHistory(struct soap *soap, const char *URL, prodml23__AbstractRateHistory const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory ? "prodml22:AbstractRateHistory" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractRateHistory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory ? "prodml23:AbstractRateHistory" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractRateHistory * SOAP_FMAC4 soap_get_prodml22__AbstractRateHistory(struct soap*, prodml22__AbstractRateHistory *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractRateHistory * SOAP_FMAC4 soap_get_prodml23__AbstractRateHistory(struct soap*, prodml23__AbstractRateHistory *, const char*, const char*); -inline int soap_read_prodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory *p) +inline int soap_read_prodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractRateHistory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractRateHistory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractRateHistory(struct soap *soap, const char *URL, prodml22__AbstractRateHistory *p) +inline int soap_GET_prodml23__AbstractRateHistory(struct soap *soap, const char *URL, prodml23__AbstractRateHistory *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractRateHistory(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractRateHistory(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractRateHistory(struct soap *soap, prodml22__AbstractRateHistory *p) +inline int soap_POST_recv_prodml23__AbstractRateHistory(struct soap *soap, prodml23__AbstractRateHistory *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractRateHistory(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractRateHistory(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractPtaPressureData(struct soap*, const char*, int, const prodml22__AbstractPtaPressureData *, const char*); -SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml22__AbstractPtaPressureData(struct soap*, const char*, prodml22__AbstractPtaPressureData *, const char*); -SOAP_FMAC1 prodml22__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPtaPressureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractPtaPressureData(struct soap*, const char*, int, const prodml23__AbstractPtaPressureData *, const char*); +SOAP_FMAC3 prodml23__AbstractPtaPressureData * SOAP_FMAC4 soap_in_prodml23__AbstractPtaPressureData(struct soap*, const char*, prodml23__AbstractPtaPressureData *, const char*); +SOAP_FMAC1 prodml23__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPtaPressureData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractPtaPressureData * soap_new_prodml22__AbstractPtaPressureData(struct soap *soap, int n = -1) +inline prodml23__AbstractPtaPressureData * soap_new_prodml23__AbstractPtaPressureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractPtaPressureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractPtaPressureData(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractPtaPressureData * soap_new_req_prodml22__AbstractPtaPressureData( +inline prodml23__AbstractPtaPressureData * soap_new_req_prodml23__AbstractPtaPressureData( struct soap *soap, eml23__DataObjectReference *PressureChannel, eml23__DataObjectReference *ChannelSet__1, eml23__DataObjectReference *TimeChannel__1) { - prodml22__AbstractPtaPressureData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractPtaPressureData(soap); + prodml23__AbstractPtaPressureData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractPtaPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__1; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__1; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__1; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__1; } return _p; } -inline prodml22__AbstractPtaPressureData * soap_new_set_prodml22__AbstractPtaPressureData( +inline prodml23__AbstractPtaPressureData * soap_new_set_prodml23__AbstractPtaPressureData( struct soap *soap, eml23__DataObjectReference *PressureChannel, eml23__DataObjectReference *PressureDerivativeChannel, @@ -120578,385 +120570,385 @@ inline prodml22__AbstractPtaPressureData * soap_new_set_prodml22__AbstractPtaPre eml23__ReferencePointKind *Datum, eml23__DataObjectReference *ChannelSet__1, eml23__DataObjectReference *TimeChannel__1, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__1, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__1, std::string *Remark__1, std::string *uid__1) { - prodml22__AbstractPtaPressureData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractPtaPressureData(soap); + prodml23__AbstractPtaPressureData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractPtaPressureData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaPressureData::PressureChannel = PressureChannel; - _p->prodml22__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel; - _p->prodml22__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth; - _p->prodml22__AbstractPtaPressureData::Datum = Datum; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__1; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__1; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__1; - _p->prodml22__AbstractFlowTestData::Remark = Remark__1; - _p->prodml22__AbstractFlowTestData::uid = uid__1; + _p->prodml23__AbstractPtaPressureData::PressureChannel = PressureChannel; + _p->prodml23__AbstractPtaPressureData::PressureDerivativeChannel = PressureDerivativeChannel; + _p->prodml23__AbstractPtaPressureData::PressureReferenceDepth = PressureReferenceDepth; + _p->prodml23__AbstractPtaPressureData::Datum = Datum; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__1; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__1; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__1; + _p->prodml23__AbstractFlowTestData::Remark = Remark__1; + _p->prodml23__AbstractFlowTestData::uid = uid__1; } return _p; } -inline int soap_write_prodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData const*p) +inline int soap_write_prodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData ? "prodml22:AbstractPtaPressureData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData ? "prodml23:AbstractPtaPressureData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml22__AbstractPtaPressureData const*p) +inline int soap_PUT_prodml23__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml23__AbstractPtaPressureData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData ? "prodml22:AbstractPtaPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData ? "prodml23:AbstractPtaPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml22__AbstractPtaPressureData const*p) +inline int soap_PATCH_prodml23__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml23__AbstractPtaPressureData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData ? "prodml22:AbstractPtaPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData ? "prodml23:AbstractPtaPressureData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml22__AbstractPtaPressureData const*p) +inline int soap_POST_send_prodml23__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml23__AbstractPtaPressureData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData ? "prodml22:AbstractPtaPressureData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaPressureData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData ? "prodml23:AbstractPtaPressureData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractPtaPressureData * SOAP_FMAC4 soap_get_prodml22__AbstractPtaPressureData(struct soap*, prodml22__AbstractPtaPressureData *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractPtaPressureData * SOAP_FMAC4 soap_get_prodml23__AbstractPtaPressureData(struct soap*, prodml23__AbstractPtaPressureData *, const char*, const char*); -inline int soap_read_prodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData *p) +inline int soap_read_prodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractPtaPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractPtaPressureData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml22__AbstractPtaPressureData *p) +inline int soap_GET_prodml23__AbstractPtaPressureData(struct soap *soap, const char *URL, prodml23__AbstractPtaPressureData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractPtaPressureData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractPtaPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractPtaPressureData(struct soap *soap, prodml22__AbstractPtaPressureData *p) +inline int soap_POST_recv_prodml23__AbstractPtaPressureData(struct soap *soap, prodml23__AbstractPtaPressureData *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractPtaPressureData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractPtaPressureData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractDeconvolutionOutput(struct soap*, const char*, int, const prodml22__AbstractDeconvolutionOutput *, const char*); -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_in_prodml22__AbstractDeconvolutionOutput(struct soap*, const char*, prodml22__AbstractDeconvolutionOutput *, const char*); -SOAP_FMAC1 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22__AbstractDeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractDeconvolutionOutput(struct soap*, const char*, int, const prodml23__AbstractDeconvolutionOutput *, const char*); +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_in_prodml23__AbstractDeconvolutionOutput(struct soap*, const char*, prodml23__AbstractDeconvolutionOutput *, const char*); +SOAP_FMAC1 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml23__AbstractDeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractDeconvolutionOutput * soap_new_prodml22__AbstractDeconvolutionOutput(struct soap *soap, int n = -1) +inline prodml23__AbstractDeconvolutionOutput * soap_new_prodml23__AbstractDeconvolutionOutput(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractDeconvolutionOutput(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractDeconvolutionOutput(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractDeconvolutionOutput * soap_new_req_prodml22__AbstractDeconvolutionOutput( +inline prodml23__AbstractDeconvolutionOutput * soap_new_req_prodml23__AbstractDeconvolutionOutput( struct soap *soap) { - prodml22__AbstractDeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml22__AbstractDeconvolutionOutput(soap); + prodml23__AbstractDeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml23__AbstractDeconvolutionOutput(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractDeconvolutionOutput * soap_new_set_prodml22__AbstractDeconvolutionOutput( +inline prodml23__AbstractDeconvolutionOutput * soap_new_set_prodml23__AbstractDeconvolutionOutput( struct soap *soap) { - prodml22__AbstractDeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml22__AbstractDeconvolutionOutput(soap); + prodml23__AbstractDeconvolutionOutput *_p = gsoap_eml2_3::soap_new_prodml23__AbstractDeconvolutionOutput(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput const*p) +inline int soap_write_prodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput ? "prodml22:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput ? "prodml23:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml22__AbstractDeconvolutionOutput const*p) +inline int soap_PUT_prodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml23__AbstractDeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput ? "prodml22:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput ? "prodml23:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml22__AbstractDeconvolutionOutput const*p) +inline int soap_PATCH_prodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml23__AbstractDeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput ? "prodml22:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput ? "prodml23:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml22__AbstractDeconvolutionOutput const*p) +inline int soap_POST_send_prodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml23__AbstractDeconvolutionOutput const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput ? "prodml22:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDeconvolutionOutput", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput ? "prodml23:AbstractDeconvolutionOutput" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_get_prodml22__AbstractDeconvolutionOutput(struct soap*, prodml22__AbstractDeconvolutionOutput *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC4 soap_get_prodml23__AbstractDeconvolutionOutput(struct soap*, prodml23__AbstractDeconvolutionOutput *, const char*, const char*); -inline int soap_read_prodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput *p) +inline int soap_read_prodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractDeconvolutionOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractDeconvolutionOutput(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml22__AbstractDeconvolutionOutput *p) +inline int soap_GET_prodml23__AbstractDeconvolutionOutput(struct soap *soap, const char *URL, prodml23__AbstractDeconvolutionOutput *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractDeconvolutionOutput(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractDeconvolutionOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractDeconvolutionOutput(struct soap *soap, prodml22__AbstractDeconvolutionOutput *p) +inline int soap_POST_recv_prodml23__AbstractDeconvolutionOutput(struct soap *soap, prodml23__AbstractDeconvolutionOutput *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractDeconvolutionOutput(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractDeconvolutionOutput(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractAnalysis(struct soap*, const char*, int, const prodml22__AbstractAnalysis *, const char*); -SOAP_FMAC3 prodml22__AbstractAnalysis * SOAP_FMAC4 soap_in_prodml22__AbstractAnalysis(struct soap*, const char*, prodml22__AbstractAnalysis *, const char*); -SOAP_FMAC1 prodml22__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__AbstractAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractAnalysis(struct soap*, const char*, int, const prodml23__AbstractAnalysis *, const char*); +SOAP_FMAC3 prodml23__AbstractAnalysis * SOAP_FMAC4 soap_in_prodml23__AbstractAnalysis(struct soap*, const char*, prodml23__AbstractAnalysis *, const char*); +SOAP_FMAC1 prodml23__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__AbstractAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractAnalysis * soap_new_prodml22__AbstractAnalysis(struct soap *soap, int n = -1) +inline prodml23__AbstractAnalysis * soap_new_prodml23__AbstractAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractAnalysis * soap_new_req_prodml22__AbstractAnalysis( +inline prodml23__AbstractAnalysis * soap_new_req_prodml23__AbstractAnalysis( struct soap *soap) { - prodml22__AbstractAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__AbstractAnalysis(soap); + prodml23__AbstractAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__AbstractAnalysis(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractAnalysis * soap_new_set_prodml22__AbstractAnalysis( +inline prodml23__AbstractAnalysis * soap_new_set_prodml23__AbstractAnalysis( struct soap *soap) { - prodml22__AbstractAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__AbstractAnalysis(soap); + prodml23__AbstractAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__AbstractAnalysis(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis const*p) +inline int soap_write_prodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis ? "prodml22:AbstractAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis ? "prodml23:AbstractAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractAnalysis(struct soap *soap, const char *URL, prodml22__AbstractAnalysis const*p) +inline int soap_PUT_prodml23__AbstractAnalysis(struct soap *soap, const char *URL, prodml23__AbstractAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis ? "prodml22:AbstractAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis ? "prodml23:AbstractAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractAnalysis(struct soap *soap, const char *URL, prodml22__AbstractAnalysis const*p) +inline int soap_PATCH_prodml23__AbstractAnalysis(struct soap *soap, const char *URL, prodml23__AbstractAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis ? "prodml22:AbstractAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis ? "prodml23:AbstractAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractAnalysis(struct soap *soap, const char *URL, prodml22__AbstractAnalysis const*p) +inline int soap_POST_send_prodml23__AbstractAnalysis(struct soap *soap, const char *URL, prodml23__AbstractAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis ? "prodml22:AbstractAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis ? "prodml23:AbstractAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractAnalysis * SOAP_FMAC4 soap_get_prodml22__AbstractAnalysis(struct soap*, prodml22__AbstractAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractAnalysis * SOAP_FMAC4 soap_get_prodml23__AbstractAnalysis(struct soap*, prodml23__AbstractAnalysis *, const char*, const char*); -inline int soap_read_prodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis *p) +inline int soap_read_prodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractAnalysis(struct soap *soap, const char *URL, prodml22__AbstractAnalysis *p) +inline int soap_GET_prodml23__AbstractAnalysis(struct soap *soap, const char *URL, prodml23__AbstractAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractAnalysis(struct soap *soap, prodml22__AbstractAnalysis *p) +inline int soap_POST_recv_prodml23__AbstractAnalysis(struct soap *soap, prodml23__AbstractAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingHierarchyNode(struct soap*, const char*, int, const prodml22__ReportingHierarchyNode *, const char*); -SOAP_FMAC3 prodml22__ReportingHierarchyNode * SOAP_FMAC4 soap_in_prodml22__ReportingHierarchyNode(struct soap*, const char*, prodml22__ReportingHierarchyNode *, const char*); -SOAP_FMAC1 prodml22__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml22__ReportingHierarchyNode(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingHierarchyNode(struct soap*, const char*, int, const prodml23__ReportingHierarchyNode *, const char*); +SOAP_FMAC3 prodml23__ReportingHierarchyNode * SOAP_FMAC4 soap_in_prodml23__ReportingHierarchyNode(struct soap*, const char*, prodml23__ReportingHierarchyNode *, const char*); +SOAP_FMAC1 prodml23__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml23__ReportingHierarchyNode(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReportingHierarchyNode * soap_new_prodml22__ReportingHierarchyNode(struct soap *soap, int n = -1) +inline prodml23__ReportingHierarchyNode * soap_new_prodml23__ReportingHierarchyNode(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReportingHierarchyNode(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReportingHierarchyNode(soap, n, NULL, NULL, NULL); } -inline prodml22__ReportingHierarchyNode * soap_new_req_prodml22__ReportingHierarchyNode( +inline prodml23__ReportingHierarchyNode * soap_new_req_prodml23__ReportingHierarchyNode( struct soap *soap, const std::string& id, const std::string& name) { - prodml22__ReportingHierarchyNode *_p = gsoap_eml2_3::soap_new_prodml22__ReportingHierarchyNode(soap); + prodml23__ReportingHierarchyNode *_p = gsoap_eml2_3::soap_new_prodml23__ReportingHierarchyNode(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportingHierarchyNode::id = id; - _p->prodml22__ReportingHierarchyNode::name = name; + _p->prodml23__ReportingHierarchyNode::id = id; + _p->prodml23__ReportingHierarchyNode::name = name; } return _p; } -inline prodml22__ReportingHierarchyNode * soap_new_set_prodml22__ReportingHierarchyNode( +inline prodml23__ReportingHierarchyNode * soap_new_set_prodml23__ReportingHierarchyNode( struct soap *soap, - const std::vector & ChildNode, + const std::vector & ChildNode, eml23__DataObjectReference *ReportingEntity, const std::string& id, const std::string& name) { - prodml22__ReportingHierarchyNode *_p = gsoap_eml2_3::soap_new_prodml22__ReportingHierarchyNode(soap); + prodml23__ReportingHierarchyNode *_p = gsoap_eml2_3::soap_new_prodml23__ReportingHierarchyNode(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportingHierarchyNode::ChildNode = ChildNode; - _p->prodml22__ReportingHierarchyNode::ReportingEntity = ReportingEntity; - _p->prodml22__ReportingHierarchyNode::id = id; - _p->prodml22__ReportingHierarchyNode::name = name; + _p->prodml23__ReportingHierarchyNode::ChildNode = ChildNode; + _p->prodml23__ReportingHierarchyNode::ReportingEntity = ReportingEntity; + _p->prodml23__ReportingHierarchyNode::id = id; + _p->prodml23__ReportingHierarchyNode::name = name; } return _p; } -inline int soap_write_prodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode const*p) +inline int soap_write_prodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode ? "prodml22:ReportingHierarchyNode" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode ? "prodml23:ReportingHierarchyNode" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml22__ReportingHierarchyNode const*p) +inline int soap_PUT_prodml23__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml23__ReportingHierarchyNode const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode ? "prodml22:ReportingHierarchyNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode ? "prodml23:ReportingHierarchyNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml22__ReportingHierarchyNode const*p) +inline int soap_PATCH_prodml23__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml23__ReportingHierarchyNode const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode ? "prodml22:ReportingHierarchyNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode ? "prodml23:ReportingHierarchyNode" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml22__ReportingHierarchyNode const*p) +inline int soap_POST_send_prodml23__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml23__ReportingHierarchyNode const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode ? "prodml22:ReportingHierarchyNode" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchyNode", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode ? "prodml23:ReportingHierarchyNode" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingHierarchyNode * SOAP_FMAC4 soap_get_prodml22__ReportingHierarchyNode(struct soap*, prodml22__ReportingHierarchyNode *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingHierarchyNode * SOAP_FMAC4 soap_get_prodml23__ReportingHierarchyNode(struct soap*, prodml23__ReportingHierarchyNode *, const char*, const char*); -inline int soap_read_prodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode *p) +inline int soap_read_prodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingHierarchyNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingHierarchyNode(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml22__ReportingHierarchyNode *p) +inline int soap_GET_prodml23__ReportingHierarchyNode(struct soap *soap, const char *URL, prodml23__ReportingHierarchyNode *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingHierarchyNode(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingHierarchyNode(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingHierarchyNode(struct soap *soap, prodml22__ReportingHierarchyNode *p) +inline int soap_POST_recv_prodml23__ReportingHierarchyNode(struct soap *soap, prodml23__ReportingHierarchyNode *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingHierarchyNode(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingHierarchyNode(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingHierarchy(struct soap*, const char*, int, const prodml22__ReportingHierarchy *, const char*); -SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml22__ReportingHierarchy(struct soap*, const char*, prodml22__ReportingHierarchy *, const char*); -SOAP_FMAC1 prodml22__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml22__ReportingHierarchy(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingHierarchy(struct soap*, const char*, int, const prodml23__ReportingHierarchy *, const char*); +SOAP_FMAC3 prodml23__ReportingHierarchy * SOAP_FMAC4 soap_in_prodml23__ReportingHierarchy(struct soap*, const char*, prodml23__ReportingHierarchy *, const char*); +SOAP_FMAC1 prodml23__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml23__ReportingHierarchy(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReportingHierarchy * soap_new_prodml22__ReportingHierarchy(struct soap *soap, int n = -1) +inline prodml23__ReportingHierarchy * soap_new_prodml23__ReportingHierarchy(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReportingHierarchy(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReportingHierarchy(soap, n, NULL, NULL, NULL); } -inline prodml22__ReportingHierarchy * soap_new_req_prodml22__ReportingHierarchy( +inline prodml23__ReportingHierarchy * soap_new_req_prodml23__ReportingHierarchy( struct soap *soap, - const std::vector & ReportingNode, + const std::vector & ReportingNode, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__ReportingHierarchy *_p = gsoap_eml2_3::soap_new_prodml22__ReportingHierarchy(soap); + prodml23__ReportingHierarchy *_p = gsoap_eml2_3::soap_new_prodml23__ReportingHierarchy(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportingHierarchy::ReportingNode = ReportingNode; + _p->prodml23__ReportingHierarchy::ReportingNode = ReportingNode; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -120964,9 +120956,9 @@ inline prodml22__ReportingHierarchy * soap_new_req_prodml22__ReportingHierarchy( return _p; } -inline prodml22__ReportingHierarchy * soap_new_set_prodml22__ReportingHierarchy( +inline prodml23__ReportingHierarchy * soap_new_set_prodml23__ReportingHierarchy( struct soap *soap, - const std::vector & ReportingNode, + const std::vector & ReportingNode, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -120979,10 +120971,10 @@ inline prodml22__ReportingHierarchy * soap_new_set_prodml22__ReportingHierarchy( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__ReportingHierarchy *_p = gsoap_eml2_3::soap_new_prodml22__ReportingHierarchy(soap); + prodml23__ReportingHierarchy *_p = gsoap_eml2_3::soap_new_prodml23__ReportingHierarchy(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportingHierarchy::ReportingNode = ReportingNode; + _p->prodml23__ReportingHierarchy::ReportingNode = ReportingNode; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -120998,86 +120990,86 @@ inline prodml22__ReportingHierarchy * soap_new_set_prodml22__ReportingHierarchy( return _p; } -inline int soap_write_prodml22__ReportingHierarchy(struct soap *soap, prodml22__ReportingHierarchy const*p) +inline int soap_write_prodml23__ReportingHierarchy(struct soap *soap, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy ? "prodml22:ReportingHierarchy" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy ? "prodml23:ReportingHierarchy" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy const*p) +inline int soap_PUT_prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy ? "prodml22:ReportingHierarchy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy ? "prodml23:ReportingHierarchy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy const*p) +inline int soap_PATCH_prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy ? "prodml22:ReportingHierarchy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy ? "prodml23:ReportingHierarchy" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy const*p) +inline int soap_POST_send_prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy ? "prodml22:ReportingHierarchy" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingHierarchy", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy ? "prodml23:ReportingHierarchy" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingHierarchy * SOAP_FMAC4 soap_get_prodml22__ReportingHierarchy(struct soap*, prodml22__ReportingHierarchy *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingHierarchy * SOAP_FMAC4 soap_get_prodml23__ReportingHierarchy(struct soap*, prodml23__ReportingHierarchy *, const char*, const char*); -inline int soap_read_prodml22__ReportingHierarchy(struct soap *soap, prodml22__ReportingHierarchy *p) +inline int soap_read_prodml23__ReportingHierarchy(struct soap *soap, prodml23__ReportingHierarchy *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingHierarchy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingHierarchy(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingHierarchy(struct soap *soap, const char *URL, prodml22__ReportingHierarchy *p) +inline int soap_GET_prodml23__ReportingHierarchy(struct soap *soap, const char *URL, prodml23__ReportingHierarchy *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingHierarchy(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingHierarchy(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingHierarchy(struct soap *soap, prodml22__ReportingHierarchy *p) +inline int soap_POST_recv_prodml23__ReportingHierarchy(struct soap *soap, prodml23__ReportingHierarchy *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingHierarchy(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingHierarchy(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportingEntity(struct soap*, const char*, int, const prodml22__ReportingEntity *, const char*); -SOAP_FMAC3 prodml22__ReportingEntity * SOAP_FMAC4 soap_in_prodml22__ReportingEntity(struct soap*, const char*, prodml22__ReportingEntity *, const char*); -SOAP_FMAC1 prodml22__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml22__ReportingEntity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportingEntity(struct soap*, const char*, int, const prodml23__ReportingEntity *, const char*); +SOAP_FMAC3 prodml23__ReportingEntity * SOAP_FMAC4 soap_in_prodml23__ReportingEntity(struct soap*, const char*, prodml23__ReportingEntity *, const char*); +SOAP_FMAC1 prodml23__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml23__ReportingEntity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReportingEntity * soap_new_prodml22__ReportingEntity(struct soap *soap, int n = -1) +inline prodml23__ReportingEntity * soap_new_prodml23__ReportingEntity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReportingEntity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReportingEntity(soap, n, NULL, NULL, NULL); } -inline prodml22__ReportingEntity * soap_new_req_prodml22__ReportingEntity( +inline prodml23__ReportingEntity * soap_new_req_prodml23__ReportingEntity( struct soap *soap, - prodml22__ReportingEntityKind Kind, + prodml23__ReportingEntityKind Kind, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__ReportingEntity *_p = gsoap_eml2_3::soap_new_prodml22__ReportingEntity(soap); + prodml23__ReportingEntity *_p = gsoap_eml2_3::soap_new_prodml23__ReportingEntity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportingEntity::Kind = Kind; + _p->prodml23__ReportingEntity::Kind = Kind; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -121085,9 +121077,9 @@ inline prodml22__ReportingEntity * soap_new_req_prodml22__ReportingEntity( return _p; } -inline prodml22__ReportingEntity * soap_new_set_prodml22__ReportingEntity( +inline prodml23__ReportingEntity * soap_new_set_prodml23__ReportingEntity( struct soap *soap, - prodml22__ReportingEntityKind Kind, + prodml23__ReportingEntityKind Kind, eml23__DataObjectReference *AssociatedFacility, eml23__DataObjectReference *AssociatedObject, const std::vector & Aliases__1, @@ -121102,12 +121094,12 @@ inline prodml22__ReportingEntity * soap_new_set_prodml22__ReportingEntity( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__ReportingEntity *_p = gsoap_eml2_3::soap_new_prodml22__ReportingEntity(soap); + prodml23__ReportingEntity *_p = gsoap_eml2_3::soap_new_prodml23__ReportingEntity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportingEntity::Kind = Kind; - _p->prodml22__ReportingEntity::AssociatedFacility = AssociatedFacility; - _p->prodml22__ReportingEntity::AssociatedObject = AssociatedObject; + _p->prodml23__ReportingEntity::Kind = Kind; + _p->prodml23__ReportingEntity::AssociatedFacility = AssociatedFacility; + _p->prodml23__ReportingEntity::AssociatedObject = AssociatedObject; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -121123,86 +121115,86 @@ inline prodml22__ReportingEntity * soap_new_set_prodml22__ReportingEntity( return _p; } -inline int soap_write_prodml22__ReportingEntity(struct soap *soap, prodml22__ReportingEntity const*p) +inline int soap_write_prodml23__ReportingEntity(struct soap *soap, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity ? "prodml22:ReportingEntity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity ? "prodml23:ReportingEntity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity const*p) +inline int soap_PUT_prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity ? "prodml22:ReportingEntity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity ? "prodml23:ReportingEntity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity const*p) +inline int soap_PATCH_prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity ? "prodml22:ReportingEntity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity ? "prodml23:ReportingEntity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity const*p) +inline int soap_POST_send_prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity ? "prodml22:ReportingEntity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportingEntity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity ? "prodml23:ReportingEntity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportingEntity * SOAP_FMAC4 soap_get_prodml22__ReportingEntity(struct soap*, prodml22__ReportingEntity *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingEntity * SOAP_FMAC4 soap_get_prodml23__ReportingEntity(struct soap*, prodml23__ReportingEntity *, const char*, const char*); -inline int soap_read_prodml22__ReportingEntity(struct soap *soap, prodml22__ReportingEntity *p) +inline int soap_read_prodml23__ReportingEntity(struct soap *soap, prodml23__ReportingEntity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportingEntity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportingEntity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportingEntity(struct soap *soap, const char *URL, prodml22__ReportingEntity *p) +inline int soap_GET_prodml23__ReportingEntity(struct soap *soap, const char *URL, prodml23__ReportingEntity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportingEntity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportingEntity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportingEntity(struct soap *soap, prodml22__ReportingEntity *p) +inline int soap_POST_recv_prodml23__ReportingEntity(struct soap *soap, prodml23__ReportingEntity *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportingEntity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportingEntity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Facility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Facility_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Facility(struct soap*, const char*, int, const prodml22__Facility *, const char*); -SOAP_FMAC3 prodml22__Facility * SOAP_FMAC4 soap_in_prodml22__Facility(struct soap*, const char*, prodml22__Facility *, const char*); -SOAP_FMAC1 prodml22__Facility * SOAP_FMAC2 soap_instantiate_prodml22__Facility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Facility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Facility_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Facility(struct soap*, const char*, int, const prodml23__Facility *, const char*); +SOAP_FMAC3 prodml23__Facility * SOAP_FMAC4 soap_in_prodml23__Facility(struct soap*, const char*, prodml23__Facility *, const char*); +SOAP_FMAC1 prodml23__Facility * SOAP_FMAC2 soap_instantiate_prodml23__Facility(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Facility * soap_new_prodml22__Facility(struct soap *soap, int n = -1) +inline prodml23__Facility * soap_new_prodml23__Facility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Facility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Facility(soap, n, NULL, NULL, NULL); } -inline prodml22__Facility * soap_new_req_prodml22__Facility( +inline prodml23__Facility * soap_new_req_prodml23__Facility( struct soap *soap, const std::string& Kind, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__Facility *_p = gsoap_eml2_3::soap_new_prodml22__Facility(soap); + prodml23__Facility *_p = gsoap_eml2_3::soap_new_prodml23__Facility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Facility::Kind = Kind; + _p->prodml23__Facility::Kind = Kind; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -121210,7 +121202,7 @@ inline prodml22__Facility * soap_new_req_prodml22__Facility( return _p; } -inline prodml22__Facility * soap_new_set_prodml22__Facility( +inline prodml23__Facility * soap_new_set_prodml23__Facility( struct soap *soap, const std::string& Kind, const std::vector & Aliases__1, @@ -121225,10 +121217,10 @@ inline prodml22__Facility * soap_new_set_prodml22__Facility( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__Facility *_p = gsoap_eml2_3::soap_new_prodml22__Facility(soap); + prodml23__Facility *_p = gsoap_eml2_3::soap_new_prodml23__Facility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Facility::Kind = Kind; + _p->prodml23__Facility::Kind = Kind; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -121244,86 +121236,86 @@ inline prodml22__Facility * soap_new_set_prodml22__Facility( return _p; } -inline int soap_write_prodml22__Facility(struct soap *soap, prodml22__Facility const*p) +inline int soap_write_prodml23__Facility(struct soap *soap, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Facility ? "prodml22:Facility" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Facility ? "prodml23:Facility" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility const*p) +inline int soap_PUT_prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Facility ? "prodml22:Facility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Facility ? "prodml23:Facility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility const*p) +inline int soap_PATCH_prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Facility ? "prodml22:Facility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Facility ? "prodml23:Facility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility const*p) +inline int soap_POST_send_prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Facility ? "prodml22:Facility" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Facility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Facility ? "prodml23:Facility" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Facility * SOAP_FMAC4 soap_get_prodml22__Facility(struct soap*, prodml22__Facility *, const char*, const char*); +SOAP_FMAC3 prodml23__Facility * SOAP_FMAC4 soap_get_prodml23__Facility(struct soap*, prodml23__Facility *, const char*, const char*); -inline int soap_read_prodml22__Facility(struct soap *soap, prodml22__Facility *p) +inline int soap_read_prodml23__Facility(struct soap *soap, prodml23__Facility *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Facility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Facility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Facility(struct soap *soap, const char *URL, prodml22__Facility *p) +inline int soap_GET_prodml23__Facility(struct soap *soap, const char *URL, prodml23__Facility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Facility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Facility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Facility(struct soap *soap, prodml22__Facility *p) +inline int soap_POST_recv_prodml23__Facility(struct soap *soap, prodml23__Facility *p) { - if (gsoap_eml2_3::soap_read_prodml22__Facility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Facility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WellFlowingCondition(struct soap*, const char*, int, const prodml22__WellFlowingCondition *, const char*); -SOAP_FMAC3 prodml22__WellFlowingCondition * SOAP_FMAC4 soap_in_prodml22__WellFlowingCondition(struct soap*, const char*, prodml22__WellFlowingCondition *, const char*); -SOAP_FMAC1 prodml22__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml22__WellFlowingCondition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WellFlowingCondition(struct soap*, const char*, int, const prodml23__WellFlowingCondition *, const char*); +SOAP_FMAC3 prodml23__WellFlowingCondition * SOAP_FMAC4 soap_in_prodml23__WellFlowingCondition(struct soap*, const char*, prodml23__WellFlowingCondition *, const char*); +SOAP_FMAC1 prodml23__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml23__WellFlowingCondition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WellFlowingCondition * soap_new_prodml22__WellFlowingCondition(struct soap *soap, int n = -1) +inline prodml23__WellFlowingCondition * soap_new_prodml23__WellFlowingCondition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WellFlowingCondition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WellFlowingCondition(soap, n, NULL, NULL, NULL); } -inline prodml22__WellFlowingCondition * soap_new_req_prodml22__WellFlowingCondition( +inline prodml23__WellFlowingCondition * soap_new_req_prodml23__WellFlowingCondition( struct soap *soap) { - prodml22__WellFlowingCondition *_p = gsoap_eml2_3::soap_new_prodml22__WellFlowingCondition(soap); + prodml23__WellFlowingCondition *_p = gsoap_eml2_3::soap_new_prodml23__WellFlowingCondition(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__WellFlowingCondition * soap_new_set_prodml22__WellFlowingCondition( +inline prodml23__WellFlowingCondition * soap_new_set_prodml23__WellFlowingCondition( struct soap *soap, eml23__LengthMeasure *ChokeOrificeSize, eml23__LengthMeasure *BottomHolePressureDatumMd, @@ -121336,103 +121328,103 @@ inline prodml22__WellFlowingCondition * soap_new_set_prodml22__WellFlowingCondit eml23__LengthMeasure *FluidLevel, eml23__LengthMeasure *BaseUsableWater) { - prodml22__WellFlowingCondition *_p = gsoap_eml2_3::soap_new_prodml22__WellFlowingCondition(soap); + prodml23__WellFlowingCondition *_p = gsoap_eml2_3::soap_new_prodml23__WellFlowingCondition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WellFlowingCondition::ChokeOrificeSize = ChokeOrificeSize; - _p->prodml22__WellFlowingCondition::BottomHolePressureDatumMd = BottomHolePressureDatumMd; - _p->prodml22__WellFlowingCondition::BottomHoleStabilizedPressure = BottomHoleStabilizedPressure; - _p->prodml22__WellFlowingCondition::BottomHoleStabilizedTemperature = BottomHoleStabilizedTemperature; - _p->prodml22__WellFlowingCondition::CasingHeadStabilizedPressure = CasingHeadStabilizedPressure; - _p->prodml22__WellFlowingCondition::CasingHeadStabilizedTemperature = CasingHeadStabilizedTemperature; - _p->prodml22__WellFlowingCondition::TubingHeadStabilizedPressure = TubingHeadStabilizedPressure; - _p->prodml22__WellFlowingCondition::TubingHeadStabilizedTemperature = TubingHeadStabilizedTemperature; - _p->prodml22__WellFlowingCondition::FluidLevel = FluidLevel; - _p->prodml22__WellFlowingCondition::BaseUsableWater = BaseUsableWater; + _p->prodml23__WellFlowingCondition::ChokeOrificeSize = ChokeOrificeSize; + _p->prodml23__WellFlowingCondition::BottomHolePressureDatumMd = BottomHolePressureDatumMd; + _p->prodml23__WellFlowingCondition::BottomHoleStabilizedPressure = BottomHoleStabilizedPressure; + _p->prodml23__WellFlowingCondition::BottomHoleStabilizedTemperature = BottomHoleStabilizedTemperature; + _p->prodml23__WellFlowingCondition::CasingHeadStabilizedPressure = CasingHeadStabilizedPressure; + _p->prodml23__WellFlowingCondition::CasingHeadStabilizedTemperature = CasingHeadStabilizedTemperature; + _p->prodml23__WellFlowingCondition::TubingHeadStabilizedPressure = TubingHeadStabilizedPressure; + _p->prodml23__WellFlowingCondition::TubingHeadStabilizedTemperature = TubingHeadStabilizedTemperature; + _p->prodml23__WellFlowingCondition::FluidLevel = FluidLevel; + _p->prodml23__WellFlowingCondition::BaseUsableWater = BaseUsableWater; } return _p; } -inline int soap_write_prodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition const*p) +inline int soap_write_prodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition ? "prodml22:WellFlowingCondition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition ? "prodml23:WellFlowingCondition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WellFlowingCondition(struct soap *soap, const char *URL, prodml22__WellFlowingCondition const*p) +inline int soap_PUT_prodml23__WellFlowingCondition(struct soap *soap, const char *URL, prodml23__WellFlowingCondition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition ? "prodml22:WellFlowingCondition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition ? "prodml23:WellFlowingCondition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WellFlowingCondition(struct soap *soap, const char *URL, prodml22__WellFlowingCondition const*p) +inline int soap_PATCH_prodml23__WellFlowingCondition(struct soap *soap, const char *URL, prodml23__WellFlowingCondition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition ? "prodml22:WellFlowingCondition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition ? "prodml23:WellFlowingCondition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WellFlowingCondition(struct soap *soap, const char *URL, prodml22__WellFlowingCondition const*p) +inline int soap_POST_send_prodml23__WellFlowingCondition(struct soap *soap, const char *URL, prodml23__WellFlowingCondition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition ? "prodml22:WellFlowingCondition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WellFlowingCondition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition ? "prodml23:WellFlowingCondition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WellFlowingCondition * SOAP_FMAC4 soap_get_prodml22__WellFlowingCondition(struct soap*, prodml22__WellFlowingCondition *, const char*, const char*); +SOAP_FMAC3 prodml23__WellFlowingCondition * SOAP_FMAC4 soap_get_prodml23__WellFlowingCondition(struct soap*, prodml23__WellFlowingCondition *, const char*, const char*); -inline int soap_read_prodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition *p) +inline int soap_read_prodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WellFlowingCondition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WellFlowingCondition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WellFlowingCondition(struct soap *soap, const char *URL, prodml22__WellFlowingCondition *p) +inline int soap_GET_prodml23__WellFlowingCondition(struct soap *soap, const char *URL, prodml23__WellFlowingCondition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WellFlowingCondition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WellFlowingCondition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WellFlowingCondition(struct soap *soap, prodml22__WellFlowingCondition *p) +inline int soap_POST_recv_prodml23__WellFlowingCondition(struct soap *soap, prodml23__WellFlowingCondition *p) { - if (gsoap_eml2_3::soap_read_prodml22__WellFlowingCondition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WellFlowingCondition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterLevelTest(struct soap*, const char*, int, const prodml22__WaterLevelTest *, const char*); -SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_in_prodml22__WaterLevelTest(struct soap*, const char*, prodml22__WaterLevelTest *, const char*); -SOAP_FMAC1 prodml22__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml22__WaterLevelTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterLevelTest(struct soap*, const char*, int, const prodml23__WaterLevelTest *, const char*); +SOAP_FMAC3 prodml23__WaterLevelTest * SOAP_FMAC4 soap_in_prodml23__WaterLevelTest(struct soap*, const char*, prodml23__WaterLevelTest *, const char*); +SOAP_FMAC1 prodml23__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml23__WaterLevelTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WaterLevelTest * soap_new_prodml22__WaterLevelTest(struct soap *soap, int n = -1) +inline prodml23__WaterLevelTest * soap_new_prodml23__WaterLevelTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WaterLevelTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WaterLevelTest(soap, n, NULL, NULL, NULL); } -inline prodml22__WaterLevelTest * soap_new_req_prodml22__WaterLevelTest( +inline prodml23__WaterLevelTest * soap_new_req_prodml23__WaterLevelTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__WaterLevelTest *_p = gsoap_eml2_3::soap_new_prodml22__WaterLevelTest(soap); + prodml23__WaterLevelTest *_p = gsoap_eml2_3::soap_new_prodml23__WaterLevelTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterLevelTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__WaterLevelTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -121440,9 +121432,9 @@ inline prodml22__WaterLevelTest * soap_new_req_prodml22__WaterLevelTest( return _p; } -inline prodml22__WaterLevelTest * soap_new_set_prodml22__WaterLevelTest( +inline prodml23__WaterLevelTest * soap_new_set_prodml23__WaterLevelTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -121455,10 +121447,10 @@ inline prodml22__WaterLevelTest * soap_new_set_prodml22__WaterLevelTest( const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__WaterLevelTest *_p = gsoap_eml2_3::soap_new_prodml22__WaterLevelTest(soap); + prodml23__WaterLevelTest *_p = gsoap_eml2_3::soap_new_prodml23__WaterLevelTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterLevelTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__WaterLevelTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -121474,88 +121466,88 @@ inline prodml22__WaterLevelTest * soap_new_set_prodml22__WaterLevelTest( return _p; } -inline int soap_write_prodml22__WaterLevelTest(struct soap *soap, prodml22__WaterLevelTest const*p) +inline int soap_write_prodml23__WaterLevelTest(struct soap *soap, prodml23__WaterLevelTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest ? "prodml22:WaterLevelTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest ? "prodml23:WaterLevelTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WaterLevelTest(struct soap *soap, const char *URL, prodml22__WaterLevelTest const*p) +inline int soap_PUT_prodml23__WaterLevelTest(struct soap *soap, const char *URL, prodml23__WaterLevelTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest ? "prodml22:WaterLevelTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest ? "prodml23:WaterLevelTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WaterLevelTest(struct soap *soap, const char *URL, prodml22__WaterLevelTest const*p) +inline int soap_PATCH_prodml23__WaterLevelTest(struct soap *soap, const char *URL, prodml23__WaterLevelTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest ? "prodml22:WaterLevelTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest ? "prodml23:WaterLevelTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WaterLevelTest(struct soap *soap, const char *URL, prodml22__WaterLevelTest const*p) +inline int soap_POST_send_prodml23__WaterLevelTest(struct soap *soap, const char *URL, prodml23__WaterLevelTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest ? "prodml22:WaterLevelTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterLevelTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest ? "prodml23:WaterLevelTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WaterLevelTest * SOAP_FMAC4 soap_get_prodml22__WaterLevelTest(struct soap*, prodml22__WaterLevelTest *, const char*, const char*); +SOAP_FMAC3 prodml23__WaterLevelTest * SOAP_FMAC4 soap_get_prodml23__WaterLevelTest(struct soap*, prodml23__WaterLevelTest *, const char*, const char*); -inline int soap_read_prodml22__WaterLevelTest(struct soap *soap, prodml22__WaterLevelTest *p) +inline int soap_read_prodml23__WaterLevelTest(struct soap *soap, prodml23__WaterLevelTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WaterLevelTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WaterLevelTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WaterLevelTest(struct soap *soap, const char *URL, prodml22__WaterLevelTest *p) +inline int soap_GET_prodml23__WaterLevelTest(struct soap *soap, const char *URL, prodml23__WaterLevelTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WaterLevelTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WaterLevelTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WaterLevelTest(struct soap *soap, prodml22__WaterLevelTest *p) +inline int soap_POST_recv_prodml23__WaterLevelTest(struct soap *soap, prodml23__WaterLevelTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__WaterLevelTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WaterLevelTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VerticalInterferenceTest(struct soap*, const char*, int, const prodml22__VerticalInterferenceTest *, const char*); -SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml22__VerticalInterferenceTest(struct soap*, const char*, prodml22__VerticalInterferenceTest *, const char*); -SOAP_FMAC1 prodml22__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prodml22__VerticalInterferenceTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VerticalInterferenceTest(struct soap*, const char*, int, const prodml23__VerticalInterferenceTest *, const char*); +SOAP_FMAC3 prodml23__VerticalInterferenceTest * SOAP_FMAC4 soap_in_prodml23__VerticalInterferenceTest(struct soap*, const char*, prodml23__VerticalInterferenceTest *, const char*); +SOAP_FMAC1 prodml23__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prodml23__VerticalInterferenceTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__VerticalInterferenceTest * soap_new_prodml22__VerticalInterferenceTest(struct soap *soap, int n = -1) +inline prodml23__VerticalInterferenceTest * soap_new_prodml23__VerticalInterferenceTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__VerticalInterferenceTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__VerticalInterferenceTest(soap, n, NULL, NULL, NULL); } -inline prodml22__VerticalInterferenceTest * soap_new_req_prodml22__VerticalInterferenceTest( +inline prodml23__VerticalInterferenceTest * soap_new_req_prodml23__VerticalInterferenceTest( struct soap *soap, eml23__DataObjectReference *TieInLog, - const std::vector & IntervalMeasurementSet, + const std::vector & IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__VerticalInterferenceTest *_p = gsoap_eml2_3::soap_new_prodml22__VerticalInterferenceTest(soap); + prodml23__VerticalInterferenceTest *_p = gsoap_eml2_3::soap_new_prodml23__VerticalInterferenceTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VerticalInterferenceTest::TieInLog = TieInLog; - _p->prodml22__VerticalInterferenceTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__VerticalInterferenceTest::TieInLog = TieInLog; + _p->prodml23__VerticalInterferenceTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -121563,10 +121555,10 @@ inline prodml22__VerticalInterferenceTest * soap_new_req_prodml22__VerticalInter return _p; } -inline prodml22__VerticalInterferenceTest * soap_new_set_prodml22__VerticalInterferenceTest( +inline prodml23__VerticalInterferenceTest * soap_new_set_prodml23__VerticalInterferenceTest( struct soap *soap, eml23__DataObjectReference *TieInLog, - const std::vector & IntervalMeasurementSet, + const std::vector & IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -121579,11 +121571,11 @@ inline prodml22__VerticalInterferenceTest * soap_new_set_prodml22__VerticalInter const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__VerticalInterferenceTest *_p = gsoap_eml2_3::soap_new_prodml22__VerticalInterferenceTest(soap); + prodml23__VerticalInterferenceTest *_p = gsoap_eml2_3::soap_new_prodml23__VerticalInterferenceTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VerticalInterferenceTest::TieInLog = TieInLog; - _p->prodml22__VerticalInterferenceTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__VerticalInterferenceTest::TieInLog = TieInLog; + _p->prodml23__VerticalInterferenceTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -121599,195 +121591,195 @@ inline prodml22__VerticalInterferenceTest * soap_new_set_prodml22__VerticalInter return _p; } -inline int soap_write_prodml22__VerticalInterferenceTest(struct soap *soap, prodml22__VerticalInterferenceTest const*p) +inline int soap_write_prodml23__VerticalInterferenceTest(struct soap *soap, prodml23__VerticalInterferenceTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest ? "prodml22:VerticalInterferenceTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest ? "prodml23:VerticalInterferenceTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml22__VerticalInterferenceTest const*p) +inline int soap_PUT_prodml23__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml23__VerticalInterferenceTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest ? "prodml22:VerticalInterferenceTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest ? "prodml23:VerticalInterferenceTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml22__VerticalInterferenceTest const*p) +inline int soap_PATCH_prodml23__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml23__VerticalInterferenceTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest ? "prodml22:VerticalInterferenceTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest ? "prodml23:VerticalInterferenceTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml22__VerticalInterferenceTest const*p) +inline int soap_POST_send_prodml23__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml23__VerticalInterferenceTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest ? "prodml22:VerticalInterferenceTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VerticalInterferenceTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest ? "prodml23:VerticalInterferenceTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__VerticalInterferenceTest * SOAP_FMAC4 soap_get_prodml22__VerticalInterferenceTest(struct soap*, prodml22__VerticalInterferenceTest *, const char*, const char*); +SOAP_FMAC3 prodml23__VerticalInterferenceTest * SOAP_FMAC4 soap_get_prodml23__VerticalInterferenceTest(struct soap*, prodml23__VerticalInterferenceTest *, const char*, const char*); -inline int soap_read_prodml22__VerticalInterferenceTest(struct soap *soap, prodml22__VerticalInterferenceTest *p) +inline int soap_read_prodml23__VerticalInterferenceTest(struct soap *soap, prodml23__VerticalInterferenceTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__VerticalInterferenceTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__VerticalInterferenceTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml22__VerticalInterferenceTest *p) +inline int soap_GET_prodml23__VerticalInterferenceTest(struct soap *soap, const char *URL, prodml23__VerticalInterferenceTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__VerticalInterferenceTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__VerticalInterferenceTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__VerticalInterferenceTest(struct soap *soap, prodml22__VerticalInterferenceTest *p) +inline int soap_POST_recv_prodml23__VerticalInterferenceTest(struct soap *soap, prodml23__VerticalInterferenceTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__VerticalInterferenceTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__VerticalInterferenceTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__TestPeriod(struct soap*, const char*, int, const prodml22__TestPeriod *, const char*); -SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_in_prodml22__TestPeriod(struct soap*, const char*, prodml22__TestPeriod *, const char*); -SOAP_FMAC1 prodml22__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml22__TestPeriod(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__TestPeriod(struct soap*, const char*, int, const prodml23__TestPeriod *, const char*); +SOAP_FMAC3 prodml23__TestPeriod * SOAP_FMAC4 soap_in_prodml23__TestPeriod(struct soap*, const char*, prodml23__TestPeriod *, const char*); +SOAP_FMAC1 prodml23__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml23__TestPeriod(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__TestPeriod * soap_new_prodml22__TestPeriod(struct soap *soap, int n = -1) +inline prodml23__TestPeriod * soap_new_prodml23__TestPeriod(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__TestPeriod(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__TestPeriod(soap, n, NULL, NULL, NULL); } -inline prodml22__TestPeriod * soap_new_req_prodml22__TestPeriod( +inline prodml23__TestPeriod * soap_new_req_prodml23__TestPeriod( struct soap *soap, const struct tm& StartTime, const struct tm& EndTime) { - prodml22__TestPeriod *_p = gsoap_eml2_3::soap_new_prodml22__TestPeriod(soap); + prodml23__TestPeriod *_p = gsoap_eml2_3::soap_new_prodml23__TestPeriod(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TestPeriod::StartTime = StartTime; - _p->prodml22__TestPeriod::EndTime = EndTime; + _p->prodml23__TestPeriod::StartTime = StartTime; + _p->prodml23__TestPeriod::EndTime = EndTime; } return _p; } -inline prodml22__TestPeriod * soap_new_set_prodml22__TestPeriod( +inline prodml23__TestPeriod * soap_new_set_prodml23__TestPeriod( struct soap *soap, const struct tm& StartTime, const struct tm& EndTime, - prodml22__TestPeriodKind *TestPeriodKind, - prodml22__WellFlowingCondition *WellFlowingCondition, + prodml23__TestPeriodKind *TestPeriodKind, + prodml23__WellFlowingCondition *WellFlowingCondition, std::string *Remark, - const std::vector & ProductRate, + const std::vector & ProductRate, std::string *uid) { - prodml22__TestPeriod *_p = gsoap_eml2_3::soap_new_prodml22__TestPeriod(soap); + prodml23__TestPeriod *_p = gsoap_eml2_3::soap_new_prodml23__TestPeriod(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__TestPeriod::StartTime = StartTime; - _p->prodml22__TestPeriod::EndTime = EndTime; - _p->prodml22__TestPeriod::TestPeriodKind = TestPeriodKind; - _p->prodml22__TestPeriod::WellFlowingCondition = WellFlowingCondition; - _p->prodml22__TestPeriod::Remark = Remark; - _p->prodml22__TestPeriod::ProductRate = ProductRate; - _p->prodml22__TestPeriod::uid = uid; + _p->prodml23__TestPeriod::StartTime = StartTime; + _p->prodml23__TestPeriod::EndTime = EndTime; + _p->prodml23__TestPeriod::TestPeriodKind = TestPeriodKind; + _p->prodml23__TestPeriod::WellFlowingCondition = WellFlowingCondition; + _p->prodml23__TestPeriod::Remark = Remark; + _p->prodml23__TestPeriod::ProductRate = ProductRate; + _p->prodml23__TestPeriod::uid = uid; } return _p; } -inline int soap_write_prodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod const*p) +inline int soap_write_prodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod ? "prodml22:TestPeriod" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod ? "prodml23:TestPeriod" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__TestPeriod(struct soap *soap, const char *URL, prodml22__TestPeriod const*p) +inline int soap_PUT_prodml23__TestPeriod(struct soap *soap, const char *URL, prodml23__TestPeriod const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod ? "prodml22:TestPeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod ? "prodml23:TestPeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__TestPeriod(struct soap *soap, const char *URL, prodml22__TestPeriod const*p) +inline int soap_PATCH_prodml23__TestPeriod(struct soap *soap, const char *URL, prodml23__TestPeriod const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod ? "prodml22:TestPeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod ? "prodml23:TestPeriod" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__TestPeriod(struct soap *soap, const char *URL, prodml22__TestPeriod const*p) +inline int soap_POST_send_prodml23__TestPeriod(struct soap *soap, const char *URL, prodml23__TestPeriod const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod ? "prodml22:TestPeriod" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:TestPeriod", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod ? "prodml23:TestPeriod" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__TestPeriod * SOAP_FMAC4 soap_get_prodml22__TestPeriod(struct soap*, prodml22__TestPeriod *, const char*, const char*); +SOAP_FMAC3 prodml23__TestPeriod * SOAP_FMAC4 soap_get_prodml23__TestPeriod(struct soap*, prodml23__TestPeriod *, const char*, const char*); -inline int soap_read_prodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod *p) +inline int soap_read_prodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__TestPeriod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__TestPeriod(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__TestPeriod(struct soap *soap, const char *URL, prodml22__TestPeriod *p) +inline int soap_GET_prodml23__TestPeriod(struct soap *soap, const char *URL, prodml23__TestPeriod *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__TestPeriod(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__TestPeriod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__TestPeriod(struct soap *soap, prodml22__TestPeriod *p) +inline int soap_POST_recv_prodml23__TestPeriod(struct soap *soap, prodml23__TestPeriod *p) { - if (gsoap_eml2_3::soap_read_prodml22__TestPeriod(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__TestPeriod(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductRate(struct soap*, const char*, int, const prodml22__ProductRate *, const char*); -SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_in_prodml22__ProductRate(struct soap*, const char*, prodml22__ProductRate *, const char*); -SOAP_FMAC1 prodml22__ProductRate * SOAP_FMAC2 soap_instantiate_prodml22__ProductRate(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductRate(struct soap*, const char*, int, const prodml23__ProductRate *, const char*); +SOAP_FMAC3 prodml23__ProductRate * SOAP_FMAC4 soap_in_prodml23__ProductRate(struct soap*, const char*, prodml23__ProductRate *, const char*); +SOAP_FMAC1 prodml23__ProductRate * SOAP_FMAC2 soap_instantiate_prodml23__ProductRate(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductRate * soap_new_prodml22__ProductRate(struct soap *soap, int n = -1) +inline prodml23__ProductRate * soap_new_prodml23__ProductRate(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductRate(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductRate(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductRate * soap_new_req_prodml22__ProductRate( +inline prodml23__ProductRate * soap_new_req_prodml23__ProductRate( struct soap *soap, const std::string& ProductFluidKind) { - prodml22__ProductRate *_p = gsoap_eml2_3::soap_new_prodml22__ProductRate(soap); + prodml23__ProductRate *_p = gsoap_eml2_3::soap_new_prodml23__ProductRate(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductRate::ProductFluidKind = ProductFluidKind; + _p->prodml23__ProductRate::ProductFluidKind = ProductFluidKind; } return _p; } -inline prodml22__ProductRate * soap_new_set_prodml22__ProductRate( +inline prodml23__ProductRate * soap_new_set_prodml23__ProductRate( struct soap *soap, const std::string& ProductFluidKind, eml23__MassPerTimeMeasure *MassFlowRate, @@ -121795,98 +121787,98 @@ inline prodml22__ProductRate * soap_new_set_prodml22__ProductRate( std::string *Remark, std::string *ProductFluidReference) { - prodml22__ProductRate *_p = gsoap_eml2_3::soap_new_prodml22__ProductRate(soap); + prodml23__ProductRate *_p = gsoap_eml2_3::soap_new_prodml23__ProductRate(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductRate::ProductFluidKind = ProductFluidKind; - _p->prodml22__ProductRate::MassFlowRate = MassFlowRate; - _p->prodml22__ProductRate::VolumeFlowRate = VolumeFlowRate; - _p->prodml22__ProductRate::Remark = Remark; - _p->prodml22__ProductRate::ProductFluidReference = ProductFluidReference; + _p->prodml23__ProductRate::ProductFluidKind = ProductFluidKind; + _p->prodml23__ProductRate::MassFlowRate = MassFlowRate; + _p->prodml23__ProductRate::VolumeFlowRate = VolumeFlowRate; + _p->prodml23__ProductRate::Remark = Remark; + _p->prodml23__ProductRate::ProductFluidReference = ProductFluidReference; } return _p; } -inline int soap_write_prodml22__ProductRate(struct soap *soap, prodml22__ProductRate const*p) +inline int soap_write_prodml23__ProductRate(struct soap *soap, prodml23__ProductRate const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate ? "prodml22:ProductRate" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate ? "prodml23:ProductRate" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductRate(struct soap *soap, const char *URL, prodml22__ProductRate const*p) +inline int soap_PUT_prodml23__ProductRate(struct soap *soap, const char *URL, prodml23__ProductRate const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate ? "prodml22:ProductRate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate ? "prodml23:ProductRate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductRate(struct soap *soap, const char *URL, prodml22__ProductRate const*p) +inline int soap_PATCH_prodml23__ProductRate(struct soap *soap, const char *URL, prodml23__ProductRate const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate ? "prodml22:ProductRate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate ? "prodml23:ProductRate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductRate(struct soap *soap, const char *URL, prodml22__ProductRate const*p) +inline int soap_POST_send_prodml23__ProductRate(struct soap *soap, const char *URL, prodml23__ProductRate const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate ? "prodml22:ProductRate" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductRate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate ? "prodml23:ProductRate" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductRate * SOAP_FMAC4 soap_get_prodml22__ProductRate(struct soap*, prodml22__ProductRate *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductRate * SOAP_FMAC4 soap_get_prodml23__ProductRate(struct soap*, prodml23__ProductRate *, const char*, const char*); -inline int soap_read_prodml22__ProductRate(struct soap *soap, prodml22__ProductRate *p) +inline int soap_read_prodml23__ProductRate(struct soap *soap, prodml23__ProductRate *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductRate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductRate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductRate(struct soap *soap, const char *URL, prodml22__ProductRate *p) +inline int soap_GET_prodml23__ProductRate(struct soap *soap, const char *URL, prodml23__ProductRate *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductRate(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductRate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductRate(struct soap *soap, prodml22__ProductRate *p) +inline int soap_POST_recv_prodml23__ProductRate(struct soap *soap, prodml23__ProductRate *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductRate(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductRate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductionTransientTest(struct soap*, const char*, int, const prodml22__ProductionTransientTest *, const char*); -SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml22__ProductionTransientTest(struct soap*, const char*, prodml22__ProductionTransientTest *, const char*); -SOAP_FMAC1 prodml22__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodml22__ProductionTransientTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductionTransientTest(struct soap*, const char*, int, const prodml23__ProductionTransientTest *, const char*); +SOAP_FMAC3 prodml23__ProductionTransientTest * SOAP_FMAC4 soap_in_prodml23__ProductionTransientTest(struct soap*, const char*, prodml23__ProductionTransientTest *, const char*); +SOAP_FMAC1 prodml23__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodml23__ProductionTransientTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductionTransientTest * soap_new_prodml22__ProductionTransientTest(struct soap *soap, int n = -1) +inline prodml23__ProductionTransientTest * soap_new_prodml23__ProductionTransientTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductionTransientTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductionTransientTest(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductionTransientTest * soap_new_req_prodml22__ProductionTransientTest( +inline prodml23__ProductionTransientTest * soap_new_req_prodml23__ProductionTransientTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__ProductionTransientTest *_p = gsoap_eml2_3::soap_new_prodml22__ProductionTransientTest(soap); + prodml23__ProductionTransientTest *_p = gsoap_eml2_3::soap_new_prodml23__ProductionTransientTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductionTransientTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__ProductionTransientTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -121894,9 +121886,9 @@ inline prodml22__ProductionTransientTest * soap_new_req_prodml22__ProductionTran return _p; } -inline prodml22__ProductionTransientTest * soap_new_set_prodml22__ProductionTransientTest( +inline prodml23__ProductionTransientTest * soap_new_set_prodml23__ProductionTransientTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -121909,10 +121901,10 @@ inline prodml22__ProductionTransientTest * soap_new_set_prodml22__ProductionTran const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__ProductionTransientTest *_p = gsoap_eml2_3::soap_new_prodml22__ProductionTransientTest(soap); + prodml23__ProductionTransientTest *_p = gsoap_eml2_3::soap_new_prodml23__ProductionTransientTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductionTransientTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__ProductionTransientTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -121928,86 +121920,86 @@ inline prodml22__ProductionTransientTest * soap_new_set_prodml22__ProductionTran return _p; } -inline int soap_write_prodml22__ProductionTransientTest(struct soap *soap, prodml22__ProductionTransientTest const*p) +inline int soap_write_prodml23__ProductionTransientTest(struct soap *soap, prodml23__ProductionTransientTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest ? "prodml22:ProductionTransientTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest ? "prodml23:ProductionTransientTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductionTransientTest(struct soap *soap, const char *URL, prodml22__ProductionTransientTest const*p) +inline int soap_PUT_prodml23__ProductionTransientTest(struct soap *soap, const char *URL, prodml23__ProductionTransientTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest ? "prodml22:ProductionTransientTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest ? "prodml23:ProductionTransientTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductionTransientTest(struct soap *soap, const char *URL, prodml22__ProductionTransientTest const*p) +inline int soap_PATCH_prodml23__ProductionTransientTest(struct soap *soap, const char *URL, prodml23__ProductionTransientTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest ? "prodml22:ProductionTransientTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest ? "prodml23:ProductionTransientTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductionTransientTest(struct soap *soap, const char *URL, prodml22__ProductionTransientTest const*p) +inline int soap_POST_send_prodml23__ProductionTransientTest(struct soap *soap, const char *URL, prodml23__ProductionTransientTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest ? "prodml22:ProductionTransientTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionTransientTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest ? "prodml23:ProductionTransientTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductionTransientTest * SOAP_FMAC4 soap_get_prodml22__ProductionTransientTest(struct soap*, prodml22__ProductionTransientTest *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductionTransientTest * SOAP_FMAC4 soap_get_prodml23__ProductionTransientTest(struct soap*, prodml23__ProductionTransientTest *, const char*, const char*); -inline int soap_read_prodml22__ProductionTransientTest(struct soap *soap, prodml22__ProductionTransientTest *p) +inline int soap_read_prodml23__ProductionTransientTest(struct soap *soap, prodml23__ProductionTransientTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductionTransientTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductionTransientTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductionTransientTest(struct soap *soap, const char *URL, prodml22__ProductionTransientTest *p) +inline int soap_GET_prodml23__ProductionTransientTest(struct soap *soap, const char *URL, prodml23__ProductionTransientTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductionTransientTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductionTransientTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductionTransientTest(struct soap *soap, prodml22__ProductionTransientTest *p) +inline int soap_POST_recv_prodml23__ProductionTransientTest(struct soap *soap, prodml23__ProductionTransientTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductionTransientTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductionTransientTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductionFlowTest(struct soap*, const char*, int, const prodml22__ProductionFlowTest *, const char*); -SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml22__ProductionFlowTest(struct soap*, const char*, prodml22__ProductionFlowTest *, const char*); -SOAP_FMAC1 prodml22__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__ProductionFlowTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductionFlowTest(struct soap*, const char*, int, const prodml23__ProductionFlowTest *, const char*); +SOAP_FMAC3 prodml23__ProductionFlowTest * SOAP_FMAC4 soap_in_prodml23__ProductionFlowTest(struct soap*, const char*, prodml23__ProductionFlowTest *, const char*); +SOAP_FMAC1 prodml23__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml23__ProductionFlowTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductionFlowTest * soap_new_prodml22__ProductionFlowTest(struct soap *soap, int n = -1) +inline prodml23__ProductionFlowTest * soap_new_prodml23__ProductionFlowTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductionFlowTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductionFlowTest(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductionFlowTest * soap_new_req_prodml22__ProductionFlowTest( +inline prodml23__ProductionFlowTest * soap_new_req_prodml23__ProductionFlowTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__ProductionFlowTest *_p = gsoap_eml2_3::soap_new_prodml22__ProductionFlowTest(soap); + prodml23__ProductionFlowTest *_p = gsoap_eml2_3::soap_new_prodml23__ProductionFlowTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__ProductionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -122015,12 +122007,12 @@ inline prodml22__ProductionFlowTest * soap_new_req_prodml22__ProductionFlowTest( return _p; } -inline prodml22__ProductionFlowTest * soap_new_set_prodml22__ProductionFlowTest( +inline prodml23__ProductionFlowTest * soap_new_set_prodml23__ProductionFlowTest( struct soap *soap, bool *Validated, std::string *WellTestMethod, struct tm *EffectiveDate, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -122033,13 +122025,13 @@ inline prodml22__ProductionFlowTest * soap_new_set_prodml22__ProductionFlowTest( const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__ProductionFlowTest *_p = gsoap_eml2_3::soap_new_prodml22__ProductionFlowTest(soap); + prodml23__ProductionFlowTest *_p = gsoap_eml2_3::soap_new_prodml23__ProductionFlowTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductionFlowTest::Validated = Validated; - _p->prodml22__ProductionFlowTest::WellTestMethod = WellTestMethod; - _p->prodml22__ProductionFlowTest::EffectiveDate = EffectiveDate; - _p->prodml22__ProductionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__ProductionFlowTest::Validated = Validated; + _p->prodml23__ProductionFlowTest::WellTestMethod = WellTestMethod; + _p->prodml23__ProductionFlowTest::EffectiveDate = EffectiveDate; + _p->prodml23__ProductionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -122055,193 +122047,193 @@ inline prodml22__ProductionFlowTest * soap_new_set_prodml22__ProductionFlowTest( return _p; } -inline int soap_write_prodml22__ProductionFlowTest(struct soap *soap, prodml22__ProductionFlowTest const*p) +inline int soap_write_prodml23__ProductionFlowTest(struct soap *soap, prodml23__ProductionFlowTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest ? "prodml22:ProductionFlowTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest ? "prodml23:ProductionFlowTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductionFlowTest(struct soap *soap, const char *URL, prodml22__ProductionFlowTest const*p) +inline int soap_PUT_prodml23__ProductionFlowTest(struct soap *soap, const char *URL, prodml23__ProductionFlowTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest ? "prodml22:ProductionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest ? "prodml23:ProductionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductionFlowTest(struct soap *soap, const char *URL, prodml22__ProductionFlowTest const*p) +inline int soap_PATCH_prodml23__ProductionFlowTest(struct soap *soap, const char *URL, prodml23__ProductionFlowTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest ? "prodml22:ProductionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest ? "prodml23:ProductionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductionFlowTest(struct soap *soap, const char *URL, prodml22__ProductionFlowTest const*p) +inline int soap_POST_send_prodml23__ProductionFlowTest(struct soap *soap, const char *URL, prodml23__ProductionFlowTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest ? "prodml22:ProductionFlowTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest ? "prodml23:ProductionFlowTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductionFlowTest * SOAP_FMAC4 soap_get_prodml22__ProductionFlowTest(struct soap*, prodml22__ProductionFlowTest *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductionFlowTest * SOAP_FMAC4 soap_get_prodml23__ProductionFlowTest(struct soap*, prodml23__ProductionFlowTest *, const char*, const char*); -inline int soap_read_prodml22__ProductionFlowTest(struct soap *soap, prodml22__ProductionFlowTest *p) +inline int soap_read_prodml23__ProductionFlowTest(struct soap *soap, prodml23__ProductionFlowTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductionFlowTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductionFlowTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductionFlowTest(struct soap *soap, const char *URL, prodml22__ProductionFlowTest *p) +inline int soap_GET_prodml23__ProductionFlowTest(struct soap *soap, const char *URL, prodml23__ProductionFlowTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductionFlowTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductionFlowTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductionFlowTest(struct soap *soap, prodml22__ProductionFlowTest *p) +inline int soap_POST_recv_prodml23__ProductionFlowTest(struct soap *soap, prodml23__ProductionFlowTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductionFlowTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductionFlowTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OtherData(struct soap*, const char*, int, const prodml22__OtherData *, const char*); -SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_in_prodml22__OtherData(struct soap*, const char*, prodml22__OtherData *, const char*); -SOAP_FMAC1 prodml22__OtherData * SOAP_FMAC2 soap_instantiate_prodml22__OtherData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OtherData(struct soap*, const char*, int, const prodml23__OtherData *, const char*); +SOAP_FMAC3 prodml23__OtherData * SOAP_FMAC4 soap_in_prodml23__OtherData(struct soap*, const char*, prodml23__OtherData *, const char*); +SOAP_FMAC1 prodml23__OtherData * SOAP_FMAC2 soap_instantiate_prodml23__OtherData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OtherData * soap_new_prodml22__OtherData(struct soap *soap, int n = -1) +inline prodml23__OtherData * soap_new_prodml23__OtherData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OtherData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OtherData(soap, n, NULL, NULL, NULL); } -inline prodml22__OtherData * soap_new_req_prodml22__OtherData( +inline prodml23__OtherData * soap_new_req_prodml23__OtherData( struct soap *soap, eml23__DataObjectReference *DataChannel, eml23__DataObjectReference *ChannelSet__1, eml23__DataObjectReference *TimeChannel__1) { - prodml22__OtherData *_p = gsoap_eml2_3::soap_new_prodml22__OtherData(soap); + prodml23__OtherData *_p = gsoap_eml2_3::soap_new_prodml23__OtherData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OtherData::DataChannel = DataChannel; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__1; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__1; + _p->prodml23__OtherData::DataChannel = DataChannel; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__1; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__1; } return _p; } -inline prodml22__OtherData * soap_new_set_prodml22__OtherData( +inline prodml23__OtherData * soap_new_set_prodml23__OtherData( struct soap *soap, eml23__DataObjectReference *DataChannel, eml23__DataObjectReference *ChannelSet__1, eml23__DataObjectReference *TimeChannel__1, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__1, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__1, std::string *Remark__1, std::string *uid__1) { - prodml22__OtherData *_p = gsoap_eml2_3::soap_new_prodml22__OtherData(soap); + prodml23__OtherData *_p = gsoap_eml2_3::soap_new_prodml23__OtherData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OtherData::DataChannel = DataChannel; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__1; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__1; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__1; - _p->prodml22__AbstractFlowTestData::Remark = Remark__1; - _p->prodml22__AbstractFlowTestData::uid = uid__1; + _p->prodml23__OtherData::DataChannel = DataChannel; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__1; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__1; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__1; + _p->prodml23__AbstractFlowTestData::Remark = Remark__1; + _p->prodml23__AbstractFlowTestData::uid = uid__1; } return _p; } -inline int soap_write_prodml22__OtherData(struct soap *soap, prodml22__OtherData const*p) +inline int soap_write_prodml23__OtherData(struct soap *soap, prodml23__OtherData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData ? "prodml22:OtherData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData ? "prodml23:OtherData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OtherData(struct soap *soap, const char *URL, prodml22__OtherData const*p) +inline int soap_PUT_prodml23__OtherData(struct soap *soap, const char *URL, prodml23__OtherData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData ? "prodml22:OtherData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData ? "prodml23:OtherData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OtherData(struct soap *soap, const char *URL, prodml22__OtherData const*p) +inline int soap_PATCH_prodml23__OtherData(struct soap *soap, const char *URL, prodml23__OtherData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData ? "prodml22:OtherData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData ? "prodml23:OtherData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OtherData(struct soap *soap, const char *URL, prodml22__OtherData const*p) +inline int soap_POST_send_prodml23__OtherData(struct soap *soap, const char *URL, prodml23__OtherData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData ? "prodml22:OtherData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData ? "prodml23:OtherData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OtherData * SOAP_FMAC4 soap_get_prodml22__OtherData(struct soap*, prodml22__OtherData *, const char*, const char*); +SOAP_FMAC3 prodml23__OtherData * SOAP_FMAC4 soap_get_prodml23__OtherData(struct soap*, prodml23__OtherData *, const char*, const char*); -inline int soap_read_prodml22__OtherData(struct soap *soap, prodml22__OtherData *p) +inline int soap_read_prodml23__OtherData(struct soap *soap, prodml23__OtherData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OtherData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OtherData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OtherData(struct soap *soap, const char *URL, prodml22__OtherData *p) +inline int soap_GET_prodml23__OtherData(struct soap *soap, const char *URL, prodml23__OtherData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OtherData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OtherData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OtherData(struct soap *soap, prodml22__OtherData *p) +inline int soap_POST_recv_prodml23__OtherData(struct soap *soap, prodml23__OtherData *p) { - if (gsoap_eml2_3::soap_read_prodml22__OtherData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OtherData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterwellTest(struct soap*, const char*, int, const prodml22__InterwellTest *, const char*); -SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_in_prodml22__InterwellTest(struct soap*, const char*, prodml22__InterwellTest *, const char*); -SOAP_FMAC1 prodml22__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml22__InterwellTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterwellTest(struct soap*, const char*, int, const prodml23__InterwellTest *, const char*); +SOAP_FMAC3 prodml23__InterwellTest * SOAP_FMAC4 soap_in_prodml23__InterwellTest(struct soap*, const char*, prodml23__InterwellTest *, const char*); +SOAP_FMAC1 prodml23__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml23__InterwellTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InterwellTest * soap_new_prodml22__InterwellTest(struct soap *soap, int n = -1) +inline prodml23__InterwellTest * soap_new_prodml23__InterwellTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InterwellTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InterwellTest(soap, n, NULL, NULL, NULL); } -inline prodml22__InterwellTest * soap_new_req_prodml22__InterwellTest( +inline prodml23__InterwellTest * soap_new_req_prodml23__InterwellTest( struct soap *soap, - const std::vector & IntervalMeasurementSet, + const std::vector & IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__InterwellTest *_p = gsoap_eml2_3::soap_new_prodml22__InterwellTest(soap); + prodml23__InterwellTest *_p = gsoap_eml2_3::soap_new_prodml23__InterwellTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterwellTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__InterwellTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -122249,9 +122241,9 @@ inline prodml22__InterwellTest * soap_new_req_prodml22__InterwellTest( return _p; } -inline prodml22__InterwellTest * soap_new_set_prodml22__InterwellTest( +inline prodml23__InterwellTest * soap_new_set_prodml23__InterwellTest( struct soap *soap, - const std::vector & IntervalMeasurementSet, + const std::vector & IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -122264,10 +122256,10 @@ inline prodml22__InterwellTest * soap_new_set_prodml22__InterwellTest( const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__InterwellTest *_p = gsoap_eml2_3::soap_new_prodml22__InterwellTest(soap); + prodml23__InterwellTest *_p = gsoap_eml2_3::soap_new_prodml23__InterwellTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterwellTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__InterwellTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -122283,86 +122275,86 @@ inline prodml22__InterwellTest * soap_new_set_prodml22__InterwellTest( return _p; } -inline int soap_write_prodml22__InterwellTest(struct soap *soap, prodml22__InterwellTest const*p) +inline int soap_write_prodml23__InterwellTest(struct soap *soap, prodml23__InterwellTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest ? "prodml22:InterwellTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest ? "prodml23:InterwellTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InterwellTest(struct soap *soap, const char *URL, prodml22__InterwellTest const*p) +inline int soap_PUT_prodml23__InterwellTest(struct soap *soap, const char *URL, prodml23__InterwellTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest ? "prodml22:InterwellTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest ? "prodml23:InterwellTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InterwellTest(struct soap *soap, const char *URL, prodml22__InterwellTest const*p) +inline int soap_PATCH_prodml23__InterwellTest(struct soap *soap, const char *URL, prodml23__InterwellTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest ? "prodml22:InterwellTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest ? "prodml23:InterwellTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InterwellTest(struct soap *soap, const char *URL, prodml22__InterwellTest const*p) +inline int soap_POST_send_prodml23__InterwellTest(struct soap *soap, const char *URL, prodml23__InterwellTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest ? "prodml22:InterwellTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterwellTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest ? "prodml23:InterwellTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InterwellTest * SOAP_FMAC4 soap_get_prodml22__InterwellTest(struct soap*, prodml22__InterwellTest *, const char*, const char*); +SOAP_FMAC3 prodml23__InterwellTest * SOAP_FMAC4 soap_get_prodml23__InterwellTest(struct soap*, prodml23__InterwellTest *, const char*, const char*); -inline int soap_read_prodml22__InterwellTest(struct soap *soap, prodml22__InterwellTest *p) +inline int soap_read_prodml23__InterwellTest(struct soap *soap, prodml23__InterwellTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InterwellTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InterwellTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InterwellTest(struct soap *soap, const char *URL, prodml22__InterwellTest *p) +inline int soap_GET_prodml23__InterwellTest(struct soap *soap, const char *URL, prodml23__InterwellTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InterwellTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InterwellTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InterwellTest(struct soap *soap, prodml22__InterwellTest *p) +inline int soap_POST_recv_prodml23__InterwellTest(struct soap *soap, prodml23__InterwellTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__InterwellTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InterwellTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InjectionFlowTest(struct soap*, const char*, int, const prodml22__InjectionFlowTest *, const char*); -SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml22__InjectionFlowTest(struct soap*, const char*, prodml22__InjectionFlowTest *, const char*); -SOAP_FMAC1 prodml22__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__InjectionFlowTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InjectionFlowTest(struct soap*, const char*, int, const prodml23__InjectionFlowTest *, const char*); +SOAP_FMAC3 prodml23__InjectionFlowTest * SOAP_FMAC4 soap_in_prodml23__InjectionFlowTest(struct soap*, const char*, prodml23__InjectionFlowTest *, const char*); +SOAP_FMAC1 prodml23__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml23__InjectionFlowTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InjectionFlowTest * soap_new_prodml22__InjectionFlowTest(struct soap *soap, int n = -1) +inline prodml23__InjectionFlowTest * soap_new_prodml23__InjectionFlowTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InjectionFlowTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InjectionFlowTest(soap, n, NULL, NULL, NULL); } -inline prodml22__InjectionFlowTest * soap_new_req_prodml22__InjectionFlowTest( +inline prodml23__InjectionFlowTest * soap_new_req_prodml23__InjectionFlowTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__InjectionFlowTest *_p = gsoap_eml2_3::soap_new_prodml22__InjectionFlowTest(soap); + prodml23__InjectionFlowTest *_p = gsoap_eml2_3::soap_new_prodml23__InjectionFlowTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InjectionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__InjectionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -122370,12 +122362,12 @@ inline prodml22__InjectionFlowTest * soap_new_req_prodml22__InjectionFlowTest( return _p; } -inline prodml22__InjectionFlowTest * soap_new_set_prodml22__InjectionFlowTest( +inline prodml23__InjectionFlowTest * soap_new_set_prodml23__InjectionFlowTest( struct soap *soap, bool *Validated, std::string *WellTestMethod, struct tm *EffectiveDate, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -122388,13 +122380,13 @@ inline prodml22__InjectionFlowTest * soap_new_set_prodml22__InjectionFlowTest( const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__InjectionFlowTest *_p = gsoap_eml2_3::soap_new_prodml22__InjectionFlowTest(soap); + prodml23__InjectionFlowTest *_p = gsoap_eml2_3::soap_new_prodml23__InjectionFlowTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InjectionFlowTest::Validated = Validated; - _p->prodml22__InjectionFlowTest::WellTestMethod = WellTestMethod; - _p->prodml22__InjectionFlowTest::EffectiveDate = EffectiveDate; - _p->prodml22__InjectionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__InjectionFlowTest::Validated = Validated; + _p->prodml23__InjectionFlowTest::WellTestMethod = WellTestMethod; + _p->prodml23__InjectionFlowTest::EffectiveDate = EffectiveDate; + _p->prodml23__InjectionFlowTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -122410,88 +122402,88 @@ inline prodml22__InjectionFlowTest * soap_new_set_prodml22__InjectionFlowTest( return _p; } -inline int soap_write_prodml22__InjectionFlowTest(struct soap *soap, prodml22__InjectionFlowTest const*p) +inline int soap_write_prodml23__InjectionFlowTest(struct soap *soap, prodml23__InjectionFlowTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest ? "prodml22:InjectionFlowTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest ? "prodml23:InjectionFlowTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InjectionFlowTest(struct soap *soap, const char *URL, prodml22__InjectionFlowTest const*p) +inline int soap_PUT_prodml23__InjectionFlowTest(struct soap *soap, const char *URL, prodml23__InjectionFlowTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest ? "prodml22:InjectionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest ? "prodml23:InjectionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InjectionFlowTest(struct soap *soap, const char *URL, prodml22__InjectionFlowTest const*p) +inline int soap_PATCH_prodml23__InjectionFlowTest(struct soap *soap, const char *URL, prodml23__InjectionFlowTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest ? "prodml22:InjectionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest ? "prodml23:InjectionFlowTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InjectionFlowTest(struct soap *soap, const char *URL, prodml22__InjectionFlowTest const*p) +inline int soap_POST_send_prodml23__InjectionFlowTest(struct soap *soap, const char *URL, prodml23__InjectionFlowTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest ? "prodml22:InjectionFlowTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectionFlowTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest ? "prodml23:InjectionFlowTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InjectionFlowTest * SOAP_FMAC4 soap_get_prodml22__InjectionFlowTest(struct soap*, prodml22__InjectionFlowTest *, const char*, const char*); +SOAP_FMAC3 prodml23__InjectionFlowTest * SOAP_FMAC4 soap_get_prodml23__InjectionFlowTest(struct soap*, prodml23__InjectionFlowTest *, const char*, const char*); -inline int soap_read_prodml22__InjectionFlowTest(struct soap *soap, prodml22__InjectionFlowTest *p) +inline int soap_read_prodml23__InjectionFlowTest(struct soap *soap, prodml23__InjectionFlowTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InjectionFlowTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InjectionFlowTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InjectionFlowTest(struct soap *soap, const char *URL, prodml22__InjectionFlowTest *p) +inline int soap_GET_prodml23__InjectionFlowTest(struct soap *soap, const char *URL, prodml23__InjectionFlowTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InjectionFlowTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InjectionFlowTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InjectionFlowTest(struct soap *soap, prodml22__InjectionFlowTest *p) +inline int soap_POST_recv_prodml23__InjectionFlowTest(struct soap *soap, prodml23__InjectionFlowTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__InjectionFlowTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InjectionFlowTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationTesterStation(struct soap*, const char*, int, const prodml22__FormationTesterStation *, const char*); -SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_in_prodml22__FormationTesterStation(struct soap*, const char*, prodml22__FormationTesterStation *, const char*); -SOAP_FMAC1 prodml22__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml22__FormationTesterStation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FormationTesterStation(struct soap*, const char*, int, const prodml23__FormationTesterStation *, const char*); +SOAP_FMAC3 prodml23__FormationTesterStation * SOAP_FMAC4 soap_in_prodml23__FormationTesterStation(struct soap*, const char*, prodml23__FormationTesterStation *, const char*); +SOAP_FMAC1 prodml23__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml23__FormationTesterStation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FormationTesterStation * soap_new_prodml22__FormationTesterStation(struct soap *soap, int n = -1) +inline prodml23__FormationTesterStation * soap_new_prodml23__FormationTesterStation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FormationTesterStation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FormationTesterStation(soap, n, NULL, NULL, NULL); } -inline prodml22__FormationTesterStation * soap_new_req_prodml22__FormationTesterStation( +inline prodml23__FormationTesterStation * soap_new_req_prodml23__FormationTesterStation( struct soap *soap, eml23__DataObjectReference *TieInLog, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__FormationTesterStation *_p = gsoap_eml2_3::soap_new_prodml22__FormationTesterStation(soap); + prodml23__FormationTesterStation *_p = gsoap_eml2_3::soap_new_prodml23__FormationTesterStation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FormationTesterStation::TieInLog = TieInLog; - _p->prodml22__FormationTesterStation::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__FormationTesterStation::TieInLog = TieInLog; + _p->prodml23__FormationTesterStation::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -122499,10 +122491,10 @@ inline prodml22__FormationTesterStation * soap_new_req_prodml22__FormationTester return _p; } -inline prodml22__FormationTesterStation * soap_new_set_prodml22__FormationTesterStation( +inline prodml23__FormationTesterStation * soap_new_set_prodml23__FormationTesterStation( struct soap *soap, eml23__DataObjectReference *TieInLog, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -122515,11 +122507,11 @@ inline prodml22__FormationTesterStation * soap_new_set_prodml22__FormationTester const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__FormationTesterStation *_p = gsoap_eml2_3::soap_new_prodml22__FormationTesterStation(soap); + prodml23__FormationTesterStation *_p = gsoap_eml2_3::soap_new_prodml23__FormationTesterStation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FormationTesterStation::TieInLog = TieInLog; - _p->prodml22__FormationTesterStation::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__FormationTesterStation::TieInLog = TieInLog; + _p->prodml23__FormationTesterStation::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -122535,193 +122527,193 @@ inline prodml22__FormationTesterStation * soap_new_set_prodml22__FormationTester return _p; } -inline int soap_write_prodml22__FormationTesterStation(struct soap *soap, prodml22__FormationTesterStation const*p) +inline int soap_write_prodml23__FormationTesterStation(struct soap *soap, prodml23__FormationTesterStation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation ? "prodml22:FormationTesterStation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation ? "prodml23:FormationTesterStation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FormationTesterStation(struct soap *soap, const char *URL, prodml22__FormationTesterStation const*p) +inline int soap_PUT_prodml23__FormationTesterStation(struct soap *soap, const char *URL, prodml23__FormationTesterStation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation ? "prodml22:FormationTesterStation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation ? "prodml23:FormationTesterStation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FormationTesterStation(struct soap *soap, const char *URL, prodml22__FormationTesterStation const*p) +inline int soap_PATCH_prodml23__FormationTesterStation(struct soap *soap, const char *URL, prodml23__FormationTesterStation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation ? "prodml22:FormationTesterStation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation ? "prodml23:FormationTesterStation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FormationTesterStation(struct soap *soap, const char *URL, prodml22__FormationTesterStation const*p) +inline int soap_POST_send_prodml23__FormationTesterStation(struct soap *soap, const char *URL, prodml23__FormationTesterStation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation ? "prodml22:FormationTesterStation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationTesterStation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation ? "prodml23:FormationTesterStation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FormationTesterStation * SOAP_FMAC4 soap_get_prodml22__FormationTesterStation(struct soap*, prodml22__FormationTesterStation *, const char*, const char*); +SOAP_FMAC3 prodml23__FormationTesterStation * SOAP_FMAC4 soap_get_prodml23__FormationTesterStation(struct soap*, prodml23__FormationTesterStation *, const char*, const char*); -inline int soap_read_prodml22__FormationTesterStation(struct soap *soap, prodml22__FormationTesterStation *p) +inline int soap_read_prodml23__FormationTesterStation(struct soap *soap, prodml23__FormationTesterStation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FormationTesterStation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FormationTesterStation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FormationTesterStation(struct soap *soap, const char *URL, prodml22__FormationTesterStation *p) +inline int soap_GET_prodml23__FormationTesterStation(struct soap *soap, const char *URL, prodml23__FormationTesterStation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FormationTesterStation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FormationTesterStation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FormationTesterStation(struct soap *soap, prodml22__FormationTesterStation *p) +inline int soap_POST_recv_prodml23__FormationTesterStation(struct soap *soap, prodml23__FormationTesterStation *p) { - if (gsoap_eml2_3::soap_read_prodml22__FormationTesterStation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FormationTesterStation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestMeasurementSet(struct soap*, const char*, int, const prodml22__FlowTestMeasurementSet *, const char*); -SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml22__FlowTestMeasurementSet(struct soap*, const char*, prodml22__FlowTestMeasurementSet *, const char*); -SOAP_FMAC1 prodml22__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestMeasurementSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestMeasurementSet(struct soap*, const char*, int, const prodml23__FlowTestMeasurementSet *, const char*); +SOAP_FMAC3 prodml23__FlowTestMeasurementSet * SOAP_FMAC4 soap_in_prodml23__FlowTestMeasurementSet(struct soap*, const char*, prodml23__FlowTestMeasurementSet *, const char*); +SOAP_FMAC1 prodml23__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestMeasurementSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FlowTestMeasurementSet * soap_new_prodml22__FlowTestMeasurementSet(struct soap *soap, int n = -1) +inline prodml23__FlowTestMeasurementSet * soap_new_prodml23__FlowTestMeasurementSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FlowTestMeasurementSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FlowTestMeasurementSet(soap, n, NULL, NULL, NULL); } -inline prodml22__FlowTestMeasurementSet * soap_new_req_prodml22__FlowTestMeasurementSet( +inline prodml23__FlowTestMeasurementSet * soap_new_req_prodml23__FlowTestMeasurementSet( struct soap *soap, - prodml22__FlowTestLocation *Location) + prodml23__FlowTestLocation *Location) { - prodml22__FlowTestMeasurementSet *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestMeasurementSet(soap); + prodml23__FlowTestMeasurementSet *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestMeasurementSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FlowTestMeasurementSet::Location = Location; + _p->prodml23__FlowTestMeasurementSet::Location = Location; } return _p; } -inline prodml22__FlowTestMeasurementSet * soap_new_set_prodml22__FlowTestMeasurementSet( +inline prodml23__FlowTestMeasurementSet * soap_new_set_prodml23__FlowTestMeasurementSet( struct soap *soap, std::string *Remark, - prodml22__TestPeriod *TestPeriod, - prodml22__FlowTestLocation *Location, - const std::vector & OtherData, - const std::vector & MeasuredFlowRate, - const std::vector & MeasuredPressure, - prodml22__FluidComponentCatalog *FluidComponentCatalog, + prodml23__TestPeriod *TestPeriod, + prodml23__FlowTestLocation *Location, + const std::vector & OtherData, + const std::vector & MeasuredFlowRate, + const std::vector & MeasuredPressure, + prodml23__FluidComponentCatalog *FluidComponentCatalog, std::string *uid) { - prodml22__FlowTestMeasurementSet *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestMeasurementSet(soap); + prodml23__FlowTestMeasurementSet *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestMeasurementSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FlowTestMeasurementSet::Remark = Remark; - _p->prodml22__FlowTestMeasurementSet::TestPeriod = TestPeriod; - _p->prodml22__FlowTestMeasurementSet::Location = Location; - _p->prodml22__FlowTestMeasurementSet::OtherData = OtherData; - _p->prodml22__FlowTestMeasurementSet::MeasuredFlowRate = MeasuredFlowRate; - _p->prodml22__FlowTestMeasurementSet::MeasuredPressure = MeasuredPressure; - _p->prodml22__FlowTestMeasurementSet::FluidComponentCatalog = FluidComponentCatalog; - _p->prodml22__FlowTestMeasurementSet::uid = uid; + _p->prodml23__FlowTestMeasurementSet::Remark = Remark; + _p->prodml23__FlowTestMeasurementSet::TestPeriod = TestPeriod; + _p->prodml23__FlowTestMeasurementSet::Location = Location; + _p->prodml23__FlowTestMeasurementSet::OtherData = OtherData; + _p->prodml23__FlowTestMeasurementSet::MeasuredFlowRate = MeasuredFlowRate; + _p->prodml23__FlowTestMeasurementSet::MeasuredPressure = MeasuredPressure; + _p->prodml23__FlowTestMeasurementSet::FluidComponentCatalog = FluidComponentCatalog; + _p->prodml23__FlowTestMeasurementSet::uid = uid; } return _p; } -inline int soap_write_prodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet const*p) +inline int soap_write_prodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet ? "prodml22:FlowTestMeasurementSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet ? "prodml23:FlowTestMeasurementSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml22__FlowTestMeasurementSet const*p) +inline int soap_PUT_prodml23__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml23__FlowTestMeasurementSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet ? "prodml22:FlowTestMeasurementSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet ? "prodml23:FlowTestMeasurementSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml22__FlowTestMeasurementSet const*p) +inline int soap_PATCH_prodml23__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml23__FlowTestMeasurementSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet ? "prodml22:FlowTestMeasurementSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet ? "prodml23:FlowTestMeasurementSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml22__FlowTestMeasurementSet const*p) +inline int soap_POST_send_prodml23__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml23__FlowTestMeasurementSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet ? "prodml22:FlowTestMeasurementSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestMeasurementSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet ? "prodml23:FlowTestMeasurementSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowTestMeasurementSet * SOAP_FMAC4 soap_get_prodml22__FlowTestMeasurementSet(struct soap*, prodml22__FlowTestMeasurementSet *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowTestMeasurementSet * SOAP_FMAC4 soap_get_prodml23__FlowTestMeasurementSet(struct soap*, prodml23__FlowTestMeasurementSet *, const char*, const char*); -inline int soap_read_prodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet *p) +inline int soap_read_prodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlowTestMeasurementSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlowTestMeasurementSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml22__FlowTestMeasurementSet *p) +inline int soap_GET_prodml23__FlowTestMeasurementSet(struct soap *soap, const char *URL, prodml23__FlowTestMeasurementSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlowTestMeasurementSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlowTestMeasurementSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlowTestMeasurementSet(struct soap *soap, prodml22__FlowTestMeasurementSet *p) +inline int soap_POST_recv_prodml23__FlowTestMeasurementSet(struct soap *soap, prodml23__FlowTestMeasurementSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlowTestMeasurementSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlowTestMeasurementSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestLocation(struct soap*, const char*, int, const prodml22__FlowTestLocation *, const char*); -SOAP_FMAC3 prodml22__FlowTestLocation * SOAP_FMAC4 soap_in_prodml22__FlowTestLocation(struct soap*, const char*, prodml22__FlowTestLocation *, const char*); -SOAP_FMAC1 prodml22__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestLocation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestLocation(struct soap*, const char*, int, const prodml23__FlowTestLocation *, const char*); +SOAP_FMAC3 prodml23__FlowTestLocation * SOAP_FMAC4 soap_in_prodml23__FlowTestLocation(struct soap*, const char*, prodml23__FlowTestLocation *, const char*); +SOAP_FMAC1 prodml23__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestLocation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FlowTestLocation * soap_new_prodml22__FlowTestLocation(struct soap *soap, int n = -1) +inline prodml23__FlowTestLocation * soap_new_prodml23__FlowTestLocation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FlowTestLocation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FlowTestLocation(soap, n, NULL, NULL, NULL); } -inline prodml22__FlowTestLocation * soap_new_req_prodml22__FlowTestLocation( +inline prodml23__FlowTestLocation * soap_new_req_prodml23__FlowTestLocation( struct soap *soap) { - prodml22__FlowTestLocation *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestLocation(soap); + prodml23__FlowTestLocation *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestLocation(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__FlowTestLocation * soap_new_set_prodml22__FlowTestLocation( +inline prodml23__FlowTestLocation * soap_new_set_prodml23__FlowTestLocation( struct soap *soap, eml23__DataObjectReference *Wellbore, eml23__MdInterval *MdInterval, @@ -122734,99 +122726,99 @@ inline prodml22__FlowTestLocation * soap_new_set_prodml22__FlowTestLocation( eml23__LengthMeasure *ProbeDiameter, eml23__ReferencePointKind *Datum) { - prodml22__FlowTestLocation *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestLocation(soap); + prodml23__FlowTestLocation *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestLocation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FlowTestLocation::Wellbore = Wellbore; - _p->prodml22__FlowTestLocation::MdInterval = MdInterval; - _p->prodml22__FlowTestLocation::WellboreCompletion = WellboreCompletion; - _p->prodml22__FlowTestLocation::Well = Well; - _p->prodml22__FlowTestLocation::WellCompletion = WellCompletion; - _p->prodml22__FlowTestLocation::ReportingEntity = ReportingEntity; - _p->prodml22__FlowTestLocation::Remark = Remark; - _p->prodml22__FlowTestLocation::ProbeDepth = ProbeDepth; - _p->prodml22__FlowTestLocation::ProbeDiameter = ProbeDiameter; - _p->prodml22__FlowTestLocation::Datum = Datum; + _p->prodml23__FlowTestLocation::Wellbore = Wellbore; + _p->prodml23__FlowTestLocation::MdInterval = MdInterval; + _p->prodml23__FlowTestLocation::WellboreCompletion = WellboreCompletion; + _p->prodml23__FlowTestLocation::Well = Well; + _p->prodml23__FlowTestLocation::WellCompletion = WellCompletion; + _p->prodml23__FlowTestLocation::ReportingEntity = ReportingEntity; + _p->prodml23__FlowTestLocation::Remark = Remark; + _p->prodml23__FlowTestLocation::ProbeDepth = ProbeDepth; + _p->prodml23__FlowTestLocation::ProbeDiameter = ProbeDiameter; + _p->prodml23__FlowTestLocation::Datum = Datum; } return _p; } -inline int soap_write_prodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation const*p) +inline int soap_write_prodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation ? "prodml22:FlowTestLocation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation ? "prodml23:FlowTestLocation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FlowTestLocation(struct soap *soap, const char *URL, prodml22__FlowTestLocation const*p) +inline int soap_PUT_prodml23__FlowTestLocation(struct soap *soap, const char *URL, prodml23__FlowTestLocation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation ? "prodml22:FlowTestLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation ? "prodml23:FlowTestLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlowTestLocation(struct soap *soap, const char *URL, prodml22__FlowTestLocation const*p) +inline int soap_PATCH_prodml23__FlowTestLocation(struct soap *soap, const char *URL, prodml23__FlowTestLocation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation ? "prodml22:FlowTestLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation ? "prodml23:FlowTestLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlowTestLocation(struct soap *soap, const char *URL, prodml22__FlowTestLocation const*p) +inline int soap_POST_send_prodml23__FlowTestLocation(struct soap *soap, const char *URL, prodml23__FlowTestLocation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation ? "prodml22:FlowTestLocation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation ? "prodml23:FlowTestLocation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowTestLocation * SOAP_FMAC4 soap_get_prodml22__FlowTestLocation(struct soap*, prodml22__FlowTestLocation *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowTestLocation * SOAP_FMAC4 soap_get_prodml23__FlowTestLocation(struct soap*, prodml23__FlowTestLocation *, const char*, const char*); -inline int soap_read_prodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation *p) +inline int soap_read_prodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlowTestLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlowTestLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlowTestLocation(struct soap *soap, const char *URL, prodml22__FlowTestLocation *p) +inline int soap_GET_prodml23__FlowTestLocation(struct soap *soap, const char *URL, prodml23__FlowTestLocation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlowTestLocation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlowTestLocation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlowTestLocation(struct soap *soap, prodml22__FlowTestLocation *p) +inline int soap_POST_recv_prodml23__FlowTestLocation(struct soap *soap, prodml23__FlowTestLocation *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlowTestLocation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlowTestLocation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlowTestActivity(struct soap*, const char*, int, const prodml22__FlowTestActivity *, const char*); -SOAP_FMAC3 prodml22__FlowTestActivity * SOAP_FMAC4 soap_in_prodml22__FlowTestActivity(struct soap*, const char*, prodml22__FlowTestActivity *, const char*); -SOAP_FMAC1 prodml22__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestActivity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlowTestActivity(struct soap*, const char*, int, const prodml23__FlowTestActivity *, const char*); +SOAP_FMAC3 prodml23__FlowTestActivity * SOAP_FMAC4 soap_in_prodml23__FlowTestActivity(struct soap*, const char*, prodml23__FlowTestActivity *, const char*); +SOAP_FMAC1 prodml23__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestActivity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FlowTestActivity * soap_new_prodml22__FlowTestActivity(struct soap *soap, int n = -1) +inline prodml23__FlowTestActivity * soap_new_prodml23__FlowTestActivity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FlowTestActivity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FlowTestActivity(soap, n, NULL, NULL, NULL); } -inline prodml22__FlowTestActivity * soap_new_req_prodml22__FlowTestActivity( +inline prodml23__FlowTestActivity * soap_new_req_prodml23__FlowTestActivity( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FlowTestActivity *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestActivity(soap); + prodml23__FlowTestActivity *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestActivity(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -122836,7 +122828,7 @@ inline prodml22__FlowTestActivity * soap_new_req_prodml22__FlowTestActivity( return _p; } -inline prodml22__FlowTestActivity * soap_new_set_prodml22__FlowTestActivity( +inline prodml23__FlowTestActivity * soap_new_set_prodml23__FlowTestActivity( struct soap *soap, const std::vector & Aliases__1, eml23__Citation *Citation__1, @@ -122850,7 +122842,7 @@ inline prodml22__FlowTestActivity * soap_new_set_prodml22__FlowTestActivity( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FlowTestActivity *_p = gsoap_eml2_3::soap_new_prodml22__FlowTestActivity(soap); + prodml23__FlowTestActivity *_p = gsoap_eml2_3::soap_new_prodml23__FlowTestActivity(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Aliases = Aliases__1; @@ -122868,86 +122860,86 @@ inline prodml22__FlowTestActivity * soap_new_set_prodml22__FlowTestActivity( return _p; } -inline int soap_write_prodml22__FlowTestActivity(struct soap *soap, prodml22__FlowTestActivity const*p) +inline int soap_write_prodml23__FlowTestActivity(struct soap *soap, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity ? "prodml22:FlowTestActivity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity ? "prodml23:FlowTestActivity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity const*p) +inline int soap_PUT_prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity ? "prodml22:FlowTestActivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity ? "prodml23:FlowTestActivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity const*p) +inline int soap_PATCH_prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity ? "prodml22:FlowTestActivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity ? "prodml23:FlowTestActivity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity const*p) +inline int soap_POST_send_prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity ? "prodml22:FlowTestActivity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlowTestActivity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity ? "prodml23:FlowTestActivity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlowTestActivity * SOAP_FMAC4 soap_get_prodml22__FlowTestActivity(struct soap*, prodml22__FlowTestActivity *, const char*, const char*); +SOAP_FMAC3 prodml23__FlowTestActivity * SOAP_FMAC4 soap_get_prodml23__FlowTestActivity(struct soap*, prodml23__FlowTestActivity *, const char*, const char*); -inline int soap_read_prodml22__FlowTestActivity(struct soap *soap, prodml22__FlowTestActivity *p) +inline int soap_read_prodml23__FlowTestActivity(struct soap *soap, prodml23__FlowTestActivity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlowTestActivity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlowTestActivity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlowTestActivity(struct soap *soap, const char *URL, prodml22__FlowTestActivity *p) +inline int soap_GET_prodml23__FlowTestActivity(struct soap *soap, const char *URL, prodml23__FlowTestActivity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlowTestActivity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlowTestActivity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlowTestActivity(struct soap *soap, prodml22__FlowTestActivity *p) +inline int soap_POST_recv_prodml23__FlowTestActivity(struct soap *soap, prodml23__FlowTestActivity *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlowTestActivity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlowTestActivity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DrillStemTest(struct soap*, const char*, int, const prodml22__DrillStemTest *, const char*); -SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_in_prodml22__DrillStemTest(struct soap*, const char*, prodml22__DrillStemTest *, const char*); -SOAP_FMAC1 prodml22__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml22__DrillStemTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DrillStemTest(struct soap*, const char*, int, const prodml23__DrillStemTest *, const char*); +SOAP_FMAC3 prodml23__DrillStemTest * SOAP_FMAC4 soap_in_prodml23__DrillStemTest(struct soap*, const char*, prodml23__DrillStemTest *, const char*); +SOAP_FMAC1 prodml23__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml23__DrillStemTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DrillStemTest * soap_new_prodml22__DrillStemTest(struct soap *soap, int n = -1) +inline prodml23__DrillStemTest * soap_new_prodml23__DrillStemTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DrillStemTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DrillStemTest(soap, n, NULL, NULL, NULL); } -inline prodml22__DrillStemTest * soap_new_req_prodml22__DrillStemTest( +inline prodml23__DrillStemTest * soap_new_req_prodml23__DrillStemTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__DrillStemTest *_p = gsoap_eml2_3::soap_new_prodml22__DrillStemTest(soap); + prodml23__DrillStemTest *_p = gsoap_eml2_3::soap_new_prodml23__DrillStemTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DrillStemTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__DrillStemTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -122955,9 +122947,9 @@ inline prodml22__DrillStemTest * soap_new_req_prodml22__DrillStemTest( return _p; } -inline prodml22__DrillStemTest * soap_new_set_prodml22__DrillStemTest( +inline prodml23__DrillStemTest * soap_new_set_prodml23__DrillStemTest( struct soap *soap, - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet, + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -122970,10 +122962,10 @@ inline prodml22__DrillStemTest * soap_new_set_prodml22__DrillStemTest( const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__DrillStemTest *_p = gsoap_eml2_3::soap_new_prodml22__DrillStemTest(soap); + prodml23__DrillStemTest *_p = gsoap_eml2_3::soap_new_prodml23__DrillStemTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DrillStemTest::IntervalMeasurementSet = IntervalMeasurementSet; + _p->prodml23__DrillStemTest::IntervalMeasurementSet = IntervalMeasurementSet; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -122989,82 +122981,82 @@ inline prodml22__DrillStemTest * soap_new_set_prodml22__DrillStemTest( return _p; } -inline int soap_write_prodml22__DrillStemTest(struct soap *soap, prodml22__DrillStemTest const*p) +inline int soap_write_prodml23__DrillStemTest(struct soap *soap, prodml23__DrillStemTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest ? "prodml22:DrillStemTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest ? "prodml23:DrillStemTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DrillStemTest(struct soap *soap, const char *URL, prodml22__DrillStemTest const*p) +inline int soap_PUT_prodml23__DrillStemTest(struct soap *soap, const char *URL, prodml23__DrillStemTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest ? "prodml22:DrillStemTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest ? "prodml23:DrillStemTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DrillStemTest(struct soap *soap, const char *URL, prodml22__DrillStemTest const*p) +inline int soap_PATCH_prodml23__DrillStemTest(struct soap *soap, const char *URL, prodml23__DrillStemTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest ? "prodml22:DrillStemTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest ? "prodml23:DrillStemTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DrillStemTest(struct soap *soap, const char *URL, prodml22__DrillStemTest const*p) +inline int soap_POST_send_prodml23__DrillStemTest(struct soap *soap, const char *URL, prodml23__DrillStemTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest ? "prodml22:DrillStemTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DrillStemTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest ? "prodml23:DrillStemTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DrillStemTest * SOAP_FMAC4 soap_get_prodml22__DrillStemTest(struct soap*, prodml22__DrillStemTest *, const char*, const char*); +SOAP_FMAC3 prodml23__DrillStemTest * SOAP_FMAC4 soap_get_prodml23__DrillStemTest(struct soap*, prodml23__DrillStemTest *, const char*, const char*); -inline int soap_read_prodml22__DrillStemTest(struct soap *soap, prodml22__DrillStemTest *p) +inline int soap_read_prodml23__DrillStemTest(struct soap *soap, prodml23__DrillStemTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DrillStemTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DrillStemTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DrillStemTest(struct soap *soap, const char *URL, prodml22__DrillStemTest *p) +inline int soap_GET_prodml23__DrillStemTest(struct soap *soap, const char *URL, prodml23__DrillStemTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DrillStemTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DrillStemTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DrillStemTest(struct soap *soap, prodml22__DrillStemTest *p) +inline int soap_POST_recv_prodml23__DrillStemTest(struct soap *soap, prodml23__DrillStemTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__DrillStemTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DrillStemTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ChannelSet(struct soap*, const char*, int, const prodml22__ChannelSet *, const char*); -SOAP_FMAC3 prodml22__ChannelSet * SOAP_FMAC4 soap_in_prodml22__ChannelSet(struct soap*, const char*, prodml22__ChannelSet *, const char*); -SOAP_FMAC1 prodml22__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml22__ChannelSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ChannelSet(struct soap*, const char*, int, const prodml23__ChannelSet *, const char*); +SOAP_FMAC3 prodml23__ChannelSet * SOAP_FMAC4 soap_in_prodml23__ChannelSet(struct soap*, const char*, prodml23__ChannelSet *, const char*); +SOAP_FMAC1 prodml23__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml23__ChannelSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ChannelSet * soap_new_prodml22__ChannelSet(struct soap *soap, int n = -1) +inline prodml23__ChannelSet * soap_new_prodml23__ChannelSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ChannelSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ChannelSet(soap, n, NULL, NULL, NULL); } -inline prodml22__ChannelSet * soap_new_req_prodml22__ChannelSet( +inline prodml23__ChannelSet * soap_new_req_prodml23__ChannelSet( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__ChannelSet *_p = gsoap_eml2_3::soap_new_prodml22__ChannelSet(soap); + prodml23__ChannelSet *_p = gsoap_eml2_3::soap_new_prodml23__ChannelSet(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -123074,10 +123066,10 @@ inline prodml22__ChannelSet * soap_new_req_prodml22__ChannelSet( return _p; } -inline prodml22__ChannelSet * soap_new_set_prodml22__ChannelSet( +inline prodml23__ChannelSet * soap_new_set_prodml23__ChannelSet( struct soap *soap, const std::vector & Data, - const std::vector & Channel, + const std::vector & Channel, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -123090,11 +123082,11 @@ inline prodml22__ChannelSet * soap_new_set_prodml22__ChannelSet( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__ChannelSet *_p = gsoap_eml2_3::soap_new_prodml22__ChannelSet(soap); + prodml23__ChannelSet *_p = gsoap_eml2_3::soap_new_prodml23__ChannelSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ChannelSet::Data = Data; - _p->prodml22__ChannelSet::Channel = Channel; + _p->prodml23__ChannelSet::Data = Data; + _p->prodml23__ChannelSet::Channel = Channel; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -123110,82 +123102,82 @@ inline prodml22__ChannelSet * soap_new_set_prodml22__ChannelSet( return _p; } -inline int soap_write_prodml22__ChannelSet(struct soap *soap, prodml22__ChannelSet const*p) +inline int soap_write_prodml23__ChannelSet(struct soap *soap, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet ? "prodml22:ChannelSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet ? "prodml23:ChannelSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet const*p) +inline int soap_PUT_prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet ? "prodml22:ChannelSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet ? "prodml23:ChannelSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet const*p) +inline int soap_PATCH_prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet ? "prodml22:ChannelSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet ? "prodml23:ChannelSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet const*p) +inline int soap_POST_send_prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet ? "prodml22:ChannelSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ChannelSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet ? "prodml23:ChannelSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ChannelSet * SOAP_FMAC4 soap_get_prodml22__ChannelSet(struct soap*, prodml22__ChannelSet *, const char*, const char*); +SOAP_FMAC3 prodml23__ChannelSet * SOAP_FMAC4 soap_get_prodml23__ChannelSet(struct soap*, prodml23__ChannelSet *, const char*, const char*); -inline int soap_read_prodml22__ChannelSet(struct soap *soap, prodml22__ChannelSet *p) +inline int soap_read_prodml23__ChannelSet(struct soap *soap, prodml23__ChannelSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ChannelSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ChannelSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ChannelSet(struct soap *soap, const char *URL, prodml22__ChannelSet *p) +inline int soap_GET_prodml23__ChannelSet(struct soap *soap, const char *URL, prodml23__ChannelSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ChannelSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ChannelSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ChannelSet(struct soap *soap, prodml22__ChannelSet *p) +inline int soap_POST_recv_prodml23__ChannelSet(struct soap *soap, prodml23__ChannelSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__ChannelSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ChannelSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Channel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Channel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Channel(struct soap*, const char*, int, const prodml22__Channel *, const char*); -SOAP_FMAC3 prodml22__Channel * SOAP_FMAC4 soap_in_prodml22__Channel(struct soap*, const char*, prodml22__Channel *, const char*); -SOAP_FMAC1 prodml22__Channel * SOAP_FMAC2 soap_instantiate_prodml22__Channel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Channel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Channel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Channel(struct soap*, const char*, int, const prodml23__Channel *, const char*); +SOAP_FMAC3 prodml23__Channel * SOAP_FMAC4 soap_in_prodml23__Channel(struct soap*, const char*, prodml23__Channel *, const char*); +SOAP_FMAC1 prodml23__Channel * SOAP_FMAC2 soap_instantiate_prodml23__Channel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Channel * soap_new_prodml22__Channel(struct soap *soap, int n = -1) +inline prodml23__Channel * soap_new_prodml23__Channel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Channel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Channel(soap, n, NULL, NULL, NULL); } -inline prodml22__Channel * soap_new_req_prodml22__Channel( +inline prodml23__Channel * soap_new_req_prodml23__Channel( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__Channel *_p = gsoap_eml2_3::soap_new_prodml22__Channel(soap); + prodml23__Channel *_p = gsoap_eml2_3::soap_new_prodml23__Channel(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -123195,7 +123187,7 @@ inline prodml22__Channel * soap_new_req_prodml22__Channel( return _p; } -inline prodml22__Channel * soap_new_set_prodml22__Channel( +inline prodml23__Channel * soap_new_set_prodml23__Channel( struct soap *soap, const std::vector & Aliases__1, eml23__Citation *Citation__1, @@ -123209,7 +123201,7 @@ inline prodml22__Channel * soap_new_set_prodml22__Channel( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__Channel *_p = gsoap_eml2_3::soap_new_prodml22__Channel(soap); + prodml23__Channel *_p = gsoap_eml2_3::soap_new_prodml23__Channel(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Aliases = Aliases__1; @@ -123227,302 +123219,302 @@ inline prodml22__Channel * soap_new_set_prodml22__Channel( return _p; } -inline int soap_write_prodml22__Channel(struct soap *soap, prodml22__Channel const*p) +inline int soap_write_prodml23__Channel(struct soap *soap, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Channel ? "prodml22:Channel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Channel ? "prodml23:Channel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel const*p) +inline int soap_PUT_prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Channel ? "prodml22:Channel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Channel ? "prodml23:Channel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel const*p) +inline int soap_PATCH_prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Channel ? "prodml22:Channel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Channel ? "prodml23:Channel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel const*p) +inline int soap_POST_send_prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Channel ? "prodml22:Channel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Channel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Channel ? "prodml23:Channel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Channel * SOAP_FMAC4 soap_get_prodml22__Channel(struct soap*, prodml22__Channel *, const char*, const char*); +SOAP_FMAC3 prodml23__Channel * SOAP_FMAC4 soap_get_prodml23__Channel(struct soap*, prodml23__Channel *, const char*, const char*); -inline int soap_read_prodml22__Channel(struct soap *soap, prodml22__Channel *p) +inline int soap_read_prodml23__Channel(struct soap *soap, prodml23__Channel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Channel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Channel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Channel(struct soap *soap, const char *URL, prodml22__Channel *p) +inline int soap_GET_prodml23__Channel(struct soap *soap, const char *URL, prodml23__Channel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Channel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Channel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Channel(struct soap *soap, prodml22__Channel *p) +inline int soap_POST_recv_prodml23__Channel(struct soap *soap, prodml23__Channel *p) { - if (gsoap_eml2_3::soap_read_prodml22__Channel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Channel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractPtaFlowData(struct soap*, const char*, int, const prodml22__AbstractPtaFlowData *, const char*); -SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml22__AbstractPtaFlowData(struct soap*, const char*, prodml22__AbstractPtaFlowData *, const char*); -SOAP_FMAC1 prodml22__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPtaFlowData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractPtaFlowData(struct soap*, const char*, int, const prodml23__AbstractPtaFlowData *, const char*); +SOAP_FMAC3 prodml23__AbstractPtaFlowData * SOAP_FMAC4 soap_in_prodml23__AbstractPtaFlowData(struct soap*, const char*, prodml23__AbstractPtaFlowData *, const char*); +SOAP_FMAC1 prodml23__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPtaFlowData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractPtaFlowData * soap_new_prodml22__AbstractPtaFlowData(struct soap *soap, int n = -1) +inline prodml23__AbstractPtaFlowData * soap_new_prodml23__AbstractPtaFlowData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractPtaFlowData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractPtaFlowData(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractPtaFlowData * soap_new_req_prodml22__AbstractPtaFlowData( +inline prodml23__AbstractPtaFlowData * soap_new_req_prodml23__AbstractPtaFlowData( struct soap *soap, eml23__DataObjectReference *FlowChannel, eml23__DataObjectReference *ChannelSet__1, eml23__DataObjectReference *TimeChannel__1) { - prodml22__AbstractPtaFlowData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractPtaFlowData(soap); + prodml23__AbstractPtaFlowData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractPtaFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__1; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__1; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__1; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__1; } return _p; } -inline prodml22__AbstractPtaFlowData * soap_new_set_prodml22__AbstractPtaFlowData( +inline prodml23__AbstractPtaFlowData * soap_new_set_prodml23__AbstractPtaFlowData( struct soap *soap, - prodml22__FluidPhaseKind *FluidPhaseMeasuredKind, + prodml23__FluidPhaseKind *FluidPhaseMeasuredKind, eml23__DataObjectReference *FlowChannel, eml23__DataObjectReference *ChannelSet__1, eml23__DataObjectReference *TimeChannel__1, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__1, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation__1, std::string *Remark__1, std::string *uid__1) { - prodml22__AbstractPtaFlowData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractPtaFlowData(soap); + prodml23__AbstractPtaFlowData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractPtaFlowData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind; - _p->prodml22__AbstractPtaFlowData::FlowChannel = FlowChannel; - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet__1; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel__1; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__1; - _p->prodml22__AbstractFlowTestData::Remark = Remark__1; - _p->prodml22__AbstractFlowTestData::uid = uid__1; + _p->prodml23__AbstractPtaFlowData::FluidPhaseMeasuredKind = FluidPhaseMeasuredKind; + _p->prodml23__AbstractPtaFlowData::FlowChannel = FlowChannel; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet__1; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel__1; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation__1; + _p->prodml23__AbstractFlowTestData::Remark = Remark__1; + _p->prodml23__AbstractFlowTestData::uid = uid__1; } return _p; } -inline int soap_write_prodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData const*p) +inline int soap_write_prodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData ? "prodml22:AbstractPtaFlowData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData ? "prodml23:AbstractPtaFlowData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml22__AbstractPtaFlowData const*p) +inline int soap_PUT_prodml23__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml23__AbstractPtaFlowData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData ? "prodml22:AbstractPtaFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData ? "prodml23:AbstractPtaFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml22__AbstractPtaFlowData const*p) +inline int soap_PATCH_prodml23__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml23__AbstractPtaFlowData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData ? "prodml22:AbstractPtaFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData ? "prodml23:AbstractPtaFlowData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml22__AbstractPtaFlowData const*p) +inline int soap_POST_send_prodml23__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml23__AbstractPtaFlowData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData ? "prodml22:AbstractPtaFlowData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPtaFlowData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData ? "prodml23:AbstractPtaFlowData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractPtaFlowData * SOAP_FMAC4 soap_get_prodml22__AbstractPtaFlowData(struct soap*, prodml22__AbstractPtaFlowData *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractPtaFlowData * SOAP_FMAC4 soap_get_prodml23__AbstractPtaFlowData(struct soap*, prodml23__AbstractPtaFlowData *, const char*, const char*); -inline int soap_read_prodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData *p) +inline int soap_read_prodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractPtaFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractPtaFlowData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml22__AbstractPtaFlowData *p) +inline int soap_GET_prodml23__AbstractPtaFlowData(struct soap *soap, const char *URL, prodml23__AbstractPtaFlowData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractPtaFlowData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractPtaFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractPtaFlowData(struct soap *soap, prodml22__AbstractPtaFlowData *p) +inline int soap_POST_recv_prodml23__AbstractPtaFlowData(struct soap *soap, prodml23__AbstractPtaFlowData *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractPtaFlowData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractPtaFlowData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractFlowTestData(struct soap*, const char*, int, const prodml22__AbstractFlowTestData *, const char*); -SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml22__AbstractFlowTestData(struct soap*, const char*, prodml22__AbstractFlowTestData *, const char*); -SOAP_FMAC1 prodml22__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractFlowTestData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractFlowTestData(struct soap*, const char*, int, const prodml23__AbstractFlowTestData *, const char*); +SOAP_FMAC3 prodml23__AbstractFlowTestData * SOAP_FMAC4 soap_in_prodml23__AbstractFlowTestData(struct soap*, const char*, prodml23__AbstractFlowTestData *, const char*); +SOAP_FMAC1 prodml23__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractFlowTestData(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractFlowTestData * soap_new_prodml22__AbstractFlowTestData(struct soap *soap, int n = -1) +inline prodml23__AbstractFlowTestData * soap_new_prodml23__AbstractFlowTestData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractFlowTestData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractFlowTestData(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractFlowTestData * soap_new_req_prodml22__AbstractFlowTestData( +inline prodml23__AbstractFlowTestData * soap_new_req_prodml23__AbstractFlowTestData( struct soap *soap, eml23__DataObjectReference *ChannelSet, eml23__DataObjectReference *TimeChannel) { - prodml22__AbstractFlowTestData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractFlowTestData(soap); + prodml23__AbstractFlowTestData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractFlowTestData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel; } return _p; } -inline prodml22__AbstractFlowTestData * soap_new_set_prodml22__AbstractFlowTestData( +inline prodml23__AbstractFlowTestData * soap_new_set_prodml23__AbstractFlowTestData( struct soap *soap, eml23__DataObjectReference *ChannelSet, eml23__DataObjectReference *TimeChannel, - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation, + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation, std::string *Remark, std::string *uid) { - prodml22__AbstractFlowTestData *_p = gsoap_eml2_3::soap_new_prodml22__AbstractFlowTestData(soap); + prodml23__AbstractFlowTestData *_p = gsoap_eml2_3::soap_new_prodml23__AbstractFlowTestData(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFlowTestData::ChannelSet = ChannelSet; - _p->prodml22__AbstractFlowTestData::TimeChannel = TimeChannel; - _p->prodml22__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation; - _p->prodml22__AbstractFlowTestData::Remark = Remark; - _p->prodml22__AbstractFlowTestData::uid = uid; + _p->prodml23__AbstractFlowTestData::ChannelSet = ChannelSet; + _p->prodml23__AbstractFlowTestData::TimeChannel = TimeChannel; + _p->prodml23__AbstractFlowTestData::TimeSeriesPointRepresentation = TimeSeriesPointRepresentation; + _p->prodml23__AbstractFlowTestData::Remark = Remark; + _p->prodml23__AbstractFlowTestData::uid = uid; } return _p; } -inline int soap_write_prodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData const*p) +inline int soap_write_prodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData ? "prodml22:AbstractFlowTestData" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData ? "prodml23:AbstractFlowTestData" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractFlowTestData(struct soap *soap, const char *URL, prodml22__AbstractFlowTestData const*p) +inline int soap_PUT_prodml23__AbstractFlowTestData(struct soap *soap, const char *URL, prodml23__AbstractFlowTestData const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData ? "prodml22:AbstractFlowTestData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData ? "prodml23:AbstractFlowTestData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractFlowTestData(struct soap *soap, const char *URL, prodml22__AbstractFlowTestData const*p) +inline int soap_PATCH_prodml23__AbstractFlowTestData(struct soap *soap, const char *URL, prodml23__AbstractFlowTestData const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData ? "prodml22:AbstractFlowTestData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData ? "prodml23:AbstractFlowTestData" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractFlowTestData(struct soap *soap, const char *URL, prodml22__AbstractFlowTestData const*p) +inline int soap_POST_send_prodml23__AbstractFlowTestData(struct soap *soap, const char *URL, prodml23__AbstractFlowTestData const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData ? "prodml22:AbstractFlowTestData" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFlowTestData", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData ? "prodml23:AbstractFlowTestData" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractFlowTestData * SOAP_FMAC4 soap_get_prodml22__AbstractFlowTestData(struct soap*, prodml22__AbstractFlowTestData *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractFlowTestData * SOAP_FMAC4 soap_get_prodml23__AbstractFlowTestData(struct soap*, prodml23__AbstractFlowTestData *, const char*, const char*); -inline int soap_read_prodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData *p) +inline int soap_read_prodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractFlowTestData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractFlowTestData(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractFlowTestData(struct soap *soap, const char *URL, prodml22__AbstractFlowTestData *p) +inline int soap_GET_prodml23__AbstractFlowTestData(struct soap *soap, const char *URL, prodml23__AbstractFlowTestData *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractFlowTestData(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractFlowTestData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractFlowTestData(struct soap *soap, prodml22__AbstractFlowTestData *p) +inline int soap_POST_recv_prodml23__AbstractFlowTestData(struct soap *soap, prodml23__AbstractFlowTestData *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractFlowTestData(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractFlowTestData(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSystem(struct soap*, const char*, int, const prodml22__FluidSystem *, const char*); -SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_in_prodml22__FluidSystem(struct soap*, const char*, prodml22__FluidSystem *, const char*); -SOAP_FMAC1 prodml22__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml22__FluidSystem(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSystem(struct soap*, const char*, int, const prodml23__FluidSystem *, const char*); +SOAP_FMAC3 prodml23__FluidSystem * SOAP_FMAC4 soap_in_prodml23__FluidSystem(struct soap*, const char*, prodml23__FluidSystem *, const char*); +SOAP_FMAC1 prodml23__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml23__FluidSystem(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSystem * soap_new_prodml22__FluidSystem(struct soap *soap, int n = -1) +inline prodml23__FluidSystem * soap_new_prodml23__FluidSystem(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSystem(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSystem(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSystem * soap_new_req_prodml22__FluidSystem( +inline prodml23__FluidSystem * soap_new_req_prodml23__FluidSystem( struct soap *soap, eml23__AbstractTemperaturePressure *StandardConditions, - prodml22__ReservoirFluidKind ReservoirFluidKind, + prodml23__ReservoirFluidKind ReservoirFluidKind, eml23__VolumePerVolumeMeasure *SolutionGOR, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FluidSystem *_p = gsoap_eml2_3::soap_new_prodml22__FluidSystem(soap); + prodml23__FluidSystem *_p = gsoap_eml2_3::soap_new_prodml23__FluidSystem(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSystem::StandardConditions = StandardConditions; - _p->prodml22__FluidSystem::ReservoirFluidKind = ReservoirFluidKind; - _p->prodml22__FluidSystem::SolutionGOR = SolutionGOR; + _p->prodml23__FluidSystem::StandardConditions = StandardConditions; + _p->prodml23__FluidSystem::ReservoirFluidKind = ReservoirFluidKind; + _p->prodml23__FluidSystem::SolutionGOR = SolutionGOR; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -123530,19 +123522,19 @@ inline prodml22__FluidSystem * soap_new_req_prodml22__FluidSystem( return _p; } -inline prodml22__FluidSystem * soap_new_set_prodml22__FluidSystem( +inline prodml23__FluidSystem * soap_new_set_prodml23__FluidSystem( struct soap *soap, eml23__AbstractTemperaturePressure *StandardConditions, - prodml22__ReservoirFluidKind ReservoirFluidKind, - prodml22__PhasePresent *PhasesPresent, - prodml22__ReservoirLifeCycleState *ReservoirLifeCycleState, + prodml23__ReservoirFluidKind ReservoirFluidKind, + prodml23__PhasePresent *PhasesPresent, + prodml23__ReservoirLifeCycleState *ReservoirLifeCycleState, eml23__DataObjectReference *RockFluidOrganizationInterpretation, - prodml22__SaturationPressure *SaturationPressure, + prodml23__SaturationPressure *SaturationPressure, eml23__VolumePerVolumeMeasure *SolutionGOR, std::string *Remark, - prodml22__StockTankOil *StockTankOil, - prodml22__FormationWater *FormationWater, - prodml22__NaturalGas *NaturalGas, + prodml23__StockTankOil *StockTankOil, + prodml23__FormationWater *FormationWater, + prodml23__NaturalGas *NaturalGas, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -123555,20 +123547,20 @@ inline prodml22__FluidSystem * soap_new_set_prodml22__FluidSystem( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FluidSystem *_p = gsoap_eml2_3::soap_new_prodml22__FluidSystem(soap); + prodml23__FluidSystem *_p = gsoap_eml2_3::soap_new_prodml23__FluidSystem(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSystem::StandardConditions = StandardConditions; - _p->prodml22__FluidSystem::ReservoirFluidKind = ReservoirFluidKind; - _p->prodml22__FluidSystem::PhasesPresent = PhasesPresent; - _p->prodml22__FluidSystem::ReservoirLifeCycleState = ReservoirLifeCycleState; - _p->prodml22__FluidSystem::RockFluidOrganizationInterpretation = RockFluidOrganizationInterpretation; - _p->prodml22__FluidSystem::SaturationPressure = SaturationPressure; - _p->prodml22__FluidSystem::SolutionGOR = SolutionGOR; - _p->prodml22__FluidSystem::Remark = Remark; - _p->prodml22__FluidSystem::StockTankOil = StockTankOil; - _p->prodml22__FluidSystem::FormationWater = FormationWater; - _p->prodml22__FluidSystem::NaturalGas = NaturalGas; + _p->prodml23__FluidSystem::StandardConditions = StandardConditions; + _p->prodml23__FluidSystem::ReservoirFluidKind = ReservoirFluidKind; + _p->prodml23__FluidSystem::PhasesPresent = PhasesPresent; + _p->prodml23__FluidSystem::ReservoirLifeCycleState = ReservoirLifeCycleState; + _p->prodml23__FluidSystem::RockFluidOrganizationInterpretation = RockFluidOrganizationInterpretation; + _p->prodml23__FluidSystem::SaturationPressure = SaturationPressure; + _p->prodml23__FluidSystem::SolutionGOR = SolutionGOR; + _p->prodml23__FluidSystem::Remark = Remark; + _p->prodml23__FluidSystem::StockTankOil = StockTankOil; + _p->prodml23__FluidSystem::FormationWater = FormationWater; + _p->prodml23__FluidSystem::NaturalGas = NaturalGas; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -123584,88 +123576,88 @@ inline prodml22__FluidSystem * soap_new_set_prodml22__FluidSystem( return _p; } -inline int soap_write_prodml22__FluidSystem(struct soap *soap, prodml22__FluidSystem const*p) +inline int soap_write_prodml23__FluidSystem(struct soap *soap, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem ? "prodml22:FluidSystem" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem ? "prodml23:FluidSystem" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem const*p) +inline int soap_PUT_prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem ? "prodml22:FluidSystem" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem ? "prodml23:FluidSystem" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem const*p) +inline int soap_PATCH_prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem ? "prodml22:FluidSystem" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem ? "prodml23:FluidSystem" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem const*p) +inline int soap_POST_send_prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem ? "prodml22:FluidSystem" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSystem", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem ? "prodml23:FluidSystem" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSystem * SOAP_FMAC4 soap_get_prodml22__FluidSystem(struct soap*, prodml22__FluidSystem *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSystem * SOAP_FMAC4 soap_get_prodml23__FluidSystem(struct soap*, prodml23__FluidSystem *, const char*, const char*); -inline int soap_read_prodml22__FluidSystem(struct soap *soap, prodml22__FluidSystem *p) +inline int soap_read_prodml23__FluidSystem(struct soap *soap, prodml23__FluidSystem *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSystem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSystem(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSystem(struct soap *soap, const char *URL, prodml22__FluidSystem *p) +inline int soap_GET_prodml23__FluidSystem(struct soap *soap, const char *URL, prodml23__FluidSystem *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSystem(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSystem(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSystem(struct soap *soap, prodml22__FluidSystem *p) +inline int soap_POST_recv_prodml23__FluidSystem(struct soap *soap, prodml23__FluidSystem *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSystem(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSystem(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterSampleComponent(struct soap*, const char*, int, const prodml22__WaterSampleComponent *, const char*); -SOAP_FMAC3 prodml22__WaterSampleComponent * SOAP_FMAC4 soap_in_prodml22__WaterSampleComponent(struct soap*, const char*, prodml22__WaterSampleComponent *, const char*); -SOAP_FMAC1 prodml22__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml22__WaterSampleComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterSampleComponent(struct soap*, const char*, int, const prodml23__WaterSampleComponent *, const char*); +SOAP_FMAC3 prodml23__WaterSampleComponent * SOAP_FMAC4 soap_in_prodml23__WaterSampleComponent(struct soap*, const char*, prodml23__WaterSampleComponent *, const char*); +SOAP_FMAC1 prodml23__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml23__WaterSampleComponent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WaterSampleComponent * soap_new_prodml22__WaterSampleComponent(struct soap *soap, int n = -1) +inline prodml23__WaterSampleComponent * soap_new_prodml23__WaterSampleComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WaterSampleComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WaterSampleComponent(soap, n, NULL, NULL, NULL); } -inline prodml22__WaterSampleComponent * soap_new_req_prodml22__WaterSampleComponent( +inline prodml23__WaterSampleComponent * soap_new_req_prodml23__WaterSampleComponent( struct soap *soap, const std::string& uid) { - prodml22__WaterSampleComponent *_p = gsoap_eml2_3::soap_new_prodml22__WaterSampleComponent(soap); + prodml23__WaterSampleComponent *_p = gsoap_eml2_3::soap_new_prodml23__WaterSampleComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterSampleComponent::uid = uid; + _p->prodml23__WaterSampleComponent::uid = uid; } return _p; } -inline prodml22__WaterSampleComponent * soap_new_set_prodml22__WaterSampleComponent( +inline prodml23__WaterSampleComponent * soap_new_set_prodml23__WaterSampleComponent( struct soap *soap, std::string *TestMethod, std::string *Anion, @@ -123675,116 +123667,116 @@ inline prodml22__WaterSampleComponent * soap_new_set_prodml22__WaterSampleCompon eml23__MassPerVolumeMeasureExt *VolumeConcentration, eml23__MassPerMassMeasure *MassConcentration, eml23__MassPerMassMeasure *EquivalentConcentration, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits, std::string *Remark, const std::string& uid) { - prodml22__WaterSampleComponent *_p = gsoap_eml2_3::soap_new_prodml22__WaterSampleComponent(soap); + prodml23__WaterSampleComponent *_p = gsoap_eml2_3::soap_new_prodml23__WaterSampleComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterSampleComponent::TestMethod = TestMethod; - _p->prodml22__WaterSampleComponent::Anion = Anion; - _p->prodml22__WaterSampleComponent::Cation = Cation; - _p->prodml22__WaterSampleComponent::OrganicAcid = OrganicAcid; - _p->prodml22__WaterSampleComponent::MolarConcentration = MolarConcentration; - _p->prodml22__WaterSampleComponent::VolumeConcentration = VolumeConcentration; - _p->prodml22__WaterSampleComponent::MassConcentration = MassConcentration; - _p->prodml22__WaterSampleComponent::EquivalentConcentration = EquivalentConcentration; - _p->prodml22__WaterSampleComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits; - _p->prodml22__WaterSampleComponent::Remark = Remark; - _p->prodml22__WaterSampleComponent::uid = uid; + _p->prodml23__WaterSampleComponent::TestMethod = TestMethod; + _p->prodml23__WaterSampleComponent::Anion = Anion; + _p->prodml23__WaterSampleComponent::Cation = Cation; + _p->prodml23__WaterSampleComponent::OrganicAcid = OrganicAcid; + _p->prodml23__WaterSampleComponent::MolarConcentration = MolarConcentration; + _p->prodml23__WaterSampleComponent::VolumeConcentration = VolumeConcentration; + _p->prodml23__WaterSampleComponent::MassConcentration = MassConcentration; + _p->prodml23__WaterSampleComponent::EquivalentConcentration = EquivalentConcentration; + _p->prodml23__WaterSampleComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits; + _p->prodml23__WaterSampleComponent::Remark = Remark; + _p->prodml23__WaterSampleComponent::uid = uid; } return _p; } -inline int soap_write_prodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent const*p) +inline int soap_write_prodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent ? "prodml22:WaterSampleComponent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent ? "prodml23:WaterSampleComponent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WaterSampleComponent(struct soap *soap, const char *URL, prodml22__WaterSampleComponent const*p) +inline int soap_PUT_prodml23__WaterSampleComponent(struct soap *soap, const char *URL, prodml23__WaterSampleComponent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent ? "prodml22:WaterSampleComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent ? "prodml23:WaterSampleComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WaterSampleComponent(struct soap *soap, const char *URL, prodml22__WaterSampleComponent const*p) +inline int soap_PATCH_prodml23__WaterSampleComponent(struct soap *soap, const char *URL, prodml23__WaterSampleComponent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent ? "prodml22:WaterSampleComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent ? "prodml23:WaterSampleComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WaterSampleComponent(struct soap *soap, const char *URL, prodml22__WaterSampleComponent const*p) +inline int soap_POST_send_prodml23__WaterSampleComponent(struct soap *soap, const char *URL, prodml23__WaterSampleComponent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent ? "prodml22:WaterSampleComponent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterSampleComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent ? "prodml23:WaterSampleComponent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WaterSampleComponent * SOAP_FMAC4 soap_get_prodml22__WaterSampleComponent(struct soap*, prodml22__WaterSampleComponent *, const char*, const char*); +SOAP_FMAC3 prodml23__WaterSampleComponent * SOAP_FMAC4 soap_get_prodml23__WaterSampleComponent(struct soap*, prodml23__WaterSampleComponent *, const char*, const char*); -inline int soap_read_prodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent *p) +inline int soap_read_prodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WaterSampleComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WaterSampleComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WaterSampleComponent(struct soap *soap, const char *URL, prodml22__WaterSampleComponent *p) +inline int soap_GET_prodml23__WaterSampleComponent(struct soap *soap, const char *URL, prodml23__WaterSampleComponent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WaterSampleComponent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WaterSampleComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WaterSampleComponent(struct soap *soap, prodml22__WaterSampleComponent *p) +inline int soap_POST_recv_prodml23__WaterSampleComponent(struct soap *soap, prodml23__WaterSampleComponent *p) { - if (gsoap_eml2_3::soap_read_prodml22__WaterSampleComponent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WaterSampleComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysisTestStep(struct soap*, const char*, int, const prodml22__WaterAnalysisTestStep *, const char*); -SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml22__WaterAnalysisTestStep(struct soap*, const char*, prodml22__WaterAnalysisTestStep *, const char*); -SOAP_FMAC1 prodml22__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysisTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterAnalysisTestStep(struct soap*, const char*, int, const prodml23__WaterAnalysisTestStep *, const char*); +SOAP_FMAC3 prodml23__WaterAnalysisTestStep * SOAP_FMAC4 soap_in_prodml23__WaterAnalysisTestStep(struct soap*, const char*, prodml23__WaterAnalysisTestStep *, const char*); +SOAP_FMAC1 prodml23__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysisTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WaterAnalysisTestStep * soap_new_prodml22__WaterAnalysisTestStep(struct soap *soap, int n = -1) +inline prodml23__WaterAnalysisTestStep * soap_new_prodml23__WaterAnalysisTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WaterAnalysisTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WaterAnalysisTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__WaterAnalysisTestStep * soap_new_req_prodml22__WaterAnalysisTestStep( +inline prodml23__WaterAnalysisTestStep * soap_new_req_prodml23__WaterAnalysisTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, eml23__ThermodynamicTemperatureMeasure *StepTemperature, const std::string& uid) { - prodml22__WaterAnalysisTestStep *_p = gsoap_eml2_3::soap_new_prodml22__WaterAnalysisTestStep(soap); + prodml23__WaterAnalysisTestStep *_p = gsoap_eml2_3::soap_new_prodml23__WaterAnalysisTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterAnalysisTestStep::StepNumber = StepNumber; - _p->prodml22__WaterAnalysisTestStep::StepPressure = StepPressure; - _p->prodml22__WaterAnalysisTestStep::StepTemperature = StepTemperature; - _p->prodml22__WaterAnalysisTestStep::uid = uid; + _p->prodml23__WaterAnalysisTestStep::StepNumber = StepNumber; + _p->prodml23__WaterAnalysisTestStep::StepPressure = StepPressure; + _p->prodml23__WaterAnalysisTestStep::StepTemperature = StepTemperature; + _p->prodml23__WaterAnalysisTestStep::uid = uid; } return _p; } -inline prodml22__WaterAnalysisTestStep * soap_new_set_prodml22__WaterAnalysisTestStep( +inline prodml23__WaterAnalysisTestStep * soap_new_set_prodml23__WaterAnalysisTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, @@ -123792,7 +123784,7 @@ inline prodml22__WaterAnalysisTestStep * soap_new_set_prodml22__WaterAnalysisTes eml23__MassPerVolumeMeasureExt *DissolvedCO2, eml23__MassPerVolumeMeasureExt *DissolvedH2S, eml23__MassPerVolumeMeasureExt *DissolvedO2, - prodml22__FlashedGas *FlashedGas, + prodml23__FlashedGas *FlashedGas, eml23__UnitlessMeasure *pH, eml23__ElectricalResistivityMeasureExt *Resistivity, eml23__UnitlessMeasure *Turbidity, @@ -123814,124 +123806,124 @@ inline prodml22__WaterAnalysisTestStep * soap_new_set_prodml22__WaterAnalysisTes std::string *Remark, const std::string& uid) { - prodml22__WaterAnalysisTestStep *_p = gsoap_eml2_3::soap_new_prodml22__WaterAnalysisTestStep(soap); + prodml23__WaterAnalysisTestStep *_p = gsoap_eml2_3::soap_new_prodml23__WaterAnalysisTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterAnalysisTestStep::StepNumber = StepNumber; - _p->prodml22__WaterAnalysisTestStep::StepPressure = StepPressure; - _p->prodml22__WaterAnalysisTestStep::StepTemperature = StepTemperature; - _p->prodml22__WaterAnalysisTestStep::DissolvedCO2 = DissolvedCO2; - _p->prodml22__WaterAnalysisTestStep::DissolvedH2S = DissolvedH2S; - _p->prodml22__WaterAnalysisTestStep::DissolvedO2 = DissolvedO2; - _p->prodml22__WaterAnalysisTestStep::FlashedGas = FlashedGas; - _p->prodml22__WaterAnalysisTestStep::pH = pH; - _p->prodml22__WaterAnalysisTestStep::Resistivity = Resistivity; - _p->prodml22__WaterAnalysisTestStep::Turbidity = Turbidity; - _p->prodml22__WaterAnalysisTestStep::WaterViscosity = WaterViscosity; - _p->prodml22__WaterAnalysisTestStep::SolutionGasWaterRatio = SolutionGasWaterRatio; - _p->prodml22__WaterAnalysisTestStep::WaterViscousCompressibility = WaterViscousCompressibility; - _p->prodml22__WaterAnalysisTestStep::WaterDensity = WaterDensity; - _p->prodml22__WaterAnalysisTestStep::WaterSpecificHeat = WaterSpecificHeat; - _p->prodml22__WaterAnalysisTestStep::WaterFormationVolumeFactor = WaterFormationVolumeFactor; - _p->prodml22__WaterAnalysisTestStep::WaterHeatCapacity = WaterHeatCapacity; - _p->prodml22__WaterAnalysisTestStep::WaterIsothermalCompressibility = WaterIsothermalCompressibility; - _p->prodml22__WaterAnalysisTestStep::WaterThermalConductivity = WaterThermalConductivity; - _p->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithPressure = WaterDensityChangeWithPressure; - _p->prodml22__WaterAnalysisTestStep::WaterThermalExpansion = WaterThermalExpansion; - _p->prodml22__WaterAnalysisTestStep::WaterDensityChangeWithTemperature = WaterDensityChangeWithTemperature; - _p->prodml22__WaterAnalysisTestStep::WaterEnthalpy = WaterEnthalpy; - _p->prodml22__WaterAnalysisTestStep::WaterEntropy = WaterEntropy; - _p->prodml22__WaterAnalysisTestStep::WaterSpecificVolume = WaterSpecificVolume; - _p->prodml22__WaterAnalysisTestStep::Remark = Remark; - _p->prodml22__WaterAnalysisTestStep::uid = uid; + _p->prodml23__WaterAnalysisTestStep::StepNumber = StepNumber; + _p->prodml23__WaterAnalysisTestStep::StepPressure = StepPressure; + _p->prodml23__WaterAnalysisTestStep::StepTemperature = StepTemperature; + _p->prodml23__WaterAnalysisTestStep::DissolvedCO2 = DissolvedCO2; + _p->prodml23__WaterAnalysisTestStep::DissolvedH2S = DissolvedH2S; + _p->prodml23__WaterAnalysisTestStep::DissolvedO2 = DissolvedO2; + _p->prodml23__WaterAnalysisTestStep::FlashedGas = FlashedGas; + _p->prodml23__WaterAnalysisTestStep::pH = pH; + _p->prodml23__WaterAnalysisTestStep::Resistivity = Resistivity; + _p->prodml23__WaterAnalysisTestStep::Turbidity = Turbidity; + _p->prodml23__WaterAnalysisTestStep::WaterViscosity = WaterViscosity; + _p->prodml23__WaterAnalysisTestStep::SolutionGasWaterRatio = SolutionGasWaterRatio; + _p->prodml23__WaterAnalysisTestStep::WaterViscousCompressibility = WaterViscousCompressibility; + _p->prodml23__WaterAnalysisTestStep::WaterDensity = WaterDensity; + _p->prodml23__WaterAnalysisTestStep::WaterSpecificHeat = WaterSpecificHeat; + _p->prodml23__WaterAnalysisTestStep::WaterFormationVolumeFactor = WaterFormationVolumeFactor; + _p->prodml23__WaterAnalysisTestStep::WaterHeatCapacity = WaterHeatCapacity; + _p->prodml23__WaterAnalysisTestStep::WaterIsothermalCompressibility = WaterIsothermalCompressibility; + _p->prodml23__WaterAnalysisTestStep::WaterThermalConductivity = WaterThermalConductivity; + _p->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithPressure = WaterDensityChangeWithPressure; + _p->prodml23__WaterAnalysisTestStep::WaterThermalExpansion = WaterThermalExpansion; + _p->prodml23__WaterAnalysisTestStep::WaterDensityChangeWithTemperature = WaterDensityChangeWithTemperature; + _p->prodml23__WaterAnalysisTestStep::WaterEnthalpy = WaterEnthalpy; + _p->prodml23__WaterAnalysisTestStep::WaterEntropy = WaterEntropy; + _p->prodml23__WaterAnalysisTestStep::WaterSpecificVolume = WaterSpecificVolume; + _p->prodml23__WaterAnalysisTestStep::Remark = Remark; + _p->prodml23__WaterAnalysisTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep const*p) +inline int soap_write_prodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep ? "prodml22:WaterAnalysisTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep ? "prodml23:WaterAnalysisTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml22__WaterAnalysisTestStep const*p) +inline int soap_PUT_prodml23__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml23__WaterAnalysisTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep ? "prodml22:WaterAnalysisTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep ? "prodml23:WaterAnalysisTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml22__WaterAnalysisTestStep const*p) +inline int soap_PATCH_prodml23__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml23__WaterAnalysisTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep ? "prodml22:WaterAnalysisTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep ? "prodml23:WaterAnalysisTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml22__WaterAnalysisTestStep const*p) +inline int soap_POST_send_prodml23__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml23__WaterAnalysisTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep ? "prodml22:WaterAnalysisTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep ? "prodml23:WaterAnalysisTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WaterAnalysisTestStep * SOAP_FMAC4 soap_get_prodml22__WaterAnalysisTestStep(struct soap*, prodml22__WaterAnalysisTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__WaterAnalysisTestStep * SOAP_FMAC4 soap_get_prodml23__WaterAnalysisTestStep(struct soap*, prodml23__WaterAnalysisTestStep *, const char*, const char*); -inline int soap_read_prodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep *p) +inline int soap_read_prodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WaterAnalysisTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WaterAnalysisTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml22__WaterAnalysisTestStep *p) +inline int soap_GET_prodml23__WaterAnalysisTestStep(struct soap *soap, const char *URL, prodml23__WaterAnalysisTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WaterAnalysisTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WaterAnalysisTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WaterAnalysisTestStep(struct soap *soap, prodml22__WaterAnalysisTestStep *p) +inline int soap_POST_recv_prodml23__WaterAnalysisTestStep(struct soap *soap, prodml23__WaterAnalysisTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__WaterAnalysisTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WaterAnalysisTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysisTest(struct soap*, const char*, int, const prodml22__WaterAnalysisTest *, const char*); -SOAP_FMAC3 prodml22__WaterAnalysisTest * SOAP_FMAC4 soap_in_prodml22__WaterAnalysisTest(struct soap*, const char*, prodml22__WaterAnalysisTest *, const char*); -SOAP_FMAC1 prodml22__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysisTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterAnalysisTest(struct soap*, const char*, int, const prodml23__WaterAnalysisTest *, const char*); +SOAP_FMAC3 prodml23__WaterAnalysisTest * SOAP_FMAC4 soap_in_prodml23__WaterAnalysisTest(struct soap*, const char*, prodml23__WaterAnalysisTest *, const char*); +SOAP_FMAC1 prodml23__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysisTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WaterAnalysisTest * soap_new_prodml22__WaterAnalysisTest(struct soap *soap, int n = -1) +inline prodml23__WaterAnalysisTest * soap_new_prodml23__WaterAnalysisTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WaterAnalysisTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WaterAnalysisTest(soap, n, NULL, NULL, NULL); } -inline prodml22__WaterAnalysisTest * soap_new_req_prodml22__WaterAnalysisTest( +inline prodml23__WaterAnalysisTest * soap_new_req_prodml23__WaterAnalysisTest( struct soap *soap, LONG64 TestNumber, const std::string& uid) { - prodml22__WaterAnalysisTest *_p = gsoap_eml2_3::soap_new_prodml22__WaterAnalysisTest(soap); + prodml23__WaterAnalysisTest *_p = gsoap_eml2_3::soap_new_prodml23__WaterAnalysisTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterAnalysisTest::TestNumber = TestNumber; - _p->prodml22__WaterAnalysisTest::uid = uid; + _p->prodml23__WaterAnalysisTest::TestNumber = TestNumber; + _p->prodml23__WaterAnalysisTest::uid = uid; } return _p; } -inline prodml22__WaterAnalysisTest * soap_new_set_prodml22__WaterAnalysisTest( +inline prodml23__WaterAnalysisTest * soap_new_set_prodml23__WaterAnalysisTest( struct soap *soap, LONG64 TestNumber, double *LiquidGravity, @@ -123949,118 +123941,118 @@ inline prodml22__WaterAnalysisTest * soap_new_set_prodml22__WaterAnalysisTest( eml23__MassPerVolumeMeasureExt *TotalSedimentSolidsPerVolume, std::string *TestMethod, std::string *Remark, - const std::vector & WaterAnalysisTestStep, + const std::vector & WaterAnalysisTestStep, const std::string& uid) { - prodml22__WaterAnalysisTest *_p = gsoap_eml2_3::soap_new_prodml22__WaterAnalysisTest(soap); + prodml23__WaterAnalysisTest *_p = gsoap_eml2_3::soap_new_prodml23__WaterAnalysisTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterAnalysisTest::TestNumber = TestNumber; - _p->prodml22__WaterAnalysisTest::LiquidGravity = LiquidGravity; - _p->prodml22__WaterAnalysisTest::SalinityPerMass = SalinityPerMass; - _p->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerMass = TotalDissolvedSolidsPerMass; - _p->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerMass = TotalSuspendedSolidsPerMass; - _p->prodml22__WaterAnalysisTest::TotalHardnessPerMass = TotalHardnessPerMass; - _p->prodml22__WaterAnalysisTest::TotalAlkalinityPerMass = TotalAlkalinityPerMass; - _p->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerMass = TotalSedimentSolidsPerMass; - _p->prodml22__WaterAnalysisTest::SalinityPerVolume = SalinityPerVolume; - _p->prodml22__WaterAnalysisTest::TotalDissolvedSolidsPerVolume = TotalDissolvedSolidsPerVolume; - _p->prodml22__WaterAnalysisTest::TotalSuspendedSolidsPerVolume = TotalSuspendedSolidsPerVolume; - _p->prodml22__WaterAnalysisTest::TotalHardnessPerVolume = TotalHardnessPerVolume; - _p->prodml22__WaterAnalysisTest::TotalAlkalinityPerVolume = TotalAlkalinityPerVolume; - _p->prodml22__WaterAnalysisTest::TotalSedimentSolidsPerVolume = TotalSedimentSolidsPerVolume; - _p->prodml22__WaterAnalysisTest::TestMethod = TestMethod; - _p->prodml22__WaterAnalysisTest::Remark = Remark; - _p->prodml22__WaterAnalysisTest::WaterAnalysisTestStep = WaterAnalysisTestStep; - _p->prodml22__WaterAnalysisTest::uid = uid; + _p->prodml23__WaterAnalysisTest::TestNumber = TestNumber; + _p->prodml23__WaterAnalysisTest::LiquidGravity = LiquidGravity; + _p->prodml23__WaterAnalysisTest::SalinityPerMass = SalinityPerMass; + _p->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerMass = TotalDissolvedSolidsPerMass; + _p->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerMass = TotalSuspendedSolidsPerMass; + _p->prodml23__WaterAnalysisTest::TotalHardnessPerMass = TotalHardnessPerMass; + _p->prodml23__WaterAnalysisTest::TotalAlkalinityPerMass = TotalAlkalinityPerMass; + _p->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerMass = TotalSedimentSolidsPerMass; + _p->prodml23__WaterAnalysisTest::SalinityPerVolume = SalinityPerVolume; + _p->prodml23__WaterAnalysisTest::TotalDissolvedSolidsPerVolume = TotalDissolvedSolidsPerVolume; + _p->prodml23__WaterAnalysisTest::TotalSuspendedSolidsPerVolume = TotalSuspendedSolidsPerVolume; + _p->prodml23__WaterAnalysisTest::TotalHardnessPerVolume = TotalHardnessPerVolume; + _p->prodml23__WaterAnalysisTest::TotalAlkalinityPerVolume = TotalAlkalinityPerVolume; + _p->prodml23__WaterAnalysisTest::TotalSedimentSolidsPerVolume = TotalSedimentSolidsPerVolume; + _p->prodml23__WaterAnalysisTest::TestMethod = TestMethod; + _p->prodml23__WaterAnalysisTest::Remark = Remark; + _p->prodml23__WaterAnalysisTest::WaterAnalysisTestStep = WaterAnalysisTestStep; + _p->prodml23__WaterAnalysisTest::uid = uid; } return _p; } -inline int soap_write_prodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest const*p) +inline int soap_write_prodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest ? "prodml22:WaterAnalysisTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest ? "prodml23:WaterAnalysisTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WaterAnalysisTest(struct soap *soap, const char *URL, prodml22__WaterAnalysisTest const*p) +inline int soap_PUT_prodml23__WaterAnalysisTest(struct soap *soap, const char *URL, prodml23__WaterAnalysisTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest ? "prodml22:WaterAnalysisTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest ? "prodml23:WaterAnalysisTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WaterAnalysisTest(struct soap *soap, const char *URL, prodml22__WaterAnalysisTest const*p) +inline int soap_PATCH_prodml23__WaterAnalysisTest(struct soap *soap, const char *URL, prodml23__WaterAnalysisTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest ? "prodml22:WaterAnalysisTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest ? "prodml23:WaterAnalysisTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WaterAnalysisTest(struct soap *soap, const char *URL, prodml22__WaterAnalysisTest const*p) +inline int soap_POST_send_prodml23__WaterAnalysisTest(struct soap *soap, const char *URL, prodml23__WaterAnalysisTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest ? "prodml22:WaterAnalysisTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysisTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest ? "prodml23:WaterAnalysisTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WaterAnalysisTest * SOAP_FMAC4 soap_get_prodml22__WaterAnalysisTest(struct soap*, prodml22__WaterAnalysisTest *, const char*, const char*); +SOAP_FMAC3 prodml23__WaterAnalysisTest * SOAP_FMAC4 soap_get_prodml23__WaterAnalysisTest(struct soap*, prodml23__WaterAnalysisTest *, const char*, const char*); -inline int soap_read_prodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest *p) +inline int soap_read_prodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WaterAnalysisTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WaterAnalysisTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WaterAnalysisTest(struct soap *soap, const char *URL, prodml22__WaterAnalysisTest *p) +inline int soap_GET_prodml23__WaterAnalysisTest(struct soap *soap, const char *URL, prodml23__WaterAnalysisTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WaterAnalysisTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WaterAnalysisTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WaterAnalysisTest(struct soap *soap, prodml22__WaterAnalysisTest *p) +inline int soap_POST_recv_prodml23__WaterAnalysisTest(struct soap *soap, prodml23__WaterAnalysisTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__WaterAnalysisTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WaterAnalysisTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__WaterAnalysis(struct soap*, const char*, int, const prodml22__WaterAnalysis *, const char*); -SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_in_prodml22__WaterAnalysis(struct soap*, const char*, prodml22__WaterAnalysis *, const char*); -SOAP_FMAC1 prodml22__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__WaterAnalysis(struct soap*, const char*, int, const prodml23__WaterAnalysis *, const char*); +SOAP_FMAC3 prodml23__WaterAnalysis * SOAP_FMAC4 soap_in_prodml23__WaterAnalysis(struct soap*, const char*, prodml23__WaterAnalysis *, const char*); +SOAP_FMAC1 prodml23__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__WaterAnalysis * soap_new_prodml22__WaterAnalysis(struct soap *soap, int n = -1) +inline prodml23__WaterAnalysis * soap_new_prodml23__WaterAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__WaterAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__WaterAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__WaterAnalysis * soap_new_req_prodml22__WaterAnalysis( +inline prodml23__WaterAnalysis * soap_new_req_prodml23__WaterAnalysis( struct soap *soap, eml23__DataObjectReference *FluidSample, eml23__AbstractTemperaturePressure *StandardConditions__1, - prodml22__SampleQuality AnalysisQuality__1, + prodml23__SampleQuality AnalysisQuality__1, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__WaterAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__WaterAnalysis(soap); + prodml23__WaterAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__WaterAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__WaterAnalysis::FluidSample = FluidSample; - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions__1; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; + _p->prodml23__WaterAnalysis::FluidSample = FluidSample; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions__1; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -124068,11 +124060,11 @@ inline prodml22__WaterAnalysis * soap_new_req_prodml22__WaterAnalysis( return _p; } -inline prodml22__WaterAnalysis * soap_new_set_prodml22__WaterAnalysis( +inline prodml23__WaterAnalysis * soap_new_set_prodml23__WaterAnalysis( struct soap *soap, - prodml22__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation, - const std::vector & WaterAnalysisTest, - const std::vector & WaterSampleComponent, + prodml23__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation, + const std::vector & WaterAnalysisTest, + const std::vector & WaterSampleComponent, eml23__DataObjectReference *FluidSample, std::string *RequestDate__1, eml23__DataObjectReference *Client__1, @@ -124083,11 +124075,11 @@ inline prodml22__WaterAnalysis * soap_new_set_prodml22__WaterAnalysis( std::string *AnalysisSite__1, eml23__DataObjectReference *LabContact__1, eml23__AbstractTemperaturePressure *StandardConditions__1, - prodml22__SampleQuality AnalysisQuality__1, - prodml22__FluidComponentCatalog *FluidComponentCatalog__1, + prodml23__SampleQuality AnalysisQuality__1, + prodml23__FluidComponentCatalog *FluidComponentCatalog__1, std::string *Remark__1, - const std::vector & FluidAnalysisReport__1, - const std::vector & SampleContaminant__1, + const std::vector & FluidAnalysisReport__1, + const std::vector & SampleContaminant__1, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -124100,27 +124092,27 @@ inline prodml22__WaterAnalysis * soap_new_set_prodml22__WaterAnalysis( const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__WaterAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__WaterAnalysis(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__WaterAnalysis::SampleIntegrityAndPreparation = SampleIntegrityAndPreparation; - _p->prodml22__WaterAnalysis::WaterAnalysisTest = WaterAnalysisTest; - _p->prodml22__WaterAnalysis::WaterSampleComponent = WaterSampleComponent; - _p->prodml22__WaterAnalysis::FluidSample = FluidSample; - _p->prodml22__FluidAnalysis::RequestDate = RequestDate__1; - _p->prodml22__FluidAnalysis::Client = Client__1; - _p->prodml22__FluidAnalysis::StartTime = StartTime__1; - _p->prodml22__FluidAnalysis::EndTime = EndTime__1; - _p->prodml22__FluidAnalysis::AnalysisDescription = AnalysisDescription__1; - _p->prodml22__FluidAnalysis::AnalysisPurpose = AnalysisPurpose__1; - _p->prodml22__FluidAnalysis::AnalysisSite = AnalysisSite__1; - _p->prodml22__FluidAnalysis::LabContact = LabContact__1; - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions__1; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; - _p->prodml22__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog__1; - _p->prodml22__FluidAnalysis::Remark = Remark__1; - _p->prodml22__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport__1; - _p->prodml22__FluidAnalysis::SampleContaminant = SampleContaminant__1; + prodml23__WaterAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__WaterAnalysis(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__WaterAnalysis::SampleIntegrityAndPreparation = SampleIntegrityAndPreparation; + _p->prodml23__WaterAnalysis::WaterAnalysisTest = WaterAnalysisTest; + _p->prodml23__WaterAnalysis::WaterSampleComponent = WaterSampleComponent; + _p->prodml23__WaterAnalysis::FluidSample = FluidSample; + _p->prodml23__FluidAnalysis::RequestDate = RequestDate__1; + _p->prodml23__FluidAnalysis::Client = Client__1; + _p->prodml23__FluidAnalysis::StartTime = StartTime__1; + _p->prodml23__FluidAnalysis::EndTime = EndTime__1; + _p->prodml23__FluidAnalysis::AnalysisDescription = AnalysisDescription__1; + _p->prodml23__FluidAnalysis::AnalysisPurpose = AnalysisPurpose__1; + _p->prodml23__FluidAnalysis::AnalysisSite = AnalysisSite__1; + _p->prodml23__FluidAnalysis::LabContact = LabContact__1; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions__1; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; + _p->prodml23__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog__1; + _p->prodml23__FluidAnalysis::Remark = Remark__1; + _p->prodml23__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport__1; + _p->prodml23__FluidAnalysis::SampleContaminant = SampleContaminant__1; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -124136,195 +124128,195 @@ inline prodml22__WaterAnalysis * soap_new_set_prodml22__WaterAnalysis( return _p; } -inline int soap_write_prodml22__WaterAnalysis(struct soap *soap, prodml22__WaterAnalysis const*p) +inline int soap_write_prodml23__WaterAnalysis(struct soap *soap, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis ? "prodml22:WaterAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis ? "prodml23:WaterAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis const*p) +inline int soap_PUT_prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis ? "prodml22:WaterAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis ? "prodml23:WaterAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis const*p) +inline int soap_PATCH_prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis ? "prodml22:WaterAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis ? "prodml23:WaterAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis const*p) +inline int soap_POST_send_prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis ? "prodml22:WaterAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:WaterAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis ? "prodml23:WaterAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__WaterAnalysis * SOAP_FMAC4 soap_get_prodml22__WaterAnalysis(struct soap*, prodml22__WaterAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__WaterAnalysis * SOAP_FMAC4 soap_get_prodml23__WaterAnalysis(struct soap*, prodml23__WaterAnalysis *, const char*, const char*); -inline int soap_read_prodml22__WaterAnalysis(struct soap *soap, prodml22__WaterAnalysis *p) +inline int soap_read_prodml23__WaterAnalysis(struct soap *soap, prodml23__WaterAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__WaterAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__WaterAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__WaterAnalysis(struct soap *soap, const char *URL, prodml22__WaterAnalysis *p) +inline int soap_GET_prodml23__WaterAnalysis(struct soap *soap, const char *URL, prodml23__WaterAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__WaterAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__WaterAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__WaterAnalysis(struct soap *soap, prodml22__WaterAnalysis *p) +inline int soap_POST_recv_prodml23__WaterAnalysis(struct soap *soap, prodml23__WaterAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__WaterAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__WaterAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ViscosityAtTemperature(struct soap*, const char*, int, const prodml22__ViscosityAtTemperature *, const char*); -SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml22__ViscosityAtTemperature(struct soap*, const char*, prodml22__ViscosityAtTemperature *, const char*); -SOAP_FMAC1 prodml22__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml22__ViscosityAtTemperature(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ViscosityAtTemperature(struct soap*, const char*, int, const prodml23__ViscosityAtTemperature *, const char*); +SOAP_FMAC3 prodml23__ViscosityAtTemperature * SOAP_FMAC4 soap_in_prodml23__ViscosityAtTemperature(struct soap*, const char*, prodml23__ViscosityAtTemperature *, const char*); +SOAP_FMAC1 prodml23__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml23__ViscosityAtTemperature(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ViscosityAtTemperature * soap_new_prodml22__ViscosityAtTemperature(struct soap *soap, int n = -1) +inline prodml23__ViscosityAtTemperature * soap_new_prodml23__ViscosityAtTemperature(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ViscosityAtTemperature(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ViscosityAtTemperature(soap, n, NULL, NULL, NULL); } -inline prodml22__ViscosityAtTemperature * soap_new_req_prodml22__ViscosityAtTemperature( +inline prodml23__ViscosityAtTemperature * soap_new_req_prodml23__ViscosityAtTemperature( struct soap *soap, eml23__DynamicViscosityMeasure *Viscosity, eml23__ThermodynamicTemperatureMeasure *ViscosityTemperature) { - prodml22__ViscosityAtTemperature *_p = gsoap_eml2_3::soap_new_prodml22__ViscosityAtTemperature(soap); + prodml23__ViscosityAtTemperature *_p = gsoap_eml2_3::soap_new_prodml23__ViscosityAtTemperature(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ViscosityAtTemperature::Viscosity = Viscosity; - _p->prodml22__ViscosityAtTemperature::ViscosityTemperature = ViscosityTemperature; + _p->prodml23__ViscosityAtTemperature::Viscosity = Viscosity; + _p->prodml23__ViscosityAtTemperature::ViscosityTemperature = ViscosityTemperature; } return _p; } -inline prodml22__ViscosityAtTemperature * soap_new_set_prodml22__ViscosityAtTemperature( +inline prodml23__ViscosityAtTemperature * soap_new_set_prodml23__ViscosityAtTemperature( struct soap *soap, eml23__DynamicViscosityMeasure *Viscosity, eml23__ThermodynamicTemperatureMeasure *ViscosityTemperature) { - prodml22__ViscosityAtTemperature *_p = gsoap_eml2_3::soap_new_prodml22__ViscosityAtTemperature(soap); + prodml23__ViscosityAtTemperature *_p = gsoap_eml2_3::soap_new_prodml23__ViscosityAtTemperature(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ViscosityAtTemperature::Viscosity = Viscosity; - _p->prodml22__ViscosityAtTemperature::ViscosityTemperature = ViscosityTemperature; + _p->prodml23__ViscosityAtTemperature::Viscosity = Viscosity; + _p->prodml23__ViscosityAtTemperature::ViscosityTemperature = ViscosityTemperature; } return _p; } -inline int soap_write_prodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature const*p) +inline int soap_write_prodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature ? "prodml22:ViscosityAtTemperature" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature ? "prodml23:ViscosityAtTemperature" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml22__ViscosityAtTemperature const*p) +inline int soap_PUT_prodml23__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml23__ViscosityAtTemperature const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature ? "prodml22:ViscosityAtTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature ? "prodml23:ViscosityAtTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml22__ViscosityAtTemperature const*p) +inline int soap_PATCH_prodml23__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml23__ViscosityAtTemperature const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature ? "prodml22:ViscosityAtTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature ? "prodml23:ViscosityAtTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml22__ViscosityAtTemperature const*p) +inline int soap_POST_send_prodml23__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml23__ViscosityAtTemperature const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature ? "prodml22:ViscosityAtTemperature" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ViscosityAtTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature ? "prodml23:ViscosityAtTemperature" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ViscosityAtTemperature * SOAP_FMAC4 soap_get_prodml22__ViscosityAtTemperature(struct soap*, prodml22__ViscosityAtTemperature *, const char*, const char*); +SOAP_FMAC3 prodml23__ViscosityAtTemperature * SOAP_FMAC4 soap_get_prodml23__ViscosityAtTemperature(struct soap*, prodml23__ViscosityAtTemperature *, const char*, const char*); -inline int soap_read_prodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature *p) +inline int soap_read_prodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ViscosityAtTemperature(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ViscosityAtTemperature(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml22__ViscosityAtTemperature *p) +inline int soap_GET_prodml23__ViscosityAtTemperature(struct soap *soap, const char *URL, prodml23__ViscosityAtTemperature *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ViscosityAtTemperature(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ViscosityAtTemperature(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ViscosityAtTemperature(struct soap *soap, prodml22__ViscosityAtTemperature *p) +inline int soap_POST_recv_prodml23__ViscosityAtTemperature(struct soap *soap, prodml23__ViscosityAtTemperature *p) { - if (gsoap_eml2_3::soap_read_prodml22__ViscosityAtTemperature(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ViscosityAtTemperature(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VaporLiquidEquilibriumTest(struct soap*, const char*, int, const prodml22__VaporLiquidEquilibriumTest *, const char*); -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml22__VaporLiquidEquilibriumTest(struct soap*, const char*, prodml22__VaporLiquidEquilibriumTest *, const char*); -SOAP_FMAC1 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_prodml22__VaporLiquidEquilibriumTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VaporLiquidEquilibriumTest(struct soap*, const char*, int, const prodml23__VaporLiquidEquilibriumTest *, const char*); +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_in_prodml23__VaporLiquidEquilibriumTest(struct soap*, const char*, prodml23__VaporLiquidEquilibriumTest *, const char*); +SOAP_FMAC1 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_prodml23__VaporLiquidEquilibriumTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__VaporLiquidEquilibriumTest * soap_new_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, int n = -1) +inline prodml23__VaporLiquidEquilibriumTest * soap_new_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__VaporLiquidEquilibriumTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__VaporLiquidEquilibriumTest(soap, n, NULL, NULL, NULL); } -inline prodml22__VaporLiquidEquilibriumTest * soap_new_req_prodml22__VaporLiquidEquilibriumTest( +inline prodml23__VaporLiquidEquilibriumTest * soap_new_req_prodml23__VaporLiquidEquilibriumTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - prodml22__PhaseViscosity *VaporPhaseViscosity, - const std::vector & VaporPhaseDensity, - prodml22__PhaseDensity *LiquidPhaseDensity, + prodml23__PhaseViscosity *VaporPhaseViscosity, + const std::vector & VaporPhaseDensity, + prodml23__PhaseDensity *LiquidPhaseDensity, const std::string& uid) { - prodml22__VaporLiquidEquilibriumTest *_p = gsoap_eml2_3::soap_new_prodml22__VaporLiquidEquilibriumTest(soap); + prodml23__VaporLiquidEquilibriumTest *_p = gsoap_eml2_3::soap_new_prodml23__VaporLiquidEquilibriumTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VaporLiquidEquilibriumTest::TestNumber = TestNumber; - _p->prodml22__VaporLiquidEquilibriumTest::TestTemperature = TestTemperature; - _p->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity = VaporPhaseViscosity; - _p->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity = VaporPhaseDensity; - _p->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity = LiquidPhaseDensity; - _p->prodml22__VaporLiquidEquilibriumTest::uid = uid; + _p->prodml23__VaporLiquidEquilibriumTest::TestNumber = TestNumber; + _p->prodml23__VaporLiquidEquilibriumTest::TestTemperature = TestTemperature; + _p->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity = VaporPhaseViscosity; + _p->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity = VaporPhaseDensity; + _p->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity = LiquidPhaseDensity; + _p->prodml23__VaporLiquidEquilibriumTest::uid = uid; } return _p; } -inline prodml22__VaporLiquidEquilibriumTest * soap_new_set_prodml22__VaporLiquidEquilibriumTest( +inline prodml23__VaporLiquidEquilibriumTest * soap_new_set_prodml23__VaporLiquidEquilibriumTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, @@ -124336,141 +124328,141 @@ inline prodml22__VaporLiquidEquilibriumTest * soap_new_set_prodml22__VaporLiquid eml23__ThermodynamicTemperatureMeasure *MixturePsatTestTemperature, eml23__VolumePerVolumeMeasure *MixtureRelativeVolumeRelativeToPsat, std::string *AtmosphericFlashTestReference, - prodml22__InjectedGas *InjectedGasAdded, - prodml22__RefInjectedGasAdded *CumulativeGasAdded, + prodml23__InjectedGas *InjectedGasAdded, + prodml23__RefInjectedGasAdded *CumulativeGasAdded, eml23__VolumePerVolumeMeasure *VaporPhaseVolume, - prodml22__PhaseViscosity *VaporPhaseViscosity, - const std::vector & VaporPhaseDensity, + prodml23__PhaseViscosity *VaporPhaseViscosity, + const std::vector & VaporPhaseDensity, eml23__VolumePerVolumeMeasure *LiquidPhaseVolume, - prodml22__PhaseDensity *LiquidPhaseDensity, - const std::vector & VaporComposition, + prodml23__PhaseDensity *LiquidPhaseDensity, + const std::vector & VaporComposition, std::string *VaporTransportTestReference, std::string *LiquidTransportTestReference, - const std::vector & LiquidComposition, + const std::vector & LiquidComposition, std::string *Remark, const std::string& uid) { - prodml22__VaporLiquidEquilibriumTest *_p = gsoap_eml2_3::soap_new_prodml22__VaporLiquidEquilibriumTest(soap); + prodml23__VaporLiquidEquilibriumTest *_p = gsoap_eml2_3::soap_new_prodml23__VaporLiquidEquilibriumTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VaporLiquidEquilibriumTest::TestNumber = TestNumber; - _p->prodml22__VaporLiquidEquilibriumTest::TestTemperature = TestTemperature; - _p->prodml22__VaporLiquidEquilibriumTest::TestPressure = TestPressure; - _p->prodml22__VaporLiquidEquilibriumTest::GasSolventAdded = GasSolventAdded; - _p->prodml22__VaporLiquidEquilibriumTest::MixtureVolume = MixtureVolume; - _p->prodml22__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction = MixtureGasSolventMoleFraction; - _p->prodml22__VaporLiquidEquilibriumTest::MixtureGOR = MixtureGOR; - _p->prodml22__VaporLiquidEquilibriumTest::MixturePsatTestTemperature = MixturePsatTestTemperature; - _p->prodml22__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat = MixtureRelativeVolumeRelativeToPsat; - _p->prodml22__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference = AtmosphericFlashTestReference; - _p->prodml22__VaporLiquidEquilibriumTest::InjectedGasAdded = InjectedGasAdded; - _p->prodml22__VaporLiquidEquilibriumTest::CumulativeGasAdded = CumulativeGasAdded; - _p->prodml22__VaporLiquidEquilibriumTest::VaporPhaseVolume = VaporPhaseVolume; - _p->prodml22__VaporLiquidEquilibriumTest::VaporPhaseViscosity = VaporPhaseViscosity; - _p->prodml22__VaporLiquidEquilibriumTest::VaporPhaseDensity = VaporPhaseDensity; - _p->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseVolume = LiquidPhaseVolume; - _p->prodml22__VaporLiquidEquilibriumTest::LiquidPhaseDensity = LiquidPhaseDensity; - _p->prodml22__VaporLiquidEquilibriumTest::VaporComposition = VaporComposition; - _p->prodml22__VaporLiquidEquilibriumTest::VaporTransportTestReference = VaporTransportTestReference; - _p->prodml22__VaporLiquidEquilibriumTest::LiquidTransportTestReference = LiquidTransportTestReference; - _p->prodml22__VaporLiquidEquilibriumTest::LiquidComposition = LiquidComposition; - _p->prodml22__VaporLiquidEquilibriumTest::Remark = Remark; - _p->prodml22__VaporLiquidEquilibriumTest::uid = uid; + _p->prodml23__VaporLiquidEquilibriumTest::TestNumber = TestNumber; + _p->prodml23__VaporLiquidEquilibriumTest::TestTemperature = TestTemperature; + _p->prodml23__VaporLiquidEquilibriumTest::TestPressure = TestPressure; + _p->prodml23__VaporLiquidEquilibriumTest::GasSolventAdded = GasSolventAdded; + _p->prodml23__VaporLiquidEquilibriumTest::MixtureVolume = MixtureVolume; + _p->prodml23__VaporLiquidEquilibriumTest::MixtureGasSolventMoleFraction = MixtureGasSolventMoleFraction; + _p->prodml23__VaporLiquidEquilibriumTest::MixtureGOR = MixtureGOR; + _p->prodml23__VaporLiquidEquilibriumTest::MixturePsatTestTemperature = MixturePsatTestTemperature; + _p->prodml23__VaporLiquidEquilibriumTest::MixtureRelativeVolumeRelativeToPsat = MixtureRelativeVolumeRelativeToPsat; + _p->prodml23__VaporLiquidEquilibriumTest::AtmosphericFlashTestReference = AtmosphericFlashTestReference; + _p->prodml23__VaporLiquidEquilibriumTest::InjectedGasAdded = InjectedGasAdded; + _p->prodml23__VaporLiquidEquilibriumTest::CumulativeGasAdded = CumulativeGasAdded; + _p->prodml23__VaporLiquidEquilibriumTest::VaporPhaseVolume = VaporPhaseVolume; + _p->prodml23__VaporLiquidEquilibriumTest::VaporPhaseViscosity = VaporPhaseViscosity; + _p->prodml23__VaporLiquidEquilibriumTest::VaporPhaseDensity = VaporPhaseDensity; + _p->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseVolume = LiquidPhaseVolume; + _p->prodml23__VaporLiquidEquilibriumTest::LiquidPhaseDensity = LiquidPhaseDensity; + _p->prodml23__VaporLiquidEquilibriumTest::VaporComposition = VaporComposition; + _p->prodml23__VaporLiquidEquilibriumTest::VaporTransportTestReference = VaporTransportTestReference; + _p->prodml23__VaporLiquidEquilibriumTest::LiquidTransportTestReference = LiquidTransportTestReference; + _p->prodml23__VaporLiquidEquilibriumTest::LiquidComposition = LiquidComposition; + _p->prodml23__VaporLiquidEquilibriumTest::Remark = Remark; + _p->prodml23__VaporLiquidEquilibriumTest::uid = uid; } return _p; } -inline int soap_write_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest const*p) +inline int soap_write_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest ? "prodml22:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest ? "prodml23:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml22__VaporLiquidEquilibriumTest const*p) +inline int soap_PUT_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml23__VaporLiquidEquilibriumTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest ? "prodml22:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest ? "prodml23:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml22__VaporLiquidEquilibriumTest const*p) +inline int soap_PATCH_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml23__VaporLiquidEquilibriumTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest ? "prodml22:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest ? "prodml23:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml22__VaporLiquidEquilibriumTest const*p) +inline int soap_POST_send_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml23__VaporLiquidEquilibriumTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest ? "prodml22:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporLiquidEquilibriumTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest ? "prodml23:VaporLiquidEquilibriumTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_get_prodml22__VaporLiquidEquilibriumTest(struct soap*, prodml22__VaporLiquidEquilibriumTest *, const char*, const char*); +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC4 soap_get_prodml23__VaporLiquidEquilibriumTest(struct soap*, prodml23__VaporLiquidEquilibriumTest *, const char*, const char*); -inline int soap_read_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest *p) +inline int soap_read_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__VaporLiquidEquilibriumTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__VaporLiquidEquilibriumTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml22__VaporLiquidEquilibriumTest *p) +inline int soap_GET_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, const char *URL, prodml23__VaporLiquidEquilibriumTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__VaporLiquidEquilibriumTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__VaporLiquidEquilibriumTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__VaporLiquidEquilibriumTest(struct soap *soap, prodml22__VaporLiquidEquilibriumTest *p) +inline int soap_POST_recv_prodml23__VaporLiquidEquilibriumTest(struct soap *soap, prodml23__VaporLiquidEquilibriumTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__VaporLiquidEquilibriumTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__VaporLiquidEquilibriumTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SwellingTestStep(struct soap*, const char*, int, const prodml22__SwellingTestStep *, const char*); -SOAP_FMAC3 prodml22__SwellingTestStep * SOAP_FMAC4 soap_in_prodml22__SwellingTestStep(struct soap*, const char*, prodml22__SwellingTestStep *, const char*); -SOAP_FMAC1 prodml22__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml22__SwellingTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SwellingTestStep(struct soap*, const char*, int, const prodml23__SwellingTestStep *, const char*); +SOAP_FMAC3 prodml23__SwellingTestStep * SOAP_FMAC4 soap_in_prodml23__SwellingTestStep(struct soap*, const char*, prodml23__SwellingTestStep *, const char*); +SOAP_FMAC1 prodml23__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml23__SwellingTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SwellingTestStep * soap_new_prodml22__SwellingTestStep(struct soap *soap, int n = -1) +inline prodml23__SwellingTestStep * soap_new_prodml23__SwellingTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SwellingTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SwellingTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__SwellingTestStep * soap_new_req_prodml22__SwellingTestStep( +inline prodml23__SwellingTestStep * soap_new_req_prodml23__SwellingTestStep( struct soap *soap, LONG64 StepNumber, const std::string& uid) { - prodml22__SwellingTestStep *_p = gsoap_eml2_3::soap_new_prodml22__SwellingTestStep(soap); + prodml23__SwellingTestStep *_p = gsoap_eml2_3::soap_new_prodml23__SwellingTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SwellingTestStep::StepNumber = StepNumber; - _p->prodml22__SwellingTestStep::uid = uid; + _p->prodml23__SwellingTestStep::StepNumber = StepNumber; + _p->prodml23__SwellingTestStep::uid = uid; } return _p; } -inline prodml22__SwellingTestStep * soap_new_set_prodml22__SwellingTestStep( +inline prodml23__SwellingTestStep * soap_new_set_prodml23__SwellingTestStep( struct soap *soap, LONG64 StepNumber, - const std::vector & IncrementalGasAdded, - const std::vector & CumulativeGasAdded, + const std::vector & IncrementalGasAdded, + const std::vector & CumulativeGasAdded, eml23__VolumePerVolumeMeasure *Gor, - prodml22__SaturationPressure *SaturationPressure, - prodml22__RelativeVolumeRatio *SwollenVolume, + prodml23__SaturationPressure *SaturationPressure, + prodml23__RelativeVolumeRatio *SwollenVolume, eml23__VolumePerVolumeMeasure *SwellingFactor, eml23__MassPerVolumeMeasure *DensityAtSaturationPoint, std::string *ConstantCompositionExpansionTest, @@ -124478,214 +124470,214 @@ inline prodml22__SwellingTestStep * soap_new_set_prodml22__SwellingTestStep( std::string *Remark, const std::string& uid) { - prodml22__SwellingTestStep *_p = gsoap_eml2_3::soap_new_prodml22__SwellingTestStep(soap); + prodml23__SwellingTestStep *_p = gsoap_eml2_3::soap_new_prodml23__SwellingTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SwellingTestStep::StepNumber = StepNumber; - _p->prodml22__SwellingTestStep::IncrementalGasAdded = IncrementalGasAdded; - _p->prodml22__SwellingTestStep::CumulativeGasAdded = CumulativeGasAdded; - _p->prodml22__SwellingTestStep::Gor = Gor; - _p->prodml22__SwellingTestStep::SaturationPressure = SaturationPressure; - _p->prodml22__SwellingTestStep::SwollenVolume = SwollenVolume; - _p->prodml22__SwellingTestStep::SwellingFactor = SwellingFactor; - _p->prodml22__SwellingTestStep::DensityAtSaturationPoint = DensityAtSaturationPoint; - _p->prodml22__SwellingTestStep::ConstantCompositionExpansionTest = ConstantCompositionExpansionTest; - _p->prodml22__SwellingTestStep::TransportPropertyTestReference = TransportPropertyTestReference; - _p->prodml22__SwellingTestStep::Remark = Remark; - _p->prodml22__SwellingTestStep::uid = uid; + _p->prodml23__SwellingTestStep::StepNumber = StepNumber; + _p->prodml23__SwellingTestStep::IncrementalGasAdded = IncrementalGasAdded; + _p->prodml23__SwellingTestStep::CumulativeGasAdded = CumulativeGasAdded; + _p->prodml23__SwellingTestStep::Gor = Gor; + _p->prodml23__SwellingTestStep::SaturationPressure = SaturationPressure; + _p->prodml23__SwellingTestStep::SwollenVolume = SwollenVolume; + _p->prodml23__SwellingTestStep::SwellingFactor = SwellingFactor; + _p->prodml23__SwellingTestStep::DensityAtSaturationPoint = DensityAtSaturationPoint; + _p->prodml23__SwellingTestStep::ConstantCompositionExpansionTest = ConstantCompositionExpansionTest; + _p->prodml23__SwellingTestStep::TransportPropertyTestReference = TransportPropertyTestReference; + _p->prodml23__SwellingTestStep::Remark = Remark; + _p->prodml23__SwellingTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep const*p) +inline int soap_write_prodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep ? "prodml22:SwellingTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep ? "prodml23:SwellingTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SwellingTestStep(struct soap *soap, const char *URL, prodml22__SwellingTestStep const*p) +inline int soap_PUT_prodml23__SwellingTestStep(struct soap *soap, const char *URL, prodml23__SwellingTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep ? "prodml22:SwellingTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep ? "prodml23:SwellingTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SwellingTestStep(struct soap *soap, const char *URL, prodml22__SwellingTestStep const*p) +inline int soap_PATCH_prodml23__SwellingTestStep(struct soap *soap, const char *URL, prodml23__SwellingTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep ? "prodml22:SwellingTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep ? "prodml23:SwellingTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SwellingTestStep(struct soap *soap, const char *URL, prodml22__SwellingTestStep const*p) +inline int soap_POST_send_prodml23__SwellingTestStep(struct soap *soap, const char *URL, prodml23__SwellingTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep ? "prodml22:SwellingTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep ? "prodml23:SwellingTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SwellingTestStep * SOAP_FMAC4 soap_get_prodml22__SwellingTestStep(struct soap*, prodml22__SwellingTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__SwellingTestStep * SOAP_FMAC4 soap_get_prodml23__SwellingTestStep(struct soap*, prodml23__SwellingTestStep *, const char*, const char*); -inline int soap_read_prodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep *p) +inline int soap_read_prodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SwellingTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SwellingTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SwellingTestStep(struct soap *soap, const char *URL, prodml22__SwellingTestStep *p) +inline int soap_GET_prodml23__SwellingTestStep(struct soap *soap, const char *URL, prodml23__SwellingTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SwellingTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SwellingTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SwellingTestStep(struct soap *soap, prodml22__SwellingTestStep *p) +inline int soap_POST_recv_prodml23__SwellingTestStep(struct soap *soap, prodml23__SwellingTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__SwellingTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SwellingTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SwellingTest(struct soap*, const char*, int, const prodml22__SwellingTest *, const char*); -SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_in_prodml22__SwellingTest(struct soap*, const char*, prodml22__SwellingTest *, const char*); -SOAP_FMAC1 prodml22__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml22__SwellingTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SwellingTest(struct soap*, const char*, int, const prodml23__SwellingTest *, const char*); +SOAP_FMAC3 prodml23__SwellingTest * SOAP_FMAC4 soap_in_prodml23__SwellingTest(struct soap*, const char*, prodml23__SwellingTest *, const char*); +SOAP_FMAC1 prodml23__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml23__SwellingTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SwellingTest * soap_new_prodml22__SwellingTest(struct soap *soap, int n = -1) +inline prodml23__SwellingTest * soap_new_prodml23__SwellingTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SwellingTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SwellingTest(soap, n, NULL, NULL, NULL); } -inline prodml22__SwellingTest * soap_new_req_prodml22__SwellingTest( +inline prodml23__SwellingTest * soap_new_req_prodml23__SwellingTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, const std::string& uid) { - prodml22__SwellingTest *_p = gsoap_eml2_3::soap_new_prodml22__SwellingTest(soap); + prodml23__SwellingTest *_p = gsoap_eml2_3::soap_new_prodml23__SwellingTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SwellingTest::TestNumber = TestNumber; - _p->prodml22__SwellingTest::TestTemperature = TestTemperature; - _p->prodml22__SwellingTest::uid = uid; + _p->prodml23__SwellingTest::TestNumber = TestNumber; + _p->prodml23__SwellingTest::TestTemperature = TestTemperature; + _p->prodml23__SwellingTest::uid = uid; } return _p; } -inline prodml22__SwellingTest * soap_new_set_prodml22__SwellingTest( +inline prodml23__SwellingTest * soap_new_set_prodml23__SwellingTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - const std::vector & InjectedGas, + const std::vector & InjectedGas, std::string *Remark, - const std::vector & SwellingTestStep, + const std::vector & SwellingTestStep, const std::string& uid) { - prodml22__SwellingTest *_p = gsoap_eml2_3::soap_new_prodml22__SwellingTest(soap); + prodml23__SwellingTest *_p = gsoap_eml2_3::soap_new_prodml23__SwellingTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SwellingTest::TestNumber = TestNumber; - _p->prodml22__SwellingTest::TestTemperature = TestTemperature; - _p->prodml22__SwellingTest::InjectedGas = InjectedGas; - _p->prodml22__SwellingTest::Remark = Remark; - _p->prodml22__SwellingTest::SwellingTestStep = SwellingTestStep; - _p->prodml22__SwellingTest::uid = uid; + _p->prodml23__SwellingTest::TestNumber = TestNumber; + _p->prodml23__SwellingTest::TestTemperature = TestTemperature; + _p->prodml23__SwellingTest::InjectedGas = InjectedGas; + _p->prodml23__SwellingTest::Remark = Remark; + _p->prodml23__SwellingTest::SwellingTestStep = SwellingTestStep; + _p->prodml23__SwellingTest::uid = uid; } return _p; } -inline int soap_write_prodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest const*p) +inline int soap_write_prodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest ? "prodml22:SwellingTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest ? "prodml23:SwellingTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SwellingTest(struct soap *soap, const char *URL, prodml22__SwellingTest const*p) +inline int soap_PUT_prodml23__SwellingTest(struct soap *soap, const char *URL, prodml23__SwellingTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest ? "prodml22:SwellingTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest ? "prodml23:SwellingTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SwellingTest(struct soap *soap, const char *URL, prodml22__SwellingTest const*p) +inline int soap_PATCH_prodml23__SwellingTest(struct soap *soap, const char *URL, prodml23__SwellingTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest ? "prodml22:SwellingTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest ? "prodml23:SwellingTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SwellingTest(struct soap *soap, const char *URL, prodml22__SwellingTest const*p) +inline int soap_POST_send_prodml23__SwellingTest(struct soap *soap, const char *URL, prodml23__SwellingTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest ? "prodml22:SwellingTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SwellingTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest ? "prodml23:SwellingTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SwellingTest * SOAP_FMAC4 soap_get_prodml22__SwellingTest(struct soap*, prodml22__SwellingTest *, const char*, const char*); +SOAP_FMAC3 prodml23__SwellingTest * SOAP_FMAC4 soap_get_prodml23__SwellingTest(struct soap*, prodml23__SwellingTest *, const char*, const char*); -inline int soap_read_prodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest *p) +inline int soap_read_prodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SwellingTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SwellingTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SwellingTest(struct soap *soap, const char *URL, prodml22__SwellingTest *p) +inline int soap_GET_prodml23__SwellingTest(struct soap *soap, const char *URL, prodml23__SwellingTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SwellingTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SwellingTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SwellingTest(struct soap *soap, prodml22__SwellingTest *p) +inline int soap_POST_recv_prodml23__SwellingTest(struct soap *soap, prodml23__SwellingTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__SwellingTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SwellingTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__STOFlashedLiquid(struct soap*, const char*, int, const prodml22__STOFlashedLiquid *, const char*); -SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml22__STOFlashedLiquid(struct soap*, const char*, prodml22__STOFlashedLiquid *, const char*); -SOAP_FMAC1 prodml22__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__STOFlashedLiquid(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__STOFlashedLiquid(struct soap*, const char*, int, const prodml23__STOFlashedLiquid *, const char*); +SOAP_FMAC3 prodml23__STOFlashedLiquid * SOAP_FMAC4 soap_in_prodml23__STOFlashedLiquid(struct soap*, const char*, prodml23__STOFlashedLiquid *, const char*); +SOAP_FMAC1 prodml23__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml23__STOFlashedLiquid(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__STOFlashedLiquid * soap_new_prodml22__STOFlashedLiquid(struct soap *soap, int n = -1) +inline prodml23__STOFlashedLiquid * soap_new_prodml23__STOFlashedLiquid(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__STOFlashedLiquid(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__STOFlashedLiquid(soap, n, NULL, NULL, NULL); } -inline prodml22__STOFlashedLiquid * soap_new_req_prodml22__STOFlashedLiquid( +inline prodml23__STOFlashedLiquid * soap_new_req_prodml23__STOFlashedLiquid( struct soap *soap, eml23__MassPerMassMeasure *Nitrogen) { - prodml22__STOFlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml22__STOFlashedLiquid(soap); + prodml23__STOFlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml23__STOFlashedLiquid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__STOFlashedLiquid::Nitrogen = Nitrogen; + _p->prodml23__STOFlashedLiquid::Nitrogen = Nitrogen; } return _p; } -inline prodml22__STOFlashedLiquid * soap_new_set_prodml22__STOFlashedLiquid( +inline prodml23__STOFlashedLiquid * soap_new_set_prodml23__STOFlashedLiquid( struct soap *soap, eml23__APIGravityMeasure *OilAPIGravity, eml23__MassPerMassMeasure *WaterContent, @@ -124704,234 +124696,234 @@ inline prodml22__STOFlashedLiquid * soap_new_set_prodml22__STOFlashedLiquid( eml23__MassPerMassMeasure *Nickel, eml23__MassPerMassMeasure *Vanadium, eml23__MassPerMassMeasure *Iron, - const std::vector & ViscosityAtTemperature, + const std::vector & ViscosityAtTemperature, eml23__PressureMeasure *ReidVaporPressure, - const std::vector & Sara) + const std::vector & Sara) { - prodml22__STOFlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml22__STOFlashedLiquid(soap); + prodml23__STOFlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml23__STOFlashedLiquid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__STOFlashedLiquid::OilAPIGravity = OilAPIGravity; - _p->prodml22__STOFlashedLiquid::WaterContent = WaterContent; - _p->prodml22__STOFlashedLiquid::WatsonKFactor = WatsonKFactor; - _p->prodml22__STOFlashedLiquid::AsphalteneContent = AsphalteneContent; - _p->prodml22__STOFlashedLiquid::ParaffinContent = ParaffinContent; - _p->prodml22__STOFlashedLiquid::CloudPoint = CloudPoint; - _p->prodml22__STOFlashedLiquid::WaxAppearanceTemperature = WaxAppearanceTemperature; - _p->prodml22__STOFlashedLiquid::PourPoint = PourPoint; - _p->prodml22__STOFlashedLiquid::ASTMFlashPoint = ASTMFlashPoint; - _p->prodml22__STOFlashedLiquid::TotalAcidNumber = TotalAcidNumber; - _p->prodml22__STOFlashedLiquid::TotalSulfur = TotalSulfur; - _p->prodml22__STOFlashedLiquid::Nitrogen = Nitrogen; - _p->prodml22__STOFlashedLiquid::ElementalSulfur = ElementalSulfur; - _p->prodml22__STOFlashedLiquid::Lead = Lead; - _p->prodml22__STOFlashedLiquid::Nickel = Nickel; - _p->prodml22__STOFlashedLiquid::Vanadium = Vanadium; - _p->prodml22__STOFlashedLiquid::Iron = Iron; - _p->prodml22__STOFlashedLiquid::ViscosityAtTemperature = ViscosityAtTemperature; - _p->prodml22__STOFlashedLiquid::ReidVaporPressure = ReidVaporPressure; - _p->prodml22__STOFlashedLiquid::Sara = Sara; + _p->prodml23__STOFlashedLiquid::OilAPIGravity = OilAPIGravity; + _p->prodml23__STOFlashedLiquid::WaterContent = WaterContent; + _p->prodml23__STOFlashedLiquid::WatsonKFactor = WatsonKFactor; + _p->prodml23__STOFlashedLiquid::AsphalteneContent = AsphalteneContent; + _p->prodml23__STOFlashedLiquid::ParaffinContent = ParaffinContent; + _p->prodml23__STOFlashedLiquid::CloudPoint = CloudPoint; + _p->prodml23__STOFlashedLiquid::WaxAppearanceTemperature = WaxAppearanceTemperature; + _p->prodml23__STOFlashedLiquid::PourPoint = PourPoint; + _p->prodml23__STOFlashedLiquid::ASTMFlashPoint = ASTMFlashPoint; + _p->prodml23__STOFlashedLiquid::TotalAcidNumber = TotalAcidNumber; + _p->prodml23__STOFlashedLiquid::TotalSulfur = TotalSulfur; + _p->prodml23__STOFlashedLiquid::Nitrogen = Nitrogen; + _p->prodml23__STOFlashedLiquid::ElementalSulfur = ElementalSulfur; + _p->prodml23__STOFlashedLiquid::Lead = Lead; + _p->prodml23__STOFlashedLiquid::Nickel = Nickel; + _p->prodml23__STOFlashedLiquid::Vanadium = Vanadium; + _p->prodml23__STOFlashedLiquid::Iron = Iron; + _p->prodml23__STOFlashedLiquid::ViscosityAtTemperature = ViscosityAtTemperature; + _p->prodml23__STOFlashedLiquid::ReidVaporPressure = ReidVaporPressure; + _p->prodml23__STOFlashedLiquid::Sara = Sara; } return _p; } -inline int soap_write_prodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid const*p) +inline int soap_write_prodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid ? "prodml22:STOFlashedLiquid" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid ? "prodml23:STOFlashedLiquid" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__STOFlashedLiquid(struct soap *soap, const char *URL, prodml22__STOFlashedLiquid const*p) +inline int soap_PUT_prodml23__STOFlashedLiquid(struct soap *soap, const char *URL, prodml23__STOFlashedLiquid const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid ? "prodml22:STOFlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid ? "prodml23:STOFlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__STOFlashedLiquid(struct soap *soap, const char *URL, prodml22__STOFlashedLiquid const*p) +inline int soap_PATCH_prodml23__STOFlashedLiquid(struct soap *soap, const char *URL, prodml23__STOFlashedLiquid const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid ? "prodml22:STOFlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid ? "prodml23:STOFlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__STOFlashedLiquid(struct soap *soap, const char *URL, prodml22__STOFlashedLiquid const*p) +inline int soap_POST_send_prodml23__STOFlashedLiquid(struct soap *soap, const char *URL, prodml23__STOFlashedLiquid const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid ? "prodml22:STOFlashedLiquid" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOFlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid ? "prodml23:STOFlashedLiquid" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__STOFlashedLiquid * SOAP_FMAC4 soap_get_prodml22__STOFlashedLiquid(struct soap*, prodml22__STOFlashedLiquid *, const char*, const char*); +SOAP_FMAC3 prodml23__STOFlashedLiquid * SOAP_FMAC4 soap_get_prodml23__STOFlashedLiquid(struct soap*, prodml23__STOFlashedLiquid *, const char*, const char*); -inline int soap_read_prodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid *p) +inline int soap_read_prodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__STOFlashedLiquid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__STOFlashedLiquid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__STOFlashedLiquid(struct soap *soap, const char *URL, prodml22__STOFlashedLiquid *p) +inline int soap_GET_prodml23__STOFlashedLiquid(struct soap *soap, const char *URL, prodml23__STOFlashedLiquid *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__STOFlashedLiquid(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__STOFlashedLiquid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__STOFlashedLiquid(struct soap *soap, prodml22__STOFlashedLiquid *p) +inline int soap_POST_recv_prodml23__STOFlashedLiquid(struct soap *soap, prodml23__STOFlashedLiquid *p) { - if (gsoap_eml2_3::soap_read_prodml22__STOFlashedLiquid(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__STOFlashedLiquid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__STOAnalysis(struct soap*, const char*, int, const prodml22__STOAnalysis *, const char*); -SOAP_FMAC3 prodml22__STOAnalysis * SOAP_FMAC4 soap_in_prodml22__STOAnalysis(struct soap*, const char*, prodml22__STOAnalysis *, const char*); -SOAP_FMAC1 prodml22__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__STOAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__STOAnalysis(struct soap*, const char*, int, const prodml23__STOAnalysis *, const char*); +SOAP_FMAC3 prodml23__STOAnalysis * SOAP_FMAC4 soap_in_prodml23__STOAnalysis(struct soap*, const char*, prodml23__STOAnalysis *, const char*); +SOAP_FMAC1 prodml23__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__STOAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__STOAnalysis * soap_new_prodml22__STOAnalysis(struct soap *soap, int n = -1) +inline prodml23__STOAnalysis * soap_new_prodml23__STOAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__STOAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__STOAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__STOAnalysis * soap_new_req_prodml22__STOAnalysis( +inline prodml23__STOAnalysis * soap_new_req_prodml23__STOAnalysis( struct soap *soap, const std::string& Date) { - prodml22__STOAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__STOAnalysis(soap); + prodml23__STOAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__STOAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__STOAnalysis::Date = Date; + _p->prodml23__STOAnalysis::Date = Date; } return _p; } -inline prodml22__STOAnalysis * soap_new_set_prodml22__STOAnalysis( +inline prodml23__STOAnalysis * soap_new_set_prodml23__STOAnalysis( struct soap *soap, const std::string& Date, eml23__PressureMeasure *FlashFromPressure, eml23__ThermodynamicTemperatureMeasure *FlashFromTemperature, eml23__MolecularWeightMeasure *MolecularWeight, - prodml22__FluidAnalysisStepCondition *FluidCondition, - prodml22__PhasePresent *PhasesPresent, - prodml22__LiquidComposition *LiquidComposition, - prodml22__VaporComposition *VaporComposition, - prodml22__OverallComposition *OverallComposition, + prodml23__FluidAnalysisStepCondition *FluidCondition, + prodml23__PhasePresent *PhasesPresent, + prodml23__LiquidComposition *LiquidComposition, + prodml23__VaporComposition *VaporComposition, + prodml23__OverallComposition *OverallComposition, std::string *Remark, - prodml22__STOFlashedLiquid *STOFlashedLiquid) + prodml23__STOFlashedLiquid *STOFlashedLiquid) { - prodml22__STOAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__STOAnalysis(soap); + prodml23__STOAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__STOAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__STOAnalysis::Date = Date; - _p->prodml22__STOAnalysis::FlashFromPressure = FlashFromPressure; - _p->prodml22__STOAnalysis::FlashFromTemperature = FlashFromTemperature; - _p->prodml22__STOAnalysis::MolecularWeight = MolecularWeight; - _p->prodml22__STOAnalysis::FluidCondition = FluidCondition; - _p->prodml22__STOAnalysis::PhasesPresent = PhasesPresent; - _p->prodml22__STOAnalysis::LiquidComposition = LiquidComposition; - _p->prodml22__STOAnalysis::VaporComposition = VaporComposition; - _p->prodml22__STOAnalysis::OverallComposition = OverallComposition; - _p->prodml22__STOAnalysis::Remark = Remark; - _p->prodml22__STOAnalysis::STOFlashedLiquid = STOFlashedLiquid; + _p->prodml23__STOAnalysis::Date = Date; + _p->prodml23__STOAnalysis::FlashFromPressure = FlashFromPressure; + _p->prodml23__STOAnalysis::FlashFromTemperature = FlashFromTemperature; + _p->prodml23__STOAnalysis::MolecularWeight = MolecularWeight; + _p->prodml23__STOAnalysis::FluidCondition = FluidCondition; + _p->prodml23__STOAnalysis::PhasesPresent = PhasesPresent; + _p->prodml23__STOAnalysis::LiquidComposition = LiquidComposition; + _p->prodml23__STOAnalysis::VaporComposition = VaporComposition; + _p->prodml23__STOAnalysis::OverallComposition = OverallComposition; + _p->prodml23__STOAnalysis::Remark = Remark; + _p->prodml23__STOAnalysis::STOFlashedLiquid = STOFlashedLiquid; } return _p; } -inline int soap_write_prodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis const*p) +inline int soap_write_prodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis ? "prodml22:STOAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis ? "prodml23:STOAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__STOAnalysis(struct soap *soap, const char *URL, prodml22__STOAnalysis const*p) +inline int soap_PUT_prodml23__STOAnalysis(struct soap *soap, const char *URL, prodml23__STOAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis ? "prodml22:STOAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis ? "prodml23:STOAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__STOAnalysis(struct soap *soap, const char *URL, prodml22__STOAnalysis const*p) +inline int soap_PATCH_prodml23__STOAnalysis(struct soap *soap, const char *URL, prodml23__STOAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis ? "prodml22:STOAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis ? "prodml23:STOAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__STOAnalysis(struct soap *soap, const char *URL, prodml22__STOAnalysis const*p) +inline int soap_POST_send_prodml23__STOAnalysis(struct soap *soap, const char *URL, prodml23__STOAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis ? "prodml22:STOAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:STOAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis ? "prodml23:STOAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__STOAnalysis * SOAP_FMAC4 soap_get_prodml22__STOAnalysis(struct soap*, prodml22__STOAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__STOAnalysis * SOAP_FMAC4 soap_get_prodml23__STOAnalysis(struct soap*, prodml23__STOAnalysis *, const char*, const char*); -inline int soap_read_prodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis *p) +inline int soap_read_prodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__STOAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__STOAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__STOAnalysis(struct soap *soap, const char *URL, prodml22__STOAnalysis *p) +inline int soap_GET_prodml23__STOAnalysis(struct soap *soap, const char *URL, prodml23__STOAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__STOAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__STOAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__STOAnalysis(struct soap *soap, prodml22__STOAnalysis *p) +inline int soap_POST_recv_prodml23__STOAnalysis(struct soap *soap, prodml23__STOAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__STOAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__STOAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeTestVolumeStep(struct soap*, const char*, int, const prodml22__SlimTubeTestVolumeStep *, const char*); -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_in_prodml22__SlimTubeTestVolumeStep(struct soap*, const char*, prodml22__SlimTubeTestVolumeStep *, const char*); -SOAP_FMAC1 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTestVolumeStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeTestVolumeStep(struct soap*, const char*, int, const prodml23__SlimTubeTestVolumeStep *, const char*); +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_in_prodml23__SlimTubeTestVolumeStep(struct soap*, const char*, prodml23__SlimTubeTestVolumeStep *, const char*); +SOAP_FMAC1 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTestVolumeStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SlimTubeTestVolumeStep * soap_new_prodml22__SlimTubeTestVolumeStep(struct soap *soap, int n = -1) +inline prodml23__SlimTubeTestVolumeStep * soap_new_prodml23__SlimTubeTestVolumeStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SlimTubeTestVolumeStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SlimTubeTestVolumeStep(soap, n, NULL, NULL, NULL); } -inline prodml22__SlimTubeTestVolumeStep * soap_new_req_prodml22__SlimTubeTestVolumeStep( +inline prodml23__SlimTubeTestVolumeStep * soap_new_req_prodml23__SlimTubeTestVolumeStep( struct soap *soap, LONG64 StepNumber, const std::string& uid) { - prodml22__SlimTubeTestVolumeStep *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeTestVolumeStep(soap); + prodml23__SlimTubeTestVolumeStep *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeTestVolumeStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeTestVolumeStep::StepNumber = StepNumber; - _p->prodml22__SlimTubeTestVolumeStep::uid = uid; + _p->prodml23__SlimTubeTestVolumeStep::StepNumber = StepNumber; + _p->prodml23__SlimTubeTestVolumeStep::uid = uid; } return _p; } -inline prodml22__SlimTubeTestVolumeStep * soap_new_set_prodml22__SlimTubeTestVolumeStep( +inline prodml23__SlimTubeTestVolumeStep * soap_new_set_prodml23__SlimTubeTestVolumeStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *DifferentialPressure, @@ -124945,328 +124937,328 @@ inline prodml22__SlimTubeTestVolumeStep * soap_new_set_prodml22__SlimTubeTestVol eml23__VolumePerVolumeMeasure *IncrementalProducedGOR, eml23__VolumePerVolumeMeasure *CumulativeProducedGOR, std::string *Remark, - prodml22__ProducedGasProperties *ProducedGasProperties, - prodml22__ProducedOilProperties *ProducedOilProperties, - prodml22__MassBalance *MassBalance, + prodml23__ProducedGasProperties *ProducedGasProperties, + prodml23__ProducedOilProperties *ProducedOilProperties, + prodml23__MassBalance *MassBalance, const std::string& uid) { - prodml22__SlimTubeTestVolumeStep *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeTestVolumeStep(soap); + prodml23__SlimTubeTestVolumeStep *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeTestVolumeStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeTestVolumeStep::StepNumber = StepNumber; - _p->prodml22__SlimTubeTestVolumeStep::DifferentialPressure = DifferentialPressure; - _p->prodml22__SlimTubeTestVolumeStep::RunTime = RunTime; - _p->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature = InjectionVolumeAtPumpTemperature; - _p->prodml22__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature = InjectionVolumeAtTestTemperature; - _p->prodml22__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction = InjectedPoreVolumeFraction; - _p->prodml22__SlimTubeTestVolumeStep::DarcyVelocity = DarcyVelocity; - _p->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP = CumulativeOilProductionPercOOIP; - _p->prodml22__SlimTubeTestVolumeStep::CumulativeOilProductionSTO = CumulativeOilProductionSTO; - _p->prodml22__SlimTubeTestVolumeStep::IncrementalProducedGOR = IncrementalProducedGOR; - _p->prodml22__SlimTubeTestVolumeStep::CumulativeProducedGOR = CumulativeProducedGOR; - _p->prodml22__SlimTubeTestVolumeStep::Remark = Remark; - _p->prodml22__SlimTubeTestVolumeStep::ProducedGasProperties = ProducedGasProperties; - _p->prodml22__SlimTubeTestVolumeStep::ProducedOilProperties = ProducedOilProperties; - _p->prodml22__SlimTubeTestVolumeStep::MassBalance = MassBalance; - _p->prodml22__SlimTubeTestVolumeStep::uid = uid; + _p->prodml23__SlimTubeTestVolumeStep::StepNumber = StepNumber; + _p->prodml23__SlimTubeTestVolumeStep::DifferentialPressure = DifferentialPressure; + _p->prodml23__SlimTubeTestVolumeStep::RunTime = RunTime; + _p->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtPumpTemperature = InjectionVolumeAtPumpTemperature; + _p->prodml23__SlimTubeTestVolumeStep::InjectionVolumeAtTestTemperature = InjectionVolumeAtTestTemperature; + _p->prodml23__SlimTubeTestVolumeStep::InjectedPoreVolumeFraction = InjectedPoreVolumeFraction; + _p->prodml23__SlimTubeTestVolumeStep::DarcyVelocity = DarcyVelocity; + _p->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionPercOOIP = CumulativeOilProductionPercOOIP; + _p->prodml23__SlimTubeTestVolumeStep::CumulativeOilProductionSTO = CumulativeOilProductionSTO; + _p->prodml23__SlimTubeTestVolumeStep::IncrementalProducedGOR = IncrementalProducedGOR; + _p->prodml23__SlimTubeTestVolumeStep::CumulativeProducedGOR = CumulativeProducedGOR; + _p->prodml23__SlimTubeTestVolumeStep::Remark = Remark; + _p->prodml23__SlimTubeTestVolumeStep::ProducedGasProperties = ProducedGasProperties; + _p->prodml23__SlimTubeTestVolumeStep::ProducedOilProperties = ProducedOilProperties; + _p->prodml23__SlimTubeTestVolumeStep::MassBalance = MassBalance; + _p->prodml23__SlimTubeTestVolumeStep::uid = uid; } return _p; } -inline int soap_write_prodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep const*p) +inline int soap_write_prodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep ? "prodml22:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep ? "prodml23:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestVolumeStep const*p) +inline int soap_PUT_prodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestVolumeStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep ? "prodml22:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep ? "prodml23:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestVolumeStep const*p) +inline int soap_PATCH_prodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestVolumeStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep ? "prodml22:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep ? "prodml23:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestVolumeStep const*p) +inline int soap_POST_send_prodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestVolumeStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep ? "prodml22:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestVolumeStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep ? "prodml23:SlimTubeTestVolumeStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_get_prodml22__SlimTubeTestVolumeStep(struct soap*, prodml22__SlimTubeTestVolumeStep *, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC4 soap_get_prodml23__SlimTubeTestVolumeStep(struct soap*, prodml23__SlimTubeTestVolumeStep *, const char*, const char*); -inline int soap_read_prodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep *p) +inline int soap_read_prodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SlimTubeTestVolumeStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SlimTubeTestVolumeStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestVolumeStep *p) +inline int soap_GET_prodml23__SlimTubeTestVolumeStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestVolumeStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SlimTubeTestVolumeStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SlimTubeTestVolumeStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SlimTubeTestVolumeStep(struct soap *soap, prodml22__SlimTubeTestVolumeStep *p) +inline int soap_POST_recv_prodml23__SlimTubeTestVolumeStep(struct soap *soap, prodml23__SlimTubeTestVolumeStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__SlimTubeTestVolumeStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SlimTubeTestVolumeStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeTestStep(struct soap*, const char*, int, const prodml22__SlimTubeTestStep *, const char*); -SOAP_FMAC3 prodml22__SlimTubeTestStep * SOAP_FMAC4 soap_in_prodml22__SlimTubeTestStep(struct soap*, const char*, prodml22__SlimTubeTestStep *, const char*); -SOAP_FMAC1 prodml22__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeTestStep(struct soap*, const char*, int, const prodml23__SlimTubeTestStep *, const char*); +SOAP_FMAC3 prodml23__SlimTubeTestStep * SOAP_FMAC4 soap_in_prodml23__SlimTubeTestStep(struct soap*, const char*, prodml23__SlimTubeTestStep *, const char*); +SOAP_FMAC1 prodml23__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SlimTubeTestStep * soap_new_prodml22__SlimTubeTestStep(struct soap *soap, int n = -1) +inline prodml23__SlimTubeTestStep * soap_new_prodml23__SlimTubeTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SlimTubeTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SlimTubeTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__SlimTubeTestStep * soap_new_req_prodml22__SlimTubeTestStep( +inline prodml23__SlimTubeTestStep * soap_new_req_prodml23__SlimTubeTestStep( struct soap *soap, LONG64 StepNumber, const std::string& uid) { - prodml22__SlimTubeTestStep *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeTestStep(soap); + prodml23__SlimTubeTestStep *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeTestStep::StepNumber = StepNumber; - _p->prodml22__SlimTubeTestStep::uid = uid; + _p->prodml23__SlimTubeTestStep::StepNumber = StepNumber; + _p->prodml23__SlimTubeTestStep::uid = uid; } return _p; } -inline prodml22__SlimTubeTestStep * soap_new_set_prodml22__SlimTubeTestStep( +inline prodml23__SlimTubeTestStep * soap_new_set_prodml23__SlimTubeTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepAveragePressure, std::string *Remark, - const std::vector & SlimTubeTestVolumeStep, + const std::vector & SlimTubeTestVolumeStep, const std::string& uid) { - prodml22__SlimTubeTestStep *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeTestStep(soap); + prodml23__SlimTubeTestStep *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeTestStep::StepNumber = StepNumber; - _p->prodml22__SlimTubeTestStep::StepAveragePressure = StepAveragePressure; - _p->prodml22__SlimTubeTestStep::Remark = Remark; - _p->prodml22__SlimTubeTestStep::SlimTubeTestVolumeStep = SlimTubeTestVolumeStep; - _p->prodml22__SlimTubeTestStep::uid = uid; + _p->prodml23__SlimTubeTestStep::StepNumber = StepNumber; + _p->prodml23__SlimTubeTestStep::StepAveragePressure = StepAveragePressure; + _p->prodml23__SlimTubeTestStep::Remark = Remark; + _p->prodml23__SlimTubeTestStep::SlimTubeTestVolumeStep = SlimTubeTestVolumeStep; + _p->prodml23__SlimTubeTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep const*p) +inline int soap_write_prodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep ? "prodml22:SlimTubeTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep ? "prodml23:SlimTubeTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SlimTubeTestStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestStep const*p) +inline int soap_PUT_prodml23__SlimTubeTestStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep ? "prodml22:SlimTubeTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep ? "prodml23:SlimTubeTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SlimTubeTestStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestStep const*p) +inline int soap_PATCH_prodml23__SlimTubeTestStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep ? "prodml22:SlimTubeTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep ? "prodml23:SlimTubeTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SlimTubeTestStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestStep const*p) +inline int soap_POST_send_prodml23__SlimTubeTestStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep ? "prodml22:SlimTubeTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep ? "prodml23:SlimTubeTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SlimTubeTestStep * SOAP_FMAC4 soap_get_prodml22__SlimTubeTestStep(struct soap*, prodml22__SlimTubeTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeTestStep * SOAP_FMAC4 soap_get_prodml23__SlimTubeTestStep(struct soap*, prodml23__SlimTubeTestStep *, const char*, const char*); -inline int soap_read_prodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep *p) +inline int soap_read_prodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SlimTubeTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SlimTubeTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SlimTubeTestStep(struct soap *soap, const char *URL, prodml22__SlimTubeTestStep *p) +inline int soap_GET_prodml23__SlimTubeTestStep(struct soap *soap, const char *URL, prodml23__SlimTubeTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SlimTubeTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SlimTubeTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SlimTubeTestStep(struct soap *soap, prodml22__SlimTubeTestStep *p) +inline int soap_POST_recv_prodml23__SlimTubeTestStep(struct soap *soap, prodml23__SlimTubeTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__SlimTubeTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SlimTubeTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeTest(struct soap*, const char*, int, const prodml22__SlimTubeTest *, const char*); -SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_in_prodml22__SlimTubeTest(struct soap*, const char*, prodml22__SlimTubeTest *, const char*); -SOAP_FMAC1 prodml22__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeTest(struct soap*, const char*, int, const prodml23__SlimTubeTest *, const char*); +SOAP_FMAC3 prodml23__SlimTubeTest * SOAP_FMAC4 soap_in_prodml23__SlimTubeTest(struct soap*, const char*, prodml23__SlimTubeTest *, const char*); +SOAP_FMAC1 prodml23__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SlimTubeTest * soap_new_prodml22__SlimTubeTest(struct soap *soap, int n = -1) +inline prodml23__SlimTubeTest * soap_new_prodml23__SlimTubeTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SlimTubeTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SlimTubeTest(soap, n, NULL, NULL, NULL); } -inline prodml22__SlimTubeTest * soap_new_req_prodml22__SlimTubeTest( +inline prodml23__SlimTubeTest * soap_new_req_prodml23__SlimTubeTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, const std::string& uid) { - prodml22__SlimTubeTest *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeTest(soap); + prodml23__SlimTubeTest *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeTest::TestNumber = TestNumber; - _p->prodml22__SlimTubeTest::TestTemperature = TestTemperature; - _p->prodml22__SlimTubeTest::uid = uid; + _p->prodml23__SlimTubeTest::TestNumber = TestNumber; + _p->prodml23__SlimTubeTest::TestTemperature = TestTemperature; + _p->prodml23__SlimTubeTest::uid = uid; } return _p; } -inline prodml22__SlimTubeTest * soap_new_set_prodml22__SlimTubeTest( +inline prodml23__SlimTubeTest * soap_new_set_prodml23__SlimTubeTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, eml23__ThermodynamicTemperatureMeasure *PumpTemperature, std::string *Remark, - const std::vector & SlimTubeTestPressureStep, - const std::vector & SlimTubeSpecification, + const std::vector & SlimTubeTestPressureStep, + const std::vector & SlimTubeSpecification, const std::string& uid) { - prodml22__SlimTubeTest *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeTest(soap); + prodml23__SlimTubeTest *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeTest::TestNumber = TestNumber; - _p->prodml22__SlimTubeTest::TestTemperature = TestTemperature; - _p->prodml22__SlimTubeTest::PumpTemperature = PumpTemperature; - _p->prodml22__SlimTubeTest::Remark = Remark; - _p->prodml22__SlimTubeTest::SlimTubeTestPressureStep = SlimTubeTestPressureStep; - _p->prodml22__SlimTubeTest::SlimTubeSpecification = SlimTubeSpecification; - _p->prodml22__SlimTubeTest::uid = uid; + _p->prodml23__SlimTubeTest::TestNumber = TestNumber; + _p->prodml23__SlimTubeTest::TestTemperature = TestTemperature; + _p->prodml23__SlimTubeTest::PumpTemperature = PumpTemperature; + _p->prodml23__SlimTubeTest::Remark = Remark; + _p->prodml23__SlimTubeTest::SlimTubeTestPressureStep = SlimTubeTestPressureStep; + _p->prodml23__SlimTubeTest::SlimTubeSpecification = SlimTubeSpecification; + _p->prodml23__SlimTubeTest::uid = uid; } return _p; } -inline int soap_write_prodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest const*p) +inline int soap_write_prodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest ? "prodml22:SlimTubeTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest ? "prodml23:SlimTubeTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SlimTubeTest(struct soap *soap, const char *URL, prodml22__SlimTubeTest const*p) +inline int soap_PUT_prodml23__SlimTubeTest(struct soap *soap, const char *URL, prodml23__SlimTubeTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest ? "prodml22:SlimTubeTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest ? "prodml23:SlimTubeTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SlimTubeTest(struct soap *soap, const char *URL, prodml22__SlimTubeTest const*p) +inline int soap_PATCH_prodml23__SlimTubeTest(struct soap *soap, const char *URL, prodml23__SlimTubeTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest ? "prodml22:SlimTubeTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest ? "prodml23:SlimTubeTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SlimTubeTest(struct soap *soap, const char *URL, prodml22__SlimTubeTest const*p) +inline int soap_POST_send_prodml23__SlimTubeTest(struct soap *soap, const char *URL, prodml23__SlimTubeTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest ? "prodml22:SlimTubeTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest ? "prodml23:SlimTubeTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SlimTubeTest * SOAP_FMAC4 soap_get_prodml22__SlimTubeTest(struct soap*, prodml22__SlimTubeTest *, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeTest * SOAP_FMAC4 soap_get_prodml23__SlimTubeTest(struct soap*, prodml23__SlimTubeTest *, const char*, const char*); -inline int soap_read_prodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest *p) +inline int soap_read_prodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SlimTubeTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SlimTubeTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SlimTubeTest(struct soap *soap, const char *URL, prodml22__SlimTubeTest *p) +inline int soap_GET_prodml23__SlimTubeTest(struct soap *soap, const char *URL, prodml23__SlimTubeTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SlimTubeTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SlimTubeTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SlimTubeTest(struct soap *soap, prodml22__SlimTubeTest *p) +inline int soap_POST_recv_prodml23__SlimTubeTest(struct soap *soap, prodml23__SlimTubeTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__SlimTubeTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SlimTubeTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SlimTubeSpecification(struct soap*, const char*, int, const prodml22__SlimTubeSpecification *, const char*); -SOAP_FMAC3 prodml22__SlimTubeSpecification * SOAP_FMAC4 soap_in_prodml22__SlimTubeSpecification(struct soap*, const char*, prodml22__SlimTubeSpecification *, const char*); -SOAP_FMAC1 prodml22__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeSpecification(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SlimTubeSpecification(struct soap*, const char*, int, const prodml23__SlimTubeSpecification *, const char*); +SOAP_FMAC3 prodml23__SlimTubeSpecification * SOAP_FMAC4 soap_in_prodml23__SlimTubeSpecification(struct soap*, const char*, prodml23__SlimTubeSpecification *, const char*); +SOAP_FMAC1 prodml23__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeSpecification(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SlimTubeSpecification * soap_new_prodml22__SlimTubeSpecification(struct soap *soap, int n = -1) +inline prodml23__SlimTubeSpecification * soap_new_prodml23__SlimTubeSpecification(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SlimTubeSpecification(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SlimTubeSpecification(soap, n, NULL, NULL, NULL); } -inline prodml22__SlimTubeSpecification * soap_new_req_prodml22__SlimTubeSpecification( +inline prodml23__SlimTubeSpecification * soap_new_req_prodml23__SlimTubeSpecification( struct soap *soap, const std::string& uid) { - prodml22__SlimTubeSpecification *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeSpecification(soap); + prodml23__SlimTubeSpecification *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeSpecification(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeSpecification::uid = uid; + _p->prodml23__SlimTubeSpecification::uid = uid; } return _p; } -inline prodml22__SlimTubeSpecification * soap_new_set_prodml22__SlimTubeSpecification( +inline prodml23__SlimTubeSpecification * soap_new_set_prodml23__SlimTubeSpecification( struct soap *soap, eml23__LengthMeasure *Length, eml23__LengthMeasure *OuterDiameter, @@ -125276,510 +125268,502 @@ inline prodml22__SlimTubeSpecification * soap_new_set_prodml22__SlimTubeSpecific eml23__VolumeMeasure *PoreVolume, eml23__VolumePerVolumeMeasure *Porosity, eml23__PermeabilityRockMeasure *Permeability, - const std::vector & InjectedGas, + const std::vector & InjectedGas, std::string *Remark, const std::string& uid) { - prodml22__SlimTubeSpecification *_p = gsoap_eml2_3::soap_new_prodml22__SlimTubeSpecification(soap); + prodml23__SlimTubeSpecification *_p = gsoap_eml2_3::soap_new_prodml23__SlimTubeSpecification(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SlimTubeSpecification::Length = Length; - _p->prodml22__SlimTubeSpecification::OuterDiameter = OuterDiameter; - _p->prodml22__SlimTubeSpecification::InnerDiameter = InnerDiameter; - _p->prodml22__SlimTubeSpecification::CrossSectionArea = CrossSectionArea; - _p->prodml22__SlimTubeSpecification::PackingMaterial = PackingMaterial; - _p->prodml22__SlimTubeSpecification::PoreVolume = PoreVolume; - _p->prodml22__SlimTubeSpecification::Porosity = Porosity; - _p->prodml22__SlimTubeSpecification::Permeability = Permeability; - _p->prodml22__SlimTubeSpecification::InjectedGas = InjectedGas; - _p->prodml22__SlimTubeSpecification::Remark = Remark; - _p->prodml22__SlimTubeSpecification::uid = uid; + _p->prodml23__SlimTubeSpecification::Length = Length; + _p->prodml23__SlimTubeSpecification::OuterDiameter = OuterDiameter; + _p->prodml23__SlimTubeSpecification::InnerDiameter = InnerDiameter; + _p->prodml23__SlimTubeSpecification::CrossSectionArea = CrossSectionArea; + _p->prodml23__SlimTubeSpecification::PackingMaterial = PackingMaterial; + _p->prodml23__SlimTubeSpecification::PoreVolume = PoreVolume; + _p->prodml23__SlimTubeSpecification::Porosity = Porosity; + _p->prodml23__SlimTubeSpecification::Permeability = Permeability; + _p->prodml23__SlimTubeSpecification::InjectedGas = InjectedGas; + _p->prodml23__SlimTubeSpecification::Remark = Remark; + _p->prodml23__SlimTubeSpecification::uid = uid; } return _p; } -inline int soap_write_prodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification const*p) +inline int soap_write_prodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification ? "prodml22:SlimTubeSpecification" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification ? "prodml23:SlimTubeSpecification" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SlimTubeSpecification(struct soap *soap, const char *URL, prodml22__SlimTubeSpecification const*p) +inline int soap_PUT_prodml23__SlimTubeSpecification(struct soap *soap, const char *URL, prodml23__SlimTubeSpecification const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification ? "prodml22:SlimTubeSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification ? "prodml23:SlimTubeSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SlimTubeSpecification(struct soap *soap, const char *URL, prodml22__SlimTubeSpecification const*p) +inline int soap_PATCH_prodml23__SlimTubeSpecification(struct soap *soap, const char *URL, prodml23__SlimTubeSpecification const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification ? "prodml22:SlimTubeSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification ? "prodml23:SlimTubeSpecification" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SlimTubeSpecification(struct soap *soap, const char *URL, prodml22__SlimTubeSpecification const*p) +inline int soap_POST_send_prodml23__SlimTubeSpecification(struct soap *soap, const char *URL, prodml23__SlimTubeSpecification const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification ? "prodml22:SlimTubeSpecification" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SlimTubeSpecification", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification ? "prodml23:SlimTubeSpecification" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SlimTubeSpecification * SOAP_FMAC4 soap_get_prodml22__SlimTubeSpecification(struct soap*, prodml22__SlimTubeSpecification *, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeSpecification * SOAP_FMAC4 soap_get_prodml23__SlimTubeSpecification(struct soap*, prodml23__SlimTubeSpecification *, const char*, const char*); -inline int soap_read_prodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification *p) +inline int soap_read_prodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SlimTubeSpecification(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SlimTubeSpecification(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SlimTubeSpecification(struct soap *soap, const char *URL, prodml22__SlimTubeSpecification *p) +inline int soap_GET_prodml23__SlimTubeSpecification(struct soap *soap, const char *URL, prodml23__SlimTubeSpecification *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SlimTubeSpecification(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SlimTubeSpecification(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SlimTubeSpecification(struct soap *soap, prodml22__SlimTubeSpecification *p) +inline int soap_POST_recv_prodml23__SlimTubeSpecification(struct soap *soap, prodml23__SlimTubeSpecification *p) { - if (gsoap_eml2_3::soap_read_prodml22__SlimTubeSpecification(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SlimTubeSpecification(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SeparatorConditions(struct soap*, const char*, int, const prodml22__SeparatorConditions *, const char*); -SOAP_FMAC3 prodml22__SeparatorConditions * SOAP_FMAC4 soap_in_prodml22__SeparatorConditions(struct soap*, const char*, prodml22__SeparatorConditions *, const char*); -SOAP_FMAC1 prodml22__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml22__SeparatorConditions(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SeparatorConditions(struct soap*, const char*, int, const prodml23__SeparatorConditions *, const char*); +SOAP_FMAC3 prodml23__SeparatorConditions * SOAP_FMAC4 soap_in_prodml23__SeparatorConditions(struct soap*, const char*, prodml23__SeparatorConditions *, const char*); +SOAP_FMAC1 prodml23__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml23__SeparatorConditions(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SeparatorConditions * soap_new_prodml22__SeparatorConditions(struct soap *soap, int n = -1) +inline prodml23__SeparatorConditions * soap_new_prodml23__SeparatorConditions(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SeparatorConditions(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SeparatorConditions(soap, n, NULL, NULL, NULL); } -inline prodml22__SeparatorConditions * soap_new_req_prodml22__SeparatorConditions( +inline prodml23__SeparatorConditions * soap_new_req_prodml23__SeparatorConditions( struct soap *soap) { - prodml22__SeparatorConditions *_p = gsoap_eml2_3::soap_new_prodml22__SeparatorConditions(soap); + prodml23__SeparatorConditions *_p = gsoap_eml2_3::soap_new_prodml23__SeparatorConditions(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__SeparatorConditions * soap_new_set_prodml22__SeparatorConditions( +inline prodml23__SeparatorConditions * soap_new_set_prodml23__SeparatorConditions( struct soap *soap, std::string *separatorTestReference) { - prodml22__SeparatorConditions *_p = gsoap_eml2_3::soap_new_prodml22__SeparatorConditions(soap); + prodml23__SeparatorConditions *_p = gsoap_eml2_3::soap_new_prodml23__SeparatorConditions(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SeparatorConditions::separatorTestReference = separatorTestReference; + _p->prodml23__SeparatorConditions::separatorTestReference = separatorTestReference; } return _p; } -inline int soap_write_prodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions const*p) +inline int soap_write_prodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions ? "prodml22:SeparatorConditions" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions ? "prodml23:SeparatorConditions" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SeparatorConditions(struct soap *soap, const char *URL, prodml22__SeparatorConditions const*p) +inline int soap_PUT_prodml23__SeparatorConditions(struct soap *soap, const char *URL, prodml23__SeparatorConditions const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions ? "prodml22:SeparatorConditions" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions ? "prodml23:SeparatorConditions" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SeparatorConditions(struct soap *soap, const char *URL, prodml22__SeparatorConditions const*p) +inline int soap_PATCH_prodml23__SeparatorConditions(struct soap *soap, const char *URL, prodml23__SeparatorConditions const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions ? "prodml22:SeparatorConditions" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions ? "prodml23:SeparatorConditions" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SeparatorConditions(struct soap *soap, const char *URL, prodml22__SeparatorConditions const*p) +inline int soap_POST_send_prodml23__SeparatorConditions(struct soap *soap, const char *URL, prodml23__SeparatorConditions const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions ? "prodml22:SeparatorConditions" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SeparatorConditions", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions ? "prodml23:SeparatorConditions" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SeparatorConditions * SOAP_FMAC4 soap_get_prodml22__SeparatorConditions(struct soap*, prodml22__SeparatorConditions *, const char*, const char*); +SOAP_FMAC3 prodml23__SeparatorConditions * SOAP_FMAC4 soap_get_prodml23__SeparatorConditions(struct soap*, prodml23__SeparatorConditions *, const char*, const char*); -inline int soap_read_prodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions *p) +inline int soap_read_prodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SeparatorConditions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SeparatorConditions(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SeparatorConditions(struct soap *soap, const char *URL, prodml22__SeparatorConditions *p) +inline int soap_GET_prodml23__SeparatorConditions(struct soap *soap, const char *URL, prodml23__SeparatorConditions *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SeparatorConditions(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SeparatorConditions(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SeparatorConditions(struct soap *soap, prodml22__SeparatorConditions *p) +inline int soap_POST_recv_prodml23__SeparatorConditions(struct soap *soap, prodml23__SeparatorConditions *p) { - if (gsoap_eml2_3::soap_read_prodml22__SeparatorConditions(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SeparatorConditions(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationTest(struct soap*, const char*, int, const prodml22__SaturationTest *, const char*); -SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_in_prodml22__SaturationTest(struct soap*, const char*, prodml22__SaturationTest *, const char*); -SOAP_FMAC1 prodml22__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml22__SaturationTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationTest(struct soap*, const char*, int, const prodml23__SaturationTest *, const char*); +SOAP_FMAC3 prodml23__SaturationTest * SOAP_FMAC4 soap_in_prodml23__SaturationTest(struct soap*, const char*, prodml23__SaturationTest *, const char*); +SOAP_FMAC1 prodml23__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml23__SaturationTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SaturationTest * soap_new_prodml22__SaturationTest(struct soap *soap, int n = -1) +inline prodml23__SaturationTest * soap_new_prodml23__SaturationTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SaturationTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SaturationTest(soap, n, NULL, NULL, NULL); } -inline prodml22__SaturationTest * soap_new_req_prodml22__SaturationTest( +inline prodml23__SaturationTest * soap_new_req_prodml23__SaturationTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - prodml22__SaturationPressure *SaturationPressure, + prodml23__SaturationPressure *SaturationPressure, const std::string& uid) { - prodml22__SaturationTest *_p = gsoap_eml2_3::soap_new_prodml22__SaturationTest(soap); + prodml23__SaturationTest *_p = gsoap_eml2_3::soap_new_prodml23__SaturationTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SaturationTest::TestNumber = TestNumber; - _p->prodml22__SaturationTest::TestTemperature = TestTemperature; - _p->prodml22__SaturationTest::SaturationPressure = SaturationPressure; - _p->prodml22__SaturationTest::uid = uid; + _p->prodml23__SaturationTest::TestNumber = TestNumber; + _p->prodml23__SaturationTest::TestTemperature = TestTemperature; + _p->prodml23__SaturationTest::SaturationPressure = SaturationPressure; + _p->prodml23__SaturationTest::uid = uid; } return _p; } -inline prodml22__SaturationTest * soap_new_set_prodml22__SaturationTest( +inline prodml23__SaturationTest * soap_new_set_prodml23__SaturationTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - prodml22__SaturationPressure *SaturationPressure, + prodml23__SaturationPressure *SaturationPressure, std::string *Remark, const std::string& uid) { - prodml22__SaturationTest *_p = gsoap_eml2_3::soap_new_prodml22__SaturationTest(soap); + prodml23__SaturationTest *_p = gsoap_eml2_3::soap_new_prodml23__SaturationTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SaturationTest::TestNumber = TestNumber; - _p->prodml22__SaturationTest::TestTemperature = TestTemperature; - _p->prodml22__SaturationTest::SaturationPressure = SaturationPressure; - _p->prodml22__SaturationTest::Remark = Remark; - _p->prodml22__SaturationTest::uid = uid; + _p->prodml23__SaturationTest::TestNumber = TestNumber; + _p->prodml23__SaturationTest::TestTemperature = TestTemperature; + _p->prodml23__SaturationTest::SaturationPressure = SaturationPressure; + _p->prodml23__SaturationTest::Remark = Remark; + _p->prodml23__SaturationTest::uid = uid; } return _p; } -inline int soap_write_prodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest const*p) +inline int soap_write_prodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest ? "prodml22:SaturationTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest ? "prodml23:SaturationTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SaturationTest(struct soap *soap, const char *URL, prodml22__SaturationTest const*p) +inline int soap_PUT_prodml23__SaturationTest(struct soap *soap, const char *URL, prodml23__SaturationTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest ? "prodml22:SaturationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest ? "prodml23:SaturationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SaturationTest(struct soap *soap, const char *URL, prodml22__SaturationTest const*p) +inline int soap_PATCH_prodml23__SaturationTest(struct soap *soap, const char *URL, prodml23__SaturationTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest ? "prodml22:SaturationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest ? "prodml23:SaturationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SaturationTest(struct soap *soap, const char *URL, prodml22__SaturationTest const*p) +inline int soap_POST_send_prodml23__SaturationTest(struct soap *soap, const char *URL, prodml23__SaturationTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest ? "prodml22:SaturationTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest ? "prodml23:SaturationTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationTest * SOAP_FMAC4 soap_get_prodml22__SaturationTest(struct soap*, prodml22__SaturationTest *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationTest * SOAP_FMAC4 soap_get_prodml23__SaturationTest(struct soap*, prodml23__SaturationTest *, const char*, const char*); -inline int soap_read_prodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest *p) +inline int soap_read_prodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SaturationTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SaturationTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SaturationTest(struct soap *soap, const char *URL, prodml22__SaturationTest *p) +inline int soap_GET_prodml23__SaturationTest(struct soap *soap, const char *URL, prodml23__SaturationTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SaturationTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SaturationTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SaturationTest(struct soap *soap, prodml22__SaturationTest *p) +inline int soap_POST_recv_prodml23__SaturationTest(struct soap *soap, prodml23__SaturationTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__SaturationTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SaturationTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationTemperature(struct soap*, const char*, int, const prodml22__SaturationTemperature *, const char*); -SOAP_FMAC3 prodml22__SaturationTemperature * SOAP_FMAC4 soap_in_prodml22__SaturationTemperature(struct soap*, const char*, prodml22__SaturationTemperature *, const char*); -SOAP_FMAC1 prodml22__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml22__SaturationTemperature(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationTemperature(struct soap*, const char*, int, const prodml23__SaturationTemperature *, const char*); +SOAP_FMAC3 prodml23__SaturationTemperature * SOAP_FMAC4 soap_in_prodml23__SaturationTemperature(struct soap*, const char*, prodml23__SaturationTemperature *, const char*); +SOAP_FMAC1 prodml23__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml23__SaturationTemperature(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SaturationTemperature * soap_new_prodml22__SaturationTemperature(struct soap *soap, int n = -1) +inline prodml23__SaturationTemperature * soap_new_prodml23__SaturationTemperature(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SaturationTemperature(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SaturationTemperature(soap, n, NULL, NULL, NULL); } -inline prodml22__SaturationTemperature * soap_new_req_prodml22__SaturationTemperature( +inline prodml23__SaturationTemperature * soap_new_req_prodml23__SaturationTemperature( struct soap *soap, - prodml22__SaturationPointKind kind, - double __item__1, - eml23__ThermodynamicTemperatureUom uom__1) + eml23__ThermodynamicTemperatureMeasure *ThermodynamicTemperatureMeasure, + prodml23__SaturationPointKind kind) { - prodml22__SaturationTemperature *_p = gsoap_eml2_3::soap_new_prodml22__SaturationTemperature(soap); + prodml23__SaturationTemperature *_p = gsoap_eml2_3::soap_new_prodml23__SaturationTemperature(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SaturationTemperature::kind = kind; - _p->eml23__ThermodynamicTemperatureMeasure::__item = __item__1; - _p->eml23__ThermodynamicTemperatureMeasure::uom = uom__1; + _p->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure = ThermodynamicTemperatureMeasure; + _p->prodml23__SaturationTemperature::kind = kind; } return _p; } -inline prodml22__SaturationTemperature * soap_new_set_prodml22__SaturationTemperature( +inline prodml23__SaturationTemperature * soap_new_set_prodml23__SaturationTemperature( struct soap *soap, - prodml22__SaturationPointKind kind, - double __item__1, - eml23__ThermodynamicTemperatureUom uom__1) + eml23__ThermodynamicTemperatureMeasure *ThermodynamicTemperatureMeasure, + prodml23__SaturationPointKind kind) { - prodml22__SaturationTemperature *_p = gsoap_eml2_3::soap_new_prodml22__SaturationTemperature(soap); + prodml23__SaturationTemperature *_p = gsoap_eml2_3::soap_new_prodml23__SaturationTemperature(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SaturationTemperature::kind = kind; - _p->eml23__ThermodynamicTemperatureMeasure::__item = __item__1; - _p->eml23__ThermodynamicTemperatureMeasure::uom = uom__1; + _p->prodml23__SaturationTemperature::ThermodynamicTemperatureMeasure = ThermodynamicTemperatureMeasure; + _p->prodml23__SaturationTemperature::kind = kind; } return _p; } -inline int soap_write_prodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature const*p) +inline int soap_write_prodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature ? "prodml22:SaturationTemperature" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature ? "prodml23:SaturationTemperature" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SaturationTemperature(struct soap *soap, const char *URL, prodml22__SaturationTemperature const*p) +inline int soap_PUT_prodml23__SaturationTemperature(struct soap *soap, const char *URL, prodml23__SaturationTemperature const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature ? "prodml22:SaturationTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature ? "prodml23:SaturationTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SaturationTemperature(struct soap *soap, const char *URL, prodml22__SaturationTemperature const*p) +inline int soap_PATCH_prodml23__SaturationTemperature(struct soap *soap, const char *URL, prodml23__SaturationTemperature const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature ? "prodml22:SaturationTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature ? "prodml23:SaturationTemperature" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SaturationTemperature(struct soap *soap, const char *URL, prodml22__SaturationTemperature const*p) +inline int soap_POST_send_prodml23__SaturationTemperature(struct soap *soap, const char *URL, prodml23__SaturationTemperature const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature ? "prodml22:SaturationTemperature" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationTemperature", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature ? "prodml23:SaturationTemperature" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationTemperature * SOAP_FMAC4 soap_get_prodml22__SaturationTemperature(struct soap*, prodml22__SaturationTemperature *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationTemperature * SOAP_FMAC4 soap_get_prodml23__SaturationTemperature(struct soap*, prodml23__SaturationTemperature *, const char*, const char*); -inline int soap_read_prodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature *p) +inline int soap_read_prodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SaturationTemperature(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SaturationTemperature(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SaturationTemperature(struct soap *soap, const char *URL, prodml22__SaturationTemperature *p) +inline int soap_GET_prodml23__SaturationTemperature(struct soap *soap, const char *URL, prodml23__SaturationTemperature *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SaturationTemperature(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SaturationTemperature(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SaturationTemperature(struct soap *soap, prodml22__SaturationTemperature *p) +inline int soap_POST_recv_prodml23__SaturationTemperature(struct soap *soap, prodml23__SaturationTemperature *p) { - if (gsoap_eml2_3::soap_read_prodml22__SaturationTemperature(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SaturationTemperature(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SaturationPressure(struct soap*, const char*, int, const prodml22__SaturationPressure *, const char*); -SOAP_FMAC3 prodml22__SaturationPressure * SOAP_FMAC4 soap_in_prodml22__SaturationPressure(struct soap*, const char*, prodml22__SaturationPressure *, const char*); -SOAP_FMAC1 prodml22__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml22__SaturationPressure(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SaturationPressure(struct soap*, const char*, int, const prodml23__SaturationPressure *, const char*); +SOAP_FMAC3 prodml23__SaturationPressure * SOAP_FMAC4 soap_in_prodml23__SaturationPressure(struct soap*, const char*, prodml23__SaturationPressure *, const char*); +SOAP_FMAC1 prodml23__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml23__SaturationPressure(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SaturationPressure * soap_new_prodml22__SaturationPressure(struct soap *soap, int n = -1) +inline prodml23__SaturationPressure * soap_new_prodml23__SaturationPressure(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SaturationPressure(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SaturationPressure(soap, n, NULL, NULL, NULL); } -inline prodml22__SaturationPressure * soap_new_req_prodml22__SaturationPressure( +inline prodml23__SaturationPressure * soap_new_req_prodml23__SaturationPressure( struct soap *soap, - prodml22__SaturationPointKind kind, - double __item__1, - const std::string& uom__1) + eml23__PressureMeasureExt *PressureMeasureExt, + prodml23__SaturationPointKind kind) { - prodml22__SaturationPressure *_p = gsoap_eml2_3::soap_new_prodml22__SaturationPressure(soap); + prodml23__SaturationPressure *_p = gsoap_eml2_3::soap_new_prodml23__SaturationPressure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SaturationPressure::kind = kind; - _p->eml23__PressureMeasureExt::__item = __item__1; - _p->eml23__PressureMeasureExt::uom = uom__1; + _p->prodml23__SaturationPressure::PressureMeasureExt = PressureMeasureExt; + _p->prodml23__SaturationPressure::kind = kind; } return _p; } -inline prodml22__SaturationPressure * soap_new_set_prodml22__SaturationPressure( +inline prodml23__SaturationPressure * soap_new_set_prodml23__SaturationPressure( struct soap *soap, - prodml22__SaturationPointKind kind, - double __item__1, - const std::string& uom__1) + eml23__PressureMeasureExt *PressureMeasureExt, + prodml23__SaturationPointKind kind) { - prodml22__SaturationPressure *_p = gsoap_eml2_3::soap_new_prodml22__SaturationPressure(soap); + prodml23__SaturationPressure *_p = gsoap_eml2_3::soap_new_prodml23__SaturationPressure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SaturationPressure::kind = kind; - _p->eml23__PressureMeasureExt::__item = __item__1; - _p->eml23__PressureMeasureExt::uom = uom__1; + _p->prodml23__SaturationPressure::PressureMeasureExt = PressureMeasureExt; + _p->prodml23__SaturationPressure::kind = kind; } return _p; } -inline int soap_write_prodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure const*p) +inline int soap_write_prodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure ? "prodml22:SaturationPressure" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure ? "prodml23:SaturationPressure" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SaturationPressure(struct soap *soap, const char *URL, prodml22__SaturationPressure const*p) +inline int soap_PUT_prodml23__SaturationPressure(struct soap *soap, const char *URL, prodml23__SaturationPressure const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure ? "prodml22:SaturationPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure ? "prodml23:SaturationPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SaturationPressure(struct soap *soap, const char *URL, prodml22__SaturationPressure const*p) +inline int soap_PATCH_prodml23__SaturationPressure(struct soap *soap, const char *URL, prodml23__SaturationPressure const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure ? "prodml22:SaturationPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure ? "prodml23:SaturationPressure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SaturationPressure(struct soap *soap, const char *URL, prodml22__SaturationPressure const*p) +inline int soap_POST_send_prodml23__SaturationPressure(struct soap *soap, const char *URL, prodml23__SaturationPressure const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure ? "prodml22:SaturationPressure" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SaturationPressure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure ? "prodml23:SaturationPressure" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SaturationPressure * SOAP_FMAC4 soap_get_prodml22__SaturationPressure(struct soap*, prodml22__SaturationPressure *, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationPressure * SOAP_FMAC4 soap_get_prodml23__SaturationPressure(struct soap*, prodml23__SaturationPressure *, const char*, const char*); -inline int soap_read_prodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure *p) +inline int soap_read_prodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SaturationPressure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SaturationPressure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SaturationPressure(struct soap *soap, const char *URL, prodml22__SaturationPressure *p) +inline int soap_GET_prodml23__SaturationPressure(struct soap *soap, const char *URL, prodml23__SaturationPressure *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SaturationPressure(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SaturationPressure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SaturationPressure(struct soap *soap, prodml22__SaturationPressure *p) +inline int soap_POST_recv_prodml23__SaturationPressure(struct soap *soap, prodml23__SaturationPressure *p) { - if (gsoap_eml2_3::soap_read_prodml22__SaturationPressure(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SaturationPressure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Sara_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Sara_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Sara(struct soap*, const char*, int, const prodml22__Sara *, const char*); -SOAP_FMAC3 prodml22__Sara * SOAP_FMAC4 soap_in_prodml22__Sara(struct soap*, const char*, prodml22__Sara *, const char*); -SOAP_FMAC1 prodml22__Sara * SOAP_FMAC2 soap_instantiate_prodml22__Sara(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Sara_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Sara_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Sara(struct soap*, const char*, int, const prodml23__Sara *, const char*); +SOAP_FMAC3 prodml23__Sara * SOAP_FMAC4 soap_in_prodml23__Sara(struct soap*, const char*, prodml23__Sara *, const char*); +SOAP_FMAC1 prodml23__Sara * SOAP_FMAC2 soap_instantiate_prodml23__Sara(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Sara * soap_new_prodml22__Sara(struct soap *soap, int n = -1) +inline prodml23__Sara * soap_new_prodml23__Sara(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Sara(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Sara(soap, n, NULL, NULL, NULL); } -inline prodml22__Sara * soap_new_req_prodml22__Sara( +inline prodml23__Sara * soap_new_req_prodml23__Sara( struct soap *soap, const std::string& uid) { - prodml22__Sara *_p = gsoap_eml2_3::soap_new_prodml22__Sara(soap); + prodml23__Sara *_p = gsoap_eml2_3::soap_new_prodml23__Sara(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Sara::uid = uid; + _p->prodml23__Sara::uid = uid; } return _p; } -inline prodml22__Sara * soap_new_set_prodml22__Sara( +inline prodml23__Sara * soap_new_set_prodml23__Sara( struct soap *soap, eml23__MassPerMassMeasure *AromaticsWeightFraction, eml23__MassPerMassMeasure *AsphaltenesWeightFraction, @@ -125788,99 +125772,99 @@ inline prodml22__Sara * soap_new_set_prodml22__Sara( std::string *Remark, const std::string& uid) { - prodml22__Sara *_p = gsoap_eml2_3::soap_new_prodml22__Sara(soap); + prodml23__Sara *_p = gsoap_eml2_3::soap_new_prodml23__Sara(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Sara::AromaticsWeightFraction = AromaticsWeightFraction; - _p->prodml22__Sara::AsphaltenesWeightFraction = AsphaltenesWeightFraction; - _p->prodml22__Sara::NapthenesWeightFraction = NapthenesWeightFraction; - _p->prodml22__Sara::ParaffinsWeightFraction = ParaffinsWeightFraction; - _p->prodml22__Sara::Remark = Remark; - _p->prodml22__Sara::uid = uid; + _p->prodml23__Sara::AromaticsWeightFraction = AromaticsWeightFraction; + _p->prodml23__Sara::AsphaltenesWeightFraction = AsphaltenesWeightFraction; + _p->prodml23__Sara::NapthenesWeightFraction = NapthenesWeightFraction; + _p->prodml23__Sara::ParaffinsWeightFraction = ParaffinsWeightFraction; + _p->prodml23__Sara::Remark = Remark; + _p->prodml23__Sara::uid = uid; } return _p; } -inline int soap_write_prodml22__Sara(struct soap *soap, prodml22__Sara const*p) +inline int soap_write_prodml23__Sara(struct soap *soap, prodml23__Sara const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Sara ? "prodml22:Sara" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Sara ? "prodml23:Sara" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Sara(struct soap *soap, const char *URL, prodml22__Sara const*p) +inline int soap_PUT_prodml23__Sara(struct soap *soap, const char *URL, prodml23__Sara const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Sara ? "prodml22:Sara" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Sara ? "prodml23:Sara" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Sara(struct soap *soap, const char *URL, prodml22__Sara const*p) +inline int soap_PATCH_prodml23__Sara(struct soap *soap, const char *URL, prodml23__Sara const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Sara ? "prodml22:Sara" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Sara ? "prodml23:Sara" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Sara(struct soap *soap, const char *URL, prodml22__Sara const*p) +inline int soap_POST_send_prodml23__Sara(struct soap *soap, const char *URL, prodml23__Sara const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Sara ? "prodml22:Sara" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Sara", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Sara ? "prodml23:Sara" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Sara * SOAP_FMAC4 soap_get_prodml22__Sara(struct soap*, prodml22__Sara *, const char*, const char*); +SOAP_FMAC3 prodml23__Sara * SOAP_FMAC4 soap_get_prodml23__Sara(struct soap*, prodml23__Sara *, const char*, const char*); -inline int soap_read_prodml22__Sara(struct soap *soap, prodml22__Sara *p) +inline int soap_read_prodml23__Sara(struct soap *soap, prodml23__Sara *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Sara(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Sara(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Sara(struct soap *soap, const char *URL, prodml22__Sara *p) +inline int soap_GET_prodml23__Sara(struct soap *soap, const char *URL, prodml23__Sara *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Sara(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Sara(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Sara(struct soap *soap, prodml22__Sara *p) +inline int soap_POST_recv_prodml23__Sara(struct soap *soap, prodml23__Sara *p) { - if (gsoap_eml2_3::soap_read_prodml22__Sara(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Sara(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleRestoration(struct soap*, const char*, int, const prodml22__SampleRestoration *, const char*); -SOAP_FMAC3 prodml22__SampleRestoration * SOAP_FMAC4 soap_in_prodml22__SampleRestoration(struct soap*, const char*, prodml22__SampleRestoration *, const char*); -SOAP_FMAC1 prodml22__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml22__SampleRestoration(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleRestoration(struct soap*, const char*, int, const prodml23__SampleRestoration *, const char*); +SOAP_FMAC3 prodml23__SampleRestoration * SOAP_FMAC4 soap_in_prodml23__SampleRestoration(struct soap*, const char*, prodml23__SampleRestoration *, const char*); +SOAP_FMAC1 prodml23__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml23__SampleRestoration(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SampleRestoration * soap_new_prodml22__SampleRestoration(struct soap *soap, int n = -1) +inline prodml23__SampleRestoration * soap_new_prodml23__SampleRestoration(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SampleRestoration(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SampleRestoration(soap, n, NULL, NULL, NULL); } -inline prodml22__SampleRestoration * soap_new_req_prodml22__SampleRestoration( +inline prodml23__SampleRestoration * soap_new_req_prodml23__SampleRestoration( struct soap *soap) { - prodml22__SampleRestoration *_p = gsoap_eml2_3::soap_new_prodml22__SampleRestoration(soap); + prodml23__SampleRestoration *_p = gsoap_eml2_3::soap_new_prodml23__SampleRestoration(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__SampleRestoration * soap_new_set_prodml22__SampleRestoration( +inline prodml23__SampleRestoration * soap_new_set_prodml23__SampleRestoration( struct soap *soap, struct tm *StartTime, struct tm *EndTime, @@ -125889,335 +125873,335 @@ inline prodml22__SampleRestoration * soap_new_set_prodml22__SampleRestoration( std::string *MixingMechanism, std::string *Remark) { - prodml22__SampleRestoration *_p = gsoap_eml2_3::soap_new_prodml22__SampleRestoration(soap); + prodml23__SampleRestoration *_p = gsoap_eml2_3::soap_new_prodml23__SampleRestoration(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleRestoration::StartTime = StartTime; - _p->prodml22__SampleRestoration::EndTime = EndTime; - _p->prodml22__SampleRestoration::RestorationPressure = RestorationPressure; - _p->prodml22__SampleRestoration::RestorationTemperature = RestorationTemperature; - _p->prodml22__SampleRestoration::MixingMechanism = MixingMechanism; - _p->prodml22__SampleRestoration::Remark = Remark; + _p->prodml23__SampleRestoration::StartTime = StartTime; + _p->prodml23__SampleRestoration::EndTime = EndTime; + _p->prodml23__SampleRestoration::RestorationPressure = RestorationPressure; + _p->prodml23__SampleRestoration::RestorationTemperature = RestorationTemperature; + _p->prodml23__SampleRestoration::MixingMechanism = MixingMechanism; + _p->prodml23__SampleRestoration::Remark = Remark; } return _p; } -inline int soap_write_prodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration const*p) +inline int soap_write_prodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration ? "prodml22:SampleRestoration" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration ? "prodml23:SampleRestoration" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SampleRestoration(struct soap *soap, const char *URL, prodml22__SampleRestoration const*p) +inline int soap_PUT_prodml23__SampleRestoration(struct soap *soap, const char *URL, prodml23__SampleRestoration const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration ? "prodml22:SampleRestoration" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration ? "prodml23:SampleRestoration" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SampleRestoration(struct soap *soap, const char *URL, prodml22__SampleRestoration const*p) +inline int soap_PATCH_prodml23__SampleRestoration(struct soap *soap, const char *URL, prodml23__SampleRestoration const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration ? "prodml22:SampleRestoration" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration ? "prodml23:SampleRestoration" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SampleRestoration(struct soap *soap, const char *URL, prodml22__SampleRestoration const*p) +inline int soap_POST_send_prodml23__SampleRestoration(struct soap *soap, const char *URL, prodml23__SampleRestoration const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration ? "prodml22:SampleRestoration" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleRestoration", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration ? "prodml23:SampleRestoration" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleRestoration * SOAP_FMAC4 soap_get_prodml22__SampleRestoration(struct soap*, prodml22__SampleRestoration *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleRestoration * SOAP_FMAC4 soap_get_prodml23__SampleRestoration(struct soap*, prodml23__SampleRestoration *, const char*, const char*); -inline int soap_read_prodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration *p) +inline int soap_read_prodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SampleRestoration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SampleRestoration(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SampleRestoration(struct soap *soap, const char *URL, prodml22__SampleRestoration *p) +inline int soap_GET_prodml23__SampleRestoration(struct soap *soap, const char *URL, prodml23__SampleRestoration *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SampleRestoration(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SampleRestoration(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SampleRestoration(struct soap *soap, prodml22__SampleRestoration *p) +inline int soap_POST_recv_prodml23__SampleRestoration(struct soap *soap, prodml23__SampleRestoration *p) { - if (gsoap_eml2_3::soap_read_prodml22__SampleRestoration(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SampleRestoration(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleIntegrityAndPreparation(struct soap*, const char*, int, const prodml22__SampleIntegrityAndPreparation *, const char*); -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_in_prodml22__SampleIntegrityAndPreparation(struct soap*, const char*, prodml22__SampleIntegrityAndPreparation *, const char*); -SOAP_FMAC1 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate_prodml22__SampleIntegrityAndPreparation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleIntegrityAndPreparation(struct soap*, const char*, int, const prodml23__SampleIntegrityAndPreparation *, const char*); +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_in_prodml23__SampleIntegrityAndPreparation(struct soap*, const char*, prodml23__SampleIntegrityAndPreparation *, const char*); +SOAP_FMAC1 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate_prodml23__SampleIntegrityAndPreparation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SampleIntegrityAndPreparation * soap_new_prodml22__SampleIntegrityAndPreparation(struct soap *soap, int n = -1) +inline prodml23__SampleIntegrityAndPreparation * soap_new_prodml23__SampleIntegrityAndPreparation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SampleIntegrityAndPreparation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SampleIntegrityAndPreparation(soap, n, NULL, NULL, NULL); } -inline prodml22__SampleIntegrityAndPreparation * soap_new_req_prodml22__SampleIntegrityAndPreparation( +inline prodml23__SampleIntegrityAndPreparation * soap_new_req_prodml23__SampleIntegrityAndPreparation( struct soap *soap, const std::string& OpeningDate, const std::string& uid) { - prodml22__SampleIntegrityAndPreparation *_p = gsoap_eml2_3::soap_new_prodml22__SampleIntegrityAndPreparation(soap); + prodml23__SampleIntegrityAndPreparation *_p = gsoap_eml2_3::soap_new_prodml23__SampleIntegrityAndPreparation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleIntegrityAndPreparation::OpeningDate = OpeningDate; - _p->prodml22__SampleIntegrityAndPreparation::uid = uid; + _p->prodml23__SampleIntegrityAndPreparation::OpeningDate = OpeningDate; + _p->prodml23__SampleIntegrityAndPreparation::uid = uid; } return _p; } -inline prodml22__SampleIntegrityAndPreparation * soap_new_set_prodml22__SampleIntegrityAndPreparation( +inline prodml23__SampleIntegrityAndPreparation * soap_new_set_prodml23__SampleIntegrityAndPreparation( struct soap *soap, const std::string& OpeningDate, eml23__VolumeMeasure *InitialVolume, eml23__AbstractPressureValue *OpeningPressure, eml23__ThermodynamicTemperatureMeasure *OpeningTemperature, - prodml22__SaturationPressure *SaturationPressure, - prodml22__SaturationTemperature *SaturationTemperature, + prodml23__SaturationPressure *SaturationPressure, + prodml23__SaturationTemperature *SaturationTemperature, eml23__VolumePerVolumeMeasure *BasicSedimentAndWater, eml23__VolumeMeasure *FreeWaterVolume, eml23__MassPerMassMeasure *WaterContentInHydrocarbon, std::string *OpeningRemark, - const std::vector & SampleRestoration, + const std::vector & SampleRestoration, const std::string& uid) { - prodml22__SampleIntegrityAndPreparation *_p = gsoap_eml2_3::soap_new_prodml22__SampleIntegrityAndPreparation(soap); + prodml23__SampleIntegrityAndPreparation *_p = gsoap_eml2_3::soap_new_prodml23__SampleIntegrityAndPreparation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleIntegrityAndPreparation::OpeningDate = OpeningDate; - _p->prodml22__SampleIntegrityAndPreparation::InitialVolume = InitialVolume; - _p->prodml22__SampleIntegrityAndPreparation::OpeningPressure = OpeningPressure; - _p->prodml22__SampleIntegrityAndPreparation::OpeningTemperature = OpeningTemperature; - _p->prodml22__SampleIntegrityAndPreparation::SaturationPressure = SaturationPressure; - _p->prodml22__SampleIntegrityAndPreparation::SaturationTemperature = SaturationTemperature; - _p->prodml22__SampleIntegrityAndPreparation::BasicSedimentAndWater = BasicSedimentAndWater; - _p->prodml22__SampleIntegrityAndPreparation::FreeWaterVolume = FreeWaterVolume; - _p->prodml22__SampleIntegrityAndPreparation::WaterContentInHydrocarbon = WaterContentInHydrocarbon; - _p->prodml22__SampleIntegrityAndPreparation::OpeningRemark = OpeningRemark; - _p->prodml22__SampleIntegrityAndPreparation::SampleRestoration = SampleRestoration; - _p->prodml22__SampleIntegrityAndPreparation::uid = uid; + _p->prodml23__SampleIntegrityAndPreparation::OpeningDate = OpeningDate; + _p->prodml23__SampleIntegrityAndPreparation::InitialVolume = InitialVolume; + _p->prodml23__SampleIntegrityAndPreparation::OpeningPressure = OpeningPressure; + _p->prodml23__SampleIntegrityAndPreparation::OpeningTemperature = OpeningTemperature; + _p->prodml23__SampleIntegrityAndPreparation::SaturationPressure = SaturationPressure; + _p->prodml23__SampleIntegrityAndPreparation::SaturationTemperature = SaturationTemperature; + _p->prodml23__SampleIntegrityAndPreparation::BasicSedimentAndWater = BasicSedimentAndWater; + _p->prodml23__SampleIntegrityAndPreparation::FreeWaterVolume = FreeWaterVolume; + _p->prodml23__SampleIntegrityAndPreparation::WaterContentInHydrocarbon = WaterContentInHydrocarbon; + _p->prodml23__SampleIntegrityAndPreparation::OpeningRemark = OpeningRemark; + _p->prodml23__SampleIntegrityAndPreparation::SampleRestoration = SampleRestoration; + _p->prodml23__SampleIntegrityAndPreparation::uid = uid; } return _p; } -inline int soap_write_prodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation const*p) +inline int soap_write_prodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation ? "prodml22:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation ? "prodml23:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml22__SampleIntegrityAndPreparation const*p) +inline int soap_PUT_prodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml23__SampleIntegrityAndPreparation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation ? "prodml22:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation ? "prodml23:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml22__SampleIntegrityAndPreparation const*p) +inline int soap_PATCH_prodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml23__SampleIntegrityAndPreparation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation ? "prodml22:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation ? "prodml23:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml22__SampleIntegrityAndPreparation const*p) +inline int soap_POST_send_prodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml23__SampleIntegrityAndPreparation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation ? "prodml22:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleIntegrityAndPreparation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation ? "prodml23:SampleIntegrityAndPreparation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_get_prodml22__SampleIntegrityAndPreparation(struct soap*, prodml22__SampleIntegrityAndPreparation *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC4 soap_get_prodml23__SampleIntegrityAndPreparation(struct soap*, prodml23__SampleIntegrityAndPreparation *, const char*, const char*); -inline int soap_read_prodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation *p) +inline int soap_read_prodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SampleIntegrityAndPreparation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SampleIntegrityAndPreparation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml22__SampleIntegrityAndPreparation *p) +inline int soap_GET_prodml23__SampleIntegrityAndPreparation(struct soap *soap, const char *URL, prodml23__SampleIntegrityAndPreparation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SampleIntegrityAndPreparation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SampleIntegrityAndPreparation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SampleIntegrityAndPreparation(struct soap *soap, prodml22__SampleIntegrityAndPreparation *p) +inline int soap_POST_recv_prodml23__SampleIntegrityAndPreparation(struct soap *soap, prodml23__SampleIntegrityAndPreparation *p) { - if (gsoap_eml2_3::soap_read_prodml22__SampleIntegrityAndPreparation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SampleIntegrityAndPreparation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SampleContaminant(struct soap*, const char*, int, const prodml22__SampleContaminant *, const char*); -SOAP_FMAC3 prodml22__SampleContaminant * SOAP_FMAC4 soap_in_prodml22__SampleContaminant(struct soap*, const char*, prodml22__SampleContaminant *, const char*); -SOAP_FMAC1 prodml22__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml22__SampleContaminant(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SampleContaminant(struct soap*, const char*, int, const prodml23__SampleContaminant *, const char*); +SOAP_FMAC3 prodml23__SampleContaminant * SOAP_FMAC4 soap_in_prodml23__SampleContaminant(struct soap*, const char*, prodml23__SampleContaminant *, const char*); +SOAP_FMAC1 prodml23__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml23__SampleContaminant(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SampleContaminant * soap_new_prodml22__SampleContaminant(struct soap *soap, int n = -1) +inline prodml23__SampleContaminant * soap_new_prodml23__SampleContaminant(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SampleContaminant(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SampleContaminant(soap, n, NULL, NULL, NULL); } -inline prodml22__SampleContaminant * soap_new_req_prodml22__SampleContaminant( +inline prodml23__SampleContaminant * soap_new_req_prodml23__SampleContaminant( struct soap *soap, - prodml22__FluidContaminant ContaminantKind, + prodml23__FluidContaminant ContaminantKind, const std::string& uid) { - prodml22__SampleContaminant *_p = gsoap_eml2_3::soap_new_prodml22__SampleContaminant(soap); + prodml23__SampleContaminant *_p = gsoap_eml2_3::soap_new_prodml23__SampleContaminant(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleContaminant::ContaminantKind = ContaminantKind; - _p->prodml22__SampleContaminant::uid = uid; + _p->prodml23__SampleContaminant::ContaminantKind = ContaminantKind; + _p->prodml23__SampleContaminant::uid = uid; } return _p; } -inline prodml22__SampleContaminant * soap_new_set_prodml22__SampleContaminant( +inline prodml23__SampleContaminant * soap_new_set_prodml23__SampleContaminant( struct soap *soap, - prodml22__FluidContaminant ContaminantKind, + prodml23__FluidContaminant ContaminantKind, eml23__MassPerMassMeasure *WeightFractionStockTank, eml23__VolumePerVolumeMeasure *VolumeFractionStockTank, eml23__MassPerMassMeasure *WeightFractionLiveSample, eml23__VolumePerVolumeMeasure *VolumeFractionLiveSample, eml23__MolecularWeightMeasure *MolecularWeight, eml23__MassPerVolumeMeasure *Density, - prodml22__LiquidComposition *ContaminantComposition, + prodml23__LiquidComposition *ContaminantComposition, std::string *Description, std::string *Remark, eml23__DataObjectReference *SampleOfContaminant, const std::string& uid) { - prodml22__SampleContaminant *_p = gsoap_eml2_3::soap_new_prodml22__SampleContaminant(soap); + prodml23__SampleContaminant *_p = gsoap_eml2_3::soap_new_prodml23__SampleContaminant(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SampleContaminant::ContaminantKind = ContaminantKind; - _p->prodml22__SampleContaminant::WeightFractionStockTank = WeightFractionStockTank; - _p->prodml22__SampleContaminant::VolumeFractionStockTank = VolumeFractionStockTank; - _p->prodml22__SampleContaminant::WeightFractionLiveSample = WeightFractionLiveSample; - _p->prodml22__SampleContaminant::VolumeFractionLiveSample = VolumeFractionLiveSample; - _p->prodml22__SampleContaminant::MolecularWeight = MolecularWeight; - _p->prodml22__SampleContaminant::Density = Density; - _p->prodml22__SampleContaminant::ContaminantComposition = ContaminantComposition; - _p->prodml22__SampleContaminant::Description = Description; - _p->prodml22__SampleContaminant::Remark = Remark; - _p->prodml22__SampleContaminant::SampleOfContaminant = SampleOfContaminant; - _p->prodml22__SampleContaminant::uid = uid; + _p->prodml23__SampleContaminant::ContaminantKind = ContaminantKind; + _p->prodml23__SampleContaminant::WeightFractionStockTank = WeightFractionStockTank; + _p->prodml23__SampleContaminant::VolumeFractionStockTank = VolumeFractionStockTank; + _p->prodml23__SampleContaminant::WeightFractionLiveSample = WeightFractionLiveSample; + _p->prodml23__SampleContaminant::VolumeFractionLiveSample = VolumeFractionLiveSample; + _p->prodml23__SampleContaminant::MolecularWeight = MolecularWeight; + _p->prodml23__SampleContaminant::Density = Density; + _p->prodml23__SampleContaminant::ContaminantComposition = ContaminantComposition; + _p->prodml23__SampleContaminant::Description = Description; + _p->prodml23__SampleContaminant::Remark = Remark; + _p->prodml23__SampleContaminant::SampleOfContaminant = SampleOfContaminant; + _p->prodml23__SampleContaminant::uid = uid; } return _p; } -inline int soap_write_prodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant const*p) +inline int soap_write_prodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant ? "prodml22:SampleContaminant" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant ? "prodml23:SampleContaminant" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SampleContaminant(struct soap *soap, const char *URL, prodml22__SampleContaminant const*p) +inline int soap_PUT_prodml23__SampleContaminant(struct soap *soap, const char *URL, prodml23__SampleContaminant const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant ? "prodml22:SampleContaminant" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant ? "prodml23:SampleContaminant" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SampleContaminant(struct soap *soap, const char *URL, prodml22__SampleContaminant const*p) +inline int soap_PATCH_prodml23__SampleContaminant(struct soap *soap, const char *URL, prodml23__SampleContaminant const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant ? "prodml22:SampleContaminant" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant ? "prodml23:SampleContaminant" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SampleContaminant(struct soap *soap, const char *URL, prodml22__SampleContaminant const*p) +inline int soap_POST_send_prodml23__SampleContaminant(struct soap *soap, const char *URL, prodml23__SampleContaminant const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant ? "prodml22:SampleContaminant" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SampleContaminant", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant ? "prodml23:SampleContaminant" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SampleContaminant * SOAP_FMAC4 soap_get_prodml22__SampleContaminant(struct soap*, prodml22__SampleContaminant *, const char*, const char*); +SOAP_FMAC3 prodml23__SampleContaminant * SOAP_FMAC4 soap_get_prodml23__SampleContaminant(struct soap*, prodml23__SampleContaminant *, const char*, const char*); -inline int soap_read_prodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant *p) +inline int soap_read_prodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SampleContaminant(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SampleContaminant(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SampleContaminant(struct soap *soap, const char *URL, prodml22__SampleContaminant *p) +inline int soap_GET_prodml23__SampleContaminant(struct soap *soap, const char *URL, prodml23__SampleContaminant *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SampleContaminant(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SampleContaminant(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SampleContaminant(struct soap *soap, prodml22__SampleContaminant *p) +inline int soap_POST_recv_prodml23__SampleContaminant(struct soap *soap, prodml23__SampleContaminant *p) { - if (gsoap_eml2_3::soap_read_prodml22__SampleContaminant(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SampleContaminant(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReportLocation(struct soap*, const char*, int, const prodml22__ReportLocation *, const char*); -SOAP_FMAC3 prodml22__ReportLocation * SOAP_FMAC4 soap_in_prodml22__ReportLocation(struct soap*, const char*, prodml22__ReportLocation *, const char*); -SOAP_FMAC1 prodml22__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml22__ReportLocation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReportLocation(struct soap*, const char*, int, const prodml23__ReportLocation *, const char*); +SOAP_FMAC3 prodml23__ReportLocation * SOAP_FMAC4 soap_in_prodml23__ReportLocation(struct soap*, const char*, prodml23__ReportLocation *, const char*); +SOAP_FMAC1 prodml23__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml23__ReportLocation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReportLocation * soap_new_prodml22__ReportLocation(struct soap *soap, int n = -1) +inline prodml23__ReportLocation * soap_new_prodml23__ReportLocation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReportLocation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReportLocation(soap, n, NULL, NULL, NULL); } -inline prodml22__ReportLocation * soap_new_req_prodml22__ReportLocation( +inline prodml23__ReportLocation * soap_new_req_prodml23__ReportLocation( struct soap *soap, const std::string& uid) { - prodml22__ReportLocation *_p = gsoap_eml2_3::soap_new_prodml22__ReportLocation(soap); + prodml23__ReportLocation *_p = gsoap_eml2_3::soap_new_prodml23__ReportLocation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportLocation::uid = uid; + _p->prodml23__ReportLocation::uid = uid; } return _p; } -inline prodml22__ReportLocation * soap_new_set_prodml22__ReportLocation( +inline prodml23__ReportLocation * soap_new_set_prodml23__ReportLocation( struct soap *soap, std::string *LocationDate, std::string *LocationType, @@ -126225,300 +126209,292 @@ inline prodml22__ReportLocation * soap_new_set_prodml22__ReportLocation( std::string *Remark, const std::string& uid) { - prodml22__ReportLocation *_p = gsoap_eml2_3::soap_new_prodml22__ReportLocation(soap); + prodml23__ReportLocation *_p = gsoap_eml2_3::soap_new_prodml23__ReportLocation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReportLocation::LocationDate = LocationDate; - _p->prodml22__ReportLocation::LocationType = LocationType; - _p->prodml22__ReportLocation::Location = Location; - _p->prodml22__ReportLocation::Remark = Remark; - _p->prodml22__ReportLocation::uid = uid; + _p->prodml23__ReportLocation::LocationDate = LocationDate; + _p->prodml23__ReportLocation::LocationType = LocationType; + _p->prodml23__ReportLocation::Location = Location; + _p->prodml23__ReportLocation::Remark = Remark; + _p->prodml23__ReportLocation::uid = uid; } return _p; } -inline int soap_write_prodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation const*p) +inline int soap_write_prodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation ? "prodml22:ReportLocation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation ? "prodml23:ReportLocation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReportLocation(struct soap *soap, const char *URL, prodml22__ReportLocation const*p) +inline int soap_PUT_prodml23__ReportLocation(struct soap *soap, const char *URL, prodml23__ReportLocation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation ? "prodml22:ReportLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation ? "prodml23:ReportLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReportLocation(struct soap *soap, const char *URL, prodml22__ReportLocation const*p) +inline int soap_PATCH_prodml23__ReportLocation(struct soap *soap, const char *URL, prodml23__ReportLocation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation ? "prodml22:ReportLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation ? "prodml23:ReportLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReportLocation(struct soap *soap, const char *URL, prodml22__ReportLocation const*p) +inline int soap_POST_send_prodml23__ReportLocation(struct soap *soap, const char *URL, prodml23__ReportLocation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation ? "prodml22:ReportLocation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReportLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation ? "prodml23:ReportLocation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReportLocation * SOAP_FMAC4 soap_get_prodml22__ReportLocation(struct soap*, prodml22__ReportLocation *, const char*, const char*); +SOAP_FMAC3 prodml23__ReportLocation * SOAP_FMAC4 soap_get_prodml23__ReportLocation(struct soap*, prodml23__ReportLocation *, const char*, const char*); -inline int soap_read_prodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation *p) +inline int soap_read_prodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReportLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReportLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReportLocation(struct soap *soap, const char *URL, prodml22__ReportLocation *p) +inline int soap_GET_prodml23__ReportLocation(struct soap *soap, const char *URL, prodml23__ReportLocation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReportLocation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReportLocation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReportLocation(struct soap *soap, prodml22__ReportLocation *p) +inline int soap_POST_recv_prodml23__ReportLocation(struct soap *soap, prodml23__ReportLocation *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReportLocation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReportLocation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RelativeVolumeRatio(struct soap*, const char*, int, const prodml22__RelativeVolumeRatio *, const char*); -SOAP_FMAC3 prodml22__RelativeVolumeRatio * SOAP_FMAC4 soap_in_prodml22__RelativeVolumeRatio(struct soap*, const char*, prodml22__RelativeVolumeRatio *, const char*); -SOAP_FMAC1 prodml22__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml22__RelativeVolumeRatio(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RelativeVolumeRatio(struct soap*, const char*, int, const prodml23__RelativeVolumeRatio *, const char*); +SOAP_FMAC3 prodml23__RelativeVolumeRatio * SOAP_FMAC4 soap_in_prodml23__RelativeVolumeRatio(struct soap*, const char*, prodml23__RelativeVolumeRatio *, const char*); +SOAP_FMAC1 prodml23__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml23__RelativeVolumeRatio(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RelativeVolumeRatio * soap_new_prodml22__RelativeVolumeRatio(struct soap *soap, int n = -1) +inline prodml23__RelativeVolumeRatio * soap_new_prodml23__RelativeVolumeRatio(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RelativeVolumeRatio(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RelativeVolumeRatio(soap, n, NULL, NULL, NULL); } -inline prodml22__RelativeVolumeRatio * soap_new_req_prodml22__RelativeVolumeRatio( +inline prodml23__RelativeVolumeRatio * soap_new_req_prodml23__RelativeVolumeRatio( struct soap *soap, - const std::string& fluidVolumeReference, - double __item__1, - const std::string& uom__1) + eml23__VolumePerVolumeMeasure *VolumePerVolumeMeasure, + const std::string& fluidVolumeReference) { - prodml22__RelativeVolumeRatio *_p = gsoap_eml2_3::soap_new_prodml22__RelativeVolumeRatio(soap); + prodml23__RelativeVolumeRatio *_p = gsoap_eml2_3::soap_new_prodml23__RelativeVolumeRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RelativeVolumeRatio::fluidVolumeReference = fluidVolumeReference; - _p->eml23__VolumePerVolumeMeasure::__item = __item__1; - _p->eml23__VolumePerVolumeMeasure::uom = uom__1; + _p->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure = VolumePerVolumeMeasure; + _p->prodml23__RelativeVolumeRatio::fluidVolumeReference = fluidVolumeReference; } return _p; } -inline prodml22__RelativeVolumeRatio * soap_new_set_prodml22__RelativeVolumeRatio( +inline prodml23__RelativeVolumeRatio * soap_new_set_prodml23__RelativeVolumeRatio( struct soap *soap, - const std::string& fluidVolumeReference, - double __item__1, - const std::string& uom__1) + eml23__VolumePerVolumeMeasure *VolumePerVolumeMeasure, + const std::string& fluidVolumeReference) { - prodml22__RelativeVolumeRatio *_p = gsoap_eml2_3::soap_new_prodml22__RelativeVolumeRatio(soap); + prodml23__RelativeVolumeRatio *_p = gsoap_eml2_3::soap_new_prodml23__RelativeVolumeRatio(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RelativeVolumeRatio::fluidVolumeReference = fluidVolumeReference; - _p->eml23__VolumePerVolumeMeasure::__item = __item__1; - _p->eml23__VolumePerVolumeMeasure::uom = uom__1; + _p->prodml23__RelativeVolumeRatio::VolumePerVolumeMeasure = VolumePerVolumeMeasure; + _p->prodml23__RelativeVolumeRatio::fluidVolumeReference = fluidVolumeReference; } return _p; } -inline int soap_write_prodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio const*p) +inline int soap_write_prodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio ? "prodml22:RelativeVolumeRatio" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio ? "prodml23:RelativeVolumeRatio" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml22__RelativeVolumeRatio const*p) +inline int soap_PUT_prodml23__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml23__RelativeVolumeRatio const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio ? "prodml22:RelativeVolumeRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio ? "prodml23:RelativeVolumeRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml22__RelativeVolumeRatio const*p) +inline int soap_PATCH_prodml23__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml23__RelativeVolumeRatio const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio ? "prodml22:RelativeVolumeRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio ? "prodml23:RelativeVolumeRatio" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml22__RelativeVolumeRatio const*p) +inline int soap_POST_send_prodml23__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml23__RelativeVolumeRatio const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio ? "prodml22:RelativeVolumeRatio" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RelativeVolumeRatio", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio ? "prodml23:RelativeVolumeRatio" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RelativeVolumeRatio * SOAP_FMAC4 soap_get_prodml22__RelativeVolumeRatio(struct soap*, prodml22__RelativeVolumeRatio *, const char*, const char*); +SOAP_FMAC3 prodml23__RelativeVolumeRatio * SOAP_FMAC4 soap_get_prodml23__RelativeVolumeRatio(struct soap*, prodml23__RelativeVolumeRatio *, const char*, const char*); -inline int soap_read_prodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio *p) +inline int soap_read_prodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RelativeVolumeRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RelativeVolumeRatio(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml22__RelativeVolumeRatio *p) +inline int soap_GET_prodml23__RelativeVolumeRatio(struct soap *soap, const char *URL, prodml23__RelativeVolumeRatio *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RelativeVolumeRatio(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RelativeVolumeRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RelativeVolumeRatio(struct soap *soap, prodml22__RelativeVolumeRatio *p) +inline int soap_POST_recv_prodml23__RelativeVolumeRatio(struct soap *soap, prodml23__RelativeVolumeRatio *p) { - if (gsoap_eml2_3::soap_read_prodml22__RelativeVolumeRatio(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RelativeVolumeRatio(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__RefInjectedGasAdded(struct soap*, const char*, int, const prodml22__RefInjectedGasAdded *, const char*); -SOAP_FMAC3 prodml22__RefInjectedGasAdded * SOAP_FMAC4 soap_in_prodml22__RefInjectedGasAdded(struct soap*, const char*, prodml22__RefInjectedGasAdded *, const char*); -SOAP_FMAC1 prodml22__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml22__RefInjectedGasAdded(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__RefInjectedGasAdded(struct soap*, const char*, int, const prodml23__RefInjectedGasAdded *, const char*); +SOAP_FMAC3 prodml23__RefInjectedGasAdded * SOAP_FMAC4 soap_in_prodml23__RefInjectedGasAdded(struct soap*, const char*, prodml23__RefInjectedGasAdded *, const char*); +SOAP_FMAC1 prodml23__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml23__RefInjectedGasAdded(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__RefInjectedGasAdded * soap_new_prodml22__RefInjectedGasAdded(struct soap *soap, int n = -1) +inline prodml23__RefInjectedGasAdded * soap_new_prodml23__RefInjectedGasAdded(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__RefInjectedGasAdded(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__RefInjectedGasAdded(soap, n, NULL, NULL, NULL); } -inline prodml22__RefInjectedGasAdded * soap_new_req_prodml22__RefInjectedGasAdded( +inline prodml23__RefInjectedGasAdded * soap_new_req_prodml23__RefInjectedGasAdded( struct soap *soap, - const std::string& injectionGasReference, - double __item__1, - eml23__AmountOfSubstancePerAmountOfSubstanceUom uom__1) + eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *AmountOfSubstancePerAmountOfSubstanceMeasure, + const std::string& injectionGasReference) { - prodml22__RefInjectedGasAdded *_p = gsoap_eml2_3::soap_new_prodml22__RefInjectedGasAdded(soap); + prodml23__RefInjectedGasAdded *_p = gsoap_eml2_3::soap_new_prodml23__RefInjectedGasAdded(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RefInjectedGasAdded::injectionGasReference = injectionGasReference; - _p->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::__item = __item__1; - _p->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::uom = uom__1; + _p->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure = AmountOfSubstancePerAmountOfSubstanceMeasure; + _p->prodml23__RefInjectedGasAdded::injectionGasReference = injectionGasReference; } return _p; } -inline prodml22__RefInjectedGasAdded * soap_new_set_prodml22__RefInjectedGasAdded( +inline prodml23__RefInjectedGasAdded * soap_new_set_prodml23__RefInjectedGasAdded( struct soap *soap, - const std::string& injectionGasReference, - double __item__1, - eml23__AmountOfSubstancePerAmountOfSubstanceUom uom__1) + eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *AmountOfSubstancePerAmountOfSubstanceMeasure, + const std::string& injectionGasReference) { - prodml22__RefInjectedGasAdded *_p = gsoap_eml2_3::soap_new_prodml22__RefInjectedGasAdded(soap); + prodml23__RefInjectedGasAdded *_p = gsoap_eml2_3::soap_new_prodml23__RefInjectedGasAdded(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__RefInjectedGasAdded::injectionGasReference = injectionGasReference; - _p->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::__item = __item__1; - _p->eml23__AmountOfSubstancePerAmountOfSubstanceMeasure::uom = uom__1; + _p->prodml23__RefInjectedGasAdded::AmountOfSubstancePerAmountOfSubstanceMeasure = AmountOfSubstancePerAmountOfSubstanceMeasure; + _p->prodml23__RefInjectedGasAdded::injectionGasReference = injectionGasReference; } return _p; } -inline int soap_write_prodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded const*p) +inline int soap_write_prodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded ? "prodml22:RefInjectedGasAdded" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded ? "prodml23:RefInjectedGasAdded" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml22__RefInjectedGasAdded const*p) +inline int soap_PUT_prodml23__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml23__RefInjectedGasAdded const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded ? "prodml22:RefInjectedGasAdded" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded ? "prodml23:RefInjectedGasAdded" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml22__RefInjectedGasAdded const*p) +inline int soap_PATCH_prodml23__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml23__RefInjectedGasAdded const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded ? "prodml22:RefInjectedGasAdded" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded ? "prodml23:RefInjectedGasAdded" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml22__RefInjectedGasAdded const*p) +inline int soap_POST_send_prodml23__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml23__RefInjectedGasAdded const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded ? "prodml22:RefInjectedGasAdded" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:RefInjectedGasAdded", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded ? "prodml23:RefInjectedGasAdded" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__RefInjectedGasAdded * SOAP_FMAC4 soap_get_prodml22__RefInjectedGasAdded(struct soap*, prodml22__RefInjectedGasAdded *, const char*, const char*); +SOAP_FMAC3 prodml23__RefInjectedGasAdded * SOAP_FMAC4 soap_get_prodml23__RefInjectedGasAdded(struct soap*, prodml23__RefInjectedGasAdded *, const char*, const char*); -inline int soap_read_prodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded *p) +inline int soap_read_prodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__RefInjectedGasAdded(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__RefInjectedGasAdded(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml22__RefInjectedGasAdded *p) +inline int soap_GET_prodml23__RefInjectedGasAdded(struct soap *soap, const char *URL, prodml23__RefInjectedGasAdded *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__RefInjectedGasAdded(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__RefInjectedGasAdded(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__RefInjectedGasAdded(struct soap *soap, prodml22__RefInjectedGasAdded *p) +inline int soap_POST_recv_prodml23__RefInjectedGasAdded(struct soap *soap, prodml23__RefInjectedGasAdded *p) { - if (gsoap_eml2_3::soap_read_prodml22__RefInjectedGasAdded(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__RefInjectedGasAdded(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProducedOilProperties(struct soap*, const char*, int, const prodml22__ProducedOilProperties *, const char*); -SOAP_FMAC3 prodml22__ProducedOilProperties * SOAP_FMAC4 soap_in_prodml22__ProducedOilProperties(struct soap*, const char*, prodml22__ProducedOilProperties *, const char*); -SOAP_FMAC1 prodml22__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml22__ProducedOilProperties(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProducedOilProperties(struct soap*, const char*, int, const prodml23__ProducedOilProperties *, const char*); +SOAP_FMAC3 prodml23__ProducedOilProperties * SOAP_FMAC4 soap_in_prodml23__ProducedOilProperties(struct soap*, const char*, prodml23__ProducedOilProperties *, const char*); +SOAP_FMAC1 prodml23__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml23__ProducedOilProperties(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProducedOilProperties * soap_new_prodml22__ProducedOilProperties(struct soap *soap, int n = -1) +inline prodml23__ProducedOilProperties * soap_new_prodml23__ProducedOilProperties(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProducedOilProperties(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProducedOilProperties(soap, n, NULL, NULL, NULL); } -inline prodml22__ProducedOilProperties * soap_new_req_prodml22__ProducedOilProperties( +inline prodml23__ProducedOilProperties * soap_new_req_prodml23__ProducedOilProperties( struct soap *soap) { - prodml22__ProducedOilProperties *_p = gsoap_eml2_3::soap_new_prodml22__ProducedOilProperties(soap); + prodml23__ProducedOilProperties *_p = gsoap_eml2_3::soap_new_prodml23__ProducedOilProperties(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__ProducedOilProperties * soap_new_set_prodml22__ProducedOilProperties( +inline prodml23__ProducedOilProperties * soap_new_set_prodml23__ProducedOilProperties( struct soap *soap, eml23__MassPerVolumeMeasure *STODensity, eml23__APIGravityMeasure *STOApiGravity, @@ -126526,391 +126502,391 @@ inline prodml22__ProducedOilProperties * soap_new_set_prodml22__ProducedOilPrope eml23__VolumePerVolumeMeasure *STOWaterContent, eml23__MassPerMassMeasure *AsphalteneContent) { - prodml22__ProducedOilProperties *_p = gsoap_eml2_3::soap_new_prodml22__ProducedOilProperties(soap); + prodml23__ProducedOilProperties *_p = gsoap_eml2_3::soap_new_prodml23__ProducedOilProperties(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProducedOilProperties::STODensity = STODensity; - _p->prodml22__ProducedOilProperties::STOApiGravity = STOApiGravity; - _p->prodml22__ProducedOilProperties::STOMW = STOMW; - _p->prodml22__ProducedOilProperties::STOWaterContent = STOWaterContent; - _p->prodml22__ProducedOilProperties::AsphalteneContent = AsphalteneContent; + _p->prodml23__ProducedOilProperties::STODensity = STODensity; + _p->prodml23__ProducedOilProperties::STOApiGravity = STOApiGravity; + _p->prodml23__ProducedOilProperties::STOMW = STOMW; + _p->prodml23__ProducedOilProperties::STOWaterContent = STOWaterContent; + _p->prodml23__ProducedOilProperties::AsphalteneContent = AsphalteneContent; } return _p; } -inline int soap_write_prodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties const*p) +inline int soap_write_prodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties ? "prodml22:ProducedOilProperties" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties ? "prodml23:ProducedOilProperties" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProducedOilProperties(struct soap *soap, const char *URL, prodml22__ProducedOilProperties const*p) +inline int soap_PUT_prodml23__ProducedOilProperties(struct soap *soap, const char *URL, prodml23__ProducedOilProperties const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties ? "prodml22:ProducedOilProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties ? "prodml23:ProducedOilProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProducedOilProperties(struct soap *soap, const char *URL, prodml22__ProducedOilProperties const*p) +inline int soap_PATCH_prodml23__ProducedOilProperties(struct soap *soap, const char *URL, prodml23__ProducedOilProperties const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties ? "prodml22:ProducedOilProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties ? "prodml23:ProducedOilProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProducedOilProperties(struct soap *soap, const char *URL, prodml22__ProducedOilProperties const*p) +inline int soap_POST_send_prodml23__ProducedOilProperties(struct soap *soap, const char *URL, prodml23__ProducedOilProperties const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties ? "prodml22:ProducedOilProperties" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedOilProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties ? "prodml23:ProducedOilProperties" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProducedOilProperties * SOAP_FMAC4 soap_get_prodml22__ProducedOilProperties(struct soap*, prodml22__ProducedOilProperties *, const char*, const char*); +SOAP_FMAC3 prodml23__ProducedOilProperties * SOAP_FMAC4 soap_get_prodml23__ProducedOilProperties(struct soap*, prodml23__ProducedOilProperties *, const char*, const char*); -inline int soap_read_prodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties *p) +inline int soap_read_prodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProducedOilProperties(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProducedOilProperties(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProducedOilProperties(struct soap *soap, const char *URL, prodml22__ProducedOilProperties *p) +inline int soap_GET_prodml23__ProducedOilProperties(struct soap *soap, const char *URL, prodml23__ProducedOilProperties *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProducedOilProperties(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProducedOilProperties(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProducedOilProperties(struct soap *soap, prodml22__ProducedOilProperties *p) +inline int soap_POST_recv_prodml23__ProducedOilProperties(struct soap *soap, prodml23__ProducedOilProperties *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProducedOilProperties(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProducedOilProperties(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProducedGasProperties(struct soap*, const char*, int, const prodml22__ProducedGasProperties *, const char*); -SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml22__ProducedGasProperties(struct soap*, const char*, prodml22__ProducedGasProperties *, const char*); -SOAP_FMAC1 prodml22__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml22__ProducedGasProperties(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProducedGasProperties(struct soap*, const char*, int, const prodml23__ProducedGasProperties *, const char*); +SOAP_FMAC3 prodml23__ProducedGasProperties * SOAP_FMAC4 soap_in_prodml23__ProducedGasProperties(struct soap*, const char*, prodml23__ProducedGasProperties *, const char*); +SOAP_FMAC1 prodml23__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml23__ProducedGasProperties(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProducedGasProperties * soap_new_prodml22__ProducedGasProperties(struct soap *soap, int n = -1) +inline prodml23__ProducedGasProperties * soap_new_prodml23__ProducedGasProperties(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProducedGasProperties(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProducedGasProperties(soap, n, NULL, NULL, NULL); } -inline prodml22__ProducedGasProperties * soap_new_req_prodml22__ProducedGasProperties( +inline prodml23__ProducedGasProperties * soap_new_req_prodml23__ProducedGasProperties( struct soap *soap, - const std::vector & VaporComposition) + const std::vector & VaporComposition) { - prodml22__ProducedGasProperties *_p = gsoap_eml2_3::soap_new_prodml22__ProducedGasProperties(soap); + prodml23__ProducedGasProperties *_p = gsoap_eml2_3::soap_new_prodml23__ProducedGasProperties(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProducedGasProperties::VaporComposition = VaporComposition; + _p->prodml23__ProducedGasProperties::VaporComposition = VaporComposition; } return _p; } -inline prodml22__ProducedGasProperties * soap_new_set_prodml22__ProducedGasProperties( +inline prodml23__ProducedGasProperties * soap_new_set_prodml23__ProducedGasProperties( struct soap *soap, eml23__DimensionlessMeasure *ProducedGasGravity, - const std::vector & VaporComposition) + const std::vector & VaporComposition) { - prodml22__ProducedGasProperties *_p = gsoap_eml2_3::soap_new_prodml22__ProducedGasProperties(soap); + prodml23__ProducedGasProperties *_p = gsoap_eml2_3::soap_new_prodml23__ProducedGasProperties(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProducedGasProperties::ProducedGasGravity = ProducedGasGravity; - _p->prodml22__ProducedGasProperties::VaporComposition = VaporComposition; + _p->prodml23__ProducedGasProperties::ProducedGasGravity = ProducedGasGravity; + _p->prodml23__ProducedGasProperties::VaporComposition = VaporComposition; } return _p; } -inline int soap_write_prodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties const*p) +inline int soap_write_prodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties ? "prodml22:ProducedGasProperties" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties ? "prodml23:ProducedGasProperties" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProducedGasProperties(struct soap *soap, const char *URL, prodml22__ProducedGasProperties const*p) +inline int soap_PUT_prodml23__ProducedGasProperties(struct soap *soap, const char *URL, prodml23__ProducedGasProperties const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties ? "prodml22:ProducedGasProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties ? "prodml23:ProducedGasProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProducedGasProperties(struct soap *soap, const char *URL, prodml22__ProducedGasProperties const*p) +inline int soap_PATCH_prodml23__ProducedGasProperties(struct soap *soap, const char *URL, prodml23__ProducedGasProperties const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties ? "prodml22:ProducedGasProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties ? "prodml23:ProducedGasProperties" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProducedGasProperties(struct soap *soap, const char *URL, prodml22__ProducedGasProperties const*p) +inline int soap_POST_send_prodml23__ProducedGasProperties(struct soap *soap, const char *URL, prodml23__ProducedGasProperties const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties ? "prodml22:ProducedGasProperties" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProducedGasProperties", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties ? "prodml23:ProducedGasProperties" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProducedGasProperties * SOAP_FMAC4 soap_get_prodml22__ProducedGasProperties(struct soap*, prodml22__ProducedGasProperties *, const char*, const char*); +SOAP_FMAC3 prodml23__ProducedGasProperties * SOAP_FMAC4 soap_get_prodml23__ProducedGasProperties(struct soap*, prodml23__ProducedGasProperties *, const char*, const char*); -inline int soap_read_prodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties *p) +inline int soap_read_prodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProducedGasProperties(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProducedGasProperties(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProducedGasProperties(struct soap *soap, const char *URL, prodml22__ProducedGasProperties *p) +inline int soap_GET_prodml23__ProducedGasProperties(struct soap *soap, const char *URL, prodml23__ProducedGasProperties *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProducedGasProperties(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProducedGasProperties(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProducedGasProperties(struct soap *soap, prodml22__ProducedGasProperties *p) +inline int soap_POST_recv_prodml23__ProducedGasProperties(struct soap *soap, prodml23__ProducedGasProperties *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProducedGasProperties(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProducedGasProperties(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PhaseViscosity(struct soap*, const char*, int, const prodml22__PhaseViscosity *, const char*); -SOAP_FMAC3 prodml22__PhaseViscosity * SOAP_FMAC4 soap_in_prodml22__PhaseViscosity(struct soap*, const char*, prodml22__PhaseViscosity *, const char*); -SOAP_FMAC1 prodml22__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseViscosity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PhaseViscosity(struct soap*, const char*, int, const prodml23__PhaseViscosity *, const char*); +SOAP_FMAC3 prodml23__PhaseViscosity * SOAP_FMAC4 soap_in_prodml23__PhaseViscosity(struct soap*, const char*, prodml23__PhaseViscosity *, const char*); +SOAP_FMAC1 prodml23__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml23__PhaseViscosity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PhaseViscosity * soap_new_prodml22__PhaseViscosity(struct soap *soap, int n = -1) +inline prodml23__PhaseViscosity * soap_new_prodml23__PhaseViscosity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PhaseViscosity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PhaseViscosity(soap, n, NULL, NULL, NULL); } -inline prodml22__PhaseViscosity * soap_new_req_prodml22__PhaseViscosity( +inline prodml23__PhaseViscosity * soap_new_req_prodml23__PhaseViscosity( struct soap *soap, const std::string& uid) { - prodml22__PhaseViscosity *_p = gsoap_eml2_3::soap_new_prodml22__PhaseViscosity(soap); + prodml23__PhaseViscosity *_p = gsoap_eml2_3::soap_new_prodml23__PhaseViscosity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PhaseViscosity::uid = uid; + _p->prodml23__PhaseViscosity::uid = uid; } return _p; } -inline prodml22__PhaseViscosity * soap_new_set_prodml22__PhaseViscosity( +inline prodml23__PhaseViscosity * soap_new_set_prodml23__PhaseViscosity( struct soap *soap, eml23__PressureMeasure *Pressure, eml23__DynamicViscosityMeasure *Viscosity, const std::string& uid) { - prodml22__PhaseViscosity *_p = gsoap_eml2_3::soap_new_prodml22__PhaseViscosity(soap); + prodml23__PhaseViscosity *_p = gsoap_eml2_3::soap_new_prodml23__PhaseViscosity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PhaseViscosity::Pressure = Pressure; - _p->prodml22__PhaseViscosity::Viscosity = Viscosity; - _p->prodml22__PhaseViscosity::uid = uid; + _p->prodml23__PhaseViscosity::Pressure = Pressure; + _p->prodml23__PhaseViscosity::Viscosity = Viscosity; + _p->prodml23__PhaseViscosity::uid = uid; } return _p; } -inline int soap_write_prodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity const*p) +inline int soap_write_prodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity ? "prodml22:PhaseViscosity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity ? "prodml23:PhaseViscosity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PhaseViscosity(struct soap *soap, const char *URL, prodml22__PhaseViscosity const*p) +inline int soap_PUT_prodml23__PhaseViscosity(struct soap *soap, const char *URL, prodml23__PhaseViscosity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity ? "prodml22:PhaseViscosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity ? "prodml23:PhaseViscosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PhaseViscosity(struct soap *soap, const char *URL, prodml22__PhaseViscosity const*p) +inline int soap_PATCH_prodml23__PhaseViscosity(struct soap *soap, const char *URL, prodml23__PhaseViscosity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity ? "prodml22:PhaseViscosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity ? "prodml23:PhaseViscosity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PhaseViscosity(struct soap *soap, const char *URL, prodml22__PhaseViscosity const*p) +inline int soap_POST_send_prodml23__PhaseViscosity(struct soap *soap, const char *URL, prodml23__PhaseViscosity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity ? "prodml22:PhaseViscosity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseViscosity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity ? "prodml23:PhaseViscosity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PhaseViscosity * SOAP_FMAC4 soap_get_prodml22__PhaseViscosity(struct soap*, prodml22__PhaseViscosity *, const char*, const char*); +SOAP_FMAC3 prodml23__PhaseViscosity * SOAP_FMAC4 soap_get_prodml23__PhaseViscosity(struct soap*, prodml23__PhaseViscosity *, const char*, const char*); -inline int soap_read_prodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity *p) +inline int soap_read_prodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PhaseViscosity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PhaseViscosity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PhaseViscosity(struct soap *soap, const char *URL, prodml22__PhaseViscosity *p) +inline int soap_GET_prodml23__PhaseViscosity(struct soap *soap, const char *URL, prodml23__PhaseViscosity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PhaseViscosity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PhaseViscosity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PhaseViscosity(struct soap *soap, prodml22__PhaseViscosity *p) +inline int soap_POST_recv_prodml23__PhaseViscosity(struct soap *soap, prodml23__PhaseViscosity *p) { - if (gsoap_eml2_3::soap_read_prodml22__PhaseViscosity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PhaseViscosity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PhaseDensity(struct soap*, const char*, int, const prodml22__PhaseDensity *, const char*); -SOAP_FMAC3 prodml22__PhaseDensity * SOAP_FMAC4 soap_in_prodml22__PhaseDensity(struct soap*, const char*, prodml22__PhaseDensity *, const char*); -SOAP_FMAC1 prodml22__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseDensity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PhaseDensity(struct soap*, const char*, int, const prodml23__PhaseDensity *, const char*); +SOAP_FMAC3 prodml23__PhaseDensity * SOAP_FMAC4 soap_in_prodml23__PhaseDensity(struct soap*, const char*, prodml23__PhaseDensity *, const char*); +SOAP_FMAC1 prodml23__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml23__PhaseDensity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PhaseDensity * soap_new_prodml22__PhaseDensity(struct soap *soap, int n = -1) +inline prodml23__PhaseDensity * soap_new_prodml23__PhaseDensity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PhaseDensity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PhaseDensity(soap, n, NULL, NULL, NULL); } -inline prodml22__PhaseDensity * soap_new_req_prodml22__PhaseDensity( +inline prodml23__PhaseDensity * soap_new_req_prodml23__PhaseDensity( struct soap *soap, const std::string& uid) { - prodml22__PhaseDensity *_p = gsoap_eml2_3::soap_new_prodml22__PhaseDensity(soap); + prodml23__PhaseDensity *_p = gsoap_eml2_3::soap_new_prodml23__PhaseDensity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PhaseDensity::uid = uid; + _p->prodml23__PhaseDensity::uid = uid; } return _p; } -inline prodml22__PhaseDensity * soap_new_set_prodml22__PhaseDensity( +inline prodml23__PhaseDensity * soap_new_set_prodml23__PhaseDensity( struct soap *soap, eml23__PressureMeasure *Pressure, eml23__MassPerVolumeMeasure *Density, const std::string& uid) { - prodml22__PhaseDensity *_p = gsoap_eml2_3::soap_new_prodml22__PhaseDensity(soap); + prodml23__PhaseDensity *_p = gsoap_eml2_3::soap_new_prodml23__PhaseDensity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PhaseDensity::Pressure = Pressure; - _p->prodml22__PhaseDensity::Density = Density; - _p->prodml22__PhaseDensity::uid = uid; + _p->prodml23__PhaseDensity::Pressure = Pressure; + _p->prodml23__PhaseDensity::Density = Density; + _p->prodml23__PhaseDensity::uid = uid; } return _p; } -inline int soap_write_prodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity const*p) +inline int soap_write_prodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity ? "prodml22:PhaseDensity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity ? "prodml23:PhaseDensity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PhaseDensity(struct soap *soap, const char *URL, prodml22__PhaseDensity const*p) +inline int soap_PUT_prodml23__PhaseDensity(struct soap *soap, const char *URL, prodml23__PhaseDensity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity ? "prodml22:PhaseDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity ? "prodml23:PhaseDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PhaseDensity(struct soap *soap, const char *URL, prodml22__PhaseDensity const*p) +inline int soap_PATCH_prodml23__PhaseDensity(struct soap *soap, const char *URL, prodml23__PhaseDensity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity ? "prodml22:PhaseDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity ? "prodml23:PhaseDensity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PhaseDensity(struct soap *soap, const char *URL, prodml22__PhaseDensity const*p) +inline int soap_POST_send_prodml23__PhaseDensity(struct soap *soap, const char *URL, prodml23__PhaseDensity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity ? "prodml22:PhaseDensity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PhaseDensity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity ? "prodml23:PhaseDensity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PhaseDensity * SOAP_FMAC4 soap_get_prodml22__PhaseDensity(struct soap*, prodml22__PhaseDensity *, const char*, const char*); +SOAP_FMAC3 prodml23__PhaseDensity * SOAP_FMAC4 soap_get_prodml23__PhaseDensity(struct soap*, prodml23__PhaseDensity *, const char*, const char*); -inline int soap_read_prodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity *p) +inline int soap_read_prodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PhaseDensity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PhaseDensity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PhaseDensity(struct soap *soap, const char *URL, prodml22__PhaseDensity *p) +inline int soap_GET_prodml23__PhaseDensity(struct soap *soap, const char *URL, prodml23__PhaseDensity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PhaseDensity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PhaseDensity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PhaseDensity(struct soap *soap, prodml22__PhaseDensity *p) +inline int soap_POST_recv_prodml23__PhaseDensity(struct soap *soap, prodml23__PhaseDensity *p) { - if (gsoap_eml2_3::soap_read_prodml22__PhaseDensity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PhaseDensity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OtherMeasurementTestStep(struct soap*, const char*, int, const prodml22__OtherMeasurementTestStep *, const char*); -SOAP_FMAC3 prodml22__OtherMeasurementTestStep * SOAP_FMAC4 soap_in_prodml22__OtherMeasurementTestStep(struct soap*, const char*, prodml22__OtherMeasurementTestStep *, const char*); -SOAP_FMAC1 prodml22__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prodml22__OtherMeasurementTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OtherMeasurementTestStep(struct soap*, const char*, int, const prodml23__OtherMeasurementTestStep *, const char*); +SOAP_FMAC3 prodml23__OtherMeasurementTestStep * SOAP_FMAC4 soap_in_prodml23__OtherMeasurementTestStep(struct soap*, const char*, prodml23__OtherMeasurementTestStep *, const char*); +SOAP_FMAC1 prodml23__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prodml23__OtherMeasurementTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OtherMeasurementTestStep * soap_new_prodml22__OtherMeasurementTestStep(struct soap *soap, int n = -1) +inline prodml23__OtherMeasurementTestStep * soap_new_prodml23__OtherMeasurementTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OtherMeasurementTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OtherMeasurementTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__OtherMeasurementTestStep * soap_new_req_prodml22__OtherMeasurementTestStep( +inline prodml23__OtherMeasurementTestStep * soap_new_req_prodml23__OtherMeasurementTestStep( struct soap *soap, LONG64 StepNumber, const std::string& uid) { - prodml22__OtherMeasurementTestStep *_p = gsoap_eml2_3::soap_new_prodml22__OtherMeasurementTestStep(soap); + prodml23__OtherMeasurementTestStep *_p = gsoap_eml2_3::soap_new_prodml23__OtherMeasurementTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OtherMeasurementTestStep::StepNumber = StepNumber; - _p->prodml22__OtherMeasurementTestStep::uid = uid; + _p->prodml23__OtherMeasurementTestStep::StepNumber = StepNumber; + _p->prodml23__OtherMeasurementTestStep::uid = uid; } return _p; } -inline prodml22__OtherMeasurementTestStep * soap_new_set_prodml22__OtherMeasurementTestStep( +inline prodml23__OtherMeasurementTestStep * soap_new_set_prodml23__OtherMeasurementTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, @@ -126921,7 +126897,7 @@ inline prodml22__OtherMeasurementTestStep * soap_new_set_prodml22__OtherMeasurem double *GasGravity, eml23__MassPerVolumeMeasure *GasMassDensity, double *GasZFactor, - prodml22__FluidAnalysisStepCondition *FluidCondition, + prodml23__FluidAnalysisStepCondition *FluidCondition, std::string *WaterContent, eml23__DynamicViscosityMeasure *WaterViscosity, eml23__MassPerMassMeasure *Salinity, @@ -126930,619 +126906,615 @@ inline prodml22__OtherMeasurementTestStep * soap_new_set_prodml22__OtherMeasurem std::string *Remark, const std::string& uid) { - prodml22__OtherMeasurementTestStep *_p = gsoap_eml2_3::soap_new_prodml22__OtherMeasurementTestStep(soap); + prodml23__OtherMeasurementTestStep *_p = gsoap_eml2_3::soap_new_prodml23__OtherMeasurementTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OtherMeasurementTestStep::StepNumber = StepNumber; - _p->prodml22__OtherMeasurementTestStep::StepPressure = StepPressure; - _p->prodml22__OtherMeasurementTestStep::StepTemperature = StepTemperature; - _p->prodml22__OtherMeasurementTestStep::OilViscosity = OilViscosity; - _p->prodml22__OtherMeasurementTestStep::OilMassDensity = OilMassDensity; - _p->prodml22__OtherMeasurementTestStep::GasViscosity = GasViscosity; - _p->prodml22__OtherMeasurementTestStep::GasGravity = GasGravity; - _p->prodml22__OtherMeasurementTestStep::GasMassDensity = GasMassDensity; - _p->prodml22__OtherMeasurementTestStep::GasZFactor = GasZFactor; - _p->prodml22__OtherMeasurementTestStep::FluidCondition = FluidCondition; - _p->prodml22__OtherMeasurementTestStep::WaterContent = WaterContent; - _p->prodml22__OtherMeasurementTestStep::WaterViscosity = WaterViscosity; - _p->prodml22__OtherMeasurementTestStep::Salinity = Salinity; - _p->prodml22__OtherMeasurementTestStep::Rsw = Rsw; - _p->prodml22__OtherMeasurementTestStep::Shear = Shear; - _p->prodml22__OtherMeasurementTestStep::Remark = Remark; - _p->prodml22__OtherMeasurementTestStep::uid = uid; + _p->prodml23__OtherMeasurementTestStep::StepNumber = StepNumber; + _p->prodml23__OtherMeasurementTestStep::StepPressure = StepPressure; + _p->prodml23__OtherMeasurementTestStep::StepTemperature = StepTemperature; + _p->prodml23__OtherMeasurementTestStep::OilViscosity = OilViscosity; + _p->prodml23__OtherMeasurementTestStep::OilMassDensity = OilMassDensity; + _p->prodml23__OtherMeasurementTestStep::GasViscosity = GasViscosity; + _p->prodml23__OtherMeasurementTestStep::GasGravity = GasGravity; + _p->prodml23__OtherMeasurementTestStep::GasMassDensity = GasMassDensity; + _p->prodml23__OtherMeasurementTestStep::GasZFactor = GasZFactor; + _p->prodml23__OtherMeasurementTestStep::FluidCondition = FluidCondition; + _p->prodml23__OtherMeasurementTestStep::WaterContent = WaterContent; + _p->prodml23__OtherMeasurementTestStep::WaterViscosity = WaterViscosity; + _p->prodml23__OtherMeasurementTestStep::Salinity = Salinity; + _p->prodml23__OtherMeasurementTestStep::Rsw = Rsw; + _p->prodml23__OtherMeasurementTestStep::Shear = Shear; + _p->prodml23__OtherMeasurementTestStep::Remark = Remark; + _p->prodml23__OtherMeasurementTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep const*p) +inline int soap_write_prodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep ? "prodml22:OtherMeasurementTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep ? "prodml23:OtherMeasurementTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml22__OtherMeasurementTestStep const*p) +inline int soap_PUT_prodml23__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml23__OtherMeasurementTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep ? "prodml22:OtherMeasurementTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep ? "prodml23:OtherMeasurementTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml22__OtherMeasurementTestStep const*p) +inline int soap_PATCH_prodml23__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml23__OtherMeasurementTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep ? "prodml22:OtherMeasurementTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep ? "prodml23:OtherMeasurementTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml22__OtherMeasurementTestStep const*p) +inline int soap_POST_send_prodml23__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml23__OtherMeasurementTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep ? "prodml22:OtherMeasurementTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep ? "prodml23:OtherMeasurementTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OtherMeasurementTestStep * SOAP_FMAC4 soap_get_prodml22__OtherMeasurementTestStep(struct soap*, prodml22__OtherMeasurementTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__OtherMeasurementTestStep * SOAP_FMAC4 soap_get_prodml23__OtherMeasurementTestStep(struct soap*, prodml23__OtherMeasurementTestStep *, const char*, const char*); -inline int soap_read_prodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep *p) +inline int soap_read_prodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OtherMeasurementTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OtherMeasurementTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml22__OtherMeasurementTestStep *p) +inline int soap_GET_prodml23__OtherMeasurementTestStep(struct soap *soap, const char *URL, prodml23__OtherMeasurementTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OtherMeasurementTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OtherMeasurementTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OtherMeasurementTestStep(struct soap *soap, prodml22__OtherMeasurementTestStep *p) +inline int soap_POST_recv_prodml23__OtherMeasurementTestStep(struct soap *soap, prodml23__OtherMeasurementTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__OtherMeasurementTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OtherMeasurementTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OtherMeasurementTest(struct soap*, const char*, int, const prodml22__OtherMeasurementTest *, const char*); -SOAP_FMAC3 prodml22__OtherMeasurementTest * SOAP_FMAC4 soap_in_prodml22__OtherMeasurementTest(struct soap*, const char*, prodml22__OtherMeasurementTest *, const char*); -SOAP_FMAC1 prodml22__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml22__OtherMeasurementTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OtherMeasurementTest(struct soap*, const char*, int, const prodml23__OtherMeasurementTest *, const char*); +SOAP_FMAC3 prodml23__OtherMeasurementTest * SOAP_FMAC4 soap_in_prodml23__OtherMeasurementTest(struct soap*, const char*, prodml23__OtherMeasurementTest *, const char*); +SOAP_FMAC1 prodml23__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml23__OtherMeasurementTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OtherMeasurementTest * soap_new_prodml22__OtherMeasurementTest(struct soap *soap, int n = -1) +inline prodml23__OtherMeasurementTest * soap_new_prodml23__OtherMeasurementTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OtherMeasurementTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OtherMeasurementTest(soap, n, NULL, NULL, NULL); } -inline prodml22__OtherMeasurementTest * soap_new_req_prodml22__OtherMeasurementTest( +inline prodml23__OtherMeasurementTest * soap_new_req_prodml23__OtherMeasurementTest( struct soap *soap, LONG64 TestNumber, const std::string& uid) { - prodml22__OtherMeasurementTest *_p = gsoap_eml2_3::soap_new_prodml22__OtherMeasurementTest(soap); + prodml23__OtherMeasurementTest *_p = gsoap_eml2_3::soap_new_prodml23__OtherMeasurementTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OtherMeasurementTest::TestNumber = TestNumber; - _p->prodml22__OtherMeasurementTest::uid = uid; + _p->prodml23__OtherMeasurementTest::TestNumber = TestNumber; + _p->prodml23__OtherMeasurementTest::uid = uid; } return _p; } -inline prodml22__OtherMeasurementTest * soap_new_set_prodml22__OtherMeasurementTest( +inline prodml23__OtherMeasurementTest * soap_new_set_prodml23__OtherMeasurementTest( struct soap *soap, LONG64 TestNumber, std::string *Remark, - prodml22__FluidCharacterizationTableFormatSet *FluidCharacterizationTableFormatSet, - prodml22__FluidCharacterizationTable *FluidCharacterizationTable, - const std::vector & OtherMeasurementTestStep, + prodml23__FluidCharacterizationTableFormatSet *FluidCharacterizationTableFormatSet, + prodml23__FluidCharacterizationTable *FluidCharacterizationTable, + const std::vector & OtherMeasurementTestStep, const std::string& uid) { - prodml22__OtherMeasurementTest *_p = gsoap_eml2_3::soap_new_prodml22__OtherMeasurementTest(soap); + prodml23__OtherMeasurementTest *_p = gsoap_eml2_3::soap_new_prodml23__OtherMeasurementTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OtherMeasurementTest::TestNumber = TestNumber; - _p->prodml22__OtherMeasurementTest::Remark = Remark; - _p->prodml22__OtherMeasurementTest::FluidCharacterizationTableFormatSet = FluidCharacterizationTableFormatSet; - _p->prodml22__OtherMeasurementTest::FluidCharacterizationTable = FluidCharacterizationTable; - _p->prodml22__OtherMeasurementTest::OtherMeasurementTestStep = OtherMeasurementTestStep; - _p->prodml22__OtherMeasurementTest::uid = uid; + _p->prodml23__OtherMeasurementTest::TestNumber = TestNumber; + _p->prodml23__OtherMeasurementTest::Remark = Remark; + _p->prodml23__OtherMeasurementTest::FluidCharacterizationTableFormatSet = FluidCharacterizationTableFormatSet; + _p->prodml23__OtherMeasurementTest::FluidCharacterizationTable = FluidCharacterizationTable; + _p->prodml23__OtherMeasurementTest::OtherMeasurementTestStep = OtherMeasurementTestStep; + _p->prodml23__OtherMeasurementTest::uid = uid; } return _p; } -inline int soap_write_prodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest const*p) +inline int soap_write_prodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest ? "prodml22:OtherMeasurementTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest ? "prodml23:OtherMeasurementTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OtherMeasurementTest(struct soap *soap, const char *URL, prodml22__OtherMeasurementTest const*p) +inline int soap_PUT_prodml23__OtherMeasurementTest(struct soap *soap, const char *URL, prodml23__OtherMeasurementTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest ? "prodml22:OtherMeasurementTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest ? "prodml23:OtherMeasurementTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OtherMeasurementTest(struct soap *soap, const char *URL, prodml22__OtherMeasurementTest const*p) +inline int soap_PATCH_prodml23__OtherMeasurementTest(struct soap *soap, const char *URL, prodml23__OtherMeasurementTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest ? "prodml22:OtherMeasurementTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest ? "prodml23:OtherMeasurementTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OtherMeasurementTest(struct soap *soap, const char *URL, prodml22__OtherMeasurementTest const*p) +inline int soap_POST_send_prodml23__OtherMeasurementTest(struct soap *soap, const char *URL, prodml23__OtherMeasurementTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest ? "prodml22:OtherMeasurementTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OtherMeasurementTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest ? "prodml23:OtherMeasurementTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OtherMeasurementTest * SOAP_FMAC4 soap_get_prodml22__OtherMeasurementTest(struct soap*, prodml22__OtherMeasurementTest *, const char*, const char*); +SOAP_FMAC3 prodml23__OtherMeasurementTest * SOAP_FMAC4 soap_get_prodml23__OtherMeasurementTest(struct soap*, prodml23__OtherMeasurementTest *, const char*, const char*); -inline int soap_read_prodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest *p) +inline int soap_read_prodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OtherMeasurementTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OtherMeasurementTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OtherMeasurementTest(struct soap *soap, const char *URL, prodml22__OtherMeasurementTest *p) +inline int soap_GET_prodml23__OtherMeasurementTest(struct soap *soap, const char *URL, prodml23__OtherMeasurementTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OtherMeasurementTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OtherMeasurementTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OtherMeasurementTest(struct soap *soap, prodml22__OtherMeasurementTest *p) +inline int soap_POST_recv_prodml23__OtherMeasurementTest(struct soap *soap, prodml23__OtherMeasurementTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__OtherMeasurementTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OtherMeasurementTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OilVolume(struct soap*, const char*, int, const prodml22__OilVolume *, const char*); -SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_in_prodml22__OilVolume(struct soap*, const char*, prodml22__OilVolume *, const char*); -SOAP_FMAC1 prodml22__OilVolume * SOAP_FMAC2 soap_instantiate_prodml22__OilVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OilVolume(struct soap*, const char*, int, const prodml23__OilVolume *, const char*); +SOAP_FMAC3 prodml23__OilVolume * SOAP_FMAC4 soap_in_prodml23__OilVolume(struct soap*, const char*, prodml23__OilVolume *, const char*); +SOAP_FMAC1 prodml23__OilVolume * SOAP_FMAC2 soap_instantiate_prodml23__OilVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OilVolume * soap_new_prodml22__OilVolume(struct soap *soap, int n = -1) +inline prodml23__OilVolume * soap_new_prodml23__OilVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OilVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OilVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__OilVolume * soap_new_req_prodml22__OilVolume( +inline prodml23__OilVolume * soap_new_req_prodml23__OilVolume( struct soap *soap, eml23__VolumeMeasure *OilVolume) { - prodml22__OilVolume *_p = gsoap_eml2_3::soap_new_prodml22__OilVolume(soap); + prodml23__OilVolume *_p = gsoap_eml2_3::soap_new_prodml23__OilVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OilVolume::OilVolume = OilVolume; + _p->prodml23__OilVolume::OilVolume = OilVolume; } return _p; } -inline prodml22__OilVolume * soap_new_set_prodml22__OilVolume( +inline prodml23__OilVolume * soap_new_set_prodml23__OilVolume( struct soap *soap, eml23__VolumeMeasure *OilVolume) { - prodml22__OilVolume *_p = gsoap_eml2_3::soap_new_prodml22__OilVolume(soap); + prodml23__OilVolume *_p = gsoap_eml2_3::soap_new_prodml23__OilVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OilVolume::OilVolume = OilVolume; + _p->prodml23__OilVolume::OilVolume = OilVolume; } return _p; } -inline int soap_write_prodml22__OilVolume(struct soap *soap, prodml22__OilVolume const*p) +inline int soap_write_prodml23__OilVolume(struct soap *soap, prodml23__OilVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume ? "prodml22:OilVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume ? "prodml23:OilVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OilVolume(struct soap *soap, const char *URL, prodml22__OilVolume const*p) +inline int soap_PUT_prodml23__OilVolume(struct soap *soap, const char *URL, prodml23__OilVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume ? "prodml22:OilVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume ? "prodml23:OilVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OilVolume(struct soap *soap, const char *URL, prodml22__OilVolume const*p) +inline int soap_PATCH_prodml23__OilVolume(struct soap *soap, const char *URL, prodml23__OilVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume ? "prodml22:OilVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume ? "prodml23:OilVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OilVolume(struct soap *soap, const char *URL, prodml22__OilVolume const*p) +inline int soap_POST_send_prodml23__OilVolume(struct soap *soap, const char *URL, prodml23__OilVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume ? "prodml22:OilVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume ? "prodml23:OilVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OilVolume * SOAP_FMAC4 soap_get_prodml22__OilVolume(struct soap*, prodml22__OilVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__OilVolume * SOAP_FMAC4 soap_get_prodml23__OilVolume(struct soap*, prodml23__OilVolume *, const char*, const char*); -inline int soap_read_prodml22__OilVolume(struct soap *soap, prodml22__OilVolume *p) +inline int soap_read_prodml23__OilVolume(struct soap *soap, prodml23__OilVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OilVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OilVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OilVolume(struct soap *soap, const char *URL, prodml22__OilVolume *p) +inline int soap_GET_prodml23__OilVolume(struct soap *soap, const char *URL, prodml23__OilVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OilVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OilVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OilVolume(struct soap *soap, prodml22__OilVolume *p) +inline int soap_POST_recv_prodml23__OilVolume(struct soap *soap, prodml23__OilVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__OilVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OilVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OilShrinkageFactor(struct soap*, const char*, int, const prodml22__OilShrinkageFactor *, const char*); -SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml22__OilShrinkageFactor(struct soap*, const char*, prodml22__OilShrinkageFactor *, const char*); -SOAP_FMAC1 prodml22__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml22__OilShrinkageFactor(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OilShrinkageFactor(struct soap*, const char*, int, const prodml23__OilShrinkageFactor *, const char*); +SOAP_FMAC3 prodml23__OilShrinkageFactor * SOAP_FMAC4 soap_in_prodml23__OilShrinkageFactor(struct soap*, const char*, prodml23__OilShrinkageFactor *, const char*); +SOAP_FMAC1 prodml23__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml23__OilShrinkageFactor(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OilShrinkageFactor * soap_new_prodml22__OilShrinkageFactor(struct soap *soap, int n = -1) +inline prodml23__OilShrinkageFactor * soap_new_prodml23__OilShrinkageFactor(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OilShrinkageFactor(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OilShrinkageFactor(soap, n, NULL, NULL, NULL); } -inline prodml22__OilShrinkageFactor * soap_new_req_prodml22__OilShrinkageFactor( +inline prodml23__OilShrinkageFactor * soap_new_req_prodml23__OilShrinkageFactor( struct soap *soap, eml23__VolumePerVolumeMeasure *OilShrinkageFactor) { - prodml22__OilShrinkageFactor *_p = gsoap_eml2_3::soap_new_prodml22__OilShrinkageFactor(soap); + prodml23__OilShrinkageFactor *_p = gsoap_eml2_3::soap_new_prodml23__OilShrinkageFactor(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OilShrinkageFactor::OilShrinkageFactor = OilShrinkageFactor; + _p->prodml23__OilShrinkageFactor::OilShrinkageFactor = OilShrinkageFactor; } return _p; } -inline prodml22__OilShrinkageFactor * soap_new_set_prodml22__OilShrinkageFactor( +inline prodml23__OilShrinkageFactor * soap_new_set_prodml23__OilShrinkageFactor( struct soap *soap, eml23__VolumePerVolumeMeasure *OilShrinkageFactor) { - prodml22__OilShrinkageFactor *_p = gsoap_eml2_3::soap_new_prodml22__OilShrinkageFactor(soap); + prodml23__OilShrinkageFactor *_p = gsoap_eml2_3::soap_new_prodml23__OilShrinkageFactor(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OilShrinkageFactor::OilShrinkageFactor = OilShrinkageFactor; + _p->prodml23__OilShrinkageFactor::OilShrinkageFactor = OilShrinkageFactor; } return _p; } -inline int soap_write_prodml22__OilShrinkageFactor(struct soap *soap, prodml22__OilShrinkageFactor const*p) +inline int soap_write_prodml23__OilShrinkageFactor(struct soap *soap, prodml23__OilShrinkageFactor const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor ? "prodml22:OilShrinkageFactor" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor ? "prodml23:OilShrinkageFactor" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OilShrinkageFactor(struct soap *soap, const char *URL, prodml22__OilShrinkageFactor const*p) +inline int soap_PUT_prodml23__OilShrinkageFactor(struct soap *soap, const char *URL, prodml23__OilShrinkageFactor const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor ? "prodml22:OilShrinkageFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor ? "prodml23:OilShrinkageFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OilShrinkageFactor(struct soap *soap, const char *URL, prodml22__OilShrinkageFactor const*p) +inline int soap_PATCH_prodml23__OilShrinkageFactor(struct soap *soap, const char *URL, prodml23__OilShrinkageFactor const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor ? "prodml22:OilShrinkageFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor ? "prodml23:OilShrinkageFactor" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OilShrinkageFactor(struct soap *soap, const char *URL, prodml22__OilShrinkageFactor const*p) +inline int soap_POST_send_prodml23__OilShrinkageFactor(struct soap *soap, const char *URL, prodml23__OilShrinkageFactor const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor ? "prodml22:OilShrinkageFactor" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilShrinkageFactor", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor ? "prodml23:OilShrinkageFactor" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OilShrinkageFactor * SOAP_FMAC4 soap_get_prodml22__OilShrinkageFactor(struct soap*, prodml22__OilShrinkageFactor *, const char*, const char*); +SOAP_FMAC3 prodml23__OilShrinkageFactor * SOAP_FMAC4 soap_get_prodml23__OilShrinkageFactor(struct soap*, prodml23__OilShrinkageFactor *, const char*, const char*); -inline int soap_read_prodml22__OilShrinkageFactor(struct soap *soap, prodml22__OilShrinkageFactor *p) +inline int soap_read_prodml23__OilShrinkageFactor(struct soap *soap, prodml23__OilShrinkageFactor *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OilShrinkageFactor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OilShrinkageFactor(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OilShrinkageFactor(struct soap *soap, const char *URL, prodml22__OilShrinkageFactor *p) +inline int soap_GET_prodml23__OilShrinkageFactor(struct soap *soap, const char *URL, prodml23__OilShrinkageFactor *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OilShrinkageFactor(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OilShrinkageFactor(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OilShrinkageFactor(struct soap *soap, prodml22__OilShrinkageFactor *p) +inline int soap_POST_recv_prodml23__OilShrinkageFactor(struct soap *soap, prodml23__OilShrinkageFactor *p) { - if (gsoap_eml2_3::soap_read_prodml22__OilShrinkageFactor(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OilShrinkageFactor(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OilCompressibility(struct soap*, const char*, int, const prodml22__OilCompressibility *, const char*); -SOAP_FMAC3 prodml22__OilCompressibility * SOAP_FMAC4 soap_in_prodml22__OilCompressibility(struct soap*, const char*, prodml22__OilCompressibility *, const char*); -SOAP_FMAC1 prodml22__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__OilCompressibility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OilCompressibility(struct soap*, const char*, int, const prodml23__OilCompressibility *, const char*); +SOAP_FMAC3 prodml23__OilCompressibility * SOAP_FMAC4 soap_in_prodml23__OilCompressibility(struct soap*, const char*, prodml23__OilCompressibility *, const char*); +SOAP_FMAC1 prodml23__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml23__OilCompressibility(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OilCompressibility * soap_new_prodml22__OilCompressibility(struct soap *soap, int n = -1) +inline prodml23__OilCompressibility * soap_new_prodml23__OilCompressibility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OilCompressibility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OilCompressibility(soap, n, NULL, NULL, NULL); } -inline prodml22__OilCompressibility * soap_new_req_prodml22__OilCompressibility( +inline prodml23__OilCompressibility * soap_new_req_prodml23__OilCompressibility( struct soap *soap, - prodml22__CompressibilityKind kind, - double __item__1, - eml23__ReciprocalPressureUom uom__1) + eml23__ReciprocalPressureMeasure *ReciprocalPressureMeasure, + prodml23__CompressibilityKind kind) { - prodml22__OilCompressibility *_p = gsoap_eml2_3::soap_new_prodml22__OilCompressibility(soap); + prodml23__OilCompressibility *_p = gsoap_eml2_3::soap_new_prodml23__OilCompressibility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OilCompressibility::kind = kind; - _p->eml23__ReciprocalPressureMeasure::__item = __item__1; - _p->eml23__ReciprocalPressureMeasure::uom = uom__1; + _p->prodml23__OilCompressibility::ReciprocalPressureMeasure = ReciprocalPressureMeasure; + _p->prodml23__OilCompressibility::kind = kind; } return _p; } -inline prodml22__OilCompressibility * soap_new_set_prodml22__OilCompressibility( +inline prodml23__OilCompressibility * soap_new_set_prodml23__OilCompressibility( struct soap *soap, - prodml22__CompressibilityKind kind, - double __item__1, - eml23__ReciprocalPressureUom uom__1) + eml23__ReciprocalPressureMeasure *ReciprocalPressureMeasure, + prodml23__CompressibilityKind kind) { - prodml22__OilCompressibility *_p = gsoap_eml2_3::soap_new_prodml22__OilCompressibility(soap); + prodml23__OilCompressibility *_p = gsoap_eml2_3::soap_new_prodml23__OilCompressibility(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OilCompressibility::kind = kind; - _p->eml23__ReciprocalPressureMeasure::__item = __item__1; - _p->eml23__ReciprocalPressureMeasure::uom = uom__1; + _p->prodml23__OilCompressibility::ReciprocalPressureMeasure = ReciprocalPressureMeasure; + _p->prodml23__OilCompressibility::kind = kind; } return _p; } -inline int soap_write_prodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility const*p) +inline int soap_write_prodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility ? "prodml22:OilCompressibility" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility ? "prodml23:OilCompressibility" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OilCompressibility(struct soap *soap, const char *URL, prodml22__OilCompressibility const*p) +inline int soap_PUT_prodml23__OilCompressibility(struct soap *soap, const char *URL, prodml23__OilCompressibility const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility ? "prodml22:OilCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility ? "prodml23:OilCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OilCompressibility(struct soap *soap, const char *URL, prodml22__OilCompressibility const*p) +inline int soap_PATCH_prodml23__OilCompressibility(struct soap *soap, const char *URL, prodml23__OilCompressibility const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility ? "prodml22:OilCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility ? "prodml23:OilCompressibility" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OilCompressibility(struct soap *soap, const char *URL, prodml22__OilCompressibility const*p) +inline int soap_POST_send_prodml23__OilCompressibility(struct soap *soap, const char *URL, prodml23__OilCompressibility const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility ? "prodml22:OilCompressibility" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OilCompressibility", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility ? "prodml23:OilCompressibility" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OilCompressibility * SOAP_FMAC4 soap_get_prodml22__OilCompressibility(struct soap*, prodml22__OilCompressibility *, const char*, const char*); +SOAP_FMAC3 prodml23__OilCompressibility * SOAP_FMAC4 soap_get_prodml23__OilCompressibility(struct soap*, prodml23__OilCompressibility *, const char*, const char*); -inline int soap_read_prodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility *p) +inline int soap_read_prodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OilCompressibility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OilCompressibility(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OilCompressibility(struct soap *soap, const char *URL, prodml22__OilCompressibility *p) +inline int soap_GET_prodml23__OilCompressibility(struct soap *soap, const char *URL, prodml23__OilCompressibility *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OilCompressibility(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OilCompressibility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OilCompressibility(struct soap *soap, prodml22__OilCompressibility *p) +inline int soap_POST_recv_prodml23__OilCompressibility(struct soap *soap, prodml23__OilCompressibility *p) { - if (gsoap_eml2_3::soap_read_prodml22__OilCompressibility(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OilCompressibility(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonHydrocarbonTest(struct soap*, const char*, int, const prodml22__NonHydrocarbonTest *, const char*); -SOAP_FMAC3 prodml22__NonHydrocarbonTest * SOAP_FMAC4 soap_in_prodml22__NonHydrocarbonTest(struct soap*, const char*, prodml22__NonHydrocarbonTest *, const char*); -SOAP_FMAC1 prodml22__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml22__NonHydrocarbonTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NonHydrocarbonTest(struct soap*, const char*, int, const prodml23__NonHydrocarbonTest *, const char*); +SOAP_FMAC3 prodml23__NonHydrocarbonTest * SOAP_FMAC4 soap_in_prodml23__NonHydrocarbonTest(struct soap*, const char*, prodml23__NonHydrocarbonTest *, const char*); +SOAP_FMAC1 prodml23__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml23__NonHydrocarbonTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NonHydrocarbonTest * soap_new_prodml22__NonHydrocarbonTest(struct soap *soap, int n = -1) +inline prodml23__NonHydrocarbonTest * soap_new_prodml23__NonHydrocarbonTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NonHydrocarbonTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NonHydrocarbonTest(soap, n, NULL, NULL, NULL); } -inline prodml22__NonHydrocarbonTest * soap_new_req_prodml22__NonHydrocarbonTest( +inline prodml23__NonHydrocarbonTest * soap_new_req_prodml23__NonHydrocarbonTest( struct soap *soap) { - prodml22__NonHydrocarbonTest *_p = gsoap_eml2_3::soap_new_prodml22__NonHydrocarbonTest(soap); + prodml23__NonHydrocarbonTest *_p = gsoap_eml2_3::soap_new_prodml23__NonHydrocarbonTest(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__NonHydrocarbonTest * soap_new_set_prodml22__NonHydrocarbonTest( +inline prodml23__NonHydrocarbonTest * soap_new_set_prodml23__NonHydrocarbonTest( struct soap *soap, LONG64 *TestNumber, struct tm *TestTime, eml23__VolumeMeasureExt *TestVolume, - prodml22__PhasePresent *PhasesTested, + prodml23__PhasePresent *PhasesTested, eml23__ThermodynamicTemperatureMeasure *TestTemperature, eml23__PressureMeasureExt *TestPressure, std::string *AnalysisMethod, std::string *SamplingPoint, LONG64 *CellId, std::string *InstrumentId, - prodml22__OverallComposition *NonHydrocarbonConcentrations, + prodml23__OverallComposition *NonHydrocarbonConcentrations, const std::vector & OtherMeasuredProperties, std::string *Remark) { - prodml22__NonHydrocarbonTest *_p = gsoap_eml2_3::soap_new_prodml22__NonHydrocarbonTest(soap); + prodml23__NonHydrocarbonTest *_p = gsoap_eml2_3::soap_new_prodml23__NonHydrocarbonTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NonHydrocarbonTest::TestNumber = TestNumber; - _p->prodml22__NonHydrocarbonTest::TestTime = TestTime; - _p->prodml22__NonHydrocarbonTest::TestVolume = TestVolume; - _p->prodml22__NonHydrocarbonTest::PhasesTested = PhasesTested; - _p->prodml22__NonHydrocarbonTest::TestTemperature = TestTemperature; - _p->prodml22__NonHydrocarbonTest::TestPressure = TestPressure; - _p->prodml22__NonHydrocarbonTest::AnalysisMethod = AnalysisMethod; - _p->prodml22__NonHydrocarbonTest::SamplingPoint = SamplingPoint; - _p->prodml22__NonHydrocarbonTest::CellId = CellId; - _p->prodml22__NonHydrocarbonTest::InstrumentId = InstrumentId; - _p->prodml22__NonHydrocarbonTest::NonHydrocarbonConcentrations = NonHydrocarbonConcentrations; - _p->prodml22__NonHydrocarbonTest::OtherMeasuredProperties = OtherMeasuredProperties; - _p->prodml22__NonHydrocarbonTest::Remark = Remark; + _p->prodml23__NonHydrocarbonTest::TestNumber = TestNumber; + _p->prodml23__NonHydrocarbonTest::TestTime = TestTime; + _p->prodml23__NonHydrocarbonTest::TestVolume = TestVolume; + _p->prodml23__NonHydrocarbonTest::PhasesTested = PhasesTested; + _p->prodml23__NonHydrocarbonTest::TestTemperature = TestTemperature; + _p->prodml23__NonHydrocarbonTest::TestPressure = TestPressure; + _p->prodml23__NonHydrocarbonTest::AnalysisMethod = AnalysisMethod; + _p->prodml23__NonHydrocarbonTest::SamplingPoint = SamplingPoint; + _p->prodml23__NonHydrocarbonTest::CellId = CellId; + _p->prodml23__NonHydrocarbonTest::InstrumentId = InstrumentId; + _p->prodml23__NonHydrocarbonTest::NonHydrocarbonConcentrations = NonHydrocarbonConcentrations; + _p->prodml23__NonHydrocarbonTest::OtherMeasuredProperties = OtherMeasuredProperties; + _p->prodml23__NonHydrocarbonTest::Remark = Remark; } return _p; } -inline int soap_write_prodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest const*p) +inline int soap_write_prodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest ? "prodml22:NonHydrocarbonTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest ? "prodml23:NonHydrocarbonTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml22__NonHydrocarbonTest const*p) +inline int soap_PUT_prodml23__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml23__NonHydrocarbonTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest ? "prodml22:NonHydrocarbonTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest ? "prodml23:NonHydrocarbonTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml22__NonHydrocarbonTest const*p) +inline int soap_PATCH_prodml23__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml23__NonHydrocarbonTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest ? "prodml22:NonHydrocarbonTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest ? "prodml23:NonHydrocarbonTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml22__NonHydrocarbonTest const*p) +inline int soap_POST_send_prodml23__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml23__NonHydrocarbonTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest ? "prodml22:NonHydrocarbonTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest ? "prodml23:NonHydrocarbonTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NonHydrocarbonTest * SOAP_FMAC4 soap_get_prodml22__NonHydrocarbonTest(struct soap*, prodml22__NonHydrocarbonTest *, const char*, const char*); +SOAP_FMAC3 prodml23__NonHydrocarbonTest * SOAP_FMAC4 soap_get_prodml23__NonHydrocarbonTest(struct soap*, prodml23__NonHydrocarbonTest *, const char*, const char*); -inline int soap_read_prodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest *p) +inline int soap_read_prodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NonHydrocarbonTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NonHydrocarbonTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml22__NonHydrocarbonTest *p) +inline int soap_GET_prodml23__NonHydrocarbonTest(struct soap *soap, const char *URL, prodml23__NonHydrocarbonTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NonHydrocarbonTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NonHydrocarbonTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NonHydrocarbonTest(struct soap *soap, prodml22__NonHydrocarbonTest *p) +inline int soap_POST_recv_prodml23__NonHydrocarbonTest(struct soap *soap, prodml23__NonHydrocarbonTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__NonHydrocarbonTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NonHydrocarbonTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NonHydrocarbonAnalysis(struct soap*, const char*, int, const prodml22__NonHydrocarbonAnalysis *, const char*); -SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__NonHydrocarbonAnalysis(struct soap*, const char*, prodml22__NonHydrocarbonAnalysis *, const char*); -SOAP_FMAC1 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__NonHydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NonHydrocarbonAnalysis(struct soap*, const char*, int, const prodml23__NonHydrocarbonAnalysis *, const char*); +SOAP_FMAC3 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml23__NonHydrocarbonAnalysis(struct soap*, const char*, prodml23__NonHydrocarbonAnalysis *, const char*); +SOAP_FMAC1 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__NonHydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NonHydrocarbonAnalysis * soap_new_prodml22__NonHydrocarbonAnalysis(struct soap *soap, int n = -1) +inline prodml23__NonHydrocarbonAnalysis * soap_new_prodml23__NonHydrocarbonAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NonHydrocarbonAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NonHydrocarbonAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__NonHydrocarbonAnalysis * soap_new_req_prodml22__NonHydrocarbonAnalysis( +inline prodml23__NonHydrocarbonAnalysis * soap_new_req_prodml23__NonHydrocarbonAnalysis( struct soap *soap, eml23__AbstractTemperaturePressure *StandardConditions__1, - prodml22__SampleQuality AnalysisQuality__1, + prodml23__SampleQuality AnalysisQuality__1, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__NonHydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__NonHydrocarbonAnalysis(soap); + prodml23__NonHydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__NonHydrocarbonAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions__1; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions__1; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -127550,11 +127522,11 @@ inline prodml22__NonHydrocarbonAnalysis * soap_new_req_prodml22__NonHydrocarbonA return _p; } -inline prodml22__NonHydrocarbonAnalysis * soap_new_set_prodml22__NonHydrocarbonAnalysis( +inline prodml23__NonHydrocarbonAnalysis * soap_new_set_prodml23__NonHydrocarbonAnalysis( struct soap *soap, eml23__DataObjectReference *FluidSample, eml23__DataObjectReference *FlowTestActivity, - const std::vector & NonHydrocarbonTest, + const std::vector & NonHydrocarbonTest, std::string *RequestDate__1, eml23__DataObjectReference *Client__1, struct tm *StartTime__1, @@ -127564,11 +127536,11 @@ inline prodml22__NonHydrocarbonAnalysis * soap_new_set_prodml22__NonHydrocarbonA std::string *AnalysisSite__1, eml23__DataObjectReference *LabContact__1, eml23__AbstractTemperaturePressure *StandardConditions__1, - prodml22__SampleQuality AnalysisQuality__1, - prodml22__FluidComponentCatalog *FluidComponentCatalog__1, + prodml23__SampleQuality AnalysisQuality__1, + prodml23__FluidComponentCatalog *FluidComponentCatalog__1, std::string *Remark__1, - const std::vector & FluidAnalysisReport__1, - const std::vector & SampleContaminant__1, + const std::vector & FluidAnalysisReport__1, + const std::vector & SampleContaminant__1, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -127581,26 +127553,26 @@ inline prodml22__NonHydrocarbonAnalysis * soap_new_set_prodml22__NonHydrocarbonA const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__NonHydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__NonHydrocarbonAnalysis(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__NonHydrocarbonAnalysis::FluidSample = FluidSample; - _p->prodml22__NonHydrocarbonAnalysis::FlowTestActivity = FlowTestActivity; - _p->prodml22__NonHydrocarbonAnalysis::NonHydrocarbonTest = NonHydrocarbonTest; - _p->prodml22__FluidAnalysis::RequestDate = RequestDate__1; - _p->prodml22__FluidAnalysis::Client = Client__1; - _p->prodml22__FluidAnalysis::StartTime = StartTime__1; - _p->prodml22__FluidAnalysis::EndTime = EndTime__1; - _p->prodml22__FluidAnalysis::AnalysisDescription = AnalysisDescription__1; - _p->prodml22__FluidAnalysis::AnalysisPurpose = AnalysisPurpose__1; - _p->prodml22__FluidAnalysis::AnalysisSite = AnalysisSite__1; - _p->prodml22__FluidAnalysis::LabContact = LabContact__1; - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions__1; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; - _p->prodml22__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog__1; - _p->prodml22__FluidAnalysis::Remark = Remark__1; - _p->prodml22__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport__1; - _p->prodml22__FluidAnalysis::SampleContaminant = SampleContaminant__1; + prodml23__NonHydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__NonHydrocarbonAnalysis(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__NonHydrocarbonAnalysis::FluidSample = FluidSample; + _p->prodml23__NonHydrocarbonAnalysis::FlowTestActivity = FlowTestActivity; + _p->prodml23__NonHydrocarbonAnalysis::NonHydrocarbonTest = NonHydrocarbonTest; + _p->prodml23__FluidAnalysis::RequestDate = RequestDate__1; + _p->prodml23__FluidAnalysis::Client = Client__1; + _p->prodml23__FluidAnalysis::StartTime = StartTime__1; + _p->prodml23__FluidAnalysis::EndTime = EndTime__1; + _p->prodml23__FluidAnalysis::AnalysisDescription = AnalysisDescription__1; + _p->prodml23__FluidAnalysis::AnalysisPurpose = AnalysisPurpose__1; + _p->prodml23__FluidAnalysis::AnalysisSite = AnalysisSite__1; + _p->prodml23__FluidAnalysis::LabContact = LabContact__1; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions__1; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; + _p->prodml23__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog__1; + _p->prodml23__FluidAnalysis::Remark = Remark__1; + _p->prodml23__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport__1; + _p->prodml23__FluidAnalysis::SampleContaminant = SampleContaminant__1; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -127616,187 +127588,187 @@ inline prodml22__NonHydrocarbonAnalysis * soap_new_set_prodml22__NonHydrocarbonA return _p; } -inline int soap_write_prodml22__NonHydrocarbonAnalysis(struct soap *soap, prodml22__NonHydrocarbonAnalysis const*p) +inline int soap_write_prodml23__NonHydrocarbonAnalysis(struct soap *soap, prodml23__NonHydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis ? "prodml22:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis ? "prodml23:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__NonHydrocarbonAnalysis const*p) +inline int soap_PUT_prodml23__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__NonHydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis ? "prodml22:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis ? "prodml23:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__NonHydrocarbonAnalysis const*p) +inline int soap_PATCH_prodml23__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__NonHydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis ? "prodml22:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis ? "prodml23:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__NonHydrocarbonAnalysis const*p) +inline int soap_POST_send_prodml23__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__NonHydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis ? "prodml22:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NonHydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis ? "prodml23:NonHydrocarbonAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml22__NonHydrocarbonAnalysis(struct soap*, prodml22__NonHydrocarbonAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml23__NonHydrocarbonAnalysis(struct soap*, prodml23__NonHydrocarbonAnalysis *, const char*, const char*); -inline int soap_read_prodml22__NonHydrocarbonAnalysis(struct soap *soap, prodml22__NonHydrocarbonAnalysis *p) +inline int soap_read_prodml23__NonHydrocarbonAnalysis(struct soap *soap, prodml23__NonHydrocarbonAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NonHydrocarbonAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NonHydrocarbonAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__NonHydrocarbonAnalysis *p) +inline int soap_GET_prodml23__NonHydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__NonHydrocarbonAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NonHydrocarbonAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NonHydrocarbonAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NonHydrocarbonAnalysis(struct soap *soap, prodml22__NonHydrocarbonAnalysis *p) +inline int soap_POST_recv_prodml23__NonHydrocarbonAnalysis(struct soap *soap, prodml23__NonHydrocarbonAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__NonHydrocarbonAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NonHydrocarbonAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MultipleContactMiscibilityTest(struct soap*, const char*, int, const prodml22__MultipleContactMiscibilityTest *, const char*); -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_in_prodml22__MultipleContactMiscibilityTest(struct soap*, const char*, prodml22__MultipleContactMiscibilityTest *, const char*); -SOAP_FMAC1 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiate_prodml22__MultipleContactMiscibilityTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MultipleContactMiscibilityTest(struct soap*, const char*, int, const prodml23__MultipleContactMiscibilityTest *, const char*); +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_in_prodml23__MultipleContactMiscibilityTest(struct soap*, const char*, prodml23__MultipleContactMiscibilityTest *, const char*); +SOAP_FMAC1 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiate_prodml23__MultipleContactMiscibilityTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MultipleContactMiscibilityTest * soap_new_prodml22__MultipleContactMiscibilityTest(struct soap *soap, int n = -1) +inline prodml23__MultipleContactMiscibilityTest * soap_new_prodml23__MultipleContactMiscibilityTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MultipleContactMiscibilityTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MultipleContactMiscibilityTest(soap, n, NULL, NULL, NULL); } -inline prodml22__MultipleContactMiscibilityTest * soap_new_req_prodml22__MultipleContactMiscibilityTest( +inline prodml23__MultipleContactMiscibilityTest * soap_new_req_prodml23__MultipleContactMiscibilityTest( struct soap *soap, LONG64 TestNumber, const std::string& uid) { - prodml22__MultipleContactMiscibilityTest *_p = gsoap_eml2_3::soap_new_prodml22__MultipleContactMiscibilityTest(soap); + prodml23__MultipleContactMiscibilityTest *_p = gsoap_eml2_3::soap_new_prodml23__MultipleContactMiscibilityTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MultipleContactMiscibilityTest::TestNumber = TestNumber; - _p->prodml22__MultipleContactMiscibilityTest::uid = uid; + _p->prodml23__MultipleContactMiscibilityTest::TestNumber = TestNumber; + _p->prodml23__MultipleContactMiscibilityTest::uid = uid; } return _p; } -inline prodml22__MultipleContactMiscibilityTest * soap_new_set_prodml22__MultipleContactMiscibilityTest( +inline prodml23__MultipleContactMiscibilityTest * soap_new_set_prodml23__MultipleContactMiscibilityTest( struct soap *soap, LONG64 TestNumber, std::string *GasSolventCompositionReference, eml23__DimensionlessMeasure *MixRatio, const std::string& uid) { - prodml22__MultipleContactMiscibilityTest *_p = gsoap_eml2_3::soap_new_prodml22__MultipleContactMiscibilityTest(soap); + prodml23__MultipleContactMiscibilityTest *_p = gsoap_eml2_3::soap_new_prodml23__MultipleContactMiscibilityTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MultipleContactMiscibilityTest::TestNumber = TestNumber; - _p->prodml22__MultipleContactMiscibilityTest::GasSolventCompositionReference = GasSolventCompositionReference; - _p->prodml22__MultipleContactMiscibilityTest::MixRatio = MixRatio; - _p->prodml22__MultipleContactMiscibilityTest::uid = uid; + _p->prodml23__MultipleContactMiscibilityTest::TestNumber = TestNumber; + _p->prodml23__MultipleContactMiscibilityTest::GasSolventCompositionReference = GasSolventCompositionReference; + _p->prodml23__MultipleContactMiscibilityTest::MixRatio = MixRatio; + _p->prodml23__MultipleContactMiscibilityTest::uid = uid; } return _p; } -inline int soap_write_prodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest const*p) +inline int soap_write_prodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest ? "prodml22:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest ? "prodml23:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml22__MultipleContactMiscibilityTest const*p) +inline int soap_PUT_prodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml23__MultipleContactMiscibilityTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest ? "prodml22:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest ? "prodml23:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml22__MultipleContactMiscibilityTest const*p) +inline int soap_PATCH_prodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml23__MultipleContactMiscibilityTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest ? "prodml22:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest ? "prodml23:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml22__MultipleContactMiscibilityTest const*p) +inline int soap_POST_send_prodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml23__MultipleContactMiscibilityTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest ? "prodml22:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MultipleContactMiscibilityTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest ? "prodml23:MultipleContactMiscibilityTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_get_prodml22__MultipleContactMiscibilityTest(struct soap*, prodml22__MultipleContactMiscibilityTest *, const char*, const char*); +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC4 soap_get_prodml23__MultipleContactMiscibilityTest(struct soap*, prodml23__MultipleContactMiscibilityTest *, const char*, const char*); -inline int soap_read_prodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest *p) +inline int soap_read_prodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MultipleContactMiscibilityTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MultipleContactMiscibilityTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml22__MultipleContactMiscibilityTest *p) +inline int soap_GET_prodml23__MultipleContactMiscibilityTest(struct soap *soap, const char *URL, prodml23__MultipleContactMiscibilityTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MultipleContactMiscibilityTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MultipleContactMiscibilityTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MultipleContactMiscibilityTest(struct soap *soap, prodml22__MultipleContactMiscibilityTest *p) +inline int soap_POST_recv_prodml23__MultipleContactMiscibilityTest(struct soap *soap, prodml23__MultipleContactMiscibilityTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__MultipleContactMiscibilityTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MultipleContactMiscibilityTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MassOut(struct soap*, const char*, int, const prodml22__MassOut *, const char*); -SOAP_FMAC3 prodml22__MassOut * SOAP_FMAC4 soap_in_prodml22__MassOut(struct soap*, const char*, prodml22__MassOut *, const char*); -SOAP_FMAC1 prodml22__MassOut * SOAP_FMAC2 soap_instantiate_prodml22__MassOut(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MassOut(struct soap*, const char*, int, const prodml23__MassOut *, const char*); +SOAP_FMAC3 prodml23__MassOut * SOAP_FMAC4 soap_in_prodml23__MassOut(struct soap*, const char*, prodml23__MassOut *, const char*); +SOAP_FMAC1 prodml23__MassOut * SOAP_FMAC2 soap_instantiate_prodml23__MassOut(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MassOut * soap_new_prodml22__MassOut(struct soap *soap, int n = -1) +inline prodml23__MassOut * soap_new_prodml23__MassOut(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MassOut(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MassOut(soap, n, NULL, NULL, NULL); } -inline prodml22__MassOut * soap_new_req_prodml22__MassOut( +inline prodml23__MassOut * soap_new_req_prodml23__MassOut( struct soap *soap) { - prodml22__MassOut *_p = gsoap_eml2_3::soap_new_prodml22__MassOut(soap); + prodml23__MassOut *_p = gsoap_eml2_3::soap_new_prodml23__MassOut(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__MassOut * soap_new_set_prodml22__MassOut( +inline prodml23__MassOut * soap_new_set_prodml23__MassOut( struct soap *soap, eml23__MassMeasure *MassEffluentStockTankOil, eml23__MassMeasure *MassProducedEffluentGas, @@ -127804,482 +127776,482 @@ inline prodml22__MassOut * soap_new_set_prodml22__MassOut( eml23__MassMeasure *MassProducedEffluentGasFlowDown, eml23__MassMeasure *TotalMassOut) { - prodml22__MassOut *_p = gsoap_eml2_3::soap_new_prodml22__MassOut(soap); + prodml23__MassOut *_p = gsoap_eml2_3::soap_new_prodml23__MassOut(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MassOut::MassEffluentStockTankOil = MassEffluentStockTankOil; - _p->prodml22__MassOut::MassProducedEffluentGas = MassProducedEffluentGas; - _p->prodml22__MassOut::MassResidualOil = MassResidualOil; - _p->prodml22__MassOut::MassProducedEffluentGasFlowDown = MassProducedEffluentGasFlowDown; - _p->prodml22__MassOut::TotalMassOut = TotalMassOut; + _p->prodml23__MassOut::MassEffluentStockTankOil = MassEffluentStockTankOil; + _p->prodml23__MassOut::MassProducedEffluentGas = MassProducedEffluentGas; + _p->prodml23__MassOut::MassResidualOil = MassResidualOil; + _p->prodml23__MassOut::MassProducedEffluentGasFlowDown = MassProducedEffluentGasFlowDown; + _p->prodml23__MassOut::TotalMassOut = TotalMassOut; } return _p; } -inline int soap_write_prodml22__MassOut(struct soap *soap, prodml22__MassOut const*p) +inline int soap_write_prodml23__MassOut(struct soap *soap, prodml23__MassOut const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut ? "prodml22:MassOut" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut ? "prodml23:MassOut" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MassOut(struct soap *soap, const char *URL, prodml22__MassOut const*p) +inline int soap_PUT_prodml23__MassOut(struct soap *soap, const char *URL, prodml23__MassOut const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut ? "prodml22:MassOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut ? "prodml23:MassOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MassOut(struct soap *soap, const char *URL, prodml22__MassOut const*p) +inline int soap_PATCH_prodml23__MassOut(struct soap *soap, const char *URL, prodml23__MassOut const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut ? "prodml22:MassOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut ? "prodml23:MassOut" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MassOut(struct soap *soap, const char *URL, prodml22__MassOut const*p) +inline int soap_POST_send_prodml23__MassOut(struct soap *soap, const char *URL, prodml23__MassOut const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut ? "prodml22:MassOut" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassOut", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut ? "prodml23:MassOut" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MassOut * SOAP_FMAC4 soap_get_prodml22__MassOut(struct soap*, prodml22__MassOut *, const char*, const char*); +SOAP_FMAC3 prodml23__MassOut * SOAP_FMAC4 soap_get_prodml23__MassOut(struct soap*, prodml23__MassOut *, const char*, const char*); -inline int soap_read_prodml22__MassOut(struct soap *soap, prodml22__MassOut *p) +inline int soap_read_prodml23__MassOut(struct soap *soap, prodml23__MassOut *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MassOut(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MassOut(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MassOut(struct soap *soap, const char *URL, prodml22__MassOut *p) +inline int soap_GET_prodml23__MassOut(struct soap *soap, const char *URL, prodml23__MassOut *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MassOut(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MassOut(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MassOut(struct soap *soap, prodml22__MassOut *p) +inline int soap_POST_recv_prodml23__MassOut(struct soap *soap, prodml23__MassOut *p) { - if (gsoap_eml2_3::soap_read_prodml22__MassOut(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MassOut(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MassIn(struct soap*, const char*, int, const prodml22__MassIn *, const char*); -SOAP_FMAC3 prodml22__MassIn * SOAP_FMAC4 soap_in_prodml22__MassIn(struct soap*, const char*, prodml22__MassIn *, const char*); -SOAP_FMAC1 prodml22__MassIn * SOAP_FMAC2 soap_instantiate_prodml22__MassIn(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MassIn(struct soap*, const char*, int, const prodml23__MassIn *, const char*); +SOAP_FMAC3 prodml23__MassIn * SOAP_FMAC4 soap_in_prodml23__MassIn(struct soap*, const char*, prodml23__MassIn *, const char*); +SOAP_FMAC1 prodml23__MassIn * SOAP_FMAC2 soap_instantiate_prodml23__MassIn(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MassIn * soap_new_prodml22__MassIn(struct soap *soap, int n = -1) +inline prodml23__MassIn * soap_new_prodml23__MassIn(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MassIn(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MassIn(soap, n, NULL, NULL, NULL); } -inline prodml22__MassIn * soap_new_req_prodml22__MassIn( +inline prodml23__MassIn * soap_new_req_prodml23__MassIn( struct soap *soap) { - prodml22__MassIn *_p = gsoap_eml2_3::soap_new_prodml22__MassIn(soap); + prodml23__MassIn *_p = gsoap_eml2_3::soap_new_prodml23__MassIn(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__MassIn * soap_new_set_prodml22__MassIn( +inline prodml23__MassIn * soap_new_set_prodml23__MassIn( struct soap *soap, eml23__MassMeasure *MassFluidSlimtube, eml23__MassMeasure *MassFluidConnectingLines, eml23__MassMeasure *MassInjectedGasSolvent, eml23__MassMeasure *TotalMassIn) { - prodml22__MassIn *_p = gsoap_eml2_3::soap_new_prodml22__MassIn(soap); + prodml23__MassIn *_p = gsoap_eml2_3::soap_new_prodml23__MassIn(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MassIn::MassFluidSlimtube = MassFluidSlimtube; - _p->prodml22__MassIn::MassFluidConnectingLines = MassFluidConnectingLines; - _p->prodml22__MassIn::MassInjectedGasSolvent = MassInjectedGasSolvent; - _p->prodml22__MassIn::TotalMassIn = TotalMassIn; + _p->prodml23__MassIn::MassFluidSlimtube = MassFluidSlimtube; + _p->prodml23__MassIn::MassFluidConnectingLines = MassFluidConnectingLines; + _p->prodml23__MassIn::MassInjectedGasSolvent = MassInjectedGasSolvent; + _p->prodml23__MassIn::TotalMassIn = TotalMassIn; } return _p; } -inline int soap_write_prodml22__MassIn(struct soap *soap, prodml22__MassIn const*p) +inline int soap_write_prodml23__MassIn(struct soap *soap, prodml23__MassIn const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn ? "prodml22:MassIn" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn ? "prodml23:MassIn" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MassIn(struct soap *soap, const char *URL, prodml22__MassIn const*p) +inline int soap_PUT_prodml23__MassIn(struct soap *soap, const char *URL, prodml23__MassIn const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn ? "prodml22:MassIn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn ? "prodml23:MassIn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MassIn(struct soap *soap, const char *URL, prodml22__MassIn const*p) +inline int soap_PATCH_prodml23__MassIn(struct soap *soap, const char *URL, prodml23__MassIn const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn ? "prodml22:MassIn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn ? "prodml23:MassIn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MassIn(struct soap *soap, const char *URL, prodml22__MassIn const*p) +inline int soap_POST_send_prodml23__MassIn(struct soap *soap, const char *URL, prodml23__MassIn const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn ? "prodml22:MassIn" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassIn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn ? "prodml23:MassIn" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MassIn * SOAP_FMAC4 soap_get_prodml22__MassIn(struct soap*, prodml22__MassIn *, const char*, const char*); +SOAP_FMAC3 prodml23__MassIn * SOAP_FMAC4 soap_get_prodml23__MassIn(struct soap*, prodml23__MassIn *, const char*, const char*); -inline int soap_read_prodml22__MassIn(struct soap *soap, prodml22__MassIn *p) +inline int soap_read_prodml23__MassIn(struct soap *soap, prodml23__MassIn *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MassIn(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MassIn(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MassIn(struct soap *soap, const char *URL, prodml22__MassIn *p) +inline int soap_GET_prodml23__MassIn(struct soap *soap, const char *URL, prodml23__MassIn *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MassIn(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MassIn(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MassIn(struct soap *soap, prodml22__MassIn *p) +inline int soap_POST_recv_prodml23__MassIn(struct soap *soap, prodml23__MassIn *p) { - if (gsoap_eml2_3::soap_read_prodml22__MassIn(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MassIn(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MassBalance(struct soap*, const char*, int, const prodml22__MassBalance *, const char*); -SOAP_FMAC3 prodml22__MassBalance * SOAP_FMAC4 soap_in_prodml22__MassBalance(struct soap*, const char*, prodml22__MassBalance *, const char*); -SOAP_FMAC1 prodml22__MassBalance * SOAP_FMAC2 soap_instantiate_prodml22__MassBalance(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MassBalance(struct soap*, const char*, int, const prodml23__MassBalance *, const char*); +SOAP_FMAC3 prodml23__MassBalance * SOAP_FMAC4 soap_in_prodml23__MassBalance(struct soap*, const char*, prodml23__MassBalance *, const char*); +SOAP_FMAC1 prodml23__MassBalance * SOAP_FMAC2 soap_instantiate_prodml23__MassBalance(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MassBalance * soap_new_prodml22__MassBalance(struct soap *soap, int n = -1) +inline prodml23__MassBalance * soap_new_prodml23__MassBalance(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MassBalance(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MassBalance(soap, n, NULL, NULL, NULL); } -inline prodml22__MassBalance * soap_new_req_prodml22__MassBalance( +inline prodml23__MassBalance * soap_new_req_prodml23__MassBalance( struct soap *soap) { - prodml22__MassBalance *_p = gsoap_eml2_3::soap_new_prodml22__MassBalance(soap); + prodml23__MassBalance *_p = gsoap_eml2_3::soap_new_prodml23__MassBalance(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__MassBalance * soap_new_set_prodml22__MassBalance( +inline prodml23__MassBalance * soap_new_set_prodml23__MassBalance( struct soap *soap, eml23__MassPerMassMeasure *MassBalanceFraction, std::string *Remark, - prodml22__MassIn *MassIn, - prodml22__MassOut *MassOut) + prodml23__MassIn *MassIn, + prodml23__MassOut *MassOut) { - prodml22__MassBalance *_p = gsoap_eml2_3::soap_new_prodml22__MassBalance(soap); + prodml23__MassBalance *_p = gsoap_eml2_3::soap_new_prodml23__MassBalance(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MassBalance::MassBalanceFraction = MassBalanceFraction; - _p->prodml22__MassBalance::Remark = Remark; - _p->prodml22__MassBalance::MassIn = MassIn; - _p->prodml22__MassBalance::MassOut = MassOut; + _p->prodml23__MassBalance::MassBalanceFraction = MassBalanceFraction; + _p->prodml23__MassBalance::Remark = Remark; + _p->prodml23__MassBalance::MassIn = MassIn; + _p->prodml23__MassBalance::MassOut = MassOut; } return _p; } -inline int soap_write_prodml22__MassBalance(struct soap *soap, prodml22__MassBalance const*p) +inline int soap_write_prodml23__MassBalance(struct soap *soap, prodml23__MassBalance const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance ? "prodml22:MassBalance" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance ? "prodml23:MassBalance" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MassBalance(struct soap *soap, const char *URL, prodml22__MassBalance const*p) +inline int soap_PUT_prodml23__MassBalance(struct soap *soap, const char *URL, prodml23__MassBalance const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance ? "prodml22:MassBalance" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance ? "prodml23:MassBalance" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MassBalance(struct soap *soap, const char *URL, prodml22__MassBalance const*p) +inline int soap_PATCH_prodml23__MassBalance(struct soap *soap, const char *URL, prodml23__MassBalance const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance ? "prodml22:MassBalance" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance ? "prodml23:MassBalance" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MassBalance(struct soap *soap, const char *URL, prodml22__MassBalance const*p) +inline int soap_POST_send_prodml23__MassBalance(struct soap *soap, const char *URL, prodml23__MassBalance const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance ? "prodml22:MassBalance" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MassBalance", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance ? "prodml23:MassBalance" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MassBalance * SOAP_FMAC4 soap_get_prodml22__MassBalance(struct soap*, prodml22__MassBalance *, const char*, const char*); +SOAP_FMAC3 prodml23__MassBalance * SOAP_FMAC4 soap_get_prodml23__MassBalance(struct soap*, prodml23__MassBalance *, const char*, const char*); -inline int soap_read_prodml22__MassBalance(struct soap *soap, prodml22__MassBalance *p) +inline int soap_read_prodml23__MassBalance(struct soap *soap, prodml23__MassBalance *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MassBalance(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MassBalance(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MassBalance(struct soap *soap, const char *URL, prodml22__MassBalance *p) +inline int soap_GET_prodml23__MassBalance(struct soap *soap, const char *URL, prodml23__MassBalance *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MassBalance(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MassBalance(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MassBalance(struct soap *soap, prodml22__MassBalance *p) +inline int soap_POST_recv_prodml23__MassBalance(struct soap *soap, prodml23__MassBalance *p) { - if (gsoap_eml2_3::soap_read_prodml22__MassBalance(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MassBalance(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LiquidVolume(struct soap*, const char*, int, const prodml22__LiquidVolume *, const char*); -SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_in_prodml22__LiquidVolume(struct soap*, const char*, prodml22__LiquidVolume *, const char*); -SOAP_FMAC1 prodml22__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml22__LiquidVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LiquidVolume(struct soap*, const char*, int, const prodml23__LiquidVolume *, const char*); +SOAP_FMAC3 prodml23__LiquidVolume * SOAP_FMAC4 soap_in_prodml23__LiquidVolume(struct soap*, const char*, prodml23__LiquidVolume *, const char*); +SOAP_FMAC1 prodml23__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml23__LiquidVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LiquidVolume * soap_new_prodml22__LiquidVolume(struct soap *soap, int n = -1) +inline prodml23__LiquidVolume * soap_new_prodml23__LiquidVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LiquidVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LiquidVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__LiquidVolume * soap_new_req_prodml22__LiquidVolume( +inline prodml23__LiquidVolume * soap_new_req_prodml23__LiquidVolume( struct soap *soap, eml23__VolumeMeasure *LiquidVolume) { - prodml22__LiquidVolume *_p = gsoap_eml2_3::soap_new_prodml22__LiquidVolume(soap); + prodml23__LiquidVolume *_p = gsoap_eml2_3::soap_new_prodml23__LiquidVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LiquidVolume::LiquidVolume = LiquidVolume; + _p->prodml23__LiquidVolume::LiquidVolume = LiquidVolume; } return _p; } -inline prodml22__LiquidVolume * soap_new_set_prodml22__LiquidVolume( +inline prodml23__LiquidVolume * soap_new_set_prodml23__LiquidVolume( struct soap *soap, eml23__VolumeMeasure *LiquidVolume) { - prodml22__LiquidVolume *_p = gsoap_eml2_3::soap_new_prodml22__LiquidVolume(soap); + prodml23__LiquidVolume *_p = gsoap_eml2_3::soap_new_prodml23__LiquidVolume(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LiquidVolume::LiquidVolume = LiquidVolume; + _p->prodml23__LiquidVolume::LiquidVolume = LiquidVolume; } return _p; } -inline int soap_write_prodml22__LiquidVolume(struct soap *soap, prodml22__LiquidVolume const*p) +inline int soap_write_prodml23__LiquidVolume(struct soap *soap, prodml23__LiquidVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume ? "prodml22:LiquidVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume ? "prodml23:LiquidVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LiquidVolume(struct soap *soap, const char *URL, prodml22__LiquidVolume const*p) +inline int soap_PUT_prodml23__LiquidVolume(struct soap *soap, const char *URL, prodml23__LiquidVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume ? "prodml22:LiquidVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume ? "prodml23:LiquidVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LiquidVolume(struct soap *soap, const char *URL, prodml22__LiquidVolume const*p) +inline int soap_PATCH_prodml23__LiquidVolume(struct soap *soap, const char *URL, prodml23__LiquidVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume ? "prodml22:LiquidVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume ? "prodml23:LiquidVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LiquidVolume(struct soap *soap, const char *URL, prodml22__LiquidVolume const*p) +inline int soap_POST_send_prodml23__LiquidVolume(struct soap *soap, const char *URL, prodml23__LiquidVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume ? "prodml22:LiquidVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume ? "prodml23:LiquidVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LiquidVolume * SOAP_FMAC4 soap_get_prodml22__LiquidVolume(struct soap*, prodml22__LiquidVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__LiquidVolume * SOAP_FMAC4 soap_get_prodml23__LiquidVolume(struct soap*, prodml23__LiquidVolume *, const char*, const char*); -inline int soap_read_prodml22__LiquidVolume(struct soap *soap, prodml22__LiquidVolume *p) +inline int soap_read_prodml23__LiquidVolume(struct soap *soap, prodml23__LiquidVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LiquidVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LiquidVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LiquidVolume(struct soap *soap, const char *URL, prodml22__LiquidVolume *p) +inline int soap_GET_prodml23__LiquidVolume(struct soap *soap, const char *URL, prodml23__LiquidVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LiquidVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LiquidVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LiquidVolume(struct soap *soap, prodml22__LiquidVolume *p) +inline int soap_POST_recv_prodml23__LiquidVolume(struct soap *soap, prodml23__LiquidVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__LiquidVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LiquidVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LiquidDropoutFraction(struct soap*, const char*, int, const prodml22__LiquidDropoutFraction *, const char*); -SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml22__LiquidDropoutFraction(struct soap*, const char*, prodml22__LiquidDropoutFraction *, const char*); -SOAP_FMAC1 prodml22__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml22__LiquidDropoutFraction(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LiquidDropoutFraction(struct soap*, const char*, int, const prodml23__LiquidDropoutFraction *, const char*); +SOAP_FMAC3 prodml23__LiquidDropoutFraction * SOAP_FMAC4 soap_in_prodml23__LiquidDropoutFraction(struct soap*, const char*, prodml23__LiquidDropoutFraction *, const char*); +SOAP_FMAC1 prodml23__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml23__LiquidDropoutFraction(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LiquidDropoutFraction * soap_new_prodml22__LiquidDropoutFraction(struct soap *soap, int n = -1) +inline prodml23__LiquidDropoutFraction * soap_new_prodml23__LiquidDropoutFraction(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LiquidDropoutFraction(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LiquidDropoutFraction(soap, n, NULL, NULL, NULL); } -inline prodml22__LiquidDropoutFraction * soap_new_req_prodml22__LiquidDropoutFraction( +inline prodml23__LiquidDropoutFraction * soap_new_req_prodml23__LiquidDropoutFraction( struct soap *soap, eml23__VolumePerVolumeMeasure *LiquidDropoutPercent) { - prodml22__LiquidDropoutFraction *_p = gsoap_eml2_3::soap_new_prodml22__LiquidDropoutFraction(soap); + prodml23__LiquidDropoutFraction *_p = gsoap_eml2_3::soap_new_prodml23__LiquidDropoutFraction(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LiquidDropoutFraction::LiquidDropoutPercent = LiquidDropoutPercent; + _p->prodml23__LiquidDropoutFraction::LiquidDropoutPercent = LiquidDropoutPercent; } return _p; } -inline prodml22__LiquidDropoutFraction * soap_new_set_prodml22__LiquidDropoutFraction( +inline prodml23__LiquidDropoutFraction * soap_new_set_prodml23__LiquidDropoutFraction( struct soap *soap, eml23__VolumePerVolumeMeasure *LiquidDropoutPercent) { - prodml22__LiquidDropoutFraction *_p = gsoap_eml2_3::soap_new_prodml22__LiquidDropoutFraction(soap); + prodml23__LiquidDropoutFraction *_p = gsoap_eml2_3::soap_new_prodml23__LiquidDropoutFraction(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LiquidDropoutFraction::LiquidDropoutPercent = LiquidDropoutPercent; + _p->prodml23__LiquidDropoutFraction::LiquidDropoutPercent = LiquidDropoutPercent; } return _p; } -inline int soap_write_prodml22__LiquidDropoutFraction(struct soap *soap, prodml22__LiquidDropoutFraction const*p) +inline int soap_write_prodml23__LiquidDropoutFraction(struct soap *soap, prodml23__LiquidDropoutFraction const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction ? "prodml22:LiquidDropoutFraction" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction ? "prodml23:LiquidDropoutFraction" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml22__LiquidDropoutFraction const*p) +inline int soap_PUT_prodml23__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml23__LiquidDropoutFraction const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction ? "prodml22:LiquidDropoutFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction ? "prodml23:LiquidDropoutFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml22__LiquidDropoutFraction const*p) +inline int soap_PATCH_prodml23__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml23__LiquidDropoutFraction const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction ? "prodml22:LiquidDropoutFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction ? "prodml23:LiquidDropoutFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml22__LiquidDropoutFraction const*p) +inline int soap_POST_send_prodml23__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml23__LiquidDropoutFraction const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction ? "prodml22:LiquidDropoutFraction" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidDropoutFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction ? "prodml23:LiquidDropoutFraction" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LiquidDropoutFraction * SOAP_FMAC4 soap_get_prodml22__LiquidDropoutFraction(struct soap*, prodml22__LiquidDropoutFraction *, const char*, const char*); +SOAP_FMAC3 prodml23__LiquidDropoutFraction * SOAP_FMAC4 soap_get_prodml23__LiquidDropoutFraction(struct soap*, prodml23__LiquidDropoutFraction *, const char*, const char*); -inline int soap_read_prodml22__LiquidDropoutFraction(struct soap *soap, prodml22__LiquidDropoutFraction *p) +inline int soap_read_prodml23__LiquidDropoutFraction(struct soap *soap, prodml23__LiquidDropoutFraction *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LiquidDropoutFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LiquidDropoutFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml22__LiquidDropoutFraction *p) +inline int soap_GET_prodml23__LiquidDropoutFraction(struct soap *soap, const char *URL, prodml23__LiquidDropoutFraction *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LiquidDropoutFraction(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LiquidDropoutFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LiquidDropoutFraction(struct soap *soap, prodml22__LiquidDropoutFraction *p) +inline int soap_POST_recv_prodml23__LiquidDropoutFraction(struct soap *soap, prodml23__LiquidDropoutFraction *p) { - if (gsoap_eml2_3::soap_read_prodml22__LiquidDropoutFraction(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LiquidDropoutFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterfacialTensionTestStep(struct soap*, const char*, int, const prodml22__InterfacialTensionTestStep *, const char*); -SOAP_FMAC3 prodml22__InterfacialTensionTestStep * SOAP_FMAC4 soap_in_prodml22__InterfacialTensionTestStep(struct soap*, const char*, prodml22__InterfacialTensionTestStep *, const char*); -SOAP_FMAC1 prodml22__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_prodml22__InterfacialTensionTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterfacialTensionTestStep(struct soap*, const char*, int, const prodml23__InterfacialTensionTestStep *, const char*); +SOAP_FMAC3 prodml23__InterfacialTensionTestStep * SOAP_FMAC4 soap_in_prodml23__InterfacialTensionTestStep(struct soap*, const char*, prodml23__InterfacialTensionTestStep *, const char*); +SOAP_FMAC1 prodml23__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_prodml23__InterfacialTensionTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InterfacialTensionTestStep * soap_new_prodml22__InterfacialTensionTestStep(struct soap *soap, int n = -1) +inline prodml23__InterfacialTensionTestStep * soap_new_prodml23__InterfacialTensionTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InterfacialTensionTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InterfacialTensionTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__InterfacialTensionTestStep * soap_new_req_prodml22__InterfacialTensionTestStep( +inline prodml23__InterfacialTensionTestStep * soap_new_req_prodml23__InterfacialTensionTestStep( struct soap *soap, LONG64 StepNumber, const std::string& uid) { - prodml22__InterfacialTensionTestStep *_p = gsoap_eml2_3::soap_new_prodml22__InterfacialTensionTestStep(soap); + prodml23__InterfacialTensionTestStep *_p = gsoap_eml2_3::soap_new_prodml23__InterfacialTensionTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterfacialTensionTestStep::StepNumber = StepNumber; - _p->prodml22__InterfacialTensionTestStep::uid = uid; + _p->prodml23__InterfacialTensionTestStep::StepNumber = StepNumber; + _p->prodml23__InterfacialTensionTestStep::uid = uid; } return _p; } -inline prodml22__InterfacialTensionTestStep * soap_new_set_prodml22__InterfacialTensionTestStep( +inline prodml23__InterfacialTensionTestStep * soap_new_set_prodml23__InterfacialTensionTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, @@ -128290,313 +128262,313 @@ inline prodml22__InterfacialTensionTestStep * soap_new_set_prodml22__Interfacial std::string *Remark, const std::string& uid) { - prodml22__InterfacialTensionTestStep *_p = gsoap_eml2_3::soap_new_prodml22__InterfacialTensionTestStep(soap); + prodml23__InterfacialTensionTestStep *_p = gsoap_eml2_3::soap_new_prodml23__InterfacialTensionTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterfacialTensionTestStep::StepNumber = StepNumber; - _p->prodml22__InterfacialTensionTestStep::StepPressure = StepPressure; - _p->prodml22__InterfacialTensionTestStep::StepTemperature = StepTemperature; - _p->prodml22__InterfacialTensionTestStep::WettingPhaseSaturation = WettingPhaseSaturation; - _p->prodml22__InterfacialTensionTestStep::SurfactantConcentration = SurfactantConcentration; - _p->prodml22__InterfacialTensionTestStep::InterfacialTension = InterfacialTension; - _p->prodml22__InterfacialTensionTestStep::Remark = Remark; - _p->prodml22__InterfacialTensionTestStep::uid = uid; + _p->prodml23__InterfacialTensionTestStep::StepNumber = StepNumber; + _p->prodml23__InterfacialTensionTestStep::StepPressure = StepPressure; + _p->prodml23__InterfacialTensionTestStep::StepTemperature = StepTemperature; + _p->prodml23__InterfacialTensionTestStep::WettingPhaseSaturation = WettingPhaseSaturation; + _p->prodml23__InterfacialTensionTestStep::SurfactantConcentration = SurfactantConcentration; + _p->prodml23__InterfacialTensionTestStep::InterfacialTension = InterfacialTension; + _p->prodml23__InterfacialTensionTestStep::Remark = Remark; + _p->prodml23__InterfacialTensionTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep const*p) +inline int soap_write_prodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep ? "prodml22:InterfacialTensionTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep ? "prodml23:InterfacialTensionTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml22__InterfacialTensionTestStep const*p) +inline int soap_PUT_prodml23__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml23__InterfacialTensionTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep ? "prodml22:InterfacialTensionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep ? "prodml23:InterfacialTensionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml22__InterfacialTensionTestStep const*p) +inline int soap_PATCH_prodml23__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml23__InterfacialTensionTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep ? "prodml22:InterfacialTensionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep ? "prodml23:InterfacialTensionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml22__InterfacialTensionTestStep const*p) +inline int soap_POST_send_prodml23__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml23__InterfacialTensionTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep ? "prodml22:InterfacialTensionTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep ? "prodml23:InterfacialTensionTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InterfacialTensionTestStep * SOAP_FMAC4 soap_get_prodml22__InterfacialTensionTestStep(struct soap*, prodml22__InterfacialTensionTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__InterfacialTensionTestStep * SOAP_FMAC4 soap_get_prodml23__InterfacialTensionTestStep(struct soap*, prodml23__InterfacialTensionTestStep *, const char*, const char*); -inline int soap_read_prodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep *p) +inline int soap_read_prodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InterfacialTensionTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InterfacialTensionTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml22__InterfacialTensionTestStep *p) +inline int soap_GET_prodml23__InterfacialTensionTestStep(struct soap *soap, const char *URL, prodml23__InterfacialTensionTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InterfacialTensionTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InterfacialTensionTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InterfacialTensionTestStep(struct soap *soap, prodml22__InterfacialTensionTestStep *p) +inline int soap_POST_recv_prodml23__InterfacialTensionTestStep(struct soap *soap, prodml23__InterfacialTensionTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__InterfacialTensionTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InterfacialTensionTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InterfacialTensionTest(struct soap*, const char*, int, const prodml22__InterfacialTensionTest *, const char*); -SOAP_FMAC3 prodml22__InterfacialTensionTest * SOAP_FMAC4 soap_in_prodml22__InterfacialTensionTest(struct soap*, const char*, prodml22__InterfacialTensionTest *, const char*); -SOAP_FMAC1 prodml22__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml22__InterfacialTensionTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InterfacialTensionTest(struct soap*, const char*, int, const prodml23__InterfacialTensionTest *, const char*); +SOAP_FMAC3 prodml23__InterfacialTensionTest * SOAP_FMAC4 soap_in_prodml23__InterfacialTensionTest(struct soap*, const char*, prodml23__InterfacialTensionTest *, const char*); +SOAP_FMAC1 prodml23__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml23__InterfacialTensionTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InterfacialTensionTest * soap_new_prodml22__InterfacialTensionTest(struct soap *soap, int n = -1) +inline prodml23__InterfacialTensionTest * soap_new_prodml23__InterfacialTensionTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InterfacialTensionTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InterfacialTensionTest(soap, n, NULL, NULL, NULL); } -inline prodml22__InterfacialTensionTest * soap_new_req_prodml22__InterfacialTensionTest( +inline prodml23__InterfacialTensionTest * soap_new_req_prodml23__InterfacialTensionTest( struct soap *soap, LONG64 TestNumber, - prodml22__ThermodynamicPhase WettingPhase, - prodml22__ThermodynamicPhase nonWettingPhase, + prodml23__ThermodynamicPhase WettingPhase, + prodml23__ThermodynamicPhase nonWettingPhase, const std::string& uid) { - prodml22__InterfacialTensionTest *_p = gsoap_eml2_3::soap_new_prodml22__InterfacialTensionTest(soap); + prodml23__InterfacialTensionTest *_p = gsoap_eml2_3::soap_new_prodml23__InterfacialTensionTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterfacialTensionTest::TestNumber = TestNumber; - _p->prodml22__InterfacialTensionTest::WettingPhase = WettingPhase; - _p->prodml22__InterfacialTensionTest::nonWettingPhase = nonWettingPhase; - _p->prodml22__InterfacialTensionTest::uid = uid; + _p->prodml23__InterfacialTensionTest::TestNumber = TestNumber; + _p->prodml23__InterfacialTensionTest::WettingPhase = WettingPhase; + _p->prodml23__InterfacialTensionTest::nonWettingPhase = nonWettingPhase; + _p->prodml23__InterfacialTensionTest::uid = uid; } return _p; } -inline prodml22__InterfacialTensionTest * soap_new_set_prodml22__InterfacialTensionTest( +inline prodml23__InterfacialTensionTest * soap_new_set_prodml23__InterfacialTensionTest( struct soap *soap, LONG64 TestNumber, - prodml22__ThermodynamicPhase WettingPhase, - prodml22__ThermodynamicPhase nonWettingPhase, - prodml22__AbstractFluidComponent *Surfactant, + prodml23__ThermodynamicPhase WettingPhase, + prodml23__ThermodynamicPhase nonWettingPhase, + prodml23__AbstractFluidComponent *Surfactant, std::string *Remark, - const std::vector & InterfacialTensionTestStep, + const std::vector & InterfacialTensionTestStep, const std::string& uid) { - prodml22__InterfacialTensionTest *_p = gsoap_eml2_3::soap_new_prodml22__InterfacialTensionTest(soap); + prodml23__InterfacialTensionTest *_p = gsoap_eml2_3::soap_new_prodml23__InterfacialTensionTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InterfacialTensionTest::TestNumber = TestNumber; - _p->prodml22__InterfacialTensionTest::WettingPhase = WettingPhase; - _p->prodml22__InterfacialTensionTest::nonWettingPhase = nonWettingPhase; - _p->prodml22__InterfacialTensionTest::Surfactant = Surfactant; - _p->prodml22__InterfacialTensionTest::Remark = Remark; - _p->prodml22__InterfacialTensionTest::InterfacialTensionTestStep = InterfacialTensionTestStep; - _p->prodml22__InterfacialTensionTest::uid = uid; + _p->prodml23__InterfacialTensionTest::TestNumber = TestNumber; + _p->prodml23__InterfacialTensionTest::WettingPhase = WettingPhase; + _p->prodml23__InterfacialTensionTest::nonWettingPhase = nonWettingPhase; + _p->prodml23__InterfacialTensionTest::Surfactant = Surfactant; + _p->prodml23__InterfacialTensionTest::Remark = Remark; + _p->prodml23__InterfacialTensionTest::InterfacialTensionTestStep = InterfacialTensionTestStep; + _p->prodml23__InterfacialTensionTest::uid = uid; } return _p; } -inline int soap_write_prodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest const*p) +inline int soap_write_prodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest ? "prodml22:InterfacialTensionTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest ? "prodml23:InterfacialTensionTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InterfacialTensionTest(struct soap *soap, const char *URL, prodml22__InterfacialTensionTest const*p) +inline int soap_PUT_prodml23__InterfacialTensionTest(struct soap *soap, const char *URL, prodml23__InterfacialTensionTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest ? "prodml22:InterfacialTensionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest ? "prodml23:InterfacialTensionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InterfacialTensionTest(struct soap *soap, const char *URL, prodml22__InterfacialTensionTest const*p) +inline int soap_PATCH_prodml23__InterfacialTensionTest(struct soap *soap, const char *URL, prodml23__InterfacialTensionTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest ? "prodml22:InterfacialTensionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest ? "prodml23:InterfacialTensionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InterfacialTensionTest(struct soap *soap, const char *URL, prodml22__InterfacialTensionTest const*p) +inline int soap_POST_send_prodml23__InterfacialTensionTest(struct soap *soap, const char *URL, prodml23__InterfacialTensionTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest ? "prodml22:InterfacialTensionTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InterfacialTensionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest ? "prodml23:InterfacialTensionTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InterfacialTensionTest * SOAP_FMAC4 soap_get_prodml22__InterfacialTensionTest(struct soap*, prodml22__InterfacialTensionTest *, const char*, const char*); +SOAP_FMAC3 prodml23__InterfacialTensionTest * SOAP_FMAC4 soap_get_prodml23__InterfacialTensionTest(struct soap*, prodml23__InterfacialTensionTest *, const char*, const char*); -inline int soap_read_prodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest *p) +inline int soap_read_prodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InterfacialTensionTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InterfacialTensionTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InterfacialTensionTest(struct soap *soap, const char *URL, prodml22__InterfacialTensionTest *p) +inline int soap_GET_prodml23__InterfacialTensionTest(struct soap *soap, const char *URL, prodml23__InterfacialTensionTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InterfacialTensionTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InterfacialTensionTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InterfacialTensionTest(struct soap *soap, prodml22__InterfacialTensionTest *p) +inline int soap_POST_recv_prodml23__InterfacialTensionTest(struct soap *soap, prodml23__InterfacialTensionTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__InterfacialTensionTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InterfacialTensionTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__InjectedGas(struct soap*, const char*, int, const prodml22__InjectedGas *, const char*); -SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_in_prodml22__InjectedGas(struct soap*, const char*, prodml22__InjectedGas *, const char*); -SOAP_FMAC1 prodml22__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml22__InjectedGas(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__InjectedGas(struct soap*, const char*, int, const prodml23__InjectedGas *, const char*); +SOAP_FMAC3 prodml23__InjectedGas * SOAP_FMAC4 soap_in_prodml23__InjectedGas(struct soap*, const char*, prodml23__InjectedGas *, const char*); +SOAP_FMAC1 prodml23__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml23__InjectedGas(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__InjectedGas * soap_new_prodml22__InjectedGas(struct soap *soap, int n = -1) +inline prodml23__InjectedGas * soap_new_prodml23__InjectedGas(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__InjectedGas(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__InjectedGas(soap, n, NULL, NULL, NULL); } -inline prodml22__InjectedGas * soap_new_req_prodml22__InjectedGas( +inline prodml23__InjectedGas * soap_new_req_prodml23__InjectedGas( struct soap *soap, - prodml22__VaporComposition *VaporComposition, + prodml23__VaporComposition *VaporComposition, const std::string& uid) { - prodml22__InjectedGas *_p = gsoap_eml2_3::soap_new_prodml22__InjectedGas(soap); + prodml23__InjectedGas *_p = gsoap_eml2_3::soap_new_prodml23__InjectedGas(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InjectedGas::VaporComposition = VaporComposition; - _p->prodml22__InjectedGas::uid = uid; + _p->prodml23__InjectedGas::VaporComposition = VaporComposition; + _p->prodml23__InjectedGas::uid = uid; } return _p; } -inline prodml22__InjectedGas * soap_new_set_prodml22__InjectedGas( +inline prodml23__InjectedGas * soap_new_set_prodml23__InjectedGas( struct soap *soap, - prodml22__VaporComposition *VaporComposition, + prodml23__VaporComposition *VaporComposition, const std::string& uid) { - prodml22__InjectedGas *_p = gsoap_eml2_3::soap_new_prodml22__InjectedGas(soap); + prodml23__InjectedGas *_p = gsoap_eml2_3::soap_new_prodml23__InjectedGas(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__InjectedGas::VaporComposition = VaporComposition; - _p->prodml22__InjectedGas::uid = uid; + _p->prodml23__InjectedGas::VaporComposition = VaporComposition; + _p->prodml23__InjectedGas::uid = uid; } return _p; } -inline int soap_write_prodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas const*p) +inline int soap_write_prodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas ? "prodml22:InjectedGas" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas ? "prodml23:InjectedGas" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__InjectedGas(struct soap *soap, const char *URL, prodml22__InjectedGas const*p) +inline int soap_PUT_prodml23__InjectedGas(struct soap *soap, const char *URL, prodml23__InjectedGas const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas ? "prodml22:InjectedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas ? "prodml23:InjectedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__InjectedGas(struct soap *soap, const char *URL, prodml22__InjectedGas const*p) +inline int soap_PATCH_prodml23__InjectedGas(struct soap *soap, const char *URL, prodml23__InjectedGas const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas ? "prodml22:InjectedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas ? "prodml23:InjectedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__InjectedGas(struct soap *soap, const char *URL, prodml22__InjectedGas const*p) +inline int soap_POST_send_prodml23__InjectedGas(struct soap *soap, const char *URL, prodml23__InjectedGas const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas ? "prodml22:InjectedGas" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:InjectedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas ? "prodml23:InjectedGas" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__InjectedGas * SOAP_FMAC4 soap_get_prodml22__InjectedGas(struct soap*, prodml22__InjectedGas *, const char*, const char*); +SOAP_FMAC3 prodml23__InjectedGas * SOAP_FMAC4 soap_get_prodml23__InjectedGas(struct soap*, prodml23__InjectedGas *, const char*, const char*); -inline int soap_read_prodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas *p) +inline int soap_read_prodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__InjectedGas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__InjectedGas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__InjectedGas(struct soap *soap, const char *URL, prodml22__InjectedGas *p) +inline int soap_GET_prodml23__InjectedGas(struct soap *soap, const char *URL, prodml23__InjectedGas *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__InjectedGas(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__InjectedGas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__InjectedGas(struct soap *soap, prodml22__InjectedGas *p) +inline int soap_POST_recv_prodml23__InjectedGas(struct soap *soap, prodml23__InjectedGas *p) { - if (gsoap_eml2_3::soap_read_prodml22__InjectedGas(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__InjectedGas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__HydrocarbonAnalysis(struct soap*, const char*, int, const prodml22__HydrocarbonAnalysis *, const char*); -SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml22__HydrocarbonAnalysis(struct soap*, const char*, prodml22__HydrocarbonAnalysis *, const char*); -SOAP_FMAC1 prodml22__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__HydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__HydrocarbonAnalysis(struct soap*, const char*, int, const prodml23__HydrocarbonAnalysis *, const char*); +SOAP_FMAC3 prodml23__HydrocarbonAnalysis * SOAP_FMAC4 soap_in_prodml23__HydrocarbonAnalysis(struct soap*, const char*, prodml23__HydrocarbonAnalysis *, const char*); +SOAP_FMAC1 prodml23__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__HydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__HydrocarbonAnalysis * soap_new_prodml22__HydrocarbonAnalysis(struct soap *soap, int n = -1) +inline prodml23__HydrocarbonAnalysis * soap_new_prodml23__HydrocarbonAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__HydrocarbonAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__HydrocarbonAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__HydrocarbonAnalysis * soap_new_req_prodml22__HydrocarbonAnalysis( +inline prodml23__HydrocarbonAnalysis * soap_new_req_prodml23__HydrocarbonAnalysis( struct soap *soap, eml23__DataObjectReference *FluidSample, eml23__AbstractTemperaturePressure *StandardConditions__1, - prodml22__SampleQuality AnalysisQuality__1, + prodml23__SampleQuality AnalysisQuality__1, eml23__Citation *Citation__2, const std::string& uuid__2, const std::string& schemaVersion__2) { - prodml22__HydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__HydrocarbonAnalysis(soap); + prodml23__HydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__HydrocarbonAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__HydrocarbonAnalysis::FluidSample = FluidSample; - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions__1; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; + _p->prodml23__HydrocarbonAnalysis::FluidSample = FluidSample; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions__1; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::uuid = uuid__2; _p->eml23__AbstractObject::schemaVersion = schemaVersion__2; @@ -128604,22 +128576,22 @@ inline prodml22__HydrocarbonAnalysis * soap_new_req_prodml22__HydrocarbonAnalysi return _p; } -inline prodml22__HydrocarbonAnalysis * soap_new_set_prodml22__HydrocarbonAnalysis( +inline prodml23__HydrocarbonAnalysis * soap_new_set_prodml23__HydrocarbonAnalysis( struct soap *soap, - prodml22__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation, - const std::vector & AtmosphericFlashTestAndCompositionalAnalysis, - const std::vector & ConstantCompositionExpansionTest, - const std::vector & SaturationTest, - const std::vector & DifferentialLiberationTest, - const std::vector & ConstantVolumeDepletionTest, - const std::vector & SeparatorTest, - const std::vector & TransportTest, - const std::vector & VaporLiquidEquilibriumTest, - const std::vector & SwellingTest, - const std::vector & SlimTubeTest, - const std::vector & MultipleContactMiscibilityTest, - const std::vector & STOAnalysis, - const std::vector & InterfacialTensionTest, + prodml23__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation, + const std::vector & AtmosphericFlashTestAndCompositionalAnalysis, + const std::vector & ConstantCompositionExpansionTest, + const std::vector & SaturationTest, + const std::vector & DifferentialLiberationTest, + const std::vector & ConstantVolumeDepletionTest, + const std::vector & SeparatorTest, + const std::vector & TransportTest, + const std::vector & VaporLiquidEquilibriumTest, + const std::vector & SwellingTest, + const std::vector & SlimTubeTest, + const std::vector & MultipleContactMiscibilityTest, + const std::vector & STOAnalysis, + const std::vector & InterfacialTensionTest, eml23__DataObjectReference *FluidSample, std::string *RequestDate__1, eml23__DataObjectReference *Client__1, @@ -128630,11 +128602,11 @@ inline prodml22__HydrocarbonAnalysis * soap_new_set_prodml22__HydrocarbonAnalysi std::string *AnalysisSite__1, eml23__DataObjectReference *LabContact__1, eml23__AbstractTemperaturePressure *StandardConditions__1, - prodml22__SampleQuality AnalysisQuality__1, - prodml22__FluidComponentCatalog *FluidComponentCatalog__1, + prodml23__SampleQuality AnalysisQuality__1, + prodml23__FluidComponentCatalog *FluidComponentCatalog__1, std::string *Remark__1, - const std::vector & FluidAnalysisReport__1, - const std::vector & SampleContaminant__1, + const std::vector & FluidAnalysisReport__1, + const std::vector & SampleContaminant__1, const std::vector & Aliases__2, eml23__Citation *Citation__2, std::string *Existence__2, @@ -128647,38 +128619,38 @@ inline prodml22__HydrocarbonAnalysis * soap_new_set_prodml22__HydrocarbonAnalysi const std::string& schemaVersion__2, std::string *objectVersion__2) { - prodml22__HydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__HydrocarbonAnalysis(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__HydrocarbonAnalysis::SampleIntegrityAndPreparation = SampleIntegrityAndPreparation; - _p->prodml22__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis = AtmosphericFlashTestAndCompositionalAnalysis; - _p->prodml22__HydrocarbonAnalysis::ConstantCompositionExpansionTest = ConstantCompositionExpansionTest; - _p->prodml22__HydrocarbonAnalysis::SaturationTest = SaturationTest; - _p->prodml22__HydrocarbonAnalysis::DifferentialLiberationTest = DifferentialLiberationTest; - _p->prodml22__HydrocarbonAnalysis::ConstantVolumeDepletionTest = ConstantVolumeDepletionTest; - _p->prodml22__HydrocarbonAnalysis::SeparatorTest = SeparatorTest; - _p->prodml22__HydrocarbonAnalysis::TransportTest = TransportTest; - _p->prodml22__HydrocarbonAnalysis::VaporLiquidEquilibriumTest = VaporLiquidEquilibriumTest; - _p->prodml22__HydrocarbonAnalysis::SwellingTest = SwellingTest; - _p->prodml22__HydrocarbonAnalysis::SlimTubeTest = SlimTubeTest; - _p->prodml22__HydrocarbonAnalysis::MultipleContactMiscibilityTest = MultipleContactMiscibilityTest; - _p->prodml22__HydrocarbonAnalysis::STOAnalysis = STOAnalysis; - _p->prodml22__HydrocarbonAnalysis::InterfacialTensionTest = InterfacialTensionTest; - _p->prodml22__HydrocarbonAnalysis::FluidSample = FluidSample; - _p->prodml22__FluidAnalysis::RequestDate = RequestDate__1; - _p->prodml22__FluidAnalysis::Client = Client__1; - _p->prodml22__FluidAnalysis::StartTime = StartTime__1; - _p->prodml22__FluidAnalysis::EndTime = EndTime__1; - _p->prodml22__FluidAnalysis::AnalysisDescription = AnalysisDescription__1; - _p->prodml22__FluidAnalysis::AnalysisPurpose = AnalysisPurpose__1; - _p->prodml22__FluidAnalysis::AnalysisSite = AnalysisSite__1; - _p->prodml22__FluidAnalysis::LabContact = LabContact__1; - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions__1; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; - _p->prodml22__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog__1; - _p->prodml22__FluidAnalysis::Remark = Remark__1; - _p->prodml22__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport__1; - _p->prodml22__FluidAnalysis::SampleContaminant = SampleContaminant__1; + prodml23__HydrocarbonAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__HydrocarbonAnalysis(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__HydrocarbonAnalysis::SampleIntegrityAndPreparation = SampleIntegrityAndPreparation; + _p->prodml23__HydrocarbonAnalysis::AtmosphericFlashTestAndCompositionalAnalysis = AtmosphericFlashTestAndCompositionalAnalysis; + _p->prodml23__HydrocarbonAnalysis::ConstantCompositionExpansionTest = ConstantCompositionExpansionTest; + _p->prodml23__HydrocarbonAnalysis::SaturationTest = SaturationTest; + _p->prodml23__HydrocarbonAnalysis::DifferentialLiberationTest = DifferentialLiberationTest; + _p->prodml23__HydrocarbonAnalysis::ConstantVolumeDepletionTest = ConstantVolumeDepletionTest; + _p->prodml23__HydrocarbonAnalysis::SeparatorTest = SeparatorTest; + _p->prodml23__HydrocarbonAnalysis::TransportTest = TransportTest; + _p->prodml23__HydrocarbonAnalysis::VaporLiquidEquilibriumTest = VaporLiquidEquilibriumTest; + _p->prodml23__HydrocarbonAnalysis::SwellingTest = SwellingTest; + _p->prodml23__HydrocarbonAnalysis::SlimTubeTest = SlimTubeTest; + _p->prodml23__HydrocarbonAnalysis::MultipleContactMiscibilityTest = MultipleContactMiscibilityTest; + _p->prodml23__HydrocarbonAnalysis::STOAnalysis = STOAnalysis; + _p->prodml23__HydrocarbonAnalysis::InterfacialTensionTest = InterfacialTensionTest; + _p->prodml23__HydrocarbonAnalysis::FluidSample = FluidSample; + _p->prodml23__FluidAnalysis::RequestDate = RequestDate__1; + _p->prodml23__FluidAnalysis::Client = Client__1; + _p->prodml23__FluidAnalysis::StartTime = StartTime__1; + _p->prodml23__FluidAnalysis::EndTime = EndTime__1; + _p->prodml23__FluidAnalysis::AnalysisDescription = AnalysisDescription__1; + _p->prodml23__FluidAnalysis::AnalysisPurpose = AnalysisPurpose__1; + _p->prodml23__FluidAnalysis::AnalysisSite = AnalysisSite__1; + _p->prodml23__FluidAnalysis::LabContact = LabContact__1; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions__1; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality__1; + _p->prodml23__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog__1; + _p->prodml23__FluidAnalysis::Remark = Remark__1; + _p->prodml23__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport__1; + _p->prodml23__FluidAnalysis::SampleContaminant = SampleContaminant__1; _p->eml23__AbstractObject::Aliases = Aliases__2; _p->eml23__AbstractObject::Citation = Citation__2; _p->eml23__AbstractObject::Existence = Existence__2; @@ -128694,195 +128666,195 @@ inline prodml22__HydrocarbonAnalysis * soap_new_set_prodml22__HydrocarbonAnalysi return _p; } -inline int soap_write_prodml22__HydrocarbonAnalysis(struct soap *soap, prodml22__HydrocarbonAnalysis const*p) +inline int soap_write_prodml23__HydrocarbonAnalysis(struct soap *soap, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis ? "prodml22:HydrocarbonAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis ? "prodml23:HydrocarbonAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis const*p) +inline int soap_PUT_prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis ? "prodml22:HydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis ? "prodml23:HydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis const*p) +inline int soap_PATCH_prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis ? "prodml22:HydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis ? "prodml23:HydrocarbonAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis const*p) +inline int soap_POST_send_prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis ? "prodml22:HydrocarbonAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:HydrocarbonAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis ? "prodml23:HydrocarbonAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__HydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml22__HydrocarbonAnalysis(struct soap*, prodml22__HydrocarbonAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__HydrocarbonAnalysis * SOAP_FMAC4 soap_get_prodml23__HydrocarbonAnalysis(struct soap*, prodml23__HydrocarbonAnalysis *, const char*, const char*); -inline int soap_read_prodml22__HydrocarbonAnalysis(struct soap *soap, prodml22__HydrocarbonAnalysis *p) +inline int soap_read_prodml23__HydrocarbonAnalysis(struct soap *soap, prodml23__HydrocarbonAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__HydrocarbonAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__HydrocarbonAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml22__HydrocarbonAnalysis *p) +inline int soap_GET_prodml23__HydrocarbonAnalysis(struct soap *soap, const char *URL, prodml23__HydrocarbonAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__HydrocarbonAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__HydrocarbonAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__HydrocarbonAnalysis(struct soap *soap, prodml22__HydrocarbonAnalysis *p) +inline int soap_POST_recv_prodml23__HydrocarbonAnalysis(struct soap *soap, prodml23__HydrocarbonAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__HydrocarbonAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__HydrocarbonAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidVolumeReference(struct soap*, const char*, int, const prodml22__FluidVolumeReference *, const char*); -SOAP_FMAC3 prodml22__FluidVolumeReference * SOAP_FMAC4 soap_in_prodml22__FluidVolumeReference(struct soap*, const char*, prodml22__FluidVolumeReference *, const char*); -SOAP_FMAC1 prodml22__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml22__FluidVolumeReference(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidVolumeReference(struct soap*, const char*, int, const prodml23__FluidVolumeReference *, const char*); +SOAP_FMAC3 prodml23__FluidVolumeReference * SOAP_FMAC4 soap_in_prodml23__FluidVolumeReference(struct soap*, const char*, prodml23__FluidVolumeReference *, const char*); +SOAP_FMAC1 prodml23__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml23__FluidVolumeReference(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidVolumeReference * soap_new_prodml22__FluidVolumeReference(struct soap *soap, int n = -1) +inline prodml23__FluidVolumeReference * soap_new_prodml23__FluidVolumeReference(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidVolumeReference(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidVolumeReference(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidVolumeReference * soap_new_req_prodml22__FluidVolumeReference( +inline prodml23__FluidVolumeReference * soap_new_req_prodml23__FluidVolumeReference( struct soap *soap, const std::string& Kind, const std::string& uid) { - prodml22__FluidVolumeReference *_p = gsoap_eml2_3::soap_new_prodml22__FluidVolumeReference(soap); + prodml23__FluidVolumeReference *_p = gsoap_eml2_3::soap_new_prodml23__FluidVolumeReference(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidVolumeReference::Kind = Kind; - _p->prodml22__FluidVolumeReference::uid = uid; + _p->prodml23__FluidVolumeReference::Kind = Kind; + _p->prodml23__FluidVolumeReference::uid = uid; } return _p; } -inline prodml22__FluidVolumeReference * soap_new_set_prodml22__FluidVolumeReference( +inline prodml23__FluidVolumeReference * soap_new_set_prodml23__FluidVolumeReference( struct soap *soap, const std::string& Kind, eml23__VolumeMeasure *ReferenceVolume, std::string *Remark, const std::string& uid) { - prodml22__FluidVolumeReference *_p = gsoap_eml2_3::soap_new_prodml22__FluidVolumeReference(soap); + prodml23__FluidVolumeReference *_p = gsoap_eml2_3::soap_new_prodml23__FluidVolumeReference(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidVolumeReference::Kind = Kind; - _p->prodml22__FluidVolumeReference::ReferenceVolume = ReferenceVolume; - _p->prodml22__FluidVolumeReference::Remark = Remark; - _p->prodml22__FluidVolumeReference::uid = uid; + _p->prodml23__FluidVolumeReference::Kind = Kind; + _p->prodml23__FluidVolumeReference::ReferenceVolume = ReferenceVolume; + _p->prodml23__FluidVolumeReference::Remark = Remark; + _p->prodml23__FluidVolumeReference::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference const*p) +inline int soap_write_prodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference ? "prodml22:FluidVolumeReference" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference ? "prodml23:FluidVolumeReference" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidVolumeReference(struct soap *soap, const char *URL, prodml22__FluidVolumeReference const*p) +inline int soap_PUT_prodml23__FluidVolumeReference(struct soap *soap, const char *URL, prodml23__FluidVolumeReference const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference ? "prodml22:FluidVolumeReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference ? "prodml23:FluidVolumeReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidVolumeReference(struct soap *soap, const char *URL, prodml22__FluidVolumeReference const*p) +inline int soap_PATCH_prodml23__FluidVolumeReference(struct soap *soap, const char *URL, prodml23__FluidVolumeReference const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference ? "prodml22:FluidVolumeReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference ? "prodml23:FluidVolumeReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidVolumeReference(struct soap *soap, const char *URL, prodml22__FluidVolumeReference const*p) +inline int soap_POST_send_prodml23__FluidVolumeReference(struct soap *soap, const char *URL, prodml23__FluidVolumeReference const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference ? "prodml22:FluidVolumeReference" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidVolumeReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference ? "prodml23:FluidVolumeReference" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidVolumeReference * SOAP_FMAC4 soap_get_prodml22__FluidVolumeReference(struct soap*, prodml22__FluidVolumeReference *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidVolumeReference * SOAP_FMAC4 soap_get_prodml23__FluidVolumeReference(struct soap*, prodml23__FluidVolumeReference *, const char*, const char*); -inline int soap_read_prodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference *p) +inline int soap_read_prodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidVolumeReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidVolumeReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidVolumeReference(struct soap *soap, const char *URL, prodml22__FluidVolumeReference *p) +inline int soap_GET_prodml23__FluidVolumeReference(struct soap *soap, const char *URL, prodml23__FluidVolumeReference *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidVolumeReference(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidVolumeReference(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidVolumeReference(struct soap *soap, prodml22__FluidVolumeReference *p) +inline int soap_POST_recv_prodml23__FluidVolumeReference(struct soap *soap, prodml23__FluidVolumeReference *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidVolumeReference(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidVolumeReference(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSeparatorTestStep(struct soap*, const char*, int, const prodml22__FluidSeparatorTestStep *, const char*); -SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml22__FluidSeparatorTestStep(struct soap*, const char*, prodml22__FluidSeparatorTestStep *, const char*); -SOAP_FMAC1 prodml22__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidSeparatorTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSeparatorTestStep(struct soap*, const char*, int, const prodml23__FluidSeparatorTestStep *, const char*); +SOAP_FMAC3 prodml23__FluidSeparatorTestStep * SOAP_FMAC4 soap_in_prodml23__FluidSeparatorTestStep(struct soap*, const char*, prodml23__FluidSeparatorTestStep *, const char*); +SOAP_FMAC1 prodml23__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidSeparatorTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSeparatorTestStep * soap_new_prodml22__FluidSeparatorTestStep(struct soap *soap, int n = -1) +inline prodml23__FluidSeparatorTestStep * soap_new_prodml23__FluidSeparatorTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSeparatorTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSeparatorTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSeparatorTestStep * soap_new_req_prodml22__FluidSeparatorTestStep( +inline prodml23__FluidSeparatorTestStep * soap_new_req_prodml23__FluidSeparatorTestStep( struct soap *soap, LONG64 StepNumber, eml23__ThermodynamicTemperatureMeasure *StepTemperature, eml23__PressureMeasure *StepPressure, const std::string& uid) { - prodml22__FluidSeparatorTestStep *_p = gsoap_eml2_3::soap_new_prodml22__FluidSeparatorTestStep(soap); + prodml23__FluidSeparatorTestStep *_p = gsoap_eml2_3::soap_new_prodml23__FluidSeparatorTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSeparatorTestStep::StepNumber = StepNumber; - _p->prodml22__FluidSeparatorTestStep::StepTemperature = StepTemperature; - _p->prodml22__FluidSeparatorTestStep::StepPressure = StepPressure; - _p->prodml22__FluidSeparatorTestStep::uid = uid; + _p->prodml23__FluidSeparatorTestStep::StepNumber = StepNumber; + _p->prodml23__FluidSeparatorTestStep::StepTemperature = StepTemperature; + _p->prodml23__FluidSeparatorTestStep::StepPressure = StepPressure; + _p->prodml23__FluidSeparatorTestStep::uid = uid; } return _p; } -inline prodml22__FluidSeparatorTestStep * soap_new_set_prodml22__FluidSeparatorTestStep( +inline prodml23__FluidSeparatorTestStep * soap_new_set_prodml23__FluidSeparatorTestStep( struct soap *soap, LONG64 StepNumber, eml23__ThermodynamicTemperatureMeasure *StepTemperature, @@ -128903,257 +128875,257 @@ inline prodml22__FluidSeparatorTestStep * soap_new_set_prodml22__FluidSeparatorT eml23__DynamicViscosityMeasure *GasViscosity, eml23__VolumeMeasure *GasVolume, eml23__VolumePerVolumeMeasure *OilShrinkageFactor, - prodml22__SaturationPressure *SaturationPressure, - prodml22__FluidAnalysisStepCondition *FluidCondition, - prodml22__PhasePresent *PhasesPresent, - prodml22__LiquidComposition *LiquidComposition, - prodml22__VaporComposition *VaporComposition, - prodml22__OverallComposition *OverallComposition, + prodml23__SaturationPressure *SaturationPressure, + prodml23__FluidAnalysisStepCondition *FluidCondition, + prodml23__PhasePresent *PhasesPresent, + prodml23__LiquidComposition *LiquidComposition, + prodml23__VaporComposition *VaporComposition, + prodml23__OverallComposition *OverallComposition, std::string *Remark, const std::string& uid) { - prodml22__FluidSeparatorTestStep *_p = gsoap_eml2_3::soap_new_prodml22__FluidSeparatorTestStep(soap); + prodml23__FluidSeparatorTestStep *_p = gsoap_eml2_3::soap_new_prodml23__FluidSeparatorTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSeparatorTestStep::StepNumber = StepNumber; - _p->prodml22__FluidSeparatorTestStep::StepTemperature = StepTemperature; - _p->prodml22__FluidSeparatorTestStep::StepPressure = StepPressure; - _p->prodml22__FluidSeparatorTestStep::BubblePointPressure = BubblePointPressure; - _p->prodml22__FluidSeparatorTestStep::ResidualAPIGravity = ResidualAPIGravity; - _p->prodml22__FluidSeparatorTestStep::OilSpecificGravity = OilSpecificGravity; - _p->prodml22__FluidSeparatorTestStep::OilDensity = OilDensity; - _p->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorStd = OilFormationVolumeFactorStd; - _p->prodml22__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected = OilFormationVolumeFactorCorrected; - _p->prodml22__FluidSeparatorTestStep::OilViscosity = OilViscosity; - _p->prodml22__FluidSeparatorTestStep::StageSeparatorGORStd = StageSeparatorGORStd; - _p->prodml22__FluidSeparatorTestStep::StageSeparatorGORCorrected = StageSeparatorGORCorrected; - _p->prodml22__FluidSeparatorTestStep::GasMolecularWeight = GasMolecularWeight; - _p->prodml22__FluidSeparatorTestStep::GasGravity = GasGravity; - _p->prodml22__FluidSeparatorTestStep::GasDensity = GasDensity; - _p->prodml22__FluidSeparatorTestStep::GasZFactor = GasZFactor; - _p->prodml22__FluidSeparatorTestStep::GasViscosity = GasViscosity; - _p->prodml22__FluidSeparatorTestStep::GasVolume = GasVolume; - _p->prodml22__FluidSeparatorTestStep::OilShrinkageFactor = OilShrinkageFactor; - _p->prodml22__FluidSeparatorTestStep::SaturationPressure = SaturationPressure; - _p->prodml22__FluidSeparatorTestStep::FluidCondition = FluidCondition; - _p->prodml22__FluidSeparatorTestStep::PhasesPresent = PhasesPresent; - _p->prodml22__FluidSeparatorTestStep::LiquidComposition = LiquidComposition; - _p->prodml22__FluidSeparatorTestStep::VaporComposition = VaporComposition; - _p->prodml22__FluidSeparatorTestStep::OverallComposition = OverallComposition; - _p->prodml22__FluidSeparatorTestStep::Remark = Remark; - _p->prodml22__FluidSeparatorTestStep::uid = uid; + _p->prodml23__FluidSeparatorTestStep::StepNumber = StepNumber; + _p->prodml23__FluidSeparatorTestStep::StepTemperature = StepTemperature; + _p->prodml23__FluidSeparatorTestStep::StepPressure = StepPressure; + _p->prodml23__FluidSeparatorTestStep::BubblePointPressure = BubblePointPressure; + _p->prodml23__FluidSeparatorTestStep::ResidualAPIGravity = ResidualAPIGravity; + _p->prodml23__FluidSeparatorTestStep::OilSpecificGravity = OilSpecificGravity; + _p->prodml23__FluidSeparatorTestStep::OilDensity = OilDensity; + _p->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorStd = OilFormationVolumeFactorStd; + _p->prodml23__FluidSeparatorTestStep::OilFormationVolumeFactorCorrected = OilFormationVolumeFactorCorrected; + _p->prodml23__FluidSeparatorTestStep::OilViscosity = OilViscosity; + _p->prodml23__FluidSeparatorTestStep::StageSeparatorGORStd = StageSeparatorGORStd; + _p->prodml23__FluidSeparatorTestStep::StageSeparatorGORCorrected = StageSeparatorGORCorrected; + _p->prodml23__FluidSeparatorTestStep::GasMolecularWeight = GasMolecularWeight; + _p->prodml23__FluidSeparatorTestStep::GasGravity = GasGravity; + _p->prodml23__FluidSeparatorTestStep::GasDensity = GasDensity; + _p->prodml23__FluidSeparatorTestStep::GasZFactor = GasZFactor; + _p->prodml23__FluidSeparatorTestStep::GasViscosity = GasViscosity; + _p->prodml23__FluidSeparatorTestStep::GasVolume = GasVolume; + _p->prodml23__FluidSeparatorTestStep::OilShrinkageFactor = OilShrinkageFactor; + _p->prodml23__FluidSeparatorTestStep::SaturationPressure = SaturationPressure; + _p->prodml23__FluidSeparatorTestStep::FluidCondition = FluidCondition; + _p->prodml23__FluidSeparatorTestStep::PhasesPresent = PhasesPresent; + _p->prodml23__FluidSeparatorTestStep::LiquidComposition = LiquidComposition; + _p->prodml23__FluidSeparatorTestStep::VaporComposition = VaporComposition; + _p->prodml23__FluidSeparatorTestStep::OverallComposition = OverallComposition; + _p->prodml23__FluidSeparatorTestStep::Remark = Remark; + _p->prodml23__FluidSeparatorTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep const*p) +inline int soap_write_prodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep ? "prodml22:FluidSeparatorTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep ? "prodml23:FluidSeparatorTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml22__FluidSeparatorTestStep const*p) +inline int soap_PUT_prodml23__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml23__FluidSeparatorTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep ? "prodml22:FluidSeparatorTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep ? "prodml23:FluidSeparatorTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml22__FluidSeparatorTestStep const*p) +inline int soap_PATCH_prodml23__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml23__FluidSeparatorTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep ? "prodml22:FluidSeparatorTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep ? "prodml23:FluidSeparatorTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml22__FluidSeparatorTestStep const*p) +inline int soap_POST_send_prodml23__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml23__FluidSeparatorTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep ? "prodml22:FluidSeparatorTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep ? "prodml23:FluidSeparatorTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSeparatorTestStep * SOAP_FMAC4 soap_get_prodml22__FluidSeparatorTestStep(struct soap*, prodml22__FluidSeparatorTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSeparatorTestStep * SOAP_FMAC4 soap_get_prodml23__FluidSeparatorTestStep(struct soap*, prodml23__FluidSeparatorTestStep *, const char*, const char*); -inline int soap_read_prodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep *p) +inline int soap_read_prodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSeparatorTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSeparatorTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml22__FluidSeparatorTestStep *p) +inline int soap_GET_prodml23__FluidSeparatorTestStep(struct soap *soap, const char *URL, prodml23__FluidSeparatorTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSeparatorTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSeparatorTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSeparatorTestStep(struct soap *soap, prodml22__FluidSeparatorTestStep *p) +inline int soap_POST_recv_prodml23__FluidSeparatorTestStep(struct soap *soap, prodml23__FluidSeparatorTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSeparatorTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSeparatorTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidSeparatorTest(struct soap*, const char*, int, const prodml22__FluidSeparatorTest *, const char*); -SOAP_FMAC3 prodml22__FluidSeparatorTest * SOAP_FMAC4 soap_in_prodml22__FluidSeparatorTest(struct soap*, const char*, prodml22__FluidSeparatorTest *, const char*); -SOAP_FMAC1 prodml22__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml22__FluidSeparatorTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidSeparatorTest(struct soap*, const char*, int, const prodml23__FluidSeparatorTest *, const char*); +SOAP_FMAC3 prodml23__FluidSeparatorTest * SOAP_FMAC4 soap_in_prodml23__FluidSeparatorTest(struct soap*, const char*, prodml23__FluidSeparatorTest *, const char*); +SOAP_FMAC1 prodml23__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml23__FluidSeparatorTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidSeparatorTest * soap_new_prodml22__FluidSeparatorTest(struct soap *soap, int n = -1) +inline prodml23__FluidSeparatorTest * soap_new_prodml23__FluidSeparatorTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidSeparatorTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidSeparatorTest(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidSeparatorTest * soap_new_req_prodml22__FluidSeparatorTest( +inline prodml23__FluidSeparatorTest * soap_new_req_prodml23__FluidSeparatorTest( struct soap *soap, LONG64 TestNumber, const std::string& uid) { - prodml22__FluidSeparatorTest *_p = gsoap_eml2_3::soap_new_prodml22__FluidSeparatorTest(soap); + prodml23__FluidSeparatorTest *_p = gsoap_eml2_3::soap_new_prodml23__FluidSeparatorTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSeparatorTest::TestNumber = TestNumber; - _p->prodml22__FluidSeparatorTest::uid = uid; + _p->prodml23__FluidSeparatorTest::TestNumber = TestNumber; + _p->prodml23__FluidSeparatorTest::uid = uid; } return _p; } -inline prodml22__FluidSeparatorTest * soap_new_set_prodml22__FluidSeparatorTest( +inline prodml23__FluidSeparatorTest * soap_new_set_prodml23__FluidSeparatorTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature, - prodml22__SaturationPressure *SaturationPressure, + prodml23__SaturationPressure *SaturationPressure, eml23__VolumePerVolumeMeasure *SaturatedOilFormationVolumeFactor, eml23__MassPerVolumeMeasure *SaturatedOilDensity, eml23__VolumePerVolumeMeasure *SeparatorTestGOR, double *OverallGasGravity, std::string *Remark, - prodml22__FluidVolumeReference *ShrinkageReference, - const std::vector & SeparatorTestStep, + prodml23__FluidVolumeReference *ShrinkageReference, + const std::vector & SeparatorTestStep, const std::string& uid) { - prodml22__FluidSeparatorTest *_p = gsoap_eml2_3::soap_new_prodml22__FluidSeparatorTest(soap); + prodml23__FluidSeparatorTest *_p = gsoap_eml2_3::soap_new_prodml23__FluidSeparatorTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidSeparatorTest::TestNumber = TestNumber; - _p->prodml22__FluidSeparatorTest::ReservoirTemperature = ReservoirTemperature; - _p->prodml22__FluidSeparatorTest::SaturationPressure = SaturationPressure; - _p->prodml22__FluidSeparatorTest::SaturatedOilFormationVolumeFactor = SaturatedOilFormationVolumeFactor; - _p->prodml22__FluidSeparatorTest::SaturatedOilDensity = SaturatedOilDensity; - _p->prodml22__FluidSeparatorTest::SeparatorTestGOR = SeparatorTestGOR; - _p->prodml22__FluidSeparatorTest::OverallGasGravity = OverallGasGravity; - _p->prodml22__FluidSeparatorTest::Remark = Remark; - _p->prodml22__FluidSeparatorTest::ShrinkageReference = ShrinkageReference; - _p->prodml22__FluidSeparatorTest::SeparatorTestStep = SeparatorTestStep; - _p->prodml22__FluidSeparatorTest::uid = uid; + _p->prodml23__FluidSeparatorTest::TestNumber = TestNumber; + _p->prodml23__FluidSeparatorTest::ReservoirTemperature = ReservoirTemperature; + _p->prodml23__FluidSeparatorTest::SaturationPressure = SaturationPressure; + _p->prodml23__FluidSeparatorTest::SaturatedOilFormationVolumeFactor = SaturatedOilFormationVolumeFactor; + _p->prodml23__FluidSeparatorTest::SaturatedOilDensity = SaturatedOilDensity; + _p->prodml23__FluidSeparatorTest::SeparatorTestGOR = SeparatorTestGOR; + _p->prodml23__FluidSeparatorTest::OverallGasGravity = OverallGasGravity; + _p->prodml23__FluidSeparatorTest::Remark = Remark; + _p->prodml23__FluidSeparatorTest::ShrinkageReference = ShrinkageReference; + _p->prodml23__FluidSeparatorTest::SeparatorTestStep = SeparatorTestStep; + _p->prodml23__FluidSeparatorTest::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest const*p) +inline int soap_write_prodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest ? "prodml22:FluidSeparatorTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest ? "prodml23:FluidSeparatorTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidSeparatorTest(struct soap *soap, const char *URL, prodml22__FluidSeparatorTest const*p) +inline int soap_PUT_prodml23__FluidSeparatorTest(struct soap *soap, const char *URL, prodml23__FluidSeparatorTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest ? "prodml22:FluidSeparatorTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest ? "prodml23:FluidSeparatorTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidSeparatorTest(struct soap *soap, const char *URL, prodml22__FluidSeparatorTest const*p) +inline int soap_PATCH_prodml23__FluidSeparatorTest(struct soap *soap, const char *URL, prodml23__FluidSeparatorTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest ? "prodml22:FluidSeparatorTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest ? "prodml23:FluidSeparatorTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidSeparatorTest(struct soap *soap, const char *URL, prodml22__FluidSeparatorTest const*p) +inline int soap_POST_send_prodml23__FluidSeparatorTest(struct soap *soap, const char *URL, prodml23__FluidSeparatorTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest ? "prodml22:FluidSeparatorTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidSeparatorTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest ? "prodml23:FluidSeparatorTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidSeparatorTest * SOAP_FMAC4 soap_get_prodml22__FluidSeparatorTest(struct soap*, prodml22__FluidSeparatorTest *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSeparatorTest * SOAP_FMAC4 soap_get_prodml23__FluidSeparatorTest(struct soap*, prodml23__FluidSeparatorTest *, const char*, const char*); -inline int soap_read_prodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest *p) +inline int soap_read_prodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidSeparatorTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidSeparatorTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidSeparatorTest(struct soap *soap, const char *URL, prodml22__FluidSeparatorTest *p) +inline int soap_GET_prodml23__FluidSeparatorTest(struct soap *soap, const char *URL, prodml23__FluidSeparatorTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidSeparatorTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidSeparatorTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidSeparatorTest(struct soap *soap, prodml22__FluidSeparatorTest *p) +inline int soap_POST_recv_prodml23__FluidSeparatorTest(struct soap *soap, prodml23__FluidSeparatorTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidSeparatorTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidSeparatorTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidDifferentialLiberationTestStep(struct soap*, const char*, int, const prodml22__FluidDifferentialLiberationTestStep *, const char*); -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_prodml22__FluidDifferentialLiberationTestStep(struct soap*, const char*, prodml22__FluidDifferentialLiberationTestStep *, const char*); -SOAP_FMAC1 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidDifferentialLiberationTestStep(struct soap*, const char*, int, const prodml23__FluidDifferentialLiberationTestStep *, const char*); +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_in_prodml23__FluidDifferentialLiberationTestStep(struct soap*, const char*, prodml23__FluidDifferentialLiberationTestStep *, const char*); +SOAP_FMAC1 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidDifferentialLiberationTestStep * soap_new_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, int n = -1) +inline prodml23__FluidDifferentialLiberationTestStep * soap_new_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidDifferentialLiberationTestStep * soap_new_req_prodml22__FluidDifferentialLiberationTestStep( +inline prodml23__FluidDifferentialLiberationTestStep * soap_new_req_prodml23__FluidDifferentialLiberationTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, const std::string& uid) { - prodml22__FluidDifferentialLiberationTestStep *_p = gsoap_eml2_3::soap_new_prodml22__FluidDifferentialLiberationTestStep(soap); + prodml23__FluidDifferentialLiberationTestStep *_p = gsoap_eml2_3::soap_new_prodml23__FluidDifferentialLiberationTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidDifferentialLiberationTestStep::StepNumber = StepNumber; - _p->prodml22__FluidDifferentialLiberationTestStep::StepPressure = StepPressure; - _p->prodml22__FluidDifferentialLiberationTestStep::uid = uid; + _p->prodml23__FluidDifferentialLiberationTestStep::StepNumber = StepNumber; + _p->prodml23__FluidDifferentialLiberationTestStep::StepPressure = StepPressure; + _p->prodml23__FluidDifferentialLiberationTestStep::uid = uid; } return _p; } -inline prodml22__FluidDifferentialLiberationTestStep * soap_new_set_prodml22__FluidDifferentialLiberationTestStep( +inline prodml23__FluidDifferentialLiberationTestStep * soap_new_set_prodml23__FluidDifferentialLiberationTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, eml23__ThermodynamicTemperatureMeasure *StepTemperature, eml23__MassPerVolumeMeasure *OilDensity, eml23__VolumePerVolumeMeasure *OilFormationVolumeFactor, - prodml22__OilCompressibility *OilCompressibility, + prodml23__OilCompressibility *OilCompressibility, eml23__DynamicViscosityMeasure *OilViscosity, eml23__MolecularWeightMeasure *GasMolecularWeight, double *GasGravity, @@ -129167,133 +129139,133 @@ inline prodml22__FluidDifferentialLiberationTestStep * soap_new_set_prodml22__Fl eml23__VolumePerVolumeMeasure *CumulativeStockTankGOR, eml23__VolumePerVolumeMeasure *OilFormationVolumeFactorCorrected, eml23__APIGravityMeasure *ResidualAPIGravity, - prodml22__FluidAnalysisStepCondition *FluidCondition, - prodml22__PhasePresent *PhasesPresent, - prodml22__LiquidComposition *LiquidComposition, - prodml22__VaporComposition *VaporComposition, - prodml22__OverallComposition *OverallComposition, + prodml23__FluidAnalysisStepCondition *FluidCondition, + prodml23__PhasePresent *PhasesPresent, + prodml23__LiquidComposition *LiquidComposition, + prodml23__VaporComposition *VaporComposition, + prodml23__OverallComposition *OverallComposition, std::string *Remark, const std::string& uid) { - prodml22__FluidDifferentialLiberationTestStep *_p = gsoap_eml2_3::soap_new_prodml22__FluidDifferentialLiberationTestStep(soap); + prodml23__FluidDifferentialLiberationTestStep *_p = gsoap_eml2_3::soap_new_prodml23__FluidDifferentialLiberationTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidDifferentialLiberationTestStep::StepNumber = StepNumber; - _p->prodml22__FluidDifferentialLiberationTestStep::StepPressure = StepPressure; - _p->prodml22__FluidDifferentialLiberationTestStep::StepTemperature = StepTemperature; - _p->prodml22__FluidDifferentialLiberationTestStep::OilDensity = OilDensity; - _p->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor = OilFormationVolumeFactor; - _p->prodml22__FluidDifferentialLiberationTestStep::OilCompressibility = OilCompressibility; - _p->prodml22__FluidDifferentialLiberationTestStep::OilViscosity = OilViscosity; - _p->prodml22__FluidDifferentialLiberationTestStep::GasMolecularWeight = GasMolecularWeight; - _p->prodml22__FluidDifferentialLiberationTestStep::GasGravity = GasGravity; - _p->prodml22__FluidDifferentialLiberationTestStep::GasDensity = GasDensity; - _p->prodml22__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor = GasFormationVolumeFactor; - _p->prodml22__FluidDifferentialLiberationTestStep::GasZFactor = GasZFactor; - _p->prodml22__FluidDifferentialLiberationTestStep::GasViscosity = GasViscosity; - _p->prodml22__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor = TotalFormationVolumeFactor; - _p->prodml22__FluidDifferentialLiberationTestStep::SolutionGORMeasured = SolutionGORMeasured; - _p->prodml22__FluidDifferentialLiberationTestStep::SolutionGORCorrected = SolutionGORCorrected; - _p->prodml22__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR = CumulativeStockTankGOR; - _p->prodml22__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected = OilFormationVolumeFactorCorrected; - _p->prodml22__FluidDifferentialLiberationTestStep::ResidualAPIGravity = ResidualAPIGravity; - _p->prodml22__FluidDifferentialLiberationTestStep::FluidCondition = FluidCondition; - _p->prodml22__FluidDifferentialLiberationTestStep::PhasesPresent = PhasesPresent; - _p->prodml22__FluidDifferentialLiberationTestStep::LiquidComposition = LiquidComposition; - _p->prodml22__FluidDifferentialLiberationTestStep::VaporComposition = VaporComposition; - _p->prodml22__FluidDifferentialLiberationTestStep::OverallComposition = OverallComposition; - _p->prodml22__FluidDifferentialLiberationTestStep::Remark = Remark; - _p->prodml22__FluidDifferentialLiberationTestStep::uid = uid; + _p->prodml23__FluidDifferentialLiberationTestStep::StepNumber = StepNumber; + _p->prodml23__FluidDifferentialLiberationTestStep::StepPressure = StepPressure; + _p->prodml23__FluidDifferentialLiberationTestStep::StepTemperature = StepTemperature; + _p->prodml23__FluidDifferentialLiberationTestStep::OilDensity = OilDensity; + _p->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactor = OilFormationVolumeFactor; + _p->prodml23__FluidDifferentialLiberationTestStep::OilCompressibility = OilCompressibility; + _p->prodml23__FluidDifferentialLiberationTestStep::OilViscosity = OilViscosity; + _p->prodml23__FluidDifferentialLiberationTestStep::GasMolecularWeight = GasMolecularWeight; + _p->prodml23__FluidDifferentialLiberationTestStep::GasGravity = GasGravity; + _p->prodml23__FluidDifferentialLiberationTestStep::GasDensity = GasDensity; + _p->prodml23__FluidDifferentialLiberationTestStep::GasFormationVolumeFactor = GasFormationVolumeFactor; + _p->prodml23__FluidDifferentialLiberationTestStep::GasZFactor = GasZFactor; + _p->prodml23__FluidDifferentialLiberationTestStep::GasViscosity = GasViscosity; + _p->prodml23__FluidDifferentialLiberationTestStep::TotalFormationVolumeFactor = TotalFormationVolumeFactor; + _p->prodml23__FluidDifferentialLiberationTestStep::SolutionGORMeasured = SolutionGORMeasured; + _p->prodml23__FluidDifferentialLiberationTestStep::SolutionGORCorrected = SolutionGORCorrected; + _p->prodml23__FluidDifferentialLiberationTestStep::CumulativeStockTankGOR = CumulativeStockTankGOR; + _p->prodml23__FluidDifferentialLiberationTestStep::OilFormationVolumeFactorCorrected = OilFormationVolumeFactorCorrected; + _p->prodml23__FluidDifferentialLiberationTestStep::ResidualAPIGravity = ResidualAPIGravity; + _p->prodml23__FluidDifferentialLiberationTestStep::FluidCondition = FluidCondition; + _p->prodml23__FluidDifferentialLiberationTestStep::PhasesPresent = PhasesPresent; + _p->prodml23__FluidDifferentialLiberationTestStep::LiquidComposition = LiquidComposition; + _p->prodml23__FluidDifferentialLiberationTestStep::VaporComposition = VaporComposition; + _p->prodml23__FluidDifferentialLiberationTestStep::OverallComposition = OverallComposition; + _p->prodml23__FluidDifferentialLiberationTestStep::Remark = Remark; + _p->prodml23__FluidDifferentialLiberationTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep const*p) +inline int soap_write_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep ? "prodml22:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep ? "prodml23:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml22__FluidDifferentialLiberationTestStep const*p) +inline int soap_PUT_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml23__FluidDifferentialLiberationTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep ? "prodml22:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep ? "prodml23:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml22__FluidDifferentialLiberationTestStep const*p) +inline int soap_PATCH_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml23__FluidDifferentialLiberationTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep ? "prodml22:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep ? "prodml23:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml22__FluidDifferentialLiberationTestStep const*p) +inline int soap_POST_send_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml23__FluidDifferentialLiberationTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep ? "prodml22:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidDifferentialLiberationTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep ? "prodml23:FluidDifferentialLiberationTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_get_prodml22__FluidDifferentialLiberationTestStep(struct soap*, prodml22__FluidDifferentialLiberationTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC4 soap_get_prodml23__FluidDifferentialLiberationTestStep(struct soap*, prodml23__FluidDifferentialLiberationTestStep *, const char*, const char*); -inline int soap_read_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep *p) +inline int soap_read_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidDifferentialLiberationTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidDifferentialLiberationTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml22__FluidDifferentialLiberationTestStep *p) +inline int soap_GET_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, const char *URL, prodml23__FluidDifferentialLiberationTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidDifferentialLiberationTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidDifferentialLiberationTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidDifferentialLiberationTestStep(struct soap *soap, prodml22__FluidDifferentialLiberationTestStep *p) +inline int soap_POST_recv_prodml23__FluidDifferentialLiberationTestStep(struct soap *soap, prodml23__FluidDifferentialLiberationTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidDifferentialLiberationTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidDifferentialLiberationTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCvdTestStep(struct soap*, const char*, int, const prodml22__FluidCvdTestStep *, const char*); -SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml22__FluidCvdTestStep(struct soap*, const char*, prodml22__FluidCvdTestStep *, const char*); -SOAP_FMAC1 prodml22__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidCvdTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCvdTestStep(struct soap*, const char*, int, const prodml23__FluidCvdTestStep *, const char*); +SOAP_FMAC3 prodml23__FluidCvdTestStep * SOAP_FMAC4 soap_in_prodml23__FluidCvdTestStep(struct soap*, const char*, prodml23__FluidCvdTestStep *, const char*); +SOAP_FMAC1 prodml23__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidCvdTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCvdTestStep * soap_new_prodml22__FluidCvdTestStep(struct soap *soap, int n = -1) +inline prodml23__FluidCvdTestStep * soap_new_prodml23__FluidCvdTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCvdTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCvdTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCvdTestStep * soap_new_req_prodml22__FluidCvdTestStep( +inline prodml23__FluidCvdTestStep * soap_new_req_prodml23__FluidCvdTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, const std::string& uid) { - prodml22__FluidCvdTestStep *_p = gsoap_eml2_3::soap_new_prodml22__FluidCvdTestStep(soap); + prodml23__FluidCvdTestStep *_p = gsoap_eml2_3::soap_new_prodml23__FluidCvdTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCvdTestStep::StepNumber = StepNumber; - _p->prodml22__FluidCvdTestStep::StepPressure = StepPressure; - _p->prodml22__FluidCvdTestStep::uid = uid; + _p->prodml23__FluidCvdTestStep::StepNumber = StepNumber; + _p->prodml23__FluidCvdTestStep::StepPressure = StepPressure; + _p->prodml23__FluidCvdTestStep::uid = uid; } return _p; } -inline prodml22__FluidCvdTestStep * soap_new_set_prodml22__FluidCvdTestStep( +inline prodml23__FluidCvdTestStep * soap_new_set_prodml23__FluidCvdTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, @@ -129308,230 +129280,230 @@ inline prodml22__FluidCvdTestStep * soap_new_set_prodml22__FluidCvdTestStep( double *Phase2ZFactor, eml23__DynamicViscosityMeasure *GasViscosity, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *CumulativeFluidProducedFraction, - prodml22__RelativeVolumeRatio *LiquidFraction, - prodml22__FluidAnalysisStepCondition *FluidCondition, - prodml22__PhasePresent *PhasesPresent, - prodml22__LiquidComposition *LiquidComposition, - prodml22__VaporComposition *VaporComposition, - prodml22__OverallComposition *OverallComposition, + prodml23__RelativeVolumeRatio *LiquidFraction, + prodml23__FluidAnalysisStepCondition *FluidCondition, + prodml23__PhasePresent *PhasesPresent, + prodml23__LiquidComposition *LiquidComposition, + prodml23__VaporComposition *VaporComposition, + prodml23__OverallComposition *OverallComposition, std::string *Remark, const std::string& uid) { - prodml22__FluidCvdTestStep *_p = gsoap_eml2_3::soap_new_prodml22__FluidCvdTestStep(soap); + prodml23__FluidCvdTestStep *_p = gsoap_eml2_3::soap_new_prodml23__FluidCvdTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCvdTestStep::StepNumber = StepNumber; - _p->prodml22__FluidCvdTestStep::StepPressure = StepPressure; - _p->prodml22__FluidCvdTestStep::CumulativeStockTankGOR = CumulativeStockTankGOR; - _p->prodml22__FluidCvdTestStep::FluidProducedGOR = FluidProducedGOR; - _p->prodml22__FluidCvdTestStep::OilDensity = OilDensity; - _p->prodml22__FluidCvdTestStep::GasMolecularWeight = GasMolecularWeight; - _p->prodml22__FluidCvdTestStep::OilViscosity = OilViscosity; - _p->prodml22__FluidCvdTestStep::GasGravity = GasGravity; - _p->prodml22__FluidCvdTestStep::GasFormationVolumeFactor = GasFormationVolumeFactor; - _p->prodml22__FluidCvdTestStep::GasZFactor = GasZFactor; - _p->prodml22__FluidCvdTestStep::Phase2ZFactor = Phase2ZFactor; - _p->prodml22__FluidCvdTestStep::GasViscosity = GasViscosity; - _p->prodml22__FluidCvdTestStep::CumulativeFluidProducedFraction = CumulativeFluidProducedFraction; - _p->prodml22__FluidCvdTestStep::LiquidFraction = LiquidFraction; - _p->prodml22__FluidCvdTestStep::FluidCondition = FluidCondition; - _p->prodml22__FluidCvdTestStep::PhasesPresent = PhasesPresent; - _p->prodml22__FluidCvdTestStep::LiquidComposition = LiquidComposition; - _p->prodml22__FluidCvdTestStep::VaporComposition = VaporComposition; - _p->prodml22__FluidCvdTestStep::OverallComposition = OverallComposition; - _p->prodml22__FluidCvdTestStep::Remark = Remark; - _p->prodml22__FluidCvdTestStep::uid = uid; + _p->prodml23__FluidCvdTestStep::StepNumber = StepNumber; + _p->prodml23__FluidCvdTestStep::StepPressure = StepPressure; + _p->prodml23__FluidCvdTestStep::CumulativeStockTankGOR = CumulativeStockTankGOR; + _p->prodml23__FluidCvdTestStep::FluidProducedGOR = FluidProducedGOR; + _p->prodml23__FluidCvdTestStep::OilDensity = OilDensity; + _p->prodml23__FluidCvdTestStep::GasMolecularWeight = GasMolecularWeight; + _p->prodml23__FluidCvdTestStep::OilViscosity = OilViscosity; + _p->prodml23__FluidCvdTestStep::GasGravity = GasGravity; + _p->prodml23__FluidCvdTestStep::GasFormationVolumeFactor = GasFormationVolumeFactor; + _p->prodml23__FluidCvdTestStep::GasZFactor = GasZFactor; + _p->prodml23__FluidCvdTestStep::Phase2ZFactor = Phase2ZFactor; + _p->prodml23__FluidCvdTestStep::GasViscosity = GasViscosity; + _p->prodml23__FluidCvdTestStep::CumulativeFluidProducedFraction = CumulativeFluidProducedFraction; + _p->prodml23__FluidCvdTestStep::LiquidFraction = LiquidFraction; + _p->prodml23__FluidCvdTestStep::FluidCondition = FluidCondition; + _p->prodml23__FluidCvdTestStep::PhasesPresent = PhasesPresent; + _p->prodml23__FluidCvdTestStep::LiquidComposition = LiquidComposition; + _p->prodml23__FluidCvdTestStep::VaporComposition = VaporComposition; + _p->prodml23__FluidCvdTestStep::OverallComposition = OverallComposition; + _p->prodml23__FluidCvdTestStep::Remark = Remark; + _p->prodml23__FluidCvdTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep const*p) +inline int soap_write_prodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep ? "prodml22:FluidCvdTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep ? "prodml23:FluidCvdTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCvdTestStep(struct soap *soap, const char *URL, prodml22__FluidCvdTestStep const*p) +inline int soap_PUT_prodml23__FluidCvdTestStep(struct soap *soap, const char *URL, prodml23__FluidCvdTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep ? "prodml22:FluidCvdTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep ? "prodml23:FluidCvdTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCvdTestStep(struct soap *soap, const char *URL, prodml22__FluidCvdTestStep const*p) +inline int soap_PATCH_prodml23__FluidCvdTestStep(struct soap *soap, const char *URL, prodml23__FluidCvdTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep ? "prodml22:FluidCvdTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep ? "prodml23:FluidCvdTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCvdTestStep(struct soap *soap, const char *URL, prodml22__FluidCvdTestStep const*p) +inline int soap_POST_send_prodml23__FluidCvdTestStep(struct soap *soap, const char *URL, prodml23__FluidCvdTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep ? "prodml22:FluidCvdTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCvdTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep ? "prodml23:FluidCvdTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCvdTestStep * SOAP_FMAC4 soap_get_prodml22__FluidCvdTestStep(struct soap*, prodml22__FluidCvdTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCvdTestStep * SOAP_FMAC4 soap_get_prodml23__FluidCvdTestStep(struct soap*, prodml23__FluidCvdTestStep *, const char*, const char*); -inline int soap_read_prodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep *p) +inline int soap_read_prodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCvdTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCvdTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCvdTestStep(struct soap *soap, const char *URL, prodml22__FluidCvdTestStep *p) +inline int soap_GET_prodml23__FluidCvdTestStep(struct soap *soap, const char *URL, prodml23__FluidCvdTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCvdTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCvdTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCvdTestStep(struct soap *soap, prodml22__FluidCvdTestStep *p) +inline int soap_POST_recv_prodml23__FluidCvdTestStep(struct soap *soap, prodml23__FluidCvdTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCvdTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCvdTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysisReport(struct soap*, const char*, int, const prodml22__FluidAnalysisReport *, const char*); -SOAP_FMAC3 prodml22__FluidAnalysisReport * SOAP_FMAC4 soap_in_prodml22__FluidAnalysisReport(struct soap*, const char*, prodml22__FluidAnalysisReport *, const char*); -SOAP_FMAC1 prodml22__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml22__FluidAnalysisReport(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidAnalysisReport(struct soap*, const char*, int, const prodml23__FluidAnalysisReport *, const char*); +SOAP_FMAC3 prodml23__FluidAnalysisReport * SOAP_FMAC4 soap_in_prodml23__FluidAnalysisReport(struct soap*, const char*, prodml23__FluidAnalysisReport *, const char*); +SOAP_FMAC1 prodml23__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml23__FluidAnalysisReport(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidAnalysisReport * soap_new_prodml22__FluidAnalysisReport(struct soap *soap, int n = -1) +inline prodml23__FluidAnalysisReport * soap_new_prodml23__FluidAnalysisReport(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidAnalysisReport(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidAnalysisReport(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidAnalysisReport * soap_new_req_prodml22__FluidAnalysisReport( +inline prodml23__FluidAnalysisReport * soap_new_req_prodml23__FluidAnalysisReport( struct soap *soap, const std::string& uid) { - prodml22__FluidAnalysisReport *_p = gsoap_eml2_3::soap_new_prodml22__FluidAnalysisReport(soap); + prodml23__FluidAnalysisReport *_p = gsoap_eml2_3::soap_new_prodml23__FluidAnalysisReport(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidAnalysisReport::uid = uid; + _p->prodml23__FluidAnalysisReport::uid = uid; } return _p; } -inline prodml22__FluidAnalysisReport * soap_new_set_prodml22__FluidAnalysisReport( +inline prodml23__FluidAnalysisReport * soap_new_set_prodml23__FluidAnalysisReport( struct soap *soap, std::string *ReportIdentifier, std::string *ReportDate, std::string *Author, std::string *AnalysisLaboratory, eml23__DataObjectReference *ReportDocument, - const std::vector & ReportLocation, + const std::vector & ReportLocation, const std::string& uid) { - prodml22__FluidAnalysisReport *_p = gsoap_eml2_3::soap_new_prodml22__FluidAnalysisReport(soap); + prodml23__FluidAnalysisReport *_p = gsoap_eml2_3::soap_new_prodml23__FluidAnalysisReport(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidAnalysisReport::ReportIdentifier = ReportIdentifier; - _p->prodml22__FluidAnalysisReport::ReportDate = ReportDate; - _p->prodml22__FluidAnalysisReport::Author = Author; - _p->prodml22__FluidAnalysisReport::AnalysisLaboratory = AnalysisLaboratory; - _p->prodml22__FluidAnalysisReport::ReportDocument = ReportDocument; - _p->prodml22__FluidAnalysisReport::ReportLocation = ReportLocation; - _p->prodml22__FluidAnalysisReport::uid = uid; + _p->prodml23__FluidAnalysisReport::ReportIdentifier = ReportIdentifier; + _p->prodml23__FluidAnalysisReport::ReportDate = ReportDate; + _p->prodml23__FluidAnalysisReport::Author = Author; + _p->prodml23__FluidAnalysisReport::AnalysisLaboratory = AnalysisLaboratory; + _p->prodml23__FluidAnalysisReport::ReportDocument = ReportDocument; + _p->prodml23__FluidAnalysisReport::ReportLocation = ReportLocation; + _p->prodml23__FluidAnalysisReport::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport const*p) +inline int soap_write_prodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport ? "prodml22:FluidAnalysisReport" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport ? "prodml23:FluidAnalysisReport" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidAnalysisReport(struct soap *soap, const char *URL, prodml22__FluidAnalysisReport const*p) +inline int soap_PUT_prodml23__FluidAnalysisReport(struct soap *soap, const char *URL, prodml23__FluidAnalysisReport const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport ? "prodml22:FluidAnalysisReport" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport ? "prodml23:FluidAnalysisReport" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidAnalysisReport(struct soap *soap, const char *URL, prodml22__FluidAnalysisReport const*p) +inline int soap_PATCH_prodml23__FluidAnalysisReport(struct soap *soap, const char *URL, prodml23__FluidAnalysisReport const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport ? "prodml22:FluidAnalysisReport" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport ? "prodml23:FluidAnalysisReport" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidAnalysisReport(struct soap *soap, const char *URL, prodml22__FluidAnalysisReport const*p) +inline int soap_POST_send_prodml23__FluidAnalysisReport(struct soap *soap, const char *URL, prodml23__FluidAnalysisReport const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport ? "prodml22:FluidAnalysisReport" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysisReport", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport ? "prodml23:FluidAnalysisReport" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidAnalysisReport * SOAP_FMAC4 soap_get_prodml22__FluidAnalysisReport(struct soap*, prodml22__FluidAnalysisReport *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidAnalysisReport * SOAP_FMAC4 soap_get_prodml23__FluidAnalysisReport(struct soap*, prodml23__FluidAnalysisReport *, const char*, const char*); -inline int soap_read_prodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport *p) +inline int soap_read_prodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidAnalysisReport(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidAnalysisReport(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidAnalysisReport(struct soap *soap, const char *URL, prodml22__FluidAnalysisReport *p) +inline int soap_GET_prodml23__FluidAnalysisReport(struct soap *soap, const char *URL, prodml23__FluidAnalysisReport *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidAnalysisReport(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidAnalysisReport(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidAnalysisReport(struct soap *soap, prodml22__FluidAnalysisReport *p) +inline int soap_POST_recv_prodml23__FluidAnalysisReport(struct soap *soap, prodml23__FluidAnalysisReport *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidAnalysisReport(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidAnalysisReport(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidAnalysis(struct soap*, const char*, int, const prodml22__FluidAnalysis *, const char*); -SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_in_prodml22__FluidAnalysis(struct soap*, const char*, prodml22__FluidAnalysis *, const char*); -SOAP_FMAC1 prodml22__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__FluidAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidAnalysis(struct soap*, const char*, int, const prodml23__FluidAnalysis *, const char*); +SOAP_FMAC3 prodml23__FluidAnalysis * SOAP_FMAC4 soap_in_prodml23__FluidAnalysis(struct soap*, const char*, prodml23__FluidAnalysis *, const char*); +SOAP_FMAC1 prodml23__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__FluidAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidAnalysis * soap_new_prodml22__FluidAnalysis(struct soap *soap, int n = -1) +inline prodml23__FluidAnalysis * soap_new_prodml23__FluidAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidAnalysis * soap_new_req_prodml22__FluidAnalysis( +inline prodml23__FluidAnalysis * soap_new_req_prodml23__FluidAnalysis( struct soap *soap, eml23__AbstractTemperaturePressure *StandardConditions, - prodml22__SampleQuality AnalysisQuality, + prodml23__SampleQuality AnalysisQuality, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FluidAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__FluidAnalysis(soap); + prodml23__FluidAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__FluidAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::uuid = uuid__1; _p->eml23__AbstractObject::schemaVersion = schemaVersion__1; @@ -129539,7 +129511,7 @@ inline prodml22__FluidAnalysis * soap_new_req_prodml22__FluidAnalysis( return _p; } -inline prodml22__FluidAnalysis * soap_new_set_prodml22__FluidAnalysis( +inline prodml23__FluidAnalysis * soap_new_set_prodml23__FluidAnalysis( struct soap *soap, std::string *RequestDate, eml23__DataObjectReference *Client, @@ -129550,11 +129522,11 @@ inline prodml22__FluidAnalysis * soap_new_set_prodml22__FluidAnalysis( std::string *AnalysisSite, eml23__DataObjectReference *LabContact, eml23__AbstractTemperaturePressure *StandardConditions, - prodml22__SampleQuality AnalysisQuality, - prodml22__FluidComponentCatalog *FluidComponentCatalog, + prodml23__SampleQuality AnalysisQuality, + prodml23__FluidComponentCatalog *FluidComponentCatalog, std::string *Remark, - const std::vector & FluidAnalysisReport, - const std::vector & SampleContaminant, + const std::vector & FluidAnalysisReport, + const std::vector & SampleContaminant, const std::vector & Aliases__1, eml23__Citation *Citation__1, std::string *Existence__1, @@ -129567,23 +129539,23 @@ inline prodml22__FluidAnalysis * soap_new_set_prodml22__FluidAnalysis( const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FluidAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__FluidAnalysis(soap); - if (_p) - { _p->soap_default(soap); - _p->prodml22__FluidAnalysis::RequestDate = RequestDate; - _p->prodml22__FluidAnalysis::Client = Client; - _p->prodml22__FluidAnalysis::StartTime = StartTime; - _p->prodml22__FluidAnalysis::EndTime = EndTime; - _p->prodml22__FluidAnalysis::AnalysisDescription = AnalysisDescription; - _p->prodml22__FluidAnalysis::AnalysisPurpose = AnalysisPurpose; - _p->prodml22__FluidAnalysis::AnalysisSite = AnalysisSite; - _p->prodml22__FluidAnalysis::LabContact = LabContact; - _p->prodml22__FluidAnalysis::StandardConditions = StandardConditions; - _p->prodml22__FluidAnalysis::AnalysisQuality = AnalysisQuality; - _p->prodml22__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog; - _p->prodml22__FluidAnalysis::Remark = Remark; - _p->prodml22__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport; - _p->prodml22__FluidAnalysis::SampleContaminant = SampleContaminant; + prodml23__FluidAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__FluidAnalysis(soap); + if (_p) + { _p->soap_default(soap); + _p->prodml23__FluidAnalysis::RequestDate = RequestDate; + _p->prodml23__FluidAnalysis::Client = Client; + _p->prodml23__FluidAnalysis::StartTime = StartTime; + _p->prodml23__FluidAnalysis::EndTime = EndTime; + _p->prodml23__FluidAnalysis::AnalysisDescription = AnalysisDescription; + _p->prodml23__FluidAnalysis::AnalysisPurpose = AnalysisPurpose; + _p->prodml23__FluidAnalysis::AnalysisSite = AnalysisSite; + _p->prodml23__FluidAnalysis::LabContact = LabContact; + _p->prodml23__FluidAnalysis::StandardConditions = StandardConditions; + _p->prodml23__FluidAnalysis::AnalysisQuality = AnalysisQuality; + _p->prodml23__FluidAnalysis::FluidComponentCatalog = FluidComponentCatalog; + _p->prodml23__FluidAnalysis::Remark = Remark; + _p->prodml23__FluidAnalysis::FluidAnalysisReport = FluidAnalysisReport; + _p->prodml23__FluidAnalysis::SampleContaminant = SampleContaminant; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -129599,183 +129571,183 @@ inline prodml22__FluidAnalysis * soap_new_set_prodml22__FluidAnalysis( return _p; } -inline int soap_write_prodml22__FluidAnalysis(struct soap *soap, prodml22__FluidAnalysis const*p) +inline int soap_write_prodml23__FluidAnalysis(struct soap *soap, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis ? "prodml22:FluidAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis ? "prodml23:FluidAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis const*p) +inline int soap_PUT_prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis ? "prodml22:FluidAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis ? "prodml23:FluidAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis const*p) +inline int soap_PATCH_prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis ? "prodml22:FluidAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis ? "prodml23:FluidAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis const*p) +inline int soap_POST_send_prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis ? "prodml22:FluidAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis ? "prodml23:FluidAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidAnalysis * SOAP_FMAC4 soap_get_prodml22__FluidAnalysis(struct soap*, prodml22__FluidAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidAnalysis * SOAP_FMAC4 soap_get_prodml23__FluidAnalysis(struct soap*, prodml23__FluidAnalysis *, const char*, const char*); -inline int soap_read_prodml22__FluidAnalysis(struct soap *soap, prodml22__FluidAnalysis *p) +inline int soap_read_prodml23__FluidAnalysis(struct soap *soap, prodml23__FluidAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidAnalysis(struct soap *soap, const char *URL, prodml22__FluidAnalysis *p) +inline int soap_GET_prodml23__FluidAnalysis(struct soap *soap, const char *URL, prodml23__FluidAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidAnalysis(struct soap *soap, prodml22__FluidAnalysis *p) +inline int soap_POST_recv_prodml23__FluidAnalysis(struct soap *soap, prodml23__FluidAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlashedLiquid(struct soap*, const char*, int, const prodml22__FlashedLiquid *, const char*); -SOAP_FMAC3 prodml22__FlashedLiquid * SOAP_FMAC4 soap_in_prodml22__FlashedLiquid(struct soap*, const char*, prodml22__FlashedLiquid *, const char*); -SOAP_FMAC1 prodml22__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__FlashedLiquid(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlashedLiquid(struct soap*, const char*, int, const prodml23__FlashedLiquid *, const char*); +SOAP_FMAC3 prodml23__FlashedLiquid * SOAP_FMAC4 soap_in_prodml23__FlashedLiquid(struct soap*, const char*, prodml23__FlashedLiquid *, const char*); +SOAP_FMAC1 prodml23__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml23__FlashedLiquid(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FlashedLiquid * soap_new_prodml22__FlashedLiquid(struct soap *soap, int n = -1) +inline prodml23__FlashedLiquid * soap_new_prodml23__FlashedLiquid(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FlashedLiquid(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FlashedLiquid(soap, n, NULL, NULL, NULL); } -inline prodml22__FlashedLiquid * soap_new_req_prodml22__FlashedLiquid( +inline prodml23__FlashedLiquid * soap_new_req_prodml23__FlashedLiquid( struct soap *soap) { - prodml22__FlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml22__FlashedLiquid(soap); + prodml23__FlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml23__FlashedLiquid(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__FlashedLiquid * soap_new_set_prodml22__FlashedLiquid( +inline prodml23__FlashedLiquid * soap_new_set_prodml23__FlashedLiquid( struct soap *soap, eml23__MassPerVolumeMeasureExt *LiquidDensity, eml23__APIGravityMeasure *OilAPIGravity, eml23__MolecularWeightMeasure *OilMolecularWeight, - prodml22__LiquidComposition *LiquidComposition) + prodml23__LiquidComposition *LiquidComposition) { - prodml22__FlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml22__FlashedLiquid(soap); + prodml23__FlashedLiquid *_p = gsoap_eml2_3::soap_new_prodml23__FlashedLiquid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FlashedLiquid::LiquidDensity = LiquidDensity; - _p->prodml22__FlashedLiquid::OilAPIGravity = OilAPIGravity; - _p->prodml22__FlashedLiquid::OilMolecularWeight = OilMolecularWeight; - _p->prodml22__FlashedLiquid::LiquidComposition = LiquidComposition; + _p->prodml23__FlashedLiquid::LiquidDensity = LiquidDensity; + _p->prodml23__FlashedLiquid::OilAPIGravity = OilAPIGravity; + _p->prodml23__FlashedLiquid::OilMolecularWeight = OilMolecularWeight; + _p->prodml23__FlashedLiquid::LiquidComposition = LiquidComposition; } return _p; } -inline int soap_write_prodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid const*p) +inline int soap_write_prodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid ? "prodml22:FlashedLiquid" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid ? "prodml23:FlashedLiquid" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FlashedLiquid(struct soap *soap, const char *URL, prodml22__FlashedLiquid const*p) +inline int soap_PUT_prodml23__FlashedLiquid(struct soap *soap, const char *URL, prodml23__FlashedLiquid const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid ? "prodml22:FlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid ? "prodml23:FlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlashedLiquid(struct soap *soap, const char *URL, prodml22__FlashedLiquid const*p) +inline int soap_PATCH_prodml23__FlashedLiquid(struct soap *soap, const char *URL, prodml23__FlashedLiquid const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid ? "prodml22:FlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid ? "prodml23:FlashedLiquid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlashedLiquid(struct soap *soap, const char *URL, prodml22__FlashedLiquid const*p) +inline int soap_POST_send_prodml23__FlashedLiquid(struct soap *soap, const char *URL, prodml23__FlashedLiquid const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid ? "prodml22:FlashedLiquid" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedLiquid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid ? "prodml23:FlashedLiquid" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlashedLiquid * SOAP_FMAC4 soap_get_prodml22__FlashedLiquid(struct soap*, prodml22__FlashedLiquid *, const char*, const char*); +SOAP_FMAC3 prodml23__FlashedLiquid * SOAP_FMAC4 soap_get_prodml23__FlashedLiquid(struct soap*, prodml23__FlashedLiquid *, const char*, const char*); -inline int soap_read_prodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid *p) +inline int soap_read_prodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlashedLiquid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlashedLiquid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlashedLiquid(struct soap *soap, const char *URL, prodml22__FlashedLiquid *p) +inline int soap_GET_prodml23__FlashedLiquid(struct soap *soap, const char *URL, prodml23__FlashedLiquid *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlashedLiquid(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlashedLiquid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlashedLiquid(struct soap *soap, prodml22__FlashedLiquid *p) +inline int soap_POST_recv_prodml23__FlashedLiquid(struct soap *soap, prodml23__FlashedLiquid *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlashedLiquid(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlashedLiquid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FlashedGas(struct soap*, const char*, int, const prodml22__FlashedGas *, const char*); -SOAP_FMAC3 prodml22__FlashedGas * SOAP_FMAC4 soap_in_prodml22__FlashedGas(struct soap*, const char*, prodml22__FlashedGas *, const char*); -SOAP_FMAC1 prodml22__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml22__FlashedGas(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FlashedGas(struct soap*, const char*, int, const prodml23__FlashedGas *, const char*); +SOAP_FMAC3 prodml23__FlashedGas * SOAP_FMAC4 soap_in_prodml23__FlashedGas(struct soap*, const char*, prodml23__FlashedGas *, const char*); +SOAP_FMAC1 prodml23__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml23__FlashedGas(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FlashedGas * soap_new_prodml22__FlashedGas(struct soap *soap, int n = -1) +inline prodml23__FlashedGas * soap_new_prodml23__FlashedGas(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FlashedGas(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FlashedGas(soap, n, NULL, NULL, NULL); } -inline prodml22__FlashedGas * soap_new_req_prodml22__FlashedGas( +inline prodml23__FlashedGas * soap_new_req_prodml23__FlashedGas( struct soap *soap) { - prodml22__FlashedGas *_p = gsoap_eml2_3::soap_new_prodml22__FlashedGas(soap); + prodml23__FlashedGas *_p = gsoap_eml2_3::soap_new_prodml23__FlashedGas(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__FlashedGas * soap_new_set_prodml22__FlashedGas( +inline prodml23__FlashedGas * soap_new_set_prodml23__FlashedGas( struct soap *soap, eml23__MassPerVolumeMeasureExt *GasDensity, double *GasGravity, @@ -129785,766 +129757,766 @@ inline prodml22__FlashedGas * soap_new_set_prodml22__FlashedGas( eml23__EnergyPerMassMeasureExt *NetEnergyContentPerUnitMass, eml23__EnergyPerVolumeMeasureExt *GrossEnergyContentPerUnitVolume, eml23__EnergyPerVolumeMeasureExt *NetEnergyContentPerUnitVolume, - prodml22__VaporComposition *VaporComposition) + prodml23__VaporComposition *VaporComposition) { - prodml22__FlashedGas *_p = gsoap_eml2_3::soap_new_prodml22__FlashedGas(soap); + prodml23__FlashedGas *_p = gsoap_eml2_3::soap_new_prodml23__FlashedGas(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FlashedGas::GasDensity = GasDensity; - _p->prodml22__FlashedGas::GasGravity = GasGravity; - _p->prodml22__FlashedGas::GasZFactor = GasZFactor; - _p->prodml22__FlashedGas::GasMolecularWeight = GasMolecularWeight; - _p->prodml22__FlashedGas::GrossEnergyContentPerUnitMass = GrossEnergyContentPerUnitMass; - _p->prodml22__FlashedGas::NetEnergyContentPerUnitMass = NetEnergyContentPerUnitMass; - _p->prodml22__FlashedGas::GrossEnergyContentPerUnitVolume = GrossEnergyContentPerUnitVolume; - _p->prodml22__FlashedGas::NetEnergyContentPerUnitVolume = NetEnergyContentPerUnitVolume; - _p->prodml22__FlashedGas::VaporComposition = VaporComposition; + _p->prodml23__FlashedGas::GasDensity = GasDensity; + _p->prodml23__FlashedGas::GasGravity = GasGravity; + _p->prodml23__FlashedGas::GasZFactor = GasZFactor; + _p->prodml23__FlashedGas::GasMolecularWeight = GasMolecularWeight; + _p->prodml23__FlashedGas::GrossEnergyContentPerUnitMass = GrossEnergyContentPerUnitMass; + _p->prodml23__FlashedGas::NetEnergyContentPerUnitMass = NetEnergyContentPerUnitMass; + _p->prodml23__FlashedGas::GrossEnergyContentPerUnitVolume = GrossEnergyContentPerUnitVolume; + _p->prodml23__FlashedGas::NetEnergyContentPerUnitVolume = NetEnergyContentPerUnitVolume; + _p->prodml23__FlashedGas::VaporComposition = VaporComposition; } return _p; } -inline int soap_write_prodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas const*p) +inline int soap_write_prodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas ? "prodml22:FlashedGas" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas ? "prodml23:FlashedGas" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FlashedGas(struct soap *soap, const char *URL, prodml22__FlashedGas const*p) +inline int soap_PUT_prodml23__FlashedGas(struct soap *soap, const char *URL, prodml23__FlashedGas const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas ? "prodml22:FlashedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas ? "prodml23:FlashedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FlashedGas(struct soap *soap, const char *URL, prodml22__FlashedGas const*p) +inline int soap_PATCH_prodml23__FlashedGas(struct soap *soap, const char *URL, prodml23__FlashedGas const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas ? "prodml22:FlashedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas ? "prodml23:FlashedGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FlashedGas(struct soap *soap, const char *URL, prodml22__FlashedGas const*p) +inline int soap_POST_send_prodml23__FlashedGas(struct soap *soap, const char *URL, prodml23__FlashedGas const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas ? "prodml22:FlashedGas" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FlashedGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas ? "prodml23:FlashedGas" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FlashedGas * SOAP_FMAC4 soap_get_prodml22__FlashedGas(struct soap*, prodml22__FlashedGas *, const char*, const char*); +SOAP_FMAC3 prodml23__FlashedGas * SOAP_FMAC4 soap_get_prodml23__FlashedGas(struct soap*, prodml23__FlashedGas *, const char*, const char*); -inline int soap_read_prodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas *p) +inline int soap_read_prodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FlashedGas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FlashedGas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FlashedGas(struct soap *soap, const char *URL, prodml22__FlashedGas *p) +inline int soap_GET_prodml23__FlashedGas(struct soap *soap, const char *URL, prodml23__FlashedGas *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FlashedGas(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FlashedGas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FlashedGas(struct soap *soap, prodml22__FlashedGas *p) +inline int soap_POST_recv_prodml23__FlashedGas(struct soap *soap, prodml23__FlashedGas *p) { - if (gsoap_eml2_3::soap_read_prodml22__FlashedGas(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FlashedGas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DifferentialLiberationTest(struct soap*, const char*, int, const prodml22__DifferentialLiberationTest *, const char*); -SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml22__DifferentialLiberationTest(struct soap*, const char*, prodml22__DifferentialLiberationTest *, const char*); -SOAP_FMAC1 prodml22__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_prodml22__DifferentialLiberationTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DifferentialLiberationTest(struct soap*, const char*, int, const prodml23__DifferentialLiberationTest *, const char*); +SOAP_FMAC3 prodml23__DifferentialLiberationTest * SOAP_FMAC4 soap_in_prodml23__DifferentialLiberationTest(struct soap*, const char*, prodml23__DifferentialLiberationTest *, const char*); +SOAP_FMAC1 prodml23__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_prodml23__DifferentialLiberationTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DifferentialLiberationTest * soap_new_prodml22__DifferentialLiberationTest(struct soap *soap, int n = -1) +inline prodml23__DifferentialLiberationTest * soap_new_prodml23__DifferentialLiberationTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DifferentialLiberationTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DifferentialLiberationTest(soap, n, NULL, NULL, NULL); } -inline prodml22__DifferentialLiberationTest * soap_new_req_prodml22__DifferentialLiberationTest( +inline prodml23__DifferentialLiberationTest * soap_new_req_prodml23__DifferentialLiberationTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - prodml22__SaturationPressure *SaturationPressure, + prodml23__SaturationPressure *SaturationPressure, const std::string& uid) { - prodml22__DifferentialLiberationTest *_p = gsoap_eml2_3::soap_new_prodml22__DifferentialLiberationTest(soap); + prodml23__DifferentialLiberationTest *_p = gsoap_eml2_3::soap_new_prodml23__DifferentialLiberationTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DifferentialLiberationTest::TestNumber = TestNumber; - _p->prodml22__DifferentialLiberationTest::TestTemperature = TestTemperature; - _p->prodml22__DifferentialLiberationTest::SaturationPressure = SaturationPressure; - _p->prodml22__DifferentialLiberationTest::uid = uid; + _p->prodml23__DifferentialLiberationTest::TestNumber = TestNumber; + _p->prodml23__DifferentialLiberationTest::TestTemperature = TestTemperature; + _p->prodml23__DifferentialLiberationTest::SaturationPressure = SaturationPressure; + _p->prodml23__DifferentialLiberationTest::uid = uid; } return _p; } -inline prodml22__DifferentialLiberationTest * soap_new_set_prodml22__DifferentialLiberationTest( +inline prodml23__DifferentialLiberationTest * soap_new_set_prodml23__DifferentialLiberationTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - prodml22__SaturationPressure *SaturationPressure, - prodml22__SeparatorConditions *SeparatorConditions, + prodml23__SaturationPressure *SaturationPressure, + prodml23__SeparatorConditions *SeparatorConditions, std::string *CorrectionMethod, std::string *Remark, - prodml22__FluidVolumeReference *ShrinkageReference, - const std::vector & DlTestStep, + prodml23__FluidVolumeReference *ShrinkageReference, + const std::vector & DlTestStep, const std::string& uid) { - prodml22__DifferentialLiberationTest *_p = gsoap_eml2_3::soap_new_prodml22__DifferentialLiberationTest(soap); + prodml23__DifferentialLiberationTest *_p = gsoap_eml2_3::soap_new_prodml23__DifferentialLiberationTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DifferentialLiberationTest::TestNumber = TestNumber; - _p->prodml22__DifferentialLiberationTest::TestTemperature = TestTemperature; - _p->prodml22__DifferentialLiberationTest::SaturationPressure = SaturationPressure; - _p->prodml22__DifferentialLiberationTest::SeparatorConditions = SeparatorConditions; - _p->prodml22__DifferentialLiberationTest::CorrectionMethod = CorrectionMethod; - _p->prodml22__DifferentialLiberationTest::Remark = Remark; - _p->prodml22__DifferentialLiberationTest::ShrinkageReference = ShrinkageReference; - _p->prodml22__DifferentialLiberationTest::DlTestStep = DlTestStep; - _p->prodml22__DifferentialLiberationTest::uid = uid; + _p->prodml23__DifferentialLiberationTest::TestNumber = TestNumber; + _p->prodml23__DifferentialLiberationTest::TestTemperature = TestTemperature; + _p->prodml23__DifferentialLiberationTest::SaturationPressure = SaturationPressure; + _p->prodml23__DifferentialLiberationTest::SeparatorConditions = SeparatorConditions; + _p->prodml23__DifferentialLiberationTest::CorrectionMethod = CorrectionMethod; + _p->prodml23__DifferentialLiberationTest::Remark = Remark; + _p->prodml23__DifferentialLiberationTest::ShrinkageReference = ShrinkageReference; + _p->prodml23__DifferentialLiberationTest::DlTestStep = DlTestStep; + _p->prodml23__DifferentialLiberationTest::uid = uid; } return _p; } -inline int soap_write_prodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest const*p) +inline int soap_write_prodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest ? "prodml22:DifferentialLiberationTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest ? "prodml23:DifferentialLiberationTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml22__DifferentialLiberationTest const*p) +inline int soap_PUT_prodml23__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml23__DifferentialLiberationTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest ? "prodml22:DifferentialLiberationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest ? "prodml23:DifferentialLiberationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml22__DifferentialLiberationTest const*p) +inline int soap_PATCH_prodml23__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml23__DifferentialLiberationTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest ? "prodml22:DifferentialLiberationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest ? "prodml23:DifferentialLiberationTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml22__DifferentialLiberationTest const*p) +inline int soap_POST_send_prodml23__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml23__DifferentialLiberationTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest ? "prodml22:DifferentialLiberationTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DifferentialLiberationTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest ? "prodml23:DifferentialLiberationTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DifferentialLiberationTest * SOAP_FMAC4 soap_get_prodml22__DifferentialLiberationTest(struct soap*, prodml22__DifferentialLiberationTest *, const char*, const char*); +SOAP_FMAC3 prodml23__DifferentialLiberationTest * SOAP_FMAC4 soap_get_prodml23__DifferentialLiberationTest(struct soap*, prodml23__DifferentialLiberationTest *, const char*, const char*); -inline int soap_read_prodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest *p) +inline int soap_read_prodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DifferentialLiberationTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DifferentialLiberationTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml22__DifferentialLiberationTest *p) +inline int soap_GET_prodml23__DifferentialLiberationTest(struct soap *soap, const char *URL, prodml23__DifferentialLiberationTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DifferentialLiberationTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DifferentialLiberationTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DifferentialLiberationTest(struct soap *soap, prodml22__DifferentialLiberationTest *p) +inline int soap_POST_recv_prodml23__DifferentialLiberationTest(struct soap *soap, prodml23__DifferentialLiberationTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__DifferentialLiberationTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DifferentialLiberationTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CumulativeGasProducedVol(struct soap*, const char*, int, const prodml22__CumulativeGasProducedVol *, const char*); -SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml22__CumulativeGasProducedVol(struct soap*, const char*, prodml22__CumulativeGasProducedVol *, const char*); -SOAP_FMAC1 prodml22__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prodml22__CumulativeGasProducedVol(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CumulativeGasProducedVol(struct soap*, const char*, int, const prodml23__CumulativeGasProducedVol *, const char*); +SOAP_FMAC3 prodml23__CumulativeGasProducedVol * SOAP_FMAC4 soap_in_prodml23__CumulativeGasProducedVol(struct soap*, const char*, prodml23__CumulativeGasProducedVol *, const char*); +SOAP_FMAC1 prodml23__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prodml23__CumulativeGasProducedVol(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CumulativeGasProducedVol * soap_new_prodml22__CumulativeGasProducedVol(struct soap *soap, int n = -1) +inline prodml23__CumulativeGasProducedVol * soap_new_prodml23__CumulativeGasProducedVol(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CumulativeGasProducedVol(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CumulativeGasProducedVol(soap, n, NULL, NULL, NULL); } -inline prodml22__CumulativeGasProducedVol * soap_new_req_prodml22__CumulativeGasProducedVol( +inline prodml23__CumulativeGasProducedVol * soap_new_req_prodml23__CumulativeGasProducedVol( struct soap *soap, eml23__VolumeMeasure *CumulativeGasProducedVolume) { - prodml22__CumulativeGasProducedVol *_p = gsoap_eml2_3::soap_new_prodml22__CumulativeGasProducedVol(soap); + prodml23__CumulativeGasProducedVol *_p = gsoap_eml2_3::soap_new_prodml23__CumulativeGasProducedVol(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume = CumulativeGasProducedVolume; + _p->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume = CumulativeGasProducedVolume; } return _p; } -inline prodml22__CumulativeGasProducedVol * soap_new_set_prodml22__CumulativeGasProducedVol( +inline prodml23__CumulativeGasProducedVol * soap_new_set_prodml23__CumulativeGasProducedVol( struct soap *soap, eml23__VolumeMeasure *CumulativeGasProducedVolume) { - prodml22__CumulativeGasProducedVol *_p = gsoap_eml2_3::soap_new_prodml22__CumulativeGasProducedVol(soap); + prodml23__CumulativeGasProducedVol *_p = gsoap_eml2_3::soap_new_prodml23__CumulativeGasProducedVol(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CumulativeGasProducedVol::CumulativeGasProducedVolume = CumulativeGasProducedVolume; + _p->prodml23__CumulativeGasProducedVol::CumulativeGasProducedVolume = CumulativeGasProducedVolume; } return _p; } -inline int soap_write_prodml22__CumulativeGasProducedVol(struct soap *soap, prodml22__CumulativeGasProducedVol const*p) +inline int soap_write_prodml23__CumulativeGasProducedVol(struct soap *soap, prodml23__CumulativeGasProducedVol const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol ? "prodml22:CumulativeGasProducedVol" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol ? "prodml23:CumulativeGasProducedVol" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedVol const*p) +inline int soap_PUT_prodml23__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedVol const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol ? "prodml22:CumulativeGasProducedVol" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol ? "prodml23:CumulativeGasProducedVol" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedVol const*p) +inline int soap_PATCH_prodml23__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedVol const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol ? "prodml22:CumulativeGasProducedVol" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol ? "prodml23:CumulativeGasProducedVol" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedVol const*p) +inline int soap_POST_send_prodml23__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedVol const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol ? "prodml22:CumulativeGasProducedVol" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedVol", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol ? "prodml23:CumulativeGasProducedVol" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CumulativeGasProducedVol * SOAP_FMAC4 soap_get_prodml22__CumulativeGasProducedVol(struct soap*, prodml22__CumulativeGasProducedVol *, const char*, const char*); +SOAP_FMAC3 prodml23__CumulativeGasProducedVol * SOAP_FMAC4 soap_get_prodml23__CumulativeGasProducedVol(struct soap*, prodml23__CumulativeGasProducedVol *, const char*, const char*); -inline int soap_read_prodml22__CumulativeGasProducedVol(struct soap *soap, prodml22__CumulativeGasProducedVol *p) +inline int soap_read_prodml23__CumulativeGasProducedVol(struct soap *soap, prodml23__CumulativeGasProducedVol *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CumulativeGasProducedVol(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CumulativeGasProducedVol(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedVol *p) +inline int soap_GET_prodml23__CumulativeGasProducedVol(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedVol *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CumulativeGasProducedVol(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CumulativeGasProducedVol(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CumulativeGasProducedVol(struct soap *soap, prodml22__CumulativeGasProducedVol *p) +inline int soap_POST_recv_prodml23__CumulativeGasProducedVol(struct soap *soap, prodml23__CumulativeGasProducedVol *p) { - if (gsoap_eml2_3::soap_read_prodml22__CumulativeGasProducedVol(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CumulativeGasProducedVol(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CumulativeGasProducedRatioStd(struct soap*, const char*, int, const prodml22__CumulativeGasProducedRatioStd *, const char*); -SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml22__CumulativeGasProducedRatioStd(struct soap*, const char*, prodml22__CumulativeGasProducedRatioStd *, const char*); -SOAP_FMAC1 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate_prodml22__CumulativeGasProducedRatioStd(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CumulativeGasProducedRatioStd(struct soap*, const char*, int, const prodml23__CumulativeGasProducedRatioStd *, const char*); +SOAP_FMAC3 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_in_prodml23__CumulativeGasProducedRatioStd(struct soap*, const char*, prodml23__CumulativeGasProducedRatioStd *, const char*); +SOAP_FMAC1 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate_prodml23__CumulativeGasProducedRatioStd(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CumulativeGasProducedRatioStd * soap_new_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, int n = -1) +inline prodml23__CumulativeGasProducedRatioStd * soap_new_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CumulativeGasProducedRatioStd(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CumulativeGasProducedRatioStd(soap, n, NULL, NULL, NULL); } -inline prodml22__CumulativeGasProducedRatioStd * soap_new_req_prodml22__CumulativeGasProducedRatioStd( +inline prodml23__CumulativeGasProducedRatioStd * soap_new_req_prodml23__CumulativeGasProducedRatioStd( struct soap *soap, eml23__VolumePerVolumeMeasure *CumulativeGasProducedRatioStd) { - prodml22__CumulativeGasProducedRatioStd *_p = gsoap_eml2_3::soap_new_prodml22__CumulativeGasProducedRatioStd(soap); + prodml23__CumulativeGasProducedRatioStd *_p = gsoap_eml2_3::soap_new_prodml23__CumulativeGasProducedRatioStd(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd = CumulativeGasProducedRatioStd; + _p->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd = CumulativeGasProducedRatioStd; } return _p; } -inline prodml22__CumulativeGasProducedRatioStd * soap_new_set_prodml22__CumulativeGasProducedRatioStd( +inline prodml23__CumulativeGasProducedRatioStd * soap_new_set_prodml23__CumulativeGasProducedRatioStd( struct soap *soap, eml23__VolumePerVolumeMeasure *CumulativeGasProducedRatioStd) { - prodml22__CumulativeGasProducedRatioStd *_p = gsoap_eml2_3::soap_new_prodml22__CumulativeGasProducedRatioStd(soap); + prodml23__CumulativeGasProducedRatioStd *_p = gsoap_eml2_3::soap_new_prodml23__CumulativeGasProducedRatioStd(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd = CumulativeGasProducedRatioStd; + _p->prodml23__CumulativeGasProducedRatioStd::CumulativeGasProducedRatioStd = CumulativeGasProducedRatioStd; } return _p; } -inline int soap_write_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, prodml22__CumulativeGasProducedRatioStd const*p) +inline int soap_write_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, prodml23__CumulativeGasProducedRatioStd const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd ? "prodml22:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd ? "prodml23:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedRatioStd const*p) +inline int soap_PUT_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedRatioStd const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd ? "prodml22:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd ? "prodml23:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedRatioStd const*p) +inline int soap_PATCH_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedRatioStd const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd ? "prodml22:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd ? "prodml23:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedRatioStd const*p) +inline int soap_POST_send_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedRatioStd const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd ? "prodml22:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CumulativeGasProducedRatioStd", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd ? "prodml23:CumulativeGasProducedRatioStd" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_get_prodml22__CumulativeGasProducedRatioStd(struct soap*, prodml22__CumulativeGasProducedRatioStd *, const char*, const char*); +SOAP_FMAC3 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC4 soap_get_prodml23__CumulativeGasProducedRatioStd(struct soap*, prodml23__CumulativeGasProducedRatioStd *, const char*, const char*); -inline int soap_read_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, prodml22__CumulativeGasProducedRatioStd *p) +inline int soap_read_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, prodml23__CumulativeGasProducedRatioStd *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CumulativeGasProducedRatioStd(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CumulativeGasProducedRatioStd(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml22__CumulativeGasProducedRatioStd *p) +inline int soap_GET_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, const char *URL, prodml23__CumulativeGasProducedRatioStd *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CumulativeGasProducedRatioStd(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CumulativeGasProducedRatioStd(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CumulativeGasProducedRatioStd(struct soap *soap, prodml22__CumulativeGasProducedRatioStd *p) +inline int soap_POST_recv_prodml23__CumulativeGasProducedRatioStd(struct soap *soap, prodml23__CumulativeGasProducedRatioStd *p) { - if (gsoap_eml2_3::soap_read_prodml22__CumulativeGasProducedRatioStd(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CumulativeGasProducedRatioStd(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantVolumeDepletionTest(struct soap*, const char*, int, const prodml22__ConstantVolumeDepletionTest *, const char*); -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml22__ConstantVolumeDepletionTest(struct soap*, const char*, prodml22__ConstantVolumeDepletionTest *, const char*); -SOAP_FMAC1 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_prodml22__ConstantVolumeDepletionTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantVolumeDepletionTest(struct soap*, const char*, int, const prodml23__ConstantVolumeDepletionTest *, const char*); +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_in_prodml23__ConstantVolumeDepletionTest(struct soap*, const char*, prodml23__ConstantVolumeDepletionTest *, const char*); +SOAP_FMAC1 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_prodml23__ConstantVolumeDepletionTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ConstantVolumeDepletionTest * soap_new_prodml22__ConstantVolumeDepletionTest(struct soap *soap, int n = -1) +inline prodml23__ConstantVolumeDepletionTest * soap_new_prodml23__ConstantVolumeDepletionTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ConstantVolumeDepletionTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ConstantVolumeDepletionTest(soap, n, NULL, NULL, NULL); } -inline prodml22__ConstantVolumeDepletionTest * soap_new_req_prodml22__ConstantVolumeDepletionTest( +inline prodml23__ConstantVolumeDepletionTest * soap_new_req_prodml23__ConstantVolumeDepletionTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, const std::string& uid) { - prodml22__ConstantVolumeDepletionTest *_p = gsoap_eml2_3::soap_new_prodml22__ConstantVolumeDepletionTest(soap); + prodml23__ConstantVolumeDepletionTest *_p = gsoap_eml2_3::soap_new_prodml23__ConstantVolumeDepletionTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConstantVolumeDepletionTest::TestNumber = TestNumber; - _p->prodml22__ConstantVolumeDepletionTest::TestTemperature = TestTemperature; - _p->prodml22__ConstantVolumeDepletionTest::uid = uid; + _p->prodml23__ConstantVolumeDepletionTest::TestNumber = TestNumber; + _p->prodml23__ConstantVolumeDepletionTest::TestTemperature = TestTemperature; + _p->prodml23__ConstantVolumeDepletionTest::uid = uid; } return _p; } -inline prodml22__ConstantVolumeDepletionTest * soap_new_set_prodml22__ConstantVolumeDepletionTest( +inline prodml23__ConstantVolumeDepletionTest * soap_new_set_prodml23__ConstantVolumeDepletionTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, eml23__VolumeMeasure *CumulativeGasProducedReferenceStd, std::string *Remark, - prodml22__SaturationPressure *SaturationPressure, - const std::vector & LiquidFractionReference, - const std::vector & CvdTestStep, + prodml23__SaturationPressure *SaturationPressure, + const std::vector & LiquidFractionReference, + const std::vector & CvdTestStep, const std::string& uid) { - prodml22__ConstantVolumeDepletionTest *_p = gsoap_eml2_3::soap_new_prodml22__ConstantVolumeDepletionTest(soap); + prodml23__ConstantVolumeDepletionTest *_p = gsoap_eml2_3::soap_new_prodml23__ConstantVolumeDepletionTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConstantVolumeDepletionTest::TestNumber = TestNumber; - _p->prodml22__ConstantVolumeDepletionTest::TestTemperature = TestTemperature; - _p->prodml22__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd = CumulativeGasProducedReferenceStd; - _p->prodml22__ConstantVolumeDepletionTest::Remark = Remark; - _p->prodml22__ConstantVolumeDepletionTest::SaturationPressure = SaturationPressure; - _p->prodml22__ConstantVolumeDepletionTest::LiquidFractionReference = LiquidFractionReference; - _p->prodml22__ConstantVolumeDepletionTest::CvdTestStep = CvdTestStep; - _p->prodml22__ConstantVolumeDepletionTest::uid = uid; + _p->prodml23__ConstantVolumeDepletionTest::TestNumber = TestNumber; + _p->prodml23__ConstantVolumeDepletionTest::TestTemperature = TestTemperature; + _p->prodml23__ConstantVolumeDepletionTest::CumulativeGasProducedReferenceStd = CumulativeGasProducedReferenceStd; + _p->prodml23__ConstantVolumeDepletionTest::Remark = Remark; + _p->prodml23__ConstantVolumeDepletionTest::SaturationPressure = SaturationPressure; + _p->prodml23__ConstantVolumeDepletionTest::LiquidFractionReference = LiquidFractionReference; + _p->prodml23__ConstantVolumeDepletionTest::CvdTestStep = CvdTestStep; + _p->prodml23__ConstantVolumeDepletionTest::uid = uid; } return _p; } -inline int soap_write_prodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest const*p) +inline int soap_write_prodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest ? "prodml22:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest ? "prodml23:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml22__ConstantVolumeDepletionTest const*p) +inline int soap_PUT_prodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml23__ConstantVolumeDepletionTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest ? "prodml22:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest ? "prodml23:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml22__ConstantVolumeDepletionTest const*p) +inline int soap_PATCH_prodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml23__ConstantVolumeDepletionTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest ? "prodml22:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest ? "prodml23:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml22__ConstantVolumeDepletionTest const*p) +inline int soap_POST_send_prodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml23__ConstantVolumeDepletionTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest ? "prodml22:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantVolumeDepletionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest ? "prodml23:ConstantVolumeDepletionTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_get_prodml22__ConstantVolumeDepletionTest(struct soap*, prodml22__ConstantVolumeDepletionTest *, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC4 soap_get_prodml23__ConstantVolumeDepletionTest(struct soap*, prodml23__ConstantVolumeDepletionTest *, const char*, const char*); -inline int soap_read_prodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest *p) +inline int soap_read_prodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ConstantVolumeDepletionTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ConstantVolumeDepletionTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml22__ConstantVolumeDepletionTest *p) +inline int soap_GET_prodml23__ConstantVolumeDepletionTest(struct soap *soap, const char *URL, prodml23__ConstantVolumeDepletionTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ConstantVolumeDepletionTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ConstantVolumeDepletionTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ConstantVolumeDepletionTest(struct soap *soap, prodml22__ConstantVolumeDepletionTest *p) +inline int soap_POST_recv_prodml23__ConstantVolumeDepletionTest(struct soap *soap, prodml23__ConstantVolumeDepletionTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__ConstantVolumeDepletionTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ConstantVolumeDepletionTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantCompositionExpansionTestStep(struct soap*, const char*, int, const prodml22__ConstantCompositionExpansionTestStep *, const char*); -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_prodml22__ConstantCompositionExpansionTestStep(struct soap*, const char*, prodml22__ConstantCompositionExpansionTestStep *, const char*); -SOAP_FMAC1 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantCompositionExpansionTestStep(struct soap*, const char*, int, const prodml23__ConstantCompositionExpansionTestStep *, const char*); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_in_prodml23__ConstantCompositionExpansionTestStep(struct soap*, const char*, prodml23__ConstantCompositionExpansionTestStep *, const char*); +SOAP_FMAC1 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ConstantCompositionExpansionTestStep * soap_new_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, int n = -1) +inline prodml23__ConstantCompositionExpansionTestStep * soap_new_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(soap, n, NULL, NULL, NULL); } -inline prodml22__ConstantCompositionExpansionTestStep * soap_new_req_prodml22__ConstantCompositionExpansionTestStep( +inline prodml23__ConstantCompositionExpansionTestStep * soap_new_req_prodml23__ConstantCompositionExpansionTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, const std::string& uid) { - prodml22__ConstantCompositionExpansionTestStep *_p = gsoap_eml2_3::soap_new_prodml22__ConstantCompositionExpansionTestStep(soap); + prodml23__ConstantCompositionExpansionTestStep *_p = gsoap_eml2_3::soap_new_prodml23__ConstantCompositionExpansionTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConstantCompositionExpansionTestStep::StepNumber = StepNumber; - _p->prodml22__ConstantCompositionExpansionTestStep::StepPressure = StepPressure; - _p->prodml22__ConstantCompositionExpansionTestStep::uid = uid; + _p->prodml23__ConstantCompositionExpansionTestStep::StepNumber = StepNumber; + _p->prodml23__ConstantCompositionExpansionTestStep::StepPressure = StepPressure; + _p->prodml23__ConstantCompositionExpansionTestStep::uid = uid; } return _p; } -inline prodml22__ConstantCompositionExpansionTestStep * soap_new_set_prodml22__ConstantCompositionExpansionTestStep( +inline prodml23__ConstantCompositionExpansionTestStep * soap_new_set_prodml23__ConstantCompositionExpansionTestStep( struct soap *soap, LONG64 StepNumber, eml23__PressureMeasure *StepPressure, - prodml22__RelativeVolumeRatio *LiquidFraction, + prodml23__RelativeVolumeRatio *LiquidFraction, eml23__MassPerVolumeMeasure *OilDensity, - prodml22__OilCompressibility *OilCompressibility, + prodml23__OilCompressibility *OilCompressibility, eml23__DynamicViscosityMeasure *OilViscosity, eml23__VolumeMeasure *TotalVolume, - prodml22__RelativeVolumeRatio *RelativeVolumeRatio, + prodml23__RelativeVolumeRatio *RelativeVolumeRatio, eml23__MassPerVolumeMeasure *GasDensity, double *GasZFactor, eml23__ReciprocalPressureMeasure *GasCompressibility, eml23__DynamicViscosityMeasure *GasViscosity, double *YFunction, - prodml22__FluidAnalysisStepCondition *FluidCondition, - prodml22__PhasePresent *PhasesPresent, - prodml22__VaporComposition *VaporComposition, - prodml22__LiquidComposition *LiquidComposition, - prodml22__OverallComposition *OverallComposition, + prodml23__FluidAnalysisStepCondition *FluidCondition, + prodml23__PhasePresent *PhasesPresent, + prodml23__VaporComposition *VaporComposition, + prodml23__LiquidComposition *LiquidComposition, + prodml23__OverallComposition *OverallComposition, std::string *Remark, const std::string& uid) { - prodml22__ConstantCompositionExpansionTestStep *_p = gsoap_eml2_3::soap_new_prodml22__ConstantCompositionExpansionTestStep(soap); + prodml23__ConstantCompositionExpansionTestStep *_p = gsoap_eml2_3::soap_new_prodml23__ConstantCompositionExpansionTestStep(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConstantCompositionExpansionTestStep::StepNumber = StepNumber; - _p->prodml22__ConstantCompositionExpansionTestStep::StepPressure = StepPressure; - _p->prodml22__ConstantCompositionExpansionTestStep::LiquidFraction = LiquidFraction; - _p->prodml22__ConstantCompositionExpansionTestStep::OilDensity = OilDensity; - _p->prodml22__ConstantCompositionExpansionTestStep::OilCompressibility = OilCompressibility; - _p->prodml22__ConstantCompositionExpansionTestStep::OilViscosity = OilViscosity; - _p->prodml22__ConstantCompositionExpansionTestStep::TotalVolume = TotalVolume; - _p->prodml22__ConstantCompositionExpansionTestStep::RelativeVolumeRatio = RelativeVolumeRatio; - _p->prodml22__ConstantCompositionExpansionTestStep::GasDensity = GasDensity; - _p->prodml22__ConstantCompositionExpansionTestStep::GasZFactor = GasZFactor; - _p->prodml22__ConstantCompositionExpansionTestStep::GasCompressibility = GasCompressibility; - _p->prodml22__ConstantCompositionExpansionTestStep::GasViscosity = GasViscosity; - _p->prodml22__ConstantCompositionExpansionTestStep::YFunction = YFunction; - _p->prodml22__ConstantCompositionExpansionTestStep::FluidCondition = FluidCondition; - _p->prodml22__ConstantCompositionExpansionTestStep::PhasesPresent = PhasesPresent; - _p->prodml22__ConstantCompositionExpansionTestStep::VaporComposition = VaporComposition; - _p->prodml22__ConstantCompositionExpansionTestStep::LiquidComposition = LiquidComposition; - _p->prodml22__ConstantCompositionExpansionTestStep::OverallComposition = OverallComposition; - _p->prodml22__ConstantCompositionExpansionTestStep::Remark = Remark; - _p->prodml22__ConstantCompositionExpansionTestStep::uid = uid; + _p->prodml23__ConstantCompositionExpansionTestStep::StepNumber = StepNumber; + _p->prodml23__ConstantCompositionExpansionTestStep::StepPressure = StepPressure; + _p->prodml23__ConstantCompositionExpansionTestStep::LiquidFraction = LiquidFraction; + _p->prodml23__ConstantCompositionExpansionTestStep::OilDensity = OilDensity; + _p->prodml23__ConstantCompositionExpansionTestStep::OilCompressibility = OilCompressibility; + _p->prodml23__ConstantCompositionExpansionTestStep::OilViscosity = OilViscosity; + _p->prodml23__ConstantCompositionExpansionTestStep::TotalVolume = TotalVolume; + _p->prodml23__ConstantCompositionExpansionTestStep::RelativeVolumeRatio = RelativeVolumeRatio; + _p->prodml23__ConstantCompositionExpansionTestStep::GasDensity = GasDensity; + _p->prodml23__ConstantCompositionExpansionTestStep::GasZFactor = GasZFactor; + _p->prodml23__ConstantCompositionExpansionTestStep::GasCompressibility = GasCompressibility; + _p->prodml23__ConstantCompositionExpansionTestStep::GasViscosity = GasViscosity; + _p->prodml23__ConstantCompositionExpansionTestStep::YFunction = YFunction; + _p->prodml23__ConstantCompositionExpansionTestStep::FluidCondition = FluidCondition; + _p->prodml23__ConstantCompositionExpansionTestStep::PhasesPresent = PhasesPresent; + _p->prodml23__ConstantCompositionExpansionTestStep::VaporComposition = VaporComposition; + _p->prodml23__ConstantCompositionExpansionTestStep::LiquidComposition = LiquidComposition; + _p->prodml23__ConstantCompositionExpansionTestStep::OverallComposition = OverallComposition; + _p->prodml23__ConstantCompositionExpansionTestStep::Remark = Remark; + _p->prodml23__ConstantCompositionExpansionTestStep::uid = uid; } return _p; } -inline int soap_write_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep const*p) +inline int soap_write_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep ? "prodml22:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep ? "prodml23:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTestStep const*p) +inline int soap_PUT_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTestStep const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep ? "prodml22:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep ? "prodml23:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTestStep const*p) +inline int soap_PATCH_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTestStep const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep ? "prodml22:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep ? "prodml23:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTestStep const*p) +inline int soap_POST_send_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTestStep const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep ? "prodml22:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTestStep", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep ? "prodml23:ConstantCompositionExpansionTestStep" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_get_prodml22__ConstantCompositionExpansionTestStep(struct soap*, prodml22__ConstantCompositionExpansionTestStep *, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC4 soap_get_prodml23__ConstantCompositionExpansionTestStep(struct soap*, prodml23__ConstantCompositionExpansionTestStep *, const char*, const char*); -inline int soap_read_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep *p) +inline int soap_read_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ConstantCompositionExpansionTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ConstantCompositionExpansionTestStep(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTestStep *p) +inline int soap_GET_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTestStep *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ConstantCompositionExpansionTestStep(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ConstantCompositionExpansionTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ConstantCompositionExpansionTestStep(struct soap *soap, prodml22__ConstantCompositionExpansionTestStep *p) +inline int soap_POST_recv_prodml23__ConstantCompositionExpansionTestStep(struct soap *soap, prodml23__ConstantCompositionExpansionTestStep *p) { - if (gsoap_eml2_3::soap_read_prodml22__ConstantCompositionExpansionTestStep(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ConstantCompositionExpansionTestStep(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ConstantCompositionExpansionTest(struct soap*, const char*, int, const prodml22__ConstantCompositionExpansionTest *, const char*); -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodml22__ConstantCompositionExpansionTest(struct soap*, const char*, prodml22__ConstantCompositionExpansionTest *, const char*); -SOAP_FMAC1 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instantiate_prodml22__ConstantCompositionExpansionTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ConstantCompositionExpansionTest(struct soap*, const char*, int, const prodml23__ConstantCompositionExpansionTest *, const char*); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_in_prodml23__ConstantCompositionExpansionTest(struct soap*, const char*, prodml23__ConstantCompositionExpansionTest *, const char*); +SOAP_FMAC1 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instantiate_prodml23__ConstantCompositionExpansionTest(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ConstantCompositionExpansionTest * soap_new_prodml22__ConstantCompositionExpansionTest(struct soap *soap, int n = -1) +inline prodml23__ConstantCompositionExpansionTest * soap_new_prodml23__ConstantCompositionExpansionTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ConstantCompositionExpansionTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ConstantCompositionExpansionTest(soap, n, NULL, NULL, NULL); } -inline prodml22__ConstantCompositionExpansionTest * soap_new_req_prodml22__ConstantCompositionExpansionTest( +inline prodml23__ConstantCompositionExpansionTest * soap_new_req_prodml23__ConstantCompositionExpansionTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, const std::string& uid) { - prodml22__ConstantCompositionExpansionTest *_p = gsoap_eml2_3::soap_new_prodml22__ConstantCompositionExpansionTest(soap); + prodml23__ConstantCompositionExpansionTest *_p = gsoap_eml2_3::soap_new_prodml23__ConstantCompositionExpansionTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConstantCompositionExpansionTest::TestNumber = TestNumber; - _p->prodml22__ConstantCompositionExpansionTest::TestTemperature = TestTemperature; - _p->prodml22__ConstantCompositionExpansionTest::uid = uid; + _p->prodml23__ConstantCompositionExpansionTest::TestNumber = TestNumber; + _p->prodml23__ConstantCompositionExpansionTest::TestTemperature = TestTemperature; + _p->prodml23__ConstantCompositionExpansionTest::uid = uid; } return _p; } -inline prodml22__ConstantCompositionExpansionTest * soap_new_set_prodml22__ConstantCompositionExpansionTest( +inline prodml23__ConstantCompositionExpansionTest * soap_new_set_prodml23__ConstantCompositionExpansionTest( struct soap *soap, LONG64 TestNumber, eml23__ThermodynamicTemperatureMeasure *TestTemperature, - prodml22__SaturationPressure *SaturationPressure, - const std::vector & LiquidFractionReference, - const std::vector & RelativeVolumeReference, - const std::vector & ConstantCompositionExpansionTestStep, + prodml23__SaturationPressure *SaturationPressure, + const std::vector & LiquidFractionReference, + const std::vector & RelativeVolumeReference, + const std::vector & ConstantCompositionExpansionTestStep, std::string *Remark, const std::string& uid) { - prodml22__ConstantCompositionExpansionTest *_p = gsoap_eml2_3::soap_new_prodml22__ConstantCompositionExpansionTest(soap); + prodml23__ConstantCompositionExpansionTest *_p = gsoap_eml2_3::soap_new_prodml23__ConstantCompositionExpansionTest(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ConstantCompositionExpansionTest::TestNumber = TestNumber; - _p->prodml22__ConstantCompositionExpansionTest::TestTemperature = TestTemperature; - _p->prodml22__ConstantCompositionExpansionTest::SaturationPressure = SaturationPressure; - _p->prodml22__ConstantCompositionExpansionTest::LiquidFractionReference = LiquidFractionReference; - _p->prodml22__ConstantCompositionExpansionTest::RelativeVolumeReference = RelativeVolumeReference; - _p->prodml22__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep = ConstantCompositionExpansionTestStep; - _p->prodml22__ConstantCompositionExpansionTest::Remark = Remark; - _p->prodml22__ConstantCompositionExpansionTest::uid = uid; + _p->prodml23__ConstantCompositionExpansionTest::TestNumber = TestNumber; + _p->prodml23__ConstantCompositionExpansionTest::TestTemperature = TestTemperature; + _p->prodml23__ConstantCompositionExpansionTest::SaturationPressure = SaturationPressure; + _p->prodml23__ConstantCompositionExpansionTest::LiquidFractionReference = LiquidFractionReference; + _p->prodml23__ConstantCompositionExpansionTest::RelativeVolumeReference = RelativeVolumeReference; + _p->prodml23__ConstantCompositionExpansionTest::ConstantCompositionExpansionTestStep = ConstantCompositionExpansionTestStep; + _p->prodml23__ConstantCompositionExpansionTest::Remark = Remark; + _p->prodml23__ConstantCompositionExpansionTest::uid = uid; } return _p; } -inline int soap_write_prodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest const*p) +inline int soap_write_prodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest ? "prodml22:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest ? "prodml23:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTest const*p) +inline int soap_PUT_prodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTest const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest ? "prodml22:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest ? "prodml23:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTest const*p) +inline int soap_PATCH_prodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTest const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest ? "prodml22:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest ? "prodml23:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTest const*p) +inline int soap_POST_send_prodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTest const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest ? "prodml22:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ConstantCompositionExpansionTest", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest ? "prodml23:ConstantCompositionExpansionTest" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_get_prodml22__ConstantCompositionExpansionTest(struct soap*, prodml22__ConstantCompositionExpansionTest *, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC4 soap_get_prodml23__ConstantCompositionExpansionTest(struct soap*, prodml23__ConstantCompositionExpansionTest *, const char*, const char*); -inline int soap_read_prodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest *p) +inline int soap_read_prodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ConstantCompositionExpansionTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ConstantCompositionExpansionTest(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml22__ConstantCompositionExpansionTest *p) +inline int soap_GET_prodml23__ConstantCompositionExpansionTest(struct soap *soap, const char *URL, prodml23__ConstantCompositionExpansionTest *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ConstantCompositionExpansionTest(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ConstantCompositionExpansionTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ConstantCompositionExpansionTest(struct soap *soap, prodml22__ConstantCompositionExpansionTest *p) +inline int soap_POST_recv_prodml23__ConstantCompositionExpansionTest(struct soap *soap, prodml23__ConstantCompositionExpansionTest *p) { - if (gsoap_eml2_3::soap_read_prodml22__ConstantCompositionExpansionTest(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ConstantCompositionExpansionTest(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, int, const prodml22__AtmosphericFlashTestAndCompositionalAnalysis *, const char*); -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_in_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *, const char*); -SOAP_FMAC1 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, int, const prodml23__AtmosphericFlashTestAndCompositionalAnalysis *, const char*); +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_in_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *, const char*); +SOAP_FMAC1 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n = -1) +inline prodml23__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, n, NULL, NULL, NULL); } -inline prodml22__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_req_prodml22__AtmosphericFlashTestAndCompositionalAnalysis( +inline prodml23__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_req_prodml23__AtmosphericFlashTestAndCompositionalAnalysis( struct soap *soap, LONG64 TestNumber, const std::string& uid) { - prodml22__AtmosphericFlashTestAndCompositionalAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap); + prodml23__AtmosphericFlashTestAndCompositionalAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber = TestNumber; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::uid = uid; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber = TestNumber; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::uid = uid; } return _p; } -inline prodml22__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_set_prodml22__AtmosphericFlashTestAndCompositionalAnalysis( +inline prodml23__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_set_prodml23__AtmosphericFlashTestAndCompositionalAnalysis( struct soap *soap, LONG64 TestNumber, std::string *Date, @@ -130557,477 +130529,477 @@ inline prodml22__AtmosphericFlashTestAndCompositionalAnalysis * soap_new_set_pro eml23__MassPerVolumeMeasure *DensityAtFlashFromPressureAndTemperature, eml23__MolecularWeightMeasure *AvgMolecularWeight, std::string *Remark, - prodml22__FlashedLiquid *FlashedLiquid, - prodml22__OverallComposition *OverallComposition, - prodml22__FlashedGas *FlashedGas, + prodml23__FlashedLiquid *FlashedLiquid, + prodml23__OverallComposition *OverallComposition, + prodml23__FlashedGas *FlashedGas, const std::string& uid) { - prodml22__AtmosphericFlashTestAndCompositionalAnalysis *_p = gsoap_eml2_3::soap_new_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap); + prodml23__AtmosphericFlashTestAndCompositionalAnalysis *_p = gsoap_eml2_3::soap_new_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber = TestNumber; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Date = Date; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure = FlashToPressure; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature = FlashToTemperature; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure = FlashFromPressure; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature = FlashFromTemperature; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR = FlashGOR; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor = OilFormationVolumeFactor; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature = DensityAtFlashFromPressureAndTemperature; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight = AvgMolecularWeight; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::Remark = Remark; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid = FlashedLiquid; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition = OverallComposition; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas = FlashedGas; - _p->prodml22__AtmosphericFlashTestAndCompositionalAnalysis::uid = uid; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::TestNumber = TestNumber; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Date = Date; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToPressure = FlashToPressure; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashToTemperature = FlashToTemperature; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromPressure = FlashFromPressure; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashFromTemperature = FlashFromTemperature; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashGOR = FlashGOR; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OilFormationVolumeFactor = OilFormationVolumeFactor; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::DensityAtFlashFromPressureAndTemperature = DensityAtFlashFromPressureAndTemperature; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::AvgMolecularWeight = AvgMolecularWeight; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::Remark = Remark; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedLiquid = FlashedLiquid; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::OverallComposition = OverallComposition; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::FlashedGas = FlashedGas; + _p->prodml23__AtmosphericFlashTestAndCompositionalAnalysis::uid = uid; } return _p; } -inline int soap_write_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis const*p) +inline int soap_write_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml22:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml23:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml22__AtmosphericFlashTestAndCompositionalAnalysis const*p) +inline int soap_PUT_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml23__AtmosphericFlashTestAndCompositionalAnalysis const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml22:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml23:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml22__AtmosphericFlashTestAndCompositionalAnalysis const*p) +inline int soap_PATCH_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml23__AtmosphericFlashTestAndCompositionalAnalysis const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml22:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml23:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml22__AtmosphericFlashTestAndCompositionalAnalysis const*p) +inline int soap_POST_send_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml23__AtmosphericFlashTestAndCompositionalAnalysis const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml22:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AtmosphericFlashTestAndCompositionalAnalysis", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis ? "prodml23:AtmosphericFlashTestAndCompositionalAnalysis" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_get_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *, const char*, const char*); +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC4 soap_get_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *, const char*, const char*); -inline int soap_read_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *p) +inline int soap_read_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *p) +inline int soap_GET_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, const char *URL, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *p) +inline int soap_POST_recv_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *p) { - if (gsoap_eml2_3::soap_read_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractOilVolShrinkage(struct soap*, const char*, int, const prodml22__AbstractOilVolShrinkage *, const char*); -SOAP_FMAC3 prodml22__AbstractOilVolShrinkage * SOAP_FMAC4 soap_in_prodml22__AbstractOilVolShrinkage(struct soap*, const char*, prodml22__AbstractOilVolShrinkage *, const char*); -SOAP_FMAC1 prodml22__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodml22__AbstractOilVolShrinkage(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractOilVolShrinkage(struct soap*, const char*, int, const prodml23__AbstractOilVolShrinkage *, const char*); +SOAP_FMAC3 prodml23__AbstractOilVolShrinkage * SOAP_FMAC4 soap_in_prodml23__AbstractOilVolShrinkage(struct soap*, const char*, prodml23__AbstractOilVolShrinkage *, const char*); +SOAP_FMAC1 prodml23__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodml23__AbstractOilVolShrinkage(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractOilVolShrinkage * soap_new_prodml22__AbstractOilVolShrinkage(struct soap *soap, int n = -1) +inline prodml23__AbstractOilVolShrinkage * soap_new_prodml23__AbstractOilVolShrinkage(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractOilVolShrinkage(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractOilVolShrinkage(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractOilVolShrinkage * soap_new_req_prodml22__AbstractOilVolShrinkage( +inline prodml23__AbstractOilVolShrinkage * soap_new_req_prodml23__AbstractOilVolShrinkage( struct soap *soap) { - prodml22__AbstractOilVolShrinkage *_p = gsoap_eml2_3::soap_new_prodml22__AbstractOilVolShrinkage(soap); + prodml23__AbstractOilVolShrinkage *_p = gsoap_eml2_3::soap_new_prodml23__AbstractOilVolShrinkage(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractOilVolShrinkage * soap_new_set_prodml22__AbstractOilVolShrinkage( +inline prodml23__AbstractOilVolShrinkage * soap_new_set_prodml23__AbstractOilVolShrinkage( struct soap *soap) { - prodml22__AbstractOilVolShrinkage *_p = gsoap_eml2_3::soap_new_prodml22__AbstractOilVolShrinkage(soap); + prodml23__AbstractOilVolShrinkage *_p = gsoap_eml2_3::soap_new_prodml23__AbstractOilVolShrinkage(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractOilVolShrinkage(struct soap *soap, prodml22__AbstractOilVolShrinkage const*p) +inline int soap_write_prodml23__AbstractOilVolShrinkage(struct soap *soap, prodml23__AbstractOilVolShrinkage const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage ? "prodml22:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage ? "prodml23:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml22__AbstractOilVolShrinkage const*p) +inline int soap_PUT_prodml23__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml23__AbstractOilVolShrinkage const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage ? "prodml22:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage ? "prodml23:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml22__AbstractOilVolShrinkage const*p) +inline int soap_PATCH_prodml23__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml23__AbstractOilVolShrinkage const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage ? "prodml22:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage ? "prodml23:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml22__AbstractOilVolShrinkage const*p) +inline int soap_POST_send_prodml23__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml23__AbstractOilVolShrinkage const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage ? "prodml22:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractOilVolShrinkage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage ? "prodml23:AbstractOilVolShrinkage" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractOilVolShrinkage * SOAP_FMAC4 soap_get_prodml22__AbstractOilVolShrinkage(struct soap*, prodml22__AbstractOilVolShrinkage *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractOilVolShrinkage * SOAP_FMAC4 soap_get_prodml23__AbstractOilVolShrinkage(struct soap*, prodml23__AbstractOilVolShrinkage *, const char*, const char*); -inline int soap_read_prodml22__AbstractOilVolShrinkage(struct soap *soap, prodml22__AbstractOilVolShrinkage *p) +inline int soap_read_prodml23__AbstractOilVolShrinkage(struct soap *soap, prodml23__AbstractOilVolShrinkage *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractOilVolShrinkage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractOilVolShrinkage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml22__AbstractOilVolShrinkage *p) +inline int soap_GET_prodml23__AbstractOilVolShrinkage(struct soap *soap, const char *URL, prodml23__AbstractOilVolShrinkage *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractOilVolShrinkage(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractOilVolShrinkage(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractOilVolShrinkage(struct soap *soap, prodml22__AbstractOilVolShrinkage *p) +inline int soap_POST_recv_prodml23__AbstractOilVolShrinkage(struct soap *soap, prodml23__AbstractOilVolShrinkage *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractOilVolShrinkage(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractOilVolShrinkage(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractLiquidDropoutPercVolume(struct soap*, const char*, int, const prodml22__AbstractLiquidDropoutPercVolume *, const char*); -SOAP_FMAC3 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_in_prodml22__AbstractLiquidDropoutPercVolume(struct soap*, const char*, prodml22__AbstractLiquidDropoutPercVolume *, const char*); -SOAP_FMAC1 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantiate_prodml22__AbstractLiquidDropoutPercVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractLiquidDropoutPercVolume(struct soap*, const char*, int, const prodml23__AbstractLiquidDropoutPercVolume *, const char*); +SOAP_FMAC3 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_in_prodml23__AbstractLiquidDropoutPercVolume(struct soap*, const char*, prodml23__AbstractLiquidDropoutPercVolume *, const char*); +SOAP_FMAC1 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantiate_prodml23__AbstractLiquidDropoutPercVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractLiquidDropoutPercVolume * soap_new_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, int n = -1) +inline prodml23__AbstractLiquidDropoutPercVolume * soap_new_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractLiquidDropoutPercVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractLiquidDropoutPercVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractLiquidDropoutPercVolume * soap_new_req_prodml22__AbstractLiquidDropoutPercVolume( +inline prodml23__AbstractLiquidDropoutPercVolume * soap_new_req_prodml23__AbstractLiquidDropoutPercVolume( struct soap *soap) { - prodml22__AbstractLiquidDropoutPercVolume *_p = gsoap_eml2_3::soap_new_prodml22__AbstractLiquidDropoutPercVolume(soap); + prodml23__AbstractLiquidDropoutPercVolume *_p = gsoap_eml2_3::soap_new_prodml23__AbstractLiquidDropoutPercVolume(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractLiquidDropoutPercVolume * soap_new_set_prodml22__AbstractLiquidDropoutPercVolume( +inline prodml23__AbstractLiquidDropoutPercVolume * soap_new_set_prodml23__AbstractLiquidDropoutPercVolume( struct soap *soap) { - prodml22__AbstractLiquidDropoutPercVolume *_p = gsoap_eml2_3::soap_new_prodml22__AbstractLiquidDropoutPercVolume(soap); + prodml23__AbstractLiquidDropoutPercVolume *_p = gsoap_eml2_3::soap_new_prodml23__AbstractLiquidDropoutPercVolume(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml22__AbstractLiquidDropoutPercVolume const*p) +inline int soap_write_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml23__AbstractLiquidDropoutPercVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume ? "prodml22:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume ? "prodml23:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml22__AbstractLiquidDropoutPercVolume const*p) +inline int soap_PUT_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml23__AbstractLiquidDropoutPercVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume ? "prodml22:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume ? "prodml23:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml22__AbstractLiquidDropoutPercVolume const*p) +inline int soap_PATCH_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml23__AbstractLiquidDropoutPercVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume ? "prodml22:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume ? "prodml23:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml22__AbstractLiquidDropoutPercVolume const*p) +inline int soap_POST_send_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml23__AbstractLiquidDropoutPercVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume ? "prodml22:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractLiquidDropoutPercVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume ? "prodml23:AbstractLiquidDropoutPercVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_get_prodml22__AbstractLiquidDropoutPercVolume(struct soap*, prodml22__AbstractLiquidDropoutPercVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC4 soap_get_prodml23__AbstractLiquidDropoutPercVolume(struct soap*, prodml23__AbstractLiquidDropoutPercVolume *, const char*, const char*); -inline int soap_read_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml22__AbstractLiquidDropoutPercVolume *p) +inline int soap_read_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml23__AbstractLiquidDropoutPercVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractLiquidDropoutPercVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractLiquidDropoutPercVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml22__AbstractLiquidDropoutPercVolume *p) +inline int soap_GET_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, const char *URL, prodml23__AbstractLiquidDropoutPercVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractLiquidDropoutPercVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractLiquidDropoutPercVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml22__AbstractLiquidDropoutPercVolume *p) +inline int soap_POST_recv_prodml23__AbstractLiquidDropoutPercVolume(struct soap *soap, prodml23__AbstractLiquidDropoutPercVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractLiquidDropoutPercVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractLiquidDropoutPercVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractGasProducedRatioVolume(struct soap*, const char*, int, const prodml22__AbstractGasProducedRatioVolume *, const char*); -SOAP_FMAC3 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_in_prodml22__AbstractGasProducedRatioVolume(struct soap*, const char*, prodml22__AbstractGasProducedRatioVolume *, const char*); -SOAP_FMAC1 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiate_prodml22__AbstractGasProducedRatioVolume(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractGasProducedRatioVolume(struct soap*, const char*, int, const prodml23__AbstractGasProducedRatioVolume *, const char*); +SOAP_FMAC3 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_in_prodml23__AbstractGasProducedRatioVolume(struct soap*, const char*, prodml23__AbstractGasProducedRatioVolume *, const char*); +SOAP_FMAC1 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiate_prodml23__AbstractGasProducedRatioVolume(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractGasProducedRatioVolume * soap_new_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, int n = -1) +inline prodml23__AbstractGasProducedRatioVolume * soap_new_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractGasProducedRatioVolume(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractGasProducedRatioVolume(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractGasProducedRatioVolume * soap_new_req_prodml22__AbstractGasProducedRatioVolume( +inline prodml23__AbstractGasProducedRatioVolume * soap_new_req_prodml23__AbstractGasProducedRatioVolume( struct soap *soap) { - prodml22__AbstractGasProducedRatioVolume *_p = gsoap_eml2_3::soap_new_prodml22__AbstractGasProducedRatioVolume(soap); + prodml23__AbstractGasProducedRatioVolume *_p = gsoap_eml2_3::soap_new_prodml23__AbstractGasProducedRatioVolume(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractGasProducedRatioVolume * soap_new_set_prodml22__AbstractGasProducedRatioVolume( +inline prodml23__AbstractGasProducedRatioVolume * soap_new_set_prodml23__AbstractGasProducedRatioVolume( struct soap *soap) { - prodml22__AbstractGasProducedRatioVolume *_p = gsoap_eml2_3::soap_new_prodml22__AbstractGasProducedRatioVolume(soap); + prodml23__AbstractGasProducedRatioVolume *_p = gsoap_eml2_3::soap_new_prodml23__AbstractGasProducedRatioVolume(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline int soap_write_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, prodml22__AbstractGasProducedRatioVolume const*p) +inline int soap_write_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, prodml23__AbstractGasProducedRatioVolume const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume ? "prodml22:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume ? "prodml23:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml22__AbstractGasProducedRatioVolume const*p) +inline int soap_PUT_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml23__AbstractGasProducedRatioVolume const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume ? "prodml22:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume ? "prodml23:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml22__AbstractGasProducedRatioVolume const*p) +inline int soap_PATCH_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml23__AbstractGasProducedRatioVolume const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume ? "prodml22:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume ? "prodml23:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml22__AbstractGasProducedRatioVolume const*p) +inline int soap_POST_send_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml23__AbstractGasProducedRatioVolume const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume ? "prodml22:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractGasProducedRatioVolume", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume ? "prodml23:AbstractGasProducedRatioVolume" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_get_prodml22__AbstractGasProducedRatioVolume(struct soap*, prodml22__AbstractGasProducedRatioVolume *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC4 soap_get_prodml23__AbstractGasProducedRatioVolume(struct soap*, prodml23__AbstractGasProducedRatioVolume *, const char*, const char*); -inline int soap_read_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, prodml22__AbstractGasProducedRatioVolume *p) +inline int soap_read_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, prodml23__AbstractGasProducedRatioVolume *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractGasProducedRatioVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractGasProducedRatioVolume(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml22__AbstractGasProducedRatioVolume *p) +inline int soap_GET_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, const char *URL, prodml23__AbstractGasProducedRatioVolume *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractGasProducedRatioVolume(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractGasProducedRatioVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractGasProducedRatioVolume(struct soap *soap, prodml22__AbstractGasProducedRatioVolume *p) +inline int soap_POST_recv_prodml23__AbstractGasProducedRatioVolume(struct soap *soap, prodml23__AbstractGasProducedRatioVolume *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractGasProducedRatioVolume(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractGasProducedRatioVolume(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__VaporComposition(struct soap*, const char*, int, const prodml22__VaporComposition *, const char*); -SOAP_FMAC3 prodml22__VaporComposition * SOAP_FMAC4 soap_in_prodml22__VaporComposition(struct soap*, const char*, prodml22__VaporComposition *, const char*); -SOAP_FMAC1 prodml22__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml22__VaporComposition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__VaporComposition(struct soap*, const char*, int, const prodml23__VaporComposition *, const char*); +SOAP_FMAC3 prodml23__VaporComposition * SOAP_FMAC4 soap_in_prodml23__VaporComposition(struct soap*, const char*, prodml23__VaporComposition *, const char*); +SOAP_FMAC1 prodml23__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml23__VaporComposition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__VaporComposition * soap_new_prodml22__VaporComposition(struct soap *soap, int n = -1) +inline prodml23__VaporComposition * soap_new_prodml23__VaporComposition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__VaporComposition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__VaporComposition(soap, n, NULL, NULL, NULL); } -inline prodml22__VaporComposition * soap_new_req_prodml22__VaporComposition( +inline prodml23__VaporComposition * soap_new_req_prodml23__VaporComposition( struct soap *soap) { - prodml22__VaporComposition *_p = gsoap_eml2_3::soap_new_prodml22__VaporComposition(soap); + prodml23__VaporComposition *_p = gsoap_eml2_3::soap_new_prodml23__VaporComposition(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__VaporComposition * soap_new_set_prodml22__VaporComposition( +inline prodml23__VaporComposition * soap_new_set_prodml23__VaporComposition( struct soap *soap, std::string *Remark, - const std::vector & VaporComponentFraction) + const std::vector & VaporComponentFraction) { - prodml22__VaporComposition *_p = gsoap_eml2_3::soap_new_prodml22__VaporComposition(soap); + prodml23__VaporComposition *_p = gsoap_eml2_3::soap_new_prodml23__VaporComposition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__VaporComposition::Remark = Remark; - _p->prodml22__VaporComposition::VaporComponentFraction = VaporComponentFraction; + _p->prodml23__VaporComposition::Remark = Remark; + _p->prodml23__VaporComposition::VaporComponentFraction = VaporComponentFraction; } return _p; } -inline int soap_write_prodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition const*p) +inline int soap_write_prodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition ? "prodml22:VaporComposition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition ? "prodml23:VaporComposition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__VaporComposition(struct soap *soap, const char *URL, prodml22__VaporComposition const*p) +inline int soap_PUT_prodml23__VaporComposition(struct soap *soap, const char *URL, prodml23__VaporComposition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition ? "prodml22:VaporComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition ? "prodml23:VaporComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__VaporComposition(struct soap *soap, const char *URL, prodml22__VaporComposition const*p) +inline int soap_PATCH_prodml23__VaporComposition(struct soap *soap, const char *URL, prodml23__VaporComposition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition ? "prodml22:VaporComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition ? "prodml23:VaporComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__VaporComposition(struct soap *soap, const char *URL, prodml22__VaporComposition const*p) +inline int soap_POST_send_prodml23__VaporComposition(struct soap *soap, const char *URL, prodml23__VaporComposition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition ? "prodml22:VaporComposition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:VaporComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition ? "prodml23:VaporComposition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__VaporComposition * SOAP_FMAC4 soap_get_prodml22__VaporComposition(struct soap*, prodml22__VaporComposition *, const char*, const char*); +SOAP_FMAC3 prodml23__VaporComposition * SOAP_FMAC4 soap_get_prodml23__VaporComposition(struct soap*, prodml23__VaporComposition *, const char*, const char*); -inline int soap_read_prodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition *p) +inline int soap_read_prodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__VaporComposition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__VaporComposition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__VaporComposition(struct soap *soap, const char *URL, prodml22__VaporComposition *p) +inline int soap_GET_prodml23__VaporComposition(struct soap *soap, const char *URL, prodml23__VaporComposition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__VaporComposition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__VaporComposition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__VaporComposition(struct soap *soap, prodml22__VaporComposition *p) +inline int soap_POST_recv_prodml23__VaporComposition(struct soap *soap, prodml23__VaporComposition *p) { - if (gsoap_eml2_3::soap_read_prodml22__VaporComposition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__VaporComposition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__SulfurFluidComponent(struct soap*, const char*, int, const prodml22__SulfurFluidComponent *, const char*); -SOAP_FMAC3 prodml22__SulfurFluidComponent * SOAP_FMAC4 soap_in_prodml22__SulfurFluidComponent(struct soap*, const char*, prodml22__SulfurFluidComponent *, const char*); -SOAP_FMAC1 prodml22__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__SulfurFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__SulfurFluidComponent(struct soap*, const char*, int, const prodml23__SulfurFluidComponent *, const char*); +SOAP_FMAC3 prodml23__SulfurFluidComponent * SOAP_FMAC4 soap_in_prodml23__SulfurFluidComponent(struct soap*, const char*, prodml23__SulfurFluidComponent *, const char*); +SOAP_FMAC1 prodml23__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__SulfurFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__SulfurFluidComponent * soap_new_prodml22__SulfurFluidComponent(struct soap *soap, int n = -1) +inline prodml23__SulfurFluidComponent * soap_new_prodml23__SulfurFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__SulfurFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__SulfurFluidComponent(soap, n, NULL, NULL, NULL); } -inline prodml22__SulfurFluidComponent * soap_new_req_prodml22__SulfurFluidComponent( +inline prodml23__SulfurFluidComponent * soap_new_req_prodml23__SulfurFluidComponent( struct soap *soap, const std::string& Kind, const std::string& uid__1) { - prodml22__SulfurFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__SulfurFluidComponent(soap); + prodml23__SulfurFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__SulfurFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SulfurFluidComponent::Kind = Kind; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__SulfurFluidComponent::Kind = Kind; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__SulfurFluidComponent * soap_new_set_prodml22__SulfurFluidComponent( +inline prodml23__SulfurFluidComponent * soap_new_set_prodml23__SulfurFluidComponent( struct soap *soap, const std::string& Kind, eml23__MolecularWeightMeasureExt *MolecularWeight, @@ -131035,106 +131007,106 @@ inline prodml22__SulfurFluidComponent * soap_new_set_prodml22__SulfurFluidCompon eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__SulfurFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__SulfurFluidComponent(soap); + prodml23__SulfurFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__SulfurFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__SulfurFluidComponent::Kind = Kind; - _p->prodml22__SulfurFluidComponent::MolecularWeight = MolecularWeight; - _p->prodml22__SulfurFluidComponent::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__SulfurFluidComponent::Kind = Kind; + _p->prodml23__SulfurFluidComponent::MolecularWeight = MolecularWeight; + _p->prodml23__SulfurFluidComponent::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent const*p) +inline int soap_write_prodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent ? "prodml22:SulfurFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent ? "prodml23:SulfurFluidComponent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__SulfurFluidComponent(struct soap *soap, const char *URL, prodml22__SulfurFluidComponent const*p) +inline int soap_PUT_prodml23__SulfurFluidComponent(struct soap *soap, const char *URL, prodml23__SulfurFluidComponent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent ? "prodml22:SulfurFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent ? "prodml23:SulfurFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__SulfurFluidComponent(struct soap *soap, const char *URL, prodml22__SulfurFluidComponent const*p) +inline int soap_PATCH_prodml23__SulfurFluidComponent(struct soap *soap, const char *URL, prodml23__SulfurFluidComponent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent ? "prodml22:SulfurFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent ? "prodml23:SulfurFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__SulfurFluidComponent(struct soap *soap, const char *URL, prodml22__SulfurFluidComponent const*p) +inline int soap_POST_send_prodml23__SulfurFluidComponent(struct soap *soap, const char *URL, prodml23__SulfurFluidComponent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent ? "prodml22:SulfurFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:SulfurFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent ? "prodml23:SulfurFluidComponent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__SulfurFluidComponent * SOAP_FMAC4 soap_get_prodml22__SulfurFluidComponent(struct soap*, prodml22__SulfurFluidComponent *, const char*, const char*); +SOAP_FMAC3 prodml23__SulfurFluidComponent * SOAP_FMAC4 soap_get_prodml23__SulfurFluidComponent(struct soap*, prodml23__SulfurFluidComponent *, const char*, const char*); -inline int soap_read_prodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent *p) +inline int soap_read_prodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__SulfurFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__SulfurFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__SulfurFluidComponent(struct soap *soap, const char *URL, prodml22__SulfurFluidComponent *p) +inline int soap_GET_prodml23__SulfurFluidComponent(struct soap *soap, const char *URL, prodml23__SulfurFluidComponent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__SulfurFluidComponent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__SulfurFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__SulfurFluidComponent(struct soap *soap, prodml22__SulfurFluidComponent *p) +inline int soap_POST_recv_prodml23__SulfurFluidComponent(struct soap *soap, prodml23__SulfurFluidComponent *p) { - if (gsoap_eml2_3::soap_read_prodml22__SulfurFluidComponent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__SulfurFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StockTankOil(struct soap*, const char*, int, const prodml22__StockTankOil *, const char*); -SOAP_FMAC3 prodml22__StockTankOil * SOAP_FMAC4 soap_in_prodml22__StockTankOil(struct soap*, const char*, prodml22__StockTankOil *, const char*); -SOAP_FMAC1 prodml22__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml22__StockTankOil(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StockTankOil(struct soap*, const char*, int, const prodml23__StockTankOil *, const char*); +SOAP_FMAC3 prodml23__StockTankOil * SOAP_FMAC4 soap_in_prodml23__StockTankOil(struct soap*, const char*, prodml23__StockTankOil *, const char*); +SOAP_FMAC1 prodml23__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml23__StockTankOil(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__StockTankOil * soap_new_prodml22__StockTankOil(struct soap *soap, int n = -1) +inline prodml23__StockTankOil * soap_new_prodml23__StockTankOil(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__StockTankOil(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__StockTankOil(soap, n, NULL, NULL, NULL); } -inline prodml22__StockTankOil * soap_new_req_prodml22__StockTankOil( +inline prodml23__StockTankOil * soap_new_req_prodml23__StockTankOil( struct soap *soap, const std::string& uid__1) { - prodml22__StockTankOil *_p = gsoap_eml2_3::soap_new_prodml22__StockTankOil(soap); + prodml23__StockTankOil *_p = gsoap_eml2_3::soap_new_prodml23__StockTankOil(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__StockTankOil * soap_new_set_prodml22__StockTankOil( +inline prodml23__StockTankOil * soap_new_set_prodml23__StockTankOil( struct soap *soap, eml23__APIGravityMeasure *APIGravity, eml23__MolecularWeightMeasure *MolecularWeight, @@ -131146,108 +131118,108 @@ inline prodml22__StockTankOil * soap_new_set_prodml22__StockTankOil( eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__StockTankOil *_p = gsoap_eml2_3::soap_new_prodml22__StockTankOil(soap); + prodml23__StockTankOil *_p = gsoap_eml2_3::soap_new_prodml23__StockTankOil(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StockTankOil::APIGravity = APIGravity; - _p->prodml22__StockTankOil::MolecularWeight = MolecularWeight; - _p->prodml22__StockTankOil::GrossEnergyContentPerUnitMass = GrossEnergyContentPerUnitMass; - _p->prodml22__StockTankOil::NetEnergyContentPerUnitMass = NetEnergyContentPerUnitMass; - _p->prodml22__StockTankOil::GrossEnergyContentPerUnitVolume = GrossEnergyContentPerUnitVolume; - _p->prodml22__StockTankOil::NetEnergyContentPerUnitVolume = NetEnergyContentPerUnitVolume; - _p->prodml22__StockTankOil::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__StockTankOil::APIGravity = APIGravity; + _p->prodml23__StockTankOil::MolecularWeight = MolecularWeight; + _p->prodml23__StockTankOil::GrossEnergyContentPerUnitMass = GrossEnergyContentPerUnitMass; + _p->prodml23__StockTankOil::NetEnergyContentPerUnitMass = NetEnergyContentPerUnitMass; + _p->prodml23__StockTankOil::GrossEnergyContentPerUnitVolume = GrossEnergyContentPerUnitVolume; + _p->prodml23__StockTankOil::NetEnergyContentPerUnitVolume = NetEnergyContentPerUnitVolume; + _p->prodml23__StockTankOil::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil const*p) +inline int soap_write_prodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil ? "prodml22:StockTankOil" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil ? "prodml23:StockTankOil" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__StockTankOil(struct soap *soap, const char *URL, prodml22__StockTankOil const*p) +inline int soap_PUT_prodml23__StockTankOil(struct soap *soap, const char *URL, prodml23__StockTankOil const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil ? "prodml22:StockTankOil" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil ? "prodml23:StockTankOil" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__StockTankOil(struct soap *soap, const char *URL, prodml22__StockTankOil const*p) +inline int soap_PATCH_prodml23__StockTankOil(struct soap *soap, const char *URL, prodml23__StockTankOil const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil ? "prodml22:StockTankOil" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil ? "prodml23:StockTankOil" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__StockTankOil(struct soap *soap, const char *URL, prodml22__StockTankOil const*p) +inline int soap_POST_send_prodml23__StockTankOil(struct soap *soap, const char *URL, prodml23__StockTankOil const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil ? "prodml22:StockTankOil" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StockTankOil", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil ? "prodml23:StockTankOil" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__StockTankOil * SOAP_FMAC4 soap_get_prodml22__StockTankOil(struct soap*, prodml22__StockTankOil *, const char*, const char*); +SOAP_FMAC3 prodml23__StockTankOil * SOAP_FMAC4 soap_get_prodml23__StockTankOil(struct soap*, prodml23__StockTankOil *, const char*, const char*); -inline int soap_read_prodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil *p) +inline int soap_read_prodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__StockTankOil(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__StockTankOil(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__StockTankOil(struct soap *soap, const char *URL, prodml22__StockTankOil *p) +inline int soap_GET_prodml23__StockTankOil(struct soap *soap, const char *URL, prodml23__StockTankOil *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__StockTankOil(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__StockTankOil(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__StockTankOil(struct soap *soap, prodml22__StockTankOil *p) +inline int soap_POST_recv_prodml23__StockTankOil(struct soap *soap, prodml23__StockTankOil *p) { - if (gsoap_eml2_3::soap_read_prodml22__StockTankOil(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__StockTankOil(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StartEndTime(struct soap*, const char*, int, const prodml22__StartEndTime *, const char*); -SOAP_FMAC3 prodml22__StartEndTime * SOAP_FMAC4 soap_in_prodml22__StartEndTime(struct soap*, const char*, prodml22__StartEndTime *, const char*); -SOAP_FMAC1 prodml22__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml22__StartEndTime(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StartEndTime(struct soap*, const char*, int, const prodml23__StartEndTime *, const char*); +SOAP_FMAC3 prodml23__StartEndTime * SOAP_FMAC4 soap_in_prodml23__StartEndTime(struct soap*, const char*, prodml23__StartEndTime *, const char*); +SOAP_FMAC1 prodml23__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml23__StartEndTime(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__StartEndTime * soap_new_prodml22__StartEndTime(struct soap *soap, int n = -1) +inline prodml23__StartEndTime * soap_new_prodml23__StartEndTime(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__StartEndTime(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__StartEndTime(soap, n, NULL, NULL, NULL); } -inline prodml22__StartEndTime * soap_new_req_prodml22__StartEndTime( +inline prodml23__StartEndTime * soap_new_req_prodml23__StartEndTime( struct soap *soap) { - prodml22__StartEndTime *_p = gsoap_eml2_3::soap_new_prodml22__StartEndTime(soap); + prodml23__StartEndTime *_p = gsoap_eml2_3::soap_new_prodml23__StartEndTime(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__StartEndTime * soap_new_set_prodml22__StartEndTime( +inline prodml23__StartEndTime * soap_new_set_prodml23__StartEndTime( struct soap *soap, struct tm *DTimStart, struct tm *DTimEnd, @@ -131255,98 +131227,98 @@ inline prodml22__StartEndTime * soap_new_set_prodml22__StartEndTime( std::string *Date__1, std::string *Month__1) { - prodml22__StartEndTime *_p = gsoap_eml2_3::soap_new_prodml22__StartEndTime(soap); + prodml23__StartEndTime *_p = gsoap_eml2_3::soap_new_prodml23__StartEndTime(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StartEndTime::DTimStart = DTimStart; - _p->prodml22__StartEndTime::DTimEnd = DTimEnd; - _p->prodml22__AbstractDateTimeClass::DTime = DTime__1; - _p->prodml22__AbstractDateTimeClass::Date = Date__1; - _p->prodml22__AbstractDateTimeClass::Month = Month__1; + _p->prodml23__StartEndTime::DTimStart = DTimStart; + _p->prodml23__StartEndTime::DTimEnd = DTimEnd; + _p->prodml23__AbstractDateTimeClass::DTime = DTime__1; + _p->prodml23__AbstractDateTimeClass::Date = Date__1; + _p->prodml23__AbstractDateTimeClass::Month = Month__1; } return _p; } -inline int soap_write_prodml22__StartEndTime(struct soap *soap, prodml22__StartEndTime const*p) +inline int soap_write_prodml23__StartEndTime(struct soap *soap, prodml23__StartEndTime const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime ? "prodml22:StartEndTime" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime ? "prodml23:StartEndTime" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__StartEndTime(struct soap *soap, const char *URL, prodml22__StartEndTime const*p) +inline int soap_PUT_prodml23__StartEndTime(struct soap *soap, const char *URL, prodml23__StartEndTime const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime ? "prodml22:StartEndTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime ? "prodml23:StartEndTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__StartEndTime(struct soap *soap, const char *URL, prodml22__StartEndTime const*p) +inline int soap_PATCH_prodml23__StartEndTime(struct soap *soap, const char *URL, prodml23__StartEndTime const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime ? "prodml22:StartEndTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime ? "prodml23:StartEndTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__StartEndTime(struct soap *soap, const char *URL, prodml22__StartEndTime const*p) +inline int soap_POST_send_prodml23__StartEndTime(struct soap *soap, const char *URL, prodml23__StartEndTime const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime ? "prodml22:StartEndTime" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime ? "prodml23:StartEndTime" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__StartEndTime * SOAP_FMAC4 soap_get_prodml22__StartEndTime(struct soap*, prodml22__StartEndTime *, const char*, const char*); +SOAP_FMAC3 prodml23__StartEndTime * SOAP_FMAC4 soap_get_prodml23__StartEndTime(struct soap*, prodml23__StartEndTime *, const char*, const char*); -inline int soap_read_prodml22__StartEndTime(struct soap *soap, prodml22__StartEndTime *p) +inline int soap_read_prodml23__StartEndTime(struct soap *soap, prodml23__StartEndTime *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__StartEndTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__StartEndTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__StartEndTime(struct soap *soap, const char *URL, prodml22__StartEndTime *p) +inline int soap_GET_prodml23__StartEndTime(struct soap *soap, const char *URL, prodml23__StartEndTime *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__StartEndTime(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__StartEndTime(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__StartEndTime(struct soap *soap, prodml22__StartEndTime *p) +inline int soap_POST_recv_prodml23__StartEndTime(struct soap *soap, prodml23__StartEndTime *p) { - if (gsoap_eml2_3::soap_read_prodml22__StartEndTime(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__StartEndTime(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__StartEndDate(struct soap*, const char*, int, const prodml22__StartEndDate *, const char*); -SOAP_FMAC3 prodml22__StartEndDate * SOAP_FMAC4 soap_in_prodml22__StartEndDate(struct soap*, const char*, prodml22__StartEndDate *, const char*); -SOAP_FMAC1 prodml22__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml22__StartEndDate(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__StartEndDate(struct soap*, const char*, int, const prodml23__StartEndDate *, const char*); +SOAP_FMAC3 prodml23__StartEndDate * SOAP_FMAC4 soap_in_prodml23__StartEndDate(struct soap*, const char*, prodml23__StartEndDate *, const char*); +SOAP_FMAC1 prodml23__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml23__StartEndDate(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__StartEndDate * soap_new_prodml22__StartEndDate(struct soap *soap, int n = -1) +inline prodml23__StartEndDate * soap_new_prodml23__StartEndDate(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__StartEndDate(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__StartEndDate(soap, n, NULL, NULL, NULL); } -inline prodml22__StartEndDate * soap_new_req_prodml22__StartEndDate( +inline prodml23__StartEndDate * soap_new_req_prodml23__StartEndDate( struct soap *soap) { - prodml22__StartEndDate *_p = gsoap_eml2_3::soap_new_prodml22__StartEndDate(soap); + prodml23__StartEndDate *_p = gsoap_eml2_3::soap_new_prodml23__StartEndDate(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__StartEndDate * soap_new_set_prodml22__StartEndDate( +inline prodml23__StartEndDate * soap_new_set_prodml23__StartEndDate( struct soap *soap, std::string *DateStart, std::string *DateEnd, @@ -131354,102 +131326,102 @@ inline prodml22__StartEndDate * soap_new_set_prodml22__StartEndDate( std::string *Date__1, std::string *Month__1) { - prodml22__StartEndDate *_p = gsoap_eml2_3::soap_new_prodml22__StartEndDate(soap); + prodml23__StartEndDate *_p = gsoap_eml2_3::soap_new_prodml23__StartEndDate(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__StartEndDate::DateStart = DateStart; - _p->prodml22__StartEndDate::DateEnd = DateEnd; - _p->prodml22__AbstractDateTimeClass::DTime = DTime__1; - _p->prodml22__AbstractDateTimeClass::Date = Date__1; - _p->prodml22__AbstractDateTimeClass::Month = Month__1; + _p->prodml23__StartEndDate::DateStart = DateStart; + _p->prodml23__StartEndDate::DateEnd = DateEnd; + _p->prodml23__AbstractDateTimeClass::DTime = DTime__1; + _p->prodml23__AbstractDateTimeClass::Date = Date__1; + _p->prodml23__AbstractDateTimeClass::Month = Month__1; } return _p; } -inline int soap_write_prodml22__StartEndDate(struct soap *soap, prodml22__StartEndDate const*p) +inline int soap_write_prodml23__StartEndDate(struct soap *soap, prodml23__StartEndDate const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate ? "prodml22:StartEndDate" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate ? "prodml23:StartEndDate" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__StartEndDate(struct soap *soap, const char *URL, prodml22__StartEndDate const*p) +inline int soap_PUT_prodml23__StartEndDate(struct soap *soap, const char *URL, prodml23__StartEndDate const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate ? "prodml22:StartEndDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate ? "prodml23:StartEndDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__StartEndDate(struct soap *soap, const char *URL, prodml22__StartEndDate const*p) +inline int soap_PATCH_prodml23__StartEndDate(struct soap *soap, const char *URL, prodml23__StartEndDate const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate ? "prodml22:StartEndDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate ? "prodml23:StartEndDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__StartEndDate(struct soap *soap, const char *URL, prodml22__StartEndDate const*p) +inline int soap_POST_send_prodml23__StartEndDate(struct soap *soap, const char *URL, prodml23__StartEndDate const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate ? "prodml22:StartEndDate" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:StartEndDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate ? "prodml23:StartEndDate" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__StartEndDate * SOAP_FMAC4 soap_get_prodml22__StartEndDate(struct soap*, prodml22__StartEndDate *, const char*, const char*); +SOAP_FMAC3 prodml23__StartEndDate * SOAP_FMAC4 soap_get_prodml23__StartEndDate(struct soap*, prodml23__StartEndDate *, const char*, const char*); -inline int soap_read_prodml22__StartEndDate(struct soap *soap, prodml22__StartEndDate *p) +inline int soap_read_prodml23__StartEndDate(struct soap *soap, prodml23__StartEndDate *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__StartEndDate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__StartEndDate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__StartEndDate(struct soap *soap, const char *URL, prodml22__StartEndDate *p) +inline int soap_GET_prodml23__StartEndDate(struct soap *soap, const char *URL, prodml23__StartEndDate *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__StartEndDate(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__StartEndDate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__StartEndDate(struct soap *soap, prodml22__StartEndDate *p) +inline int soap_POST_recv_prodml23__StartEndDate(struct soap *soap, prodml23__StartEndDate *p) { - if (gsoap_eml2_3::soap_read_prodml22__StartEndDate(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__StartEndDate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ServiceFluid(struct soap*, const char*, int, const prodml22__ServiceFluid *, const char*); -SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_in_prodml22__ServiceFluid(struct soap*, const char*, prodml22__ServiceFluid *, const char*); -SOAP_FMAC1 prodml22__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml22__ServiceFluid(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ServiceFluid(struct soap*, const char*, int, const prodml23__ServiceFluid *, const char*); +SOAP_FMAC3 prodml23__ServiceFluid * SOAP_FMAC4 soap_in_prodml23__ServiceFluid(struct soap*, const char*, prodml23__ServiceFluid *, const char*); +SOAP_FMAC1 prodml23__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml23__ServiceFluid(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ServiceFluid * soap_new_prodml22__ServiceFluid(struct soap *soap, int n = -1) +inline prodml23__ServiceFluid * soap_new_prodml23__ServiceFluid(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ServiceFluid(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ServiceFluid(soap, n, NULL, NULL, NULL); } -inline prodml22__ServiceFluid * soap_new_req_prodml22__ServiceFluid( +inline prodml23__ServiceFluid * soap_new_req_prodml23__ServiceFluid( struct soap *soap, const std::string& ServiceFluidKind, const std::string& uid__1) { - prodml22__ServiceFluid *_p = gsoap_eml2_3::soap_new_prodml22__ServiceFluid(soap); + prodml23__ServiceFluid *_p = gsoap_eml2_3::soap_new_prodml23__ServiceFluid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ServiceFluid::ServiceFluidKind = ServiceFluidKind; - _p->prodml22__AbstractProductQuantity::uid = uid__1; + _p->prodml23__ServiceFluid::ServiceFluidKind = ServiceFluidKind; + _p->prodml23__AbstractProductQuantity::uid = uid__1; } return _p; } -inline prodml22__ServiceFluid * soap_new_set_prodml22__ServiceFluid( +inline prodml23__ServiceFluid * soap_new_set_prodml23__ServiceFluid( struct soap *soap, const std::string& ServiceFluidKind, std::string *serviceFluidReference, @@ -131458,105 +131430,105 @@ inline prodml22__ServiceFluid * soap_new_set_prodml22__ServiceFluid( eml23__AmountOfSubstanceMeasure *Moles__1, const std::string& uid__1) { - prodml22__ServiceFluid *_p = gsoap_eml2_3::soap_new_prodml22__ServiceFluid(soap); + prodml23__ServiceFluid *_p = gsoap_eml2_3::soap_new_prodml23__ServiceFluid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ServiceFluid::ServiceFluidKind = ServiceFluidKind; - _p->prodml22__ServiceFluid::serviceFluidReference = serviceFluidReference; - _p->prodml22__AbstractProductQuantity::Volume = Volume__1; - _p->prodml22__AbstractProductQuantity::Mass = Mass__1; - _p->prodml22__AbstractProductQuantity::Moles = Moles__1; - _p->prodml22__AbstractProductQuantity::uid = uid__1; + _p->prodml23__ServiceFluid::ServiceFluidKind = ServiceFluidKind; + _p->prodml23__ServiceFluid::serviceFluidReference = serviceFluidReference; + _p->prodml23__AbstractProductQuantity::Volume = Volume__1; + _p->prodml23__AbstractProductQuantity::Mass = Mass__1; + _p->prodml23__AbstractProductQuantity::Moles = Moles__1; + _p->prodml23__AbstractProductQuantity::uid = uid__1; } return _p; } -inline int soap_write_prodml22__ServiceFluid(struct soap *soap, prodml22__ServiceFluid const*p) +inline int soap_write_prodml23__ServiceFluid(struct soap *soap, prodml23__ServiceFluid const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid ? "prodml22:ServiceFluid" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid ? "prodml23:ServiceFluid" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ServiceFluid(struct soap *soap, const char *URL, prodml22__ServiceFluid const*p) +inline int soap_PUT_prodml23__ServiceFluid(struct soap *soap, const char *URL, prodml23__ServiceFluid const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid ? "prodml22:ServiceFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid ? "prodml23:ServiceFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ServiceFluid(struct soap *soap, const char *URL, prodml22__ServiceFluid const*p) +inline int soap_PATCH_prodml23__ServiceFluid(struct soap *soap, const char *URL, prodml23__ServiceFluid const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid ? "prodml22:ServiceFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid ? "prodml23:ServiceFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ServiceFluid(struct soap *soap, const char *URL, prodml22__ServiceFluid const*p) +inline int soap_POST_send_prodml23__ServiceFluid(struct soap *soap, const char *URL, prodml23__ServiceFluid const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid ? "prodml22:ServiceFluid" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ServiceFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid ? "prodml23:ServiceFluid" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ServiceFluid * SOAP_FMAC4 soap_get_prodml22__ServiceFluid(struct soap*, prodml22__ServiceFluid *, const char*, const char*); +SOAP_FMAC3 prodml23__ServiceFluid * SOAP_FMAC4 soap_get_prodml23__ServiceFluid(struct soap*, prodml23__ServiceFluid *, const char*, const char*); -inline int soap_read_prodml22__ServiceFluid(struct soap *soap, prodml22__ServiceFluid *p) +inline int soap_read_prodml23__ServiceFluid(struct soap *soap, prodml23__ServiceFluid *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ServiceFluid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ServiceFluid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ServiceFluid(struct soap *soap, const char *URL, prodml22__ServiceFluid *p) +inline int soap_GET_prodml23__ServiceFluid(struct soap *soap, const char *URL, prodml23__ServiceFluid *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ServiceFluid(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ServiceFluid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ServiceFluid(struct soap *soap, prodml22__ServiceFluid *p) +inline int soap_POST_recv_prodml23__ServiceFluid(struct soap *soap, prodml23__ServiceFluid *p) { - if (gsoap_eml2_3::soap_read_prodml22__ServiceFluid(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ServiceFluid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PureFluidComponent(struct soap*, const char*, int, const prodml22__PureFluidComponent *, const char*); -SOAP_FMAC3 prodml22__PureFluidComponent * SOAP_FMAC4 soap_in_prodml22__PureFluidComponent(struct soap*, const char*, prodml22__PureFluidComponent *, const char*); -SOAP_FMAC1 prodml22__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PureFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PureFluidComponent(struct soap*, const char*, int, const prodml23__PureFluidComponent *, const char*); +SOAP_FMAC3 prodml23__PureFluidComponent * SOAP_FMAC4 soap_in_prodml23__PureFluidComponent(struct soap*, const char*, prodml23__PureFluidComponent *, const char*); +SOAP_FMAC1 prodml23__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PureFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PureFluidComponent * soap_new_prodml22__PureFluidComponent(struct soap *soap, int n = -1) +inline prodml23__PureFluidComponent * soap_new_prodml23__PureFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PureFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PureFluidComponent(soap, n, NULL, NULL, NULL); } -inline prodml22__PureFluidComponent * soap_new_req_prodml22__PureFluidComponent( +inline prodml23__PureFluidComponent * soap_new_req_prodml23__PureFluidComponent( struct soap *soap, const std::string& Kind, bool HydrocarbonFlag, const std::string& uid__1) { - prodml22__PureFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__PureFluidComponent(soap); + prodml23__PureFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__PureFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PureFluidComponent::Kind = Kind; - _p->prodml22__PureFluidComponent::HydrocarbonFlag = HydrocarbonFlag; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__PureFluidComponent::Kind = Kind; + _p->prodml23__PureFluidComponent::HydrocarbonFlag = HydrocarbonFlag; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__PureFluidComponent * soap_new_set_prodml22__PureFluidComponent( +inline prodml23__PureFluidComponent * soap_new_set_prodml23__PureFluidComponent( struct soap *soap, const std::string& Kind, eml23__MolecularWeightMeasure *MolecularWeight, @@ -131565,109 +131537,109 @@ inline prodml22__PureFluidComponent * soap_new_set_prodml22__PureFluidComponent( eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__PureFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__PureFluidComponent(soap); + prodml23__PureFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__PureFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PureFluidComponent::Kind = Kind; - _p->prodml22__PureFluidComponent::MolecularWeight = MolecularWeight; - _p->prodml22__PureFluidComponent::HydrocarbonFlag = HydrocarbonFlag; - _p->prodml22__PureFluidComponent::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__PureFluidComponent::Kind = Kind; + _p->prodml23__PureFluidComponent::MolecularWeight = MolecularWeight; + _p->prodml23__PureFluidComponent::HydrocarbonFlag = HydrocarbonFlag; + _p->prodml23__PureFluidComponent::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent const*p) +inline int soap_write_prodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent ? "prodml22:PureFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent ? "prodml23:PureFluidComponent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PureFluidComponent(struct soap *soap, const char *URL, prodml22__PureFluidComponent const*p) +inline int soap_PUT_prodml23__PureFluidComponent(struct soap *soap, const char *URL, prodml23__PureFluidComponent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent ? "prodml22:PureFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent ? "prodml23:PureFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PureFluidComponent(struct soap *soap, const char *URL, prodml22__PureFluidComponent const*p) +inline int soap_PATCH_prodml23__PureFluidComponent(struct soap *soap, const char *URL, prodml23__PureFluidComponent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent ? "prodml22:PureFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent ? "prodml23:PureFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PureFluidComponent(struct soap *soap, const char *URL, prodml22__PureFluidComponent const*p) +inline int soap_POST_send_prodml23__PureFluidComponent(struct soap *soap, const char *URL, prodml23__PureFluidComponent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent ? "prodml22:PureFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PureFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent ? "prodml23:PureFluidComponent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PureFluidComponent * SOAP_FMAC4 soap_get_prodml22__PureFluidComponent(struct soap*, prodml22__PureFluidComponent *, const char*, const char*); +SOAP_FMAC3 prodml23__PureFluidComponent * SOAP_FMAC4 soap_get_prodml23__PureFluidComponent(struct soap*, prodml23__PureFluidComponent *, const char*, const char*); -inline int soap_read_prodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent *p) +inline int soap_read_prodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PureFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PureFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PureFluidComponent(struct soap *soap, const char *URL, prodml22__PureFluidComponent *p) +inline int soap_GET_prodml23__PureFluidComponent(struct soap *soap, const char *URL, prodml23__PureFluidComponent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PureFluidComponent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PureFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PureFluidComponent(struct soap *soap, prodml22__PureFluidComponent *p) +inline int soap_POST_recv_prodml23__PureFluidComponent(struct soap *soap, prodml23__PureFluidComponent *p) { - if (gsoap_eml2_3::soap_read_prodml22__PureFluidComponent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PureFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PseudoFluidComponent(struct soap*, const char*, int, const prodml22__PseudoFluidComponent *, const char*); -SOAP_FMAC3 prodml22__PseudoFluidComponent * SOAP_FMAC4 soap_in_prodml22__PseudoFluidComponent(struct soap*, const char*, prodml22__PseudoFluidComponent *, const char*); -SOAP_FMAC1 prodml22__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PseudoFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PseudoFluidComponent(struct soap*, const char*, int, const prodml23__PseudoFluidComponent *, const char*); +SOAP_FMAC3 prodml23__PseudoFluidComponent * SOAP_FMAC4 soap_in_prodml23__PseudoFluidComponent(struct soap*, const char*, prodml23__PseudoFluidComponent *, const char*); +SOAP_FMAC1 prodml23__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PseudoFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PseudoFluidComponent * soap_new_prodml22__PseudoFluidComponent(struct soap *soap, int n = -1) +inline prodml23__PseudoFluidComponent * soap_new_prodml23__PseudoFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PseudoFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PseudoFluidComponent(soap, n, NULL, NULL, NULL); } -inline prodml22__PseudoFluidComponent * soap_new_req_prodml22__PseudoFluidComponent( +inline prodml23__PseudoFluidComponent * soap_new_req_prodml23__PseudoFluidComponent( struct soap *soap, const std::string& Kind, const std::string& uid__1) { - prodml22__PseudoFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__PseudoFluidComponent(soap); + prodml23__PseudoFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__PseudoFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PseudoFluidComponent::Kind = Kind; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__PseudoFluidComponent::Kind = Kind; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__PseudoFluidComponent * soap_new_set_prodml22__PseudoFluidComponent( +inline prodml23__PseudoFluidComponent * soap_new_set_prodml23__PseudoFluidComponent( struct soap *soap, const std::string& Kind, double *SpecificGravity, @@ -131682,446 +131654,446 @@ inline prodml22__PseudoFluidComponent * soap_new_set_prodml22__PseudoFluidCompon eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__PseudoFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__PseudoFluidComponent(soap); + prodml23__PseudoFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__PseudoFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PseudoFluidComponent::Kind = Kind; - _p->prodml22__PseudoFluidComponent::SpecificGravity = SpecificGravity; - _p->prodml22__PseudoFluidComponent::StartingCarbonNumber = StartingCarbonNumber; - _p->prodml22__PseudoFluidComponent::EndingCarbonNumber = EndingCarbonNumber; - _p->prodml22__PseudoFluidComponent::AvgMolecularWeight = AvgMolecularWeight; - _p->prodml22__PseudoFluidComponent::AvgDensity = AvgDensity; - _p->prodml22__PseudoFluidComponent::StartingBoilingPoint = StartingBoilingPoint; - _p->prodml22__PseudoFluidComponent::EndingBoilingPoint = EndingBoilingPoint; - _p->prodml22__PseudoFluidComponent::AvgBoilingPoint = AvgBoilingPoint; - _p->prodml22__PseudoFluidComponent::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__PseudoFluidComponent::Kind = Kind; + _p->prodml23__PseudoFluidComponent::SpecificGravity = SpecificGravity; + _p->prodml23__PseudoFluidComponent::StartingCarbonNumber = StartingCarbonNumber; + _p->prodml23__PseudoFluidComponent::EndingCarbonNumber = EndingCarbonNumber; + _p->prodml23__PseudoFluidComponent::AvgMolecularWeight = AvgMolecularWeight; + _p->prodml23__PseudoFluidComponent::AvgDensity = AvgDensity; + _p->prodml23__PseudoFluidComponent::StartingBoilingPoint = StartingBoilingPoint; + _p->prodml23__PseudoFluidComponent::EndingBoilingPoint = EndingBoilingPoint; + _p->prodml23__PseudoFluidComponent::AvgBoilingPoint = AvgBoilingPoint; + _p->prodml23__PseudoFluidComponent::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent const*p) +inline int soap_write_prodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent ? "prodml22:PseudoFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent ? "prodml23:PseudoFluidComponent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PseudoFluidComponent(struct soap *soap, const char *URL, prodml22__PseudoFluidComponent const*p) +inline int soap_PUT_prodml23__PseudoFluidComponent(struct soap *soap, const char *URL, prodml23__PseudoFluidComponent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent ? "prodml22:PseudoFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent ? "prodml23:PseudoFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PseudoFluidComponent(struct soap *soap, const char *URL, prodml22__PseudoFluidComponent const*p) +inline int soap_PATCH_prodml23__PseudoFluidComponent(struct soap *soap, const char *URL, prodml23__PseudoFluidComponent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent ? "prodml22:PseudoFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent ? "prodml23:PseudoFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PseudoFluidComponent(struct soap *soap, const char *URL, prodml22__PseudoFluidComponent const*p) +inline int soap_POST_send_prodml23__PseudoFluidComponent(struct soap *soap, const char *URL, prodml23__PseudoFluidComponent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent ? "prodml22:PseudoFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PseudoFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent ? "prodml23:PseudoFluidComponent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PseudoFluidComponent * SOAP_FMAC4 soap_get_prodml22__PseudoFluidComponent(struct soap*, prodml22__PseudoFluidComponent *, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoFluidComponent * SOAP_FMAC4 soap_get_prodml23__PseudoFluidComponent(struct soap*, prodml23__PseudoFluidComponent *, const char*, const char*); -inline int soap_read_prodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent *p) +inline int soap_read_prodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PseudoFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PseudoFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PseudoFluidComponent(struct soap *soap, const char *URL, prodml22__PseudoFluidComponent *p) +inline int soap_GET_prodml23__PseudoFluidComponent(struct soap *soap, const char *URL, prodml23__PseudoFluidComponent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PseudoFluidComponent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PseudoFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PseudoFluidComponent(struct soap *soap, prodml22__PseudoFluidComponent *p) +inline int soap_POST_recv_prodml23__PseudoFluidComponent(struct soap *soap, prodml23__PseudoFluidComponent *p) { - if (gsoap_eml2_3::soap_read_prodml22__PseudoFluidComponent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PseudoFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFluid(struct soap*, const char*, int, const prodml22__ProductFluid *, const char*); -SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_in_prodml22__ProductFluid(struct soap*, const char*, prodml22__ProductFluid *, const char*); -SOAP_FMAC1 prodml22__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml22__ProductFluid(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFluid(struct soap*, const char*, int, const prodml23__ProductFluid *, const char*); +SOAP_FMAC3 prodml23__ProductFluid * SOAP_FMAC4 soap_in_prodml23__ProductFluid(struct soap*, const char*, prodml23__ProductFluid *, const char*); +SOAP_FMAC1 prodml23__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml23__ProductFluid(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFluid * soap_new_prodml22__ProductFluid(struct soap *soap, int n = -1) +inline prodml23__ProductFluid * soap_new_prodml23__ProductFluid(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFluid(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFluid(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFluid * soap_new_req_prodml22__ProductFluid( +inline prodml23__ProductFluid * soap_new_req_prodml23__ProductFluid( struct soap *soap, const std::string& ProductFluidKind, const std::string& uid__1) { - prodml22__ProductFluid *_p = gsoap_eml2_3::soap_new_prodml22__ProductFluid(soap); + prodml23__ProductFluid *_p = gsoap_eml2_3::soap_new_prodml23__ProductFluid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFluid::ProductFluidKind = ProductFluidKind; - _p->prodml22__AbstractProductQuantity::uid = uid__1; + _p->prodml23__ProductFluid::ProductFluidKind = ProductFluidKind; + _p->prodml23__AbstractProductQuantity::uid = uid__1; } return _p; } -inline prodml22__ProductFluid * soap_new_set_prodml22__ProductFluid( +inline prodml23__ProductFluid * soap_new_set_prodml23__ProductFluid( struct soap *soap, const std::string& ProductFluidKind, eml23__EnergyMeasure *GrossEnergyContent, eml23__EnergyMeasure *NetEnergyContent, - prodml22__OverallComposition *OverallComposition, + prodml23__OverallComposition *OverallComposition, std::string *productFluidReference, eml23__VolumeValue *Volume__1, eml23__MassMeasure *Mass__1, eml23__AmountOfSubstanceMeasure *Moles__1, const std::string& uid__1) { - prodml22__ProductFluid *_p = gsoap_eml2_3::soap_new_prodml22__ProductFluid(soap); + prodml23__ProductFluid *_p = gsoap_eml2_3::soap_new_prodml23__ProductFluid(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFluid::ProductFluidKind = ProductFluidKind; - _p->prodml22__ProductFluid::GrossEnergyContent = GrossEnergyContent; - _p->prodml22__ProductFluid::NetEnergyContent = NetEnergyContent; - _p->prodml22__ProductFluid::OverallComposition = OverallComposition; - _p->prodml22__ProductFluid::productFluidReference = productFluidReference; - _p->prodml22__AbstractProductQuantity::Volume = Volume__1; - _p->prodml22__AbstractProductQuantity::Mass = Mass__1; - _p->prodml22__AbstractProductQuantity::Moles = Moles__1; - _p->prodml22__AbstractProductQuantity::uid = uid__1; + _p->prodml23__ProductFluid::ProductFluidKind = ProductFluidKind; + _p->prodml23__ProductFluid::GrossEnergyContent = GrossEnergyContent; + _p->prodml23__ProductFluid::NetEnergyContent = NetEnergyContent; + _p->prodml23__ProductFluid::OverallComposition = OverallComposition; + _p->prodml23__ProductFluid::productFluidReference = productFluidReference; + _p->prodml23__AbstractProductQuantity::Volume = Volume__1; + _p->prodml23__AbstractProductQuantity::Mass = Mass__1; + _p->prodml23__AbstractProductQuantity::Moles = Moles__1; + _p->prodml23__AbstractProductQuantity::uid = uid__1; } return _p; } -inline int soap_write_prodml22__ProductFluid(struct soap *soap, prodml22__ProductFluid const*p) +inline int soap_write_prodml23__ProductFluid(struct soap *soap, prodml23__ProductFluid const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid ? "prodml22:ProductFluid" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid ? "prodml23:ProductFluid" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFluid(struct soap *soap, const char *URL, prodml22__ProductFluid const*p) +inline int soap_PUT_prodml23__ProductFluid(struct soap *soap, const char *URL, prodml23__ProductFluid const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid ? "prodml22:ProductFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid ? "prodml23:ProductFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFluid(struct soap *soap, const char *URL, prodml22__ProductFluid const*p) +inline int soap_PATCH_prodml23__ProductFluid(struct soap *soap, const char *URL, prodml23__ProductFluid const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid ? "prodml22:ProductFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid ? "prodml23:ProductFluid" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFluid(struct soap *soap, const char *URL, prodml22__ProductFluid const*p) +inline int soap_POST_send_prodml23__ProductFluid(struct soap *soap, const char *URL, prodml23__ProductFluid const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid ? "prodml22:ProductFluid" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFluid", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid ? "prodml23:ProductFluid" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFluid * SOAP_FMAC4 soap_get_prodml22__ProductFluid(struct soap*, prodml22__ProductFluid *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFluid * SOAP_FMAC4 soap_get_prodml23__ProductFluid(struct soap*, prodml23__ProductFluid *, const char*, const char*); -inline int soap_read_prodml22__ProductFluid(struct soap *soap, prodml22__ProductFluid *p) +inline int soap_read_prodml23__ProductFluid(struct soap *soap, prodml23__ProductFluid *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFluid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFluid(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFluid(struct soap *soap, const char *URL, prodml22__ProductFluid *p) +inline int soap_GET_prodml23__ProductFluid(struct soap *soap, const char *URL, prodml23__ProductFluid *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFluid(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFluid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFluid(struct soap *soap, prodml22__ProductFluid *p) +inline int soap_POST_recv_prodml23__ProductFluid(struct soap *soap, prodml23__ProductFluid *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFluid(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFluid(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowNetwork(struct soap*, const char*, int, const prodml22__ProductFlowNetwork *, const char*); -SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml22__ProductFlowNetwork(struct soap*, const char*, prodml22__ProductFlowNetwork *, const char*); -SOAP_FMAC1 prodml22__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowNetwork(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowNetwork(struct soap*, const char*, int, const prodml23__ProductFlowNetwork *, const char*); +SOAP_FMAC3 prodml23__ProductFlowNetwork * SOAP_FMAC4 soap_in_prodml23__ProductFlowNetwork(struct soap*, const char*, prodml23__ProductFlowNetwork *, const char*); +SOAP_FMAC1 prodml23__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowNetwork(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowNetwork * soap_new_prodml22__ProductFlowNetwork(struct soap *soap, int n = -1) +inline prodml23__ProductFlowNetwork * soap_new_prodml23__ProductFlowNetwork(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowNetwork(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowNetwork(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowNetwork * soap_new_req_prodml22__ProductFlowNetwork( +inline prodml23__ProductFlowNetwork * soap_new_req_prodml23__ProductFlowNetwork( struct soap *soap, const std::string& Name, - const std::vector & Unit, + const std::vector & Unit, const std::string& uid) { - prodml22__ProductFlowNetwork *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowNetwork(soap); + prodml23__ProductFlowNetwork *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowNetwork(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowNetwork::Name = Name; - _p->prodml22__ProductFlowNetwork::Unit = Unit; - _p->prodml22__ProductFlowNetwork::uid = uid; + _p->prodml23__ProductFlowNetwork::Name = Name; + _p->prodml23__ProductFlowNetwork::Unit = Unit; + _p->prodml23__ProductFlowNetwork::uid = uid; } return _p; } -inline prodml22__ProductFlowNetwork * soap_new_set_prodml22__ProductFlowNetwork( +inline prodml23__ProductFlowNetwork * soap_new_set_prodml23__ProductFlowNetwork( struct soap *soap, const std::string& Name, std::string *PlanName, std::string *ParentNetworkReference, std::string *Comment, - const std::vector & Port, - const std::vector & Plan, - const std::vector & ChangeLog, - const std::vector & Unit, + const std::vector & Port, + const std::vector & Plan, + const std::vector & ChangeLog, + const std::vector & Unit, const std::string& uid) { - prodml22__ProductFlowNetwork *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowNetwork(soap); + prodml23__ProductFlowNetwork *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowNetwork(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowNetwork::Name = Name; - _p->prodml22__ProductFlowNetwork::PlanName = PlanName; - _p->prodml22__ProductFlowNetwork::ParentNetworkReference = ParentNetworkReference; - _p->prodml22__ProductFlowNetwork::Comment = Comment; - _p->prodml22__ProductFlowNetwork::Port = Port; - _p->prodml22__ProductFlowNetwork::Plan = Plan; - _p->prodml22__ProductFlowNetwork::ChangeLog = ChangeLog; - _p->prodml22__ProductFlowNetwork::Unit = Unit; - _p->prodml22__ProductFlowNetwork::uid = uid; + _p->prodml23__ProductFlowNetwork::Name = Name; + _p->prodml23__ProductFlowNetwork::PlanName = PlanName; + _p->prodml23__ProductFlowNetwork::ParentNetworkReference = ParentNetworkReference; + _p->prodml23__ProductFlowNetwork::Comment = Comment; + _p->prodml23__ProductFlowNetwork::Port = Port; + _p->prodml23__ProductFlowNetwork::Plan = Plan; + _p->prodml23__ProductFlowNetwork::ChangeLog = ChangeLog; + _p->prodml23__ProductFlowNetwork::Unit = Unit; + _p->prodml23__ProductFlowNetwork::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork const*p) +inline int soap_write_prodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork ? "prodml22:ProductFlowNetwork" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork ? "prodml23:ProductFlowNetwork" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowNetwork(struct soap *soap, const char *URL, prodml22__ProductFlowNetwork const*p) +inline int soap_PUT_prodml23__ProductFlowNetwork(struct soap *soap, const char *URL, prodml23__ProductFlowNetwork const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork ? "prodml22:ProductFlowNetwork" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork ? "prodml23:ProductFlowNetwork" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowNetwork(struct soap *soap, const char *URL, prodml22__ProductFlowNetwork const*p) +inline int soap_PATCH_prodml23__ProductFlowNetwork(struct soap *soap, const char *URL, prodml23__ProductFlowNetwork const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork ? "prodml22:ProductFlowNetwork" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork ? "prodml23:ProductFlowNetwork" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowNetwork(struct soap *soap, const char *URL, prodml22__ProductFlowNetwork const*p) +inline int soap_POST_send_prodml23__ProductFlowNetwork(struct soap *soap, const char *URL, prodml23__ProductFlowNetwork const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork ? "prodml22:ProductFlowNetwork" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowNetwork", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork ? "prodml23:ProductFlowNetwork" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowNetwork * SOAP_FMAC4 soap_get_prodml22__ProductFlowNetwork(struct soap*, prodml22__ProductFlowNetwork *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowNetwork * SOAP_FMAC4 soap_get_prodml23__ProductFlowNetwork(struct soap*, prodml23__ProductFlowNetwork *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork *p) +inline int soap_read_prodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowNetwork(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowNetwork(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowNetwork(struct soap *soap, const char *URL, prodml22__ProductFlowNetwork *p) +inline int soap_GET_prodml23__ProductFlowNetwork(struct soap *soap, const char *URL, prodml23__ProductFlowNetwork *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowNetwork(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowNetwork(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowNetwork(struct soap *soap, prodml22__ProductFlowNetwork *p) +inline int soap_POST_recv_prodml23__ProductFlowNetwork(struct soap *soap, prodml23__ProductFlowNetwork *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowNetwork(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowNetwork(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ProductFlowExternalReference(struct soap*, const char*, int, const prodml22__ProductFlowExternalReference *, const char*); -SOAP_FMAC3 prodml22__ProductFlowExternalReference * SOAP_FMAC4 soap_in_prodml22__ProductFlowExternalReference(struct soap*, const char*, prodml22__ProductFlowExternalReference *, const char*); -SOAP_FMAC1 prodml22__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExternalReference(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ProductFlowExternalReference(struct soap*, const char*, int, const prodml23__ProductFlowExternalReference *, const char*); +SOAP_FMAC3 prodml23__ProductFlowExternalReference * SOAP_FMAC4 soap_in_prodml23__ProductFlowExternalReference(struct soap*, const char*, prodml23__ProductFlowExternalReference *, const char*); +SOAP_FMAC1 prodml23__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExternalReference(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ProductFlowExternalReference * soap_new_prodml22__ProductFlowExternalReference(struct soap *soap, int n = -1) +inline prodml23__ProductFlowExternalReference * soap_new_prodml23__ProductFlowExternalReference(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ProductFlowExternalReference(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ProductFlowExternalReference(soap, n, NULL, NULL, NULL); } -inline prodml22__ProductFlowExternalReference * soap_new_req_prodml22__ProductFlowExternalReference( +inline prodml23__ProductFlowExternalReference * soap_new_req_prodml23__ProductFlowExternalReference( struct soap *soap, const std::string& PortReference, const std::string& ConnectedPortReference, const std::string& ConnectedModelReference, const std::string& uid) { - prodml22__ProductFlowExternalReference *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowExternalReference(soap); + prodml23__ProductFlowExternalReference *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowExternalReference(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowExternalReference::PortReference = PortReference; - _p->prodml22__ProductFlowExternalReference::ConnectedPortReference = ConnectedPortReference; - _p->prodml22__ProductFlowExternalReference::ConnectedModelReference = ConnectedModelReference; - _p->prodml22__ProductFlowExternalReference::uid = uid; + _p->prodml23__ProductFlowExternalReference::PortReference = PortReference; + _p->prodml23__ProductFlowExternalReference::ConnectedPortReference = ConnectedPortReference; + _p->prodml23__ProductFlowExternalReference::ConnectedModelReference = ConnectedModelReference; + _p->prodml23__ProductFlowExternalReference::uid = uid; } return _p; } -inline prodml22__ProductFlowExternalReference * soap_new_set_prodml22__ProductFlowExternalReference( +inline prodml23__ProductFlowExternalReference * soap_new_set_prodml23__ProductFlowExternalReference( struct soap *soap, const std::string& PortReference, const std::string& ConnectedPortReference, const std::string& ConnectedModelReference, - prodml22__FacilityIdentifierStruct *ConnectedInstallation, + prodml23__FacilityIdentifierStruct *ConnectedInstallation, const std::string& uid) { - prodml22__ProductFlowExternalReference *_p = gsoap_eml2_3::soap_new_prodml22__ProductFlowExternalReference(soap); + prodml23__ProductFlowExternalReference *_p = gsoap_eml2_3::soap_new_prodml23__ProductFlowExternalReference(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ProductFlowExternalReference::PortReference = PortReference; - _p->prodml22__ProductFlowExternalReference::ConnectedPortReference = ConnectedPortReference; - _p->prodml22__ProductFlowExternalReference::ConnectedModelReference = ConnectedModelReference; - _p->prodml22__ProductFlowExternalReference::ConnectedInstallation = ConnectedInstallation; - _p->prodml22__ProductFlowExternalReference::uid = uid; + _p->prodml23__ProductFlowExternalReference::PortReference = PortReference; + _p->prodml23__ProductFlowExternalReference::ConnectedPortReference = ConnectedPortReference; + _p->prodml23__ProductFlowExternalReference::ConnectedModelReference = ConnectedModelReference; + _p->prodml23__ProductFlowExternalReference::ConnectedInstallation = ConnectedInstallation; + _p->prodml23__ProductFlowExternalReference::uid = uid; } return _p; } -inline int soap_write_prodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference const*p) +inline int soap_write_prodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference ? "prodml22:ProductFlowExternalReference" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference ? "prodml23:ProductFlowExternalReference" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml22__ProductFlowExternalReference const*p) +inline int soap_PUT_prodml23__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml23__ProductFlowExternalReference const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference ? "prodml22:ProductFlowExternalReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference ? "prodml23:ProductFlowExternalReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml22__ProductFlowExternalReference const*p) +inline int soap_PATCH_prodml23__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml23__ProductFlowExternalReference const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference ? "prodml22:ProductFlowExternalReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference ? "prodml23:ProductFlowExternalReference" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml22__ProductFlowExternalReference const*p) +inline int soap_POST_send_prodml23__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml23__ProductFlowExternalReference const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference ? "prodml22:ProductFlowExternalReference" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ProductFlowExternalReference", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference ? "prodml23:ProductFlowExternalReference" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ProductFlowExternalReference * SOAP_FMAC4 soap_get_prodml22__ProductFlowExternalReference(struct soap*, prodml22__ProductFlowExternalReference *, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowExternalReference * SOAP_FMAC4 soap_get_prodml23__ProductFlowExternalReference(struct soap*, prodml23__ProductFlowExternalReference *, const char*, const char*); -inline int soap_read_prodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference *p) +inline int soap_read_prodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ProductFlowExternalReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ProductFlowExternalReference(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml22__ProductFlowExternalReference *p) +inline int soap_GET_prodml23__ProductFlowExternalReference(struct soap *soap, const char *URL, prodml23__ProductFlowExternalReference *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ProductFlowExternalReference(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ProductFlowExternalReference(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ProductFlowExternalReference(struct soap *soap, prodml22__ProductFlowExternalReference *p) +inline int soap_POST_recv_prodml23__ProductFlowExternalReference(struct soap *soap, prodml23__ProductFlowExternalReference *p) { - if (gsoap_eml2_3::soap_read_prodml22__ProductFlowExternalReference(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ProductFlowExternalReference(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PlusFluidComponent(struct soap*, const char*, int, const prodml22__PlusFluidComponent *, const char*); -SOAP_FMAC3 prodml22__PlusFluidComponent * SOAP_FMAC4 soap_in_prodml22__PlusFluidComponent(struct soap*, const char*, prodml22__PlusFluidComponent *, const char*); -SOAP_FMAC1 prodml22__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PlusFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PlusFluidComponent(struct soap*, const char*, int, const prodml23__PlusFluidComponent *, const char*); +SOAP_FMAC3 prodml23__PlusFluidComponent * SOAP_FMAC4 soap_in_prodml23__PlusFluidComponent(struct soap*, const char*, prodml23__PlusFluidComponent *, const char*); +SOAP_FMAC1 prodml23__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PlusFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PlusFluidComponent * soap_new_prodml22__PlusFluidComponent(struct soap *soap, int n = -1) +inline prodml23__PlusFluidComponent * soap_new_prodml23__PlusFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PlusFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PlusFluidComponent(soap, n, NULL, NULL, NULL); } -inline prodml22__PlusFluidComponent * soap_new_req_prodml22__PlusFluidComponent( +inline prodml23__PlusFluidComponent * soap_new_req_prodml23__PlusFluidComponent( struct soap *soap, const std::string& Kind, const std::string& uid__1) { - prodml22__PlusFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__PlusFluidComponent(soap); + prodml23__PlusFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__PlusFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PlusFluidComponent::Kind = Kind; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__PlusFluidComponent::Kind = Kind; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__PlusFluidComponent * soap_new_set_prodml22__PlusFluidComponent( +inline prodml23__PlusFluidComponent * soap_new_set_prodml23__PlusFluidComponent( struct soap *soap, const std::string& Kind, double *SpecificGravity, @@ -132133,399 +132105,399 @@ inline prodml22__PlusFluidComponent * soap_new_set_prodml22__PlusFluidComponent( eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__PlusFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__PlusFluidComponent(soap); + prodml23__PlusFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__PlusFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PlusFluidComponent::Kind = Kind; - _p->prodml22__PlusFluidComponent::SpecificGravity = SpecificGravity; - _p->prodml22__PlusFluidComponent::StartingCarbonNumber = StartingCarbonNumber; - _p->prodml22__PlusFluidComponent::StartingBoilingPoint = StartingBoilingPoint; - _p->prodml22__PlusFluidComponent::AvgDensity = AvgDensity; - _p->prodml22__PlusFluidComponent::AvgMolecularWeight = AvgMolecularWeight; - _p->prodml22__PlusFluidComponent::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__PlusFluidComponent::Kind = Kind; + _p->prodml23__PlusFluidComponent::SpecificGravity = SpecificGravity; + _p->prodml23__PlusFluidComponent::StartingCarbonNumber = StartingCarbonNumber; + _p->prodml23__PlusFluidComponent::StartingBoilingPoint = StartingBoilingPoint; + _p->prodml23__PlusFluidComponent::AvgDensity = AvgDensity; + _p->prodml23__PlusFluidComponent::AvgMolecularWeight = AvgMolecularWeight; + _p->prodml23__PlusFluidComponent::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent const*p) +inline int soap_write_prodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent ? "prodml22:PlusFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent ? "prodml23:PlusFluidComponent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PlusFluidComponent(struct soap *soap, const char *URL, prodml22__PlusFluidComponent const*p) +inline int soap_PUT_prodml23__PlusFluidComponent(struct soap *soap, const char *URL, prodml23__PlusFluidComponent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent ? "prodml22:PlusFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent ? "prodml23:PlusFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PlusFluidComponent(struct soap *soap, const char *URL, prodml22__PlusFluidComponent const*p) +inline int soap_PATCH_prodml23__PlusFluidComponent(struct soap *soap, const char *URL, prodml23__PlusFluidComponent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent ? "prodml22:PlusFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent ? "prodml23:PlusFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PlusFluidComponent(struct soap *soap, const char *URL, prodml22__PlusFluidComponent const*p) +inline int soap_POST_send_prodml23__PlusFluidComponent(struct soap *soap, const char *URL, prodml23__PlusFluidComponent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent ? "prodml22:PlusFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PlusFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent ? "prodml23:PlusFluidComponent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PlusFluidComponent * SOAP_FMAC4 soap_get_prodml22__PlusFluidComponent(struct soap*, prodml22__PlusFluidComponent *, const char*, const char*); +SOAP_FMAC3 prodml23__PlusFluidComponent * SOAP_FMAC4 soap_get_prodml23__PlusFluidComponent(struct soap*, prodml23__PlusFluidComponent *, const char*, const char*); -inline int soap_read_prodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent *p) +inline int soap_read_prodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PlusFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PlusFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PlusFluidComponent(struct soap *soap, const char *URL, prodml22__PlusFluidComponent *p) +inline int soap_GET_prodml23__PlusFluidComponent(struct soap *soap, const char *URL, prodml23__PlusFluidComponent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PlusFluidComponent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PlusFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PlusFluidComponent(struct soap *soap, prodml22__PlusFluidComponent *p) +inline int soap_POST_recv_prodml23__PlusFluidComponent(struct soap *soap, prodml23__PlusFluidComponent *p) { - if (gsoap_eml2_3::soap_read_prodml22__PlusFluidComponent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PlusFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OverallComposition(struct soap*, const char*, int, const prodml22__OverallComposition *, const char*); -SOAP_FMAC3 prodml22__OverallComposition * SOAP_FMAC4 soap_in_prodml22__OverallComposition(struct soap*, const char*, prodml22__OverallComposition *, const char*); -SOAP_FMAC1 prodml22__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml22__OverallComposition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OverallComposition(struct soap*, const char*, int, const prodml23__OverallComposition *, const char*); +SOAP_FMAC3 prodml23__OverallComposition * SOAP_FMAC4 soap_in_prodml23__OverallComposition(struct soap*, const char*, prodml23__OverallComposition *, const char*); +SOAP_FMAC1 prodml23__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml23__OverallComposition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OverallComposition * soap_new_prodml22__OverallComposition(struct soap *soap, int n = -1) +inline prodml23__OverallComposition * soap_new_prodml23__OverallComposition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OverallComposition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OverallComposition(soap, n, NULL, NULL, NULL); } -inline prodml22__OverallComposition * soap_new_req_prodml22__OverallComposition( +inline prodml23__OverallComposition * soap_new_req_prodml23__OverallComposition( struct soap *soap) { - prodml22__OverallComposition *_p = gsoap_eml2_3::soap_new_prodml22__OverallComposition(soap); + prodml23__OverallComposition *_p = gsoap_eml2_3::soap_new_prodml23__OverallComposition(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__OverallComposition * soap_new_set_prodml22__OverallComposition( +inline prodml23__OverallComposition * soap_new_set_prodml23__OverallComposition( struct soap *soap, std::string *Remark, - const std::vector & FluidComponentFraction) + const std::vector & FluidComponentFraction) { - prodml22__OverallComposition *_p = gsoap_eml2_3::soap_new_prodml22__OverallComposition(soap); + prodml23__OverallComposition *_p = gsoap_eml2_3::soap_new_prodml23__OverallComposition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OverallComposition::Remark = Remark; - _p->prodml22__OverallComposition::FluidComponentFraction = FluidComponentFraction; + _p->prodml23__OverallComposition::Remark = Remark; + _p->prodml23__OverallComposition::FluidComponentFraction = FluidComponentFraction; } return _p; } -inline int soap_write_prodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition const*p) +inline int soap_write_prodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition ? "prodml22:OverallComposition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition ? "prodml23:OverallComposition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OverallComposition(struct soap *soap, const char *URL, prodml22__OverallComposition const*p) +inline int soap_PUT_prodml23__OverallComposition(struct soap *soap, const char *URL, prodml23__OverallComposition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition ? "prodml22:OverallComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition ? "prodml23:OverallComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OverallComposition(struct soap *soap, const char *URL, prodml22__OverallComposition const*p) +inline int soap_PATCH_prodml23__OverallComposition(struct soap *soap, const char *URL, prodml23__OverallComposition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition ? "prodml22:OverallComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition ? "prodml23:OverallComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OverallComposition(struct soap *soap, const char *URL, prodml22__OverallComposition const*p) +inline int soap_POST_send_prodml23__OverallComposition(struct soap *soap, const char *URL, prodml23__OverallComposition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition ? "prodml22:OverallComposition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OverallComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition ? "prodml23:OverallComposition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OverallComposition * SOAP_FMAC4 soap_get_prodml22__OverallComposition(struct soap*, prodml22__OverallComposition *, const char*, const char*); +SOAP_FMAC3 prodml23__OverallComposition * SOAP_FMAC4 soap_get_prodml23__OverallComposition(struct soap*, prodml23__OverallComposition *, const char*, const char*); -inline int soap_read_prodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition *p) +inline int soap_read_prodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OverallComposition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OverallComposition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OverallComposition(struct soap *soap, const char *URL, prodml22__OverallComposition *p) +inline int soap_GET_prodml23__OverallComposition(struct soap *soap, const char *URL, prodml23__OverallComposition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OverallComposition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OverallComposition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OverallComposition(struct soap *soap, prodml22__OverallComposition *p) +inline int soap_POST_recv_prodml23__OverallComposition(struct soap *soap, prodml23__OverallComposition *p) { - if (gsoap_eml2_3::soap_read_prodml22__OverallComposition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OverallComposition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__OffshoreLocation(struct soap*, const char*, int, const prodml22__OffshoreLocation *, const char*); -SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_in_prodml22__OffshoreLocation(struct soap*, const char*, prodml22__OffshoreLocation *, const char*); -SOAP_FMAC1 prodml22__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml22__OffshoreLocation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__OffshoreLocation(struct soap*, const char*, int, const prodml23__OffshoreLocation *, const char*); +SOAP_FMAC3 prodml23__OffshoreLocation * SOAP_FMAC4 soap_in_prodml23__OffshoreLocation(struct soap*, const char*, prodml23__OffshoreLocation *, const char*); +SOAP_FMAC1 prodml23__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml23__OffshoreLocation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__OffshoreLocation * soap_new_prodml22__OffshoreLocation(struct soap *soap, int n = -1) +inline prodml23__OffshoreLocation * soap_new_prodml23__OffshoreLocation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__OffshoreLocation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__OffshoreLocation(soap, n, NULL, NULL, NULL); } -inline prodml22__OffshoreLocation * soap_new_req_prodml22__OffshoreLocation( +inline prodml23__OffshoreLocation * soap_new_req_prodml23__OffshoreLocation( struct soap *soap, const std::vector & BlockID) { - prodml22__OffshoreLocation *_p = gsoap_eml2_3::soap_new_prodml22__OffshoreLocation(soap); + prodml23__OffshoreLocation *_p = gsoap_eml2_3::soap_new_prodml23__OffshoreLocation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OffshoreLocation::BlockID = BlockID; + _p->prodml23__OffshoreLocation::BlockID = BlockID; } return _p; } -inline prodml22__OffshoreLocation * soap_new_set_prodml22__OffshoreLocation( +inline prodml23__OffshoreLocation * soap_new_set_prodml23__OffshoreLocation( struct soap *soap, std::string *AreaName, const std::vector & BlockID, std::string *Comment, - prodml22__NorthSeaOffshore *NorthSeaOffshore) + prodml23__NorthSeaOffshore *NorthSeaOffshore) { - prodml22__OffshoreLocation *_p = gsoap_eml2_3::soap_new_prodml22__OffshoreLocation(soap); + prodml23__OffshoreLocation *_p = gsoap_eml2_3::soap_new_prodml23__OffshoreLocation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__OffshoreLocation::AreaName = AreaName; - _p->prodml22__OffshoreLocation::BlockID = BlockID; - _p->prodml22__OffshoreLocation::Comment = Comment; - _p->prodml22__OffshoreLocation::NorthSeaOffshore = NorthSeaOffshore; + _p->prodml23__OffshoreLocation::AreaName = AreaName; + _p->prodml23__OffshoreLocation::BlockID = BlockID; + _p->prodml23__OffshoreLocation::Comment = Comment; + _p->prodml23__OffshoreLocation::NorthSeaOffshore = NorthSeaOffshore; } return _p; } -inline int soap_write_prodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation const*p) +inline int soap_write_prodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation ? "prodml22:OffshoreLocation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation ? "prodml23:OffshoreLocation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__OffshoreLocation(struct soap *soap, const char *URL, prodml22__OffshoreLocation const*p) +inline int soap_PUT_prodml23__OffshoreLocation(struct soap *soap, const char *URL, prodml23__OffshoreLocation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation ? "prodml22:OffshoreLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation ? "prodml23:OffshoreLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__OffshoreLocation(struct soap *soap, const char *URL, prodml22__OffshoreLocation const*p) +inline int soap_PATCH_prodml23__OffshoreLocation(struct soap *soap, const char *URL, prodml23__OffshoreLocation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation ? "prodml22:OffshoreLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation ? "prodml23:OffshoreLocation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__OffshoreLocation(struct soap *soap, const char *URL, prodml22__OffshoreLocation const*p) +inline int soap_POST_send_prodml23__OffshoreLocation(struct soap *soap, const char *URL, prodml23__OffshoreLocation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation ? "prodml22:OffshoreLocation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:OffshoreLocation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation ? "prodml23:OffshoreLocation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__OffshoreLocation * SOAP_FMAC4 soap_get_prodml22__OffshoreLocation(struct soap*, prodml22__OffshoreLocation *, const char*, const char*); +SOAP_FMAC3 prodml23__OffshoreLocation * SOAP_FMAC4 soap_get_prodml23__OffshoreLocation(struct soap*, prodml23__OffshoreLocation *, const char*, const char*); -inline int soap_read_prodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation *p) +inline int soap_read_prodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__OffshoreLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__OffshoreLocation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__OffshoreLocation(struct soap *soap, const char *URL, prodml22__OffshoreLocation *p) +inline int soap_GET_prodml23__OffshoreLocation(struct soap *soap, const char *URL, prodml23__OffshoreLocation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__OffshoreLocation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__OffshoreLocation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__OffshoreLocation(struct soap *soap, prodml22__OffshoreLocation *p) +inline int soap_POST_recv_prodml23__OffshoreLocation(struct soap *soap, prodml23__OffshoreLocation *p) { - if (gsoap_eml2_3::soap_read_prodml22__OffshoreLocation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__OffshoreLocation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NorthSeaOffshore(struct soap*, const char*, int, const prodml22__NorthSeaOffshore *, const char*); -SOAP_FMAC3 prodml22__NorthSeaOffshore * SOAP_FMAC4 soap_in_prodml22__NorthSeaOffshore(struct soap*, const char*, prodml22__NorthSeaOffshore *, const char*); -SOAP_FMAC1 prodml22__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml22__NorthSeaOffshore(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NorthSeaOffshore(struct soap*, const char*, int, const prodml23__NorthSeaOffshore *, const char*); +SOAP_FMAC3 prodml23__NorthSeaOffshore * SOAP_FMAC4 soap_in_prodml23__NorthSeaOffshore(struct soap*, const char*, prodml23__NorthSeaOffshore *, const char*); +SOAP_FMAC1 prodml23__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml23__NorthSeaOffshore(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NorthSeaOffshore * soap_new_prodml22__NorthSeaOffshore(struct soap *soap, int n = -1) +inline prodml23__NorthSeaOffshore * soap_new_prodml23__NorthSeaOffshore(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NorthSeaOffshore(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NorthSeaOffshore(soap, n, NULL, NULL, NULL); } -inline prodml22__NorthSeaOffshore * soap_new_req_prodml22__NorthSeaOffshore( +inline prodml23__NorthSeaOffshore * soap_new_req_prodml23__NorthSeaOffshore( struct soap *soap, const std::string& Quadrant) { - prodml22__NorthSeaOffshore *_p = gsoap_eml2_3::soap_new_prodml22__NorthSeaOffshore(soap); + prodml23__NorthSeaOffshore *_p = gsoap_eml2_3::soap_new_prodml23__NorthSeaOffshore(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NorthSeaOffshore::Quadrant = Quadrant; + _p->prodml23__NorthSeaOffshore::Quadrant = Quadrant; } return _p; } -inline prodml22__NorthSeaOffshore * soap_new_set_prodml22__NorthSeaOffshore( +inline prodml23__NorthSeaOffshore * soap_new_set_prodml23__NorthSeaOffshore( struct soap *soap, std::string *AreaName, const std::string& Quadrant, std::string *BlockSuffix) { - prodml22__NorthSeaOffshore *_p = gsoap_eml2_3::soap_new_prodml22__NorthSeaOffshore(soap); + prodml23__NorthSeaOffshore *_p = gsoap_eml2_3::soap_new_prodml23__NorthSeaOffshore(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NorthSeaOffshore::AreaName = AreaName; - _p->prodml22__NorthSeaOffshore::Quadrant = Quadrant; - _p->prodml22__NorthSeaOffshore::BlockSuffix = BlockSuffix; + _p->prodml23__NorthSeaOffshore::AreaName = AreaName; + _p->prodml23__NorthSeaOffshore::Quadrant = Quadrant; + _p->prodml23__NorthSeaOffshore::BlockSuffix = BlockSuffix; } return _p; } -inline int soap_write_prodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore const*p) +inline int soap_write_prodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore ? "prodml22:NorthSeaOffshore" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore ? "prodml23:NorthSeaOffshore" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NorthSeaOffshore(struct soap *soap, const char *URL, prodml22__NorthSeaOffshore const*p) +inline int soap_PUT_prodml23__NorthSeaOffshore(struct soap *soap, const char *URL, prodml23__NorthSeaOffshore const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore ? "prodml22:NorthSeaOffshore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore ? "prodml23:NorthSeaOffshore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NorthSeaOffshore(struct soap *soap, const char *URL, prodml22__NorthSeaOffshore const*p) +inline int soap_PATCH_prodml23__NorthSeaOffshore(struct soap *soap, const char *URL, prodml23__NorthSeaOffshore const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore ? "prodml22:NorthSeaOffshore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore ? "prodml23:NorthSeaOffshore" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NorthSeaOffshore(struct soap *soap, const char *URL, prodml22__NorthSeaOffshore const*p) +inline int soap_POST_send_prodml23__NorthSeaOffshore(struct soap *soap, const char *URL, prodml23__NorthSeaOffshore const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore ? "prodml22:NorthSeaOffshore" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NorthSeaOffshore", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore ? "prodml23:NorthSeaOffshore" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NorthSeaOffshore * SOAP_FMAC4 soap_get_prodml22__NorthSeaOffshore(struct soap*, prodml22__NorthSeaOffshore *, const char*, const char*); +SOAP_FMAC3 prodml23__NorthSeaOffshore * SOAP_FMAC4 soap_get_prodml23__NorthSeaOffshore(struct soap*, prodml23__NorthSeaOffshore *, const char*, const char*); -inline int soap_read_prodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore *p) +inline int soap_read_prodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NorthSeaOffshore(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NorthSeaOffshore(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NorthSeaOffshore(struct soap *soap, const char *URL, prodml22__NorthSeaOffshore *p) +inline int soap_GET_prodml23__NorthSeaOffshore(struct soap *soap, const char *URL, prodml23__NorthSeaOffshore *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NorthSeaOffshore(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NorthSeaOffshore(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NorthSeaOffshore(struct soap *soap, prodml22__NorthSeaOffshore *p) +inline int soap_POST_recv_prodml23__NorthSeaOffshore(struct soap *soap, prodml23__NorthSeaOffshore *p) { - if (gsoap_eml2_3::soap_read_prodml22__NorthSeaOffshore(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NorthSeaOffshore(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__NaturalGas(struct soap*, const char*, int, const prodml22__NaturalGas *, const char*); -SOAP_FMAC3 prodml22__NaturalGas * SOAP_FMAC4 soap_in_prodml22__NaturalGas(struct soap*, const char*, prodml22__NaturalGas *, const char*); -SOAP_FMAC1 prodml22__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml22__NaturalGas(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__NaturalGas(struct soap*, const char*, int, const prodml23__NaturalGas *, const char*); +SOAP_FMAC3 prodml23__NaturalGas * SOAP_FMAC4 soap_in_prodml23__NaturalGas(struct soap*, const char*, prodml23__NaturalGas *, const char*); +SOAP_FMAC1 prodml23__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml23__NaturalGas(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__NaturalGas * soap_new_prodml22__NaturalGas(struct soap *soap, int n = -1) +inline prodml23__NaturalGas * soap_new_prodml23__NaturalGas(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__NaturalGas(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__NaturalGas(soap, n, NULL, NULL, NULL); } -inline prodml22__NaturalGas * soap_new_req_prodml22__NaturalGas( +inline prodml23__NaturalGas * soap_new_req_prodml23__NaturalGas( struct soap *soap, const std::string& uid__1) { - prodml22__NaturalGas *_p = gsoap_eml2_3::soap_new_prodml22__NaturalGas(soap); + prodml23__NaturalGas *_p = gsoap_eml2_3::soap_new_prodml23__NaturalGas(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__NaturalGas * soap_new_set_prodml22__NaturalGas( +inline prodml23__NaturalGas * soap_new_set_prodml23__NaturalGas( struct soap *soap, double *GasGravity, eml23__MolecularWeightMeasure *MolecularWeight, @@ -132537,771 +132509,771 @@ inline prodml22__NaturalGas * soap_new_set_prodml22__NaturalGas( eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__NaturalGas *_p = gsoap_eml2_3::soap_new_prodml22__NaturalGas(soap); + prodml23__NaturalGas *_p = gsoap_eml2_3::soap_new_prodml23__NaturalGas(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__NaturalGas::GasGravity = GasGravity; - _p->prodml22__NaturalGas::MolecularWeight = MolecularWeight; - _p->prodml22__NaturalGas::GrossEnergyContentPerUnitMass = GrossEnergyContentPerUnitMass; - _p->prodml22__NaturalGas::NetEnergyContentPerUnitMass = NetEnergyContentPerUnitMass; - _p->prodml22__NaturalGas::GrossEnergyContentPerUnitVolume = GrossEnergyContentPerUnitVolume; - _p->prodml22__NaturalGas::NetEnergyContentPerUnitVolume = NetEnergyContentPerUnitVolume; - _p->prodml22__NaturalGas::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__NaturalGas::GasGravity = GasGravity; + _p->prodml23__NaturalGas::MolecularWeight = MolecularWeight; + _p->prodml23__NaturalGas::GrossEnergyContentPerUnitMass = GrossEnergyContentPerUnitMass; + _p->prodml23__NaturalGas::NetEnergyContentPerUnitMass = NetEnergyContentPerUnitMass; + _p->prodml23__NaturalGas::GrossEnergyContentPerUnitVolume = GrossEnergyContentPerUnitVolume; + _p->prodml23__NaturalGas::NetEnergyContentPerUnitVolume = NetEnergyContentPerUnitVolume; + _p->prodml23__NaturalGas::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas const*p) +inline int soap_write_prodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas ? "prodml22:NaturalGas" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas ? "prodml23:NaturalGas" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__NaturalGas(struct soap *soap, const char *URL, prodml22__NaturalGas const*p) +inline int soap_PUT_prodml23__NaturalGas(struct soap *soap, const char *URL, prodml23__NaturalGas const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas ? "prodml22:NaturalGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas ? "prodml23:NaturalGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__NaturalGas(struct soap *soap, const char *URL, prodml22__NaturalGas const*p) +inline int soap_PATCH_prodml23__NaturalGas(struct soap *soap, const char *URL, prodml23__NaturalGas const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas ? "prodml22:NaturalGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas ? "prodml23:NaturalGas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__NaturalGas(struct soap *soap, const char *URL, prodml22__NaturalGas const*p) +inline int soap_POST_send_prodml23__NaturalGas(struct soap *soap, const char *URL, prodml23__NaturalGas const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas ? "prodml22:NaturalGas" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:NaturalGas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas ? "prodml23:NaturalGas" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__NaturalGas * SOAP_FMAC4 soap_get_prodml22__NaturalGas(struct soap*, prodml22__NaturalGas *, const char*, const char*); +SOAP_FMAC3 prodml23__NaturalGas * SOAP_FMAC4 soap_get_prodml23__NaturalGas(struct soap*, prodml23__NaturalGas *, const char*, const char*); -inline int soap_read_prodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas *p) +inline int soap_read_prodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__NaturalGas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__NaturalGas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__NaturalGas(struct soap *soap, const char *URL, prodml22__NaturalGas *p) +inline int soap_GET_prodml23__NaturalGas(struct soap *soap, const char *URL, prodml23__NaturalGas *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__NaturalGas(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__NaturalGas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__NaturalGas(struct soap *soap, prodml22__NaturalGas *p) +inline int soap_POST_recv_prodml23__NaturalGas(struct soap *soap, prodml23__NaturalGas *p) { - if (gsoap_eml2_3::soap_read_prodml22__NaturalGas(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__NaturalGas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__MeasuredDepthCoord(struct soap*, const char*, int, const prodml22__MeasuredDepthCoord *, const char*); -SOAP_FMAC3 prodml22__MeasuredDepthCoord * SOAP_FMAC4 soap_in_prodml22__MeasuredDepthCoord(struct soap*, const char*, prodml22__MeasuredDepthCoord *, const char*); -SOAP_FMAC1 prodml22__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredDepthCoord(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__MeasuredDepthCoord(struct soap*, const char*, int, const prodml23__MeasuredDepthCoord *, const char*); +SOAP_FMAC3 prodml23__MeasuredDepthCoord * SOAP_FMAC4 soap_in_prodml23__MeasuredDepthCoord(struct soap*, const char*, prodml23__MeasuredDepthCoord *, const char*); +SOAP_FMAC1 prodml23__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredDepthCoord(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__MeasuredDepthCoord * soap_new_prodml22__MeasuredDepthCoord(struct soap *soap, int n = -1) +inline prodml23__MeasuredDepthCoord * soap_new_prodml23__MeasuredDepthCoord(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__MeasuredDepthCoord(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__MeasuredDepthCoord(soap, n, NULL, NULL, NULL); } -inline prodml22__MeasuredDepthCoord * soap_new_req_prodml22__MeasuredDepthCoord( +inline prodml23__MeasuredDepthCoord * soap_new_req_prodml23__MeasuredDepthCoord( struct soap *soap, double __item, eml23__VerticalCoordinateUom uom) { - prodml22__MeasuredDepthCoord *_p = gsoap_eml2_3::soap_new_prodml22__MeasuredDepthCoord(soap); + prodml23__MeasuredDepthCoord *_p = gsoap_eml2_3::soap_new_prodml23__MeasuredDepthCoord(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MeasuredDepthCoord::__item = __item; - _p->prodml22__MeasuredDepthCoord::uom = uom; + _p->prodml23__MeasuredDepthCoord::__item = __item; + _p->prodml23__MeasuredDepthCoord::uom = uom; } return _p; } -inline prodml22__MeasuredDepthCoord * soap_new_set_prodml22__MeasuredDepthCoord( +inline prodml23__MeasuredDepthCoord * soap_new_set_prodml23__MeasuredDepthCoord( struct soap *soap, double __item, eml23__VerticalCoordinateUom uom) { - prodml22__MeasuredDepthCoord *_p = gsoap_eml2_3::soap_new_prodml22__MeasuredDepthCoord(soap); + prodml23__MeasuredDepthCoord *_p = gsoap_eml2_3::soap_new_prodml23__MeasuredDepthCoord(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__MeasuredDepthCoord::__item = __item; - _p->prodml22__MeasuredDepthCoord::uom = uom; + _p->prodml23__MeasuredDepthCoord::__item = __item; + _p->prodml23__MeasuredDepthCoord::uom = uom; } return _p; } -inline int soap_write_prodml22__MeasuredDepthCoord(struct soap *soap, prodml22__MeasuredDepthCoord const*p) +inline int soap_write_prodml23__MeasuredDepthCoord(struct soap *soap, prodml23__MeasuredDepthCoord const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord ? "prodml22:MeasuredDepthCoord" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord ? "prodml23:MeasuredDepthCoord" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml22__MeasuredDepthCoord const*p) +inline int soap_PUT_prodml23__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml23__MeasuredDepthCoord const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord ? "prodml22:MeasuredDepthCoord" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord ? "prodml23:MeasuredDepthCoord" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml22__MeasuredDepthCoord const*p) +inline int soap_PATCH_prodml23__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml23__MeasuredDepthCoord const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord ? "prodml22:MeasuredDepthCoord" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord ? "prodml23:MeasuredDepthCoord" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml22__MeasuredDepthCoord const*p) +inline int soap_POST_send_prodml23__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml23__MeasuredDepthCoord const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord ? "prodml22:MeasuredDepthCoord" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:MeasuredDepthCoord", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord ? "prodml23:MeasuredDepthCoord" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__MeasuredDepthCoord * SOAP_FMAC4 soap_get_prodml22__MeasuredDepthCoord(struct soap*, prodml22__MeasuredDepthCoord *, const char*, const char*); +SOAP_FMAC3 prodml23__MeasuredDepthCoord * SOAP_FMAC4 soap_get_prodml23__MeasuredDepthCoord(struct soap*, prodml23__MeasuredDepthCoord *, const char*, const char*); -inline int soap_read_prodml22__MeasuredDepthCoord(struct soap *soap, prodml22__MeasuredDepthCoord *p) +inline int soap_read_prodml23__MeasuredDepthCoord(struct soap *soap, prodml23__MeasuredDepthCoord *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__MeasuredDepthCoord(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__MeasuredDepthCoord(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml22__MeasuredDepthCoord *p) +inline int soap_GET_prodml23__MeasuredDepthCoord(struct soap *soap, const char *URL, prodml23__MeasuredDepthCoord *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__MeasuredDepthCoord(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__MeasuredDepthCoord(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__MeasuredDepthCoord(struct soap *soap, prodml22__MeasuredDepthCoord *p) +inline int soap_POST_recv_prodml23__MeasuredDepthCoord(struct soap *soap, prodml23__MeasuredDepthCoord *p) { - if (gsoap_eml2_3::soap_read_prodml22__MeasuredDepthCoord(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__MeasuredDepthCoord(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LiquidComposition(struct soap*, const char*, int, const prodml22__LiquidComposition *, const char*); -SOAP_FMAC3 prodml22__LiquidComposition * SOAP_FMAC4 soap_in_prodml22__LiquidComposition(struct soap*, const char*, prodml22__LiquidComposition *, const char*); -SOAP_FMAC1 prodml22__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml22__LiquidComposition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LiquidComposition(struct soap*, const char*, int, const prodml23__LiquidComposition *, const char*); +SOAP_FMAC3 prodml23__LiquidComposition * SOAP_FMAC4 soap_in_prodml23__LiquidComposition(struct soap*, const char*, prodml23__LiquidComposition *, const char*); +SOAP_FMAC1 prodml23__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml23__LiquidComposition(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LiquidComposition * soap_new_prodml22__LiquidComposition(struct soap *soap, int n = -1) +inline prodml23__LiquidComposition * soap_new_prodml23__LiquidComposition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LiquidComposition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LiquidComposition(soap, n, NULL, NULL, NULL); } -inline prodml22__LiquidComposition * soap_new_req_prodml22__LiquidComposition( +inline prodml23__LiquidComposition * soap_new_req_prodml23__LiquidComposition( struct soap *soap) { - prodml22__LiquidComposition *_p = gsoap_eml2_3::soap_new_prodml22__LiquidComposition(soap); + prodml23__LiquidComposition *_p = gsoap_eml2_3::soap_new_prodml23__LiquidComposition(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__LiquidComposition * soap_new_set_prodml22__LiquidComposition( +inline prodml23__LiquidComposition * soap_new_set_prodml23__LiquidComposition( struct soap *soap, std::string *Remark, - const std::vector & LiquidComponentFraction) + const std::vector & LiquidComponentFraction) { - prodml22__LiquidComposition *_p = gsoap_eml2_3::soap_new_prodml22__LiquidComposition(soap); + prodml23__LiquidComposition *_p = gsoap_eml2_3::soap_new_prodml23__LiquidComposition(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LiquidComposition::Remark = Remark; - _p->prodml22__LiquidComposition::LiquidComponentFraction = LiquidComponentFraction; + _p->prodml23__LiquidComposition::Remark = Remark; + _p->prodml23__LiquidComposition::LiquidComponentFraction = LiquidComponentFraction; } return _p; } -inline int soap_write_prodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition const*p) +inline int soap_write_prodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition ? "prodml22:LiquidComposition" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition ? "prodml23:LiquidComposition" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LiquidComposition(struct soap *soap, const char *URL, prodml22__LiquidComposition const*p) +inline int soap_PUT_prodml23__LiquidComposition(struct soap *soap, const char *URL, prodml23__LiquidComposition const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition ? "prodml22:LiquidComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition ? "prodml23:LiquidComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LiquidComposition(struct soap *soap, const char *URL, prodml22__LiquidComposition const*p) +inline int soap_PATCH_prodml23__LiquidComposition(struct soap *soap, const char *URL, prodml23__LiquidComposition const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition ? "prodml22:LiquidComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition ? "prodml23:LiquidComposition" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LiquidComposition(struct soap *soap, const char *URL, prodml22__LiquidComposition const*p) +inline int soap_POST_send_prodml23__LiquidComposition(struct soap *soap, const char *URL, prodml23__LiquidComposition const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition ? "prodml22:LiquidComposition" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LiquidComposition", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition ? "prodml23:LiquidComposition" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LiquidComposition * SOAP_FMAC4 soap_get_prodml22__LiquidComposition(struct soap*, prodml22__LiquidComposition *, const char*, const char*); +SOAP_FMAC3 prodml23__LiquidComposition * SOAP_FMAC4 soap_get_prodml23__LiquidComposition(struct soap*, prodml23__LiquidComposition *, const char*, const char*); -inline int soap_read_prodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition *p) +inline int soap_read_prodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LiquidComposition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LiquidComposition(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LiquidComposition(struct soap *soap, const char *URL, prodml22__LiquidComposition *p) +inline int soap_GET_prodml23__LiquidComposition(struct soap *soap, const char *URL, prodml23__LiquidComposition *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LiquidComposition(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LiquidComposition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LiquidComposition(struct soap *soap, prodml22__LiquidComposition *p) +inline int soap_POST_recv_prodml23__LiquidComposition(struct soap *soap, prodml23__LiquidComposition *p) { - if (gsoap_eml2_3::soap_read_prodml22__LiquidComposition(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LiquidComposition(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__KindQualifiedString(struct soap*, const char*, int, const prodml22__KindQualifiedString *, const char*); -SOAP_FMAC3 prodml22__KindQualifiedString * SOAP_FMAC4 soap_in_prodml22__KindQualifiedString(struct soap*, const char*, prodml22__KindQualifiedString *, const char*); -SOAP_FMAC1 prodml22__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml22__KindQualifiedString(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__KindQualifiedString(struct soap*, const char*, int, const prodml23__KindQualifiedString *, const char*); +SOAP_FMAC3 prodml23__KindQualifiedString * SOAP_FMAC4 soap_in_prodml23__KindQualifiedString(struct soap*, const char*, prodml23__KindQualifiedString *, const char*); +SOAP_FMAC1 prodml23__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml23__KindQualifiedString(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__KindQualifiedString * soap_new_prodml22__KindQualifiedString(struct soap *soap, int n = -1) +inline prodml23__KindQualifiedString * soap_new_prodml23__KindQualifiedString(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__KindQualifiedString(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__KindQualifiedString(soap, n, NULL, NULL, NULL); } -inline prodml22__KindQualifiedString * soap_new_req_prodml22__KindQualifiedString( +inline prodml23__KindQualifiedString * soap_new_req_prodml23__KindQualifiedString( struct soap *soap) { - prodml22__KindQualifiedString *_p = gsoap_eml2_3::soap_new_prodml22__KindQualifiedString(soap); + prodml23__KindQualifiedString *_p = gsoap_eml2_3::soap_new_prodml23__KindQualifiedString(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__KindQualifiedString * soap_new_set_prodml22__KindQualifiedString( +inline prodml23__KindQualifiedString * soap_new_set_prodml23__KindQualifiedString( struct soap *soap, - prodml22__ValueStatus *status) + prodml23__ValueStatus *status) { - prodml22__KindQualifiedString *_p = gsoap_eml2_3::soap_new_prodml22__KindQualifiedString(soap); + prodml23__KindQualifiedString *_p = gsoap_eml2_3::soap_new_prodml23__KindQualifiedString(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__KindQualifiedString::status = status; + _p->prodml23__KindQualifiedString::status = status; } return _p; } -inline int soap_write_prodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString const*p) +inline int soap_write_prodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString ? "prodml22:KindQualifiedString" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString ? "prodml23:KindQualifiedString" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__KindQualifiedString(struct soap *soap, const char *URL, prodml22__KindQualifiedString const*p) +inline int soap_PUT_prodml23__KindQualifiedString(struct soap *soap, const char *URL, prodml23__KindQualifiedString const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString ? "prodml22:KindQualifiedString" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString ? "prodml23:KindQualifiedString" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__KindQualifiedString(struct soap *soap, const char *URL, prodml22__KindQualifiedString const*p) +inline int soap_PATCH_prodml23__KindQualifiedString(struct soap *soap, const char *URL, prodml23__KindQualifiedString const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString ? "prodml22:KindQualifiedString" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString ? "prodml23:KindQualifiedString" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__KindQualifiedString(struct soap *soap, const char *URL, prodml22__KindQualifiedString const*p) +inline int soap_POST_send_prodml23__KindQualifiedString(struct soap *soap, const char *URL, prodml23__KindQualifiedString const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString ? "prodml22:KindQualifiedString" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:KindQualifiedString", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString ? "prodml23:KindQualifiedString" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__KindQualifiedString * SOAP_FMAC4 soap_get_prodml22__KindQualifiedString(struct soap*, prodml22__KindQualifiedString *, const char*, const char*); +SOAP_FMAC3 prodml23__KindQualifiedString * SOAP_FMAC4 soap_get_prodml23__KindQualifiedString(struct soap*, prodml23__KindQualifiedString *, const char*, const char*); -inline int soap_read_prodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString *p) +inline int soap_read_prodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__KindQualifiedString(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__KindQualifiedString(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__KindQualifiedString(struct soap *soap, const char *URL, prodml22__KindQualifiedString *p) +inline int soap_GET_prodml23__KindQualifiedString(struct soap *soap, const char *URL, prodml23__KindQualifiedString *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__KindQualifiedString(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__KindQualifiedString(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__KindQualifiedString(struct soap *soap, prodml22__KindQualifiedString *p) +inline int soap_POST_recv_prodml23__KindQualifiedString(struct soap *soap, prodml23__KindQualifiedString *p) { - if (gsoap_eml2_3::soap_read_prodml22__KindQualifiedString(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__KindQualifiedString(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__IntegerQualifiedCount(struct soap*, const char*, int, const prodml22__IntegerQualifiedCount *, const char*); -SOAP_FMAC3 prodml22__IntegerQualifiedCount * SOAP_FMAC4 soap_in_prodml22__IntegerQualifiedCount(struct soap*, const char*, prodml22__IntegerQualifiedCount *, const char*); -SOAP_FMAC1 prodml22__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml22__IntegerQualifiedCount(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__IntegerQualifiedCount(struct soap*, const char*, int, const prodml23__IntegerQualifiedCount *, const char*); +SOAP_FMAC3 prodml23__IntegerQualifiedCount * SOAP_FMAC4 soap_in_prodml23__IntegerQualifiedCount(struct soap*, const char*, prodml23__IntegerQualifiedCount *, const char*); +SOAP_FMAC1 prodml23__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml23__IntegerQualifiedCount(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__IntegerQualifiedCount * soap_new_prodml22__IntegerQualifiedCount(struct soap *soap, int n = -1) +inline prodml23__IntegerQualifiedCount * soap_new_prodml23__IntegerQualifiedCount(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__IntegerQualifiedCount(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__IntegerQualifiedCount(soap, n, NULL, NULL, NULL); } -inline prodml22__IntegerQualifiedCount * soap_new_req_prodml22__IntegerQualifiedCount( +inline prodml23__IntegerQualifiedCount * soap_new_req_prodml23__IntegerQualifiedCount( struct soap *soap) { - prodml22__IntegerQualifiedCount *_p = gsoap_eml2_3::soap_new_prodml22__IntegerQualifiedCount(soap); + prodml23__IntegerQualifiedCount *_p = gsoap_eml2_3::soap_new_prodml23__IntegerQualifiedCount(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__IntegerQualifiedCount * soap_new_set_prodml22__IntegerQualifiedCount( +inline prodml23__IntegerQualifiedCount * soap_new_set_prodml23__IntegerQualifiedCount( struct soap *soap, - prodml22__ValueStatus *status) + prodml23__ValueStatus *status) { - prodml22__IntegerQualifiedCount *_p = gsoap_eml2_3::soap_new_prodml22__IntegerQualifiedCount(soap); + prodml23__IntegerQualifiedCount *_p = gsoap_eml2_3::soap_new_prodml23__IntegerQualifiedCount(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__IntegerQualifiedCount::status = status; + _p->prodml23__IntegerQualifiedCount::status = status; } return _p; } -inline int soap_write_prodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount const*p) +inline int soap_write_prodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount ? "prodml22:IntegerQualifiedCount" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount ? "prodml23:IntegerQualifiedCount" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml22__IntegerQualifiedCount const*p) +inline int soap_PUT_prodml23__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml23__IntegerQualifiedCount const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount ? "prodml22:IntegerQualifiedCount" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount ? "prodml23:IntegerQualifiedCount" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml22__IntegerQualifiedCount const*p) +inline int soap_PATCH_prodml23__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml23__IntegerQualifiedCount const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount ? "prodml22:IntegerQualifiedCount" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount ? "prodml23:IntegerQualifiedCount" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml22__IntegerQualifiedCount const*p) +inline int soap_POST_send_prodml23__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml23__IntegerQualifiedCount const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount ? "prodml22:IntegerQualifiedCount" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:IntegerQualifiedCount", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount ? "prodml23:IntegerQualifiedCount" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__IntegerQualifiedCount * SOAP_FMAC4 soap_get_prodml22__IntegerQualifiedCount(struct soap*, prodml22__IntegerQualifiedCount *, const char*, const char*); +SOAP_FMAC3 prodml23__IntegerQualifiedCount * SOAP_FMAC4 soap_get_prodml23__IntegerQualifiedCount(struct soap*, prodml23__IntegerQualifiedCount *, const char*, const char*); -inline int soap_read_prodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount *p) +inline int soap_read_prodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__IntegerQualifiedCount(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__IntegerQualifiedCount(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml22__IntegerQualifiedCount *p) +inline int soap_GET_prodml23__IntegerQualifiedCount(struct soap *soap, const char *URL, prodml23__IntegerQualifiedCount *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__IntegerQualifiedCount(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__IntegerQualifiedCount(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__IntegerQualifiedCount(struct soap *soap, prodml22__IntegerQualifiedCount *p) +inline int soap_POST_recv_prodml23__IntegerQualifiedCount(struct soap *soap, prodml23__IntegerQualifiedCount *p) { - if (gsoap_eml2_3::soap_read_prodml22__IntegerQualifiedCount(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__IntegerQualifiedCount(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__GeographicContext(struct soap*, const char*, int, const prodml22__GeographicContext *, const char*); -SOAP_FMAC3 prodml22__GeographicContext * SOAP_FMAC4 soap_in_prodml22__GeographicContext(struct soap*, const char*, prodml22__GeographicContext *, const char*); -SOAP_FMAC1 prodml22__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml22__GeographicContext(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__GeographicContext(struct soap*, const char*, int, const prodml23__GeographicContext *, const char*); +SOAP_FMAC3 prodml23__GeographicContext * SOAP_FMAC4 soap_in_prodml23__GeographicContext(struct soap*, const char*, prodml23__GeographicContext *, const char*); +SOAP_FMAC1 prodml23__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml23__GeographicContext(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__GeographicContext * soap_new_prodml22__GeographicContext(struct soap *soap, int n = -1) +inline prodml23__GeographicContext * soap_new_prodml23__GeographicContext(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__GeographicContext(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__GeographicContext(soap, n, NULL, NULL, NULL); } -inline prodml22__GeographicContext * soap_new_req_prodml22__GeographicContext( +inline prodml23__GeographicContext * soap_new_req_prodml23__GeographicContext( struct soap *soap) { - prodml22__GeographicContext *_p = gsoap_eml2_3::soap_new_prodml22__GeographicContext(soap); + prodml23__GeographicContext *_p = gsoap_eml2_3::soap_new_prodml23__GeographicContext(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__GeographicContext * soap_new_set_prodml22__GeographicContext( +inline prodml23__GeographicContext * soap_new_set_prodml23__GeographicContext( struct soap *soap, std::string *Country, std::string *State, std::string *County, eml23__NameStruct *Field, std::string *Comment, - prodml22__OffshoreLocation *OffshoreLocation) + prodml23__OffshoreLocation *OffshoreLocation) { - prodml22__GeographicContext *_p = gsoap_eml2_3::soap_new_prodml22__GeographicContext(soap); + prodml23__GeographicContext *_p = gsoap_eml2_3::soap_new_prodml23__GeographicContext(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__GeographicContext::Country = Country; - _p->prodml22__GeographicContext::State = State; - _p->prodml22__GeographicContext::County = County; - _p->prodml22__GeographicContext::Field = Field; - _p->prodml22__GeographicContext::Comment = Comment; - _p->prodml22__GeographicContext::OffshoreLocation = OffshoreLocation; + _p->prodml23__GeographicContext::Country = Country; + _p->prodml23__GeographicContext::State = State; + _p->prodml23__GeographicContext::County = County; + _p->prodml23__GeographicContext::Field = Field; + _p->prodml23__GeographicContext::Comment = Comment; + _p->prodml23__GeographicContext::OffshoreLocation = OffshoreLocation; } return _p; } -inline int soap_write_prodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext const*p) +inline int soap_write_prodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext ? "prodml22:GeographicContext" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext ? "prodml23:GeographicContext" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__GeographicContext(struct soap *soap, const char *URL, prodml22__GeographicContext const*p) +inline int soap_PUT_prodml23__GeographicContext(struct soap *soap, const char *URL, prodml23__GeographicContext const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext ? "prodml22:GeographicContext" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext ? "prodml23:GeographicContext" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__GeographicContext(struct soap *soap, const char *URL, prodml22__GeographicContext const*p) +inline int soap_PATCH_prodml23__GeographicContext(struct soap *soap, const char *URL, prodml23__GeographicContext const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext ? "prodml22:GeographicContext" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext ? "prodml23:GeographicContext" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__GeographicContext(struct soap *soap, const char *URL, prodml22__GeographicContext const*p) +inline int soap_POST_send_prodml23__GeographicContext(struct soap *soap, const char *URL, prodml23__GeographicContext const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext ? "prodml22:GeographicContext" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeographicContext", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext ? "prodml23:GeographicContext" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__GeographicContext * SOAP_FMAC4 soap_get_prodml22__GeographicContext(struct soap*, prodml22__GeographicContext *, const char*, const char*); +SOAP_FMAC3 prodml23__GeographicContext * SOAP_FMAC4 soap_get_prodml23__GeographicContext(struct soap*, prodml23__GeographicContext *, const char*, const char*); -inline int soap_read_prodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext *p) +inline int soap_read_prodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__GeographicContext(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__GeographicContext(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__GeographicContext(struct soap *soap, const char *URL, prodml22__GeographicContext *p) +inline int soap_GET_prodml23__GeographicContext(struct soap *soap, const char *URL, prodml23__GeographicContext *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__GeographicContext(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__GeographicContext(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__GeographicContext(struct soap *soap, prodml22__GeographicContext *p) +inline int soap_POST_recv_prodml23__GeographicContext(struct soap *soap, prodml23__GeographicContext *p) { - if (gsoap_eml2_3::soap_read_prodml22__GeographicContext(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__GeographicContext(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__GeneralQualifiedMeasure(struct soap*, const char*, int, const prodml22__GeneralQualifiedMeasure *, const char*); -SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml22__GeneralQualifiedMeasure(struct soap*, const char*, prodml22__GeneralQualifiedMeasure *, const char*); -SOAP_FMAC1 prodml22__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodml22__GeneralQualifiedMeasure(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__GeneralQualifiedMeasure(struct soap*, const char*, int, const prodml23__GeneralQualifiedMeasure *, const char*); +SOAP_FMAC3 prodml23__GeneralQualifiedMeasure * SOAP_FMAC4 soap_in_prodml23__GeneralQualifiedMeasure(struct soap*, const char*, prodml23__GeneralQualifiedMeasure *, const char*); +SOAP_FMAC1 prodml23__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodml23__GeneralQualifiedMeasure(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__GeneralQualifiedMeasure * soap_new_prodml22__GeneralQualifiedMeasure(struct soap *soap, int n = -1) +inline prodml23__GeneralQualifiedMeasure * soap_new_prodml23__GeneralQualifiedMeasure(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__GeneralQualifiedMeasure(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__GeneralQualifiedMeasure(soap, n, NULL, NULL, NULL); } -inline prodml22__GeneralQualifiedMeasure * soap_new_req_prodml22__GeneralQualifiedMeasure( +inline prodml23__GeneralQualifiedMeasure * soap_new_req_prodml23__GeneralQualifiedMeasure( struct soap *soap, const std::string& uom) { - prodml22__GeneralQualifiedMeasure *_p = gsoap_eml2_3::soap_new_prodml22__GeneralQualifiedMeasure(soap); + prodml23__GeneralQualifiedMeasure *_p = gsoap_eml2_3::soap_new_prodml23__GeneralQualifiedMeasure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__GeneralQualifiedMeasure::uom = uom; + _p->prodml23__GeneralQualifiedMeasure::uom = uom; } return _p; } -inline prodml22__GeneralQualifiedMeasure * soap_new_set_prodml22__GeneralQualifiedMeasure( +inline prodml23__GeneralQualifiedMeasure * soap_new_set_prodml23__GeneralQualifiedMeasure( struct soap *soap, - prodml22__ValueStatus *status, + prodml23__ValueStatus *status, std::string *componentReference, const std::string& uom) { - prodml22__GeneralQualifiedMeasure *_p = gsoap_eml2_3::soap_new_prodml22__GeneralQualifiedMeasure(soap); + prodml23__GeneralQualifiedMeasure *_p = gsoap_eml2_3::soap_new_prodml23__GeneralQualifiedMeasure(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__GeneralQualifiedMeasure::status = status; - _p->prodml22__GeneralQualifiedMeasure::componentReference = componentReference; - _p->prodml22__GeneralQualifiedMeasure::uom = uom; + _p->prodml23__GeneralQualifiedMeasure::status = status; + _p->prodml23__GeneralQualifiedMeasure::componentReference = componentReference; + _p->prodml23__GeneralQualifiedMeasure::uom = uom; } return _p; } -inline int soap_write_prodml22__GeneralQualifiedMeasure(struct soap *soap, prodml22__GeneralQualifiedMeasure const*p) +inline int soap_write_prodml23__GeneralQualifiedMeasure(struct soap *soap, prodml23__GeneralQualifiedMeasure const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure ? "prodml22:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure ? "prodml23:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml22__GeneralQualifiedMeasure const*p) +inline int soap_PUT_prodml23__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml23__GeneralQualifiedMeasure const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure ? "prodml22:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure ? "prodml23:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml22__GeneralQualifiedMeasure const*p) +inline int soap_PATCH_prodml23__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml23__GeneralQualifiedMeasure const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure ? "prodml22:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure ? "prodml23:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml22__GeneralQualifiedMeasure const*p) +inline int soap_POST_send_prodml23__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml23__GeneralQualifiedMeasure const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure ? "prodml22:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralQualifiedMeasure", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure ? "prodml23:GeneralQualifiedMeasure" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__GeneralQualifiedMeasure * SOAP_FMAC4 soap_get_prodml22__GeneralQualifiedMeasure(struct soap*, prodml22__GeneralQualifiedMeasure *, const char*, const char*); +SOAP_FMAC3 prodml23__GeneralQualifiedMeasure * SOAP_FMAC4 soap_get_prodml23__GeneralQualifiedMeasure(struct soap*, prodml23__GeneralQualifiedMeasure *, const char*, const char*); -inline int soap_read_prodml22__GeneralQualifiedMeasure(struct soap *soap, prodml22__GeneralQualifiedMeasure *p) +inline int soap_read_prodml23__GeneralQualifiedMeasure(struct soap *soap, prodml23__GeneralQualifiedMeasure *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__GeneralQualifiedMeasure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__GeneralQualifiedMeasure(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml22__GeneralQualifiedMeasure *p) +inline int soap_GET_prodml23__GeneralQualifiedMeasure(struct soap *soap, const char *URL, prodml23__GeneralQualifiedMeasure *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__GeneralQualifiedMeasure(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__GeneralQualifiedMeasure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__GeneralQualifiedMeasure(struct soap *soap, prodml22__GeneralQualifiedMeasure *p) +inline int soap_POST_recv_prodml23__GeneralQualifiedMeasure(struct soap *soap, prodml23__GeneralQualifiedMeasure *p) { - if (gsoap_eml2_3::soap_read_prodml22__GeneralQualifiedMeasure(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__GeneralQualifiedMeasure(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__GeneralMeasureType(struct soap*, const char*, int, const prodml22__GeneralMeasureType *, const char*); -SOAP_FMAC3 prodml22__GeneralMeasureType * SOAP_FMAC4 soap_in_prodml22__GeneralMeasureType(struct soap*, const char*, prodml22__GeneralMeasureType *, const char*); -SOAP_FMAC1 prodml22__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml22__GeneralMeasureType(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__GeneralMeasureType(struct soap*, const char*, int, const prodml23__GeneralMeasureType *, const char*); +SOAP_FMAC3 prodml23__GeneralMeasureType * SOAP_FMAC4 soap_in_prodml23__GeneralMeasureType(struct soap*, const char*, prodml23__GeneralMeasureType *, const char*); +SOAP_FMAC1 prodml23__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml23__GeneralMeasureType(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__GeneralMeasureType * soap_new_prodml22__GeneralMeasureType(struct soap *soap, int n = -1) +inline prodml23__GeneralMeasureType * soap_new_prodml23__GeneralMeasureType(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__GeneralMeasureType(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__GeneralMeasureType(soap, n, NULL, NULL, NULL); } -inline prodml22__GeneralMeasureType * soap_new_req_prodml22__GeneralMeasureType( +inline prodml23__GeneralMeasureType * soap_new_req_prodml23__GeneralMeasureType( struct soap *soap) { - prodml22__GeneralMeasureType *_p = gsoap_eml2_3::soap_new_prodml22__GeneralMeasureType(soap); + prodml23__GeneralMeasureType *_p = gsoap_eml2_3::soap_new_prodml23__GeneralMeasureType(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__GeneralMeasureType * soap_new_set_prodml22__GeneralMeasureType( +inline prodml23__GeneralMeasureType * soap_new_set_prodml23__GeneralMeasureType( struct soap *soap, std::string *uom) { - prodml22__GeneralMeasureType *_p = gsoap_eml2_3::soap_new_prodml22__GeneralMeasureType(soap); + prodml23__GeneralMeasureType *_p = gsoap_eml2_3::soap_new_prodml23__GeneralMeasureType(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__GeneralMeasureType::uom = uom; + _p->prodml23__GeneralMeasureType::uom = uom; } return _p; } -inline int soap_write_prodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType const*p) +inline int soap_write_prodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType ? "prodml22:GeneralMeasureType" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType ? "prodml23:GeneralMeasureType" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__GeneralMeasureType(struct soap *soap, const char *URL, prodml22__GeneralMeasureType const*p) +inline int soap_PUT_prodml23__GeneralMeasureType(struct soap *soap, const char *URL, prodml23__GeneralMeasureType const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType ? "prodml22:GeneralMeasureType" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType ? "prodml23:GeneralMeasureType" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__GeneralMeasureType(struct soap *soap, const char *URL, prodml22__GeneralMeasureType const*p) +inline int soap_PATCH_prodml23__GeneralMeasureType(struct soap *soap, const char *URL, prodml23__GeneralMeasureType const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType ? "prodml22:GeneralMeasureType" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType ? "prodml23:GeneralMeasureType" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__GeneralMeasureType(struct soap *soap, const char *URL, prodml22__GeneralMeasureType const*p) +inline int soap_POST_send_prodml23__GeneralMeasureType(struct soap *soap, const char *URL, prodml23__GeneralMeasureType const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType ? "prodml22:GeneralMeasureType" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:GeneralMeasureType", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType ? "prodml23:GeneralMeasureType" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__GeneralMeasureType * SOAP_FMAC4 soap_get_prodml22__GeneralMeasureType(struct soap*, prodml22__GeneralMeasureType *, const char*, const char*); +SOAP_FMAC3 prodml23__GeneralMeasureType * SOAP_FMAC4 soap_get_prodml23__GeneralMeasureType(struct soap*, prodml23__GeneralMeasureType *, const char*, const char*); -inline int soap_read_prodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType *p) +inline int soap_read_prodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__GeneralMeasureType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__GeneralMeasureType(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__GeneralMeasureType(struct soap *soap, const char *URL, prodml22__GeneralMeasureType *p) +inline int soap_GET_prodml23__GeneralMeasureType(struct soap *soap, const char *URL, prodml23__GeneralMeasureType *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__GeneralMeasureType(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__GeneralMeasureType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__GeneralMeasureType(struct soap *soap, prodml22__GeneralMeasureType *p) +inline int soap_POST_recv_prodml23__GeneralMeasureType(struct soap *soap, prodml23__GeneralMeasureType *p) { - if (gsoap_eml2_3::soap_read_prodml22__GeneralMeasureType(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__GeneralMeasureType(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FormationWater(struct soap*, const char*, int, const prodml22__FormationWater *, const char*); -SOAP_FMAC3 prodml22__FormationWater * SOAP_FMAC4 soap_in_prodml22__FormationWater(struct soap*, const char*, prodml22__FormationWater *, const char*); -SOAP_FMAC1 prodml22__FormationWater * SOAP_FMAC2 soap_instantiate_prodml22__FormationWater(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FormationWater(struct soap*, const char*, int, const prodml23__FormationWater *, const char*); +SOAP_FMAC3 prodml23__FormationWater * SOAP_FMAC4 soap_in_prodml23__FormationWater(struct soap*, const char*, prodml23__FormationWater *, const char*); +SOAP_FMAC1 prodml23__FormationWater * SOAP_FMAC2 soap_instantiate_prodml23__FormationWater(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FormationWater * soap_new_prodml22__FormationWater(struct soap *soap, int n = -1) +inline prodml23__FormationWater * soap_new_prodml23__FormationWater(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FormationWater(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FormationWater(soap, n, NULL, NULL, NULL); } -inline prodml22__FormationWater * soap_new_req_prodml22__FormationWater( +inline prodml23__FormationWater * soap_new_req_prodml23__FormationWater( struct soap *soap, const std::string& uid__1) { - prodml22__FormationWater *_p = gsoap_eml2_3::soap_new_prodml22__FormationWater(soap); + prodml23__FormationWater *_p = gsoap_eml2_3::soap_new_prodml23__FormationWater(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline prodml22__FormationWater * soap_new_set_prodml22__FormationWater( +inline prodml23__FormationWater * soap_new_set_prodml23__FormationWater( struct soap *soap, double *SpecificGravity, eml23__MassPerMassMeasure *Salinity, @@ -133309,706 +133281,706 @@ inline prodml22__FormationWater * soap_new_set_prodml22__FormationWater( eml23__MassPerMassMeasure *MassFraction__1, eml23__MassPerVolumeMeasureExt *VolumeConcentration__1, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction__1, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits__1, const std::string& uid__1) { - prodml22__FormationWater *_p = gsoap_eml2_3::soap_new_prodml22__FormationWater(soap); + prodml23__FormationWater *_p = gsoap_eml2_3::soap_new_prodml23__FormationWater(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FormationWater::SpecificGravity = SpecificGravity; - _p->prodml22__FormationWater::Salinity = Salinity; - _p->prodml22__FormationWater::Remark = Remark; - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction__1; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction__1; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; - _p->prodml22__AbstractFluidComponent::uid = uid__1; + _p->prodml23__FormationWater::SpecificGravity = SpecificGravity; + _p->prodml23__FormationWater::Salinity = Salinity; + _p->prodml23__FormationWater::Remark = Remark; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction__1; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration__1; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction__1; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits__1; + _p->prodml23__AbstractFluidComponent::uid = uid__1; } return _p; } -inline int soap_write_prodml22__FormationWater(struct soap *soap, prodml22__FormationWater const*p) +inline int soap_write_prodml23__FormationWater(struct soap *soap, prodml23__FormationWater const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater ? "prodml22:FormationWater" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater ? "prodml23:FormationWater" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FormationWater(struct soap *soap, const char *URL, prodml22__FormationWater const*p) +inline int soap_PUT_prodml23__FormationWater(struct soap *soap, const char *URL, prodml23__FormationWater const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater ? "prodml22:FormationWater" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater ? "prodml23:FormationWater" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FormationWater(struct soap *soap, const char *URL, prodml22__FormationWater const*p) +inline int soap_PATCH_prodml23__FormationWater(struct soap *soap, const char *URL, prodml23__FormationWater const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater ? "prodml22:FormationWater" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater ? "prodml23:FormationWater" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FormationWater(struct soap *soap, const char *URL, prodml22__FormationWater const*p) +inline int soap_POST_send_prodml23__FormationWater(struct soap *soap, const char *URL, prodml23__FormationWater const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater ? "prodml22:FormationWater" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FormationWater", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater ? "prodml23:FormationWater" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FormationWater * SOAP_FMAC4 soap_get_prodml22__FormationWater(struct soap*, prodml22__FormationWater *, const char*, const char*); +SOAP_FMAC3 prodml23__FormationWater * SOAP_FMAC4 soap_get_prodml23__FormationWater(struct soap*, prodml23__FormationWater *, const char*, const char*); -inline int soap_read_prodml22__FormationWater(struct soap *soap, prodml22__FormationWater *p) +inline int soap_read_prodml23__FormationWater(struct soap *soap, prodml23__FormationWater *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FormationWater(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FormationWater(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FormationWater(struct soap *soap, const char *URL, prodml22__FormationWater *p) +inline int soap_GET_prodml23__FormationWater(struct soap *soap, const char *URL, prodml23__FormationWater *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FormationWater(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FormationWater(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FormationWater(struct soap *soap, prodml22__FormationWater *p) +inline int soap_POST_recv_prodml23__FormationWater(struct soap *soap, prodml23__FormationWater *p) { - if (gsoap_eml2_3::soap_read_prodml22__FormationWater(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FormationWater(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentFraction(struct soap*, const char*, int, const prodml22__FluidComponentFraction *, const char*); -SOAP_FMAC3 prodml22__FluidComponentFraction * SOAP_FMAC4 soap_in_prodml22__FluidComponentFraction(struct soap*, const char*, prodml22__FluidComponentFraction *, const char*); -SOAP_FMAC1 prodml22__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentFraction(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentFraction(struct soap*, const char*, int, const prodml23__FluidComponentFraction *, const char*); +SOAP_FMAC3 prodml23__FluidComponentFraction * SOAP_FMAC4 soap_in_prodml23__FluidComponentFraction(struct soap*, const char*, prodml23__FluidComponentFraction *, const char*); +SOAP_FMAC1 prodml23__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentFraction(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidComponentFraction * soap_new_prodml22__FluidComponentFraction(struct soap *soap, int n = -1) +inline prodml23__FluidComponentFraction * soap_new_prodml23__FluidComponentFraction(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidComponentFraction(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidComponentFraction(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidComponentFraction * soap_new_req_prodml22__FluidComponentFraction( +inline prodml23__FluidComponentFraction * soap_new_req_prodml23__FluidComponentFraction( struct soap *soap, const std::string& fluidComponentReference) { - prodml22__FluidComponentFraction *_p = gsoap_eml2_3::soap_new_prodml22__FluidComponentFraction(soap); + prodml23__FluidComponentFraction *_p = gsoap_eml2_3::soap_new_prodml23__FluidComponentFraction(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidComponentFraction::fluidComponentReference = fluidComponentReference; + _p->prodml23__FluidComponentFraction::fluidComponentReference = fluidComponentReference; } return _p; } -inline prodml22__FluidComponentFraction * soap_new_set_prodml22__FluidComponentFraction( +inline prodml23__FluidComponentFraction * soap_new_set_prodml23__FluidComponentFraction( struct soap *soap, eml23__MassPerMassMeasure *MassFraction, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction, eml23__VolumePerVolumeMeasureExt *VolumeFraction, eml23__MassPerVolumeMeasureExt *VolumeConcentration, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *KValue, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits, const std::string& fluidComponentReference) { - prodml22__FluidComponentFraction *_p = gsoap_eml2_3::soap_new_prodml22__FluidComponentFraction(soap); + prodml23__FluidComponentFraction *_p = gsoap_eml2_3::soap_new_prodml23__FluidComponentFraction(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidComponentFraction::MassFraction = MassFraction; - _p->prodml22__FluidComponentFraction::MoleFraction = MoleFraction; - _p->prodml22__FluidComponentFraction::VolumeFraction = VolumeFraction; - _p->prodml22__FluidComponentFraction::VolumeConcentration = VolumeConcentration; - _p->prodml22__FluidComponentFraction::KValue = KValue; - _p->prodml22__FluidComponentFraction::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits; - _p->prodml22__FluidComponentFraction::fluidComponentReference = fluidComponentReference; + _p->prodml23__FluidComponentFraction::MassFraction = MassFraction; + _p->prodml23__FluidComponentFraction::MoleFraction = MoleFraction; + _p->prodml23__FluidComponentFraction::VolumeFraction = VolumeFraction; + _p->prodml23__FluidComponentFraction::VolumeConcentration = VolumeConcentration; + _p->prodml23__FluidComponentFraction::KValue = KValue; + _p->prodml23__FluidComponentFraction::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits; + _p->prodml23__FluidComponentFraction::fluidComponentReference = fluidComponentReference; } return _p; } -inline int soap_write_prodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction const*p) +inline int soap_write_prodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction ? "prodml22:FluidComponentFraction" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction ? "prodml23:FluidComponentFraction" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidComponentFraction(struct soap *soap, const char *URL, prodml22__FluidComponentFraction const*p) +inline int soap_PUT_prodml23__FluidComponentFraction(struct soap *soap, const char *URL, prodml23__FluidComponentFraction const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction ? "prodml22:FluidComponentFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction ? "prodml23:FluidComponentFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidComponentFraction(struct soap *soap, const char *URL, prodml22__FluidComponentFraction const*p) +inline int soap_PATCH_prodml23__FluidComponentFraction(struct soap *soap, const char *URL, prodml23__FluidComponentFraction const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction ? "prodml22:FluidComponentFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction ? "prodml23:FluidComponentFraction" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidComponentFraction(struct soap *soap, const char *URL, prodml22__FluidComponentFraction const*p) +inline int soap_POST_send_prodml23__FluidComponentFraction(struct soap *soap, const char *URL, prodml23__FluidComponentFraction const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction ? "prodml22:FluidComponentFraction" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentFraction", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction ? "prodml23:FluidComponentFraction" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidComponentFraction * SOAP_FMAC4 soap_get_prodml22__FluidComponentFraction(struct soap*, prodml22__FluidComponentFraction *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentFraction * SOAP_FMAC4 soap_get_prodml23__FluidComponentFraction(struct soap*, prodml23__FluidComponentFraction *, const char*, const char*); -inline int soap_read_prodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction *p) +inline int soap_read_prodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidComponentFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidComponentFraction(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidComponentFraction(struct soap *soap, const char *URL, prodml22__FluidComponentFraction *p) +inline int soap_GET_prodml23__FluidComponentFraction(struct soap *soap, const char *URL, prodml23__FluidComponentFraction *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidComponentFraction(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidComponentFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidComponentFraction(struct soap *soap, prodml22__FluidComponentFraction *p) +inline int soap_POST_recv_prodml23__FluidComponentFraction(struct soap *soap, prodml23__FluidComponentFraction *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidComponentFraction(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidComponentFraction(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentCatalog(struct soap*, const char*, int, const prodml22__FluidComponentCatalog *, const char*); -SOAP_FMAC3 prodml22__FluidComponentCatalog * SOAP_FMAC4 soap_in_prodml22__FluidComponentCatalog(struct soap*, const char*, prodml22__FluidComponentCatalog *, const char*); -SOAP_FMAC1 prodml22__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentCatalog(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentCatalog(struct soap*, const char*, int, const prodml23__FluidComponentCatalog *, const char*); +SOAP_FMAC3 prodml23__FluidComponentCatalog * SOAP_FMAC4 soap_in_prodml23__FluidComponentCatalog(struct soap*, const char*, prodml23__FluidComponentCatalog *, const char*); +SOAP_FMAC1 prodml23__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentCatalog(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidComponentCatalog * soap_new_prodml22__FluidComponentCatalog(struct soap *soap, int n = -1) +inline prodml23__FluidComponentCatalog * soap_new_prodml23__FluidComponentCatalog(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidComponentCatalog(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidComponentCatalog(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidComponentCatalog * soap_new_req_prodml22__FluidComponentCatalog( +inline prodml23__FluidComponentCatalog * soap_new_req_prodml23__FluidComponentCatalog( struct soap *soap) { - prodml22__FluidComponentCatalog *_p = gsoap_eml2_3::soap_new_prodml22__FluidComponentCatalog(soap); + prodml23__FluidComponentCatalog *_p = gsoap_eml2_3::soap_new_prodml23__FluidComponentCatalog(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__FluidComponentCatalog * soap_new_set_prodml22__FluidComponentCatalog( +inline prodml23__FluidComponentCatalog * soap_new_set_prodml23__FluidComponentCatalog( struct soap *soap, - const std::vector & StockTankOil, - const std::vector & NaturalGas, - const std::vector & FormationWater, - const std::vector & PureFluidComponent, - const std::vector & PseudoFluidComponent, - const std::vector & PlusFluidComponent, - const std::vector & SulfurFluidComponent) + const std::vector & StockTankOil, + const std::vector & NaturalGas, + const std::vector & FormationWater, + const std::vector & PureFluidComponent, + const std::vector & PseudoFluidComponent, + const std::vector & PlusFluidComponent, + const std::vector & SulfurFluidComponent) { - prodml22__FluidComponentCatalog *_p = gsoap_eml2_3::soap_new_prodml22__FluidComponentCatalog(soap); + prodml23__FluidComponentCatalog *_p = gsoap_eml2_3::soap_new_prodml23__FluidComponentCatalog(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidComponentCatalog::StockTankOil = StockTankOil; - _p->prodml22__FluidComponentCatalog::NaturalGas = NaturalGas; - _p->prodml22__FluidComponentCatalog::FormationWater = FormationWater; - _p->prodml22__FluidComponentCatalog::PureFluidComponent = PureFluidComponent; - _p->prodml22__FluidComponentCatalog::PseudoFluidComponent = PseudoFluidComponent; - _p->prodml22__FluidComponentCatalog::PlusFluidComponent = PlusFluidComponent; - _p->prodml22__FluidComponentCatalog::SulfurFluidComponent = SulfurFluidComponent; + _p->prodml23__FluidComponentCatalog::StockTankOil = StockTankOil; + _p->prodml23__FluidComponentCatalog::NaturalGas = NaturalGas; + _p->prodml23__FluidComponentCatalog::FormationWater = FormationWater; + _p->prodml23__FluidComponentCatalog::PureFluidComponent = PureFluidComponent; + _p->prodml23__FluidComponentCatalog::PseudoFluidComponent = PseudoFluidComponent; + _p->prodml23__FluidComponentCatalog::PlusFluidComponent = PlusFluidComponent; + _p->prodml23__FluidComponentCatalog::SulfurFluidComponent = SulfurFluidComponent; } return _p; } -inline int soap_write_prodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog const*p) +inline int soap_write_prodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog ? "prodml22:FluidComponentCatalog" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog ? "prodml23:FluidComponentCatalog" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidComponentCatalog(struct soap *soap, const char *URL, prodml22__FluidComponentCatalog const*p) +inline int soap_PUT_prodml23__FluidComponentCatalog(struct soap *soap, const char *URL, prodml23__FluidComponentCatalog const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog ? "prodml22:FluidComponentCatalog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog ? "prodml23:FluidComponentCatalog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidComponentCatalog(struct soap *soap, const char *URL, prodml22__FluidComponentCatalog const*p) +inline int soap_PATCH_prodml23__FluidComponentCatalog(struct soap *soap, const char *URL, prodml23__FluidComponentCatalog const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog ? "prodml22:FluidComponentCatalog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog ? "prodml23:FluidComponentCatalog" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidComponentCatalog(struct soap *soap, const char *URL, prodml22__FluidComponentCatalog const*p) +inline int soap_POST_send_prodml23__FluidComponentCatalog(struct soap *soap, const char *URL, prodml23__FluidComponentCatalog const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog ? "prodml22:FluidComponentCatalog" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentCatalog", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog ? "prodml23:FluidComponentCatalog" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidComponentCatalog * SOAP_FMAC4 soap_get_prodml22__FluidComponentCatalog(struct soap*, prodml22__FluidComponentCatalog *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentCatalog * SOAP_FMAC4 soap_get_prodml23__FluidComponentCatalog(struct soap*, prodml23__FluidComponentCatalog *, const char*, const char*); -inline int soap_read_prodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog *p) +inline int soap_read_prodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidComponentCatalog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidComponentCatalog(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidComponentCatalog(struct soap *soap, const char *URL, prodml22__FluidComponentCatalog *p) +inline int soap_GET_prodml23__FluidComponentCatalog(struct soap *soap, const char *URL, prodml23__FluidComponentCatalog *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidComponentCatalog(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidComponentCatalog(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidComponentCatalog(struct soap *soap, prodml22__FluidComponentCatalog *p) +inline int soap_POST_recv_prodml23__FluidComponentCatalog(struct soap *soap, prodml23__FluidComponentCatalog *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidComponentCatalog(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidComponentCatalog(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityIdentifierStruct(struct soap*, const char*, int, const prodml22__FacilityIdentifierStruct *, const char*); -SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml22__FacilityIdentifierStruct(struct soap*, const char*, prodml22__FacilityIdentifierStruct *, const char*); -SOAP_FMAC1 prodml22__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prodml22__FacilityIdentifierStruct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityIdentifierStruct(struct soap*, const char*, int, const prodml23__FacilityIdentifierStruct *, const char*); +SOAP_FMAC3 prodml23__FacilityIdentifierStruct * SOAP_FMAC4 soap_in_prodml23__FacilityIdentifierStruct(struct soap*, const char*, prodml23__FacilityIdentifierStruct *, const char*); +SOAP_FMAC1 prodml23__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prodml23__FacilityIdentifierStruct(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FacilityIdentifierStruct * soap_new_prodml22__FacilityIdentifierStruct(struct soap *soap, int n = -1) +inline prodml23__FacilityIdentifierStruct * soap_new_prodml23__FacilityIdentifierStruct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FacilityIdentifierStruct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FacilityIdentifierStruct(soap, n, NULL, NULL, NULL); } -inline prodml22__FacilityIdentifierStruct * soap_new_req_prodml22__FacilityIdentifierStruct( +inline prodml23__FacilityIdentifierStruct * soap_new_req_prodml23__FacilityIdentifierStruct( struct soap *soap) { - prodml22__FacilityIdentifierStruct *_p = gsoap_eml2_3::soap_new_prodml22__FacilityIdentifierStruct(soap); + prodml23__FacilityIdentifierStruct *_p = gsoap_eml2_3::soap_new_prodml23__FacilityIdentifierStruct(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__FacilityIdentifierStruct * soap_new_set_prodml22__FacilityIdentifierStruct( +inline prodml23__FacilityIdentifierStruct * soap_new_set_prodml23__FacilityIdentifierStruct( struct soap *soap, - prodml22__ReportingFacility *kind, + prodml23__ReportingFacility *kind, std::string *siteKind, std::string *namingSystem, std::string *uidRef, char *__mixed) { - prodml22__FacilityIdentifierStruct *_p = gsoap_eml2_3::soap_new_prodml22__FacilityIdentifierStruct(soap); + prodml23__FacilityIdentifierStruct *_p = gsoap_eml2_3::soap_new_prodml23__FacilityIdentifierStruct(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityIdentifierStruct::kind = kind; - _p->prodml22__FacilityIdentifierStruct::siteKind = siteKind; - _p->prodml22__FacilityIdentifierStruct::namingSystem = namingSystem; - _p->prodml22__FacilityIdentifierStruct::uidRef = uidRef; - _p->prodml22__FacilityIdentifierStruct::__mixed = __mixed; + _p->prodml23__FacilityIdentifierStruct::kind = kind; + _p->prodml23__FacilityIdentifierStruct::siteKind = siteKind; + _p->prodml23__FacilityIdentifierStruct::namingSystem = namingSystem; + _p->prodml23__FacilityIdentifierStruct::uidRef = uidRef; + _p->prodml23__FacilityIdentifierStruct::__mixed = __mixed; } return _p; } -inline int soap_write_prodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct const*p) +inline int soap_write_prodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct ? "prodml22:FacilityIdentifierStruct" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct ? "prodml23:FacilityIdentifierStruct" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml22__FacilityIdentifierStruct const*p) +inline int soap_PUT_prodml23__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml23__FacilityIdentifierStruct const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct ? "prodml22:FacilityIdentifierStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct ? "prodml23:FacilityIdentifierStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml22__FacilityIdentifierStruct const*p) +inline int soap_PATCH_prodml23__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml23__FacilityIdentifierStruct const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct ? "prodml22:FacilityIdentifierStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct ? "prodml23:FacilityIdentifierStruct" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml22__FacilityIdentifierStruct const*p) +inline int soap_POST_send_prodml23__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml23__FacilityIdentifierStruct const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct ? "prodml22:FacilityIdentifierStruct" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifierStruct", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct ? "prodml23:FacilityIdentifierStruct" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilityIdentifierStruct * SOAP_FMAC4 soap_get_prodml22__FacilityIdentifierStruct(struct soap*, prodml22__FacilityIdentifierStruct *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityIdentifierStruct * SOAP_FMAC4 soap_get_prodml23__FacilityIdentifierStruct(struct soap*, prodml23__FacilityIdentifierStruct *, const char*, const char*); -inline int soap_read_prodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct *p) +inline int soap_read_prodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilityIdentifierStruct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilityIdentifierStruct(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml22__FacilityIdentifierStruct *p) +inline int soap_GET_prodml23__FacilityIdentifierStruct(struct soap *soap, const char *URL, prodml23__FacilityIdentifierStruct *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilityIdentifierStruct(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilityIdentifierStruct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilityIdentifierStruct(struct soap *soap, prodml22__FacilityIdentifierStruct *p) +inline int soap_POST_recv_prodml23__FacilityIdentifierStruct(struct soap *soap, prodml23__FacilityIdentifierStruct *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilityIdentifierStruct(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilityIdentifierStruct(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FacilityIdentifier(struct soap*, const char*, int, const prodml22__FacilityIdentifier *, const char*); -SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml22__FacilityIdentifier(struct soap*, const char*, prodml22__FacilityIdentifier *, const char*); -SOAP_FMAC1 prodml22__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml22__FacilityIdentifier(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FacilityIdentifier(struct soap*, const char*, int, const prodml23__FacilityIdentifier *, const char*); +SOAP_FMAC3 prodml23__FacilityIdentifier * SOAP_FMAC4 soap_in_prodml23__FacilityIdentifier(struct soap*, const char*, prodml23__FacilityIdentifier *, const char*); +SOAP_FMAC1 prodml23__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml23__FacilityIdentifier(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FacilityIdentifier * soap_new_prodml22__FacilityIdentifier(struct soap *soap, int n = -1) +inline prodml23__FacilityIdentifier * soap_new_prodml23__FacilityIdentifier(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FacilityIdentifier(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FacilityIdentifier(soap, n, NULL, NULL, NULL); } -inline prodml22__FacilityIdentifier * soap_new_req_prodml22__FacilityIdentifier( +inline prodml23__FacilityIdentifier * soap_new_req_prodml23__FacilityIdentifier( struct soap *soap, eml23__NameStruct *Name, const std::string& uid) { - prodml22__FacilityIdentifier *_p = gsoap_eml2_3::soap_new_prodml22__FacilityIdentifier(soap); + prodml23__FacilityIdentifier *_p = gsoap_eml2_3::soap_new_prodml23__FacilityIdentifier(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityIdentifier::Name = Name; - _p->prodml22__FacilityIdentifier::uid = uid; + _p->prodml23__FacilityIdentifier::Name = Name; + _p->prodml23__FacilityIdentifier::uid = uid; } return _p; } -inline prodml22__FacilityIdentifier * soap_new_set_prodml22__FacilityIdentifier( +inline prodml23__FacilityIdentifier * soap_new_set_prodml23__FacilityIdentifier( struct soap *soap, eml23__NameStruct *Name, - prodml22__FacilityIdentifierStruct *Installation, + prodml23__FacilityIdentifierStruct *Installation, std::string *Kind, - prodml22__FacilityIdentifierStruct *ContextFacility, - prodml22__ProductVolumeBusinessUnit *BusinessUnit, + prodml23__FacilityIdentifierStruct *ContextFacility, + prodml23__ProductVolumeBusinessUnit *BusinessUnit, eml23__DataObjectReference *Operator, - prodml22__GeographicContext *GeographicContext, + prodml23__GeographicContext *GeographicContext, const std::string& uid, char *__mixed) { - prodml22__FacilityIdentifier *_p = gsoap_eml2_3::soap_new_prodml22__FacilityIdentifier(soap); + prodml23__FacilityIdentifier *_p = gsoap_eml2_3::soap_new_prodml23__FacilityIdentifier(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FacilityIdentifier::Name = Name; - _p->prodml22__FacilityIdentifier::Installation = Installation; - _p->prodml22__FacilityIdentifier::Kind = Kind; - _p->prodml22__FacilityIdentifier::ContextFacility = ContextFacility; - _p->prodml22__FacilityIdentifier::BusinessUnit = BusinessUnit; - _p->prodml22__FacilityIdentifier::Operator = Operator; - _p->prodml22__FacilityIdentifier::GeographicContext = GeographicContext; - _p->prodml22__FacilityIdentifier::uid = uid; - _p->prodml22__FacilityIdentifier::__mixed = __mixed; + _p->prodml23__FacilityIdentifier::Name = Name; + _p->prodml23__FacilityIdentifier::Installation = Installation; + _p->prodml23__FacilityIdentifier::Kind = Kind; + _p->prodml23__FacilityIdentifier::ContextFacility = ContextFacility; + _p->prodml23__FacilityIdentifier::BusinessUnit = BusinessUnit; + _p->prodml23__FacilityIdentifier::Operator = Operator; + _p->prodml23__FacilityIdentifier::GeographicContext = GeographicContext; + _p->prodml23__FacilityIdentifier::uid = uid; + _p->prodml23__FacilityIdentifier::__mixed = __mixed; } return _p; } -inline int soap_write_prodml22__FacilityIdentifier(struct soap *soap, prodml22__FacilityIdentifier const*p) +inline int soap_write_prodml23__FacilityIdentifier(struct soap *soap, prodml23__FacilityIdentifier const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier ? "prodml22:FacilityIdentifier" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier ? "prodml23:FacilityIdentifier" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FacilityIdentifier(struct soap *soap, const char *URL, prodml22__FacilityIdentifier const*p) +inline int soap_PUT_prodml23__FacilityIdentifier(struct soap *soap, const char *URL, prodml23__FacilityIdentifier const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier ? "prodml22:FacilityIdentifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier ? "prodml23:FacilityIdentifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FacilityIdentifier(struct soap *soap, const char *URL, prodml22__FacilityIdentifier const*p) +inline int soap_PATCH_prodml23__FacilityIdentifier(struct soap *soap, const char *URL, prodml23__FacilityIdentifier const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier ? "prodml22:FacilityIdentifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier ? "prodml23:FacilityIdentifier" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FacilityIdentifier(struct soap *soap, const char *URL, prodml22__FacilityIdentifier const*p) +inline int soap_POST_send_prodml23__FacilityIdentifier(struct soap *soap, const char *URL, prodml23__FacilityIdentifier const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier ? "prodml22:FacilityIdentifier" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FacilityIdentifier", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier ? "prodml23:FacilityIdentifier" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FacilityIdentifier * SOAP_FMAC4 soap_get_prodml22__FacilityIdentifier(struct soap*, prodml22__FacilityIdentifier *, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityIdentifier * SOAP_FMAC4 soap_get_prodml23__FacilityIdentifier(struct soap*, prodml23__FacilityIdentifier *, const char*, const char*); -inline int soap_read_prodml22__FacilityIdentifier(struct soap *soap, prodml22__FacilityIdentifier *p) +inline int soap_read_prodml23__FacilityIdentifier(struct soap *soap, prodml23__FacilityIdentifier *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FacilityIdentifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FacilityIdentifier(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FacilityIdentifier(struct soap *soap, const char *URL, prodml22__FacilityIdentifier *p) +inline int soap_GET_prodml23__FacilityIdentifier(struct soap *soap, const char *URL, prodml23__FacilityIdentifier *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FacilityIdentifier(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FacilityIdentifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FacilityIdentifier(struct soap *soap, prodml22__FacilityIdentifier *p) +inline int soap_POST_recv_prodml23__FacilityIdentifier(struct soap *soap, prodml23__FacilityIdentifier *p) { - if (gsoap_eml2_3::soap_read_prodml22__FacilityIdentifier(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FacilityIdentifier(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifiedDateTime(struct soap*, const char*, int, const prodml22__EndpointQualifiedDateTime *, const char*); -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime * SOAP_FMAC4 soap_in_prodml22__EndpointQualifiedDateTime(struct soap*, const char*, prodml22__EndpointQualifiedDateTime *, const char*); -SOAP_FMAC1 prodml22__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQualifiedDateTime(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifiedDateTime(struct soap*, const char*, int, const prodml23__EndpointQualifiedDateTime *, const char*); +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime * SOAP_FMAC4 soap_in_prodml23__EndpointQualifiedDateTime(struct soap*, const char*, prodml23__EndpointQualifiedDateTime *, const char*); +SOAP_FMAC1 prodml23__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQualifiedDateTime(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__EndpointQualifiedDateTime * soap_new_prodml22__EndpointQualifiedDateTime(struct soap *soap, int n = -1) +inline prodml23__EndpointQualifiedDateTime * soap_new_prodml23__EndpointQualifiedDateTime(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__EndpointQualifiedDateTime(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__EndpointQualifiedDateTime(soap, n, NULL, NULL, NULL); } -inline prodml22__EndpointQualifiedDateTime * soap_new_req_prodml22__EndpointQualifiedDateTime( +inline prodml23__EndpointQualifiedDateTime * soap_new_req_prodml23__EndpointQualifiedDateTime( struct soap *soap) { - prodml22__EndpointQualifiedDateTime *_p = gsoap_eml2_3::soap_new_prodml22__EndpointQualifiedDateTime(soap); + prodml23__EndpointQualifiedDateTime *_p = gsoap_eml2_3::soap_new_prodml23__EndpointQualifiedDateTime(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__EndpointQualifiedDateTime * soap_new_set_prodml22__EndpointQualifiedDateTime( +inline prodml23__EndpointQualifiedDateTime * soap_new_set_prodml23__EndpointQualifiedDateTime( struct soap *soap, - prodml22__EndpointQualifier *endpoint) + prodml23__EndpointQualifier *endpoint) { - prodml22__EndpointQualifiedDateTime *_p = gsoap_eml2_3::soap_new_prodml22__EndpointQualifiedDateTime(soap); + prodml23__EndpointQualifiedDateTime *_p = gsoap_eml2_3::soap_new_prodml23__EndpointQualifiedDateTime(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__EndpointQualifiedDateTime::endpoint = endpoint; + _p->prodml23__EndpointQualifiedDateTime::endpoint = endpoint; } return _p; } -inline int soap_write_prodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime const*p) +inline int soap_write_prodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime ? "prodml22:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime ? "prodml23:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDateTime const*p) +inline int soap_PUT_prodml23__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDateTime const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime ? "prodml22:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime ? "prodml23:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDateTime const*p) +inline int soap_PATCH_prodml23__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDateTime const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime ? "prodml22:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime ? "prodml23:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDateTime const*p) +inline int soap_POST_send_prodml23__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDateTime const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime ? "prodml22:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDateTime", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime ? "prodml23:EndpointQualifiedDateTime" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime * SOAP_FMAC4 soap_get_prodml22__EndpointQualifiedDateTime(struct soap*, prodml22__EndpointQualifiedDateTime *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime * SOAP_FMAC4 soap_get_prodml23__EndpointQualifiedDateTime(struct soap*, prodml23__EndpointQualifiedDateTime *, const char*, const char*); -inline int soap_read_prodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime *p) +inline int soap_read_prodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__EndpointQualifiedDateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__EndpointQualifiedDateTime(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDateTime *p) +inline int soap_GET_prodml23__EndpointQualifiedDateTime(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDateTime *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__EndpointQualifiedDateTime(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__EndpointQualifiedDateTime(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__EndpointQualifiedDateTime(struct soap *soap, prodml22__EndpointQualifiedDateTime *p) +inline int soap_POST_recv_prodml23__EndpointQualifiedDateTime(struct soap *soap, prodml23__EndpointQualifiedDateTime *p) { - if (gsoap_eml2_3::soap_read_prodml22__EndpointQualifiedDateTime(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__EndpointQualifiedDateTime(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__EndpointQualifiedDate(struct soap*, const char*, int, const prodml22__EndpointQualifiedDate *, const char*); -SOAP_FMAC3 prodml22__EndpointQualifiedDate * SOAP_FMAC4 soap_in_prodml22__EndpointQualifiedDate(struct soap*, const char*, prodml22__EndpointQualifiedDate *, const char*); -SOAP_FMAC1 prodml22__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQualifiedDate(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__EndpointQualifiedDate(struct soap*, const char*, int, const prodml23__EndpointQualifiedDate *, const char*); +SOAP_FMAC3 prodml23__EndpointQualifiedDate * SOAP_FMAC4 soap_in_prodml23__EndpointQualifiedDate(struct soap*, const char*, prodml23__EndpointQualifiedDate *, const char*); +SOAP_FMAC1 prodml23__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQualifiedDate(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__EndpointQualifiedDate * soap_new_prodml22__EndpointQualifiedDate(struct soap *soap, int n = -1) +inline prodml23__EndpointQualifiedDate * soap_new_prodml23__EndpointQualifiedDate(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__EndpointQualifiedDate(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__EndpointQualifiedDate(soap, n, NULL, NULL, NULL); } -inline prodml22__EndpointQualifiedDate * soap_new_req_prodml22__EndpointQualifiedDate( +inline prodml23__EndpointQualifiedDate * soap_new_req_prodml23__EndpointQualifiedDate( struct soap *soap) { - prodml22__EndpointQualifiedDate *_p = gsoap_eml2_3::soap_new_prodml22__EndpointQualifiedDate(soap); + prodml23__EndpointQualifiedDate *_p = gsoap_eml2_3::soap_new_prodml23__EndpointQualifiedDate(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__EndpointQualifiedDate * soap_new_set_prodml22__EndpointQualifiedDate( +inline prodml23__EndpointQualifiedDate * soap_new_set_prodml23__EndpointQualifiedDate( struct soap *soap, - prodml22__EndpointQualifier *endpoint) + prodml23__EndpointQualifier *endpoint) { - prodml22__EndpointQualifiedDate *_p = gsoap_eml2_3::soap_new_prodml22__EndpointQualifiedDate(soap); + prodml23__EndpointQualifiedDate *_p = gsoap_eml2_3::soap_new_prodml23__EndpointQualifiedDate(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__EndpointQualifiedDate::endpoint = endpoint; + _p->prodml23__EndpointQualifiedDate::endpoint = endpoint; } return _p; } -inline int soap_write_prodml22__EndpointQualifiedDate(struct soap *soap, prodml22__EndpointQualifiedDate const*p) +inline int soap_write_prodml23__EndpointQualifiedDate(struct soap *soap, prodml23__EndpointQualifiedDate const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate ? "prodml22:EndpointQualifiedDate" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate ? "prodml23:EndpointQualifiedDate" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDate const*p) +inline int soap_PUT_prodml23__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDate const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate ? "prodml22:EndpointQualifiedDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate ? "prodml23:EndpointQualifiedDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDate const*p) +inline int soap_PATCH_prodml23__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDate const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate ? "prodml22:EndpointQualifiedDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate ? "prodml23:EndpointQualifiedDate" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDate const*p) +inline int soap_POST_send_prodml23__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDate const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate ? "prodml22:EndpointQualifiedDate" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:EndpointQualifiedDate", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate ? "prodml23:EndpointQualifiedDate" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__EndpointQualifiedDate * SOAP_FMAC4 soap_get_prodml22__EndpointQualifiedDate(struct soap*, prodml22__EndpointQualifiedDate *, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifiedDate * SOAP_FMAC4 soap_get_prodml23__EndpointQualifiedDate(struct soap*, prodml23__EndpointQualifiedDate *, const char*, const char*); -inline int soap_read_prodml22__EndpointQualifiedDate(struct soap *soap, prodml22__EndpointQualifiedDate *p) +inline int soap_read_prodml23__EndpointQualifiedDate(struct soap *soap, prodml23__EndpointQualifiedDate *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__EndpointQualifiedDate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__EndpointQualifiedDate(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml22__EndpointQualifiedDate *p) +inline int soap_GET_prodml23__EndpointQualifiedDate(struct soap *soap, const char *URL, prodml23__EndpointQualifiedDate *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__EndpointQualifiedDate(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__EndpointQualifiedDate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__EndpointQualifiedDate(struct soap *soap, prodml22__EndpointQualifiedDate *p) +inline int soap_POST_recv_prodml23__EndpointQualifiedDate(struct soap *soap, prodml23__EndpointQualifiedDate *p) { - if (gsoap_eml2_3::soap_read_prodml22__EndpointQualifiedDate(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__EndpointQualifiedDate(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DatedComment(struct soap*, const char*, int, const prodml22__DatedComment *, const char*); -SOAP_FMAC3 prodml22__DatedComment * SOAP_FMAC4 soap_in_prodml22__DatedComment(struct soap*, const char*, prodml22__DatedComment *, const char*); -SOAP_FMAC1 prodml22__DatedComment * SOAP_FMAC2 soap_instantiate_prodml22__DatedComment(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DatedComment(struct soap*, const char*, int, const prodml23__DatedComment *, const char*); +SOAP_FMAC3 prodml23__DatedComment * SOAP_FMAC4 soap_in_prodml23__DatedComment(struct soap*, const char*, prodml23__DatedComment *, const char*); +SOAP_FMAC1 prodml23__DatedComment * SOAP_FMAC2 soap_instantiate_prodml23__DatedComment(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DatedComment * soap_new_prodml22__DatedComment(struct soap *soap, int n = -1) +inline prodml23__DatedComment * soap_new_prodml23__DatedComment(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DatedComment(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DatedComment(soap, n, NULL, NULL, NULL); } -inline prodml22__DatedComment * soap_new_req_prodml22__DatedComment( +inline prodml23__DatedComment * soap_new_req_prodml23__DatedComment( struct soap *soap, const std::string& uid) { - prodml22__DatedComment *_p = gsoap_eml2_3::soap_new_prodml22__DatedComment(soap); + prodml23__DatedComment *_p = gsoap_eml2_3::soap_new_prodml23__DatedComment(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DatedComment::uid = uid; + _p->prodml23__DatedComment::uid = uid; } return _p; } -inline prodml22__DatedComment * soap_new_set_prodml22__DatedComment( +inline prodml23__DatedComment * soap_new_set_prodml23__DatedComment( struct soap *soap, std::string *Who, std::string *Role, @@ -134017,489 +133989,489 @@ inline prodml22__DatedComment * soap_new_set_prodml22__DatedComment( std::string *Remark, const std::string& uid) { - prodml22__DatedComment *_p = gsoap_eml2_3::soap_new_prodml22__DatedComment(soap); + prodml23__DatedComment *_p = gsoap_eml2_3::soap_new_prodml23__DatedComment(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DatedComment::Who = Who; - _p->prodml22__DatedComment::Role = Role; - _p->prodml22__DatedComment::StartTime = StartTime; - _p->prodml22__DatedComment::EndTime = EndTime; - _p->prodml22__DatedComment::Remark = Remark; - _p->prodml22__DatedComment::uid = uid; + _p->prodml23__DatedComment::Who = Who; + _p->prodml23__DatedComment::Role = Role; + _p->prodml23__DatedComment::StartTime = StartTime; + _p->prodml23__DatedComment::EndTime = EndTime; + _p->prodml23__DatedComment::Remark = Remark; + _p->prodml23__DatedComment::uid = uid; } return _p; } -inline int soap_write_prodml22__DatedComment(struct soap *soap, prodml22__DatedComment const*p) +inline int soap_write_prodml23__DatedComment(struct soap *soap, prodml23__DatedComment const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment ? "prodml22:DatedComment" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment ? "prodml23:DatedComment" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DatedComment(struct soap *soap, const char *URL, prodml22__DatedComment const*p) +inline int soap_PUT_prodml23__DatedComment(struct soap *soap, const char *URL, prodml23__DatedComment const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment ? "prodml22:DatedComment" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment ? "prodml23:DatedComment" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DatedComment(struct soap *soap, const char *URL, prodml22__DatedComment const*p) +inline int soap_PATCH_prodml23__DatedComment(struct soap *soap, const char *URL, prodml23__DatedComment const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment ? "prodml22:DatedComment" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment ? "prodml23:DatedComment" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DatedComment(struct soap *soap, const char *URL, prodml22__DatedComment const*p) +inline int soap_POST_send_prodml23__DatedComment(struct soap *soap, const char *URL, prodml23__DatedComment const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment ? "prodml22:DatedComment" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DatedComment", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment ? "prodml23:DatedComment" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DatedComment * SOAP_FMAC4 soap_get_prodml22__DatedComment(struct soap*, prodml22__DatedComment *, const char*, const char*); +SOAP_FMAC3 prodml23__DatedComment * SOAP_FMAC4 soap_get_prodml23__DatedComment(struct soap*, prodml23__DatedComment *, const char*, const char*); -inline int soap_read_prodml22__DatedComment(struct soap *soap, prodml22__DatedComment *p) +inline int soap_read_prodml23__DatedComment(struct soap *soap, prodml23__DatedComment *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DatedComment(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DatedComment(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DatedComment(struct soap *soap, const char *URL, prodml22__DatedComment *p) +inline int soap_GET_prodml23__DatedComment(struct soap *soap, const char *URL, prodml23__DatedComment *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DatedComment(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DatedComment(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DatedComment(struct soap *soap, prodml22__DatedComment *p) +inline int soap_POST_recv_prodml23__DatedComment(struct soap *soap, prodml23__DatedComment *p) { - if (gsoap_eml2_3::soap_read_prodml22__DatedComment(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DatedComment(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CalibrationParameter(struct soap*, const char*, int, const prodml22__CalibrationParameter *, const char*); -SOAP_FMAC3 prodml22__CalibrationParameter * SOAP_FMAC4 soap_in_prodml22__CalibrationParameter(struct soap*, const char*, prodml22__CalibrationParameter *, const char*); -SOAP_FMAC1 prodml22__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml22__CalibrationParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CalibrationParameter(struct soap*, const char*, int, const prodml23__CalibrationParameter *, const char*); +SOAP_FMAC3 prodml23__CalibrationParameter * SOAP_FMAC4 soap_in_prodml23__CalibrationParameter(struct soap*, const char*, prodml23__CalibrationParameter *, const char*); +SOAP_FMAC1 prodml23__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml23__CalibrationParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CalibrationParameter * soap_new_prodml22__CalibrationParameter(struct soap *soap, int n = -1) +inline prodml23__CalibrationParameter * soap_new_prodml23__CalibrationParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CalibrationParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CalibrationParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__CalibrationParameter * soap_new_req_prodml22__CalibrationParameter( +inline prodml23__CalibrationParameter * soap_new_req_prodml23__CalibrationParameter( struct soap *soap, const std::string& name) { - prodml22__CalibrationParameter *_p = gsoap_eml2_3::soap_new_prodml22__CalibrationParameter(soap); + prodml23__CalibrationParameter *_p = gsoap_eml2_3::soap_new_prodml23__CalibrationParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CalibrationParameter::name = name; + _p->prodml23__CalibrationParameter::name = name; } return _p; } -inline prodml22__CalibrationParameter * soap_new_set_prodml22__CalibrationParameter( +inline prodml23__CalibrationParameter * soap_new_set_prodml23__CalibrationParameter( struct soap *soap, std::string *uom, const std::string& name) { - prodml22__CalibrationParameter *_p = gsoap_eml2_3::soap_new_prodml22__CalibrationParameter(soap); + prodml23__CalibrationParameter *_p = gsoap_eml2_3::soap_new_prodml23__CalibrationParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CalibrationParameter::uom = uom; - _p->prodml22__CalibrationParameter::name = name; + _p->prodml23__CalibrationParameter::uom = uom; + _p->prodml23__CalibrationParameter::name = name; } return _p; } -inline int soap_write_prodml22__CalibrationParameter(struct soap *soap, prodml22__CalibrationParameter const*p) +inline int soap_write_prodml23__CalibrationParameter(struct soap *soap, prodml23__CalibrationParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter ? "prodml22:CalibrationParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter ? "prodml23:CalibrationParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CalibrationParameter(struct soap *soap, const char *URL, prodml22__CalibrationParameter const*p) +inline int soap_PUT_prodml23__CalibrationParameter(struct soap *soap, const char *URL, prodml23__CalibrationParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter ? "prodml22:CalibrationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter ? "prodml23:CalibrationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CalibrationParameter(struct soap *soap, const char *URL, prodml22__CalibrationParameter const*p) +inline int soap_PATCH_prodml23__CalibrationParameter(struct soap *soap, const char *URL, prodml23__CalibrationParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter ? "prodml22:CalibrationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter ? "prodml23:CalibrationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CalibrationParameter(struct soap *soap, const char *URL, prodml22__CalibrationParameter const*p) +inline int soap_POST_send_prodml23__CalibrationParameter(struct soap *soap, const char *URL, prodml23__CalibrationParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter ? "prodml22:CalibrationParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CalibrationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter ? "prodml23:CalibrationParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CalibrationParameter * SOAP_FMAC4 soap_get_prodml22__CalibrationParameter(struct soap*, prodml22__CalibrationParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__CalibrationParameter * SOAP_FMAC4 soap_get_prodml23__CalibrationParameter(struct soap*, prodml23__CalibrationParameter *, const char*, const char*); -inline int soap_read_prodml22__CalibrationParameter(struct soap *soap, prodml22__CalibrationParameter *p) +inline int soap_read_prodml23__CalibrationParameter(struct soap *soap, prodml23__CalibrationParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CalibrationParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CalibrationParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CalibrationParameter(struct soap *soap, const char *URL, prodml22__CalibrationParameter *p) +inline int soap_GET_prodml23__CalibrationParameter(struct soap *soap, const char *URL, prodml23__CalibrationParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CalibrationParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CalibrationParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CalibrationParameter(struct soap *soap, prodml22__CalibrationParameter *p) +inline int soap_POST_recv_prodml23__CalibrationParameter(struct soap *soap, prodml23__CalibrationParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__CalibrationParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CalibrationParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractProductQuantity(struct soap*, const char*, int, const prodml22__AbstractProductQuantity *, const char*); -SOAP_FMAC3 prodml22__AbstractProductQuantity * SOAP_FMAC4 soap_in_prodml22__AbstractProductQuantity(struct soap*, const char*, prodml22__AbstractProductQuantity *, const char*); -SOAP_FMAC1 prodml22__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodml22__AbstractProductQuantity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractProductQuantity(struct soap*, const char*, int, const prodml23__AbstractProductQuantity *, const char*); +SOAP_FMAC3 prodml23__AbstractProductQuantity * SOAP_FMAC4 soap_in_prodml23__AbstractProductQuantity(struct soap*, const char*, prodml23__AbstractProductQuantity *, const char*); +SOAP_FMAC1 prodml23__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodml23__AbstractProductQuantity(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractProductQuantity * soap_new_prodml22__AbstractProductQuantity(struct soap *soap, int n = -1) +inline prodml23__AbstractProductQuantity * soap_new_prodml23__AbstractProductQuantity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractProductQuantity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractProductQuantity(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractProductQuantity * soap_new_req_prodml22__AbstractProductQuantity( +inline prodml23__AbstractProductQuantity * soap_new_req_prodml23__AbstractProductQuantity( struct soap *soap, const std::string& uid) { - prodml22__AbstractProductQuantity *_p = gsoap_eml2_3::soap_new_prodml22__AbstractProductQuantity(soap); + prodml23__AbstractProductQuantity *_p = gsoap_eml2_3::soap_new_prodml23__AbstractProductQuantity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractProductQuantity::uid = uid; + _p->prodml23__AbstractProductQuantity::uid = uid; } return _p; } -inline prodml22__AbstractProductQuantity * soap_new_set_prodml22__AbstractProductQuantity( +inline prodml23__AbstractProductQuantity * soap_new_set_prodml23__AbstractProductQuantity( struct soap *soap, eml23__VolumeValue *Volume, eml23__MassMeasure *Mass, eml23__AmountOfSubstanceMeasure *Moles, const std::string& uid) { - prodml22__AbstractProductQuantity *_p = gsoap_eml2_3::soap_new_prodml22__AbstractProductQuantity(soap); + prodml23__AbstractProductQuantity *_p = gsoap_eml2_3::soap_new_prodml23__AbstractProductQuantity(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractProductQuantity::Volume = Volume; - _p->prodml22__AbstractProductQuantity::Mass = Mass; - _p->prodml22__AbstractProductQuantity::Moles = Moles; - _p->prodml22__AbstractProductQuantity::uid = uid; + _p->prodml23__AbstractProductQuantity::Volume = Volume; + _p->prodml23__AbstractProductQuantity::Mass = Mass; + _p->prodml23__AbstractProductQuantity::Moles = Moles; + _p->prodml23__AbstractProductQuantity::uid = uid; } return _p; } -inline int soap_write_prodml22__AbstractProductQuantity(struct soap *soap, prodml22__AbstractProductQuantity const*p) +inline int soap_write_prodml23__AbstractProductQuantity(struct soap *soap, prodml23__AbstractProductQuantity const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity ? "prodml22:AbstractProductQuantity" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity ? "prodml23:AbstractProductQuantity" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractProductQuantity(struct soap *soap, const char *URL, prodml22__AbstractProductQuantity const*p) +inline int soap_PUT_prodml23__AbstractProductQuantity(struct soap *soap, const char *URL, prodml23__AbstractProductQuantity const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity ? "prodml22:AbstractProductQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity ? "prodml23:AbstractProductQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractProductQuantity(struct soap *soap, const char *URL, prodml22__AbstractProductQuantity const*p) +inline int soap_PATCH_prodml23__AbstractProductQuantity(struct soap *soap, const char *URL, prodml23__AbstractProductQuantity const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity ? "prodml22:AbstractProductQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity ? "prodml23:AbstractProductQuantity" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractProductQuantity(struct soap *soap, const char *URL, prodml22__AbstractProductQuantity const*p) +inline int soap_POST_send_prodml23__AbstractProductQuantity(struct soap *soap, const char *URL, prodml23__AbstractProductQuantity const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity ? "prodml22:AbstractProductQuantity" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractProductQuantity", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity ? "prodml23:AbstractProductQuantity" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractProductQuantity * SOAP_FMAC4 soap_get_prodml22__AbstractProductQuantity(struct soap*, prodml22__AbstractProductQuantity *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractProductQuantity * SOAP_FMAC4 soap_get_prodml23__AbstractProductQuantity(struct soap*, prodml23__AbstractProductQuantity *, const char*, const char*); -inline int soap_read_prodml22__AbstractProductQuantity(struct soap *soap, prodml22__AbstractProductQuantity *p) +inline int soap_read_prodml23__AbstractProductQuantity(struct soap *soap, prodml23__AbstractProductQuantity *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractProductQuantity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractProductQuantity(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractProductQuantity(struct soap *soap, const char *URL, prodml22__AbstractProductQuantity *p) +inline int soap_GET_prodml23__AbstractProductQuantity(struct soap *soap, const char *URL, prodml23__AbstractProductQuantity *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractProductQuantity(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractProductQuantity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractProductQuantity(struct soap *soap, prodml22__AbstractProductQuantity *p) +inline int soap_POST_recv_prodml23__AbstractProductQuantity(struct soap *soap, prodml23__AbstractProductQuantity *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractProductQuantity(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractProductQuantity(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractFluidComponent(struct soap*, const char*, int, const prodml22__AbstractFluidComponent *, const char*); -SOAP_FMAC3 prodml22__AbstractFluidComponent * SOAP_FMAC4 soap_in_prodml22__AbstractFluidComponent(struct soap*, const char*, prodml22__AbstractFluidComponent *, const char*); -SOAP_FMAC1 prodml22__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__AbstractFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractFluidComponent(struct soap*, const char*, int, const prodml23__AbstractFluidComponent *, const char*); +SOAP_FMAC3 prodml23__AbstractFluidComponent * SOAP_FMAC4 soap_in_prodml23__AbstractFluidComponent(struct soap*, const char*, prodml23__AbstractFluidComponent *, const char*); +SOAP_FMAC1 prodml23__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__AbstractFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractFluidComponent * soap_new_prodml22__AbstractFluidComponent(struct soap *soap, int n = -1) +inline prodml23__AbstractFluidComponent * soap_new_prodml23__AbstractFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractFluidComponent(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractFluidComponent * soap_new_req_prodml22__AbstractFluidComponent( +inline prodml23__AbstractFluidComponent * soap_new_req_prodml23__AbstractFluidComponent( struct soap *soap, const std::string& uid) { - prodml22__AbstractFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__AbstractFluidComponent(soap); + prodml23__AbstractFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__AbstractFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFluidComponent::uid = uid; + _p->prodml23__AbstractFluidComponent::uid = uid; } return _p; } -inline prodml22__AbstractFluidComponent * soap_new_set_prodml22__AbstractFluidComponent( +inline prodml23__AbstractFluidComponent * soap_new_set_prodml23__AbstractFluidComponent( struct soap *soap, eml23__MassPerMassMeasure *MassFraction, eml23__MassPerVolumeMeasureExt *VolumeConcentration, eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction, - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits, + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits, const std::string& uid) { - prodml22__AbstractFluidComponent *_p = gsoap_eml2_3::soap_new_prodml22__AbstractFluidComponent(soap); + prodml23__AbstractFluidComponent *_p = gsoap_eml2_3::soap_new_prodml23__AbstractFluidComponent(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractFluidComponent::MassFraction = MassFraction; - _p->prodml22__AbstractFluidComponent::VolumeConcentration = VolumeConcentration; - _p->prodml22__AbstractFluidComponent::MoleFraction = MoleFraction; - _p->prodml22__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits; - _p->prodml22__AbstractFluidComponent::uid = uid; + _p->prodml23__AbstractFluidComponent::MassFraction = MassFraction; + _p->prodml23__AbstractFluidComponent::VolumeConcentration = VolumeConcentration; + _p->prodml23__AbstractFluidComponent::MoleFraction = MoleFraction; + _p->prodml23__AbstractFluidComponent::ConcentrationRelativeToDetectableLimits = ConcentrationRelativeToDetectableLimits; + _p->prodml23__AbstractFluidComponent::uid = uid; } return _p; } -inline int soap_write_prodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent const*p) +inline int soap_write_prodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent ? "prodml22:AbstractFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent ? "prodml23:AbstractFluidComponent" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractFluidComponent(struct soap *soap, const char *URL, prodml22__AbstractFluidComponent const*p) +inline int soap_PUT_prodml23__AbstractFluidComponent(struct soap *soap, const char *URL, prodml23__AbstractFluidComponent const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent ? "prodml22:AbstractFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent ? "prodml23:AbstractFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractFluidComponent(struct soap *soap, const char *URL, prodml22__AbstractFluidComponent const*p) +inline int soap_PATCH_prodml23__AbstractFluidComponent(struct soap *soap, const char *URL, prodml23__AbstractFluidComponent const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent ? "prodml22:AbstractFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent ? "prodml23:AbstractFluidComponent" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractFluidComponent(struct soap *soap, const char *URL, prodml22__AbstractFluidComponent const*p) +inline int soap_POST_send_prodml23__AbstractFluidComponent(struct soap *soap, const char *URL, prodml23__AbstractFluidComponent const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent ? "prodml22:AbstractFluidComponent" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractFluidComponent", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent ? "prodml23:AbstractFluidComponent" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractFluidComponent * SOAP_FMAC4 soap_get_prodml22__AbstractFluidComponent(struct soap*, prodml22__AbstractFluidComponent *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractFluidComponent * SOAP_FMAC4 soap_get_prodml23__AbstractFluidComponent(struct soap*, prodml23__AbstractFluidComponent *, const char*, const char*); -inline int soap_read_prodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent *p) +inline int soap_read_prodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractFluidComponent(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractFluidComponent(struct soap *soap, const char *URL, prodml22__AbstractFluidComponent *p) +inline int soap_GET_prodml23__AbstractFluidComponent(struct soap *soap, const char *URL, prodml23__AbstractFluidComponent *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractFluidComponent(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractFluidComponent(struct soap *soap, prodml22__AbstractFluidComponent *p) +inline int soap_POST_recv_prodml23__AbstractFluidComponent(struct soap *soap, prodml23__AbstractFluidComponent *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractFluidComponent(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractFluidComponent(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractDateTimeClass(struct soap*, const char*, int, const prodml22__AbstractDateTimeClass *, const char*); -SOAP_FMAC3 prodml22__AbstractDateTimeClass * SOAP_FMAC4 soap_in_prodml22__AbstractDateTimeClass(struct soap*, const char*, prodml22__AbstractDateTimeClass *, const char*); -SOAP_FMAC1 prodml22__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml22__AbstractDateTimeClass(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractDateTimeClass(struct soap*, const char*, int, const prodml23__AbstractDateTimeClass *, const char*); +SOAP_FMAC3 prodml23__AbstractDateTimeClass * SOAP_FMAC4 soap_in_prodml23__AbstractDateTimeClass(struct soap*, const char*, prodml23__AbstractDateTimeClass *, const char*); +SOAP_FMAC1 prodml23__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml23__AbstractDateTimeClass(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractDateTimeClass * soap_new_prodml22__AbstractDateTimeClass(struct soap *soap, int n = -1) +inline prodml23__AbstractDateTimeClass * soap_new_prodml23__AbstractDateTimeClass(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractDateTimeClass(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractDateTimeClass(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractDateTimeClass * soap_new_req_prodml22__AbstractDateTimeClass( +inline prodml23__AbstractDateTimeClass * soap_new_req_prodml23__AbstractDateTimeClass( struct soap *soap) { - prodml22__AbstractDateTimeClass *_p = gsoap_eml2_3::soap_new_prodml22__AbstractDateTimeClass(soap); + prodml23__AbstractDateTimeClass *_p = gsoap_eml2_3::soap_new_prodml23__AbstractDateTimeClass(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractDateTimeClass * soap_new_set_prodml22__AbstractDateTimeClass( +inline prodml23__AbstractDateTimeClass * soap_new_set_prodml23__AbstractDateTimeClass( struct soap *soap, struct tm *DTime, std::string *Date, std::string *Month) { - prodml22__AbstractDateTimeClass *_p = gsoap_eml2_3::soap_new_prodml22__AbstractDateTimeClass(soap); + prodml23__AbstractDateTimeClass *_p = gsoap_eml2_3::soap_new_prodml23__AbstractDateTimeClass(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractDateTimeClass::DTime = DTime; - _p->prodml22__AbstractDateTimeClass::Date = Date; - _p->prodml22__AbstractDateTimeClass::Month = Month; + _p->prodml23__AbstractDateTimeClass::DTime = DTime; + _p->prodml23__AbstractDateTimeClass::Date = Date; + _p->prodml23__AbstractDateTimeClass::Month = Month; } return _p; } -inline int soap_write_prodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass const*p) +inline int soap_write_prodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass ? "prodml22:AbstractDateTimeClass" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass ? "prodml23:AbstractDateTimeClass" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml22__AbstractDateTimeClass const*p) +inline int soap_PUT_prodml23__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml23__AbstractDateTimeClass const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass ? "prodml22:AbstractDateTimeClass" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass ? "prodml23:AbstractDateTimeClass" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml22__AbstractDateTimeClass const*p) +inline int soap_PATCH_prodml23__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml23__AbstractDateTimeClass const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass ? "prodml22:AbstractDateTimeClass" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass ? "prodml23:AbstractDateTimeClass" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml22__AbstractDateTimeClass const*p) +inline int soap_POST_send_prodml23__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml23__AbstractDateTimeClass const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass ? "prodml22:AbstractDateTimeClass" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractDateTimeClass", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass ? "prodml23:AbstractDateTimeClass" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractDateTimeClass * SOAP_FMAC4 soap_get_prodml22__AbstractDateTimeClass(struct soap*, prodml22__AbstractDateTimeClass *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractDateTimeClass * SOAP_FMAC4 soap_get_prodml23__AbstractDateTimeClass(struct soap*, prodml23__AbstractDateTimeClass *, const char*, const char*); -inline int soap_read_prodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass *p) +inline int soap_read_prodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractDateTimeClass(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractDateTimeClass(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml22__AbstractDateTimeClass *p) +inline int soap_GET_prodml23__AbstractDateTimeClass(struct soap *soap, const char *URL, prodml23__AbstractDateTimeClass *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractDateTimeClass(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractDateTimeClass(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractDateTimeClass(struct soap *soap, prodml22__AbstractDateTimeClass *p) +inline int soap_POST_recv_prodml23__AbstractDateTimeClass(struct soap *soap, prodml23__AbstractDateTimeClass *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractDateTimeClass(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractDateTimeClass(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Standing_Undersaturated(struct soap*, const char*, int, const prodml22__Standing_Undersaturated *, const char*); -SOAP_FMAC3 prodml22__Standing_Undersaturated * SOAP_FMAC4 soap_in_prodml22__Standing_Undersaturated(struct soap*, const char*, prodml22__Standing_Undersaturated *, const char*); -SOAP_FMAC1 prodml22__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__Standing_Undersaturated(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Standing_Undersaturated(struct soap*, const char*, int, const prodml23__Standing_Undersaturated *, const char*); +SOAP_FMAC3 prodml23__Standing_Undersaturated * SOAP_FMAC4 soap_in_prodml23__Standing_Undersaturated(struct soap*, const char*, prodml23__Standing_Undersaturated *, const char*); +SOAP_FMAC1 prodml23__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__Standing_Undersaturated(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Standing_Undersaturated * soap_new_prodml22__Standing_Undersaturated(struct soap *soap, int n = -1) +inline prodml23__Standing_Undersaturated * soap_new_prodml23__Standing_Undersaturated(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Standing_Undersaturated(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Standing_Undersaturated(soap, n, NULL, NULL, NULL); } -inline prodml22__Standing_Undersaturated * soap_new_req_prodml22__Standing_Undersaturated( +inline prodml23__Standing_Undersaturated * soap_new_req_prodml23__Standing_Undersaturated( struct soap *soap) { - prodml22__Standing_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__Standing_Undersaturated(soap); + prodml23__Standing_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__Standing_Undersaturated(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__Standing_Undersaturated * soap_new_set_prodml22__Standing_Undersaturated( +inline prodml23__Standing_Undersaturated * soap_new_set_prodml23__Standing_Undersaturated( struct soap *soap, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio, @@ -134508,683 +134480,683 @@ inline prodml22__Standing_Undersaturated * soap_new_set_prodml22__Standing_Under eml23__PressureMeasure *BubblePointPressure__1, eml23__PressureMeasure *Pressure__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__Standing_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__Standing_Undersaturated(soap); + prodml23__Standing_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__Standing_Undersaturated(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Standing_Undersaturated::ReservoirTemperature = ReservoirTemperature; - _p->prodml22__Standing_Undersaturated::SolutionGasOilRatio = SolutionGasOilRatio; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__Standing_Undersaturated::ReservoirTemperature = ReservoirTemperature; + _p->prodml23__Standing_Undersaturated::SolutionGasOilRatio = SolutionGasOilRatio; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__Standing_Undersaturated(struct soap *soap, prodml22__Standing_Undersaturated const*p) +inline int soap_write_prodml23__Standing_Undersaturated(struct soap *soap, prodml23__Standing_Undersaturated const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated ? "prodml22:Standing-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated ? "prodml23:Standing-Undersaturated" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Standing_Undersaturated(struct soap *soap, const char *URL, prodml22__Standing_Undersaturated const*p) +inline int soap_PUT_prodml23__Standing_Undersaturated(struct soap *soap, const char *URL, prodml23__Standing_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated ? "prodml22:Standing-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated ? "prodml23:Standing-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Standing_Undersaturated(struct soap *soap, const char *URL, prodml22__Standing_Undersaturated const*p) +inline int soap_PATCH_prodml23__Standing_Undersaturated(struct soap *soap, const char *URL, prodml23__Standing_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated ? "prodml22:Standing-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated ? "prodml23:Standing-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Standing_Undersaturated(struct soap *soap, const char *URL, prodml22__Standing_Undersaturated const*p) +inline int soap_POST_send_prodml23__Standing_Undersaturated(struct soap *soap, const char *URL, prodml23__Standing_Undersaturated const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated ? "prodml22:Standing-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated ? "prodml23:Standing-Undersaturated" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Standing_Undersaturated * SOAP_FMAC4 soap_get_prodml22__Standing_Undersaturated(struct soap*, prodml22__Standing_Undersaturated *, const char*, const char*); +SOAP_FMAC3 prodml23__Standing_Undersaturated * SOAP_FMAC4 soap_get_prodml23__Standing_Undersaturated(struct soap*, prodml23__Standing_Undersaturated *, const char*, const char*); -inline int soap_read_prodml22__Standing_Undersaturated(struct soap *soap, prodml22__Standing_Undersaturated *p) +inline int soap_read_prodml23__Standing_Undersaturated(struct soap *soap, prodml23__Standing_Undersaturated *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Standing_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Standing_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Standing_Undersaturated(struct soap *soap, const char *URL, prodml22__Standing_Undersaturated *p) +inline int soap_GET_prodml23__Standing_Undersaturated(struct soap *soap, const char *URL, prodml23__Standing_Undersaturated *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Standing_Undersaturated(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Standing_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Standing_Undersaturated(struct soap *soap, prodml22__Standing_Undersaturated *p) +inline int soap_POST_recv_prodml23__Standing_Undersaturated(struct soap *soap, prodml23__Standing_Undersaturated *p) { - if (gsoap_eml2_3::soap_read_prodml22__Standing_Undersaturated(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Standing_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Standing_Dead(struct soap*, const char*, int, const prodml22__Standing_Dead *, const char*); -SOAP_FMAC3 prodml22__Standing_Dead * SOAP_FMAC4 soap_in_prodml22__Standing_Dead(struct soap*, const char*, prodml22__Standing_Dead *, const char*); -SOAP_FMAC1 prodml22__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml22__Standing_Dead(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Standing_Dead(struct soap*, const char*, int, const prodml23__Standing_Dead *, const char*); +SOAP_FMAC3 prodml23__Standing_Dead * SOAP_FMAC4 soap_in_prodml23__Standing_Dead(struct soap*, const char*, prodml23__Standing_Dead *, const char*); +SOAP_FMAC1 prodml23__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml23__Standing_Dead(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Standing_Dead * soap_new_prodml22__Standing_Dead(struct soap *soap, int n = -1) +inline prodml23__Standing_Dead * soap_new_prodml23__Standing_Dead(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Standing_Dead(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Standing_Dead(soap, n, NULL, NULL, NULL); } -inline prodml22__Standing_Dead * soap_new_req_prodml22__Standing_Dead( +inline prodml23__Standing_Dead * soap_new_req_prodml23__Standing_Dead( struct soap *soap) { - prodml22__Standing_Dead *_p = gsoap_eml2_3::soap_new_prodml22__Standing_Dead(soap); + prodml23__Standing_Dead *_p = gsoap_eml2_3::soap_new_prodml23__Standing_Dead(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__Standing_Dead * soap_new_set_prodml22__Standing_Dead( +inline prodml23__Standing_Dead * soap_new_set_prodml23__Standing_Dead( struct soap *soap, eml23__APIGravityMeasure *OilGravityAtStockTank, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__Standing_Dead *_p = gsoap_eml2_3::soap_new_prodml22__Standing_Dead(soap); + prodml23__Standing_Dead *_p = gsoap_eml2_3::soap_new_prodml23__Standing_Dead(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Standing_Dead::OilGravityAtStockTank = OilGravityAtStockTank; - _p->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__Standing_Dead::OilGravityAtStockTank = OilGravityAtStockTank; + _p->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__Standing_Dead(struct soap *soap, prodml22__Standing_Dead const*p) +inline int soap_write_prodml23__Standing_Dead(struct soap *soap, prodml23__Standing_Dead const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead ? "prodml22:Standing-Dead" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead ? "prodml23:Standing-Dead" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Standing_Dead(struct soap *soap, const char *URL, prodml22__Standing_Dead const*p) +inline int soap_PUT_prodml23__Standing_Dead(struct soap *soap, const char *URL, prodml23__Standing_Dead const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead ? "prodml22:Standing-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead ? "prodml23:Standing-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Standing_Dead(struct soap *soap, const char *URL, prodml22__Standing_Dead const*p) +inline int soap_PATCH_prodml23__Standing_Dead(struct soap *soap, const char *URL, prodml23__Standing_Dead const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead ? "prodml22:Standing-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead ? "prodml23:Standing-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Standing_Dead(struct soap *soap, const char *URL, prodml22__Standing_Dead const*p) +inline int soap_POST_send_prodml23__Standing_Dead(struct soap *soap, const char *URL, prodml23__Standing_Dead const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead ? "prodml22:Standing-Dead" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead ? "prodml23:Standing-Dead" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Standing_Dead * SOAP_FMAC4 soap_get_prodml22__Standing_Dead(struct soap*, prodml22__Standing_Dead *, const char*, const char*); +SOAP_FMAC3 prodml23__Standing_Dead * SOAP_FMAC4 soap_get_prodml23__Standing_Dead(struct soap*, prodml23__Standing_Dead *, const char*, const char*); -inline int soap_read_prodml22__Standing_Dead(struct soap *soap, prodml22__Standing_Dead *p) +inline int soap_read_prodml23__Standing_Dead(struct soap *soap, prodml23__Standing_Dead *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Standing_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Standing_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Standing_Dead(struct soap *soap, const char *URL, prodml22__Standing_Dead *p) +inline int soap_GET_prodml23__Standing_Dead(struct soap *soap, const char *URL, prodml23__Standing_Dead *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Standing_Dead(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Standing_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Standing_Dead(struct soap *soap, prodml22__Standing_Dead *p) +inline int soap_POST_recv_prodml23__Standing_Dead(struct soap *soap, prodml23__Standing_Dead *p) { - if (gsoap_eml2_3::soap_read_prodml22__Standing_Dead(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Standing_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Standing_BubblePoint(struct soap*, const char*, int, const prodml22__Standing_BubblePoint *, const char*); -SOAP_FMAC3 prodml22__Standing_BubblePoint * SOAP_FMAC4 soap_in_prodml22__Standing_BubblePoint(struct soap*, const char*, prodml22__Standing_BubblePoint *, const char*); -SOAP_FMAC1 prodml22__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__Standing_BubblePoint(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Standing_BubblePoint(struct soap*, const char*, int, const prodml23__Standing_BubblePoint *, const char*); +SOAP_FMAC3 prodml23__Standing_BubblePoint * SOAP_FMAC4 soap_in_prodml23__Standing_BubblePoint(struct soap*, const char*, prodml23__Standing_BubblePoint *, const char*); +SOAP_FMAC1 prodml23__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__Standing_BubblePoint(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Standing_BubblePoint * soap_new_prodml22__Standing_BubblePoint(struct soap *soap, int n = -1) +inline prodml23__Standing_BubblePoint * soap_new_prodml23__Standing_BubblePoint(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Standing_BubblePoint(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Standing_BubblePoint(soap, n, NULL, NULL, NULL); } -inline prodml22__Standing_BubblePoint * soap_new_req_prodml22__Standing_BubblePoint( +inline prodml23__Standing_BubblePoint * soap_new_req_prodml23__Standing_BubblePoint( struct soap *soap) { - prodml22__Standing_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__Standing_BubblePoint(soap); + prodml23__Standing_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__Standing_BubblePoint(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__Standing_BubblePoint * soap_new_set_prodml22__Standing_BubblePoint( +inline prodml23__Standing_BubblePoint * soap_new_set_prodml23__Standing_BubblePoint( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__Standing_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__Standing_BubblePoint(soap); + prodml23__Standing_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__Standing_BubblePoint(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__Standing_BubblePoint(struct soap *soap, prodml22__Standing_BubblePoint const*p) +inline int soap_write_prodml23__Standing_BubblePoint(struct soap *soap, prodml23__Standing_BubblePoint const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint ? "prodml22:Standing-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint ? "prodml23:Standing-BubblePoint" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Standing_BubblePoint(struct soap *soap, const char *URL, prodml22__Standing_BubblePoint const*p) +inline int soap_PUT_prodml23__Standing_BubblePoint(struct soap *soap, const char *URL, prodml23__Standing_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint ? "prodml22:Standing-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint ? "prodml23:Standing-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Standing_BubblePoint(struct soap *soap, const char *URL, prodml22__Standing_BubblePoint const*p) +inline int soap_PATCH_prodml23__Standing_BubblePoint(struct soap *soap, const char *URL, prodml23__Standing_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint ? "prodml22:Standing-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint ? "prodml23:Standing-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Standing_BubblePoint(struct soap *soap, const char *URL, prodml22__Standing_BubblePoint const*p) +inline int soap_POST_send_prodml23__Standing_BubblePoint(struct soap *soap, const char *URL, prodml23__Standing_BubblePoint const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint ? "prodml22:Standing-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Standing-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint ? "prodml23:Standing-BubblePoint" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Standing_BubblePoint * SOAP_FMAC4 soap_get_prodml22__Standing_BubblePoint(struct soap*, prodml22__Standing_BubblePoint *, const char*, const char*); +SOAP_FMAC3 prodml23__Standing_BubblePoint * SOAP_FMAC4 soap_get_prodml23__Standing_BubblePoint(struct soap*, prodml23__Standing_BubblePoint *, const char*, const char*); -inline int soap_read_prodml22__Standing_BubblePoint(struct soap *soap, prodml22__Standing_BubblePoint *p) +inline int soap_read_prodml23__Standing_BubblePoint(struct soap *soap, prodml23__Standing_BubblePoint *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Standing_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Standing_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Standing_BubblePoint(struct soap *soap, const char *URL, prodml22__Standing_BubblePoint *p) +inline int soap_GET_prodml23__Standing_BubblePoint(struct soap *soap, const char *URL, prodml23__Standing_BubblePoint *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Standing_BubblePoint(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Standing_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Standing_BubblePoint(struct soap *soap, prodml22__Standing_BubblePoint *p) +inline int soap_POST_recv_prodml23__Standing_BubblePoint(struct soap *soap, prodml23__Standing_BubblePoint *p) { - if (gsoap_eml2_3::soap_read_prodml22__Standing_BubblePoint(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Standing_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Srk_USCOREEOS(struct soap*, const char*, int, const prodml22__Srk_USCOREEOS *, const char*); -SOAP_FMAC3 prodml22__Srk_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__Srk_USCOREEOS(struct soap*, const char*, prodml22__Srk_USCOREEOS *, const char*); -SOAP_FMAC1 prodml22__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__Srk_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Srk_USCOREEOS(struct soap*, const char*, int, const prodml23__Srk_USCOREEOS *, const char*); +SOAP_FMAC3 prodml23__Srk_USCOREEOS * SOAP_FMAC4 soap_in_prodml23__Srk_USCOREEOS(struct soap*, const char*, prodml23__Srk_USCOREEOS *, const char*); +SOAP_FMAC1 prodml23__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__Srk_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Srk_USCOREEOS * soap_new_prodml22__Srk_USCOREEOS(struct soap *soap, int n = -1) +inline prodml23__Srk_USCOREEOS * soap_new_prodml23__Srk_USCOREEOS(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Srk_USCOREEOS(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Srk_USCOREEOS(soap, n, NULL, NULL, NULL); } -inline prodml22__Srk_USCOREEOS * soap_new_req_prodml22__Srk_USCOREEOS( +inline prodml23__Srk_USCOREEOS * soap_new_req_prodml23__Srk_USCOREEOS( struct soap *soap) { - prodml22__Srk_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml22__Srk_USCOREEOS(soap); + prodml23__Srk_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml23__Srk_USCOREEOS(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__Srk_USCOREEOS * soap_new_set_prodml22__Srk_USCOREEOS( +inline prodml23__Srk_USCOREEOS * soap_new_set_prodml23__Srk_USCOREEOS( struct soap *soap, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__Srk_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml22__Srk_USCOREEOS(soap); + prodml23__Srk_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml23__Srk_USCOREEOS(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__Srk_USCOREEOS(struct soap *soap, prodml22__Srk_USCOREEOS const*p) +inline int soap_write_prodml23__Srk_USCOREEOS(struct soap *soap, prodml23__Srk_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS ? "prodml22:Srk_EOS" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS ? "prodml23:Srk_EOS" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml22__Srk_USCOREEOS const*p) +inline int soap_PUT_prodml23__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml23__Srk_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS ? "prodml22:Srk_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS ? "prodml23:Srk_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml22__Srk_USCOREEOS const*p) +inline int soap_PATCH_prodml23__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml23__Srk_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS ? "prodml22:Srk_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS ? "prodml23:Srk_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml22__Srk_USCOREEOS const*p) +inline int soap_POST_send_prodml23__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml23__Srk_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS ? "prodml22:Srk_EOS" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Srk_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS ? "prodml23:Srk_EOS" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Srk_USCOREEOS * SOAP_FMAC4 soap_get_prodml22__Srk_USCOREEOS(struct soap*, prodml22__Srk_USCOREEOS *, const char*, const char*); +SOAP_FMAC3 prodml23__Srk_USCOREEOS * SOAP_FMAC4 soap_get_prodml23__Srk_USCOREEOS(struct soap*, prodml23__Srk_USCOREEOS *, const char*, const char*); -inline int soap_read_prodml22__Srk_USCOREEOS(struct soap *soap, prodml22__Srk_USCOREEOS *p) +inline int soap_read_prodml23__Srk_USCOREEOS(struct soap *soap, prodml23__Srk_USCOREEOS *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Srk_USCOREEOS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Srk_USCOREEOS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml22__Srk_USCOREEOS *p) +inline int soap_GET_prodml23__Srk_USCOREEOS(struct soap *soap, const char *URL, prodml23__Srk_USCOREEOS *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Srk_USCOREEOS(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Srk_USCOREEOS(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Srk_USCOREEOS(struct soap *soap, prodml22__Srk_USCOREEOS *p) +inline int soap_POST_recv_prodml23__Srk_USCOREEOS(struct soap *soap, prodml23__Srk_USCOREEOS *p) { - if (gsoap_eml2_3::soap_read_prodml22__Srk_USCOREEOS(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Srk_USCOREEOS(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ReferenceSeparatorStage(struct soap*, const char*, int, const prodml22__ReferenceSeparatorStage *, const char*); -SOAP_FMAC3 prodml22__ReferenceSeparatorStage * SOAP_FMAC4 soap_in_prodml22__ReferenceSeparatorStage(struct soap*, const char*, prodml22__ReferenceSeparatorStage *, const char*); -SOAP_FMAC1 prodml22__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodml22__ReferenceSeparatorStage(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ReferenceSeparatorStage(struct soap*, const char*, int, const prodml23__ReferenceSeparatorStage *, const char*); +SOAP_FMAC3 prodml23__ReferenceSeparatorStage * SOAP_FMAC4 soap_in_prodml23__ReferenceSeparatorStage(struct soap*, const char*, prodml23__ReferenceSeparatorStage *, const char*); +SOAP_FMAC1 prodml23__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodml23__ReferenceSeparatorStage(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ReferenceSeparatorStage * soap_new_prodml22__ReferenceSeparatorStage(struct soap *soap, int n = -1) +inline prodml23__ReferenceSeparatorStage * soap_new_prodml23__ReferenceSeparatorStage(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ReferenceSeparatorStage(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ReferenceSeparatorStage(soap, n, NULL, NULL, NULL); } -inline prodml22__ReferenceSeparatorStage * soap_new_req_prodml22__ReferenceSeparatorStage( +inline prodml23__ReferenceSeparatorStage * soap_new_req_prodml23__ReferenceSeparatorStage( struct soap *soap) { - prodml22__ReferenceSeparatorStage *_p = gsoap_eml2_3::soap_new_prodml22__ReferenceSeparatorStage(soap); + prodml23__ReferenceSeparatorStage *_p = gsoap_eml2_3::soap_new_prodml23__ReferenceSeparatorStage(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__ReferenceSeparatorStage * soap_new_set_prodml22__ReferenceSeparatorStage( +inline prodml23__ReferenceSeparatorStage * soap_new_set_prodml23__ReferenceSeparatorStage( struct soap *soap, eml23__AbstractPressureValue *SeparatorPressure, eml23__ThermodynamicTemperatureMeasureExt *SeparatorTemperature, LONG64 *SeparatorNumber) { - prodml22__ReferenceSeparatorStage *_p = gsoap_eml2_3::soap_new_prodml22__ReferenceSeparatorStage(soap); + prodml23__ReferenceSeparatorStage *_p = gsoap_eml2_3::soap_new_prodml23__ReferenceSeparatorStage(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ReferenceSeparatorStage::SeparatorPressure = SeparatorPressure; - _p->prodml22__ReferenceSeparatorStage::SeparatorTemperature = SeparatorTemperature; - _p->prodml22__ReferenceSeparatorStage::SeparatorNumber = SeparatorNumber; + _p->prodml23__ReferenceSeparatorStage::SeparatorPressure = SeparatorPressure; + _p->prodml23__ReferenceSeparatorStage::SeparatorTemperature = SeparatorTemperature; + _p->prodml23__ReferenceSeparatorStage::SeparatorNumber = SeparatorNumber; } return _p; } -inline int soap_write_prodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage const*p) +inline int soap_write_prodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage ? "prodml22:ReferenceSeparatorStage" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage ? "prodml23:ReferenceSeparatorStage" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml22__ReferenceSeparatorStage const*p) +inline int soap_PUT_prodml23__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml23__ReferenceSeparatorStage const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage ? "prodml22:ReferenceSeparatorStage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage ? "prodml23:ReferenceSeparatorStage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml22__ReferenceSeparatorStage const*p) +inline int soap_PATCH_prodml23__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml23__ReferenceSeparatorStage const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage ? "prodml22:ReferenceSeparatorStage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage ? "prodml23:ReferenceSeparatorStage" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml22__ReferenceSeparatorStage const*p) +inline int soap_POST_send_prodml23__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml23__ReferenceSeparatorStage const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage ? "prodml22:ReferenceSeparatorStage" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ReferenceSeparatorStage", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage ? "prodml23:ReferenceSeparatorStage" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ReferenceSeparatorStage * SOAP_FMAC4 soap_get_prodml22__ReferenceSeparatorStage(struct soap*, prodml22__ReferenceSeparatorStage *, const char*, const char*); +SOAP_FMAC3 prodml23__ReferenceSeparatorStage * SOAP_FMAC4 soap_get_prodml23__ReferenceSeparatorStage(struct soap*, prodml23__ReferenceSeparatorStage *, const char*, const char*); -inline int soap_read_prodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage *p) +inline int soap_read_prodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ReferenceSeparatorStage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ReferenceSeparatorStage(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml22__ReferenceSeparatorStage *p) +inline int soap_GET_prodml23__ReferenceSeparatorStage(struct soap *soap, const char *URL, prodml23__ReferenceSeparatorStage *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ReferenceSeparatorStage(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ReferenceSeparatorStage(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ReferenceSeparatorStage(struct soap *soap, prodml22__ReferenceSeparatorStage *p) +inline int soap_POST_recv_prodml23__ReferenceSeparatorStage(struct soap *soap, prodml23__ReferenceSeparatorStage *p) { - if (gsoap_eml2_3::soap_read_prodml22__ReferenceSeparatorStage(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ReferenceSeparatorStage(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameterSet(struct soap*, const char*, int, const prodml22__PvtModelParameterSet *, const char*); -SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml22__PvtModelParameterSet(struct soap*, const char*, prodml22__PvtModelParameterSet *, const char*); -SOAP_FMAC1 prodml22__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__PvtModelParameterSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameterSet(struct soap*, const char*, int, const prodml23__PvtModelParameterSet *, const char*); +SOAP_FMAC3 prodml23__PvtModelParameterSet * SOAP_FMAC4 soap_in_prodml23__PvtModelParameterSet(struct soap*, const char*, prodml23__PvtModelParameterSet *, const char*); +SOAP_FMAC1 prodml23__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__PvtModelParameterSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PvtModelParameterSet * soap_new_prodml22__PvtModelParameterSet(struct soap *soap, int n = -1) +inline prodml23__PvtModelParameterSet * soap_new_prodml23__PvtModelParameterSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PvtModelParameterSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PvtModelParameterSet(soap, n, NULL, NULL, NULL); } -inline prodml22__PvtModelParameterSet * soap_new_req_prodml22__PvtModelParameterSet( +inline prodml23__PvtModelParameterSet * soap_new_req_prodml23__PvtModelParameterSet( struct soap *soap, - const std::vector & Coefficient) + const std::vector & Coefficient) { - prodml22__PvtModelParameterSet *_p = gsoap_eml2_3::soap_new_prodml22__PvtModelParameterSet(soap); + prodml23__PvtModelParameterSet *_p = gsoap_eml2_3::soap_new_prodml23__PvtModelParameterSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PvtModelParameterSet::Coefficient = Coefficient; + _p->prodml23__PvtModelParameterSet::Coefficient = Coefficient; } return _p; } -inline prodml22__PvtModelParameterSet * soap_new_set_prodml22__PvtModelParameterSet( +inline prodml23__PvtModelParameterSet * soap_new_set_prodml23__PvtModelParameterSet( struct soap *soap, - const std::vector & Coefficient) + const std::vector & Coefficient) { - prodml22__PvtModelParameterSet *_p = gsoap_eml2_3::soap_new_prodml22__PvtModelParameterSet(soap); + prodml23__PvtModelParameterSet *_p = gsoap_eml2_3::soap_new_prodml23__PvtModelParameterSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PvtModelParameterSet::Coefficient = Coefficient; + _p->prodml23__PvtModelParameterSet::Coefficient = Coefficient; } return _p; } -inline int soap_write_prodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet const*p) +inline int soap_write_prodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet ? "prodml22:PvtModelParameterSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet ? "prodml23:PvtModelParameterSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PvtModelParameterSet(struct soap *soap, const char *URL, prodml22__PvtModelParameterSet const*p) +inline int soap_PUT_prodml23__PvtModelParameterSet(struct soap *soap, const char *URL, prodml23__PvtModelParameterSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet ? "prodml22:PvtModelParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet ? "prodml23:PvtModelParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PvtModelParameterSet(struct soap *soap, const char *URL, prodml22__PvtModelParameterSet const*p) +inline int soap_PATCH_prodml23__PvtModelParameterSet(struct soap *soap, const char *URL, prodml23__PvtModelParameterSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet ? "prodml22:PvtModelParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet ? "prodml23:PvtModelParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PvtModelParameterSet(struct soap *soap, const char *URL, prodml22__PvtModelParameterSet const*p) +inline int soap_POST_send_prodml23__PvtModelParameterSet(struct soap *soap, const char *URL, prodml23__PvtModelParameterSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet ? "prodml22:PvtModelParameterSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet ? "prodml23:PvtModelParameterSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PvtModelParameterSet * SOAP_FMAC4 soap_get_prodml22__PvtModelParameterSet(struct soap*, prodml22__PvtModelParameterSet *, const char*, const char*); +SOAP_FMAC3 prodml23__PvtModelParameterSet * SOAP_FMAC4 soap_get_prodml23__PvtModelParameterSet(struct soap*, prodml23__PvtModelParameterSet *, const char*, const char*); -inline int soap_read_prodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet *p) +inline int soap_read_prodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PvtModelParameterSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PvtModelParameterSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PvtModelParameterSet(struct soap *soap, const char *URL, prodml22__PvtModelParameterSet *p) +inline int soap_GET_prodml23__PvtModelParameterSet(struct soap *soap, const char *URL, prodml23__PvtModelParameterSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PvtModelParameterSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PvtModelParameterSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PvtModelParameterSet(struct soap *soap, prodml22__PvtModelParameterSet *p) +inline int soap_POST_recv_prodml23__PvtModelParameterSet(struct soap *soap, prodml23__PvtModelParameterSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__PvtModelParameterSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PvtModelParameterSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PvtModelParameter(struct soap*, const char*, int, const prodml22__PvtModelParameter *, const char*); -SOAP_FMAC3 prodml22__PvtModelParameter * SOAP_FMAC4 soap_in_prodml22__PvtModelParameter(struct soap*, const char*, prodml22__PvtModelParameter *, const char*); -SOAP_FMAC1 prodml22__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__PvtModelParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PvtModelParameter(struct soap*, const char*, int, const prodml23__PvtModelParameter *, const char*); +SOAP_FMAC3 prodml23__PvtModelParameter * SOAP_FMAC4 soap_in_prodml23__PvtModelParameter(struct soap*, const char*, prodml23__PvtModelParameter *, const char*); +SOAP_FMAC1 prodml23__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml23__PvtModelParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PvtModelParameter * soap_new_prodml22__PvtModelParameter(struct soap *soap, int n = -1) +inline prodml23__PvtModelParameter * soap_new_prodml23__PvtModelParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PvtModelParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PvtModelParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__PvtModelParameter * soap_new_req_prodml22__PvtModelParameter( +inline prodml23__PvtModelParameter * soap_new_req_prodml23__PvtModelParameter( struct soap *soap, double __item, const std::string& kind) { - prodml22__PvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml22__PvtModelParameter(soap); + prodml23__PvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml23__PvtModelParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PvtModelParameter::__item = __item; - _p->prodml22__PvtModelParameter::kind = kind; + _p->prodml23__PvtModelParameter::__item = __item; + _p->prodml23__PvtModelParameter::kind = kind; } return _p; } -inline prodml22__PvtModelParameter * soap_new_set_prodml22__PvtModelParameter( +inline prodml23__PvtModelParameter * soap_new_set_prodml23__PvtModelParameter( struct soap *soap, double __item, const std::string& kind, std::string *name) { - prodml22__PvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml22__PvtModelParameter(soap); + prodml23__PvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml23__PvtModelParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PvtModelParameter::__item = __item; - _p->prodml22__PvtModelParameter::kind = kind; - _p->prodml22__PvtModelParameter::name = name; + _p->prodml23__PvtModelParameter::__item = __item; + _p->prodml23__PvtModelParameter::kind = kind; + _p->prodml23__PvtModelParameter::name = name; } return _p; } -inline int soap_write_prodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter const*p) +inline int soap_write_prodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter ? "prodml22:PvtModelParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter ? "prodml23:PvtModelParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PvtModelParameter(struct soap *soap, const char *URL, prodml22__PvtModelParameter const*p) +inline int soap_PUT_prodml23__PvtModelParameter(struct soap *soap, const char *URL, prodml23__PvtModelParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter ? "prodml22:PvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter ? "prodml23:PvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PvtModelParameter(struct soap *soap, const char *URL, prodml22__PvtModelParameter const*p) +inline int soap_PATCH_prodml23__PvtModelParameter(struct soap *soap, const char *URL, prodml23__PvtModelParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter ? "prodml22:PvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter ? "prodml23:PvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PvtModelParameter(struct soap *soap, const char *URL, prodml22__PvtModelParameter const*p) +inline int soap_POST_send_prodml23__PvtModelParameter(struct soap *soap, const char *URL, prodml23__PvtModelParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter ? "prodml22:PvtModelParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter ? "prodml23:PvtModelParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PvtModelParameter * SOAP_FMAC4 soap_get_prodml22__PvtModelParameter(struct soap*, prodml22__PvtModelParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__PvtModelParameter * SOAP_FMAC4 soap_get_prodml23__PvtModelParameter(struct soap*, prodml23__PvtModelParameter *, const char*, const char*); -inline int soap_read_prodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter *p) +inline int soap_read_prodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PvtModelParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PvtModelParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PvtModelParameter(struct soap *soap, const char *URL, prodml22__PvtModelParameter *p) +inline int soap_GET_prodml23__PvtModelParameter(struct soap *soap, const char *URL, prodml23__PvtModelParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PvtModelParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PvtModelParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PvtModelParameter(struct soap *soap, prodml22__PvtModelParameter *p) +inline int soap_POST_recv_prodml23__PvtModelParameter(struct soap *soap, prodml23__PvtModelParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__PvtModelParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PvtModelParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PrsvParameter(struct soap*, const char*, int, const prodml22__PrsvParameter *, const char*); -SOAP_FMAC3 prodml22__PrsvParameter * SOAP_FMAC4 soap_in_prodml22__PrsvParameter(struct soap*, const char*, prodml22__PrsvParameter *, const char*); -SOAP_FMAC1 prodml22__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml22__PrsvParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PrsvParameter(struct soap*, const char*, int, const prodml23__PrsvParameter *, const char*); +SOAP_FMAC3 prodml23__PrsvParameter * SOAP_FMAC4 soap_in_prodml23__PrsvParameter(struct soap*, const char*, prodml23__PrsvParameter *, const char*); +SOAP_FMAC1 prodml23__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml23__PrsvParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PrsvParameter * soap_new_prodml22__PrsvParameter(struct soap *soap, int n = -1) +inline prodml23__PrsvParameter * soap_new_prodml23__PrsvParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PrsvParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PrsvParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__PrsvParameter * soap_new_req_prodml22__PrsvParameter( +inline prodml23__PrsvParameter * soap_new_req_prodml23__PrsvParameter( struct soap *soap, double a1, double a2, @@ -135193,20 +135165,20 @@ inline prodml22__PrsvParameter * soap_new_req_prodml22__PrsvParameter( double c2, const std::string& fluidComponentReference) { - prodml22__PrsvParameter *_p = gsoap_eml2_3::soap_new_prodml22__PrsvParameter(soap); + prodml23__PrsvParameter *_p = gsoap_eml2_3::soap_new_prodml23__PrsvParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PrsvParameter::a1 = a1; - _p->prodml22__PrsvParameter::a2 = a2; - _p->prodml22__PrsvParameter::b1 = b1; - _p->prodml22__PrsvParameter::b2 = b2; - _p->prodml22__PrsvParameter::c2 = c2; - _p->prodml22__PrsvParameter::fluidComponentReference = fluidComponentReference; + _p->prodml23__PrsvParameter::a1 = a1; + _p->prodml23__PrsvParameter::a2 = a2; + _p->prodml23__PrsvParameter::b1 = b1; + _p->prodml23__PrsvParameter::b2 = b2; + _p->prodml23__PrsvParameter::c2 = c2; + _p->prodml23__PrsvParameter::fluidComponentReference = fluidComponentReference; } return _p; } -inline prodml22__PrsvParameter * soap_new_set_prodml22__PrsvParameter( +inline prodml23__PrsvParameter * soap_new_set_prodml23__PrsvParameter( struct soap *soap, double a1, double a2, @@ -135215,602 +135187,602 @@ inline prodml22__PrsvParameter * soap_new_set_prodml22__PrsvParameter( double c2, const std::string& fluidComponentReference) { - prodml22__PrsvParameter *_p = gsoap_eml2_3::soap_new_prodml22__PrsvParameter(soap); + prodml23__PrsvParameter *_p = gsoap_eml2_3::soap_new_prodml23__PrsvParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PrsvParameter::a1 = a1; - _p->prodml22__PrsvParameter::a2 = a2; - _p->prodml22__PrsvParameter::b1 = b1; - _p->prodml22__PrsvParameter::b2 = b2; - _p->prodml22__PrsvParameter::c2 = c2; - _p->prodml22__PrsvParameter::fluidComponentReference = fluidComponentReference; + _p->prodml23__PrsvParameter::a1 = a1; + _p->prodml23__PrsvParameter::a2 = a2; + _p->prodml23__PrsvParameter::b1 = b1; + _p->prodml23__PrsvParameter::b2 = b2; + _p->prodml23__PrsvParameter::c2 = c2; + _p->prodml23__PrsvParameter::fluidComponentReference = fluidComponentReference; } return _p; } -inline int soap_write_prodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter const*p) +inline int soap_write_prodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter ? "prodml22:PrsvParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter ? "prodml23:PrsvParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PrsvParameter(struct soap *soap, const char *URL, prodml22__PrsvParameter const*p) +inline int soap_PUT_prodml23__PrsvParameter(struct soap *soap, const char *URL, prodml23__PrsvParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter ? "prodml22:PrsvParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter ? "prodml23:PrsvParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PrsvParameter(struct soap *soap, const char *URL, prodml22__PrsvParameter const*p) +inline int soap_PATCH_prodml23__PrsvParameter(struct soap *soap, const char *URL, prodml23__PrsvParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter ? "prodml22:PrsvParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter ? "prodml23:PrsvParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PrsvParameter(struct soap *soap, const char *URL, prodml22__PrsvParameter const*p) +inline int soap_POST_send_prodml23__PrsvParameter(struct soap *soap, const char *URL, prodml23__PrsvParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter ? "prodml22:PrsvParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PrsvParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter ? "prodml23:PrsvParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PrsvParameter * SOAP_FMAC4 soap_get_prodml22__PrsvParameter(struct soap*, prodml22__PrsvParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__PrsvParameter * SOAP_FMAC4 soap_get_prodml23__PrsvParameter(struct soap*, prodml23__PrsvParameter *, const char*, const char*); -inline int soap_read_prodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter *p) +inline int soap_read_prodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PrsvParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PrsvParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PrsvParameter(struct soap *soap, const char *URL, prodml22__PrsvParameter *p) +inline int soap_GET_prodml23__PrsvParameter(struct soap *soap, const char *URL, prodml23__PrsvParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PrsvParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PrsvParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PrsvParameter(struct soap *soap, prodml22__PrsvParameter *p) +inline int soap_POST_recv_prodml23__PrsvParameter(struct soap *soap, prodml23__PrsvParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__PrsvParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PrsvParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PetroskyFarshad_Undersaturated(struct soap*, const char*, int, const prodml22__PetroskyFarshad_Undersaturated *, const char*); -SOAP_FMAC3 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_in_prodml22__PetroskyFarshad_Undersaturated(struct soap*, const char*, prodml22__PetroskyFarshad_Undersaturated *, const char*); -SOAP_FMAC1 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PetroskyFarshad_Undersaturated(struct soap*, const char*, int, const prodml23__PetroskyFarshad_Undersaturated *, const char*); +SOAP_FMAC3 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_in_prodml23__PetroskyFarshad_Undersaturated(struct soap*, const char*, prodml23__PetroskyFarshad_Undersaturated *, const char*); +SOAP_FMAC1 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PetroskyFarshad_Undersaturated * soap_new_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, int n = -1) +inline prodml23__PetroskyFarshad_Undersaturated * soap_new_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(soap, n, NULL, NULL, NULL); } -inline prodml22__PetroskyFarshad_Undersaturated * soap_new_req_prodml22__PetroskyFarshad_Undersaturated( +inline prodml23__PetroskyFarshad_Undersaturated * soap_new_req_prodml23__PetroskyFarshad_Undersaturated( struct soap *soap) { - prodml22__PetroskyFarshad_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__PetroskyFarshad_Undersaturated(soap); + prodml23__PetroskyFarshad_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__PetroskyFarshad_Undersaturated(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__PetroskyFarshad_Undersaturated * soap_new_set_prodml22__PetroskyFarshad_Undersaturated( +inline prodml23__PetroskyFarshad_Undersaturated * soap_new_set_prodml23__PetroskyFarshad_Undersaturated( struct soap *soap, eml23__DynamicViscosityMeasure *UndersaturatedOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__PressureMeasure *BubblePointPressure__1, eml23__PressureMeasure *Pressure__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__PetroskyFarshad_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__PetroskyFarshad_Undersaturated(soap); + prodml23__PetroskyFarshad_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__PetroskyFarshad_Undersaturated(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, prodml22__PetroskyFarshad_Undersaturated const*p) +inline int soap_write_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, prodml23__PetroskyFarshad_Undersaturated const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated ? "prodml22:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated ? "prodml23:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Undersaturated const*p) +inline int soap_PUT_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated ? "prodml22:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated ? "prodml23:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Undersaturated const*p) +inline int soap_PATCH_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated ? "prodml22:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated ? "prodml23:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Undersaturated const*p) +inline int soap_POST_send_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Undersaturated const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated ? "prodml22:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated ? "prodml23:PetroskyFarshad-Undersaturated" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_get_prodml22__PetroskyFarshad_Undersaturated(struct soap*, prodml22__PetroskyFarshad_Undersaturated *, const char*, const char*); +SOAP_FMAC3 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC4 soap_get_prodml23__PetroskyFarshad_Undersaturated(struct soap*, prodml23__PetroskyFarshad_Undersaturated *, const char*, const char*); -inline int soap_read_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, prodml22__PetroskyFarshad_Undersaturated *p) +inline int soap_read_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, prodml23__PetroskyFarshad_Undersaturated *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PetroskyFarshad_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PetroskyFarshad_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Undersaturated *p) +inline int soap_GET_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Undersaturated *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PetroskyFarshad_Undersaturated(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PetroskyFarshad_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PetroskyFarshad_Undersaturated(struct soap *soap, prodml22__PetroskyFarshad_Undersaturated *p) +inline int soap_POST_recv_prodml23__PetroskyFarshad_Undersaturated(struct soap *soap, prodml23__PetroskyFarshad_Undersaturated *p) { - if (gsoap_eml2_3::soap_read_prodml22__PetroskyFarshad_Undersaturated(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PetroskyFarshad_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PetroskyFarshad_Dead(struct soap*, const char*, int, const prodml22__PetroskyFarshad_Dead *, const char*); -SOAP_FMAC3 prodml22__PetroskyFarshad_Dead * SOAP_FMAC4 soap_in_prodml22__PetroskyFarshad_Dead(struct soap*, const char*, prodml22__PetroskyFarshad_Dead *, const char*); -SOAP_FMAC1 prodml22__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_Dead(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PetroskyFarshad_Dead(struct soap*, const char*, int, const prodml23__PetroskyFarshad_Dead *, const char*); +SOAP_FMAC3 prodml23__PetroskyFarshad_Dead * SOAP_FMAC4 soap_in_prodml23__PetroskyFarshad_Dead(struct soap*, const char*, prodml23__PetroskyFarshad_Dead *, const char*); +SOAP_FMAC1 prodml23__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_Dead(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PetroskyFarshad_Dead * soap_new_prodml22__PetroskyFarshad_Dead(struct soap *soap, int n = -1) +inline prodml23__PetroskyFarshad_Dead * soap_new_prodml23__PetroskyFarshad_Dead(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PetroskyFarshad_Dead(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PetroskyFarshad_Dead(soap, n, NULL, NULL, NULL); } -inline prodml22__PetroskyFarshad_Dead * soap_new_req_prodml22__PetroskyFarshad_Dead( +inline prodml23__PetroskyFarshad_Dead * soap_new_req_prodml23__PetroskyFarshad_Dead( struct soap *soap) { - prodml22__PetroskyFarshad_Dead *_p = gsoap_eml2_3::soap_new_prodml22__PetroskyFarshad_Dead(soap); + prodml23__PetroskyFarshad_Dead *_p = gsoap_eml2_3::soap_new_prodml23__PetroskyFarshad_Dead(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__PetroskyFarshad_Dead * soap_new_set_prodml22__PetroskyFarshad_Dead( +inline prodml23__PetroskyFarshad_Dead * soap_new_set_prodml23__PetroskyFarshad_Dead( struct soap *soap, eml23__APIGravityMeasure *OilGravityAtStockTank, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__PetroskyFarshad_Dead *_p = gsoap_eml2_3::soap_new_prodml22__PetroskyFarshad_Dead(soap); + prodml23__PetroskyFarshad_Dead *_p = gsoap_eml2_3::soap_new_prodml23__PetroskyFarshad_Dead(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__PetroskyFarshad_Dead::OilGravityAtStockTank = OilGravityAtStockTank; - _p->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__PetroskyFarshad_Dead::OilGravityAtStockTank = OilGravityAtStockTank; + _p->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__PetroskyFarshad_Dead(struct soap *soap, prodml22__PetroskyFarshad_Dead const*p) +inline int soap_write_prodml23__PetroskyFarshad_Dead(struct soap *soap, prodml23__PetroskyFarshad_Dead const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead ? "prodml22:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead ? "prodml23:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Dead const*p) +inline int soap_PUT_prodml23__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Dead const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead ? "prodml22:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead ? "prodml23:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Dead const*p) +inline int soap_PATCH_prodml23__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Dead const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead ? "prodml22:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead ? "prodml23:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Dead const*p) +inline int soap_POST_send_prodml23__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Dead const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead ? "prodml22:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead ? "prodml23:PetroskyFarshad-Dead" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PetroskyFarshad_Dead * SOAP_FMAC4 soap_get_prodml22__PetroskyFarshad_Dead(struct soap*, prodml22__PetroskyFarshad_Dead *, const char*, const char*); +SOAP_FMAC3 prodml23__PetroskyFarshad_Dead * SOAP_FMAC4 soap_get_prodml23__PetroskyFarshad_Dead(struct soap*, prodml23__PetroskyFarshad_Dead *, const char*, const char*); -inline int soap_read_prodml22__PetroskyFarshad_Dead(struct soap *soap, prodml22__PetroskyFarshad_Dead *p) +inline int soap_read_prodml23__PetroskyFarshad_Dead(struct soap *soap, prodml23__PetroskyFarshad_Dead *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PetroskyFarshad_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PetroskyFarshad_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_Dead *p) +inline int soap_GET_prodml23__PetroskyFarshad_Dead(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_Dead *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PetroskyFarshad_Dead(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PetroskyFarshad_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PetroskyFarshad_Dead(struct soap *soap, prodml22__PetroskyFarshad_Dead *p) +inline int soap_POST_recv_prodml23__PetroskyFarshad_Dead(struct soap *soap, prodml23__PetroskyFarshad_Dead *p) { - if (gsoap_eml2_3::soap_read_prodml22__PetroskyFarshad_Dead(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PetroskyFarshad_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PetroskyFarshad_BubblePoint(struct soap*, const char*, int, const prodml22__PetroskyFarshad_BubblePoint *, const char*); -SOAP_FMAC3 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_in_prodml22__PetroskyFarshad_BubblePoint(struct soap*, const char*, prodml22__PetroskyFarshad_BubblePoint *, const char*); -SOAP_FMAC1 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PetroskyFarshad_BubblePoint(struct soap*, const char*, int, const prodml23__PetroskyFarshad_BubblePoint *, const char*); +SOAP_FMAC3 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_in_prodml23__PetroskyFarshad_BubblePoint(struct soap*, const char*, prodml23__PetroskyFarshad_BubblePoint *, const char*); +SOAP_FMAC1 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PetroskyFarshad_BubblePoint * soap_new_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, int n = -1) +inline prodml23__PetroskyFarshad_BubblePoint * soap_new_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(soap, n, NULL, NULL, NULL); } -inline prodml22__PetroskyFarshad_BubblePoint * soap_new_req_prodml22__PetroskyFarshad_BubblePoint( +inline prodml23__PetroskyFarshad_BubblePoint * soap_new_req_prodml23__PetroskyFarshad_BubblePoint( struct soap *soap) { - prodml22__PetroskyFarshad_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__PetroskyFarshad_BubblePoint(soap); + prodml23__PetroskyFarshad_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__PetroskyFarshad_BubblePoint(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__PetroskyFarshad_BubblePoint * soap_new_set_prodml22__PetroskyFarshad_BubblePoint( +inline prodml23__PetroskyFarshad_BubblePoint * soap_new_set_prodml23__PetroskyFarshad_BubblePoint( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__PetroskyFarshad_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__PetroskyFarshad_BubblePoint(soap); + prodml23__PetroskyFarshad_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__PetroskyFarshad_BubblePoint(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, prodml22__PetroskyFarshad_BubblePoint const*p) +inline int soap_write_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, prodml23__PetroskyFarshad_BubblePoint const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint ? "prodml22:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint ? "prodml23:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_BubblePoint const*p) +inline int soap_PUT_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint ? "prodml22:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint ? "prodml23:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_BubblePoint const*p) +inline int soap_PATCH_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint ? "prodml22:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint ? "prodml23:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_BubblePoint const*p) +inline int soap_POST_send_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_BubblePoint const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint ? "prodml22:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PetroskyFarshad-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint ? "prodml23:PetroskyFarshad-BubblePoint" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_get_prodml22__PetroskyFarshad_BubblePoint(struct soap*, prodml22__PetroskyFarshad_BubblePoint *, const char*, const char*); +SOAP_FMAC3 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC4 soap_get_prodml23__PetroskyFarshad_BubblePoint(struct soap*, prodml23__PetroskyFarshad_BubblePoint *, const char*, const char*); -inline int soap_read_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, prodml22__PetroskyFarshad_BubblePoint *p) +inline int soap_read_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, prodml23__PetroskyFarshad_BubblePoint *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PetroskyFarshad_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PetroskyFarshad_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml22__PetroskyFarshad_BubblePoint *p) +inline int soap_GET_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, const char *URL, prodml23__PetroskyFarshad_BubblePoint *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PetroskyFarshad_BubblePoint(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PetroskyFarshad_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PetroskyFarshad_BubblePoint(struct soap *soap, prodml22__PetroskyFarshad_BubblePoint *p) +inline int soap_POST_recv_prodml23__PetroskyFarshad_BubblePoint(struct soap *soap, prodml23__PetroskyFarshad_BubblePoint *p) { - if (gsoap_eml2_3::soap_read_prodml22__PetroskyFarshad_BubblePoint(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PetroskyFarshad_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PengRobinson78_USCOREEOS(struct soap*, const char*, int, const prodml22__PengRobinson78_USCOREEOS *, const char*); -SOAP_FMAC3 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__PengRobinson78_USCOREEOS(struct soap*, const char*, prodml22__PengRobinson78_USCOREEOS *, const char*); -SOAP_FMAC1 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__PengRobinson78_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PengRobinson78_USCOREEOS(struct soap*, const char*, int, const prodml23__PengRobinson78_USCOREEOS *, const char*); +SOAP_FMAC3 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_in_prodml23__PengRobinson78_USCOREEOS(struct soap*, const char*, prodml23__PengRobinson78_USCOREEOS *, const char*); +SOAP_FMAC1 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__PengRobinson78_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PengRobinson78_USCOREEOS * soap_new_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, int n = -1) +inline prodml23__PengRobinson78_USCOREEOS * soap_new_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PengRobinson78_USCOREEOS(soap, n, NULL, NULL, NULL); } -inline prodml22__PengRobinson78_USCOREEOS * soap_new_req_prodml22__PengRobinson78_USCOREEOS( +inline prodml23__PengRobinson78_USCOREEOS * soap_new_req_prodml23__PengRobinson78_USCOREEOS( struct soap *soap) { - prodml22__PengRobinson78_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml22__PengRobinson78_USCOREEOS(soap); + prodml23__PengRobinson78_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml23__PengRobinson78_USCOREEOS(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__PengRobinson78_USCOREEOS * soap_new_set_prodml22__PengRobinson78_USCOREEOS( +inline prodml23__PengRobinson78_USCOREEOS * soap_new_set_prodml23__PengRobinson78_USCOREEOS( struct soap *soap, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__PengRobinson78_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml22__PengRobinson78_USCOREEOS(soap); + prodml23__PengRobinson78_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml23__PengRobinson78_USCOREEOS(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, prodml22__PengRobinson78_USCOREEOS const*p) +inline int soap_write_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, prodml23__PengRobinson78_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS ? "prodml22:PengRobinson78_EOS" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS ? "prodml23:PengRobinson78_EOS" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson78_USCOREEOS const*p) +inline int soap_PUT_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson78_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS ? "prodml22:PengRobinson78_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS ? "prodml23:PengRobinson78_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson78_USCOREEOS const*p) +inline int soap_PATCH_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson78_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS ? "prodml22:PengRobinson78_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS ? "prodml23:PengRobinson78_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson78_USCOREEOS const*p) +inline int soap_POST_send_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson78_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS ? "prodml22:PengRobinson78_EOS" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson78_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS ? "prodml23:PengRobinson78_EOS" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_get_prodml22__PengRobinson78_USCOREEOS(struct soap*, prodml22__PengRobinson78_USCOREEOS *, const char*, const char*); +SOAP_FMAC3 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC4 soap_get_prodml23__PengRobinson78_USCOREEOS(struct soap*, prodml23__PengRobinson78_USCOREEOS *, const char*, const char*); -inline int soap_read_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, prodml22__PengRobinson78_USCOREEOS *p) +inline int soap_read_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, prodml23__PengRobinson78_USCOREEOS *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PengRobinson78_USCOREEOS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PengRobinson78_USCOREEOS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson78_USCOREEOS *p) +inline int soap_GET_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson78_USCOREEOS *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PengRobinson78_USCOREEOS(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PengRobinson78_USCOREEOS(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PengRobinson78_USCOREEOS(struct soap *soap, prodml22__PengRobinson78_USCOREEOS *p) +inline int soap_POST_recv_prodml23__PengRobinson78_USCOREEOS(struct soap *soap, prodml23__PengRobinson78_USCOREEOS *p) { - if (gsoap_eml2_3::soap_read_prodml22__PengRobinson78_USCOREEOS(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PengRobinson78_USCOREEOS(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__PengRobinson76_USCOREEOS(struct soap*, const char*, int, const prodml22__PengRobinson76_USCOREEOS *, const char*); -SOAP_FMAC3 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_in_prodml22__PengRobinson76_USCOREEOS(struct soap*, const char*, prodml22__PengRobinson76_USCOREEOS *, const char*); -SOAP_FMAC1 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__PengRobinson76_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__PengRobinson76_USCOREEOS(struct soap*, const char*, int, const prodml23__PengRobinson76_USCOREEOS *, const char*); +SOAP_FMAC3 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_in_prodml23__PengRobinson76_USCOREEOS(struct soap*, const char*, prodml23__PengRobinson76_USCOREEOS *, const char*); +SOAP_FMAC1 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__PengRobinson76_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__PengRobinson76_USCOREEOS * soap_new_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, int n = -1) +inline prodml23__PengRobinson76_USCOREEOS * soap_new_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__PengRobinson76_USCOREEOS(soap, n, NULL, NULL, NULL); } -inline prodml22__PengRobinson76_USCOREEOS * soap_new_req_prodml22__PengRobinson76_USCOREEOS( +inline prodml23__PengRobinson76_USCOREEOS * soap_new_req_prodml23__PengRobinson76_USCOREEOS( struct soap *soap) { - prodml22__PengRobinson76_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml22__PengRobinson76_USCOREEOS(soap); + prodml23__PengRobinson76_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml23__PengRobinson76_USCOREEOS(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__PengRobinson76_USCOREEOS * soap_new_set_prodml22__PengRobinson76_USCOREEOS( +inline prodml23__PengRobinson76_USCOREEOS * soap_new_set_prodml23__PengRobinson76_USCOREEOS( struct soap *soap, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__PengRobinson76_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml22__PengRobinson76_USCOREEOS(soap); + prodml23__PengRobinson76_USCOREEOS *_p = gsoap_eml2_3::soap_new_prodml23__PengRobinson76_USCOREEOS(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, prodml22__PengRobinson76_USCOREEOS const*p) +inline int soap_write_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, prodml23__PengRobinson76_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS ? "prodml22:PengRobinson76_EOS" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS ? "prodml23:PengRobinson76_EOS" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson76_USCOREEOS const*p) +inline int soap_PUT_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson76_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS ? "prodml22:PengRobinson76_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS ? "prodml23:PengRobinson76_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson76_USCOREEOS const*p) +inline int soap_PATCH_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson76_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS ? "prodml22:PengRobinson76_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS ? "prodml23:PengRobinson76_EOS" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson76_USCOREEOS const*p) +inline int soap_POST_send_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson76_USCOREEOS const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS ? "prodml22:PengRobinson76_EOS" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:PengRobinson76_EOS", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS ? "prodml23:PengRobinson76_EOS" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_get_prodml22__PengRobinson76_USCOREEOS(struct soap*, prodml22__PengRobinson76_USCOREEOS *, const char*, const char*); +SOAP_FMAC3 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC4 soap_get_prodml23__PengRobinson76_USCOREEOS(struct soap*, prodml23__PengRobinson76_USCOREEOS *, const char*, const char*); -inline int soap_read_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, prodml22__PengRobinson76_USCOREEOS *p) +inline int soap_read_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, prodml23__PengRobinson76_USCOREEOS *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__PengRobinson76_USCOREEOS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__PengRobinson76_USCOREEOS(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml22__PengRobinson76_USCOREEOS *p) +inline int soap_GET_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, const char *URL, prodml23__PengRobinson76_USCOREEOS *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__PengRobinson76_USCOREEOS(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__PengRobinson76_USCOREEOS(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__PengRobinson76_USCOREEOS(struct soap *soap, prodml22__PengRobinson76_USCOREEOS *p) +inline int soap_POST_recv_prodml23__PengRobinson76_USCOREEOS(struct soap *soap, prodml23__PengRobinson76_USCOREEOS *p) { - if (gsoap_eml2_3::soap_read_prodml22__PengRobinson76_USCOREEOS(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__PengRobinson76_USCOREEOS(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Lucas(struct soap*, const char*, int, const prodml22__Lucas *, const char*); -SOAP_FMAC3 prodml22__Lucas * SOAP_FMAC4 soap_in_prodml22__Lucas(struct soap*, const char*, prodml22__Lucas *, const char*); -SOAP_FMAC1 prodml22__Lucas * SOAP_FMAC2 soap_instantiate_prodml22__Lucas(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Lucas(struct soap*, const char*, int, const prodml23__Lucas *, const char*); +SOAP_FMAC3 prodml23__Lucas * SOAP_FMAC4 soap_in_prodml23__Lucas(struct soap*, const char*, prodml23__Lucas *, const char*); +SOAP_FMAC1 prodml23__Lucas * SOAP_FMAC2 soap_instantiate_prodml23__Lucas(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Lucas * soap_new_prodml22__Lucas(struct soap *soap, int n = -1) +inline prodml23__Lucas * soap_new_prodml23__Lucas(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Lucas(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Lucas(soap, n, NULL, NULL, NULL); } -inline prodml22__Lucas * soap_new_req_prodml22__Lucas( +inline prodml23__Lucas * soap_new_req_prodml23__Lucas( struct soap *soap) { - prodml22__Lucas *_p = gsoap_eml2_3::soap_new_prodml22__Lucas(soap); + prodml23__Lucas *_p = gsoap_eml2_3::soap_new_prodml23__Lucas(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__Lucas * soap_new_set_prodml22__Lucas( +inline prodml23__Lucas * soap_new_set_prodml23__Lucas( struct soap *soap, eml23__MolecularWeightMeasure *GasMolarWeight, eml23__DynamicViscosityMeasure *GasViscosityAt1Atm, @@ -135821,525 +135793,525 @@ inline prodml22__Lucas * soap_new_set_prodml22__Lucas( eml23__DynamicViscosityMeasure *GasViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__Lucas *_p = gsoap_eml2_3::soap_new_prodml22__Lucas(soap); + prodml23__Lucas *_p = gsoap_eml2_3::soap_new_prodml23__Lucas(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__Lucas::GasMolarWeight = GasMolarWeight; - _p->prodml22__Lucas::GasViscosityAt1Atm = GasViscosityAt1Atm; - _p->prodml22__Lucas::PseudoCriticalTemperature = PseudoCriticalTemperature; - _p->prodml22__Lucas::PseudoCriticalPressure = PseudoCriticalPressure; - _p->prodml22__Lucas::PseudoReducedTemperature = PseudoReducedTemperature; - _p->prodml22__Lucas::PseudoReducedPressure = PseudoReducedPressure; - _p->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; - _p->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__Lucas::GasMolarWeight = GasMolarWeight; + _p->prodml23__Lucas::GasViscosityAt1Atm = GasViscosityAt1Atm; + _p->prodml23__Lucas::PseudoCriticalTemperature = PseudoCriticalTemperature; + _p->prodml23__Lucas::PseudoCriticalPressure = PseudoCriticalPressure; + _p->prodml23__Lucas::PseudoReducedTemperature = PseudoReducedTemperature; + _p->prodml23__Lucas::PseudoReducedPressure = PseudoReducedPressure; + _p->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; + _p->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__Lucas(struct soap *soap, prodml22__Lucas const*p) +inline int soap_write_prodml23__Lucas(struct soap *soap, prodml23__Lucas const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas ? "prodml22:Lucas" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas ? "prodml23:Lucas" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Lucas(struct soap *soap, const char *URL, prodml22__Lucas const*p) +inline int soap_PUT_prodml23__Lucas(struct soap *soap, const char *URL, prodml23__Lucas const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas ? "prodml22:Lucas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas ? "prodml23:Lucas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Lucas(struct soap *soap, const char *URL, prodml22__Lucas const*p) +inline int soap_PATCH_prodml23__Lucas(struct soap *soap, const char *URL, prodml23__Lucas const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas ? "prodml22:Lucas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas ? "prodml23:Lucas" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Lucas(struct soap *soap, const char *URL, prodml22__Lucas const*p) +inline int soap_POST_send_prodml23__Lucas(struct soap *soap, const char *URL, prodml23__Lucas const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas ? "prodml22:Lucas" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lucas", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas ? "prodml23:Lucas" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Lucas * SOAP_FMAC4 soap_get_prodml22__Lucas(struct soap*, prodml22__Lucas *, const char*, const char*); +SOAP_FMAC3 prodml23__Lucas * SOAP_FMAC4 soap_get_prodml23__Lucas(struct soap*, prodml23__Lucas *, const char*, const char*); -inline int soap_read_prodml22__Lucas(struct soap *soap, prodml22__Lucas *p) +inline int soap_read_prodml23__Lucas(struct soap *soap, prodml23__Lucas *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Lucas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Lucas(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Lucas(struct soap *soap, const char *URL, prodml22__Lucas *p) +inline int soap_GET_prodml23__Lucas(struct soap *soap, const char *URL, prodml23__Lucas *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Lucas(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Lucas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Lucas(struct soap *soap, prodml22__Lucas *p) +inline int soap_POST_recv_prodml23__Lucas(struct soap *soap, prodml23__Lucas *p) { - if (gsoap_eml2_3::soap_read_prodml22__Lucas(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Lucas(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LondonoArcherBlasinggame(struct soap*, const char*, int, const prodml22__LondonoArcherBlasinggame *, const char*); -SOAP_FMAC3 prodml22__LondonoArcherBlasinggame * SOAP_FMAC4 soap_in_prodml22__LondonoArcherBlasinggame(struct soap*, const char*, prodml22__LondonoArcherBlasinggame *, const char*); -SOAP_FMAC1 prodml22__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prodml22__LondonoArcherBlasinggame(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LondonoArcherBlasinggame(struct soap*, const char*, int, const prodml23__LondonoArcherBlasinggame *, const char*); +SOAP_FMAC3 prodml23__LondonoArcherBlasinggame * SOAP_FMAC4 soap_in_prodml23__LondonoArcherBlasinggame(struct soap*, const char*, prodml23__LondonoArcherBlasinggame *, const char*); +SOAP_FMAC1 prodml23__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prodml23__LondonoArcherBlasinggame(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LondonoArcherBlasinggame * soap_new_prodml22__LondonoArcherBlasinggame(struct soap *soap, int n = -1) +inline prodml23__LondonoArcherBlasinggame * soap_new_prodml23__LondonoArcherBlasinggame(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LondonoArcherBlasinggame(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LondonoArcherBlasinggame(soap, n, NULL, NULL, NULL); } -inline prodml22__LondonoArcherBlasinggame * soap_new_req_prodml22__LondonoArcherBlasinggame( +inline prodml23__LondonoArcherBlasinggame * soap_new_req_prodml23__LondonoArcherBlasinggame( struct soap *soap) { - prodml22__LondonoArcherBlasinggame *_p = gsoap_eml2_3::soap_new_prodml22__LondonoArcherBlasinggame(soap); + prodml23__LondonoArcherBlasinggame *_p = gsoap_eml2_3::soap_new_prodml23__LondonoArcherBlasinggame(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__LondonoArcherBlasinggame * soap_new_set_prodml22__LondonoArcherBlasinggame( +inline prodml23__LondonoArcherBlasinggame * soap_new_set_prodml23__LondonoArcherBlasinggame( struct soap *soap, eml23__MassPerVolumeMeasure *GasDensity, eml23__DynamicViscosityMeasure *GasViscosityAt1Atm, - const std::vector & GasViscosityCoefficient1Atm, + const std::vector & GasViscosityCoefficient1Atm, eml23__DynamicViscosityMeasure *GasViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__LondonoArcherBlasinggame *_p = gsoap_eml2_3::soap_new_prodml22__LondonoArcherBlasinggame(soap); + prodml23__LondonoArcherBlasinggame *_p = gsoap_eml2_3::soap_new_prodml23__LondonoArcherBlasinggame(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LondonoArcherBlasinggame::GasDensity = GasDensity; - _p->prodml22__LondonoArcherBlasinggame::GasViscosityAt1Atm = GasViscosityAt1Atm; - _p->prodml22__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm = GasViscosityCoefficient1Atm; - _p->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; - _p->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__LondonoArcherBlasinggame::GasDensity = GasDensity; + _p->prodml23__LondonoArcherBlasinggame::GasViscosityAt1Atm = GasViscosityAt1Atm; + _p->prodml23__LondonoArcherBlasinggame::GasViscosityCoefficient1Atm = GasViscosityCoefficient1Atm; + _p->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; + _p->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__LondonoArcherBlasinggame(struct soap *soap, prodml22__LondonoArcherBlasinggame const*p) +inline int soap_write_prodml23__LondonoArcherBlasinggame(struct soap *soap, prodml23__LondonoArcherBlasinggame const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame ? "prodml22:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame ? "prodml23:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml22__LondonoArcherBlasinggame const*p) +inline int soap_PUT_prodml23__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml23__LondonoArcherBlasinggame const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame ? "prodml22:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame ? "prodml23:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml22__LondonoArcherBlasinggame const*p) +inline int soap_PATCH_prodml23__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml23__LondonoArcherBlasinggame const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame ? "prodml22:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame ? "prodml23:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml22__LondonoArcherBlasinggame const*p) +inline int soap_POST_send_prodml23__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml23__LondonoArcherBlasinggame const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame ? "prodml22:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LondonoArcherBlasinggame", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame ? "prodml23:LondonoArcherBlasinggame" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LondonoArcherBlasinggame * SOAP_FMAC4 soap_get_prodml22__LondonoArcherBlasinggame(struct soap*, prodml22__LondonoArcherBlasinggame *, const char*, const char*); +SOAP_FMAC3 prodml23__LondonoArcherBlasinggame * SOAP_FMAC4 soap_get_prodml23__LondonoArcherBlasinggame(struct soap*, prodml23__LondonoArcherBlasinggame *, const char*, const char*); -inline int soap_read_prodml22__LondonoArcherBlasinggame(struct soap *soap, prodml22__LondonoArcherBlasinggame *p) +inline int soap_read_prodml23__LondonoArcherBlasinggame(struct soap *soap, prodml23__LondonoArcherBlasinggame *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LondonoArcherBlasinggame(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LondonoArcherBlasinggame(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml22__LondonoArcherBlasinggame *p) +inline int soap_GET_prodml23__LondonoArcherBlasinggame(struct soap *soap, const char *URL, prodml23__LondonoArcherBlasinggame *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LondonoArcherBlasinggame(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LondonoArcherBlasinggame(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LondonoArcherBlasinggame(struct soap *soap, prodml22__LondonoArcherBlasinggame *p) +inline int soap_POST_recv_prodml23__LondonoArcherBlasinggame(struct soap *soap, prodml23__LondonoArcherBlasinggame *p) { - if (gsoap_eml2_3::soap_read_prodml22__LondonoArcherBlasinggame(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LondonoArcherBlasinggame(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap*, const char*, int, const prodml22__Lohrenz_Bray_ClarkCorrelation *, const char*); -SOAP_FMAC3 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_in_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap*, const char*, prodml22__Lohrenz_Bray_ClarkCorrelation *, const char*); -SOAP_FMAC1 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap*, const char*, int, const prodml23__Lohrenz_Bray_ClarkCorrelation *, const char*); +SOAP_FMAC3 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_in_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap*, const char*, prodml23__Lohrenz_Bray_ClarkCorrelation *, const char*); +SOAP_FMAC1 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__Lohrenz_Bray_ClarkCorrelation * soap_new_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, int n = -1) +inline prodml23__Lohrenz_Bray_ClarkCorrelation * soap_new_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, n, NULL, NULL, NULL); } -inline prodml22__Lohrenz_Bray_ClarkCorrelation * soap_new_req_prodml22__Lohrenz_Bray_ClarkCorrelation( +inline prodml23__Lohrenz_Bray_ClarkCorrelation * soap_new_req_prodml23__Lohrenz_Bray_ClarkCorrelation( struct soap *soap, - prodml22__ThermodynamicPhase phase__1) + prodml23__ThermodynamicPhase phase__1) { - prodml22__Lohrenz_Bray_ClarkCorrelation *_p = gsoap_eml2_3::soap_new_prodml22__Lohrenz_Bray_ClarkCorrelation(soap); + prodml23__Lohrenz_Bray_ClarkCorrelation *_p = gsoap_eml2_3::soap_new_prodml23__Lohrenz_Bray_ClarkCorrelation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; } return _p; } -inline prodml22__Lohrenz_Bray_ClarkCorrelation * soap_new_set_prodml22__Lohrenz_Bray_ClarkCorrelation( +inline prodml23__Lohrenz_Bray_ClarkCorrelation * soap_new_set_prodml23__Lohrenz_Bray_ClarkCorrelation( struct soap *soap, - prodml22__ThermodynamicPhase phase__1, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__ThermodynamicPhase phase__1, + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__Lohrenz_Bray_ClarkCorrelation *_p = gsoap_eml2_3::soap_new_prodml22__Lohrenz_Bray_ClarkCorrelation(soap); + prodml23__Lohrenz_Bray_ClarkCorrelation *_p = gsoap_eml2_3::soap_new_prodml23__Lohrenz_Bray_ClarkCorrelation(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml22__Lohrenz_Bray_ClarkCorrelation const*p) +inline int soap_write_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml23__Lohrenz_Bray_ClarkCorrelation const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation ? "prodml22:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation ? "prodml23:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml22__Lohrenz_Bray_ClarkCorrelation const*p) +inline int soap_PUT_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml23__Lohrenz_Bray_ClarkCorrelation const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation ? "prodml22:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation ? "prodml23:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml22__Lohrenz_Bray_ClarkCorrelation const*p) +inline int soap_PATCH_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml23__Lohrenz_Bray_ClarkCorrelation const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation ? "prodml22:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation ? "prodml23:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml22__Lohrenz_Bray_ClarkCorrelation const*p) +inline int soap_POST_send_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml23__Lohrenz_Bray_ClarkCorrelation const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation ? "prodml22:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:Lohrenz-Bray-ClarkCorrelation", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation ? "prodml23:Lohrenz-Bray-ClarkCorrelation" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_get_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap*, prodml22__Lohrenz_Bray_ClarkCorrelation *, const char*, const char*); +SOAP_FMAC3 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC4 soap_get_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap*, prodml23__Lohrenz_Bray_ClarkCorrelation *, const char*, const char*); -inline int soap_read_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml22__Lohrenz_Bray_ClarkCorrelation *p) +inline int soap_read_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml23__Lohrenz_Bray_ClarkCorrelation *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml22__Lohrenz_Bray_ClarkCorrelation *p) +inline int soap_GET_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, const char *URL, prodml23__Lohrenz_Bray_ClarkCorrelation *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml22__Lohrenz_Bray_ClarkCorrelation *p) +inline int soap_POST_recv_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap *soap, prodml23__Lohrenz_Bray_ClarkCorrelation *p) { - if (gsoap_eml2_3::soap_read_prodml22__Lohrenz_Bray_ClarkCorrelation(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__Lohrenz_Bray_ClarkCorrelation(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__LeeGonzalez(struct soap*, const char*, int, const prodml22__LeeGonzalez *, const char*); -SOAP_FMAC3 prodml22__LeeGonzalez * SOAP_FMAC4 soap_in_prodml22__LeeGonzalez(struct soap*, const char*, prodml22__LeeGonzalez *, const char*); -SOAP_FMAC1 prodml22__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml22__LeeGonzalez(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__LeeGonzalez(struct soap*, const char*, int, const prodml23__LeeGonzalez *, const char*); +SOAP_FMAC3 prodml23__LeeGonzalez * SOAP_FMAC4 soap_in_prodml23__LeeGonzalez(struct soap*, const char*, prodml23__LeeGonzalez *, const char*); +SOAP_FMAC1 prodml23__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml23__LeeGonzalez(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__LeeGonzalez * soap_new_prodml22__LeeGonzalez(struct soap *soap, int n = -1) +inline prodml23__LeeGonzalez * soap_new_prodml23__LeeGonzalez(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__LeeGonzalez(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__LeeGonzalez(soap, n, NULL, NULL, NULL); } -inline prodml22__LeeGonzalez * soap_new_req_prodml22__LeeGonzalez( +inline prodml23__LeeGonzalez * soap_new_req_prodml23__LeeGonzalez( struct soap *soap) { - prodml22__LeeGonzalez *_p = gsoap_eml2_3::soap_new_prodml22__LeeGonzalez(soap); + prodml23__LeeGonzalez *_p = gsoap_eml2_3::soap_new_prodml23__LeeGonzalez(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__LeeGonzalez * soap_new_set_prodml22__LeeGonzalez( +inline prodml23__LeeGonzalez * soap_new_set_prodml23__LeeGonzalez( struct soap *soap, eml23__MolecularWeightMeasure *GasMolarWeight, eml23__MassPerVolumeMeasure *GasDensity, eml23__DynamicViscosityMeasure *GasViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__LeeGonzalez *_p = gsoap_eml2_3::soap_new_prodml22__LeeGonzalez(soap); + prodml23__LeeGonzalez *_p = gsoap_eml2_3::soap_new_prodml23__LeeGonzalez(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__LeeGonzalez::GasMolarWeight = GasMolarWeight; - _p->prodml22__LeeGonzalez::GasDensity = GasDensity; - _p->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; - _p->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__LeeGonzalez::GasMolarWeight = GasMolarWeight; + _p->prodml23__LeeGonzalez::GasDensity = GasDensity; + _p->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; + _p->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__LeeGonzalez(struct soap *soap, prodml22__LeeGonzalez const*p) +inline int soap_write_prodml23__LeeGonzalez(struct soap *soap, prodml23__LeeGonzalez const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez ? "prodml22:LeeGonzalez" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez ? "prodml23:LeeGonzalez" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__LeeGonzalez(struct soap *soap, const char *URL, prodml22__LeeGonzalez const*p) +inline int soap_PUT_prodml23__LeeGonzalez(struct soap *soap, const char *URL, prodml23__LeeGonzalez const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez ? "prodml22:LeeGonzalez" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez ? "prodml23:LeeGonzalez" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__LeeGonzalez(struct soap *soap, const char *URL, prodml22__LeeGonzalez const*p) +inline int soap_PATCH_prodml23__LeeGonzalez(struct soap *soap, const char *URL, prodml23__LeeGonzalez const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez ? "prodml22:LeeGonzalez" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez ? "prodml23:LeeGonzalez" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__LeeGonzalez(struct soap *soap, const char *URL, prodml22__LeeGonzalez const*p) +inline int soap_POST_send_prodml23__LeeGonzalez(struct soap *soap, const char *URL, prodml23__LeeGonzalez const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez ? "prodml22:LeeGonzalez" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:LeeGonzalez", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez ? "prodml23:LeeGonzalez" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__LeeGonzalez * SOAP_FMAC4 soap_get_prodml22__LeeGonzalez(struct soap*, prodml22__LeeGonzalez *, const char*, const char*); +SOAP_FMAC3 prodml23__LeeGonzalez * SOAP_FMAC4 soap_get_prodml23__LeeGonzalez(struct soap*, prodml23__LeeGonzalez *, const char*, const char*); -inline int soap_read_prodml22__LeeGonzalez(struct soap *soap, prodml22__LeeGonzalez *p) +inline int soap_read_prodml23__LeeGonzalez(struct soap *soap, prodml23__LeeGonzalez *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__LeeGonzalez(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__LeeGonzalez(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__LeeGonzalez(struct soap *soap, const char *URL, prodml22__LeeGonzalez *p) +inline int soap_GET_prodml23__LeeGonzalez(struct soap *soap, const char *URL, prodml23__LeeGonzalez *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__LeeGonzalez(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__LeeGonzalez(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__LeeGonzalez(struct soap *soap, prodml22__LeeGonzalez *p) +inline int soap_POST_recv_prodml23__LeeGonzalez(struct soap *soap, prodml23__LeeGonzalez *p) { - if (gsoap_eml2_3::soap_read_prodml22__LeeGonzalez(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__LeeGonzalez(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FrictionTheory(struct soap*, const char*, int, const prodml22__FrictionTheory *, const char*); -SOAP_FMAC3 prodml22__FrictionTheory * SOAP_FMAC4 soap_in_prodml22__FrictionTheory(struct soap*, const char*, prodml22__FrictionTheory *, const char*); -SOAP_FMAC1 prodml22__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml22__FrictionTheory(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FrictionTheory(struct soap*, const char*, int, const prodml23__FrictionTheory *, const char*); +SOAP_FMAC3 prodml23__FrictionTheory * SOAP_FMAC4 soap_in_prodml23__FrictionTheory(struct soap*, const char*, prodml23__FrictionTheory *, const char*); +SOAP_FMAC1 prodml23__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml23__FrictionTheory(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FrictionTheory * soap_new_prodml22__FrictionTheory(struct soap *soap, int n = -1) +inline prodml23__FrictionTheory * soap_new_prodml23__FrictionTheory(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FrictionTheory(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FrictionTheory(soap, n, NULL, NULL, NULL); } -inline prodml22__FrictionTheory * soap_new_req_prodml22__FrictionTheory( +inline prodml23__FrictionTheory * soap_new_req_prodml23__FrictionTheory( struct soap *soap, - prodml22__ThermodynamicPhase phase__1) + prodml23__ThermodynamicPhase phase__1) { - prodml22__FrictionTheory *_p = gsoap_eml2_3::soap_new_prodml22__FrictionTheory(soap); + prodml23__FrictionTheory *_p = gsoap_eml2_3::soap_new_prodml23__FrictionTheory(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; } return _p; } -inline prodml22__FrictionTheory * soap_new_set_prodml22__FrictionTheory( +inline prodml23__FrictionTheory * soap_new_set_prodml23__FrictionTheory( struct soap *soap, - const std::vector & PrsvParameter, - prodml22__ThermodynamicPhase phase__1, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + const std::vector & PrsvParameter, + prodml23__ThermodynamicPhase phase__1, + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__FrictionTheory *_p = gsoap_eml2_3::soap_new_prodml22__FrictionTheory(soap); + prodml23__FrictionTheory *_p = gsoap_eml2_3::soap_new_prodml23__FrictionTheory(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FrictionTheory::PrsvParameter = PrsvParameter; - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__FrictionTheory::PrsvParameter = PrsvParameter; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__FrictionTheory(struct soap *soap, prodml22__FrictionTheory const*p) +inline int soap_write_prodml23__FrictionTheory(struct soap *soap, prodml23__FrictionTheory const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory ? "prodml22:FrictionTheory" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory ? "prodml23:FrictionTheory" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FrictionTheory(struct soap *soap, const char *URL, prodml22__FrictionTheory const*p) +inline int soap_PUT_prodml23__FrictionTheory(struct soap *soap, const char *URL, prodml23__FrictionTheory const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory ? "prodml22:FrictionTheory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory ? "prodml23:FrictionTheory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FrictionTheory(struct soap *soap, const char *URL, prodml22__FrictionTheory const*p) +inline int soap_PATCH_prodml23__FrictionTheory(struct soap *soap, const char *URL, prodml23__FrictionTheory const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory ? "prodml22:FrictionTheory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory ? "prodml23:FrictionTheory" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FrictionTheory(struct soap *soap, const char *URL, prodml22__FrictionTheory const*p) +inline int soap_POST_send_prodml23__FrictionTheory(struct soap *soap, const char *URL, prodml23__FrictionTheory const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory ? "prodml22:FrictionTheory" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FrictionTheory", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory ? "prodml23:FrictionTheory" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FrictionTheory * SOAP_FMAC4 soap_get_prodml22__FrictionTheory(struct soap*, prodml22__FrictionTheory *, const char*, const char*); +SOAP_FMAC3 prodml23__FrictionTheory * SOAP_FMAC4 soap_get_prodml23__FrictionTheory(struct soap*, prodml23__FrictionTheory *, const char*, const char*); -inline int soap_read_prodml22__FrictionTheory(struct soap *soap, prodml22__FrictionTheory *p) +inline int soap_read_prodml23__FrictionTheory(struct soap *soap, prodml23__FrictionTheory *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FrictionTheory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FrictionTheory(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FrictionTheory(struct soap *soap, const char *URL, prodml22__FrictionTheory *p) +inline int soap_GET_prodml23__FrictionTheory(struct soap *soap, const char *URL, prodml23__FrictionTheory *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FrictionTheory(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FrictionTheory(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FrictionTheory(struct soap *soap, prodml22__FrictionTheory *p) +inline int soap_POST_recv_prodml23__FrictionTheory(struct soap *soap, prodml23__FrictionTheory *p) { - if (gsoap_eml2_3::soap_read_prodml22__FrictionTheory(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FrictionTheory(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidComponentProperty(struct soap*, const char*, int, const prodml22__FluidComponentProperty *, const char*); -SOAP_FMAC3 prodml22__FluidComponentProperty * SOAP_FMAC4 soap_in_prodml22__FluidComponentProperty(struct soap*, const char*, prodml22__FluidComponentProperty *, const char*); -SOAP_FMAC1 prodml22__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentProperty(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidComponentProperty(struct soap*, const char*, int, const prodml23__FluidComponentProperty *, const char*); +SOAP_FMAC3 prodml23__FluidComponentProperty * SOAP_FMAC4 soap_in_prodml23__FluidComponentProperty(struct soap*, const char*, prodml23__FluidComponentProperty *, const char*); +SOAP_FMAC1 prodml23__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentProperty(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidComponentProperty * soap_new_prodml22__FluidComponentProperty(struct soap *soap, int n = -1) +inline prodml23__FluidComponentProperty * soap_new_prodml23__FluidComponentProperty(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidComponentProperty(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidComponentProperty(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidComponentProperty * soap_new_req_prodml22__FluidComponentProperty( +inline prodml23__FluidComponentProperty * soap_new_req_prodml23__FluidComponentProperty( struct soap *soap, const std::string& fluidComponentReference) { - prodml22__FluidComponentProperty *_p = gsoap_eml2_3::soap_new_prodml22__FluidComponentProperty(soap); + prodml23__FluidComponentProperty *_p = gsoap_eml2_3::soap_new_prodml23__FluidComponentProperty(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidComponentProperty::fluidComponentReference = fluidComponentReference; + _p->prodml23__FluidComponentProperty::fluidComponentReference = fluidComponentReference; } return _p; } -inline prodml22__FluidComponentProperty * soap_new_set_prodml22__FluidComponentProperty( +inline prodml23__FluidComponentProperty * soap_new_set_prodml23__FluidComponentProperty( struct soap *soap, eml23__PressureMeasure *CriticalPressure, eml23__ThermodynamicTemperatureMeasure *CriticalTemperature, @@ -136361,819 +136333,819 @@ inline prodml22__FluidComponentProperty * soap_new_set_prodml22__FluidComponentP std::string *Remark, const std::string& fluidComponentReference) { - prodml22__FluidComponentProperty *_p = gsoap_eml2_3::soap_new_prodml22__FluidComponentProperty(soap); + prodml23__FluidComponentProperty *_p = gsoap_eml2_3::soap_new_prodml23__FluidComponentProperty(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidComponentProperty::CriticalPressure = CriticalPressure; - _p->prodml22__FluidComponentProperty::CriticalTemperature = CriticalTemperature; - _p->prodml22__FluidComponentProperty::CriticalViscosity = CriticalViscosity; - _p->prodml22__FluidComponentProperty::CompactVolume = CompactVolume; - _p->prodml22__FluidComponentProperty::CriticalVolume = CriticalVolume; - _p->prodml22__FluidComponentProperty::AcentricFactor = AcentricFactor; - _p->prodml22__FluidComponentProperty::MassDensity = MassDensity; - _p->prodml22__FluidComponentProperty::OmegaA = OmegaA; - _p->prodml22__FluidComponentProperty::OmegaB = OmegaB; - _p->prodml22__FluidComponentProperty::VolumeShiftParameter = VolumeShiftParameter; - _p->prodml22__FluidComponentProperty::PartialMolarDensity = PartialMolarDensity; - _p->prodml22__FluidComponentProperty::Parachor = Parachor; - _p->prodml22__FluidComponentProperty::PartialMolarVolume = PartialMolarVolume; - _p->prodml22__FluidComponentProperty::ReferenceDensityZJ = ReferenceDensityZJ; - _p->prodml22__FluidComponentProperty::ReferenceGravityZJ = ReferenceGravityZJ; - _p->prodml22__FluidComponentProperty::ReferenceTemperatureZJ = ReferenceTemperatureZJ; - _p->prodml22__FluidComponentProperty::ViscousCompressibility = ViscousCompressibility; - _p->prodml22__FluidComponentProperty::Remark = Remark; - _p->prodml22__FluidComponentProperty::fluidComponentReference = fluidComponentReference; + _p->prodml23__FluidComponentProperty::CriticalPressure = CriticalPressure; + _p->prodml23__FluidComponentProperty::CriticalTemperature = CriticalTemperature; + _p->prodml23__FluidComponentProperty::CriticalViscosity = CriticalViscosity; + _p->prodml23__FluidComponentProperty::CompactVolume = CompactVolume; + _p->prodml23__FluidComponentProperty::CriticalVolume = CriticalVolume; + _p->prodml23__FluidComponentProperty::AcentricFactor = AcentricFactor; + _p->prodml23__FluidComponentProperty::MassDensity = MassDensity; + _p->prodml23__FluidComponentProperty::OmegaA = OmegaA; + _p->prodml23__FluidComponentProperty::OmegaB = OmegaB; + _p->prodml23__FluidComponentProperty::VolumeShiftParameter = VolumeShiftParameter; + _p->prodml23__FluidComponentProperty::PartialMolarDensity = PartialMolarDensity; + _p->prodml23__FluidComponentProperty::Parachor = Parachor; + _p->prodml23__FluidComponentProperty::PartialMolarVolume = PartialMolarVolume; + _p->prodml23__FluidComponentProperty::ReferenceDensityZJ = ReferenceDensityZJ; + _p->prodml23__FluidComponentProperty::ReferenceGravityZJ = ReferenceGravityZJ; + _p->prodml23__FluidComponentProperty::ReferenceTemperatureZJ = ReferenceTemperatureZJ; + _p->prodml23__FluidComponentProperty::ViscousCompressibility = ViscousCompressibility; + _p->prodml23__FluidComponentProperty::Remark = Remark; + _p->prodml23__FluidComponentProperty::fluidComponentReference = fluidComponentReference; } return _p; } -inline int soap_write_prodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty const*p) +inline int soap_write_prodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty ? "prodml22:FluidComponentProperty" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty ? "prodml23:FluidComponentProperty" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidComponentProperty(struct soap *soap, const char *URL, prodml22__FluidComponentProperty const*p) +inline int soap_PUT_prodml23__FluidComponentProperty(struct soap *soap, const char *URL, prodml23__FluidComponentProperty const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty ? "prodml22:FluidComponentProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty ? "prodml23:FluidComponentProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidComponentProperty(struct soap *soap, const char *URL, prodml22__FluidComponentProperty const*p) +inline int soap_PATCH_prodml23__FluidComponentProperty(struct soap *soap, const char *URL, prodml23__FluidComponentProperty const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty ? "prodml22:FluidComponentProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty ? "prodml23:FluidComponentProperty" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidComponentProperty(struct soap *soap, const char *URL, prodml22__FluidComponentProperty const*p) +inline int soap_POST_send_prodml23__FluidComponentProperty(struct soap *soap, const char *URL, prodml23__FluidComponentProperty const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty ? "prodml22:FluidComponentProperty" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidComponentProperty", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty ? "prodml23:FluidComponentProperty" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidComponentProperty * SOAP_FMAC4 soap_get_prodml22__FluidComponentProperty(struct soap*, prodml22__FluidComponentProperty *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentProperty * SOAP_FMAC4 soap_get_prodml23__FluidComponentProperty(struct soap*, prodml23__FluidComponentProperty *, const char*, const char*); -inline int soap_read_prodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty *p) +inline int soap_read_prodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidComponentProperty(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidComponentProperty(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidComponentProperty(struct soap *soap, const char *URL, prodml22__FluidComponentProperty *p) +inline int soap_GET_prodml23__FluidComponentProperty(struct soap *soap, const char *URL, prodml23__FluidComponentProperty *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidComponentProperty(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidComponentProperty(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidComponentProperty(struct soap *soap, prodml22__FluidComponentProperty *p) +inline int soap_POST_recv_prodml23__FluidComponentProperty(struct soap *soap, prodml23__FluidComponentProperty *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidComponentProperty(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidComponentProperty(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableFormatSet(struct soap*, const char*, int, const prodml22__FluidCharacterizationTableFormatSet *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableFormatSet(struct soap*, const char*, prodml22__FluidCharacterizationTableFormatSet *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableFormatSet(struct soap*, const char*, int, const prodml23__FluidCharacterizationTableFormatSet *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableFormatSet(struct soap*, const char*, prodml23__FluidCharacterizationTableFormatSet *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationTableFormatSet * soap_new_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationTableFormatSet * soap_new_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationTableFormatSet * soap_new_req_prodml22__FluidCharacterizationTableFormatSet( +inline prodml23__FluidCharacterizationTableFormatSet * soap_new_req_prodml23__FluidCharacterizationTableFormatSet( struct soap *soap, - const std::vector & FluidCharacterizationTableFormat) + const std::vector & FluidCharacterizationTableFormat) { - prodml22__FluidCharacterizationTableFormatSet *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableFormatSet(soap); + prodml23__FluidCharacterizationTableFormatSet *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableFormatSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat = FluidCharacterizationTableFormat; + _p->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat = FluidCharacterizationTableFormat; } return _p; } -inline prodml22__FluidCharacterizationTableFormatSet * soap_new_set_prodml22__FluidCharacterizationTableFormatSet( +inline prodml23__FluidCharacterizationTableFormatSet * soap_new_set_prodml23__FluidCharacterizationTableFormatSet( struct soap *soap, - const std::vector & FluidCharacterizationTableFormat) + const std::vector & FluidCharacterizationTableFormat) { - prodml22__FluidCharacterizationTableFormatSet *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableFormatSet(soap); + prodml23__FluidCharacterizationTableFormatSet *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableFormatSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat = FluidCharacterizationTableFormat; + _p->prodml23__FluidCharacterizationTableFormatSet::FluidCharacterizationTableFormat = FluidCharacterizationTableFormat; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet const*p) +inline int soap_write_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet ? "prodml22:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet ? "prodml23:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormatSet const*p) +inline int soap_PUT_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormatSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet ? "prodml22:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet ? "prodml23:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormatSet const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormatSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet ? "prodml22:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet ? "prodml23:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormatSet const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormatSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet ? "prodml22:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormatSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet ? "prodml23:FluidCharacterizationTableFormatSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableFormatSet(struct soap*, prodml22__FluidCharacterizationTableFormatSet *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableFormatSet(struct soap*, prodml23__FluidCharacterizationTableFormatSet *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet *p) +inline int soap_read_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationTableFormatSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationTableFormatSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormatSet *p) +inline int soap_GET_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormatSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableFormatSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableFormatSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationTableFormatSet(struct soap *soap, prodml22__FluidCharacterizationTableFormatSet *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationTableFormatSet(struct soap *soap, prodml23__FluidCharacterizationTableFormatSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableFormatSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableFormatSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableFormat(struct soap*, const char*, int, const prodml22__FluidCharacterizationTableFormat *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableFormat(struct soap*, const char*, prodml22__FluidCharacterizationTableFormat *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableFormat(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableFormat(struct soap*, const char*, int, const prodml23__FluidCharacterizationTableFormat *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableFormat(struct soap*, const char*, prodml23__FluidCharacterizationTableFormat *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableFormat(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationTableFormat * soap_new_prodml22__FluidCharacterizationTableFormat(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationTableFormat * soap_new_prodml23__FluidCharacterizationTableFormat(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationTableFormat(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationTableFormat(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationTableFormat * soap_new_req_prodml22__FluidCharacterizationTableFormat( +inline prodml23__FluidCharacterizationTableFormat * soap_new_req_prodml23__FluidCharacterizationTableFormat( struct soap *soap, - const std::vector & TableColumn, + const std::vector & TableColumn, const std::string& uid) { - prodml22__FluidCharacterizationTableFormat *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableFormat(soap); + prodml23__FluidCharacterizationTableFormat *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableFormat(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableFormat::TableColumn = TableColumn; - _p->prodml22__FluidCharacterizationTableFormat::uid = uid; + _p->prodml23__FluidCharacterizationTableFormat::TableColumn = TableColumn; + _p->prodml23__FluidCharacterizationTableFormat::uid = uid; } return _p; } -inline prodml22__FluidCharacterizationTableFormat * soap_new_set_prodml22__FluidCharacterizationTableFormat( +inline prodml23__FluidCharacterizationTableFormat * soap_new_set_prodml23__FluidCharacterizationTableFormat( struct soap *soap, std::string *NullValue, std::string *Delimiter, - const std::vector & TableColumn, + const std::vector & TableColumn, const std::string& uid) { - prodml22__FluidCharacterizationTableFormat *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableFormat(soap); + prodml23__FluidCharacterizationTableFormat *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableFormat(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableFormat::NullValue = NullValue; - _p->prodml22__FluidCharacterizationTableFormat::Delimiter = Delimiter; - _p->prodml22__FluidCharacterizationTableFormat::TableColumn = TableColumn; - _p->prodml22__FluidCharacterizationTableFormat::uid = uid; + _p->prodml23__FluidCharacterizationTableFormat::NullValue = NullValue; + _p->prodml23__FluidCharacterizationTableFormat::Delimiter = Delimiter; + _p->prodml23__FluidCharacterizationTableFormat::TableColumn = TableColumn; + _p->prodml23__FluidCharacterizationTableFormat::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat const*p) +inline int soap_write_prodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat ? "prodml22:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat ? "prodml23:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormat const*p) +inline int soap_PUT_prodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormat const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat ? "prodml22:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat ? "prodml23:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormat const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormat const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat ? "prodml22:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat ? "prodml23:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormat const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormat const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat ? "prodml22:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableFormat", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat ? "prodml23:FluidCharacterizationTableFormat" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableFormat(struct soap*, prodml22__FluidCharacterizationTableFormat *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableFormat(struct soap*, prodml23__FluidCharacterizationTableFormat *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat *p) +inline int soap_read_prodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationTableFormat(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationTableFormat(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableFormat *p) +inline int soap_GET_prodml23__FluidCharacterizationTableFormat(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableFormat *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableFormat(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableFormat(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationTableFormat(struct soap *soap, prodml22__FluidCharacterizationTableFormat *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationTableFormat(struct soap *soap, prodml23__FluidCharacterizationTableFormat *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableFormat(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableFormat(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableColumn(struct soap*, const char*, int, const prodml22__FluidCharacterizationTableColumn *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableColumn(struct soap*, const char*, prodml22__FluidCharacterizationTableColumn *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableColumn(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableColumn(struct soap*, const char*, int, const prodml23__FluidCharacterizationTableColumn *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableColumn(struct soap*, const char*, prodml23__FluidCharacterizationTableColumn *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableColumn(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationTableColumn * soap_new_prodml22__FluidCharacterizationTableColumn(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationTableColumn * soap_new_prodml23__FluidCharacterizationTableColumn(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationTableColumn(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationTableColumn(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationTableColumn * soap_new_req_prodml22__FluidCharacterizationTableColumn( +inline prodml23__FluidCharacterizationTableColumn * soap_new_req_prodml23__FluidCharacterizationTableColumn( struct soap *soap, const std::string& Property, const std::string& uom) { - prodml22__FluidCharacterizationTableColumn *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableColumn(soap); + prodml23__FluidCharacterizationTableColumn *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableColumn(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableColumn::Property = Property; - _p->prodml22__FluidCharacterizationTableColumn::uom = uom; + _p->prodml23__FluidCharacterizationTableColumn::Property = Property; + _p->prodml23__FluidCharacterizationTableColumn::uom = uom; } return _p; } -inline prodml22__FluidCharacterizationTableColumn * soap_new_set_prodml22__FluidCharacterizationTableColumn( +inline prodml23__FluidCharacterizationTableColumn * soap_new_set_prodml23__FluidCharacterizationTableColumn( struct soap *soap, const std::string& Property, - prodml22__ThermodynamicPhase *Phase, + prodml23__ThermodynamicPhase *Phase, const std::vector & KeywordAlias, std::string *fluidComponentReference, std::string *name, LONG64 *sequence, const std::string& uom) { - prodml22__FluidCharacterizationTableColumn *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableColumn(soap); + prodml23__FluidCharacterizationTableColumn *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableColumn(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableColumn::Property = Property; - _p->prodml22__FluidCharacterizationTableColumn::Phase = Phase; - _p->prodml22__FluidCharacterizationTableColumn::KeywordAlias = KeywordAlias; - _p->prodml22__FluidCharacterizationTableColumn::fluidComponentReference = fluidComponentReference; - _p->prodml22__FluidCharacterizationTableColumn::name = name; - _p->prodml22__FluidCharacterizationTableColumn::sequence = sequence; - _p->prodml22__FluidCharacterizationTableColumn::uom = uom; + _p->prodml23__FluidCharacterizationTableColumn::Property = Property; + _p->prodml23__FluidCharacterizationTableColumn::Phase = Phase; + _p->prodml23__FluidCharacterizationTableColumn::KeywordAlias = KeywordAlias; + _p->prodml23__FluidCharacterizationTableColumn::fluidComponentReference = fluidComponentReference; + _p->prodml23__FluidCharacterizationTableColumn::name = name; + _p->prodml23__FluidCharacterizationTableColumn::sequence = sequence; + _p->prodml23__FluidCharacterizationTableColumn::uom = uom; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn const*p) +inline int soap_write_prodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn ? "prodml22:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn ? "prodml23:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableColumn const*p) +inline int soap_PUT_prodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableColumn const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn ? "prodml22:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn ? "prodml23:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableColumn const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableColumn const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn ? "prodml22:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn ? "prodml23:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableColumn const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableColumn const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn ? "prodml22:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableColumn", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn ? "prodml23:FluidCharacterizationTableColumn" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableColumn(struct soap*, prodml22__FluidCharacterizationTableColumn *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableColumn(struct soap*, prodml23__FluidCharacterizationTableColumn *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn *p) +inline int soap_read_prodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationTableColumn(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationTableColumn(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableColumn *p) +inline int soap_GET_prodml23__FluidCharacterizationTableColumn(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableColumn *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableColumn(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableColumn(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationTableColumn(struct soap *soap, prodml22__FluidCharacterizationTableColumn *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationTableColumn(struct soap *soap, prodml23__FluidCharacterizationTableColumn *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableColumn(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableColumn(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTable(struct soap*, const char*, int, const prodml22__FluidCharacterizationTable *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTable(struct soap*, const char*, prodml22__FluidCharacterizationTable *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTable(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTable(struct soap*, const char*, int, const prodml23__FluidCharacterizationTable *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTable * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTable(struct soap*, const char*, prodml23__FluidCharacterizationTable *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTable(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationTable * soap_new_prodml22__FluidCharacterizationTable(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationTable * soap_new_prodml23__FluidCharacterizationTable(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationTable(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationTable(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationTable * soap_new_req_prodml22__FluidCharacterizationTable( +inline prodml23__FluidCharacterizationTable * soap_new_req_prodml23__FluidCharacterizationTable( struct soap *soap, - const std::vector & TableRow, + const std::vector & TableRow, const std::string& uid, const std::string& tableFormat, const std::string& name) { - prodml22__FluidCharacterizationTable *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTable(soap); + prodml23__FluidCharacterizationTable *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTable(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTable::TableRow = TableRow; - _p->prodml22__FluidCharacterizationTable::uid = uid; - _p->prodml22__FluidCharacterizationTable::tableFormat = tableFormat; - _p->prodml22__FluidCharacterizationTable::name = name; + _p->prodml23__FluidCharacterizationTable::TableRow = TableRow; + _p->prodml23__FluidCharacterizationTable::uid = uid; + _p->prodml23__FluidCharacterizationTable::tableFormat = tableFormat; + _p->prodml23__FluidCharacterizationTable::name = name; } return _p; } -inline prodml22__FluidCharacterizationTable * soap_new_set_prodml22__FluidCharacterizationTable( +inline prodml23__FluidCharacterizationTable * soap_new_set_prodml23__FluidCharacterizationTable( struct soap *soap, - const std::vector & TableConstant, + const std::vector & TableConstant, std::string *Remark, - const std::vector & TableRow, + const std::vector & TableRow, const std::string& uid, const std::string& tableFormat, const std::string& name) { - prodml22__FluidCharacterizationTable *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTable(soap); + prodml23__FluidCharacterizationTable *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTable(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTable::TableConstant = TableConstant; - _p->prodml22__FluidCharacterizationTable::Remark = Remark; - _p->prodml22__FluidCharacterizationTable::TableRow = TableRow; - _p->prodml22__FluidCharacterizationTable::uid = uid; - _p->prodml22__FluidCharacterizationTable::tableFormat = tableFormat; - _p->prodml22__FluidCharacterizationTable::name = name; + _p->prodml23__FluidCharacterizationTable::TableConstant = TableConstant; + _p->prodml23__FluidCharacterizationTable::Remark = Remark; + _p->prodml23__FluidCharacterizationTable::TableRow = TableRow; + _p->prodml23__FluidCharacterizationTable::uid = uid; + _p->prodml23__FluidCharacterizationTable::tableFormat = tableFormat; + _p->prodml23__FluidCharacterizationTable::name = name; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable const*p) +inline int soap_write_prodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable ? "prodml22:FluidCharacterizationTable" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable ? "prodml23:FluidCharacterizationTable" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTable const*p) +inline int soap_PUT_prodml23__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTable const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable ? "prodml22:FluidCharacterizationTable" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable ? "prodml23:FluidCharacterizationTable" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTable const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTable const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable ? "prodml22:FluidCharacterizationTable" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable ? "prodml23:FluidCharacterizationTable" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTable const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTable const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable ? "prodml22:FluidCharacterizationTable" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTable", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable ? "prodml23:FluidCharacterizationTable" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationTable * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTable(struct soap*, prodml22__FluidCharacterizationTable *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTable * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTable(struct soap*, prodml23__FluidCharacterizationTable *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable *p) +inline int soap_read_prodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationTable(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationTable(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTable *p) +inline int soap_GET_prodml23__FluidCharacterizationTable(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTable *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTable(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTable(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationTable(struct soap *soap, prodml22__FluidCharacterizationTable *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationTable(struct soap *soap, prodml23__FluidCharacterizationTable *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTable(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTable(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationSource(struct soap*, const char*, int, const prodml22__FluidCharacterizationSource *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationSource * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationSource(struct soap*, const char*, prodml22__FluidCharacterizationSource *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationSource(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationSource(struct soap*, const char*, int, const prodml23__FluidCharacterizationSource *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationSource * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationSource(struct soap*, const char*, prodml23__FluidCharacterizationSource *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationSource(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationSource * soap_new_prodml22__FluidCharacterizationSource(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationSource * soap_new_prodml23__FluidCharacterizationSource(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationSource(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationSource(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationSource * soap_new_req_prodml22__FluidCharacterizationSource( +inline prodml23__FluidCharacterizationSource * soap_new_req_prodml23__FluidCharacterizationSource( struct soap *soap) { - prodml22__FluidCharacterizationSource *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationSource(soap); + prodml23__FluidCharacterizationSource *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationSource(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__FluidCharacterizationSource * soap_new_set_prodml22__FluidCharacterizationSource( +inline prodml23__FluidCharacterizationSource * soap_new_set_prodml23__FluidCharacterizationSource( struct soap *soap, const std::vector & FluidAnalysisTestReference, eml23__DataObjectReference *FluidAnalysis) { - prodml22__FluidCharacterizationSource *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationSource(soap); + prodml23__FluidCharacterizationSource *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationSource(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationSource::FluidAnalysisTestReference = FluidAnalysisTestReference; - _p->prodml22__FluidCharacterizationSource::FluidAnalysis = FluidAnalysis; + _p->prodml23__FluidCharacterizationSource::FluidAnalysisTestReference = FluidAnalysisTestReference; + _p->prodml23__FluidCharacterizationSource::FluidAnalysis = FluidAnalysis; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource const*p) +inline int soap_write_prodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource ? "prodml22:FluidCharacterizationSource" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource ? "prodml23:FluidCharacterizationSource" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml22__FluidCharacterizationSource const*p) +inline int soap_PUT_prodml23__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml23__FluidCharacterizationSource const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource ? "prodml22:FluidCharacterizationSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource ? "prodml23:FluidCharacterizationSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml22__FluidCharacterizationSource const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml23__FluidCharacterizationSource const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource ? "prodml22:FluidCharacterizationSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource ? "prodml23:FluidCharacterizationSource" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml22__FluidCharacterizationSource const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml23__FluidCharacterizationSource const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource ? "prodml22:FluidCharacterizationSource" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationSource", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource ? "prodml23:FluidCharacterizationSource" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationSource * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationSource(struct soap*, prodml22__FluidCharacterizationSource *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationSource * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationSource(struct soap*, prodml23__FluidCharacterizationSource *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource *p) +inline int soap_read_prodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationSource(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml22__FluidCharacterizationSource *p) +inline int soap_GET_prodml23__FluidCharacterizationSource(struct soap *soap, const char *URL, prodml23__FluidCharacterizationSource *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationSource(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationSource(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationSource(struct soap *soap, prodml22__FluidCharacterizationSource *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationSource(struct soap *soap, prodml23__FluidCharacterizationSource *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationSource(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationSource(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationParameterSet(struct soap*, const char*, int, const prodml22__FluidCharacterizationParameterSet *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationParameterSet(struct soap*, const char*, prodml22__FluidCharacterizationParameterSet *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationParameterSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationParameterSet(struct soap*, const char*, int, const prodml23__FluidCharacterizationParameterSet *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationParameterSet(struct soap*, const char*, prodml23__FluidCharacterizationParameterSet *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationParameterSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationParameterSet * soap_new_prodml22__FluidCharacterizationParameterSet(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationParameterSet * soap_new_prodml23__FluidCharacterizationParameterSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationParameterSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationParameterSet(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationParameterSet * soap_new_req_prodml22__FluidCharacterizationParameterSet( +inline prodml23__FluidCharacterizationParameterSet * soap_new_req_prodml23__FluidCharacterizationParameterSet( struct soap *soap, - const std::vector & FluidCharacterizationParameter) + const std::vector & FluidCharacterizationParameter) { - prodml22__FluidCharacterizationParameterSet *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationParameterSet(soap); + prodml23__FluidCharacterizationParameterSet *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationParameterSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter = FluidCharacterizationParameter; + _p->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter = FluidCharacterizationParameter; } return _p; } -inline prodml22__FluidCharacterizationParameterSet * soap_new_set_prodml22__FluidCharacterizationParameterSet( +inline prodml23__FluidCharacterizationParameterSet * soap_new_set_prodml23__FluidCharacterizationParameterSet( struct soap *soap, - const std::vector & FluidCharacterizationParameter) + const std::vector & FluidCharacterizationParameter) { - prodml22__FluidCharacterizationParameterSet *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationParameterSet(soap); + prodml23__FluidCharacterizationParameterSet *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationParameterSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationParameterSet::FluidCharacterizationParameter = FluidCharacterizationParameter; + _p->prodml23__FluidCharacterizationParameterSet::FluidCharacterizationParameter = FluidCharacterizationParameter; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet const*p) +inline int soap_write_prodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet ? "prodml22:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet ? "prodml23:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameterSet const*p) +inline int soap_PUT_prodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameterSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet ? "prodml22:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet ? "prodml23:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameterSet const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameterSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet ? "prodml22:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet ? "prodml23:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameterSet const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameterSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet ? "prodml22:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameterSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet ? "prodml23:FluidCharacterizationParameterSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationParameterSet(struct soap*, prodml22__FluidCharacterizationParameterSet *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationParameterSet(struct soap*, prodml23__FluidCharacterizationParameterSet *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet *p) +inline int soap_read_prodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationParameterSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationParameterSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameterSet *p) +inline int soap_GET_prodml23__FluidCharacterizationParameterSet(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameterSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationParameterSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationParameterSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationParameterSet(struct soap *soap, prodml22__FluidCharacterizationParameterSet *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationParameterSet(struct soap *soap, prodml23__FluidCharacterizationParameterSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationParameterSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationParameterSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationParameter(struct soap*, const char*, int, const prodml22__FluidCharacterizationParameter *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationParameter(struct soap*, const char*, prodml22__FluidCharacterizationParameter *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationParameter(struct soap*, const char*, int, const prodml23__FluidCharacterizationParameter *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationParameter * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationParameter(struct soap*, const char*, prodml23__FluidCharacterizationParameter *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationParameter * soap_new_prodml22__FluidCharacterizationParameter(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationParameter * soap_new_prodml23__FluidCharacterizationParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationParameter * soap_new_req_prodml22__FluidCharacterizationParameter( +inline prodml23__FluidCharacterizationParameter * soap_new_req_prodml23__FluidCharacterizationParameter( struct soap *soap, const std::string& Property, double value, const std::string& uom) { - prodml22__FluidCharacterizationParameter *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationParameter(soap); + prodml23__FluidCharacterizationParameter *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationParameter::Property = Property; - _p->prodml22__FluidCharacterizationParameter::value = value; - _p->prodml22__FluidCharacterizationParameter::uom = uom; + _p->prodml23__FluidCharacterizationParameter::Property = Property; + _p->prodml23__FluidCharacterizationParameter::value = value; + _p->prodml23__FluidCharacterizationParameter::uom = uom; } return _p; } -inline prodml22__FluidCharacterizationParameter * soap_new_set_prodml22__FluidCharacterizationParameter( +inline prodml23__FluidCharacterizationParameter * soap_new_set_prodml23__FluidCharacterizationParameter( struct soap *soap, const std::string& Property, - prodml22__ThermodynamicPhase *Phase, + prodml23__ThermodynamicPhase *Phase, const std::vector & KeywordAlias, std::string *name, double value, const std::string& uom, std::string *fluidComponentReference) { - prodml22__FluidCharacterizationParameter *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationParameter(soap); + prodml23__FluidCharacterizationParameter *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationParameter::Property = Property; - _p->prodml22__FluidCharacterizationParameter::Phase = Phase; - _p->prodml22__FluidCharacterizationParameter::KeywordAlias = KeywordAlias; - _p->prodml22__FluidCharacterizationParameter::name = name; - _p->prodml22__FluidCharacterizationParameter::value = value; - _p->prodml22__FluidCharacterizationParameter::uom = uom; - _p->prodml22__FluidCharacterizationParameter::fluidComponentReference = fluidComponentReference; + _p->prodml23__FluidCharacterizationParameter::Property = Property; + _p->prodml23__FluidCharacterizationParameter::Phase = Phase; + _p->prodml23__FluidCharacterizationParameter::KeywordAlias = KeywordAlias; + _p->prodml23__FluidCharacterizationParameter::name = name; + _p->prodml23__FluidCharacterizationParameter::value = value; + _p->prodml23__FluidCharacterizationParameter::uom = uom; + _p->prodml23__FluidCharacterizationParameter::fluidComponentReference = fluidComponentReference; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter const*p) +inline int soap_write_prodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter ? "prodml22:FluidCharacterizationParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter ? "prodml23:FluidCharacterizationParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameter const*p) +inline int soap_PUT_prodml23__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter ? "prodml22:FluidCharacterizationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter ? "prodml23:FluidCharacterizationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameter const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter ? "prodml22:FluidCharacterizationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter ? "prodml23:FluidCharacterizationParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameter const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter ? "prodml22:FluidCharacterizationParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter ? "prodml23:FluidCharacterizationParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationParameter * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationParameter(struct soap*, prodml22__FluidCharacterizationParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationParameter * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationParameter(struct soap*, prodml23__FluidCharacterizationParameter *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter *p) +inline int soap_read_prodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml22__FluidCharacterizationParameter *p) +inline int soap_GET_prodml23__FluidCharacterizationParameter(struct soap *soap, const char *URL, prodml23__FluidCharacterizationParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationParameter(struct soap *soap, prodml22__FluidCharacterizationParameter *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationParameter(struct soap *soap, prodml23__FluidCharacterizationParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationModel(struct soap*, const char*, int, const prodml22__FluidCharacterizationModel *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationModel * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationModel(struct soap*, const char*, prodml22__FluidCharacterizationModel *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationModel(struct soap*, const char*, int, const prodml23__FluidCharacterizationModel *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationModel * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationModel(struct soap*, const char*, prodml23__FluidCharacterizationModel *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationModel * soap_new_prodml22__FluidCharacterizationModel(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationModel * soap_new_prodml23__FluidCharacterizationModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationModel(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationModel * soap_new_req_prodml22__FluidCharacterizationModel( +inline prodml23__FluidCharacterizationModel * soap_new_req_prodml23__FluidCharacterizationModel( struct soap *soap, const std::string& uid) { - prodml22__FluidCharacterizationModel *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationModel(soap); + prodml23__FluidCharacterizationModel *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationModel::uid = uid; + _p->prodml23__FluidCharacterizationModel::uid = uid; } return _p; } -inline prodml22__FluidCharacterizationModel * soap_new_set_prodml22__FluidCharacterizationModel( +inline prodml23__FluidCharacterizationModel * soap_new_set_prodml23__FluidCharacterizationModel( struct soap *soap, std::string *Name, eml23__AbstractPressureValue *ReferencePressure, @@ -137181,106 +137153,106 @@ inline prodml22__FluidCharacterizationModel * soap_new_set_prodml22__FluidCharac eml23__ThermodynamicTemperatureMeasure *ReferenceTemperature, eml23__ThermodynamicTemperatureMeasure *ReferenceStockTankTemperature, std::string *Remark, - prodml22__AbstractPvtModel *ModelSpecification, - const std::vector & FluidCharacterizationTable, - prodml22__FluidCharacterizationParameterSet *FluidCharacterizationParameterSet, - const std::vector & ReferenceSeparatorStage, + prodml23__AbstractPvtModel *ModelSpecification, + const std::vector & FluidCharacterizationTable, + prodml23__FluidCharacterizationParameterSet *FluidCharacterizationParameterSet, + const std::vector & ReferenceSeparatorStage, const std::string& uid) { - prodml22__FluidCharacterizationModel *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationModel(soap); + prodml23__FluidCharacterizationModel *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationModel::Name = Name; - _p->prodml22__FluidCharacterizationModel::ReferencePressure = ReferencePressure; - _p->prodml22__FluidCharacterizationModel::ReferenceStockTankPressure = ReferenceStockTankPressure; - _p->prodml22__FluidCharacterizationModel::ReferenceTemperature = ReferenceTemperature; - _p->prodml22__FluidCharacterizationModel::ReferenceStockTankTemperature = ReferenceStockTankTemperature; - _p->prodml22__FluidCharacterizationModel::Remark = Remark; - _p->prodml22__FluidCharacterizationModel::ModelSpecification = ModelSpecification; - _p->prodml22__FluidCharacterizationModel::FluidCharacterizationTable = FluidCharacterizationTable; - _p->prodml22__FluidCharacterizationModel::FluidCharacterizationParameterSet = FluidCharacterizationParameterSet; - _p->prodml22__FluidCharacterizationModel::ReferenceSeparatorStage = ReferenceSeparatorStage; - _p->prodml22__FluidCharacterizationModel::uid = uid; + _p->prodml23__FluidCharacterizationModel::Name = Name; + _p->prodml23__FluidCharacterizationModel::ReferencePressure = ReferencePressure; + _p->prodml23__FluidCharacterizationModel::ReferenceStockTankPressure = ReferenceStockTankPressure; + _p->prodml23__FluidCharacterizationModel::ReferenceTemperature = ReferenceTemperature; + _p->prodml23__FluidCharacterizationModel::ReferenceStockTankTemperature = ReferenceStockTankTemperature; + _p->prodml23__FluidCharacterizationModel::Remark = Remark; + _p->prodml23__FluidCharacterizationModel::ModelSpecification = ModelSpecification; + _p->prodml23__FluidCharacterizationModel::FluidCharacterizationTable = FluidCharacterizationTable; + _p->prodml23__FluidCharacterizationModel::FluidCharacterizationParameterSet = FluidCharacterizationParameterSet; + _p->prodml23__FluidCharacterizationModel::ReferenceSeparatorStage = ReferenceSeparatorStage; + _p->prodml23__FluidCharacterizationModel::uid = uid; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel const*p) +inline int soap_write_prodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel ? "prodml22:FluidCharacterizationModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel ? "prodml23:FluidCharacterizationModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml22__FluidCharacterizationModel const*p) +inline int soap_PUT_prodml23__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml23__FluidCharacterizationModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel ? "prodml22:FluidCharacterizationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel ? "prodml23:FluidCharacterizationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml22__FluidCharacterizationModel const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml23__FluidCharacterizationModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel ? "prodml22:FluidCharacterizationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel ? "prodml23:FluidCharacterizationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml22__FluidCharacterizationModel const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml23__FluidCharacterizationModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel ? "prodml22:FluidCharacterizationModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel ? "prodml23:FluidCharacterizationModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationModel * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationModel(struct soap*, prodml22__FluidCharacterizationModel *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationModel * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationModel(struct soap*, prodml23__FluidCharacterizationModel *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel *p) +inline int soap_read_prodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml22__FluidCharacterizationModel *p) +inline int soap_GET_prodml23__FluidCharacterizationModel(struct soap *soap, const char *URL, prodml23__FluidCharacterizationModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationModel(struct soap *soap, prodml22__FluidCharacterizationModel *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationModel(struct soap *soap, prodml23__FluidCharacterizationModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterization(struct soap*, const char*, int, const prodml22__FluidCharacterization *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterization * SOAP_FMAC4 soap_in_prodml22__FluidCharacterization(struct soap*, const char*, prodml22__FluidCharacterization *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterization(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterization(struct soap*, const char*, int, const prodml23__FluidCharacterization *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterization * SOAP_FMAC4 soap_in_prodml23__FluidCharacterization(struct soap*, const char*, prodml23__FluidCharacterization *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterization(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterization * soap_new_prodml22__FluidCharacterization(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterization * soap_new_prodml23__FluidCharacterization(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterization(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterization(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterization * soap_new_req_prodml22__FluidCharacterization( +inline prodml23__FluidCharacterization * soap_new_req_prodml23__FluidCharacterization( struct soap *soap, eml23__Citation *Citation__1, const std::string& uuid__1, const std::string& schemaVersion__1) { - prodml22__FluidCharacterization *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterization(soap); + prodml23__FluidCharacterization *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterization(soap); if (_p) { _p->soap_default(soap); _p->eml23__AbstractObject::Citation = Citation__1; @@ -137290,17 +137262,17 @@ inline prodml22__FluidCharacterization * soap_new_req_prodml22__FluidCharacteriz return _p; } -inline prodml22__FluidCharacterization * soap_new_set_prodml22__FluidCharacterization( +inline prodml23__FluidCharacterization * soap_new_set_prodml23__FluidCharacterization( struct soap *soap, const std::vector & ApplicationTarget, std::string *Kind, std::string *IntendedUsage, eml23__DataObjectReference *RockFluidUnitInterpretation, eml23__AbstractTemperaturePressure *StandardConditions, - const std::vector & Source, - prodml22__FluidComponentCatalog *FluidComponentCatalog, - const std::vector & Model, - const std::vector & TableFormat, + const std::vector & Source, + prodml23__FluidComponentCatalog *FluidComponentCatalog, + const std::vector & Model, + const std::vector & TableFormat, std::string *Remark, eml23__DataObjectReference *FluidSystem, const std::vector & Aliases__1, @@ -137315,20 +137287,20 @@ inline prodml22__FluidCharacterization * soap_new_set_prodml22__FluidCharacteriz const std::string& schemaVersion__1, std::string *objectVersion__1) { - prodml22__FluidCharacterization *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterization(soap); + prodml23__FluidCharacterization *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterization(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterization::ApplicationTarget = ApplicationTarget; - _p->prodml22__FluidCharacterization::Kind = Kind; - _p->prodml22__FluidCharacterization::IntendedUsage = IntendedUsage; - _p->prodml22__FluidCharacterization::RockFluidUnitInterpretation = RockFluidUnitInterpretation; - _p->prodml22__FluidCharacterization::StandardConditions = StandardConditions; - _p->prodml22__FluidCharacterization::Source = Source; - _p->prodml22__FluidCharacterization::FluidComponentCatalog = FluidComponentCatalog; - _p->prodml22__FluidCharacterization::Model = Model; - _p->prodml22__FluidCharacterization::TableFormat = TableFormat; - _p->prodml22__FluidCharacterization::Remark = Remark; - _p->prodml22__FluidCharacterization::FluidSystem = FluidSystem; + _p->prodml23__FluidCharacterization::ApplicationTarget = ApplicationTarget; + _p->prodml23__FluidCharacterization::Kind = Kind; + _p->prodml23__FluidCharacterization::IntendedUsage = IntendedUsage; + _p->prodml23__FluidCharacterization::RockFluidUnitInterpretation = RockFluidUnitInterpretation; + _p->prodml23__FluidCharacterization::StandardConditions = StandardConditions; + _p->prodml23__FluidCharacterization::Source = Source; + _p->prodml23__FluidCharacterization::FluidComponentCatalog = FluidComponentCatalog; + _p->prodml23__FluidCharacterization::Model = Model; + _p->prodml23__FluidCharacterization::TableFormat = TableFormat; + _p->prodml23__FluidCharacterization::Remark = Remark; + _p->prodml23__FluidCharacterization::FluidSystem = FluidSystem; _p->eml23__AbstractObject::Aliases = Aliases__1; _p->eml23__AbstractObject::Citation = Citation__1; _p->eml23__AbstractObject::Existence = Existence__1; @@ -137344,86 +137316,86 @@ inline prodml22__FluidCharacterization * soap_new_set_prodml22__FluidCharacteriz return _p; } -inline int soap_write_prodml22__FluidCharacterization(struct soap *soap, prodml22__FluidCharacterization const*p) +inline int soap_write_prodml23__FluidCharacterization(struct soap *soap, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization ? "prodml22:FluidCharacterization" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization ? "prodml23:FluidCharacterization" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization const*p) +inline int soap_PUT_prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization ? "prodml22:FluidCharacterization" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization ? "prodml23:FluidCharacterization" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization const*p) +inline int soap_PATCH_prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization ? "prodml22:FluidCharacterization" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization ? "prodml23:FluidCharacterization" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization const*p) +inline int soap_POST_send_prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization ? "prodml22:FluidCharacterization" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterization", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization ? "prodml23:FluidCharacterization" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterization * SOAP_FMAC4 soap_get_prodml22__FluidCharacterization(struct soap*, prodml22__FluidCharacterization *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterization * SOAP_FMAC4 soap_get_prodml23__FluidCharacterization(struct soap*, prodml23__FluidCharacterization *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterization(struct soap *soap, prodml22__FluidCharacterization *p) +inline int soap_read_prodml23__FluidCharacterization(struct soap *soap, prodml23__FluidCharacterization *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterization(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterization(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterization(struct soap *soap, const char *URL, prodml22__FluidCharacterization *p) +inline int soap_GET_prodml23__FluidCharacterization(struct soap *soap, const char *URL, prodml23__FluidCharacterization *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterization(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterization(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterization(struct soap *soap, prodml22__FluidCharacterization *p) +inline int soap_POST_recv_prodml23__FluidCharacterization(struct soap *soap, prodml23__FluidCharacterization *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterization(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterization(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DindorukChristman_Undersaturated(struct soap*, const char*, int, const prodml22__DindorukChristman_Undersaturated *, const char*); -SOAP_FMAC3 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_in_prodml22__DindorukChristman_Undersaturated(struct soap*, const char*, prodml22__DindorukChristman_Undersaturated *, const char*); -SOAP_FMAC1 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_Undersaturated(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DindorukChristman_Undersaturated(struct soap*, const char*, int, const prodml23__DindorukChristman_Undersaturated *, const char*); +SOAP_FMAC3 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_in_prodml23__DindorukChristman_Undersaturated(struct soap*, const char*, prodml23__DindorukChristman_Undersaturated *, const char*); +SOAP_FMAC1 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_Undersaturated(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DindorukChristman_Undersaturated * soap_new_prodml22__DindorukChristman_Undersaturated(struct soap *soap, int n = -1) +inline prodml23__DindorukChristman_Undersaturated * soap_new_prodml23__DindorukChristman_Undersaturated(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DindorukChristman_Undersaturated(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DindorukChristman_Undersaturated(soap, n, NULL, NULL, NULL); } -inline prodml22__DindorukChristman_Undersaturated * soap_new_req_prodml22__DindorukChristman_Undersaturated( +inline prodml23__DindorukChristman_Undersaturated * soap_new_req_prodml23__DindorukChristman_Undersaturated( struct soap *soap) { - prodml22__DindorukChristman_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__DindorukChristman_Undersaturated(soap); + prodml23__DindorukChristman_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__DindorukChristman_Undersaturated(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__DindorukChristman_Undersaturated * soap_new_set_prodml22__DindorukChristman_Undersaturated( +inline prodml23__DindorukChristman_Undersaturated * soap_new_set_prodml23__DindorukChristman_Undersaturated( struct soap *soap, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio, @@ -137432,307 +137404,307 @@ inline prodml22__DindorukChristman_Undersaturated * soap_new_set_prodml22__Dindo eml23__PressureMeasure *BubblePointPressure__1, eml23__PressureMeasure *Pressure__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__DindorukChristman_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__DindorukChristman_Undersaturated(soap); + prodml23__DindorukChristman_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__DindorukChristman_Undersaturated(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DindorukChristman_Undersaturated::ReservoirTemperature = ReservoirTemperature; - _p->prodml22__DindorukChristman_Undersaturated::SolutionGasOilRatio = SolutionGasOilRatio; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__DindorukChristman_Undersaturated::ReservoirTemperature = ReservoirTemperature; + _p->prodml23__DindorukChristman_Undersaturated::SolutionGasOilRatio = SolutionGasOilRatio; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__DindorukChristman_Undersaturated(struct soap *soap, prodml22__DindorukChristman_Undersaturated const*p) +inline int soap_write_prodml23__DindorukChristman_Undersaturated(struct soap *soap, prodml23__DindorukChristman_Undersaturated const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated ? "prodml22:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated ? "prodml23:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml22__DindorukChristman_Undersaturated const*p) +inline int soap_PUT_prodml23__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml23__DindorukChristman_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated ? "prodml22:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated ? "prodml23:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml22__DindorukChristman_Undersaturated const*p) +inline int soap_PATCH_prodml23__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml23__DindorukChristman_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated ? "prodml22:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated ? "prodml23:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml22__DindorukChristman_Undersaturated const*p) +inline int soap_POST_send_prodml23__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml23__DindorukChristman_Undersaturated const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated ? "prodml22:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated ? "prodml23:DindorukChristman-Undersaturated" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_get_prodml22__DindorukChristman_Undersaturated(struct soap*, prodml22__DindorukChristman_Undersaturated *, const char*, const char*); +SOAP_FMAC3 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC4 soap_get_prodml23__DindorukChristman_Undersaturated(struct soap*, prodml23__DindorukChristman_Undersaturated *, const char*, const char*); -inline int soap_read_prodml22__DindorukChristman_Undersaturated(struct soap *soap, prodml22__DindorukChristman_Undersaturated *p) +inline int soap_read_prodml23__DindorukChristman_Undersaturated(struct soap *soap, prodml23__DindorukChristman_Undersaturated *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DindorukChristman_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DindorukChristman_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml22__DindorukChristman_Undersaturated *p) +inline int soap_GET_prodml23__DindorukChristman_Undersaturated(struct soap *soap, const char *URL, prodml23__DindorukChristman_Undersaturated *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DindorukChristman_Undersaturated(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DindorukChristman_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DindorukChristman_Undersaturated(struct soap *soap, prodml22__DindorukChristman_Undersaturated *p) +inline int soap_POST_recv_prodml23__DindorukChristman_Undersaturated(struct soap *soap, prodml23__DindorukChristman_Undersaturated *p) { - if (gsoap_eml2_3::soap_read_prodml22__DindorukChristman_Undersaturated(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DindorukChristman_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DindorukChristman_Dead(struct soap*, const char*, int, const prodml22__DindorukChristman_Dead *, const char*); -SOAP_FMAC3 prodml22__DindorukChristman_Dead * SOAP_FMAC4 soap_in_prodml22__DindorukChristman_Dead(struct soap*, const char*, prodml22__DindorukChristman_Dead *, const char*); -SOAP_FMAC1 prodml22__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_Dead(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DindorukChristman_Dead(struct soap*, const char*, int, const prodml23__DindorukChristman_Dead *, const char*); +SOAP_FMAC3 prodml23__DindorukChristman_Dead * SOAP_FMAC4 soap_in_prodml23__DindorukChristman_Dead(struct soap*, const char*, prodml23__DindorukChristman_Dead *, const char*); +SOAP_FMAC1 prodml23__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_Dead(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DindorukChristman_Dead * soap_new_prodml22__DindorukChristman_Dead(struct soap *soap, int n = -1) +inline prodml23__DindorukChristman_Dead * soap_new_prodml23__DindorukChristman_Dead(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DindorukChristman_Dead(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DindorukChristman_Dead(soap, n, NULL, NULL, NULL); } -inline prodml22__DindorukChristman_Dead * soap_new_req_prodml22__DindorukChristman_Dead( +inline prodml23__DindorukChristman_Dead * soap_new_req_prodml23__DindorukChristman_Dead( struct soap *soap) { - prodml22__DindorukChristman_Dead *_p = gsoap_eml2_3::soap_new_prodml22__DindorukChristman_Dead(soap); + prodml23__DindorukChristman_Dead *_p = gsoap_eml2_3::soap_new_prodml23__DindorukChristman_Dead(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__DindorukChristman_Dead * soap_new_set_prodml22__DindorukChristman_Dead( +inline prodml23__DindorukChristman_Dead * soap_new_set_prodml23__DindorukChristman_Dead( struct soap *soap, eml23__APIGravityMeasure *OilGravityAtStockTank, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__DindorukChristman_Dead *_p = gsoap_eml2_3::soap_new_prodml22__DindorukChristman_Dead(soap); + prodml23__DindorukChristman_Dead *_p = gsoap_eml2_3::soap_new_prodml23__DindorukChristman_Dead(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DindorukChristman_Dead::OilGravityAtStockTank = OilGravityAtStockTank; - _p->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__DindorukChristman_Dead::OilGravityAtStockTank = OilGravityAtStockTank; + _p->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__DindorukChristman_Dead(struct soap *soap, prodml22__DindorukChristman_Dead const*p) +inline int soap_write_prodml23__DindorukChristman_Dead(struct soap *soap, prodml23__DindorukChristman_Dead const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead ? "prodml22:DindorukChristman-Dead" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead ? "prodml23:DindorukChristman-Dead" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml22__DindorukChristman_Dead const*p) +inline int soap_PUT_prodml23__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml23__DindorukChristman_Dead const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead ? "prodml22:DindorukChristman-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead ? "prodml23:DindorukChristman-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml22__DindorukChristman_Dead const*p) +inline int soap_PATCH_prodml23__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml23__DindorukChristman_Dead const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead ? "prodml22:DindorukChristman-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead ? "prodml23:DindorukChristman-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml22__DindorukChristman_Dead const*p) +inline int soap_POST_send_prodml23__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml23__DindorukChristman_Dead const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead ? "prodml22:DindorukChristman-Dead" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead ? "prodml23:DindorukChristman-Dead" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DindorukChristman_Dead * SOAP_FMAC4 soap_get_prodml22__DindorukChristman_Dead(struct soap*, prodml22__DindorukChristman_Dead *, const char*, const char*); +SOAP_FMAC3 prodml23__DindorukChristman_Dead * SOAP_FMAC4 soap_get_prodml23__DindorukChristman_Dead(struct soap*, prodml23__DindorukChristman_Dead *, const char*, const char*); -inline int soap_read_prodml22__DindorukChristman_Dead(struct soap *soap, prodml22__DindorukChristman_Dead *p) +inline int soap_read_prodml23__DindorukChristman_Dead(struct soap *soap, prodml23__DindorukChristman_Dead *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DindorukChristman_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DindorukChristman_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml22__DindorukChristman_Dead *p) +inline int soap_GET_prodml23__DindorukChristman_Dead(struct soap *soap, const char *URL, prodml23__DindorukChristman_Dead *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DindorukChristman_Dead(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DindorukChristman_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DindorukChristman_Dead(struct soap *soap, prodml22__DindorukChristman_Dead *p) +inline int soap_POST_recv_prodml23__DindorukChristman_Dead(struct soap *soap, prodml23__DindorukChristman_Dead *p) { - if (gsoap_eml2_3::soap_read_prodml22__DindorukChristman_Dead(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DindorukChristman_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DindorukChristman_BubblePoint(struct soap*, const char*, int, const prodml22__DindorukChristman_BubblePoint *, const char*); -SOAP_FMAC3 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_in_prodml22__DindorukChristman_BubblePoint(struct soap*, const char*, prodml22__DindorukChristman_BubblePoint *, const char*); -SOAP_FMAC1 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_BubblePoint(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DindorukChristman_BubblePoint(struct soap*, const char*, int, const prodml23__DindorukChristman_BubblePoint *, const char*); +SOAP_FMAC3 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_in_prodml23__DindorukChristman_BubblePoint(struct soap*, const char*, prodml23__DindorukChristman_BubblePoint *, const char*); +SOAP_FMAC1 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_BubblePoint(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DindorukChristman_BubblePoint * soap_new_prodml22__DindorukChristman_BubblePoint(struct soap *soap, int n = -1) +inline prodml23__DindorukChristman_BubblePoint * soap_new_prodml23__DindorukChristman_BubblePoint(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DindorukChristman_BubblePoint(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DindorukChristman_BubblePoint(soap, n, NULL, NULL, NULL); } -inline prodml22__DindorukChristman_BubblePoint * soap_new_req_prodml22__DindorukChristman_BubblePoint( +inline prodml23__DindorukChristman_BubblePoint * soap_new_req_prodml23__DindorukChristman_BubblePoint( struct soap *soap) { - prodml22__DindorukChristman_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__DindorukChristman_BubblePoint(soap); + prodml23__DindorukChristman_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__DindorukChristman_BubblePoint(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__DindorukChristman_BubblePoint * soap_new_set_prodml22__DindorukChristman_BubblePoint( +inline prodml23__DindorukChristman_BubblePoint * soap_new_set_prodml23__DindorukChristman_BubblePoint( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__DindorukChristman_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__DindorukChristman_BubblePoint(soap); + prodml23__DindorukChristman_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__DindorukChristman_BubblePoint(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__DindorukChristman_BubblePoint(struct soap *soap, prodml22__DindorukChristman_BubblePoint const*p) +inline int soap_write_prodml23__DindorukChristman_BubblePoint(struct soap *soap, prodml23__DindorukChristman_BubblePoint const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint ? "prodml22:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint ? "prodml23:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml22__DindorukChristman_BubblePoint const*p) +inline int soap_PUT_prodml23__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml23__DindorukChristman_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint ? "prodml22:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint ? "prodml23:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml22__DindorukChristman_BubblePoint const*p) +inline int soap_PATCH_prodml23__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml23__DindorukChristman_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint ? "prodml22:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint ? "prodml23:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml22__DindorukChristman_BubblePoint const*p) +inline int soap_POST_send_prodml23__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml23__DindorukChristman_BubblePoint const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint ? "prodml22:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DindorukChristman-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint ? "prodml23:DindorukChristman-BubblePoint" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_get_prodml22__DindorukChristman_BubblePoint(struct soap*, prodml22__DindorukChristman_BubblePoint *, const char*, const char*); +SOAP_FMAC3 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC4 soap_get_prodml23__DindorukChristman_BubblePoint(struct soap*, prodml23__DindorukChristman_BubblePoint *, const char*, const char*); -inline int soap_read_prodml22__DindorukChristman_BubblePoint(struct soap *soap, prodml22__DindorukChristman_BubblePoint *p) +inline int soap_read_prodml23__DindorukChristman_BubblePoint(struct soap *soap, prodml23__DindorukChristman_BubblePoint *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DindorukChristman_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DindorukChristman_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml22__DindorukChristman_BubblePoint *p) +inline int soap_GET_prodml23__DindorukChristman_BubblePoint(struct soap *soap, const char *URL, prodml23__DindorukChristman_BubblePoint *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DindorukChristman_BubblePoint(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DindorukChristman_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DindorukChristman_BubblePoint(struct soap *soap, prodml22__DindorukChristman_BubblePoint *p) +inline int soap_POST_recv_prodml23__DindorukChristman_BubblePoint(struct soap *soap, prodml23__DindorukChristman_BubblePoint *p) { - if (gsoap_eml2_3::soap_read_prodml22__DindorukChristman_BubblePoint(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DindorukChristman_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeGhetto_Undersaturated(struct soap*, const char*, int, const prodml22__DeGhetto_Undersaturated *, const char*); -SOAP_FMAC3 prodml22__DeGhetto_Undersaturated * SOAP_FMAC4 soap_in_prodml22__DeGhetto_Undersaturated(struct soap*, const char*, prodml22__DeGhetto_Undersaturated *, const char*); -SOAP_FMAC1 prodml22__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_Undersaturated(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeGhetto_Undersaturated(struct soap*, const char*, int, const prodml23__DeGhetto_Undersaturated *, const char*); +SOAP_FMAC3 prodml23__DeGhetto_Undersaturated * SOAP_FMAC4 soap_in_prodml23__DeGhetto_Undersaturated(struct soap*, const char*, prodml23__DeGhetto_Undersaturated *, const char*); +SOAP_FMAC1 prodml23__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_Undersaturated(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeGhetto_Undersaturated * soap_new_prodml22__DeGhetto_Undersaturated(struct soap *soap, int n = -1) +inline prodml23__DeGhetto_Undersaturated * soap_new_prodml23__DeGhetto_Undersaturated(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeGhetto_Undersaturated(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeGhetto_Undersaturated(soap, n, NULL, NULL, NULL); } -inline prodml22__DeGhetto_Undersaturated * soap_new_req_prodml22__DeGhetto_Undersaturated( +inline prodml23__DeGhetto_Undersaturated * soap_new_req_prodml23__DeGhetto_Undersaturated( struct soap *soap) { - prodml22__DeGhetto_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__DeGhetto_Undersaturated(soap); + prodml23__DeGhetto_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__DeGhetto_Undersaturated(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__DeGhetto_Undersaturated * soap_new_set_prodml22__DeGhetto_Undersaturated( +inline prodml23__DeGhetto_Undersaturated * soap_new_set_prodml23__DeGhetto_Undersaturated( struct soap *soap, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio, @@ -137741,986 +137713,986 @@ inline prodml22__DeGhetto_Undersaturated * soap_new_set_prodml22__DeGhetto_Under eml23__PressureMeasure *BubblePointPressure__1, eml23__PressureMeasure *Pressure__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__DeGhetto_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__DeGhetto_Undersaturated(soap); + prodml23__DeGhetto_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__DeGhetto_Undersaturated(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeGhetto_Undersaturated::ReservoirTemperature = ReservoirTemperature; - _p->prodml22__DeGhetto_Undersaturated::SolutionGasOilRatio = SolutionGasOilRatio; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__DeGhetto_Undersaturated::ReservoirTemperature = ReservoirTemperature; + _p->prodml23__DeGhetto_Undersaturated::SolutionGasOilRatio = SolutionGasOilRatio; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__DeGhetto_Undersaturated(struct soap *soap, prodml22__DeGhetto_Undersaturated const*p) +inline int soap_write_prodml23__DeGhetto_Undersaturated(struct soap *soap, prodml23__DeGhetto_Undersaturated const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated ? "prodml22:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated ? "prodml23:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml22__DeGhetto_Undersaturated const*p) +inline int soap_PUT_prodml23__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml23__DeGhetto_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated ? "prodml22:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated ? "prodml23:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml22__DeGhetto_Undersaturated const*p) +inline int soap_PATCH_prodml23__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml23__DeGhetto_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated ? "prodml22:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated ? "prodml23:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml22__DeGhetto_Undersaturated const*p) +inline int soap_POST_send_prodml23__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml23__DeGhetto_Undersaturated const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated ? "prodml22:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated ? "prodml23:DeGhetto-Undersaturated" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeGhetto_Undersaturated * SOAP_FMAC4 soap_get_prodml22__DeGhetto_Undersaturated(struct soap*, prodml22__DeGhetto_Undersaturated *, const char*, const char*); +SOAP_FMAC3 prodml23__DeGhetto_Undersaturated * SOAP_FMAC4 soap_get_prodml23__DeGhetto_Undersaturated(struct soap*, prodml23__DeGhetto_Undersaturated *, const char*, const char*); -inline int soap_read_prodml22__DeGhetto_Undersaturated(struct soap *soap, prodml22__DeGhetto_Undersaturated *p) +inline int soap_read_prodml23__DeGhetto_Undersaturated(struct soap *soap, prodml23__DeGhetto_Undersaturated *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeGhetto_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeGhetto_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml22__DeGhetto_Undersaturated *p) +inline int soap_GET_prodml23__DeGhetto_Undersaturated(struct soap *soap, const char *URL, prodml23__DeGhetto_Undersaturated *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeGhetto_Undersaturated(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeGhetto_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeGhetto_Undersaturated(struct soap *soap, prodml22__DeGhetto_Undersaturated *p) +inline int soap_POST_recv_prodml23__DeGhetto_Undersaturated(struct soap *soap, prodml23__DeGhetto_Undersaturated *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeGhetto_Undersaturated(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeGhetto_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeGhetto_Dead(struct soap*, const char*, int, const prodml22__DeGhetto_Dead *, const char*); -SOAP_FMAC3 prodml22__DeGhetto_Dead * SOAP_FMAC4 soap_in_prodml22__DeGhetto_Dead(struct soap*, const char*, prodml22__DeGhetto_Dead *, const char*); -SOAP_FMAC1 prodml22__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_Dead(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeGhetto_Dead(struct soap*, const char*, int, const prodml23__DeGhetto_Dead *, const char*); +SOAP_FMAC3 prodml23__DeGhetto_Dead * SOAP_FMAC4 soap_in_prodml23__DeGhetto_Dead(struct soap*, const char*, prodml23__DeGhetto_Dead *, const char*); +SOAP_FMAC1 prodml23__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_Dead(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeGhetto_Dead * soap_new_prodml22__DeGhetto_Dead(struct soap *soap, int n = -1) +inline prodml23__DeGhetto_Dead * soap_new_prodml23__DeGhetto_Dead(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeGhetto_Dead(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeGhetto_Dead(soap, n, NULL, NULL, NULL); } -inline prodml22__DeGhetto_Dead * soap_new_req_prodml22__DeGhetto_Dead( +inline prodml23__DeGhetto_Dead * soap_new_req_prodml23__DeGhetto_Dead( struct soap *soap) { - prodml22__DeGhetto_Dead *_p = gsoap_eml2_3::soap_new_prodml22__DeGhetto_Dead(soap); + prodml23__DeGhetto_Dead *_p = gsoap_eml2_3::soap_new_prodml23__DeGhetto_Dead(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__DeGhetto_Dead * soap_new_set_prodml22__DeGhetto_Dead( +inline prodml23__DeGhetto_Dead * soap_new_set_prodml23__DeGhetto_Dead( struct soap *soap, eml23__APIGravityMeasure *OilAPIAtStockTank, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__DeGhetto_Dead *_p = gsoap_eml2_3::soap_new_prodml22__DeGhetto_Dead(soap); + prodml23__DeGhetto_Dead *_p = gsoap_eml2_3::soap_new_prodml23__DeGhetto_Dead(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__DeGhetto_Dead::OilAPIAtStockTank = OilAPIAtStockTank; - _p->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__DeGhetto_Dead::OilAPIAtStockTank = OilAPIAtStockTank; + _p->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__DeGhetto_Dead(struct soap *soap, prodml22__DeGhetto_Dead const*p) +inline int soap_write_prodml23__DeGhetto_Dead(struct soap *soap, prodml23__DeGhetto_Dead const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead ? "prodml22:DeGhetto-Dead" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead ? "prodml23:DeGhetto-Dead" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeGhetto_Dead(struct soap *soap, const char *URL, prodml22__DeGhetto_Dead const*p) +inline int soap_PUT_prodml23__DeGhetto_Dead(struct soap *soap, const char *URL, prodml23__DeGhetto_Dead const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead ? "prodml22:DeGhetto-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead ? "prodml23:DeGhetto-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeGhetto_Dead(struct soap *soap, const char *URL, prodml22__DeGhetto_Dead const*p) +inline int soap_PATCH_prodml23__DeGhetto_Dead(struct soap *soap, const char *URL, prodml23__DeGhetto_Dead const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead ? "prodml22:DeGhetto-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead ? "prodml23:DeGhetto-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeGhetto_Dead(struct soap *soap, const char *URL, prodml22__DeGhetto_Dead const*p) +inline int soap_POST_send_prodml23__DeGhetto_Dead(struct soap *soap, const char *URL, prodml23__DeGhetto_Dead const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead ? "prodml22:DeGhetto-Dead" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead ? "prodml23:DeGhetto-Dead" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeGhetto_Dead * SOAP_FMAC4 soap_get_prodml22__DeGhetto_Dead(struct soap*, prodml22__DeGhetto_Dead *, const char*, const char*); +SOAP_FMAC3 prodml23__DeGhetto_Dead * SOAP_FMAC4 soap_get_prodml23__DeGhetto_Dead(struct soap*, prodml23__DeGhetto_Dead *, const char*, const char*); -inline int soap_read_prodml22__DeGhetto_Dead(struct soap *soap, prodml22__DeGhetto_Dead *p) +inline int soap_read_prodml23__DeGhetto_Dead(struct soap *soap, prodml23__DeGhetto_Dead *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeGhetto_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeGhetto_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeGhetto_Dead(struct soap *soap, const char *URL, prodml22__DeGhetto_Dead *p) +inline int soap_GET_prodml23__DeGhetto_Dead(struct soap *soap, const char *URL, prodml23__DeGhetto_Dead *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeGhetto_Dead(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeGhetto_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeGhetto_Dead(struct soap *soap, prodml22__DeGhetto_Dead *p) +inline int soap_POST_recv_prodml23__DeGhetto_Dead(struct soap *soap, prodml23__DeGhetto_Dead *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeGhetto_Dead(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeGhetto_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__DeGhetto_BubblePoint(struct soap*, const char*, int, const prodml22__DeGhetto_BubblePoint *, const char*); -SOAP_FMAC3 prodml22__DeGhetto_BubblePoint * SOAP_FMAC4 soap_in_prodml22__DeGhetto_BubblePoint(struct soap*, const char*, prodml22__DeGhetto_BubblePoint *, const char*); -SOAP_FMAC1 prodml22__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_BubblePoint(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__DeGhetto_BubblePoint(struct soap*, const char*, int, const prodml23__DeGhetto_BubblePoint *, const char*); +SOAP_FMAC3 prodml23__DeGhetto_BubblePoint * SOAP_FMAC4 soap_in_prodml23__DeGhetto_BubblePoint(struct soap*, const char*, prodml23__DeGhetto_BubblePoint *, const char*); +SOAP_FMAC1 prodml23__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_BubblePoint(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__DeGhetto_BubblePoint * soap_new_prodml22__DeGhetto_BubblePoint(struct soap *soap, int n = -1) +inline prodml23__DeGhetto_BubblePoint * soap_new_prodml23__DeGhetto_BubblePoint(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__DeGhetto_BubblePoint(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__DeGhetto_BubblePoint(soap, n, NULL, NULL, NULL); } -inline prodml22__DeGhetto_BubblePoint * soap_new_req_prodml22__DeGhetto_BubblePoint( +inline prodml23__DeGhetto_BubblePoint * soap_new_req_prodml23__DeGhetto_BubblePoint( struct soap *soap) { - prodml22__DeGhetto_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__DeGhetto_BubblePoint(soap); + prodml23__DeGhetto_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__DeGhetto_BubblePoint(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__DeGhetto_BubblePoint * soap_new_set_prodml22__DeGhetto_BubblePoint( +inline prodml23__DeGhetto_BubblePoint * soap_new_set_prodml23__DeGhetto_BubblePoint( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__DeGhetto_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__DeGhetto_BubblePoint(soap); + prodml23__DeGhetto_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__DeGhetto_BubblePoint(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__DeGhetto_BubblePoint(struct soap *soap, prodml22__DeGhetto_BubblePoint const*p) +inline int soap_write_prodml23__DeGhetto_BubblePoint(struct soap *soap, prodml23__DeGhetto_BubblePoint const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint ? "prodml22:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint ? "prodml23:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml22__DeGhetto_BubblePoint const*p) +inline int soap_PUT_prodml23__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml23__DeGhetto_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint ? "prodml22:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint ? "prodml23:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml22__DeGhetto_BubblePoint const*p) +inline int soap_PATCH_prodml23__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml23__DeGhetto_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint ? "prodml22:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint ? "prodml23:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml22__DeGhetto_BubblePoint const*p) +inline int soap_POST_send_prodml23__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml23__DeGhetto_BubblePoint const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint ? "prodml22:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:DeGhetto-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint ? "prodml23:DeGhetto-BubblePoint" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__DeGhetto_BubblePoint * SOAP_FMAC4 soap_get_prodml22__DeGhetto_BubblePoint(struct soap*, prodml22__DeGhetto_BubblePoint *, const char*, const char*); +SOAP_FMAC3 prodml23__DeGhetto_BubblePoint * SOAP_FMAC4 soap_get_prodml23__DeGhetto_BubblePoint(struct soap*, prodml23__DeGhetto_BubblePoint *, const char*, const char*); -inline int soap_read_prodml22__DeGhetto_BubblePoint(struct soap *soap, prodml22__DeGhetto_BubblePoint *p) +inline int soap_read_prodml23__DeGhetto_BubblePoint(struct soap *soap, prodml23__DeGhetto_BubblePoint *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__DeGhetto_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__DeGhetto_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml22__DeGhetto_BubblePoint *p) +inline int soap_GET_prodml23__DeGhetto_BubblePoint(struct soap *soap, const char *URL, prodml23__DeGhetto_BubblePoint *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__DeGhetto_BubblePoint(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__DeGhetto_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__DeGhetto_BubblePoint(struct soap *soap, prodml22__DeGhetto_BubblePoint *p) +inline int soap_POST_recv_prodml23__DeGhetto_BubblePoint(struct soap *soap, prodml23__DeGhetto_BubblePoint *p) { - if (gsoap_eml2_3::soap_read_prodml22__DeGhetto_BubblePoint(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__DeGhetto_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomPvtModelParameter(struct soap*, const char*, int, const prodml22__CustomPvtModelParameter *, const char*); -SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml22__CustomPvtModelParameter(struct soap*, const char*, prodml22__CustomPvtModelParameter *, const char*); -SOAP_FMAC1 prodml22__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__CustomPvtModelParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomPvtModelParameter(struct soap*, const char*, int, const prodml23__CustomPvtModelParameter *, const char*); +SOAP_FMAC3 prodml23__CustomPvtModelParameter * SOAP_FMAC4 soap_in_prodml23__CustomPvtModelParameter(struct soap*, const char*, prodml23__CustomPvtModelParameter *, const char*); +SOAP_FMAC1 prodml23__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml23__CustomPvtModelParameter(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomPvtModelParameter * soap_new_prodml22__CustomPvtModelParameter(struct soap *soap, int n = -1) +inline prodml23__CustomPvtModelParameter * soap_new_prodml23__CustomPvtModelParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomPvtModelParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomPvtModelParameter(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomPvtModelParameter * soap_new_req_prodml22__CustomPvtModelParameter( +inline prodml23__CustomPvtModelParameter * soap_new_req_prodml23__CustomPvtModelParameter( struct soap *soap, eml23__ExtensionNameValue *CustomParameterValue) { - prodml22__CustomPvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml22__CustomPvtModelParameter(soap); + prodml23__CustomPvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml23__CustomPvtModelParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomPvtModelParameter::CustomParameterValue = CustomParameterValue; + _p->prodml23__CustomPvtModelParameter::CustomParameterValue = CustomParameterValue; } return _p; } -inline prodml22__CustomPvtModelParameter * soap_new_set_prodml22__CustomPvtModelParameter( +inline prodml23__CustomPvtModelParameter * soap_new_set_prodml23__CustomPvtModelParameter( struct soap *soap, eml23__ExtensionNameValue *CustomParameterValue, std::string *fluidComponentReference) { - prodml22__CustomPvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml22__CustomPvtModelParameter(soap); + prodml23__CustomPvtModelParameter *_p = gsoap_eml2_3::soap_new_prodml23__CustomPvtModelParameter(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomPvtModelParameter::CustomParameterValue = CustomParameterValue; - _p->prodml22__CustomPvtModelParameter::fluidComponentReference = fluidComponentReference; + _p->prodml23__CustomPvtModelParameter::CustomParameterValue = CustomParameterValue; + _p->prodml23__CustomPvtModelParameter::fluidComponentReference = fluidComponentReference; } return _p; } -inline int soap_write_prodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter const*p) +inline int soap_write_prodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter ? "prodml22:CustomPvtModelParameter" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter ? "prodml23:CustomPvtModelParameter" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml22__CustomPvtModelParameter const*p) +inline int soap_PUT_prodml23__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml23__CustomPvtModelParameter const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter ? "prodml22:CustomPvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter ? "prodml23:CustomPvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml22__CustomPvtModelParameter const*p) +inline int soap_PATCH_prodml23__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml23__CustomPvtModelParameter const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter ? "prodml22:CustomPvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter ? "prodml23:CustomPvtModelParameter" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml22__CustomPvtModelParameter const*p) +inline int soap_POST_send_prodml23__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml23__CustomPvtModelParameter const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter ? "prodml22:CustomPvtModelParameter" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelParameter", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter ? "prodml23:CustomPvtModelParameter" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomPvtModelParameter * SOAP_FMAC4 soap_get_prodml22__CustomPvtModelParameter(struct soap*, prodml22__CustomPvtModelParameter *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomPvtModelParameter * SOAP_FMAC4 soap_get_prodml23__CustomPvtModelParameter(struct soap*, prodml23__CustomPvtModelParameter *, const char*, const char*); -inline int soap_read_prodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter *p) +inline int soap_read_prodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomPvtModelParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomPvtModelParameter(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml22__CustomPvtModelParameter *p) +inline int soap_GET_prodml23__CustomPvtModelParameter(struct soap *soap, const char *URL, prodml23__CustomPvtModelParameter *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomPvtModelParameter(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomPvtModelParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomPvtModelParameter(struct soap *soap, prodml22__CustomPvtModelParameter *p) +inline int soap_POST_recv_prodml23__CustomPvtModelParameter(struct soap *soap, prodml23__CustomPvtModelParameter *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomPvtModelParameter(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomPvtModelParameter(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CustomPvtModelExtension(struct soap*, const char*, int, const prodml22__CustomPvtModelExtension *, const char*); -SOAP_FMAC3 prodml22__CustomPvtModelExtension * SOAP_FMAC4 soap_in_prodml22__CustomPvtModelExtension(struct soap*, const char*, prodml22__CustomPvtModelExtension *, const char*); -SOAP_FMAC1 prodml22__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodml22__CustomPvtModelExtension(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CustomPvtModelExtension(struct soap*, const char*, int, const prodml23__CustomPvtModelExtension *, const char*); +SOAP_FMAC3 prodml23__CustomPvtModelExtension * SOAP_FMAC4 soap_in_prodml23__CustomPvtModelExtension(struct soap*, const char*, prodml23__CustomPvtModelExtension *, const char*); +SOAP_FMAC1 prodml23__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodml23__CustomPvtModelExtension(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CustomPvtModelExtension * soap_new_prodml22__CustomPvtModelExtension(struct soap *soap, int n = -1) +inline prodml23__CustomPvtModelExtension * soap_new_prodml23__CustomPvtModelExtension(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CustomPvtModelExtension(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CustomPvtModelExtension(soap, n, NULL, NULL, NULL); } -inline prodml22__CustomPvtModelExtension * soap_new_req_prodml22__CustomPvtModelExtension( +inline prodml23__CustomPvtModelExtension * soap_new_req_prodml23__CustomPvtModelExtension( struct soap *soap) { - prodml22__CustomPvtModelExtension *_p = gsoap_eml2_3::soap_new_prodml22__CustomPvtModelExtension(soap); + prodml23__CustomPvtModelExtension *_p = gsoap_eml2_3::soap_new_prodml23__CustomPvtModelExtension(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__CustomPvtModelExtension * soap_new_set_prodml22__CustomPvtModelExtension( +inline prodml23__CustomPvtModelExtension * soap_new_set_prodml23__CustomPvtModelExtension( struct soap *soap, std::string *Description, - const std::vector & CustomPvtModelParameter) + const std::vector & CustomPvtModelParameter) { - prodml22__CustomPvtModelExtension *_p = gsoap_eml2_3::soap_new_prodml22__CustomPvtModelExtension(soap); + prodml23__CustomPvtModelExtension *_p = gsoap_eml2_3::soap_new_prodml23__CustomPvtModelExtension(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CustomPvtModelExtension::Description = Description; - _p->prodml22__CustomPvtModelExtension::CustomPvtModelParameter = CustomPvtModelParameter; + _p->prodml23__CustomPvtModelExtension::Description = Description; + _p->prodml23__CustomPvtModelExtension::CustomPvtModelParameter = CustomPvtModelParameter; } return _p; } -inline int soap_write_prodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension const*p) +inline int soap_write_prodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension ? "prodml22:CustomPvtModelExtension" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension ? "prodml23:CustomPvtModelExtension" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml22__CustomPvtModelExtension const*p) +inline int soap_PUT_prodml23__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml23__CustomPvtModelExtension const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension ? "prodml22:CustomPvtModelExtension" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension ? "prodml23:CustomPvtModelExtension" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml22__CustomPvtModelExtension const*p) +inline int soap_PATCH_prodml23__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml23__CustomPvtModelExtension const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension ? "prodml22:CustomPvtModelExtension" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension ? "prodml23:CustomPvtModelExtension" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml22__CustomPvtModelExtension const*p) +inline int soap_POST_send_prodml23__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml23__CustomPvtModelExtension const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension ? "prodml22:CustomPvtModelExtension" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CustomPvtModelExtension", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension ? "prodml23:CustomPvtModelExtension" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CustomPvtModelExtension * SOAP_FMAC4 soap_get_prodml22__CustomPvtModelExtension(struct soap*, prodml22__CustomPvtModelExtension *, const char*, const char*); +SOAP_FMAC3 prodml23__CustomPvtModelExtension * SOAP_FMAC4 soap_get_prodml23__CustomPvtModelExtension(struct soap*, prodml23__CustomPvtModelExtension *, const char*, const char*); -inline int soap_read_prodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension *p) +inline int soap_read_prodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CustomPvtModelExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CustomPvtModelExtension(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml22__CustomPvtModelExtension *p) +inline int soap_GET_prodml23__CustomPvtModelExtension(struct soap *soap, const char *URL, prodml23__CustomPvtModelExtension *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CustomPvtModelExtension(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CustomPvtModelExtension(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CustomPvtModelExtension(struct soap *soap, prodml22__CustomPvtModelExtension *p) +inline int soap_POST_recv_prodml23__CustomPvtModelExtension(struct soap *soap, prodml23__CustomPvtModelExtension *p) { - if (gsoap_eml2_3::soap_read_prodml22__CustomPvtModelExtension(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CustomPvtModelExtension(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CSPedersen87(struct soap*, const char*, int, const prodml22__CSPedersen87 *, const char*); -SOAP_FMAC3 prodml22__CSPedersen87 * SOAP_FMAC4 soap_in_prodml22__CSPedersen87(struct soap*, const char*, prodml22__CSPedersen87 *, const char*); -SOAP_FMAC1 prodml22__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml22__CSPedersen87(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CSPedersen87(struct soap*, const char*, int, const prodml23__CSPedersen87 *, const char*); +SOAP_FMAC3 prodml23__CSPedersen87 * SOAP_FMAC4 soap_in_prodml23__CSPedersen87(struct soap*, const char*, prodml23__CSPedersen87 *, const char*); +SOAP_FMAC1 prodml23__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml23__CSPedersen87(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CSPedersen87 * soap_new_prodml22__CSPedersen87(struct soap *soap, int n = -1) +inline prodml23__CSPedersen87 * soap_new_prodml23__CSPedersen87(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CSPedersen87(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CSPedersen87(soap, n, NULL, NULL, NULL); } -inline prodml22__CSPedersen87 * soap_new_req_prodml22__CSPedersen87( +inline prodml23__CSPedersen87 * soap_new_req_prodml23__CSPedersen87( struct soap *soap, - prodml22__ThermodynamicPhase phase__1) + prodml23__ThermodynamicPhase phase__1) { - prodml22__CSPedersen87 *_p = gsoap_eml2_3::soap_new_prodml22__CSPedersen87(soap); + prodml23__CSPedersen87 *_p = gsoap_eml2_3::soap_new_prodml23__CSPedersen87(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; } return _p; } -inline prodml22__CSPedersen87 * soap_new_set_prodml22__CSPedersen87( +inline prodml23__CSPedersen87 * soap_new_set_prodml23__CSPedersen87( struct soap *soap, - prodml22__ThermodynamicPhase phase__1, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__ThermodynamicPhase phase__1, + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__CSPedersen87 *_p = gsoap_eml2_3::soap_new_prodml22__CSPedersen87(soap); + prodml23__CSPedersen87 *_p = gsoap_eml2_3::soap_new_prodml23__CSPedersen87(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__CSPedersen87(struct soap *soap, prodml22__CSPedersen87 const*p) +inline int soap_write_prodml23__CSPedersen87(struct soap *soap, prodml23__CSPedersen87 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 ? "prodml22:CSPedersen87" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 ? "prodml23:CSPedersen87" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CSPedersen87(struct soap *soap, const char *URL, prodml22__CSPedersen87 const*p) +inline int soap_PUT_prodml23__CSPedersen87(struct soap *soap, const char *URL, prodml23__CSPedersen87 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 ? "prodml22:CSPedersen87" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 ? "prodml23:CSPedersen87" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CSPedersen87(struct soap *soap, const char *URL, prodml22__CSPedersen87 const*p) +inline int soap_PATCH_prodml23__CSPedersen87(struct soap *soap, const char *URL, prodml23__CSPedersen87 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 ? "prodml22:CSPedersen87" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 ? "prodml23:CSPedersen87" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CSPedersen87(struct soap *soap, const char *URL, prodml22__CSPedersen87 const*p) +inline int soap_POST_send_prodml23__CSPedersen87(struct soap *soap, const char *URL, prodml23__CSPedersen87 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 ? "prodml22:CSPedersen87" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen87", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 ? "prodml23:CSPedersen87" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CSPedersen87 * SOAP_FMAC4 soap_get_prodml22__CSPedersen87(struct soap*, prodml22__CSPedersen87 *, const char*, const char*); +SOAP_FMAC3 prodml23__CSPedersen87 * SOAP_FMAC4 soap_get_prodml23__CSPedersen87(struct soap*, prodml23__CSPedersen87 *, const char*, const char*); -inline int soap_read_prodml22__CSPedersen87(struct soap *soap, prodml22__CSPedersen87 *p) +inline int soap_read_prodml23__CSPedersen87(struct soap *soap, prodml23__CSPedersen87 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CSPedersen87(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CSPedersen87(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CSPedersen87(struct soap *soap, const char *URL, prodml22__CSPedersen87 *p) +inline int soap_GET_prodml23__CSPedersen87(struct soap *soap, const char *URL, prodml23__CSPedersen87 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CSPedersen87(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CSPedersen87(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CSPedersen87(struct soap *soap, prodml22__CSPedersen87 *p) +inline int soap_POST_recv_prodml23__CSPedersen87(struct soap *soap, prodml23__CSPedersen87 *p) { - if (gsoap_eml2_3::soap_read_prodml22__CSPedersen87(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CSPedersen87(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CSPedersen84(struct soap*, const char*, int, const prodml22__CSPedersen84 *, const char*); -SOAP_FMAC3 prodml22__CSPedersen84 * SOAP_FMAC4 soap_in_prodml22__CSPedersen84(struct soap*, const char*, prodml22__CSPedersen84 *, const char*); -SOAP_FMAC1 prodml22__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml22__CSPedersen84(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CSPedersen84(struct soap*, const char*, int, const prodml23__CSPedersen84 *, const char*); +SOAP_FMAC3 prodml23__CSPedersen84 * SOAP_FMAC4 soap_in_prodml23__CSPedersen84(struct soap*, const char*, prodml23__CSPedersen84 *, const char*); +SOAP_FMAC1 prodml23__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml23__CSPedersen84(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CSPedersen84 * soap_new_prodml22__CSPedersen84(struct soap *soap, int n = -1) +inline prodml23__CSPedersen84 * soap_new_prodml23__CSPedersen84(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CSPedersen84(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CSPedersen84(soap, n, NULL, NULL, NULL); } -inline prodml22__CSPedersen84 * soap_new_req_prodml22__CSPedersen84( +inline prodml23__CSPedersen84 * soap_new_req_prodml23__CSPedersen84( struct soap *soap, - prodml22__ThermodynamicPhase phase__1) + prodml23__ThermodynamicPhase phase__1) { - prodml22__CSPedersen84 *_p = gsoap_eml2_3::soap_new_prodml22__CSPedersen84(soap); + prodml23__CSPedersen84 *_p = gsoap_eml2_3::soap_new_prodml23__CSPedersen84(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; } return _p; } -inline prodml22__CSPedersen84 * soap_new_set_prodml22__CSPedersen84( +inline prodml23__CSPedersen84 * soap_new_set_prodml23__CSPedersen84( struct soap *soap, - prodml22__ThermodynamicPhase phase__1, - prodml22__MixingRule *MixingRule__2, - prodml22__ComponentPropertySet *ComponentPropertySet__2, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__ThermodynamicPhase phase__1, + prodml23__MixingRule *MixingRule__2, + prodml23__ComponentPropertySet *ComponentPropertySet__2, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__2, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__CSPedersen84 *_p = gsoap_eml2_3::soap_new_prodml22__CSPedersen84(soap); + prodml23__CSPedersen84 *_p = gsoap_eml2_3::soap_new_prodml23__CSPedersen84(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase__1; - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__2; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase__1; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__2; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__2; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__CSPedersen84(struct soap *soap, prodml22__CSPedersen84 const*p) +inline int soap_write_prodml23__CSPedersen84(struct soap *soap, prodml23__CSPedersen84 const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 ? "prodml22:CSPedersen84" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 ? "prodml23:CSPedersen84" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CSPedersen84(struct soap *soap, const char *URL, prodml22__CSPedersen84 const*p) +inline int soap_PUT_prodml23__CSPedersen84(struct soap *soap, const char *URL, prodml23__CSPedersen84 const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 ? "prodml22:CSPedersen84" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 ? "prodml23:CSPedersen84" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CSPedersen84(struct soap *soap, const char *URL, prodml22__CSPedersen84 const*p) +inline int soap_PATCH_prodml23__CSPedersen84(struct soap *soap, const char *URL, prodml23__CSPedersen84 const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 ? "prodml22:CSPedersen84" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 ? "prodml23:CSPedersen84" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CSPedersen84(struct soap *soap, const char *URL, prodml22__CSPedersen84 const*p) +inline int soap_POST_send_prodml23__CSPedersen84(struct soap *soap, const char *URL, prodml23__CSPedersen84 const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 ? "prodml22:CSPedersen84" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CSPedersen84", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 ? "prodml23:CSPedersen84" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CSPedersen84 * SOAP_FMAC4 soap_get_prodml22__CSPedersen84(struct soap*, prodml22__CSPedersen84 *, const char*, const char*); +SOAP_FMAC3 prodml23__CSPedersen84 * SOAP_FMAC4 soap_get_prodml23__CSPedersen84(struct soap*, prodml23__CSPedersen84 *, const char*, const char*); -inline int soap_read_prodml22__CSPedersen84(struct soap *soap, prodml22__CSPedersen84 *p) +inline int soap_read_prodml23__CSPedersen84(struct soap *soap, prodml23__CSPedersen84 *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CSPedersen84(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CSPedersen84(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CSPedersen84(struct soap *soap, const char *URL, prodml22__CSPedersen84 *p) +inline int soap_GET_prodml23__CSPedersen84(struct soap *soap, const char *URL, prodml23__CSPedersen84 *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CSPedersen84(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CSPedersen84(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CSPedersen84(struct soap *soap, prodml22__CSPedersen84 *p) +inline int soap_POST_recv_prodml23__CSPedersen84(struct soap *soap, prodml23__CSPedersen84 *p) { - if (gsoap_eml2_3::soap_read_prodml22__CSPedersen84(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CSPedersen84(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CorrelationThermalModel(struct soap*, const char*, int, const prodml22__CorrelationThermalModel *, const char*); -SOAP_FMAC3 prodml22__CorrelationThermalModel * SOAP_FMAC4 soap_in_prodml22__CorrelationThermalModel(struct soap*, const char*, prodml22__CorrelationThermalModel *, const char*); -SOAP_FMAC1 prodml22__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodml22__CorrelationThermalModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CorrelationThermalModel(struct soap*, const char*, int, const prodml23__CorrelationThermalModel *, const char*); +SOAP_FMAC3 prodml23__CorrelationThermalModel * SOAP_FMAC4 soap_in_prodml23__CorrelationThermalModel(struct soap*, const char*, prodml23__CorrelationThermalModel *, const char*); +SOAP_FMAC1 prodml23__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodml23__CorrelationThermalModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CorrelationThermalModel * soap_new_prodml22__CorrelationThermalModel(struct soap *soap, int n = -1) +inline prodml23__CorrelationThermalModel * soap_new_prodml23__CorrelationThermalModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CorrelationThermalModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CorrelationThermalModel(soap, n, NULL, NULL, NULL); } -inline prodml22__CorrelationThermalModel * soap_new_req_prodml22__CorrelationThermalModel( +inline prodml23__CorrelationThermalModel * soap_new_req_prodml23__CorrelationThermalModel( struct soap *soap) { - prodml22__CorrelationThermalModel *_p = gsoap_eml2_3::soap_new_prodml22__CorrelationThermalModel(soap); + prodml23__CorrelationThermalModel *_p = gsoap_eml2_3::soap_new_prodml23__CorrelationThermalModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__CorrelationThermalModel * soap_new_set_prodml22__CorrelationThermalModel( +inline prodml23__CorrelationThermalModel * soap_new_set_prodml23__CorrelationThermalModel( struct soap *soap, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__2, - prodml22__PvtModelParameterSet *PvtModelParameterSet__2) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__2, + prodml23__PvtModelParameterSet *PvtModelParameterSet__2) { - prodml22__CorrelationThermalModel *_p = gsoap_eml2_3::soap_new_prodml22__CorrelationThermalModel(soap); + prodml23__CorrelationThermalModel *_p = gsoap_eml2_3::soap_new_prodml23__CorrelationThermalModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; } return _p; } -inline int soap_write_prodml22__CorrelationThermalModel(struct soap *soap, prodml22__CorrelationThermalModel const*p) +inline int soap_write_prodml23__CorrelationThermalModel(struct soap *soap, prodml23__CorrelationThermalModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel ? "prodml22:CorrelationThermalModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel ? "prodml23:CorrelationThermalModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CorrelationThermalModel(struct soap *soap, const char *URL, prodml22__CorrelationThermalModel const*p) +inline int soap_PUT_prodml23__CorrelationThermalModel(struct soap *soap, const char *URL, prodml23__CorrelationThermalModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel ? "prodml22:CorrelationThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel ? "prodml23:CorrelationThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CorrelationThermalModel(struct soap *soap, const char *URL, prodml22__CorrelationThermalModel const*p) +inline int soap_PATCH_prodml23__CorrelationThermalModel(struct soap *soap, const char *URL, prodml23__CorrelationThermalModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel ? "prodml22:CorrelationThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel ? "prodml23:CorrelationThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CorrelationThermalModel(struct soap *soap, const char *URL, prodml22__CorrelationThermalModel const*p) +inline int soap_POST_send_prodml23__CorrelationThermalModel(struct soap *soap, const char *URL, prodml23__CorrelationThermalModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel ? "prodml22:CorrelationThermalModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CorrelationThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel ? "prodml23:CorrelationThermalModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CorrelationThermalModel * SOAP_FMAC4 soap_get_prodml22__CorrelationThermalModel(struct soap*, prodml22__CorrelationThermalModel *, const char*, const char*); +SOAP_FMAC3 prodml23__CorrelationThermalModel * SOAP_FMAC4 soap_get_prodml23__CorrelationThermalModel(struct soap*, prodml23__CorrelationThermalModel *, const char*, const char*); -inline int soap_read_prodml22__CorrelationThermalModel(struct soap *soap, prodml22__CorrelationThermalModel *p) +inline int soap_read_prodml23__CorrelationThermalModel(struct soap *soap, prodml23__CorrelationThermalModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CorrelationThermalModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CorrelationThermalModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CorrelationThermalModel(struct soap *soap, const char *URL, prodml22__CorrelationThermalModel *p) +inline int soap_GET_prodml23__CorrelationThermalModel(struct soap *soap, const char *URL, prodml23__CorrelationThermalModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CorrelationThermalModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CorrelationThermalModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CorrelationThermalModel(struct soap *soap, prodml22__CorrelationThermalModel *p) +inline int soap_POST_recv_prodml23__CorrelationThermalModel(struct soap *soap, prodml23__CorrelationThermalModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__CorrelationThermalModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CorrelationThermalModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CompositionalThermalModel(struct soap*, const char*, int, const prodml22__CompositionalThermalModel *, const char*); -SOAP_FMAC3 prodml22__CompositionalThermalModel * SOAP_FMAC4 soap_in_prodml22__CompositionalThermalModel(struct soap*, const char*, prodml22__CompositionalThermalModel *, const char*); -SOAP_FMAC1 prodml22__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_prodml22__CompositionalThermalModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CompositionalThermalModel(struct soap*, const char*, int, const prodml23__CompositionalThermalModel *, const char*); +SOAP_FMAC3 prodml23__CompositionalThermalModel * SOAP_FMAC4 soap_in_prodml23__CompositionalThermalModel(struct soap*, const char*, prodml23__CompositionalThermalModel *, const char*); +SOAP_FMAC1 prodml23__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_prodml23__CompositionalThermalModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CompositionalThermalModel * soap_new_prodml22__CompositionalThermalModel(struct soap *soap, int n = -1) +inline prodml23__CompositionalThermalModel * soap_new_prodml23__CompositionalThermalModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CompositionalThermalModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CompositionalThermalModel(soap, n, NULL, NULL, NULL); } -inline prodml22__CompositionalThermalModel * soap_new_req_prodml22__CompositionalThermalModel( +inline prodml23__CompositionalThermalModel * soap_new_req_prodml23__CompositionalThermalModel( struct soap *soap) { - prodml22__CompositionalThermalModel *_p = gsoap_eml2_3::soap_new_prodml22__CompositionalThermalModel(soap); + prodml23__CompositionalThermalModel *_p = gsoap_eml2_3::soap_new_prodml23__CompositionalThermalModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__CompositionalThermalModel * soap_new_set_prodml22__CompositionalThermalModel( +inline prodml23__CompositionalThermalModel * soap_new_set_prodml23__CompositionalThermalModel( struct soap *soap, - prodml22__MixingRule *MixingRule__1, - prodml22__ComponentPropertySet *ComponentPropertySet__1, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__2, - prodml22__PvtModelParameterSet *PvtModelParameterSet__2) + prodml23__MixingRule *MixingRule__1, + prodml23__ComponentPropertySet *ComponentPropertySet__1, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__1, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__2, + prodml23__PvtModelParameterSet *PvtModelParameterSet__2) { - prodml22__CompositionalThermalModel *_p = gsoap_eml2_3::soap_new_prodml22__CompositionalThermalModel(soap); + prodml23__CompositionalThermalModel *_p = gsoap_eml2_3::soap_new_prodml23__CompositionalThermalModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__1; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__1; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__1; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__1; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; } return _p; } -inline int soap_write_prodml22__CompositionalThermalModel(struct soap *soap, prodml22__CompositionalThermalModel const*p) +inline int soap_write_prodml23__CompositionalThermalModel(struct soap *soap, prodml23__CompositionalThermalModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel ? "prodml22:CompositionalThermalModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel ? "prodml23:CompositionalThermalModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CompositionalThermalModel(struct soap *soap, const char *URL, prodml22__CompositionalThermalModel const*p) +inline int soap_PUT_prodml23__CompositionalThermalModel(struct soap *soap, const char *URL, prodml23__CompositionalThermalModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel ? "prodml22:CompositionalThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel ? "prodml23:CompositionalThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CompositionalThermalModel(struct soap *soap, const char *URL, prodml22__CompositionalThermalModel const*p) +inline int soap_PATCH_prodml23__CompositionalThermalModel(struct soap *soap, const char *URL, prodml23__CompositionalThermalModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel ? "prodml22:CompositionalThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel ? "prodml23:CompositionalThermalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CompositionalThermalModel(struct soap *soap, const char *URL, prodml22__CompositionalThermalModel const*p) +inline int soap_POST_send_prodml23__CompositionalThermalModel(struct soap *soap, const char *URL, prodml23__CompositionalThermalModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel ? "prodml22:CompositionalThermalModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CompositionalThermalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel ? "prodml23:CompositionalThermalModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CompositionalThermalModel * SOAP_FMAC4 soap_get_prodml22__CompositionalThermalModel(struct soap*, prodml22__CompositionalThermalModel *, const char*, const char*); +SOAP_FMAC3 prodml23__CompositionalThermalModel * SOAP_FMAC4 soap_get_prodml23__CompositionalThermalModel(struct soap*, prodml23__CompositionalThermalModel *, const char*, const char*); -inline int soap_read_prodml22__CompositionalThermalModel(struct soap *soap, prodml22__CompositionalThermalModel *p) +inline int soap_read_prodml23__CompositionalThermalModel(struct soap *soap, prodml23__CompositionalThermalModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CompositionalThermalModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CompositionalThermalModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CompositionalThermalModel(struct soap *soap, const char *URL, prodml22__CompositionalThermalModel *p) +inline int soap_GET_prodml23__CompositionalThermalModel(struct soap *soap, const char *URL, prodml23__CompositionalThermalModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CompositionalThermalModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CompositionalThermalModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CompositionalThermalModel(struct soap *soap, prodml22__CompositionalThermalModel *p) +inline int soap_POST_recv_prodml23__CompositionalThermalModel(struct soap *soap, prodml23__CompositionalThermalModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__CompositionalThermalModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CompositionalThermalModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__ComponentPropertySet(struct soap*, const char*, int, const prodml22__ComponentPropertySet *, const char*); -SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml22__ComponentPropertySet(struct soap*, const char*, prodml22__ComponentPropertySet *, const char*); -SOAP_FMAC1 prodml22__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml22__ComponentPropertySet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__ComponentPropertySet(struct soap*, const char*, int, const prodml23__ComponentPropertySet *, const char*); +SOAP_FMAC3 prodml23__ComponentPropertySet * SOAP_FMAC4 soap_in_prodml23__ComponentPropertySet(struct soap*, const char*, prodml23__ComponentPropertySet *, const char*); +SOAP_FMAC1 prodml23__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml23__ComponentPropertySet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__ComponentPropertySet * soap_new_prodml22__ComponentPropertySet(struct soap *soap, int n = -1) +inline prodml23__ComponentPropertySet * soap_new_prodml23__ComponentPropertySet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__ComponentPropertySet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__ComponentPropertySet(soap, n, NULL, NULL, NULL); } -inline prodml22__ComponentPropertySet * soap_new_req_prodml22__ComponentPropertySet( +inline prodml23__ComponentPropertySet * soap_new_req_prodml23__ComponentPropertySet( struct soap *soap, - const std::vector & FluidComponentProperty) + const std::vector & FluidComponentProperty) { - prodml22__ComponentPropertySet *_p = gsoap_eml2_3::soap_new_prodml22__ComponentPropertySet(soap); + prodml23__ComponentPropertySet *_p = gsoap_eml2_3::soap_new_prodml23__ComponentPropertySet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ComponentPropertySet::FluidComponentProperty = FluidComponentProperty; + _p->prodml23__ComponentPropertySet::FluidComponentProperty = FluidComponentProperty; } return _p; } -inline prodml22__ComponentPropertySet * soap_new_set_prodml22__ComponentPropertySet( +inline prodml23__ComponentPropertySet * soap_new_set_prodml23__ComponentPropertySet( struct soap *soap, - const std::vector & FluidComponentProperty) + const std::vector & FluidComponentProperty) { - prodml22__ComponentPropertySet *_p = gsoap_eml2_3::soap_new_prodml22__ComponentPropertySet(soap); + prodml23__ComponentPropertySet *_p = gsoap_eml2_3::soap_new_prodml23__ComponentPropertySet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__ComponentPropertySet::FluidComponentProperty = FluidComponentProperty; + _p->prodml23__ComponentPropertySet::FluidComponentProperty = FluidComponentProperty; } return _p; } -inline int soap_write_prodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet const*p) +inline int soap_write_prodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet ? "prodml22:ComponentPropertySet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet ? "prodml23:ComponentPropertySet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__ComponentPropertySet(struct soap *soap, const char *URL, prodml22__ComponentPropertySet const*p) +inline int soap_PUT_prodml23__ComponentPropertySet(struct soap *soap, const char *URL, prodml23__ComponentPropertySet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet ? "prodml22:ComponentPropertySet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet ? "prodml23:ComponentPropertySet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__ComponentPropertySet(struct soap *soap, const char *URL, prodml22__ComponentPropertySet const*p) +inline int soap_PATCH_prodml23__ComponentPropertySet(struct soap *soap, const char *URL, prodml23__ComponentPropertySet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet ? "prodml22:ComponentPropertySet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet ? "prodml23:ComponentPropertySet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__ComponentPropertySet(struct soap *soap, const char *URL, prodml22__ComponentPropertySet const*p) +inline int soap_POST_send_prodml23__ComponentPropertySet(struct soap *soap, const char *URL, prodml23__ComponentPropertySet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet ? "prodml22:ComponentPropertySet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:ComponentPropertySet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet ? "prodml23:ComponentPropertySet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__ComponentPropertySet * SOAP_FMAC4 soap_get_prodml22__ComponentPropertySet(struct soap*, prodml22__ComponentPropertySet *, const char*, const char*); +SOAP_FMAC3 prodml23__ComponentPropertySet * SOAP_FMAC4 soap_get_prodml23__ComponentPropertySet(struct soap*, prodml23__ComponentPropertySet *, const char*, const char*); -inline int soap_read_prodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet *p) +inline int soap_read_prodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__ComponentPropertySet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__ComponentPropertySet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__ComponentPropertySet(struct soap *soap, const char *URL, prodml22__ComponentPropertySet *p) +inline int soap_GET_prodml23__ComponentPropertySet(struct soap *soap, const char *URL, prodml23__ComponentPropertySet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__ComponentPropertySet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__ComponentPropertySet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__ComponentPropertySet(struct soap *soap, prodml22__ComponentPropertySet *p) +inline int soap_POST_recv_prodml23__ComponentPropertySet(struct soap *soap, prodml23__ComponentPropertySet *p) { - if (gsoap_eml2_3::soap_read_prodml22__ComponentPropertySet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__ComponentPropertySet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__CarrDempsey(struct soap*, const char*, int, const prodml22__CarrDempsey *, const char*); -SOAP_FMAC3 prodml22__CarrDempsey * SOAP_FMAC4 soap_in_prodml22__CarrDempsey(struct soap*, const char*, prodml22__CarrDempsey *, const char*); -SOAP_FMAC1 prodml22__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml22__CarrDempsey(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__CarrDempsey(struct soap*, const char*, int, const prodml23__CarrDempsey *, const char*); +SOAP_FMAC3 prodml23__CarrDempsey * SOAP_FMAC4 soap_in_prodml23__CarrDempsey(struct soap*, const char*, prodml23__CarrDempsey *, const char*); +SOAP_FMAC1 prodml23__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml23__CarrDempsey(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__CarrDempsey * soap_new_prodml22__CarrDempsey(struct soap *soap, int n = -1) +inline prodml23__CarrDempsey * soap_new_prodml23__CarrDempsey(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__CarrDempsey(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__CarrDempsey(soap, n, NULL, NULL, NULL); } -inline prodml22__CarrDempsey * soap_new_req_prodml22__CarrDempsey( +inline prodml23__CarrDempsey * soap_new_req_prodml23__CarrDempsey( struct soap *soap) { - prodml22__CarrDempsey *_p = gsoap_eml2_3::soap_new_prodml22__CarrDempsey(soap); + prodml23__CarrDempsey *_p = gsoap_eml2_3::soap_new_prodml23__CarrDempsey(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__CarrDempsey * soap_new_set_prodml22__CarrDempsey( +inline prodml23__CarrDempsey * soap_new_set_prodml23__CarrDempsey( struct soap *soap, eml23__MolecularWeightMeasure *GasMolarWeight, eml23__DynamicViscosityMeasure *GasViscosityAt1Atm, @@ -138729,1660 +138701,1660 @@ inline prodml22__CarrDempsey * soap_new_set_prodml22__CarrDempsey( eml23__DynamicViscosityMeasure *GasViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__CarrDempsey *_p = gsoap_eml2_3::soap_new_prodml22__CarrDempsey(soap); + prodml23__CarrDempsey *_p = gsoap_eml2_3::soap_new_prodml23__CarrDempsey(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__CarrDempsey::GasMolarWeight = GasMolarWeight; - _p->prodml22__CarrDempsey::GasViscosityAt1Atm = GasViscosityAt1Atm; - _p->prodml22__CarrDempsey::PseudoReducedTemperature = PseudoReducedTemperature; - _p->prodml22__CarrDempsey::PseudoReducedPressure = PseudoReducedPressure; - _p->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; - _p->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__CarrDempsey::GasMolarWeight = GasMolarWeight; + _p->prodml23__CarrDempsey::GasViscosityAt1Atm = GasViscosityAt1Atm; + _p->prodml23__CarrDempsey::PseudoReducedTemperature = PseudoReducedTemperature; + _p->prodml23__CarrDempsey::PseudoReducedPressure = PseudoReducedPressure; + _p->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity__1; + _p->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__CarrDempsey(struct soap *soap, prodml22__CarrDempsey const*p) +inline int soap_write_prodml23__CarrDempsey(struct soap *soap, prodml23__CarrDempsey const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey ? "prodml22:CarrDempsey" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey ? "prodml23:CarrDempsey" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__CarrDempsey(struct soap *soap, const char *URL, prodml22__CarrDempsey const*p) +inline int soap_PUT_prodml23__CarrDempsey(struct soap *soap, const char *URL, prodml23__CarrDempsey const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey ? "prodml22:CarrDempsey" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey ? "prodml23:CarrDempsey" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__CarrDempsey(struct soap *soap, const char *URL, prodml22__CarrDempsey const*p) +inline int soap_PATCH_prodml23__CarrDempsey(struct soap *soap, const char *URL, prodml23__CarrDempsey const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey ? "prodml22:CarrDempsey" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey ? "prodml23:CarrDempsey" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__CarrDempsey(struct soap *soap, const char *URL, prodml22__CarrDempsey const*p) +inline int soap_POST_send_prodml23__CarrDempsey(struct soap *soap, const char *URL, prodml23__CarrDempsey const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey ? "prodml22:CarrDempsey" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:CarrDempsey", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey ? "prodml23:CarrDempsey" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__CarrDempsey * SOAP_FMAC4 soap_get_prodml22__CarrDempsey(struct soap*, prodml22__CarrDempsey *, const char*, const char*); +SOAP_FMAC3 prodml23__CarrDempsey * SOAP_FMAC4 soap_get_prodml23__CarrDempsey(struct soap*, prodml23__CarrDempsey *, const char*, const char*); -inline int soap_read_prodml22__CarrDempsey(struct soap *soap, prodml22__CarrDempsey *p) +inline int soap_read_prodml23__CarrDempsey(struct soap *soap, prodml23__CarrDempsey *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__CarrDempsey(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__CarrDempsey(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__CarrDempsey(struct soap *soap, const char *URL, prodml22__CarrDempsey *p) +inline int soap_GET_prodml23__CarrDempsey(struct soap *soap, const char *URL, prodml23__CarrDempsey *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__CarrDempsey(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__CarrDempsey(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__CarrDempsey(struct soap *soap, prodml22__CarrDempsey *p) +inline int soap_POST_recv_prodml23__CarrDempsey(struct soap *soap, prodml23__CarrDempsey *p) { - if (gsoap_eml2_3::soap_read_prodml22__CarrDempsey(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__CarrDempsey(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BinaryInteractionCoefficientSet(struct soap*, const char*, int, const prodml22__BinaryInteractionCoefficientSet *, const char*); -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml22__BinaryInteractionCoefficientSet(struct soap*, const char*, prodml22__BinaryInteractionCoefficientSet *, const char*); -SOAP_FMAC1 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantiate_prodml22__BinaryInteractionCoefficientSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BinaryInteractionCoefficientSet(struct soap*, const char*, int, const prodml23__BinaryInteractionCoefficientSet *, const char*); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_in_prodml23__BinaryInteractionCoefficientSet(struct soap*, const char*, prodml23__BinaryInteractionCoefficientSet *, const char*); +SOAP_FMAC1 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantiate_prodml23__BinaryInteractionCoefficientSet(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__BinaryInteractionCoefficientSet * soap_new_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, int n = -1) +inline prodml23__BinaryInteractionCoefficientSet * soap_new_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__BinaryInteractionCoefficientSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__BinaryInteractionCoefficientSet(soap, n, NULL, NULL, NULL); } -inline prodml22__BinaryInteractionCoefficientSet * soap_new_req_prodml22__BinaryInteractionCoefficientSet( +inline prodml23__BinaryInteractionCoefficientSet * soap_new_req_prodml23__BinaryInteractionCoefficientSet( struct soap *soap, - const std::vector & BinaryInteractionCoefficient) + const std::vector & BinaryInteractionCoefficient) { - prodml22__BinaryInteractionCoefficientSet *_p = gsoap_eml2_3::soap_new_prodml22__BinaryInteractionCoefficientSet(soap); + prodml23__BinaryInteractionCoefficientSet *_p = gsoap_eml2_3::soap_new_prodml23__BinaryInteractionCoefficientSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient = BinaryInteractionCoefficient; + _p->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient = BinaryInteractionCoefficient; } return _p; } -inline prodml22__BinaryInteractionCoefficientSet * soap_new_set_prodml22__BinaryInteractionCoefficientSet( +inline prodml23__BinaryInteractionCoefficientSet * soap_new_set_prodml23__BinaryInteractionCoefficientSet( struct soap *soap, - const std::vector & BinaryInteractionCoefficient) + const std::vector & BinaryInteractionCoefficient) { - prodml22__BinaryInteractionCoefficientSet *_p = gsoap_eml2_3::soap_new_prodml22__BinaryInteractionCoefficientSet(soap); + prodml23__BinaryInteractionCoefficientSet *_p = gsoap_eml2_3::soap_new_prodml23__BinaryInteractionCoefficientSet(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient = BinaryInteractionCoefficient; + _p->prodml23__BinaryInteractionCoefficientSet::BinaryInteractionCoefficient = BinaryInteractionCoefficient; } return _p; } -inline int soap_write_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet const*p) +inline int soap_write_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet ? "prodml22:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet ? "prodml23:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficientSet const*p) +inline int soap_PUT_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficientSet const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet ? "prodml22:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet ? "prodml23:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficientSet const*p) +inline int soap_PATCH_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficientSet const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet ? "prodml22:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet ? "prodml23:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficientSet const*p) +inline int soap_POST_send_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficientSet const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet ? "prodml22:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficientSet", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet ? "prodml23:BinaryInteractionCoefficientSet" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_get_prodml22__BinaryInteractionCoefficientSet(struct soap*, prodml22__BinaryInteractionCoefficientSet *, const char*, const char*); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC4 soap_get_prodml23__BinaryInteractionCoefficientSet(struct soap*, prodml23__BinaryInteractionCoefficientSet *, const char*, const char*); -inline int soap_read_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet *p) +inline int soap_read_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BinaryInteractionCoefficientSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BinaryInteractionCoefficientSet(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficientSet *p) +inline int soap_GET_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficientSet *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BinaryInteractionCoefficientSet(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BinaryInteractionCoefficientSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BinaryInteractionCoefficientSet(struct soap *soap, prodml22__BinaryInteractionCoefficientSet *p) +inline int soap_POST_recv_prodml23__BinaryInteractionCoefficientSet(struct soap *soap, prodml23__BinaryInteractionCoefficientSet *p) { - if (gsoap_eml2_3::soap_read_prodml22__BinaryInteractionCoefficientSet(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BinaryInteractionCoefficientSet(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BinaryInteractionCoefficient(struct soap*, const char*, int, const prodml22__BinaryInteractionCoefficient *, const char*); -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient * SOAP_FMAC4 soap_in_prodml22__BinaryInteractionCoefficient(struct soap*, const char*, prodml22__BinaryInteractionCoefficient *, const char*); -SOAP_FMAC1 prodml22__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_prodml22__BinaryInteractionCoefficient(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BinaryInteractionCoefficient(struct soap*, const char*, int, const prodml23__BinaryInteractionCoefficient *, const char*); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient * SOAP_FMAC4 soap_in_prodml23__BinaryInteractionCoefficient(struct soap*, const char*, prodml23__BinaryInteractionCoefficient *, const char*); +SOAP_FMAC1 prodml23__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_prodml23__BinaryInteractionCoefficient(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__BinaryInteractionCoefficient * soap_new_prodml22__BinaryInteractionCoefficient(struct soap *soap, int n = -1) +inline prodml23__BinaryInteractionCoefficient * soap_new_prodml23__BinaryInteractionCoefficient(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__BinaryInteractionCoefficient(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__BinaryInteractionCoefficient(soap, n, NULL, NULL, NULL); } -inline prodml22__BinaryInteractionCoefficient * soap_new_req_prodml22__BinaryInteractionCoefficient( +inline prodml23__BinaryInteractionCoefficient * soap_new_req_prodml23__BinaryInteractionCoefficient( struct soap *soap, double __item, const std::string& fluidComponent1Reference) { - prodml22__BinaryInteractionCoefficient *_p = gsoap_eml2_3::soap_new_prodml22__BinaryInteractionCoefficient(soap); + prodml23__BinaryInteractionCoefficient *_p = gsoap_eml2_3::soap_new_prodml23__BinaryInteractionCoefficient(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BinaryInteractionCoefficient::__item = __item; - _p->prodml22__BinaryInteractionCoefficient::fluidComponent1Reference = fluidComponent1Reference; + _p->prodml23__BinaryInteractionCoefficient::__item = __item; + _p->prodml23__BinaryInteractionCoefficient::fluidComponent1Reference = fluidComponent1Reference; } return _p; } -inline prodml22__BinaryInteractionCoefficient * soap_new_set_prodml22__BinaryInteractionCoefficient( +inline prodml23__BinaryInteractionCoefficient * soap_new_set_prodml23__BinaryInteractionCoefficient( struct soap *soap, double __item, const std::string& fluidComponent1Reference, std::string *fluidComponent2Reference) { - prodml22__BinaryInteractionCoefficient *_p = gsoap_eml2_3::soap_new_prodml22__BinaryInteractionCoefficient(soap); + prodml23__BinaryInteractionCoefficient *_p = gsoap_eml2_3::soap_new_prodml23__BinaryInteractionCoefficient(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BinaryInteractionCoefficient::__item = __item; - _p->prodml22__BinaryInteractionCoefficient::fluidComponent1Reference = fluidComponent1Reference; - _p->prodml22__BinaryInteractionCoefficient::fluidComponent2Reference = fluidComponent2Reference; + _p->prodml23__BinaryInteractionCoefficient::__item = __item; + _p->prodml23__BinaryInteractionCoefficient::fluidComponent1Reference = fluidComponent1Reference; + _p->prodml23__BinaryInteractionCoefficient::fluidComponent2Reference = fluidComponent2Reference; } return _p; } -inline int soap_write_prodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient const*p) +inline int soap_write_prodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient ? "prodml22:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient ? "prodml23:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficient const*p) +inline int soap_PUT_prodml23__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficient const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient ? "prodml22:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient ? "prodml23:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficient const*p) +inline int soap_PATCH_prodml23__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficient const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient ? "prodml22:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient ? "prodml23:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficient const*p) +inline int soap_POST_send_prodml23__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficient const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient ? "prodml22:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BinaryInteractionCoefficient", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient ? "prodml23:BinaryInteractionCoefficient" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient * SOAP_FMAC4 soap_get_prodml22__BinaryInteractionCoefficient(struct soap*, prodml22__BinaryInteractionCoefficient *, const char*, const char*); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient * SOAP_FMAC4 soap_get_prodml23__BinaryInteractionCoefficient(struct soap*, prodml23__BinaryInteractionCoefficient *, const char*, const char*); -inline int soap_read_prodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient *p) +inline int soap_read_prodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BinaryInteractionCoefficient(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BinaryInteractionCoefficient(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml22__BinaryInteractionCoefficient *p) +inline int soap_GET_prodml23__BinaryInteractionCoefficient(struct soap *soap, const char *URL, prodml23__BinaryInteractionCoefficient *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BinaryInteractionCoefficient(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BinaryInteractionCoefficient(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BinaryInteractionCoefficient(struct soap *soap, prodml22__BinaryInteractionCoefficient *p) +inline int soap_POST_recv_prodml23__BinaryInteractionCoefficient(struct soap *soap, prodml23__BinaryInteractionCoefficient *p) { - if (gsoap_eml2_3::soap_read_prodml22__BinaryInteractionCoefficient(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BinaryInteractionCoefficient(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BergmanSutton_BubblePoint(struct soap*, const char*, int, const prodml22__BergmanSutton_BubblePoint *, const char*); -SOAP_FMAC3 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_in_prodml22__BergmanSutton_BubblePoint(struct soap*, const char*, prodml22__BergmanSutton_BubblePoint *, const char*); -SOAP_FMAC1 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__BergmanSutton_BubblePoint(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BergmanSutton_BubblePoint(struct soap*, const char*, int, const prodml23__BergmanSutton_BubblePoint *, const char*); +SOAP_FMAC3 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_in_prodml23__BergmanSutton_BubblePoint(struct soap*, const char*, prodml23__BergmanSutton_BubblePoint *, const char*); +SOAP_FMAC1 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__BergmanSutton_BubblePoint(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__BergmanSutton_BubblePoint * soap_new_prodml22__BergmanSutton_BubblePoint(struct soap *soap, int n = -1) +inline prodml23__BergmanSutton_BubblePoint * soap_new_prodml23__BergmanSutton_BubblePoint(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__BergmanSutton_BubblePoint(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__BergmanSutton_BubblePoint(soap, n, NULL, NULL, NULL); } -inline prodml22__BergmanSutton_BubblePoint * soap_new_req_prodml22__BergmanSutton_BubblePoint( +inline prodml23__BergmanSutton_BubblePoint * soap_new_req_prodml23__BergmanSutton_BubblePoint( struct soap *soap) { - prodml22__BergmanSutton_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__BergmanSutton_BubblePoint(soap); + prodml23__BergmanSutton_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__BergmanSutton_BubblePoint(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__BergmanSutton_BubblePoint * soap_new_set_prodml22__BergmanSutton_BubblePoint( +inline prodml23__BergmanSutton_BubblePoint * soap_new_set_prodml23__BergmanSutton_BubblePoint( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__BergmanSutton_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml22__BergmanSutton_BubblePoint(soap); + prodml23__BergmanSutton_BubblePoint *_p = gsoap_eml2_3::soap_new_prodml23__BergmanSutton_BubblePoint(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__BergmanSutton_BubblePoint(struct soap *soap, prodml22__BergmanSutton_BubblePoint const*p) +inline int soap_write_prodml23__BergmanSutton_BubblePoint(struct soap *soap, prodml23__BergmanSutton_BubblePoint const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint ? "prodml22:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint ? "prodml23:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml22__BergmanSutton_BubblePoint const*p) +inline int soap_PUT_prodml23__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml23__BergmanSutton_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint ? "prodml22:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint ? "prodml23:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml22__BergmanSutton_BubblePoint const*p) +inline int soap_PATCH_prodml23__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml23__BergmanSutton_BubblePoint const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint ? "prodml22:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint ? "prodml23:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml22__BergmanSutton_BubblePoint const*p) +inline int soap_POST_send_prodml23__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml23__BergmanSutton_BubblePoint const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint ? "prodml22:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BergmanSutton-BubblePoint", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint ? "prodml23:BergmanSutton-BubblePoint" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_get_prodml22__BergmanSutton_BubblePoint(struct soap*, prodml22__BergmanSutton_BubblePoint *, const char*, const char*); +SOAP_FMAC3 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC4 soap_get_prodml23__BergmanSutton_BubblePoint(struct soap*, prodml23__BergmanSutton_BubblePoint *, const char*, const char*); -inline int soap_read_prodml22__BergmanSutton_BubblePoint(struct soap *soap, prodml22__BergmanSutton_BubblePoint *p) +inline int soap_read_prodml23__BergmanSutton_BubblePoint(struct soap *soap, prodml23__BergmanSutton_BubblePoint *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BergmanSutton_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BergmanSutton_BubblePoint(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml22__BergmanSutton_BubblePoint *p) +inline int soap_GET_prodml23__BergmanSutton_BubblePoint(struct soap *soap, const char *URL, prodml23__BergmanSutton_BubblePoint *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BergmanSutton_BubblePoint(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BergmanSutton_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BergmanSutton_BubblePoint(struct soap *soap, prodml22__BergmanSutton_BubblePoint *p) +inline int soap_POST_recv_prodml23__BergmanSutton_BubblePoint(struct soap *soap, prodml23__BergmanSutton_BubblePoint *p) { - if (gsoap_eml2_3::soap_read_prodml22__BergmanSutton_BubblePoint(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BergmanSutton_BubblePoint(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BerganSutton_Dead(struct soap*, const char*, int, const prodml22__BerganSutton_Dead *, const char*); -SOAP_FMAC3 prodml22__BerganSutton_Dead * SOAP_FMAC4 soap_in_prodml22__BerganSutton_Dead(struct soap*, const char*, prodml22__BerganSutton_Dead *, const char*); -SOAP_FMAC1 prodml22__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml22__BerganSutton_Dead(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BerganSutton_Dead(struct soap*, const char*, int, const prodml23__BerganSutton_Dead *, const char*); +SOAP_FMAC3 prodml23__BerganSutton_Dead * SOAP_FMAC4 soap_in_prodml23__BerganSutton_Dead(struct soap*, const char*, prodml23__BerganSutton_Dead *, const char*); +SOAP_FMAC1 prodml23__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml23__BerganSutton_Dead(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__BerganSutton_Dead * soap_new_prodml22__BerganSutton_Dead(struct soap *soap, int n = -1) +inline prodml23__BerganSutton_Dead * soap_new_prodml23__BerganSutton_Dead(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__BerganSutton_Dead(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__BerganSutton_Dead(soap, n, NULL, NULL, NULL); } -inline prodml22__BerganSutton_Dead * soap_new_req_prodml22__BerganSutton_Dead( +inline prodml23__BerganSutton_Dead * soap_new_req_prodml23__BerganSutton_Dead( struct soap *soap) { - prodml22__BerganSutton_Dead *_p = gsoap_eml2_3::soap_new_prodml22__BerganSutton_Dead(soap); + prodml23__BerganSutton_Dead *_p = gsoap_eml2_3::soap_new_prodml23__BerganSutton_Dead(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__BerganSutton_Dead * soap_new_set_prodml22__BerganSutton_Dead( +inline prodml23__BerganSutton_Dead * soap_new_set_prodml23__BerganSutton_Dead( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosityAt100F, eml23__DynamicViscosityMeasure *DeadOilViscosityAt210F, eml23__DynamicViscosityMeasure *DeadOilViscosity__1, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__BerganSutton_Dead *_p = gsoap_eml2_3::soap_new_prodml22__BerganSutton_Dead(soap); + prodml23__BerganSutton_Dead *_p = gsoap_eml2_3::soap_new_prodml23__BerganSutton_Dead(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__BerganSutton_Dead::DeadOilViscosityAt100F = DeadOilViscosityAt100F; - _p->prodml22__BerganSutton_Dead::DeadOilViscosityAt210F = DeadOilViscosityAt210F; - _p->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__BerganSutton_Dead::DeadOilViscosityAt100F = DeadOilViscosityAt100F; + _p->prodml23__BerganSutton_Dead::DeadOilViscosityAt210F = DeadOilViscosityAt210F; + _p->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__BerganSutton_Dead(struct soap *soap, prodml22__BerganSutton_Dead const*p) +inline int soap_write_prodml23__BerganSutton_Dead(struct soap *soap, prodml23__BerganSutton_Dead const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead ? "prodml22:BerganSutton-Dead" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead ? "prodml23:BerganSutton-Dead" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__BerganSutton_Dead(struct soap *soap, const char *URL, prodml22__BerganSutton_Dead const*p) +inline int soap_PUT_prodml23__BerganSutton_Dead(struct soap *soap, const char *URL, prodml23__BerganSutton_Dead const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead ? "prodml22:BerganSutton-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead ? "prodml23:BerganSutton-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BerganSutton_Dead(struct soap *soap, const char *URL, prodml22__BerganSutton_Dead const*p) +inline int soap_PATCH_prodml23__BerganSutton_Dead(struct soap *soap, const char *URL, prodml23__BerganSutton_Dead const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead ? "prodml22:BerganSutton-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead ? "prodml23:BerganSutton-Dead" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BerganSutton_Dead(struct soap *soap, const char *URL, prodml22__BerganSutton_Dead const*p) +inline int soap_POST_send_prodml23__BerganSutton_Dead(struct soap *soap, const char *URL, prodml23__BerganSutton_Dead const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead ? "prodml22:BerganSutton-Dead" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganSutton-Dead", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead ? "prodml23:BerganSutton-Dead" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BerganSutton_Dead * SOAP_FMAC4 soap_get_prodml22__BerganSutton_Dead(struct soap*, prodml22__BerganSutton_Dead *, const char*, const char*); +SOAP_FMAC3 prodml23__BerganSutton_Dead * SOAP_FMAC4 soap_get_prodml23__BerganSutton_Dead(struct soap*, prodml23__BerganSutton_Dead *, const char*, const char*); -inline int soap_read_prodml22__BerganSutton_Dead(struct soap *soap, prodml22__BerganSutton_Dead *p) +inline int soap_read_prodml23__BerganSutton_Dead(struct soap *soap, prodml23__BerganSutton_Dead *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BerganSutton_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BerganSutton_Dead(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BerganSutton_Dead(struct soap *soap, const char *URL, prodml22__BerganSutton_Dead *p) +inline int soap_GET_prodml23__BerganSutton_Dead(struct soap *soap, const char *URL, prodml23__BerganSutton_Dead *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BerganSutton_Dead(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BerganSutton_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BerganSutton_Dead(struct soap *soap, prodml22__BerganSutton_Dead *p) +inline int soap_POST_recv_prodml23__BerganSutton_Dead(struct soap *soap, prodml23__BerganSutton_Dead *p) { - if (gsoap_eml2_3::soap_read_prodml22__BerganSutton_Dead(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BerganSutton_Dead(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__BerganAndSutton_Undersaturated(struct soap*, const char*, int, const prodml22__BerganAndSutton_Undersaturated *, const char*); -SOAP_FMAC3 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_in_prodml22__BerganAndSutton_Undersaturated(struct soap*, const char*, prodml22__BerganAndSutton_Undersaturated *, const char*); -SOAP_FMAC1 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__BerganAndSutton_Undersaturated(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__BerganAndSutton_Undersaturated(struct soap*, const char*, int, const prodml23__BerganAndSutton_Undersaturated *, const char*); +SOAP_FMAC3 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_in_prodml23__BerganAndSutton_Undersaturated(struct soap*, const char*, prodml23__BerganAndSutton_Undersaturated *, const char*); +SOAP_FMAC1 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__BerganAndSutton_Undersaturated(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__BerganAndSutton_Undersaturated * soap_new_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, int n = -1) +inline prodml23__BerganAndSutton_Undersaturated * soap_new_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__BerganAndSutton_Undersaturated(soap, n, NULL, NULL, NULL); } -inline prodml22__BerganAndSutton_Undersaturated * soap_new_req_prodml22__BerganAndSutton_Undersaturated( +inline prodml23__BerganAndSutton_Undersaturated * soap_new_req_prodml23__BerganAndSutton_Undersaturated( struct soap *soap) { - prodml22__BerganAndSutton_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__BerganAndSutton_Undersaturated(soap); + prodml23__BerganAndSutton_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__BerganAndSutton_Undersaturated(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__BerganAndSutton_Undersaturated * soap_new_set_prodml22__BerganAndSutton_Undersaturated( +inline prodml23__BerganAndSutton_Undersaturated * soap_new_set_prodml23__BerganAndSutton_Undersaturated( struct soap *soap, eml23__DynamicViscosityMeasure *UndersaturatedOilViscosity__1, eml23__DynamicViscosityMeasure *BubblePointOilViscosity__1, eml23__PressureMeasure *BubblePointPressure__1, eml23__PressureMeasure *Pressure__1, eml23__MolecularWeightMeasure *MolecularWeight__2, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__4, - prodml22__PvtModelParameterSet *PvtModelParameterSet__4) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__4, + prodml23__PvtModelParameterSet *PvtModelParameterSet__4) { - prodml22__BerganAndSutton_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml22__BerganAndSutton_Undersaturated(soap); + prodml23__BerganAndSutton_Undersaturated *_p = gsoap_eml2_3::soap_new_prodml23__BerganAndSutton_Undersaturated(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure__1; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure__1; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__2; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__4; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__4; } return _p; } -inline int soap_write_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, prodml22__BerganAndSutton_Undersaturated const*p) +inline int soap_write_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, prodml23__BerganAndSutton_Undersaturated const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated ? "prodml22:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated ? "prodml23:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml22__BerganAndSutton_Undersaturated const*p) +inline int soap_PUT_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml23__BerganAndSutton_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated ? "prodml22:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated ? "prodml23:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml22__BerganAndSutton_Undersaturated const*p) +inline int soap_PATCH_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml23__BerganAndSutton_Undersaturated const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated ? "prodml22:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated ? "prodml23:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml22__BerganAndSutton_Undersaturated const*p) +inline int soap_POST_send_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml23__BerganAndSutton_Undersaturated const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated ? "prodml22:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:BerganAndSutton-Undersaturated", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated ? "prodml23:BerganAndSutton-Undersaturated" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_get_prodml22__BerganAndSutton_Undersaturated(struct soap*, prodml22__BerganAndSutton_Undersaturated *, const char*, const char*); +SOAP_FMAC3 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC4 soap_get_prodml23__BerganAndSutton_Undersaturated(struct soap*, prodml23__BerganAndSutton_Undersaturated *, const char*, const char*); -inline int soap_read_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, prodml22__BerganAndSutton_Undersaturated *p) +inline int soap_read_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, prodml23__BerganAndSutton_Undersaturated *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__BerganAndSutton_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__BerganAndSutton_Undersaturated(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml22__BerganAndSutton_Undersaturated *p) +inline int soap_GET_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, const char *URL, prodml23__BerganAndSutton_Undersaturated *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__BerganAndSutton_Undersaturated(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__BerganAndSutton_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__BerganAndSutton_Undersaturated(struct soap *soap, prodml22__BerganAndSutton_Undersaturated *p) +inline int soap_POST_recv_prodml23__BerganAndSutton_Undersaturated(struct soap *soap, prodml23__BerganAndSutton_Undersaturated *p) { - if (gsoap_eml2_3::soap_read_prodml22__BerganAndSutton_Undersaturated(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__BerganAndSutton_Undersaturated(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractPvtModel(struct soap*, const char*, int, const prodml22__AbstractPvtModel *, const char*); -SOAP_FMAC3 prodml22__AbstractPvtModel * SOAP_FMAC4 soap_in_prodml22__AbstractPvtModel(struct soap*, const char*, prodml22__AbstractPvtModel *, const char*); -SOAP_FMAC1 prodml22__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPvtModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractPvtModel(struct soap*, const char*, int, const prodml23__AbstractPvtModel *, const char*); +SOAP_FMAC3 prodml23__AbstractPvtModel * SOAP_FMAC4 soap_in_prodml23__AbstractPvtModel(struct soap*, const char*, prodml23__AbstractPvtModel *, const char*); +SOAP_FMAC1 prodml23__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPvtModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractPvtModel * soap_new_prodml22__AbstractPvtModel(struct soap *soap, int n = -1) +inline prodml23__AbstractPvtModel * soap_new_prodml23__AbstractPvtModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractPvtModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractPvtModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractPvtModel * soap_new_req_prodml22__AbstractPvtModel( +inline prodml23__AbstractPvtModel * soap_new_req_prodml23__AbstractPvtModel( struct soap *soap) { - prodml22__AbstractPvtModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractPvtModel(soap); + prodml23__AbstractPvtModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractPvtModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractPvtModel * soap_new_set_prodml22__AbstractPvtModel( +inline prodml23__AbstractPvtModel * soap_new_set_prodml23__AbstractPvtModel( struct soap *soap, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension, - prodml22__PvtModelParameterSet *PvtModelParameterSet) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension, + prodml23__PvtModelParameterSet *PvtModelParameterSet) { - prodml22__AbstractPvtModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractPvtModel(soap); + prodml23__AbstractPvtModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractPvtModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet; } return _p; } -inline int soap_write_prodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel const*p) +inline int soap_write_prodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel ? "prodml22:AbstractPvtModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel ? "prodml23:AbstractPvtModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractPvtModel(struct soap *soap, const char *URL, prodml22__AbstractPvtModel const*p) +inline int soap_PUT_prodml23__AbstractPvtModel(struct soap *soap, const char *URL, prodml23__AbstractPvtModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel ? "prodml22:AbstractPvtModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel ? "prodml23:AbstractPvtModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractPvtModel(struct soap *soap, const char *URL, prodml22__AbstractPvtModel const*p) +inline int soap_PATCH_prodml23__AbstractPvtModel(struct soap *soap, const char *URL, prodml23__AbstractPvtModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel ? "prodml22:AbstractPvtModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel ? "prodml23:AbstractPvtModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractPvtModel(struct soap *soap, const char *URL, prodml22__AbstractPvtModel const*p) +inline int soap_POST_send_prodml23__AbstractPvtModel(struct soap *soap, const char *URL, prodml23__AbstractPvtModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel ? "prodml22:AbstractPvtModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractPvtModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel ? "prodml23:AbstractPvtModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractPvtModel * SOAP_FMAC4 soap_get_prodml22__AbstractPvtModel(struct soap*, prodml22__AbstractPvtModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractPvtModel * SOAP_FMAC4 soap_get_prodml23__AbstractPvtModel(struct soap*, prodml23__AbstractPvtModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel *p) +inline int soap_read_prodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractPvtModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractPvtModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractPvtModel(struct soap *soap, const char *URL, prodml22__AbstractPvtModel *p) +inline int soap_GET_prodml23__AbstractPvtModel(struct soap *soap, const char *URL, prodml23__AbstractPvtModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractPvtModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractPvtModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractPvtModel(struct soap *soap, prodml22__AbstractPvtModel *p) +inline int soap_POST_recv_prodml23__AbstractPvtModel(struct soap *soap, prodml23__AbstractPvtModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractPvtModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractPvtModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, const char*, int, const prodml22__AbstractCorrelationViscosityUndersaturatedModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, const char*, prodml22__AbstractCorrelationViscosityUndersaturatedModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, const char*, int, const prodml23__AbstractCorrelationViscosityUndersaturatedModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, const char*, prodml23__AbstractCorrelationViscosityUndersaturatedModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCorrelationViscosityUndersaturatedModel * soap_new_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCorrelationViscosityUndersaturatedModel * soap_new_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCorrelationViscosityUndersaturatedModel * soap_new_req_prodml22__AbstractCorrelationViscosityUndersaturatedModel( +inline prodml23__AbstractCorrelationViscosityUndersaturatedModel * soap_new_req_prodml23__AbstractCorrelationViscosityUndersaturatedModel( struct soap *soap) { - prodml22__AbstractCorrelationViscosityUndersaturatedModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap); + prodml23__AbstractCorrelationViscosityUndersaturatedModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCorrelationViscosityUndersaturatedModel * soap_new_set_prodml22__AbstractCorrelationViscosityUndersaturatedModel( +inline prodml23__AbstractCorrelationViscosityUndersaturatedModel * soap_new_set_prodml23__AbstractCorrelationViscosityUndersaturatedModel( struct soap *soap, eml23__DynamicViscosityMeasure *UndersaturatedOilViscosity, eml23__DynamicViscosityMeasure *BubblePointOilViscosity, eml23__PressureMeasure *BubblePointPressure, eml23__PressureMeasure *Pressure, eml23__MolecularWeightMeasure *MolecularWeight__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__AbstractCorrelationViscosityUndersaturatedModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap); + prodml23__AbstractCorrelationViscosityUndersaturatedModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure; - _p->prodml22__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::UndersaturatedOilViscosity = UndersaturatedOilViscosity; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointOilViscosity = BubblePointOilViscosity; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::BubblePointPressure = BubblePointPressure; + _p->prodml23__AbstractCorrelationViscosityUndersaturatedModel::Pressure = Pressure; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml22__AbstractCorrelationViscosityUndersaturatedModel const*p) +inline int soap_write_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml23__AbstractCorrelationViscosityUndersaturatedModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel ? "prodml22:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel ? "prodml23:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityUndersaturatedModel const*p) +inline int soap_PUT_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityUndersaturatedModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel ? "prodml22:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel ? "prodml23:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityUndersaturatedModel const*p) +inline int soap_PATCH_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityUndersaturatedModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel ? "prodml22:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel ? "prodml23:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityUndersaturatedModel const*p) +inline int soap_POST_send_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityUndersaturatedModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel ? "prodml22:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityUndersaturatedModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel ? "prodml23:AbstractCorrelationViscosityUndersaturatedModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, prodml22__AbstractCorrelationViscosityUndersaturatedModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, prodml23__AbstractCorrelationViscosityUndersaturatedModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml22__AbstractCorrelationViscosityUndersaturatedModel *p) +inline int soap_read_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml23__AbstractCorrelationViscosityUndersaturatedModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityUndersaturatedModel *p) +inline int soap_GET_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityUndersaturatedModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml22__AbstractCorrelationViscosityUndersaturatedModel *p) +inline int soap_POST_recv_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap *soap, prodml23__AbstractCorrelationViscosityUndersaturatedModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityUndersaturatedModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityUndersaturatedModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityModel(struct soap*, const char*, int, const prodml22__AbstractCorrelationViscosityModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityModel(struct soap*, const char*, prodml22__AbstractCorrelationViscosityModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityModel(struct soap*, const char*, int, const prodml23__AbstractCorrelationViscosityModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityModel(struct soap*, const char*, prodml23__AbstractCorrelationViscosityModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCorrelationViscosityModel * soap_new_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCorrelationViscosityModel * soap_new_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCorrelationViscosityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCorrelationViscosityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCorrelationViscosityModel * soap_new_req_prodml22__AbstractCorrelationViscosityModel( +inline prodml23__AbstractCorrelationViscosityModel * soap_new_req_prodml23__AbstractCorrelationViscosityModel( struct soap *soap) { - prodml22__AbstractCorrelationViscosityModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityModel(soap); + prodml23__AbstractCorrelationViscosityModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCorrelationViscosityModel * soap_new_set_prodml22__AbstractCorrelationViscosityModel( +inline prodml23__AbstractCorrelationViscosityModel * soap_new_set_prodml23__AbstractCorrelationViscosityModel( struct soap *soap, eml23__MolecularWeightMeasure *MolecularWeight, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__2, - prodml22__PvtModelParameterSet *PvtModelParameterSet__2) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__2, + prodml23__PvtModelParameterSet *PvtModelParameterSet__2) { - prodml22__AbstractCorrelationViscosityModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityModel(soap); + prodml23__AbstractCorrelationViscosityModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; } return _p; } -inline int soap_write_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, prodml22__AbstractCorrelationViscosityModel const*p) +inline int soap_write_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, prodml23__AbstractCorrelationViscosityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel ? "prodml22:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel ? "prodml23:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityModel const*p) +inline int soap_PUT_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel ? "prodml22:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel ? "prodml23:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityModel const*p) +inline int soap_PATCH_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel ? "prodml22:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel ? "prodml23:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityModel const*p) +inline int soap_POST_send_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel ? "prodml22:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel ? "prodml23:AbstractCorrelationViscosityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityModel(struct soap*, prodml22__AbstractCorrelationViscosityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityModel(struct soap*, prodml23__AbstractCorrelationViscosityModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, prodml22__AbstractCorrelationViscosityModel *p) +inline int soap_read_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, prodml23__AbstractCorrelationViscosityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCorrelationViscosityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCorrelationViscosityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityModel *p) +inline int soap_GET_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCorrelationViscosityModel(struct soap *soap, prodml22__AbstractCorrelationViscosityModel *p) +inline int soap_POST_recv_prodml23__AbstractCorrelationViscosityModel(struct soap *soap, prodml23__AbstractCorrelationViscosityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap*, const char*, int, const prodml22__AbstractCorrelationViscosityBubblePointModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap*, const char*, prodml22__AbstractCorrelationViscosityBubblePointModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap*, const char*, int, const prodml23__AbstractCorrelationViscosityBubblePointModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap*, const char*, prodml23__AbstractCorrelationViscosityBubblePointModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCorrelationViscosityBubblePointModel * soap_new_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCorrelationViscosityBubblePointModel * soap_new_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCorrelationViscosityBubblePointModel * soap_new_req_prodml22__AbstractCorrelationViscosityBubblePointModel( +inline prodml23__AbstractCorrelationViscosityBubblePointModel * soap_new_req_prodml23__AbstractCorrelationViscosityBubblePointModel( struct soap *soap) { - prodml22__AbstractCorrelationViscosityBubblePointModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityBubblePointModel(soap); + prodml23__AbstractCorrelationViscosityBubblePointModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityBubblePointModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCorrelationViscosityBubblePointModel * soap_new_set_prodml22__AbstractCorrelationViscosityBubblePointModel( +inline prodml23__AbstractCorrelationViscosityBubblePointModel * soap_new_set_prodml23__AbstractCorrelationViscosityBubblePointModel( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity, eml23__DynamicViscosityMeasure *BubblePointOilViscosity, eml23__VolumePerVolumeMeasure *SolutionGasOilRatio, eml23__MolecularWeightMeasure *MolecularWeight__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__AbstractCorrelationViscosityBubblePointModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityBubblePointModel(soap); + prodml23__AbstractCorrelationViscosityBubblePointModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityBubblePointModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity; - _p->prodml22__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::DeadOilViscosity = DeadOilViscosity; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::BubblePointOilViscosity = BubblePointOilViscosity; + _p->prodml23__AbstractCorrelationViscosityBubblePointModel::SolutionGasOilRatio = SolutionGasOilRatio; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml22__AbstractCorrelationViscosityBubblePointModel const*p) +inline int soap_write_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml23__AbstractCorrelationViscosityBubblePointModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel ? "prodml22:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel ? "prodml23:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityBubblePointModel const*p) +inline int soap_PUT_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityBubblePointModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel ? "prodml22:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel ? "prodml23:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityBubblePointModel const*p) +inline int soap_PATCH_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityBubblePointModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel ? "prodml22:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel ? "prodml23:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityBubblePointModel const*p) +inline int soap_POST_send_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityBubblePointModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel ? "prodml22:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityBubblePointModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel ? "prodml23:AbstractCorrelationViscosityBubblePointModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap*, prodml22__AbstractCorrelationViscosityBubblePointModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap*, prodml23__AbstractCorrelationViscosityBubblePointModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml22__AbstractCorrelationViscosityBubblePointModel *p) +inline int soap_read_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml23__AbstractCorrelationViscosityBubblePointModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityBubblePointModel *p) +inline int soap_GET_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityBubblePointModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml22__AbstractCorrelationViscosityBubblePointModel *p) +inline int soap_POST_recv_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap *soap, prodml23__AbstractCorrelationViscosityBubblePointModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityBubblePointModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityBubblePointModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationGasViscosityModel(struct soap*, const char*, int, const prodml22__AbstractCorrelationGasViscosityModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationGasViscosityModel(struct soap*, const char*, prodml22__AbstractCorrelationGasViscosityModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationGasViscosityModel(struct soap*, const char*, int, const prodml23__AbstractCorrelationGasViscosityModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationGasViscosityModel(struct soap*, const char*, prodml23__AbstractCorrelationGasViscosityModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCorrelationGasViscosityModel * soap_new_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCorrelationGasViscosityModel * soap_new_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCorrelationGasViscosityModel * soap_new_req_prodml22__AbstractCorrelationGasViscosityModel( +inline prodml23__AbstractCorrelationGasViscosityModel * soap_new_req_prodml23__AbstractCorrelationGasViscosityModel( struct soap *soap) { - prodml22__AbstractCorrelationGasViscosityModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationGasViscosityModel(soap); + prodml23__AbstractCorrelationGasViscosityModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationGasViscosityModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCorrelationGasViscosityModel * soap_new_set_prodml22__AbstractCorrelationGasViscosityModel( +inline prodml23__AbstractCorrelationGasViscosityModel * soap_new_set_prodml23__AbstractCorrelationGasViscosityModel( struct soap *soap, eml23__DynamicViscosityMeasure *GasViscosity, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature, eml23__MolecularWeightMeasure *MolecularWeight__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__AbstractCorrelationGasViscosityModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationGasViscosityModel(soap); + prodml23__AbstractCorrelationGasViscosityModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationGasViscosityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity; - _p->prodml22__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCorrelationGasViscosityModel::GasViscosity = GasViscosity; + _p->prodml23__AbstractCorrelationGasViscosityModel::ReservoirTemperature = ReservoirTemperature; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml22__AbstractCorrelationGasViscosityModel const*p) +inline int soap_write_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml23__AbstractCorrelationGasViscosityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel ? "prodml22:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel ? "prodml23:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationGasViscosityModel const*p) +inline int soap_PUT_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationGasViscosityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel ? "prodml22:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel ? "prodml23:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationGasViscosityModel const*p) +inline int soap_PATCH_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationGasViscosityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel ? "prodml22:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel ? "prodml23:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationGasViscosityModel const*p) +inline int soap_POST_send_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationGasViscosityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel ? "prodml22:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationGasViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel ? "prodml23:AbstractCorrelationGasViscosityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationGasViscosityModel(struct soap*, prodml22__AbstractCorrelationGasViscosityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationGasViscosityModel(struct soap*, prodml23__AbstractCorrelationGasViscosityModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml22__AbstractCorrelationGasViscosityModel *p) +inline int soap_read_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml23__AbstractCorrelationGasViscosityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCorrelationGasViscosityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCorrelationGasViscosityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationGasViscosityModel *p) +inline int soap_GET_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationGasViscosityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationGasViscosityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationGasViscosityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml22__AbstractCorrelationGasViscosityModel *p) +inline int soap_POST_recv_prodml23__AbstractCorrelationGasViscosityModel(struct soap *soap, prodml23__AbstractCorrelationGasViscosityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationGasViscosityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationGasViscosityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCompositionalViscosityModel(struct soap*, const char*, int, const prodml22__AbstractCompositionalViscosityModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_in_prodml22__AbstractCompositionalViscosityModel(struct soap*, const char*, prodml22__AbstractCompositionalViscosityModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalViscosityModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCompositionalViscosityModel(struct soap*, const char*, int, const prodml23__AbstractCompositionalViscosityModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_in_prodml23__AbstractCompositionalViscosityModel(struct soap*, const char*, prodml23__AbstractCompositionalViscosityModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalViscosityModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCompositionalViscosityModel * soap_new_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCompositionalViscosityModel * soap_new_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCompositionalViscosityModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCompositionalViscosityModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCompositionalViscosityModel * soap_new_req_prodml22__AbstractCompositionalViscosityModel( +inline prodml23__AbstractCompositionalViscosityModel * soap_new_req_prodml23__AbstractCompositionalViscosityModel( struct soap *soap, - prodml22__ThermodynamicPhase phase) + prodml23__ThermodynamicPhase phase) { - prodml22__AbstractCompositionalViscosityModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCompositionalViscosityModel(soap); + prodml23__AbstractCompositionalViscosityModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCompositionalViscosityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase; } return _p; } -inline prodml22__AbstractCompositionalViscosityModel * soap_new_set_prodml22__AbstractCompositionalViscosityModel( +inline prodml23__AbstractCompositionalViscosityModel * soap_new_set_prodml23__AbstractCompositionalViscosityModel( struct soap *soap, - prodml22__ThermodynamicPhase phase, - prodml22__MixingRule *MixingRule__1, - prodml22__ComponentPropertySet *ComponentPropertySet__1, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__2, - prodml22__PvtModelParameterSet *PvtModelParameterSet__2) + prodml23__ThermodynamicPhase phase, + prodml23__MixingRule *MixingRule__1, + prodml23__ComponentPropertySet *ComponentPropertySet__1, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__1, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__2, + prodml23__PvtModelParameterSet *PvtModelParameterSet__2) { - prodml22__AbstractCompositionalViscosityModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCompositionalViscosityModel(soap); + prodml23__AbstractCompositionalViscosityModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCompositionalViscosityModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalViscosityModel::phase = phase; - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__1; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__1; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; + _p->prodml23__AbstractCompositionalViscosityModel::phase = phase; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__1; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__1; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; } return _p; } -inline int soap_write_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, prodml22__AbstractCompositionalViscosityModel const*p) +inline int soap_write_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, prodml23__AbstractCompositionalViscosityModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel ? "prodml22:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel ? "prodml23:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalViscosityModel const*p) +inline int soap_PUT_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalViscosityModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel ? "prodml22:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel ? "prodml23:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalViscosityModel const*p) +inline int soap_PATCH_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalViscosityModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel ? "prodml22:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel ? "prodml23:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalViscosityModel const*p) +inline int soap_POST_send_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalViscosityModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel ? "prodml22:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalViscosityModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel ? "prodml23:AbstractCompositionalViscosityModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_get_prodml22__AbstractCompositionalViscosityModel(struct soap*, prodml22__AbstractCompositionalViscosityModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC4 soap_get_prodml23__AbstractCompositionalViscosityModel(struct soap*, prodml23__AbstractCompositionalViscosityModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, prodml22__AbstractCompositionalViscosityModel *p) +inline int soap_read_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, prodml23__AbstractCompositionalViscosityModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCompositionalViscosityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCompositionalViscosityModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalViscosityModel *p) +inline int soap_GET_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalViscosityModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCompositionalViscosityModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCompositionalViscosityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCompositionalViscosityModel(struct soap *soap, prodml22__AbstractCompositionalViscosityModel *p) +inline int soap_POST_recv_prodml23__AbstractCompositionalViscosityModel(struct soap *soap, prodml23__AbstractCompositionalViscosityModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCompositionalViscosityModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCompositionalViscosityModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCompositionalEoSModel(struct soap*, const char*, int, const prodml22__AbstractCompositionalEoSModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_in_prodml22__AbstractCompositionalEoSModel(struct soap*, const char*, prodml22__AbstractCompositionalEoSModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalEoSModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCompositionalEoSModel(struct soap*, const char*, int, const prodml23__AbstractCompositionalEoSModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_in_prodml23__AbstractCompositionalEoSModel(struct soap*, const char*, prodml23__AbstractCompositionalEoSModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalEoSModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCompositionalEoSModel * soap_new_prodml22__AbstractCompositionalEoSModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCompositionalEoSModel * soap_new_prodml23__AbstractCompositionalEoSModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCompositionalEoSModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCompositionalEoSModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCompositionalEoSModel * soap_new_req_prodml22__AbstractCompositionalEoSModel( +inline prodml23__AbstractCompositionalEoSModel * soap_new_req_prodml23__AbstractCompositionalEoSModel( struct soap *soap) { - prodml22__AbstractCompositionalEoSModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCompositionalEoSModel(soap); + prodml23__AbstractCompositionalEoSModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCompositionalEoSModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCompositionalEoSModel * soap_new_set_prodml22__AbstractCompositionalEoSModel( +inline prodml23__AbstractCompositionalEoSModel * soap_new_set_prodml23__AbstractCompositionalEoSModel( struct soap *soap, - prodml22__MixingRule *MixingRule__1, - prodml22__ComponentPropertySet *ComponentPropertySet__1, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__2, - prodml22__PvtModelParameterSet *PvtModelParameterSet__2) + prodml23__MixingRule *MixingRule__1, + prodml23__ComponentPropertySet *ComponentPropertySet__1, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet__1, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__2, + prodml23__PvtModelParameterSet *PvtModelParameterSet__2) { - prodml22__AbstractCompositionalEoSModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCompositionalEoSModel(soap); + prodml23__AbstractCompositionalEoSModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCompositionalEoSModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule__1; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__1; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule__1; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet__1; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__2; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__2; } return _p; } -inline int soap_write_prodml22__AbstractCompositionalEoSModel(struct soap *soap, prodml22__AbstractCompositionalEoSModel const*p) +inline int soap_write_prodml23__AbstractCompositionalEoSModel(struct soap *soap, prodml23__AbstractCompositionalEoSModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel ? "prodml22:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel ? "prodml23:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalEoSModel const*p) +inline int soap_PUT_prodml23__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalEoSModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel ? "prodml22:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel ? "prodml23:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalEoSModel const*p) +inline int soap_PATCH_prodml23__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalEoSModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel ? "prodml22:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel ? "prodml23:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalEoSModel const*p) +inline int soap_POST_send_prodml23__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalEoSModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel ? "prodml22:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalEoSModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel ? "prodml23:AbstractCompositionalEoSModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_get_prodml22__AbstractCompositionalEoSModel(struct soap*, prodml22__AbstractCompositionalEoSModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC4 soap_get_prodml23__AbstractCompositionalEoSModel(struct soap*, prodml23__AbstractCompositionalEoSModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCompositionalEoSModel(struct soap *soap, prodml22__AbstractCompositionalEoSModel *p) +inline int soap_read_prodml23__AbstractCompositionalEoSModel(struct soap *soap, prodml23__AbstractCompositionalEoSModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCompositionalEoSModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCompositionalEoSModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalEoSModel *p) +inline int soap_GET_prodml23__AbstractCompositionalEoSModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalEoSModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCompositionalEoSModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCompositionalEoSModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCompositionalEoSModel(struct soap *soap, prodml22__AbstractCompositionalEoSModel *p) +inline int soap_POST_recv_prodml23__AbstractCompositionalEoSModel(struct soap *soap, prodml23__AbstractCompositionalEoSModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCompositionalEoSModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCompositionalEoSModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__FluidCharacterizationTableRow(struct soap*, const char*, int, const prodml22__FluidCharacterizationTableRow *, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow * SOAP_FMAC4 soap_in_prodml22__FluidCharacterizationTableRow(struct soap*, const char*, prodml22__FluidCharacterizationTableRow *, const char*); -SOAP_FMAC1 prodml22__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableRow(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__FluidCharacterizationTableRow(struct soap*, const char*, int, const prodml23__FluidCharacterizationTableRow *, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow * SOAP_FMAC4 soap_in_prodml23__FluidCharacterizationTableRow(struct soap*, const char*, prodml23__FluidCharacterizationTableRow *, const char*); +SOAP_FMAC1 prodml23__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableRow(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__FluidCharacterizationTableRow * soap_new_prodml22__FluidCharacterizationTableRow(struct soap *soap, int n = -1) +inline prodml23__FluidCharacterizationTableRow * soap_new_prodml23__FluidCharacterizationTableRow(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__FluidCharacterizationTableRow(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__FluidCharacterizationTableRow(soap, n, NULL, NULL, NULL); } -inline prodml22__FluidCharacterizationTableRow * soap_new_req_prodml22__FluidCharacterizationTableRow( +inline prodml23__FluidCharacterizationTableRow * soap_new_req_prodml23__FluidCharacterizationTableRow( struct soap *soap, const std::string& __item, const std::string& row) { - prodml22__FluidCharacterizationTableRow *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableRow(soap); + prodml23__FluidCharacterizationTableRow *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableRow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableRow::__item = __item; - _p->prodml22__FluidCharacterizationTableRow::row = row; + _p->prodml23__FluidCharacterizationTableRow::__item = __item; + _p->prodml23__FluidCharacterizationTableRow::row = row; } return _p; } -inline prodml22__FluidCharacterizationTableRow * soap_new_set_prodml22__FluidCharacterizationTableRow( +inline prodml23__FluidCharacterizationTableRow * soap_new_set_prodml23__FluidCharacterizationTableRow( struct soap *soap, const std::string& __item, const std::string& row, - prodml22__SaturationKind *kind) + prodml23__SaturationKind *kind) { - prodml22__FluidCharacterizationTableRow *_p = gsoap_eml2_3::soap_new_prodml22__FluidCharacterizationTableRow(soap); + prodml23__FluidCharacterizationTableRow *_p = gsoap_eml2_3::soap_new_prodml23__FluidCharacterizationTableRow(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__FluidCharacterizationTableRow::__item = __item; - _p->prodml22__FluidCharacterizationTableRow::row = row; - _p->prodml22__FluidCharacterizationTableRow::kind = kind; + _p->prodml23__FluidCharacterizationTableRow::__item = __item; + _p->prodml23__FluidCharacterizationTableRow::row = row; + _p->prodml23__FluidCharacterizationTableRow::kind = kind; } return _p; } -inline int soap_write_prodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow const*p) +inline int soap_write_prodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow ? "prodml22:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow ? "prodml23:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableRow const*p) +inline int soap_PUT_prodml23__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableRow const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow ? "prodml22:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow ? "prodml23:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableRow const*p) +inline int soap_PATCH_prodml23__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableRow const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow ? "prodml22:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow ? "prodml23:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableRow const*p) +inline int soap_POST_send_prodml23__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableRow const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow ? "prodml22:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:FluidCharacterizationTableRow", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow ? "prodml23:FluidCharacterizationTableRow" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow * SOAP_FMAC4 soap_get_prodml22__FluidCharacterizationTableRow(struct soap*, prodml22__FluidCharacterizationTableRow *, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow * SOAP_FMAC4 soap_get_prodml23__FluidCharacterizationTableRow(struct soap*, prodml23__FluidCharacterizationTableRow *, const char*, const char*); -inline int soap_read_prodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow *p) +inline int soap_read_prodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__FluidCharacterizationTableRow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__FluidCharacterizationTableRow(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml22__FluidCharacterizationTableRow *p) +inline int soap_GET_prodml23__FluidCharacterizationTableRow(struct soap *soap, const char *URL, prodml23__FluidCharacterizationTableRow *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableRow(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableRow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__FluidCharacterizationTableRow(struct soap *soap, prodml22__FluidCharacterizationTableRow *p) +inline int soap_POST_recv_prodml23__FluidCharacterizationTableRow(struct soap *soap, prodml23__FluidCharacterizationTableRow *p) { - if (gsoap_eml2_3::soap_read_prodml22__FluidCharacterizationTableRow(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__FluidCharacterizationTableRow(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationViscosityDeadModel(struct soap*, const char*, int, const prodml22__AbstractCorrelationViscosityDeadModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationViscosityDeadModel(struct soap*, const char*, prodml22__AbstractCorrelationViscosityDeadModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationViscosityDeadModel(struct soap*, const char*, int, const prodml23__AbstractCorrelationViscosityDeadModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationViscosityDeadModel(struct soap*, const char*, prodml23__AbstractCorrelationViscosityDeadModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCorrelationViscosityDeadModel * soap_new_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCorrelationViscosityDeadModel * soap_new_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCorrelationViscosityDeadModel * soap_new_req_prodml22__AbstractCorrelationViscosityDeadModel( +inline prodml23__AbstractCorrelationViscosityDeadModel * soap_new_req_prodml23__AbstractCorrelationViscosityDeadModel( struct soap *soap) { - prodml22__AbstractCorrelationViscosityDeadModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityDeadModel(soap); + prodml23__AbstractCorrelationViscosityDeadModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityDeadModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCorrelationViscosityDeadModel * soap_new_set_prodml22__AbstractCorrelationViscosityDeadModel( +inline prodml23__AbstractCorrelationViscosityDeadModel * soap_new_set_prodml23__AbstractCorrelationViscosityDeadModel( struct soap *soap, eml23__DynamicViscosityMeasure *DeadOilViscosity, eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature, eml23__MolecularWeightMeasure *MolecularWeight__1, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__3, - prodml22__PvtModelParameterSet *PvtModelParameterSet__3) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__3, + prodml23__PvtModelParameterSet *PvtModelParameterSet__3) { - prodml22__AbstractCorrelationViscosityDeadModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationViscosityDeadModel(soap); + prodml23__AbstractCorrelationViscosityDeadModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationViscosityDeadModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity; - _p->prodml22__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature; - _p->prodml22__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; + _p->prodml23__AbstractCorrelationViscosityDeadModel::DeadOilViscosity = DeadOilViscosity; + _p->prodml23__AbstractCorrelationViscosityDeadModel::ReservoirTemperature = ReservoirTemperature; + _p->prodml23__AbstractCorrelationViscosityModel::MolecularWeight = MolecularWeight__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__3; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__3; } return _p; } -inline int soap_write_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml22__AbstractCorrelationViscosityDeadModel const*p) +inline int soap_write_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml23__AbstractCorrelationViscosityDeadModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel ? "prodml22:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel ? "prodml23:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityDeadModel const*p) +inline int soap_PUT_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityDeadModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel ? "prodml22:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel ? "prodml23:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityDeadModel const*p) +inline int soap_PATCH_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityDeadModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel ? "prodml22:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel ? "prodml23:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityDeadModel const*p) +inline int soap_POST_send_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityDeadModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel ? "prodml22:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationViscosityDeadModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel ? "prodml23:AbstractCorrelationViscosityDeadModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationViscosityDeadModel(struct soap*, prodml22__AbstractCorrelationViscosityDeadModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationViscosityDeadModel(struct soap*, prodml23__AbstractCorrelationViscosityDeadModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml22__AbstractCorrelationViscosityDeadModel *p) +inline int soap_read_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml23__AbstractCorrelationViscosityDeadModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCorrelationViscosityDeadModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCorrelationViscosityDeadModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationViscosityDeadModel *p) +inline int soap_GET_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationViscosityDeadModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityDeadModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityDeadModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml22__AbstractCorrelationViscosityDeadModel *p) +inline int soap_POST_recv_prodml23__AbstractCorrelationViscosityDeadModel(struct soap *soap, prodml23__AbstractCorrelationViscosityDeadModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationViscosityDeadModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationViscosityDeadModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCorrelationModel(struct soap*, const char*, int, const prodml22__AbstractCorrelationModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCorrelationModel * SOAP_FMAC4 soap_in_prodml22__AbstractCorrelationModel(struct soap*, const char*, prodml22__AbstractCorrelationModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCorrelationModel(struct soap*, const char*, int, const prodml23__AbstractCorrelationModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationModel * SOAP_FMAC4 soap_in_prodml23__AbstractCorrelationModel(struct soap*, const char*, prodml23__AbstractCorrelationModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCorrelationModel * soap_new_prodml22__AbstractCorrelationModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCorrelationModel * soap_new_prodml23__AbstractCorrelationModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCorrelationModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCorrelationModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCorrelationModel * soap_new_req_prodml22__AbstractCorrelationModel( +inline prodml23__AbstractCorrelationModel * soap_new_req_prodml23__AbstractCorrelationModel( struct soap *soap) { - prodml22__AbstractCorrelationModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationModel(soap); + prodml23__AbstractCorrelationModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCorrelationModel * soap_new_set_prodml22__AbstractCorrelationModel( +inline prodml23__AbstractCorrelationModel * soap_new_set_prodml23__AbstractCorrelationModel( struct soap *soap, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__1, - prodml22__PvtModelParameterSet *PvtModelParameterSet__1) + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__1, + prodml23__PvtModelParameterSet *PvtModelParameterSet__1) { - prodml22__AbstractCorrelationModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCorrelationModel(soap); + prodml23__AbstractCorrelationModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCorrelationModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__1; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__1; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__1; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__1; } return _p; } -inline int soap_write_prodml22__AbstractCorrelationModel(struct soap *soap, prodml22__AbstractCorrelationModel const*p) +inline int soap_write_prodml23__AbstractCorrelationModel(struct soap *soap, prodml23__AbstractCorrelationModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel ? "prodml22:AbstractCorrelationModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel ? "prodml23:AbstractCorrelationModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationModel const*p) +inline int soap_PUT_prodml23__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel ? "prodml22:AbstractCorrelationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel ? "prodml23:AbstractCorrelationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationModel const*p) +inline int soap_PATCH_prodml23__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel ? "prodml22:AbstractCorrelationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel ? "prodml23:AbstractCorrelationModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationModel const*p) +inline int soap_POST_send_prodml23__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel ? "prodml22:AbstractCorrelationModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCorrelationModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel ? "prodml23:AbstractCorrelationModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCorrelationModel * SOAP_FMAC4 soap_get_prodml22__AbstractCorrelationModel(struct soap*, prodml22__AbstractCorrelationModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCorrelationModel * SOAP_FMAC4 soap_get_prodml23__AbstractCorrelationModel(struct soap*, prodml23__AbstractCorrelationModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCorrelationModel(struct soap *soap, prodml22__AbstractCorrelationModel *p) +inline int soap_read_prodml23__AbstractCorrelationModel(struct soap *soap, prodml23__AbstractCorrelationModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCorrelationModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCorrelationModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml22__AbstractCorrelationModel *p) +inline int soap_GET_prodml23__AbstractCorrelationModel(struct soap *soap, const char *URL, prodml23__AbstractCorrelationModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCorrelationModel(struct soap *soap, prodml22__AbstractCorrelationModel *p) +inline int soap_POST_recv_prodml23__AbstractCorrelationModel(struct soap *soap, prodml23__AbstractCorrelationModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCorrelationModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCorrelationModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel_DEFINED -SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml22__AbstractCompositionalModel(struct soap*, const char*, int, const prodml22__AbstractCompositionalModel *, const char*); -SOAP_FMAC3 prodml22__AbstractCompositionalModel * SOAP_FMAC4 soap_in_prodml22__AbstractCompositionalModel(struct soap*, const char*, prodml22__AbstractCompositionalModel *, const char*); -SOAP_FMAC1 prodml22__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel_DEFINED +SOAP_FMAC3 int SOAP_FMAC4 soap_out_prodml23__AbstractCompositionalModel(struct soap*, const char*, int, const prodml23__AbstractCompositionalModel *, const char*); +SOAP_FMAC3 prodml23__AbstractCompositionalModel * SOAP_FMAC4 soap_in_prodml23__AbstractCompositionalModel(struct soap*, const char*, prodml23__AbstractCompositionalModel *, const char*); +SOAP_FMAC1 prodml23__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalModel(struct soap*, int, const char*, const char*, size_t*); -inline prodml22__AbstractCompositionalModel * soap_new_prodml22__AbstractCompositionalModel(struct soap *soap, int n = -1) +inline prodml23__AbstractCompositionalModel * soap_new_prodml23__AbstractCompositionalModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_prodml22__AbstractCompositionalModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_prodml23__AbstractCompositionalModel(soap, n, NULL, NULL, NULL); } -inline prodml22__AbstractCompositionalModel * soap_new_req_prodml22__AbstractCompositionalModel( +inline prodml23__AbstractCompositionalModel * soap_new_req_prodml23__AbstractCompositionalModel( struct soap *soap) { - prodml22__AbstractCompositionalModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCompositionalModel(soap); + prodml23__AbstractCompositionalModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCompositionalModel(soap); if (_p) { _p->soap_default(soap); } return _p; } -inline prodml22__AbstractCompositionalModel * soap_new_set_prodml22__AbstractCompositionalModel( +inline prodml23__AbstractCompositionalModel * soap_new_set_prodml23__AbstractCompositionalModel( struct soap *soap, - prodml22__MixingRule *MixingRule, - prodml22__ComponentPropertySet *ComponentPropertySet, - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet, - prodml22__CustomPvtModelExtension *CustomPvtModelExtension__1, - prodml22__PvtModelParameterSet *PvtModelParameterSet__1) + prodml23__MixingRule *MixingRule, + prodml23__ComponentPropertySet *ComponentPropertySet, + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet, + prodml23__CustomPvtModelExtension *CustomPvtModelExtension__1, + prodml23__PvtModelParameterSet *PvtModelParameterSet__1) { - prodml22__AbstractCompositionalModel *_p = gsoap_eml2_3::soap_new_prodml22__AbstractCompositionalModel(soap); + prodml23__AbstractCompositionalModel *_p = gsoap_eml2_3::soap_new_prodml23__AbstractCompositionalModel(soap); if (_p) { _p->soap_default(soap); - _p->prodml22__AbstractCompositionalModel::MixingRule = MixingRule; - _p->prodml22__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet; - _p->prodml22__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet; - _p->prodml22__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__1; - _p->prodml22__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__1; + _p->prodml23__AbstractCompositionalModel::MixingRule = MixingRule; + _p->prodml23__AbstractCompositionalModel::ComponentPropertySet = ComponentPropertySet; + _p->prodml23__AbstractCompositionalModel::BinaryInteractionCoefficientSet = BinaryInteractionCoefficientSet; + _p->prodml23__AbstractPvtModel::CustomPvtModelExtension = CustomPvtModelExtension__1; + _p->prodml23__AbstractPvtModel::PvtModelParameterSet = PvtModelParameterSet__1; } return _p; } -inline int soap_write_prodml22__AbstractCompositionalModel(struct soap *soap, prodml22__AbstractCompositionalModel const*p) +inline int soap_write_prodml23__AbstractCompositionalModel(struct soap *soap, prodml23__AbstractCompositionalModel const*p) { soap_free_temp(soap); - if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel ? "prodml22:AbstractCompositionalModel" : NULL) || soap_end_send(soap)) + if (soap_begin_send(soap) || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel ? "prodml23:AbstractCompositionalModel" : NULL) || soap_end_send(soap)) return soap->error; return SOAP_OK; } -inline int soap_PUT_prodml22__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalModel const*p) +inline int soap_PUT_prodml23__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalModel const*p) { soap_free_temp(soap); - if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel ? "prodml22:AbstractCompositionalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PUT(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel ? "prodml23:AbstractCompositionalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_PATCH_prodml22__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalModel const*p) +inline int soap_PATCH_prodml23__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalModel const*p) { soap_free_temp(soap); - if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel ? "prodml22:AbstractCompositionalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) + if (soap_PATCH(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel ? "prodml23:AbstractCompositionalModel" : NULL) || soap_end_send(soap) || soap_recv_empty_response(soap)) return soap_closesock(soap); return SOAP_OK; } -inline int soap_POST_send_prodml22__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalModel const*p) +inline int soap_POST_send_prodml23__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalModel const*p) { soap_free_temp(soap); - if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml22:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel ? "prodml22:AbstractCompositionalModel" : NULL) || soap_end_send(soap)) + if (soap_POST(soap, URL, NULL, "text/xml; charset=utf-8") || (p->soap_serialize(soap), 0) || p->soap_put(soap, "prodml23:AbstractCompositionalModel", p->soap_type() == SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel ? "prodml23:AbstractCompositionalModel" : NULL) || soap_end_send(soap)) return soap_closesock(soap); return SOAP_OK; } -SOAP_FMAC3 prodml22__AbstractCompositionalModel * SOAP_FMAC4 soap_get_prodml22__AbstractCompositionalModel(struct soap*, prodml22__AbstractCompositionalModel *, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractCompositionalModel * SOAP_FMAC4 soap_get_prodml23__AbstractCompositionalModel(struct soap*, prodml23__AbstractCompositionalModel *, const char*, const char*); -inline int soap_read_prodml22__AbstractCompositionalModel(struct soap *soap, prodml22__AbstractCompositionalModel *p) +inline int soap_read_prodml23__AbstractCompositionalModel(struct soap *soap, prodml23__AbstractCompositionalModel *p) { if (p) { p->soap_default(soap); - if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml22__AbstractCompositionalModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) + if (soap_begin_recv(soap) || gsoap_eml2_3::soap_get_prodml23__AbstractCompositionalModel(soap, p, NULL, NULL) == NULL || soap_end_recv(soap)) return soap->error; } return SOAP_OK; } -inline int soap_GET_prodml22__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml22__AbstractCompositionalModel *p) +inline int soap_GET_prodml23__AbstractCompositionalModel(struct soap *soap, const char *URL, prodml23__AbstractCompositionalModel *p) { - if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml22__AbstractCompositionalModel(soap, p)) + if (soap_GET(soap, URL, NULL) || gsoap_eml2_3::soap_read_prodml23__AbstractCompositionalModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } -inline int soap_POST_recv_prodml22__AbstractCompositionalModel(struct soap *soap, prodml22__AbstractCompositionalModel *p) +inline int soap_POST_recv_prodml23__AbstractCompositionalModel(struct soap *soap, prodml23__AbstractCompositionalModel *p) { - if (gsoap_eml2_3::soap_read_prodml22__AbstractCompositionalModel(soap, p)) + if (gsoap_eml2_3::soap_read_prodml23__AbstractCompositionalModel(soap, p)) return soap_closesock(soap); return soap_closesock(soap); } @@ -231370,11 +231342,11 @@ inline int soap_POST_recv_tm(struct soap *soap, struct tm *p) } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__union_AbstractRefProductFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3__prodml22__union_AbstractRefProductFlow_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__prodml22__union_AbstractRefProductFlow(struct soap*, int, const union _prodml22__union_AbstractRefProductFlow *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out__prodml22__union_AbstractRefProductFlow(struct soap*, int, const union _prodml22__union_AbstractRefProductFlow *); -SOAP_FMAC3 union _prodml22__union_AbstractRefProductFlow * SOAP_FMAC4 soap_in__prodml22__union_AbstractRefProductFlow(struct soap*, int*, union _prodml22__union_AbstractRefProductFlow *); +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__union_AbstractRefProductFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3__prodml23__union_AbstractRefProductFlow_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize__prodml23__union_AbstractRefProductFlow(struct soap*, int, const union _prodml23__union_AbstractRefProductFlow *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out__prodml23__union_AbstractRefProductFlow(struct soap*, int, const union _prodml23__union_AbstractRefProductFlow *); +SOAP_FMAC3 union _prodml23__union_AbstractRefProductFlow * SOAP_FMAC4 soap_in__prodml23__union_AbstractRefProductFlow(struct soap*, int*, union _prodml23__union_AbstractRefProductFlow *); #endif #ifndef WITH_NOGLOBAL @@ -231659,13 +231631,13 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToresqml22__ContactIdentity(struct soa SOAP_FMAC3 resqml22__ContactIdentity ** SOAP_FMAC4 soap_get_PointerToresqml22__ContactIdentity(struct soap*, resqml22__ContactIdentity **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PrsvParameter(struct soap*, prodml22__PrsvParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PrsvParameter(struct soap*, const char *, int, prodml22__PrsvParameter *const*, const char *); -SOAP_FMAC3 prodml22__PrsvParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__PrsvParameter(struct soap*, const char*, prodml22__PrsvParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PrsvParameter(struct soap*, prodml22__PrsvParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PrsvParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__PrsvParameter(struct soap*, prodml22__PrsvParameter **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PrsvParameter(struct soap*, prodml23__PrsvParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PrsvParameter(struct soap*, const char *, int, prodml23__PrsvParameter *const*, const char *); +SOAP_FMAC3 prodml23__PrsvParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__PrsvParameter(struct soap*, const char*, prodml23__PrsvParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PrsvParameter(struct soap*, prodml23__PrsvParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PrsvParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__PrsvParameter(struct soap*, prodml23__PrsvParameter **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__LengthUomExt_DEFINED @@ -231947,544 +231919,544 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToresqml22__ThreePoint3d(struct soap*, SOAP_FMAC3 resqml22__ThreePoint3d ** SOAP_FMAC4 soap_get_PointerToresqml22__ThreePoint3d(struct soap*, resqml22__ThreePoint3d **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AngleBetweenBoundaries(struct soap*, prodml22__AngleBetweenBoundaries *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AngleBetweenBoundaries(struct soap*, const char *, int, prodml22__AngleBetweenBoundaries *const*, const char *); -SOAP_FMAC3 prodml22__AngleBetweenBoundaries ** SOAP_FMAC4 soap_in_PointerToprodml22__AngleBetweenBoundaries(struct soap*, const char*, prodml22__AngleBetweenBoundaries **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AngleBetweenBoundaries(struct soap*, prodml22__AngleBetweenBoundaries *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AngleBetweenBoundaries ** SOAP_FMAC4 soap_get_PointerToprodml22__AngleBetweenBoundaries(struct soap*, prodml22__AngleBetweenBoundaries **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToPinchOut(struct soap*, prodml22__DistanceToPinchOut *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToPinchOut(struct soap*, const char *, int, prodml22__DistanceToPinchOut *const*, const char *); -SOAP_FMAC3 prodml22__DistanceToPinchOut ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToPinchOut(struct soap*, const char*, prodml22__DistanceToPinchOut **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToPinchOut(struct soap*, prodml22__DistanceToPinchOut *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceToPinchOut ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToPinchOut(struct soap*, prodml22__DistanceToPinchOut **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml22__DistanceMidPerforationsToBottomBoundary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, const char *, int, prodml22__DistanceMidPerforationsToBottomBoundary *const*, const char *); -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, const char*, prodml22__DistanceMidPerforationsToBottomBoundary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml22__DistanceMidPerforationsToBottomBoundary *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml22__DistanceMidPerforationsToBottomBoundary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PerforatedLength(struct soap*, prodml22__PerforatedLength *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PerforatedLength(struct soap*, const char *, int, prodml22__PerforatedLength *const*, const char *); -SOAP_FMAC3 prodml22__PerforatedLength ** SOAP_FMAC4 soap_in_PointerToprodml22__PerforatedLength(struct soap*, const char*, prodml22__PerforatedLength **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PerforatedLength(struct soap*, prodml22__PerforatedLength *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PerforatedLength ** SOAP_FMAC4 soap_get_PointerToprodml22__PerforatedLength(struct soap*, prodml22__PerforatedLength **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReservoirZoneSubModel(struct soap*, prodml22__ReservoirZoneSubModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReservoirZoneSubModel(struct soap*, const char *, int, prodml22__ReservoirZoneSubModel *const*, const char *); -SOAP_FMAC3 prodml22__ReservoirZoneSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__ReservoirZoneSubModel(struct soap*, const char*, prodml22__ReservoirZoneSubModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReservoirZoneSubModel(struct soap*, prodml22__ReservoirZoneSubModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReservoirZoneSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__ReservoirZoneSubModel(struct soap*, prodml22__ReservoirZoneSubModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistributedParametersSubModel(struct soap*, prodml22__DistributedParametersSubModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistributedParametersSubModel(struct soap*, const char *, int, prodml22__DistributedParametersSubModel *const*, const char *); -SOAP_FMAC3 prodml22__DistributedParametersSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__DistributedParametersSubModel(struct soap*, const char*, prodml22__DistributedParametersSubModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistributedParametersSubModel(struct soap*, prodml22__DistributedParametersSubModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistributedParametersSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__DistributedParametersSubModel(struct soap*, prodml22__DistributedParametersSubModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InternalFaultSubModel(struct soap*, prodml22__InternalFaultSubModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InternalFaultSubModel(struct soap*, const char *, int, prodml22__InternalFaultSubModel *const*, const char *); -SOAP_FMAC3 prodml22__InternalFaultSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__InternalFaultSubModel(struct soap*, const char*, prodml22__InternalFaultSubModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InternalFaultSubModel(struct soap*, prodml22__InternalFaultSubModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InternalFaultSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__InternalFaultSubModel(struct soap*, prodml22__InternalFaultSubModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SingleBoundarySubModel(struct soap*, prodml22__SingleBoundarySubModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SingleBoundarySubModel(struct soap*, const char *, int, prodml22__SingleBoundarySubModel *const*, const char *); -SOAP_FMAC3 prodml22__SingleBoundarySubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__SingleBoundarySubModel(struct soap*, const char*, prodml22__SingleBoundarySubModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SingleBoundarySubModel(struct soap*, prodml22__SingleBoundarySubModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SingleBoundarySubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__SingleBoundarySubModel(struct soap*, prodml22__SingleBoundarySubModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FaultConductivity(struct soap*, prodml22__FaultConductivity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FaultConductivity(struct soap*, const char *, int, prodml22__FaultConductivity *const*, const char *); -SOAP_FMAC3 prodml22__FaultConductivity ** SOAP_FMAC4 soap_in_PointerToprodml22__FaultConductivity(struct soap*, const char*, prodml22__FaultConductivity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FaultConductivity(struct soap*, prodml22__FaultConductivity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FaultConductivity ** SOAP_FMAC4 soap_get_PointerToprodml22__FaultConductivity(struct soap*, prodml22__FaultConductivity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Region2Thickness(struct soap*, prodml22__Region2Thickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Region2Thickness(struct soap*, const char *, int, prodml22__Region2Thickness *const*, const char *); -SOAP_FMAC3 prodml22__Region2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml22__Region2Thickness(struct soap*, const char*, prodml22__Region2Thickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Region2Thickness(struct soap*, prodml22__Region2Thickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__Region2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml22__Region2Thickness(struct soap*, prodml22__Region2Thickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfLinearFront(struct soap*, prodml22__OrientationOfLinearFront *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfLinearFront(struct soap*, const char *, int, prodml22__OrientationOfLinearFront *const*, const char *); -SOAP_FMAC3 prodml22__OrientationOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfLinearFront(struct soap*, const char*, prodml22__OrientationOfLinearFront **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfLinearFront(struct soap*, prodml22__OrientationOfLinearFront *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OrientationOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfLinearFront(struct soap*, prodml22__OrientationOfLinearFront **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToMobilityInterface(struct soap*, prodml22__DistanceToMobilityInterface *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToMobilityInterface(struct soap*, const char *, int, prodml22__DistanceToMobilityInterface *const*, const char *); -SOAP_FMAC3 prodml22__DistanceToMobilityInterface ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToMobilityInterface(struct soap*, const char*, prodml22__DistanceToMobilityInterface **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToMobilityInterface(struct soap*, prodml22__DistanceToMobilityInterface *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceToMobilityInterface ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToMobilityInterface(struct soap*, prodml22__DistanceToMobilityInterface **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml22__InnerToOuterZoneDiffusivityRatio *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, const char *, int, prodml22__InnerToOuterZoneDiffusivityRatio *const*, const char *); -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, const char*, prodml22__InnerToOuterZoneDiffusivityRatio **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml22__InnerToOuterZoneDiffusivityRatio *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml22__InnerToOuterZoneDiffusivityRatio **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap*, prodml22__InnerToOuterZoneMobilityRatio *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap*, const char *, int, prodml22__InnerToOuterZoneMobilityRatio *const*, const char *); -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap*, const char*, prodml22__InnerToOuterZoneMobilityRatio **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap*, prodml22__InnerToOuterZoneMobilityRatio *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__InnerToOuterZoneMobilityRatio(struct soap*, prodml22__InnerToOuterZoneMobilityRatio **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SingleFractureSubModel(struct soap*, prodml22__SingleFractureSubModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SingleFractureSubModel(struct soap*, const char *, int, prodml22__SingleFractureSubModel *const*, const char *); -SOAP_FMAC3 prodml22__SingleFractureSubModel ** SOAP_FMAC4 soap_in_PointerToprodml22__SingleFractureSubModel(struct soap*, const char*, prodml22__SingleFractureSubModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SingleFractureSubModel(struct soap*, prodml22__SingleFractureSubModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SingleFractureSubModel ** SOAP_FMAC4 soap_get_PointerToprodml22__SingleFractureSubModel(struct soap*, prodml22__SingleFractureSubModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureAngleToWellbore(struct soap*, prodml22__FractureAngleToWellbore *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureAngleToWellbore(struct soap*, const char *, int, prodml22__FractureAngleToWellbore *const*, const char *); -SOAP_FMAC3 prodml22__FractureAngleToWellbore ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureAngleToWellbore(struct soap*, const char*, prodml22__FractureAngleToWellbore **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureAngleToWellbore(struct soap*, prodml22__FractureAngleToWellbore *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureAngleToWellbore ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureAngleToWellbore(struct soap*, prodml22__FractureAngleToWellbore **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NumberOfFractures(struct soap*, prodml22__NumberOfFractures *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NumberOfFractures(struct soap*, const char *, int, prodml22__NumberOfFractures *const*, const char *); -SOAP_FMAC3 prodml22__NumberOfFractures ** SOAP_FMAC4 soap_in_PointerToprodml22__NumberOfFractures(struct soap*, const char*, prodml22__NumberOfFractures **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NumberOfFractures(struct soap*, prodml22__NumberOfFractures *const*, const char*, const char*); -SOAP_FMAC3 prodml22__NumberOfFractures ** SOAP_FMAC4 soap_get_PointerToprodml22__NumberOfFractures(struct soap*, prodml22__NumberOfFractures **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap*, prodml22__DistanceWellboreToBottomBoundary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap*, const char *, int, prodml22__DistanceWellboreToBottomBoundary *const*, const char *); -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap*, const char*, prodml22__DistanceWellboreToBottomBoundary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap*, prodml22__DistanceWellboreToBottomBoundary *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceWellboreToBottomBoundary(struct soap*, prodml22__DistanceWellboreToBottomBoundary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap*, prodml22__LengthHorizontalWellboreFlowing *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap*, const char *, int, prodml22__LengthHorizontalWellboreFlowing *const*, const char *); -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_in_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap*, const char*, prodml22__LengthHorizontalWellboreFlowing **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap*, prodml22__LengthHorizontalWellboreFlowing *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_get_PointerToprodml22__LengthHorizontalWellboreFlowing(struct soap*, prodml22__LengthHorizontalWellboreFlowing **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationWellTrajectory(struct soap*, prodml22__OrientationWellTrajectory *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationWellTrajectory(struct soap*, const char *, int, prodml22__OrientationWellTrajectory *const*, const char *); -SOAP_FMAC3 prodml22__OrientationWellTrajectory ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationWellTrajectory(struct soap*, const char*, prodml22__OrientationWellTrajectory **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationWellTrajectory(struct soap*, prodml22__OrientationWellTrajectory *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OrientationWellTrajectory ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationWellTrajectory(struct soap*, prodml22__OrientationWellTrajectory **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml22__MechanicalSkinRelativeToTotalThickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, const char *, int, prodml22__MechanicalSkinRelativeToTotalThickness *const*, const char *); -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, const char*, prodml22__MechanicalSkinRelativeToTotalThickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml22__MechanicalSkinRelativeToTotalThickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml22__MechanicalSkinRelativeToTotalThickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml22__ConvergenceSkinRelativeToTotalThickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char *, int, prodml22__ConvergenceSkinRelativeToTotalThickness *const*, const char *); -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char*, prodml22__ConvergenceSkinRelativeToTotalThickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml22__ConvergenceSkinRelativeToTotalThickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml22__ConvergenceSkinRelativeToTotalThickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap*, prodml22__DistanceFractureToBottomBoundary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap*, const char *, int, prodml22__DistanceFractureToBottomBoundary *const*, const char *); -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap*, const char*, prodml22__DistanceFractureToBottomBoundary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap*, prodml22__DistanceFractureToBottomBoundary *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceFractureToBottomBoundary(struct soap*, prodml22__DistanceFractureToBottomBoundary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureRadius(struct soap*, prodml22__FractureRadius *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureRadius(struct soap*, const char *, int, prodml22__FractureRadius *const*, const char *); -SOAP_FMAC3 prodml22__FractureRadius ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureRadius(struct soap*, const char*, prodml22__FractureRadius **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureRadius(struct soap*, prodml22__FractureRadius *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureRadius ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureRadius(struct soap*, prodml22__FractureRadius **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfFracturePlane(struct soap*, prodml22__OrientationOfFracturePlane *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfFracturePlane(struct soap*, const char *, int, prodml22__OrientationOfFracturePlane *const*, const char *); -SOAP_FMAC3 prodml22__OrientationOfFracturePlane ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfFracturePlane(struct soap*, const char*, prodml22__OrientationOfFracturePlane **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfFracturePlane(struct soap*, prodml22__OrientationOfFracturePlane *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OrientationOfFracturePlane ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfFracturePlane(struct soap*, prodml22__OrientationOfFracturePlane **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureHalfLength(struct soap*, prodml22__FractureHalfLength *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureHalfLength(struct soap*, const char *, int, prodml22__FractureHalfLength *const*, const char *); -SOAP_FMAC3 prodml22__FractureHalfLength ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureHalfLength(struct soap*, const char*, prodml22__FractureHalfLength **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureHalfLength(struct soap*, prodml22__FractureHalfLength *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureHalfLength ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureHalfLength(struct soap*, prodml22__FractureHalfLength **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap*, prodml22__SkinLayer2RelativeToTotalThickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap*, const char *, int, prodml22__SkinLayer2RelativeToTotalThickness *const*, const char *); -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap*, const char*, prodml22__SkinLayer2RelativeToTotalThickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap*, prodml22__SkinLayer2RelativeToTotalThickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__SkinLayer2RelativeToTotalThickness(struct soap*, prodml22__SkinLayer2RelativeToTotalThickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Layer2Thickness(struct soap*, prodml22__Layer2Thickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Layer2Thickness(struct soap*, const char *, int, prodml22__Layer2Thickness *const*, const char *); -SOAP_FMAC3 prodml22__Layer2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml22__Layer2Thickness(struct soap*, const char*, prodml22__Layer2Thickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Layer2Thickness(struct soap*, prodml22__Layer2Thickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__Layer2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml22__Layer2Thickness(struct soap*, prodml22__Layer2Thickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char *, int, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*, const char *); -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char*, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__StorativityRatio(struct soap*, prodml22__StorativityRatio *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__StorativityRatio(struct soap*, const char *, int, prodml22__StorativityRatio *const*, const char *); -SOAP_FMAC3 prodml22__StorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__StorativityRatio(struct soap*, const char*, prodml22__StorativityRatio **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__StorativityRatio(struct soap*, prodml22__StorativityRatio *const*, const char*, const char*); -SOAP_FMAC3 prodml22__StorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__StorativityRatio(struct soap*, prodml22__StorativityRatio **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ModelName(struct soap*, prodml22__ModelName *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ModelName(struct soap*, const char *, int, prodml22__ModelName *const*, const char *); -SOAP_FMAC3 prodml22__ModelName ** SOAP_FMAC4 soap_in_PointerToprodml22__ModelName(struct soap*, const char*, prodml22__ModelName **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ModelName(struct soap*, prodml22__ModelName *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ModelName ** SOAP_FMAC4 soap_get_PointerToprodml22__ModelName(struct soap*, prodml22__ModelName **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap*, prodml22__OrientationOfNormalToBoundary1 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap*, const char *, int, prodml22__OrientationOfNormalToBoundary1 *const*, const char *); -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap*, const char*, prodml22__OrientationOfNormalToBoundary1 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap*, prodml22__OrientationOfNormalToBoundary1 *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfNormalToBoundary1(struct soap*, prodml22__OrientationOfNormalToBoundary1 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary4(struct soap*, prodml22__DistanceToBoundary4 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary4(struct soap*, const char *, int, prodml22__DistanceToBoundary4 *const*, const char *); -SOAP_FMAC3 prodml22__DistanceToBoundary4 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary4(struct soap*, const char*, prodml22__DistanceToBoundary4 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary4(struct soap*, prodml22__DistanceToBoundary4 *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary4 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary4(struct soap*, prodml22__DistanceToBoundary4 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary3(struct soap*, prodml22__DistanceToBoundary3 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary3(struct soap*, const char *, int, prodml22__DistanceToBoundary3 *const*, const char *); -SOAP_FMAC3 prodml22__DistanceToBoundary3 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary3(struct soap*, const char*, prodml22__DistanceToBoundary3 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary3(struct soap*, prodml22__DistanceToBoundary3 *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary3 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary3(struct soap*, prodml22__DistanceToBoundary3 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary2(struct soap*, prodml22__DistanceToBoundary2 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary2(struct soap*, const char *, int, prodml22__DistanceToBoundary2 *const*, const char *); -SOAP_FMAC3 prodml22__DistanceToBoundary2 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary2(struct soap*, const char*, prodml22__DistanceToBoundary2 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary2(struct soap*, prodml22__DistanceToBoundary2 *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary2 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary2(struct soap*, prodml22__DistanceToBoundary2 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceToBoundary1(struct soap*, prodml22__DistanceToBoundary1 *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceToBoundary1(struct soap*, const char *, int, prodml22__DistanceToBoundary1 *const*, const char *); -SOAP_FMAC3 prodml22__DistanceToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceToBoundary1(struct soap*, const char*, prodml22__DistanceToBoundary1 **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceToBoundary1(struct soap*, prodml22__DistanceToBoundary1 *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceToBoundary1(struct soap*, prodml22__DistanceToBoundary1 **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PoreVolumeMeasured(struct soap*, prodml22__PoreVolumeMeasured *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PoreVolumeMeasured(struct soap*, const char *, int, prodml22__PoreVolumeMeasured *const*, const char *); -SOAP_FMAC3 prodml22__PoreVolumeMeasured ** SOAP_FMAC4 soap_in_PointerToprodml22__PoreVolumeMeasured(struct soap*, const char*, prodml22__PoreVolumeMeasured **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PoreVolumeMeasured(struct soap*, prodml22__PoreVolumeMeasured *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PoreVolumeMeasured ** SOAP_FMAC4 soap_get_PointerToprodml22__PoreVolumeMeasured(struct soap*, prodml22__PoreVolumeMeasured **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DrainageAreaMeasured(struct soap*, prodml22__DrainageAreaMeasured *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DrainageAreaMeasured(struct soap*, const char *, int, prodml22__DrainageAreaMeasured *const*, const char *); -SOAP_FMAC3 prodml22__DrainageAreaMeasured ** SOAP_FMAC4 soap_in_PointerToprodml22__DrainageAreaMeasured(struct soap*, const char*, prodml22__DrainageAreaMeasured **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DrainageAreaMeasured(struct soap*, prodml22__DrainageAreaMeasured *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DrainageAreaMeasured ** SOAP_FMAC4 soap_get_PointerToprodml22__DrainageAreaMeasured(struct soap*, prodml22__DrainageAreaMeasured **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LeakSkin(struct soap*, prodml22__LeakSkin *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LeakSkin(struct soap*, const char *, int, prodml22__LeakSkin *const*, const char *); -SOAP_FMAC3 prodml22__LeakSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__LeakSkin(struct soap*, const char*, prodml22__LeakSkin **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LeakSkin(struct soap*, prodml22__LeakSkin *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LeakSkin ** SOAP_FMAC4 soap_get_PointerToprodml22__LeakSkin(struct soap*, prodml22__LeakSkin **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeltaTimeStorageChanges(struct soap*, prodml22__DeltaTimeStorageChanges *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeltaTimeStorageChanges(struct soap*, const char *, int, prodml22__DeltaTimeStorageChanges *const*, const char *); -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_in_PointerToprodml22__DeltaTimeStorageChanges(struct soap*, const char*, prodml22__DeltaTimeStorageChanges **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeltaTimeStorageChanges(struct soap*, prodml22__DeltaTimeStorageChanges *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_get_PointerToprodml22__DeltaTimeStorageChanges(struct soap*, prodml22__DeltaTimeStorageChanges **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap*, prodml22__RatioInitialToFinalWellboreStorage *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap*, const char *, int, prodml22__RatioInitialToFinalWellboreStorage *const*, const char *); -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_in_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap*, const char*, prodml22__RatioInitialToFinalWellboreStorage **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap*, prodml22__RatioInitialToFinalWellboreStorage *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_get_PointerToprodml22__RatioInitialToFinalWellboreStorage(struct soap*, prodml22__RatioInitialToFinalWellboreStorage **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowTestMeasurementSet(struct soap*, prodml22__FlowTestMeasurementSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowTestMeasurementSet(struct soap*, const char *, int, prodml22__FlowTestMeasurementSet *const*, const char *); -SOAP_FMAC3 prodml22__FlowTestMeasurementSet ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowTestMeasurementSet(struct soap*, const char*, prodml22__FlowTestMeasurementSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowTestMeasurementSet(struct soap*, prodml22__FlowTestMeasurementSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FlowTestMeasurementSet ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowTestMeasurementSet(struct soap*, prodml22__FlowTestMeasurementSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WaterSampleComponent(struct soap*, prodml22__WaterSampleComponent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WaterSampleComponent(struct soap*, const char *, int, prodml22__WaterSampleComponent *const*, const char *); -SOAP_FMAC3 prodml22__WaterSampleComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__WaterSampleComponent(struct soap*, const char*, prodml22__WaterSampleComponent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WaterSampleComponent(struct soap*, prodml22__WaterSampleComponent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WaterSampleComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__WaterSampleComponent(struct soap*, prodml22__WaterSampleComponent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WaterAnalysisTest(struct soap*, prodml22__WaterAnalysisTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WaterAnalysisTest(struct soap*, const char *, int, prodml22__WaterAnalysisTest *const*, const char *); -SOAP_FMAC3 prodml22__WaterAnalysisTest ** SOAP_FMAC4 soap_in_PointerToprodml22__WaterAnalysisTest(struct soap*, const char*, prodml22__WaterAnalysisTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WaterAnalysisTest(struct soap*, prodml22__WaterAnalysisTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WaterAnalysisTest ** SOAP_FMAC4 soap_get_PointerToprodml22__WaterAnalysisTest(struct soap*, prodml22__WaterAnalysisTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NonHydrocarbonTest(struct soap*, prodml22__NonHydrocarbonTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NonHydrocarbonTest(struct soap*, const char *, int, prodml22__NonHydrocarbonTest *const*, const char *); -SOAP_FMAC3 prodml22__NonHydrocarbonTest ** SOAP_FMAC4 soap_in_PointerToprodml22__NonHydrocarbonTest(struct soap*, const char*, prodml22__NonHydrocarbonTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NonHydrocarbonTest(struct soap*, prodml22__NonHydrocarbonTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__NonHydrocarbonTest ** SOAP_FMAC4 soap_get_PointerToprodml22__NonHydrocarbonTest(struct soap*, prodml22__NonHydrocarbonTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterfacialTensionTest(struct soap*, prodml22__InterfacialTensionTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterfacialTensionTest(struct soap*, const char *, int, prodml22__InterfacialTensionTest *const*, const char *); -SOAP_FMAC3 prodml22__InterfacialTensionTest ** SOAP_FMAC4 soap_in_PointerToprodml22__InterfacialTensionTest(struct soap*, const char*, prodml22__InterfacialTensionTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterfacialTensionTest(struct soap*, prodml22__InterfacialTensionTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InterfacialTensionTest ** SOAP_FMAC4 soap_get_PointerToprodml22__InterfacialTensionTest(struct soap*, prodml22__InterfacialTensionTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__STOAnalysis(struct soap*, prodml22__STOAnalysis *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__STOAnalysis(struct soap*, const char *, int, prodml22__STOAnalysis *const*, const char *); -SOAP_FMAC3 prodml22__STOAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__STOAnalysis(struct soap*, const char*, prodml22__STOAnalysis **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__STOAnalysis(struct soap*, prodml22__STOAnalysis *const*, const char*, const char*); -SOAP_FMAC3 prodml22__STOAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__STOAnalysis(struct soap*, prodml22__STOAnalysis **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MultipleContactMiscibilityTest(struct soap*, prodml22__MultipleContactMiscibilityTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MultipleContactMiscibilityTest(struct soap*, const char *, int, prodml22__MultipleContactMiscibilityTest *const*, const char *); -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_in_PointerToprodml22__MultipleContactMiscibilityTest(struct soap*, const char*, prodml22__MultipleContactMiscibilityTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MultipleContactMiscibilityTest(struct soap*, prodml22__MultipleContactMiscibilityTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_get_PointerToprodml22__MultipleContactMiscibilityTest(struct soap*, prodml22__MultipleContactMiscibilityTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeTest(struct soap*, prodml22__SlimTubeTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeTest(struct soap*, const char *, int, prodml22__SlimTubeTest *const*, const char *); -SOAP_FMAC3 prodml22__SlimTubeTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeTest(struct soap*, const char*, prodml22__SlimTubeTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeTest(struct soap*, prodml22__SlimTubeTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SlimTubeTest ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeTest(struct soap*, prodml22__SlimTubeTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SwellingTest(struct soap*, prodml22__SwellingTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SwellingTest(struct soap*, const char *, int, prodml22__SwellingTest *const*, const char *); -SOAP_FMAC3 prodml22__SwellingTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SwellingTest(struct soap*, const char*, prodml22__SwellingTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SwellingTest(struct soap*, prodml22__SwellingTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SwellingTest ** SOAP_FMAC4 soap_get_PointerToprodml22__SwellingTest(struct soap*, prodml22__SwellingTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, prodml22__VaporLiquidEquilibriumTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, const char *, int, prodml22__VaporLiquidEquilibriumTest *const*, const char *); -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_in_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, const char*, prodml22__VaporLiquidEquilibriumTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, prodml22__VaporLiquidEquilibriumTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_get_PointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, prodml22__VaporLiquidEquilibriumTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OtherMeasurementTest(struct soap*, prodml22__OtherMeasurementTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OtherMeasurementTest(struct soap*, const char *, int, prodml22__OtherMeasurementTest *const*, const char *); -SOAP_FMAC3 prodml22__OtherMeasurementTest ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherMeasurementTest(struct soap*, const char*, prodml22__OtherMeasurementTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OtherMeasurementTest(struct soap*, prodml22__OtherMeasurementTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OtherMeasurementTest ** SOAP_FMAC4 soap_get_PointerToprodml22__OtherMeasurementTest(struct soap*, prodml22__OtherMeasurementTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSeparatorTest(struct soap*, prodml22__FluidSeparatorTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSeparatorTest(struct soap*, const char *, int, prodml22__FluidSeparatorTest *const*, const char *); -SOAP_FMAC3 prodml22__FluidSeparatorTest ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSeparatorTest(struct soap*, const char*, prodml22__FluidSeparatorTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSeparatorTest(struct soap*, prodml22__FluidSeparatorTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidSeparatorTest ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSeparatorTest(struct soap*, prodml22__FluidSeparatorTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConstantVolumeDepletionTest(struct soap*, prodml22__ConstantVolumeDepletionTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConstantVolumeDepletionTest(struct soap*, const char *, int, prodml22__ConstantVolumeDepletionTest *const*, const char *); -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_in_PointerToprodml22__ConstantVolumeDepletionTest(struct soap*, const char*, prodml22__ConstantVolumeDepletionTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConstantVolumeDepletionTest(struct soap*, prodml22__ConstantVolumeDepletionTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_get_PointerToprodml22__ConstantVolumeDepletionTest(struct soap*, prodml22__ConstantVolumeDepletionTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DifferentialLiberationTest(struct soap*, prodml22__DifferentialLiberationTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DifferentialLiberationTest(struct soap*, const char *, int, prodml22__DifferentialLiberationTest *const*, const char *); -SOAP_FMAC3 prodml22__DifferentialLiberationTest ** SOAP_FMAC4 soap_in_PointerToprodml22__DifferentialLiberationTest(struct soap*, const char*, prodml22__DifferentialLiberationTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DifferentialLiberationTest(struct soap*, prodml22__DifferentialLiberationTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DifferentialLiberationTest ** SOAP_FMAC4 soap_get_PointerToprodml22__DifferentialLiberationTest(struct soap*, prodml22__DifferentialLiberationTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationTest(struct soap*, prodml22__SaturationTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationTest(struct soap*, const char *, int, prodml22__SaturationTest *const*, const char *); -SOAP_FMAC3 prodml22__SaturationTest ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationTest(struct soap*, const char*, prodml22__SaturationTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationTest(struct soap*, prodml22__SaturationTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SaturationTest ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationTest(struct soap*, prodml22__SaturationTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConstantCompositionExpansionTest(struct soap*, prodml22__ConstantCompositionExpansionTest *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConstantCompositionExpansionTest(struct soap*, const char *, int, prodml22__ConstantCompositionExpansionTest *const*, const char *); -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_in_PointerToprodml22__ConstantCompositionExpansionTest(struct soap*, const char*, prodml22__ConstantCompositionExpansionTest **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConstantCompositionExpansionTest(struct soap*, prodml22__ConstantCompositionExpansionTest *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_get_PointerToprodml22__ConstantCompositionExpansionTest(struct soap*, prodml22__ConstantCompositionExpansionTest **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char *, int, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*, const char *); -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, prodml22__AtmosphericFlashTestAndCompositionalAnalysis **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml22__AtmosphericFlashTestAndCompositionalAnalysis *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml22__AtmosphericFlashTestAndCompositionalAnalysis **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleIntegrityAndPreparation(struct soap*, prodml22__SampleIntegrityAndPreparation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleIntegrityAndPreparation(struct soap*, const char *, int, prodml22__SampleIntegrityAndPreparation *const*, const char *); -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleIntegrityAndPreparation(struct soap*, const char*, prodml22__SampleIntegrityAndPreparation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleIntegrityAndPreparation(struct soap*, prodml22__SampleIntegrityAndPreparation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleIntegrityAndPreparation(struct soap*, prodml22__SampleIntegrityAndPreparation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationKind(struct soap*, prodml22__SaturationKind *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationKind(struct soap*, const char *, int, prodml22__SaturationKind *const*, const char *); -SOAP_FMAC3 prodml22__SaturationKind ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationKind(struct soap*, const char*, prodml22__SaturationKind **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationKind(struct soap*, prodml22__SaturationKind *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SaturationKind ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationKind(struct soap*, prodml22__SaturationKind **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AngleBetweenBoundaries(struct soap*, prodml23__AngleBetweenBoundaries *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AngleBetweenBoundaries(struct soap*, const char *, int, prodml23__AngleBetweenBoundaries *const*, const char *); +SOAP_FMAC3 prodml23__AngleBetweenBoundaries ** SOAP_FMAC4 soap_in_PointerToprodml23__AngleBetweenBoundaries(struct soap*, const char*, prodml23__AngleBetweenBoundaries **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AngleBetweenBoundaries(struct soap*, prodml23__AngleBetweenBoundaries *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AngleBetweenBoundaries ** SOAP_FMAC4 soap_get_PointerToprodml23__AngleBetweenBoundaries(struct soap*, prodml23__AngleBetweenBoundaries **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToPinchOut(struct soap*, prodml23__DistanceToPinchOut *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToPinchOut(struct soap*, const char *, int, prodml23__DistanceToPinchOut *const*, const char *); +SOAP_FMAC3 prodml23__DistanceToPinchOut ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToPinchOut(struct soap*, const char*, prodml23__DistanceToPinchOut **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToPinchOut(struct soap*, prodml23__DistanceToPinchOut *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToPinchOut ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToPinchOut(struct soap*, prodml23__DistanceToPinchOut **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml23__DistanceMidPerforationsToBottomBoundary *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, const char *, int, prodml23__DistanceMidPerforationsToBottomBoundary *const*, const char *); +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, const char*, prodml23__DistanceMidPerforationsToBottomBoundary **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml23__DistanceMidPerforationsToBottomBoundary *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceMidPerforationsToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, prodml23__DistanceMidPerforationsToBottomBoundary **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PerforatedLength(struct soap*, prodml23__PerforatedLength *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PerforatedLength(struct soap*, const char *, int, prodml23__PerforatedLength *const*, const char *); +SOAP_FMAC3 prodml23__PerforatedLength ** SOAP_FMAC4 soap_in_PointerToprodml23__PerforatedLength(struct soap*, const char*, prodml23__PerforatedLength **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PerforatedLength(struct soap*, prodml23__PerforatedLength *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PerforatedLength ** SOAP_FMAC4 soap_get_PointerToprodml23__PerforatedLength(struct soap*, prodml23__PerforatedLength **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReservoirZoneSubModel(struct soap*, prodml23__ReservoirZoneSubModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReservoirZoneSubModel(struct soap*, const char *, int, prodml23__ReservoirZoneSubModel *const*, const char *); +SOAP_FMAC3 prodml23__ReservoirZoneSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__ReservoirZoneSubModel(struct soap*, const char*, prodml23__ReservoirZoneSubModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReservoirZoneSubModel(struct soap*, prodml23__ReservoirZoneSubModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirZoneSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__ReservoirZoneSubModel(struct soap*, prodml23__ReservoirZoneSubModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistributedParametersSubModel(struct soap*, prodml23__DistributedParametersSubModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistributedParametersSubModel(struct soap*, const char *, int, prodml23__DistributedParametersSubModel *const*, const char *); +SOAP_FMAC3 prodml23__DistributedParametersSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__DistributedParametersSubModel(struct soap*, const char*, prodml23__DistributedParametersSubModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistributedParametersSubModel(struct soap*, prodml23__DistributedParametersSubModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistributedParametersSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__DistributedParametersSubModel(struct soap*, prodml23__DistributedParametersSubModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InternalFaultSubModel(struct soap*, prodml23__InternalFaultSubModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InternalFaultSubModel(struct soap*, const char *, int, prodml23__InternalFaultSubModel *const*, const char *); +SOAP_FMAC3 prodml23__InternalFaultSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__InternalFaultSubModel(struct soap*, const char*, prodml23__InternalFaultSubModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InternalFaultSubModel(struct soap*, prodml23__InternalFaultSubModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InternalFaultSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__InternalFaultSubModel(struct soap*, prodml23__InternalFaultSubModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SingleBoundarySubModel(struct soap*, prodml23__SingleBoundarySubModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SingleBoundarySubModel(struct soap*, const char *, int, prodml23__SingleBoundarySubModel *const*, const char *); +SOAP_FMAC3 prodml23__SingleBoundarySubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__SingleBoundarySubModel(struct soap*, const char*, prodml23__SingleBoundarySubModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SingleBoundarySubModel(struct soap*, prodml23__SingleBoundarySubModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SingleBoundarySubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__SingleBoundarySubModel(struct soap*, prodml23__SingleBoundarySubModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FaultConductivity(struct soap*, prodml23__FaultConductivity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FaultConductivity(struct soap*, const char *, int, prodml23__FaultConductivity *const*, const char *); +SOAP_FMAC3 prodml23__FaultConductivity ** SOAP_FMAC4 soap_in_PointerToprodml23__FaultConductivity(struct soap*, const char*, prodml23__FaultConductivity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FaultConductivity(struct soap*, prodml23__FaultConductivity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FaultConductivity ** SOAP_FMAC4 soap_get_PointerToprodml23__FaultConductivity(struct soap*, prodml23__FaultConductivity **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Region2Thickness(struct soap*, prodml23__Region2Thickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Region2Thickness(struct soap*, const char *, int, prodml23__Region2Thickness *const*, const char *); +SOAP_FMAC3 prodml23__Region2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml23__Region2Thickness(struct soap*, const char*, prodml23__Region2Thickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Region2Thickness(struct soap*, prodml23__Region2Thickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__Region2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml23__Region2Thickness(struct soap*, prodml23__Region2Thickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfLinearFront(struct soap*, prodml23__OrientationOfLinearFront *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfLinearFront(struct soap*, const char *, int, prodml23__OrientationOfLinearFront *const*, const char *); +SOAP_FMAC3 prodml23__OrientationOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfLinearFront(struct soap*, const char*, prodml23__OrientationOfLinearFront **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfLinearFront(struct soap*, prodml23__OrientationOfLinearFront *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfLinearFront(struct soap*, prodml23__OrientationOfLinearFront **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToMobilityInterface(struct soap*, prodml23__DistanceToMobilityInterface *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToMobilityInterface(struct soap*, const char *, int, prodml23__DistanceToMobilityInterface *const*, const char *); +SOAP_FMAC3 prodml23__DistanceToMobilityInterface ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToMobilityInterface(struct soap*, const char*, prodml23__DistanceToMobilityInterface **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToMobilityInterface(struct soap*, prodml23__DistanceToMobilityInterface *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToMobilityInterface ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToMobilityInterface(struct soap*, prodml23__DistanceToMobilityInterface **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml23__InnerToOuterZoneDiffusivityRatio *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, const char *, int, prodml23__InnerToOuterZoneDiffusivityRatio *const*, const char *); +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, const char*, prodml23__InnerToOuterZoneDiffusivityRatio **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml23__InnerToOuterZoneDiffusivityRatio *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InnerToOuterZoneDiffusivityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, prodml23__InnerToOuterZoneDiffusivityRatio **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap*, prodml23__InnerToOuterZoneMobilityRatio *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap*, const char *, int, prodml23__InnerToOuterZoneMobilityRatio *const*, const char *); +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap*, const char*, prodml23__InnerToOuterZoneMobilityRatio **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap*, prodml23__InnerToOuterZoneMobilityRatio *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InnerToOuterZoneMobilityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__InnerToOuterZoneMobilityRatio(struct soap*, prodml23__InnerToOuterZoneMobilityRatio **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SingleFractureSubModel(struct soap*, prodml23__SingleFractureSubModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SingleFractureSubModel(struct soap*, const char *, int, prodml23__SingleFractureSubModel *const*, const char *); +SOAP_FMAC3 prodml23__SingleFractureSubModel ** SOAP_FMAC4 soap_in_PointerToprodml23__SingleFractureSubModel(struct soap*, const char*, prodml23__SingleFractureSubModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SingleFractureSubModel(struct soap*, prodml23__SingleFractureSubModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SingleFractureSubModel ** SOAP_FMAC4 soap_get_PointerToprodml23__SingleFractureSubModel(struct soap*, prodml23__SingleFractureSubModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureAngleToWellbore(struct soap*, prodml23__FractureAngleToWellbore *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureAngleToWellbore(struct soap*, const char *, int, prodml23__FractureAngleToWellbore *const*, const char *); +SOAP_FMAC3 prodml23__FractureAngleToWellbore ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureAngleToWellbore(struct soap*, const char*, prodml23__FractureAngleToWellbore **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureAngleToWellbore(struct soap*, prodml23__FractureAngleToWellbore *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureAngleToWellbore ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureAngleToWellbore(struct soap*, prodml23__FractureAngleToWellbore **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NumberOfFractures(struct soap*, prodml23__NumberOfFractures *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NumberOfFractures(struct soap*, const char *, int, prodml23__NumberOfFractures *const*, const char *); +SOAP_FMAC3 prodml23__NumberOfFractures ** SOAP_FMAC4 soap_in_PointerToprodml23__NumberOfFractures(struct soap*, const char*, prodml23__NumberOfFractures **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NumberOfFractures(struct soap*, prodml23__NumberOfFractures *const*, const char*, const char*); +SOAP_FMAC3 prodml23__NumberOfFractures ** SOAP_FMAC4 soap_get_PointerToprodml23__NumberOfFractures(struct soap*, prodml23__NumberOfFractures **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap*, prodml23__DistanceWellboreToBottomBoundary *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap*, const char *, int, prodml23__DistanceWellboreToBottomBoundary *const*, const char *); +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap*, const char*, prodml23__DistanceWellboreToBottomBoundary **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap*, prodml23__DistanceWellboreToBottomBoundary *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceWellboreToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceWellboreToBottomBoundary(struct soap*, prodml23__DistanceWellboreToBottomBoundary **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap*, prodml23__LengthHorizontalWellboreFlowing *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap*, const char *, int, prodml23__LengthHorizontalWellboreFlowing *const*, const char *); +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_in_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap*, const char*, prodml23__LengthHorizontalWellboreFlowing **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap*, prodml23__LengthHorizontalWellboreFlowing *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LengthHorizontalWellboreFlowing ** SOAP_FMAC4 soap_get_PointerToprodml23__LengthHorizontalWellboreFlowing(struct soap*, prodml23__LengthHorizontalWellboreFlowing **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationWellTrajectory(struct soap*, prodml23__OrientationWellTrajectory *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationWellTrajectory(struct soap*, const char *, int, prodml23__OrientationWellTrajectory *const*, const char *); +SOAP_FMAC3 prodml23__OrientationWellTrajectory ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationWellTrajectory(struct soap*, const char*, prodml23__OrientationWellTrajectory **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationWellTrajectory(struct soap*, prodml23__OrientationWellTrajectory *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationWellTrajectory ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationWellTrajectory(struct soap*, prodml23__OrientationWellTrajectory **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml23__MechanicalSkinRelativeToTotalThickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, const char *, int, prodml23__MechanicalSkinRelativeToTotalThickness *const*, const char *); +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, const char*, prodml23__MechanicalSkinRelativeToTotalThickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml23__MechanicalSkinRelativeToTotalThickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MechanicalSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, prodml23__MechanicalSkinRelativeToTotalThickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml23__ConvergenceSkinRelativeToTotalThickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char *, int, prodml23__ConvergenceSkinRelativeToTotalThickness *const*, const char *); +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, const char*, prodml23__ConvergenceSkinRelativeToTotalThickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml23__ConvergenceSkinRelativeToTotalThickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ConvergenceSkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, prodml23__ConvergenceSkinRelativeToTotalThickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap*, prodml23__DistanceFractureToBottomBoundary *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap*, const char *, int, prodml23__DistanceFractureToBottomBoundary *const*, const char *); +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap*, const char*, prodml23__DistanceFractureToBottomBoundary **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap*, prodml23__DistanceFractureToBottomBoundary *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceFractureToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceFractureToBottomBoundary(struct soap*, prodml23__DistanceFractureToBottomBoundary **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureRadius(struct soap*, prodml23__FractureRadius *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureRadius(struct soap*, const char *, int, prodml23__FractureRadius *const*, const char *); +SOAP_FMAC3 prodml23__FractureRadius ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureRadius(struct soap*, const char*, prodml23__FractureRadius **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureRadius(struct soap*, prodml23__FractureRadius *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureRadius ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureRadius(struct soap*, prodml23__FractureRadius **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfFracturePlane(struct soap*, prodml23__OrientationOfFracturePlane *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfFracturePlane(struct soap*, const char *, int, prodml23__OrientationOfFracturePlane *const*, const char *); +SOAP_FMAC3 prodml23__OrientationOfFracturePlane ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfFracturePlane(struct soap*, const char*, prodml23__OrientationOfFracturePlane **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfFracturePlane(struct soap*, prodml23__OrientationOfFracturePlane *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfFracturePlane ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfFracturePlane(struct soap*, prodml23__OrientationOfFracturePlane **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureHalfLength(struct soap*, prodml23__FractureHalfLength *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureHalfLength(struct soap*, const char *, int, prodml23__FractureHalfLength *const*, const char *); +SOAP_FMAC3 prodml23__FractureHalfLength ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureHalfLength(struct soap*, const char*, prodml23__FractureHalfLength **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureHalfLength(struct soap*, prodml23__FractureHalfLength *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureHalfLength ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureHalfLength(struct soap*, prodml23__FractureHalfLength **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap*, prodml23__SkinLayer2RelativeToTotalThickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap*, const char *, int, prodml23__SkinLayer2RelativeToTotalThickness *const*, const char *); +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap*, const char*, prodml23__SkinLayer2RelativeToTotalThickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap*, prodml23__SkinLayer2RelativeToTotalThickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SkinLayer2RelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__SkinLayer2RelativeToTotalThickness(struct soap*, prodml23__SkinLayer2RelativeToTotalThickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Layer2Thickness(struct soap*, prodml23__Layer2Thickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Layer2Thickness(struct soap*, const char *, int, prodml23__Layer2Thickness *const*, const char *); +SOAP_FMAC3 prodml23__Layer2Thickness ** SOAP_FMAC4 soap_in_PointerToprodml23__Layer2Thickness(struct soap*, const char*, prodml23__Layer2Thickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Layer2Thickness(struct soap*, prodml23__Layer2Thickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__Layer2Thickness ** SOAP_FMAC4 soap_get_PointerToprodml23__Layer2Thickness(struct soap*, prodml23__Layer2Thickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char *, int, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*, const char *); +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, const char*, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__StorativityRatio(struct soap*, prodml23__StorativityRatio *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__StorativityRatio(struct soap*, const char *, int, prodml23__StorativityRatio *const*, const char *); +SOAP_FMAC3 prodml23__StorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__StorativityRatio(struct soap*, const char*, prodml23__StorativityRatio **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__StorativityRatio(struct soap*, prodml23__StorativityRatio *const*, const char*, const char*); +SOAP_FMAC3 prodml23__StorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__StorativityRatio(struct soap*, prodml23__StorativityRatio **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ModelName(struct soap*, prodml23__ModelName *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ModelName(struct soap*, const char *, int, prodml23__ModelName *const*, const char *); +SOAP_FMAC3 prodml23__ModelName ** SOAP_FMAC4 soap_in_PointerToprodml23__ModelName(struct soap*, const char*, prodml23__ModelName **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ModelName(struct soap*, prodml23__ModelName *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ModelName ** SOAP_FMAC4 soap_get_PointerToprodml23__ModelName(struct soap*, prodml23__ModelName **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap*, prodml23__OrientationOfNormalToBoundary1 *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap*, const char *, int, prodml23__OrientationOfNormalToBoundary1 *const*, const char *); +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap*, const char*, prodml23__OrientationOfNormalToBoundary1 **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap*, prodml23__OrientationOfNormalToBoundary1 *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfNormalToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfNormalToBoundary1(struct soap*, prodml23__OrientationOfNormalToBoundary1 **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary4(struct soap*, prodml23__DistanceToBoundary4 *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary4(struct soap*, const char *, int, prodml23__DistanceToBoundary4 *const*, const char *); +SOAP_FMAC3 prodml23__DistanceToBoundary4 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary4(struct soap*, const char*, prodml23__DistanceToBoundary4 **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary4(struct soap*, prodml23__DistanceToBoundary4 *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary4 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary4(struct soap*, prodml23__DistanceToBoundary4 **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary3(struct soap*, prodml23__DistanceToBoundary3 *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary3(struct soap*, const char *, int, prodml23__DistanceToBoundary3 *const*, const char *); +SOAP_FMAC3 prodml23__DistanceToBoundary3 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary3(struct soap*, const char*, prodml23__DistanceToBoundary3 **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary3(struct soap*, prodml23__DistanceToBoundary3 *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary3 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary3(struct soap*, prodml23__DistanceToBoundary3 **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary2(struct soap*, prodml23__DistanceToBoundary2 *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary2(struct soap*, const char *, int, prodml23__DistanceToBoundary2 *const*, const char *); +SOAP_FMAC3 prodml23__DistanceToBoundary2 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary2(struct soap*, const char*, prodml23__DistanceToBoundary2 **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary2(struct soap*, prodml23__DistanceToBoundary2 *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary2 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary2(struct soap*, prodml23__DistanceToBoundary2 **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceToBoundary1(struct soap*, prodml23__DistanceToBoundary1 *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceToBoundary1(struct soap*, const char *, int, prodml23__DistanceToBoundary1 *const*, const char *); +SOAP_FMAC3 prodml23__DistanceToBoundary1 ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceToBoundary1(struct soap*, const char*, prodml23__DistanceToBoundary1 **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceToBoundary1(struct soap*, prodml23__DistanceToBoundary1 *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceToBoundary1 ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceToBoundary1(struct soap*, prodml23__DistanceToBoundary1 **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PoreVolumeMeasured(struct soap*, prodml23__PoreVolumeMeasured *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PoreVolumeMeasured(struct soap*, const char *, int, prodml23__PoreVolumeMeasured *const*, const char *); +SOAP_FMAC3 prodml23__PoreVolumeMeasured ** SOAP_FMAC4 soap_in_PointerToprodml23__PoreVolumeMeasured(struct soap*, const char*, prodml23__PoreVolumeMeasured **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PoreVolumeMeasured(struct soap*, prodml23__PoreVolumeMeasured *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PoreVolumeMeasured ** SOAP_FMAC4 soap_get_PointerToprodml23__PoreVolumeMeasured(struct soap*, prodml23__PoreVolumeMeasured **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DrainageAreaMeasured(struct soap*, prodml23__DrainageAreaMeasured *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DrainageAreaMeasured(struct soap*, const char *, int, prodml23__DrainageAreaMeasured *const*, const char *); +SOAP_FMAC3 prodml23__DrainageAreaMeasured ** SOAP_FMAC4 soap_in_PointerToprodml23__DrainageAreaMeasured(struct soap*, const char*, prodml23__DrainageAreaMeasured **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DrainageAreaMeasured(struct soap*, prodml23__DrainageAreaMeasured *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DrainageAreaMeasured ** SOAP_FMAC4 soap_get_PointerToprodml23__DrainageAreaMeasured(struct soap*, prodml23__DrainageAreaMeasured **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LeakSkin(struct soap*, prodml23__LeakSkin *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LeakSkin(struct soap*, const char *, int, prodml23__LeakSkin *const*, const char *); +SOAP_FMAC3 prodml23__LeakSkin ** SOAP_FMAC4 soap_in_PointerToprodml23__LeakSkin(struct soap*, const char*, prodml23__LeakSkin **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LeakSkin(struct soap*, prodml23__LeakSkin *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LeakSkin ** SOAP_FMAC4 soap_get_PointerToprodml23__LeakSkin(struct soap*, prodml23__LeakSkin **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeltaTimeStorageChanges(struct soap*, prodml23__DeltaTimeStorageChanges *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeltaTimeStorageChanges(struct soap*, const char *, int, prodml23__DeltaTimeStorageChanges *const*, const char *); +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_in_PointerToprodml23__DeltaTimeStorageChanges(struct soap*, const char*, prodml23__DeltaTimeStorageChanges **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeltaTimeStorageChanges(struct soap*, prodml23__DeltaTimeStorageChanges *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DeltaTimeStorageChanges ** SOAP_FMAC4 soap_get_PointerToprodml23__DeltaTimeStorageChanges(struct soap*, prodml23__DeltaTimeStorageChanges **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap*, prodml23__RatioInitialToFinalWellboreStorage *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap*, const char *, int, prodml23__RatioInitialToFinalWellboreStorage *const*, const char *); +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_in_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap*, const char*, prodml23__RatioInitialToFinalWellboreStorage **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap*, prodml23__RatioInitialToFinalWellboreStorage *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RatioInitialToFinalWellboreStorage ** SOAP_FMAC4 soap_get_PointerToprodml23__RatioInitialToFinalWellboreStorage(struct soap*, prodml23__RatioInitialToFinalWellboreStorage **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowTestMeasurementSet(struct soap*, prodml23__FlowTestMeasurementSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowTestMeasurementSet(struct soap*, const char *, int, prodml23__FlowTestMeasurementSet *const*, const char *); +SOAP_FMAC3 prodml23__FlowTestMeasurementSet ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowTestMeasurementSet(struct soap*, const char*, prodml23__FlowTestMeasurementSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowTestMeasurementSet(struct soap*, prodml23__FlowTestMeasurementSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FlowTestMeasurementSet ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowTestMeasurementSet(struct soap*, prodml23__FlowTestMeasurementSet **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WaterSampleComponent(struct soap*, prodml23__WaterSampleComponent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WaterSampleComponent(struct soap*, const char *, int, prodml23__WaterSampleComponent *const*, const char *); +SOAP_FMAC3 prodml23__WaterSampleComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__WaterSampleComponent(struct soap*, const char*, prodml23__WaterSampleComponent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WaterSampleComponent(struct soap*, prodml23__WaterSampleComponent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WaterSampleComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__WaterSampleComponent(struct soap*, prodml23__WaterSampleComponent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WaterAnalysisTest(struct soap*, prodml23__WaterAnalysisTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WaterAnalysisTest(struct soap*, const char *, int, prodml23__WaterAnalysisTest *const*, const char *); +SOAP_FMAC3 prodml23__WaterAnalysisTest ** SOAP_FMAC4 soap_in_PointerToprodml23__WaterAnalysisTest(struct soap*, const char*, prodml23__WaterAnalysisTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WaterAnalysisTest(struct soap*, prodml23__WaterAnalysisTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WaterAnalysisTest ** SOAP_FMAC4 soap_get_PointerToprodml23__WaterAnalysisTest(struct soap*, prodml23__WaterAnalysisTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NonHydrocarbonTest(struct soap*, prodml23__NonHydrocarbonTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NonHydrocarbonTest(struct soap*, const char *, int, prodml23__NonHydrocarbonTest *const*, const char *); +SOAP_FMAC3 prodml23__NonHydrocarbonTest ** SOAP_FMAC4 soap_in_PointerToprodml23__NonHydrocarbonTest(struct soap*, const char*, prodml23__NonHydrocarbonTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NonHydrocarbonTest(struct soap*, prodml23__NonHydrocarbonTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__NonHydrocarbonTest ** SOAP_FMAC4 soap_get_PointerToprodml23__NonHydrocarbonTest(struct soap*, prodml23__NonHydrocarbonTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterfacialTensionTest(struct soap*, prodml23__InterfacialTensionTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterfacialTensionTest(struct soap*, const char *, int, prodml23__InterfacialTensionTest *const*, const char *); +SOAP_FMAC3 prodml23__InterfacialTensionTest ** SOAP_FMAC4 soap_in_PointerToprodml23__InterfacialTensionTest(struct soap*, const char*, prodml23__InterfacialTensionTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterfacialTensionTest(struct soap*, prodml23__InterfacialTensionTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InterfacialTensionTest ** SOAP_FMAC4 soap_get_PointerToprodml23__InterfacialTensionTest(struct soap*, prodml23__InterfacialTensionTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__STOAnalysis(struct soap*, prodml23__STOAnalysis *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__STOAnalysis(struct soap*, const char *, int, prodml23__STOAnalysis *const*, const char *); +SOAP_FMAC3 prodml23__STOAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__STOAnalysis(struct soap*, const char*, prodml23__STOAnalysis **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__STOAnalysis(struct soap*, prodml23__STOAnalysis *const*, const char*, const char*); +SOAP_FMAC3 prodml23__STOAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__STOAnalysis(struct soap*, prodml23__STOAnalysis **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MultipleContactMiscibilityTest(struct soap*, prodml23__MultipleContactMiscibilityTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MultipleContactMiscibilityTest(struct soap*, const char *, int, prodml23__MultipleContactMiscibilityTest *const*, const char *); +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_in_PointerToprodml23__MultipleContactMiscibilityTest(struct soap*, const char*, prodml23__MultipleContactMiscibilityTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MultipleContactMiscibilityTest(struct soap*, prodml23__MultipleContactMiscibilityTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MultipleContactMiscibilityTest ** SOAP_FMAC4 soap_get_PointerToprodml23__MultipleContactMiscibilityTest(struct soap*, prodml23__MultipleContactMiscibilityTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeTest(struct soap*, prodml23__SlimTubeTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeTest(struct soap*, const char *, int, prodml23__SlimTubeTest *const*, const char *); +SOAP_FMAC3 prodml23__SlimTubeTest ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeTest(struct soap*, const char*, prodml23__SlimTubeTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeTest(struct soap*, prodml23__SlimTubeTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeTest ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeTest(struct soap*, prodml23__SlimTubeTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SwellingTest(struct soap*, prodml23__SwellingTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SwellingTest(struct soap*, const char *, int, prodml23__SwellingTest *const*, const char *); +SOAP_FMAC3 prodml23__SwellingTest ** SOAP_FMAC4 soap_in_PointerToprodml23__SwellingTest(struct soap*, const char*, prodml23__SwellingTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SwellingTest(struct soap*, prodml23__SwellingTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SwellingTest ** SOAP_FMAC4 soap_get_PointerToprodml23__SwellingTest(struct soap*, prodml23__SwellingTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, prodml23__VaporLiquidEquilibriumTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, const char *, int, prodml23__VaporLiquidEquilibriumTest *const*, const char *); +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_in_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, const char*, prodml23__VaporLiquidEquilibriumTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, prodml23__VaporLiquidEquilibriumTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__VaporLiquidEquilibriumTest ** SOAP_FMAC4 soap_get_PointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, prodml23__VaporLiquidEquilibriumTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OtherMeasurementTest(struct soap*, prodml23__OtherMeasurementTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OtherMeasurementTest(struct soap*, const char *, int, prodml23__OtherMeasurementTest *const*, const char *); +SOAP_FMAC3 prodml23__OtherMeasurementTest ** SOAP_FMAC4 soap_in_PointerToprodml23__OtherMeasurementTest(struct soap*, const char*, prodml23__OtherMeasurementTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OtherMeasurementTest(struct soap*, prodml23__OtherMeasurementTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OtherMeasurementTest ** SOAP_FMAC4 soap_get_PointerToprodml23__OtherMeasurementTest(struct soap*, prodml23__OtherMeasurementTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSeparatorTest(struct soap*, prodml23__FluidSeparatorTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSeparatorTest(struct soap*, const char *, int, prodml23__FluidSeparatorTest *const*, const char *); +SOAP_FMAC3 prodml23__FluidSeparatorTest ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSeparatorTest(struct soap*, const char*, prodml23__FluidSeparatorTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSeparatorTest(struct soap*, prodml23__FluidSeparatorTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSeparatorTest ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSeparatorTest(struct soap*, prodml23__FluidSeparatorTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConstantVolumeDepletionTest(struct soap*, prodml23__ConstantVolumeDepletionTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConstantVolumeDepletionTest(struct soap*, const char *, int, prodml23__ConstantVolumeDepletionTest *const*, const char *); +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_in_PointerToprodml23__ConstantVolumeDepletionTest(struct soap*, const char*, prodml23__ConstantVolumeDepletionTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConstantVolumeDepletionTest(struct soap*, prodml23__ConstantVolumeDepletionTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantVolumeDepletionTest ** SOAP_FMAC4 soap_get_PointerToprodml23__ConstantVolumeDepletionTest(struct soap*, prodml23__ConstantVolumeDepletionTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DifferentialLiberationTest(struct soap*, prodml23__DifferentialLiberationTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DifferentialLiberationTest(struct soap*, const char *, int, prodml23__DifferentialLiberationTest *const*, const char *); +SOAP_FMAC3 prodml23__DifferentialLiberationTest ** SOAP_FMAC4 soap_in_PointerToprodml23__DifferentialLiberationTest(struct soap*, const char*, prodml23__DifferentialLiberationTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DifferentialLiberationTest(struct soap*, prodml23__DifferentialLiberationTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DifferentialLiberationTest ** SOAP_FMAC4 soap_get_PointerToprodml23__DifferentialLiberationTest(struct soap*, prodml23__DifferentialLiberationTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationTest(struct soap*, prodml23__SaturationTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationTest(struct soap*, const char *, int, prodml23__SaturationTest *const*, const char *); +SOAP_FMAC3 prodml23__SaturationTest ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationTest(struct soap*, const char*, prodml23__SaturationTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationTest(struct soap*, prodml23__SaturationTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationTest ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationTest(struct soap*, prodml23__SaturationTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConstantCompositionExpansionTest(struct soap*, prodml23__ConstantCompositionExpansionTest *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConstantCompositionExpansionTest(struct soap*, const char *, int, prodml23__ConstantCompositionExpansionTest *const*, const char *); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_in_PointerToprodml23__ConstantCompositionExpansionTest(struct soap*, const char*, prodml23__ConstantCompositionExpansionTest **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConstantCompositionExpansionTest(struct soap*, prodml23__ConstantCompositionExpansionTest *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTest ** SOAP_FMAC4 soap_get_PointerToprodml23__ConstantCompositionExpansionTest(struct soap*, prodml23__ConstantCompositionExpansionTest **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char *, int, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*, const char *); +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, prodml23__AtmosphericFlashTestAndCompositionalAnalysis **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml23__AtmosphericFlashTestAndCompositionalAnalysis *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AtmosphericFlashTestAndCompositionalAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, prodml23__AtmosphericFlashTestAndCompositionalAnalysis **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleIntegrityAndPreparation(struct soap*, prodml23__SampleIntegrityAndPreparation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleIntegrityAndPreparation(struct soap*, const char *, int, prodml23__SampleIntegrityAndPreparation *const*, const char *); +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleIntegrityAndPreparation(struct soap*, const char*, prodml23__SampleIntegrityAndPreparation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleIntegrityAndPreparation(struct soap*, prodml23__SampleIntegrityAndPreparation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SampleIntegrityAndPreparation ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleIntegrityAndPreparation(struct soap*, prodml23__SampleIntegrityAndPreparation **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationKind(struct soap*, prodml23__SaturationKind *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationKind(struct soap*, const char *, int, prodml23__SaturationKind *const*, const char *); +SOAP_FMAC3 prodml23__SaturationKind ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationKind(struct soap*, const char*, prodml23__SaturationKind **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationKind(struct soap*, prodml23__SaturationKind *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationKind ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationKind(struct soap*, prodml23__SaturationKind **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePressureKind_DEFINED @@ -233468,94 +233440,94 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToresqml22__ParametricLineIntersection SOAP_FMAC3 resqml22__ParametricLineIntersections ** SOAP_FMAC4 soap_get_PointerToresqml22__ParametricLineIntersections(struct soap*, resqml22__ParametricLineIntersections **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesThreshold(struct soap*, prodml22__TimeSeriesThreshold *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesThreshold(struct soap*, const char *, int, prodml22__TimeSeriesThreshold *const*, const char *); -SOAP_FMAC3 prodml22__TimeSeriesThreshold ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesThreshold(struct soap*, const char*, prodml22__TimeSeriesThreshold **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesThreshold(struct soap*, prodml22__TimeSeriesThreshold *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TimeSeriesThreshold ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesThreshold(struct soap*, prodml22__TimeSeriesThreshold **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointDateTime(struct soap*, prodml22__EndpointDateTime *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointDateTime(struct soap*, const char *, int, prodml22__EndpointDateTime *const*, const char *); -SOAP_FMAC3 prodml22__EndpointDateTime ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointDateTime(struct soap*, const char*, prodml22__EndpointDateTime **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointDateTime(struct soap*, prodml22__EndpointDateTime *const*, const char*, const char*); -SOAP_FMAC3 prodml22__EndpointDateTime ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointDateTime(struct soap*, prodml22__EndpointDateTime **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractValue(struct soap*, prodml22__AbstractValue *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractValue(struct soap*, const char *, int, prodml22__AbstractValue *const*, const char *); -SOAP_FMAC3 prodml22__AbstractValue ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractValue(struct soap*, const char*, prodml22__AbstractValue **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractValue(struct soap*, prodml22__AbstractValue *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractValue ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractValue(struct soap*, prodml22__AbstractValue **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__KeywordValueStruct(struct soap*, prodml22__KeywordValueStruct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__KeywordValueStruct(struct soap*, const char *, int, prodml22__KeywordValueStruct *const*, const char *); -SOAP_FMAC3 prodml22__KeywordValueStruct ** SOAP_FMAC4 soap_in_PointerToprodml22__KeywordValueStruct(struct soap*, const char*, prodml22__KeywordValueStruct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__KeywordValueStruct(struct soap*, prodml22__KeywordValueStruct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__KeywordValueStruct ** SOAP_FMAC4 soap_get_PointerToprodml22__KeywordValueStruct(struct soap*, prodml22__KeywordValueStruct **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesStringSample(struct soap*, prodml22__TimeSeriesStringSample *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesStringSample(struct soap*, const char *, int, prodml22__TimeSeriesStringSample *const*, const char *); -SOAP_FMAC3 prodml22__TimeSeriesStringSample ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesStringSample(struct soap*, const char*, prodml22__TimeSeriesStringSample **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesStringSample(struct soap*, prodml22__TimeSeriesStringSample *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TimeSeriesStringSample ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesStringSample(struct soap*, prodml22__TimeSeriesStringSample **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesDoubleSample(struct soap*, prodml22__TimeSeriesDoubleSample *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesDoubleSample(struct soap*, const char *, int, prodml22__TimeSeriesDoubleSample *const*, const char *); -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesDoubleSample(struct soap*, const char*, prodml22__TimeSeriesDoubleSample **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesDoubleSample(struct soap*, prodml22__TimeSeriesDoubleSample *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesDoubleSample(struct soap*, prodml22__TimeSeriesDoubleSample **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowNetwork(struct soap*, prodml22__ProductFlowNetwork *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowNetwork(struct soap*, const char *, int, prodml22__ProductFlowNetwork *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowNetwork ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowNetwork(struct soap*, const char*, prodml22__ProductFlowNetwork **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowNetwork(struct soap*, prodml22__ProductFlowNetwork *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowNetwork ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowNetwork(struct soap*, prodml22__ProductFlowNetwork **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowExternalReference(struct soap*, prodml22__ProductFlowExternalReference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowExternalReference(struct soap*, const char *, int, prodml22__ProductFlowExternalReference *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowExternalReference ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowExternalReference(struct soap*, const char*, prodml22__ProductFlowExternalReference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowExternalReference(struct soap*, prodml22__ProductFlowExternalReference *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowExternalReference ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowExternalReference(struct soap*, prodml22__ProductFlowExternalReference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__KindQualifiedString(struct soap*, prodml22__KindQualifiedString *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__KindQualifiedString(struct soap*, const char *, int, prodml22__KindQualifiedString *const*, const char *); -SOAP_FMAC3 prodml22__KindQualifiedString ** SOAP_FMAC4 soap_in_PointerToprodml22__KindQualifiedString(struct soap*, const char*, prodml22__KindQualifiedString **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__KindQualifiedString(struct soap*, prodml22__KindQualifiedString *const*, const char*, const char*); -SOAP_FMAC3 prodml22__KindQualifiedString ** SOAP_FMAC4 soap_get_PointerToprodml22__KindQualifiedString(struct soap*, prodml22__KindQualifiedString **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeFacility(struct soap*, prodml22__ProductVolumeFacility *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeFacility(struct soap*, const char *, int, prodml22__ProductVolumeFacility *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeFacility ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeFacility(struct soap*, const char*, prodml22__ProductVolumeFacility **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeFacility(struct soap*, prodml22__ProductVolumeFacility *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeFacility ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeFacility(struct soap*, prodml22__ProductVolumeFacility **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesThreshold(struct soap*, prodml23__TimeSeriesThreshold *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesThreshold(struct soap*, const char *, int, prodml23__TimeSeriesThreshold *const*, const char *); +SOAP_FMAC3 prodml23__TimeSeriesThreshold ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesThreshold(struct soap*, const char*, prodml23__TimeSeriesThreshold **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesThreshold(struct soap*, prodml23__TimeSeriesThreshold *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesThreshold ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesThreshold(struct soap*, prodml23__TimeSeriesThreshold **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointDateTime(struct soap*, prodml23__EndpointDateTime *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointDateTime(struct soap*, const char *, int, prodml23__EndpointDateTime *const*, const char *); +SOAP_FMAC3 prodml23__EndpointDateTime ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointDateTime(struct soap*, const char*, prodml23__EndpointDateTime **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointDateTime(struct soap*, prodml23__EndpointDateTime *const*, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointDateTime ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointDateTime(struct soap*, prodml23__EndpointDateTime **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractValue(struct soap*, prodml23__AbstractValue *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractValue(struct soap*, const char *, int, prodml23__AbstractValue *const*, const char *); +SOAP_FMAC3 prodml23__AbstractValue ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractValue(struct soap*, const char*, prodml23__AbstractValue **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractValue(struct soap*, prodml23__AbstractValue *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractValue ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractValue(struct soap*, prodml23__AbstractValue **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__KeywordValueStruct(struct soap*, prodml23__KeywordValueStruct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__KeywordValueStruct(struct soap*, const char *, int, prodml23__KeywordValueStruct *const*, const char *); +SOAP_FMAC3 prodml23__KeywordValueStruct ** SOAP_FMAC4 soap_in_PointerToprodml23__KeywordValueStruct(struct soap*, const char*, prodml23__KeywordValueStruct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__KeywordValueStruct(struct soap*, prodml23__KeywordValueStruct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__KeywordValueStruct ** SOAP_FMAC4 soap_get_PointerToprodml23__KeywordValueStruct(struct soap*, prodml23__KeywordValueStruct **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesStringSample(struct soap*, prodml23__TimeSeriesStringSample *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesStringSample(struct soap*, const char *, int, prodml23__TimeSeriesStringSample *const*, const char *); +SOAP_FMAC3 prodml23__TimeSeriesStringSample ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesStringSample(struct soap*, const char*, prodml23__TimeSeriesStringSample **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesStringSample(struct soap*, prodml23__TimeSeriesStringSample *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesStringSample ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesStringSample(struct soap*, prodml23__TimeSeriesStringSample **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesDoubleSample(struct soap*, prodml23__TimeSeriesDoubleSample *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesDoubleSample(struct soap*, const char *, int, prodml23__TimeSeriesDoubleSample *const*, const char *); +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesDoubleSample(struct soap*, const char*, prodml23__TimeSeriesDoubleSample **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesDoubleSample(struct soap*, prodml23__TimeSeriesDoubleSample *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesDoubleSample ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesDoubleSample(struct soap*, prodml23__TimeSeriesDoubleSample **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowNetwork(struct soap*, prodml23__ProductFlowNetwork *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowNetwork(struct soap*, const char *, int, prodml23__ProductFlowNetwork *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowNetwork ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowNetwork(struct soap*, const char*, prodml23__ProductFlowNetwork **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowNetwork(struct soap*, prodml23__ProductFlowNetwork *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowNetwork ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowNetwork(struct soap*, prodml23__ProductFlowNetwork **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowExternalReference(struct soap*, prodml23__ProductFlowExternalReference *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowExternalReference(struct soap*, const char *, int, prodml23__ProductFlowExternalReference *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowExternalReference ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowExternalReference(struct soap*, const char*, prodml23__ProductFlowExternalReference **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowExternalReference(struct soap*, prodml23__ProductFlowExternalReference *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowExternalReference ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowExternalReference(struct soap*, prodml23__ProductFlowExternalReference **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__KindQualifiedString(struct soap*, prodml23__KindQualifiedString *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__KindQualifiedString(struct soap*, const char *, int, prodml23__KindQualifiedString *const*, const char *); +SOAP_FMAC3 prodml23__KindQualifiedString ** SOAP_FMAC4 soap_in_PointerToprodml23__KindQualifiedString(struct soap*, const char*, prodml23__KindQualifiedString **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__KindQualifiedString(struct soap*, prodml23__KindQualifiedString *const*, const char*, const char*); +SOAP_FMAC3 prodml23__KindQualifiedString ** SOAP_FMAC4 soap_get_PointerToprodml23__KindQualifiedString(struct soap*, prodml23__KindQualifiedString **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeFacility(struct soap*, prodml23__ProductVolumeFacility *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeFacility(struct soap*, const char *, int, prodml23__ProductVolumeFacility *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeFacility ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeFacility(struct soap*, const char*, prodml23__ProductVolumeFacility **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeFacility(struct soap*, prodml23__ProductVolumeFacility *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeFacility ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeFacility(struct soap*, prodml23__ProductVolumeFacility **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferenceCondition_DEFINED @@ -233567,76 +233539,76 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__ReferenceCondition(struct soa SOAP_FMAC3 eml23__ReferenceCondition ** SOAP_FMAC4 soap_get_PointerToeml23__ReferenceCondition(struct soap*, eml23__ReferenceCondition **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CalculationMethod(struct soap*, prodml22__CalculationMethod *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CalculationMethod(struct soap*, const char *, int, prodml22__CalculationMethod *const*, const char *); -SOAP_FMAC3 prodml22__CalculationMethod ** SOAP_FMAC4 soap_in_PointerToprodml22__CalculationMethod(struct soap*, const char*, prodml22__CalculationMethod **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CalculationMethod(struct soap*, prodml22__CalculationMethod *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CalculationMethod ** SOAP_FMAC4 soap_get_PointerToprodml22__CalculationMethod(struct soap*, prodml22__CalculationMethod **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CalculationMethod(struct soap*, prodml23__CalculationMethod *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CalculationMethod(struct soap*, const char *, int, prodml23__CalculationMethod *const*, const char *); +SOAP_FMAC3 prodml23__CalculationMethod ** SOAP_FMAC4 soap_in_PointerToprodml23__CalculationMethod(struct soap*, const char*, prodml23__CalculationMethod **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CalculationMethod(struct soap*, prodml23__CalculationMethod *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CalculationMethod ** SOAP_FMAC4 soap_get_PointerToprodml23__CalculationMethod(struct soap*, prodml23__CalculationMethod **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointQualifiedDateTime(struct soap*, prodml22__EndpointQualifiedDateTime *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointQualifiedDateTime(struct soap*, const char *, int, prodml22__EndpointQualifiedDateTime *const*, const char *); -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointQualifiedDateTime(struct soap*, const char*, prodml22__EndpointQualifiedDateTime **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointQualifiedDateTime(struct soap*, prodml22__EndpointQualifiedDateTime *const*, const char*, const char*); -SOAP_FMAC3 prodml22__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointQualifiedDateTime(struct soap*, prodml22__EndpointQualifiedDateTime **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointQualifiedDateTime(struct soap*, prodml23__EndpointQualifiedDateTime *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointQualifiedDateTime(struct soap*, const char *, int, prodml23__EndpointQualifiedDateTime *const*, const char *); +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointQualifiedDateTime(struct soap*, const char*, prodml23__EndpointQualifiedDateTime **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointQualifiedDateTime(struct soap*, prodml23__EndpointQualifiedDateTime *const*, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifiedDateTime ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointQualifiedDateTime(struct soap*, prodml23__EndpointQualifiedDateTime **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__IntegerQualifiedCount(struct soap*, prodml22__IntegerQualifiedCount *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__IntegerQualifiedCount(struct soap*, const char *, int, prodml22__IntegerQualifiedCount *const*, const char *); -SOAP_FMAC3 prodml22__IntegerQualifiedCount ** SOAP_FMAC4 soap_in_PointerToprodml22__IntegerQualifiedCount(struct soap*, const char*, prodml22__IntegerQualifiedCount **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__IntegerQualifiedCount(struct soap*, prodml22__IntegerQualifiedCount *const*, const char*, const char*); -SOAP_FMAC3 prodml22__IntegerQualifiedCount ** SOAP_FMAC4 soap_get_PointerToprodml22__IntegerQualifiedCount(struct soap*, prodml22__IntegerQualifiedCount **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__IntegerQualifiedCount(struct soap*, prodml23__IntegerQualifiedCount *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__IntegerQualifiedCount(struct soap*, const char *, int, prodml23__IntegerQualifiedCount *const*, const char *); +SOAP_FMAC3 prodml23__IntegerQualifiedCount ** SOAP_FMAC4 soap_in_PointerToprodml23__IntegerQualifiedCount(struct soap*, const char*, prodml23__IntegerQualifiedCount **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__IntegerQualifiedCount(struct soap*, prodml23__IntegerQualifiedCount *const*, const char*, const char*); +SOAP_FMAC3 prodml23__IntegerQualifiedCount ** SOAP_FMAC4 soap_get_PointerToprodml23__IntegerQualifiedCount(struct soap*, prodml23__IntegerQualifiedCount **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleAcquisition(struct soap*, prodml22__FluidSampleAcquisition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleAcquisition(struct soap*, const char *, int, prodml22__FluidSampleAcquisition *const*, const char *); -SOAP_FMAC3 prodml22__FluidSampleAcquisition ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleAcquisition(struct soap*, const char*, prodml22__FluidSampleAcquisition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleAcquisition(struct soap*, prodml22__FluidSampleAcquisition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidSampleAcquisition ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleAcquisition(struct soap*, prodml22__FluidSampleAcquisition **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleAcquisition(struct soap*, prodml23__FluidSampleAcquisition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleAcquisition(struct soap*, const char *, int, prodml23__FluidSampleAcquisition *const*, const char *); +SOAP_FMAC3 prodml23__FluidSampleAcquisition ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleAcquisition(struct soap*, const char*, prodml23__FluidSampleAcquisition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleAcquisition(struct soap*, prodml23__FluidSampleAcquisition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisition ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleAcquisition(struct soap*, prodml23__FluidSampleAcquisition **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleRecombinationSpecification(struct soap*, prodml22__SampleRecombinationSpecification *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleRecombinationSpecification(struct soap*, const char *, int, prodml22__SampleRecombinationSpecification *const*, const char *); -SOAP_FMAC3 prodml22__SampleRecombinationSpecification ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleRecombinationSpecification(struct soap*, const char*, prodml22__SampleRecombinationSpecification **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleRecombinationSpecification(struct soap*, prodml22__SampleRecombinationSpecification *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SampleRecombinationSpecification ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleRecombinationSpecification(struct soap*, prodml22__SampleRecombinationSpecification **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleRecombinationSpecification(struct soap*, prodml23__SampleRecombinationSpecification *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleRecombinationSpecification(struct soap*, const char *, int, prodml23__SampleRecombinationSpecification *const*, const char *); +SOAP_FMAC3 prodml23__SampleRecombinationSpecification ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleRecombinationSpecification(struct soap*, const char*, prodml23__SampleRecombinationSpecification **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleRecombinationSpecification(struct soap*, prodml23__SampleRecombinationSpecification *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SampleRecombinationSpecification ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleRecombinationSpecification(struct soap*, prodml23__SampleRecombinationSpecification **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap*, prodml22__FluidSampleAcquisitionJobSource *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap*, const char *, int, prodml22__FluidSampleAcquisitionJobSource *const*, const char *); -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap*, const char*, prodml22__FluidSampleAcquisitionJobSource **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap*, prodml22__FluidSampleAcquisitionJobSource *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleAcquisitionJobSource(struct soap*, prodml22__FluidSampleAcquisitionJobSource **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap*, prodml23__FluidSampleAcquisitionJobSource *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap*, const char *, int, prodml23__FluidSampleAcquisitionJobSource *const*, const char *); +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap*, const char*, prodml23__FluidSampleAcquisitionJobSource **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap*, prodml23__FluidSampleAcquisitionJobSource *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleAcquisitionJobSource ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleAcquisitionJobSource(struct soap*, prodml23__FluidSampleAcquisitionJobSource **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, prodml22__FluidSampleChainOfCustodyEvent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, const char *, int, prodml22__FluidSampleChainOfCustodyEvent *const*, const char *); -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, const char*, prodml22__FluidSampleChainOfCustodyEvent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, prodml22__FluidSampleChainOfCustodyEvent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, prodml22__FluidSampleChainOfCustodyEvent **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, prodml23__FluidSampleChainOfCustodyEvent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, const char *, int, prodml23__FluidSampleChainOfCustodyEvent *const*, const char *); +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, const char*, prodml23__FluidSampleChainOfCustodyEvent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, prodml23__FluidSampleChainOfCustodyEvent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSampleChainOfCustodyEvent ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, prodml23__FluidSampleChainOfCustodyEvent **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSampleKindExt(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSampleKindExt(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSampleKindExt(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSampleKindExt(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSampleKindExt(struct soap*, std::string **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSampleKindExt(struct soap*, std::string *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSampleKindExt(struct soap*, const char *, int, std::string *const*, const char *); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSampleKindExt(struct soap*, const char*, std::string **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSampleKindExt(struct soap*, std::string *const*, const char*, const char*); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSampleKindExt(struct soap*, std::string **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerPressureMeasureExt_DEFINED @@ -233675,274 +233647,274 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__PermeabilityLengthMeasureExt( SOAP_FMAC3 eml23__PermeabilityLengthMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__PermeabilityLengthMeasureExt(struct soap*, eml23__PermeabilityLengthMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreStorageMechanismType(struct soap*, prodml22__WellboreStorageMechanismType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreStorageMechanismType(struct soap*, const char *, int, prodml22__WellboreStorageMechanismType *const*, const char *); -SOAP_FMAC3 prodml22__WellboreStorageMechanismType ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreStorageMechanismType(struct soap*, const char*, prodml22__WellboreStorageMechanismType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreStorageMechanismType(struct soap*, prodml22__WellboreStorageMechanismType *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreStorageMechanismType ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreStorageMechanismType(struct soap*, prodml22__WellboreStorageMechanismType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreDeviationAngle(struct soap*, prodml22__WellboreDeviationAngle *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreDeviationAngle(struct soap*, const char *, int, prodml22__WellboreDeviationAngle *const*, const char *); -SOAP_FMAC3 prodml22__WellboreDeviationAngle ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreDeviationAngle(struct soap*, const char*, prodml22__WellboreDeviationAngle **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreDeviationAngle(struct soap*, prodml22__WellboreDeviationAngle *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreDeviationAngle ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreDeviationAngle(struct soap*, prodml22__WellboreDeviationAngle **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidDensity(struct soap*, prodml22__FluidDensity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidDensity(struct soap*, const char *, int, prodml22__FluidDensity *const*, const char *); -SOAP_FMAC3 prodml22__FluidDensity ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidDensity(struct soap*, const char*, prodml22__FluidDensity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidDensity(struct soap*, prodml22__FluidDensity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidDensity ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidDensity(struct soap*, prodml22__FluidDensity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TubingInteralDiameter(struct soap*, prodml22__TubingInteralDiameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TubingInteralDiameter(struct soap*, const char *, int, prodml22__TubingInteralDiameter *const*, const char *); -SOAP_FMAC3 prodml22__TubingInteralDiameter ** SOAP_FMAC4 soap_in_PointerToprodml22__TubingInteralDiameter(struct soap*, const char*, prodml22__TubingInteralDiameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TubingInteralDiameter(struct soap*, prodml22__TubingInteralDiameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TubingInteralDiameter ** SOAP_FMAC4 soap_get_PointerToprodml22__TubingInteralDiameter(struct soap*, prodml22__TubingInteralDiameter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreFluidCompressibility(struct soap*, prodml22__WellboreFluidCompressibility *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreFluidCompressibility(struct soap*, const char *, int, prodml22__WellboreFluidCompressibility *const*, const char *); -SOAP_FMAC3 prodml22__WellboreFluidCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreFluidCompressibility(struct soap*, const char*, prodml22__WellboreFluidCompressibility **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreFluidCompressibility(struct soap*, prodml22__WellboreFluidCompressibility *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreFluidCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreFluidCompressibility(struct soap*, prodml22__WellboreFluidCompressibility **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreVolume(struct soap*, prodml22__WellboreVolume *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreVolume(struct soap*, const char *, int, prodml22__WellboreVolume *const*, const char *); -SOAP_FMAC3 prodml22__WellboreVolume ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreVolume(struct soap*, const char*, prodml22__WellboreVolume **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreVolume(struct soap*, prodml22__WellboreVolume *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreVolume ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreVolume(struct soap*, prodml22__WellboreVolume **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreStorageCoefficient(struct soap*, prodml22__WellboreStorageCoefficient *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreStorageCoefficient(struct soap*, const char *, int, prodml22__WellboreStorageCoefficient *const*, const char *); -SOAP_FMAC3 prodml22__WellboreStorageCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreStorageCoefficient(struct soap*, const char*, prodml22__WellboreStorageCoefficient **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreStorageCoefficient(struct soap*, prodml22__WellboreStorageCoefficient *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreStorageCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreStorageCoefficient(struct soap*, prodml22__WellboreStorageCoefficient **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreRadius(struct soap*, prodml22__WellboreRadius *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreRadius(struct soap*, const char *, int, prodml22__WellboreRadius *const*, const char *); -SOAP_FMAC3 prodml22__WellboreRadius ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreRadius(struct soap*, const char*, prodml22__WellboreRadius **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreRadius(struct soap*, prodml22__WellboreRadius *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreRadius ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreRadius(struct soap*, prodml22__WellboreRadius **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LowerBoundaryType(struct soap*, prodml22__LowerBoundaryType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LowerBoundaryType(struct soap*, const char *, int, prodml22__LowerBoundaryType *const*, const char *); -SOAP_FMAC3 prodml22__LowerBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml22__LowerBoundaryType(struct soap*, const char*, prodml22__LowerBoundaryType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LowerBoundaryType(struct soap*, prodml22__LowerBoundaryType *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LowerBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml22__LowerBoundaryType(struct soap*, prodml22__LowerBoundaryType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__UpperBoundaryType(struct soap*, prodml22__UpperBoundaryType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__UpperBoundaryType(struct soap*, const char *, int, prodml22__UpperBoundaryType *const*, const char *); -SOAP_FMAC3 prodml22__UpperBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml22__UpperBoundaryType(struct soap*, const char*, prodml22__UpperBoundaryType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__UpperBoundaryType(struct soap*, prodml22__UpperBoundaryType *const*, const char*, const char*); -SOAP_FMAC3 prodml22__UpperBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml22__UpperBoundaryType(struct soap*, prodml22__UpperBoundaryType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap*, prodml22__OrientationOfAnisotropyXDirection *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap*, const char *, int, prodml22__OrientationOfAnisotropyXDirection *const*, const char *); -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_in_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap*, const char*, prodml22__OrientationOfAnisotropyXDirection **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap*, prodml22__OrientationOfAnisotropyXDirection *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_get_PointerToprodml22__OrientationOfAnisotropyXDirection(struct soap*, prodml22__OrientationOfAnisotropyXDirection **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap*, prodml22__HorizontalAnisotropyKxToKy *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap*, const char *, int, prodml22__HorizontalAnisotropyKxToKy *const*, const char *); -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_in_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap*, const char*, prodml22__HorizontalAnisotropyKxToKy **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap*, prodml22__HorizontalAnisotropyKxToKy *const*, const char*, const char*); -SOAP_FMAC3 prodml22__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_get_PointerToprodml22__HorizontalAnisotropyKxToKy(struct soap*, prodml22__HorizontalAnisotropyKxToKy **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap*, prodml22__VerticalAnisotropyKvToKr *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap*, const char *, int, prodml22__VerticalAnisotropyKvToKr *const*, const char *); -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_in_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap*, const char*, prodml22__VerticalAnisotropyKvToKr **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap*, prodml22__VerticalAnisotropyKvToKr *const*, const char*, const char*); -SOAP_FMAC3 prodml22__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_get_PointerToprodml22__VerticalAnisotropyKvToKr(struct soap*, prodml22__VerticalAnisotropyKvToKr **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AveragePressure(struct soap*, prodml22__AveragePressure *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AveragePressure(struct soap*, const char *, int, prodml22__AveragePressure *const*, const char *); -SOAP_FMAC3 prodml22__AveragePressure ** SOAP_FMAC4 soap_in_PointerToprodml22__AveragePressure(struct soap*, const char*, prodml22__AveragePressure **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AveragePressure(struct soap*, prodml22__AveragePressure *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AveragePressure ** SOAP_FMAC4 soap_get_PointerToprodml22__AveragePressure(struct soap*, prodml22__AveragePressure **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PressureDatumTVD(struct soap*, prodml22__PressureDatumTVD *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PressureDatumTVD(struct soap*, const char *, int, prodml22__PressureDatumTVD *const*, const char *); -SOAP_FMAC3 prodml22__PressureDatumTVD ** SOAP_FMAC4 soap_in_PointerToprodml22__PressureDatumTVD(struct soap*, const char*, prodml22__PressureDatumTVD **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PressureDatumTVD(struct soap*, prodml22__PressureDatumTVD *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PressureDatumTVD ** SOAP_FMAC4 soap_get_PointerToprodml22__PressureDatumTVD(struct soap*, prodml22__PressureDatumTVD **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InitialPressure(struct soap*, prodml22__InitialPressure *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InitialPressure(struct soap*, const char *, int, prodml22__InitialPressure *const*, const char *); -SOAP_FMAC3 prodml22__InitialPressure ** SOAP_FMAC4 soap_in_PointerToprodml22__InitialPressure(struct soap*, const char*, prodml22__InitialPressure **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InitialPressure(struct soap*, prodml22__InitialPressure *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InitialPressure ** SOAP_FMAC4 soap_get_PointerToprodml22__InitialPressure(struct soap*, prodml22__InitialPressure **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PermeabilityThicknessProduct(struct soap*, prodml22__PermeabilityThicknessProduct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PermeabilityThicknessProduct(struct soap*, const char *, int, prodml22__PermeabilityThicknessProduct *const*, const char *); -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__PermeabilityThicknessProduct(struct soap*, const char*, prodml22__PermeabilityThicknessProduct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PermeabilityThicknessProduct(struct soap*, prodml22__PermeabilityThicknessProduct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__PermeabilityThicknessProduct(struct soap*, prodml22__PermeabilityThicknessProduct **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap*, prodml22__RatioDpSkinToTotalDrawdown *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap*, const char *, int, prodml22__RatioDpSkinToTotalDrawdown *const*, const char *); -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_in_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap*, const char*, prodml22__RatioDpSkinToTotalDrawdown **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap*, prodml22__RatioDpSkinToTotalDrawdown *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_get_PointerToprodml22__RatioDpSkinToTotalDrawdown(struct soap*, prodml22__RatioDpSkinToTotalDrawdown **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeltaPressureTotalSkin(struct soap*, prodml22__DeltaPressureTotalSkin *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeltaPressureTotalSkin(struct soap*, const char *, int, prodml22__DeltaPressureTotalSkin *const*, const char *); -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__DeltaPressureTotalSkin(struct soap*, const char*, prodml22__DeltaPressureTotalSkin **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeltaPressureTotalSkin(struct soap*, prodml22__DeltaPressureTotalSkin *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_get_PointerToprodml22__DeltaPressureTotalSkin(struct soap*, prodml22__DeltaPressureTotalSkin **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RateDependentSkinFactor(struct soap*, prodml22__RateDependentSkinFactor *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RateDependentSkinFactor(struct soap*, const char *, int, prodml22__RateDependentSkinFactor *const*, const char *); -SOAP_FMAC3 prodml22__RateDependentSkinFactor ** SOAP_FMAC4 soap_in_PointerToprodml22__RateDependentSkinFactor(struct soap*, const char*, prodml22__RateDependentSkinFactor **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RateDependentSkinFactor(struct soap*, prodml22__RateDependentSkinFactor *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RateDependentSkinFactor ** SOAP_FMAC4 soap_get_PointerToprodml22__RateDependentSkinFactor(struct soap*, prodml22__RateDependentSkinFactor **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SkinRelativeToTotalThickness(struct soap*, prodml22__SkinRelativeToTotalThickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SkinRelativeToTotalThickness(struct soap*, const char *, int, prodml22__SkinRelativeToTotalThickness *const*, const char *); -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__SkinRelativeToTotalThickness(struct soap*, const char*, prodml22__SkinRelativeToTotalThickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SkinRelativeToTotalThickness(struct soap*, prodml22__SkinRelativeToTotalThickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__SkinRelativeToTotalThickness(struct soap*, prodml22__SkinRelativeToTotalThickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PoreVolumeOfInvestigation(struct soap*, prodml22__PoreVolumeOfInvestigation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PoreVolumeOfInvestigation(struct soap*, const char *, int, prodml22__PoreVolumeOfInvestigation *const*, const char *); -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml22__PoreVolumeOfInvestigation(struct soap*, const char*, prodml22__PoreVolumeOfInvestigation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PoreVolumeOfInvestigation(struct soap*, prodml22__PoreVolumeOfInvestigation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml22__PoreVolumeOfInvestigation(struct soap*, prodml22__PoreVolumeOfInvestigation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RadiusOfInvestigation(struct soap*, prodml22__RadiusOfInvestigation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RadiusOfInvestigation(struct soap*, const char *, int, prodml22__RadiusOfInvestigation *const*, const char *); -SOAP_FMAC3 prodml22__RadiusOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml22__RadiusOfInvestigation(struct soap*, const char*, prodml22__RadiusOfInvestigation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RadiusOfInvestigation(struct soap*, prodml22__RadiusOfInvestigation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RadiusOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml22__RadiusOfInvestigation(struct soap*, prodml22__RadiusOfInvestigation **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OutputFlowData(struct soap*, prodml22__OutputFlowData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OutputFlowData(struct soap*, const char *, int, prodml22__OutputFlowData *const*, const char *); -SOAP_FMAC3 prodml22__OutputFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__OutputFlowData(struct soap*, const char*, prodml22__OutputFlowData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OutputFlowData(struct soap*, prodml22__OutputFlowData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OutputFlowData ** SOAP_FMAC4 soap_get_PointerToprodml22__OutputFlowData(struct soap*, prodml22__OutputFlowData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractDeconvolutionOutput(struct soap*, prodml22__AbstractDeconvolutionOutput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractDeconvolutionOutput(struct soap*, const char *, int, prodml22__AbstractDeconvolutionOutput *const*, const char *); -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractDeconvolutionOutput(struct soap*, const char*, prodml22__AbstractDeconvolutionOutput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractDeconvolutionOutput(struct soap*, prodml22__AbstractDeconvolutionOutput *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractDeconvolutionOutput(struct soap*, prodml22__AbstractDeconvolutionOutput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeconvolvedFlowData(struct soap*, prodml22__DeconvolvedFlowData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeconvolvedFlowData(struct soap*, const char *, int, prodml22__DeconvolvedFlowData *const*, const char *); -SOAP_FMAC3 prodml22__DeconvolvedFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__DeconvolvedFlowData(struct soap*, const char*, prodml22__DeconvolvedFlowData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeconvolvedFlowData(struct soap*, prodml22__DeconvolvedFlowData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DeconvolvedFlowData ** SOAP_FMAC4 soap_get_PointerToprodml22__DeconvolvedFlowData(struct soap*, prodml22__DeconvolvedFlowData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractFlowTestData(struct soap*, prodml22__AbstractFlowTestData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractFlowTestData(struct soap*, const char *, int, prodml22__AbstractFlowTestData *const*, const char *); -SOAP_FMAC3 prodml22__AbstractFlowTestData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractFlowTestData(struct soap*, const char*, prodml22__AbstractFlowTestData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractFlowTestData(struct soap*, prodml22__AbstractFlowTestData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractFlowTestData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractFlowTestData(struct soap*, prodml22__AbstractFlowTestData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SpecializedAnalysis(struct soap*, prodml22__SpecializedAnalysis *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SpecializedAnalysis(struct soap*, const char *, int, prodml22__SpecializedAnalysis *const*, const char *); -SOAP_FMAC3 prodml22__SpecializedAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__SpecializedAnalysis(struct soap*, const char*, prodml22__SpecializedAnalysis **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SpecializedAnalysis(struct soap*, prodml22__SpecializedAnalysis *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SpecializedAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__SpecializedAnalysis(struct soap*, prodml22__SpecializedAnalysis **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractRateHistory(struct soap*, prodml22__AbstractRateHistory *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractRateHistory(struct soap*, const char *, int, prodml22__AbstractRateHistory *const*, const char *); -SOAP_FMAC3 prodml22__AbstractRateHistory ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractRateHistory(struct soap*, const char*, prodml22__AbstractRateHistory **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractRateHistory(struct soap*, prodml22__AbstractRateHistory *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractRateHistory ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractRateHistory(struct soap*, prodml22__AbstractRateHistory **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LogLogAnalysis(struct soap*, prodml22__LogLogAnalysis *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LogLogAnalysis(struct soap*, const char *, int, prodml22__LogLogAnalysis *const*, const char *); -SOAP_FMAC3 prodml22__LogLogAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__LogLogAnalysis(struct soap*, const char*, prodml22__LogLogAnalysis **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LogLogAnalysis(struct soap*, prodml22__LogLogAnalysis *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LogLogAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__LogLogAnalysis(struct soap*, prodml22__LogLogAnalysis **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreStorageMechanismType(struct soap*, prodml23__WellboreStorageMechanismType *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreStorageMechanismType(struct soap*, const char *, int, prodml23__WellboreStorageMechanismType *const*, const char *); +SOAP_FMAC3 prodml23__WellboreStorageMechanismType ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreStorageMechanismType(struct soap*, const char*, prodml23__WellboreStorageMechanismType **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreStorageMechanismType(struct soap*, prodml23__WellboreStorageMechanismType *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreStorageMechanismType ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreStorageMechanismType(struct soap*, prodml23__WellboreStorageMechanismType **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreDeviationAngle(struct soap*, prodml23__WellboreDeviationAngle *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreDeviationAngle(struct soap*, const char *, int, prodml23__WellboreDeviationAngle *const*, const char *); +SOAP_FMAC3 prodml23__WellboreDeviationAngle ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreDeviationAngle(struct soap*, const char*, prodml23__WellboreDeviationAngle **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreDeviationAngle(struct soap*, prodml23__WellboreDeviationAngle *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreDeviationAngle ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreDeviationAngle(struct soap*, prodml23__WellboreDeviationAngle **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidDensity(struct soap*, prodml23__FluidDensity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidDensity(struct soap*, const char *, int, prodml23__FluidDensity *const*, const char *); +SOAP_FMAC3 prodml23__FluidDensity ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidDensity(struct soap*, const char*, prodml23__FluidDensity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidDensity(struct soap*, prodml23__FluidDensity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidDensity ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidDensity(struct soap*, prodml23__FluidDensity **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TubingInteralDiameter(struct soap*, prodml23__TubingInteralDiameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TubingInteralDiameter(struct soap*, const char *, int, prodml23__TubingInteralDiameter *const*, const char *); +SOAP_FMAC3 prodml23__TubingInteralDiameter ** SOAP_FMAC4 soap_in_PointerToprodml23__TubingInteralDiameter(struct soap*, const char*, prodml23__TubingInteralDiameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TubingInteralDiameter(struct soap*, prodml23__TubingInteralDiameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TubingInteralDiameter ** SOAP_FMAC4 soap_get_PointerToprodml23__TubingInteralDiameter(struct soap*, prodml23__TubingInteralDiameter **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreFluidCompressibility(struct soap*, prodml23__WellboreFluidCompressibility *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreFluidCompressibility(struct soap*, const char *, int, prodml23__WellboreFluidCompressibility *const*, const char *); +SOAP_FMAC3 prodml23__WellboreFluidCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreFluidCompressibility(struct soap*, const char*, prodml23__WellboreFluidCompressibility **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreFluidCompressibility(struct soap*, prodml23__WellboreFluidCompressibility *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreFluidCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreFluidCompressibility(struct soap*, prodml23__WellboreFluidCompressibility **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreVolume(struct soap*, prodml23__WellboreVolume *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreVolume(struct soap*, const char *, int, prodml23__WellboreVolume *const*, const char *); +SOAP_FMAC3 prodml23__WellboreVolume ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreVolume(struct soap*, const char*, prodml23__WellboreVolume **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreVolume(struct soap*, prodml23__WellboreVolume *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreVolume ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreVolume(struct soap*, prodml23__WellboreVolume **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreStorageCoefficient(struct soap*, prodml23__WellboreStorageCoefficient *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreStorageCoefficient(struct soap*, const char *, int, prodml23__WellboreStorageCoefficient *const*, const char *); +SOAP_FMAC3 prodml23__WellboreStorageCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreStorageCoefficient(struct soap*, const char*, prodml23__WellboreStorageCoefficient **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreStorageCoefficient(struct soap*, prodml23__WellboreStorageCoefficient *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreStorageCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreStorageCoefficient(struct soap*, prodml23__WellboreStorageCoefficient **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreRadius(struct soap*, prodml23__WellboreRadius *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreRadius(struct soap*, const char *, int, prodml23__WellboreRadius *const*, const char *); +SOAP_FMAC3 prodml23__WellboreRadius ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreRadius(struct soap*, const char*, prodml23__WellboreRadius **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreRadius(struct soap*, prodml23__WellboreRadius *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreRadius ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreRadius(struct soap*, prodml23__WellboreRadius **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LowerBoundaryType(struct soap*, prodml23__LowerBoundaryType *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LowerBoundaryType(struct soap*, const char *, int, prodml23__LowerBoundaryType *const*, const char *); +SOAP_FMAC3 prodml23__LowerBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml23__LowerBoundaryType(struct soap*, const char*, prodml23__LowerBoundaryType **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LowerBoundaryType(struct soap*, prodml23__LowerBoundaryType *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LowerBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml23__LowerBoundaryType(struct soap*, prodml23__LowerBoundaryType **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__UpperBoundaryType(struct soap*, prodml23__UpperBoundaryType *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__UpperBoundaryType(struct soap*, const char *, int, prodml23__UpperBoundaryType *const*, const char *); +SOAP_FMAC3 prodml23__UpperBoundaryType ** SOAP_FMAC4 soap_in_PointerToprodml23__UpperBoundaryType(struct soap*, const char*, prodml23__UpperBoundaryType **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__UpperBoundaryType(struct soap*, prodml23__UpperBoundaryType *const*, const char*, const char*); +SOAP_FMAC3 prodml23__UpperBoundaryType ** SOAP_FMAC4 soap_get_PointerToprodml23__UpperBoundaryType(struct soap*, prodml23__UpperBoundaryType **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap*, prodml23__OrientationOfAnisotropyXDirection *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap*, const char *, int, prodml23__OrientationOfAnisotropyXDirection *const*, const char *); +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_in_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap*, const char*, prodml23__OrientationOfAnisotropyXDirection **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap*, prodml23__OrientationOfAnisotropyXDirection *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OrientationOfAnisotropyXDirection ** SOAP_FMAC4 soap_get_PointerToprodml23__OrientationOfAnisotropyXDirection(struct soap*, prodml23__OrientationOfAnisotropyXDirection **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap*, prodml23__HorizontalAnisotropyKxToKy *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap*, const char *, int, prodml23__HorizontalAnisotropyKxToKy *const*, const char *); +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_in_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap*, const char*, prodml23__HorizontalAnisotropyKxToKy **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap*, prodml23__HorizontalAnisotropyKxToKy *const*, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalAnisotropyKxToKy ** SOAP_FMAC4 soap_get_PointerToprodml23__HorizontalAnisotropyKxToKy(struct soap*, prodml23__HorizontalAnisotropyKxToKy **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap*, prodml23__VerticalAnisotropyKvToKr *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap*, const char *, int, prodml23__VerticalAnisotropyKvToKr *const*, const char *); +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_in_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap*, const char*, prodml23__VerticalAnisotropyKvToKr **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap*, prodml23__VerticalAnisotropyKvToKr *const*, const char*, const char*); +SOAP_FMAC3 prodml23__VerticalAnisotropyKvToKr ** SOAP_FMAC4 soap_get_PointerToprodml23__VerticalAnisotropyKvToKr(struct soap*, prodml23__VerticalAnisotropyKvToKr **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AveragePressure(struct soap*, prodml23__AveragePressure *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AveragePressure(struct soap*, const char *, int, prodml23__AveragePressure *const*, const char *); +SOAP_FMAC3 prodml23__AveragePressure ** SOAP_FMAC4 soap_in_PointerToprodml23__AveragePressure(struct soap*, const char*, prodml23__AveragePressure **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AveragePressure(struct soap*, prodml23__AveragePressure *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AveragePressure ** SOAP_FMAC4 soap_get_PointerToprodml23__AveragePressure(struct soap*, prodml23__AveragePressure **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PressureDatumTVD(struct soap*, prodml23__PressureDatumTVD *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PressureDatumTVD(struct soap*, const char *, int, prodml23__PressureDatumTVD *const*, const char *); +SOAP_FMAC3 prodml23__PressureDatumTVD ** SOAP_FMAC4 soap_in_PointerToprodml23__PressureDatumTVD(struct soap*, const char*, prodml23__PressureDatumTVD **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PressureDatumTVD(struct soap*, prodml23__PressureDatumTVD *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PressureDatumTVD ** SOAP_FMAC4 soap_get_PointerToprodml23__PressureDatumTVD(struct soap*, prodml23__PressureDatumTVD **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InitialPressure(struct soap*, prodml23__InitialPressure *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InitialPressure(struct soap*, const char *, int, prodml23__InitialPressure *const*, const char *); +SOAP_FMAC3 prodml23__InitialPressure ** SOAP_FMAC4 soap_in_PointerToprodml23__InitialPressure(struct soap*, const char*, prodml23__InitialPressure **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InitialPressure(struct soap*, prodml23__InitialPressure *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InitialPressure ** SOAP_FMAC4 soap_get_PointerToprodml23__InitialPressure(struct soap*, prodml23__InitialPressure **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PermeabilityThicknessProduct(struct soap*, prodml23__PermeabilityThicknessProduct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PermeabilityThicknessProduct(struct soap*, const char *, int, prodml23__PermeabilityThicknessProduct *const*, const char *); +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__PermeabilityThicknessProduct(struct soap*, const char*, prodml23__PermeabilityThicknessProduct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PermeabilityThicknessProduct(struct soap*, prodml23__PermeabilityThicknessProduct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PermeabilityThicknessProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__PermeabilityThicknessProduct(struct soap*, prodml23__PermeabilityThicknessProduct **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap*, prodml23__RatioDpSkinToTotalDrawdown *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap*, const char *, int, prodml23__RatioDpSkinToTotalDrawdown *const*, const char *); +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_in_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap*, const char*, prodml23__RatioDpSkinToTotalDrawdown **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap*, prodml23__RatioDpSkinToTotalDrawdown *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RatioDpSkinToTotalDrawdown ** SOAP_FMAC4 soap_get_PointerToprodml23__RatioDpSkinToTotalDrawdown(struct soap*, prodml23__RatioDpSkinToTotalDrawdown **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeltaPressureTotalSkin(struct soap*, prodml23__DeltaPressureTotalSkin *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeltaPressureTotalSkin(struct soap*, const char *, int, prodml23__DeltaPressureTotalSkin *const*, const char *); +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_in_PointerToprodml23__DeltaPressureTotalSkin(struct soap*, const char*, prodml23__DeltaPressureTotalSkin **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeltaPressureTotalSkin(struct soap*, prodml23__DeltaPressureTotalSkin *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DeltaPressureTotalSkin ** SOAP_FMAC4 soap_get_PointerToprodml23__DeltaPressureTotalSkin(struct soap*, prodml23__DeltaPressureTotalSkin **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RateDependentSkinFactor(struct soap*, prodml23__RateDependentSkinFactor *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RateDependentSkinFactor(struct soap*, const char *, int, prodml23__RateDependentSkinFactor *const*, const char *); +SOAP_FMAC3 prodml23__RateDependentSkinFactor ** SOAP_FMAC4 soap_in_PointerToprodml23__RateDependentSkinFactor(struct soap*, const char*, prodml23__RateDependentSkinFactor **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RateDependentSkinFactor(struct soap*, prodml23__RateDependentSkinFactor *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RateDependentSkinFactor ** SOAP_FMAC4 soap_get_PointerToprodml23__RateDependentSkinFactor(struct soap*, prodml23__RateDependentSkinFactor **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SkinRelativeToTotalThickness(struct soap*, prodml23__SkinRelativeToTotalThickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SkinRelativeToTotalThickness(struct soap*, const char *, int, prodml23__SkinRelativeToTotalThickness *const*, const char *); +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__SkinRelativeToTotalThickness(struct soap*, const char*, prodml23__SkinRelativeToTotalThickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SkinRelativeToTotalThickness(struct soap*, prodml23__SkinRelativeToTotalThickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SkinRelativeToTotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__SkinRelativeToTotalThickness(struct soap*, prodml23__SkinRelativeToTotalThickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PoreVolumeOfInvestigation(struct soap*, prodml23__PoreVolumeOfInvestigation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PoreVolumeOfInvestigation(struct soap*, const char *, int, prodml23__PoreVolumeOfInvestigation *const*, const char *); +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml23__PoreVolumeOfInvestigation(struct soap*, const char*, prodml23__PoreVolumeOfInvestigation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PoreVolumeOfInvestigation(struct soap*, prodml23__PoreVolumeOfInvestigation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PoreVolumeOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml23__PoreVolumeOfInvestigation(struct soap*, prodml23__PoreVolumeOfInvestigation **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RadiusOfInvestigation(struct soap*, prodml23__RadiusOfInvestigation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RadiusOfInvestigation(struct soap*, const char *, int, prodml23__RadiusOfInvestigation *const*, const char *); +SOAP_FMAC3 prodml23__RadiusOfInvestigation ** SOAP_FMAC4 soap_in_PointerToprodml23__RadiusOfInvestigation(struct soap*, const char*, prodml23__RadiusOfInvestigation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RadiusOfInvestigation(struct soap*, prodml23__RadiusOfInvestigation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RadiusOfInvestigation ** SOAP_FMAC4 soap_get_PointerToprodml23__RadiusOfInvestigation(struct soap*, prodml23__RadiusOfInvestigation **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OutputFlowData(struct soap*, prodml23__OutputFlowData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OutputFlowData(struct soap*, const char *, int, prodml23__OutputFlowData *const*, const char *); +SOAP_FMAC3 prodml23__OutputFlowData ** SOAP_FMAC4 soap_in_PointerToprodml23__OutputFlowData(struct soap*, const char*, prodml23__OutputFlowData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OutputFlowData(struct soap*, prodml23__OutputFlowData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OutputFlowData ** SOAP_FMAC4 soap_get_PointerToprodml23__OutputFlowData(struct soap*, prodml23__OutputFlowData **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractDeconvolutionOutput(struct soap*, prodml23__AbstractDeconvolutionOutput *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractDeconvolutionOutput(struct soap*, const char *, int, prodml23__AbstractDeconvolutionOutput *const*, const char *); +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractDeconvolutionOutput(struct soap*, const char*, prodml23__AbstractDeconvolutionOutput **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractDeconvolutionOutput(struct soap*, prodml23__AbstractDeconvolutionOutput *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractDeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractDeconvolutionOutput(struct soap*, prodml23__AbstractDeconvolutionOutput **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeconvolvedFlowData(struct soap*, prodml23__DeconvolvedFlowData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeconvolvedFlowData(struct soap*, const char *, int, prodml23__DeconvolvedFlowData *const*, const char *); +SOAP_FMAC3 prodml23__DeconvolvedFlowData ** SOAP_FMAC4 soap_in_PointerToprodml23__DeconvolvedFlowData(struct soap*, const char*, prodml23__DeconvolvedFlowData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeconvolvedFlowData(struct soap*, prodml23__DeconvolvedFlowData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolvedFlowData ** SOAP_FMAC4 soap_get_PointerToprodml23__DeconvolvedFlowData(struct soap*, prodml23__DeconvolvedFlowData **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractFlowTestData(struct soap*, prodml23__AbstractFlowTestData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractFlowTestData(struct soap*, const char *, int, prodml23__AbstractFlowTestData *const*, const char *); +SOAP_FMAC3 prodml23__AbstractFlowTestData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractFlowTestData(struct soap*, const char*, prodml23__AbstractFlowTestData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractFlowTestData(struct soap*, prodml23__AbstractFlowTestData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractFlowTestData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractFlowTestData(struct soap*, prodml23__AbstractFlowTestData **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SpecializedAnalysis(struct soap*, prodml23__SpecializedAnalysis *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SpecializedAnalysis(struct soap*, const char *, int, prodml23__SpecializedAnalysis *const*, const char *); +SOAP_FMAC3 prodml23__SpecializedAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__SpecializedAnalysis(struct soap*, const char*, prodml23__SpecializedAnalysis **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SpecializedAnalysis(struct soap*, prodml23__SpecializedAnalysis *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SpecializedAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__SpecializedAnalysis(struct soap*, prodml23__SpecializedAnalysis **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractRateHistory(struct soap*, prodml23__AbstractRateHistory *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractRateHistory(struct soap*, const char *, int, prodml23__AbstractRateHistory *const*, const char *); +SOAP_FMAC3 prodml23__AbstractRateHistory ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractRateHistory(struct soap*, const char*, prodml23__AbstractRateHistory **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractRateHistory(struct soap*, prodml23__AbstractRateHistory *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractRateHistory ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractRateHistory(struct soap*, prodml23__AbstractRateHistory **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LogLogAnalysis(struct soap*, prodml23__LogLogAnalysis *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LogLogAnalysis(struct soap*, const char *, int, prodml23__LogLogAnalysis *const*, const char *); +SOAP_FMAC3 prodml23__LogLogAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__LogLogAnalysis(struct soap*, const char*, prodml23__LogLogAnalysis **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LogLogAnalysis(struct soap*, prodml23__LogLogAnalysis *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LogLogAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__LogLogAnalysis(struct soap*, prodml23__LogLogAnalysis **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerTimeMeasure_DEFINED @@ -233954,112 +233926,112 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__PressurePerTimeMeasure(struct SOAP_FMAC3 eml23__PressurePerTimeMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__PressurePerTimeMeasure(struct soap*, eml23__PressurePerTimeMeasure **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterferingFlowTestInterval(struct soap*, prodml22__InterferingFlowTestInterval *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterferingFlowTestInterval(struct soap*, const char *, int, prodml22__InterferingFlowTestInterval *const*, const char *); -SOAP_FMAC3 prodml22__InterferingFlowTestInterval ** SOAP_FMAC4 soap_in_PointerToprodml22__InterferingFlowTestInterval(struct soap*, const char*, prodml22__InterferingFlowTestInterval **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterferingFlowTestInterval(struct soap*, prodml22__InterferingFlowTestInterval *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InterferingFlowTestInterval ** SOAP_FMAC4 soap_get_PointerToprodml22__InterferingFlowTestInterval(struct soap*, prodml22__InterferingFlowTestInterval **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CompressibilityParameters(struct soap*, prodml22__CompressibilityParameters *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CompressibilityParameters(struct soap*, const char *, int, prodml22__CompressibilityParameters *const*, const char *); -SOAP_FMAC3 prodml22__CompressibilityParameters ** SOAP_FMAC4 soap_in_PointerToprodml22__CompressibilityParameters(struct soap*, const char*, prodml22__CompressibilityParameters **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CompressibilityParameters(struct soap*, prodml22__CompressibilityParameters *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CompressibilityParameters ** SOAP_FMAC4 soap_get_PointerToprodml22__CompressibilityParameters(struct soap*, prodml22__CompressibilityParameters **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractAnalysis(struct soap*, prodml22__AbstractAnalysis *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractAnalysis(struct soap*, const char *, int, prodml22__AbstractAnalysis *const*, const char *); -SOAP_FMAC3 prodml22__AbstractAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractAnalysis(struct soap*, const char*, prodml22__AbstractAnalysis **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractAnalysis(struct soap*, prodml22__AbstractAnalysis *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractAnalysis(struct soap*, prodml22__AbstractAnalysis **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PseudoPressureEffectApplied(struct soap*, prodml22__PseudoPressureEffectApplied *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PseudoPressureEffectApplied(struct soap*, const char *, int, prodml22__PseudoPressureEffectApplied *const*, const char *); -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_in_PointerToprodml22__PseudoPressureEffectApplied(struct soap*, const char*, prodml22__PseudoPressureEffectApplied **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PseudoPressureEffectApplied(struct soap*, prodml22__PseudoPressureEffectApplied *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_get_PointerToprodml22__PseudoPressureEffectApplied(struct soap*, prodml22__PseudoPressureEffectApplied **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LayerModel(struct soap*, prodml22__LayerModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LayerModel(struct soap*, const char *, int, prodml22__LayerModel *const*, const char *); -SOAP_FMAC3 prodml22__LayerModel ** SOAP_FMAC4 soap_in_PointerToprodml22__LayerModel(struct soap*, const char*, prodml22__LayerModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LayerModel(struct soap*, prodml22__LayerModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LayerModel ** SOAP_FMAC4 soap_get_PointerToprodml22__LayerModel(struct soap*, prodml22__LayerModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellboreBaseModel(struct soap*, prodml22__WellboreBaseModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellboreBaseModel(struct soap*, const char *, int, prodml22__WellboreBaseModel *const*, const char *); -SOAP_FMAC3 prodml22__WellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__WellboreBaseModel(struct soap*, const char*, prodml22__WellboreBaseModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellboreBaseModel(struct soap*, prodml22__WellboreBaseModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__WellboreBaseModel(struct soap*, prodml22__WellboreBaseModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeconvolutionOutput(struct soap*, prodml22__DeconvolutionOutput *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeconvolutionOutput(struct soap*, const char *, int, prodml22__DeconvolutionOutput *const*, const char *); -SOAP_FMAC3 prodml22__DeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml22__DeconvolutionOutput(struct soap*, const char*, prodml22__DeconvolutionOutput **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeconvolutionOutput(struct soap*, prodml22__DeconvolutionOutput *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml22__DeconvolutionOutput(struct soap*, prodml22__DeconvolutionOutput **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Channel(struct soap*, prodml22__Channel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Channel(struct soap*, const char *, int, prodml22__Channel *const*, const char *); -SOAP_FMAC3 prodml22__Channel ** SOAP_FMAC4 soap_in_PointerToprodml22__Channel(struct soap*, const char*, prodml22__Channel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Channel(struct soap*, prodml22__Channel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__Channel ** SOAP_FMAC4 soap_get_PointerToprodml22__Channel(struct soap*, prodml22__Channel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidPhaseKind(struct soap*, prodml22__FluidPhaseKind *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidPhaseKind(struct soap*, const char *, int, prodml22__FluidPhaseKind *const*, const char *); -SOAP_FMAC3 prodml22__FluidPhaseKind ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidPhaseKind(struct soap*, const char*, prodml22__FluidPhaseKind **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidPhaseKind(struct soap*, prodml22__FluidPhaseKind *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidPhaseKind ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidPhaseKind(struct soap*, prodml22__FluidPhaseKind **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReservoirLifeCycleState(struct soap*, prodml22__ReservoirLifeCycleState *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReservoirLifeCycleState(struct soap*, const char *, int, prodml22__ReservoirLifeCycleState *const*, const char *); -SOAP_FMAC3 prodml22__ReservoirLifeCycleState ** SOAP_FMAC4 soap_in_PointerToprodml22__ReservoirLifeCycleState(struct soap*, const char*, prodml22__ReservoirLifeCycleState **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReservoirLifeCycleState(struct soap*, prodml22__ReservoirLifeCycleState *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReservoirLifeCycleState ** SOAP_FMAC4 soap_get_PointerToprodml22__ReservoirLifeCycleState(struct soap*, prodml22__ReservoirLifeCycleState **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleContaminant(struct soap*, prodml22__SampleContaminant *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleContaminant(struct soap*, const char *, int, prodml22__SampleContaminant *const*, const char *); -SOAP_FMAC3 prodml22__SampleContaminant ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleContaminant(struct soap*, const char*, prodml22__SampleContaminant **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleContaminant(struct soap*, prodml22__SampleContaminant *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SampleContaminant ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleContaminant(struct soap*, prodml22__SampleContaminant **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidAnalysisReport(struct soap*, prodml22__FluidAnalysisReport *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidAnalysisReport(struct soap*, const char *, int, prodml22__FluidAnalysisReport *const*, const char *); -SOAP_FMAC3 prodml22__FluidAnalysisReport ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidAnalysisReport(struct soap*, const char*, prodml22__FluidAnalysisReport **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidAnalysisReport(struct soap*, prodml22__FluidAnalysisReport *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidAnalysisReport ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidAnalysisReport(struct soap*, prodml22__FluidAnalysisReport **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CompressibilityParameters(struct soap*, prodml23__CompressibilityParameters *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CompressibilityParameters(struct soap*, const char *, int, prodml23__CompressibilityParameters *const*, const char *); +SOAP_FMAC3 prodml23__CompressibilityParameters ** SOAP_FMAC4 soap_in_PointerToprodml23__CompressibilityParameters(struct soap*, const char*, prodml23__CompressibilityParameters **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CompressibilityParameters(struct soap*, prodml23__CompressibilityParameters *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CompressibilityParameters ** SOAP_FMAC4 soap_get_PointerToprodml23__CompressibilityParameters(struct soap*, prodml23__CompressibilityParameters **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractAnalysis(struct soap*, prodml23__AbstractAnalysis *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractAnalysis(struct soap*, const char *, int, prodml23__AbstractAnalysis *const*, const char *); +SOAP_FMAC3 prodml23__AbstractAnalysis ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractAnalysis(struct soap*, const char*, prodml23__AbstractAnalysis **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractAnalysis(struct soap*, prodml23__AbstractAnalysis *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractAnalysis ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractAnalysis(struct soap*, prodml23__AbstractAnalysis **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterferingFlowTestInterval(struct soap*, prodml23__InterferingFlowTestInterval *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterferingFlowTestInterval(struct soap*, const char *, int, prodml23__InterferingFlowTestInterval *const*, const char *); +SOAP_FMAC3 prodml23__InterferingFlowTestInterval ** SOAP_FMAC4 soap_in_PointerToprodml23__InterferingFlowTestInterval(struct soap*, const char*, prodml23__InterferingFlowTestInterval **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterferingFlowTestInterval(struct soap*, prodml23__InterferingFlowTestInterval *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InterferingFlowTestInterval ** SOAP_FMAC4 soap_get_PointerToprodml23__InterferingFlowTestInterval(struct soap*, prodml23__InterferingFlowTestInterval **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PseudoPressureEffectApplied(struct soap*, prodml23__PseudoPressureEffectApplied *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PseudoPressureEffectApplied(struct soap*, const char *, int, prodml23__PseudoPressureEffectApplied *const*, const char *); +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_in_PointerToprodml23__PseudoPressureEffectApplied(struct soap*, const char*, prodml23__PseudoPressureEffectApplied **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PseudoPressureEffectApplied(struct soap*, prodml23__PseudoPressureEffectApplied *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoPressureEffectApplied ** SOAP_FMAC4 soap_get_PointerToprodml23__PseudoPressureEffectApplied(struct soap*, prodml23__PseudoPressureEffectApplied **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LayerModel(struct soap*, prodml23__LayerModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LayerModel(struct soap*, const char *, int, prodml23__LayerModel *const*, const char *); +SOAP_FMAC3 prodml23__LayerModel ** SOAP_FMAC4 soap_in_PointerToprodml23__LayerModel(struct soap*, const char*, prodml23__LayerModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LayerModel(struct soap*, prodml23__LayerModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LayerModel ** SOAP_FMAC4 soap_get_PointerToprodml23__LayerModel(struct soap*, prodml23__LayerModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellboreBaseModel(struct soap*, prodml23__WellboreBaseModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellboreBaseModel(struct soap*, const char *, int, prodml23__WellboreBaseModel *const*, const char *); +SOAP_FMAC3 prodml23__WellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__WellboreBaseModel(struct soap*, const char*, prodml23__WellboreBaseModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellboreBaseModel(struct soap*, prodml23__WellboreBaseModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__WellboreBaseModel(struct soap*, prodml23__WellboreBaseModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeconvolutionOutput(struct soap*, prodml23__DeconvolutionOutput *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeconvolutionOutput(struct soap*, const char *, int, prodml23__DeconvolutionOutput *const*, const char *); +SOAP_FMAC3 prodml23__DeconvolutionOutput ** SOAP_FMAC4 soap_in_PointerToprodml23__DeconvolutionOutput(struct soap*, const char*, prodml23__DeconvolutionOutput **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeconvolutionOutput(struct soap*, prodml23__DeconvolutionOutput *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolutionOutput ** SOAP_FMAC4 soap_get_PointerToprodml23__DeconvolutionOutput(struct soap*, prodml23__DeconvolutionOutput **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Channel(struct soap*, prodml23__Channel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Channel(struct soap*, const char *, int, prodml23__Channel *const*, const char *); +SOAP_FMAC3 prodml23__Channel ** SOAP_FMAC4 soap_in_PointerToprodml23__Channel(struct soap*, const char*, prodml23__Channel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Channel(struct soap*, prodml23__Channel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__Channel ** SOAP_FMAC4 soap_get_PointerToprodml23__Channel(struct soap*, prodml23__Channel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidPhaseKind(struct soap*, prodml23__FluidPhaseKind *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidPhaseKind(struct soap*, const char *, int, prodml23__FluidPhaseKind *const*, const char *); +SOAP_FMAC3 prodml23__FluidPhaseKind ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidPhaseKind(struct soap*, const char*, prodml23__FluidPhaseKind **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidPhaseKind(struct soap*, prodml23__FluidPhaseKind *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidPhaseKind ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidPhaseKind(struct soap*, prodml23__FluidPhaseKind **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReservoirLifeCycleState(struct soap*, prodml23__ReservoirLifeCycleState *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReservoirLifeCycleState(struct soap*, const char *, int, prodml23__ReservoirLifeCycleState *const*, const char *); +SOAP_FMAC3 prodml23__ReservoirLifeCycleState ** SOAP_FMAC4 soap_in_PointerToprodml23__ReservoirLifeCycleState(struct soap*, const char*, prodml23__ReservoirLifeCycleState **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReservoirLifeCycleState(struct soap*, prodml23__ReservoirLifeCycleState *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirLifeCycleState ** SOAP_FMAC4 soap_get_PointerToprodml23__ReservoirLifeCycleState(struct soap*, prodml23__ReservoirLifeCycleState **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleContaminant(struct soap*, prodml23__SampleContaminant *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleContaminant(struct soap*, const char *, int, prodml23__SampleContaminant *const*, const char *); +SOAP_FMAC3 prodml23__SampleContaminant ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleContaminant(struct soap*, const char*, prodml23__SampleContaminant **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleContaminant(struct soap*, prodml23__SampleContaminant *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SampleContaminant ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleContaminant(struct soap*, prodml23__SampleContaminant **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidAnalysisReport(struct soap*, prodml23__FluidAnalysisReport *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidAnalysisReport(struct soap*, const char *, int, prodml23__FluidAnalysisReport *const*, const char *); +SOAP_FMAC3 prodml23__FluidAnalysisReport ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidAnalysisReport(struct soap*, const char*, prodml23__FluidAnalysisReport **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidAnalysisReport(struct soap*, prodml23__FluidAnalysisReport *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidAnalysisReport ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidAnalysisReport(struct soap*, prodml23__FluidAnalysisReport **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasureExt_DEFINED @@ -234080,58 +234052,58 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__EnergyPerMassMeasure(struct s SOAP_FMAC3 eml23__EnergyPerMassMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__EnergyPerMassMeasure(struct soap*, eml23__EnergyPerMassMeasure **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ValueStatus(struct soap*, prodml22__ValueStatus *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ValueStatus(struct soap*, const char *, int, prodml22__ValueStatus *const*, const char *); -SOAP_FMAC3 prodml22__ValueStatus ** SOAP_FMAC4 soap_in_PointerToprodml22__ValueStatus(struct soap*, const char*, prodml22__ValueStatus **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ValueStatus(struct soap*, prodml22__ValueStatus *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ValueStatus ** SOAP_FMAC4 soap_get_PointerToprodml22__ValueStatus(struct soap*, prodml22__ValueStatus **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ValueStatus(struct soap*, prodml23__ValueStatus *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ValueStatus(struct soap*, const char *, int, prodml23__ValueStatus *const*, const char *); +SOAP_FMAC3 prodml23__ValueStatus ** SOAP_FMAC4 soap_in_PointerToprodml23__ValueStatus(struct soap*, const char*, prodml23__ValueStatus **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ValueStatus(struct soap*, prodml23__ValueStatus *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ValueStatus ** SOAP_FMAC4 soap_get_PointerToprodml23__ValueStatus(struct soap*, prodml23__ValueStatus **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationModel(struct soap*, prodml22__FluidCharacterizationModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationModel(struct soap*, const char *, int, prodml22__FluidCharacterizationModel *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationModel ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationModel(struct soap*, const char*, prodml22__FluidCharacterizationModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationModel(struct soap*, prodml22__FluidCharacterizationModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationModel ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationModel(struct soap*, prodml22__FluidCharacterizationModel **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationModel(struct soap*, prodml23__FluidCharacterizationModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationModel(struct soap*, const char *, int, prodml23__FluidCharacterizationModel *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationModel ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationModel(struct soap*, const char*, prodml23__FluidCharacterizationModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationModel(struct soap*, prodml23__FluidCharacterizationModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationModel ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationModel(struct soap*, prodml23__FluidCharacterizationModel **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationSource(struct soap*, prodml22__FluidCharacterizationSource *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationSource(struct soap*, const char *, int, prodml22__FluidCharacterizationSource *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationSource ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationSource(struct soap*, const char*, prodml22__FluidCharacterizationSource **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationSource(struct soap*, prodml22__FluidCharacterizationSource *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationSource ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationSource(struct soap*, prodml22__FluidCharacterizationSource **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationSource(struct soap*, prodml23__FluidCharacterizationSource *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationSource(struct soap*, const char *, int, prodml23__FluidCharacterizationSource *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationSource ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationSource(struct soap*, const char*, prodml23__FluidCharacterizationSource **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationSource(struct soap*, prodml23__FluidCharacterizationSource *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationSource ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationSource(struct soap*, prodml23__FluidCharacterizationSource **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap*, prodml22__BinaryInteractionCoefficientSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap*, const char *, int, prodml22__BinaryInteractionCoefficientSet *const*, const char *); -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_in_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap*, const char*, prodml22__BinaryInteractionCoefficientSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap*, prodml22__BinaryInteractionCoefficientSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_get_PointerToprodml22__BinaryInteractionCoefficientSet(struct soap*, prodml22__BinaryInteractionCoefficientSet **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap*, prodml23__BinaryInteractionCoefficientSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap*, const char *, int, prodml23__BinaryInteractionCoefficientSet *const*, const char *); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_in_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap*, const char*, prodml23__BinaryInteractionCoefficientSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap*, prodml23__BinaryInteractionCoefficientSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficientSet ** SOAP_FMAC4 soap_get_PointerToprodml23__BinaryInteractionCoefficientSet(struct soap*, prodml23__BinaryInteractionCoefficientSet **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ComponentPropertySet(struct soap*, prodml22__ComponentPropertySet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ComponentPropertySet(struct soap*, const char *, int, prodml22__ComponentPropertySet *const*, const char *); -SOAP_FMAC3 prodml22__ComponentPropertySet ** SOAP_FMAC4 soap_in_PointerToprodml22__ComponentPropertySet(struct soap*, const char*, prodml22__ComponentPropertySet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ComponentPropertySet(struct soap*, prodml22__ComponentPropertySet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ComponentPropertySet ** SOAP_FMAC4 soap_get_PointerToprodml22__ComponentPropertySet(struct soap*, prodml22__ComponentPropertySet **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ComponentPropertySet(struct soap*, prodml23__ComponentPropertySet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ComponentPropertySet(struct soap*, const char *, int, prodml23__ComponentPropertySet *const*, const char *); +SOAP_FMAC3 prodml23__ComponentPropertySet ** SOAP_FMAC4 soap_in_PointerToprodml23__ComponentPropertySet(struct soap*, const char*, prodml23__ComponentPropertySet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ComponentPropertySet(struct soap*, prodml23__ComponentPropertySet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ComponentPropertySet ** SOAP_FMAC4 soap_get_PointerToprodml23__ComponentPropertySet(struct soap*, prodml23__ComponentPropertySet **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MixingRule(struct soap*, prodml22__MixingRule *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MixingRule(struct soap*, const char *, int, prodml22__MixingRule *const*, const char *); -SOAP_FMAC3 prodml22__MixingRule ** SOAP_FMAC4 soap_in_PointerToprodml22__MixingRule(struct soap*, const char*, prodml22__MixingRule **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MixingRule(struct soap*, prodml22__MixingRule *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MixingRule ** SOAP_FMAC4 soap_get_PointerToprodml22__MixingRule(struct soap*, prodml22__MixingRule **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MixingRule(struct soap*, prodml23__MixingRule *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MixingRule(struct soap*, const char *, int, prodml23__MixingRule *const*, const char *); +SOAP_FMAC3 prodml23__MixingRule ** SOAP_FMAC4 soap_in_PointerToprodml23__MixingRule(struct soap*, const char*, prodml23__MixingRule **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MixingRule(struct soap*, prodml23__MixingRule *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MixingRule ** SOAP_FMAC4 soap_get_PointerToprodml23__MixingRule(struct soap*, prodml23__MixingRule **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AbstractGraphicalInformation_DEFINED @@ -235655,274 +235627,274 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToresqml22__Point3d(struct soap*, resq SOAP_FMAC3 resqml22__Point3d ** SOAP_FMAC4 soap_get_PointerToresqml22__Point3d(struct soap*, resqml22__Point3d **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointQuantity(struct soap*, prodml22__EndpointQuantity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointQuantity(struct soap*, const char *, int, prodml22__EndpointQuantity *const*, const char *); -SOAP_FMAC3 prodml22__EndpointQuantity ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointQuantity(struct soap*, const char*, prodml22__EndpointQuantity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointQuantity(struct soap*, prodml22__EndpointQuantity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__EndpointQuantity ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointQuantity(struct soap*, prodml22__EndpointQuantity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RelativeCoordinate(struct soap*, prodml22__RelativeCoordinate *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RelativeCoordinate(struct soap*, const char *, int, prodml22__RelativeCoordinate *const*, const char *); -SOAP_FMAC3 prodml22__RelativeCoordinate ** SOAP_FMAC4 soap_in_PointerToprodml22__RelativeCoordinate(struct soap*, const char*, prodml22__RelativeCoordinate **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RelativeCoordinate(struct soap*, prodml22__RelativeCoordinate *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RelativeCoordinate ** SOAP_FMAC4 soap_get_PointerToprodml22__RelativeCoordinate(struct soap*, prodml22__RelativeCoordinate **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowPort(struct soap*, prodml22__ProductFlowPort *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowPort(struct soap*, const char *, int, prodml22__ProductFlowPort *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowPort ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowPort(struct soap*, const char*, prodml22__ProductFlowPort **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowPort(struct soap*, prodml22__ProductFlowPort *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowPort ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowPort(struct soap*, prodml22__ProductFlowPort **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, prodml22__ProductFlowExpectedUnitProperty *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, const char *, int, prodml22__ProductFlowExpectedUnitProperty *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, const char*, prodml22__ProductFlowExpectedUnitProperty **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, prodml22__ProductFlowExpectedUnitProperty *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, prodml22__ProductFlowExpectedUnitProperty **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConnectedNode(struct soap*, prodml22__ConnectedNode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConnectedNode(struct soap*, const char *, int, prodml22__ConnectedNode *const*, const char *); -SOAP_FMAC3 prodml22__ConnectedNode ** SOAP_FMAC4 soap_in_PointerToprodml22__ConnectedNode(struct soap*, const char*, prodml22__ConnectedNode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConnectedNode(struct soap*, prodml22__ConnectedNode *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ConnectedNode ** SOAP_FMAC4 soap_get_PointerToprodml22__ConnectedNode(struct soap*, prodml22__ConnectedNode **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowQualifierExpected(struct soap*, prodml22__ProductFlowQualifierExpected *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowQualifierExpected(struct soap*, const char *, int, prodml22__ProductFlowQualifierExpected *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowQualifierExpected(struct soap*, const char*, prodml22__ProductFlowQualifierExpected **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowQualifierExpected(struct soap*, prodml22__ProductFlowQualifierExpected *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowQualifierExpected(struct soap*, prodml22__ProductFlowQualifierExpected **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ExpectedFlowQualifier(struct soap*, prodml22__ExpectedFlowQualifier *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ExpectedFlowQualifier(struct soap*, const char *, int, prodml22__ExpectedFlowQualifier *const*, const char *); -SOAP_FMAC3 prodml22__ExpectedFlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__ExpectedFlowQualifier(struct soap*, const char*, prodml22__ExpectedFlowQualifier **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ExpectedFlowQualifier(struct soap*, prodml22__ExpectedFlowQualifier *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ExpectedFlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__ExpectedFlowQualifier(struct soap*, prodml22__ExpectedFlowQualifier **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__GeneralMeasureType(struct soap*, prodml22__GeneralMeasureType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__GeneralMeasureType(struct soap*, const char *, int, prodml22__GeneralMeasureType *const*, const char *); -SOAP_FMAC3 prodml22__GeneralMeasureType ** SOAP_FMAC4 soap_in_PointerToprodml22__GeneralMeasureType(struct soap*, const char*, prodml22__GeneralMeasureType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__GeneralMeasureType(struct soap*, prodml22__GeneralMeasureType *const*, const char*, const char*); -SOAP_FMAC3 prodml22__GeneralMeasureType ** SOAP_FMAC4 soap_get_PointerToprodml22__GeneralMeasureType(struct soap*, prodml22__GeneralMeasureType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractRelatedFacilityObject(struct soap*, prodml22__AbstractRelatedFacilityObject *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractRelatedFacilityObject(struct soap*, const char *, int, prodml22__AbstractRelatedFacilityObject *const*, const char *); -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractRelatedFacilityObject(struct soap*, const char*, prodml22__AbstractRelatedFacilityObject **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractRelatedFacilityObject(struct soap*, prodml22__AbstractRelatedFacilityObject *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractRelatedFacilityObject(struct soap*, prodml22__AbstractRelatedFacilityObject **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumePeriod(struct soap*, prodml22__ProductVolumePeriod *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumePeriod(struct soap*, const char *, int, prodml22__ProductVolumePeriod *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumePeriod ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumePeriod(struct soap*, const char*, prodml22__ProductVolumePeriod **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumePeriod(struct soap*, prodml22__ProductVolumePeriod *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumePeriod ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumePeriod(struct soap*, prodml22__ProductVolumePeriod **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractRefProductFlow(struct soap*, prodml22__AbstractRefProductFlow *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractRefProductFlow(struct soap*, const char *, int, prodml22__AbstractRefProductFlow *const*, const char *); -SOAP_FMAC3 prodml22__AbstractRefProductFlow ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractRefProductFlow(struct soap*, const char*, prodml22__AbstractRefProductFlow **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractRefProductFlow(struct soap*, prodml22__AbstractRefProductFlow *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractRefProductFlow ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractRefProductFlow(struct soap*, prodml22__AbstractRefProductFlow **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NonNegativeFraction(struct soap*, float *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NonNegativeFraction(struct soap*, const char *, int, float *const*, const char *); -SOAP_FMAC3 float ** SOAP_FMAC4 soap_in_PointerToprodml22__NonNegativeFraction(struct soap*, const char*, float **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NonNegativeFraction(struct soap*, float *const*, const char*, const char*); -SOAP_FMAC3 float ** SOAP_FMAC4 soap_get_PointerToprodml22__NonNegativeFraction(struct soap*, float **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractDateTimeClass(struct soap*, prodml22__AbstractDateTimeClass *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractDateTimeClass(struct soap*, const char *, int, prodml22__AbstractDateTimeClass *const*, const char *); -SOAP_FMAC3 prodml22__AbstractDateTimeClass ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractDateTimeClass(struct soap*, const char*, prodml22__AbstractDateTimeClass **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractDateTimeClass(struct soap*, prodml22__AbstractDateTimeClass *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractDateTimeClass ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractDateTimeClass(struct soap*, prodml22__AbstractDateTimeClass **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBalanceSet(struct soap*, prodml22__ProductVolumeBalanceSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBalanceSet(struct soap*, const char *, int, prodml22__ProductVolumeBalanceSet *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBalanceSet(struct soap*, const char*, prodml22__ProductVolumeBalanceSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBalanceSet(struct soap*, prodml22__ProductVolumeBalanceSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBalanceSet(struct soap*, prodml22__ProductVolumeBalanceSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeAlert(struct soap*, prodml22__ProductVolumeAlert *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeAlert(struct soap*, const char *, int, prodml22__ProductVolumeAlert *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeAlert ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeAlert(struct soap*, const char*, prodml22__ProductVolumeAlert **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeAlert(struct soap*, prodml22__ProductVolumeAlert *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeAlert ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeAlert(struct soap*, prodml22__ProductVolumeAlert **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractMeasureData(struct soap*, prodml22__AbstractMeasureData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractMeasureData(struct soap*, const char *, int, prodml22__AbstractMeasureData *const*, const char *); -SOAP_FMAC3 prodml22__AbstractMeasureData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractMeasureData(struct soap*, const char*, prodml22__AbstractMeasureData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractMeasureData(struct soap*, prodml22__AbstractMeasureData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractMeasureData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractMeasureData(struct soap*, prodml22__AbstractMeasureData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CurveDefinition(struct soap*, prodml22__CurveDefinition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CurveDefinition(struct soap*, const char *, int, prodml22__CurveDefinition *const*, const char *); -SOAP_FMAC3 prodml22__CurveDefinition ** SOAP_FMAC4 soap_in_PointerToprodml22__CurveDefinition(struct soap*, const char*, prodml22__CurveDefinition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CurveDefinition(struct soap*, prodml22__CurveDefinition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CurveDefinition ** SOAP_FMAC4 soap_get_PointerToprodml22__CurveDefinition(struct soap*, prodml22__CurveDefinition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeParameterValue(struct soap*, prodml22__ProductVolumeParameterValue *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeParameterValue(struct soap*, const char *, int, prodml22__ProductVolumeParameterValue *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeParameterValue ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeParameterValue(struct soap*, const char*, prodml22__ProductVolumeParameterValue **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeParameterValue(struct soap*, prodml22__ProductVolumeParameterValue *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeParameterValue ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeParameterValue(struct soap*, prodml22__ProductVolumeParameterValue **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingDurationKind(struct soap*, prodml22__ReportingDurationKind *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingDurationKind(struct soap*, const char *, int, prodml22__ReportingDurationKind *const*, const char *); -SOAP_FMAC3 prodml22__ReportingDurationKind ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingDurationKind(struct soap*, const char*, prodml22__ReportingDurationKind **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingDurationKind(struct soap*, prodml22__ReportingDurationKind *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReportingDurationKind ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingDurationKind(struct soap*, prodml22__ReportingDurationKind **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProdmlRelativeIdentifier(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProdmlRelativeIdentifier(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__ProdmlRelativeIdentifier(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProdmlRelativeIdentifier(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__ProdmlRelativeIdentifier(struct soap*, std::string **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeProduct(struct soap*, prodml22__ProductVolumeProduct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeProduct(struct soap*, const char *, int, prodml22__ProductVolumeProduct *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeProduct(struct soap*, const char*, prodml22__ProductVolumeProduct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeProduct(struct soap*, prodml22__ProductVolumeProduct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeProduct(struct soap*, prodml22__ProductVolumeProduct **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeRelatedFacility(struct soap*, prodml22__ProductVolumeRelatedFacility *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeRelatedFacility(struct soap*, const char *, int, prodml22__ProductVolumeRelatedFacility *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeRelatedFacility(struct soap*, const char*, prodml22__ProductVolumeRelatedFacility **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeRelatedFacility(struct soap*, prodml22__ProductVolumeRelatedFacility *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeRelatedFacility(struct soap*, prodml22__ProductVolumeRelatedFacility **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowSubQualifier(struct soap*, prodml22__FlowSubQualifier *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowSubQualifier(struct soap*, const char *, int, prodml22__FlowSubQualifier *const*, const char *); -SOAP_FMAC3 prodml22__FlowSubQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowSubQualifier(struct soap*, const char*, prodml22__FlowSubQualifier **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowSubQualifier(struct soap*, prodml22__FlowSubQualifier *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FlowSubQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowSubQualifier(struct soap*, prodml22__FlowSubQualifier **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowQualifier(struct soap*, prodml22__FlowQualifier *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowQualifier(struct soap*, const char *, int, prodml22__FlowQualifier *const*, const char *); -SOAP_FMAC3 prodml22__FlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowQualifier(struct soap*, const char*, prodml22__FlowQualifier **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowQualifier(struct soap*, prodml22__FlowQualifier *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowQualifier(struct soap*, prodml22__FlowQualifier **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowPortType(struct soap*, prodml22__ProductFlowPortType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowPortType(struct soap*, const char *, int, prodml22__ProductFlowPortType *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowPortType ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowPortType(struct soap*, const char*, prodml22__ProductFlowPortType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowPortType(struct soap*, prodml22__ProductFlowPortType *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowPortType ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowPortType(struct soap*, prodml22__ProductFlowPortType **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DatedComment(struct soap*, prodml22__DatedComment *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DatedComment(struct soap*, const char *, int, prodml22__DatedComment *const*, const char *); -SOAP_FMAC3 prodml22__DatedComment ** SOAP_FMAC4 soap_in_PointerToprodml22__DatedComment(struct soap*, const char*, prodml22__DatedComment **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DatedComment(struct soap*, prodml22__DatedComment *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DatedComment ** SOAP_FMAC4 soap_get_PointerToprodml22__DatedComment(struct soap*, prodml22__DatedComment **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeParameterSet(struct soap*, prodml22__ProductVolumeParameterSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeParameterSet(struct soap*, const char *, int, prodml22__ProductVolumeParameterSet *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeParameterSet(struct soap*, const char*, prodml22__ProductVolumeParameterSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeParameterSet(struct soap*, prodml22__ProductVolumeParameterSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeParameterSet(struct soap*, prodml22__ProductVolumeParameterSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeFlow(struct soap*, prodml22__ProductVolumeFlow *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeFlow(struct soap*, const char *, int, prodml22__ProductVolumeFlow *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeFlow ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeFlow(struct soap*, const char*, prodml22__ProductVolumeFlow **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeFlow(struct soap*, prodml22__ProductVolumeFlow *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeFlow ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeFlow(struct soap*, prodml22__ProductVolumeFlow **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellOperationMethod(struct soap*, prodml22__WellOperationMethod *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellOperationMethod(struct soap*, const char *, int, prodml22__WellOperationMethod *const*, const char *); -SOAP_FMAC3 prodml22__WellOperationMethod ** SOAP_FMAC4 soap_in_PointerToprodml22__WellOperationMethod(struct soap*, const char*, prodml22__WellOperationMethod **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellOperationMethod(struct soap*, prodml22__WellOperationMethod *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellOperationMethod ** SOAP_FMAC4 soap_get_PointerToprodml22__WellOperationMethod(struct soap*, prodml22__WellOperationMethod **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellFluid(struct soap*, prodml22__WellFluid *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellFluid(struct soap*, const char *, int, prodml22__WellFluid *const*, const char *); -SOAP_FMAC3 prodml22__WellFluid ** SOAP_FMAC4 soap_in_PointerToprodml22__WellFluid(struct soap*, const char*, prodml22__WellFluid **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellFluid(struct soap*, prodml22__WellFluid *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellFluid ** SOAP_FMAC4 soap_get_PointerToprodml22__WellFluid(struct soap*, prodml22__WellFluid **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointQuantity(struct soap*, prodml23__EndpointQuantity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointQuantity(struct soap*, const char *, int, prodml23__EndpointQuantity *const*, const char *); +SOAP_FMAC3 prodml23__EndpointQuantity ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointQuantity(struct soap*, const char*, prodml23__EndpointQuantity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointQuantity(struct soap*, prodml23__EndpointQuantity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQuantity ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointQuantity(struct soap*, prodml23__EndpointQuantity **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RelativeCoordinate(struct soap*, prodml23__RelativeCoordinate *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RelativeCoordinate(struct soap*, const char *, int, prodml23__RelativeCoordinate *const*, const char *); +SOAP_FMAC3 prodml23__RelativeCoordinate ** SOAP_FMAC4 soap_in_PointerToprodml23__RelativeCoordinate(struct soap*, const char*, prodml23__RelativeCoordinate **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RelativeCoordinate(struct soap*, prodml23__RelativeCoordinate *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RelativeCoordinate ** SOAP_FMAC4 soap_get_PointerToprodml23__RelativeCoordinate(struct soap*, prodml23__RelativeCoordinate **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowPort(struct soap*, prodml23__ProductFlowPort *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowPort(struct soap*, const char *, int, prodml23__ProductFlowPort *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowPort ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowPort(struct soap*, const char*, prodml23__ProductFlowPort **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowPort(struct soap*, prodml23__ProductFlowPort *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowPort ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowPort(struct soap*, prodml23__ProductFlowPort **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, prodml23__ProductFlowExpectedUnitProperty *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, const char *, int, prodml23__ProductFlowExpectedUnitProperty *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, const char*, prodml23__ProductFlowExpectedUnitProperty **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, prodml23__ProductFlowExpectedUnitProperty *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowExpectedUnitProperty ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, prodml23__ProductFlowExpectedUnitProperty **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConnectedNode(struct soap*, prodml23__ConnectedNode *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConnectedNode(struct soap*, const char *, int, prodml23__ConnectedNode *const*, const char *); +SOAP_FMAC3 prodml23__ConnectedNode ** SOAP_FMAC4 soap_in_PointerToprodml23__ConnectedNode(struct soap*, const char*, prodml23__ConnectedNode **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConnectedNode(struct soap*, prodml23__ConnectedNode *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ConnectedNode ** SOAP_FMAC4 soap_get_PointerToprodml23__ConnectedNode(struct soap*, prodml23__ConnectedNode **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowQualifierExpected(struct soap*, prodml23__ProductFlowQualifierExpected *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowQualifierExpected(struct soap*, const char *, int, prodml23__ProductFlowQualifierExpected *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowQualifierExpected(struct soap*, const char*, prodml23__ProductFlowQualifierExpected **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowQualifierExpected(struct soap*, prodml23__ProductFlowQualifierExpected *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowQualifierExpected ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowQualifierExpected(struct soap*, prodml23__ProductFlowQualifierExpected **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ExpectedFlowQualifier(struct soap*, prodml23__ExpectedFlowQualifier *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ExpectedFlowQualifier(struct soap*, const char *, int, prodml23__ExpectedFlowQualifier *const*, const char *); +SOAP_FMAC3 prodml23__ExpectedFlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__ExpectedFlowQualifier(struct soap*, const char*, prodml23__ExpectedFlowQualifier **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ExpectedFlowQualifier(struct soap*, prodml23__ExpectedFlowQualifier *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ExpectedFlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__ExpectedFlowQualifier(struct soap*, prodml23__ExpectedFlowQualifier **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__GeneralMeasureType(struct soap*, prodml23__GeneralMeasureType *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__GeneralMeasureType(struct soap*, const char *, int, prodml23__GeneralMeasureType *const*, const char *); +SOAP_FMAC3 prodml23__GeneralMeasureType ** SOAP_FMAC4 soap_in_PointerToprodml23__GeneralMeasureType(struct soap*, const char*, prodml23__GeneralMeasureType **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__GeneralMeasureType(struct soap*, prodml23__GeneralMeasureType *const*, const char*, const char*); +SOAP_FMAC3 prodml23__GeneralMeasureType ** SOAP_FMAC4 soap_get_PointerToprodml23__GeneralMeasureType(struct soap*, prodml23__GeneralMeasureType **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractRelatedFacilityObject(struct soap*, prodml23__AbstractRelatedFacilityObject *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractRelatedFacilityObject(struct soap*, const char *, int, prodml23__AbstractRelatedFacilityObject *const*, const char *); +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractRelatedFacilityObject(struct soap*, const char*, prodml23__AbstractRelatedFacilityObject **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractRelatedFacilityObject(struct soap*, prodml23__AbstractRelatedFacilityObject *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractRelatedFacilityObject ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractRelatedFacilityObject(struct soap*, prodml23__AbstractRelatedFacilityObject **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumePeriod(struct soap*, prodml23__ProductVolumePeriod *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumePeriod(struct soap*, const char *, int, prodml23__ProductVolumePeriod *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumePeriod ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumePeriod(struct soap*, const char*, prodml23__ProductVolumePeriod **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumePeriod(struct soap*, prodml23__ProductVolumePeriod *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumePeriod ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumePeriod(struct soap*, prodml23__ProductVolumePeriod **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractRefProductFlow(struct soap*, prodml23__AbstractRefProductFlow *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractRefProductFlow(struct soap*, const char *, int, prodml23__AbstractRefProductFlow *const*, const char *); +SOAP_FMAC3 prodml23__AbstractRefProductFlow ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractRefProductFlow(struct soap*, const char*, prodml23__AbstractRefProductFlow **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractRefProductFlow(struct soap*, prodml23__AbstractRefProductFlow *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractRefProductFlow ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractRefProductFlow(struct soap*, prodml23__AbstractRefProductFlow **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NonNegativeFraction(struct soap*, float *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NonNegativeFraction(struct soap*, const char *, int, float *const*, const char *); +SOAP_FMAC3 float ** SOAP_FMAC4 soap_in_PointerToprodml23__NonNegativeFraction(struct soap*, const char*, float **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NonNegativeFraction(struct soap*, float *const*, const char*, const char*); +SOAP_FMAC3 float ** SOAP_FMAC4 soap_get_PointerToprodml23__NonNegativeFraction(struct soap*, float **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractDateTimeClass(struct soap*, prodml23__AbstractDateTimeClass *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractDateTimeClass(struct soap*, const char *, int, prodml23__AbstractDateTimeClass *const*, const char *); +SOAP_FMAC3 prodml23__AbstractDateTimeClass ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractDateTimeClass(struct soap*, const char*, prodml23__AbstractDateTimeClass **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractDateTimeClass(struct soap*, prodml23__AbstractDateTimeClass *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractDateTimeClass ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractDateTimeClass(struct soap*, prodml23__AbstractDateTimeClass **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBalanceSet(struct soap*, prodml23__ProductVolumeBalanceSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBalanceSet(struct soap*, const char *, int, prodml23__ProductVolumeBalanceSet *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBalanceSet(struct soap*, const char*, prodml23__ProductVolumeBalanceSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBalanceSet(struct soap*, prodml23__ProductVolumeBalanceSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceSet ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBalanceSet(struct soap*, prodml23__ProductVolumeBalanceSet **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeAlert(struct soap*, prodml23__ProductVolumeAlert *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeAlert(struct soap*, const char *, int, prodml23__ProductVolumeAlert *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeAlert ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeAlert(struct soap*, const char*, prodml23__ProductVolumeAlert **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeAlert(struct soap*, prodml23__ProductVolumeAlert *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeAlert ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeAlert(struct soap*, prodml23__ProductVolumeAlert **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractMeasureData(struct soap*, prodml23__AbstractMeasureData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractMeasureData(struct soap*, const char *, int, prodml23__AbstractMeasureData *const*, const char *); +SOAP_FMAC3 prodml23__AbstractMeasureData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractMeasureData(struct soap*, const char*, prodml23__AbstractMeasureData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractMeasureData(struct soap*, prodml23__AbstractMeasureData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractMeasureData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractMeasureData(struct soap*, prodml23__AbstractMeasureData **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CurveDefinition(struct soap*, prodml23__CurveDefinition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CurveDefinition(struct soap*, const char *, int, prodml23__CurveDefinition *const*, const char *); +SOAP_FMAC3 prodml23__CurveDefinition ** SOAP_FMAC4 soap_in_PointerToprodml23__CurveDefinition(struct soap*, const char*, prodml23__CurveDefinition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CurveDefinition(struct soap*, prodml23__CurveDefinition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CurveDefinition ** SOAP_FMAC4 soap_get_PointerToprodml23__CurveDefinition(struct soap*, prodml23__CurveDefinition **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeParameterValue(struct soap*, prodml23__ProductVolumeParameterValue *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeParameterValue(struct soap*, const char *, int, prodml23__ProductVolumeParameterValue *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeParameterValue ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeParameterValue(struct soap*, const char*, prodml23__ProductVolumeParameterValue **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeParameterValue(struct soap*, prodml23__ProductVolumeParameterValue *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeParameterValue ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeParameterValue(struct soap*, prodml23__ProductVolumeParameterValue **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingDurationKind(struct soap*, prodml23__ReportingDurationKind *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingDurationKind(struct soap*, const char *, int, prodml23__ReportingDurationKind *const*, const char *); +SOAP_FMAC3 prodml23__ReportingDurationKind ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingDurationKind(struct soap*, const char*, prodml23__ReportingDurationKind **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingDurationKind(struct soap*, prodml23__ReportingDurationKind *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingDurationKind ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingDurationKind(struct soap*, prodml23__ReportingDurationKind **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProdmlRelativeIdentifier(struct soap*, std::string *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProdmlRelativeIdentifier(struct soap*, const char *, int, std::string *const*, const char *); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__ProdmlRelativeIdentifier(struct soap*, const char*, std::string **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProdmlRelativeIdentifier(struct soap*, std::string *const*, const char*, const char*); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__ProdmlRelativeIdentifier(struct soap*, std::string **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeProduct(struct soap*, prodml23__ProductVolumeProduct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeProduct(struct soap*, const char *, int, prodml23__ProductVolumeProduct *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeProduct(struct soap*, const char*, prodml23__ProductVolumeProduct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeProduct(struct soap*, prodml23__ProductVolumeProduct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeProduct(struct soap*, prodml23__ProductVolumeProduct **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeRelatedFacility(struct soap*, prodml23__ProductVolumeRelatedFacility *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeRelatedFacility(struct soap*, const char *, int, prodml23__ProductVolumeRelatedFacility *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeRelatedFacility(struct soap*, const char*, prodml23__ProductVolumeRelatedFacility **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeRelatedFacility(struct soap*, prodml23__ProductVolumeRelatedFacility *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeRelatedFacility ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeRelatedFacility(struct soap*, prodml23__ProductVolumeRelatedFacility **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowSubQualifier(struct soap*, prodml23__FlowSubQualifier *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowSubQualifier(struct soap*, const char *, int, prodml23__FlowSubQualifier *const*, const char *); +SOAP_FMAC3 prodml23__FlowSubQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowSubQualifier(struct soap*, const char*, prodml23__FlowSubQualifier **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowSubQualifier(struct soap*, prodml23__FlowSubQualifier *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FlowSubQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowSubQualifier(struct soap*, prodml23__FlowSubQualifier **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowQualifier(struct soap*, prodml23__FlowQualifier *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowQualifier(struct soap*, const char *, int, prodml23__FlowQualifier *const*, const char *); +SOAP_FMAC3 prodml23__FlowQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowQualifier(struct soap*, const char*, prodml23__FlowQualifier **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowQualifier(struct soap*, prodml23__FlowQualifier *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FlowQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowQualifier(struct soap*, prodml23__FlowQualifier **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowPortType(struct soap*, prodml23__ProductFlowPortType *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowPortType(struct soap*, const char *, int, prodml23__ProductFlowPortType *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowPortType ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowPortType(struct soap*, const char*, prodml23__ProductFlowPortType **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowPortType(struct soap*, prodml23__ProductFlowPortType *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowPortType ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowPortType(struct soap*, prodml23__ProductFlowPortType **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DatedComment(struct soap*, prodml23__DatedComment *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DatedComment(struct soap*, const char *, int, prodml23__DatedComment *const*, const char *); +SOAP_FMAC3 prodml23__DatedComment ** SOAP_FMAC4 soap_in_PointerToprodml23__DatedComment(struct soap*, const char*, prodml23__DatedComment **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DatedComment(struct soap*, prodml23__DatedComment *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DatedComment ** SOAP_FMAC4 soap_get_PointerToprodml23__DatedComment(struct soap*, prodml23__DatedComment **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeParameterSet(struct soap*, prodml23__ProductVolumeParameterSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeParameterSet(struct soap*, const char *, int, prodml23__ProductVolumeParameterSet *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeParameterSet(struct soap*, const char*, prodml23__ProductVolumeParameterSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeParameterSet(struct soap*, prodml23__ProductVolumeParameterSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeParameterSet(struct soap*, prodml23__ProductVolumeParameterSet **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeFlow(struct soap*, prodml23__ProductVolumeFlow *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeFlow(struct soap*, const char *, int, prodml23__ProductVolumeFlow *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeFlow ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeFlow(struct soap*, const char*, prodml23__ProductVolumeFlow **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeFlow(struct soap*, prodml23__ProductVolumeFlow *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeFlow ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeFlow(struct soap*, prodml23__ProductVolumeFlow **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellOperationMethod(struct soap*, prodml23__WellOperationMethod *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellOperationMethod(struct soap*, const char *, int, prodml23__WellOperationMethod *const*, const char *); +SOAP_FMAC3 prodml23__WellOperationMethod ** SOAP_FMAC4 soap_in_PointerToprodml23__WellOperationMethod(struct soap*, const char*, prodml23__WellOperationMethod **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellOperationMethod(struct soap*, prodml23__WellOperationMethod *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellOperationMethod ** SOAP_FMAC4 soap_get_PointerToprodml23__WellOperationMethod(struct soap*, prodml23__WellOperationMethod **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellFluid(struct soap*, prodml23__WellFluid *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellFluid(struct soap*, const char *, int, prodml23__WellFluid *const*, const char *); +SOAP_FMAC3 prodml23__WellFluid ** SOAP_FMAC4 soap_in_PointerToprodml23__WellFluid(struct soap*, const char*, prodml23__WellFluid **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellFluid(struct soap*, prodml23__WellFluid *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellFluid ** SOAP_FMAC4 soap_get_PointerToprodml23__WellFluid(struct soap*, prodml23__WellFluid **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__WellStatus_DEFINED @@ -235934,67 +235906,67 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__WellStatus(struct soap*, eml2 SOAP_FMAC3 eml23__WellStatus ** SOAP_FMAC4 soap_get_PointerToeml23__WellStatus(struct soap*, eml23__WellStatus **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BalanceDestinationType(struct soap*, prodml22__BalanceDestinationType *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BalanceDestinationType(struct soap*, const char *, int, prodml22__BalanceDestinationType *const*, const char *); -SOAP_FMAC3 prodml22__BalanceDestinationType ** SOAP_FMAC4 soap_in_PointerToprodml22__BalanceDestinationType(struct soap*, const char*, prodml22__BalanceDestinationType **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BalanceDestinationType(struct soap*, prodml22__BalanceDestinationType *const*, const char*, const char*); -SOAP_FMAC3 prodml22__BalanceDestinationType ** SOAP_FMAC4 soap_get_PointerToprodml22__BalanceDestinationType(struct soap*, prodml22__BalanceDestinationType **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BalanceDestinationType(struct soap*, prodml23__BalanceDestinationType *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BalanceDestinationType(struct soap*, const char *, int, prodml23__BalanceDestinationType *const*, const char *); +SOAP_FMAC3 prodml23__BalanceDestinationType ** SOAP_FMAC4 soap_in_PointerToprodml23__BalanceDestinationType(struct soap*, const char*, prodml23__BalanceDestinationType **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BalanceDestinationType(struct soap*, prodml23__BalanceDestinationType *const*, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceDestinationType ** SOAP_FMAC4 soap_get_PointerToprodml23__BalanceDestinationType(struct soap*, prodml23__BalanceDestinationType **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CommonPropertiesProductVolume(struct soap*, prodml22__CommonPropertiesProductVolume *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CommonPropertiesProductVolume(struct soap*, const char *, int, prodml22__CommonPropertiesProductVolume *const*, const char *); -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_in_PointerToprodml22__CommonPropertiesProductVolume(struct soap*, const char*, prodml22__CommonPropertiesProductVolume **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CommonPropertiesProductVolume(struct soap*, prodml22__CommonPropertiesProductVolume *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_get_PointerToprodml22__CommonPropertiesProductVolume(struct soap*, prodml22__CommonPropertiesProductVolume **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CommonPropertiesProductVolume(struct soap*, prodml23__CommonPropertiesProductVolume *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CommonPropertiesProductVolume(struct soap*, const char *, int, prodml23__CommonPropertiesProductVolume *const*, const char *); +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_in_PointerToprodml23__CommonPropertiesProductVolume(struct soap*, const char*, prodml23__CommonPropertiesProductVolume **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CommonPropertiesProductVolume(struct soap*, prodml23__CommonPropertiesProductVolume *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CommonPropertiesProductVolume ** SOAP_FMAC4 soap_get_PointerToprodml23__CommonPropertiesProductVolume(struct soap*, prodml23__CommonPropertiesProductVolume **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingProduct(struct soap*, prodml22__ReportingProduct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingProduct(struct soap*, const char *, int, prodml22__ReportingProduct *const*, const char *); -SOAP_FMAC3 prodml22__ReportingProduct ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingProduct(struct soap*, const char*, prodml22__ReportingProduct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingProduct(struct soap*, prodml22__ReportingProduct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReportingProduct ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingProduct(struct soap*, prodml22__ReportingProduct **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingProduct(struct soap*, prodml23__ReportingProduct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingProduct(struct soap*, const char *, int, prodml23__ReportingProduct *const*, const char *); +SOAP_FMAC3 prodml23__ReportingProduct ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingProduct(struct soap*, const char*, prodml23__ReportingProduct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingProduct(struct soap*, prodml23__ReportingProduct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingProduct ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingProduct(struct soap*, prodml23__ReportingProduct **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, prodml22__ProductVolumeBusinessSubUnit *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, const char *, int, prodml22__ProductVolumeBusinessSubUnit *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, const char*, prodml22__ProductVolumeBusinessSubUnit **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, prodml22__ProductVolumeBusinessSubUnit *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, prodml22__ProductVolumeBusinessSubUnit **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, prodml23__ProductVolumeBusinessSubUnit *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, const char *, int, prodml23__ProductVolumeBusinessSubUnit *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, const char*, prodml23__ProductVolumeBusinessSubUnit **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, prodml23__ProductVolumeBusinessSubUnit *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBusinessSubUnit ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, prodml23__ProductVolumeBusinessSubUnit **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OwnershipBusinessAcct(struct soap*, prodml22__OwnershipBusinessAcct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OwnershipBusinessAcct(struct soap*, const char *, int, prodml22__OwnershipBusinessAcct *const*, const char *); -SOAP_FMAC3 prodml22__OwnershipBusinessAcct ** SOAP_FMAC4 soap_in_PointerToprodml22__OwnershipBusinessAcct(struct soap*, const char*, prodml22__OwnershipBusinessAcct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OwnershipBusinessAcct(struct soap*, prodml22__OwnershipBusinessAcct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OwnershipBusinessAcct ** SOAP_FMAC4 soap_get_PointerToprodml22__OwnershipBusinessAcct(struct soap*, prodml22__OwnershipBusinessAcct **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OwnershipBusinessAcct(struct soap*, prodml23__OwnershipBusinessAcct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OwnershipBusinessAcct(struct soap*, const char *, int, prodml23__OwnershipBusinessAcct *const*, const char *); +SOAP_FMAC3 prodml23__OwnershipBusinessAcct ** SOAP_FMAC4 soap_in_PointerToprodml23__OwnershipBusinessAcct(struct soap*, const char*, prodml23__OwnershipBusinessAcct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OwnershipBusinessAcct(struct soap*, prodml23__OwnershipBusinessAcct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OwnershipBusinessAcct ** SOAP_FMAC4 soap_get_PointerToprodml23__OwnershipBusinessAcct(struct soap*, prodml23__OwnershipBusinessAcct **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeDestination(struct soap*, prodml22__ProductVolumeDestination *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeDestination(struct soap*, const char *, int, prodml22__ProductVolumeDestination *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeDestination ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeDestination(struct soap*, const char*, prodml22__ProductVolumeDestination **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeDestination(struct soap*, prodml22__ProductVolumeDestination *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeDestination ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeDestination(struct soap*, prodml22__ProductVolumeDestination **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeDestination(struct soap*, prodml23__ProductVolumeDestination *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeDestination(struct soap*, const char *, int, prodml23__ProductVolumeDestination *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeDestination ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeDestination(struct soap*, const char*, prodml23__ProductVolumeDestination **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeDestination(struct soap*, prodml23__ProductVolumeDestination *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeDestination ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeDestination(struct soap*, prodml23__ProductVolumeDestination **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBalanceDetail(struct soap*, prodml22__ProductVolumeBalanceDetail *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBalanceDetail(struct soap*, const char *, int, prodml22__ProductVolumeBalanceDetail *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBalanceDetail(struct soap*, const char*, prodml22__ProductVolumeBalanceDetail **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBalanceDetail(struct soap*, prodml22__ProductVolumeBalanceDetail *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBalanceDetail(struct soap*, prodml22__ProductVolumeBalanceDetail **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBalanceDetail(struct soap*, prodml23__ProductVolumeBalanceDetail *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBalanceDetail(struct soap*, const char *, int, prodml23__ProductVolumeBalanceDetail *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBalanceDetail(struct soap*, const char*, prodml23__ProductVolumeBalanceDetail **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBalanceDetail(struct soap*, prodml23__ProductVolumeBalanceDetail *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceDetail ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBalanceDetail(struct soap*, prodml23__ProductVolumeBalanceDetail **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToxsd__nonNegativeInteger_DEFINED @@ -236006,49 +235978,49 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToxsd__nonNegativeInteger(struct soap* SOAP_FMAC3 ULONG64 ** SOAP_FMAC4 soap_get_PointerToxsd__nonNegativeInteger(struct soap*, ULONG64 **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BalanceFlowPart(struct soap*, prodml22__BalanceFlowPart *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BalanceFlowPart(struct soap*, const char *, int, prodml22__BalanceFlowPart *const*, const char *); -SOAP_FMAC3 prodml22__BalanceFlowPart ** SOAP_FMAC4 soap_in_PointerToprodml22__BalanceFlowPart(struct soap*, const char*, prodml22__BalanceFlowPart **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BalanceFlowPart(struct soap*, prodml22__BalanceFlowPart *const*, const char*, const char*); -SOAP_FMAC3 prodml22__BalanceFlowPart ** SOAP_FMAC4 soap_get_PointerToprodml22__BalanceFlowPart(struct soap*, prodml22__BalanceFlowPart **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BalanceFlowPart(struct soap*, prodml23__BalanceFlowPart *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BalanceFlowPart(struct soap*, const char *, int, prodml23__BalanceFlowPart *const*, const char *); +SOAP_FMAC3 prodml23__BalanceFlowPart ** SOAP_FMAC4 soap_in_PointerToprodml23__BalanceFlowPart(struct soap*, const char*, prodml23__BalanceFlowPart **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BalanceFlowPart(struct soap*, prodml23__BalanceFlowPart *const*, const char*, const char*); +SOAP_FMAC3 prodml23__BalanceFlowPart ** SOAP_FMAC4 soap_get_PointerToprodml23__BalanceFlowPart(struct soap*, prodml23__BalanceFlowPart **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBalanceEvent(struct soap*, prodml22__ProductVolumeBalanceEvent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBalanceEvent(struct soap*, const char *, int, prodml22__ProductVolumeBalanceEvent *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBalanceEvent(struct soap*, const char*, prodml22__ProductVolumeBalanceEvent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBalanceEvent(struct soap*, prodml22__ProductVolumeBalanceEvent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBalanceEvent(struct soap*, prodml22__ProductVolumeBalanceEvent **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBalanceEvent(struct soap*, prodml23__ProductVolumeBalanceEvent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBalanceEvent(struct soap*, const char *, int, prodml23__ProductVolumeBalanceEvent *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBalanceEvent(struct soap*, const char*, prodml23__ProductVolumeBalanceEvent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBalanceEvent(struct soap*, prodml23__ProductVolumeBalanceEvent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBalanceEvent ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBalanceEvent(struct soap*, prodml23__ProductVolumeBalanceEvent **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeComponentContent(struct soap*, prodml22__ProductVolumeComponentContent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeComponentContent(struct soap*, const char *, int, prodml22__ProductVolumeComponentContent *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeComponentContent ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeComponentContent(struct soap*, const char*, prodml22__ProductVolumeComponentContent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeComponentContent(struct soap*, prodml22__ProductVolumeComponentContent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeComponentContent ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeComponentContent(struct soap*, prodml22__ProductVolumeComponentContent **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeComponentContent(struct soap*, prodml23__ProductVolumeComponentContent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeComponentContent(struct soap*, const char *, int, prodml23__ProductVolumeComponentContent *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeComponentContent ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeComponentContent(struct soap*, const char*, prodml23__ProductVolumeComponentContent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeComponentContent(struct soap*, prodml23__ProductVolumeComponentContent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeComponentContent ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeComponentContent(struct soap*, prodml23__ProductVolumeComponentContent **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FacilityParent(struct soap*, prodml22__FacilityParent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FacilityParent(struct soap*, const char *, int, prodml22__FacilityParent *const*, const char *); -SOAP_FMAC3 prodml22__FacilityParent ** SOAP_FMAC4 soap_in_PointerToprodml22__FacilityParent(struct soap*, const char*, prodml22__FacilityParent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FacilityParent(struct soap*, prodml22__FacilityParent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FacilityParent ** SOAP_FMAC4 soap_get_PointerToprodml22__FacilityParent(struct soap*, prodml22__FacilityParent **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FacilityParent(struct soap*, prodml23__FacilityParent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FacilityParent(struct soap*, const char *, int, prodml23__FacilityParent *const*, const char *); +SOAP_FMAC3 prodml23__FacilityParent ** SOAP_FMAC4 soap_in_PointerToprodml23__FacilityParent(struct soap*, const char*, prodml23__FacilityParent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FacilityParent(struct soap*, prodml23__FacilityParent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityParent ** SOAP_FMAC4 soap_get_PointerToprodml23__FacilityParent(struct soap*, prodml23__FacilityParent **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumePortDifference(struct soap*, prodml22__ProductVolumePortDifference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumePortDifference(struct soap*, const char *, int, prodml22__ProductVolumePortDifference *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumePortDifference ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumePortDifference(struct soap*, const char*, prodml22__ProductVolumePortDifference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumePortDifference(struct soap*, prodml22__ProductVolumePortDifference *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumePortDifference ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumePortDifference(struct soap*, prodml22__ProductVolumePortDifference **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumePortDifference(struct soap*, prodml23__ProductVolumePortDifference *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumePortDifference(struct soap*, const char *, int, prodml23__ProductVolumePortDifference *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumePortDifference ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumePortDifference(struct soap*, const char*, prodml23__ProductVolumePortDifference **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumePortDifference(struct soap*, prodml23__ProductVolumePortDifference *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumePortDifference ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumePortDifference(struct soap*, prodml23__ProductVolumePortDifference **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__DensityValue_DEFINED @@ -236060,175 +236032,175 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__DensityValue(struct soap*, em SOAP_FMAC3 eml23__DensityValue ** SOAP_FMAC4 soap_get_PointerToeml23__DensityValue(struct soap*, eml23__DensityValue **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RecombinedSampleFraction(struct soap*, prodml22__RecombinedSampleFraction *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RecombinedSampleFraction(struct soap*, const char *, int, prodml22__RecombinedSampleFraction *const*, const char *); -SOAP_FMAC3 prodml22__RecombinedSampleFraction ** SOAP_FMAC4 soap_in_PointerToprodml22__RecombinedSampleFraction(struct soap*, const char*, prodml22__RecombinedSampleFraction **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RecombinedSampleFraction(struct soap*, prodml22__RecombinedSampleFraction *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RecombinedSampleFraction ** SOAP_FMAC4 soap_get_PointerToprodml22__RecombinedSampleFraction(struct soap*, prodml22__RecombinedSampleFraction **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleAction(struct soap*, prodml22__SampleAction *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleAction(struct soap*, const char *, int, prodml22__SampleAction *const*, const char *); -SOAP_FMAC3 prodml22__SampleAction ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleAction(struct soap*, const char*, prodml22__SampleAction **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleAction(struct soap*, prodml22__SampleAction *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SampleAction ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleAction(struct soap*, prodml22__SampleAction **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CustomParameter(struct soap*, prodml22__CustomParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CustomParameter(struct soap*, const char *, int, prodml22__CustomParameter *const*, const char *); -SOAP_FMAC3 prodml22__CustomParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__CustomParameter(struct soap*, const char*, prodml22__CustomParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CustomParameter(struct soap*, prodml22__CustomParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CustomParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__CustomParameter(struct soap*, prodml22__CustomParameter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractParameter(struct soap*, prodml22__AbstractParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractParameter(struct soap*, const char *, int, prodml22__AbstractParameter *const*, const char *); -SOAP_FMAC3 prodml22__AbstractParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractParameter(struct soap*, const char*, prodml22__AbstractParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractParameter(struct soap*, prodml22__AbstractParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractParameter(struct soap*, prodml22__AbstractParameter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureStorativityRatio(struct soap*, prodml22__FractureStorativityRatio *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureStorativityRatio(struct soap*, const char *, int, prodml22__FractureStorativityRatio *const*, const char *); -SOAP_FMAC3 prodml22__FractureStorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureStorativityRatio(struct soap*, const char*, prodml22__FractureStorativityRatio **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureStorativityRatio(struct soap*, prodml22__FractureStorativityRatio *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureStorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureStorativityRatio(struct soap*, prodml22__FractureStorativityRatio **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureFaceSkin(struct soap*, prodml22__FractureFaceSkin *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureFaceSkin(struct soap*, const char *, int, prodml22__FractureFaceSkin *const*, const char *); -SOAP_FMAC3 prodml22__FractureFaceSkin ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureFaceSkin(struct soap*, const char*, prodml22__FractureFaceSkin **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureFaceSkin(struct soap*, prodml22__FractureFaceSkin *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureFaceSkin ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureFaceSkin(struct soap*, prodml22__FractureFaceSkin **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml22__DistanceMidFractureHeightToBottomBoundary *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char *, int, prodml22__DistanceMidFractureHeightToBottomBoundary *const*, const char *); -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char*, prodml22__DistanceMidFractureHeightToBottomBoundary **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml22__DistanceMidFractureHeightToBottomBoundary *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml22__DistanceMidFractureHeightToBottomBoundary **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureHeight(struct soap*, prodml22__FractureHeight *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureHeight(struct soap*, const char *, int, prodml22__FractureHeight *const*, const char *); -SOAP_FMAC3 prodml22__FractureHeight ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureHeight(struct soap*, const char*, prodml22__FractureHeight **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureHeight(struct soap*, prodml22__FractureHeight *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureHeight ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureHeight(struct soap*, prodml22__FractureHeight **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TotalThickness(struct soap*, prodml22__TotalThickness *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TotalThickness(struct soap*, const char *, int, prodml22__TotalThickness *const*, const char *); -SOAP_FMAC3 prodml22__TotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml22__TotalThickness(struct soap*, const char*, prodml22__TotalThickness **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TotalThickness(struct soap*, prodml22__TotalThickness *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml22__TotalThickness(struct soap*, prodml22__TotalThickness **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Porosity(struct soap*, prodml22__Porosity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Porosity(struct soap*, const char *, int, prodml22__Porosity *const*, const char *); -SOAP_FMAC3 prodml22__Porosity ** SOAP_FMAC4 soap_in_PointerToprodml22__Porosity(struct soap*, const char*, prodml22__Porosity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Porosity(struct soap*, prodml22__Porosity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__Porosity ** SOAP_FMAC4 soap_get_PointerToprodml22__Porosity(struct soap*, prodml22__Porosity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__HorizontalRadialPermeability(struct soap*, prodml22__HorizontalRadialPermeability *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__HorizontalRadialPermeability(struct soap*, const char *, int, prodml22__HorizontalRadialPermeability *const*, const char *); -SOAP_FMAC3 prodml22__HorizontalRadialPermeability ** SOAP_FMAC4 soap_in_PointerToprodml22__HorizontalRadialPermeability(struct soap*, const char*, prodml22__HorizontalRadialPermeability **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__HorizontalRadialPermeability(struct soap*, prodml22__HorizontalRadialPermeability *const*, const char*, const char*); -SOAP_FMAC3 prodml22__HorizontalRadialPermeability ** SOAP_FMAC4 soap_get_PointerToprodml22__HorizontalRadialPermeability(struct soap*, prodml22__HorizontalRadialPermeability **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LocationIn2D(struct soap*, prodml22__LocationIn2D *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LocationIn2D(struct soap*, const char *, int, prodml22__LocationIn2D *const*, const char *); -SOAP_FMAC3 prodml22__LocationIn2D ** SOAP_FMAC4 soap_in_PointerToprodml22__LocationIn2D(struct soap*, const char*, prodml22__LocationIn2D **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LocationIn2D(struct soap*, prodml22__LocationIn2D *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LocationIn2D ** SOAP_FMAC4 soap_get_PointerToprodml22__LocationIn2D(struct soap*, prodml22__LocationIn2D **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AnalysisLine(struct soap*, prodml22__AnalysisLine *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AnalysisLine(struct soap*, const char *, int, prodml22__AnalysisLine *const*, const char *); -SOAP_FMAC3 prodml22__AnalysisLine ** SOAP_FMAC4 soap_in_PointerToprodml22__AnalysisLine(struct soap*, const char*, prodml22__AnalysisLine **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AnalysisLine(struct soap*, prodml22__AnalysisLine *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AnalysisLine ** SOAP_FMAC4 soap_get_PointerToprodml22__AnalysisLine(struct soap*, prodml22__AnalysisLine **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractPtaPressureData(struct soap*, prodml22__AbstractPtaPressureData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractPtaPressureData(struct soap*, const char *, int, prodml22__AbstractPtaPressureData *const*, const char *); -SOAP_FMAC3 prodml22__AbstractPtaPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractPtaPressureData(struct soap*, const char*, prodml22__AbstractPtaPressureData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractPtaPressureData(struct soap*, prodml22__AbstractPtaPressureData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractPtaPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractPtaPressureData(struct soap*, prodml22__AbstractPtaPressureData **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterporosityFlowParameter(struct soap*, prodml22__InterporosityFlowParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterporosityFlowParameter(struct soap*, const char *, int, prodml22__InterporosityFlowParameter *const*, const char *); -SOAP_FMAC3 prodml22__InterporosityFlowParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__InterporosityFlowParameter(struct soap*, const char*, prodml22__InterporosityFlowParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterporosityFlowParameter(struct soap*, prodml22__InterporosityFlowParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InterporosityFlowParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__InterporosityFlowParameter(struct soap*, prodml22__InterporosityFlowParameter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LayerToLayerConnection(struct soap*, prodml22__LayerToLayerConnection *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LayerToLayerConnection(struct soap*, const char *, int, prodml22__LayerToLayerConnection *const*, const char *); -SOAP_FMAC3 prodml22__LayerToLayerConnection ** SOAP_FMAC4 soap_in_PointerToprodml22__LayerToLayerConnection(struct soap*, const char*, prodml22__LayerToLayerConnection **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LayerToLayerConnection(struct soap*, prodml22__LayerToLayerConnection *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LayerToLayerConnection ** SOAP_FMAC4 soap_get_PointerToprodml22__LayerToLayerConnection(struct soap*, prodml22__LayerToLayerConnection **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BoundaryBaseModel(struct soap*, prodml22__BoundaryBaseModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BoundaryBaseModel(struct soap*, const char *, int, prodml22__BoundaryBaseModel *const*, const char *); -SOAP_FMAC3 prodml22__BoundaryBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__BoundaryBaseModel(struct soap*, const char*, prodml22__BoundaryBaseModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BoundaryBaseModel(struct soap*, prodml22__BoundaryBaseModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__BoundaryBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__BoundaryBaseModel(struct soap*, prodml22__BoundaryBaseModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReservoirBaseModel(struct soap*, prodml22__ReservoirBaseModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReservoirBaseModel(struct soap*, const char *, int, prodml22__ReservoirBaseModel *const*, const char *); -SOAP_FMAC3 prodml22__ReservoirBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__ReservoirBaseModel(struct soap*, const char*, prodml22__ReservoirBaseModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReservoirBaseModel(struct soap*, prodml22__ReservoirBaseModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReservoirBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__ReservoirBaseModel(struct soap*, prodml22__ReservoirBaseModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NearWellboreBaseModel(struct soap*, prodml22__NearWellboreBaseModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NearWellboreBaseModel(struct soap*, const char *, int, prodml22__NearWellboreBaseModel *const*, const char *); -SOAP_FMAC3 prodml22__NearWellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml22__NearWellboreBaseModel(struct soap*, const char*, prodml22__NearWellboreBaseModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NearWellboreBaseModel(struct soap*, prodml22__NearWellboreBaseModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__NearWellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml22__NearWellboreBaseModel(struct soap*, prodml22__NearWellboreBaseModel **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RecombinedSampleFraction(struct soap*, prodml23__RecombinedSampleFraction *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RecombinedSampleFraction(struct soap*, const char *, int, prodml23__RecombinedSampleFraction *const*, const char *); +SOAP_FMAC3 prodml23__RecombinedSampleFraction ** SOAP_FMAC4 soap_in_PointerToprodml23__RecombinedSampleFraction(struct soap*, const char*, prodml23__RecombinedSampleFraction **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RecombinedSampleFraction(struct soap*, prodml23__RecombinedSampleFraction *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RecombinedSampleFraction ** SOAP_FMAC4 soap_get_PointerToprodml23__RecombinedSampleFraction(struct soap*, prodml23__RecombinedSampleFraction **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleAction(struct soap*, prodml23__SampleAction *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleAction(struct soap*, const char *, int, prodml23__SampleAction *const*, const char *); +SOAP_FMAC3 prodml23__SampleAction ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleAction(struct soap*, const char*, prodml23__SampleAction **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleAction(struct soap*, prodml23__SampleAction *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SampleAction ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleAction(struct soap*, prodml23__SampleAction **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CustomParameter(struct soap*, prodml23__CustomParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CustomParameter(struct soap*, const char *, int, prodml23__CustomParameter *const*, const char *); +SOAP_FMAC3 prodml23__CustomParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__CustomParameter(struct soap*, const char*, prodml23__CustomParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CustomParameter(struct soap*, prodml23__CustomParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CustomParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__CustomParameter(struct soap*, prodml23__CustomParameter **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractParameter(struct soap*, prodml23__AbstractParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractParameter(struct soap*, const char *, int, prodml23__AbstractParameter *const*, const char *); +SOAP_FMAC3 prodml23__AbstractParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractParameter(struct soap*, const char*, prodml23__AbstractParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractParameter(struct soap*, prodml23__AbstractParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractParameter(struct soap*, prodml23__AbstractParameter **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureStorativityRatio(struct soap*, prodml23__FractureStorativityRatio *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureStorativityRatio(struct soap*, const char *, int, prodml23__FractureStorativityRatio *const*, const char *); +SOAP_FMAC3 prodml23__FractureStorativityRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureStorativityRatio(struct soap*, const char*, prodml23__FractureStorativityRatio **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureStorativityRatio(struct soap*, prodml23__FractureStorativityRatio *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureStorativityRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureStorativityRatio(struct soap*, prodml23__FractureStorativityRatio **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureFaceSkin(struct soap*, prodml23__FractureFaceSkin *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureFaceSkin(struct soap*, const char *, int, prodml23__FractureFaceSkin *const*, const char *); +SOAP_FMAC3 prodml23__FractureFaceSkin ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureFaceSkin(struct soap*, const char*, prodml23__FractureFaceSkin **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureFaceSkin(struct soap*, prodml23__FractureFaceSkin *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureFaceSkin ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureFaceSkin(struct soap*, prodml23__FractureFaceSkin **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml23__DistanceMidFractureHeightToBottomBoundary *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char *, int, prodml23__DistanceMidFractureHeightToBottomBoundary *const*, const char *); +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_in_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, const char*, prodml23__DistanceMidFractureHeightToBottomBoundary **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml23__DistanceMidFractureHeightToBottomBoundary *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DistanceMidFractureHeightToBottomBoundary ** SOAP_FMAC4 soap_get_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, prodml23__DistanceMidFractureHeightToBottomBoundary **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureHeight(struct soap*, prodml23__FractureHeight *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureHeight(struct soap*, const char *, int, prodml23__FractureHeight *const*, const char *); +SOAP_FMAC3 prodml23__FractureHeight ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureHeight(struct soap*, const char*, prodml23__FractureHeight **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureHeight(struct soap*, prodml23__FractureHeight *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureHeight ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureHeight(struct soap*, prodml23__FractureHeight **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TotalThickness(struct soap*, prodml23__TotalThickness *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TotalThickness(struct soap*, const char *, int, prodml23__TotalThickness *const*, const char *); +SOAP_FMAC3 prodml23__TotalThickness ** SOAP_FMAC4 soap_in_PointerToprodml23__TotalThickness(struct soap*, const char*, prodml23__TotalThickness **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TotalThickness(struct soap*, prodml23__TotalThickness *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TotalThickness ** SOAP_FMAC4 soap_get_PointerToprodml23__TotalThickness(struct soap*, prodml23__TotalThickness **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Porosity(struct soap*, prodml23__Porosity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Porosity(struct soap*, const char *, int, prodml23__Porosity *const*, const char *); +SOAP_FMAC3 prodml23__Porosity ** SOAP_FMAC4 soap_in_PointerToprodml23__Porosity(struct soap*, const char*, prodml23__Porosity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Porosity(struct soap*, prodml23__Porosity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__Porosity ** SOAP_FMAC4 soap_get_PointerToprodml23__Porosity(struct soap*, prodml23__Porosity **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__HorizontalRadialPermeability(struct soap*, prodml23__HorizontalRadialPermeability *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__HorizontalRadialPermeability(struct soap*, const char *, int, prodml23__HorizontalRadialPermeability *const*, const char *); +SOAP_FMAC3 prodml23__HorizontalRadialPermeability ** SOAP_FMAC4 soap_in_PointerToprodml23__HorizontalRadialPermeability(struct soap*, const char*, prodml23__HorizontalRadialPermeability **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__HorizontalRadialPermeability(struct soap*, prodml23__HorizontalRadialPermeability *const*, const char*, const char*); +SOAP_FMAC3 prodml23__HorizontalRadialPermeability ** SOAP_FMAC4 soap_get_PointerToprodml23__HorizontalRadialPermeability(struct soap*, prodml23__HorizontalRadialPermeability **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LocationIn2D(struct soap*, prodml23__LocationIn2D *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LocationIn2D(struct soap*, const char *, int, prodml23__LocationIn2D *const*, const char *); +SOAP_FMAC3 prodml23__LocationIn2D ** SOAP_FMAC4 soap_in_PointerToprodml23__LocationIn2D(struct soap*, const char*, prodml23__LocationIn2D **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LocationIn2D(struct soap*, prodml23__LocationIn2D *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LocationIn2D ** SOAP_FMAC4 soap_get_PointerToprodml23__LocationIn2D(struct soap*, prodml23__LocationIn2D **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AnalysisLine(struct soap*, prodml23__AnalysisLine *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AnalysisLine(struct soap*, const char *, int, prodml23__AnalysisLine *const*, const char *); +SOAP_FMAC3 prodml23__AnalysisLine ** SOAP_FMAC4 soap_in_PointerToprodml23__AnalysisLine(struct soap*, const char*, prodml23__AnalysisLine **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AnalysisLine(struct soap*, prodml23__AnalysisLine *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AnalysisLine ** SOAP_FMAC4 soap_get_PointerToprodml23__AnalysisLine(struct soap*, prodml23__AnalysisLine **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractPtaPressureData(struct soap*, prodml23__AbstractPtaPressureData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractPtaPressureData(struct soap*, const char *, int, prodml23__AbstractPtaPressureData *const*, const char *); +SOAP_FMAC3 prodml23__AbstractPtaPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractPtaPressureData(struct soap*, const char*, prodml23__AbstractPtaPressureData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractPtaPressureData(struct soap*, prodml23__AbstractPtaPressureData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractPtaPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractPtaPressureData(struct soap*, prodml23__AbstractPtaPressureData **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterporosityFlowParameter(struct soap*, prodml23__InterporosityFlowParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterporosityFlowParameter(struct soap*, const char *, int, prodml23__InterporosityFlowParameter *const*, const char *); +SOAP_FMAC3 prodml23__InterporosityFlowParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__InterporosityFlowParameter(struct soap*, const char*, prodml23__InterporosityFlowParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterporosityFlowParameter(struct soap*, prodml23__InterporosityFlowParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InterporosityFlowParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__InterporosityFlowParameter(struct soap*, prodml23__InterporosityFlowParameter **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LayerToLayerConnection(struct soap*, prodml23__LayerToLayerConnection *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LayerToLayerConnection(struct soap*, const char *, int, prodml23__LayerToLayerConnection *const*, const char *); +SOAP_FMAC3 prodml23__LayerToLayerConnection ** SOAP_FMAC4 soap_in_PointerToprodml23__LayerToLayerConnection(struct soap*, const char*, prodml23__LayerToLayerConnection **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LayerToLayerConnection(struct soap*, prodml23__LayerToLayerConnection *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LayerToLayerConnection ** SOAP_FMAC4 soap_get_PointerToprodml23__LayerToLayerConnection(struct soap*, prodml23__LayerToLayerConnection **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BoundaryBaseModel(struct soap*, prodml23__BoundaryBaseModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BoundaryBaseModel(struct soap*, const char *, int, prodml23__BoundaryBaseModel *const*, const char *); +SOAP_FMAC3 prodml23__BoundaryBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__BoundaryBaseModel(struct soap*, const char*, prodml23__BoundaryBaseModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BoundaryBaseModel(struct soap*, prodml23__BoundaryBaseModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__BoundaryBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__BoundaryBaseModel(struct soap*, prodml23__BoundaryBaseModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReservoirBaseModel(struct soap*, prodml23__ReservoirBaseModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReservoirBaseModel(struct soap*, const char *, int, prodml23__ReservoirBaseModel *const*, const char *); +SOAP_FMAC3 prodml23__ReservoirBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__ReservoirBaseModel(struct soap*, const char*, prodml23__ReservoirBaseModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReservoirBaseModel(struct soap*, prodml23__ReservoirBaseModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReservoirBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__ReservoirBaseModel(struct soap*, prodml23__ReservoirBaseModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NearWellboreBaseModel(struct soap*, prodml23__NearWellboreBaseModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NearWellboreBaseModel(struct soap*, const char *, int, prodml23__NearWellboreBaseModel *const*, const char *); +SOAP_FMAC3 prodml23__NearWellboreBaseModel ** SOAP_FMAC4 soap_in_PointerToprodml23__NearWellboreBaseModel(struct soap*, const char*, prodml23__NearWellboreBaseModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NearWellboreBaseModel(struct soap*, prodml23__NearWellboreBaseModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__NearWellboreBaseModel ** SOAP_FMAC4 soap_get_PointerToprodml23__NearWellboreBaseModel(struct soap*, prodml23__NearWellboreBaseModel **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__PressurePerFlowrateMeasure_DEFINED @@ -236258,49 +236230,49 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__VolumePerTimePerPressureMeasu SOAP_FMAC3 eml23__VolumePerTimePerPressureMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__VolumePerTimePerPressureMeasure(struct soap*, eml23__VolumePerTimePerPressureMeasure **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FractureConductivity(struct soap*, prodml22__FractureConductivity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FractureConductivity(struct soap*, const char *, int, prodml22__FractureConductivity *const*, const char *); -SOAP_FMAC3 prodml22__FractureConductivity ** SOAP_FMAC4 soap_in_PointerToprodml22__FractureConductivity(struct soap*, const char*, prodml22__FractureConductivity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FractureConductivity(struct soap*, prodml22__FractureConductivity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FractureConductivity ** SOAP_FMAC4 soap_get_PointerToprodml22__FractureConductivity(struct soap*, prodml22__FractureConductivity **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FractureConductivity(struct soap*, prodml23__FractureConductivity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FractureConductivity(struct soap*, const char *, int, prodml23__FractureConductivity *const*, const char *); +SOAP_FMAC3 prodml23__FractureConductivity ** SOAP_FMAC4 soap_in_PointerToprodml23__FractureConductivity(struct soap*, const char*, prodml23__FractureConductivity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FractureConductivity(struct soap*, prodml23__FractureConductivity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FractureConductivity ** SOAP_FMAC4 soap_get_PointerToprodml23__FractureConductivity(struct soap*, prodml23__FractureConductivity **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml22__TransmissibilityReductionFactorOfLinearFront *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char *, int, prodml22__TransmissibilityReductionFactorOfLinearFront *const*, const char *); -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char*, prodml22__TransmissibilityReductionFactorOfLinearFront **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml22__TransmissibilityReductionFactorOfLinearFront *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml22__TransmissibilityReductionFactorOfLinearFront **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml23__TransmissibilityReductionFactorOfLinearFront *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char *, int, prodml23__TransmissibilityReductionFactorOfLinearFront *const*, const char *); +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_in_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, const char*, prodml23__TransmissibilityReductionFactorOfLinearFront **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml23__TransmissibilityReductionFactorOfLinearFront *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TransmissibilityReductionFactorOfLinearFront ** SOAP_FMAC4 soap_get_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, prodml23__TransmissibilityReductionFactorOfLinearFront **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OutputPressureData(struct soap*, prodml22__OutputPressureData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OutputPressureData(struct soap*, const char *, int, prodml22__OutputPressureData *const*, const char *); -SOAP_FMAC3 prodml22__OutputPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__OutputPressureData(struct soap*, const char*, prodml22__OutputPressureData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OutputPressureData(struct soap*, prodml22__OutputPressureData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OutputPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__OutputPressureData(struct soap*, prodml22__OutputPressureData **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OutputPressureData(struct soap*, prodml23__OutputPressureData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OutputPressureData(struct soap*, const char *, int, prodml23__OutputPressureData *const*, const char *); +SOAP_FMAC3 prodml23__OutputPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__OutputPressureData(struct soap*, const char*, prodml23__OutputPressureData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OutputPressureData(struct soap*, prodml23__OutputPressureData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OutputPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__OutputPressureData(struct soap*, prodml23__OutputPressureData **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ResqmlModelRef(struct soap*, prodml22__ResqmlModelRef *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ResqmlModelRef(struct soap*, const char *, int, prodml22__ResqmlModelRef *const*, const char *); -SOAP_FMAC3 prodml22__ResqmlModelRef ** SOAP_FMAC4 soap_in_PointerToprodml22__ResqmlModelRef(struct soap*, const char*, prodml22__ResqmlModelRef **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ResqmlModelRef(struct soap*, prodml22__ResqmlModelRef *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ResqmlModelRef ** SOAP_FMAC4 soap_get_PointerToprodml22__ResqmlModelRef(struct soap*, prodml22__ResqmlModelRef **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ResqmlModelRef(struct soap*, prodml23__ResqmlModelRef *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ResqmlModelRef(struct soap*, const char *, int, prodml23__ResqmlModelRef *const*, const char *); +SOAP_FMAC3 prodml23__ResqmlModelRef ** SOAP_FMAC4 soap_in_PointerToprodml23__ResqmlModelRef(struct soap*, const char*, prodml23__ResqmlModelRef **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ResqmlModelRef(struct soap*, prodml23__ResqmlModelRef *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ResqmlModelRef ** SOAP_FMAC4 soap_get_PointerToprodml23__ResqmlModelRef(struct soap*, prodml23__ResqmlModelRef **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DeconvolvedPressureData(struct soap*, prodml22__DeconvolvedPressureData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DeconvolvedPressureData(struct soap*, const char *, int, prodml22__DeconvolvedPressureData *const*, const char *); -SOAP_FMAC3 prodml22__DeconvolvedPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__DeconvolvedPressureData(struct soap*, const char*, prodml22__DeconvolvedPressureData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DeconvolvedPressureData(struct soap*, prodml22__DeconvolvedPressureData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DeconvolvedPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__DeconvolvedPressureData(struct soap*, prodml22__DeconvolvedPressureData **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DeconvolvedPressureData(struct soap*, prodml23__DeconvolvedPressureData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DeconvolvedPressureData(struct soap*, const char *, int, prodml23__DeconvolvedPressureData *const*, const char *); +SOAP_FMAC3 prodml23__DeconvolvedPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__DeconvolvedPressureData(struct soap*, const char*, prodml23__DeconvolvedPressureData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DeconvolvedPressureData(struct soap*, prodml23__DeconvolvedPressureData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DeconvolvedPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__DeconvolvedPressureData(struct soap*, prodml23__DeconvolvedPressureData **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasureExt_DEFINED @@ -236312,40 +236284,40 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__ReciprocalPressureMeasureExt( SOAP_FMAC3 eml23__ReciprocalPressureMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__ReciprocalPressureMeasureExt(struct soap*, eml23__ReciprocalPressureMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingHierarchyNode(struct soap*, prodml22__ReportingHierarchyNode *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingHierarchyNode(struct soap*, const char *, int, prodml22__ReportingHierarchyNode *const*, const char *); -SOAP_FMAC3 prodml22__ReportingHierarchyNode ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingHierarchyNode(struct soap*, const char*, prodml22__ReportingHierarchyNode **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingHierarchyNode(struct soap*, prodml22__ReportingHierarchyNode *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReportingHierarchyNode ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingHierarchyNode(struct soap*, prodml22__ReportingHierarchyNode **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingHierarchyNode(struct soap*, prodml23__ReportingHierarchyNode *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingHierarchyNode(struct soap*, const char *, int, prodml23__ReportingHierarchyNode *const*, const char *); +SOAP_FMAC3 prodml23__ReportingHierarchyNode ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingHierarchyNode(struct soap*, const char*, prodml23__ReportingHierarchyNode **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingHierarchyNode(struct soap*, prodml23__ReportingHierarchyNode *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingHierarchyNode ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingHierarchyNode(struct soap*, prodml23__ReportingHierarchyNode **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductRate(struct soap*, prodml22__ProductRate *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductRate(struct soap*, const char *, int, prodml22__ProductRate *const*, const char *); -SOAP_FMAC3 prodml22__ProductRate ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductRate(struct soap*, const char*, prodml22__ProductRate **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductRate(struct soap*, prodml22__ProductRate *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductRate ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductRate(struct soap*, prodml22__ProductRate **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductRate(struct soap*, prodml23__ProductRate *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductRate(struct soap*, const char *, int, prodml23__ProductRate *const*, const char *); +SOAP_FMAC3 prodml23__ProductRate ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductRate(struct soap*, const char*, prodml23__ProductRate **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductRate(struct soap*, prodml23__ProductRate *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductRate ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductRate(struct soap*, prodml23__ProductRate **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WellFlowingCondition(struct soap*, prodml22__WellFlowingCondition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WellFlowingCondition(struct soap*, const char *, int, prodml22__WellFlowingCondition *const*, const char *); -SOAP_FMAC3 prodml22__WellFlowingCondition ** SOAP_FMAC4 soap_in_PointerToprodml22__WellFlowingCondition(struct soap*, const char*, prodml22__WellFlowingCondition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WellFlowingCondition(struct soap*, prodml22__WellFlowingCondition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WellFlowingCondition ** SOAP_FMAC4 soap_get_PointerToprodml22__WellFlowingCondition(struct soap*, prodml22__WellFlowingCondition **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WellFlowingCondition(struct soap*, prodml23__WellFlowingCondition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WellFlowingCondition(struct soap*, const char *, int, prodml23__WellFlowingCondition *const*, const char *); +SOAP_FMAC3 prodml23__WellFlowingCondition ** SOAP_FMAC4 soap_in_PointerToprodml23__WellFlowingCondition(struct soap*, const char*, prodml23__WellFlowingCondition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WellFlowingCondition(struct soap*, prodml23__WellFlowingCondition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WellFlowingCondition ** SOAP_FMAC4 soap_get_PointerToprodml23__WellFlowingCondition(struct soap*, prodml23__WellFlowingCondition **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TestPeriodKind(struct soap*, prodml22__TestPeriodKind *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TestPeriodKind(struct soap*, const char *, int, prodml22__TestPeriodKind *const*, const char *); -SOAP_FMAC3 prodml22__TestPeriodKind ** SOAP_FMAC4 soap_in_PointerToprodml22__TestPeriodKind(struct soap*, const char*, prodml22__TestPeriodKind **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TestPeriodKind(struct soap*, prodml22__TestPeriodKind *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TestPeriodKind ** SOAP_FMAC4 soap_get_PointerToprodml22__TestPeriodKind(struct soap*, prodml22__TestPeriodKind **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TestPeriodKind(struct soap*, prodml23__TestPeriodKind *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TestPeriodKind(struct soap*, const char *, int, prodml23__TestPeriodKind *const*, const char *); +SOAP_FMAC3 prodml23__TestPeriodKind ** SOAP_FMAC4 soap_in_PointerToprodml23__TestPeriodKind(struct soap*, const char*, prodml23__TestPeriodKind **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TestPeriodKind(struct soap*, prodml23__TestPeriodKind *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TestPeriodKind ** SOAP_FMAC4 soap_get_PointerToprodml23__TestPeriodKind(struct soap*, prodml23__TestPeriodKind **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__FlowRateValue_DEFINED @@ -236357,58 +236329,58 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__FlowRateValue(struct soap*, e SOAP_FMAC3 eml23__FlowRateValue ** SOAP_FMAC4 soap_get_PointerToeml23__FlowRateValue(struct soap*, eml23__FlowRateValue **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidComponentCatalog(struct soap*, prodml22__FluidComponentCatalog *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidComponentCatalog(struct soap*, const char *, int, prodml22__FluidComponentCatalog *const*, const char *); -SOAP_FMAC3 prodml22__FluidComponentCatalog ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidComponentCatalog(struct soap*, const char*, prodml22__FluidComponentCatalog **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidComponentCatalog(struct soap*, prodml22__FluidComponentCatalog *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidComponentCatalog ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidComponentCatalog(struct soap*, prodml22__FluidComponentCatalog **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidComponentCatalog(struct soap*, prodml23__FluidComponentCatalog *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidComponentCatalog(struct soap*, const char *, int, prodml23__FluidComponentCatalog *const*, const char *); +SOAP_FMAC3 prodml23__FluidComponentCatalog ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidComponentCatalog(struct soap*, const char*, prodml23__FluidComponentCatalog **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidComponentCatalog(struct soap*, prodml23__FluidComponentCatalog *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentCatalog ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidComponentCatalog(struct soap*, prodml23__FluidComponentCatalog **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MeasuredPressureData(struct soap*, prodml22__MeasuredPressureData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MeasuredPressureData(struct soap*, const char *, int, prodml22__MeasuredPressureData *const*, const char *); -SOAP_FMAC3 prodml22__MeasuredPressureData ** SOAP_FMAC4 soap_in_PointerToprodml22__MeasuredPressureData(struct soap*, const char*, prodml22__MeasuredPressureData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MeasuredPressureData(struct soap*, prodml22__MeasuredPressureData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MeasuredPressureData ** SOAP_FMAC4 soap_get_PointerToprodml22__MeasuredPressureData(struct soap*, prodml22__MeasuredPressureData **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MeasuredPressureData(struct soap*, prodml23__MeasuredPressureData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MeasuredPressureData(struct soap*, const char *, int, prodml23__MeasuredPressureData *const*, const char *); +SOAP_FMAC3 prodml23__MeasuredPressureData ** SOAP_FMAC4 soap_in_PointerToprodml23__MeasuredPressureData(struct soap*, const char*, prodml23__MeasuredPressureData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MeasuredPressureData(struct soap*, prodml23__MeasuredPressureData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MeasuredPressureData ** SOAP_FMAC4 soap_get_PointerToprodml23__MeasuredPressureData(struct soap*, prodml23__MeasuredPressureData **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractPtaFlowData(struct soap*, prodml22__AbstractPtaFlowData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractPtaFlowData(struct soap*, const char *, int, prodml22__AbstractPtaFlowData *const*, const char *); -SOAP_FMAC3 prodml22__AbstractPtaFlowData ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractPtaFlowData(struct soap*, const char*, prodml22__AbstractPtaFlowData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractPtaFlowData(struct soap*, prodml22__AbstractPtaFlowData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractPtaFlowData ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractPtaFlowData(struct soap*, prodml22__AbstractPtaFlowData **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractPtaFlowData(struct soap*, prodml23__AbstractPtaFlowData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractPtaFlowData(struct soap*, const char *, int, prodml23__AbstractPtaFlowData *const*, const char *); +SOAP_FMAC3 prodml23__AbstractPtaFlowData ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractPtaFlowData(struct soap*, const char*, prodml23__AbstractPtaFlowData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractPtaFlowData(struct soap*, prodml23__AbstractPtaFlowData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractPtaFlowData ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractPtaFlowData(struct soap*, prodml23__AbstractPtaFlowData **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OtherData(struct soap*, prodml22__OtherData *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OtherData(struct soap*, const char *, int, prodml22__OtherData *const*, const char *); -SOAP_FMAC3 prodml22__OtherData ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherData(struct soap*, const char*, prodml22__OtherData **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OtherData(struct soap*, prodml22__OtherData *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OtherData ** SOAP_FMAC4 soap_get_PointerToprodml22__OtherData(struct soap*, prodml22__OtherData **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OtherData(struct soap*, prodml23__OtherData *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OtherData(struct soap*, const char *, int, prodml23__OtherData *const*, const char *); +SOAP_FMAC3 prodml23__OtherData ** SOAP_FMAC4 soap_in_PointerToprodml23__OtherData(struct soap*, const char*, prodml23__OtherData **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OtherData(struct soap*, prodml23__OtherData *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OtherData ** SOAP_FMAC4 soap_get_PointerToprodml23__OtherData(struct soap*, prodml23__OtherData **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlowTestLocation(struct soap*, prodml22__FlowTestLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlowTestLocation(struct soap*, const char *, int, prodml22__FlowTestLocation *const*, const char *); -SOAP_FMAC3 prodml22__FlowTestLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__FlowTestLocation(struct soap*, const char*, prodml22__FlowTestLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlowTestLocation(struct soap*, prodml22__FlowTestLocation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FlowTestLocation ** SOAP_FMAC4 soap_get_PointerToprodml22__FlowTestLocation(struct soap*, prodml22__FlowTestLocation **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlowTestLocation(struct soap*, prodml23__FlowTestLocation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlowTestLocation(struct soap*, const char *, int, prodml23__FlowTestLocation *const*, const char *); +SOAP_FMAC3 prodml23__FlowTestLocation ** SOAP_FMAC4 soap_in_PointerToprodml23__FlowTestLocation(struct soap*, const char*, prodml23__FlowTestLocation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlowTestLocation(struct soap*, prodml23__FlowTestLocation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FlowTestLocation ** SOAP_FMAC4 soap_get_PointerToprodml23__FlowTestLocation(struct soap*, prodml23__FlowTestLocation **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TestPeriod(struct soap*, prodml22__TestPeriod *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TestPeriod(struct soap*, const char *, int, prodml22__TestPeriod *const*, const char *); -SOAP_FMAC3 prodml22__TestPeriod ** SOAP_FMAC4 soap_in_PointerToprodml22__TestPeriod(struct soap*, const char*, prodml22__TestPeriod **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TestPeriod(struct soap*, prodml22__TestPeriod *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TestPeriod ** SOAP_FMAC4 soap_get_PointerToprodml22__TestPeriod(struct soap*, prodml22__TestPeriod **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TestPeriod(struct soap*, prodml23__TestPeriod *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TestPeriod(struct soap*, const char *, int, prodml23__TestPeriod *const*, const char *); +SOAP_FMAC3 prodml23__TestPeriod ** SOAP_FMAC4 soap_in_PointerToprodml23__TestPeriod(struct soap*, const char*, prodml23__TestPeriod **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TestPeriod(struct soap*, prodml23__TestPeriod *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TestPeriod ** SOAP_FMAC4 soap_get_PointerToprodml23__TestPeriod(struct soap*, prodml23__TestPeriod **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReferencePointKind_DEFINED @@ -236420,13 +236392,13 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__ReferencePointKind(struct soa SOAP_FMAC3 eml23__ReferencePointKind ** SOAP_FMAC4 soap_get_PointerToeml23__ReferencePointKind(struct soap*, eml23__ReferencePointKind **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__TimeSeriesPointRepresentation(struct soap*, prodml22__TimeSeriesPointRepresentation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__TimeSeriesPointRepresentation(struct soap*, const char *, int, prodml22__TimeSeriesPointRepresentation *const*, const char *); -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_in_PointerToprodml22__TimeSeriesPointRepresentation(struct soap*, const char*, prodml22__TimeSeriesPointRepresentation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__TimeSeriesPointRepresentation(struct soap*, prodml22__TimeSeriesPointRepresentation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_get_PointerToprodml22__TimeSeriesPointRepresentation(struct soap*, prodml22__TimeSeriesPointRepresentation **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__TimeSeriesPointRepresentation(struct soap*, prodml23__TimeSeriesPointRepresentation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__TimeSeriesPointRepresentation(struct soap*, const char *, int, prodml23__TimeSeriesPointRepresentation *const*, const char *); +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_in_PointerToprodml23__TimeSeriesPointRepresentation(struct soap*, const char*, prodml23__TimeSeriesPointRepresentation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__TimeSeriesPointRepresentation(struct soap*, prodml23__TimeSeriesPointRepresentation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__TimeSeriesPointRepresentation ** SOAP_FMAC4 soap_get_PointerToprodml23__TimeSeriesPointRepresentation(struct soap*, prodml23__TimeSeriesPointRepresentation **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt_DEFINED @@ -236438,31 +236410,31 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__AmountOfSubstancePerAmountOfS SOAP_FMAC3 eml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt(struct soap*, eml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OrganicAcidKindExt(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OrganicAcidKindExt(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__OrganicAcidKindExt(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OrganicAcidKindExt(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__OrganicAcidKindExt(struct soap*, std::string **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OrganicAcidKindExt(struct soap*, std::string *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OrganicAcidKindExt(struct soap*, const char *, int, std::string *const*, const char *); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__OrganicAcidKindExt(struct soap*, const char*, std::string **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OrganicAcidKindExt(struct soap*, std::string *const*, const char*, const char*); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__OrganicAcidKindExt(struct soap*, std::string **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CationKindExt(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CationKindExt(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__CationKindExt(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CationKindExt(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__CationKindExt(struct soap*, std::string **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CationKindExt(struct soap*, std::string *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CationKindExt(struct soap*, const char *, int, std::string *const*, const char *); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__CationKindExt(struct soap*, const char*, std::string **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CationKindExt(struct soap*, std::string *const*, const char*, const char*); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__CationKindExt(struct soap*, std::string **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AnionKindExt(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AnionKindExt(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__AnionKindExt(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AnionKindExt(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__AnionKindExt(struct soap*, std::string **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AnionKindExt(struct soap*, std::string *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AnionKindExt(struct soap*, const char *, int, std::string *const*, const char *); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__AnionKindExt(struct soap*, const char*, std::string **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AnionKindExt(struct soap*, std::string *const*, const char*, const char*); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__AnionKindExt(struct soap*, std::string **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyLengthPerTimeAreaTemperatureMeasure_DEFINED @@ -236537,13 +236509,13 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__ElectricalResistivityMeasureE SOAP_FMAC3 eml23__ElectricalResistivityMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__ElectricalResistivityMeasureExt(struct soap*, eml23__ElectricalResistivityMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__WaterAnalysisTestStep(struct soap*, prodml22__WaterAnalysisTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__WaterAnalysisTestStep(struct soap*, const char *, int, prodml22__WaterAnalysisTestStep *const*, const char *); -SOAP_FMAC3 prodml22__WaterAnalysisTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__WaterAnalysisTestStep(struct soap*, const char*, prodml22__WaterAnalysisTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__WaterAnalysisTestStep(struct soap*, prodml22__WaterAnalysisTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__WaterAnalysisTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__WaterAnalysisTestStep(struct soap*, prodml22__WaterAnalysisTestStep **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__WaterAnalysisTestStep(struct soap*, prodml23__WaterAnalysisTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__WaterAnalysisTestStep(struct soap*, const char *, int, prodml23__WaterAnalysisTestStep *const*, const char *); +SOAP_FMAC3 prodml23__WaterAnalysisTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__WaterAnalysisTestStep(struct soap*, const char*, prodml23__WaterAnalysisTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__WaterAnalysisTestStep(struct soap*, prodml23__WaterAnalysisTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__WaterAnalysisTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__WaterAnalysisTestStep(struct soap*, prodml23__WaterAnalysisTestStep **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MassPerMassMeasureExt_DEFINED @@ -236555,220 +236527,220 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__MassPerMassMeasureExt(struct SOAP_FMAC3 eml23__MassPerMassMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__MassPerMassMeasureExt(struct soap*, eml23__MassPerMassMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PhaseDensity(struct soap*, prodml22__PhaseDensity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PhaseDensity(struct soap*, const char *, int, prodml22__PhaseDensity *const*, const char *); -SOAP_FMAC3 prodml22__PhaseDensity ** SOAP_FMAC4 soap_in_PointerToprodml22__PhaseDensity(struct soap*, const char*, prodml22__PhaseDensity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PhaseDensity(struct soap*, prodml22__PhaseDensity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PhaseDensity ** SOAP_FMAC4 soap_get_PointerToprodml22__PhaseDensity(struct soap*, prodml22__PhaseDensity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PhaseViscosity(struct soap*, prodml22__PhaseViscosity *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PhaseViscosity(struct soap*, const char *, int, prodml22__PhaseViscosity *const*, const char *); -SOAP_FMAC3 prodml22__PhaseViscosity ** SOAP_FMAC4 soap_in_PointerToprodml22__PhaseViscosity(struct soap*, const char*, prodml22__PhaseViscosity **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PhaseViscosity(struct soap*, prodml22__PhaseViscosity *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PhaseViscosity ** SOAP_FMAC4 soap_get_PointerToprodml22__PhaseViscosity(struct soap*, prodml22__PhaseViscosity **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RefInjectedGasAdded(struct soap*, prodml22__RefInjectedGasAdded *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RefInjectedGasAdded(struct soap*, const char *, int, prodml22__RefInjectedGasAdded *const*, const char *); -SOAP_FMAC3 prodml22__RefInjectedGasAdded ** SOAP_FMAC4 soap_in_PointerToprodml22__RefInjectedGasAdded(struct soap*, const char*, prodml22__RefInjectedGasAdded **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RefInjectedGasAdded(struct soap*, prodml22__RefInjectedGasAdded *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RefInjectedGasAdded ** SOAP_FMAC4 soap_get_PointerToprodml22__RefInjectedGasAdded(struct soap*, prodml22__RefInjectedGasAdded **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SwellingTestStep(struct soap*, prodml22__SwellingTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SwellingTestStep(struct soap*, const char *, int, prodml22__SwellingTestStep *const*, const char *); -SOAP_FMAC3 prodml22__SwellingTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__SwellingTestStep(struct soap*, const char*, prodml22__SwellingTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SwellingTestStep(struct soap*, prodml22__SwellingTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SwellingTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__SwellingTestStep(struct soap*, prodml22__SwellingTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__Sara(struct soap*, prodml22__Sara *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__Sara(struct soap*, const char *, int, prodml22__Sara *const*, const char *); -SOAP_FMAC3 prodml22__Sara ** SOAP_FMAC4 soap_in_PointerToprodml22__Sara(struct soap*, const char*, prodml22__Sara **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__Sara(struct soap*, prodml22__Sara *const*, const char*, const char*); -SOAP_FMAC3 prodml22__Sara ** SOAP_FMAC4 soap_get_PointerToprodml22__Sara(struct soap*, prodml22__Sara **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ViscosityAtTemperature(struct soap*, prodml22__ViscosityAtTemperature *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ViscosityAtTemperature(struct soap*, const char *, int, prodml22__ViscosityAtTemperature *const*, const char *); -SOAP_FMAC3 prodml22__ViscosityAtTemperature ** SOAP_FMAC4 soap_in_PointerToprodml22__ViscosityAtTemperature(struct soap*, const char*, prodml22__ViscosityAtTemperature **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ViscosityAtTemperature(struct soap*, prodml22__ViscosityAtTemperature *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ViscosityAtTemperature ** SOAP_FMAC4 soap_get_PointerToprodml22__ViscosityAtTemperature(struct soap*, prodml22__ViscosityAtTemperature **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__STOFlashedLiquid(struct soap*, prodml22__STOFlashedLiquid *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__STOFlashedLiquid(struct soap*, const char *, int, prodml22__STOFlashedLiquid *const*, const char *); -SOAP_FMAC3 prodml22__STOFlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml22__STOFlashedLiquid(struct soap*, const char*, prodml22__STOFlashedLiquid **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__STOFlashedLiquid(struct soap*, prodml22__STOFlashedLiquid *const*, const char*, const char*); -SOAP_FMAC3 prodml22__STOFlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml22__STOFlashedLiquid(struct soap*, prodml22__STOFlashedLiquid **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MassBalance(struct soap*, prodml22__MassBalance *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MassBalance(struct soap*, const char *, int, prodml22__MassBalance *const*, const char *); -SOAP_FMAC3 prodml22__MassBalance ** SOAP_FMAC4 soap_in_PointerToprodml22__MassBalance(struct soap*, const char*, prodml22__MassBalance **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MassBalance(struct soap*, prodml22__MassBalance *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MassBalance ** SOAP_FMAC4 soap_get_PointerToprodml22__MassBalance(struct soap*, prodml22__MassBalance **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProducedOilProperties(struct soap*, prodml22__ProducedOilProperties *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProducedOilProperties(struct soap*, const char *, int, prodml22__ProducedOilProperties *const*, const char *); -SOAP_FMAC3 prodml22__ProducedOilProperties ** SOAP_FMAC4 soap_in_PointerToprodml22__ProducedOilProperties(struct soap*, const char*, prodml22__ProducedOilProperties **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProducedOilProperties(struct soap*, prodml22__ProducedOilProperties *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProducedOilProperties ** SOAP_FMAC4 soap_get_PointerToprodml22__ProducedOilProperties(struct soap*, prodml22__ProducedOilProperties **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProducedGasProperties(struct soap*, prodml22__ProducedGasProperties *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProducedGasProperties(struct soap*, const char *, int, prodml22__ProducedGasProperties *const*, const char *); -SOAP_FMAC3 prodml22__ProducedGasProperties ** SOAP_FMAC4 soap_in_PointerToprodml22__ProducedGasProperties(struct soap*, const char*, prodml22__ProducedGasProperties **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProducedGasProperties(struct soap*, prodml22__ProducedGasProperties *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProducedGasProperties ** SOAP_FMAC4 soap_get_PointerToprodml22__ProducedGasProperties(struct soap*, prodml22__ProducedGasProperties **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeTestVolumeStep(struct soap*, prodml22__SlimTubeTestVolumeStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeTestVolumeStep(struct soap*, const char *, int, prodml22__SlimTubeTestVolumeStep *const*, const char *); -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeTestVolumeStep(struct soap*, const char*, prodml22__SlimTubeTestVolumeStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeTestVolumeStep(struct soap*, prodml22__SlimTubeTestVolumeStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeTestVolumeStep(struct soap*, prodml22__SlimTubeTestVolumeStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeSpecification(struct soap*, prodml22__SlimTubeSpecification *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeSpecification(struct soap*, const char *, int, prodml22__SlimTubeSpecification *const*, const char *); -SOAP_FMAC3 prodml22__SlimTubeSpecification ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeSpecification(struct soap*, const char*, prodml22__SlimTubeSpecification **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeSpecification(struct soap*, prodml22__SlimTubeSpecification *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SlimTubeSpecification ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeSpecification(struct soap*, prodml22__SlimTubeSpecification **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SlimTubeTestStep(struct soap*, prodml22__SlimTubeTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SlimTubeTestStep(struct soap*, const char *, int, prodml22__SlimTubeTestStep *const*, const char *); -SOAP_FMAC3 prodml22__SlimTubeTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__SlimTubeTestStep(struct soap*, const char*, prodml22__SlimTubeTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SlimTubeTestStep(struct soap*, prodml22__SlimTubeTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SlimTubeTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__SlimTubeTestStep(struct soap*, prodml22__SlimTubeTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InjectedGas(struct soap*, prodml22__InjectedGas *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InjectedGas(struct soap*, const char *, int, prodml22__InjectedGas *const*, const char *); -SOAP_FMAC3 prodml22__InjectedGas ** SOAP_FMAC4 soap_in_PointerToprodml22__InjectedGas(struct soap*, const char*, prodml22__InjectedGas **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InjectedGas(struct soap*, prodml22__InjectedGas *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InjectedGas ** SOAP_FMAC4 soap_get_PointerToprodml22__InjectedGas(struct soap*, prodml22__InjectedGas **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SampleRestoration(struct soap*, prodml22__SampleRestoration *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SampleRestoration(struct soap*, const char *, int, prodml22__SampleRestoration *const*, const char *); -SOAP_FMAC3 prodml22__SampleRestoration ** SOAP_FMAC4 soap_in_PointerToprodml22__SampleRestoration(struct soap*, const char*, prodml22__SampleRestoration **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SampleRestoration(struct soap*, prodml22__SampleRestoration *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SampleRestoration ** SOAP_FMAC4 soap_get_PointerToprodml22__SampleRestoration(struct soap*, prodml22__SampleRestoration **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationTemperature(struct soap*, prodml22__SaturationTemperature *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationTemperature(struct soap*, const char *, int, prodml22__SaturationTemperature *const*, const char *); -SOAP_FMAC3 prodml22__SaturationTemperature ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationTemperature(struct soap*, const char*, prodml22__SaturationTemperature **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationTemperature(struct soap*, prodml22__SaturationTemperature *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SaturationTemperature ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationTemperature(struct soap*, prodml22__SaturationTemperature **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OtherMeasurementTestStep(struct soap*, prodml22__OtherMeasurementTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OtherMeasurementTestStep(struct soap*, const char *, int, prodml22__OtherMeasurementTestStep *const*, const char *); -SOAP_FMAC3 prodml22__OtherMeasurementTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__OtherMeasurementTestStep(struct soap*, const char*, prodml22__OtherMeasurementTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OtherMeasurementTestStep(struct soap*, prodml22__OtherMeasurementTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OtherMeasurementTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__OtherMeasurementTestStep(struct soap*, prodml22__OtherMeasurementTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap*, prodml22__FluidCharacterizationTableFormatSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap*, const char *, int, prodml22__FluidCharacterizationTableFormatSet *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap*, const char*, prodml22__FluidCharacterizationTableFormatSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap*, prodml22__FluidCharacterizationTableFormatSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableFormatSet(struct soap*, prodml22__FluidCharacterizationTableFormatSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MassOut(struct soap*, prodml22__MassOut *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MassOut(struct soap*, const char *, int, prodml22__MassOut *const*, const char *); -SOAP_FMAC3 prodml22__MassOut ** SOAP_FMAC4 soap_in_PointerToprodml22__MassOut(struct soap*, const char*, prodml22__MassOut **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MassOut(struct soap*, prodml22__MassOut *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MassOut ** SOAP_FMAC4 soap_get_PointerToprodml22__MassOut(struct soap*, prodml22__MassOut **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__MassIn(struct soap*, prodml22__MassIn *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__MassIn(struct soap*, const char *, int, prodml22__MassIn *const*, const char *); -SOAP_FMAC3 prodml22__MassIn ** SOAP_FMAC4 soap_in_PointerToprodml22__MassIn(struct soap*, const char*, prodml22__MassIn **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__MassIn(struct soap*, prodml22__MassIn *const*, const char*, const char*); -SOAP_FMAC3 prodml22__MassIn ** SOAP_FMAC4 soap_get_PointerToprodml22__MassIn(struct soap*, prodml22__MassIn **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__InterfacialTensionTestStep(struct soap*, prodml22__InterfacialTensionTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__InterfacialTensionTestStep(struct soap*, const char *, int, prodml22__InterfacialTensionTestStep *const*, const char *); -SOAP_FMAC3 prodml22__InterfacialTensionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__InterfacialTensionTestStep(struct soap*, const char*, prodml22__InterfacialTensionTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__InterfacialTensionTestStep(struct soap*, prodml22__InterfacialTensionTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__InterfacialTensionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__InterfacialTensionTestStep(struct soap*, prodml22__InterfacialTensionTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractFluidComponent(struct soap*, prodml22__AbstractFluidComponent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractFluidComponent(struct soap*, const char *, int, prodml22__AbstractFluidComponent *const*, const char *); -SOAP_FMAC3 prodml22__AbstractFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractFluidComponent(struct soap*, const char*, prodml22__AbstractFluidComponent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractFluidComponent(struct soap*, prodml22__AbstractFluidComponent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractFluidComponent(struct soap*, prodml22__AbstractFluidComponent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidSeparatorTestStep(struct soap*, prodml22__FluidSeparatorTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidSeparatorTestStep(struct soap*, const char *, int, prodml22__FluidSeparatorTestStep *const*, const char *); -SOAP_FMAC3 prodml22__FluidSeparatorTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidSeparatorTestStep(struct soap*, const char*, prodml22__FluidSeparatorTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidSeparatorTestStep(struct soap*, prodml22__FluidSeparatorTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidSeparatorTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidSeparatorTestStep(struct soap*, prodml22__FluidSeparatorTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportLocation(struct soap*, prodml22__ReportLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportLocation(struct soap*, const char *, int, prodml22__ReportLocation *const*, const char *); -SOAP_FMAC3 prodml22__ReportLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportLocation(struct soap*, const char*, prodml22__ReportLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportLocation(struct soap*, prodml22__ReportLocation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReportLocation ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportLocation(struct soap*, prodml22__ReportLocation **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PhaseDensity(struct soap*, prodml23__PhaseDensity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PhaseDensity(struct soap*, const char *, int, prodml23__PhaseDensity *const*, const char *); +SOAP_FMAC3 prodml23__PhaseDensity ** SOAP_FMAC4 soap_in_PointerToprodml23__PhaseDensity(struct soap*, const char*, prodml23__PhaseDensity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PhaseDensity(struct soap*, prodml23__PhaseDensity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PhaseDensity ** SOAP_FMAC4 soap_get_PointerToprodml23__PhaseDensity(struct soap*, prodml23__PhaseDensity **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PhaseViscosity(struct soap*, prodml23__PhaseViscosity *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PhaseViscosity(struct soap*, const char *, int, prodml23__PhaseViscosity *const*, const char *); +SOAP_FMAC3 prodml23__PhaseViscosity ** SOAP_FMAC4 soap_in_PointerToprodml23__PhaseViscosity(struct soap*, const char*, prodml23__PhaseViscosity **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PhaseViscosity(struct soap*, prodml23__PhaseViscosity *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PhaseViscosity ** SOAP_FMAC4 soap_get_PointerToprodml23__PhaseViscosity(struct soap*, prodml23__PhaseViscosity **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RefInjectedGasAdded(struct soap*, prodml23__RefInjectedGasAdded *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RefInjectedGasAdded(struct soap*, const char *, int, prodml23__RefInjectedGasAdded *const*, const char *); +SOAP_FMAC3 prodml23__RefInjectedGasAdded ** SOAP_FMAC4 soap_in_PointerToprodml23__RefInjectedGasAdded(struct soap*, const char*, prodml23__RefInjectedGasAdded **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RefInjectedGasAdded(struct soap*, prodml23__RefInjectedGasAdded *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RefInjectedGasAdded ** SOAP_FMAC4 soap_get_PointerToprodml23__RefInjectedGasAdded(struct soap*, prodml23__RefInjectedGasAdded **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SwellingTestStep(struct soap*, prodml23__SwellingTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SwellingTestStep(struct soap*, const char *, int, prodml23__SwellingTestStep *const*, const char *); +SOAP_FMAC3 prodml23__SwellingTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__SwellingTestStep(struct soap*, const char*, prodml23__SwellingTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SwellingTestStep(struct soap*, prodml23__SwellingTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SwellingTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__SwellingTestStep(struct soap*, prodml23__SwellingTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__Sara(struct soap*, prodml23__Sara *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__Sara(struct soap*, const char *, int, prodml23__Sara *const*, const char *); +SOAP_FMAC3 prodml23__Sara ** SOAP_FMAC4 soap_in_PointerToprodml23__Sara(struct soap*, const char*, prodml23__Sara **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__Sara(struct soap*, prodml23__Sara *const*, const char*, const char*); +SOAP_FMAC3 prodml23__Sara ** SOAP_FMAC4 soap_get_PointerToprodml23__Sara(struct soap*, prodml23__Sara **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ViscosityAtTemperature(struct soap*, prodml23__ViscosityAtTemperature *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ViscosityAtTemperature(struct soap*, const char *, int, prodml23__ViscosityAtTemperature *const*, const char *); +SOAP_FMAC3 prodml23__ViscosityAtTemperature ** SOAP_FMAC4 soap_in_PointerToprodml23__ViscosityAtTemperature(struct soap*, const char*, prodml23__ViscosityAtTemperature **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ViscosityAtTemperature(struct soap*, prodml23__ViscosityAtTemperature *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ViscosityAtTemperature ** SOAP_FMAC4 soap_get_PointerToprodml23__ViscosityAtTemperature(struct soap*, prodml23__ViscosityAtTemperature **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__STOFlashedLiquid(struct soap*, prodml23__STOFlashedLiquid *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__STOFlashedLiquid(struct soap*, const char *, int, prodml23__STOFlashedLiquid *const*, const char *); +SOAP_FMAC3 prodml23__STOFlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml23__STOFlashedLiquid(struct soap*, const char*, prodml23__STOFlashedLiquid **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__STOFlashedLiquid(struct soap*, prodml23__STOFlashedLiquid *const*, const char*, const char*); +SOAP_FMAC3 prodml23__STOFlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml23__STOFlashedLiquid(struct soap*, prodml23__STOFlashedLiquid **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MassBalance(struct soap*, prodml23__MassBalance *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MassBalance(struct soap*, const char *, int, prodml23__MassBalance *const*, const char *); +SOAP_FMAC3 prodml23__MassBalance ** SOAP_FMAC4 soap_in_PointerToprodml23__MassBalance(struct soap*, const char*, prodml23__MassBalance **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MassBalance(struct soap*, prodml23__MassBalance *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MassBalance ** SOAP_FMAC4 soap_get_PointerToprodml23__MassBalance(struct soap*, prodml23__MassBalance **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProducedOilProperties(struct soap*, prodml23__ProducedOilProperties *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProducedOilProperties(struct soap*, const char *, int, prodml23__ProducedOilProperties *const*, const char *); +SOAP_FMAC3 prodml23__ProducedOilProperties ** SOAP_FMAC4 soap_in_PointerToprodml23__ProducedOilProperties(struct soap*, const char*, prodml23__ProducedOilProperties **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProducedOilProperties(struct soap*, prodml23__ProducedOilProperties *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProducedOilProperties ** SOAP_FMAC4 soap_get_PointerToprodml23__ProducedOilProperties(struct soap*, prodml23__ProducedOilProperties **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProducedGasProperties(struct soap*, prodml23__ProducedGasProperties *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProducedGasProperties(struct soap*, const char *, int, prodml23__ProducedGasProperties *const*, const char *); +SOAP_FMAC3 prodml23__ProducedGasProperties ** SOAP_FMAC4 soap_in_PointerToprodml23__ProducedGasProperties(struct soap*, const char*, prodml23__ProducedGasProperties **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProducedGasProperties(struct soap*, prodml23__ProducedGasProperties *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProducedGasProperties ** SOAP_FMAC4 soap_get_PointerToprodml23__ProducedGasProperties(struct soap*, prodml23__ProducedGasProperties **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeTestVolumeStep(struct soap*, prodml23__SlimTubeTestVolumeStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeTestVolumeStep(struct soap*, const char *, int, prodml23__SlimTubeTestVolumeStep *const*, const char *); +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeTestVolumeStep(struct soap*, const char*, prodml23__SlimTubeTestVolumeStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeTestVolumeStep(struct soap*, prodml23__SlimTubeTestVolumeStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeTestVolumeStep ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeTestVolumeStep(struct soap*, prodml23__SlimTubeTestVolumeStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeSpecification(struct soap*, prodml23__SlimTubeSpecification *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeSpecification(struct soap*, const char *, int, prodml23__SlimTubeSpecification *const*, const char *); +SOAP_FMAC3 prodml23__SlimTubeSpecification ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeSpecification(struct soap*, const char*, prodml23__SlimTubeSpecification **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeSpecification(struct soap*, prodml23__SlimTubeSpecification *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeSpecification ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeSpecification(struct soap*, prodml23__SlimTubeSpecification **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SlimTubeTestStep(struct soap*, prodml23__SlimTubeTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SlimTubeTestStep(struct soap*, const char *, int, prodml23__SlimTubeTestStep *const*, const char *); +SOAP_FMAC3 prodml23__SlimTubeTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__SlimTubeTestStep(struct soap*, const char*, prodml23__SlimTubeTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SlimTubeTestStep(struct soap*, prodml23__SlimTubeTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SlimTubeTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__SlimTubeTestStep(struct soap*, prodml23__SlimTubeTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InjectedGas(struct soap*, prodml23__InjectedGas *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InjectedGas(struct soap*, const char *, int, prodml23__InjectedGas *const*, const char *); +SOAP_FMAC3 prodml23__InjectedGas ** SOAP_FMAC4 soap_in_PointerToprodml23__InjectedGas(struct soap*, const char*, prodml23__InjectedGas **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InjectedGas(struct soap*, prodml23__InjectedGas *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InjectedGas ** SOAP_FMAC4 soap_get_PointerToprodml23__InjectedGas(struct soap*, prodml23__InjectedGas **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SampleRestoration(struct soap*, prodml23__SampleRestoration *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SampleRestoration(struct soap*, const char *, int, prodml23__SampleRestoration *const*, const char *); +SOAP_FMAC3 prodml23__SampleRestoration ** SOAP_FMAC4 soap_in_PointerToprodml23__SampleRestoration(struct soap*, const char*, prodml23__SampleRestoration **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SampleRestoration(struct soap*, prodml23__SampleRestoration *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SampleRestoration ** SOAP_FMAC4 soap_get_PointerToprodml23__SampleRestoration(struct soap*, prodml23__SampleRestoration **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationTemperature(struct soap*, prodml23__SaturationTemperature *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationTemperature(struct soap*, const char *, int, prodml23__SaturationTemperature *const*, const char *); +SOAP_FMAC3 prodml23__SaturationTemperature ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationTemperature(struct soap*, const char*, prodml23__SaturationTemperature **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationTemperature(struct soap*, prodml23__SaturationTemperature *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationTemperature ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationTemperature(struct soap*, prodml23__SaturationTemperature **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OtherMeasurementTestStep(struct soap*, prodml23__OtherMeasurementTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OtherMeasurementTestStep(struct soap*, const char *, int, prodml23__OtherMeasurementTestStep *const*, const char *); +SOAP_FMAC3 prodml23__OtherMeasurementTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__OtherMeasurementTestStep(struct soap*, const char*, prodml23__OtherMeasurementTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OtherMeasurementTestStep(struct soap*, prodml23__OtherMeasurementTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OtherMeasurementTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__OtherMeasurementTestStep(struct soap*, prodml23__OtherMeasurementTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap*, prodml23__FluidCharacterizationTableFormatSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap*, const char *, int, prodml23__FluidCharacterizationTableFormatSet *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap*, const char*, prodml23__FluidCharacterizationTableFormatSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap*, prodml23__FluidCharacterizationTableFormatSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormatSet ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableFormatSet(struct soap*, prodml23__FluidCharacterizationTableFormatSet **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MassOut(struct soap*, prodml23__MassOut *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MassOut(struct soap*, const char *, int, prodml23__MassOut *const*, const char *); +SOAP_FMAC3 prodml23__MassOut ** SOAP_FMAC4 soap_in_PointerToprodml23__MassOut(struct soap*, const char*, prodml23__MassOut **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MassOut(struct soap*, prodml23__MassOut *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MassOut ** SOAP_FMAC4 soap_get_PointerToprodml23__MassOut(struct soap*, prodml23__MassOut **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__MassIn(struct soap*, prodml23__MassIn *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__MassIn(struct soap*, const char *, int, prodml23__MassIn *const*, const char *); +SOAP_FMAC3 prodml23__MassIn ** SOAP_FMAC4 soap_in_PointerToprodml23__MassIn(struct soap*, const char*, prodml23__MassIn **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__MassIn(struct soap*, prodml23__MassIn *const*, const char*, const char*); +SOAP_FMAC3 prodml23__MassIn ** SOAP_FMAC4 soap_get_PointerToprodml23__MassIn(struct soap*, prodml23__MassIn **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__InterfacialTensionTestStep(struct soap*, prodml23__InterfacialTensionTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__InterfacialTensionTestStep(struct soap*, const char *, int, prodml23__InterfacialTensionTestStep *const*, const char *); +SOAP_FMAC3 prodml23__InterfacialTensionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__InterfacialTensionTestStep(struct soap*, const char*, prodml23__InterfacialTensionTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__InterfacialTensionTestStep(struct soap*, prodml23__InterfacialTensionTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__InterfacialTensionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__InterfacialTensionTestStep(struct soap*, prodml23__InterfacialTensionTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractFluidComponent(struct soap*, prodml23__AbstractFluidComponent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractFluidComponent(struct soap*, const char *, int, prodml23__AbstractFluidComponent *const*, const char *); +SOAP_FMAC3 prodml23__AbstractFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractFluidComponent(struct soap*, const char*, prodml23__AbstractFluidComponent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractFluidComponent(struct soap*, prodml23__AbstractFluidComponent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractFluidComponent(struct soap*, prodml23__AbstractFluidComponent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidSeparatorTestStep(struct soap*, prodml23__FluidSeparatorTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidSeparatorTestStep(struct soap*, const char *, int, prodml23__FluidSeparatorTestStep *const*, const char *); +SOAP_FMAC3 prodml23__FluidSeparatorTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidSeparatorTestStep(struct soap*, const char*, prodml23__FluidSeparatorTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidSeparatorTestStep(struct soap*, prodml23__FluidSeparatorTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidSeparatorTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidSeparatorTestStep(struct soap*, prodml23__FluidSeparatorTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportLocation(struct soap*, prodml23__ReportLocation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportLocation(struct soap*, const char *, int, prodml23__ReportLocation *const*, const char *); +SOAP_FMAC3 prodml23__ReportLocation ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportLocation(struct soap*, const char*, prodml23__ReportLocation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportLocation(struct soap*, prodml23__ReportLocation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReportLocation ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportLocation(struct soap*, prodml23__ReportLocation **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__EnergyPerVolumeMeasureExt_DEFINED @@ -236789,139 +236761,139 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__EnergyPerMassMeasureExt(struc SOAP_FMAC3 eml23__EnergyPerMassMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__EnergyPerMassMeasureExt(struct soap*, eml23__EnergyPerMassMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, prodml22__FluidDifferentialLiberationTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, const char *, int, prodml22__FluidDifferentialLiberationTestStep *const*, const char *); -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, const char*, prodml22__FluidDifferentialLiberationTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, prodml22__FluidDifferentialLiberationTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, prodml22__FluidDifferentialLiberationTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SeparatorConditions(struct soap*, prodml22__SeparatorConditions *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SeparatorConditions(struct soap*, const char *, int, prodml22__SeparatorConditions *const*, const char *); -SOAP_FMAC3 prodml22__SeparatorConditions ** SOAP_FMAC4 soap_in_PointerToprodml22__SeparatorConditions(struct soap*, const char*, prodml22__SeparatorConditions **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SeparatorConditions(struct soap*, prodml22__SeparatorConditions *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SeparatorConditions ** SOAP_FMAC4 soap_get_PointerToprodml22__SeparatorConditions(struct soap*, prodml22__SeparatorConditions **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCvdTestStep(struct soap*, prodml22__FluidCvdTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCvdTestStep(struct soap*, const char *, int, prodml22__FluidCvdTestStep *const*, const char *); -SOAP_FMAC3 prodml22__FluidCvdTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCvdTestStep(struct soap*, const char*, prodml22__FluidCvdTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCvdTestStep(struct soap*, prodml22__FluidCvdTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCvdTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCvdTestStep(struct soap*, prodml22__FluidCvdTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__LiquidComposition(struct soap*, prodml22__LiquidComposition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__LiquidComposition(struct soap*, const char *, int, prodml22__LiquidComposition *const*, const char *); -SOAP_FMAC3 prodml22__LiquidComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__LiquidComposition(struct soap*, const char*, prodml22__LiquidComposition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__LiquidComposition(struct soap*, prodml22__LiquidComposition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__LiquidComposition ** SOAP_FMAC4 soap_get_PointerToprodml22__LiquidComposition(struct soap*, prodml22__LiquidComposition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__VaporComposition(struct soap*, prodml22__VaporComposition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__VaporComposition(struct soap*, const char *, int, prodml22__VaporComposition *const*, const char *); -SOAP_FMAC3 prodml22__VaporComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__VaporComposition(struct soap*, const char*, prodml22__VaporComposition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__VaporComposition(struct soap*, prodml22__VaporComposition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__VaporComposition ** SOAP_FMAC4 soap_get_PointerToprodml22__VaporComposition(struct soap*, prodml22__VaporComposition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PhasePresent(struct soap*, prodml22__PhasePresent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PhasePresent(struct soap*, const char *, int, prodml22__PhasePresent *const*, const char *); -SOAP_FMAC3 prodml22__PhasePresent ** SOAP_FMAC4 soap_in_PointerToprodml22__PhasePresent(struct soap*, const char*, prodml22__PhasePresent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PhasePresent(struct soap*, prodml22__PhasePresent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PhasePresent ** SOAP_FMAC4 soap_get_PointerToprodml22__PhasePresent(struct soap*, prodml22__PhasePresent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidAnalysisStepCondition(struct soap*, prodml22__FluidAnalysisStepCondition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidAnalysisStepCondition(struct soap*, const char *, int, prodml22__FluidAnalysisStepCondition *const*, const char *); -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidAnalysisStepCondition(struct soap*, const char*, prodml22__FluidAnalysisStepCondition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidAnalysisStepCondition(struct soap*, prodml22__FluidAnalysisStepCondition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidAnalysisStepCondition(struct soap*, prodml22__FluidAnalysisStepCondition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OilCompressibility(struct soap*, prodml22__OilCompressibility *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OilCompressibility(struct soap*, const char *, int, prodml22__OilCompressibility *const*, const char *); -SOAP_FMAC3 prodml22__OilCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml22__OilCompressibility(struct soap*, const char*, prodml22__OilCompressibility **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OilCompressibility(struct soap*, prodml22__OilCompressibility *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OilCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml22__OilCompressibility(struct soap*, prodml22__OilCompressibility **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__RelativeVolumeRatio(struct soap*, prodml22__RelativeVolumeRatio *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__RelativeVolumeRatio(struct soap*, const char *, int, prodml22__RelativeVolumeRatio *const*, const char *); -SOAP_FMAC3 prodml22__RelativeVolumeRatio ** SOAP_FMAC4 soap_in_PointerToprodml22__RelativeVolumeRatio(struct soap*, const char*, prodml22__RelativeVolumeRatio **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__RelativeVolumeRatio(struct soap*, prodml22__RelativeVolumeRatio *const*, const char*, const char*); -SOAP_FMAC3 prodml22__RelativeVolumeRatio ** SOAP_FMAC4 soap_get_PointerToprodml22__RelativeVolumeRatio(struct soap*, prodml22__RelativeVolumeRatio **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, prodml22__ConstantCompositionExpansionTestStep *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, const char *, int, prodml22__ConstantCompositionExpansionTestStep *const*, const char *); -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, const char*, prodml22__ConstantCompositionExpansionTestStep **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, prodml22__ConstantCompositionExpansionTestStep *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, prodml22__ConstantCompositionExpansionTestStep **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidVolumeReference(struct soap*, prodml22__FluidVolumeReference *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidVolumeReference(struct soap*, const char *, int, prodml22__FluidVolumeReference *const*, const char *); -SOAP_FMAC3 prodml22__FluidVolumeReference ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidVolumeReference(struct soap*, const char*, prodml22__FluidVolumeReference **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidVolumeReference(struct soap*, prodml22__FluidVolumeReference *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidVolumeReference ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidVolumeReference(struct soap*, prodml22__FluidVolumeReference **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SaturationPressure(struct soap*, prodml22__SaturationPressure *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SaturationPressure(struct soap*, const char *, int, prodml22__SaturationPressure *const*, const char *); -SOAP_FMAC3 prodml22__SaturationPressure ** SOAP_FMAC4 soap_in_PointerToprodml22__SaturationPressure(struct soap*, const char*, prodml22__SaturationPressure **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SaturationPressure(struct soap*, prodml22__SaturationPressure *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SaturationPressure ** SOAP_FMAC4 soap_get_PointerToprodml22__SaturationPressure(struct soap*, prodml22__SaturationPressure **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlashedGas(struct soap*, prodml22__FlashedGas *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlashedGas(struct soap*, const char *, int, prodml22__FlashedGas *const*, const char *); -SOAP_FMAC3 prodml22__FlashedGas ** SOAP_FMAC4 soap_in_PointerToprodml22__FlashedGas(struct soap*, const char*, prodml22__FlashedGas **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlashedGas(struct soap*, prodml22__FlashedGas *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FlashedGas ** SOAP_FMAC4 soap_get_PointerToprodml22__FlashedGas(struct soap*, prodml22__FlashedGas **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OverallComposition(struct soap*, prodml22__OverallComposition *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OverallComposition(struct soap*, const char *, int, prodml22__OverallComposition *const*, const char *); -SOAP_FMAC3 prodml22__OverallComposition ** SOAP_FMAC4 soap_in_PointerToprodml22__OverallComposition(struct soap*, const char*, prodml22__OverallComposition **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OverallComposition(struct soap*, prodml22__OverallComposition *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OverallComposition ** SOAP_FMAC4 soap_get_PointerToprodml22__OverallComposition(struct soap*, prodml22__OverallComposition **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FlashedLiquid(struct soap*, prodml22__FlashedLiquid *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FlashedLiquid(struct soap*, const char *, int, prodml22__FlashedLiquid *const*, const char *); -SOAP_FMAC3 prodml22__FlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml22__FlashedLiquid(struct soap*, const char*, prodml22__FlashedLiquid **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FlashedLiquid(struct soap*, prodml22__FlashedLiquid *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml22__FlashedLiquid(struct soap*, prodml22__FlashedLiquid **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, prodml23__FluidDifferentialLiberationTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, const char *, int, prodml23__FluidDifferentialLiberationTestStep *const*, const char *); +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, const char*, prodml23__FluidDifferentialLiberationTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, prodml23__FluidDifferentialLiberationTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidDifferentialLiberationTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, prodml23__FluidDifferentialLiberationTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SeparatorConditions(struct soap*, prodml23__SeparatorConditions *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SeparatorConditions(struct soap*, const char *, int, prodml23__SeparatorConditions *const*, const char *); +SOAP_FMAC3 prodml23__SeparatorConditions ** SOAP_FMAC4 soap_in_PointerToprodml23__SeparatorConditions(struct soap*, const char*, prodml23__SeparatorConditions **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SeparatorConditions(struct soap*, prodml23__SeparatorConditions *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SeparatorConditions ** SOAP_FMAC4 soap_get_PointerToprodml23__SeparatorConditions(struct soap*, prodml23__SeparatorConditions **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCvdTestStep(struct soap*, prodml23__FluidCvdTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCvdTestStep(struct soap*, const char *, int, prodml23__FluidCvdTestStep *const*, const char *); +SOAP_FMAC3 prodml23__FluidCvdTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCvdTestStep(struct soap*, const char*, prodml23__FluidCvdTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCvdTestStep(struct soap*, prodml23__FluidCvdTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCvdTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCvdTestStep(struct soap*, prodml23__FluidCvdTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__LiquidComposition(struct soap*, prodml23__LiquidComposition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__LiquidComposition(struct soap*, const char *, int, prodml23__LiquidComposition *const*, const char *); +SOAP_FMAC3 prodml23__LiquidComposition ** SOAP_FMAC4 soap_in_PointerToprodml23__LiquidComposition(struct soap*, const char*, prodml23__LiquidComposition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__LiquidComposition(struct soap*, prodml23__LiquidComposition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__LiquidComposition ** SOAP_FMAC4 soap_get_PointerToprodml23__LiquidComposition(struct soap*, prodml23__LiquidComposition **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__VaporComposition(struct soap*, prodml23__VaporComposition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__VaporComposition(struct soap*, const char *, int, prodml23__VaporComposition *const*, const char *); +SOAP_FMAC3 prodml23__VaporComposition ** SOAP_FMAC4 soap_in_PointerToprodml23__VaporComposition(struct soap*, const char*, prodml23__VaporComposition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__VaporComposition(struct soap*, prodml23__VaporComposition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__VaporComposition ** SOAP_FMAC4 soap_get_PointerToprodml23__VaporComposition(struct soap*, prodml23__VaporComposition **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PhasePresent(struct soap*, prodml23__PhasePresent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PhasePresent(struct soap*, const char *, int, prodml23__PhasePresent *const*, const char *); +SOAP_FMAC3 prodml23__PhasePresent ** SOAP_FMAC4 soap_in_PointerToprodml23__PhasePresent(struct soap*, const char*, prodml23__PhasePresent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PhasePresent(struct soap*, prodml23__PhasePresent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PhasePresent ** SOAP_FMAC4 soap_get_PointerToprodml23__PhasePresent(struct soap*, prodml23__PhasePresent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidAnalysisStepCondition(struct soap*, prodml23__FluidAnalysisStepCondition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidAnalysisStepCondition(struct soap*, const char *, int, prodml23__FluidAnalysisStepCondition *const*, const char *); +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidAnalysisStepCondition(struct soap*, const char*, prodml23__FluidAnalysisStepCondition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidAnalysisStepCondition(struct soap*, prodml23__FluidAnalysisStepCondition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidAnalysisStepCondition ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidAnalysisStepCondition(struct soap*, prodml23__FluidAnalysisStepCondition **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OilCompressibility(struct soap*, prodml23__OilCompressibility *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OilCompressibility(struct soap*, const char *, int, prodml23__OilCompressibility *const*, const char *); +SOAP_FMAC3 prodml23__OilCompressibility ** SOAP_FMAC4 soap_in_PointerToprodml23__OilCompressibility(struct soap*, const char*, prodml23__OilCompressibility **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OilCompressibility(struct soap*, prodml23__OilCompressibility *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OilCompressibility ** SOAP_FMAC4 soap_get_PointerToprodml23__OilCompressibility(struct soap*, prodml23__OilCompressibility **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__RelativeVolumeRatio(struct soap*, prodml23__RelativeVolumeRatio *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__RelativeVolumeRatio(struct soap*, const char *, int, prodml23__RelativeVolumeRatio *const*, const char *); +SOAP_FMAC3 prodml23__RelativeVolumeRatio ** SOAP_FMAC4 soap_in_PointerToprodml23__RelativeVolumeRatio(struct soap*, const char*, prodml23__RelativeVolumeRatio **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__RelativeVolumeRatio(struct soap*, prodml23__RelativeVolumeRatio *const*, const char*, const char*); +SOAP_FMAC3 prodml23__RelativeVolumeRatio ** SOAP_FMAC4 soap_get_PointerToprodml23__RelativeVolumeRatio(struct soap*, prodml23__RelativeVolumeRatio **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, prodml23__ConstantCompositionExpansionTestStep *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, const char *, int, prodml23__ConstantCompositionExpansionTestStep *const*, const char *); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_in_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, const char*, prodml23__ConstantCompositionExpansionTestStep **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, prodml23__ConstantCompositionExpansionTestStep *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ConstantCompositionExpansionTestStep ** SOAP_FMAC4 soap_get_PointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, prodml23__ConstantCompositionExpansionTestStep **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidVolumeReference(struct soap*, prodml23__FluidVolumeReference *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidVolumeReference(struct soap*, const char *, int, prodml23__FluidVolumeReference *const*, const char *); +SOAP_FMAC3 prodml23__FluidVolumeReference ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidVolumeReference(struct soap*, const char*, prodml23__FluidVolumeReference **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidVolumeReference(struct soap*, prodml23__FluidVolumeReference *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidVolumeReference ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidVolumeReference(struct soap*, prodml23__FluidVolumeReference **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SaturationPressure(struct soap*, prodml23__SaturationPressure *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SaturationPressure(struct soap*, const char *, int, prodml23__SaturationPressure *const*, const char *); +SOAP_FMAC3 prodml23__SaturationPressure ** SOAP_FMAC4 soap_in_PointerToprodml23__SaturationPressure(struct soap*, const char*, prodml23__SaturationPressure **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SaturationPressure(struct soap*, prodml23__SaturationPressure *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SaturationPressure ** SOAP_FMAC4 soap_get_PointerToprodml23__SaturationPressure(struct soap*, prodml23__SaturationPressure **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlashedGas(struct soap*, prodml23__FlashedGas *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlashedGas(struct soap*, const char *, int, prodml23__FlashedGas *const*, const char *); +SOAP_FMAC3 prodml23__FlashedGas ** SOAP_FMAC4 soap_in_PointerToprodml23__FlashedGas(struct soap*, const char*, prodml23__FlashedGas **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlashedGas(struct soap*, prodml23__FlashedGas *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FlashedGas ** SOAP_FMAC4 soap_get_PointerToprodml23__FlashedGas(struct soap*, prodml23__FlashedGas **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OverallComposition(struct soap*, prodml23__OverallComposition *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OverallComposition(struct soap*, const char *, int, prodml23__OverallComposition *const*, const char *); +SOAP_FMAC3 prodml23__OverallComposition ** SOAP_FMAC4 soap_in_PointerToprodml23__OverallComposition(struct soap*, const char*, prodml23__OverallComposition **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OverallComposition(struct soap*, prodml23__OverallComposition *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OverallComposition ** SOAP_FMAC4 soap_get_PointerToprodml23__OverallComposition(struct soap*, prodml23__OverallComposition **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FlashedLiquid(struct soap*, prodml23__FlashedLiquid *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FlashedLiquid(struct soap*, const char *, int, prodml23__FlashedLiquid *const*, const char *); +SOAP_FMAC3 prodml23__FlashedLiquid ** SOAP_FMAC4 soap_in_PointerToprodml23__FlashedLiquid(struct soap*, const char*, prodml23__FlashedLiquid **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FlashedLiquid(struct soap*, prodml23__FlashedLiquid *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FlashedLiquid ** SOAP_FMAC4 soap_get_PointerToprodml23__FlashedLiquid(struct soap*, prodml23__FlashedLiquid **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__MolecularWeightMeasure_DEFINED @@ -236933,67 +236905,67 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__MolecularWeightMeasure(struct SOAP_FMAC3 eml23__MolecularWeightMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__MolecularWeightMeasure(struct soap*, eml23__MolecularWeightMeasure **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowUnit(struct soap*, prodml22__ProductFlowUnit *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowUnit(struct soap*, const char *, int, prodml22__ProductFlowUnit *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowUnit(struct soap*, const char*, prodml22__ProductFlowUnit **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowUnit(struct soap*, prodml22__ProductFlowUnit *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowUnit ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowUnit(struct soap*, prodml22__ProductFlowUnit **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowUnit(struct soap*, prodml23__ProductFlowUnit *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowUnit(struct soap*, const char *, int, prodml23__ProductFlowUnit *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowUnit ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowUnit(struct soap*, const char*, prodml23__ProductFlowUnit **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowUnit(struct soap*, prodml23__ProductFlowUnit *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowUnit ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowUnit(struct soap*, prodml23__ProductFlowUnit **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowChangeLog(struct soap*, prodml22__ProductFlowChangeLog *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowChangeLog(struct soap*, const char *, int, prodml22__ProductFlowChangeLog *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowChangeLog ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowChangeLog(struct soap*, const char*, prodml22__ProductFlowChangeLog **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowChangeLog(struct soap*, prodml22__ProductFlowChangeLog *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowChangeLog ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowChangeLog(struct soap*, prodml22__ProductFlowChangeLog **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowChangeLog(struct soap*, prodml23__ProductFlowChangeLog *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowChangeLog(struct soap*, const char *, int, prodml23__ProductFlowChangeLog *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowChangeLog ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowChangeLog(struct soap*, const char*, prodml23__ProductFlowChangeLog **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowChangeLog(struct soap*, prodml23__ProductFlowChangeLog *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowChangeLog ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowChangeLog(struct soap*, prodml23__ProductFlowChangeLog **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowNetworkPlan(struct soap*, prodml22__ProductFlowNetworkPlan *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowNetworkPlan(struct soap*, const char *, int, prodml22__ProductFlowNetworkPlan *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowNetworkPlan(struct soap*, const char*, prodml22__ProductFlowNetworkPlan **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowNetworkPlan(struct soap*, prodml22__ProductFlowNetworkPlan *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowNetworkPlan(struct soap*, prodml22__ProductFlowNetworkPlan **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowNetworkPlan(struct soap*, prodml23__ProductFlowNetworkPlan *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowNetworkPlan(struct soap*, const char *, int, prodml23__ProductFlowNetworkPlan *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowNetworkPlan(struct soap*, const char*, prodml23__ProductFlowNetworkPlan **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowNetworkPlan(struct soap*, prodml23__ProductFlowNetworkPlan *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowNetworkPlan ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowNetworkPlan(struct soap*, prodml23__ProductFlowNetworkPlan **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductFlowExternalPort(struct soap*, prodml22__ProductFlowExternalPort *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductFlowExternalPort(struct soap*, const char *, int, prodml22__ProductFlowExternalPort *const*, const char *); -SOAP_FMAC3 prodml22__ProductFlowExternalPort ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductFlowExternalPort(struct soap*, const char*, prodml22__ProductFlowExternalPort **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductFlowExternalPort(struct soap*, prodml22__ProductFlowExternalPort *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductFlowExternalPort ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductFlowExternalPort(struct soap*, prodml22__ProductFlowExternalPort **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductFlowExternalPort(struct soap*, prodml23__ProductFlowExternalPort *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductFlowExternalPort(struct soap*, const char *, int, prodml23__ProductFlowExternalPort *const*, const char *); +SOAP_FMAC3 prodml23__ProductFlowExternalPort ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductFlowExternalPort(struct soap*, const char*, prodml23__ProductFlowExternalPort **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductFlowExternalPort(struct soap*, prodml23__ProductFlowExternalPort *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductFlowExternalPort ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductFlowExternalPort(struct soap*, prodml23__ProductFlowExternalPort **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NorthSeaOffshore(struct soap*, prodml22__NorthSeaOffshore *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NorthSeaOffshore(struct soap*, const char *, int, prodml22__NorthSeaOffshore *const*, const char *); -SOAP_FMAC3 prodml22__NorthSeaOffshore ** SOAP_FMAC4 soap_in_PointerToprodml22__NorthSeaOffshore(struct soap*, const char*, prodml22__NorthSeaOffshore **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NorthSeaOffshore(struct soap*, prodml22__NorthSeaOffshore *const*, const char*, const char*); -SOAP_FMAC3 prodml22__NorthSeaOffshore ** SOAP_FMAC4 soap_get_PointerToprodml22__NorthSeaOffshore(struct soap*, prodml22__NorthSeaOffshore **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NorthSeaOffshore(struct soap*, prodml23__NorthSeaOffshore *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NorthSeaOffshore(struct soap*, const char *, int, prodml23__NorthSeaOffshore *const*, const char *); +SOAP_FMAC3 prodml23__NorthSeaOffshore ** SOAP_FMAC4 soap_in_PointerToprodml23__NorthSeaOffshore(struct soap*, const char*, prodml23__NorthSeaOffshore **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NorthSeaOffshore(struct soap*, prodml23__NorthSeaOffshore *const*, const char*, const char*); +SOAP_FMAC3 prodml23__NorthSeaOffshore ** SOAP_FMAC4 soap_get_PointerToprodml23__NorthSeaOffshore(struct soap*, prodml23__NorthSeaOffshore **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidComponentFraction(struct soap*, prodml22__FluidComponentFraction *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidComponentFraction(struct soap*, const char *, int, prodml22__FluidComponentFraction *const*, const char *); -SOAP_FMAC3 prodml22__FluidComponentFraction ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidComponentFraction(struct soap*, const char*, prodml22__FluidComponentFraction **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidComponentFraction(struct soap*, prodml22__FluidComponentFraction *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidComponentFraction ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidComponentFraction(struct soap*, prodml22__FluidComponentFraction **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidComponentFraction(struct soap*, prodml23__FluidComponentFraction *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidComponentFraction(struct soap*, const char *, int, prodml23__FluidComponentFraction *const*, const char *); +SOAP_FMAC3 prodml23__FluidComponentFraction ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidComponentFraction(struct soap*, const char*, prodml23__FluidComponentFraction **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidComponentFraction(struct soap*, prodml23__FluidComponentFraction *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentFraction ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidComponentFraction(struct soap*, prodml23__FluidComponentFraction **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__OffshoreLocation(struct soap*, prodml22__OffshoreLocation *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__OffshoreLocation(struct soap*, const char *, int, prodml22__OffshoreLocation *const*, const char *); -SOAP_FMAC3 prodml22__OffshoreLocation ** SOAP_FMAC4 soap_in_PointerToprodml22__OffshoreLocation(struct soap*, const char*, prodml22__OffshoreLocation **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__OffshoreLocation(struct soap*, prodml22__OffshoreLocation *const*, const char*, const char*); -SOAP_FMAC3 prodml22__OffshoreLocation ** SOAP_FMAC4 soap_get_PointerToprodml22__OffshoreLocation(struct soap*, prodml22__OffshoreLocation **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__OffshoreLocation(struct soap*, prodml23__OffshoreLocation *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__OffshoreLocation(struct soap*, const char *, int, prodml23__OffshoreLocation *const*, const char *); +SOAP_FMAC3 prodml23__OffshoreLocation ** SOAP_FMAC4 soap_in_PointerToprodml23__OffshoreLocation(struct soap*, const char*, prodml23__OffshoreLocation **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__OffshoreLocation(struct soap*, prodml23__OffshoreLocation *const*, const char*, const char*); +SOAP_FMAC3 prodml23__OffshoreLocation ** SOAP_FMAC4 soap_get_PointerToprodml23__OffshoreLocation(struct soap*, prodml23__OffshoreLocation **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__VolumePerVolumeMeasureExt_DEFINED @@ -237005,112 +236977,112 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__VolumePerVolumeMeasureExt(str SOAP_FMAC3 eml23__VolumePerVolumeMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__VolumePerVolumeMeasureExt(struct soap*, eml23__VolumePerVolumeMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__SulfurFluidComponent(struct soap*, prodml22__SulfurFluidComponent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__SulfurFluidComponent(struct soap*, const char *, int, prodml22__SulfurFluidComponent *const*, const char *); -SOAP_FMAC3 prodml22__SulfurFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__SulfurFluidComponent(struct soap*, const char*, prodml22__SulfurFluidComponent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__SulfurFluidComponent(struct soap*, prodml22__SulfurFluidComponent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__SulfurFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__SulfurFluidComponent(struct soap*, prodml22__SulfurFluidComponent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PlusFluidComponent(struct soap*, prodml22__PlusFluidComponent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PlusFluidComponent(struct soap*, const char *, int, prodml22__PlusFluidComponent *const*, const char *); -SOAP_FMAC3 prodml22__PlusFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__PlusFluidComponent(struct soap*, const char*, prodml22__PlusFluidComponent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PlusFluidComponent(struct soap*, prodml22__PlusFluidComponent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PlusFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__PlusFluidComponent(struct soap*, prodml22__PlusFluidComponent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PseudoFluidComponent(struct soap*, prodml22__PseudoFluidComponent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PseudoFluidComponent(struct soap*, const char *, int, prodml22__PseudoFluidComponent *const*, const char *); -SOAP_FMAC3 prodml22__PseudoFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__PseudoFluidComponent(struct soap*, const char*, prodml22__PseudoFluidComponent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PseudoFluidComponent(struct soap*, prodml22__PseudoFluidComponent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PseudoFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__PseudoFluidComponent(struct soap*, prodml22__PseudoFluidComponent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PureFluidComponent(struct soap*, prodml22__PureFluidComponent *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PureFluidComponent(struct soap*, const char *, int, prodml22__PureFluidComponent *const*, const char *); -SOAP_FMAC3 prodml22__PureFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml22__PureFluidComponent(struct soap*, const char*, prodml22__PureFluidComponent **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PureFluidComponent(struct soap*, prodml22__PureFluidComponent *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PureFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml22__PureFluidComponent(struct soap*, prodml22__PureFluidComponent **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FormationWater(struct soap*, prodml22__FormationWater *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FormationWater(struct soap*, const char *, int, prodml22__FormationWater *const*, const char *); -SOAP_FMAC3 prodml22__FormationWater ** SOAP_FMAC4 soap_in_PointerToprodml22__FormationWater(struct soap*, const char*, prodml22__FormationWater **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FormationWater(struct soap*, prodml22__FormationWater *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FormationWater ** SOAP_FMAC4 soap_get_PointerToprodml22__FormationWater(struct soap*, prodml22__FormationWater **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__NaturalGas(struct soap*, prodml22__NaturalGas *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__NaturalGas(struct soap*, const char *, int, prodml22__NaturalGas *const*, const char *); -SOAP_FMAC3 prodml22__NaturalGas ** SOAP_FMAC4 soap_in_PointerToprodml22__NaturalGas(struct soap*, const char*, prodml22__NaturalGas **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__NaturalGas(struct soap*, prodml22__NaturalGas *const*, const char*, const char*); -SOAP_FMAC3 prodml22__NaturalGas ** SOAP_FMAC4 soap_get_PointerToprodml22__NaturalGas(struct soap*, prodml22__NaturalGas **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__StockTankOil(struct soap*, prodml22__StockTankOil *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__StockTankOil(struct soap*, const char *, int, prodml22__StockTankOil *const*, const char *); -SOAP_FMAC3 prodml22__StockTankOil ** SOAP_FMAC4 soap_in_PointerToprodml22__StockTankOil(struct soap*, const char*, prodml22__StockTankOil **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__StockTankOil(struct soap*, prodml22__StockTankOil *const*, const char*, const char*); -SOAP_FMAC3 prodml22__StockTankOil ** SOAP_FMAC4 soap_get_PointerToprodml22__StockTankOil(struct soap*, prodml22__StockTankOil **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReportingFacility(struct soap*, prodml22__ReportingFacility *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReportingFacility(struct soap*, const char *, int, prodml22__ReportingFacility *const*, const char *); -SOAP_FMAC3 prodml22__ReportingFacility ** SOAP_FMAC4 soap_in_PointerToprodml22__ReportingFacility(struct soap*, const char*, prodml22__ReportingFacility **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReportingFacility(struct soap*, prodml22__ReportingFacility *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReportingFacility ** SOAP_FMAC4 soap_get_PointerToprodml22__ReportingFacility(struct soap*, prodml22__ReportingFacility **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__GeographicContext(struct soap*, prodml22__GeographicContext *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__GeographicContext(struct soap*, const char *, int, prodml22__GeographicContext *const*, const char *); -SOAP_FMAC3 prodml22__GeographicContext ** SOAP_FMAC4 soap_in_PointerToprodml22__GeographicContext(struct soap*, const char*, prodml22__GeographicContext **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__GeographicContext(struct soap*, prodml22__GeographicContext *const*, const char*, const char*); -SOAP_FMAC3 prodml22__GeographicContext ** SOAP_FMAC4 soap_get_PointerToprodml22__GeographicContext(struct soap*, prodml22__GeographicContext **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ProductVolumeBusinessUnit(struct soap*, prodml22__ProductVolumeBusinessUnit *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ProductVolumeBusinessUnit(struct soap*, const char *, int, prodml22__ProductVolumeBusinessUnit *const*, const char *); -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_in_PointerToprodml22__ProductVolumeBusinessUnit(struct soap*, const char*, prodml22__ProductVolumeBusinessUnit **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ProductVolumeBusinessUnit(struct soap*, prodml22__ProductVolumeBusinessUnit *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_get_PointerToprodml22__ProductVolumeBusinessUnit(struct soap*, prodml22__ProductVolumeBusinessUnit **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FacilityIdentifierStruct(struct soap*, prodml22__FacilityIdentifierStruct *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FacilityIdentifierStruct(struct soap*, const char *, int, prodml22__FacilityIdentifierStruct *const*, const char *); -SOAP_FMAC3 prodml22__FacilityIdentifierStruct ** SOAP_FMAC4 soap_in_PointerToprodml22__FacilityIdentifierStruct(struct soap*, const char*, prodml22__FacilityIdentifierStruct **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FacilityIdentifierStruct(struct soap*, prodml22__FacilityIdentifierStruct *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FacilityIdentifierStruct ** SOAP_FMAC4 soap_get_PointerToprodml22__FacilityIdentifierStruct(struct soap*, prodml22__FacilityIdentifierStruct **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__EndpointQualifier(struct soap*, prodml22__EndpointQualifier *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__EndpointQualifier(struct soap*, const char *, int, prodml22__EndpointQualifier *const*, const char *); -SOAP_FMAC3 prodml22__EndpointQualifier ** SOAP_FMAC4 soap_in_PointerToprodml22__EndpointQualifier(struct soap*, const char*, prodml22__EndpointQualifier **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__EndpointQualifier(struct soap*, prodml22__EndpointQualifier *const*, const char*, const char*); -SOAP_FMAC3 prodml22__EndpointQualifier ** SOAP_FMAC4 soap_get_PointerToprodml22__EndpointQualifier(struct soap*, prodml22__EndpointQualifier **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__SulfurFluidComponent(struct soap*, prodml23__SulfurFluidComponent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__SulfurFluidComponent(struct soap*, const char *, int, prodml23__SulfurFluidComponent *const*, const char *); +SOAP_FMAC3 prodml23__SulfurFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__SulfurFluidComponent(struct soap*, const char*, prodml23__SulfurFluidComponent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__SulfurFluidComponent(struct soap*, prodml23__SulfurFluidComponent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__SulfurFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__SulfurFluidComponent(struct soap*, prodml23__SulfurFluidComponent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PlusFluidComponent(struct soap*, prodml23__PlusFluidComponent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PlusFluidComponent(struct soap*, const char *, int, prodml23__PlusFluidComponent *const*, const char *); +SOAP_FMAC3 prodml23__PlusFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__PlusFluidComponent(struct soap*, const char*, prodml23__PlusFluidComponent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PlusFluidComponent(struct soap*, prodml23__PlusFluidComponent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PlusFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__PlusFluidComponent(struct soap*, prodml23__PlusFluidComponent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PseudoFluidComponent(struct soap*, prodml23__PseudoFluidComponent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PseudoFluidComponent(struct soap*, const char *, int, prodml23__PseudoFluidComponent *const*, const char *); +SOAP_FMAC3 prodml23__PseudoFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__PseudoFluidComponent(struct soap*, const char*, prodml23__PseudoFluidComponent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PseudoFluidComponent(struct soap*, prodml23__PseudoFluidComponent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PseudoFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__PseudoFluidComponent(struct soap*, prodml23__PseudoFluidComponent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PureFluidComponent(struct soap*, prodml23__PureFluidComponent *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PureFluidComponent(struct soap*, const char *, int, prodml23__PureFluidComponent *const*, const char *); +SOAP_FMAC3 prodml23__PureFluidComponent ** SOAP_FMAC4 soap_in_PointerToprodml23__PureFluidComponent(struct soap*, const char*, prodml23__PureFluidComponent **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PureFluidComponent(struct soap*, prodml23__PureFluidComponent *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PureFluidComponent ** SOAP_FMAC4 soap_get_PointerToprodml23__PureFluidComponent(struct soap*, prodml23__PureFluidComponent **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FormationWater(struct soap*, prodml23__FormationWater *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FormationWater(struct soap*, const char *, int, prodml23__FormationWater *const*, const char *); +SOAP_FMAC3 prodml23__FormationWater ** SOAP_FMAC4 soap_in_PointerToprodml23__FormationWater(struct soap*, const char*, prodml23__FormationWater **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FormationWater(struct soap*, prodml23__FormationWater *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FormationWater ** SOAP_FMAC4 soap_get_PointerToprodml23__FormationWater(struct soap*, prodml23__FormationWater **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__NaturalGas(struct soap*, prodml23__NaturalGas *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__NaturalGas(struct soap*, const char *, int, prodml23__NaturalGas *const*, const char *); +SOAP_FMAC3 prodml23__NaturalGas ** SOAP_FMAC4 soap_in_PointerToprodml23__NaturalGas(struct soap*, const char*, prodml23__NaturalGas **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__NaturalGas(struct soap*, prodml23__NaturalGas *const*, const char*, const char*); +SOAP_FMAC3 prodml23__NaturalGas ** SOAP_FMAC4 soap_get_PointerToprodml23__NaturalGas(struct soap*, prodml23__NaturalGas **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__StockTankOil(struct soap*, prodml23__StockTankOil *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__StockTankOil(struct soap*, const char *, int, prodml23__StockTankOil *const*, const char *); +SOAP_FMAC3 prodml23__StockTankOil ** SOAP_FMAC4 soap_in_PointerToprodml23__StockTankOil(struct soap*, const char*, prodml23__StockTankOil **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__StockTankOil(struct soap*, prodml23__StockTankOil *const*, const char*, const char*); +SOAP_FMAC3 prodml23__StockTankOil ** SOAP_FMAC4 soap_get_PointerToprodml23__StockTankOil(struct soap*, prodml23__StockTankOil **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReportingFacility(struct soap*, prodml23__ReportingFacility *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReportingFacility(struct soap*, const char *, int, prodml23__ReportingFacility *const*, const char *); +SOAP_FMAC3 prodml23__ReportingFacility ** SOAP_FMAC4 soap_in_PointerToprodml23__ReportingFacility(struct soap*, const char*, prodml23__ReportingFacility **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReportingFacility(struct soap*, prodml23__ReportingFacility *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReportingFacility ** SOAP_FMAC4 soap_get_PointerToprodml23__ReportingFacility(struct soap*, prodml23__ReportingFacility **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__GeographicContext(struct soap*, prodml23__GeographicContext *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__GeographicContext(struct soap*, const char *, int, prodml23__GeographicContext *const*, const char *); +SOAP_FMAC3 prodml23__GeographicContext ** SOAP_FMAC4 soap_in_PointerToprodml23__GeographicContext(struct soap*, const char*, prodml23__GeographicContext **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__GeographicContext(struct soap*, prodml23__GeographicContext *const*, const char*, const char*); +SOAP_FMAC3 prodml23__GeographicContext ** SOAP_FMAC4 soap_get_PointerToprodml23__GeographicContext(struct soap*, prodml23__GeographicContext **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ProductVolumeBusinessUnit(struct soap*, prodml23__ProductVolumeBusinessUnit *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ProductVolumeBusinessUnit(struct soap*, const char *, int, prodml23__ProductVolumeBusinessUnit *const*, const char *); +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_in_PointerToprodml23__ProductVolumeBusinessUnit(struct soap*, const char*, prodml23__ProductVolumeBusinessUnit **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ProductVolumeBusinessUnit(struct soap*, prodml23__ProductVolumeBusinessUnit *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ProductVolumeBusinessUnit ** SOAP_FMAC4 soap_get_PointerToprodml23__ProductVolumeBusinessUnit(struct soap*, prodml23__ProductVolumeBusinessUnit **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FacilityIdentifierStruct(struct soap*, prodml23__FacilityIdentifierStruct *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FacilityIdentifierStruct(struct soap*, const char *, int, prodml23__FacilityIdentifierStruct *const*, const char *); +SOAP_FMAC3 prodml23__FacilityIdentifierStruct ** SOAP_FMAC4 soap_in_PointerToprodml23__FacilityIdentifierStruct(struct soap*, const char*, prodml23__FacilityIdentifierStruct **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FacilityIdentifierStruct(struct soap*, prodml23__FacilityIdentifierStruct *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FacilityIdentifierStruct ** SOAP_FMAC4 soap_get_PointerToprodml23__FacilityIdentifierStruct(struct soap*, prodml23__FacilityIdentifierStruct **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__EndpointQualifier(struct soap*, prodml23__EndpointQualifier *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__EndpointQualifier(struct soap*, const char *, int, prodml23__EndpointQualifier *const*, const char *); +SOAP_FMAC3 prodml23__EndpointQualifier ** SOAP_FMAC4 soap_in_PointerToprodml23__EndpointQualifier(struct soap*, const char*, prodml23__EndpointQualifier **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__EndpointQualifier(struct soap*, prodml23__EndpointQualifier *const*, const char*, const char*); +SOAP_FMAC3 prodml23__EndpointQualifier ** SOAP_FMAC4 soap_get_PointerToprodml23__EndpointQualifier(struct soap*, prodml23__EndpointQualifier **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstanceMeasure_DEFINED @@ -237131,13 +237103,13 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__VolumeValue(struct soap*, eml SOAP_FMAC3 eml23__VolumeValue ** SOAP_FMAC4 soap_get_PointerToeml23__VolumeValue(struct soap*, eml23__VolumeValue **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap*, prodml22__DetectableLimitRelativeStateKind *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap*, const char *, int, prodml22__DetectableLimitRelativeStateKind *const*, const char *); -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_in_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap*, const char*, prodml22__DetectableLimitRelativeStateKind **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap*, prodml22__DetectableLimitRelativeStateKind *const*, const char*, const char*); -SOAP_FMAC3 prodml22__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_get_PointerToprodml22__DetectableLimitRelativeStateKind(struct soap*, prodml22__DetectableLimitRelativeStateKind **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap*, prodml23__DetectableLimitRelativeStateKind *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap*, const char *, int, prodml23__DetectableLimitRelativeStateKind *const*, const char *); +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_in_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap*, const char*, prodml23__DetectableLimitRelativeStateKind **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap*, prodml23__DetectableLimitRelativeStateKind *const*, const char*, const char*); +SOAP_FMAC3 prodml23__DetectableLimitRelativeStateKind ** SOAP_FMAC4 soap_get_PointerToprodml23__DetectableLimitRelativeStateKind(struct soap*, prodml23__DetectableLimitRelativeStateKind **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__AmountOfSubstancePerAmountOfSubstanceMeasure_DEFINED @@ -237158,22 +237130,22 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__MassPerVolumeMeasureExt(struc SOAP_FMAC3 eml23__MassPerVolumeMeasureExt ** SOAP_FMAC4 soap_get_PointerToeml23__MassPerVolumeMeasureExt(struct soap*, eml23__MassPerVolumeMeasureExt **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CalendarMonth(struct soap*, std::string *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CalendarMonth(struct soap*, const char *, int, std::string *const*, const char *); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml22__CalendarMonth(struct soap*, const char*, std::string **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CalendarMonth(struct soap*, std::string *const*, const char*, const char*); -SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml22__CalendarMonth(struct soap*, std::string **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CalendarMonth(struct soap*, std::string *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CalendarMonth(struct soap*, const char *, int, std::string *const*, const char *); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_in_PointerToprodml23__CalendarMonth(struct soap*, const char*, std::string **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CalendarMonth(struct soap*, std::string *const*, const char*, const char*); +SOAP_FMAC3 std::string ** SOAP_FMAC4 soap_get_PointerToprodml23__CalendarMonth(struct soap*, std::string **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PvtModelParameter(struct soap*, prodml22__PvtModelParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PvtModelParameter(struct soap*, const char *, int, prodml22__PvtModelParameter *const*, const char *); -SOAP_FMAC3 prodml22__PvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__PvtModelParameter(struct soap*, const char*, prodml22__PvtModelParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PvtModelParameter(struct soap*, prodml22__PvtModelParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__PvtModelParameter(struct soap*, prodml22__PvtModelParameter **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PvtModelParameter(struct soap*, prodml23__PvtModelParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PvtModelParameter(struct soap*, const char *, int, prodml23__PvtModelParameter *const*, const char *); +SOAP_FMAC3 prodml23__PvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__PvtModelParameter(struct soap*, const char*, prodml23__PvtModelParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PvtModelParameter(struct soap*, prodml23__PvtModelParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__PvtModelParameter(struct soap*, prodml23__PvtModelParameter **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__ReciprocalPressureMeasure_DEFINED @@ -237203,130 +237175,130 @@ SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToeml23__MolarVolumeMeasure(struct soa SOAP_FMAC3 eml23__MolarVolumeMeasure ** SOAP_FMAC4 soap_get_PointerToeml23__MolarVolumeMeasure(struct soap*, eml23__MolarVolumeMeasure **, const char*, const char*); #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableFormat(struct soap*, prodml22__FluidCharacterizationTableFormat *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableFormat(struct soap*, const char *, int, prodml22__FluidCharacterizationTableFormat *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableFormat(struct soap*, const char*, prodml22__FluidCharacterizationTableFormat **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableFormat(struct soap*, prodml22__FluidCharacterizationTableFormat *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableFormat(struct soap*, prodml22__FluidCharacterizationTableFormat **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableColumn(struct soap*, prodml22__FluidCharacterizationTableColumn *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableColumn(struct soap*, const char *, int, prodml22__FluidCharacterizationTableColumn *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableColumn(struct soap*, const char*, prodml22__FluidCharacterizationTableColumn **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableColumn(struct soap*, prodml22__FluidCharacterizationTableColumn *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableColumn(struct soap*, prodml22__FluidCharacterizationTableColumn **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTableRow(struct soap*, prodml22__FluidCharacterizationTableRow *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTableRow(struct soap*, const char *, int, prodml22__FluidCharacterizationTableRow *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTableRow(struct soap*, const char*, prodml22__FluidCharacterizationTableRow **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTableRow(struct soap*, prodml22__FluidCharacterizationTableRow *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTableRow(struct soap*, prodml22__FluidCharacterizationTableRow **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationParameter(struct soap*, prodml22__FluidCharacterizationParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationParameter(struct soap*, const char *, int, prodml22__FluidCharacterizationParameter *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationParameter(struct soap*, const char*, prodml22__FluidCharacterizationParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationParameter(struct soap*, prodml22__FluidCharacterizationParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationParameter(struct soap*, prodml22__FluidCharacterizationParameter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ThermodynamicPhase(struct soap*, prodml22__ThermodynamicPhase *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ThermodynamicPhase(struct soap*, const char *, int, prodml22__ThermodynamicPhase *const*, const char *); -SOAP_FMAC3 prodml22__ThermodynamicPhase ** SOAP_FMAC4 soap_in_PointerToprodml22__ThermodynamicPhase(struct soap*, const char*, prodml22__ThermodynamicPhase **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ThermodynamicPhase(struct soap*, prodml22__ThermodynamicPhase *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ThermodynamicPhase ** SOAP_FMAC4 soap_get_PointerToprodml22__ThermodynamicPhase(struct soap*, prodml22__ThermodynamicPhase **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__ReferenceSeparatorStage(struct soap*, prodml22__ReferenceSeparatorStage *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__ReferenceSeparatorStage(struct soap*, const char *, int, prodml22__ReferenceSeparatorStage *const*, const char *); -SOAP_FMAC3 prodml22__ReferenceSeparatorStage ** SOAP_FMAC4 soap_in_PointerToprodml22__ReferenceSeparatorStage(struct soap*, const char*, prodml22__ReferenceSeparatorStage **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__ReferenceSeparatorStage(struct soap*, prodml22__ReferenceSeparatorStage *const*, const char*, const char*); -SOAP_FMAC3 prodml22__ReferenceSeparatorStage ** SOAP_FMAC4 soap_get_PointerToprodml22__ReferenceSeparatorStage(struct soap*, prodml22__ReferenceSeparatorStage **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationParameterSet(struct soap*, prodml22__FluidCharacterizationParameterSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationParameterSet(struct soap*, const char *, int, prodml22__FluidCharacterizationParameterSet *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationParameterSet(struct soap*, const char*, prodml22__FluidCharacterizationParameterSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationParameterSet(struct soap*, prodml22__FluidCharacterizationParameterSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationParameterSet(struct soap*, prodml22__FluidCharacterizationParameterSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidCharacterizationTable(struct soap*, prodml22__FluidCharacterizationTable *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidCharacterizationTable(struct soap*, const char *, int, prodml22__FluidCharacterizationTable *const*, const char *); -SOAP_FMAC3 prodml22__FluidCharacterizationTable ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidCharacterizationTable(struct soap*, const char*, prodml22__FluidCharacterizationTable **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidCharacterizationTable(struct soap*, prodml22__FluidCharacterizationTable *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidCharacterizationTable ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidCharacterizationTable(struct soap*, prodml22__FluidCharacterizationTable **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__AbstractPvtModel(struct soap*, prodml22__AbstractPvtModel *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__AbstractPvtModel(struct soap*, const char *, int, prodml22__AbstractPvtModel *const*, const char *); -SOAP_FMAC3 prodml22__AbstractPvtModel ** SOAP_FMAC4 soap_in_PointerToprodml22__AbstractPvtModel(struct soap*, const char*, prodml22__AbstractPvtModel **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__AbstractPvtModel(struct soap*, prodml22__AbstractPvtModel *const*, const char*, const char*); -SOAP_FMAC3 prodml22__AbstractPvtModel ** SOAP_FMAC4 soap_get_PointerToprodml22__AbstractPvtModel(struct soap*, prodml22__AbstractPvtModel **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CustomPvtModelParameter(struct soap*, prodml22__CustomPvtModelParameter *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CustomPvtModelParameter(struct soap*, const char *, int, prodml22__CustomPvtModelParameter *const*, const char *); -SOAP_FMAC3 prodml22__CustomPvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml22__CustomPvtModelParameter(struct soap*, const char*, prodml22__CustomPvtModelParameter **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CustomPvtModelParameter(struct soap*, prodml22__CustomPvtModelParameter *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CustomPvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml22__CustomPvtModelParameter(struct soap*, prodml22__CustomPvtModelParameter **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__FluidComponentProperty(struct soap*, prodml22__FluidComponentProperty *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__FluidComponentProperty(struct soap*, const char *, int, prodml22__FluidComponentProperty *const*, const char *); -SOAP_FMAC3 prodml22__FluidComponentProperty ** SOAP_FMAC4 soap_in_PointerToprodml22__FluidComponentProperty(struct soap*, const char*, prodml22__FluidComponentProperty **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__FluidComponentProperty(struct soap*, prodml22__FluidComponentProperty *const*, const char*, const char*); -SOAP_FMAC3 prodml22__FluidComponentProperty ** SOAP_FMAC4 soap_get_PointerToprodml22__FluidComponentProperty(struct soap*, prodml22__FluidComponentProperty **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__BinaryInteractionCoefficient(struct soap*, prodml22__BinaryInteractionCoefficient *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__BinaryInteractionCoefficient(struct soap*, const char *, int, prodml22__BinaryInteractionCoefficient *const*, const char *); -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml22__BinaryInteractionCoefficient(struct soap*, const char*, prodml22__BinaryInteractionCoefficient **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__BinaryInteractionCoefficient(struct soap*, prodml22__BinaryInteractionCoefficient *const*, const char*, const char*); -SOAP_FMAC3 prodml22__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml22__BinaryInteractionCoefficient(struct soap*, prodml22__BinaryInteractionCoefficient **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__PvtModelParameterSet(struct soap*, prodml22__PvtModelParameterSet *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__PvtModelParameterSet(struct soap*, const char *, int, prodml22__PvtModelParameterSet *const*, const char *); -SOAP_FMAC3 prodml22__PvtModelParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml22__PvtModelParameterSet(struct soap*, const char*, prodml22__PvtModelParameterSet **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__PvtModelParameterSet(struct soap*, prodml22__PvtModelParameterSet *const*, const char*, const char*); -SOAP_FMAC3 prodml22__PvtModelParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml22__PvtModelParameterSet(struct soap*, prodml22__PvtModelParameterSet **, const char*, const char*); -#endif - -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml22__CustomPvtModelExtension(struct soap*, prodml22__CustomPvtModelExtension *const*); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml22__CustomPvtModelExtension(struct soap*, const char *, int, prodml22__CustomPvtModelExtension *const*, const char *); -SOAP_FMAC3 prodml22__CustomPvtModelExtension ** SOAP_FMAC4 soap_in_PointerToprodml22__CustomPvtModelExtension(struct soap*, const char*, prodml22__CustomPvtModelExtension **, const char*); -SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml22__CustomPvtModelExtension(struct soap*, prodml22__CustomPvtModelExtension *const*, const char*, const char*); -SOAP_FMAC3 prodml22__CustomPvtModelExtension ** SOAP_FMAC4 soap_get_PointerToprodml22__CustomPvtModelExtension(struct soap*, prodml22__CustomPvtModelExtension **, const char*, const char*); +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableFormat(struct soap*, prodml23__FluidCharacterizationTableFormat *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableFormat(struct soap*, const char *, int, prodml23__FluidCharacterizationTableFormat *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableFormat(struct soap*, const char*, prodml23__FluidCharacterizationTableFormat **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableFormat(struct soap*, prodml23__FluidCharacterizationTableFormat *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableFormat ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableFormat(struct soap*, prodml23__FluidCharacterizationTableFormat **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableColumn(struct soap*, prodml23__FluidCharacterizationTableColumn *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableColumn(struct soap*, const char *, int, prodml23__FluidCharacterizationTableColumn *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableColumn(struct soap*, const char*, prodml23__FluidCharacterizationTableColumn **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableColumn(struct soap*, prodml23__FluidCharacterizationTableColumn *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableColumn ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableColumn(struct soap*, prodml23__FluidCharacterizationTableColumn **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTableRow(struct soap*, prodml23__FluidCharacterizationTableRow *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTableRow(struct soap*, const char *, int, prodml23__FluidCharacterizationTableRow *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTableRow(struct soap*, const char*, prodml23__FluidCharacterizationTableRow **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTableRow(struct soap*, prodml23__FluidCharacterizationTableRow *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTableRow ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTableRow(struct soap*, prodml23__FluidCharacterizationTableRow **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationParameter(struct soap*, prodml23__FluidCharacterizationParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationParameter(struct soap*, const char *, int, prodml23__FluidCharacterizationParameter *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationParameter(struct soap*, const char*, prodml23__FluidCharacterizationParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationParameter(struct soap*, prodml23__FluidCharacterizationParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationParameter(struct soap*, prodml23__FluidCharacterizationParameter **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ThermodynamicPhase(struct soap*, prodml23__ThermodynamicPhase *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ThermodynamicPhase(struct soap*, const char *, int, prodml23__ThermodynamicPhase *const*, const char *); +SOAP_FMAC3 prodml23__ThermodynamicPhase ** SOAP_FMAC4 soap_in_PointerToprodml23__ThermodynamicPhase(struct soap*, const char*, prodml23__ThermodynamicPhase **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ThermodynamicPhase(struct soap*, prodml23__ThermodynamicPhase *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ThermodynamicPhase ** SOAP_FMAC4 soap_get_PointerToprodml23__ThermodynamicPhase(struct soap*, prodml23__ThermodynamicPhase **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__ReferenceSeparatorStage(struct soap*, prodml23__ReferenceSeparatorStage *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__ReferenceSeparatorStage(struct soap*, const char *, int, prodml23__ReferenceSeparatorStage *const*, const char *); +SOAP_FMAC3 prodml23__ReferenceSeparatorStage ** SOAP_FMAC4 soap_in_PointerToprodml23__ReferenceSeparatorStage(struct soap*, const char*, prodml23__ReferenceSeparatorStage **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__ReferenceSeparatorStage(struct soap*, prodml23__ReferenceSeparatorStage *const*, const char*, const char*); +SOAP_FMAC3 prodml23__ReferenceSeparatorStage ** SOAP_FMAC4 soap_get_PointerToprodml23__ReferenceSeparatorStage(struct soap*, prodml23__ReferenceSeparatorStage **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationParameterSet(struct soap*, prodml23__FluidCharacterizationParameterSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationParameterSet(struct soap*, const char *, int, prodml23__FluidCharacterizationParameterSet *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationParameterSet(struct soap*, const char*, prodml23__FluidCharacterizationParameterSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationParameterSet(struct soap*, prodml23__FluidCharacterizationParameterSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationParameterSet(struct soap*, prodml23__FluidCharacterizationParameterSet **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidCharacterizationTable(struct soap*, prodml23__FluidCharacterizationTable *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidCharacterizationTable(struct soap*, const char *, int, prodml23__FluidCharacterizationTable *const*, const char *); +SOAP_FMAC3 prodml23__FluidCharacterizationTable ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidCharacterizationTable(struct soap*, const char*, prodml23__FluidCharacterizationTable **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidCharacterizationTable(struct soap*, prodml23__FluidCharacterizationTable *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidCharacterizationTable ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidCharacterizationTable(struct soap*, prodml23__FluidCharacterizationTable **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__AbstractPvtModel(struct soap*, prodml23__AbstractPvtModel *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__AbstractPvtModel(struct soap*, const char *, int, prodml23__AbstractPvtModel *const*, const char *); +SOAP_FMAC3 prodml23__AbstractPvtModel ** SOAP_FMAC4 soap_in_PointerToprodml23__AbstractPvtModel(struct soap*, const char*, prodml23__AbstractPvtModel **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__AbstractPvtModel(struct soap*, prodml23__AbstractPvtModel *const*, const char*, const char*); +SOAP_FMAC3 prodml23__AbstractPvtModel ** SOAP_FMAC4 soap_get_PointerToprodml23__AbstractPvtModel(struct soap*, prodml23__AbstractPvtModel **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CustomPvtModelParameter(struct soap*, prodml23__CustomPvtModelParameter *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CustomPvtModelParameter(struct soap*, const char *, int, prodml23__CustomPvtModelParameter *const*, const char *); +SOAP_FMAC3 prodml23__CustomPvtModelParameter ** SOAP_FMAC4 soap_in_PointerToprodml23__CustomPvtModelParameter(struct soap*, const char*, prodml23__CustomPvtModelParameter **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CustomPvtModelParameter(struct soap*, prodml23__CustomPvtModelParameter *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CustomPvtModelParameter ** SOAP_FMAC4 soap_get_PointerToprodml23__CustomPvtModelParameter(struct soap*, prodml23__CustomPvtModelParameter **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__FluidComponentProperty(struct soap*, prodml23__FluidComponentProperty *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__FluidComponentProperty(struct soap*, const char *, int, prodml23__FluidComponentProperty *const*, const char *); +SOAP_FMAC3 prodml23__FluidComponentProperty ** SOAP_FMAC4 soap_in_PointerToprodml23__FluidComponentProperty(struct soap*, const char*, prodml23__FluidComponentProperty **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__FluidComponentProperty(struct soap*, prodml23__FluidComponentProperty *const*, const char*, const char*); +SOAP_FMAC3 prodml23__FluidComponentProperty ** SOAP_FMAC4 soap_get_PointerToprodml23__FluidComponentProperty(struct soap*, prodml23__FluidComponentProperty **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__BinaryInteractionCoefficient(struct soap*, prodml23__BinaryInteractionCoefficient *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__BinaryInteractionCoefficient(struct soap*, const char *, int, prodml23__BinaryInteractionCoefficient *const*, const char *); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_in_PointerToprodml23__BinaryInteractionCoefficient(struct soap*, const char*, prodml23__BinaryInteractionCoefficient **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__BinaryInteractionCoefficient(struct soap*, prodml23__BinaryInteractionCoefficient *const*, const char*, const char*); +SOAP_FMAC3 prodml23__BinaryInteractionCoefficient ** SOAP_FMAC4 soap_get_PointerToprodml23__BinaryInteractionCoefficient(struct soap*, prodml23__BinaryInteractionCoefficient **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__PvtModelParameterSet(struct soap*, prodml23__PvtModelParameterSet *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__PvtModelParameterSet(struct soap*, const char *, int, prodml23__PvtModelParameterSet *const*, const char *); +SOAP_FMAC3 prodml23__PvtModelParameterSet ** SOAP_FMAC4 soap_in_PointerToprodml23__PvtModelParameterSet(struct soap*, const char*, prodml23__PvtModelParameterSet **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__PvtModelParameterSet(struct soap*, prodml23__PvtModelParameterSet *const*, const char*, const char*); +SOAP_FMAC3 prodml23__PvtModelParameterSet ** SOAP_FMAC4 soap_get_PointerToprodml23__PvtModelParameterSet(struct soap*, prodml23__PvtModelParameterSet **, const char*, const char*); +#endif + +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToprodml23__CustomPvtModelExtension(struct soap*, prodml23__CustomPvtModelExtension *const*); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_PointerToprodml23__CustomPvtModelExtension(struct soap*, const char *, int, prodml23__CustomPvtModelExtension *const*, const char *); +SOAP_FMAC3 prodml23__CustomPvtModelExtension ** SOAP_FMAC4 soap_in_PointerToprodml23__CustomPvtModelExtension(struct soap*, const char*, prodml23__CustomPvtModelExtension **, const char*); +SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToprodml23__CustomPvtModelExtension(struct soap*, prodml23__CustomPvtModelExtension *const*, const char*, const char*); +SOAP_FMAC3 prodml23__CustomPvtModelExtension ** SOAP_FMAC4 soap_get_PointerToprodml23__CustomPvtModelExtension(struct soap*, prodml23__CustomPvtModelExtension **, const char*, const char*); #endif #ifndef SOAP_TYPE_gsoap_eml2_3_PointerToeml23__Column_DEFINED @@ -240178,17 +240150,17 @@ inline std::vector * soap_new_std__vectorTemplateO } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__PrsvParameter(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__PrsvParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__PrsvParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__PrsvParameter(soap, n, NULL, NULL, NULL); } #endif @@ -240416,297 +240388,297 @@ inline std::vector * soap_new_std__vectorTemplateOfPo } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__STOAnalysis(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__STOAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__STOAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__STOAnalysis(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SwellingTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SwellingTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SaturationTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SaturationTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SaturationTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SaturationTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis(soap, n, NULL, NULL, NULL); } #endif @@ -241144,101 +241116,101 @@ inline std::vector * soap_new_std__vectorT } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AbstractValue(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AbstractValue(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractValue(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractValue(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml22__FlowQualifier(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml22__FlowQualifier(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml22__FlowQualifier(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml22__FlowQualifier(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml22__FlowQualifier(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml23__FlowQualifier(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml23__FlowQualifier(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml23__FlowQualifier(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml23__FlowQualifier(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml23__FlowQualifier(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfprodml22__FlowQualifier(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfprodml23__FlowQualifier(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfprodml22__FlowQualifier(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfprodml23__FlowQualifier(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility(soap, n, NULL, NULL, NULL); } #endif @@ -241256,129 +241228,129 @@ inline std::vector * soap_new_std__vectorTemplateOfdouble(struct soap * } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfprodml22__DataConditioningExt(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfprodml23__DataConditioningExt(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfprodml22__DataConditioningExt(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfprodml23__DataConditioningExt(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__LayerModel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__LayerModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerModel(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__Channel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__Channel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__Channel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__Channel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__Channel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__Channel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__Channel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__Channel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__Channel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__Channel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__Channel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__Channel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__Channel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__Channel(soap, n, NULL, NULL, NULL); } #endif @@ -241396,59 +241368,59 @@ inline std::vector * soap_new_std__vectorTemplateOfstd__string(str } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SampleContaminant(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SampleContaminant(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleContaminant(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleContaminant(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource(soap, n, NULL, NULL, NULL); } #endif @@ -242502,255 +242474,255 @@ inline std::vector * soap_new_std__vectorTemplateOfPointer } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowPort(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowPort(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ConnectedNode(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ConnectedNode(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConnectedNode(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConnectedNode(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__CurveDefinition(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__CurveDefinition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__CurveDefinition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__CurveDefinition(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__DatedComment(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__DatedComment(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__DatedComment(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__DatedComment(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent(soap, n, NULL, NULL, NULL); } #endif @@ -242768,17 +242740,17 @@ inline std::vector * soap_new_std__vectorTemplateOfPoin } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference(soap, n, NULL, NULL, NULL); } #endif @@ -242810,759 +242782,759 @@ inline std::vector * soap_new_std__vectorTemplateOfPoint } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__CustomParameter(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__CustomParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomParameter(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AbstractParameter(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AbstractParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractParameter(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__LocationIn2D(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__LocationIn2D(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__LocationIn2D(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__LocationIn2D(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AnalysisLine(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AnalysisLine(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AnalysisLine(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AnalysisLine(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductRate(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductRate(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductRate(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductRate(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__OtherData(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__OtherData(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherData(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherData(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__LiquidComposition(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__LiquidComposition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__LiquidComposition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__LiquidComposition(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__PhaseDensity(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__PhaseDensity(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__PhaseDensity(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__PhaseDensity(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SwellingTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SwellingTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__Sara(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__Sara(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__Sara(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__Sara(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__Sara(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__Sara(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__Sara(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__Sara(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__Sara(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__Sara(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__Sara(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__Sara(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__Sara(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__Sara(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__InjectedGas(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__InjectedGas(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__InjectedGas(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__InjectedGas(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SampleRestoration(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SampleRestoration(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SampleRestoration(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SampleRestoration(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__VaporComposition(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__VaporComposition(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__VaporComposition(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__VaporComposition(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ReportLocation(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ReportLocation(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReportLocation(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReportLocation(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__PureFluidComponent(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__PureFluidComponent(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FormationWater(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FormationWater(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FormationWater(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FormationWater(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__NaturalGas(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__NaturalGas(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__NaturalGas(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__NaturalGas(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__StockTankOil(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__StockTankOil(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__StockTankOil(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__StockTankOil(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__PvtModelParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__PvtModelParameter(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty(soap, n, NULL, NULL, NULL); } #endif -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient_DEFINED -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient_DEFINED -SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap*, std::vector *); -SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap*, const std::vector *); -SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap*, const char*, int, const std::vector *, const char*); -SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap*, const char*, std::vector *, const char*); -SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap*, int, const char*, const char*, size_t*); +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient_DEFINED +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient_DEFINED +SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap*, std::vector *); +SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap*, const std::vector *); +SOAP_FMAC3 int SOAP_FMAC4 soap_out_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap*, const char*, int, const std::vector *, const char*); +SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap*, const char*, std::vector *, const char*); +SOAP_FMAC1 std::vector * SOAP_FMAC2 soap_instantiate_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap*, int, const char*, const char*, size_t*); -inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(struct soap *soap, int n = -1) +inline std::vector * soap_new_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(struct soap *soap, int n = -1) { - return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient(soap, n, NULL, NULL, NULL); + return gsoap_eml2_3::soap_instantiate_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient(soap, n, NULL, NULL, NULL); } #endif diff --git a/src/proxies/gsoap_eml2_3Stub.h b/src/proxies/gsoap_eml2_3Stub.h index 56754febf..43e471568 100644 --- a/src/proxies/gsoap_eml2_3Stub.h +++ b/src/proxies/gsoap_eml2_3Stub.h @@ -1,8 +1,8 @@ /* gsoap_eml2_3Stub.h - Generated by gSOAP 2.8.127E for eml2_3ForGsoap.h + Generated by gSOAP 2.8.139E for eml2_3ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -13,7 +13,7 @@ Product and source code licensed by Genivia Inc., contact@genivia.com #include #define SOAP_NAMESPACE_OF_witsml21 "http://www.energistics.org/energyml/data/witsmlv2" #define SOAP_NAMESPACE_OF_eml23 "http://www.energistics.org/energyml/data/commonv2" -#define SOAP_NAMESPACE_OF_prodml22 "http://www.energistics.org/energyml/data/prodmlv2" +#define SOAP_NAMESPACE_OF_prodml23 "http://www.energistics.org/energyml/data/prodmlv2" #define SOAP_NAMESPACE_OF_resqml22 "http://www.energistics.org/energyml/data/resqmlv2" #include @@ -23,8 +23,8 @@ Product and source code licensed by Genivia Inc., contact@genivia.com #define WITH_NOGLOBAL #endif #include "stdsoap2.h" -#if GSOAP_VERSION != 208127 -# error "GSOAP VERSION 208127 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" +#if GSOAP_VERSION != 208139 +# error "GSOAP VERSION 208139 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" #endif @@ -9418,22 +9418,22 @@ enum class eml23__CollectionKind { #endif /* eml2_3ForGsoap.h:22268 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule (-2117) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule (-2117) -/* prodml22:MixingRule */ -enum class prodml22__MixingRule { +/* prodml23:MixingRule */ +enum class prodml23__MixingRule { asymmetric = 0, classical = 1 }; #endif /* eml2_3ForGsoap.h:22288 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty (-2118) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty (-2118) -/* prodml22:OutputFluidProperty */ -enum class prodml22__OutputFluidProperty { +/* prodml23:OutputFluidProperty */ +enum class prodml23__OutputFluidProperty { Compressibility = 0, Density = 1, Derivative_x0020of_x0020Density_x0020w_x002er_x002et_x0020Pressure = 2, @@ -9472,11 +9472,11 @@ enum class prodml22__OutputFluidProperty { #endif /* eml2_3ForGsoap.h:22468 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind (-2119) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind (-2119) -/* prodml22:PvtModelParameterKind */ -enum class prodml22__PvtModelParameterKind { +/* prodml23:PvtModelParameterKind */ +enum class prodml23__PvtModelParameterKind { b0 = 0, b1 = 1, b2 = 2, @@ -9513,22 +9513,22 @@ enum class prodml22__PvtModelParameterKind { #endif /* eml2_3ForGsoap.h:22638 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind (-2120) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind (-2120) -/* prodml22:SaturationKind */ -enum class prodml22__SaturationKind { +/* prodml23:SaturationKind */ +enum class prodml23__SaturationKind { saturated = 0, undersaturated = 1 }; #endif /* eml2_3ForGsoap.h:22658 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind (-2121) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind (-2121) -/* prodml22:BusinessUnitKind */ -enum class prodml22__BusinessUnitKind { +/* prodml23:BusinessUnitKind */ +enum class prodml23__BusinessUnitKind { businessarea = 0, company = 1, field = 2, @@ -9540,11 +9540,11 @@ enum class prodml22__BusinessUnitKind { #endif /* eml2_3ForGsoap.h:22675 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier (-2122) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier (-2122) -/* prodml22:EndpointQualifier */ -enum class prodml22__EndpointQualifier { +/* prodml23:EndpointQualifier */ +enum class prodml23__EndpointQualifier { exclusive = 0, extensive = 1, inclusive = 2, @@ -9553,11 +9553,11 @@ enum class prodml22__EndpointQualifier { #endif /* eml2_3ForGsoap.h:22706 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter (-2123) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter (-2123) -/* prodml22:FacilityParameter */ -enum class prodml22__FacilityParameter { +/* prodml23:FacilityParameter */ +enum class prodml23__FacilityParameter { absorbed_x0020dose_x0020class = 0, acceleration_x0020linear_x0020class = 1, activity_x0020_x0028of_x0020radioactivity_x0029_x0020class = 2, @@ -9807,11 +9807,11 @@ enum class prodml22__FacilityParameter { #endif /* eml2_3ForGsoap.h:23942 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode (-2124) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode (-2124) -/* prodml22:FiberMode */ -enum class prodml22__FiberMode { +/* prodml23:FiberMode */ +enum class prodml23__FiberMode { multimode = 0, other = 1, singlemode = 2 @@ -9819,11 +9819,11 @@ enum class prodml22__FiberMode { #endif /* eml2_3ForGsoap.h:23955 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier (-2125) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier (-2125) -/* prodml22:FlowQualifier */ -enum class prodml22__FlowQualifier { +/* prodml23:FlowQualifier */ +enum class prodml23__FlowQualifier { allocated = 0, budget = 1, constraint = 2, @@ -9848,11 +9848,11 @@ enum class prodml22__FlowQualifier { #endif /* eml2_3ForGsoap.h:23985 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier (-2126) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier (-2126) -/* prodml22:FlowSubQualifier */ -enum class prodml22__FlowSubQualifier { +/* prodml23:FlowSubQualifier */ +enum class prodml23__FlowSubQualifier { decline_x0020curve = 0, difference = 1, fiscal = 2, @@ -9866,11 +9866,11 @@ enum class prodml22__FlowSubQualifier { #endif /* eml2_3ForGsoap.h:24004 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind (-2127) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind (-2127) -/* prodml22:PlusComponentKind */ -enum class prodml22__PlusComponentKind { +/* prodml23:PlusComponentKind */ +enum class prodml23__PlusComponentKind { c10_x002b = 0, c11_x002b = 1, c12_x002b = 2, @@ -9887,11 +9887,11 @@ enum class prodml22__PlusComponentKind { #endif /* eml2_3ForGsoap.h:24026 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType (-2128) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType (-2128) -/* prodml22:ProductFlowPortType */ -enum class prodml22__ProductFlowPortType { +/* prodml23:ProductFlowPortType */ +enum class prodml23__ProductFlowPortType { inlet = 0, outlet = 1, unknown = 2 @@ -9899,11 +9899,11 @@ enum class prodml22__ProductFlowPortType { #endif /* eml2_3ForGsoap.h:24039 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind (-2129) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind (-2129) -/* prodml22:ProductFluidKind */ -enum class prodml22__ProductFluidKind { +/* prodml23:ProductFluidKind */ +enum class prodml23__ProductFluidKind { condensate = 0, condensate_x0020__x0020gross = 1, condensate_x0020__x0020net = 2, @@ -9931,11 +9931,11 @@ enum class prodml22__ProductFluidKind { #endif /* eml2_3ForGsoap.h:24072 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind (-2130) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind (-2130) -/* prodml22:PseudoComponentKind */ -enum class prodml22__PseudoComponentKind { +/* prodml23:PseudoComponentKind */ +enum class prodml23__PseudoComponentKind { c10 = 0, c11 = 1, c12 = 2, @@ -9974,11 +9974,11 @@ enum class prodml22__PseudoComponentKind { #endif /* eml2_3ForGsoap.h:24124 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind (-2131) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind (-2131) -/* prodml22:PureComponentKind */ -enum class prodml22__PureComponentKind { +/* prodml23:PureComponentKind */ +enum class prodml23__PureComponentKind { _1_2_4_trimethylbenzene = 0, _2_dimethylbutane = 1, _3_dimethylbutane = 2, @@ -10025,11 +10025,11 @@ enum class prodml22__PureComponentKind { #endif /* eml2_3ForGsoap.h:24188 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind (-2132) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind (-2132) -/* prodml22:ReportingDurationKind */ -enum class prodml22__ReportingDurationKind { +/* prodml23:ReportingDurationKind */ +enum class prodml23__ReportingDurationKind { day = 0, life_x0020to_x0020date = 1, month = 2, @@ -10042,11 +10042,11 @@ enum class prodml22__ReportingDurationKind { #endif /* eml2_3ForGsoap.h:24206 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind (-2133) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind (-2133) -/* prodml22:ReportingEntityKind */ -enum class prodml22__ReportingEntityKind { +/* prodml23:ReportingEntityKind */ +enum class prodml23__ReportingEntityKind { business_x0020unit = 0, fpso = 1, well_x0020completion = 2, @@ -10081,11 +10081,11 @@ enum class prodml22__ReportingEntityKind { #endif /* eml2_3ForGsoap.h:24366 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility (-2134) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility (-2134) -/* prodml22:ReportingFacility */ -enum class prodml22__ReportingFacility { +/* prodml23:ReportingFacility */ +enum class prodml23__ReportingFacility { block_x0020valve = 0, bottomhole = 1, casing = 2, @@ -10150,11 +10150,11 @@ enum class prodml22__ReportingFacility { #endif /* eml2_3ForGsoap.h:24676 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow (-2135) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow (-2135) -/* prodml22:ReportingFlow */ -enum class prodml22__ReportingFlow { +/* prodml23:ReportingFlow */ +enum class prodml23__ReportingFlow { consume = 0, consume_x0020__x0020black_x0020start = 1, consume_x0020__x0020compressor = 2, @@ -10184,11 +10184,11 @@ enum class prodml22__ReportingFlow { #endif /* eml2_3ForGsoap.h:24811 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct (-2136) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct (-2136) -/* prodml22:ReportingProduct */ -enum class prodml22__ReportingProduct { +/* prodml23:ReportingProduct */ +enum class prodml23__ReportingProduct { aqueous = 0, c10 = 1, c10_x002d = 2, @@ -10278,11 +10278,11 @@ enum class prodml22__ReportingProduct { #endif /* eml2_3ForGsoap.h:25246 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind (-2137) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind (-2137) -/* prodml22:ReservoirFluidKind */ -enum class prodml22__ReservoirFluidKind { +/* prodml23:ReservoirFluidKind */ +enum class prodml23__ReservoirFluidKind { black_x0020oil = 0, critical_x0020or_x0020near_x0020critical = 1, dry_x0020gas = 2, @@ -10294,11 +10294,11 @@ enum class prodml22__ReservoirFluidKind { #endif /* eml2_3ForGsoap.h:25291 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType (-2138) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType (-2138) -/* prodml22:SafetyType */ -enum class prodml22__SafetyType { +/* prodml23:SafetyType */ +enum class prodml23__SafetyType { drill_x0020or_x0020exercise = 0, fire = 1, first_x0020aid = 2, @@ -10324,11 +10324,11 @@ enum class prodml22__SafetyType { #endif /* eml2_3ForGsoap.h:25406 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind (-2139) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind (-2139) -/* prodml22:SaturationPointKind */ -enum class prodml22__SaturationPointKind { +/* prodml23:SaturationPointKind */ +enum class prodml23__SaturationPointKind { bubble_x0020point = 0, dew_x0020point = 1, retrograde_x0020dew_x0020point = 2, @@ -10337,11 +10337,11 @@ enum class prodml22__SaturationPointKind { #endif /* eml2_3ForGsoap.h:25436 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind (-2140) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind (-2140) -/* prodml22:ServiceFluidKind */ -enum class prodml22__ServiceFluidKind { +/* prodml23:ServiceFluidKind */ +enum class prodml23__ServiceFluidKind { alkaline_x0020solutions = 0, biocide = 1, carbon_x0020dioxide = 2, @@ -10373,11 +10373,11 @@ enum class prodml22__ServiceFluidKind { #endif /* eml2_3ForGsoap.h:25577 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind (-2141) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind (-2141) -/* prodml22:SulfurComponentKind */ -enum class prodml22__SulfurComponentKind { +/* prodml23:SulfurComponentKind */ +enum class prodml23__SulfurComponentKind { _2_3_x0020_x0026_x00202_4_x0020dimethyl_x0020thiophene = 0, _2_5_dimethyl_x0020thiophene = 1, _2_ethyl_x0020thiophene = 2, @@ -10421,11 +10421,11 @@ enum class prodml22__SulfurComponentKind { #endif /* eml2_3ForGsoap.h:25626 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus (-2142) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus (-2142) -/* prodml22:ValueStatus */ -enum class prodml22__ValueStatus { +/* prodml23:ValueStatus */ +enum class prodml23__ValueStatus { access_x0020denied = 0, bad = 1, bad_x0020calibration = 2, @@ -10444,11 +10444,11 @@ enum class prodml22__ValueStatus { #endif /* eml2_3ForGsoap.h:25706 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection (-2143) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection (-2143) -/* prodml22:WellDirection */ -enum class prodml22__WellDirection { +/* prodml23:WellDirection */ +enum class prodml23__WellDirection { huff_n_puff = 0, injector = 1, producer = 2, @@ -10457,11 +10457,11 @@ enum class prodml22__WellDirection { #endif /* eml2_3ForGsoap.h:25736 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid (-2144) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid (-2144) -/* prodml22:WellFluid */ -enum class prodml22__WellFluid { +/* prodml23:WellFluid */ +enum class prodml23__WellFluid { air = 0, condensate = 1, dry = 2, @@ -10480,11 +10480,11 @@ enum class prodml22__WellFluid { #endif /* eml2_3ForGsoap.h:25812 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind (-2145) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind (-2145) -/* prodml22:AnionKind */ -enum class prodml22__AnionKind { +/* prodml23:AnionKind */ +enum class prodml23__AnionKind { B_x0028OH_x00294_x002d = 0, Br_x002d = 1, Cl_x002d = 2, @@ -10503,11 +10503,11 @@ enum class prodml22__AnionKind { #endif /* eml2_3ForGsoap.h:25832 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind (-2146) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind (-2146) -/* prodml22:CationKind */ -enum class prodml22__CationKind { +/* prodml23:CationKind */ +enum class prodml23__CationKind { Al_x002b3 = 0, B_x002b3 = 1, Ba_x002b2 = 2, @@ -10542,33 +10542,33 @@ enum class prodml22__CationKind { #endif /* eml2_3ForGsoap.h:25868 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind (-2147) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind (-2147) -/* prodml22:CompressibilityKind */ -enum class prodml22__CompressibilityKind { +/* prodml23:CompressibilityKind */ +enum class prodml23__CompressibilityKind { average = 0, point = 1 }; #endif /* eml2_3ForGsoap.h:25876 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind (-2148) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind (-2148) -/* prodml22:DetectableLimitRelativeStateKind */ -enum class prodml22__DetectableLimitRelativeStateKind { +/* prodml23:DetectableLimitRelativeStateKind */ +enum class prodml23__DetectableLimitRelativeStateKind { ADL = 0, BDL = 1 }; #endif /* eml2_3ForGsoap.h:25888 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition (-2149) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition (-2149) -/* prodml22:FluidAnalysisStepCondition */ -enum class prodml22__FluidAnalysisStepCondition { +/* prodml23:FluidAnalysisStepCondition */ +enum class prodml23__FluidAnalysisStepCondition { current_x0020reservoir_x0020conditions = 0, initial_x0020reservoir_x0020conditions = 1, initial_x0020saturation_x0020conditions = 2, @@ -10577,11 +10577,11 @@ enum class prodml22__FluidAnalysisStepCondition { #endif /* eml2_3ForGsoap.h:25918 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant (-2150) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant (-2150) -/* prodml22:FluidContaminant */ -enum class prodml22__FluidContaminant { +/* prodml23:FluidContaminant */ +enum class prodml23__FluidContaminant { cement_x0020fluids = 0, completion_x0020fluid = 1, drilling_x0020mud = 2, @@ -10596,11 +10596,11 @@ enum class prodml22__FluidContaminant { #endif /* eml2_3ForGsoap.h:25974 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind (-2151) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind (-2151) -/* prodml22:OrganicAcidKind */ -enum class prodml22__OrganicAcidKind { +/* prodml23:OrganicAcidKind */ +enum class prodml23__OrganicAcidKind { _x0028COO_x002922_x002d = 0, C2H5OCOO_x002d = 1, C3H5O_x0028COO_x002933_x002d = 2, @@ -10615,11 +10615,11 @@ enum class prodml22__OrganicAcidKind { #endif /* eml2_3ForGsoap.h:25994 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality (-2152) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality (-2152) -/* prodml22:SampleQuality */ -enum class prodml22__SampleQuality { +/* prodml23:SampleQuality */ +enum class prodml23__SampleQuality { invalid = 0, unknown = 1, valid = 2 @@ -10627,11 +10627,11 @@ enum class prodml22__SampleQuality { #endif /* eml2_3ForGsoap.h:26019 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase (-2153) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase (-2153) -/* prodml22:ThermodynamicPhase */ -enum class prodml22__ThermodynamicPhase { +/* prodml23:ThermodynamicPhase */ +enum class prodml23__ThermodynamicPhase { aqueous = 0, oleic = 1, vapor = 2, @@ -10640,11 +10640,11 @@ enum class prodml22__ThermodynamicPhase { #endif /* eml2_3ForGsoap.h:26049 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind (-2154) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind (-2154) -/* prodml22:VolumeReferenceKind */ -enum class prodml22__VolumeReferenceKind { +/* prodml23:VolumeReferenceKind */ +enum class prodml23__VolumeReferenceKind { reservoir = 0, saturation_calculated = 1, saturation_measured = 2, @@ -10665,11 +10665,11 @@ enum class prodml22__VolumeReferenceKind { #endif /* eml2_3ForGsoap.h:26127 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent (-2155) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent (-2155) -/* prodml22:PhasePresent */ -enum class prodml22__PhasePresent { +/* prodml23:PhasePresent */ +enum class prodml23__PhasePresent { gas_x0020and_x0020oil_x0020and_x0020water = 0, water = 1, gas = 2, @@ -10681,11 +10681,11 @@ enum class prodml22__PhasePresent { #endif /* eml2_3ForGsoap.h:26172 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState (-2156) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState (-2156) -/* prodml22:ReservoirLifeCycleState */ -enum class prodml22__ReservoirLifeCycleState { +/* prodml23:ReservoirLifeCycleState */ +enum class prodml23__ReservoirLifeCycleState { abandoned = 0, primary_x0020production = 1, prospect = 2, @@ -10696,11 +10696,11 @@ enum class prodml22__ReservoirLifeCycleState { #endif /* eml2_3ForGsoap.h:26188 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning (-2157) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning (-2157) -/* prodml22:DataConditioning */ -enum class prodml22__DataConditioning { +/* prodml23:DataConditioning */ +enum class prodml23__DataConditioning { data_x0020outliers_x0020removed = 0, data_x0020reduced = 1, data_x0020smoothed = 2, @@ -10723,11 +10723,11 @@ enum class prodml22__DataConditioning { #endif /* eml2_3ForGsoap.h:26216 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind (-2158) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind (-2158) -/* prodml22:FluidPhaseMeasuredKind */ -enum class prodml22__FluidPhaseMeasuredKind { +/* prodml23:FluidPhaseMeasuredKind */ +enum class prodml23__FluidPhaseMeasuredKind { _3_x0020phase = 0, gas = 1, oil = 2, @@ -10737,11 +10737,11 @@ enum class prodml22__FluidPhaseMeasuredKind { #endif /* eml2_3ForGsoap.h:26231 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind (-2159) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind (-2159) -/* prodml22:TestPeriodKind */ -enum class prodml22__TestPeriodKind { +/* prodml23:TestPeriodKind */ +enum class prodml23__TestPeriodKind { buildup = 0, constant_x0020rate_x0020injection = 1, fall_off = 2, @@ -10756,22 +10756,22 @@ enum class prodml22__TestPeriodKind { #endif /* eml2_3ForGsoap.h:26251 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation (-2160) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation (-2160) -/* prodml22:TimeSeriesPointRepresentation */ -enum class prodml22__TimeSeriesPointRepresentation { +/* prodml23:TimeSeriesPointRepresentation */ +enum class prodml23__TimeSeriesPointRepresentation { point_x0020by_x0020point = 0, stepwise_x0020value_x0020at_x0020end_x0020of_x0020period = 1 }; #endif /* eml2_3ForGsoap.h:26259 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind (-2161) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind (-2161) -/* prodml22:FluidPhaseKind */ -enum class prodml22__FluidPhaseKind { +/* prodml23:FluidPhaseKind */ +enum class prodml23__FluidPhaseKind { multiphase_x0020gas_x002bwater = 0, multiphase_x0020oil_x002bgas = 1, multiphase_x0020oil_x002bwater = 2, @@ -10783,11 +10783,11 @@ enum class prodml22__FluidPhaseKind { #endif /* eml2_3ForGsoap.h:26276 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform (-2162) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform (-2162) -/* prodml22:LogLogPressureTransform */ -enum class prodml22__LogLogPressureTransform { +/* prodml23:LogLogPressureTransform */ +enum class prodml23__LogLogPressureTransform { delta_x0020pressure_x0020function = 0, delta_x0020pressure_x0020function_x002frate = 1, integral_x0020rate_x0020normal_x0020delta_x0020p_x0020funct_x002ftime = 2, @@ -10797,11 +10797,11 @@ enum class prodml22__LogLogPressureTransform { #endif /* eml2_3ForGsoap.h:26307 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform (-2163) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform (-2163) -/* prodml22:LogLogTimeTransform */ -enum class prodml22__LogLogTimeTransform { +/* prodml23:LogLogTimeTransform */ +enum class prodml23__LogLogTimeTransform { agarwal_x0020time = 0, delta_x0020time = 1, equivalent_x0020time_x0020cumulative_x002fflowrate = 2, @@ -10810,11 +10810,11 @@ enum class prodml22__LogLogTimeTransform { #endif /* eml2_3ForGsoap.h:26321 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind (-2164) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind (-2164) -/* prodml22:PressureNonLinearTransformKind */ -enum class prodml22__PressureNonLinearTransformKind { +/* prodml23:PressureNonLinearTransformKind */ +enum class prodml23__PressureNonLinearTransformKind { pressure_x0020_x0028un_transformed_x0029 = 0, pressure_x0020squared = 1, gas_x0020pseudo_pressure = 2, @@ -10824,11 +10824,11 @@ enum class prodml22__PressureNonLinearTransformKind { #endif /* eml2_3ForGsoap.h:26336 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied (-2165) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied (-2165) -/* prodml22:PseudoPressureEffectApplied */ -enum class prodml22__PseudoPressureEffectApplied { +/* prodml23:PseudoPressureEffectApplied */ +enum class prodml23__PseudoPressureEffectApplied { gas_x0020properties_x0020with_x0020pressure = 0, multiphase_x0020flow_x0020properties_x0020with_x0020pressure = 1, other = 2, @@ -10838,11 +10838,11 @@ enum class prodml22__PseudoPressureEffectApplied { #endif /* eml2_3ForGsoap.h:26351 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind (-2166) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind (-2166) -/* prodml22:TimeNonLinearTransformKind */ -enum class prodml22__TimeNonLinearTransformKind { +/* prodml23:TimeNonLinearTransformKind */ +enum class prodml23__TimeNonLinearTransformKind { material_x0020balance_x0020pseudo_time = 0, pseudo_time_x0020transform = 1, time_x0020_x0028un_transformed_x0029 = 2 @@ -10850,55 +10850,55 @@ enum class prodml22__TimeNonLinearTransformKind { #endif /* eml2_3ForGsoap.h:26360 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type (-2167) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type (-2167) -/* prodml22:Boundary1Type */ -enum class prodml22__Boundary1Type { +/* prodml23:Boundary1Type */ +enum class prodml23__Boundary1Type { constant_x0020pressure = 0, no_flow = 1 }; #endif /* eml2_3ForGsoap.h:26368 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type (-2168) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type (-2168) -/* prodml22:Boundary2Type */ -enum class prodml22__Boundary2Type { +/* prodml23:Boundary2Type */ +enum class prodml23__Boundary2Type { constant_x0020pressure = 0, no_flow = 1 }; #endif /* eml2_3ForGsoap.h:26376 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type (-2169) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type (-2169) -/* prodml22:Boundary3Type */ -enum class prodml22__Boundary3Type { +/* prodml23:Boundary3Type */ +enum class prodml23__Boundary3Type { constant_x0020pressure = 0, no_flow = 1 }; #endif /* eml2_3ForGsoap.h:26384 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type (-2170) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type (-2170) -/* prodml22:Boundary4Type */ -enum class prodml22__Boundary4Type { +/* prodml23:Boundary4Type */ +enum class prodml23__Boundary4Type { constant_x0020pressure = 0, no_flow = 1 }; #endif /* eml2_3ForGsoap.h:26392 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType (-2171) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType (-2171) -/* prodml22:FractureModelType */ -enum class prodml22__FractureModelType { +/* prodml23:FractureModelType */ +enum class prodml23__FractureModelType { compressible_x0020finite_x0020conductivity = 0, finite_x0020conductivity = 1, infinite_x0020conductivity = 2, @@ -10907,44 +10907,44 @@ enum class prodml22__FractureModelType { #endif /* eml2_3ForGsoap.h:26402 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType (-2172) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType (-2172) -/* prodml22:LowerBoundaryType */ -enum class prodml22__LowerBoundaryType { +/* prodml23:LowerBoundaryType */ +enum class prodml23__LowerBoundaryType { constant_x0020pressure = 0, no_flow = 1 }; #endif /* eml2_3ForGsoap.h:26414 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection (-2173) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection (-2173) -/* prodml22:ParameterDirection */ -enum class prodml22__ParameterDirection { +/* prodml23:ParameterDirection */ +enum class prodml23__ParameterDirection { input = 0, output = 1 }; #endif /* eml2_3ForGsoap.h:26422 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType (-2174) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType (-2174) -/* prodml22:UpperBoundaryType */ -enum class prodml22__UpperBoundaryType { +/* prodml23:UpperBoundaryType */ +enum class prodml23__UpperBoundaryType { constant_x0020pressure = 0, no_flow = 1 }; #endif /* eml2_3ForGsoap.h:26430 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType (-2175) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType (-2175) -/* prodml22:WellboreStorageMechanismType */ -enum class prodml22__WellboreStorageMechanismType { +/* prodml23:WellboreStorageMechanismType */ +enum class prodml23__WellboreStorageMechanismType { closed_x0020chamber = 0, full_x0020well = 1, rising_x0020level = 2 @@ -10952,11 +10952,11 @@ enum class prodml22__WellboreStorageMechanismType { #endif /* eml2_3ForGsoap.h:26443 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind (-2176) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind (-2176) -/* prodml22:FluidSampleKind */ -enum class prodml22__FluidSampleKind { +/* prodml23:FluidSampleKind */ +enum class prodml23__FluidSampleKind { bhs_x0020_x0020samples = 0, blend_gas = 1, blend_liquid = 2, @@ -10997,11 +10997,11 @@ enum class prodml22__FluidSampleKind { #endif /* eml2_3ForGsoap.h:26525 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction (-2177) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction (-2177) -/* prodml22:SampleAction */ -enum class prodml22__SampleAction { +/* prodml23:SampleAction */ +enum class prodml23__SampleAction { custodyTransfer = 0, destroyed = 1, sampleTransfer = 2, @@ -11012,11 +11012,11 @@ enum class prodml22__SampleAction { #endif /* eml2_3ForGsoap.h:26565 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType (-2178) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType (-2178) -/* prodml22:BalanceDestinationType */ -enum class prodml22__BalanceDestinationType { +/* prodml23:BalanceDestinationType */ +enum class prodml23__BalanceDestinationType { harbor = 0, terminal = 1, unknown = 2 @@ -11024,11 +11024,11 @@ enum class prodml22__BalanceDestinationType { #endif /* eml2_3ForGsoap.h:26590 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind (-2179) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind (-2179) -/* prodml22:BalanceEventKind */ -enum class prodml22__BalanceEventKind { +/* prodml23:BalanceEventKind */ +enum class prodml23__BalanceEventKind { bill_x0020of_x0020lading = 0, transaction_x0020date = 1, unknown = 2 @@ -11036,11 +11036,11 @@ enum class prodml22__BalanceEventKind { #endif /* eml2_3ForGsoap.h:26615 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart (-2180) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart (-2180) -/* prodml22:BalanceFlowPart */ -enum class prodml22__BalanceFlowPart { +/* prodml23:BalanceFlowPart */ +enum class prodml23__BalanceFlowPart { adjusted_x0020closing = 0, closing_x0020balance = 1, closing_x0020storage_x0020inventory = 2, @@ -11067,11 +11067,11 @@ enum class prodml22__BalanceFlowPart { #endif /* eml2_3ForGsoap.h:26735 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod (-2181) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod (-2181) -/* prodml22:CalculationMethod */ -enum class prodml22__CalculationMethod { +/* prodml23:CalculationMethod */ +enum class prodml23__CalculationMethod { none = 0, step_x0020wise_x0020constant = 1, unknown = 2 @@ -11079,11 +11079,11 @@ enum class prodml22__CalculationMethod { #endif /* eml2_3ForGsoap.h:26760 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis (-2182) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis (-2182) -/* prodml22:FluidComponentBasis */ -enum class prodml22__FluidComponentBasis { +/* prodml23:FluidComponentBasis */ +enum class prodml23__FluidComponentBasis { _1 = 1, _2 = 2, _3 = 3, @@ -11184,11 +11184,11 @@ enum class prodml22__FluidComponentBasis { #endif /* eml2_3ForGsoap.h:27250 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod (-2183) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod (-2183) -/* prodml22:WellOperationMethod */ -enum class prodml22__WellOperationMethod { +/* prodml23:WellOperationMethod */ +enum class prodml23__WellOperationMethod { continuous_x0020gas_x0020lift = 0, electric_x0020submersible_x0020pump_x0020lift = 1, foam_x0020lift = 2, @@ -11204,11 +11204,11 @@ enum class prodml22__WellOperationMethod { #endif /* eml2_3ForGsoap.h:27315 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval (-2184) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval (-2184) -/* prodml22:EndpointQualifierInterval */ -enum class prodml22__EndpointQualifierInterval { +/* prodml23:EndpointQualifierInterval */ +enum class prodml23__EndpointQualifierInterval { exclusive = 0, inclusive = 1, unknown = 2 @@ -11216,11 +11216,11 @@ enum class prodml22__EndpointQualifierInterval { #endif /* eml2_3ForGsoap.h:27340 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword (-2185) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword (-2185) -/* prodml22:TimeSeriesKeyword */ -enum class prodml22__TimeSeriesKeyword { +/* prodml23:TimeSeriesKeyword */ +enum class prodml23__TimeSeriesKeyword { asset_x0020identifier = 0, flow = 1, product = 2, @@ -12118,159 +12118,164 @@ class eml23__NestedColumnBasedTable; /* eml2_3ForGsoap.h:1865 */ class eml23__FailingRule; /* eml2_3ForGsoap.h:1869 */ class eml23__IndexRange; /* eml2_3ForGsoap.h:1871 */ class eml23__AbstractGraphicalInformation; /* eml2_3ForGsoap.h:1873 */ -class prodml22__AbstractPvtModel; /* eml2_3ForGsoap.h:1897 */ -class prodml22__BinaryInteractionCoefficientSet; /* eml2_3ForGsoap.h:1907 */ -class prodml22__ComponentPropertySet; /* eml2_3ForGsoap.h:1911 */ -class prodml22__CustomPvtModelExtension; /* eml2_3ForGsoap.h:1921 */ -class prodml22__CustomPvtModelParameter; /* eml2_3ForGsoap.h:1923 */ -class prodml22__FluidCharacterizationModel; /* eml2_3ForGsoap.h:1939 */ -class prodml22__FluidCharacterizationParameter; /* eml2_3ForGsoap.h:1941 */ -class prodml22__FluidCharacterizationParameterSet; /* eml2_3ForGsoap.h:1943 */ -class prodml22__FluidCharacterizationSource; /* eml2_3ForGsoap.h:1945 */ -class prodml22__FluidCharacterizationTable; /* eml2_3ForGsoap.h:1947 */ -class prodml22__FluidCharacterizationTableColumn; /* eml2_3ForGsoap.h:1949 */ -class prodml22__FluidCharacterizationTableFormat; /* eml2_3ForGsoap.h:1951 */ -class prodml22__FluidCharacterizationTableFormatSet; /* eml2_3ForGsoap.h:1953 */ -class prodml22__FluidComponentProperty; /* eml2_3ForGsoap.h:1955 */ -class prodml22__PrsvParameter; /* eml2_3ForGsoap.h:1977 */ -class prodml22__PvtModelParameterSet; /* eml2_3ForGsoap.h:1981 */ -class prodml22__ReferenceSeparatorStage; /* eml2_3ForGsoap.h:1983 */ -class prodml22__AbstractDateTimeClass; /* eml2_3ForGsoap.h:1993 */ -class prodml22__AbstractFluidComponent; /* eml2_3ForGsoap.h:1995 */ -class prodml22__AbstractProductQuantity; /* eml2_3ForGsoap.h:1997 */ -class prodml22__CalibrationParameter; /* eml2_3ForGsoap.h:1999 */ -class prodml22__DatedComment; /* eml2_3ForGsoap.h:2001 */ -class prodml22__EndpointQualifiedDate; /* eml2_3ForGsoap.h:2003 */ -class prodml22__EndpointQualifiedDateTime; /* eml2_3ForGsoap.h:2005 */ -class prodml22__FacilityIdentifier; /* eml2_3ForGsoap.h:2007 */ -class prodml22__FacilityIdentifierStruct; /* eml2_3ForGsoap.h:2009 */ -class prodml22__FluidComponentCatalog; /* eml2_3ForGsoap.h:2011 */ -class prodml22__FluidComponentFraction; /* eml2_3ForGsoap.h:2013 */ -class prodml22__GeneralMeasureType; /* eml2_3ForGsoap.h:2017 */ -class prodml22__GeographicContext; /* eml2_3ForGsoap.h:2021 */ -class prodml22__LiquidComposition; /* eml2_3ForGsoap.h:2027 */ -class prodml22__NorthSeaOffshore; /* eml2_3ForGsoap.h:2033 */ -class prodml22__OffshoreLocation; /* eml2_3ForGsoap.h:2035 */ -class prodml22__OverallComposition; /* eml2_3ForGsoap.h:2037 */ -class prodml22__ProductFlowExternalReference; /* eml2_3ForGsoap.h:2041 */ -class prodml22__ProductFlowNetwork; /* eml2_3ForGsoap.h:2043 */ -class prodml22__VaporComposition; /* eml2_3ForGsoap.h:2061 */ -class prodml22__AbstractGasProducedRatioVolume; /* eml2_3ForGsoap.h:2063 */ -class prodml22__AbstractLiquidDropoutPercVolume; /* eml2_3ForGsoap.h:2065 */ -class prodml22__AbstractOilVolShrinkage; /* eml2_3ForGsoap.h:2067 */ -class prodml22__AtmosphericFlashTestAndCompositionalAnalysis; /* eml2_3ForGsoap.h:2069 */ -class prodml22__ConstantCompositionExpansionTest; /* eml2_3ForGsoap.h:2071 */ -class prodml22__ConstantCompositionExpansionTestStep; /* eml2_3ForGsoap.h:2073 */ -class prodml22__ConstantVolumeDepletionTest; /* eml2_3ForGsoap.h:2075 */ -class prodml22__DifferentialLiberationTest; /* eml2_3ForGsoap.h:2081 */ -class prodml22__FlashedGas; /* eml2_3ForGsoap.h:2083 */ -class prodml22__FlashedLiquid; /* eml2_3ForGsoap.h:2085 */ -class prodml22__FluidAnalysisReport; /* eml2_3ForGsoap.h:2089 */ -class prodml22__FluidCvdTestStep; /* eml2_3ForGsoap.h:2091 */ -class prodml22__FluidDifferentialLiberationTestStep; /* eml2_3ForGsoap.h:2093 */ -class prodml22__FluidSeparatorTest; /* eml2_3ForGsoap.h:2095 */ -class prodml22__FluidSeparatorTestStep; /* eml2_3ForGsoap.h:2097 */ -class prodml22__FluidVolumeReference; /* eml2_3ForGsoap.h:2099 */ -class prodml22__InjectedGas; /* eml2_3ForGsoap.h:2103 */ -class prodml22__InterfacialTensionTest; /* eml2_3ForGsoap.h:2105 */ -class prodml22__InterfacialTensionTestStep; /* eml2_3ForGsoap.h:2107 */ -class prodml22__MassBalance; /* eml2_3ForGsoap.h:2113 */ -class prodml22__MassIn; /* eml2_3ForGsoap.h:2115 */ -class prodml22__MassOut; /* eml2_3ForGsoap.h:2117 */ -class prodml22__MultipleContactMiscibilityTest; /* eml2_3ForGsoap.h:2119 */ -class prodml22__NonHydrocarbonTest; /* eml2_3ForGsoap.h:2123 */ -class prodml22__OtherMeasurementTest; /* eml2_3ForGsoap.h:2131 */ -class prodml22__OtherMeasurementTestStep; /* eml2_3ForGsoap.h:2133 */ -class prodml22__PhaseDensity; /* eml2_3ForGsoap.h:2135 */ -class prodml22__PhaseViscosity; /* eml2_3ForGsoap.h:2137 */ -class prodml22__ProducedGasProperties; /* eml2_3ForGsoap.h:2139 */ -class prodml22__ProducedOilProperties; /* eml2_3ForGsoap.h:2141 */ -class prodml22__ReportLocation; /* eml2_3ForGsoap.h:2147 */ -class prodml22__SampleContaminant; /* eml2_3ForGsoap.h:2149 */ -class prodml22__SampleIntegrityAndPreparation; /* eml2_3ForGsoap.h:2151 */ -class prodml22__SampleRestoration; /* eml2_3ForGsoap.h:2153 */ -class prodml22__Sara; /* eml2_3ForGsoap.h:2155 */ -class prodml22__SaturationTest; /* eml2_3ForGsoap.h:2161 */ -class prodml22__SeparatorConditions; /* eml2_3ForGsoap.h:2163 */ -class prodml22__SlimTubeSpecification; /* eml2_3ForGsoap.h:2165 */ -class prodml22__SlimTubeTest; /* eml2_3ForGsoap.h:2167 */ -class prodml22__SlimTubeTestStep; /* eml2_3ForGsoap.h:2169 */ -class prodml22__SlimTubeTestVolumeStep; /* eml2_3ForGsoap.h:2171 */ -class prodml22__STOAnalysis; /* eml2_3ForGsoap.h:2173 */ -class prodml22__STOFlashedLiquid; /* eml2_3ForGsoap.h:2175 */ -class prodml22__SwellingTest; /* eml2_3ForGsoap.h:2177 */ -class prodml22__SwellingTestStep; /* eml2_3ForGsoap.h:2179 */ -class prodml22__VaporLiquidEquilibriumTest; /* eml2_3ForGsoap.h:2181 */ -class prodml22__ViscosityAtTemperature; /* eml2_3ForGsoap.h:2183 */ -class prodml22__WaterAnalysisTest; /* eml2_3ForGsoap.h:2187 */ -class prodml22__WaterAnalysisTestStep; /* eml2_3ForGsoap.h:2189 */ -class prodml22__WaterSampleComponent; /* eml2_3ForGsoap.h:2191 */ -class prodml22__AbstractFlowTestData; /* eml2_3ForGsoap.h:2195 */ -class prodml22__FlowTestLocation; /* eml2_3ForGsoap.h:2207 */ -class prodml22__FlowTestMeasurementSet; /* eml2_3ForGsoap.h:2209 */ -class prodml22__ProductRate; /* eml2_3ForGsoap.h:2223 */ -class prodml22__TestPeriod; /* eml2_3ForGsoap.h:2225 */ -class prodml22__WellFlowingCondition; /* eml2_3ForGsoap.h:2231 */ -class prodml22__ReportingHierarchyNode; /* eml2_3ForGsoap.h:2239 */ -class prodml22__AbstractAnalysis; /* eml2_3ForGsoap.h:2241 */ -class prodml22__AbstractDeconvolutionOutput; /* eml2_3ForGsoap.h:2243 */ -class prodml22__AbstractRateHistory; /* eml2_3ForGsoap.h:2247 */ -class prodml22__AnalysisLine; /* eml2_3ForGsoap.h:2249 */ -class prodml22__CompressibilityParameters; /* eml2_3ForGsoap.h:2253 */ -class prodml22__DeconvolutionOutput; /* eml2_3ForGsoap.h:2257 */ -class prodml22__DistributedParametersSubModel; /* eml2_3ForGsoap.h:2265 */ -class prodml22__InterferingFlowTestInterval; /* eml2_3ForGsoap.h:2267 */ -class prodml22__InternalFaultSubModel; /* eml2_3ForGsoap.h:2269 */ -class prodml22__LayerModel; /* eml2_3ForGsoap.h:2271 */ -class prodml22__LayerToLayerConnection; /* eml2_3ForGsoap.h:2273 */ -class prodml22__LocationIn2D; /* eml2_3ForGsoap.h:2275 */ -class prodml22__LogLogAnalysis; /* eml2_3ForGsoap.h:2277 */ -class prodml22__ReservoirZoneSubModel; /* eml2_3ForGsoap.h:2299 */ -class prodml22__ResqmlModelRef; /* eml2_3ForGsoap.h:2301 */ -class prodml22__SingleBoundarySubModel; /* eml2_3ForGsoap.h:2305 */ -class prodml22__SingleFractureSubModel; /* eml2_3ForGsoap.h:2309 */ -class prodml22__SpecializedAnalysis; /* eml2_3ForGsoap.h:2311 */ -class prodml22__AbstractModelSection; /* eml2_3ForGsoap.h:2315 */ -class prodml22__AbstractParameter; /* eml2_3ForGsoap.h:2413 */ -class prodml22__FluidSampleAcquisitionJobSource; /* eml2_3ForGsoap.h:2551 */ -class prodml22__FluidSampleChainOfCustodyEvent; /* eml2_3ForGsoap.h:2553 */ -class prodml22__RecombinedSampleFraction; /* eml2_3ForGsoap.h:2555 */ -class prodml22__SampleRecombinationSpecification; /* eml2_3ForGsoap.h:2557 */ -class prodml22__FluidSampleAcquisition; /* eml2_3ForGsoap.h:2565 */ -class prodml22__CommonPropertiesProductVolume; /* eml2_3ForGsoap.h:2577 */ -class prodml22__AbstractMeasureData; /* eml2_3ForGsoap.h:2579 */ -union _prodml22__union_AbstractRefProductFlow; /* eml2_3ForGsoap.h:55050 */ -class prodml22__AbstractRefProductFlow; /* eml2_3ForGsoap.h:2581 */ -class prodml22__AbstractRelatedFacilityObject; /* eml2_3ForGsoap.h:2583 */ -class prodml22__CurveDefinition; /* eml2_3ForGsoap.h:2587 */ -class prodml22__OwnershipBusinessAcct; /* eml2_3ForGsoap.h:2595 */ -class prodml22__ProductVolumeAlert; /* eml2_3ForGsoap.h:2601 */ -class prodml22__ProductVolumeBalanceDetail; /* eml2_3ForGsoap.h:2603 */ -class prodml22__ProductVolumeBalanceEvent; /* eml2_3ForGsoap.h:2605 */ -class prodml22__ProductVolumeBalanceSet; /* eml2_3ForGsoap.h:2607 */ -class prodml22__ProductVolumeBusinessSubUnit; /* eml2_3ForGsoap.h:2609 */ -class prodml22__ProductVolumeBusinessUnit; /* eml2_3ForGsoap.h:2611 */ -class prodml22__ProductVolumeComponentContent; /* eml2_3ForGsoap.h:2613 */ -class prodml22__ProductVolumeDestination; /* eml2_3ForGsoap.h:2615 */ -class prodml22__ProductVolumeFacility; /* eml2_3ForGsoap.h:2617 */ -class prodml22__ProductVolumeFlow; /* eml2_3ForGsoap.h:2619 */ -class prodml22__ProductVolumeParameterSet; /* eml2_3ForGsoap.h:2621 */ -class prodml22__ProductVolumeParameterValue; /* eml2_3ForGsoap.h:2623 */ -class prodml22__ProductVolumePeriod; /* eml2_3ForGsoap.h:2625 */ -class prodml22__ProductVolumePortDifference; /* eml2_3ForGsoap.h:2627 */ -class prodml22__ProductVolumeProduct; /* eml2_3ForGsoap.h:2629 */ -class prodml22__ProductVolumeRelatedFacility; /* eml2_3ForGsoap.h:2631 */ -class prodml22__ConnectedNode; /* eml2_3ForGsoap.h:2637 */ -class prodml22__ExpectedFlowQualifier; /* eml2_3ForGsoap.h:2639 */ -class prodml22__ProductFlowChangeLog; /* eml2_3ForGsoap.h:2641 */ -class prodml22__ProductFlowExpectedUnitProperty; /* eml2_3ForGsoap.h:2643 */ -class prodml22__ProductFlowExternalPort; /* eml2_3ForGsoap.h:2645 */ -class prodml22__ProductFlowNetworkPlan; /* eml2_3ForGsoap.h:2649 */ -class prodml22__ProductFlowPort; /* eml2_3ForGsoap.h:2651 */ -class prodml22__ProductFlowUnit; /* eml2_3ForGsoap.h:2655 */ -class prodml22__RelativeCoordinate; /* eml2_3ForGsoap.h:2659 */ -class prodml22__AbstractValue; /* eml2_3ForGsoap.h:2661 */ -class prodml22__TimeSeriesThreshold; /* eml2_3ForGsoap.h:2681 */ +class prodml23__AbstractPvtModel; /* eml2_3ForGsoap.h:1897 */ +class prodml23__BinaryInteractionCoefficientSet; /* eml2_3ForGsoap.h:1907 */ +class prodml23__ComponentPropertySet; /* eml2_3ForGsoap.h:1911 */ +class prodml23__CustomPvtModelExtension; /* eml2_3ForGsoap.h:1921 */ +class prodml23__CustomPvtModelParameter; /* eml2_3ForGsoap.h:1923 */ +class prodml23__FluidCharacterizationModel; /* eml2_3ForGsoap.h:1939 */ +class prodml23__FluidCharacterizationParameter; /* eml2_3ForGsoap.h:1941 */ +class prodml23__FluidCharacterizationParameterSet; /* eml2_3ForGsoap.h:1943 */ +class prodml23__FluidCharacterizationSource; /* eml2_3ForGsoap.h:1945 */ +class prodml23__FluidCharacterizationTable; /* eml2_3ForGsoap.h:1947 */ +class prodml23__FluidCharacterizationTableColumn; /* eml2_3ForGsoap.h:1949 */ +class prodml23__FluidCharacterizationTableFormat; /* eml2_3ForGsoap.h:1951 */ +class prodml23__FluidCharacterizationTableFormatSet; /* eml2_3ForGsoap.h:1953 */ +class prodml23__FluidComponentProperty; /* eml2_3ForGsoap.h:1955 */ +class prodml23__PrsvParameter; /* eml2_3ForGsoap.h:1977 */ +class prodml23__PvtModelParameterSet; /* eml2_3ForGsoap.h:1981 */ +class prodml23__ReferenceSeparatorStage; /* eml2_3ForGsoap.h:1983 */ +class prodml23__AbstractDateTimeClass; /* eml2_3ForGsoap.h:1993 */ +class prodml23__AbstractFluidComponent; /* eml2_3ForGsoap.h:1995 */ +class prodml23__AbstractProductQuantity; /* eml2_3ForGsoap.h:1997 */ +class prodml23__CalibrationParameter; /* eml2_3ForGsoap.h:1999 */ +class prodml23__DatedComment; /* eml2_3ForGsoap.h:2001 */ +class prodml23__EndpointQualifiedDate; /* eml2_3ForGsoap.h:2003 */ +class prodml23__EndpointQualifiedDateTime; /* eml2_3ForGsoap.h:2005 */ +class prodml23__FacilityIdentifier; /* eml2_3ForGsoap.h:2007 */ +class prodml23__FacilityIdentifierStruct; /* eml2_3ForGsoap.h:2009 */ +class prodml23__FluidComponentCatalog; /* eml2_3ForGsoap.h:2011 */ +class prodml23__FluidComponentFraction; /* eml2_3ForGsoap.h:2013 */ +class prodml23__GeneralMeasureType; /* eml2_3ForGsoap.h:2017 */ +class prodml23__GeographicContext; /* eml2_3ForGsoap.h:2021 */ +class prodml23__LiquidComposition; /* eml2_3ForGsoap.h:2027 */ +class prodml23__NorthSeaOffshore; /* eml2_3ForGsoap.h:2033 */ +class prodml23__OffshoreLocation; /* eml2_3ForGsoap.h:2035 */ +class prodml23__OverallComposition; /* eml2_3ForGsoap.h:2037 */ +class prodml23__ProductFlowExternalReference; /* eml2_3ForGsoap.h:2041 */ +class prodml23__ProductFlowNetwork; /* eml2_3ForGsoap.h:2043 */ +class prodml23__VaporComposition; /* eml2_3ForGsoap.h:2061 */ +class prodml23__AbstractGasProducedRatioVolume; /* eml2_3ForGsoap.h:2063 */ +class prodml23__AbstractLiquidDropoutPercVolume; /* eml2_3ForGsoap.h:2065 */ +class prodml23__AbstractOilVolShrinkage; /* eml2_3ForGsoap.h:2067 */ +class prodml23__AtmosphericFlashTestAndCompositionalAnalysis; /* eml2_3ForGsoap.h:2069 */ +class prodml23__ConstantCompositionExpansionTest; /* eml2_3ForGsoap.h:2071 */ +class prodml23__ConstantCompositionExpansionTestStep; /* eml2_3ForGsoap.h:2073 */ +class prodml23__ConstantVolumeDepletionTest; /* eml2_3ForGsoap.h:2075 */ +class prodml23__DifferentialLiberationTest; /* eml2_3ForGsoap.h:2081 */ +class prodml23__FlashedGas; /* eml2_3ForGsoap.h:2083 */ +class prodml23__FlashedLiquid; /* eml2_3ForGsoap.h:2085 */ +class prodml23__FluidAnalysisReport; /* eml2_3ForGsoap.h:2089 */ +class prodml23__FluidCvdTestStep; /* eml2_3ForGsoap.h:2091 */ +class prodml23__FluidDifferentialLiberationTestStep; /* eml2_3ForGsoap.h:2093 */ +class prodml23__FluidSeparatorTest; /* eml2_3ForGsoap.h:2095 */ +class prodml23__FluidSeparatorTestStep; /* eml2_3ForGsoap.h:2097 */ +class prodml23__FluidVolumeReference; /* eml2_3ForGsoap.h:2099 */ +class prodml23__InjectedGas; /* eml2_3ForGsoap.h:2103 */ +class prodml23__InterfacialTensionTest; /* eml2_3ForGsoap.h:2105 */ +class prodml23__InterfacialTensionTestStep; /* eml2_3ForGsoap.h:2107 */ +class prodml23__MassBalance; /* eml2_3ForGsoap.h:2113 */ +class prodml23__MassIn; /* eml2_3ForGsoap.h:2115 */ +class prodml23__MassOut; /* eml2_3ForGsoap.h:2117 */ +class prodml23__MultipleContactMiscibilityTest; /* eml2_3ForGsoap.h:2119 */ +class prodml23__NonHydrocarbonTest; /* eml2_3ForGsoap.h:2123 */ +class prodml23__OilCompressibility; /* eml2_3ForGsoap.h:2125 */ +class prodml23__OtherMeasurementTest; /* eml2_3ForGsoap.h:2131 */ +class prodml23__OtherMeasurementTestStep; /* eml2_3ForGsoap.h:2133 */ +class prodml23__PhaseDensity; /* eml2_3ForGsoap.h:2135 */ +class prodml23__PhaseViscosity; /* eml2_3ForGsoap.h:2137 */ +class prodml23__ProducedGasProperties; /* eml2_3ForGsoap.h:2139 */ +class prodml23__ProducedOilProperties; /* eml2_3ForGsoap.h:2141 */ +class prodml23__RefInjectedGasAdded; /* eml2_3ForGsoap.h:2143 */ +class prodml23__RelativeVolumeRatio; /* eml2_3ForGsoap.h:2145 */ +class prodml23__ReportLocation; /* eml2_3ForGsoap.h:2147 */ +class prodml23__SampleContaminant; /* eml2_3ForGsoap.h:2149 */ +class prodml23__SampleIntegrityAndPreparation; /* eml2_3ForGsoap.h:2151 */ +class prodml23__SampleRestoration; /* eml2_3ForGsoap.h:2153 */ +class prodml23__Sara; /* eml2_3ForGsoap.h:2155 */ +class prodml23__SaturationPressure; /* eml2_3ForGsoap.h:2157 */ +class prodml23__SaturationTemperature; /* eml2_3ForGsoap.h:2159 */ +class prodml23__SaturationTest; /* eml2_3ForGsoap.h:2161 */ +class prodml23__SeparatorConditions; /* eml2_3ForGsoap.h:2163 */ +class prodml23__SlimTubeSpecification; /* eml2_3ForGsoap.h:2165 */ +class prodml23__SlimTubeTest; /* eml2_3ForGsoap.h:2167 */ +class prodml23__SlimTubeTestStep; /* eml2_3ForGsoap.h:2169 */ +class prodml23__SlimTubeTestVolumeStep; /* eml2_3ForGsoap.h:2171 */ +class prodml23__STOAnalysis; /* eml2_3ForGsoap.h:2173 */ +class prodml23__STOFlashedLiquid; /* eml2_3ForGsoap.h:2175 */ +class prodml23__SwellingTest; /* eml2_3ForGsoap.h:2177 */ +class prodml23__SwellingTestStep; /* eml2_3ForGsoap.h:2179 */ +class prodml23__VaporLiquidEquilibriumTest; /* eml2_3ForGsoap.h:2181 */ +class prodml23__ViscosityAtTemperature; /* eml2_3ForGsoap.h:2183 */ +class prodml23__WaterAnalysisTest; /* eml2_3ForGsoap.h:2187 */ +class prodml23__WaterAnalysisTestStep; /* eml2_3ForGsoap.h:2189 */ +class prodml23__WaterSampleComponent; /* eml2_3ForGsoap.h:2191 */ +class prodml23__AbstractFlowTestData; /* eml2_3ForGsoap.h:2195 */ +class prodml23__FlowTestLocation; /* eml2_3ForGsoap.h:2207 */ +class prodml23__FlowTestMeasurementSet; /* eml2_3ForGsoap.h:2209 */ +class prodml23__ProductRate; /* eml2_3ForGsoap.h:2223 */ +class prodml23__TestPeriod; /* eml2_3ForGsoap.h:2225 */ +class prodml23__WellFlowingCondition; /* eml2_3ForGsoap.h:2231 */ +class prodml23__ReportingHierarchyNode; /* eml2_3ForGsoap.h:2239 */ +class prodml23__AbstractAnalysis; /* eml2_3ForGsoap.h:2241 */ +class prodml23__AbstractDeconvolutionOutput; /* eml2_3ForGsoap.h:2243 */ +class prodml23__AbstractRateHistory; /* eml2_3ForGsoap.h:2247 */ +class prodml23__AnalysisLine; /* eml2_3ForGsoap.h:2249 */ +class prodml23__CompressibilityParameters; /* eml2_3ForGsoap.h:2253 */ +class prodml23__DeconvolutionOutput; /* eml2_3ForGsoap.h:2257 */ +class prodml23__DistributedParametersSubModel; /* eml2_3ForGsoap.h:2265 */ +class prodml23__InterferingFlowTestInterval; /* eml2_3ForGsoap.h:2267 */ +class prodml23__InternalFaultSubModel; /* eml2_3ForGsoap.h:2269 */ +class prodml23__LayerModel; /* eml2_3ForGsoap.h:2271 */ +class prodml23__LayerToLayerConnection; /* eml2_3ForGsoap.h:2273 */ +class prodml23__LocationIn2D; /* eml2_3ForGsoap.h:2275 */ +class prodml23__LogLogAnalysis; /* eml2_3ForGsoap.h:2277 */ +class prodml23__ReservoirZoneSubModel; /* eml2_3ForGsoap.h:2299 */ +class prodml23__ResqmlModelRef; /* eml2_3ForGsoap.h:2301 */ +class prodml23__SingleBoundarySubModel; /* eml2_3ForGsoap.h:2305 */ +class prodml23__SingleFractureSubModel; /* eml2_3ForGsoap.h:2309 */ +class prodml23__SpecializedAnalysis; /* eml2_3ForGsoap.h:2311 */ +class prodml23__AbstractModelSection; /* eml2_3ForGsoap.h:2315 */ +class prodml23__AbstractParameter; /* eml2_3ForGsoap.h:2413 */ +class prodml23__FluidSampleAcquisitionJobSource; /* eml2_3ForGsoap.h:2551 */ +class prodml23__FluidSampleChainOfCustodyEvent; /* eml2_3ForGsoap.h:2553 */ +class prodml23__RecombinedSampleFraction; /* eml2_3ForGsoap.h:2555 */ +class prodml23__SampleRecombinationSpecification; /* eml2_3ForGsoap.h:2557 */ +class prodml23__FluidSampleAcquisition; /* eml2_3ForGsoap.h:2565 */ +class prodml23__CommonPropertiesProductVolume; /* eml2_3ForGsoap.h:2577 */ +class prodml23__AbstractMeasureData; /* eml2_3ForGsoap.h:2579 */ +union _prodml23__union_AbstractRefProductFlow; /* eml2_3ForGsoap.h:55205 */ +class prodml23__AbstractRefProductFlow; /* eml2_3ForGsoap.h:2581 */ +class prodml23__AbstractRelatedFacilityObject; /* eml2_3ForGsoap.h:2583 */ +class prodml23__CurveDefinition; /* eml2_3ForGsoap.h:2587 */ +class prodml23__OwnershipBusinessAcct; /* eml2_3ForGsoap.h:2595 */ +class prodml23__ProductVolumeAlert; /* eml2_3ForGsoap.h:2601 */ +class prodml23__ProductVolumeBalanceDetail; /* eml2_3ForGsoap.h:2603 */ +class prodml23__ProductVolumeBalanceEvent; /* eml2_3ForGsoap.h:2605 */ +class prodml23__ProductVolumeBalanceSet; /* eml2_3ForGsoap.h:2607 */ +class prodml23__ProductVolumeBusinessSubUnit; /* eml2_3ForGsoap.h:2609 */ +class prodml23__ProductVolumeBusinessUnit; /* eml2_3ForGsoap.h:2611 */ +class prodml23__ProductVolumeComponentContent; /* eml2_3ForGsoap.h:2613 */ +class prodml23__ProductVolumeDestination; /* eml2_3ForGsoap.h:2615 */ +class prodml23__ProductVolumeFacility; /* eml2_3ForGsoap.h:2617 */ +class prodml23__ProductVolumeFlow; /* eml2_3ForGsoap.h:2619 */ +class prodml23__ProductVolumeParameterSet; /* eml2_3ForGsoap.h:2621 */ +class prodml23__ProductVolumeParameterValue; /* eml2_3ForGsoap.h:2623 */ +class prodml23__ProductVolumePeriod; /* eml2_3ForGsoap.h:2625 */ +class prodml23__ProductVolumePortDifference; /* eml2_3ForGsoap.h:2627 */ +class prodml23__ProductVolumeProduct; /* eml2_3ForGsoap.h:2629 */ +class prodml23__ProductVolumeRelatedFacility; /* eml2_3ForGsoap.h:2631 */ +class prodml23__ConnectedNode; /* eml2_3ForGsoap.h:2637 */ +class prodml23__ExpectedFlowQualifier; /* eml2_3ForGsoap.h:2639 */ +class prodml23__ProductFlowChangeLog; /* eml2_3ForGsoap.h:2641 */ +class prodml23__ProductFlowExpectedUnitProperty; /* eml2_3ForGsoap.h:2643 */ +class prodml23__ProductFlowExternalPort; /* eml2_3ForGsoap.h:2645 */ +class prodml23__ProductFlowNetworkPlan; /* eml2_3ForGsoap.h:2649 */ +class prodml23__ProductFlowPort; /* eml2_3ForGsoap.h:2651 */ +class prodml23__ProductFlowUnit; /* eml2_3ForGsoap.h:2655 */ +class prodml23__RelativeCoordinate; /* eml2_3ForGsoap.h:2659 */ +class prodml23__AbstractValue; /* eml2_3ForGsoap.h:2661 */ +class prodml23__TimeSeriesThreshold; /* eml2_3ForGsoap.h:2681 */ class resqml22__AbstractGeometry; /* eml2_3ForGsoap.h:2695 */ class resqml22__AbstractParametricLineArray; /* eml2_3ForGsoap.h:2697 */ class resqml22__AbstractPoint3dArray; /* eml2_3ForGsoap.h:2703 */ @@ -12477,145 +12482,145 @@ class eml23__DataobjectCollection; /* eml2_3ForGsoap.h:1857 */ class eml23__ColumnBasedTable; /* eml2_3ForGsoap.h:1863 */ class eml23__DataAssuranceRecord; /* eml2_3ForGsoap.h:1867 */ class eml23__GraphicalInformationSet; /* eml2_3ForGsoap.h:1875 */ -class prodml22__AbstractCompositionalModel; /* eml2_3ForGsoap.h:1877 */ -class prodml22__AbstractCorrelationModel; /* eml2_3ForGsoap.h:1879 */ -class prodml22__FluidCharacterization; /* eml2_3ForGsoap.h:1937 */ -class prodml22__FormationWater; /* eml2_3ForGsoap.h:2015 */ -class prodml22__GeneralQualifiedMeasure; /* eml2_3ForGsoap.h:2019 */ -class prodml22__IntegerQualifiedCount; /* eml2_3ForGsoap.h:2023 */ -class prodml22__KindQualifiedString; /* eml2_3ForGsoap.h:2025 */ -class prodml22__NaturalGas; /* eml2_3ForGsoap.h:2031 */ -class prodml22__PlusFluidComponent; /* eml2_3ForGsoap.h:2039 */ -class prodml22__ProductFluid; /* eml2_3ForGsoap.h:2045 */ -class prodml22__PseudoFluidComponent; /* eml2_3ForGsoap.h:2047 */ -class prodml22__PureFluidComponent; /* eml2_3ForGsoap.h:2049 */ -class prodml22__ServiceFluid; /* eml2_3ForGsoap.h:2051 */ -class prodml22__StartEndDate; /* eml2_3ForGsoap.h:2053 */ -class prodml22__StartEndTime; /* eml2_3ForGsoap.h:2055 */ -class prodml22__StockTankOil; /* eml2_3ForGsoap.h:2057 */ -class prodml22__SulfurFluidComponent; /* eml2_3ForGsoap.h:2059 */ -class prodml22__CumulativeGasProducedRatioStd; /* eml2_3ForGsoap.h:2077 */ -class prodml22__CumulativeGasProducedVol; /* eml2_3ForGsoap.h:2079 */ -class prodml22__FluidAnalysis; /* eml2_3ForGsoap.h:2087 */ -class prodml22__LiquidDropoutFraction; /* eml2_3ForGsoap.h:2109 */ -class prodml22__LiquidVolume; /* eml2_3ForGsoap.h:2111 */ -class prodml22__OilShrinkageFactor; /* eml2_3ForGsoap.h:2127 */ -class prodml22__OilVolume; /* eml2_3ForGsoap.h:2129 */ -class prodml22__FluidSystem; /* eml2_3ForGsoap.h:2193 */ -class prodml22__AbstractPtaFlowData; /* eml2_3ForGsoap.h:2197 */ -class prodml22__Channel; /* eml2_3ForGsoap.h:2199 */ -class prodml22__ChannelSet; /* eml2_3ForGsoap.h:2201 */ -class prodml22__FlowTestActivity; /* eml2_3ForGsoap.h:2205 */ -class prodml22__OtherData; /* eml2_3ForGsoap.h:2217 */ -class prodml22__Facility; /* eml2_3ForGsoap.h:2233 */ -class prodml22__ReportingEntity; /* eml2_3ForGsoap.h:2235 */ -class prodml22__ReportingHierarchy; /* eml2_3ForGsoap.h:2237 */ -class prodml22__AbstractPtaPressureData; /* eml2_3ForGsoap.h:2245 */ -class prodml22__ChannelFlowrateData; /* eml2_3ForGsoap.h:2251 */ -class prodml22__DeconvolutionMultipleOutput; /* eml2_3ForGsoap.h:2255 */ -class prodml22__DeconvolutionSingleOutput; /* eml2_3ForGsoap.h:2259 */ -class prodml22__PressureTransientAnalysis; /* eml2_3ForGsoap.h:2291 */ -class prodml22__PtaAnalysis; /* eml2_3ForGsoap.h:2293 */ -class prodml22__PtaDataPreProcess; /* eml2_3ForGsoap.h:2295 */ -class prodml22__PtaDeconvolution; /* eml2_3ForGsoap.h:2297 */ -class prodml22__RtaAnalysis; /* eml2_3ForGsoap.h:2303 */ -class prodml22__SingleFlowrateData; /* eml2_3ForGsoap.h:2307 */ -class prodml22__TestPeriodsFlowrateData; /* eml2_3ForGsoap.h:2313 */ -class prodml22__BoundaryBaseModel; /* eml2_3ForGsoap.h:2317 */ -class prodml22__NearWellboreBaseModel; /* eml2_3ForGsoap.h:2383 */ -class prodml22__ReservoirBaseModel; /* eml2_3ForGsoap.h:2397 */ -class prodml22__WellboreBaseModel; /* eml2_3ForGsoap.h:2411 */ -class prodml22__AngleBetweenBoundaries; /* eml2_3ForGsoap.h:2415 */ -class prodml22__AveragePressure; /* eml2_3ForGsoap.h:2417 */ -class prodml22__ConvergenceSkinRelativeToTotalThickness; /* eml2_3ForGsoap.h:2419 */ -class prodml22__CustomParameter; /* eml2_3ForGsoap.h:2421 */ -class prodml22__DeltaPressureTotalSkin; /* eml2_3ForGsoap.h:2423 */ -class prodml22__DeltaTimeStorageChanges; /* eml2_3ForGsoap.h:2425 */ -class prodml22__DistanceFractureToBottomBoundary; /* eml2_3ForGsoap.h:2427 */ -class prodml22__DistanceMidFractureHeightToBottomBoundary; /* eml2_3ForGsoap.h:2429 */ -class prodml22__DistanceMidPerforationsToBottomBoundary; /* eml2_3ForGsoap.h:2431 */ -class prodml22__DistanceToBoundary1; /* eml2_3ForGsoap.h:2433 */ -class prodml22__DistanceToBoundary2; /* eml2_3ForGsoap.h:2435 */ -class prodml22__DistanceToBoundary3; /* eml2_3ForGsoap.h:2437 */ -class prodml22__DistanceToBoundary4; /* eml2_3ForGsoap.h:2439 */ -class prodml22__DistanceToMobilityInterface; /* eml2_3ForGsoap.h:2441 */ -class prodml22__DistanceToPinchOut; /* eml2_3ForGsoap.h:2443 */ -class prodml22__DistanceWellboreToBottomBoundary; /* eml2_3ForGsoap.h:2445 */ -class prodml22__DrainageAreaMeasured; /* eml2_3ForGsoap.h:2447 */ -class prodml22__FaultConductivity; /* eml2_3ForGsoap.h:2449 */ -class prodml22__FluidDensity; /* eml2_3ForGsoap.h:2451 */ -class prodml22__FractureAngleToWellbore; /* eml2_3ForGsoap.h:2453 */ -class prodml22__FractureConductivity; /* eml2_3ForGsoap.h:2455 */ -class prodml22__FractureFaceSkin; /* eml2_3ForGsoap.h:2457 */ -class prodml22__FractureHalfLength; /* eml2_3ForGsoap.h:2459 */ -class prodml22__FractureHeight; /* eml2_3ForGsoap.h:2461 */ -class prodml22__FractureRadius; /* eml2_3ForGsoap.h:2463 */ -class prodml22__FractureStorativityRatio; /* eml2_3ForGsoap.h:2465 */ -class prodml22__HorizontalAnisotropyKxToKy; /* eml2_3ForGsoap.h:2467 */ -class prodml22__HorizontalRadialPermeability; /* eml2_3ForGsoap.h:2469 */ -class prodml22__InitialPressure; /* eml2_3ForGsoap.h:2471 */ -class prodml22__InnerToOuterZoneDiffusivityRatio; /* eml2_3ForGsoap.h:2473 */ -class prodml22__InnerToOuterZoneMobilityRatio; /* eml2_3ForGsoap.h:2475 */ -class prodml22__InterporosityFlowParameter; /* eml2_3ForGsoap.h:2477 */ -class prodml22__Layer2Thickness; /* eml2_3ForGsoap.h:2479 */ -class prodml22__LeakSkin; /* eml2_3ForGsoap.h:2481 */ -class prodml22__LengthHorizontalWellboreFlowing; /* eml2_3ForGsoap.h:2483 */ -class prodml22__MechanicalSkinRelativeToTotalThickness; /* eml2_3ForGsoap.h:2485 */ -class prodml22__ModelName; /* eml2_3ForGsoap.h:2487 */ -class prodml22__NumberOfFractures; /* eml2_3ForGsoap.h:2489 */ -class prodml22__OrientationOfAnisotropyXDirection; /* eml2_3ForGsoap.h:2491 */ -class prodml22__OrientationOfFracturePlane; /* eml2_3ForGsoap.h:2493 */ -class prodml22__OrientationOfLinearFront; /* eml2_3ForGsoap.h:2495 */ -class prodml22__OrientationOfNormalToBoundary1; /* eml2_3ForGsoap.h:2497 */ -class prodml22__OrientationWellTrajectory; /* eml2_3ForGsoap.h:2499 */ -class prodml22__PerforatedLength; /* eml2_3ForGsoap.h:2501 */ -class prodml22__PermeabilityThicknessProduct; /* eml2_3ForGsoap.h:2503 */ -class prodml22__PoreVolumeMeasured; /* eml2_3ForGsoap.h:2505 */ -class prodml22__PoreVolumeOfInvestigation; /* eml2_3ForGsoap.h:2507 */ -class prodml22__Porosity; /* eml2_3ForGsoap.h:2509 */ -class prodml22__PressureDatumTVD; /* eml2_3ForGsoap.h:2511 */ -class prodml22__RadiusOfInvestigation; /* eml2_3ForGsoap.h:2513 */ -class prodml22__RateDependentSkinFactor; /* eml2_3ForGsoap.h:2515 */ -class prodml22__RatioDpSkinToTotalDrawdown; /* eml2_3ForGsoap.h:2517 */ -class prodml22__RatioInitialToFinalWellboreStorage; /* eml2_3ForGsoap.h:2519 */ -class prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct; /* eml2_3ForGsoap.h:2521 */ -class prodml22__Region2Thickness; /* eml2_3ForGsoap.h:2523 */ -class prodml22__SkinLayer2RelativeToTotalThickness; /* eml2_3ForGsoap.h:2525 */ -class prodml22__SkinRelativeToTotalThickness; /* eml2_3ForGsoap.h:2527 */ -class prodml22__StorativityRatio; /* eml2_3ForGsoap.h:2529 */ -class prodml22__TotalThickness; /* eml2_3ForGsoap.h:2531 */ -class prodml22__TransmissibilityReductionFactorOfLinearFront; /* eml2_3ForGsoap.h:2533 */ -class prodml22__TubingInteralDiameter; /* eml2_3ForGsoap.h:2535 */ -class prodml22__VerticalAnisotropyKvToKr; /* eml2_3ForGsoap.h:2537 */ -class prodml22__WellboreDeviationAngle; /* eml2_3ForGsoap.h:2539 */ -class prodml22__WellboreFluidCompressibility; /* eml2_3ForGsoap.h:2541 */ -class prodml22__WellboreRadius; /* eml2_3ForGsoap.h:2543 */ -class prodml22__WellboreStorageCoefficient; /* eml2_3ForGsoap.h:2545 */ -class prodml22__WellboreVolume; /* eml2_3ForGsoap.h:2547 */ -class prodml22__FluidSample; /* eml2_3ForGsoap.h:2549 */ -class prodml22__FluidSampleContainer; /* eml2_3ForGsoap.h:2559 */ -class prodml22__DownholeSampleAcquisition; /* eml2_3ForGsoap.h:2561 */ -class prodml22__FacilitySampleAcquisition; /* eml2_3ForGsoap.h:2563 */ -class prodml22__FluidSampleAcquisitionJob; /* eml2_3ForGsoap.h:2567 */ -class prodml22__FormationTesterSampleAcquisition; /* eml2_3ForGsoap.h:2569 */ -class prodml22__SeparatorSampleAcquisition; /* eml2_3ForGsoap.h:2571 */ -class prodml22__WellheadSampleAcquisition; /* eml2_3ForGsoap.h:2573 */ -class prodml22__FlowTestJob; /* eml2_3ForGsoap.h:2575 */ -class prodml22__CurveData; /* eml2_3ForGsoap.h:2585 */ -class prodml22__FacilityParent; /* eml2_3ForGsoap.h:2589 */ -class prodml22__FacilityUnitPort; /* eml2_3ForGsoap.h:2591 */ -class prodml22__IntegerData; /* eml2_3ForGsoap.h:2593 */ -class prodml22__Parentfacility; /* eml2_3ForGsoap.h:2597 */ -class prodml22__ProductVolume; /* eml2_3ForGsoap.h:2599 */ -class prodml22__ReferenceFlow; /* eml2_3ForGsoap.h:2633 */ -class prodml22__StringData; /* eml2_3ForGsoap.h:2635 */ -class prodml22__ProductFlowModel; /* eml2_3ForGsoap.h:2647 */ -class prodml22__ProductFlowQualifierExpected; /* eml2_3ForGsoap.h:2653 */ -class prodml22__Qualifier; /* eml2_3ForGsoap.h:2657 */ -class prodml22__DoubleValue; /* eml2_3ForGsoap.h:2663 */ -class prodml22__StringValue; /* eml2_3ForGsoap.h:2665 */ -class prodml22__TimeSeriesData; /* eml2_3ForGsoap.h:2667 */ -class prodml22__TimeSeriesStatistic; /* eml2_3ForGsoap.h:2679 */ +class prodml23__AbstractCompositionalModel; /* eml2_3ForGsoap.h:1877 */ +class prodml23__AbstractCorrelationModel; /* eml2_3ForGsoap.h:1879 */ +class prodml23__FluidCharacterization; /* eml2_3ForGsoap.h:1937 */ +class prodml23__FormationWater; /* eml2_3ForGsoap.h:2015 */ +class prodml23__GeneralQualifiedMeasure; /* eml2_3ForGsoap.h:2019 */ +class prodml23__IntegerQualifiedCount; /* eml2_3ForGsoap.h:2023 */ +class prodml23__KindQualifiedString; /* eml2_3ForGsoap.h:2025 */ +class prodml23__NaturalGas; /* eml2_3ForGsoap.h:2031 */ +class prodml23__PlusFluidComponent; /* eml2_3ForGsoap.h:2039 */ +class prodml23__ProductFluid; /* eml2_3ForGsoap.h:2045 */ +class prodml23__PseudoFluidComponent; /* eml2_3ForGsoap.h:2047 */ +class prodml23__PureFluidComponent; /* eml2_3ForGsoap.h:2049 */ +class prodml23__ServiceFluid; /* eml2_3ForGsoap.h:2051 */ +class prodml23__StartEndDate; /* eml2_3ForGsoap.h:2053 */ +class prodml23__StartEndTime; /* eml2_3ForGsoap.h:2055 */ +class prodml23__StockTankOil; /* eml2_3ForGsoap.h:2057 */ +class prodml23__SulfurFluidComponent; /* eml2_3ForGsoap.h:2059 */ +class prodml23__CumulativeGasProducedRatioStd; /* eml2_3ForGsoap.h:2077 */ +class prodml23__CumulativeGasProducedVol; /* eml2_3ForGsoap.h:2079 */ +class prodml23__FluidAnalysis; /* eml2_3ForGsoap.h:2087 */ +class prodml23__LiquidDropoutFraction; /* eml2_3ForGsoap.h:2109 */ +class prodml23__LiquidVolume; /* eml2_3ForGsoap.h:2111 */ +class prodml23__OilShrinkageFactor; /* eml2_3ForGsoap.h:2127 */ +class prodml23__OilVolume; /* eml2_3ForGsoap.h:2129 */ +class prodml23__FluidSystem; /* eml2_3ForGsoap.h:2193 */ +class prodml23__AbstractPtaFlowData; /* eml2_3ForGsoap.h:2197 */ +class prodml23__Channel; /* eml2_3ForGsoap.h:2199 */ +class prodml23__ChannelSet; /* eml2_3ForGsoap.h:2201 */ +class prodml23__FlowTestActivity; /* eml2_3ForGsoap.h:2205 */ +class prodml23__OtherData; /* eml2_3ForGsoap.h:2217 */ +class prodml23__Facility; /* eml2_3ForGsoap.h:2233 */ +class prodml23__ReportingEntity; /* eml2_3ForGsoap.h:2235 */ +class prodml23__ReportingHierarchy; /* eml2_3ForGsoap.h:2237 */ +class prodml23__AbstractPtaPressureData; /* eml2_3ForGsoap.h:2245 */ +class prodml23__ChannelFlowrateData; /* eml2_3ForGsoap.h:2251 */ +class prodml23__DeconvolutionMultipleOutput; /* eml2_3ForGsoap.h:2255 */ +class prodml23__DeconvolutionSingleOutput; /* eml2_3ForGsoap.h:2259 */ +class prodml23__PressureTransientAnalysis; /* eml2_3ForGsoap.h:2291 */ +class prodml23__PtaAnalysis; /* eml2_3ForGsoap.h:2293 */ +class prodml23__PtaDataPreProcess; /* eml2_3ForGsoap.h:2295 */ +class prodml23__PtaDeconvolution; /* eml2_3ForGsoap.h:2297 */ +class prodml23__RtaAnalysis; /* eml2_3ForGsoap.h:2303 */ +class prodml23__SingleFlowrateData; /* eml2_3ForGsoap.h:2307 */ +class prodml23__TestPeriodsFlowrateData; /* eml2_3ForGsoap.h:2313 */ +class prodml23__BoundaryBaseModel; /* eml2_3ForGsoap.h:2317 */ +class prodml23__NearWellboreBaseModel; /* eml2_3ForGsoap.h:2383 */ +class prodml23__ReservoirBaseModel; /* eml2_3ForGsoap.h:2397 */ +class prodml23__WellboreBaseModel; /* eml2_3ForGsoap.h:2411 */ +class prodml23__AngleBetweenBoundaries; /* eml2_3ForGsoap.h:2415 */ +class prodml23__AveragePressure; /* eml2_3ForGsoap.h:2417 */ +class prodml23__ConvergenceSkinRelativeToTotalThickness; /* eml2_3ForGsoap.h:2419 */ +class prodml23__CustomParameter; /* eml2_3ForGsoap.h:2421 */ +class prodml23__DeltaPressureTotalSkin; /* eml2_3ForGsoap.h:2423 */ +class prodml23__DeltaTimeStorageChanges; /* eml2_3ForGsoap.h:2425 */ +class prodml23__DistanceFractureToBottomBoundary; /* eml2_3ForGsoap.h:2427 */ +class prodml23__DistanceMidFractureHeightToBottomBoundary; /* eml2_3ForGsoap.h:2429 */ +class prodml23__DistanceMidPerforationsToBottomBoundary; /* eml2_3ForGsoap.h:2431 */ +class prodml23__DistanceToBoundary1; /* eml2_3ForGsoap.h:2433 */ +class prodml23__DistanceToBoundary2; /* eml2_3ForGsoap.h:2435 */ +class prodml23__DistanceToBoundary3; /* eml2_3ForGsoap.h:2437 */ +class prodml23__DistanceToBoundary4; /* eml2_3ForGsoap.h:2439 */ +class prodml23__DistanceToMobilityInterface; /* eml2_3ForGsoap.h:2441 */ +class prodml23__DistanceToPinchOut; /* eml2_3ForGsoap.h:2443 */ +class prodml23__DistanceWellboreToBottomBoundary; /* eml2_3ForGsoap.h:2445 */ +class prodml23__DrainageAreaMeasured; /* eml2_3ForGsoap.h:2447 */ +class prodml23__FaultConductivity; /* eml2_3ForGsoap.h:2449 */ +class prodml23__FluidDensity; /* eml2_3ForGsoap.h:2451 */ +class prodml23__FractureAngleToWellbore; /* eml2_3ForGsoap.h:2453 */ +class prodml23__FractureConductivity; /* eml2_3ForGsoap.h:2455 */ +class prodml23__FractureFaceSkin; /* eml2_3ForGsoap.h:2457 */ +class prodml23__FractureHalfLength; /* eml2_3ForGsoap.h:2459 */ +class prodml23__FractureHeight; /* eml2_3ForGsoap.h:2461 */ +class prodml23__FractureRadius; /* eml2_3ForGsoap.h:2463 */ +class prodml23__FractureStorativityRatio; /* eml2_3ForGsoap.h:2465 */ +class prodml23__HorizontalAnisotropyKxToKy; /* eml2_3ForGsoap.h:2467 */ +class prodml23__HorizontalRadialPermeability; /* eml2_3ForGsoap.h:2469 */ +class prodml23__InitialPressure; /* eml2_3ForGsoap.h:2471 */ +class prodml23__InnerToOuterZoneDiffusivityRatio; /* eml2_3ForGsoap.h:2473 */ +class prodml23__InnerToOuterZoneMobilityRatio; /* eml2_3ForGsoap.h:2475 */ +class prodml23__InterporosityFlowParameter; /* eml2_3ForGsoap.h:2477 */ +class prodml23__Layer2Thickness; /* eml2_3ForGsoap.h:2479 */ +class prodml23__LeakSkin; /* eml2_3ForGsoap.h:2481 */ +class prodml23__LengthHorizontalWellboreFlowing; /* eml2_3ForGsoap.h:2483 */ +class prodml23__MechanicalSkinRelativeToTotalThickness; /* eml2_3ForGsoap.h:2485 */ +class prodml23__ModelName; /* eml2_3ForGsoap.h:2487 */ +class prodml23__NumberOfFractures; /* eml2_3ForGsoap.h:2489 */ +class prodml23__OrientationOfAnisotropyXDirection; /* eml2_3ForGsoap.h:2491 */ +class prodml23__OrientationOfFracturePlane; /* eml2_3ForGsoap.h:2493 */ +class prodml23__OrientationOfLinearFront; /* eml2_3ForGsoap.h:2495 */ +class prodml23__OrientationOfNormalToBoundary1; /* eml2_3ForGsoap.h:2497 */ +class prodml23__OrientationWellTrajectory; /* eml2_3ForGsoap.h:2499 */ +class prodml23__PerforatedLength; /* eml2_3ForGsoap.h:2501 */ +class prodml23__PermeabilityThicknessProduct; /* eml2_3ForGsoap.h:2503 */ +class prodml23__PoreVolumeMeasured; /* eml2_3ForGsoap.h:2505 */ +class prodml23__PoreVolumeOfInvestigation; /* eml2_3ForGsoap.h:2507 */ +class prodml23__Porosity; /* eml2_3ForGsoap.h:2509 */ +class prodml23__PressureDatumTVD; /* eml2_3ForGsoap.h:2511 */ +class prodml23__RadiusOfInvestigation; /* eml2_3ForGsoap.h:2513 */ +class prodml23__RateDependentSkinFactor; /* eml2_3ForGsoap.h:2515 */ +class prodml23__RatioDpSkinToTotalDrawdown; /* eml2_3ForGsoap.h:2517 */ +class prodml23__RatioInitialToFinalWellboreStorage; /* eml2_3ForGsoap.h:2519 */ +class prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct; /* eml2_3ForGsoap.h:2521 */ +class prodml23__Region2Thickness; /* eml2_3ForGsoap.h:2523 */ +class prodml23__SkinLayer2RelativeToTotalThickness; /* eml2_3ForGsoap.h:2525 */ +class prodml23__SkinRelativeToTotalThickness; /* eml2_3ForGsoap.h:2527 */ +class prodml23__StorativityRatio; /* eml2_3ForGsoap.h:2529 */ +class prodml23__TotalThickness; /* eml2_3ForGsoap.h:2531 */ +class prodml23__TransmissibilityReductionFactorOfLinearFront; /* eml2_3ForGsoap.h:2533 */ +class prodml23__TubingInteralDiameter; /* eml2_3ForGsoap.h:2535 */ +class prodml23__VerticalAnisotropyKvToKr; /* eml2_3ForGsoap.h:2537 */ +class prodml23__WellboreDeviationAngle; /* eml2_3ForGsoap.h:2539 */ +class prodml23__WellboreFluidCompressibility; /* eml2_3ForGsoap.h:2541 */ +class prodml23__WellboreRadius; /* eml2_3ForGsoap.h:2543 */ +class prodml23__WellboreStorageCoefficient; /* eml2_3ForGsoap.h:2545 */ +class prodml23__WellboreVolume; /* eml2_3ForGsoap.h:2547 */ +class prodml23__FluidSample; /* eml2_3ForGsoap.h:2549 */ +class prodml23__FluidSampleContainer; /* eml2_3ForGsoap.h:2559 */ +class prodml23__DownholeSampleAcquisition; /* eml2_3ForGsoap.h:2561 */ +class prodml23__FacilitySampleAcquisition; /* eml2_3ForGsoap.h:2563 */ +class prodml23__FluidSampleAcquisitionJob; /* eml2_3ForGsoap.h:2567 */ +class prodml23__FormationTesterSampleAcquisition; /* eml2_3ForGsoap.h:2569 */ +class prodml23__SeparatorSampleAcquisition; /* eml2_3ForGsoap.h:2571 */ +class prodml23__WellheadSampleAcquisition; /* eml2_3ForGsoap.h:2573 */ +class prodml23__FlowTestJob; /* eml2_3ForGsoap.h:2575 */ +class prodml23__CurveData; /* eml2_3ForGsoap.h:2585 */ +class prodml23__FacilityParent; /* eml2_3ForGsoap.h:2589 */ +class prodml23__FacilityUnitPort; /* eml2_3ForGsoap.h:2591 */ +class prodml23__IntegerData; /* eml2_3ForGsoap.h:2593 */ +class prodml23__Parentfacility; /* eml2_3ForGsoap.h:2597 */ +class prodml23__ProductVolume; /* eml2_3ForGsoap.h:2599 */ +class prodml23__ReferenceFlow; /* eml2_3ForGsoap.h:2633 */ +class prodml23__StringData; /* eml2_3ForGsoap.h:2635 */ +class prodml23__ProductFlowModel; /* eml2_3ForGsoap.h:2647 */ +class prodml23__ProductFlowQualifierExpected; /* eml2_3ForGsoap.h:2653 */ +class prodml23__Qualifier; /* eml2_3ForGsoap.h:2657 */ +class prodml23__DoubleValue; /* eml2_3ForGsoap.h:2663 */ +class prodml23__StringValue; /* eml2_3ForGsoap.h:2665 */ +class prodml23__TimeSeriesData; /* eml2_3ForGsoap.h:2667 */ +class prodml23__TimeSeriesStatistic; /* eml2_3ForGsoap.h:2679 */ class resqml22__AbstractFeature; /* eml2_3ForGsoap.h:2683 */ class resqml22__AbstractParametricLineGeometry; /* eml2_3ForGsoap.h:2699 */ class resqml22__AbstractPlaneGeometry; /* eml2_3ForGsoap.h:2701 */ @@ -13094,83 +13099,83 @@ class eml23__VolumetricHeatTransferCoefficientMeasureExt; /* eml2_3ForGsoap.h:17 class eml23__VolumetricThermalExpansionMeasure; /* eml2_3ForGsoap.h:1751 */ class eml23__VolumetricThermalExpansionMeasureExt; /* eml2_3ForGsoap.h:1753 */ class eml23__ReferencePressure; /* eml2_3ForGsoap.h:1769 */ -class prodml22__FluidCharacterizationTableRow; /* eml2_3ForGsoap.h:1883 */ -class prodml22__AbstractCompositionalEoSModel; /* eml2_3ForGsoap.h:1885 */ -class prodml22__AbstractCompositionalViscosityModel; /* eml2_3ForGsoap.h:1887 */ -class prodml22__AbstractCorrelationViscosityModel; /* eml2_3ForGsoap.h:1893 */ -class prodml22__BinaryInteractionCoefficient; /* eml2_3ForGsoap.h:1905 */ -class prodml22__CompositionalThermalModel; /* eml2_3ForGsoap.h:1913 */ -class prodml22__CorrelationThermalModel; /* eml2_3ForGsoap.h:1915 */ -class prodml22__PvtModelParameter; /* eml2_3ForGsoap.h:1979 */ -class prodml22__MeasuredDepthCoord; /* eml2_3ForGsoap.h:2029 */ -class prodml22__HydrocarbonAnalysis; /* eml2_3ForGsoap.h:2101 */ -class prodml22__NonHydrocarbonAnalysis; /* eml2_3ForGsoap.h:2121 */ -class prodml22__WaterAnalysis; /* eml2_3ForGsoap.h:2185 */ -class prodml22__DrillStemTest; /* eml2_3ForGsoap.h:2203 */ -class prodml22__FormationTesterStation; /* eml2_3ForGsoap.h:2211 */ -class prodml22__InjectionFlowTest; /* eml2_3ForGsoap.h:2213 */ -class prodml22__InterwellTest; /* eml2_3ForGsoap.h:2215 */ -class prodml22__ProductionFlowTest; /* eml2_3ForGsoap.h:2219 */ -class prodml22__ProductionTransientTest; /* eml2_3ForGsoap.h:2221 */ -class prodml22__VerticalInterferenceTest; /* eml2_3ForGsoap.h:2227 */ -class prodml22__WaterLevelTest; /* eml2_3ForGsoap.h:2229 */ -class prodml22__DeconvolvedFlowData; /* eml2_3ForGsoap.h:2261 */ -class prodml22__DeconvolvedPressureData; /* eml2_3ForGsoap.h:2263 */ -class prodml22__MeasuredFlowData; /* eml2_3ForGsoap.h:2279 */ -class prodml22__MeasuredPressureData; /* eml2_3ForGsoap.h:2281 */ -class prodml22__OutputFlowData; /* eml2_3ForGsoap.h:2283 */ -class prodml22__OutputPressureData; /* eml2_3ForGsoap.h:2285 */ -class prodml22__PreProcessedFlowData; /* eml2_3ForGsoap.h:2287 */ -class prodml22__PreProcessedPressureData; /* eml2_3ForGsoap.h:2289 */ -class prodml22__ChangingStorageFairModel; /* eml2_3ForGsoap.h:2319 */ -class prodml22__ChangingStorageHegemanModel; /* eml2_3ForGsoap.h:2321 */ -class prodml22__ChangingStorageSpiveyFissuresModel; /* eml2_3ForGsoap.h:2323 */ -class prodml22__ChangingStorageSpiveyPackerModel; /* eml2_3ForGsoap.h:2325 */ -class prodml22__ClosedCircleModel; /* eml2_3ForGsoap.h:2327 */ -class prodml22__ClosedRectangleModel; /* eml2_3ForGsoap.h:2329 */ -class prodml22__ConstantStorageModel; /* eml2_3ForGsoap.h:2331 */ -class prodml22__CustomBoundaryModel; /* eml2_3ForGsoap.h:2333 */ -class prodml22__CustomNearWellboreModel; /* eml2_3ForGsoap.h:2335 */ -class prodml22__CustomReservoirModel; /* eml2_3ForGsoap.h:2337 */ -class prodml22__CustomWellboreModel; /* eml2_3ForGsoap.h:2339 */ -class prodml22__DualPermeabilityWithCrossflowModel; /* eml2_3ForGsoap.h:2341 */ -class prodml22__DualPorosityPseudoSteadyStateModel; /* eml2_3ForGsoap.h:2343 */ -class prodml22__DualPorosityTransientSlabsModel; /* eml2_3ForGsoap.h:2345 */ -class prodml22__DualPorosityTransientSpheresModel; /* eml2_3ForGsoap.h:2347 */ -class prodml22__FiniteRadiusModel; /* eml2_3ForGsoap.h:2349 */ -class prodml22__FracturedFiniteConductivityModel; /* eml2_3ForGsoap.h:2351 */ -class prodml22__FracturedHorizontalFiniteConductivityModel; /* eml2_3ForGsoap.h:2353 */ -class prodml22__FracturedHorizontalInfiniteConductivityModel; /* eml2_3ForGsoap.h:2355 */ -class prodml22__FracturedHorizontalUniformFluxModel; /* eml2_3ForGsoap.h:2357 */ -class prodml22__FracturedInfiniteConductivityModel; /* eml2_3ForGsoap.h:2359 */ -class prodml22__FracturedUniformFluxModel; /* eml2_3ForGsoap.h:2361 */ -class prodml22__HomogeneousModel; /* eml2_3ForGsoap.h:2363 */ -class prodml22__HorizontalWellbore2LayerModel; /* eml2_3ForGsoap.h:2365 */ -class prodml22__HorizontalWellboreModel; /* eml2_3ForGsoap.h:2367 */ -class prodml22__HorizontalWellboreMultipleEqualFracturedModel; /* eml2_3ForGsoap.h:2369 */ -class prodml22__HorizontalWellboreMultipleVariableFracturedModel; /* eml2_3ForGsoap.h:2371 */ -class prodml22__InfiniteBoundaryModel; /* eml2_3ForGsoap.h:2373 */ -class prodml22__LinearCompositeModel; /* eml2_3ForGsoap.h:2375 */ -class prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel; /* eml2_3ForGsoap.h:2377 */ -class prodml22__LinearCompositeWithConductiveFaultModel; /* eml2_3ForGsoap.h:2379 */ -class prodml22__LinearCompositeWithLeakyFaultModel; /* eml2_3ForGsoap.h:2381 */ -class prodml22__NumericalBoundaryModel; /* eml2_3ForGsoap.h:2385 */ -class prodml22__NumericalDualPorosityReservoirModel; /* eml2_3ForGsoap.h:2387 */ -class prodml22__NumericalHomogeneousReservoirModel; /* eml2_3ForGsoap.h:2389 */ -class prodml22__PartiallyPenetratingModel; /* eml2_3ForGsoap.h:2391 */ -class prodml22__PinchOutModel; /* eml2_3ForGsoap.h:2393 */ -class prodml22__RadialCompositeModel; /* eml2_3ForGsoap.h:2395 */ -class prodml22__SingleFaultModel; /* eml2_3ForGsoap.h:2399 */ -class prodml22__SlantedFullyPenetratingModel; /* eml2_3ForGsoap.h:2401 */ -class prodml22__SlantedPartiallyPenetratingModel; /* eml2_3ForGsoap.h:2403 */ -class prodml22__TwoIntersectingFaultsModel; /* eml2_3ForGsoap.h:2405 */ -class prodml22__TwoParallelFaultsModel; /* eml2_3ForGsoap.h:2407 */ -class prodml22__UShapedFaultsModel; /* eml2_3ForGsoap.h:2409 */ -class prodml22__TimeSeriesDoubleSample; /* eml2_3ForGsoap.h:2669 */ -class prodml22__TimeSeriesStringSample; /* eml2_3ForGsoap.h:2671 */ -class prodml22__EndpointDateTime; /* eml2_3ForGsoap.h:2673 */ -class prodml22__EndpointQuantity; /* eml2_3ForGsoap.h:2675 */ -class prodml22__KeywordValueStruct; /* eml2_3ForGsoap.h:2677 */ +class prodml23__FluidCharacterizationTableRow; /* eml2_3ForGsoap.h:1883 */ +class prodml23__AbstractCompositionalEoSModel; /* eml2_3ForGsoap.h:1885 */ +class prodml23__AbstractCompositionalViscosityModel; /* eml2_3ForGsoap.h:1887 */ +class prodml23__AbstractCorrelationViscosityModel; /* eml2_3ForGsoap.h:1893 */ +class prodml23__BinaryInteractionCoefficient; /* eml2_3ForGsoap.h:1905 */ +class prodml23__CompositionalThermalModel; /* eml2_3ForGsoap.h:1913 */ +class prodml23__CorrelationThermalModel; /* eml2_3ForGsoap.h:1915 */ +class prodml23__PvtModelParameter; /* eml2_3ForGsoap.h:1979 */ +class prodml23__MeasuredDepthCoord; /* eml2_3ForGsoap.h:2029 */ +class prodml23__HydrocarbonAnalysis; /* eml2_3ForGsoap.h:2101 */ +class prodml23__NonHydrocarbonAnalysis; /* eml2_3ForGsoap.h:2121 */ +class prodml23__WaterAnalysis; /* eml2_3ForGsoap.h:2185 */ +class prodml23__DrillStemTest; /* eml2_3ForGsoap.h:2203 */ +class prodml23__FormationTesterStation; /* eml2_3ForGsoap.h:2211 */ +class prodml23__InjectionFlowTest; /* eml2_3ForGsoap.h:2213 */ +class prodml23__InterwellTest; /* eml2_3ForGsoap.h:2215 */ +class prodml23__ProductionFlowTest; /* eml2_3ForGsoap.h:2219 */ +class prodml23__ProductionTransientTest; /* eml2_3ForGsoap.h:2221 */ +class prodml23__VerticalInterferenceTest; /* eml2_3ForGsoap.h:2227 */ +class prodml23__WaterLevelTest; /* eml2_3ForGsoap.h:2229 */ +class prodml23__DeconvolvedFlowData; /* eml2_3ForGsoap.h:2261 */ +class prodml23__DeconvolvedPressureData; /* eml2_3ForGsoap.h:2263 */ +class prodml23__MeasuredFlowData; /* eml2_3ForGsoap.h:2279 */ +class prodml23__MeasuredPressureData; /* eml2_3ForGsoap.h:2281 */ +class prodml23__OutputFlowData; /* eml2_3ForGsoap.h:2283 */ +class prodml23__OutputPressureData; /* eml2_3ForGsoap.h:2285 */ +class prodml23__PreProcessedFlowData; /* eml2_3ForGsoap.h:2287 */ +class prodml23__PreProcessedPressureData; /* eml2_3ForGsoap.h:2289 */ +class prodml23__ChangingStorageFairModel; /* eml2_3ForGsoap.h:2319 */ +class prodml23__ChangingStorageHegemanModel; /* eml2_3ForGsoap.h:2321 */ +class prodml23__ChangingStorageSpiveyFissuresModel; /* eml2_3ForGsoap.h:2323 */ +class prodml23__ChangingStorageSpiveyPackerModel; /* eml2_3ForGsoap.h:2325 */ +class prodml23__ClosedCircleModel; /* eml2_3ForGsoap.h:2327 */ +class prodml23__ClosedRectangleModel; /* eml2_3ForGsoap.h:2329 */ +class prodml23__ConstantStorageModel; /* eml2_3ForGsoap.h:2331 */ +class prodml23__CustomBoundaryModel; /* eml2_3ForGsoap.h:2333 */ +class prodml23__CustomNearWellboreModel; /* eml2_3ForGsoap.h:2335 */ +class prodml23__CustomReservoirModel; /* eml2_3ForGsoap.h:2337 */ +class prodml23__CustomWellboreModel; /* eml2_3ForGsoap.h:2339 */ +class prodml23__DualPermeabilityWithCrossflowModel; /* eml2_3ForGsoap.h:2341 */ +class prodml23__DualPorosityPseudoSteadyStateModel; /* eml2_3ForGsoap.h:2343 */ +class prodml23__DualPorosityTransientSlabsModel; /* eml2_3ForGsoap.h:2345 */ +class prodml23__DualPorosityTransientSpheresModel; /* eml2_3ForGsoap.h:2347 */ +class prodml23__FiniteRadiusModel; /* eml2_3ForGsoap.h:2349 */ +class prodml23__FracturedFiniteConductivityModel; /* eml2_3ForGsoap.h:2351 */ +class prodml23__FracturedHorizontalFiniteConductivityModel; /* eml2_3ForGsoap.h:2353 */ +class prodml23__FracturedHorizontalInfiniteConductivityModel; /* eml2_3ForGsoap.h:2355 */ +class prodml23__FracturedHorizontalUniformFluxModel; /* eml2_3ForGsoap.h:2357 */ +class prodml23__FracturedInfiniteConductivityModel; /* eml2_3ForGsoap.h:2359 */ +class prodml23__FracturedUniformFluxModel; /* eml2_3ForGsoap.h:2361 */ +class prodml23__HomogeneousModel; /* eml2_3ForGsoap.h:2363 */ +class prodml23__HorizontalWellbore2LayerModel; /* eml2_3ForGsoap.h:2365 */ +class prodml23__HorizontalWellboreModel; /* eml2_3ForGsoap.h:2367 */ +class prodml23__HorizontalWellboreMultipleEqualFracturedModel; /* eml2_3ForGsoap.h:2369 */ +class prodml23__HorizontalWellboreMultipleVariableFracturedModel; /* eml2_3ForGsoap.h:2371 */ +class prodml23__InfiniteBoundaryModel; /* eml2_3ForGsoap.h:2373 */ +class prodml23__LinearCompositeModel; /* eml2_3ForGsoap.h:2375 */ +class prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel; /* eml2_3ForGsoap.h:2377 */ +class prodml23__LinearCompositeWithConductiveFaultModel; /* eml2_3ForGsoap.h:2379 */ +class prodml23__LinearCompositeWithLeakyFaultModel; /* eml2_3ForGsoap.h:2381 */ +class prodml23__NumericalBoundaryModel; /* eml2_3ForGsoap.h:2385 */ +class prodml23__NumericalDualPorosityReservoirModel; /* eml2_3ForGsoap.h:2387 */ +class prodml23__NumericalHomogeneousReservoirModel; /* eml2_3ForGsoap.h:2389 */ +class prodml23__PartiallyPenetratingModel; /* eml2_3ForGsoap.h:2391 */ +class prodml23__PinchOutModel; /* eml2_3ForGsoap.h:2393 */ +class prodml23__RadialCompositeModel; /* eml2_3ForGsoap.h:2395 */ +class prodml23__SingleFaultModel; /* eml2_3ForGsoap.h:2399 */ +class prodml23__SlantedFullyPenetratingModel; /* eml2_3ForGsoap.h:2401 */ +class prodml23__SlantedPartiallyPenetratingModel; /* eml2_3ForGsoap.h:2403 */ +class prodml23__TwoIntersectingFaultsModel; /* eml2_3ForGsoap.h:2405 */ +class prodml23__TwoParallelFaultsModel; /* eml2_3ForGsoap.h:2407 */ +class prodml23__UShapedFaultsModel; /* eml2_3ForGsoap.h:2409 */ +class prodml23__TimeSeriesDoubleSample; /* eml2_3ForGsoap.h:2669 */ +class prodml23__TimeSeriesStringSample; /* eml2_3ForGsoap.h:2671 */ +class prodml23__EndpointDateTime; /* eml2_3ForGsoap.h:2673 */ +class prodml23__EndpointQuantity; /* eml2_3ForGsoap.h:2675 */ +class prodml23__KeywordValueStruct; /* eml2_3ForGsoap.h:2677 */ class resqml22__AbstractTechnicalFeature; /* eml2_3ForGsoap.h:2685 */ class resqml22__BoundaryFeature; /* eml2_3ForGsoap.h:2687 */ class resqml22__Model; /* eml2_3ForGsoap.h:2691 */ @@ -13230,22 +13235,17 @@ class eml23__LocalEngineering2dCrs; /* eml2_3ForGsoap.h:971 */ class eml23__ProjectedCrs; /* eml2_3ForGsoap.h:977 */ class eml23__EmailQualifierStruct; /* eml2_3ForGsoap.h:1811 */ class eml23__NameStruct; /* eml2_3ForGsoap.h:1815 */ -class prodml22__AbstractCorrelationViscosityDeadModel; /* eml2_3ForGsoap.h:1881 */ -class prodml22__AbstractCorrelationGasViscosityModel; /* eml2_3ForGsoap.h:1889 */ -class prodml22__AbstractCorrelationViscosityBubblePointModel; /* eml2_3ForGsoap.h:1891 */ -class prodml22__AbstractCorrelationViscosityUndersaturatedModel; /* eml2_3ForGsoap.h:1895 */ -class prodml22__CSPedersen84; /* eml2_3ForGsoap.h:1917 */ -class prodml22__CSPedersen87; /* eml2_3ForGsoap.h:1919 */ -class prodml22__FrictionTheory; /* eml2_3ForGsoap.h:1957 */ -class prodml22__Lohrenz_Bray_ClarkCorrelation; /* eml2_3ForGsoap.h:1961 */ -class prodml22__PengRobinson76_USCOREEOS; /* eml2_3ForGsoap.h:1967 */ -class prodml22__PengRobinson78_USCOREEOS; /* eml2_3ForGsoap.h:1969 */ -class prodml22__Srk_USCOREEOS; /* eml2_3ForGsoap.h:1985 */ -class prodml22__OilCompressibility; /* eml2_3ForGsoap.h:2125 */ -class prodml22__RefInjectedGasAdded; /* eml2_3ForGsoap.h:2143 */ -class prodml22__RelativeVolumeRatio; /* eml2_3ForGsoap.h:2145 */ -class prodml22__SaturationPressure; /* eml2_3ForGsoap.h:2157 */ -class prodml22__SaturationTemperature; /* eml2_3ForGsoap.h:2159 */ +class prodml23__AbstractCorrelationViscosityDeadModel; /* eml2_3ForGsoap.h:1881 */ +class prodml23__AbstractCorrelationGasViscosityModel; /* eml2_3ForGsoap.h:1889 */ +class prodml23__AbstractCorrelationViscosityBubblePointModel; /* eml2_3ForGsoap.h:1891 */ +class prodml23__AbstractCorrelationViscosityUndersaturatedModel; /* eml2_3ForGsoap.h:1895 */ +class prodml23__CSPedersen84; /* eml2_3ForGsoap.h:1917 */ +class prodml23__CSPedersen87; /* eml2_3ForGsoap.h:1919 */ +class prodml23__FrictionTheory; /* eml2_3ForGsoap.h:1957 */ +class prodml23__Lohrenz_Bray_ClarkCorrelation; /* eml2_3ForGsoap.h:1961 */ +class prodml23__PengRobinson76_USCOREEOS; /* eml2_3ForGsoap.h:1967 */ +class prodml23__PengRobinson78_USCOREEOS; /* eml2_3ForGsoap.h:1969 */ +class prodml23__Srk_USCOREEOS; /* eml2_3ForGsoap.h:1985 */ class resqml22__CulturalFeature; /* eml2_3ForGsoap.h:2689 */ class resqml22__AbstractSeismicSurveyFeature; /* eml2_3ForGsoap.h:2747 */ class resqml22__Seismic3dPostStackRepresentation; /* eml2_3ForGsoap.h:2757 */ @@ -13286,25 +13286,25 @@ class witsml21__InterpretedGeology; /* eml2_3ForGsoap.h:497 */ class witsml21__ShowEvaluation; /* eml2_3ForGsoap.h:507 */ class witsml21__Trajectory; /* eml2_3ForGsoap.h:549 */ class witsml21__WellboreGeometry; /* eml2_3ForGsoap.h:633 */ -class prodml22__BerganAndSutton_Undersaturated; /* eml2_3ForGsoap.h:1899 */ -class prodml22__BerganSutton_Dead; /* eml2_3ForGsoap.h:1901 */ -class prodml22__BergmanSutton_BubblePoint; /* eml2_3ForGsoap.h:1903 */ -class prodml22__CarrDempsey; /* eml2_3ForGsoap.h:1909 */ -class prodml22__DeGhetto_BubblePoint; /* eml2_3ForGsoap.h:1925 */ -class prodml22__DeGhetto_Dead; /* eml2_3ForGsoap.h:1927 */ -class prodml22__DeGhetto_Undersaturated; /* eml2_3ForGsoap.h:1929 */ -class prodml22__DindorukChristman_BubblePoint; /* eml2_3ForGsoap.h:1931 */ -class prodml22__DindorukChristman_Dead; /* eml2_3ForGsoap.h:1933 */ -class prodml22__DindorukChristman_Undersaturated; /* eml2_3ForGsoap.h:1935 */ -class prodml22__LeeGonzalez; /* eml2_3ForGsoap.h:1959 */ -class prodml22__LondonoArcherBlasinggame; /* eml2_3ForGsoap.h:1963 */ -class prodml22__Lucas; /* eml2_3ForGsoap.h:1965 */ -class prodml22__PetroskyFarshad_BubblePoint; /* eml2_3ForGsoap.h:1971 */ -class prodml22__PetroskyFarshad_Dead; /* eml2_3ForGsoap.h:1973 */ -class prodml22__PetroskyFarshad_Undersaturated; /* eml2_3ForGsoap.h:1975 */ -class prodml22__Standing_BubblePoint; /* eml2_3ForGsoap.h:1987 */ -class prodml22__Standing_Dead; /* eml2_3ForGsoap.h:1989 */ -class prodml22__Standing_Undersaturated; /* eml2_3ForGsoap.h:1991 */ +class prodml23__BerganAndSutton_Undersaturated; /* eml2_3ForGsoap.h:1899 */ +class prodml23__BerganSutton_Dead; /* eml2_3ForGsoap.h:1901 */ +class prodml23__BergmanSutton_BubblePoint; /* eml2_3ForGsoap.h:1903 */ +class prodml23__CarrDempsey; /* eml2_3ForGsoap.h:1909 */ +class prodml23__DeGhetto_BubblePoint; /* eml2_3ForGsoap.h:1925 */ +class prodml23__DeGhetto_Dead; /* eml2_3ForGsoap.h:1927 */ +class prodml23__DeGhetto_Undersaturated; /* eml2_3ForGsoap.h:1929 */ +class prodml23__DindorukChristman_BubblePoint; /* eml2_3ForGsoap.h:1931 */ +class prodml23__DindorukChristman_Dead; /* eml2_3ForGsoap.h:1933 */ +class prodml23__DindorukChristman_Undersaturated; /* eml2_3ForGsoap.h:1935 */ +class prodml23__LeeGonzalez; /* eml2_3ForGsoap.h:1959 */ +class prodml23__LondonoArcherBlasinggame; /* eml2_3ForGsoap.h:1963 */ +class prodml23__Lucas; /* eml2_3ForGsoap.h:1965 */ +class prodml23__PetroskyFarshad_BubblePoint; /* eml2_3ForGsoap.h:1971 */ +class prodml23__PetroskyFarshad_Dead; /* eml2_3ForGsoap.h:1973 */ +class prodml23__PetroskyFarshad_Undersaturated; /* eml2_3ForGsoap.h:1975 */ +class prodml23__Standing_BubblePoint; /* eml2_3ForGsoap.h:1987 */ +class prodml23__Standing_Dead; /* eml2_3ForGsoap.h:1989 */ +class prodml23__Standing_Undersaturated; /* eml2_3ForGsoap.h:1991 */ class resqml22__AbstractSeismicLineFeature; /* eml2_3ForGsoap.h:2745 */ class resqml22__SeismicLatticeFeature; /* eml2_3ForGsoap.h:2759 */ class resqml22__SeismicLatticeSetFeature; /* eml2_3ForGsoap.h:2761 */ @@ -26690,20 +26690,20 @@ class SOAP_CMAC eml23__AbstractGraphicalInformation { #endif /* eml2_3ForGsoap.h:1897 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel (-875) -/* complex XML schema type 'prodml22:AbstractPvtModel': */ -class SOAP_CMAC prodml22__AbstractPvtModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel (-875) +/* complex XML schema type 'prodml23:AbstractPvtModel': */ +class SOAP_CMAC prodml23__AbstractPvtModel { public: - /// Optional element 'prodml22:CustomPvtModelExtension' of XML schema type 'prodml22:CustomPvtModelExtension' - prodml22__CustomPvtModelExtension *CustomPvtModelExtension; - /// Optional element 'prodml22:PvtModelParameterSet' of XML schema type 'prodml22:PvtModelParameterSet' - prodml22__PvtModelParameterSet *PvtModelParameterSet; + /// Optional element 'prodml23:CustomPvtModelExtension' of XML schema type 'prodml23:CustomPvtModelExtension' + prodml23__CustomPvtModelExtension *CustomPvtModelExtension; + /// Optional element 'prodml23:PvtModelParameterSet' of XML schema type 'prodml23:PvtModelParameterSet' + prodml23__PvtModelParameterSet *PvtModelParameterSet; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26716,31 +26716,31 @@ class SOAP_CMAC prodml22__AbstractPvtModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractPvtModel, default initialized and not managed by a soap context - virtual prodml22__AbstractPvtModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractPvtModel); } + /// Return a new object of type prodml23__AbstractPvtModel, default initialized and not managed by a soap context + virtual prodml23__AbstractPvtModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractPvtModel); } public: /// Constructor with default initializations - prodml22__AbstractPvtModel() : CustomPvtModelExtension(), PvtModelParameterSet(), soap() { } + prodml23__AbstractPvtModel() : CustomPvtModelExtension(), PvtModelParameterSet(), soap() { } /// Destructor - virtual ~prodml22__AbstractPvtModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractPvtModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPvtModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractPvtModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractPvtModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractPvtModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPvtModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1907 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet (-880) -/* complex XML schema type 'prodml22:BinaryInteractionCoefficientSet': */ -class SOAP_CMAC prodml22__BinaryInteractionCoefficientSet { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet (-880) +/* complex XML schema type 'prodml23:BinaryInteractionCoefficientSet': */ +class SOAP_CMAC prodml23__BinaryInteractionCoefficientSet { public: - /// Required element 'prodml22:BinaryInteractionCoefficient' of XML schema type 'prodml22:BinaryInteractionCoefficient' - std::vector BinaryInteractionCoefficient; + /// Required element 'prodml23:BinaryInteractionCoefficient' of XML schema type 'prodml23:BinaryInteractionCoefficient' + std::vector BinaryInteractionCoefficient; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26753,31 +26753,31 @@ class SOAP_CMAC prodml22__BinaryInteractionCoefficientSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__BinaryInteractionCoefficientSet, default initialized and not managed by a soap context - virtual prodml22__BinaryInteractionCoefficientSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__BinaryInteractionCoefficientSet); } + /// Return a new object of type prodml23__BinaryInteractionCoefficientSet, default initialized and not managed by a soap context + virtual prodml23__BinaryInteractionCoefficientSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__BinaryInteractionCoefficientSet); } public: /// Constructor with default initializations - prodml22__BinaryInteractionCoefficientSet() : BinaryInteractionCoefficient(), soap() { } + prodml23__BinaryInteractionCoefficientSet() : BinaryInteractionCoefficient(), soap() { } /// Destructor - virtual ~prodml22__BinaryInteractionCoefficientSet() { } - /// Friend allocator used by soap_new_prodml22__BinaryInteractionCoefficientSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantiate_prodml22__BinaryInteractionCoefficientSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__BinaryInteractionCoefficientSet() { } + /// Friend allocator used by soap_new_prodml23__BinaryInteractionCoefficientSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__BinaryInteractionCoefficientSet * SOAP_FMAC2 soap_instantiate_prodml23__BinaryInteractionCoefficientSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1911 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet (-882) -/* complex XML schema type 'prodml22:ComponentPropertySet': */ -class SOAP_CMAC prodml22__ComponentPropertySet { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet (-882) +/* complex XML schema type 'prodml23:ComponentPropertySet': */ +class SOAP_CMAC prodml23__ComponentPropertySet { public: - /// Required element 'prodml22:FluidComponentProperty' of XML schema type 'prodml22:FluidComponentProperty' - std::vector FluidComponentProperty; + /// Required element 'prodml23:FluidComponentProperty' of XML schema type 'prodml23:FluidComponentProperty' + std::vector FluidComponentProperty; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26790,33 +26790,33 @@ class SOAP_CMAC prodml22__ComponentPropertySet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ComponentPropertySet, default initialized and not managed by a soap context - virtual prodml22__ComponentPropertySet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ComponentPropertySet); } + /// Return a new object of type prodml23__ComponentPropertySet, default initialized and not managed by a soap context + virtual prodml23__ComponentPropertySet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ComponentPropertySet); } public: /// Constructor with default initializations - prodml22__ComponentPropertySet() : FluidComponentProperty(), soap() { } + prodml23__ComponentPropertySet() : FluidComponentProperty(), soap() { } /// Destructor - virtual ~prodml22__ComponentPropertySet() { } - /// Friend allocator used by soap_new_prodml22__ComponentPropertySet(struct soap*, int) - friend SOAP_FMAC1 prodml22__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml22__ComponentPropertySet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ComponentPropertySet() { } + /// Friend allocator used by soap_new_prodml23__ComponentPropertySet(struct soap*, int) + friend SOAP_FMAC1 prodml23__ComponentPropertySet * SOAP_FMAC2 soap_instantiate_prodml23__ComponentPropertySet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1921 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension (-887) -/* complex XML schema type 'prodml22:CustomPvtModelExtension': */ -class SOAP_CMAC prodml22__CustomPvtModelExtension { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension (-887) +/* complex XML schema type 'prodml23:CustomPvtModelExtension': */ +class SOAP_CMAC prodml23__CustomPvtModelExtension { public: - /// Optional element 'prodml22:Description' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Description' of XML schema type 'eml23:String2000' std::string *Description; - /// Optional element 'prodml22:CustomPvtModelParameter' of XML schema type 'prodml22:CustomPvtModelParameter' - std::vector CustomPvtModelParameter; + /// Optional element 'prodml23:CustomPvtModelParameter' of XML schema type 'prodml23:CustomPvtModelParameter' + std::vector CustomPvtModelParameter; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26829,33 +26829,33 @@ class SOAP_CMAC prodml22__CustomPvtModelExtension { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomPvtModelExtension, default initialized and not managed by a soap context - virtual prodml22__CustomPvtModelExtension *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomPvtModelExtension); } + /// Return a new object of type prodml23__CustomPvtModelExtension, default initialized and not managed by a soap context + virtual prodml23__CustomPvtModelExtension *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomPvtModelExtension); } public: /// Constructor with default initializations - prodml22__CustomPvtModelExtension() : Description(), CustomPvtModelParameter(), soap() { } + prodml23__CustomPvtModelExtension() : Description(), CustomPvtModelParameter(), soap() { } /// Destructor - virtual ~prodml22__CustomPvtModelExtension() { } - /// Friend allocator used by soap_new_prodml22__CustomPvtModelExtension(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodml22__CustomPvtModelExtension(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomPvtModelExtension() { } + /// Friend allocator used by soap_new_prodml23__CustomPvtModelExtension(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomPvtModelExtension * SOAP_FMAC2 soap_instantiate_prodml23__CustomPvtModelExtension(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1923 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter (-888) -/* complex XML schema type 'prodml22:CustomPvtModelParameter': */ -class SOAP_CMAC prodml22__CustomPvtModelParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter (-888) +/* complex XML schema type 'prodml23:CustomPvtModelParameter': */ +class SOAP_CMAC prodml23__CustomPvtModelParameter { public: - /// Required element 'prodml22:CustomParameterValue' of XML schema type 'eml23:ExtensionNameValue' + /// Required element 'prodml23:CustomParameterValue' of XML schema type 'eml23:ExtensionNameValue' eml23__ExtensionNameValue *CustomParameterValue; /// Optional attribute 'fluidComponentReference' of XML schema type 'eml23:String64' std::string *fluidComponentReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26868,51 +26868,51 @@ class SOAP_CMAC prodml22__CustomPvtModelParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomPvtModelParameter, default initialized and not managed by a soap context - virtual prodml22__CustomPvtModelParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomPvtModelParameter); } + /// Return a new object of type prodml23__CustomPvtModelParameter, default initialized and not managed by a soap context + virtual prodml23__CustomPvtModelParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomPvtModelParameter); } public: /// Constructor with default initializations - prodml22__CustomPvtModelParameter() : CustomParameterValue(), fluidComponentReference(), soap() { } + prodml23__CustomPvtModelParameter() : CustomParameterValue(), fluidComponentReference(), soap() { } /// Destructor - virtual ~prodml22__CustomPvtModelParameter() { } - /// Friend allocator used by soap_new_prodml22__CustomPvtModelParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__CustomPvtModelParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomPvtModelParameter() { } + /// Friend allocator used by soap_new_prodml23__CustomPvtModelParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomPvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml23__CustomPvtModelParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1939 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel (-896) -/* complex XML schema type 'prodml22:FluidCharacterizationModel': */ -class SOAP_CMAC prodml22__FluidCharacterizationModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel (-896) +/* complex XML schema type 'prodml23:FluidCharacterizationModel': */ +class SOAP_CMAC prodml23__FluidCharacterizationModel { public: - /// Optional element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Name' of XML schema type 'eml23:String64' std::string *Name; - /// Optional element 'prodml22:ReferencePressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:ReferencePressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *ReferencePressure; - /// Optional element 'prodml22:ReferenceStockTankPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:ReferenceStockTankPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *ReferenceStockTankPressure; - /// Optional element 'prodml22:ReferenceTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReferenceTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReferenceTemperature; - /// Optional element 'prodml22:ReferenceStockTankTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReferenceStockTankTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReferenceStockTankTemperature; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:ModelSpecification' of XML schema type 'prodml22:AbstractPvtModel' - prodml22__AbstractPvtModel *ModelSpecification; - /// Optional element 'prodml22:FluidCharacterizationTable' of XML schema type 'prodml22:FluidCharacterizationTable' - std::vector FluidCharacterizationTable; - /// Optional element 'prodml22:FluidCharacterizationParameterSet' of XML schema type 'prodml22:FluidCharacterizationParameterSet' - prodml22__FluidCharacterizationParameterSet *FluidCharacterizationParameterSet; - /// Optional element 'prodml22:ReferenceSeparatorStage' of XML schema type 'prodml22:ReferenceSeparatorStage' - std::vector ReferenceSeparatorStage; + /// Optional element 'prodml23:ModelSpecification' of XML schema type 'prodml23:AbstractPvtModel' + prodml23__AbstractPvtModel *ModelSpecification; + /// Optional element 'prodml23:FluidCharacterizationTable' of XML schema type 'prodml23:FluidCharacterizationTable' + std::vector FluidCharacterizationTable; + /// Optional element 'prodml23:FluidCharacterizationParameterSet' of XML schema type 'prodml23:FluidCharacterizationParameterSet' + prodml23__FluidCharacterizationParameterSet *FluidCharacterizationParameterSet; + /// Optional element 'prodml23:ReferenceSeparatorStage' of XML schema type 'prodml23:ReferenceSeparatorStage' + std::vector ReferenceSeparatorStage; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26925,29 +26925,29 @@ class SOAP_CMAC prodml22__FluidCharacterizationModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationModel, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationModel); } + /// Return a new object of type prodml23__FluidCharacterizationModel, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationModel); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationModel() : Name(), ReferencePressure(), ReferenceStockTankPressure(), ReferenceTemperature(), ReferenceStockTankTemperature(), Remark(), ModelSpecification(), FluidCharacterizationTable(), FluidCharacterizationParameterSet(), ReferenceSeparatorStage(), uid(), soap() { } + prodml23__FluidCharacterizationModel() : Name(), ReferencePressure(), ReferenceStockTankPressure(), ReferenceTemperature(), ReferenceStockTankTemperature(), Remark(), ModelSpecification(), FluidCharacterizationTable(), FluidCharacterizationParameterSet(), ReferenceSeparatorStage(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationModel() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationModel() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationModel * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1941 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter (-897) -/* complex XML schema type 'prodml22:FluidCharacterizationParameter': */ -class SOAP_CMAC prodml22__FluidCharacterizationParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter (-897) +/* complex XML schema type 'prodml23:FluidCharacterizationParameter': */ +class SOAP_CMAC prodml23__FluidCharacterizationParameter { public: - /// Required element 'prodml22:Property' of XML schema type 'prodml22:OutputFluidPropertyExt' + /// Required element 'prodml23:Property' of XML schema type 'prodml23:OutputFluidPropertyExt' std::string Property; - /// Optional element 'prodml22:Phase' of XML schema type 'prodml22:ThermodynamicPhase' - prodml22__ThermodynamicPhase *Phase; - /// Optional element 'prodml22:KeywordAlias' of XML schema type 'eml23:ObjectAlias' + /// Optional element 'prodml23:Phase' of XML schema type 'prodml23:ThermodynamicPhase' + prodml23__ThermodynamicPhase *Phase; + /// Optional element 'prodml23:KeywordAlias' of XML schema type 'eml23:ObjectAlias' std::vector KeywordAlias; /// Optional attribute 'name' of XML schema type 'eml23:String64' std::string *name; @@ -26960,8 +26960,8 @@ class SOAP_CMAC prodml22__FluidCharacterizationParameter { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -26974,31 +26974,31 @@ class SOAP_CMAC prodml22__FluidCharacterizationParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationParameter, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationParameter); } + /// Return a new object of type prodml23__FluidCharacterizationParameter, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationParameter); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationParameter() : Property(), Phase(), KeywordAlias(), name(), value(), uom(), fluidComponentReference(), soap() { } + prodml23__FluidCharacterizationParameter() : Property(), Phase(), KeywordAlias(), name(), value(), uom(), fluidComponentReference(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationParameter() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationParameter() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationParameter * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1943 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet (-898) -/* complex XML schema type 'prodml22:FluidCharacterizationParameterSet': */ -class SOAP_CMAC prodml22__FluidCharacterizationParameterSet { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet (-898) +/* complex XML schema type 'prodml23:FluidCharacterizationParameterSet': */ +class SOAP_CMAC prodml23__FluidCharacterizationParameterSet { public: - /// Required element 'prodml22:FluidCharacterizationParameter' of XML schema type 'prodml22:FluidCharacterizationParameter' - std::vector FluidCharacterizationParameter; + /// Required element 'prodml23:FluidCharacterizationParameter' of XML schema type 'prodml23:FluidCharacterizationParameter' + std::vector FluidCharacterizationParameter; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27011,33 +27011,33 @@ class SOAP_CMAC prodml22__FluidCharacterizationParameterSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationParameterSet, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationParameterSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationParameterSet); } + /// Return a new object of type prodml23__FluidCharacterizationParameterSet, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationParameterSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationParameterSet); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationParameterSet() : FluidCharacterizationParameter(), soap() { } + prodml23__FluidCharacterizationParameterSet() : FluidCharacterizationParameter(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationParameterSet() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationParameterSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationParameterSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationParameterSet() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationParameterSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationParameterSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1945 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource (-899) -/* complex XML schema type 'prodml22:FluidCharacterizationSource': */ -class SOAP_CMAC prodml22__FluidCharacterizationSource { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource (-899) +/* complex XML schema type 'prodml23:FluidCharacterizationSource': */ +class SOAP_CMAC prodml23__FluidCharacterizationSource { public: - /// Optional element 'prodml22:FluidAnalysisTestReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:FluidAnalysisTestReference' of XML schema type 'eml23:String64' std::vector FluidAnalysisTestReference; - /// Optional element 'prodml22:FluidAnalysis' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidAnalysis' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidAnalysis; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27050,30 +27050,30 @@ class SOAP_CMAC prodml22__FluidCharacterizationSource { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationSource, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationSource *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationSource); } + /// Return a new object of type prodml23__FluidCharacterizationSource, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationSource *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationSource); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationSource() : FluidAnalysisTestReference(), FluidAnalysis(), soap() { } + prodml23__FluidCharacterizationSource() : FluidAnalysisTestReference(), FluidAnalysis(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationSource() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationSource(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationSource(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationSource() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationSource(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationSource * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationSource(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1947 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable (-900) -/* complex XML schema type 'prodml22:FluidCharacterizationTable': */ -class SOAP_CMAC prodml22__FluidCharacterizationTable { - public: - /// Optional element 'prodml22:TableConstant' of XML schema type 'prodml22:FluidCharacterizationParameter' - std::vector TableConstant; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable (-900) +/* complex XML schema type 'prodml23:FluidCharacterizationTable': */ +class SOAP_CMAC prodml23__FluidCharacterizationTable { + public: + /// Optional element 'prodml23:TableConstant' of XML schema type 'prodml23:FluidCharacterizationParameter' + std::vector TableConstant; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Required element 'prodml22:TableRow' of XML schema type 'prodml22:FluidCharacterizationTableRow' - std::vector TableRow; + /// Required element 'prodml23:TableRow' of XML schema type 'prodml23:FluidCharacterizationTableRow' + std::vector TableRow; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Required attribute 'tableFormat' of XML schema type 'eml23:String64' @@ -27083,8 +27083,8 @@ class SOAP_CMAC prodml22__FluidCharacterizationTable { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27097,29 +27097,29 @@ class SOAP_CMAC prodml22__FluidCharacterizationTable { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationTable, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationTable *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationTable); } + /// Return a new object of type prodml23__FluidCharacterizationTable, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationTable *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationTable); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationTable() : TableConstant(), Remark(), TableRow(), uid(), tableFormat(), name(), soap() { } + prodml23__FluidCharacterizationTable() : TableConstant(), Remark(), TableRow(), uid(), tableFormat(), name(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationTable() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationTable(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTable(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationTable() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationTable(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationTable * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTable(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1949 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn (-901) -/* complex XML schema type 'prodml22:FluidCharacterizationTableColumn': */ -class SOAP_CMAC prodml22__FluidCharacterizationTableColumn { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn (-901) +/* complex XML schema type 'prodml23:FluidCharacterizationTableColumn': */ +class SOAP_CMAC prodml23__FluidCharacterizationTableColumn { public: - /// Required element 'prodml22:Property' of XML schema type 'prodml22:OutputFluidPropertyExt' + /// Required element 'prodml23:Property' of XML schema type 'prodml23:OutputFluidPropertyExt' std::string Property; - /// Optional element 'prodml22:Phase' of XML schema type 'prodml22:ThermodynamicPhase' - prodml22__ThermodynamicPhase *Phase; - /// Optional element 'prodml22:KeywordAlias' of XML schema type 'eml23:ObjectAlias' + /// Optional element 'prodml23:Phase' of XML schema type 'prodml23:ThermodynamicPhase' + prodml23__ThermodynamicPhase *Phase; + /// Optional element 'prodml23:KeywordAlias' of XML schema type 'eml23:ObjectAlias' std::vector KeywordAlias; /// Optional attribute 'fluidComponentReference' of XML schema type 'eml23:String64' std::string *fluidComponentReference; @@ -27132,8 +27132,8 @@ class SOAP_CMAC prodml22__FluidCharacterizationTableColumn { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27146,37 +27146,37 @@ class SOAP_CMAC prodml22__FluidCharacterizationTableColumn { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationTableColumn, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationTableColumn *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationTableColumn); } + /// Return a new object of type prodml23__FluidCharacterizationTableColumn, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationTableColumn *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationTableColumn); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationTableColumn() : Property(), Phase(), KeywordAlias(), fluidComponentReference(), name(), sequence(), uom(), soap() { } + prodml23__FluidCharacterizationTableColumn() : Property(), Phase(), KeywordAlias(), fluidComponentReference(), name(), sequence(), uom(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationTableColumn() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationTableColumn(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableColumn(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationTableColumn() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationTableColumn(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationTableColumn * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableColumn(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1951 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat (-902) -/* complex XML schema type 'prodml22:FluidCharacterizationTableFormat': */ -class SOAP_CMAC prodml22__FluidCharacterizationTableFormat { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat (-902) +/* complex XML schema type 'prodml23:FluidCharacterizationTableFormat': */ +class SOAP_CMAC prodml23__FluidCharacterizationTableFormat { public: - /// Optional element 'prodml22:NullValue' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:NullValue' of XML schema type 'eml23:String64' std::string *NullValue; - /// Optional element 'prodml22:Delimiter' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Delimiter' of XML schema type 'eml23:String64' std::string *Delimiter; - /// Required element 'prodml22:TableColumn' of XML schema type 'prodml22:FluidCharacterizationTableColumn' - std::vector TableColumn; + /// Required element 'prodml23:TableColumn' of XML schema type 'prodml23:FluidCharacterizationTableColumn' + std::vector TableColumn; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27189,31 +27189,31 @@ class SOAP_CMAC prodml22__FluidCharacterizationTableFormat { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationTableFormat, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationTableFormat *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationTableFormat); } + /// Return a new object of type prodml23__FluidCharacterizationTableFormat, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationTableFormat *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationTableFormat); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationTableFormat() : NullValue(), Delimiter(), TableColumn(), uid(), soap() { } + prodml23__FluidCharacterizationTableFormat() : NullValue(), Delimiter(), TableColumn(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationTableFormat() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationTableFormat(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableFormat(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationTableFormat() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationTableFormat(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationTableFormat * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableFormat(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1953 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet (-903) -/* complex XML schema type 'prodml22:FluidCharacterizationTableFormatSet': */ -class SOAP_CMAC prodml22__FluidCharacterizationTableFormatSet { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet (-903) +/* complex XML schema type 'prodml23:FluidCharacterizationTableFormatSet': */ +class SOAP_CMAC prodml23__FluidCharacterizationTableFormatSet { public: - /// Required element 'prodml22:FluidCharacterizationTableFormat' of XML schema type 'prodml22:FluidCharacterizationTableFormat' - std::vector FluidCharacterizationTableFormat; + /// Required element 'prodml23:FluidCharacterizationTableFormat' of XML schema type 'prodml23:FluidCharacterizationTableFormat' + std::vector FluidCharacterizationTableFormat; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27226,67 +27226,67 @@ class SOAP_CMAC prodml22__FluidCharacterizationTableFormatSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationTableFormatSet, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationTableFormatSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationTableFormatSet); } + /// Return a new object of type prodml23__FluidCharacterizationTableFormatSet, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationTableFormatSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationTableFormatSet); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationTableFormatSet() : FluidCharacterizationTableFormat(), soap() { } + prodml23__FluidCharacterizationTableFormatSet() : FluidCharacterizationTableFormat(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationTableFormatSet() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationTableFormatSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableFormatSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationTableFormatSet() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationTableFormatSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationTableFormatSet * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableFormatSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1955 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty (-904) -/* complex XML schema type 'prodml22:FluidComponentProperty': */ -class SOAP_CMAC prodml22__FluidComponentProperty { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty (-904) +/* complex XML schema type 'prodml23:FluidComponentProperty': */ +class SOAP_CMAC prodml23__FluidComponentProperty { public: - /// Optional element 'prodml22:CriticalPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:CriticalPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *CriticalPressure; - /// Optional element 'prodml22:CriticalTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:CriticalTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *CriticalTemperature; - /// Optional element 'prodml22:CriticalViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:CriticalViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *CriticalViscosity; - /// Optional element 'prodml22:CompactVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:CompactVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *CompactVolume; - /// Optional element 'prodml22:CriticalVolume' of XML schema type 'eml23:MolarVolumeMeasure' + /// Optional element 'prodml23:CriticalVolume' of XML schema type 'eml23:MolarVolumeMeasure' eml23__MolarVolumeMeasure *CriticalVolume; - /// Optional element 'prodml22:AcentricFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:AcentricFactor' of XML schema type 'xsd:double' double *AcentricFactor; - /// Optional element 'prodml22:MassDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:MassDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *MassDensity; - /// Optional element 'prodml22:OmegaA' of XML schema type 'xsd:double' + /// Optional element 'prodml23:OmegaA' of XML schema type 'xsd:double' double *OmegaA; - /// Optional element 'prodml22:OmegaB' of XML schema type 'xsd:double' + /// Optional element 'prodml23:OmegaB' of XML schema type 'xsd:double' double *OmegaB; - /// Optional element 'prodml22:VolumeShiftParameter' of XML schema type 'xsd:double' + /// Optional element 'prodml23:VolumeShiftParameter' of XML schema type 'xsd:double' double *VolumeShiftParameter; - /// Optional element 'prodml22:PartialMolarDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:PartialMolarDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *PartialMolarDensity; - /// Optional element 'prodml22:Parachor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:Parachor' of XML schema type 'xsd:double' double *Parachor; - /// Optional element 'prodml22:PartialMolarVolume' of XML schema type 'eml23:MolarVolumeMeasure' + /// Optional element 'prodml23:PartialMolarVolume' of XML schema type 'eml23:MolarVolumeMeasure' eml23__MolarVolumeMeasure *PartialMolarVolume; - /// Optional element 'prodml22:ReferenceDensityZJ' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:ReferenceDensityZJ' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *ReferenceDensityZJ; - /// Optional element 'prodml22:ReferenceGravityZJ' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:ReferenceGravityZJ' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *ReferenceGravityZJ; - /// Optional element 'prodml22:ReferenceTemperatureZJ' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReferenceTemperatureZJ' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReferenceTemperatureZJ; - /// Optional element 'prodml22:ViscousCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' + /// Optional element 'prodml23:ViscousCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' eml23__ReciprocalPressureMeasure *ViscousCompressibility; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'fluidComponentReference' of XML schema type 'eml23:String64' std::string fluidComponentReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27299,41 +27299,41 @@ class SOAP_CMAC prodml22__FluidComponentProperty { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidComponentProperty, default initialized and not managed by a soap context - virtual prodml22__FluidComponentProperty *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidComponentProperty); } + /// Return a new object of type prodml23__FluidComponentProperty, default initialized and not managed by a soap context + virtual prodml23__FluidComponentProperty *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidComponentProperty); } public: /// Constructor with default initializations - prodml22__FluidComponentProperty() : CriticalPressure(), CriticalTemperature(), CriticalViscosity(), CompactVolume(), CriticalVolume(), AcentricFactor(), MassDensity(), OmegaA(), OmegaB(), VolumeShiftParameter(), PartialMolarDensity(), Parachor(), PartialMolarVolume(), ReferenceDensityZJ(), ReferenceGravityZJ(), ReferenceTemperatureZJ(), ViscousCompressibility(), Remark(), fluidComponentReference(), soap() { } + prodml23__FluidComponentProperty() : CriticalPressure(), CriticalTemperature(), CriticalViscosity(), CompactVolume(), CriticalVolume(), AcentricFactor(), MassDensity(), OmegaA(), OmegaB(), VolumeShiftParameter(), PartialMolarDensity(), Parachor(), PartialMolarVolume(), ReferenceDensityZJ(), ReferenceGravityZJ(), ReferenceTemperatureZJ(), ViscousCompressibility(), Remark(), fluidComponentReference(), soap() { } /// Destructor - virtual ~prodml22__FluidComponentProperty() { } - /// Friend allocator used by soap_new_prodml22__FluidComponentProperty(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentProperty(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidComponentProperty() { } + /// Friend allocator used by soap_new_prodml23__FluidComponentProperty(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidComponentProperty * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentProperty(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1977 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter (-915) -/* complex XML schema type 'prodml22:PrsvParameter': */ -class SOAP_CMAC prodml22__PrsvParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter (-915) +/* complex XML schema type 'prodml23:PrsvParameter': */ +class SOAP_CMAC prodml23__PrsvParameter { public: - /// Required element 'prodml22:a1' of XML schema type 'xsd:double' + /// Required element 'prodml23:a1' of XML schema type 'xsd:double' double a1; - /// Required element 'prodml22:a2' of XML schema type 'xsd:double' + /// Required element 'prodml23:a2' of XML schema type 'xsd:double' double a2; - /// Required element 'prodml22:b1' of XML schema type 'xsd:double' + /// Required element 'prodml23:b1' of XML schema type 'xsd:double' double b1; - /// Required element 'prodml22:b2' of XML schema type 'xsd:double' + /// Required element 'prodml23:b2' of XML schema type 'xsd:double' double b2; - /// Required element 'prodml22:c2' of XML schema type 'xsd:double' + /// Required element 'prodml23:c2' of XML schema type 'xsd:double' double c2; /// Required attribute 'fluidComponentReference' of XML schema type 'eml23:String64' std::string fluidComponentReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27346,31 +27346,31 @@ class SOAP_CMAC prodml22__PrsvParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PrsvParameter, default initialized and not managed by a soap context - virtual prodml22__PrsvParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PrsvParameter); } + /// Return a new object of type prodml23__PrsvParameter, default initialized and not managed by a soap context + virtual prodml23__PrsvParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PrsvParameter); } public: /// Constructor with default initializations - prodml22__PrsvParameter() : a1(), a2(), b1(), b2(), c2(), fluidComponentReference(), soap() { } + prodml23__PrsvParameter() : a1(), a2(), b1(), b2(), c2(), fluidComponentReference(), soap() { } /// Destructor - virtual ~prodml22__PrsvParameter() { } - /// Friend allocator used by soap_new_prodml22__PrsvParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml22__PrsvParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PrsvParameter() { } + /// Friend allocator used by soap_new_prodml23__PrsvParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__PrsvParameter * SOAP_FMAC2 soap_instantiate_prodml23__PrsvParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1981 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet (-917) -/* complex XML schema type 'prodml22:PvtModelParameterSet': */ -class SOAP_CMAC prodml22__PvtModelParameterSet { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet (-917) +/* complex XML schema type 'prodml23:PvtModelParameterSet': */ +class SOAP_CMAC prodml23__PvtModelParameterSet { public: - /// Required element 'prodml22:Coefficient' of XML schema type 'prodml22:PvtModelParameter' - std::vector Coefficient; + /// Required element 'prodml23:Coefficient' of XML schema type 'prodml23:PvtModelParameter' + std::vector Coefficient; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27383,35 +27383,35 @@ class SOAP_CMAC prodml22__PvtModelParameterSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PvtModelParameterSet, default initialized and not managed by a soap context - virtual prodml22__PvtModelParameterSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PvtModelParameterSet); } + /// Return a new object of type prodml23__PvtModelParameterSet, default initialized and not managed by a soap context + virtual prodml23__PvtModelParameterSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PvtModelParameterSet); } public: /// Constructor with default initializations - prodml22__PvtModelParameterSet() : Coefficient(), soap() { } + prodml23__PvtModelParameterSet() : Coefficient(), soap() { } /// Destructor - virtual ~prodml22__PvtModelParameterSet() { } - /// Friend allocator used by soap_new_prodml22__PvtModelParameterSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__PvtModelParameterSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PvtModelParameterSet() { } + /// Friend allocator used by soap_new_prodml23__PvtModelParameterSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__PvtModelParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__PvtModelParameterSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1983 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage (-918) -/* complex XML schema type 'prodml22:ReferenceSeparatorStage': */ -class SOAP_CMAC prodml22__ReferenceSeparatorStage { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage (-918) +/* complex XML schema type 'prodml23:ReferenceSeparatorStage': */ +class SOAP_CMAC prodml23__ReferenceSeparatorStage { public: - /// Optional element 'prodml22:SeparatorPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:SeparatorPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *SeparatorPressure; - /// Optional element 'prodml22:SeparatorTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasureExt' + /// Optional element 'prodml23:SeparatorTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasureExt' eml23__ThermodynamicTemperatureMeasureExt *SeparatorTemperature; - /// Optional element 'prodml22:SeparatorNumber' of XML schema type 'eml23:NonNegativeLong' + /// Optional element 'prodml23:SeparatorNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 *SeparatorNumber; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27424,35 +27424,35 @@ class SOAP_CMAC prodml22__ReferenceSeparatorStage { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReferenceSeparatorStage, default initialized and not managed by a soap context - virtual prodml22__ReferenceSeparatorStage *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReferenceSeparatorStage); } + /// Return a new object of type prodml23__ReferenceSeparatorStage, default initialized and not managed by a soap context + virtual prodml23__ReferenceSeparatorStage *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReferenceSeparatorStage); } public: /// Constructor with default initializations - prodml22__ReferenceSeparatorStage() : SeparatorPressure(), SeparatorTemperature(), SeparatorNumber(), soap() { } + prodml23__ReferenceSeparatorStage() : SeparatorPressure(), SeparatorTemperature(), SeparatorNumber(), soap() { } /// Destructor - virtual ~prodml22__ReferenceSeparatorStage() { } - /// Friend allocator used by soap_new_prodml22__ReferenceSeparatorStage(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodml22__ReferenceSeparatorStage(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReferenceSeparatorStage() { } + /// Friend allocator used by soap_new_prodml23__ReferenceSeparatorStage(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReferenceSeparatorStage * SOAP_FMAC2 soap_instantiate_prodml23__ReferenceSeparatorStage(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1993 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass (-923) -/* complex XML schema type 'prodml22:AbstractDateTimeClass': */ -class SOAP_CMAC prodml22__AbstractDateTimeClass { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass (-923) +/* complex XML schema type 'prodml23:AbstractDateTimeClass': */ +class SOAP_CMAC prodml23__AbstractDateTimeClass { public: - /// Optional element 'prodml22:DTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTime' of XML schema type 'eml23:TimeStamp' struct tm *DTime; - /// Optional element 'prodml22:Date' of XML schema type 'xsd:date' + /// Optional element 'prodml23:Date' of XML schema type 'xsd:date' std::string *Date; - /// Optional element 'prodml22:Month' of XML schema type 'prodml22:CalendarMonth' + /// Optional element 'prodml23:Month' of XML schema type 'prodml23:CalendarMonth' std::string *Month; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27465,39 +27465,39 @@ class SOAP_CMAC prodml22__AbstractDateTimeClass { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractDateTimeClass, default initialized and not managed by a soap context - virtual prodml22__AbstractDateTimeClass *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractDateTimeClass); } + /// Return a new object of type prodml23__AbstractDateTimeClass, default initialized and not managed by a soap context + virtual prodml23__AbstractDateTimeClass *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractDateTimeClass); } public: /// Constructor with default initializations - prodml22__AbstractDateTimeClass() : DTime(), Date(), Month(), soap() { } + prodml23__AbstractDateTimeClass() : DTime(), Date(), Month(), soap() { } /// Destructor - virtual ~prodml22__AbstractDateTimeClass() { } - /// Friend allocator used by soap_new_prodml22__AbstractDateTimeClass(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml22__AbstractDateTimeClass(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractDateTimeClass() { } + /// Friend allocator used by soap_new_prodml23__AbstractDateTimeClass(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractDateTimeClass * SOAP_FMAC2 soap_instantiate_prodml23__AbstractDateTimeClass(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1995 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent (-924) -/* complex XML schema type 'prodml22:AbstractFluidComponent': */ -class SOAP_CMAC prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent (-924) +/* complex XML schema type 'prodml23:AbstractFluidComponent': */ +class SOAP_CMAC prodml23__AbstractFluidComponent { public: - /// Optional element 'prodml22:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *MassFraction; - /// Optional element 'prodml22:VolumeConcentration' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:VolumeConcentration' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *VolumeConcentration; - /// Optional element 'prodml22:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction; - /// Optional element 'prodml22:ConcentrationRelativeToDetectableLimits' of XML schema type 'prodml22:DetectableLimitRelativeStateKind' - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits; + /// Optional element 'prodml23:ConcentrationRelativeToDetectableLimits' of XML schema type 'prodml23:DetectableLimitRelativeStateKind' + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27510,37 +27510,37 @@ class SOAP_CMAC prodml22__AbstractFluidComponent { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractFluidComponent, default initialized and not managed by a soap context - virtual prodml22__AbstractFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractFluidComponent); } + /// Return a new object of type prodml23__AbstractFluidComponent, default initialized and not managed by a soap context + virtual prodml23__AbstractFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractFluidComponent); } public: /// Constructor with default initializations - prodml22__AbstractFluidComponent() : MassFraction(), VolumeConcentration(), MoleFraction(), ConcentrationRelativeToDetectableLimits(), uid(), soap() { } + prodml23__AbstractFluidComponent() : MassFraction(), VolumeConcentration(), MoleFraction(), ConcentrationRelativeToDetectableLimits(), uid(), soap() { } /// Destructor - virtual ~prodml22__AbstractFluidComponent() { } - /// Friend allocator used by soap_new_prodml22__AbstractFluidComponent(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__AbstractFluidComponent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractFluidComponent() { } + /// Friend allocator used by soap_new_prodml23__AbstractFluidComponent(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__AbstractFluidComponent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1997 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity (-925) -/* complex XML schema type 'prodml22:AbstractProductQuantity': */ -class SOAP_CMAC prodml22__AbstractProductQuantity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity (-925) +/* complex XML schema type 'prodml23:AbstractProductQuantity': */ +class SOAP_CMAC prodml23__AbstractProductQuantity { public: - /// Optional element 'prodml22:Volume' of XML schema type 'eml23:VolumeValue' + /// Optional element 'prodml23:Volume' of XML schema type 'eml23:VolumeValue' eml23__VolumeValue *Volume; - /// Optional element 'prodml22:Mass' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:Mass' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *Mass; - /// Optional element 'prodml22:Moles' of XML schema type 'eml23:AmountOfSubstanceMeasure' + /// Optional element 'prodml23:Moles' of XML schema type 'eml23:AmountOfSubstanceMeasure' eml23__AmountOfSubstanceMeasure *Moles; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27553,23 +27553,23 @@ class SOAP_CMAC prodml22__AbstractProductQuantity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractProductQuantity, default initialized and not managed by a soap context - virtual prodml22__AbstractProductQuantity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractProductQuantity); } + /// Return a new object of type prodml23__AbstractProductQuantity, default initialized and not managed by a soap context + virtual prodml23__AbstractProductQuantity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractProductQuantity); } public: /// Constructor with default initializations - prodml22__AbstractProductQuantity() : Volume(), Mass(), Moles(), uid(), soap() { } + prodml23__AbstractProductQuantity() : Volume(), Mass(), Moles(), uid(), soap() { } /// Destructor - virtual ~prodml22__AbstractProductQuantity() { } - /// Friend allocator used by soap_new_prodml22__AbstractProductQuantity(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodml22__AbstractProductQuantity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractProductQuantity() { } + /// Friend allocator used by soap_new_prodml23__AbstractProductQuantity(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractProductQuantity * SOAP_FMAC2 soap_instantiate_prodml23__AbstractProductQuantity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1999 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter (-926) -/* complex XML schema type 'prodml22:CalibrationParameter': */ -class SOAP_CMAC prodml22__CalibrationParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter (-926) +/* complex XML schema type 'prodml23:CalibrationParameter': */ +class SOAP_CMAC prodml23__CalibrationParameter { public: /// Optional attribute 'uom' of XML schema type 'eml23:UomEnum' std::string *uom; @@ -27578,8 +27578,8 @@ class SOAP_CMAC prodml22__CalibrationParameter { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27592,41 +27592,41 @@ class SOAP_CMAC prodml22__CalibrationParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CalibrationParameter, default initialized and not managed by a soap context - virtual prodml22__CalibrationParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CalibrationParameter); } + /// Return a new object of type prodml23__CalibrationParameter, default initialized and not managed by a soap context + virtual prodml23__CalibrationParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CalibrationParameter); } public: /// Constructor with default initializations - prodml22__CalibrationParameter() : uom(), name(), soap() { } + prodml23__CalibrationParameter() : uom(), name(), soap() { } /// Destructor - virtual ~prodml22__CalibrationParameter() { } - /// Friend allocator used by soap_new_prodml22__CalibrationParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml22__CalibrationParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CalibrationParameter() { } + /// Friend allocator used by soap_new_prodml23__CalibrationParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__CalibrationParameter * SOAP_FMAC2 soap_instantiate_prodml23__CalibrationParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2001 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment (-927) -/* complex XML schema type 'prodml22:DatedComment': */ -class SOAP_CMAC prodml22__DatedComment { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment (-927) +/* complex XML schema type 'prodml23:DatedComment': */ +class SOAP_CMAC prodml23__DatedComment { public: - /// Optional element 'prodml22:Who' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Who' of XML schema type 'eml23:String64' std::string *Who; - /// Optional element 'prodml22:Role' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Role' of XML schema type 'eml23:String64' std::string *Role; - /// Optional element 'prodml22:StartTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:StartTime' of XML schema type 'eml23:TimeStamp' struct tm *StartTime; - /// Optional element 'prodml22:EndTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EndTime' of XML schema type 'eml23:TimeStamp' struct tm *EndTime; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27639,31 +27639,31 @@ class SOAP_CMAC prodml22__DatedComment { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DatedComment, default initialized and not managed by a soap context - virtual prodml22__DatedComment *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DatedComment); } + /// Return a new object of type prodml23__DatedComment, default initialized and not managed by a soap context + virtual prodml23__DatedComment *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DatedComment); } public: /// Constructor with default initializations - prodml22__DatedComment() : Who(), Role(), StartTime(), EndTime(), Remark(), uid(), soap() { } + prodml23__DatedComment() : Who(), Role(), StartTime(), EndTime(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__DatedComment() { } - /// Friend allocator used by soap_new_prodml22__DatedComment(struct soap*, int) - friend SOAP_FMAC1 prodml22__DatedComment * SOAP_FMAC2 soap_instantiate_prodml22__DatedComment(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DatedComment() { } + /// Friend allocator used by soap_new_prodml23__DatedComment(struct soap*, int) + friend SOAP_FMAC1 prodml23__DatedComment * SOAP_FMAC2 soap_instantiate_prodml23__DatedComment(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2003 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate (-928) -/* complex XML schema type 'prodml22:EndpointQualifiedDate': */ -class SOAP_CMAC prodml22__EndpointQualifiedDate { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate (-928) +/* complex XML schema type 'prodml23:EndpointQualifiedDate': */ +class SOAP_CMAC prodml23__EndpointQualifiedDate { public: - /// Optional attribute 'endpoint' of XML schema type 'prodml22:EndpointQualifier' - prodml22__EndpointQualifier *endpoint; + /// Optional attribute 'endpoint' of XML schema type 'prodml23:EndpointQualifier' + prodml23__EndpointQualifier *endpoint; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27676,31 +27676,31 @@ class SOAP_CMAC prodml22__EndpointQualifiedDate { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__EndpointQualifiedDate, default initialized and not managed by a soap context - virtual prodml22__EndpointQualifiedDate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__EndpointQualifiedDate); } + /// Return a new object of type prodml23__EndpointQualifiedDate, default initialized and not managed by a soap context + virtual prodml23__EndpointQualifiedDate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__EndpointQualifiedDate); } public: /// Constructor with default initializations - prodml22__EndpointQualifiedDate() : endpoint(), soap() { } + prodml23__EndpointQualifiedDate() : endpoint(), soap() { } /// Destructor - virtual ~prodml22__EndpointQualifiedDate() { } - /// Friend allocator used by soap_new_prodml22__EndpointQualifiedDate(struct soap*, int) - friend SOAP_FMAC1 prodml22__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQualifiedDate(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__EndpointQualifiedDate() { } + /// Friend allocator used by soap_new_prodml23__EndpointQualifiedDate(struct soap*, int) + friend SOAP_FMAC1 prodml23__EndpointQualifiedDate * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQualifiedDate(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2005 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime (-929) -/* complex XML schema type 'prodml22:EndpointQualifiedDateTime': */ -class SOAP_CMAC prodml22__EndpointQualifiedDateTime { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime (-929) +/* complex XML schema type 'prodml23:EndpointQualifiedDateTime': */ +class SOAP_CMAC prodml23__EndpointQualifiedDateTime { public: - /// Optional attribute 'endpoint' of XML schema type 'prodml22:EndpointQualifier' - prodml22__EndpointQualifier *endpoint; + /// Optional attribute 'endpoint' of XML schema type 'prodml23:EndpointQualifier' + prodml23__EndpointQualifier *endpoint; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27713,46 +27713,46 @@ class SOAP_CMAC prodml22__EndpointQualifiedDateTime { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__EndpointQualifiedDateTime, default initialized and not managed by a soap context - virtual prodml22__EndpointQualifiedDateTime *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__EndpointQualifiedDateTime); } + /// Return a new object of type prodml23__EndpointQualifiedDateTime, default initialized and not managed by a soap context + virtual prodml23__EndpointQualifiedDateTime *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__EndpointQualifiedDateTime); } public: /// Constructor with default initializations - prodml22__EndpointQualifiedDateTime() : endpoint(), soap() { } + prodml23__EndpointQualifiedDateTime() : endpoint(), soap() { } /// Destructor - virtual ~prodml22__EndpointQualifiedDateTime() { } - /// Friend allocator used by soap_new_prodml22__EndpointQualifiedDateTime(struct soap*, int) - friend SOAP_FMAC1 prodml22__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQualifiedDateTime(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__EndpointQualifiedDateTime() { } + /// Friend allocator used by soap_new_prodml23__EndpointQualifiedDateTime(struct soap*, int) + friend SOAP_FMAC1 prodml23__EndpointQualifiedDateTime * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQualifiedDateTime(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2007 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier (-930) -/* complex XML schema type 'prodml22:FacilityIdentifier': */ -class SOAP_CMAC prodml22__FacilityIdentifier { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier (-930) +/* complex XML schema type 'prodml23:FacilityIdentifier': */ +class SOAP_CMAC prodml23__FacilityIdentifier { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:NameStruct' + /// Required element 'prodml23:Name' of XML schema type 'eml23:NameStruct' eml23__NameStruct *Name; - /// Optional element 'prodml22:Installation' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Installation; - /// Optional element 'prodml22:Kind' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Installation' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Installation; + /// Optional element 'prodml23:Kind' of XML schema type 'eml23:String64' std::string *Kind; - /// Optional element 'prodml22:ContextFacility' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *ContextFacility; - /// Optional element 'prodml22:BusinessUnit' of XML schema type 'prodml22:ProductVolumeBusinessUnit' - prodml22__ProductVolumeBusinessUnit *BusinessUnit; - /// Optional element 'prodml22:Operator' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:ContextFacility' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *ContextFacility; + /// Optional element 'prodml23:BusinessUnit' of XML schema type 'prodml23:ProductVolumeBusinessUnit' + prodml23__ProductVolumeBusinessUnit *BusinessUnit; + /// Optional element 'prodml23:Operator' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Operator; - /// Optional element 'prodml22:GeographicContext' of XML schema type 'prodml22:GeographicContext' - prodml22__GeographicContext *GeographicContext; + /// Optional element 'prodml23:GeographicContext' of XML schema type 'prodml23:GeographicContext' + prodml23__GeographicContext *GeographicContext; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; char *__mixed; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27765,26 +27765,26 @@ class SOAP_CMAC prodml22__FacilityIdentifier { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FacilityIdentifier, default initialized and not managed by a soap context - virtual prodml22__FacilityIdentifier *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FacilityIdentifier); } + /// Return a new object of type prodml23__FacilityIdentifier, default initialized and not managed by a soap context + virtual prodml23__FacilityIdentifier *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FacilityIdentifier); } public: /// Constructor with default initializations - prodml22__FacilityIdentifier() : Name(), Installation(), Kind(), ContextFacility(), BusinessUnit(), Operator(), GeographicContext(), uid(), __mixed(), soap() { } + prodml23__FacilityIdentifier() : Name(), Installation(), Kind(), ContextFacility(), BusinessUnit(), Operator(), GeographicContext(), uid(), __mixed(), soap() { } /// Destructor - virtual ~prodml22__FacilityIdentifier() { } - /// Friend allocator used by soap_new_prodml22__FacilityIdentifier(struct soap*, int) - friend SOAP_FMAC1 prodml22__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml22__FacilityIdentifier(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FacilityIdentifier() { } + /// Friend allocator used by soap_new_prodml23__FacilityIdentifier(struct soap*, int) + friend SOAP_FMAC1 prodml23__FacilityIdentifier * SOAP_FMAC2 soap_instantiate_prodml23__FacilityIdentifier(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2009 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct (-931) -/* complex XML schema type 'prodml22:FacilityIdentifierStruct': */ -class SOAP_CMAC prodml22__FacilityIdentifierStruct { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct (-931) +/* complex XML schema type 'prodml23:FacilityIdentifierStruct': */ +class SOAP_CMAC prodml23__FacilityIdentifierStruct { public: - /// Optional attribute 'kind' of XML schema type 'prodml22:ReportingFacility' - prodml22__ReportingFacility *kind; + /// Optional attribute 'kind' of XML schema type 'prodml23:ReportingFacility' + prodml23__ReportingFacility *kind; /// Optional attribute 'siteKind' of XML schema type 'eml23:String64' std::string *siteKind; /// Optional attribute 'namingSystem' of XML schema type 'eml23:String64' @@ -27795,8 +27795,8 @@ class SOAP_CMAC prodml22__FacilityIdentifierStruct { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27809,43 +27809,43 @@ class SOAP_CMAC prodml22__FacilityIdentifierStruct { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FacilityIdentifierStruct, default initialized and not managed by a soap context - virtual prodml22__FacilityIdentifierStruct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FacilityIdentifierStruct); } + /// Return a new object of type prodml23__FacilityIdentifierStruct, default initialized and not managed by a soap context + virtual prodml23__FacilityIdentifierStruct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FacilityIdentifierStruct); } public: /// Constructor with default initializations - prodml22__FacilityIdentifierStruct() : kind(), siteKind(), namingSystem(), uidRef(), __mixed(), soap() { } + prodml23__FacilityIdentifierStruct() : kind(), siteKind(), namingSystem(), uidRef(), __mixed(), soap() { } /// Destructor - virtual ~prodml22__FacilityIdentifierStruct() { } - /// Friend allocator used by soap_new_prodml22__FacilityIdentifierStruct(struct soap*, int) - friend SOAP_FMAC1 prodml22__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prodml22__FacilityIdentifierStruct(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FacilityIdentifierStruct() { } + /// Friend allocator used by soap_new_prodml23__FacilityIdentifierStruct(struct soap*, int) + friend SOAP_FMAC1 prodml23__FacilityIdentifierStruct * SOAP_FMAC2 soap_instantiate_prodml23__FacilityIdentifierStruct(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2011 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog (-932) -/* complex XML schema type 'prodml22:FluidComponentCatalog': */ -class SOAP_CMAC prodml22__FluidComponentCatalog { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog (-932) +/* complex XML schema type 'prodml23:FluidComponentCatalog': */ +class SOAP_CMAC prodml23__FluidComponentCatalog { public: - /// Optional element 'prodml22:StockTankOil' of XML schema type 'prodml22:StockTankOil' - std::vector StockTankOil; - /// Optional element 'prodml22:NaturalGas' of XML schema type 'prodml22:NaturalGas' - std::vector NaturalGas; - /// Optional element 'prodml22:FormationWater' of XML schema type 'prodml22:FormationWater' - std::vector FormationWater; - /// Optional element 'prodml22:PureFluidComponent' of XML schema type 'prodml22:PureFluidComponent' - std::vector PureFluidComponent; - /// Optional element 'prodml22:PseudoFluidComponent' of XML schema type 'prodml22:PseudoFluidComponent' - std::vector PseudoFluidComponent; - /// Optional element 'prodml22:PlusFluidComponent' of XML schema type 'prodml22:PlusFluidComponent' - std::vector PlusFluidComponent; - /// Optional element 'prodml22:SulfurFluidComponent' of XML schema type 'prodml22:SulfurFluidComponent' - std::vector SulfurFluidComponent; + /// Optional element 'prodml23:StockTankOil' of XML schema type 'prodml23:StockTankOil' + std::vector StockTankOil; + /// Optional element 'prodml23:NaturalGas' of XML schema type 'prodml23:NaturalGas' + std::vector NaturalGas; + /// Optional element 'prodml23:FormationWater' of XML schema type 'prodml23:FormationWater' + std::vector FormationWater; + /// Optional element 'prodml23:PureFluidComponent' of XML schema type 'prodml23:PureFluidComponent' + std::vector PureFluidComponent; + /// Optional element 'prodml23:PseudoFluidComponent' of XML schema type 'prodml23:PseudoFluidComponent' + std::vector PseudoFluidComponent; + /// Optional element 'prodml23:PlusFluidComponent' of XML schema type 'prodml23:PlusFluidComponent' + std::vector PlusFluidComponent; + /// Optional element 'prodml23:SulfurFluidComponent' of XML schema type 'prodml23:SulfurFluidComponent' + std::vector SulfurFluidComponent; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27858,43 +27858,43 @@ class SOAP_CMAC prodml22__FluidComponentCatalog { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidComponentCatalog, default initialized and not managed by a soap context - virtual prodml22__FluidComponentCatalog *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidComponentCatalog); } + /// Return a new object of type prodml23__FluidComponentCatalog, default initialized and not managed by a soap context + virtual prodml23__FluidComponentCatalog *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidComponentCatalog); } public: /// Constructor with default initializations - prodml22__FluidComponentCatalog() : StockTankOil(), NaturalGas(), FormationWater(), PureFluidComponent(), PseudoFluidComponent(), PlusFluidComponent(), SulfurFluidComponent(), soap() { } + prodml23__FluidComponentCatalog() : StockTankOil(), NaturalGas(), FormationWater(), PureFluidComponent(), PseudoFluidComponent(), PlusFluidComponent(), SulfurFluidComponent(), soap() { } /// Destructor - virtual ~prodml22__FluidComponentCatalog() { } - /// Friend allocator used by soap_new_prodml22__FluidComponentCatalog(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentCatalog(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidComponentCatalog() { } + /// Friend allocator used by soap_new_prodml23__FluidComponentCatalog(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidComponentCatalog * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentCatalog(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2013 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction (-933) -/* complex XML schema type 'prodml22:FluidComponentFraction': */ -class SOAP_CMAC prodml22__FluidComponentFraction { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction (-933) +/* complex XML schema type 'prodml23:FluidComponentFraction': */ +class SOAP_CMAC prodml23__FluidComponentFraction { public: - /// Optional element 'prodml22:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *MassFraction; - /// Optional element 'prodml22:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction; - /// Optional element 'prodml22:VolumeFraction' of XML schema type 'eml23:VolumePerVolumeMeasureExt' + /// Optional element 'prodml23:VolumeFraction' of XML schema type 'eml23:VolumePerVolumeMeasureExt' eml23__VolumePerVolumeMeasureExt *VolumeFraction; - /// Optional element 'prodml22:VolumeConcentration' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:VolumeConcentration' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *VolumeConcentration; - /// Optional element 'prodml22:KValue' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:KValue' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *KValue; - /// Optional element 'prodml22:ConcentrationRelativeToDetectableLimits' of XML schema type 'prodml22:DetectableLimitRelativeStateKind' - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits; + /// Optional element 'prodml23:ConcentrationRelativeToDetectableLimits' of XML schema type 'prodml23:DetectableLimitRelativeStateKind' + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits; /// Required attribute 'fluidComponentReference' of XML schema type 'eml23:String64' std::string fluidComponentReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27907,31 +27907,31 @@ class SOAP_CMAC prodml22__FluidComponentFraction { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidComponentFraction, default initialized and not managed by a soap context - virtual prodml22__FluidComponentFraction *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidComponentFraction); } + /// Return a new object of type prodml23__FluidComponentFraction, default initialized and not managed by a soap context + virtual prodml23__FluidComponentFraction *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidComponentFraction); } public: /// Constructor with default initializations - prodml22__FluidComponentFraction() : MassFraction(), MoleFraction(), VolumeFraction(), VolumeConcentration(), KValue(), ConcentrationRelativeToDetectableLimits(), fluidComponentReference(), soap() { } + prodml23__FluidComponentFraction() : MassFraction(), MoleFraction(), VolumeFraction(), VolumeConcentration(), KValue(), ConcentrationRelativeToDetectableLimits(), fluidComponentReference(), soap() { } /// Destructor - virtual ~prodml22__FluidComponentFraction() { } - /// Friend allocator used by soap_new_prodml22__FluidComponentFraction(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml22__FluidComponentFraction(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidComponentFraction() { } + /// Friend allocator used by soap_new_prodml23__FluidComponentFraction(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidComponentFraction * SOAP_FMAC2 soap_instantiate_prodml23__FluidComponentFraction(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2017 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType (-935) -/* complex XML schema type 'prodml22:GeneralMeasureType': */ -class SOAP_CMAC prodml22__GeneralMeasureType { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType (-935) +/* complex XML schema type 'prodml23:GeneralMeasureType': */ +class SOAP_CMAC prodml23__GeneralMeasureType { public: /// Optional attribute 'uom' of XML schema type 'eml23:UomEnum' std::string *uom; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27944,41 +27944,41 @@ class SOAP_CMAC prodml22__GeneralMeasureType { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__GeneralMeasureType, default initialized and not managed by a soap context - virtual prodml22__GeneralMeasureType *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__GeneralMeasureType); } + /// Return a new object of type prodml23__GeneralMeasureType, default initialized and not managed by a soap context + virtual prodml23__GeneralMeasureType *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__GeneralMeasureType); } public: /// Constructor with default initializations - prodml22__GeneralMeasureType() : uom(), soap() { } + prodml23__GeneralMeasureType() : uom(), soap() { } /// Destructor - virtual ~prodml22__GeneralMeasureType() { } - /// Friend allocator used by soap_new_prodml22__GeneralMeasureType(struct soap*, int) - friend SOAP_FMAC1 prodml22__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml22__GeneralMeasureType(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__GeneralMeasureType() { } + /// Friend allocator used by soap_new_prodml23__GeneralMeasureType(struct soap*, int) + friend SOAP_FMAC1 prodml23__GeneralMeasureType * SOAP_FMAC2 soap_instantiate_prodml23__GeneralMeasureType(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2021 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext (-937) -/* complex XML schema type 'prodml22:GeographicContext': */ -class SOAP_CMAC prodml22__GeographicContext { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext (-937) +/* complex XML schema type 'prodml23:GeographicContext': */ +class SOAP_CMAC prodml23__GeographicContext { public: - /// Optional element 'prodml22:Country' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Country' of XML schema type 'eml23:String64' std::string *Country; - /// Optional element 'prodml22:State' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:State' of XML schema type 'eml23:String64' std::string *State; - /// Optional element 'prodml22:County' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:County' of XML schema type 'eml23:String64' std::string *County; - /// Optional element 'prodml22:Field' of XML schema type 'eml23:NameStruct' + /// Optional element 'prodml23:Field' of XML schema type 'eml23:NameStruct' eml23__NameStruct *Field; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:OffshoreLocation' of XML schema type 'prodml22:OffshoreLocation' - prodml22__OffshoreLocation *OffshoreLocation; + /// Optional element 'prodml23:OffshoreLocation' of XML schema type 'prodml23:OffshoreLocation' + prodml23__OffshoreLocation *OffshoreLocation; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -27991,33 +27991,33 @@ class SOAP_CMAC prodml22__GeographicContext { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__GeographicContext, default initialized and not managed by a soap context - virtual prodml22__GeographicContext *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__GeographicContext); } + /// Return a new object of type prodml23__GeographicContext, default initialized and not managed by a soap context + virtual prodml23__GeographicContext *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__GeographicContext); } public: /// Constructor with default initializations - prodml22__GeographicContext() : Country(), State(), County(), Field(), Comment(), OffshoreLocation(), soap() { } + prodml23__GeographicContext() : Country(), State(), County(), Field(), Comment(), OffshoreLocation(), soap() { } /// Destructor - virtual ~prodml22__GeographicContext() { } - /// Friend allocator used by soap_new_prodml22__GeographicContext(struct soap*, int) - friend SOAP_FMAC1 prodml22__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml22__GeographicContext(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__GeographicContext() { } + /// Friend allocator used by soap_new_prodml23__GeographicContext(struct soap*, int) + friend SOAP_FMAC1 prodml23__GeographicContext * SOAP_FMAC2 soap_instantiate_prodml23__GeographicContext(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2027 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition (-940) -/* complex XML schema type 'prodml22:LiquidComposition': */ -class SOAP_CMAC prodml22__LiquidComposition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition (-940) +/* complex XML schema type 'prodml23:LiquidComposition': */ +class SOAP_CMAC prodml23__LiquidComposition { public: - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:LiquidComponentFraction' of XML schema type 'prodml22:FluidComponentFraction' - std::vector LiquidComponentFraction; + /// Optional element 'prodml23:LiquidComponentFraction' of XML schema type 'prodml23:FluidComponentFraction' + std::vector LiquidComponentFraction; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28030,35 +28030,35 @@ class SOAP_CMAC prodml22__LiquidComposition { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LiquidComposition, default initialized and not managed by a soap context - virtual prodml22__LiquidComposition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LiquidComposition); } + /// Return a new object of type prodml23__LiquidComposition, default initialized and not managed by a soap context + virtual prodml23__LiquidComposition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LiquidComposition); } public: /// Constructor with default initializations - prodml22__LiquidComposition() : Remark(), LiquidComponentFraction(), soap() { } + prodml23__LiquidComposition() : Remark(), LiquidComponentFraction(), soap() { } /// Destructor - virtual ~prodml22__LiquidComposition() { } - /// Friend allocator used by soap_new_prodml22__LiquidComposition(struct soap*, int) - friend SOAP_FMAC1 prodml22__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml22__LiquidComposition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LiquidComposition() { } + /// Friend allocator used by soap_new_prodml23__LiquidComposition(struct soap*, int) + friend SOAP_FMAC1 prodml23__LiquidComposition * SOAP_FMAC2 soap_instantiate_prodml23__LiquidComposition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2033 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore (-943) -/* complex XML schema type 'prodml22:NorthSeaOffshore': */ -class SOAP_CMAC prodml22__NorthSeaOffshore { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore (-943) +/* complex XML schema type 'prodml23:NorthSeaOffshore': */ +class SOAP_CMAC prodml23__NorthSeaOffshore { public: - /// Optional element 'prodml22:AreaName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:AreaName' of XML schema type 'eml23:String64' std::string *AreaName; - /// Required element 'prodml22:Quadrant' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Quadrant' of XML schema type 'eml23:String64' std::string Quadrant; - /// Optional element 'prodml22:BlockSuffix' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:BlockSuffix' of XML schema type 'eml23:String64' std::string *BlockSuffix; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28071,37 +28071,37 @@ class SOAP_CMAC prodml22__NorthSeaOffshore { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NorthSeaOffshore, default initialized and not managed by a soap context - virtual prodml22__NorthSeaOffshore *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NorthSeaOffshore); } + /// Return a new object of type prodml23__NorthSeaOffshore, default initialized and not managed by a soap context + virtual prodml23__NorthSeaOffshore *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NorthSeaOffshore); } public: /// Constructor with default initializations - prodml22__NorthSeaOffshore() : AreaName(), Quadrant(), BlockSuffix(), soap() { } + prodml23__NorthSeaOffshore() : AreaName(), Quadrant(), BlockSuffix(), soap() { } /// Destructor - virtual ~prodml22__NorthSeaOffshore() { } - /// Friend allocator used by soap_new_prodml22__NorthSeaOffshore(struct soap*, int) - friend SOAP_FMAC1 prodml22__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml22__NorthSeaOffshore(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NorthSeaOffshore() { } + /// Friend allocator used by soap_new_prodml23__NorthSeaOffshore(struct soap*, int) + friend SOAP_FMAC1 prodml23__NorthSeaOffshore * SOAP_FMAC2 soap_instantiate_prodml23__NorthSeaOffshore(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2035 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation (-944) -/* complex XML schema type 'prodml22:OffshoreLocation': */ -class SOAP_CMAC prodml22__OffshoreLocation { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation (-944) +/* complex XML schema type 'prodml23:OffshoreLocation': */ +class SOAP_CMAC prodml23__OffshoreLocation { public: - /// Optional element 'prodml22:AreaName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:AreaName' of XML schema type 'eml23:String64' std::string *AreaName; - /// Required element 'prodml22:BlockID' of XML schema type 'eml23:String64' + /// Required element 'prodml23:BlockID' of XML schema type 'eml23:String64' std::vector BlockID; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:NorthSeaOffshore' of XML schema type 'prodml22:NorthSeaOffshore' - prodml22__NorthSeaOffshore *NorthSeaOffshore; + /// Optional element 'prodml23:NorthSeaOffshore' of XML schema type 'prodml23:NorthSeaOffshore' + prodml23__NorthSeaOffshore *NorthSeaOffshore; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28114,33 +28114,33 @@ class SOAP_CMAC prodml22__OffshoreLocation { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OffshoreLocation, default initialized and not managed by a soap context - virtual prodml22__OffshoreLocation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OffshoreLocation); } + /// Return a new object of type prodml23__OffshoreLocation, default initialized and not managed by a soap context + virtual prodml23__OffshoreLocation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OffshoreLocation); } public: /// Constructor with default initializations - prodml22__OffshoreLocation() : AreaName(), BlockID(), Comment(), NorthSeaOffshore(), soap() { } + prodml23__OffshoreLocation() : AreaName(), BlockID(), Comment(), NorthSeaOffshore(), soap() { } /// Destructor - virtual ~prodml22__OffshoreLocation() { } - /// Friend allocator used by soap_new_prodml22__OffshoreLocation(struct soap*, int) - friend SOAP_FMAC1 prodml22__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml22__OffshoreLocation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OffshoreLocation() { } + /// Friend allocator used by soap_new_prodml23__OffshoreLocation(struct soap*, int) + friend SOAP_FMAC1 prodml23__OffshoreLocation * SOAP_FMAC2 soap_instantiate_prodml23__OffshoreLocation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2037 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition (-945) -/* complex XML schema type 'prodml22:OverallComposition': */ -class SOAP_CMAC prodml22__OverallComposition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition (-945) +/* complex XML schema type 'prodml23:OverallComposition': */ +class SOAP_CMAC prodml23__OverallComposition { public: - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FluidComponentFraction' of XML schema type 'prodml22:FluidComponentFraction' - std::vector FluidComponentFraction; + /// Optional element 'prodml23:FluidComponentFraction' of XML schema type 'prodml23:FluidComponentFraction' + std::vector FluidComponentFraction; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28153,39 +28153,39 @@ class SOAP_CMAC prodml22__OverallComposition { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OverallComposition, default initialized and not managed by a soap context - virtual prodml22__OverallComposition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OverallComposition); } + /// Return a new object of type prodml23__OverallComposition, default initialized and not managed by a soap context + virtual prodml23__OverallComposition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OverallComposition); } public: /// Constructor with default initializations - prodml22__OverallComposition() : Remark(), FluidComponentFraction(), soap() { } + prodml23__OverallComposition() : Remark(), FluidComponentFraction(), soap() { } /// Destructor - virtual ~prodml22__OverallComposition() { } - /// Friend allocator used by soap_new_prodml22__OverallComposition(struct soap*, int) - friend SOAP_FMAC1 prodml22__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml22__OverallComposition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OverallComposition() { } + /// Friend allocator used by soap_new_prodml23__OverallComposition(struct soap*, int) + friend SOAP_FMAC1 prodml23__OverallComposition * SOAP_FMAC2 soap_instantiate_prodml23__OverallComposition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2041 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference (-947) -/* complex XML schema type 'prodml22:ProductFlowExternalReference': */ -class SOAP_CMAC prodml22__ProductFlowExternalReference { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference (-947) +/* complex XML schema type 'prodml23:ProductFlowExternalReference': */ +class SOAP_CMAC prodml23__ProductFlowExternalReference { public: - /// Required element 'prodml22:PortReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:PortReference' of XML schema type 'eml23:String64' std::string PortReference; - /// Required element 'prodml22:ConnectedPortReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:ConnectedPortReference' of XML schema type 'eml23:String64' std::string ConnectedPortReference; - /// Required element 'prodml22:ConnectedModelReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:ConnectedModelReference' of XML schema type 'eml23:String64' std::string ConnectedModelReference; - /// Optional element 'prodml22:ConnectedInstallation' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *ConnectedInstallation; + /// Optional element 'prodml23:ConnectedInstallation' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *ConnectedInstallation; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28198,47 +28198,47 @@ class SOAP_CMAC prodml22__ProductFlowExternalReference { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowExternalReference, default initialized and not managed by a soap context - virtual prodml22__ProductFlowExternalReference *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowExternalReference); } + /// Return a new object of type prodml23__ProductFlowExternalReference, default initialized and not managed by a soap context + virtual prodml23__ProductFlowExternalReference *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowExternalReference); } public: /// Constructor with default initializations - prodml22__ProductFlowExternalReference() : PortReference(), ConnectedPortReference(), ConnectedModelReference(), ConnectedInstallation(), uid(), soap() { } + prodml23__ProductFlowExternalReference() : PortReference(), ConnectedPortReference(), ConnectedModelReference(), ConnectedInstallation(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowExternalReference() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowExternalReference(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExternalReference(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowExternalReference() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowExternalReference(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowExternalReference * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExternalReference(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2043 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork (-948) -/* complex XML schema type 'prodml22:ProductFlowNetwork': */ -class SOAP_CMAC prodml22__ProductFlowNetwork { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork (-948) +/* complex XML schema type 'prodml23:ProductFlowNetwork': */ +class SOAP_CMAC prodml23__ProductFlowNetwork { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; - /// Optional element 'prodml22:PlanName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PlanName' of XML schema type 'eml23:String64' std::string *PlanName; - /// Optional element 'prodml22:ParentNetworkReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ParentNetworkReference' of XML schema type 'eml23:String64' std::string *ParentNetworkReference; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:Port' of XML schema type 'prodml22:ProductFlowExternalPort' - std::vector Port; - /// Optional element 'prodml22:Plan' of XML schema type 'prodml22:ProductFlowNetworkPlan' - std::vector Plan; - /// Optional element 'prodml22:ChangeLog' of XML schema type 'prodml22:ProductFlowChangeLog' - std::vector ChangeLog; - /// Required element 'prodml22:Unit' of XML schema type 'prodml22:ProductFlowUnit' - std::vector Unit; + /// Optional element 'prodml23:Port' of XML schema type 'prodml23:ProductFlowExternalPort' + std::vector Port; + /// Optional element 'prodml23:Plan' of XML schema type 'prodml23:ProductFlowNetworkPlan' + std::vector Plan; + /// Optional element 'prodml23:ChangeLog' of XML schema type 'prodml23:ProductFlowChangeLog' + std::vector ChangeLog; + /// Required element 'prodml23:Unit' of XML schema type 'prodml23:ProductFlowUnit' + std::vector Unit; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28251,33 +28251,33 @@ class SOAP_CMAC prodml22__ProductFlowNetwork { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowNetwork, default initialized and not managed by a soap context - virtual prodml22__ProductFlowNetwork *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowNetwork); } + /// Return a new object of type prodml23__ProductFlowNetwork, default initialized and not managed by a soap context + virtual prodml23__ProductFlowNetwork *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowNetwork); } public: /// Constructor with default initializations - prodml22__ProductFlowNetwork() : Name(), PlanName(), ParentNetworkReference(), Comment(), Port(), Plan(), ChangeLog(), Unit(), uid(), soap() { } + prodml23__ProductFlowNetwork() : Name(), PlanName(), ParentNetworkReference(), Comment(), Port(), Plan(), ChangeLog(), Unit(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowNetwork() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowNetwork(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowNetwork(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowNetwork() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowNetwork(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowNetwork * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowNetwork(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2061 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition (-957) -/* complex XML schema type 'prodml22:VaporComposition': */ -class SOAP_CMAC prodml22__VaporComposition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition (-957) +/* complex XML schema type 'prodml23:VaporComposition': */ +class SOAP_CMAC prodml23__VaporComposition { public: - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:VaporComponentFraction' of XML schema type 'prodml22:FluidComponentFraction' - std::vector VaporComponentFraction; + /// Optional element 'prodml23:VaporComponentFraction' of XML schema type 'prodml23:FluidComponentFraction' + std::vector VaporComponentFraction; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28290,29 +28290,29 @@ class SOAP_CMAC prodml22__VaporComposition { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__VaporComposition, default initialized and not managed by a soap context - virtual prodml22__VaporComposition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__VaporComposition); } + /// Return a new object of type prodml23__VaporComposition, default initialized and not managed by a soap context + virtual prodml23__VaporComposition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__VaporComposition); } public: /// Constructor with default initializations - prodml22__VaporComposition() : Remark(), VaporComponentFraction(), soap() { } + prodml23__VaporComposition() : Remark(), VaporComponentFraction(), soap() { } /// Destructor - virtual ~prodml22__VaporComposition() { } - /// Friend allocator used by soap_new_prodml22__VaporComposition(struct soap*, int) - friend SOAP_FMAC1 prodml22__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml22__VaporComposition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__VaporComposition() { } + /// Friend allocator used by soap_new_prodml23__VaporComposition(struct soap*, int) + friend SOAP_FMAC1 prodml23__VaporComposition * SOAP_FMAC2 soap_instantiate_prodml23__VaporComposition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2063 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume (-958) -/* complex XML schema type 'prodml22:AbstractGasProducedRatioVolume': */ -class SOAP_CMAC prodml22__AbstractGasProducedRatioVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume (-958) +/* complex XML schema type 'prodml23:AbstractGasProducedRatioVolume': */ +class SOAP_CMAC prodml23__AbstractGasProducedRatioVolume { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28325,29 +28325,29 @@ class SOAP_CMAC prodml22__AbstractGasProducedRatioVolume { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractGasProducedRatioVolume, default initialized and not managed by a soap context - virtual prodml22__AbstractGasProducedRatioVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractGasProducedRatioVolume); } + /// Return a new object of type prodml23__AbstractGasProducedRatioVolume, default initialized and not managed by a soap context + virtual prodml23__AbstractGasProducedRatioVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractGasProducedRatioVolume); } public: /// Constructor with default initializations - prodml22__AbstractGasProducedRatioVolume() : soap() { } + prodml23__AbstractGasProducedRatioVolume() : soap() { } /// Destructor - virtual ~prodml22__AbstractGasProducedRatioVolume() { } - /// Friend allocator used by soap_new_prodml22__AbstractGasProducedRatioVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiate_prodml22__AbstractGasProducedRatioVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractGasProducedRatioVolume() { } + /// Friend allocator used by soap_new_prodml23__AbstractGasProducedRatioVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractGasProducedRatioVolume * SOAP_FMAC2 soap_instantiate_prodml23__AbstractGasProducedRatioVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2065 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume (-959) -/* complex XML schema type 'prodml22:AbstractLiquidDropoutPercVolume': */ -class SOAP_CMAC prodml22__AbstractLiquidDropoutPercVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume (-959) +/* complex XML schema type 'prodml23:AbstractLiquidDropoutPercVolume': */ +class SOAP_CMAC prodml23__AbstractLiquidDropoutPercVolume { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28360,29 +28360,29 @@ class SOAP_CMAC prodml22__AbstractLiquidDropoutPercVolume { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractLiquidDropoutPercVolume, default initialized and not managed by a soap context - virtual prodml22__AbstractLiquidDropoutPercVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractLiquidDropoutPercVolume); } + /// Return a new object of type prodml23__AbstractLiquidDropoutPercVolume, default initialized and not managed by a soap context + virtual prodml23__AbstractLiquidDropoutPercVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractLiquidDropoutPercVolume); } public: /// Constructor with default initializations - prodml22__AbstractLiquidDropoutPercVolume() : soap() { } + prodml23__AbstractLiquidDropoutPercVolume() : soap() { } /// Destructor - virtual ~prodml22__AbstractLiquidDropoutPercVolume() { } - /// Friend allocator used by soap_new_prodml22__AbstractLiquidDropoutPercVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantiate_prodml22__AbstractLiquidDropoutPercVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractLiquidDropoutPercVolume() { } + /// Friend allocator used by soap_new_prodml23__AbstractLiquidDropoutPercVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractLiquidDropoutPercVolume * SOAP_FMAC2 soap_instantiate_prodml23__AbstractLiquidDropoutPercVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2067 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage (-960) -/* complex XML schema type 'prodml22:AbstractOilVolShrinkage': */ -class SOAP_CMAC prodml22__AbstractOilVolShrinkage { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage (-960) +/* complex XML schema type 'prodml23:AbstractOilVolShrinkage': */ +class SOAP_CMAC prodml23__AbstractOilVolShrinkage { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28395,59 +28395,59 @@ class SOAP_CMAC prodml22__AbstractOilVolShrinkage { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractOilVolShrinkage, default initialized and not managed by a soap context - virtual prodml22__AbstractOilVolShrinkage *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractOilVolShrinkage); } + /// Return a new object of type prodml23__AbstractOilVolShrinkage, default initialized and not managed by a soap context + virtual prodml23__AbstractOilVolShrinkage *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractOilVolShrinkage); } public: /// Constructor with default initializations - prodml22__AbstractOilVolShrinkage() : soap() { } + prodml23__AbstractOilVolShrinkage() : soap() { } /// Destructor - virtual ~prodml22__AbstractOilVolShrinkage() { } - /// Friend allocator used by soap_new_prodml22__AbstractOilVolShrinkage(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodml22__AbstractOilVolShrinkage(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractOilVolShrinkage() { } + /// Friend allocator used by soap_new_prodml23__AbstractOilVolShrinkage(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractOilVolShrinkage * SOAP_FMAC2 soap_instantiate_prodml23__AbstractOilVolShrinkage(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2069 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis (-961) -/* complex XML schema type 'prodml22:AtmosphericFlashTestAndCompositionalAnalysis': */ -class SOAP_CMAC prodml22__AtmosphericFlashTestAndCompositionalAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis (-961) +/* complex XML schema type 'prodml23:AtmosphericFlashTestAndCompositionalAnalysis': */ +class SOAP_CMAC prodml23__AtmosphericFlashTestAndCompositionalAnalysis { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Optional element 'prodml22:Date' of XML schema type 'xsd:date' + /// Optional element 'prodml23:Date' of XML schema type 'xsd:date' std::string *Date; - /// Optional element 'prodml22:FlashToPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:FlashToPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *FlashToPressure; - /// Optional element 'prodml22:FlashToTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:FlashToTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *FlashToTemperature; - /// Optional element 'prodml22:FlashFromPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:FlashFromPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *FlashFromPressure; - /// Optional element 'prodml22:FlashFromTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:FlashFromTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *FlashFromTemperature; - /// Optional element 'prodml22:FlashGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:FlashGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *FlashGOR; - /// Optional element 'prodml22:OilFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilFormationVolumeFactor; - /// Optional element 'prodml22:DensityAtFlashFromPressureAndTemperature' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:DensityAtFlashFromPressureAndTemperature' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *DensityAtFlashFromPressureAndTemperature; - /// Optional element 'prodml22:AvgMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:AvgMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *AvgMolecularWeight; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FlashedLiquid' of XML schema type 'prodml22:FlashedLiquid' - prodml22__FlashedLiquid *FlashedLiquid; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:FlashedGas' of XML schema type 'prodml22:FlashedGas' - prodml22__FlashedGas *FlashedGas; + /// Optional element 'prodml23:FlashedLiquid' of XML schema type 'prodml23:FlashedLiquid' + prodml23__FlashedLiquid *FlashedLiquid; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:FlashedGas' of XML schema type 'prodml23:FlashedGas' + prodml23__FlashedGas *FlashedGas; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28460,45 +28460,45 @@ class SOAP_CMAC prodml22__AtmosphericFlashTestAndCompositionalAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AtmosphericFlashTestAndCompositionalAnalysis, default initialized and not managed by a soap context - virtual prodml22__AtmosphericFlashTestAndCompositionalAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AtmosphericFlashTestAndCompositionalAnalysis); } + /// Return a new object of type prodml23__AtmosphericFlashTestAndCompositionalAnalysis, default initialized and not managed by a soap context + virtual prodml23__AtmosphericFlashTestAndCompositionalAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AtmosphericFlashTestAndCompositionalAnalysis); } public: /// Constructor with default initializations - prodml22__AtmosphericFlashTestAndCompositionalAnalysis() : TestNumber(), Date(), FlashToPressure(), FlashToTemperature(), FlashFromPressure(), FlashFromTemperature(), FlashGOR(), OilFormationVolumeFactor(), DensityAtFlashFromPressureAndTemperature(), AvgMolecularWeight(), Remark(), FlashedLiquid(), OverallComposition(), FlashedGas(), uid(), soap() { } + prodml23__AtmosphericFlashTestAndCompositionalAnalysis() : TestNumber(), Date(), FlashToPressure(), FlashToTemperature(), FlashFromPressure(), FlashFromTemperature(), FlashGOR(), OilFormationVolumeFactor(), DensityAtFlashFromPressureAndTemperature(), AvgMolecularWeight(), Remark(), FlashedLiquid(), OverallComposition(), FlashedGas(), uid(), soap() { } /// Destructor - virtual ~prodml22__AtmosphericFlashTestAndCompositionalAnalysis() { } - /// Friend allocator used by soap_new_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AtmosphericFlashTestAndCompositionalAnalysis() { } + /// Friend allocator used by soap_new_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__AtmosphericFlashTestAndCompositionalAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__AtmosphericFlashTestAndCompositionalAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2071 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest (-962) -/* complex XML schema type 'prodml22:ConstantCompositionExpansionTest': */ -class SOAP_CMAC prodml22__ConstantCompositionExpansionTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest (-962) +/* complex XML schema type 'prodml23:ConstantCompositionExpansionTest': */ +class SOAP_CMAC prodml23__ConstantCompositionExpansionTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:LiquidFractionReference' of XML schema type 'prodml22:FluidVolumeReference' - std::vector LiquidFractionReference; - /// Optional element 'prodml22:RelativeVolumeReference' of XML schema type 'prodml22:FluidVolumeReference' - std::vector RelativeVolumeReference; - /// Optional element 'prodml22:ConstantCompositionExpansionTestStep' of XML schema type 'prodml22:ConstantCompositionExpansionTestStep' - std::vector ConstantCompositionExpansionTestStep; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:LiquidFractionReference' of XML schema type 'prodml23:FluidVolumeReference' + std::vector LiquidFractionReference; + /// Optional element 'prodml23:RelativeVolumeReference' of XML schema type 'prodml23:FluidVolumeReference' + std::vector RelativeVolumeReference; + /// Optional element 'prodml23:ConstantCompositionExpansionTestStep' of XML schema type 'prodml23:ConstantCompositionExpansionTestStep' + std::vector ConstantCompositionExpansionTestStep; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28511,69 +28511,69 @@ class SOAP_CMAC prodml22__ConstantCompositionExpansionTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ConstantCompositionExpansionTest, default initialized and not managed by a soap context - virtual prodml22__ConstantCompositionExpansionTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ConstantCompositionExpansionTest); } + /// Return a new object of type prodml23__ConstantCompositionExpansionTest, default initialized and not managed by a soap context + virtual prodml23__ConstantCompositionExpansionTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ConstantCompositionExpansionTest); } public: /// Constructor with default initializations - prodml22__ConstantCompositionExpansionTest() : TestNumber(), TestTemperature(), SaturationPressure(), LiquidFractionReference(), RelativeVolumeReference(), ConstantCompositionExpansionTestStep(), Remark(), uid(), soap() { } + prodml23__ConstantCompositionExpansionTest() : TestNumber(), TestTemperature(), SaturationPressure(), LiquidFractionReference(), RelativeVolumeReference(), ConstantCompositionExpansionTestStep(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__ConstantCompositionExpansionTest() { } - /// Friend allocator used by soap_new_prodml22__ConstantCompositionExpansionTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instantiate_prodml22__ConstantCompositionExpansionTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ConstantCompositionExpansionTest() { } + /// Friend allocator used by soap_new_prodml23__ConstantCompositionExpansionTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__ConstantCompositionExpansionTest * SOAP_FMAC2 soap_instantiate_prodml23__ConstantCompositionExpansionTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2073 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep (-963) -/* complex XML schema type 'prodml22:ConstantCompositionExpansionTestStep': */ -class SOAP_CMAC prodml22__ConstantCompositionExpansionTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep (-963) +/* complex XML schema type 'prodml23:ConstantCompositionExpansionTestStep': */ +class SOAP_CMAC prodml23__ConstantCompositionExpansionTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Required element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Optional element 'prodml22:LiquidFraction' of XML schema type 'prodml22:RelativeVolumeRatio' - prodml22__RelativeVolumeRatio *LiquidFraction; - /// Optional element 'prodml22:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:LiquidFraction' of XML schema type 'prodml23:RelativeVolumeRatio' + prodml23__RelativeVolumeRatio *LiquidFraction; + /// Optional element 'prodml23:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *OilDensity; - /// Optional element 'prodml22:OilCompressibility' of XML schema type 'prodml22:OilCompressibility' - prodml22__OilCompressibility *OilCompressibility; - /// Optional element 'prodml22:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:OilCompressibility' of XML schema type 'prodml23:OilCompressibility' + prodml23__OilCompressibility *OilCompressibility; + /// Optional element 'prodml23:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *OilViscosity; - /// Optional element 'prodml22:TotalVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:TotalVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *TotalVolume; - /// Optional element 'prodml22:RelativeVolumeRatio' of XML schema type 'prodml22:RelativeVolumeRatio' - prodml22__RelativeVolumeRatio *RelativeVolumeRatio; - /// Optional element 'prodml22:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:RelativeVolumeRatio' of XML schema type 'prodml23:RelativeVolumeRatio' + prodml23__RelativeVolumeRatio *RelativeVolumeRatio; + /// Optional element 'prodml23:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *GasDensity; - /// Optional element 'prodml22:GasZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasZFactor' of XML schema type 'xsd:double' double *GasZFactor; - /// Optional element 'prodml22:GasCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' + /// Optional element 'prodml23:GasCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' eml23__ReciprocalPressureMeasure *GasCompressibility; - /// Optional element 'prodml22:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosity; - /// Optional element 'prodml22:YFunction' of XML schema type 'xsd:double' + /// Optional element 'prodml23:YFunction' of XML schema type 'xsd:double' double *YFunction; - /// Optional element 'prodml22:FluidCondition' of XML schema type 'prodml22:FluidAnalysisStepCondition' - prodml22__FluidAnalysisStepCondition *FluidCondition; - /// Optional element 'prodml22:PhasesPresent' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesPresent; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *LiquidComposition; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:FluidCondition' of XML schema type 'prodml23:FluidAnalysisStepCondition' + prodml23__FluidAnalysisStepCondition *FluidCondition; + /// Optional element 'prodml23:PhasesPresent' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesPresent; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *LiquidComposition; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28586,45 +28586,45 @@ class SOAP_CMAC prodml22__ConstantCompositionExpansionTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ConstantCompositionExpansionTestStep, default initialized and not managed by a soap context - virtual prodml22__ConstantCompositionExpansionTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ConstantCompositionExpansionTestStep); } + /// Return a new object of type prodml23__ConstantCompositionExpansionTestStep, default initialized and not managed by a soap context + virtual prodml23__ConstantCompositionExpansionTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ConstantCompositionExpansionTestStep); } public: /// Constructor with default initializations - prodml22__ConstantCompositionExpansionTestStep() : StepNumber(), StepPressure(), LiquidFraction(), OilDensity(), OilCompressibility(), OilViscosity(), TotalVolume(), RelativeVolumeRatio(), GasDensity(), GasZFactor(), GasCompressibility(), GasViscosity(), YFunction(), FluidCondition(), PhasesPresent(), VaporComposition(), LiquidComposition(), OverallComposition(), Remark(), uid(), soap() { } + prodml23__ConstantCompositionExpansionTestStep() : StepNumber(), StepPressure(), LiquidFraction(), OilDensity(), OilCompressibility(), OilViscosity(), TotalVolume(), RelativeVolumeRatio(), GasDensity(), GasZFactor(), GasCompressibility(), GasViscosity(), YFunction(), FluidCondition(), PhasesPresent(), VaporComposition(), LiquidComposition(), OverallComposition(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__ConstantCompositionExpansionTestStep() { } - /// Friend allocator used by soap_new_prodml22__ConstantCompositionExpansionTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_instantiate_prodml22__ConstantCompositionExpansionTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ConstantCompositionExpansionTestStep() { } + /// Friend allocator used by soap_new_prodml23__ConstantCompositionExpansionTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__ConstantCompositionExpansionTestStep * SOAP_FMAC2 soap_instantiate_prodml23__ConstantCompositionExpansionTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2075 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest (-964) -/* complex XML schema type 'prodml22:ConstantVolumeDepletionTest': */ -class SOAP_CMAC prodml22__ConstantVolumeDepletionTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest (-964) +/* complex XML schema type 'prodml23:ConstantVolumeDepletionTest': */ +class SOAP_CMAC prodml23__ConstantVolumeDepletionTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Optional element 'prodml22:CumulativeGasProducedReferenceStd' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:CumulativeGasProducedReferenceStd' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *CumulativeGasProducedReferenceStd; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:LiquidFractionReference' of XML schema type 'prodml22:FluidVolumeReference' - std::vector LiquidFractionReference; - /// Optional element 'prodml22:CvdTestStep' of XML schema type 'prodml22:FluidCvdTestStep' - std::vector CvdTestStep; + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:LiquidFractionReference' of XML schema type 'prodml23:FluidVolumeReference' + std::vector LiquidFractionReference; + /// Optional element 'prodml23:CvdTestStep' of XML schema type 'prodml23:FluidCvdTestStep' + std::vector CvdTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28637,47 +28637,47 @@ class SOAP_CMAC prodml22__ConstantVolumeDepletionTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ConstantVolumeDepletionTest, default initialized and not managed by a soap context - virtual prodml22__ConstantVolumeDepletionTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ConstantVolumeDepletionTest); } + /// Return a new object of type prodml23__ConstantVolumeDepletionTest, default initialized and not managed by a soap context + virtual prodml23__ConstantVolumeDepletionTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ConstantVolumeDepletionTest); } public: /// Constructor with default initializations - prodml22__ConstantVolumeDepletionTest() : TestNumber(), TestTemperature(), CumulativeGasProducedReferenceStd(), Remark(), SaturationPressure(), LiquidFractionReference(), CvdTestStep(), uid(), soap() { } + prodml23__ConstantVolumeDepletionTest() : TestNumber(), TestTemperature(), CumulativeGasProducedReferenceStd(), Remark(), SaturationPressure(), LiquidFractionReference(), CvdTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__ConstantVolumeDepletionTest() { } - /// Friend allocator used by soap_new_prodml22__ConstantVolumeDepletionTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_prodml22__ConstantVolumeDepletionTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ConstantVolumeDepletionTest() { } + /// Friend allocator used by soap_new_prodml23__ConstantVolumeDepletionTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__ConstantVolumeDepletionTest * SOAP_FMAC2 soap_instantiate_prodml23__ConstantVolumeDepletionTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2081 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest (-967) -/* complex XML schema type 'prodml22:DifferentialLiberationTest': */ -class SOAP_CMAC prodml22__DifferentialLiberationTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest (-967) +/* complex XML schema type 'prodml23:DifferentialLiberationTest': */ +class SOAP_CMAC prodml23__DifferentialLiberationTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Required element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:SeparatorConditions' of XML schema type 'prodml22:SeparatorConditions' - prodml22__SeparatorConditions *SeparatorConditions; - /// Optional element 'prodml22:CorrectionMethod' of XML schema type 'eml23:String64' + /// Required element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:SeparatorConditions' of XML schema type 'prodml23:SeparatorConditions' + prodml23__SeparatorConditions *SeparatorConditions; + /// Optional element 'prodml23:CorrectionMethod' of XML schema type 'eml23:String64' std::string *CorrectionMethod; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:ShrinkageReference' of XML schema type 'prodml22:FluidVolumeReference' - prodml22__FluidVolumeReference *ShrinkageReference; - /// Optional element 'prodml22:DlTestStep' of XML schema type 'prodml22:FluidDifferentialLiberationTestStep' - std::vector DlTestStep; + /// Optional element 'prodml23:ShrinkageReference' of XML schema type 'prodml23:FluidVolumeReference' + prodml23__FluidVolumeReference *ShrinkageReference; + /// Optional element 'prodml23:DlTestStep' of XML schema type 'prodml23:FluidDifferentialLiberationTestStep' + std::vector DlTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28690,47 +28690,47 @@ class SOAP_CMAC prodml22__DifferentialLiberationTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DifferentialLiberationTest, default initialized and not managed by a soap context - virtual prodml22__DifferentialLiberationTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DifferentialLiberationTest); } + /// Return a new object of type prodml23__DifferentialLiberationTest, default initialized and not managed by a soap context + virtual prodml23__DifferentialLiberationTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DifferentialLiberationTest); } public: /// Constructor with default initializations - prodml22__DifferentialLiberationTest() : TestNumber(), TestTemperature(), SaturationPressure(), SeparatorConditions(), CorrectionMethod(), Remark(), ShrinkageReference(), DlTestStep(), uid(), soap() { } + prodml23__DifferentialLiberationTest() : TestNumber(), TestTemperature(), SaturationPressure(), SeparatorConditions(), CorrectionMethod(), Remark(), ShrinkageReference(), DlTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__DifferentialLiberationTest() { } - /// Friend allocator used by soap_new_prodml22__DifferentialLiberationTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_prodml22__DifferentialLiberationTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DifferentialLiberationTest() { } + /// Friend allocator used by soap_new_prodml23__DifferentialLiberationTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__DifferentialLiberationTest * SOAP_FMAC2 soap_instantiate_prodml23__DifferentialLiberationTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2083 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas (-968) -/* complex XML schema type 'prodml22:FlashedGas': */ -class SOAP_CMAC prodml22__FlashedGas { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas (-968) +/* complex XML schema type 'prodml23:FlashedGas': */ +class SOAP_CMAC prodml23__FlashedGas { public: - /// Optional element 'prodml22:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *GasDensity; - /// Optional element 'prodml22:GasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasGravity' of XML schema type 'xsd:double' double *GasGravity; - /// Optional element 'prodml22:GasZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasZFactor' of XML schema type 'xsd:double' double *GasZFactor; - /// Optional element 'prodml22:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolecularWeight; - /// Optional element 'prodml22:GrossEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasureExt' + /// Optional element 'prodml23:GrossEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasureExt' eml23__EnergyPerMassMeasureExt *GrossEnergyContentPerUnitMass; - /// Optional element 'prodml22:NetEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasureExt' + /// Optional element 'prodml23:NetEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasureExt' eml23__EnergyPerMassMeasureExt *NetEnergyContentPerUnitMass; - /// Optional element 'prodml22:GrossEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasureExt' + /// Optional element 'prodml23:GrossEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasureExt' eml23__EnergyPerVolumeMeasureExt *GrossEnergyContentPerUnitVolume; - /// Optional element 'prodml22:NetEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasureExt' + /// Optional element 'prodml23:NetEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasureExt' eml23__EnergyPerVolumeMeasureExt *NetEnergyContentPerUnitVolume; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28743,37 +28743,37 @@ class SOAP_CMAC prodml22__FlashedGas { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FlashedGas, default initialized and not managed by a soap context - virtual prodml22__FlashedGas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FlashedGas); } + /// Return a new object of type prodml23__FlashedGas, default initialized and not managed by a soap context + virtual prodml23__FlashedGas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FlashedGas); } public: /// Constructor with default initializations - prodml22__FlashedGas() : GasDensity(), GasGravity(), GasZFactor(), GasMolecularWeight(), GrossEnergyContentPerUnitMass(), NetEnergyContentPerUnitMass(), GrossEnergyContentPerUnitVolume(), NetEnergyContentPerUnitVolume(), VaporComposition(), soap() { } + prodml23__FlashedGas() : GasDensity(), GasGravity(), GasZFactor(), GasMolecularWeight(), GrossEnergyContentPerUnitMass(), NetEnergyContentPerUnitMass(), GrossEnergyContentPerUnitVolume(), NetEnergyContentPerUnitVolume(), VaporComposition(), soap() { } /// Destructor - virtual ~prodml22__FlashedGas() { } - /// Friend allocator used by soap_new_prodml22__FlashedGas(struct soap*, int) - friend SOAP_FMAC1 prodml22__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml22__FlashedGas(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FlashedGas() { } + /// Friend allocator used by soap_new_prodml23__FlashedGas(struct soap*, int) + friend SOAP_FMAC1 prodml23__FlashedGas * SOAP_FMAC2 soap_instantiate_prodml23__FlashedGas(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2085 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid (-969) -/* complex XML schema type 'prodml22:FlashedLiquid': */ -class SOAP_CMAC prodml22__FlashedLiquid { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid (-969) +/* complex XML schema type 'prodml23:FlashedLiquid': */ +class SOAP_CMAC prodml23__FlashedLiquid { public: - /// Optional element 'prodml22:LiquidDensity' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:LiquidDensity' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *LiquidDensity; - /// Optional element 'prodml22:OilAPIGravity' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:OilAPIGravity' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *OilAPIGravity; - /// Optional element 'prodml22:OilMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:OilMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *OilMolecularWeight; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *LiquidComposition; + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *LiquidComposition; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28786,43 +28786,43 @@ class SOAP_CMAC prodml22__FlashedLiquid { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FlashedLiquid, default initialized and not managed by a soap context - virtual prodml22__FlashedLiquid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FlashedLiquid); } + /// Return a new object of type prodml23__FlashedLiquid, default initialized and not managed by a soap context + virtual prodml23__FlashedLiquid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FlashedLiquid); } public: /// Constructor with default initializations - prodml22__FlashedLiquid() : LiquidDensity(), OilAPIGravity(), OilMolecularWeight(), LiquidComposition(), soap() { } + prodml23__FlashedLiquid() : LiquidDensity(), OilAPIGravity(), OilMolecularWeight(), LiquidComposition(), soap() { } /// Destructor - virtual ~prodml22__FlashedLiquid() { } - /// Friend allocator used by soap_new_prodml22__FlashedLiquid(struct soap*, int) - friend SOAP_FMAC1 prodml22__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__FlashedLiquid(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FlashedLiquid() { } + /// Friend allocator used by soap_new_prodml23__FlashedLiquid(struct soap*, int) + friend SOAP_FMAC1 prodml23__FlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml23__FlashedLiquid(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2089 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport (-971) -/* complex XML schema type 'prodml22:FluidAnalysisReport': */ -class SOAP_CMAC prodml22__FluidAnalysisReport { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport (-971) +/* complex XML schema type 'prodml23:FluidAnalysisReport': */ +class SOAP_CMAC prodml23__FluidAnalysisReport { public: - /// Optional element 'prodml22:ReportIdentifier' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ReportIdentifier' of XML schema type 'eml23:String64' std::string *ReportIdentifier; - /// Optional element 'prodml22:ReportDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:ReportDate' of XML schema type 'xsd:date' std::string *ReportDate; - /// Optional element 'prodml22:Author' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Author' of XML schema type 'eml23:String64' std::string *Author; - /// Optional element 'prodml22:AnalysisLaboratory' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:AnalysisLaboratory' of XML schema type 'eml23:String64' std::string *AnalysisLaboratory; - /// Optional element 'prodml22:ReportDocument' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:ReportDocument' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ReportDocument; - /// Optional element 'prodml22:ReportLocation' of XML schema type 'prodml22:ReportLocation' - std::vector ReportLocation; + /// Optional element 'prodml23:ReportLocation' of XML schema type 'prodml23:ReportLocation' + std::vector ReportLocation; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28835,71 +28835,71 @@ class SOAP_CMAC prodml22__FluidAnalysisReport { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidAnalysisReport, default initialized and not managed by a soap context - virtual prodml22__FluidAnalysisReport *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidAnalysisReport); } + /// Return a new object of type prodml23__FluidAnalysisReport, default initialized and not managed by a soap context + virtual prodml23__FluidAnalysisReport *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidAnalysisReport); } public: /// Constructor with default initializations - prodml22__FluidAnalysisReport() : ReportIdentifier(), ReportDate(), Author(), AnalysisLaboratory(), ReportDocument(), ReportLocation(), uid(), soap() { } + prodml23__FluidAnalysisReport() : ReportIdentifier(), ReportDate(), Author(), AnalysisLaboratory(), ReportDocument(), ReportLocation(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidAnalysisReport() { } - /// Friend allocator used by soap_new_prodml22__FluidAnalysisReport(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml22__FluidAnalysisReport(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidAnalysisReport() { } + /// Friend allocator used by soap_new_prodml23__FluidAnalysisReport(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidAnalysisReport * SOAP_FMAC2 soap_instantiate_prodml23__FluidAnalysisReport(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2091 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep (-972) -/* complex XML schema type 'prodml22:FluidCvdTestStep': */ -class SOAP_CMAC prodml22__FluidCvdTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep (-972) +/* complex XML schema type 'prodml23:FluidCvdTestStep': */ +class SOAP_CMAC prodml23__FluidCvdTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Required element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Optional element 'prodml22:CumulativeStockTankGOR' of XML schema type 'eml23:VolumePerVolumeMeasureExt' + /// Optional element 'prodml23:CumulativeStockTankGOR' of XML schema type 'eml23:VolumePerVolumeMeasureExt' eml23__VolumePerVolumeMeasureExt *CumulativeStockTankGOR; - /// Optional element 'prodml22:FluidProducedGOR' of XML schema type 'eml23:VolumePerVolumeMeasureExt' + /// Optional element 'prodml23:FluidProducedGOR' of XML schema type 'eml23:VolumePerVolumeMeasureExt' eml23__VolumePerVolumeMeasureExt *FluidProducedGOR; - /// Optional element 'prodml22:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *OilDensity; - /// Optional element 'prodml22:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolecularWeight; - /// Optional element 'prodml22:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *OilViscosity; - /// Optional element 'prodml22:GasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasGravity' of XML schema type 'xsd:double' double *GasGravity; - /// Optional element 'prodml22:GasFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:GasFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *GasFormationVolumeFactor; - /// Optional element 'prodml22:GasZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasZFactor' of XML schema type 'xsd:double' double *GasZFactor; - /// Optional element 'prodml22:Phase2ZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:Phase2ZFactor' of XML schema type 'xsd:double' double *Phase2ZFactor; - /// Optional element 'prodml22:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosity; - /// Optional element 'prodml22:CumulativeFluidProducedFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:CumulativeFluidProducedFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *CumulativeFluidProducedFraction; - /// Optional element 'prodml22:LiquidFraction' of XML schema type 'prodml22:RelativeVolumeRatio' - prodml22__RelativeVolumeRatio *LiquidFraction; - /// Optional element 'prodml22:FluidCondition' of XML schema type 'prodml22:FluidAnalysisStepCondition' - prodml22__FluidAnalysisStepCondition *FluidCondition; - /// Optional element 'prodml22:PhasesPresent' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesPresent; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *LiquidComposition; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:LiquidFraction' of XML schema type 'prodml23:RelativeVolumeRatio' + prodml23__RelativeVolumeRatio *LiquidFraction; + /// Optional element 'prodml23:FluidCondition' of XML schema type 'prodml23:FluidAnalysisStepCondition' + prodml23__FluidAnalysisStepCondition *FluidCondition; + /// Optional element 'prodml23:PhasesPresent' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesPresent; + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *LiquidComposition; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28912,81 +28912,81 @@ class SOAP_CMAC prodml22__FluidCvdTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCvdTestStep, default initialized and not managed by a soap context - virtual prodml22__FluidCvdTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCvdTestStep); } + /// Return a new object of type prodml23__FluidCvdTestStep, default initialized and not managed by a soap context + virtual prodml23__FluidCvdTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCvdTestStep); } public: /// Constructor with default initializations - prodml22__FluidCvdTestStep() : StepNumber(), StepPressure(), CumulativeStockTankGOR(), FluidProducedGOR(), OilDensity(), GasMolecularWeight(), OilViscosity(), GasGravity(), GasFormationVolumeFactor(), GasZFactor(), Phase2ZFactor(), GasViscosity(), CumulativeFluidProducedFraction(), LiquidFraction(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), uid(), soap() { } + prodml23__FluidCvdTestStep() : StepNumber(), StepPressure(), CumulativeStockTankGOR(), FluidProducedGOR(), OilDensity(), GasMolecularWeight(), OilViscosity(), GasGravity(), GasFormationVolumeFactor(), GasZFactor(), Phase2ZFactor(), GasViscosity(), CumulativeFluidProducedFraction(), LiquidFraction(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidCvdTestStep() { } - /// Friend allocator used by soap_new_prodml22__FluidCvdTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidCvdTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCvdTestStep() { } + /// Friend allocator used by soap_new_prodml23__FluidCvdTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCvdTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidCvdTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2093 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep (-973) -/* complex XML schema type 'prodml22:FluidDifferentialLiberationTestStep': */ -class SOAP_CMAC prodml22__FluidDifferentialLiberationTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep (-973) +/* complex XML schema type 'prodml23:FluidDifferentialLiberationTestStep': */ +class SOAP_CMAC prodml23__FluidDifferentialLiberationTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Required element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Optional element 'prodml22:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StepTemperature; - /// Optional element 'prodml22:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *OilDensity; - /// Optional element 'prodml22:OilFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilFormationVolumeFactor; - /// Optional element 'prodml22:OilCompressibility' of XML schema type 'prodml22:OilCompressibility' - prodml22__OilCompressibility *OilCompressibility; - /// Optional element 'prodml22:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:OilCompressibility' of XML schema type 'prodml23:OilCompressibility' + prodml23__OilCompressibility *OilCompressibility; + /// Optional element 'prodml23:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *OilViscosity; - /// Optional element 'prodml22:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolecularWeight; - /// Optional element 'prodml22:GasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasGravity' of XML schema type 'xsd:double' double *GasGravity; - /// Optional element 'prodml22:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *GasDensity; - /// Optional element 'prodml22:GasFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:GasFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *GasFormationVolumeFactor; - /// Optional element 'prodml22:GasZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasZFactor' of XML schema type 'xsd:double' double *GasZFactor; - /// Optional element 'prodml22:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosity; - /// Optional element 'prodml22:TotalFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:TotalFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *TotalFormationVolumeFactor; - /// Optional element 'prodml22:SolutionGORMeasured' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGORMeasured' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGORMeasured; - /// Optional element 'prodml22:SolutionGORCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGORCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGORCorrected; - /// Optional element 'prodml22:CumulativeStockTankGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:CumulativeStockTankGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *CumulativeStockTankGOR; - /// Optional element 'prodml22:OilFormationVolumeFactorCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilFormationVolumeFactorCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilFormationVolumeFactorCorrected; - /// Optional element 'prodml22:ResidualAPIGravity' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:ResidualAPIGravity' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *ResidualAPIGravity; - /// Optional element 'prodml22:FluidCondition' of XML schema type 'prodml22:FluidAnalysisStepCondition' - prodml22__FluidAnalysisStepCondition *FluidCondition; - /// Optional element 'prodml22:PhasesPresent' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesPresent; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *LiquidComposition; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:FluidCondition' of XML schema type 'prodml23:FluidAnalysisStepCondition' + prodml23__FluidAnalysisStepCondition *FluidCondition; + /// Optional element 'prodml23:PhasesPresent' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesPresent; + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *LiquidComposition; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -28999,51 +28999,51 @@ class SOAP_CMAC prodml22__FluidDifferentialLiberationTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidDifferentialLiberationTestStep, default initialized and not managed by a soap context - virtual prodml22__FluidDifferentialLiberationTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidDifferentialLiberationTestStep); } + /// Return a new object of type prodml23__FluidDifferentialLiberationTestStep, default initialized and not managed by a soap context + virtual prodml23__FluidDifferentialLiberationTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidDifferentialLiberationTestStep); } public: /// Constructor with default initializations - prodml22__FluidDifferentialLiberationTestStep() : StepNumber(), StepPressure(), StepTemperature(), OilDensity(), OilFormationVolumeFactor(), OilCompressibility(), OilViscosity(), GasMolecularWeight(), GasGravity(), GasDensity(), GasFormationVolumeFactor(), GasZFactor(), GasViscosity(), TotalFormationVolumeFactor(), SolutionGORMeasured(), SolutionGORCorrected(), CumulativeStockTankGOR(), OilFormationVolumeFactorCorrected(), ResidualAPIGravity(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), uid(), soap() { } + prodml23__FluidDifferentialLiberationTestStep() : StepNumber(), StepPressure(), StepTemperature(), OilDensity(), OilFormationVolumeFactor(), OilCompressibility(), OilViscosity(), GasMolecularWeight(), GasGravity(), GasDensity(), GasFormationVolumeFactor(), GasZFactor(), GasViscosity(), TotalFormationVolumeFactor(), SolutionGORMeasured(), SolutionGORCorrected(), CumulativeStockTankGOR(), OilFormationVolumeFactorCorrected(), ResidualAPIGravity(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidDifferentialLiberationTestStep() { } - /// Friend allocator used by soap_new_prodml22__FluidDifferentialLiberationTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidDifferentialLiberationTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidDifferentialLiberationTestStep() { } + /// Friend allocator used by soap_new_prodml23__FluidDifferentialLiberationTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidDifferentialLiberationTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidDifferentialLiberationTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2095 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest (-974) -/* complex XML schema type 'prodml22:FluidSeparatorTest': */ -class SOAP_CMAC prodml22__FluidSeparatorTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest (-974) +/* complex XML schema type 'prodml23:FluidSeparatorTest': */ +class SOAP_CMAC prodml23__FluidSeparatorTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Optional element 'prodml22:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:SaturatedOilFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:SaturatedOilFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SaturatedOilFormationVolumeFactor; - /// Optional element 'prodml22:SaturatedOilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:SaturatedOilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *SaturatedOilDensity; - /// Optional element 'prodml22:SeparatorTestGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SeparatorTestGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SeparatorTestGOR; - /// Optional element 'prodml22:OverallGasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:OverallGasGravity' of XML schema type 'xsd:double' double *OverallGasGravity; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:ShrinkageReference' of XML schema type 'prodml22:FluidVolumeReference' - prodml22__FluidVolumeReference *ShrinkageReference; - /// Optional element 'prodml22:SeparatorTestStep' of XML schema type 'prodml22:FluidSeparatorTestStep' - std::vector SeparatorTestStep; + /// Optional element 'prodml23:ShrinkageReference' of XML schema type 'prodml23:FluidVolumeReference' + prodml23__FluidVolumeReference *ShrinkageReference; + /// Optional element 'prodml23:SeparatorTestStep' of XML schema type 'prodml23:FluidSeparatorTestStep' + std::vector SeparatorTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29056,83 +29056,83 @@ class SOAP_CMAC prodml22__FluidSeparatorTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSeparatorTest, default initialized and not managed by a soap context - virtual prodml22__FluidSeparatorTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSeparatorTest); } + /// Return a new object of type prodml23__FluidSeparatorTest, default initialized and not managed by a soap context + virtual prodml23__FluidSeparatorTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSeparatorTest); } public: /// Constructor with default initializations - prodml22__FluidSeparatorTest() : TestNumber(), ReservoirTemperature(), SaturationPressure(), SaturatedOilFormationVolumeFactor(), SaturatedOilDensity(), SeparatorTestGOR(), OverallGasGravity(), Remark(), ShrinkageReference(), SeparatorTestStep(), uid(), soap() { } + prodml23__FluidSeparatorTest() : TestNumber(), ReservoirTemperature(), SaturationPressure(), SaturatedOilFormationVolumeFactor(), SaturatedOilDensity(), SeparatorTestGOR(), OverallGasGravity(), Remark(), ShrinkageReference(), SeparatorTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidSeparatorTest() { } - /// Friend allocator used by soap_new_prodml22__FluidSeparatorTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml22__FluidSeparatorTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSeparatorTest() { } + /// Friend allocator used by soap_new_prodml23__FluidSeparatorTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSeparatorTest * SOAP_FMAC2 soap_instantiate_prodml23__FluidSeparatorTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2097 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep (-975) -/* complex XML schema type 'prodml22:FluidSeparatorTestStep': */ -class SOAP_CMAC prodml22__FluidSeparatorTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep (-975) +/* complex XML schema type 'prodml23:FluidSeparatorTestStep': */ +class SOAP_CMAC prodml23__FluidSeparatorTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Required element 'prodml22:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StepTemperature; - /// Required element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Optional element 'prodml22:BubblePointPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:BubblePointPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *BubblePointPressure; - /// Optional element 'prodml22:ResidualAPIGravity' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:ResidualAPIGravity' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *ResidualAPIGravity; - /// Optional element 'prodml22:OilSpecificGravity' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:OilSpecificGravity' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *OilSpecificGravity; - /// Optional element 'prodml22:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:OilDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *OilDensity; - /// Optional element 'prodml22:OilFormationVolumeFactorStd' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilFormationVolumeFactorStd' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilFormationVolumeFactorStd; - /// Optional element 'prodml22:OilFormationVolumeFactorCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilFormationVolumeFactorCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilFormationVolumeFactorCorrected; - /// Optional element 'prodml22:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *OilViscosity; - /// Optional element 'prodml22:StageSeparatorGORStd' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:StageSeparatorGORStd' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *StageSeparatorGORStd; - /// Optional element 'prodml22:StageSeparatorGORCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:StageSeparatorGORCorrected' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *StageSeparatorGORCorrected; - /// Optional element 'prodml22:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolecularWeight; - /// Optional element 'prodml22:GasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasGravity' of XML schema type 'xsd:double' double *GasGravity; - /// Optional element 'prodml22:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *GasDensity; - /// Optional element 'prodml22:GasZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasZFactor' of XML schema type 'xsd:double' double *GasZFactor; - /// Optional element 'prodml22:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosity; - /// Optional element 'prodml22:GasVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:GasVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *GasVolume; - /// Optional element 'prodml22:OilShrinkageFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilShrinkageFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilShrinkageFactor; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:FluidCondition' of XML schema type 'prodml22:FluidAnalysisStepCondition' - prodml22__FluidAnalysisStepCondition *FluidCondition; - /// Optional element 'prodml22:PhasesPresent' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesPresent; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *LiquidComposition; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:FluidCondition' of XML schema type 'prodml23:FluidAnalysisStepCondition' + prodml23__FluidAnalysisStepCondition *FluidCondition; + /// Optional element 'prodml23:PhasesPresent' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesPresent; + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *LiquidComposition; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29145,37 +29145,37 @@ class SOAP_CMAC prodml22__FluidSeparatorTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSeparatorTestStep, default initialized and not managed by a soap context - virtual prodml22__FluidSeparatorTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSeparatorTestStep); } + /// Return a new object of type prodml23__FluidSeparatorTestStep, default initialized and not managed by a soap context + virtual prodml23__FluidSeparatorTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSeparatorTestStep); } public: /// Constructor with default initializations - prodml22__FluidSeparatorTestStep() : StepNumber(), StepTemperature(), StepPressure(), BubblePointPressure(), ResidualAPIGravity(), OilSpecificGravity(), OilDensity(), OilFormationVolumeFactorStd(), OilFormationVolumeFactorCorrected(), OilViscosity(), StageSeparatorGORStd(), StageSeparatorGORCorrected(), GasMolecularWeight(), GasGravity(), GasDensity(), GasZFactor(), GasViscosity(), GasVolume(), OilShrinkageFactor(), SaturationPressure(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), uid(), soap() { } + prodml23__FluidSeparatorTestStep() : StepNumber(), StepTemperature(), StepPressure(), BubblePointPressure(), ResidualAPIGravity(), OilSpecificGravity(), OilDensity(), OilFormationVolumeFactorStd(), OilFormationVolumeFactorCorrected(), OilViscosity(), StageSeparatorGORStd(), StageSeparatorGORCorrected(), GasMolecularWeight(), GasGravity(), GasDensity(), GasZFactor(), GasViscosity(), GasVolume(), OilShrinkageFactor(), SaturationPressure(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidSeparatorTestStep() { } - /// Friend allocator used by soap_new_prodml22__FluidSeparatorTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml22__FluidSeparatorTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSeparatorTestStep() { } + /// Friend allocator used by soap_new_prodml23__FluidSeparatorTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSeparatorTestStep * SOAP_FMAC2 soap_instantiate_prodml23__FluidSeparatorTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2099 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference (-976) -/* complex XML schema type 'prodml22:FluidVolumeReference': */ -class SOAP_CMAC prodml22__FluidVolumeReference { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference (-976) +/* complex XML schema type 'prodml23:FluidVolumeReference': */ +class SOAP_CMAC prodml23__FluidVolumeReference { public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:VolumeReferenceKindExt' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:VolumeReferenceKindExt' std::string Kind; - /// Optional element 'prodml22:ReferenceVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:ReferenceVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *ReferenceVolume; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29188,33 +29188,33 @@ class SOAP_CMAC prodml22__FluidVolumeReference { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidVolumeReference, default initialized and not managed by a soap context - virtual prodml22__FluidVolumeReference *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidVolumeReference); } + /// Return a new object of type prodml23__FluidVolumeReference, default initialized and not managed by a soap context + virtual prodml23__FluidVolumeReference *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidVolumeReference); } public: /// Constructor with default initializations - prodml22__FluidVolumeReference() : Kind(), ReferenceVolume(), Remark(), uid(), soap() { } + prodml23__FluidVolumeReference() : Kind(), ReferenceVolume(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidVolumeReference() { } - /// Friend allocator used by soap_new_prodml22__FluidVolumeReference(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml22__FluidVolumeReference(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidVolumeReference() { } + /// Friend allocator used by soap_new_prodml23__FluidVolumeReference(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidVolumeReference * SOAP_FMAC2 soap_instantiate_prodml23__FluidVolumeReference(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2103 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas (-978) -/* complex XML schema type 'prodml22:InjectedGas': */ -class SOAP_CMAC prodml22__InjectedGas { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas (-978) +/* complex XML schema type 'prodml23:InjectedGas': */ +class SOAP_CMAC prodml23__InjectedGas { public: - /// Required element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; + /// Required element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29227,43 +29227,43 @@ class SOAP_CMAC prodml22__InjectedGas { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InjectedGas, default initialized and not managed by a soap context - virtual prodml22__InjectedGas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InjectedGas); } + /// Return a new object of type prodml23__InjectedGas, default initialized and not managed by a soap context + virtual prodml23__InjectedGas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InjectedGas); } public: /// Constructor with default initializations - prodml22__InjectedGas() : VaporComposition(), uid(), soap() { } + prodml23__InjectedGas() : VaporComposition(), uid(), soap() { } /// Destructor - virtual ~prodml22__InjectedGas() { } - /// Friend allocator used by soap_new_prodml22__InjectedGas(struct soap*, int) - friend SOAP_FMAC1 prodml22__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml22__InjectedGas(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InjectedGas() { } + /// Friend allocator used by soap_new_prodml23__InjectedGas(struct soap*, int) + friend SOAP_FMAC1 prodml23__InjectedGas * SOAP_FMAC2 soap_instantiate_prodml23__InjectedGas(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2105 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest (-979) -/* complex XML schema type 'prodml22:InterfacialTensionTest': */ -class SOAP_CMAC prodml22__InterfacialTensionTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest (-979) +/* complex XML schema type 'prodml23:InterfacialTensionTest': */ +class SOAP_CMAC prodml23__InterfacialTensionTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:WettingPhase' of XML schema type 'prodml22:ThermodynamicPhase' - prodml22__ThermodynamicPhase WettingPhase; - /// Required element 'prodml22:nonWettingPhase' of XML schema type 'prodml22:ThermodynamicPhase' - prodml22__ThermodynamicPhase nonWettingPhase; - /// Optional element 'prodml22:Surfactant' of XML schema type 'prodml22:AbstractFluidComponent' - prodml22__AbstractFluidComponent *Surfactant; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:WettingPhase' of XML schema type 'prodml23:ThermodynamicPhase' + prodml23__ThermodynamicPhase WettingPhase; + /// Required element 'prodml23:nonWettingPhase' of XML schema type 'prodml23:ThermodynamicPhase' + prodml23__ThermodynamicPhase nonWettingPhase; + /// Optional element 'prodml23:Surfactant' of XML schema type 'prodml23:AbstractFluidComponent' + prodml23__AbstractFluidComponent *Surfactant; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:InterfacialTensionTestStep' of XML schema type 'prodml22:InterfacialTensionTestStep' - std::vector InterfacialTensionTestStep; + /// Optional element 'prodml23:InterfacialTensionTestStep' of XML schema type 'prodml23:InterfacialTensionTestStep' + std::vector InterfacialTensionTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29276,45 +29276,45 @@ class SOAP_CMAC prodml22__InterfacialTensionTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InterfacialTensionTest, default initialized and not managed by a soap context - virtual prodml22__InterfacialTensionTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InterfacialTensionTest); } + /// Return a new object of type prodml23__InterfacialTensionTest, default initialized and not managed by a soap context + virtual prodml23__InterfacialTensionTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InterfacialTensionTest); } public: /// Constructor with default initializations - prodml22__InterfacialTensionTest() : TestNumber(), WettingPhase(), nonWettingPhase(), Surfactant(), Remark(), InterfacialTensionTestStep(), uid(), soap() { } + prodml23__InterfacialTensionTest() : TestNumber(), WettingPhase(), nonWettingPhase(), Surfactant(), Remark(), InterfacialTensionTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__InterfacialTensionTest() { } - /// Friend allocator used by soap_new_prodml22__InterfacialTensionTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml22__InterfacialTensionTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InterfacialTensionTest() { } + /// Friend allocator used by soap_new_prodml23__InterfacialTensionTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__InterfacialTensionTest * SOAP_FMAC2 soap_instantiate_prodml23__InterfacialTensionTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2107 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep (-980) -/* complex XML schema type 'prodml22:InterfacialTensionTestStep': */ -class SOAP_CMAC prodml22__InterfacialTensionTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep (-980) +/* complex XML schema type 'prodml23:InterfacialTensionTestStep': */ +class SOAP_CMAC prodml23__InterfacialTensionTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Optional element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Optional element 'prodml22:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StepTemperature; - /// Optional element 'prodml22:WettingPhaseSaturation' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:WettingPhaseSaturation' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *WettingPhaseSaturation; - /// Optional element 'prodml22:SurfactantConcentration' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:SurfactantConcentration' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *SurfactantConcentration; - /// Optional element 'prodml22:InterfacialTension' of XML schema type 'eml23:ForcePerLengthMeasure' + /// Optional element 'prodml23:InterfacialTension' of XML schema type 'eml23:ForcePerLengthMeasure' eml23__ForcePerLengthMeasure *InterfacialTension; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29327,37 +29327,37 @@ class SOAP_CMAC prodml22__InterfacialTensionTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InterfacialTensionTestStep, default initialized and not managed by a soap context - virtual prodml22__InterfacialTensionTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InterfacialTensionTestStep); } + /// Return a new object of type prodml23__InterfacialTensionTestStep, default initialized and not managed by a soap context + virtual prodml23__InterfacialTensionTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InterfacialTensionTestStep); } public: /// Constructor with default initializations - prodml22__InterfacialTensionTestStep() : StepNumber(), StepPressure(), StepTemperature(), WettingPhaseSaturation(), SurfactantConcentration(), InterfacialTension(), Remark(), uid(), soap() { } + prodml23__InterfacialTensionTestStep() : StepNumber(), StepPressure(), StepTemperature(), WettingPhaseSaturation(), SurfactantConcentration(), InterfacialTension(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__InterfacialTensionTestStep() { } - /// Friend allocator used by soap_new_prodml22__InterfacialTensionTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_prodml22__InterfacialTensionTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InterfacialTensionTestStep() { } + /// Friend allocator used by soap_new_prodml23__InterfacialTensionTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__InterfacialTensionTestStep * SOAP_FMAC2 soap_instantiate_prodml23__InterfacialTensionTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2113 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance (-983) -/* complex XML schema type 'prodml22:MassBalance': */ -class SOAP_CMAC prodml22__MassBalance { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance (-983) +/* complex XML schema type 'prodml23:MassBalance': */ +class SOAP_CMAC prodml23__MassBalance { public: - /// Optional element 'prodml22:MassBalanceFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:MassBalanceFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *MassBalanceFraction; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:MassIn' of XML schema type 'prodml22:MassIn' - prodml22__MassIn *MassIn; - /// Optional element 'prodml22:MassOut' of XML schema type 'prodml22:MassOut' - prodml22__MassOut *MassOut; + /// Optional element 'prodml23:MassIn' of XML schema type 'prodml23:MassIn' + prodml23__MassIn *MassIn; + /// Optional element 'prodml23:MassOut' of XML schema type 'prodml23:MassOut' + prodml23__MassOut *MassOut; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29370,37 +29370,37 @@ class SOAP_CMAC prodml22__MassBalance { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MassBalance, default initialized and not managed by a soap context - virtual prodml22__MassBalance *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MassBalance); } + /// Return a new object of type prodml23__MassBalance, default initialized and not managed by a soap context + virtual prodml23__MassBalance *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MassBalance); } public: /// Constructor with default initializations - prodml22__MassBalance() : MassBalanceFraction(), Remark(), MassIn(), MassOut(), soap() { } + prodml23__MassBalance() : MassBalanceFraction(), Remark(), MassIn(), MassOut(), soap() { } /// Destructor - virtual ~prodml22__MassBalance() { } - /// Friend allocator used by soap_new_prodml22__MassBalance(struct soap*, int) - friend SOAP_FMAC1 prodml22__MassBalance * SOAP_FMAC2 soap_instantiate_prodml22__MassBalance(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MassBalance() { } + /// Friend allocator used by soap_new_prodml23__MassBalance(struct soap*, int) + friend SOAP_FMAC1 prodml23__MassBalance * SOAP_FMAC2 soap_instantiate_prodml23__MassBalance(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2115 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn (-984) -/* complex XML schema type 'prodml22:MassIn': */ -class SOAP_CMAC prodml22__MassIn { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn (-984) +/* complex XML schema type 'prodml23:MassIn': */ +class SOAP_CMAC prodml23__MassIn { public: - /// Optional element 'prodml22:MassFluidSlimtube' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassFluidSlimtube' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassFluidSlimtube; - /// Optional element 'prodml22:MassFluidConnectingLines' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassFluidConnectingLines' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassFluidConnectingLines; - /// Optional element 'prodml22:MassInjectedGasSolvent' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassInjectedGasSolvent' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassInjectedGasSolvent; - /// Optional element 'prodml22:TotalMassIn' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:TotalMassIn' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *TotalMassIn; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29413,39 +29413,39 @@ class SOAP_CMAC prodml22__MassIn { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MassIn, default initialized and not managed by a soap context - virtual prodml22__MassIn *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MassIn); } + /// Return a new object of type prodml23__MassIn, default initialized and not managed by a soap context + virtual prodml23__MassIn *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MassIn); } public: /// Constructor with default initializations - prodml22__MassIn() : MassFluidSlimtube(), MassFluidConnectingLines(), MassInjectedGasSolvent(), TotalMassIn(), soap() { } + prodml23__MassIn() : MassFluidSlimtube(), MassFluidConnectingLines(), MassInjectedGasSolvent(), TotalMassIn(), soap() { } /// Destructor - virtual ~prodml22__MassIn() { } - /// Friend allocator used by soap_new_prodml22__MassIn(struct soap*, int) - friend SOAP_FMAC1 prodml22__MassIn * SOAP_FMAC2 soap_instantiate_prodml22__MassIn(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MassIn() { } + /// Friend allocator used by soap_new_prodml23__MassIn(struct soap*, int) + friend SOAP_FMAC1 prodml23__MassIn * SOAP_FMAC2 soap_instantiate_prodml23__MassIn(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2117 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut (-985) -/* complex XML schema type 'prodml22:MassOut': */ -class SOAP_CMAC prodml22__MassOut { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut (-985) +/* complex XML schema type 'prodml23:MassOut': */ +class SOAP_CMAC prodml23__MassOut { public: - /// Optional element 'prodml22:MassEffluentStockTankOil' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassEffluentStockTankOil' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassEffluentStockTankOil; - /// Optional element 'prodml22:MassProducedEffluentGas' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassProducedEffluentGas' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassProducedEffluentGas; - /// Optional element 'prodml22:MassResidualOil' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassResidualOil' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassResidualOil; - /// Optional element 'prodml22:MassProducedEffluentGasFlowDown' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:MassProducedEffluentGasFlowDown' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *MassProducedEffluentGasFlowDown; - /// Optional element 'prodml22:TotalMassOut' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:TotalMassOut' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *TotalMassOut; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29458,37 +29458,37 @@ class SOAP_CMAC prodml22__MassOut { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MassOut, default initialized and not managed by a soap context - virtual prodml22__MassOut *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MassOut); } + /// Return a new object of type prodml23__MassOut, default initialized and not managed by a soap context + virtual prodml23__MassOut *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MassOut); } public: /// Constructor with default initializations - prodml22__MassOut() : MassEffluentStockTankOil(), MassProducedEffluentGas(), MassResidualOil(), MassProducedEffluentGasFlowDown(), TotalMassOut(), soap() { } + prodml23__MassOut() : MassEffluentStockTankOil(), MassProducedEffluentGas(), MassResidualOil(), MassProducedEffluentGasFlowDown(), TotalMassOut(), soap() { } /// Destructor - virtual ~prodml22__MassOut() { } - /// Friend allocator used by soap_new_prodml22__MassOut(struct soap*, int) - friend SOAP_FMAC1 prodml22__MassOut * SOAP_FMAC2 soap_instantiate_prodml22__MassOut(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MassOut() { } + /// Friend allocator used by soap_new_prodml23__MassOut(struct soap*, int) + friend SOAP_FMAC1 prodml23__MassOut * SOAP_FMAC2 soap_instantiate_prodml23__MassOut(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2119 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest (-986) -/* complex XML schema type 'prodml22:MultipleContactMiscibilityTest': */ -class SOAP_CMAC prodml22__MultipleContactMiscibilityTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest (-986) +/* complex XML schema type 'prodml23:MultipleContactMiscibilityTest': */ +class SOAP_CMAC prodml23__MultipleContactMiscibilityTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Optional element 'prodml22:GasSolventCompositionReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:GasSolventCompositionReference' of XML schema type 'eml23:String64' std::string *GasSolventCompositionReference; - /// Optional element 'prodml22:MixRatio' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:MixRatio' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *MixRatio; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29501,55 +29501,55 @@ class SOAP_CMAC prodml22__MultipleContactMiscibilityTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MultipleContactMiscibilityTest, default initialized and not managed by a soap context - virtual prodml22__MultipleContactMiscibilityTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MultipleContactMiscibilityTest); } + /// Return a new object of type prodml23__MultipleContactMiscibilityTest, default initialized and not managed by a soap context + virtual prodml23__MultipleContactMiscibilityTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MultipleContactMiscibilityTest); } public: /// Constructor with default initializations - prodml22__MultipleContactMiscibilityTest() : TestNumber(), GasSolventCompositionReference(), MixRatio(), uid(), soap() { } + prodml23__MultipleContactMiscibilityTest() : TestNumber(), GasSolventCompositionReference(), MixRatio(), uid(), soap() { } /// Destructor - virtual ~prodml22__MultipleContactMiscibilityTest() { } - /// Friend allocator used by soap_new_prodml22__MultipleContactMiscibilityTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiate_prodml22__MultipleContactMiscibilityTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MultipleContactMiscibilityTest() { } + /// Friend allocator used by soap_new_prodml23__MultipleContactMiscibilityTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__MultipleContactMiscibilityTest * SOAP_FMAC2 soap_instantiate_prodml23__MultipleContactMiscibilityTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2123 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest (-988) -/* complex XML schema type 'prodml22:NonHydrocarbonTest': */ -class SOAP_CMAC prodml22__NonHydrocarbonTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest (-988) +/* complex XML schema type 'prodml23:NonHydrocarbonTest': */ +class SOAP_CMAC prodml23__NonHydrocarbonTest { public: - /// Optional element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Optional element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 *TestNumber; - /// Optional element 'prodml22:TestTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:TestTime' of XML schema type 'eml23:TimeStamp' struct tm *TestTime; - /// Optional element 'prodml22:TestVolume' of XML schema type 'eml23:VolumeMeasureExt' + /// Optional element 'prodml23:TestVolume' of XML schema type 'eml23:VolumeMeasureExt' eml23__VolumeMeasureExt *TestVolume; - /// Optional element 'prodml22:PhasesTested' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesTested; - /// Optional element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:PhasesTested' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesTested; + /// Optional element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Optional element 'prodml22:TestPressure' of XML schema type 'eml23:PressureMeasureExt' + /// Optional element 'prodml23:TestPressure' of XML schema type 'eml23:PressureMeasureExt' eml23__PressureMeasureExt *TestPressure; - /// Optional element 'prodml22:AnalysisMethod' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:AnalysisMethod' of XML schema type 'eml23:String2000' std::string *AnalysisMethod; - /// Optional element 'prodml22:SamplingPoint' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:SamplingPoint' of XML schema type 'eml23:String2000' std::string *SamplingPoint; - /// Optional element 'prodml22:CellId' of XML schema type 'eml23:NonNegativeLong' + /// Optional element 'prodml23:CellId' of XML schema type 'eml23:NonNegativeLong' LONG64 *CellId; - /// Optional element 'prodml22:InstrumentId' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:InstrumentId' of XML schema type 'eml23:String2000' std::string *InstrumentId; - /// Optional element 'prodml22:NonHydrocarbonConcentrations' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *NonHydrocarbonConcentrations; - /// Optional element 'prodml22:OtherMeasuredProperties' of XML schema type 'eml23:ExtensionNameValue' + /// Optional element 'prodml23:NonHydrocarbonConcentrations' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *NonHydrocarbonConcentrations; + /// Optional element 'prodml23:OtherMeasuredProperties' of XML schema type 'eml23:ExtensionNameValue' std::vector OtherMeasuredProperties; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29562,41 +29562,80 @@ class SOAP_CMAC prodml22__NonHydrocarbonTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NonHydrocarbonTest, default initialized and not managed by a soap context - virtual prodml22__NonHydrocarbonTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NonHydrocarbonTest); } + /// Return a new object of type prodml23__NonHydrocarbonTest, default initialized and not managed by a soap context + virtual prodml23__NonHydrocarbonTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NonHydrocarbonTest); } public: /// Constructor with default initializations - prodml22__NonHydrocarbonTest() : TestNumber(), TestTime(), TestVolume(), PhasesTested(), TestTemperature(), TestPressure(), AnalysisMethod(), SamplingPoint(), CellId(), InstrumentId(), NonHydrocarbonConcentrations(), OtherMeasuredProperties(), Remark(), soap() { } + prodml23__NonHydrocarbonTest() : TestNumber(), TestTime(), TestVolume(), PhasesTested(), TestTemperature(), TestPressure(), AnalysisMethod(), SamplingPoint(), CellId(), InstrumentId(), NonHydrocarbonConcentrations(), OtherMeasuredProperties(), Remark(), soap() { } /// Destructor - virtual ~prodml22__NonHydrocarbonTest() { } - /// Friend allocator used by soap_new_prodml22__NonHydrocarbonTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml22__NonHydrocarbonTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NonHydrocarbonTest() { } + /// Friend allocator used by soap_new_prodml23__NonHydrocarbonTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__NonHydrocarbonTest * SOAP_FMAC2 soap_instantiate_prodml23__NonHydrocarbonTest(struct soap*, int, const char*, const char*, size_t*); +}; +#endif + +/* eml2_3ForGsoap.h:2125 */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility (-989) +/* complex XML schema type 'prodml23:OilCompressibility': */ +class SOAP_CMAC prodml23__OilCompressibility { + public: + /// Required element 'prodml23:ReciprocalPressureMeasure' of XML schema type 'eml23:ReciprocalPressureMeasure' + eml23__ReciprocalPressureMeasure *ReciprocalPressureMeasure; + /// Required attribute 'kind' of XML schema type 'prodml23:CompressibilityKind' + prodml23__CompressibilityKind kind; + /// Context that manages this object + struct soap *soap; + public: + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility; } + /// (Re)set members to default values + virtual void soap_default(struct soap*); + /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures + virtual void soap_serialize(struct soap*) const; + /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK + virtual int soap_put(struct soap*, const char *tag, const char *type) const; + /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK + virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; + /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error + virtual void *soap_get(struct soap*, const char *tag, const char *type); + /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error + virtual void *soap_in(struct soap*, const char *tag, const char *type); + /// Return a new object of type prodml23__OilCompressibility, default initialized and not managed by a soap context + virtual prodml23__OilCompressibility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OilCompressibility); } + public: + /// Constructor with default initializations + prodml23__OilCompressibility() : ReciprocalPressureMeasure(), kind(), soap() { } + /// Destructor + virtual ~prodml23__OilCompressibility() { } + /// Friend allocator used by soap_new_prodml23__OilCompressibility(struct soap*, int) + friend SOAP_FMAC1 prodml23__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml23__OilCompressibility(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2131 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest (-992) -/* complex XML schema type 'prodml22:OtherMeasurementTest': */ -class SOAP_CMAC prodml22__OtherMeasurementTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest (-992) +/* complex XML schema type 'prodml23:OtherMeasurementTest': */ +class SOAP_CMAC prodml23__OtherMeasurementTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FluidCharacterizationTableFormatSet' of XML schema type 'prodml22:FluidCharacterizationTableFormatSet' - prodml22__FluidCharacterizationTableFormatSet *FluidCharacterizationTableFormatSet; - /// Optional element 'prodml22:FluidCharacterizationTable' of XML schema type 'prodml22:FluidCharacterizationTable' - prodml22__FluidCharacterizationTable *FluidCharacterizationTable; - /// Optional element 'prodml22:OtherMeasurementTestStep' of XML schema type 'prodml22:OtherMeasurementTestStep' - std::vector OtherMeasurementTestStep; + /// Optional element 'prodml23:FluidCharacterizationTableFormatSet' of XML schema type 'prodml23:FluidCharacterizationTableFormatSet' + prodml23__FluidCharacterizationTableFormatSet *FluidCharacterizationTableFormatSet; + /// Optional element 'prodml23:FluidCharacterizationTable' of XML schema type 'prodml23:FluidCharacterizationTable' + prodml23__FluidCharacterizationTable *FluidCharacterizationTable; + /// Optional element 'prodml23:OtherMeasurementTestStep' of XML schema type 'prodml23:OtherMeasurementTestStep' + std::vector OtherMeasurementTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29609,63 +29648,63 @@ class SOAP_CMAC prodml22__OtherMeasurementTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OtherMeasurementTest, default initialized and not managed by a soap context - virtual prodml22__OtherMeasurementTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OtherMeasurementTest); } + /// Return a new object of type prodml23__OtherMeasurementTest, default initialized and not managed by a soap context + virtual prodml23__OtherMeasurementTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OtherMeasurementTest); } public: /// Constructor with default initializations - prodml22__OtherMeasurementTest() : TestNumber(), Remark(), FluidCharacterizationTableFormatSet(), FluidCharacterizationTable(), OtherMeasurementTestStep(), uid(), soap() { } + prodml23__OtherMeasurementTest() : TestNumber(), Remark(), FluidCharacterizationTableFormatSet(), FluidCharacterizationTable(), OtherMeasurementTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__OtherMeasurementTest() { } - /// Friend allocator used by soap_new_prodml22__OtherMeasurementTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml22__OtherMeasurementTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OtherMeasurementTest() { } + /// Friend allocator used by soap_new_prodml23__OtherMeasurementTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__OtherMeasurementTest * SOAP_FMAC2 soap_instantiate_prodml23__OtherMeasurementTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2133 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep (-993) -/* complex XML schema type 'prodml22:OtherMeasurementTestStep': */ -class SOAP_CMAC prodml22__OtherMeasurementTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep (-993) +/* complex XML schema type 'prodml23:OtherMeasurementTestStep': */ +class SOAP_CMAC prodml23__OtherMeasurementTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Optional element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Optional element 'prodml22:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StepTemperature; - /// Optional element 'prodml22:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:OilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *OilViscosity; - /// Optional element 'prodml22:OilMassDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:OilMassDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *OilMassDensity; - /// Optional element 'prodml22:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosity; - /// Optional element 'prodml22:GasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasGravity' of XML schema type 'xsd:double' double *GasGravity; - /// Optional element 'prodml22:GasMassDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:GasMassDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *GasMassDensity; - /// Optional element 'prodml22:GasZFactor' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasZFactor' of XML schema type 'xsd:double' double *GasZFactor; - /// Optional element 'prodml22:FluidCondition' of XML schema type 'prodml22:FluidAnalysisStepCondition' - prodml22__FluidAnalysisStepCondition *FluidCondition; - /// Optional element 'prodml22:WaterContent' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:FluidCondition' of XML schema type 'prodml23:FluidAnalysisStepCondition' + prodml23__FluidAnalysisStepCondition *FluidCondition; + /// Optional element 'prodml23:WaterContent' of XML schema type 'eml23:String64' std::string *WaterContent; - /// Optional element 'prodml22:WaterViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:WaterViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *WaterViscosity; - /// Optional element 'prodml22:Salinity' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:Salinity' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Salinity; - /// Optional element 'prodml22:Rsw' of XML schema type 'xsd:double' + /// Optional element 'prodml23:Rsw' of XML schema type 'xsd:double' double *Rsw; - /// Optional element 'prodml22:Shear' of XML schema type 'xsd:double' + /// Optional element 'prodml23:Shear' of XML schema type 'xsd:double' double *Shear; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29678,35 +29717,35 @@ class SOAP_CMAC prodml22__OtherMeasurementTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OtherMeasurementTestStep, default initialized and not managed by a soap context - virtual prodml22__OtherMeasurementTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OtherMeasurementTestStep); } + /// Return a new object of type prodml23__OtherMeasurementTestStep, default initialized and not managed by a soap context + virtual prodml23__OtherMeasurementTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OtherMeasurementTestStep); } public: /// Constructor with default initializations - prodml22__OtherMeasurementTestStep() : StepNumber(), StepPressure(), StepTemperature(), OilViscosity(), OilMassDensity(), GasViscosity(), GasGravity(), GasMassDensity(), GasZFactor(), FluidCondition(), WaterContent(), WaterViscosity(), Salinity(), Rsw(), Shear(), Remark(), uid(), soap() { } + prodml23__OtherMeasurementTestStep() : StepNumber(), StepPressure(), StepTemperature(), OilViscosity(), OilMassDensity(), GasViscosity(), GasGravity(), GasMassDensity(), GasZFactor(), FluidCondition(), WaterContent(), WaterViscosity(), Salinity(), Rsw(), Shear(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__OtherMeasurementTestStep() { } - /// Friend allocator used by soap_new_prodml22__OtherMeasurementTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prodml22__OtherMeasurementTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OtherMeasurementTestStep() { } + /// Friend allocator used by soap_new_prodml23__OtherMeasurementTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__OtherMeasurementTestStep * SOAP_FMAC2 soap_instantiate_prodml23__OtherMeasurementTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2135 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity (-994) -/* complex XML schema type 'prodml22:PhaseDensity': */ -class SOAP_CMAC prodml22__PhaseDensity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity (-994) +/* complex XML schema type 'prodml23:PhaseDensity': */ +class SOAP_CMAC prodml23__PhaseDensity { public: - /// Optional element 'prodml22:Pressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Pressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pressure; - /// Optional element 'prodml22:Density' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:Density' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *Density; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29719,35 +29758,35 @@ class SOAP_CMAC prodml22__PhaseDensity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PhaseDensity, default initialized and not managed by a soap context - virtual prodml22__PhaseDensity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PhaseDensity); } + /// Return a new object of type prodml23__PhaseDensity, default initialized and not managed by a soap context + virtual prodml23__PhaseDensity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PhaseDensity); } public: /// Constructor with default initializations - prodml22__PhaseDensity() : Pressure(), Density(), uid(), soap() { } + prodml23__PhaseDensity() : Pressure(), Density(), uid(), soap() { } /// Destructor - virtual ~prodml22__PhaseDensity() { } - /// Friend allocator used by soap_new_prodml22__PhaseDensity(struct soap*, int) - friend SOAP_FMAC1 prodml22__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseDensity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PhaseDensity() { } + /// Friend allocator used by soap_new_prodml23__PhaseDensity(struct soap*, int) + friend SOAP_FMAC1 prodml23__PhaseDensity * SOAP_FMAC2 soap_instantiate_prodml23__PhaseDensity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2137 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity (-995) -/* complex XML schema type 'prodml22:PhaseViscosity': */ -class SOAP_CMAC prodml22__PhaseViscosity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity (-995) +/* complex XML schema type 'prodml23:PhaseViscosity': */ +class SOAP_CMAC prodml23__PhaseViscosity { public: - /// Optional element 'prodml22:Pressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Pressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pressure; - /// Optional element 'prodml22:Viscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:Viscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *Viscosity; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29760,33 +29799,33 @@ class SOAP_CMAC prodml22__PhaseViscosity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PhaseViscosity, default initialized and not managed by a soap context - virtual prodml22__PhaseViscosity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PhaseViscosity); } + /// Return a new object of type prodml23__PhaseViscosity, default initialized and not managed by a soap context + virtual prodml23__PhaseViscosity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PhaseViscosity); } public: /// Constructor with default initializations - prodml22__PhaseViscosity() : Pressure(), Viscosity(), uid(), soap() { } + prodml23__PhaseViscosity() : Pressure(), Viscosity(), uid(), soap() { } /// Destructor - virtual ~prodml22__PhaseViscosity() { } - /// Friend allocator used by soap_new_prodml22__PhaseViscosity(struct soap*, int) - friend SOAP_FMAC1 prodml22__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml22__PhaseViscosity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PhaseViscosity() { } + /// Friend allocator used by soap_new_prodml23__PhaseViscosity(struct soap*, int) + friend SOAP_FMAC1 prodml23__PhaseViscosity * SOAP_FMAC2 soap_instantiate_prodml23__PhaseViscosity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2139 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties (-996) -/* complex XML schema type 'prodml22:ProducedGasProperties': */ -class SOAP_CMAC prodml22__ProducedGasProperties { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties (-996) +/* complex XML schema type 'prodml23:ProducedGasProperties': */ +class SOAP_CMAC prodml23__ProducedGasProperties { public: - /// Optional element 'prodml22:ProducedGasGravity' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:ProducedGasGravity' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *ProducedGasGravity; - /// Required element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - std::vector VaporComposition; + /// Required element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + std::vector VaporComposition; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29799,39 +29838,39 @@ class SOAP_CMAC prodml22__ProducedGasProperties { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProducedGasProperties, default initialized and not managed by a soap context - virtual prodml22__ProducedGasProperties *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProducedGasProperties); } + /// Return a new object of type prodml23__ProducedGasProperties, default initialized and not managed by a soap context + virtual prodml23__ProducedGasProperties *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProducedGasProperties); } public: /// Constructor with default initializations - prodml22__ProducedGasProperties() : ProducedGasGravity(), VaporComposition(), soap() { } + prodml23__ProducedGasProperties() : ProducedGasGravity(), VaporComposition(), soap() { } /// Destructor - virtual ~prodml22__ProducedGasProperties() { } - /// Friend allocator used by soap_new_prodml22__ProducedGasProperties(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml22__ProducedGasProperties(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProducedGasProperties() { } + /// Friend allocator used by soap_new_prodml23__ProducedGasProperties(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProducedGasProperties * SOAP_FMAC2 soap_instantiate_prodml23__ProducedGasProperties(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2141 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties (-997) -/* complex XML schema type 'prodml22:ProducedOilProperties': */ -class SOAP_CMAC prodml22__ProducedOilProperties { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties (-997) +/* complex XML schema type 'prodml23:ProducedOilProperties': */ +class SOAP_CMAC prodml23__ProducedOilProperties { public: - /// Optional element 'prodml22:STODensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:STODensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *STODensity; - /// Optional element 'prodml22:STOApiGravity' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:STOApiGravity' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *STOApiGravity; - /// Optional element 'prodml22:STOMW' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:STOMW' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *STOMW; - /// Optional element 'prodml22:STOWaterContent' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:STOWaterContent' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *STOWaterContent; - /// Optional element 'prodml22:AsphalteneContent' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:AsphalteneContent' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *AsphalteneContent; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29844,39 +29883,117 @@ class SOAP_CMAC prodml22__ProducedOilProperties { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProducedOilProperties, default initialized and not managed by a soap context - virtual prodml22__ProducedOilProperties *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProducedOilProperties); } + /// Return a new object of type prodml23__ProducedOilProperties, default initialized and not managed by a soap context + virtual prodml23__ProducedOilProperties *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProducedOilProperties); } public: /// Constructor with default initializations - prodml22__ProducedOilProperties() : STODensity(), STOApiGravity(), STOMW(), STOWaterContent(), AsphalteneContent(), soap() { } + prodml23__ProducedOilProperties() : STODensity(), STOApiGravity(), STOMW(), STOWaterContent(), AsphalteneContent(), soap() { } /// Destructor - virtual ~prodml22__ProducedOilProperties() { } - /// Friend allocator used by soap_new_prodml22__ProducedOilProperties(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml22__ProducedOilProperties(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProducedOilProperties() { } + /// Friend allocator used by soap_new_prodml23__ProducedOilProperties(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProducedOilProperties * SOAP_FMAC2 soap_instantiate_prodml23__ProducedOilProperties(struct soap*, int, const char*, const char*, size_t*); +}; +#endif + +/* eml2_3ForGsoap.h:2143 */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded (-998) +/* complex XML schema type 'prodml23:RefInjectedGasAdded': */ +class SOAP_CMAC prodml23__RefInjectedGasAdded { + public: + /// Required element 'prodml23:AmountOfSubstancePerAmountOfSubstanceMeasure' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *AmountOfSubstancePerAmountOfSubstanceMeasure; + /// Required attribute 'injectionGasReference' of XML schema type 'eml23:String64' + std::string injectionGasReference; + /// Context that manages this object + struct soap *soap; + public: + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded; } + /// (Re)set members to default values + virtual void soap_default(struct soap*); + /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures + virtual void soap_serialize(struct soap*) const; + /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK + virtual int soap_put(struct soap*, const char *tag, const char *type) const; + /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK + virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; + /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error + virtual void *soap_get(struct soap*, const char *tag, const char *type); + /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error + virtual void *soap_in(struct soap*, const char *tag, const char *type); + /// Return a new object of type prodml23__RefInjectedGasAdded, default initialized and not managed by a soap context + virtual prodml23__RefInjectedGasAdded *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RefInjectedGasAdded); } + public: + /// Constructor with default initializations + prodml23__RefInjectedGasAdded() : AmountOfSubstancePerAmountOfSubstanceMeasure(), injectionGasReference(), soap() { } + /// Destructor + virtual ~prodml23__RefInjectedGasAdded() { } + /// Friend allocator used by soap_new_prodml23__RefInjectedGasAdded(struct soap*, int) + friend SOAP_FMAC1 prodml23__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml23__RefInjectedGasAdded(struct soap*, int, const char*, const char*, size_t*); +}; +#endif + +/* eml2_3ForGsoap.h:2145 */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio (-999) +/* complex XML schema type 'prodml23:RelativeVolumeRatio': */ +class SOAP_CMAC prodml23__RelativeVolumeRatio { + public: + /// Required element 'prodml23:VolumePerVolumeMeasure' of XML schema type 'eml23:VolumePerVolumeMeasure' + eml23__VolumePerVolumeMeasure *VolumePerVolumeMeasure; + /// Required attribute 'fluidVolumeReference' of XML schema type 'eml23:String64' + std::string fluidVolumeReference; + /// Context that manages this object + struct soap *soap; + public: + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio; } + /// (Re)set members to default values + virtual void soap_default(struct soap*); + /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures + virtual void soap_serialize(struct soap*) const; + /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK + virtual int soap_put(struct soap*, const char *tag, const char *type) const; + /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK + virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; + /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error + virtual void *soap_get(struct soap*, const char *tag, const char *type); + /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error + virtual void *soap_in(struct soap*, const char *tag, const char *type); + /// Return a new object of type prodml23__RelativeVolumeRatio, default initialized and not managed by a soap context + virtual prodml23__RelativeVolumeRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RelativeVolumeRatio); } + public: + /// Constructor with default initializations + prodml23__RelativeVolumeRatio() : VolumePerVolumeMeasure(), fluidVolumeReference(), soap() { } + /// Destructor + virtual ~prodml23__RelativeVolumeRatio() { } + /// Friend allocator used by soap_new_prodml23__RelativeVolumeRatio(struct soap*, int) + friend SOAP_FMAC1 prodml23__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml23__RelativeVolumeRatio(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2147 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation (-1000) -/* complex XML schema type 'prodml22:ReportLocation': */ -class SOAP_CMAC prodml22__ReportLocation { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation (-1000) +/* complex XML schema type 'prodml23:ReportLocation': */ +class SOAP_CMAC prodml23__ReportLocation { public: - /// Optional element 'prodml22:LocationDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:LocationDate' of XML schema type 'xsd:date' std::string *LocationDate; - /// Optional element 'prodml22:LocationType' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:LocationType' of XML schema type 'eml23:String64' std::string *LocationType; - /// Optional element 'prodml22:Location' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Location' of XML schema type 'eml23:String2000' std::string *Location; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29889,53 +30006,53 @@ class SOAP_CMAC prodml22__ReportLocation { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReportLocation, default initialized and not managed by a soap context - virtual prodml22__ReportLocation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReportLocation); } + /// Return a new object of type prodml23__ReportLocation, default initialized and not managed by a soap context + virtual prodml23__ReportLocation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReportLocation); } public: /// Constructor with default initializations - prodml22__ReportLocation() : LocationDate(), LocationType(), Location(), Remark(), uid(), soap() { } + prodml23__ReportLocation() : LocationDate(), LocationType(), Location(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__ReportLocation() { } - /// Friend allocator used by soap_new_prodml22__ReportLocation(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml22__ReportLocation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReportLocation() { } + /// Friend allocator used by soap_new_prodml23__ReportLocation(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReportLocation * SOAP_FMAC2 soap_instantiate_prodml23__ReportLocation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2149 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant (-1001) -/* complex XML schema type 'prodml22:SampleContaminant': */ -class SOAP_CMAC prodml22__SampleContaminant { - public: - /// Required element 'prodml22:ContaminantKind' of XML schema type 'prodml22:FluidContaminant' - prodml22__FluidContaminant ContaminantKind; - /// Optional element 'prodml22:WeightFractionStockTank' of XML schema type 'eml23:MassPerMassMeasure' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant (-1001) +/* complex XML schema type 'prodml23:SampleContaminant': */ +class SOAP_CMAC prodml23__SampleContaminant { + public: + /// Required element 'prodml23:ContaminantKind' of XML schema type 'prodml23:FluidContaminant' + prodml23__FluidContaminant ContaminantKind; + /// Optional element 'prodml23:WeightFractionStockTank' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *WeightFractionStockTank; - /// Optional element 'prodml22:VolumeFractionStockTank' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:VolumeFractionStockTank' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *VolumeFractionStockTank; - /// Optional element 'prodml22:WeightFractionLiveSample' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:WeightFractionLiveSample' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *WeightFractionLiveSample; - /// Optional element 'prodml22:VolumeFractionLiveSample' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:VolumeFractionLiveSample' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *VolumeFractionLiveSample; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; - /// Optional element 'prodml22:Density' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:Density' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *Density; - /// Optional element 'prodml22:ContaminantComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *ContaminantComposition; - /// Optional element 'prodml22:Description' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:ContaminantComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *ContaminantComposition; + /// Optional element 'prodml23:Description' of XML schema type 'eml23:String2000' std::string *Description; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:SampleOfContaminant' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:SampleOfContaminant' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *SampleOfContaminant; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -29948,53 +30065,53 @@ class SOAP_CMAC prodml22__SampleContaminant { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SampleContaminant, default initialized and not managed by a soap context - virtual prodml22__SampleContaminant *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SampleContaminant); } + /// Return a new object of type prodml23__SampleContaminant, default initialized and not managed by a soap context + virtual prodml23__SampleContaminant *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SampleContaminant); } public: /// Constructor with default initializations - prodml22__SampleContaminant() : ContaminantKind(), WeightFractionStockTank(), VolumeFractionStockTank(), WeightFractionLiveSample(), VolumeFractionLiveSample(), MolecularWeight(), Density(), ContaminantComposition(), Description(), Remark(), SampleOfContaminant(), uid(), soap() { } + prodml23__SampleContaminant() : ContaminantKind(), WeightFractionStockTank(), VolumeFractionStockTank(), WeightFractionLiveSample(), VolumeFractionLiveSample(), MolecularWeight(), Density(), ContaminantComposition(), Description(), Remark(), SampleOfContaminant(), uid(), soap() { } /// Destructor - virtual ~prodml22__SampleContaminant() { } - /// Friend allocator used by soap_new_prodml22__SampleContaminant(struct soap*, int) - friend SOAP_FMAC1 prodml22__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml22__SampleContaminant(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SampleContaminant() { } + /// Friend allocator used by soap_new_prodml23__SampleContaminant(struct soap*, int) + friend SOAP_FMAC1 prodml23__SampleContaminant * SOAP_FMAC2 soap_instantiate_prodml23__SampleContaminant(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2151 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation (-1002) -/* complex XML schema type 'prodml22:SampleIntegrityAndPreparation': */ -class SOAP_CMAC prodml22__SampleIntegrityAndPreparation { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation (-1002) +/* complex XML schema type 'prodml23:SampleIntegrityAndPreparation': */ +class SOAP_CMAC prodml23__SampleIntegrityAndPreparation { public: - /// Required element 'prodml22:OpeningDate' of XML schema type 'xsd:date' + /// Required element 'prodml23:OpeningDate' of XML schema type 'xsd:date' std::string OpeningDate; - /// Optional element 'prodml22:InitialVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:InitialVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *InitialVolume; - /// Optional element 'prodml22:OpeningPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:OpeningPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *OpeningPressure; - /// Optional element 'prodml22:OpeningTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:OpeningTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *OpeningTemperature; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:SaturationTemperature' of XML schema type 'prodml22:SaturationTemperature' - prodml22__SaturationTemperature *SaturationTemperature; - /// Optional element 'prodml22:BasicSedimentAndWater' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:SaturationTemperature' of XML schema type 'prodml23:SaturationTemperature' + prodml23__SaturationTemperature *SaturationTemperature; + /// Optional element 'prodml23:BasicSedimentAndWater' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *BasicSedimentAndWater; - /// Optional element 'prodml22:FreeWaterVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:FreeWaterVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *FreeWaterVolume; - /// Optional element 'prodml22:WaterContentInHydrocarbon' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:WaterContentInHydrocarbon' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *WaterContentInHydrocarbon; - /// Optional element 'prodml22:OpeningRemark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:OpeningRemark' of XML schema type 'eml23:String2000' std::string *OpeningRemark; - /// Optional element 'prodml22:SampleRestoration' of XML schema type 'prodml22:SampleRestoration' - std::vector SampleRestoration; + /// Optional element 'prodml23:SampleRestoration' of XML schema type 'prodml23:SampleRestoration' + std::vector SampleRestoration; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30007,41 +30124,41 @@ class SOAP_CMAC prodml22__SampleIntegrityAndPreparation { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SampleIntegrityAndPreparation, default initialized and not managed by a soap context - virtual prodml22__SampleIntegrityAndPreparation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SampleIntegrityAndPreparation); } + /// Return a new object of type prodml23__SampleIntegrityAndPreparation, default initialized and not managed by a soap context + virtual prodml23__SampleIntegrityAndPreparation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SampleIntegrityAndPreparation); } public: /// Constructor with default initializations - prodml22__SampleIntegrityAndPreparation() : OpeningDate(), InitialVolume(), OpeningPressure(), OpeningTemperature(), SaturationPressure(), SaturationTemperature(), BasicSedimentAndWater(), FreeWaterVolume(), WaterContentInHydrocarbon(), OpeningRemark(), SampleRestoration(), uid(), soap() { } + prodml23__SampleIntegrityAndPreparation() : OpeningDate(), InitialVolume(), OpeningPressure(), OpeningTemperature(), SaturationPressure(), SaturationTemperature(), BasicSedimentAndWater(), FreeWaterVolume(), WaterContentInHydrocarbon(), OpeningRemark(), SampleRestoration(), uid(), soap() { } /// Destructor - virtual ~prodml22__SampleIntegrityAndPreparation() { } - /// Friend allocator used by soap_new_prodml22__SampleIntegrityAndPreparation(struct soap*, int) - friend SOAP_FMAC1 prodml22__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate_prodml22__SampleIntegrityAndPreparation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SampleIntegrityAndPreparation() { } + /// Friend allocator used by soap_new_prodml23__SampleIntegrityAndPreparation(struct soap*, int) + friend SOAP_FMAC1 prodml23__SampleIntegrityAndPreparation * SOAP_FMAC2 soap_instantiate_prodml23__SampleIntegrityAndPreparation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2153 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration (-1003) -/* complex XML schema type 'prodml22:SampleRestoration': */ -class SOAP_CMAC prodml22__SampleRestoration { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration (-1003) +/* complex XML schema type 'prodml23:SampleRestoration': */ +class SOAP_CMAC prodml23__SampleRestoration { public: - /// Optional element 'prodml22:StartTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:StartTime' of XML schema type 'eml23:TimeStamp' struct tm *StartTime; - /// Optional element 'prodml22:EndTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EndTime' of XML schema type 'eml23:TimeStamp' struct tm *EndTime; - /// Optional element 'prodml22:RestorationPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:RestorationPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *RestorationPressure; - /// Optional element 'prodml22:RestorationTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:RestorationTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *RestorationTemperature; - /// Optional element 'prodml22:MixingMechanism' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:MixingMechanism' of XML schema type 'eml23:String64' std::string *MixingMechanism; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30054,41 +30171,119 @@ class SOAP_CMAC prodml22__SampleRestoration { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SampleRestoration, default initialized and not managed by a soap context - virtual prodml22__SampleRestoration *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SampleRestoration); } + /// Return a new object of type prodml23__SampleRestoration, default initialized and not managed by a soap context + virtual prodml23__SampleRestoration *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SampleRestoration); } public: /// Constructor with default initializations - prodml22__SampleRestoration() : StartTime(), EndTime(), RestorationPressure(), RestorationTemperature(), MixingMechanism(), Remark(), soap() { } + prodml23__SampleRestoration() : StartTime(), EndTime(), RestorationPressure(), RestorationTemperature(), MixingMechanism(), Remark(), soap() { } /// Destructor - virtual ~prodml22__SampleRestoration() { } - /// Friend allocator used by soap_new_prodml22__SampleRestoration(struct soap*, int) - friend SOAP_FMAC1 prodml22__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml22__SampleRestoration(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SampleRestoration() { } + /// Friend allocator used by soap_new_prodml23__SampleRestoration(struct soap*, int) + friend SOAP_FMAC1 prodml23__SampleRestoration * SOAP_FMAC2 soap_instantiate_prodml23__SampleRestoration(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2155 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Sara -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Sara (-1004) -/* complex XML schema type 'prodml22:Sara': */ -class SOAP_CMAC prodml22__Sara { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Sara +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Sara (-1004) +/* complex XML schema type 'prodml23:Sara': */ +class SOAP_CMAC prodml23__Sara { public: - /// Optional element 'prodml22:AromaticsWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:AromaticsWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *AromaticsWeightFraction; - /// Optional element 'prodml22:AsphaltenesWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:AsphaltenesWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *AsphaltenesWeightFraction; - /// Optional element 'prodml22:NapthenesWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:NapthenesWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *NapthenesWeightFraction; - /// Optional element 'prodml22:ParaffinsWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:ParaffinsWeightFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *ParaffinsWeightFraction; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Sara - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Sara; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Sara + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Sara; } + /// (Re)set members to default values + virtual void soap_default(struct soap*); + /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures + virtual void soap_serialize(struct soap*) const; + /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK + virtual int soap_put(struct soap*, const char *tag, const char *type) const; + /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK + virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; + /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error + virtual void *soap_get(struct soap*, const char *tag, const char *type); + /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error + virtual void *soap_in(struct soap*, const char *tag, const char *type); + /// Return a new object of type prodml23__Sara, default initialized and not managed by a soap context + virtual prodml23__Sara *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Sara); } + public: + /// Constructor with default initializations + prodml23__Sara() : AromaticsWeightFraction(), AsphaltenesWeightFraction(), NapthenesWeightFraction(), ParaffinsWeightFraction(), Remark(), uid(), soap() { } + /// Destructor + virtual ~prodml23__Sara() { } + /// Friend allocator used by soap_new_prodml23__Sara(struct soap*, int) + friend SOAP_FMAC1 prodml23__Sara * SOAP_FMAC2 soap_instantiate_prodml23__Sara(struct soap*, int, const char*, const char*, size_t*); +}; +#endif + +/* eml2_3ForGsoap.h:2157 */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure (-1005) +/* complex XML schema type 'prodml23:SaturationPressure': */ +class SOAP_CMAC prodml23__SaturationPressure { + public: + /// Required element 'prodml23:PressureMeasureExt' of XML schema type 'eml23:PressureMeasureExt' + eml23__PressureMeasureExt *PressureMeasureExt; + /// Required attribute 'kind' of XML schema type 'prodml23:SaturationPointKind' + prodml23__SaturationPointKind kind; + /// Context that manages this object + struct soap *soap; + public: + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure; } + /// (Re)set members to default values + virtual void soap_default(struct soap*); + /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures + virtual void soap_serialize(struct soap*) const; + /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK + virtual int soap_put(struct soap*, const char *tag, const char *type) const; + /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK + virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; + /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error + virtual void *soap_get(struct soap*, const char *tag, const char *type); + /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error + virtual void *soap_in(struct soap*, const char *tag, const char *type); + /// Return a new object of type prodml23__SaturationPressure, default initialized and not managed by a soap context + virtual prodml23__SaturationPressure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SaturationPressure); } + public: + /// Constructor with default initializations + prodml23__SaturationPressure() : PressureMeasureExt(), kind(), soap() { } + /// Destructor + virtual ~prodml23__SaturationPressure() { } + /// Friend allocator used by soap_new_prodml23__SaturationPressure(struct soap*, int) + friend SOAP_FMAC1 prodml23__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml23__SaturationPressure(struct soap*, int, const char*, const char*, size_t*); +}; +#endif + +/* eml2_3ForGsoap.h:2159 */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature (-1006) +/* complex XML schema type 'prodml23:SaturationTemperature': */ +class SOAP_CMAC prodml23__SaturationTemperature { + public: + /// Required element 'prodml23:ThermodynamicTemperatureMeasure' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + eml23__ThermodynamicTemperatureMeasure *ThermodynamicTemperatureMeasure; + /// Required attribute 'kind' of XML schema type 'prodml23:SaturationPointKind' + prodml23__SaturationPointKind kind; + /// Context that manages this object + struct soap *soap; + public: + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30101,39 +30296,39 @@ class SOAP_CMAC prodml22__Sara { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Sara, default initialized and not managed by a soap context - virtual prodml22__Sara *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Sara); } + /// Return a new object of type prodml23__SaturationTemperature, default initialized and not managed by a soap context + virtual prodml23__SaturationTemperature *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SaturationTemperature); } public: /// Constructor with default initializations - prodml22__Sara() : AromaticsWeightFraction(), AsphaltenesWeightFraction(), NapthenesWeightFraction(), ParaffinsWeightFraction(), Remark(), uid(), soap() { } + prodml23__SaturationTemperature() : ThermodynamicTemperatureMeasure(), kind(), soap() { } /// Destructor - virtual ~prodml22__Sara() { } - /// Friend allocator used by soap_new_prodml22__Sara(struct soap*, int) - friend SOAP_FMAC1 prodml22__Sara * SOAP_FMAC2 soap_instantiate_prodml22__Sara(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SaturationTemperature() { } + /// Friend allocator used by soap_new_prodml23__SaturationTemperature(struct soap*, int) + friend SOAP_FMAC1 prodml23__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml23__SaturationTemperature(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2161 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest (-1007) -/* complex XML schema type 'prodml22:SaturationTest': */ -class SOAP_CMAC prodml22__SaturationTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest (-1007) +/* complex XML schema type 'prodml23:SaturationTest': */ +class SOAP_CMAC prodml23__SaturationTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Required element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30146,31 +30341,31 @@ class SOAP_CMAC prodml22__SaturationTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SaturationTest, default initialized and not managed by a soap context - virtual prodml22__SaturationTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SaturationTest); } + /// Return a new object of type prodml23__SaturationTest, default initialized and not managed by a soap context + virtual prodml23__SaturationTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SaturationTest); } public: /// Constructor with default initializations - prodml22__SaturationTest() : TestNumber(), TestTemperature(), SaturationPressure(), Remark(), uid(), soap() { } + prodml23__SaturationTest() : TestNumber(), TestTemperature(), SaturationPressure(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__SaturationTest() { } - /// Friend allocator used by soap_new_prodml22__SaturationTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml22__SaturationTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SaturationTest() { } + /// Friend allocator used by soap_new_prodml23__SaturationTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__SaturationTest * SOAP_FMAC2 soap_instantiate_prodml23__SaturationTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2163 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions (-1008) -/* complex XML schema type 'prodml22:SeparatorConditions': */ -class SOAP_CMAC prodml22__SeparatorConditions { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions (-1008) +/* complex XML schema type 'prodml23:SeparatorConditions': */ +class SOAP_CMAC prodml23__SeparatorConditions { public: /// Optional attribute 'separatorTestReference' of XML schema type 'eml23:String64' std::string *separatorTestReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30183,51 +30378,51 @@ class SOAP_CMAC prodml22__SeparatorConditions { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SeparatorConditions, default initialized and not managed by a soap context - virtual prodml22__SeparatorConditions *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SeparatorConditions); } + /// Return a new object of type prodml23__SeparatorConditions, default initialized and not managed by a soap context + virtual prodml23__SeparatorConditions *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SeparatorConditions); } public: /// Constructor with default initializations - prodml22__SeparatorConditions() : separatorTestReference(), soap() { } + prodml23__SeparatorConditions() : separatorTestReference(), soap() { } /// Destructor - virtual ~prodml22__SeparatorConditions() { } - /// Friend allocator used by soap_new_prodml22__SeparatorConditions(struct soap*, int) - friend SOAP_FMAC1 prodml22__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml22__SeparatorConditions(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SeparatorConditions() { } + /// Friend allocator used by soap_new_prodml23__SeparatorConditions(struct soap*, int) + friend SOAP_FMAC1 prodml23__SeparatorConditions * SOAP_FMAC2 soap_instantiate_prodml23__SeparatorConditions(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2165 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification (-1009) -/* complex XML schema type 'prodml22:SlimTubeSpecification': */ -class SOAP_CMAC prodml22__SlimTubeSpecification { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification (-1009) +/* complex XML schema type 'prodml23:SlimTubeSpecification': */ +class SOAP_CMAC prodml23__SlimTubeSpecification { public: - /// Optional element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; - /// Optional element 'prodml22:OuterDiameter' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:OuterDiameter' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *OuterDiameter; - /// Optional element 'prodml22:InnerDiameter' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:InnerDiameter' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *InnerDiameter; - /// Optional element 'prodml22:CrossSectionArea' of XML schema type 'eml23:AreaMeasure' + /// Optional element 'prodml23:CrossSectionArea' of XML schema type 'eml23:AreaMeasure' eml23__AreaMeasure *CrossSectionArea; - /// Optional element 'prodml22:PackingMaterial' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PackingMaterial' of XML schema type 'eml23:String64' std::string *PackingMaterial; - /// Optional element 'prodml22:PoreVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:PoreVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *PoreVolume; - /// Optional element 'prodml22:Porosity' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:Porosity' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Porosity; - /// Optional element 'prodml22:Permeability' of XML schema type 'eml23:PermeabilityRockMeasure' + /// Optional element 'prodml23:Permeability' of XML schema type 'eml23:PermeabilityRockMeasure' eml23__PermeabilityRockMeasure *Permeability; - /// Optional element 'prodml22:InjectedGas' of XML schema type 'prodml22:InjectedGas' - std::vector InjectedGas; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:InjectedGas' of XML schema type 'prodml23:InjectedGas' + std::vector InjectedGas; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30240,43 +30435,43 @@ class SOAP_CMAC prodml22__SlimTubeSpecification { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SlimTubeSpecification, default initialized and not managed by a soap context - virtual prodml22__SlimTubeSpecification *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SlimTubeSpecification); } + /// Return a new object of type prodml23__SlimTubeSpecification, default initialized and not managed by a soap context + virtual prodml23__SlimTubeSpecification *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SlimTubeSpecification); } public: /// Constructor with default initializations - prodml22__SlimTubeSpecification() : Length(), OuterDiameter(), InnerDiameter(), CrossSectionArea(), PackingMaterial(), PoreVolume(), Porosity(), Permeability(), InjectedGas(), Remark(), uid(), soap() { } + prodml23__SlimTubeSpecification() : Length(), OuterDiameter(), InnerDiameter(), CrossSectionArea(), PackingMaterial(), PoreVolume(), Porosity(), Permeability(), InjectedGas(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__SlimTubeSpecification() { } - /// Friend allocator used by soap_new_prodml22__SlimTubeSpecification(struct soap*, int) - friend SOAP_FMAC1 prodml22__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeSpecification(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SlimTubeSpecification() { } + /// Friend allocator used by soap_new_prodml23__SlimTubeSpecification(struct soap*, int) + friend SOAP_FMAC1 prodml23__SlimTubeSpecification * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeSpecification(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2167 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest (-1010) -/* complex XML schema type 'prodml22:SlimTubeTest': */ -class SOAP_CMAC prodml22__SlimTubeTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest (-1010) +/* complex XML schema type 'prodml23:SlimTubeTest': */ +class SOAP_CMAC prodml23__SlimTubeTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Optional element 'prodml22:PumpTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:PumpTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *PumpTemperature; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:SlimTubeTestPressureStep' of XML schema type 'prodml22:SlimTubeTestStep' - std::vector SlimTubeTestPressureStep; - /// Optional element 'prodml22:SlimTubeSpecification' of XML schema type 'prodml22:SlimTubeSpecification' - std::vector SlimTubeSpecification; + /// Optional element 'prodml23:SlimTubeTestPressureStep' of XML schema type 'prodml23:SlimTubeTestStep' + std::vector SlimTubeTestPressureStep; + /// Optional element 'prodml23:SlimTubeSpecification' of XML schema type 'prodml23:SlimTubeSpecification' + std::vector SlimTubeSpecification; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30289,39 +30484,39 @@ class SOAP_CMAC prodml22__SlimTubeTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SlimTubeTest, default initialized and not managed by a soap context - virtual prodml22__SlimTubeTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SlimTubeTest); } + /// Return a new object of type prodml23__SlimTubeTest, default initialized and not managed by a soap context + virtual prodml23__SlimTubeTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SlimTubeTest); } public: /// Constructor with default initializations - prodml22__SlimTubeTest() : TestNumber(), TestTemperature(), PumpTemperature(), Remark(), SlimTubeTestPressureStep(), SlimTubeSpecification(), uid(), soap() { } + prodml23__SlimTubeTest() : TestNumber(), TestTemperature(), PumpTemperature(), Remark(), SlimTubeTestPressureStep(), SlimTubeSpecification(), uid(), soap() { } /// Destructor - virtual ~prodml22__SlimTubeTest() { } - /// Friend allocator used by soap_new_prodml22__SlimTubeTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SlimTubeTest() { } + /// Friend allocator used by soap_new_prodml23__SlimTubeTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__SlimTubeTest * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2169 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep (-1011) -/* complex XML schema type 'prodml22:SlimTubeTestStep': */ -class SOAP_CMAC prodml22__SlimTubeTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep (-1011) +/* complex XML schema type 'prodml23:SlimTubeTestStep': */ +class SOAP_CMAC prodml23__SlimTubeTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Optional element 'prodml22:StepAveragePressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:StepAveragePressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepAveragePressure; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:SlimTubeTestVolumeStep' of XML schema type 'prodml22:SlimTubeTestVolumeStep' - std::vector SlimTubeTestVolumeStep; + /// Optional element 'prodml23:SlimTubeTestVolumeStep' of XML schema type 'prodml23:SlimTubeTestVolumeStep' + std::vector SlimTubeTestVolumeStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30334,61 +30529,61 @@ class SOAP_CMAC prodml22__SlimTubeTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SlimTubeTestStep, default initialized and not managed by a soap context - virtual prodml22__SlimTubeTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SlimTubeTestStep); } + /// Return a new object of type prodml23__SlimTubeTestStep, default initialized and not managed by a soap context + virtual prodml23__SlimTubeTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SlimTubeTestStep); } public: /// Constructor with default initializations - prodml22__SlimTubeTestStep() : StepNumber(), StepAveragePressure(), Remark(), SlimTubeTestVolumeStep(), uid(), soap() { } + prodml23__SlimTubeTestStep() : StepNumber(), StepAveragePressure(), Remark(), SlimTubeTestVolumeStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__SlimTubeTestStep() { } - /// Friend allocator used by soap_new_prodml22__SlimTubeTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SlimTubeTestStep() { } + /// Friend allocator used by soap_new_prodml23__SlimTubeTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__SlimTubeTestStep * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2171 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep (-1012) -/* complex XML schema type 'prodml22:SlimTubeTestVolumeStep': */ -class SOAP_CMAC prodml22__SlimTubeTestVolumeStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep (-1012) +/* complex XML schema type 'prodml23:SlimTubeTestVolumeStep': */ +class SOAP_CMAC prodml23__SlimTubeTestVolumeStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Optional element 'prodml22:DifferentialPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:DifferentialPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *DifferentialPressure; - /// Optional element 'prodml22:RunTime' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:RunTime' of XML schema type 'eml23:String64' std::string *RunTime; - /// Optional element 'prodml22:InjectionVolumeAtPumpTemperature' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:InjectionVolumeAtPumpTemperature' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *InjectionVolumeAtPumpTemperature; - /// Optional element 'prodml22:InjectionVolumeAtTestTemperature' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:InjectionVolumeAtTestTemperature' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *InjectionVolumeAtTestTemperature; - /// Optional element 'prodml22:InjectedPoreVolumeFraction' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:InjectedPoreVolumeFraction' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *InjectedPoreVolumeFraction; - /// Optional element 'prodml22:DarcyVelocity' of XML schema type 'eml23:LengthPerTimeMeasure' + /// Optional element 'prodml23:DarcyVelocity' of XML schema type 'eml23:LengthPerTimeMeasure' eml23__LengthPerTimeMeasure *DarcyVelocity; - /// Optional element 'prodml22:CumulativeOilProductionPercOOIP' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:CumulativeOilProductionPercOOIP' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *CumulativeOilProductionPercOOIP; - /// Optional element 'prodml22:CumulativeOilProductionSTO' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:CumulativeOilProductionSTO' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *CumulativeOilProductionSTO; - /// Optional element 'prodml22:IncrementalProducedGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:IncrementalProducedGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *IncrementalProducedGOR; - /// Optional element 'prodml22:CumulativeProducedGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:CumulativeProducedGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *CumulativeProducedGOR; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:ProducedGasProperties' of XML schema type 'prodml22:ProducedGasProperties' - prodml22__ProducedGasProperties *ProducedGasProperties; - /// Optional element 'prodml22:ProducedOilProperties' of XML schema type 'prodml22:ProducedOilProperties' - prodml22__ProducedOilProperties *ProducedOilProperties; - /// Optional element 'prodml22:MassBalance' of XML schema type 'prodml22:MassBalance' - prodml22__MassBalance *MassBalance; + /// Optional element 'prodml23:ProducedGasProperties' of XML schema type 'prodml23:ProducedGasProperties' + prodml23__ProducedGasProperties *ProducedGasProperties; + /// Optional element 'prodml23:ProducedOilProperties' of XML schema type 'prodml23:ProducedOilProperties' + prodml23__ProducedOilProperties *ProducedOilProperties; + /// Optional element 'prodml23:MassBalance' of XML schema type 'prodml23:MassBalance' + prodml23__MassBalance *MassBalance; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30401,51 +30596,51 @@ class SOAP_CMAC prodml22__SlimTubeTestVolumeStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SlimTubeTestVolumeStep, default initialized and not managed by a soap context - virtual prodml22__SlimTubeTestVolumeStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SlimTubeTestVolumeStep); } + /// Return a new object of type prodml23__SlimTubeTestVolumeStep, default initialized and not managed by a soap context + virtual prodml23__SlimTubeTestVolumeStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SlimTubeTestVolumeStep); } public: /// Constructor with default initializations - prodml22__SlimTubeTestVolumeStep() : StepNumber(), DifferentialPressure(), RunTime(), InjectionVolumeAtPumpTemperature(), InjectionVolumeAtTestTemperature(), InjectedPoreVolumeFraction(), DarcyVelocity(), CumulativeOilProductionPercOOIP(), CumulativeOilProductionSTO(), IncrementalProducedGOR(), CumulativeProducedGOR(), Remark(), ProducedGasProperties(), ProducedOilProperties(), MassBalance(), uid(), soap() { } + prodml23__SlimTubeTestVolumeStep() : StepNumber(), DifferentialPressure(), RunTime(), InjectionVolumeAtPumpTemperature(), InjectionVolumeAtTestTemperature(), InjectedPoreVolumeFraction(), DarcyVelocity(), CumulativeOilProductionPercOOIP(), CumulativeOilProductionSTO(), IncrementalProducedGOR(), CumulativeProducedGOR(), Remark(), ProducedGasProperties(), ProducedOilProperties(), MassBalance(), uid(), soap() { } /// Destructor - virtual ~prodml22__SlimTubeTestVolumeStep() { } - /// Friend allocator used by soap_new_prodml22__SlimTubeTestVolumeStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml22__SlimTubeTestVolumeStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SlimTubeTestVolumeStep() { } + /// Friend allocator used by soap_new_prodml23__SlimTubeTestVolumeStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__SlimTubeTestVolumeStep * SOAP_FMAC2 soap_instantiate_prodml23__SlimTubeTestVolumeStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2173 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis (-1013) -/* complex XML schema type 'prodml22:STOAnalysis': */ -class SOAP_CMAC prodml22__STOAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis (-1013) +/* complex XML schema type 'prodml23:STOAnalysis': */ +class SOAP_CMAC prodml23__STOAnalysis { public: - /// Required element 'prodml22:Date' of XML schema type 'xsd:date' + /// Required element 'prodml23:Date' of XML schema type 'xsd:date' std::string Date; - /// Optional element 'prodml22:FlashFromPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:FlashFromPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *FlashFromPressure; - /// Optional element 'prodml22:FlashFromTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:FlashFromTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *FlashFromTemperature; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; - /// Optional element 'prodml22:FluidCondition' of XML schema type 'prodml22:FluidAnalysisStepCondition' - prodml22__FluidAnalysisStepCondition *FluidCondition; - /// Optional element 'prodml22:PhasesPresent' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesPresent; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - prodml22__LiquidComposition *LiquidComposition; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:VaporComposition' - prodml22__VaporComposition *VaporComposition; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:FluidCondition' of XML schema type 'prodml23:FluidAnalysisStepCondition' + prodml23__FluidAnalysisStepCondition *FluidCondition; + /// Optional element 'prodml23:PhasesPresent' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesPresent; + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + prodml23__LiquidComposition *LiquidComposition; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:VaporComposition' + prodml23__VaporComposition *VaporComposition; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:STOFlashedLiquid' of XML schema type 'prodml22:STOFlashedLiquid' - prodml22__STOFlashedLiquid *STOFlashedLiquid; + /// Optional element 'prodml23:STOFlashedLiquid' of XML schema type 'prodml23:STOFlashedLiquid' + prodml23__STOFlashedLiquid *STOFlashedLiquid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30458,69 +30653,69 @@ class SOAP_CMAC prodml22__STOAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__STOAnalysis, default initialized and not managed by a soap context - virtual prodml22__STOAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__STOAnalysis); } + /// Return a new object of type prodml23__STOAnalysis, default initialized and not managed by a soap context + virtual prodml23__STOAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__STOAnalysis); } public: /// Constructor with default initializations - prodml22__STOAnalysis() : Date(), FlashFromPressure(), FlashFromTemperature(), MolecularWeight(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), STOFlashedLiquid(), soap() { } + prodml23__STOAnalysis() : Date(), FlashFromPressure(), FlashFromTemperature(), MolecularWeight(), FluidCondition(), PhasesPresent(), LiquidComposition(), VaporComposition(), OverallComposition(), Remark(), STOFlashedLiquid(), soap() { } /// Destructor - virtual ~prodml22__STOAnalysis() { } - /// Friend allocator used by soap_new_prodml22__STOAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__STOAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__STOAnalysis() { } + /// Friend allocator used by soap_new_prodml23__STOAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__STOAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__STOAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2175 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid (-1014) -/* complex XML schema type 'prodml22:STOFlashedLiquid': */ -class SOAP_CMAC prodml22__STOFlashedLiquid { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid (-1014) +/* complex XML schema type 'prodml23:STOFlashedLiquid': */ +class SOAP_CMAC prodml23__STOFlashedLiquid { public: - /// Optional element 'prodml22:OilAPIGravity' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:OilAPIGravity' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *OilAPIGravity; - /// Optional element 'prodml22:WaterContent' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:WaterContent' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *WaterContent; - /// Optional element 'prodml22:WatsonKFactor' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:WatsonKFactor' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *WatsonKFactor; - /// Optional element 'prodml22:AsphalteneContent' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:AsphalteneContent' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *AsphalteneContent; - /// Optional element 'prodml22:ParaffinContent' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:ParaffinContent' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *ParaffinContent; - /// Optional element 'prodml22:CloudPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:CloudPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *CloudPoint; - /// Optional element 'prodml22:WaxAppearanceTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:WaxAppearanceTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *WaxAppearanceTemperature; - /// Optional element 'prodml22:PourPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:PourPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *PourPoint; - /// Optional element 'prodml22:ASTMFlashPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ASTMFlashPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ASTMFlashPoint; - /// Optional element 'prodml22:TotalAcidNumber' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:TotalAcidNumber' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *TotalAcidNumber; - /// Optional element 'prodml22:TotalSulfur' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:TotalSulfur' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *TotalSulfur; - /// Required element 'prodml22:Nitrogen' of XML schema type 'eml23:MassPerMassMeasure' + /// Required element 'prodml23:Nitrogen' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Nitrogen; - /// Optional element 'prodml22:ElementalSulfur' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:ElementalSulfur' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *ElementalSulfur; - /// Optional element 'prodml22:Lead' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:Lead' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Lead; - /// Optional element 'prodml22:Nickel' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:Nickel' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Nickel; - /// Optional element 'prodml22:Vanadium' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:Vanadium' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Vanadium; - /// Optional element 'prodml22:Iron' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:Iron' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Iron; - /// Optional element 'prodml22:ViscosityAtTemperature' of XML schema type 'prodml22:ViscosityAtTemperature' - std::vector ViscosityAtTemperature; - /// Optional element 'prodml22:ReidVaporPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:ViscosityAtTemperature' of XML schema type 'prodml23:ViscosityAtTemperature' + std::vector ViscosityAtTemperature; + /// Optional element 'prodml23:ReidVaporPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *ReidVaporPressure; - /// Optional element 'prodml22:Sara' of XML schema type 'prodml22:Sara' - std::vector Sara; + /// Optional element 'prodml23:Sara' of XML schema type 'prodml23:Sara' + std::vector Sara; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30533,41 +30728,41 @@ class SOAP_CMAC prodml22__STOFlashedLiquid { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__STOFlashedLiquid, default initialized and not managed by a soap context - virtual prodml22__STOFlashedLiquid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__STOFlashedLiquid); } + /// Return a new object of type prodml23__STOFlashedLiquid, default initialized and not managed by a soap context + virtual prodml23__STOFlashedLiquid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__STOFlashedLiquid); } public: /// Constructor with default initializations - prodml22__STOFlashedLiquid() : OilAPIGravity(), WaterContent(), WatsonKFactor(), AsphalteneContent(), ParaffinContent(), CloudPoint(), WaxAppearanceTemperature(), PourPoint(), ASTMFlashPoint(), TotalAcidNumber(), TotalSulfur(), Nitrogen(), ElementalSulfur(), Lead(), Nickel(), Vanadium(), Iron(), ViscosityAtTemperature(), ReidVaporPressure(), Sara(), soap() { } + prodml23__STOFlashedLiquid() : OilAPIGravity(), WaterContent(), WatsonKFactor(), AsphalteneContent(), ParaffinContent(), CloudPoint(), WaxAppearanceTemperature(), PourPoint(), ASTMFlashPoint(), TotalAcidNumber(), TotalSulfur(), Nitrogen(), ElementalSulfur(), Lead(), Nickel(), Vanadium(), Iron(), ViscosityAtTemperature(), ReidVaporPressure(), Sara(), soap() { } /// Destructor - virtual ~prodml22__STOFlashedLiquid() { } - /// Friend allocator used by soap_new_prodml22__STOFlashedLiquid(struct soap*, int) - friend SOAP_FMAC1 prodml22__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml22__STOFlashedLiquid(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__STOFlashedLiquid() { } + /// Friend allocator used by soap_new_prodml23__STOFlashedLiquid(struct soap*, int) + friend SOAP_FMAC1 prodml23__STOFlashedLiquid * SOAP_FMAC2 soap_instantiate_prodml23__STOFlashedLiquid(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2177 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest (-1015) -/* complex XML schema type 'prodml22:SwellingTest': */ -class SOAP_CMAC prodml22__SwellingTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest (-1015) +/* complex XML schema type 'prodml23:SwellingTest': */ +class SOAP_CMAC prodml23__SwellingTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Optional element 'prodml22:InjectedGas' of XML schema type 'prodml22:InjectedGas' - std::vector InjectedGas; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:InjectedGas' of XML schema type 'prodml23:InjectedGas' + std::vector InjectedGas; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:SwellingTestStep' of XML schema type 'prodml22:SwellingTestStep' - std::vector SwellingTestStep; + /// Optional element 'prodml23:SwellingTestStep' of XML schema type 'prodml23:SwellingTestStep' + std::vector SwellingTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30580,53 +30775,53 @@ class SOAP_CMAC prodml22__SwellingTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SwellingTest, default initialized and not managed by a soap context - virtual prodml22__SwellingTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SwellingTest); } + /// Return a new object of type prodml23__SwellingTest, default initialized and not managed by a soap context + virtual prodml23__SwellingTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SwellingTest); } public: /// Constructor with default initializations - prodml22__SwellingTest() : TestNumber(), TestTemperature(), InjectedGas(), Remark(), SwellingTestStep(), uid(), soap() { } + prodml23__SwellingTest() : TestNumber(), TestTemperature(), InjectedGas(), Remark(), SwellingTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__SwellingTest() { } - /// Friend allocator used by soap_new_prodml22__SwellingTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml22__SwellingTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SwellingTest() { } + /// Friend allocator used by soap_new_prodml23__SwellingTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__SwellingTest * SOAP_FMAC2 soap_instantiate_prodml23__SwellingTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2179 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep (-1016) -/* complex XML schema type 'prodml22:SwellingTestStep': */ -class SOAP_CMAC prodml22__SwellingTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep (-1016) +/* complex XML schema type 'prodml23:SwellingTestStep': */ +class SOAP_CMAC prodml23__SwellingTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Optional element 'prodml22:IncrementalGasAdded' of XML schema type 'prodml22:RefInjectedGasAdded' - std::vector IncrementalGasAdded; - /// Optional element 'prodml22:CumulativeGasAdded' of XML schema type 'prodml22:RefInjectedGasAdded' - std::vector CumulativeGasAdded; - /// Optional element 'prodml22:Gor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:IncrementalGasAdded' of XML schema type 'prodml23:RefInjectedGasAdded' + std::vector IncrementalGasAdded; + /// Optional element 'prodml23:CumulativeGasAdded' of XML schema type 'prodml23:RefInjectedGasAdded' + std::vector CumulativeGasAdded; + /// Optional element 'prodml23:Gor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Gor; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Optional element 'prodml22:SwollenVolume' of XML schema type 'prodml22:RelativeVolumeRatio' - prodml22__RelativeVolumeRatio *SwollenVolume; - /// Optional element 'prodml22:SwellingFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Optional element 'prodml23:SwollenVolume' of XML schema type 'prodml23:RelativeVolumeRatio' + prodml23__RelativeVolumeRatio *SwollenVolume; + /// Optional element 'prodml23:SwellingFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SwellingFactor; - /// Optional element 'prodml22:DensityAtSaturationPoint' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:DensityAtSaturationPoint' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *DensityAtSaturationPoint; - /// Optional element 'prodml22:ConstantCompositionExpansionTest' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ConstantCompositionExpansionTest' of XML schema type 'eml23:String64' std::string *ConstantCompositionExpansionTest; - /// Optional element 'prodml22:TransportPropertyTestReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:TransportPropertyTestReference' of XML schema type 'eml23:String64' std::string *TransportPropertyTestReference; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30639,75 +30834,75 @@ class SOAP_CMAC prodml22__SwellingTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SwellingTestStep, default initialized and not managed by a soap context - virtual prodml22__SwellingTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SwellingTestStep); } + /// Return a new object of type prodml23__SwellingTestStep, default initialized and not managed by a soap context + virtual prodml23__SwellingTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SwellingTestStep); } public: /// Constructor with default initializations - prodml22__SwellingTestStep() : StepNumber(), IncrementalGasAdded(), CumulativeGasAdded(), Gor(), SaturationPressure(), SwollenVolume(), SwellingFactor(), DensityAtSaturationPoint(), ConstantCompositionExpansionTest(), TransportPropertyTestReference(), Remark(), uid(), soap() { } + prodml23__SwellingTestStep() : StepNumber(), IncrementalGasAdded(), CumulativeGasAdded(), Gor(), SaturationPressure(), SwollenVolume(), SwellingFactor(), DensityAtSaturationPoint(), ConstantCompositionExpansionTest(), TransportPropertyTestReference(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__SwellingTestStep() { } - /// Friend allocator used by soap_new_prodml22__SwellingTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml22__SwellingTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SwellingTestStep() { } + /// Friend allocator used by soap_new_prodml23__SwellingTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__SwellingTestStep * SOAP_FMAC2 soap_instantiate_prodml23__SwellingTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2181 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest (-1017) -/* complex XML schema type 'prodml22:VaporLiquidEquilibriumTest': */ -class SOAP_CMAC prodml22__VaporLiquidEquilibriumTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest (-1017) +/* complex XML schema type 'prodml23:VaporLiquidEquilibriumTest': */ +class SOAP_CMAC prodml23__VaporLiquidEquilibriumTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Required element 'prodml22:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:TestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TestTemperature; - /// Optional element 'prodml22:TestPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:TestPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *TestPressure; - /// Optional element 'prodml22:GasSolventAdded' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:GasSolventAdded' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *GasSolventAdded; - /// Optional element 'prodml22:MixtureVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:MixtureVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *MixtureVolume; - /// Optional element 'prodml22:MixtureGasSolventMoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:MixtureGasSolventMoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MixtureGasSolventMoleFraction; - /// Optional element 'prodml22:MixtureGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:MixtureGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *MixtureGOR; - /// Optional element 'prodml22:MixturePsatTestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:MixturePsatTestTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *MixturePsatTestTemperature; - /// Optional element 'prodml22:MixtureRelativeVolumeRelativeToPsat' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:MixtureRelativeVolumeRelativeToPsat' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *MixtureRelativeVolumeRelativeToPsat; - /// Optional element 'prodml22:AtmosphericFlashTestReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:AtmosphericFlashTestReference' of XML schema type 'eml23:String64' std::string *AtmosphericFlashTestReference; - /// Optional element 'prodml22:InjectedGasAdded' of XML schema type 'prodml22:InjectedGas' - prodml22__InjectedGas *InjectedGasAdded; - /// Optional element 'prodml22:CumulativeGasAdded' of XML schema type 'prodml22:RefInjectedGasAdded' - prodml22__RefInjectedGasAdded *CumulativeGasAdded; - /// Optional element 'prodml22:VaporPhaseVolume' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:InjectedGasAdded' of XML schema type 'prodml23:InjectedGas' + prodml23__InjectedGas *InjectedGasAdded; + /// Optional element 'prodml23:CumulativeGasAdded' of XML schema type 'prodml23:RefInjectedGasAdded' + prodml23__RefInjectedGasAdded *CumulativeGasAdded; + /// Optional element 'prodml23:VaporPhaseVolume' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *VaporPhaseVolume; - /// Required element 'prodml22:VaporPhaseViscosity' of XML schema type 'prodml22:PhaseViscosity' - prodml22__PhaseViscosity *VaporPhaseViscosity; - /// Required element 'prodml22:VaporPhaseDensity' of XML schema type 'prodml22:PhaseDensity' - std::vector VaporPhaseDensity; - /// Optional element 'prodml22:LiquidPhaseVolume' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Required element 'prodml23:VaporPhaseViscosity' of XML schema type 'prodml23:PhaseViscosity' + prodml23__PhaseViscosity *VaporPhaseViscosity; + /// Required element 'prodml23:VaporPhaseDensity' of XML schema type 'prodml23:PhaseDensity' + std::vector VaporPhaseDensity; + /// Optional element 'prodml23:LiquidPhaseVolume' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *LiquidPhaseVolume; - /// Required element 'prodml22:LiquidPhaseDensity' of XML schema type 'prodml22:PhaseDensity' - prodml22__PhaseDensity *LiquidPhaseDensity; - /// Optional element 'prodml22:VaporComposition' of XML schema type 'prodml22:FluidComponentFraction' - std::vector VaporComposition; - /// Optional element 'prodml22:VaporTransportTestReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:LiquidPhaseDensity' of XML schema type 'prodml23:PhaseDensity' + prodml23__PhaseDensity *LiquidPhaseDensity; + /// Optional element 'prodml23:VaporComposition' of XML schema type 'prodml23:FluidComponentFraction' + std::vector VaporComposition; + /// Optional element 'prodml23:VaporTransportTestReference' of XML schema type 'eml23:String64' std::string *VaporTransportTestReference; - /// Optional element 'prodml22:LiquidTransportTestReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:LiquidTransportTestReference' of XML schema type 'eml23:String64' std::string *LiquidTransportTestReference; - /// Optional element 'prodml22:LiquidComposition' of XML schema type 'prodml22:LiquidComposition' - std::vector LiquidComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:LiquidComposition' of XML schema type 'prodml23:LiquidComposition' + std::vector LiquidComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30720,33 +30915,33 @@ class SOAP_CMAC prodml22__VaporLiquidEquilibriumTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__VaporLiquidEquilibriumTest, default initialized and not managed by a soap context - virtual prodml22__VaporLiquidEquilibriumTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__VaporLiquidEquilibriumTest); } + /// Return a new object of type prodml23__VaporLiquidEquilibriumTest, default initialized and not managed by a soap context + virtual prodml23__VaporLiquidEquilibriumTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__VaporLiquidEquilibriumTest); } public: /// Constructor with default initializations - prodml22__VaporLiquidEquilibriumTest() : TestNumber(), TestTemperature(), TestPressure(), GasSolventAdded(), MixtureVolume(), MixtureGasSolventMoleFraction(), MixtureGOR(), MixturePsatTestTemperature(), MixtureRelativeVolumeRelativeToPsat(), AtmosphericFlashTestReference(), InjectedGasAdded(), CumulativeGasAdded(), VaporPhaseVolume(), VaporPhaseViscosity(), VaporPhaseDensity(), LiquidPhaseVolume(), LiquidPhaseDensity(), VaporComposition(), VaporTransportTestReference(), LiquidTransportTestReference(), LiquidComposition(), Remark(), uid(), soap() { } + prodml23__VaporLiquidEquilibriumTest() : TestNumber(), TestTemperature(), TestPressure(), GasSolventAdded(), MixtureVolume(), MixtureGasSolventMoleFraction(), MixtureGOR(), MixturePsatTestTemperature(), MixtureRelativeVolumeRelativeToPsat(), AtmosphericFlashTestReference(), InjectedGasAdded(), CumulativeGasAdded(), VaporPhaseVolume(), VaporPhaseViscosity(), VaporPhaseDensity(), LiquidPhaseVolume(), LiquidPhaseDensity(), VaporComposition(), VaporTransportTestReference(), LiquidTransportTestReference(), LiquidComposition(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__VaporLiquidEquilibriumTest() { } - /// Friend allocator used by soap_new_prodml22__VaporLiquidEquilibriumTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_prodml22__VaporLiquidEquilibriumTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__VaporLiquidEquilibriumTest() { } + /// Friend allocator used by soap_new_prodml23__VaporLiquidEquilibriumTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__VaporLiquidEquilibriumTest * SOAP_FMAC2 soap_instantiate_prodml23__VaporLiquidEquilibriumTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2183 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature (-1018) -/* complex XML schema type 'prodml22:ViscosityAtTemperature': */ -class SOAP_CMAC prodml22__ViscosityAtTemperature { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature (-1018) +/* complex XML schema type 'prodml23:ViscosityAtTemperature': */ +class SOAP_CMAC prodml23__ViscosityAtTemperature { public: - /// Required element 'prodml22:Viscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Required element 'prodml23:Viscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *Viscosity; - /// Required element 'prodml22:ViscosityTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:ViscosityTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ViscosityTemperature; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30759,65 +30954,65 @@ class SOAP_CMAC prodml22__ViscosityAtTemperature { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ViscosityAtTemperature, default initialized and not managed by a soap context - virtual prodml22__ViscosityAtTemperature *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ViscosityAtTemperature); } + /// Return a new object of type prodml23__ViscosityAtTemperature, default initialized and not managed by a soap context + virtual prodml23__ViscosityAtTemperature *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ViscosityAtTemperature); } public: /// Constructor with default initializations - prodml22__ViscosityAtTemperature() : Viscosity(), ViscosityTemperature(), soap() { } + prodml23__ViscosityAtTemperature() : Viscosity(), ViscosityTemperature(), soap() { } /// Destructor - virtual ~prodml22__ViscosityAtTemperature() { } - /// Friend allocator used by soap_new_prodml22__ViscosityAtTemperature(struct soap*, int) - friend SOAP_FMAC1 prodml22__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml22__ViscosityAtTemperature(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ViscosityAtTemperature() { } + /// Friend allocator used by soap_new_prodml23__ViscosityAtTemperature(struct soap*, int) + friend SOAP_FMAC1 prodml23__ViscosityAtTemperature * SOAP_FMAC2 soap_instantiate_prodml23__ViscosityAtTemperature(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2187 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest (-1020) -/* complex XML schema type 'prodml22:WaterAnalysisTest': */ -class SOAP_CMAC prodml22__WaterAnalysisTest { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest (-1020) +/* complex XML schema type 'prodml23:WaterAnalysisTest': */ +class SOAP_CMAC prodml23__WaterAnalysisTest { public: - /// Required element 'prodml22:TestNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:TestNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 TestNumber; - /// Optional element 'prodml22:LiquidGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:LiquidGravity' of XML schema type 'xsd:double' double *LiquidGravity; - /// Optional element 'prodml22:SalinityPerMass' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:SalinityPerMass' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *SalinityPerMass; - /// Optional element 'prodml22:TotalDissolvedSolidsPerMass' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:TotalDissolvedSolidsPerMass' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *TotalDissolvedSolidsPerMass; - /// Optional element 'prodml22:TotalSuspendedSolidsPerMass' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:TotalSuspendedSolidsPerMass' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *TotalSuspendedSolidsPerMass; - /// Optional element 'prodml22:TotalHardnessPerMass' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:TotalHardnessPerMass' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *TotalHardnessPerMass; - /// Optional element 'prodml22:TotalAlkalinityPerMass' of XML schema type 'eml23:MassPerMassMeasureExt' + /// Optional element 'prodml23:TotalAlkalinityPerMass' of XML schema type 'eml23:MassPerMassMeasureExt' eml23__MassPerMassMeasureExt *TotalAlkalinityPerMass; - /// Optional element 'prodml22:TotalSedimentSolidsPerMass' of XML schema type 'eml23:MassPerMassMeasureExt' + /// Optional element 'prodml23:TotalSedimentSolidsPerMass' of XML schema type 'eml23:MassPerMassMeasureExt' eml23__MassPerMassMeasureExt *TotalSedimentSolidsPerMass; - /// Optional element 'prodml22:SalinityPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:SalinityPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *SalinityPerVolume; - /// Optional element 'prodml22:TotalDissolvedSolidsPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:TotalDissolvedSolidsPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *TotalDissolvedSolidsPerVolume; - /// Optional element 'prodml22:TotalSuspendedSolidsPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:TotalSuspendedSolidsPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *TotalSuspendedSolidsPerVolume; - /// Optional element 'prodml22:TotalHardnessPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:TotalHardnessPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *TotalHardnessPerVolume; - /// Optional element 'prodml22:TotalAlkalinityPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:TotalAlkalinityPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *TotalAlkalinityPerVolume; - /// Optional element 'prodml22:TotalSedimentSolidsPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:TotalSedimentSolidsPerVolume' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *TotalSedimentSolidsPerVolume; - /// Optional element 'prodml22:TestMethod' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:TestMethod' of XML schema type 'eml23:String2000' std::string *TestMethod; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:WaterAnalysisTestStep' of XML schema type 'prodml22:WaterAnalysisTestStep' - std::vector WaterAnalysisTestStep; + /// Optional element 'prodml23:WaterAnalysisTestStep' of XML schema type 'prodml23:WaterAnalysisTestStep' + std::vector WaterAnalysisTestStep; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30830,83 +31025,83 @@ class SOAP_CMAC prodml22__WaterAnalysisTest { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WaterAnalysisTest, default initialized and not managed by a soap context - virtual prodml22__WaterAnalysisTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WaterAnalysisTest); } + /// Return a new object of type prodml23__WaterAnalysisTest, default initialized and not managed by a soap context + virtual prodml23__WaterAnalysisTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WaterAnalysisTest); } public: /// Constructor with default initializations - prodml22__WaterAnalysisTest() : TestNumber(), LiquidGravity(), SalinityPerMass(), TotalDissolvedSolidsPerMass(), TotalSuspendedSolidsPerMass(), TotalHardnessPerMass(), TotalAlkalinityPerMass(), TotalSedimentSolidsPerMass(), SalinityPerVolume(), TotalDissolvedSolidsPerVolume(), TotalSuspendedSolidsPerVolume(), TotalHardnessPerVolume(), TotalAlkalinityPerVolume(), TotalSedimentSolidsPerVolume(), TestMethod(), Remark(), WaterAnalysisTestStep(), uid(), soap() { } + prodml23__WaterAnalysisTest() : TestNumber(), LiquidGravity(), SalinityPerMass(), TotalDissolvedSolidsPerMass(), TotalSuspendedSolidsPerMass(), TotalHardnessPerMass(), TotalAlkalinityPerMass(), TotalSedimentSolidsPerMass(), SalinityPerVolume(), TotalDissolvedSolidsPerVolume(), TotalSuspendedSolidsPerVolume(), TotalHardnessPerVolume(), TotalAlkalinityPerVolume(), TotalSedimentSolidsPerVolume(), TestMethod(), Remark(), WaterAnalysisTestStep(), uid(), soap() { } /// Destructor - virtual ~prodml22__WaterAnalysisTest() { } - /// Friend allocator used by soap_new_prodml22__WaterAnalysisTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysisTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WaterAnalysisTest() { } + /// Friend allocator used by soap_new_prodml23__WaterAnalysisTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__WaterAnalysisTest * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysisTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2189 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep (-1021) -/* complex XML schema type 'prodml22:WaterAnalysisTestStep': */ -class SOAP_CMAC prodml22__WaterAnalysisTestStep { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep (-1021) +/* complex XML schema type 'prodml23:WaterAnalysisTestStep': */ +class SOAP_CMAC prodml23__WaterAnalysisTestStep { public: - /// Required element 'prodml22:StepNumber' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:StepNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 StepNumber; - /// Required element 'prodml22:StepPressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:StepPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *StepPressure; - /// Required element 'prodml22:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:StepTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StepTemperature; - /// Optional element 'prodml22:DissolvedCO2' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:DissolvedCO2' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *DissolvedCO2; - /// Optional element 'prodml22:DissolvedH2S' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:DissolvedH2S' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *DissolvedH2S; - /// Optional element 'prodml22:DissolvedO2' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:DissolvedO2' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *DissolvedO2; - /// Optional element 'prodml22:FlashedGas' of XML schema type 'prodml22:FlashedGas' - prodml22__FlashedGas *FlashedGas; - /// Optional element 'prodml22:pH' of XML schema type 'eml23:UnitlessMeasure' + /// Optional element 'prodml23:FlashedGas' of XML schema type 'prodml23:FlashedGas' + prodml23__FlashedGas *FlashedGas; + /// Optional element 'prodml23:pH' of XML schema type 'eml23:UnitlessMeasure' eml23__UnitlessMeasure *pH; - /// Optional element 'prodml22:Resistivity' of XML schema type 'eml23:ElectricalResistivityMeasureExt' + /// Optional element 'prodml23:Resistivity' of XML schema type 'eml23:ElectricalResistivityMeasureExt' eml23__ElectricalResistivityMeasureExt *Resistivity; - /// Optional element 'prodml22:Turbidity' of XML schema type 'eml23:UnitlessMeasure' + /// Optional element 'prodml23:Turbidity' of XML schema type 'eml23:UnitlessMeasure' eml23__UnitlessMeasure *Turbidity; - /// Optional element 'prodml22:WaterViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:WaterViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *WaterViscosity; - /// Optional element 'prodml22:SolutionGasWaterRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGasWaterRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGasWaterRatio; - /// Optional element 'prodml22:WaterViscousCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' + /// Optional element 'prodml23:WaterViscousCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' eml23__ReciprocalPressureMeasure *WaterViscousCompressibility; - /// Optional element 'prodml22:WaterDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:WaterDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *WaterDensity; - /// Optional element 'prodml22:WaterSpecificHeat' of XML schema type 'eml23:EnergyPerVolumeMeasure' + /// Optional element 'prodml23:WaterSpecificHeat' of XML schema type 'eml23:EnergyPerVolumeMeasure' eml23__EnergyPerVolumeMeasure *WaterSpecificHeat; - /// Optional element 'prodml22:WaterFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:WaterFormationVolumeFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *WaterFormationVolumeFactor; - /// Optional element 'prodml22:WaterHeatCapacity' of XML schema type 'eml23:EnergyMeasure' + /// Optional element 'prodml23:WaterHeatCapacity' of XML schema type 'eml23:EnergyMeasure' eml23__EnergyMeasure *WaterHeatCapacity; - /// Optional element 'prodml22:WaterIsothermalCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' + /// Optional element 'prodml23:WaterIsothermalCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasure' eml23__ReciprocalPressureMeasure *WaterIsothermalCompressibility; - /// Optional element 'prodml22:WaterThermalConductivity' of XML schema type 'eml23:ElectricConductivityMeasure' + /// Optional element 'prodml23:WaterThermalConductivity' of XML schema type 'eml23:ElectricConductivityMeasure' eml23__ElectricConductivityMeasure *WaterThermalConductivity; - /// Optional element 'prodml22:WaterDensityChangeWithPressure' of XML schema type 'eml23:MassPerVolumePerPressureMeasureExt' + /// Optional element 'prodml23:WaterDensityChangeWithPressure' of XML schema type 'eml23:MassPerVolumePerPressureMeasureExt' eml23__MassPerVolumePerPressureMeasureExt *WaterDensityChangeWithPressure; - /// Optional element 'prodml22:WaterThermalExpansion' of XML schema type 'eml23:VolumetricThermalExpansionMeasure' + /// Optional element 'prodml23:WaterThermalExpansion' of XML schema type 'eml23:VolumetricThermalExpansionMeasure' eml23__VolumetricThermalExpansionMeasure *WaterThermalExpansion; - /// Optional element 'prodml22:WaterDensityChangeWithTemperature' of XML schema type 'eml23:MassPerVolumePerTemperatureMeasureExt' + /// Optional element 'prodml23:WaterDensityChangeWithTemperature' of XML schema type 'eml23:MassPerVolumePerTemperatureMeasureExt' eml23__MassPerVolumePerTemperatureMeasureExt *WaterDensityChangeWithTemperature; - /// Optional element 'prodml22:WaterEnthalpy' of XML schema type 'eml23:MolarEnergyMeasure' + /// Optional element 'prodml23:WaterEnthalpy' of XML schema type 'eml23:MolarEnergyMeasure' eml23__MolarEnergyMeasure *WaterEnthalpy; - /// Optional element 'prodml22:WaterEntropy' of XML schema type 'eml23:EnergyLengthPerTimeAreaTemperatureMeasure' + /// Optional element 'prodml23:WaterEntropy' of XML schema type 'eml23:EnergyLengthPerTimeAreaTemperatureMeasure' eml23__EnergyLengthPerTimeAreaTemperatureMeasure *WaterEntropy; - /// Optional element 'prodml22:WaterSpecificVolume' of XML schema type 'eml23:VolumePerMassMeasure' + /// Optional element 'prodml23:WaterSpecificVolume' of XML schema type 'eml23:VolumePerMassMeasure' eml23__VolumePerMassMeasure *WaterSpecificVolume; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30919,51 +31114,51 @@ class SOAP_CMAC prodml22__WaterAnalysisTestStep { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WaterAnalysisTestStep, default initialized and not managed by a soap context - virtual prodml22__WaterAnalysisTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WaterAnalysisTestStep); } + /// Return a new object of type prodml23__WaterAnalysisTestStep, default initialized and not managed by a soap context + virtual prodml23__WaterAnalysisTestStep *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WaterAnalysisTestStep); } public: /// Constructor with default initializations - prodml22__WaterAnalysisTestStep() : StepNumber(), StepPressure(), StepTemperature(), DissolvedCO2(), DissolvedH2S(), DissolvedO2(), FlashedGas(), pH(), Resistivity(), Turbidity(), WaterViscosity(), SolutionGasWaterRatio(), WaterViscousCompressibility(), WaterDensity(), WaterSpecificHeat(), WaterFormationVolumeFactor(), WaterHeatCapacity(), WaterIsothermalCompressibility(), WaterThermalConductivity(), WaterDensityChangeWithPressure(), WaterThermalExpansion(), WaterDensityChangeWithTemperature(), WaterEnthalpy(), WaterEntropy(), WaterSpecificVolume(), Remark(), uid(), soap() { } + prodml23__WaterAnalysisTestStep() : StepNumber(), StepPressure(), StepTemperature(), DissolvedCO2(), DissolvedH2S(), DissolvedO2(), FlashedGas(), pH(), Resistivity(), Turbidity(), WaterViscosity(), SolutionGasWaterRatio(), WaterViscousCompressibility(), WaterDensity(), WaterSpecificHeat(), WaterFormationVolumeFactor(), WaterHeatCapacity(), WaterIsothermalCompressibility(), WaterThermalConductivity(), WaterDensityChangeWithPressure(), WaterThermalExpansion(), WaterDensityChangeWithTemperature(), WaterEnthalpy(), WaterEntropy(), WaterSpecificVolume(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__WaterAnalysisTestStep() { } - /// Friend allocator used by soap_new_prodml22__WaterAnalysisTestStep(struct soap*, int) - friend SOAP_FMAC1 prodml22__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysisTestStep(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WaterAnalysisTestStep() { } + /// Friend allocator used by soap_new_prodml23__WaterAnalysisTestStep(struct soap*, int) + friend SOAP_FMAC1 prodml23__WaterAnalysisTestStep * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysisTestStep(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2191 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent (-1022) -/* complex XML schema type 'prodml22:WaterSampleComponent': */ -class SOAP_CMAC prodml22__WaterSampleComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent (-1022) +/* complex XML schema type 'prodml23:WaterSampleComponent': */ +class SOAP_CMAC prodml23__WaterSampleComponent { public: - /// Optional element 'prodml22:TestMethod' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:TestMethod' of XML schema type 'eml23:String2000' std::string *TestMethod; - /// Optional element 'prodml22:Anion' of XML schema type 'prodml22:AnionKindExt' + /// Optional element 'prodml23:Anion' of XML schema type 'prodml23:AnionKindExt' std::string *Anion; - /// Optional element 'prodml22:Cation' of XML schema type 'prodml22:CationKindExt' + /// Optional element 'prodml23:Cation' of XML schema type 'prodml23:CationKindExt' std::string *Cation; - /// Optional element 'prodml22:OrganicAcid' of XML schema type 'prodml22:OrganicAcidKindExt' + /// Optional element 'prodml23:OrganicAcid' of XML schema type 'prodml23:OrganicAcidKindExt' std::string *OrganicAcid; - /// Optional element 'prodml22:MolarConcentration' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt' + /// Optional element 'prodml23:MolarConcentration' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasureExt' eml23__AmountOfSubstancePerAmountOfSubstanceMeasureExt *MolarConcentration; - /// Optional element 'prodml22:VolumeConcentration' of XML schema type 'eml23:MassPerVolumeMeasureExt' + /// Optional element 'prodml23:VolumeConcentration' of XML schema type 'eml23:MassPerVolumeMeasureExt' eml23__MassPerVolumeMeasureExt *VolumeConcentration; - /// Optional element 'prodml22:MassConcentration' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:MassConcentration' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *MassConcentration; - /// Optional element 'prodml22:EquivalentConcentration' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:EquivalentConcentration' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *EquivalentConcentration; - /// Optional element 'prodml22:ConcentrationRelativeToDetectableLimits' of XML schema type 'prodml22:DetectableLimitRelativeStateKind' - prodml22__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:ConcentrationRelativeToDetectableLimits' of XML schema type 'prodml23:DetectableLimitRelativeStateKind' + prodml23__DetectableLimitRelativeStateKind *ConcentrationRelativeToDetectableLimits; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -30976,39 +31171,39 @@ class SOAP_CMAC prodml22__WaterSampleComponent { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WaterSampleComponent, default initialized and not managed by a soap context - virtual prodml22__WaterSampleComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WaterSampleComponent); } + /// Return a new object of type prodml23__WaterSampleComponent, default initialized and not managed by a soap context + virtual prodml23__WaterSampleComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WaterSampleComponent); } public: /// Constructor with default initializations - prodml22__WaterSampleComponent() : TestMethod(), Anion(), Cation(), OrganicAcid(), MolarConcentration(), VolumeConcentration(), MassConcentration(), EquivalentConcentration(), ConcentrationRelativeToDetectableLimits(), Remark(), uid(), soap() { } + prodml23__WaterSampleComponent() : TestMethod(), Anion(), Cation(), OrganicAcid(), MolarConcentration(), VolumeConcentration(), MassConcentration(), EquivalentConcentration(), ConcentrationRelativeToDetectableLimits(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__WaterSampleComponent() { } - /// Friend allocator used by soap_new_prodml22__WaterSampleComponent(struct soap*, int) - friend SOAP_FMAC1 prodml22__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml22__WaterSampleComponent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WaterSampleComponent() { } + /// Friend allocator used by soap_new_prodml23__WaterSampleComponent(struct soap*, int) + friend SOAP_FMAC1 prodml23__WaterSampleComponent * SOAP_FMAC2 soap_instantiate_prodml23__WaterSampleComponent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2195 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData (-1024) -/* complex XML schema type 'prodml22:AbstractFlowTestData': */ -class SOAP_CMAC prodml22__AbstractFlowTestData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData (-1024) +/* complex XML schema type 'prodml23:AbstractFlowTestData': */ +class SOAP_CMAC prodml23__AbstractFlowTestData { public: - /// Required element 'prodml22:ChannelSet' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:ChannelSet' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ChannelSet; - /// Required element 'prodml22:TimeChannel' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:TimeChannel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *TimeChannel; - /// Optional element 'prodml22:TimeSeriesPointRepresentation' of XML schema type 'prodml22:TimeSeriesPointRepresentation' - prodml22__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:TimeSeriesPointRepresentation' of XML schema type 'prodml23:TimeSeriesPointRepresentation' + prodml23__TimeSeriesPointRepresentation *TimeSeriesPointRepresentation; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Optional attribute 'uid' of XML schema type 'eml23:String64' std::string *uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31021,49 +31216,49 @@ class SOAP_CMAC prodml22__AbstractFlowTestData { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractFlowTestData, default initialized and not managed by a soap context - virtual prodml22__AbstractFlowTestData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractFlowTestData); } + /// Return a new object of type prodml23__AbstractFlowTestData, default initialized and not managed by a soap context + virtual prodml23__AbstractFlowTestData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractFlowTestData); } public: /// Constructor with default initializations - prodml22__AbstractFlowTestData() : ChannelSet(), TimeChannel(), TimeSeriesPointRepresentation(), Remark(), uid(), soap() { } + prodml23__AbstractFlowTestData() : ChannelSet(), TimeChannel(), TimeSeriesPointRepresentation(), Remark(), uid(), soap() { } /// Destructor - virtual ~prodml22__AbstractFlowTestData() { } - /// Friend allocator used by soap_new_prodml22__AbstractFlowTestData(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractFlowTestData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractFlowTestData() { } + /// Friend allocator used by soap_new_prodml23__AbstractFlowTestData(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractFlowTestData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractFlowTestData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2207 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation (-1030) -/* complex XML schema type 'prodml22:FlowTestLocation': */ -class SOAP_CMAC prodml22__FlowTestLocation { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation (-1030) +/* complex XML schema type 'prodml23:FlowTestLocation': */ +class SOAP_CMAC prodml23__FlowTestLocation { public: - /// Optional element 'prodml22:Wellbore' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Wellbore' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Wellbore; - /// Optional element 'prodml22:MdInterval' of XML schema type 'eml23:MdInterval' + /// Optional element 'prodml23:MdInterval' of XML schema type 'eml23:MdInterval' eml23__MdInterval *MdInterval; - /// Optional element 'prodml22:WellboreCompletion' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:WellboreCompletion' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *WellboreCompletion; - /// Optional element 'prodml22:Well' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Well' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Well; - /// Optional element 'prodml22:WellCompletion' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:WellCompletion' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *WellCompletion; - /// Optional element 'prodml22:ReportingEntity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:ReportingEntity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ReportingEntity; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:ProbeDepth' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:ProbeDepth' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *ProbeDepth; - /// Optional element 'prodml22:ProbeDiameter' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:ProbeDiameter' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *ProbeDiameter; - /// Optional element 'prodml22:Datum' of XML schema type 'eml23:ReferencePointKind' + /// Optional element 'prodml23:Datum' of XML schema type 'eml23:ReferencePointKind' eml23__ReferencePointKind *Datum; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31076,45 +31271,45 @@ class SOAP_CMAC prodml22__FlowTestLocation { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FlowTestLocation, default initialized and not managed by a soap context - virtual prodml22__FlowTestLocation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FlowTestLocation); } + /// Return a new object of type prodml23__FlowTestLocation, default initialized and not managed by a soap context + virtual prodml23__FlowTestLocation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FlowTestLocation); } public: /// Constructor with default initializations - prodml22__FlowTestLocation() : Wellbore(), MdInterval(), WellboreCompletion(), Well(), WellCompletion(), ReportingEntity(), Remark(), ProbeDepth(), ProbeDiameter(), Datum(), soap() { } + prodml23__FlowTestLocation() : Wellbore(), MdInterval(), WellboreCompletion(), Well(), WellCompletion(), ReportingEntity(), Remark(), ProbeDepth(), ProbeDiameter(), Datum(), soap() { } /// Destructor - virtual ~prodml22__FlowTestLocation() { } - /// Friend allocator used by soap_new_prodml22__FlowTestLocation(struct soap*, int) - friend SOAP_FMAC1 prodml22__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestLocation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FlowTestLocation() { } + /// Friend allocator used by soap_new_prodml23__FlowTestLocation(struct soap*, int) + friend SOAP_FMAC1 prodml23__FlowTestLocation * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestLocation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2209 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet (-1031) -/* complex XML schema type 'prodml22:FlowTestMeasurementSet': */ -class SOAP_CMAC prodml22__FlowTestMeasurementSet { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet (-1031) +/* complex XML schema type 'prodml23:FlowTestMeasurementSet': */ +class SOAP_CMAC prodml23__FlowTestMeasurementSet { public: - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:TestPeriod' of XML schema type 'prodml22:TestPeriod' - prodml22__TestPeriod *TestPeriod; - /// Required element 'prodml22:Location' of XML schema type 'prodml22:FlowTestLocation' - prodml22__FlowTestLocation *Location; - /// Optional element 'prodml22:OtherData' of XML schema type 'prodml22:OtherData' - std::vector OtherData; - /// Optional element 'prodml22:MeasuredFlowRate' of XML schema type 'prodml22:AbstractPtaFlowData' - std::vector MeasuredFlowRate; - /// Optional element 'prodml22:MeasuredPressure' of XML schema type 'prodml22:MeasuredPressureData' - std::vector MeasuredPressure; - /// Optional element 'prodml22:FluidComponentCatalog' of XML schema type 'prodml22:FluidComponentCatalog' - prodml22__FluidComponentCatalog *FluidComponentCatalog; + /// Optional element 'prodml23:TestPeriod' of XML schema type 'prodml23:TestPeriod' + prodml23__TestPeriod *TestPeriod; + /// Required element 'prodml23:Location' of XML schema type 'prodml23:FlowTestLocation' + prodml23__FlowTestLocation *Location; + /// Optional element 'prodml23:OtherData' of XML schema type 'prodml23:OtherData' + std::vector OtherData; + /// Optional element 'prodml23:MeasuredFlowRate' of XML schema type 'prodml23:AbstractPtaFlowData' + std::vector MeasuredFlowRate; + /// Optional element 'prodml23:MeasuredPressure' of XML schema type 'prodml23:MeasuredPressureData' + std::vector MeasuredPressure; + /// Optional element 'prodml23:FluidComponentCatalog' of XML schema type 'prodml23:FluidComponentCatalog' + prodml23__FluidComponentCatalog *FluidComponentCatalog; /// Optional attribute 'uid' of XML schema type 'eml23:String64' std::string *uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31127,39 +31322,39 @@ class SOAP_CMAC prodml22__FlowTestMeasurementSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FlowTestMeasurementSet, default initialized and not managed by a soap context - virtual prodml22__FlowTestMeasurementSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FlowTestMeasurementSet); } + /// Return a new object of type prodml23__FlowTestMeasurementSet, default initialized and not managed by a soap context + virtual prodml23__FlowTestMeasurementSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FlowTestMeasurementSet); } public: /// Constructor with default initializations - prodml22__FlowTestMeasurementSet() : Remark(), TestPeriod(), Location(), OtherData(), MeasuredFlowRate(), MeasuredPressure(), FluidComponentCatalog(), uid(), soap() { } + prodml23__FlowTestMeasurementSet() : Remark(), TestPeriod(), Location(), OtherData(), MeasuredFlowRate(), MeasuredPressure(), FluidComponentCatalog(), uid(), soap() { } /// Destructor - virtual ~prodml22__FlowTestMeasurementSet() { } - /// Friend allocator used by soap_new_prodml22__FlowTestMeasurementSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestMeasurementSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FlowTestMeasurementSet() { } + /// Friend allocator used by soap_new_prodml23__FlowTestMeasurementSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__FlowTestMeasurementSet * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestMeasurementSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2223 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate (-1038) -/* complex XML schema type 'prodml22:ProductRate': */ -class SOAP_CMAC prodml22__ProductRate { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate (-1038) +/* complex XML schema type 'prodml23:ProductRate': */ +class SOAP_CMAC prodml23__ProductRate { public: - /// Required element 'prodml22:ProductFluidKind' of XML schema type 'prodml22:ProductFluidKindExt' + /// Required element 'prodml23:ProductFluidKind' of XML schema type 'prodml23:ProductFluidKindExt' std::string ProductFluidKind; - /// Optional element 'prodml22:MassFlowRate' of XML schema type 'eml23:MassPerTimeMeasure' + /// Optional element 'prodml23:MassFlowRate' of XML schema type 'eml23:MassPerTimeMeasure' eml23__MassPerTimeMeasure *MassFlowRate; - /// Optional element 'prodml22:VolumeFlowRate' of XML schema type 'eml23:FlowRateValue' + /// Optional element 'prodml23:VolumeFlowRate' of XML schema type 'eml23:FlowRateValue' eml23__FlowRateValue *VolumeFlowRate; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Optional attribute 'ProductFluidReference' of XML schema type 'eml23:String64' std::string *ProductFluidReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31172,43 +31367,43 @@ class SOAP_CMAC prodml22__ProductRate { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductRate, default initialized and not managed by a soap context - virtual prodml22__ProductRate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductRate); } + /// Return a new object of type prodml23__ProductRate, default initialized and not managed by a soap context + virtual prodml23__ProductRate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductRate); } public: /// Constructor with default initializations - prodml22__ProductRate() : ProductFluidKind(), MassFlowRate(), VolumeFlowRate(), Remark(), ProductFluidReference(), soap() { } + prodml23__ProductRate() : ProductFluidKind(), MassFlowRate(), VolumeFlowRate(), Remark(), ProductFluidReference(), soap() { } /// Destructor - virtual ~prodml22__ProductRate() { } - /// Friend allocator used by soap_new_prodml22__ProductRate(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductRate * SOAP_FMAC2 soap_instantiate_prodml22__ProductRate(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductRate() { } + /// Friend allocator used by soap_new_prodml23__ProductRate(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductRate * SOAP_FMAC2 soap_instantiate_prodml23__ProductRate(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2225 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod (-1039) -/* complex XML schema type 'prodml22:TestPeriod': */ -class SOAP_CMAC prodml22__TestPeriod { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod (-1039) +/* complex XML schema type 'prodml23:TestPeriod': */ +class SOAP_CMAC prodml23__TestPeriod { public: /// Typedef eml23__TimeStamp with custom serializer for struct tm struct tm StartTime; /// Typedef eml23__TimeStamp with custom serializer for struct tm struct tm EndTime; - /// Optional element 'prodml22:TestPeriodKind' of XML schema type 'prodml22:TestPeriodKind' - prodml22__TestPeriodKind *TestPeriodKind; - /// Optional element 'prodml22:WellFlowingCondition' of XML schema type 'prodml22:WellFlowingCondition' - prodml22__WellFlowingCondition *WellFlowingCondition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:TestPeriodKind' of XML schema type 'prodml23:TestPeriodKind' + prodml23__TestPeriodKind *TestPeriodKind; + /// Optional element 'prodml23:WellFlowingCondition' of XML schema type 'prodml23:WellFlowingCondition' + prodml23__WellFlowingCondition *WellFlowingCondition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:ProductRate' of XML schema type 'prodml22:ProductRate' - std::vector ProductRate; + /// Optional element 'prodml23:ProductRate' of XML schema type 'prodml23:ProductRate' + std::vector ProductRate; /// Optional attribute 'uid' of XML schema type 'eml23:String64' std::string *uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31221,49 +31416,49 @@ class SOAP_CMAC prodml22__TestPeriod { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TestPeriod, default initialized and not managed by a soap context - virtual prodml22__TestPeriod *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TestPeriod); } + /// Return a new object of type prodml23__TestPeriod, default initialized and not managed by a soap context + virtual prodml23__TestPeriod *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TestPeriod); } public: /// Constructor with default initializations - prodml22__TestPeriod() : StartTime(), EndTime(), TestPeriodKind(), WellFlowingCondition(), Remark(), ProductRate(), uid(), soap() { } + prodml23__TestPeriod() : StartTime(), EndTime(), TestPeriodKind(), WellFlowingCondition(), Remark(), ProductRate(), uid(), soap() { } /// Destructor - virtual ~prodml22__TestPeriod() { } - /// Friend allocator used by soap_new_prodml22__TestPeriod(struct soap*, int) - friend SOAP_FMAC1 prodml22__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml22__TestPeriod(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TestPeriod() { } + /// Friend allocator used by soap_new_prodml23__TestPeriod(struct soap*, int) + friend SOAP_FMAC1 prodml23__TestPeriod * SOAP_FMAC2 soap_instantiate_prodml23__TestPeriod(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2231 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition (-1042) -/* complex XML schema type 'prodml22:WellFlowingCondition': */ -class SOAP_CMAC prodml22__WellFlowingCondition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition (-1042) +/* complex XML schema type 'prodml23:WellFlowingCondition': */ +class SOAP_CMAC prodml23__WellFlowingCondition { public: - /// Optional element 'prodml22:ChokeOrificeSize' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:ChokeOrificeSize' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *ChokeOrificeSize; - /// Optional element 'prodml22:BottomHolePressureDatumMd' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:BottomHolePressureDatumMd' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *BottomHolePressureDatumMd; - /// Optional element 'prodml22:BottomHoleStabilizedPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:BottomHoleStabilizedPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *BottomHoleStabilizedPressure; - /// Optional element 'prodml22:BottomHoleStabilizedTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:BottomHoleStabilizedTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *BottomHoleStabilizedTemperature; - /// Optional element 'prodml22:CasingHeadStabilizedPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:CasingHeadStabilizedPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *CasingHeadStabilizedPressure; - /// Optional element 'prodml22:CasingHeadStabilizedTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:CasingHeadStabilizedTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *CasingHeadStabilizedTemperature; - /// Optional element 'prodml22:TubingHeadStabilizedPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:TubingHeadStabilizedPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *TubingHeadStabilizedPressure; - /// Optional element 'prodml22:TubingHeadStabilizedTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:TubingHeadStabilizedTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TubingHeadStabilizedTemperature; - /// Optional element 'prodml22:FluidLevel' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:FluidLevel' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *FluidLevel; - /// Optional element 'prodml22:BaseUsableWater' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:BaseUsableWater' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *BaseUsableWater; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31276,28 +31471,28 @@ class SOAP_CMAC prodml22__WellFlowingCondition { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellFlowingCondition, default initialized and not managed by a soap context - virtual prodml22__WellFlowingCondition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellFlowingCondition); } + /// Return a new object of type prodml23__WellFlowingCondition, default initialized and not managed by a soap context + virtual prodml23__WellFlowingCondition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellFlowingCondition); } public: /// Constructor with default initializations - prodml22__WellFlowingCondition() : ChokeOrificeSize(), BottomHolePressureDatumMd(), BottomHoleStabilizedPressure(), BottomHoleStabilizedTemperature(), CasingHeadStabilizedPressure(), CasingHeadStabilizedTemperature(), TubingHeadStabilizedPressure(), TubingHeadStabilizedTemperature(), FluidLevel(), BaseUsableWater(), soap() { } + prodml23__WellFlowingCondition() : ChokeOrificeSize(), BottomHolePressureDatumMd(), BottomHoleStabilizedPressure(), BottomHoleStabilizedTemperature(), CasingHeadStabilizedPressure(), CasingHeadStabilizedTemperature(), TubingHeadStabilizedPressure(), TubingHeadStabilizedTemperature(), FluidLevel(), BaseUsableWater(), soap() { } /// Destructor - virtual ~prodml22__WellFlowingCondition() { } - /// Friend allocator used by soap_new_prodml22__WellFlowingCondition(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml22__WellFlowingCondition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellFlowingCondition() { } + /// Friend allocator used by soap_new_prodml23__WellFlowingCondition(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellFlowingCondition * SOAP_FMAC2 soap_instantiate_prodml23__WellFlowingCondition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2239 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode (-1046) -/* Type prodml22__ReportingHierarchyNode is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ -/* complex XML schema type 'prodml22:ReportingHierarchyNode': */ -class SOAP_CMAC prodml22__ReportingHierarchyNode { - public: - /// Optional element 'prodml22:ChildNode' of XML schema type 'prodml22:ReportingHierarchyNode' - std::vector ChildNode; - /// Optional element 'prodml22:ReportingEntity' of XML schema type 'eml23:DataObjectReference' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode (-1046) +/* Type prodml23__ReportingHierarchyNode is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ReportingHierarchyNode': */ +class SOAP_CMAC prodml23__ReportingHierarchyNode { + public: + /// Optional element 'prodml23:ChildNode' of XML schema type 'prodml23:ReportingHierarchyNode' + std::vector ChildNode; + /// Optional element 'prodml23:ReportingEntity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ReportingEntity; /// Required attribute 'id' of XML schema type 'eml23:String64' std::string id; @@ -31306,8 +31501,8 @@ class SOAP_CMAC prodml22__ReportingHierarchyNode { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31320,29 +31515,29 @@ class SOAP_CMAC prodml22__ReportingHierarchyNode { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReportingHierarchyNode, default initialized and not managed by a soap context - virtual prodml22__ReportingHierarchyNode *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReportingHierarchyNode); } + /// Return a new object of type prodml23__ReportingHierarchyNode, default initialized and not managed by a soap context + virtual prodml23__ReportingHierarchyNode *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReportingHierarchyNode); } public: /// Constructor with default initializations - prodml22__ReportingHierarchyNode() : ChildNode(), ReportingEntity(), id(), name(), soap() { } + prodml23__ReportingHierarchyNode() : ChildNode(), ReportingEntity(), id(), name(), soap() { } /// Destructor - virtual ~prodml22__ReportingHierarchyNode() { } - /// Friend allocator used by soap_new_prodml22__ReportingHierarchyNode(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml22__ReportingHierarchyNode(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReportingHierarchyNode() { } + /// Friend allocator used by soap_new_prodml23__ReportingHierarchyNode(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReportingHierarchyNode * SOAP_FMAC2 soap_instantiate_prodml23__ReportingHierarchyNode(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2241 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis (-1047) -/* complex XML schema type 'prodml22:AbstractAnalysis': */ -class SOAP_CMAC prodml22__AbstractAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis (-1047) +/* complex XML schema type 'prodml23:AbstractAnalysis': */ +class SOAP_CMAC prodml23__AbstractAnalysis { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31355,29 +31550,29 @@ class SOAP_CMAC prodml22__AbstractAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractAnalysis, default initialized and not managed by a soap context - virtual prodml22__AbstractAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractAnalysis); } + /// Return a new object of type prodml23__AbstractAnalysis, default initialized and not managed by a soap context + virtual prodml23__AbstractAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractAnalysis); } public: /// Constructor with default initializations - prodml22__AbstractAnalysis() : soap() { } + prodml23__AbstractAnalysis() : soap() { } /// Destructor - virtual ~prodml22__AbstractAnalysis() { } - /// Friend allocator used by soap_new_prodml22__AbstractAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__AbstractAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractAnalysis() { } + /// Friend allocator used by soap_new_prodml23__AbstractAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__AbstractAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2243 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput (-1048) -/* complex XML schema type 'prodml22:AbstractDeconvolutionOutput': */ -class SOAP_CMAC prodml22__AbstractDeconvolutionOutput { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput (-1048) +/* complex XML schema type 'prodml23:AbstractDeconvolutionOutput': */ +class SOAP_CMAC prodml23__AbstractDeconvolutionOutput { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31390,29 +31585,29 @@ class SOAP_CMAC prodml22__AbstractDeconvolutionOutput { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractDeconvolutionOutput, default initialized and not managed by a soap context - virtual prodml22__AbstractDeconvolutionOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractDeconvolutionOutput); } + /// Return a new object of type prodml23__AbstractDeconvolutionOutput, default initialized and not managed by a soap context + virtual prodml23__AbstractDeconvolutionOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractDeconvolutionOutput); } public: /// Constructor with default initializations - prodml22__AbstractDeconvolutionOutput() : soap() { } + prodml23__AbstractDeconvolutionOutput() : soap() { } /// Destructor - virtual ~prodml22__AbstractDeconvolutionOutput() { } - /// Friend allocator used by soap_new_prodml22__AbstractDeconvolutionOutput(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22__AbstractDeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractDeconvolutionOutput() { } + /// Friend allocator used by soap_new_prodml23__AbstractDeconvolutionOutput(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractDeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml23__AbstractDeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2247 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory (-1050) -/* complex XML schema type 'prodml22:AbstractRateHistory': */ -class SOAP_CMAC prodml22__AbstractRateHistory { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory (-1050) +/* complex XML schema type 'prodml23:AbstractRateHistory': */ +class SOAP_CMAC prodml23__AbstractRateHistory { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31425,37 +31620,37 @@ class SOAP_CMAC prodml22__AbstractRateHistory { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractRateHistory, default initialized and not managed by a soap context - virtual prodml22__AbstractRateHistory *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractRateHistory); } + /// Return a new object of type prodml23__AbstractRateHistory, default initialized and not managed by a soap context + virtual prodml23__AbstractRateHistory *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractRateHistory); } public: /// Constructor with default initializations - prodml22__AbstractRateHistory() : soap() { } + prodml23__AbstractRateHistory() : soap() { } /// Destructor - virtual ~prodml22__AbstractRateHistory() { } - /// Friend allocator used by soap_new_prodml22__AbstractRateHistory(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRateHistory(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractRateHistory() { } + /// Friend allocator used by soap_new_prodml23__AbstractRateHistory(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractRateHistory * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRateHistory(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2249 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine (-1051) -/* complex XML schema type 'prodml22:AnalysisLine': */ -class SOAP_CMAC prodml22__AnalysisLine { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine (-1051) +/* complex XML schema type 'prodml23:AnalysisLine': */ +class SOAP_CMAC prodml23__AnalysisLine { public: - /// Required element 'prodml22:LineName' of XML schema type 'eml23:String64' + /// Required element 'prodml23:LineName' of XML schema type 'eml23:String64' std::string LineName; - /// Required element 'prodml22:Slope' of XML schema type 'xsd:double' + /// Required element 'prodml23:Slope' of XML schema type 'xsd:double' double Slope; - /// Required element 'prodml22:Intercept' of XML schema type 'xsd:double' + /// Required element 'prodml23:Intercept' of XML schema type 'xsd:double' double Intercept; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31468,39 +31663,39 @@ class SOAP_CMAC prodml22__AnalysisLine { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AnalysisLine, default initialized and not managed by a soap context - virtual prodml22__AnalysisLine *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AnalysisLine); } + /// Return a new object of type prodml23__AnalysisLine, default initialized and not managed by a soap context + virtual prodml23__AnalysisLine *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AnalysisLine); } public: /// Constructor with default initializations - prodml22__AnalysisLine() : LineName(), Slope(), Intercept(), Remark(), soap() { } + prodml23__AnalysisLine() : LineName(), Slope(), Intercept(), Remark(), soap() { } /// Destructor - virtual ~prodml22__AnalysisLine() { } - /// Friend allocator used by soap_new_prodml22__AnalysisLine(struct soap*, int) - friend SOAP_FMAC1 prodml22__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml22__AnalysisLine(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AnalysisLine() { } + /// Friend allocator used by soap_new_prodml23__AnalysisLine(struct soap*, int) + friend SOAP_FMAC1 prodml23__AnalysisLine * SOAP_FMAC2 soap_instantiate_prodml23__AnalysisLine(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2253 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters (-1053) -/* complex XML schema type 'prodml22:CompressibilityParameters': */ -class SOAP_CMAC prodml22__CompressibilityParameters { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters (-1053) +/* complex XML schema type 'prodml23:CompressibilityParameters': */ +class SOAP_CMAC prodml23__CompressibilityParameters { public: - /// Optional element 'prodml22:FormationCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasureExt' + /// Optional element 'prodml23:FormationCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasureExt' eml23__ReciprocalPressureMeasureExt *FormationCompressibility; - /// Optional element 'prodml22:OilPhaseSaturation' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:OilPhaseSaturation' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilPhaseSaturation; - /// Optional element 'prodml22:GasPhaseSaturation' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:GasPhaseSaturation' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *GasPhaseSaturation; - /// Optional element 'prodml22:WaterPhaseSaturation' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:WaterPhaseSaturation' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *WaterPhaseSaturation; - /// Optional element 'prodml22:TotalCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasureExt' + /// Optional element 'prodml23:TotalCompressibility' of XML schema type 'eml23:ReciprocalPressureMeasureExt' eml23__ReciprocalPressureMeasureExt *TotalCompressibility; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31513,33 +31708,33 @@ class SOAP_CMAC prodml22__CompressibilityParameters { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CompressibilityParameters, default initialized and not managed by a soap context - virtual prodml22__CompressibilityParameters *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CompressibilityParameters); } + /// Return a new object of type prodml23__CompressibilityParameters, default initialized and not managed by a soap context + virtual prodml23__CompressibilityParameters *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CompressibilityParameters); } public: /// Constructor with default initializations - prodml22__CompressibilityParameters() : FormationCompressibility(), OilPhaseSaturation(), GasPhaseSaturation(), WaterPhaseSaturation(), TotalCompressibility(), soap() { } + prodml23__CompressibilityParameters() : FormationCompressibility(), OilPhaseSaturation(), GasPhaseSaturation(), WaterPhaseSaturation(), TotalCompressibility(), soap() { } /// Destructor - virtual ~prodml22__CompressibilityParameters() { } - /// Friend allocator used by soap_new_prodml22__CompressibilityParameters(struct soap*, int) - friend SOAP_FMAC1 prodml22__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_prodml22__CompressibilityParameters(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CompressibilityParameters() { } + /// Friend allocator used by soap_new_prodml23__CompressibilityParameters(struct soap*, int) + friend SOAP_FMAC1 prodml23__CompressibilityParameters * SOAP_FMAC2 soap_instantiate_prodml23__CompressibilityParameters(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2257 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput (-1055) -/* complex XML schema type 'prodml22:DeconvolutionOutput': */ -class SOAP_CMAC prodml22__DeconvolutionOutput { - public: - /// Optional element 'prodml22:DeconvolvedPressure' of XML schema type 'prodml22:DeconvolvedPressureData' - prodml22__DeconvolvedPressureData *DeconvolvedPressure; - /// Required element 'prodml22:DeconvolutionReferenceFlowrateValue' of XML schema type 'eml23:VolumePerTimeMeasure' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput (-1055) +/* complex XML schema type 'prodml23:DeconvolutionOutput': */ +class SOAP_CMAC prodml23__DeconvolutionOutput { + public: + /// Optional element 'prodml23:DeconvolvedPressure' of XML schema type 'prodml23:DeconvolvedPressureData' + prodml23__DeconvolvedPressureData *DeconvolvedPressure; + /// Required element 'prodml23:DeconvolutionReferenceFlowrateValue' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *DeconvolutionReferenceFlowrateValue; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31552,53 +31747,53 @@ class SOAP_CMAC prodml22__DeconvolutionOutput { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeconvolutionOutput, default initialized and not managed by a soap context - virtual prodml22__DeconvolutionOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeconvolutionOutput); } + /// Return a new object of type prodml23__DeconvolutionOutput, default initialized and not managed by a soap context + virtual prodml23__DeconvolutionOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeconvolutionOutput); } public: /// Constructor with default initializations - prodml22__DeconvolutionOutput() : DeconvolvedPressure(), DeconvolutionReferenceFlowrateValue(), soap() { } + prodml23__DeconvolutionOutput() : DeconvolvedPressure(), DeconvolutionReferenceFlowrateValue(), soap() { } /// Destructor - virtual ~prodml22__DeconvolutionOutput() { } - /// Friend allocator used by soap_new_prodml22__DeconvolutionOutput(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeconvolutionOutput() { } + /// Friend allocator used by soap_new_prodml23__DeconvolutionOutput(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeconvolutionOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionOutput(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2265 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel (-1059) -/* complex XML schema type 'prodml22:DistributedParametersSubModel': */ -class SOAP_CMAC prodml22__DistributedParametersSubModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel (-1059) +/* complex XML schema type 'prodml23:DistributedParametersSubModel': */ +class SOAP_CMAC prodml23__DistributedParametersSubModel { public: - /// Required element 'prodml22:IsPermeabilityGridded' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:IsPermeabilityGridded' of XML schema type 'xsd:boolean' bool IsPermeabilityGridded; - /// Optional element 'prodml22:PermeabilityArrayRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *PermeabilityArrayRefID; - /// Required element 'prodml22:IsThicknessGridded' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:PermeabilityArrayRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *PermeabilityArrayRefID; + /// Required element 'prodml23:IsThicknessGridded' of XML schema type 'xsd:boolean' bool IsThicknessGridded; - /// Optional element 'prodml22:ThicknessArrayRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *ThicknessArrayRefID; - /// Required element 'prodml22:IsPorosityGridded' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:ThicknessArrayRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *ThicknessArrayRefID; + /// Required element 'prodml23:IsPorosityGridded' of XML schema type 'xsd:boolean' bool IsPorosityGridded; - /// Optional element 'prodml22:PorosityArrayRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *PorosityArrayRefID; - /// Required element 'prodml22:IsDepthGridded' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:PorosityArrayRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *PorosityArrayRefID; + /// Required element 'prodml23:IsDepthGridded' of XML schema type 'xsd:boolean' bool IsDepthGridded; - /// Optional element 'prodml22:DepthArrayRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *DepthArrayRefID; - /// Required element 'prodml22:IsKvToKrGridded' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:DepthArrayRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *DepthArrayRefID; + /// Required element 'prodml23:IsKvToKrGridded' of XML schema type 'xsd:boolean' bool IsKvToKrGridded; - /// Optional element 'prodml22:KvToKrArrayRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *KvToKrArrayRefID; - /// Required element 'prodml22:IsKxToKyGridded' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:KvToKrArrayRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *KvToKrArrayRefID; + /// Required element 'prodml23:IsKxToKyGridded' of XML schema type 'xsd:boolean' bool IsKxToKyGridded; - /// Optional element 'prodml22:KxToKyArrayRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *KxToKyArrayRefID; + /// Optional element 'prodml23:KxToKyArrayRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *KxToKyArrayRefID; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31611,41 +31806,41 @@ class SOAP_CMAC prodml22__DistributedParametersSubModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistributedParametersSubModel, default initialized and not managed by a soap context - virtual prodml22__DistributedParametersSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistributedParametersSubModel); } + /// Return a new object of type prodml23__DistributedParametersSubModel, default initialized and not managed by a soap context + virtual prodml23__DistributedParametersSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistributedParametersSubModel); } public: /// Constructor with default initializations - prodml22__DistributedParametersSubModel() : IsPermeabilityGridded(), PermeabilityArrayRefID(), IsThicknessGridded(), ThicknessArrayRefID(), IsPorosityGridded(), PorosityArrayRefID(), IsDepthGridded(), DepthArrayRefID(), IsKvToKrGridded(), KvToKrArrayRefID(), IsKxToKyGridded(), KxToKyArrayRefID(), soap() { } + prodml23__DistributedParametersSubModel() : IsPermeabilityGridded(), PermeabilityArrayRefID(), IsThicknessGridded(), ThicknessArrayRefID(), IsPorosityGridded(), PorosityArrayRefID(), IsDepthGridded(), DepthArrayRefID(), IsKvToKrGridded(), KvToKrArrayRefID(), IsKxToKyGridded(), KxToKyArrayRefID(), soap() { } /// Destructor - virtual ~prodml22__DistributedParametersSubModel() { } - /// Friend allocator used by soap_new_prodml22__DistributedParametersSubModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate_prodml22__DistributedParametersSubModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistributedParametersSubModel() { } + /// Friend allocator used by soap_new_prodml23__DistributedParametersSubModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistributedParametersSubModel * SOAP_FMAC2 soap_instantiate_prodml23__DistributedParametersSubModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2267 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval (-1060) -/* complex XML schema type 'prodml22:InterferingFlowTestInterval': */ -class SOAP_CMAC prodml22__InterferingFlowTestInterval { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval (-1060) +/* complex XML schema type 'prodml23:InterferingFlowTestInterval': */ +class SOAP_CMAC prodml23__InterferingFlowTestInterval { public: - /// Required element 'prodml22:FlowTestMeasurementSetRef' of XML schema type 'eml23:String64' + /// Required element 'prodml23:FlowTestMeasurementSetRef' of XML schema type 'eml23:String64' std::string FlowTestMeasurementSetRef; - /// Required element 'prodml22:InterferingFlowrateRef' of XML schema type 'eml23:String64' + /// Required element 'prodml23:InterferingFlowrateRef' of XML schema type 'eml23:String64' std::string InterferingFlowrateRef; - /// Optional element 'prodml22:TestPeriodRef' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:TestPeriodRef' of XML schema type 'eml23:String64' std::vector TestPeriodRef; - /// Required element 'prodml22:SimulatedInterferencePressure' of XML schema type 'prodml22:OutputPressureData' - prodml22__OutputPressureData *SimulatedInterferencePressure; - /// Required element 'prodml22:SimulatedInterferencePressureRemoved' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:SimulatedInterferencePressure' of XML schema type 'prodml23:OutputPressureData' + prodml23__OutputPressureData *SimulatedInterferencePressure; + /// Required element 'prodml23:SimulatedInterferencePressureRemoved' of XML schema type 'xsd:boolean' bool SimulatedInterferencePressureRemoved; /// Optional attribute 'uid' of XML schema type 'eml23:String64' std::string *uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31658,41 +31853,41 @@ class SOAP_CMAC prodml22__InterferingFlowTestInterval { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InterferingFlowTestInterval, default initialized and not managed by a soap context - virtual prodml22__InterferingFlowTestInterval *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InterferingFlowTestInterval); } + /// Return a new object of type prodml23__InterferingFlowTestInterval, default initialized and not managed by a soap context + virtual prodml23__InterferingFlowTestInterval *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InterferingFlowTestInterval); } public: /// Constructor with default initializations - prodml22__InterferingFlowTestInterval() : FlowTestMeasurementSetRef(), InterferingFlowrateRef(), TestPeriodRef(), SimulatedInterferencePressure(), SimulatedInterferencePressureRemoved(), uid(), soap() { } + prodml23__InterferingFlowTestInterval() : FlowTestMeasurementSetRef(), InterferingFlowrateRef(), TestPeriodRef(), SimulatedInterferencePressure(), SimulatedInterferencePressureRemoved(), uid(), soap() { } /// Destructor - virtual ~prodml22__InterferingFlowTestInterval() { } - /// Friend allocator used by soap_new_prodml22__InterferingFlowTestInterval(struct soap*, int) - friend SOAP_FMAC1 prodml22__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_prodml22__InterferingFlowTestInterval(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InterferingFlowTestInterval() { } + /// Friend allocator used by soap_new_prodml23__InterferingFlowTestInterval(struct soap*, int) + friend SOAP_FMAC1 prodml23__InterferingFlowTestInterval * SOAP_FMAC2 soap_instantiate_prodml23__InterferingFlowTestInterval(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2269 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel (-1061) -/* complex XML schema type 'prodml22:InternalFaultSubModel': */ -class SOAP_CMAC prodml22__InternalFaultSubModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel (-1061) +/* complex XML schema type 'prodml23:InternalFaultSubModel': */ +class SOAP_CMAC prodml23__InternalFaultSubModel { public: - /// Required element 'prodml22:IsLeaky' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:IsLeaky' of XML schema type 'xsd:boolean' bool IsLeaky; - /// Optional element 'prodml22:TransmissibilityReductionRatioOfLinearFront' of XML schema type 'prodml22:TransmissibilityReductionFactorOfLinearFront' - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionRatioOfLinearFront; - /// Required element 'prodml22:IsConductive' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:TransmissibilityReductionRatioOfLinearFront' of XML schema type 'prodml23:TransmissibilityReductionFactorOfLinearFront' + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionRatioOfLinearFront; + /// Required element 'prodml23:IsConductive' of XML schema type 'xsd:boolean' bool IsConductive; - /// Required element 'prodml22:IsFiniteConductive' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:IsFiniteConductive' of XML schema type 'xsd:boolean' bool IsFiniteConductive; - /// Optional element 'prodml22:Conductivity' of XML schema type 'prodml22:FractureConductivity' - prodml22__FractureConductivity *Conductivity; - /// Required element 'prodml22:FaultRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *FaultRefID; + /// Optional element 'prodml23:Conductivity' of XML schema type 'prodml23:FractureConductivity' + prodml23__FractureConductivity *Conductivity; + /// Required element 'prodml23:FaultRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *FaultRefID; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31705,55 +31900,55 @@ class SOAP_CMAC prodml22__InternalFaultSubModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InternalFaultSubModel, default initialized and not managed by a soap context - virtual prodml22__InternalFaultSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InternalFaultSubModel); } + /// Return a new object of type prodml23__InternalFaultSubModel, default initialized and not managed by a soap context + virtual prodml23__InternalFaultSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InternalFaultSubModel); } public: /// Constructor with default initializations - prodml22__InternalFaultSubModel() : IsLeaky(), TransmissibilityReductionRatioOfLinearFront(), IsConductive(), IsFiniteConductive(), Conductivity(), FaultRefID(), soap() { } + prodml23__InternalFaultSubModel() : IsLeaky(), TransmissibilityReductionRatioOfLinearFront(), IsConductive(), IsFiniteConductive(), Conductivity(), FaultRefID(), soap() { } /// Destructor - virtual ~prodml22__InternalFaultSubModel() { } - /// Friend allocator used by soap_new_prodml22__InternalFaultSubModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml22__InternalFaultSubModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InternalFaultSubModel() { } + /// Friend allocator used by soap_new_prodml23__InternalFaultSubModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__InternalFaultSubModel * SOAP_FMAC2 soap_instantiate_prodml23__InternalFaultSubModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2271 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel (-1062) -/* complex XML schema type 'prodml22:LayerModel': */ -class SOAP_CMAC prodml22__LayerModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel (-1062) +/* complex XML schema type 'prodml23:LayerModel': */ +class SOAP_CMAC prodml23__LayerModel { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; - /// Required element 'prodml22:AggregateLayersModel' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:AggregateLayersModel' of XML schema type 'xsd:boolean' bool AggregateLayersModel; - /// Optional element 'prodml22:GeologicFeature' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:GeologicFeature' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *GeologicFeature; - /// Optional element 'prodml22:MdTopLayer' of XML schema type 'eml23:MeasuredDepth' + /// Optional element 'prodml23:MdTopLayer' of XML schema type 'eml23:MeasuredDepth' eml23__MeasuredDepth *MdTopLayer; - /// Optional element 'prodml22:MdBottomLayer' of XML schema type 'eml23:MeasuredDepth' + /// Optional element 'prodml23:MdBottomLayer' of XML schema type 'eml23:MeasuredDepth' eml23__MeasuredDepth *MdBottomLayer; - /// Optional element 'prodml22:LayerProductivityIndex' of XML schema type 'eml23:VolumePerTimePerPressureMeasure' + /// Optional element 'prodml23:LayerProductivityIndex' of XML schema type 'eml23:VolumePerTimePerPressureMeasure' eml23__VolumePerTimePerPressureMeasure *LayerProductivityIndex; - /// Optional element 'prodml22:LayerTurbulentFlowCoefficient' of XML schema type 'eml23:PressurePerFlowrateSquaredMeasure' + /// Optional element 'prodml23:LayerTurbulentFlowCoefficient' of XML schema type 'eml23:PressurePerFlowrateSquaredMeasure' eml23__PressurePerFlowrateSquaredMeasure *LayerTurbulentFlowCoefficient; - /// Optional element 'prodml22:LayerLaminarFlowCoefficient' of XML schema type 'eml23:PressurePerFlowrateMeasure' + /// Optional element 'prodml23:LayerLaminarFlowCoefficient' of XML schema type 'eml23:PressurePerFlowrateMeasure' eml23__PressurePerFlowrateMeasure *LayerLaminarFlowCoefficient; - /// Optional element 'prodml22:NearWellboreModel' of XML schema type 'prodml22:NearWellboreBaseModel' - prodml22__NearWellboreBaseModel *NearWellboreModel; - /// Optional element 'prodml22:ReservoirModel' of XML schema type 'prodml22:ReservoirBaseModel' - prodml22__ReservoirBaseModel *ReservoirModel; - /// Optional element 'prodml22:BoundaryModel' of XML schema type 'prodml22:BoundaryBaseModel' - prodml22__BoundaryBaseModel *BoundaryModel; - /// Optional element 'prodml22:LayerToLayerConnection' of XML schema type 'prodml22:LayerToLayerConnection' - std::vector LayerToLayerConnection; + /// Optional element 'prodml23:NearWellboreModel' of XML schema type 'prodml23:NearWellboreBaseModel' + prodml23__NearWellboreBaseModel *NearWellboreModel; + /// Optional element 'prodml23:ReservoirModel' of XML schema type 'prodml23:ReservoirBaseModel' + prodml23__ReservoirBaseModel *ReservoirModel; + /// Optional element 'prodml23:BoundaryModel' of XML schema type 'prodml23:BoundaryBaseModel' + prodml23__BoundaryBaseModel *BoundaryModel; + /// Optional element 'prodml23:LayerToLayerConnection' of XML schema type 'prodml23:LayerToLayerConnection' + std::vector LayerToLayerConnection; /// Optional attribute 'uid' of XML schema type 'eml23:String64' std::string *uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31766,33 +31961,33 @@ class SOAP_CMAC prodml22__LayerModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LayerModel, default initialized and not managed by a soap context - virtual prodml22__LayerModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LayerModel); } + /// Return a new object of type prodml23__LayerModel, default initialized and not managed by a soap context + virtual prodml23__LayerModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LayerModel); } public: /// Constructor with default initializations - prodml22__LayerModel() : Name(), AggregateLayersModel(), GeologicFeature(), MdTopLayer(), MdBottomLayer(), LayerProductivityIndex(), LayerTurbulentFlowCoefficient(), LayerLaminarFlowCoefficient(), NearWellboreModel(), ReservoirModel(), BoundaryModel(), LayerToLayerConnection(), uid(), soap() { } + prodml23__LayerModel() : Name(), AggregateLayersModel(), GeologicFeature(), MdTopLayer(), MdBottomLayer(), LayerProductivityIndex(), LayerTurbulentFlowCoefficient(), LayerLaminarFlowCoefficient(), NearWellboreModel(), ReservoirModel(), BoundaryModel(), LayerToLayerConnection(), uid(), soap() { } /// Destructor - virtual ~prodml22__LayerModel() { } - /// Friend allocator used by soap_new_prodml22__LayerModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__LayerModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LayerModel() { } + /// Friend allocator used by soap_new_prodml23__LayerModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__LayerModel * SOAP_FMAC2 soap_instantiate_prodml23__LayerModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2273 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection (-1063) -/* complex XML schema type 'prodml22:LayerToLayerConnection': */ -class SOAP_CMAC prodml22__LayerToLayerConnection { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection (-1063) +/* complex XML schema type 'prodml23:LayerToLayerConnection': */ +class SOAP_CMAC prodml23__LayerToLayerConnection { public: - /// Required element 'prodml22:ConnectedLayerRefID' of XML schema type 'eml23:String64' + /// Required element 'prodml23:ConnectedLayerRefID' of XML schema type 'eml23:String64' std::string ConnectedLayerRefID; - /// Required element 'prodml22:InterLayerConnectivity' of XML schema type 'prodml22:InterporosityFlowParameter' - prodml22__InterporosityFlowParameter *InterLayerConnectivity; + /// Required element 'prodml23:InterLayerConnectivity' of XML schema type 'prodml23:InterporosityFlowParameter' + prodml23__InterporosityFlowParameter *InterLayerConnectivity; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31805,33 +32000,33 @@ class SOAP_CMAC prodml22__LayerToLayerConnection { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LayerToLayerConnection, default initialized and not managed by a soap context - virtual prodml22__LayerToLayerConnection *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LayerToLayerConnection); } + /// Return a new object of type prodml23__LayerToLayerConnection, default initialized and not managed by a soap context + virtual prodml23__LayerToLayerConnection *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LayerToLayerConnection); } public: /// Constructor with default initializations - prodml22__LayerToLayerConnection() : ConnectedLayerRefID(), InterLayerConnectivity(), soap() { } + prodml23__LayerToLayerConnection() : ConnectedLayerRefID(), InterLayerConnectivity(), soap() { } /// Destructor - virtual ~prodml22__LayerToLayerConnection() { } - /// Friend allocator used by soap_new_prodml22__LayerToLayerConnection(struct soap*, int) - friend SOAP_FMAC1 prodml22__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml22__LayerToLayerConnection(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LayerToLayerConnection() { } + /// Friend allocator used by soap_new_prodml23__LayerToLayerConnection(struct soap*, int) + friend SOAP_FMAC1 prodml23__LayerToLayerConnection * SOAP_FMAC2 soap_instantiate_prodml23__LayerToLayerConnection(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2275 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D (-1064) -/* complex XML schema type 'prodml22:LocationIn2D': */ -class SOAP_CMAC prodml22__LocationIn2D { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D (-1064) +/* complex XML schema type 'prodml23:LocationIn2D': */ +class SOAP_CMAC prodml23__LocationIn2D { public: - /// Required element 'prodml22:CoordinateX' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:CoordinateX' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *CoordinateX; - /// Required element 'prodml22:CoordinateY' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:CoordinateY' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *CoordinateY; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31844,41 +32039,41 @@ class SOAP_CMAC prodml22__LocationIn2D { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LocationIn2D, default initialized and not managed by a soap context - virtual prodml22__LocationIn2D *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LocationIn2D); } + /// Return a new object of type prodml23__LocationIn2D, default initialized and not managed by a soap context + virtual prodml23__LocationIn2D *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LocationIn2D); } public: /// Constructor with default initializations - prodml22__LocationIn2D() : CoordinateX(), CoordinateY(), soap() { } + prodml23__LocationIn2D() : CoordinateX(), CoordinateY(), soap() { } /// Destructor - virtual ~prodml22__LocationIn2D() { } - /// Friend allocator used by soap_new_prodml22__LocationIn2D(struct soap*, int) - friend SOAP_FMAC1 prodml22__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml22__LocationIn2D(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LocationIn2D() { } + /// Friend allocator used by soap_new_prodml23__LocationIn2D(struct soap*, int) + friend SOAP_FMAC1 prodml23__LocationIn2D * SOAP_FMAC2 soap_instantiate_prodml23__LocationIn2D(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2277 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis (-1065) -/* complex XML schema type 'prodml22:LogLogAnalysis': */ -class SOAP_CMAC prodml22__LogLogAnalysis { - public: - /// Required element 'prodml22:AnalysisPressure' of XML schema type 'prodml22:AbstractPtaPressureData' - prodml22__AbstractPtaPressureData *AnalysisPressure; - /// Required element 'prodml22:LogLogTimeDataTransform' of XML schema type 'prodml22:LogLogTimeTransform' - prodml22__LogLogTimeTransform LogLogTimeDataTransform; - /// Required element 'prodml22:LogLogPressureTransform' of XML schema type 'prodml22:LogLogPressureTransform' - prodml22__LogLogPressureTransform LogLogPressureTransform; - /// Optional element 'prodml22:DerivativeSmoothingFactorL' of XML schema type 'eml23:DimensionlessMeasure' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis (-1065) +/* complex XML schema type 'prodml23:LogLogAnalysis': */ +class SOAP_CMAC prodml23__LogLogAnalysis { + public: + /// Required element 'prodml23:AnalysisPressure' of XML schema type 'prodml23:AbstractPtaPressureData' + prodml23__AbstractPtaPressureData *AnalysisPressure; + /// Required element 'prodml23:LogLogTimeDataTransform' of XML schema type 'prodml23:LogLogTimeTransform' + prodml23__LogLogTimeTransform LogLogTimeDataTransform; + /// Required element 'prodml23:LogLogPressureTransform' of XML schema type 'prodml23:LogLogPressureTransform' + prodml23__LogLogPressureTransform LogLogPressureTransform; + /// Optional element 'prodml23:DerivativeSmoothingFactorL' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *DerivativeSmoothingFactorL; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:AnalysisLine' of XML schema type 'prodml22:AnalysisLine' - std::vector AnalysisLine; + /// Optional element 'prodml23:AnalysisLine' of XML schema type 'prodml23:AnalysisLine' + std::vector AnalysisLine; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31891,37 +32086,37 @@ class SOAP_CMAC prodml22__LogLogAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LogLogAnalysis, default initialized and not managed by a soap context - virtual prodml22__LogLogAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LogLogAnalysis); } + /// Return a new object of type prodml23__LogLogAnalysis, default initialized and not managed by a soap context + virtual prodml23__LogLogAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LogLogAnalysis); } public: /// Constructor with default initializations - prodml22__LogLogAnalysis() : AnalysisPressure(), LogLogTimeDataTransform(), LogLogPressureTransform(), DerivativeSmoothingFactorL(), Remark(), AnalysisLine(), soap() { } + prodml23__LogLogAnalysis() : AnalysisPressure(), LogLogTimeDataTransform(), LogLogPressureTransform(), DerivativeSmoothingFactorL(), Remark(), AnalysisLine(), soap() { } /// Destructor - virtual ~prodml22__LogLogAnalysis() { } - /// Friend allocator used by soap_new_prodml22__LogLogAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__LogLogAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LogLogAnalysis() { } + /// Friend allocator used by soap_new_prodml23__LogLogAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__LogLogAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__LogLogAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2299 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel (-1076) -/* complex XML schema type 'prodml22:ReservoirZoneSubModel': */ -class SOAP_CMAC prodml22__ReservoirZoneSubModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel (-1076) +/* complex XML schema type 'prodml23:ReservoirZoneSubModel': */ +class SOAP_CMAC prodml23__ReservoirZoneSubModel { public: - /// Required element 'prodml22:BoundingPolygonPoint' of XML schema type 'prodml22:LocationIn2D' - std::vector BoundingPolygonPoint; - /// Optional element 'prodml22:Permeability' of XML schema type 'prodml22:HorizontalRadialPermeability' - prodml22__HorizontalRadialPermeability *Permeability; - /// Optional element 'prodml22:Porosity' of XML schema type 'prodml22:Porosity' - prodml22__Porosity *Porosity; - /// Optional element 'prodml22:Thickness' of XML schema type 'prodml22:TotalThickness' - prodml22__TotalThickness *Thickness; + /// Required element 'prodml23:BoundingPolygonPoint' of XML schema type 'prodml23:LocationIn2D' + std::vector BoundingPolygonPoint; + /// Optional element 'prodml23:Permeability' of XML schema type 'prodml23:HorizontalRadialPermeability' + prodml23__HorizontalRadialPermeability *Permeability; + /// Optional element 'prodml23:Porosity' of XML schema type 'prodml23:Porosity' + prodml23__Porosity *Porosity; + /// Optional element 'prodml23:Thickness' of XML schema type 'prodml23:TotalThickness' + prodml23__TotalThickness *Thickness; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31934,31 +32129,31 @@ class SOAP_CMAC prodml22__ReservoirZoneSubModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReservoirZoneSubModel, default initialized and not managed by a soap context - virtual prodml22__ReservoirZoneSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReservoirZoneSubModel); } + /// Return a new object of type prodml23__ReservoirZoneSubModel, default initialized and not managed by a soap context + virtual prodml23__ReservoirZoneSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReservoirZoneSubModel); } public: /// Constructor with default initializations - prodml22__ReservoirZoneSubModel() : BoundingPolygonPoint(), Permeability(), Porosity(), Thickness(), soap() { } + prodml23__ReservoirZoneSubModel() : BoundingPolygonPoint(), Permeability(), Porosity(), Thickness(), soap() { } /// Destructor - virtual ~prodml22__ReservoirZoneSubModel() { } - /// Friend allocator used by soap_new_prodml22__ReservoirZoneSubModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml22__ReservoirZoneSubModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReservoirZoneSubModel() { } + /// Friend allocator used by soap_new_prodml23__ReservoirZoneSubModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReservoirZoneSubModel * SOAP_FMAC2 soap_instantiate_prodml23__ReservoirZoneSubModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2301 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef (-1077) -/* complex XML schema type 'prodml22:ResqmlModelRef': */ -class SOAP_CMAC prodml22__ResqmlModelRef { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef (-1077) +/* complex XML schema type 'prodml23:ResqmlModelRef': */ +class SOAP_CMAC prodml23__ResqmlModelRef { public: - /// Required element 'prodml22:ResqmlModelRef' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:ResqmlModelRef' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ResqmlModelRef; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -31971,33 +32166,33 @@ class SOAP_CMAC prodml22__ResqmlModelRef { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ResqmlModelRef, default initialized and not managed by a soap context - virtual prodml22__ResqmlModelRef *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ResqmlModelRef); } + /// Return a new object of type prodml23__ResqmlModelRef, default initialized and not managed by a soap context + virtual prodml23__ResqmlModelRef *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ResqmlModelRef); } public: /// Constructor with default initializations - prodml22__ResqmlModelRef() : ResqmlModelRef(), soap() { } + prodml23__ResqmlModelRef() : ResqmlModelRef(), soap() { } /// Destructor - virtual ~prodml22__ResqmlModelRef() { } - /// Friend allocator used by soap_new_prodml22__ResqmlModelRef(struct soap*, int) - friend SOAP_FMAC1 prodml22__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml22__ResqmlModelRef(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ResqmlModelRef() { } + /// Friend allocator used by soap_new_prodml23__ResqmlModelRef(struct soap*, int) + friend SOAP_FMAC1 prodml23__ResqmlModelRef * SOAP_FMAC2 soap_instantiate_prodml23__ResqmlModelRef(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2305 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel (-1079) -/* complex XML schema type 'prodml22:SingleBoundarySubModel': */ -class SOAP_CMAC prodml22__SingleBoundarySubModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel (-1079) +/* complex XML schema type 'prodml23:SingleBoundarySubModel': */ +class SOAP_CMAC prodml23__SingleBoundarySubModel { public: - /// Required element 'prodml22:TypeOfBoundary' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type TypeOfBoundary; - /// Required element 'prodml22:FaultRefID' of XML schema type 'prodml22:ResqmlModelRef' - prodml22__ResqmlModelRef *FaultRefID; + /// Required element 'prodml23:TypeOfBoundary' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type TypeOfBoundary; + /// Required element 'prodml23:FaultRefID' of XML schema type 'prodml23:ResqmlModelRef' + prodml23__ResqmlModelRef *FaultRefID; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32010,45 +32205,45 @@ class SOAP_CMAC prodml22__SingleBoundarySubModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SingleBoundarySubModel, default initialized and not managed by a soap context - virtual prodml22__SingleBoundarySubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SingleBoundarySubModel); } + /// Return a new object of type prodml23__SingleBoundarySubModel, default initialized and not managed by a soap context + virtual prodml23__SingleBoundarySubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SingleBoundarySubModel); } public: /// Constructor with default initializations - prodml22__SingleBoundarySubModel() : TypeOfBoundary(), FaultRefID(), soap() { } + prodml23__SingleBoundarySubModel() : TypeOfBoundary(), FaultRefID(), soap() { } /// Destructor - virtual ~prodml22__SingleBoundarySubModel() { } - /// Friend allocator used by soap_new_prodml22__SingleBoundarySubModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleBoundarySubModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SingleBoundarySubModel() { } + /// Friend allocator used by soap_new_prodml23__SingleBoundarySubModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__SingleBoundarySubModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleBoundarySubModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2309 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel (-1081) -/* complex XML schema type 'prodml22:SingleFractureSubModel': */ -class SOAP_CMAC prodml22__SingleFractureSubModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel (-1081) +/* complex XML schema type 'prodml23:SingleFractureSubModel': */ +class SOAP_CMAC prodml23__SingleFractureSubModel { public: - /// Required element 'prodml22:FractureTip1Location' of XML schema type 'prodml22:LocationIn2D' - prodml22__LocationIn2D *FractureTip1Location; - /// Required element 'prodml22:FractureTip2Location' of XML schema type 'prodml22:LocationIn2D' - prodml22__LocationIn2D *FractureTip2Location; - /// Required element 'prodml22:FractureHeight' of XML schema type 'prodml22:FractureHeight' - prodml22__FractureHeight *FractureHeight; - /// Optional element 'prodml22:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml22:DistanceMidFractureHeightToBottomBoundary' - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; - /// Optional element 'prodml22:FractureFaceSkin' of XML schema type 'prodml22:FractureFaceSkin' - prodml22__FractureFaceSkin *FractureFaceSkin; - /// Optional element 'prodml22:FractureConductivity' of XML schema type 'prodml22:FractureConductivity' - prodml22__FractureConductivity *FractureConductivity; - /// Optional element 'prodml22:FractureStorativityRatio' of XML schema type 'prodml22:FractureStorativityRatio' - prodml22__FractureStorativityRatio *FractureStorativityRatio; - /// Required element 'prodml22:FractureModelType' of XML schema type 'prodml22:FractureModelType' - prodml22__FractureModelType FractureModelType; + /// Required element 'prodml23:FractureTip1Location' of XML schema type 'prodml23:LocationIn2D' + prodml23__LocationIn2D *FractureTip1Location; + /// Required element 'prodml23:FractureTip2Location' of XML schema type 'prodml23:LocationIn2D' + prodml23__LocationIn2D *FractureTip2Location; + /// Required element 'prodml23:FractureHeight' of XML schema type 'prodml23:FractureHeight' + prodml23__FractureHeight *FractureHeight; + /// Optional element 'prodml23:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml23:DistanceMidFractureHeightToBottomBoundary' + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; + /// Optional element 'prodml23:FractureFaceSkin' of XML schema type 'prodml23:FractureFaceSkin' + prodml23__FractureFaceSkin *FractureFaceSkin; + /// Optional element 'prodml23:FractureConductivity' of XML schema type 'prodml23:FractureConductivity' + prodml23__FractureConductivity *FractureConductivity; + /// Optional element 'prodml23:FractureStorativityRatio' of XML schema type 'prodml23:FractureStorativityRatio' + prodml23__FractureStorativityRatio *FractureStorativityRatio; + /// Required element 'prodml23:FractureModelType' of XML schema type 'prodml23:FractureModelType' + prodml23__FractureModelType FractureModelType; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32061,45 +32256,45 @@ class SOAP_CMAC prodml22__SingleFractureSubModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SingleFractureSubModel, default initialized and not managed by a soap context - virtual prodml22__SingleFractureSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SingleFractureSubModel); } + /// Return a new object of type prodml23__SingleFractureSubModel, default initialized and not managed by a soap context + virtual prodml23__SingleFractureSubModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SingleFractureSubModel); } public: /// Constructor with default initializations - prodml22__SingleFractureSubModel() : FractureTip1Location(), FractureTip2Location(), FractureHeight(), DistanceMidFractureHeightToBottomBoundary(), FractureFaceSkin(), FractureConductivity(), FractureStorativityRatio(), FractureModelType(), soap() { } + prodml23__SingleFractureSubModel() : FractureTip1Location(), FractureTip2Location(), FractureHeight(), DistanceMidFractureHeightToBottomBoundary(), FractureFaceSkin(), FractureConductivity(), FractureStorativityRatio(), FractureModelType(), soap() { } /// Destructor - virtual ~prodml22__SingleFractureSubModel() { } - /// Friend allocator used by soap_new_prodml22__SingleFractureSubModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleFractureSubModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SingleFractureSubModel() { } + /// Friend allocator used by soap_new_prodml23__SingleFractureSubModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__SingleFractureSubModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleFractureSubModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2311 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis (-1082) -/* complex XML schema type 'prodml22:SpecializedAnalysis': */ -class SOAP_CMAC prodml22__SpecializedAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis (-1082) +/* complex XML schema type 'prodml23:SpecializedAnalysis': */ +class SOAP_CMAC prodml23__SpecializedAnalysis { public: - /// Required element 'prodml22:SpecializedAnalysisType' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:SpecializedAnalysisType' of XML schema type 'eml23:String2000' std::string SpecializedAnalysisType; - /// Optional element 'prodml22:AnyParameter' of XML schema type 'prodml22:AbstractParameter' - std::vector AnyParameter; - /// Optional element 'prodml22:CustomParameter' of XML schema type 'prodml22:CustomParameter' - std::vector CustomParameter; - /// Required element 'prodml22:SpecializedXAxisDescription' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:AnyParameter' of XML schema type 'prodml23:AbstractParameter' + std::vector AnyParameter; + /// Optional element 'prodml23:CustomParameter' of XML schema type 'prodml23:CustomParameter' + std::vector CustomParameter; + /// Required element 'prodml23:SpecializedXAxisDescription' of XML schema type 'eml23:String2000' std::string SpecializedXAxisDescription; - /// Required element 'prodml22:SpecializedYAxisDescription' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:SpecializedYAxisDescription' of XML schema type 'eml23:String2000' std::string SpecializedYAxisDescription; - /// Required element 'prodml22:AnalysisPressureFunction' of XML schema type 'prodml22:AbstractPtaPressureData' - prodml22__AbstractPtaPressureData *AnalysisPressureFunction; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:AnalysisPressureFunction' of XML schema type 'prodml23:AbstractPtaPressureData' + prodml23__AbstractPtaPressureData *AnalysisPressureFunction; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:AnalysisLine' of XML schema type 'prodml22:AnalysisLine' - std::vector AnalysisLine; + /// Optional element 'prodml23:AnalysisLine' of XML schema type 'prodml23:AnalysisLine' + std::vector AnalysisLine; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32112,33 +32307,33 @@ class SOAP_CMAC prodml22__SpecializedAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SpecializedAnalysis, default initialized and not managed by a soap context - virtual prodml22__SpecializedAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SpecializedAnalysis); } + /// Return a new object of type prodml23__SpecializedAnalysis, default initialized and not managed by a soap context + virtual prodml23__SpecializedAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SpecializedAnalysis); } public: /// Constructor with default initializations - prodml22__SpecializedAnalysis() : SpecializedAnalysisType(), AnyParameter(), CustomParameter(), SpecializedXAxisDescription(), SpecializedYAxisDescription(), AnalysisPressureFunction(), Remark(), AnalysisLine(), soap() { } + prodml23__SpecializedAnalysis() : SpecializedAnalysisType(), AnyParameter(), CustomParameter(), SpecializedXAxisDescription(), SpecializedYAxisDescription(), AnalysisPressureFunction(), Remark(), AnalysisLine(), soap() { } /// Destructor - virtual ~prodml22__SpecializedAnalysis() { } - /// Friend allocator used by soap_new_prodml22__SpecializedAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__SpecializedAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SpecializedAnalysis() { } + /// Friend allocator used by soap_new_prodml23__SpecializedAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__SpecializedAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__SpecializedAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2315 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection (-1084) -/* complex XML schema type 'prodml22:AbstractModelSection': */ -class SOAP_CMAC prodml22__AbstractModelSection { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection (-1084) +/* complex XML schema type 'prodml23:AbstractModelSection': */ +class SOAP_CMAC prodml23__AbstractModelSection { public: - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:Method' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Method' of XML schema type 'eml23:String64' std::string *Method; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32151,35 +32346,35 @@ class SOAP_CMAC prodml22__AbstractModelSection { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractModelSection, default initialized and not managed by a soap context - virtual prodml22__AbstractModelSection *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractModelSection); } + /// Return a new object of type prodml23__AbstractModelSection, default initialized and not managed by a soap context + virtual prodml23__AbstractModelSection *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractModelSection); } public: /// Constructor with default initializations - prodml22__AbstractModelSection() : Comment(), Method(), soap() { } + prodml23__AbstractModelSection() : Comment(), Method(), soap() { } /// Destructor - virtual ~prodml22__AbstractModelSection() { } - /// Friend allocator used by soap_new_prodml22__AbstractModelSection(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml22__AbstractModelSection(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractModelSection() { } + /// Friend allocator used by soap_new_prodml23__AbstractModelSection(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractModelSection * SOAP_FMAC2 soap_instantiate_prodml23__AbstractModelSection(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2413 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter (-1133) -/* complex XML schema type 'prodml22:AbstractParameter': */ -class SOAP_CMAC prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter (-1133) +/* complex XML schema type 'prodml23:AbstractParameter': */ +class SOAP_CMAC prodml23__AbstractParameter { public: - /// Optional element 'prodml22:SourceResultRefID' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SourceResultRefID' of XML schema type 'eml23:String64' std::string *SourceResultRefID; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; /// Required attribute 'Uid' of XML schema type 'eml23:String64' std::string Uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32192,33 +32387,33 @@ class SOAP_CMAC prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractParameter, default initialized and not managed by a soap context - virtual prodml22__AbstractParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractParameter); } + /// Return a new object of type prodml23__AbstractParameter, default initialized and not managed by a soap context + virtual prodml23__AbstractParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractParameter); } public: /// Constructor with default initializations - prodml22__AbstractParameter() : SourceResultRefID(), Remark(), Uid(), soap() { } + prodml23__AbstractParameter() : SourceResultRefID(), Remark(), Uid(), soap() { } /// Destructor - virtual ~prodml22__AbstractParameter() { } - /// Friend allocator used by soap_new_prodml22__AbstractParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml22__AbstractParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractParameter() { } + /// Friend allocator used by soap_new_prodml23__AbstractParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractParameter * SOAP_FMAC2 soap_instantiate_prodml23__AbstractParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2551 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource (-1202) -/* complex XML schema type 'prodml22:FluidSampleAcquisitionJobSource': */ -class SOAP_CMAC prodml22__FluidSampleAcquisitionJobSource { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource (-1202) +/* complex XML schema type 'prodml23:FluidSampleAcquisitionJobSource': */ +class SOAP_CMAC prodml23__FluidSampleAcquisitionJobSource { public: - /// Required element 'prodml22:FluidSampleAcquisitionReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:FluidSampleAcquisitionReference' of XML schema type 'eml23:String64' std::string FluidSampleAcquisitionReference; - /// Required element 'prodml22:FluidSampleAcquisitionJobReference' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:FluidSampleAcquisitionJobReference' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSampleAcquisitionJobReference; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32231,57 +32426,57 @@ class SOAP_CMAC prodml22__FluidSampleAcquisitionJobSource { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSampleAcquisitionJobSource, default initialized and not managed by a soap context - virtual prodml22__FluidSampleAcquisitionJobSource *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSampleAcquisitionJobSource); } + /// Return a new object of type prodml23__FluidSampleAcquisitionJobSource, default initialized and not managed by a soap context + virtual prodml23__FluidSampleAcquisitionJobSource *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSampleAcquisitionJobSource); } public: /// Constructor with default initializations - prodml22__FluidSampleAcquisitionJobSource() : FluidSampleAcquisitionReference(), FluidSampleAcquisitionJobReference(), soap() { } + prodml23__FluidSampleAcquisitionJobSource() : FluidSampleAcquisitionReference(), FluidSampleAcquisitionJobReference(), soap() { } /// Destructor - virtual ~prodml22__FluidSampleAcquisitionJobSource() { } - /// Friend allocator used by soap_new_prodml22__FluidSampleAcquisitionJobSource(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisitionJobSource(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSampleAcquisitionJobSource() { } + /// Friend allocator used by soap_new_prodml23__FluidSampleAcquisitionJobSource(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSampleAcquisitionJobSource * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisitionJobSource(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2553 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent (-1203) -/* complex XML schema type 'prodml22:FluidSampleChainOfCustodyEvent': */ -class SOAP_CMAC prodml22__FluidSampleChainOfCustodyEvent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent (-1203) +/* complex XML schema type 'prodml23:FluidSampleChainOfCustodyEvent': */ +class SOAP_CMAC prodml23__FluidSampleChainOfCustodyEvent { public: - /// Optional element 'prodml22:TransferVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:TransferVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *TransferVolume; - /// Optional element 'prodml22:TransferPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:TransferPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *TransferPressure; - /// Optional element 'prodml22:TransferTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:TransferTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TransferTemperature; - /// Required element 'prodml22:SampleIntegrity' of XML schema type 'prodml22:SampleQuality' - prodml22__SampleQuality SampleIntegrity; - /// Optional element 'prodml22:RemainingVolume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:SampleIntegrity' of XML schema type 'prodml23:SampleQuality' + prodml23__SampleQuality SampleIntegrity; + /// Optional element 'prodml23:RemainingVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *RemainingVolume; - /// Optional element 'prodml22:LostVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:LostVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *LostVolume; - /// Optional element 'prodml22:CustodyDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:CustodyDate' of XML schema type 'xsd:date' std::string *CustodyDate; - /// Optional element 'prodml22:CustodyAction' of XML schema type 'prodml22:SampleAction' - prodml22__SampleAction *CustodyAction; - /// Optional element 'prodml22:Custodian' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:CustodyAction' of XML schema type 'prodml23:SampleAction' + prodml23__SampleAction *CustodyAction; + /// Optional element 'prodml23:Custodian' of XML schema type 'eml23:String64' std::string *Custodian; - /// Optional element 'prodml22:ContainerLocation' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ContainerLocation' of XML schema type 'eml23:String64' std::string *ContainerLocation; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:PrevContainer' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:PrevContainer' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *PrevContainer; - /// Required element 'prodml22:CurrentContainer' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:CurrentContainer' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *CurrentContainer; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32294,41 +32489,41 @@ class SOAP_CMAC prodml22__FluidSampleChainOfCustodyEvent { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSampleChainOfCustodyEvent, default initialized and not managed by a soap context - virtual prodml22__FluidSampleChainOfCustodyEvent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSampleChainOfCustodyEvent); } + /// Return a new object of type prodml23__FluidSampleChainOfCustodyEvent, default initialized and not managed by a soap context + virtual prodml23__FluidSampleChainOfCustodyEvent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSampleChainOfCustodyEvent); } public: /// Constructor with default initializations - prodml22__FluidSampleChainOfCustodyEvent() : TransferVolume(), TransferPressure(), TransferTemperature(), SampleIntegrity(), RemainingVolume(), LostVolume(), CustodyDate(), CustodyAction(), Custodian(), ContainerLocation(), Remark(), PrevContainer(), CurrentContainer(), uid(), soap() { } + prodml23__FluidSampleChainOfCustodyEvent() : TransferVolume(), TransferPressure(), TransferTemperature(), SampleIntegrity(), RemainingVolume(), LostVolume(), CustodyDate(), CustodyAction(), Custodian(), ContainerLocation(), Remark(), PrevContainer(), CurrentContainer(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidSampleChainOfCustodyEvent() { } - /// Friend allocator used by soap_new_prodml22__FluidSampleChainOfCustodyEvent(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleChainOfCustodyEvent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSampleChainOfCustodyEvent() { } + /// Friend allocator used by soap_new_prodml23__FluidSampleChainOfCustodyEvent(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSampleChainOfCustodyEvent * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleChainOfCustodyEvent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2555 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction (-1204) -/* complex XML schema type 'prodml22:RecombinedSampleFraction': */ -class SOAP_CMAC prodml22__RecombinedSampleFraction { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction (-1204) +/* complex XML schema type 'prodml23:RecombinedSampleFraction': */ +class SOAP_CMAC prodml23__RecombinedSampleFraction { public: - /// Optional element 'prodml22:VolumeFraction' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:VolumeFraction' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *VolumeFraction; - /// Optional element 'prodml22:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *MassFraction; - /// Optional element 'prodml22:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FluidSample' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSample' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSample; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32341,43 +32536,43 @@ class SOAP_CMAC prodml22__RecombinedSampleFraction { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RecombinedSampleFraction, default initialized and not managed by a soap context - virtual prodml22__RecombinedSampleFraction *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RecombinedSampleFraction); } + /// Return a new object of type prodml23__RecombinedSampleFraction, default initialized and not managed by a soap context + virtual prodml23__RecombinedSampleFraction *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RecombinedSampleFraction); } public: /// Constructor with default initializations - prodml22__RecombinedSampleFraction() : VolumeFraction(), MassFraction(), MoleFraction(), Remark(), FluidSample(), uid(), soap() { } + prodml23__RecombinedSampleFraction() : VolumeFraction(), MassFraction(), MoleFraction(), Remark(), FluidSample(), uid(), soap() { } /// Destructor - virtual ~prodml22__RecombinedSampleFraction() { } - /// Friend allocator used by soap_new_prodml22__RecombinedSampleFraction(struct soap*, int) - friend SOAP_FMAC1 prodml22__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prodml22__RecombinedSampleFraction(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RecombinedSampleFraction() { } + /// Friend allocator used by soap_new_prodml23__RecombinedSampleFraction(struct soap*, int) + friend SOAP_FMAC1 prodml23__RecombinedSampleFraction * SOAP_FMAC2 soap_instantiate_prodml23__RecombinedSampleFraction(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2557 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification (-1205) -/* complex XML schema type 'prodml22:SampleRecombinationSpecification': */ -class SOAP_CMAC prodml22__SampleRecombinationSpecification { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification (-1205) +/* complex XML schema type 'prodml23:SampleRecombinationSpecification': */ +class SOAP_CMAC prodml23__SampleRecombinationSpecification { public: - /// Optional element 'prodml22:RecombinationPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:RecombinationPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *RecombinationPressure; - /// Optional element 'prodml22:RecombinationTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:RecombinationTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *RecombinationTemperature; - /// Optional element 'prodml22:RecombinationGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:RecombinationGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *RecombinationGOR; - /// Optional element 'prodml22:RecombinationSaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *RecombinationSaturationPressure; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:RecombinationSaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *RecombinationSaturationPressure; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Required element 'prodml22:RecombinedSampleFraction' of XML schema type 'prodml22:RecombinedSampleFraction' - std::vector RecombinedSampleFraction; + /// Required element 'prodml23:RecombinedSampleFraction' of XML schema type 'prodml23:RecombinedSampleFraction' + std::vector RecombinedSampleFraction; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32390,55 +32585,55 @@ class SOAP_CMAC prodml22__SampleRecombinationSpecification { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SampleRecombinationSpecification, default initialized and not managed by a soap context - virtual prodml22__SampleRecombinationSpecification *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SampleRecombinationSpecification); } + /// Return a new object of type prodml23__SampleRecombinationSpecification, default initialized and not managed by a soap context + virtual prodml23__SampleRecombinationSpecification *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SampleRecombinationSpecification); } public: /// Constructor with default initializations - prodml22__SampleRecombinationSpecification() : RecombinationPressure(), RecombinationTemperature(), RecombinationGOR(), RecombinationSaturationPressure(), OverallComposition(), Remark(), RecombinedSampleFraction(), soap() { } + prodml23__SampleRecombinationSpecification() : RecombinationPressure(), RecombinationTemperature(), RecombinationGOR(), RecombinationSaturationPressure(), OverallComposition(), Remark(), RecombinedSampleFraction(), soap() { } /// Destructor - virtual ~prodml22__SampleRecombinationSpecification() { } - /// Friend allocator used by soap_new_prodml22__SampleRecombinationSpecification(struct soap*, int) - friend SOAP_FMAC1 prodml22__SampleRecombinationSpecification * SOAP_FMAC2 soap_instantiate_prodml22__SampleRecombinationSpecification(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SampleRecombinationSpecification() { } + /// Friend allocator used by soap_new_prodml23__SampleRecombinationSpecification(struct soap*, int) + friend SOAP_FMAC1 prodml23__SampleRecombinationSpecification * SOAP_FMAC2 soap_instantiate_prodml23__SampleRecombinationSpecification(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2565 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition (-1209) -/* complex XML schema type 'prodml22:FluidSampleAcquisition': */ -class SOAP_CMAC prodml22__FluidSampleAcquisition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition (-1209) +/* complex XML schema type 'prodml23:FluidSampleAcquisition': */ +class SOAP_CMAC prodml23__FluidSampleAcquisition { public: /// Typedef eml23__TimeStamp with custom serializer for struct tm struct tm StartTime; /// Typedef eml23__TimeStamp with custom serializer for struct tm struct tm EndTime; - /// Optional element 'prodml22:AcquisitionPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Optional element 'prodml23:AcquisitionPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *AcquisitionPressure; - /// Optional element 'prodml22:AcquisitionTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:AcquisitionTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *AcquisitionTemperature; - /// Optional element 'prodml22:AcquisitionVolume' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:AcquisitionVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *AcquisitionVolume; - /// Optional element 'prodml22:AcquisitionGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:AcquisitionGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *AcquisitionGOR; - /// Optional element 'prodml22:FormationPressureTemperatureDatum' of XML schema type 'eml23:LengthMeasureExt' + /// Optional element 'prodml23:FormationPressureTemperatureDatum' of XML schema type 'eml23:LengthMeasureExt' eml23__LengthMeasureExt *FormationPressureTemperatureDatum; - /// Optional element 'prodml22:FormationPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:FormationPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *FormationPressure; - /// Optional element 'prodml22:FormationTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:FormationTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *FormationTemperature; - /// Required element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string Remark; - /// Required element 'prodml22:FluidSampleContainer' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:FluidSampleContainer' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSampleContainer; - /// Required element 'prodml22:FluidSample' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:FluidSample' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSample; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32451,97 +32646,97 @@ class SOAP_CMAC prodml22__FluidSampleAcquisition { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSampleAcquisition, default initialized and not managed by a soap context - virtual prodml22__FluidSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSampleAcquisition); } + /// Return a new object of type prodml23__FluidSampleAcquisition, default initialized and not managed by a soap context + virtual prodml23__FluidSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSampleAcquisition); } public: /// Constructor with default initializations - prodml22__FluidSampleAcquisition() : StartTime(), EndTime(), AcquisitionPressure(), AcquisitionTemperature(), AcquisitionVolume(), AcquisitionGOR(), FormationPressureTemperatureDatum(), FormationPressure(), FormationTemperature(), Remark(), FluidSampleContainer(), FluidSample(), uid(), soap() { } + prodml23__FluidSampleAcquisition() : StartTime(), EndTime(), AcquisitionPressure(), AcquisitionTemperature(), AcquisitionVolume(), AcquisitionGOR(), FormationPressureTemperatureDatum(), FormationPressure(), FormationTemperature(), Remark(), FluidSampleContainer(), FluidSample(), uid(), soap() { } /// Destructor - virtual ~prodml22__FluidSampleAcquisition() { } - /// Friend allocator used by soap_new_prodml22__FluidSampleAcquisition(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSampleAcquisition() { } + /// Friend allocator used by soap_new_prodml23__FluidSampleAcquisition(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2577 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume (-1215) -/* complex XML schema type 'prodml22:CommonPropertiesProductVolume': */ -class SOAP_CMAC prodml22__CommonPropertiesProductVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume (-1215) +/* complex XML schema type 'prodml23:CommonPropertiesProductVolume': */ +class SOAP_CMAC prodml23__CommonPropertiesProductVolume { public: - /// Optional element 'prodml22:Gor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:Gor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Gor; - /// Optional element 'prodml22:GorMTD' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:GorMTD' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *GorMTD; - /// Optional element 'prodml22:GasLiquidRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:GasLiquidRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *GasLiquidRatio; - /// Optional element 'prodml22:WaterConcMass' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:WaterConcMass' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *WaterConcMass; - /// Optional element 'prodml22:WaterConcVol' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:WaterConcVol' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *WaterConcVol; - /// Optional element 'prodml22:Atmosphere' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Atmosphere' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Atmosphere; - /// Optional element 'prodml22:Temp' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:Temp' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *Temp; - /// Optional element 'prodml22:Pres' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Pres' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pres; - /// Optional element 'prodml22:AbsoluteMinPres' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:AbsoluteMinPres' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *AbsoluteMinPres; - /// Optional element 'prodml22:Mass' of XML schema type 'eml23:MassMeasure' + /// Optional element 'prodml23:Mass' of XML schema type 'eml23:MassMeasure' eml23__MassMeasure *Mass; - /// Optional element 'prodml22:Work' of XML schema type 'eml23:EnergyMeasure' + /// Optional element 'prodml23:Work' of XML schema type 'eml23:EnergyMeasure' eml23__EnergyMeasure *Work; - /// Optional element 'prodml22:Efficiency' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:Efficiency' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Efficiency; - /// Optional element 'prodml22:Rvp' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Rvp' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Rvp; - /// Optional element 'prodml22:Tvp' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Tvp' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Tvp; - /// Optional element 'prodml22:Bsw' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:Bsw' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Bsw; - /// Optional element 'prodml22:BswPrevious' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:BswPrevious' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *BswPrevious; - /// Optional element 'prodml22:DensityFlowRate' of XML schema type 'eml23:MassPerTimeMeasure' + /// Optional element 'prodml23:DensityFlowRate' of XML schema type 'eml23:MassPerTimeMeasure' eml23__MassPerTimeMeasure *DensityFlowRate; - /// Optional element 'prodml22:Concentration' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:Concentration' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Concentration; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; - /// Optional element 'prodml22:WeightPercent' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:WeightPercent' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *WeightPercent; - /// Optional element 'prodml22:MolePercent' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:MolePercent' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MolePercent; - /// Optional element 'prodml22:MoleAmt' of XML schema type 'eml23:AmountOfSubstanceMeasure' + /// Optional element 'prodml23:MoleAmt' of XML schema type 'eml23:AmountOfSubstanceMeasure' eml23__AmountOfSubstanceMeasure *MoleAmt; - /// Optional element 'prodml22:Sg' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:Sg' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Sg; - /// Optional element 'prodml22:HcDewpoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:HcDewpoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *HcDewpoint; - /// Optional element 'prodml22:WaterDewpoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:WaterDewpoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *WaterDewpoint; - /// Optional element 'prodml22:WobbeIndex' of XML schema type 'eml23:IsothermalCompressibilityMeasure' + /// Optional element 'prodml23:WobbeIndex' of XML schema type 'eml23:IsothermalCompressibilityMeasure' eml23__IsothermalCompressibilityMeasure *WobbeIndex; - /// Optional element 'prodml22:GrossCalorificValueStd' of XML schema type 'eml23:EnergyPerVolumeMeasure' + /// Optional element 'prodml23:GrossCalorificValueStd' of XML schema type 'eml23:EnergyPerVolumeMeasure' eml23__EnergyPerVolumeMeasure *GrossCalorificValueStd; - /// Optional element 'prodml22:RvpStabilizedCrude' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:RvpStabilizedCrude' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *RvpStabilizedCrude; - /// Optional element 'prodml22:BswStabilizedCrude' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:BswStabilizedCrude' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *BswStabilizedCrude; - /// Optional element 'prodml22:DensityStabilizedCrude' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:DensityStabilizedCrude' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *DensityStabilizedCrude; - /// Optional element 'prodml22:DensityValue' of XML schema type 'eml23:DensityValue' + /// Optional element 'prodml23:DensityValue' of XML schema type 'eml23:DensityValue' std::vector DensityValue; - /// Optional element 'prodml22:VolumeValue' of XML schema type 'eml23:VolumeValue' + /// Optional element 'prodml23:VolumeValue' of XML schema type 'eml23:VolumeValue' std::vector VolumeValue; - /// Optional element 'prodml22:PortDiff' of XML schema type 'prodml22:ProductVolumePortDifference' - std::vector PortDiff; - /// Optional element 'prodml22:FlowRateValue' of XML schema type 'eml23:FlowRateValue' + /// Optional element 'prodml23:PortDiff' of XML schema type 'prodml23:ProductVolumePortDifference' + std::vector PortDiff; + /// Optional element 'prodml23:FlowRateValue' of XML schema type 'eml23:FlowRateValue' std::vector FlowRateValue; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32554,29 +32749,29 @@ class SOAP_CMAC prodml22__CommonPropertiesProductVolume { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CommonPropertiesProductVolume, default initialized and not managed by a soap context - virtual prodml22__CommonPropertiesProductVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CommonPropertiesProductVolume); } + /// Return a new object of type prodml23__CommonPropertiesProductVolume, default initialized and not managed by a soap context + virtual prodml23__CommonPropertiesProductVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CommonPropertiesProductVolume); } public: /// Constructor with default initializations - prodml22__CommonPropertiesProductVolume() : Gor(), GorMTD(), GasLiquidRatio(), WaterConcMass(), WaterConcVol(), Atmosphere(), Temp(), Pres(), AbsoluteMinPres(), Mass(), Work(), Efficiency(), Rvp(), Tvp(), Bsw(), BswPrevious(), DensityFlowRate(), Concentration(), MolecularWeight(), WeightPercent(), MolePercent(), MoleAmt(), Sg(), HcDewpoint(), WaterDewpoint(), WobbeIndex(), GrossCalorificValueStd(), RvpStabilizedCrude(), BswStabilizedCrude(), DensityStabilizedCrude(), DensityValue(), VolumeValue(), PortDiff(), FlowRateValue(), soap() { } + prodml23__CommonPropertiesProductVolume() : Gor(), GorMTD(), GasLiquidRatio(), WaterConcMass(), WaterConcVol(), Atmosphere(), Temp(), Pres(), AbsoluteMinPres(), Mass(), Work(), Efficiency(), Rvp(), Tvp(), Bsw(), BswPrevious(), DensityFlowRate(), Concentration(), MolecularWeight(), WeightPercent(), MolePercent(), MoleAmt(), Sg(), HcDewpoint(), WaterDewpoint(), WobbeIndex(), GrossCalorificValueStd(), RvpStabilizedCrude(), BswStabilizedCrude(), DensityStabilizedCrude(), DensityValue(), VolumeValue(), PortDiff(), FlowRateValue(), soap() { } /// Destructor - virtual ~prodml22__CommonPropertiesProductVolume() { } - /// Friend allocator used by soap_new_prodml22__CommonPropertiesProductVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__CommonPropertiesProductVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CommonPropertiesProductVolume() { } + /// Friend allocator used by soap_new_prodml23__CommonPropertiesProductVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__CommonPropertiesProductVolume * SOAP_FMAC2 soap_instantiate_prodml23__CommonPropertiesProductVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2579 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData (-1216) -/* complex XML schema type 'prodml22:AbstractMeasureData': */ -class SOAP_CMAC prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData (-1216) +/* complex XML schema type 'prodml23:AbstractMeasureData': */ +class SOAP_CMAC prodml23__AbstractMeasureData { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32589,41 +32784,41 @@ class SOAP_CMAC prodml22__AbstractMeasureData { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractMeasureData, default initialized and not managed by a soap context - virtual prodml22__AbstractMeasureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractMeasureData); } + /// Return a new object of type prodml23__AbstractMeasureData, default initialized and not managed by a soap context + virtual prodml23__AbstractMeasureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractMeasureData); } public: /// Constructor with default initializations - prodml22__AbstractMeasureData() : soap() { } + prodml23__AbstractMeasureData() : soap() { } /// Destructor - virtual ~prodml22__AbstractMeasureData() { } - /// Friend allocator used by soap_new_prodml22__AbstractMeasureData(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractMeasureData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractMeasureData() { } + /// Friend allocator used by soap_new_prodml23__AbstractMeasureData(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractMeasureData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractMeasureData(struct soap*, int, const char*, const char*, size_t*); }; #endif -/* eml2_3ForGsoap.h:55050 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__union_AbstractRefProductFlow -#define SOAP_TYPE_gsoap_eml2_3__prodml22__union_AbstractRefProductFlow (-2783) +/* eml2_3ForGsoap.h:55205 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__union_AbstractRefProductFlow +#define SOAP_TYPE_gsoap_eml2_3__prodml23__union_AbstractRefProductFlow (-2783) /* union serializable only when used as a member of a struct or class with a union variant selector */ -union _prodml22__union_AbstractRefProductFlow +union _prodml23__union_AbstractRefProductFlow { }; #endif /* eml2_3ForGsoap.h:2581 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow (-1217) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow (-1217) /* Choice: */ -class SOAP_CMAC prodml22__AbstractRefProductFlow { +class SOAP_CMAC prodml23__AbstractRefProductFlow { public: - /// Union with union _prodml22__union_AbstractRefProductFlow variant selector __union_AbstractRefProductFlow set to one of: + /// Union with union _prodml23__union_AbstractRefProductFlow variant selector __union_AbstractRefProductFlow set to one of: int __union_AbstractRefProductFlow; - union _prodml22__union_AbstractRefProductFlow union_AbstractRefProductFlow; + union _prodml23__union_AbstractRefProductFlow union_AbstractRefProductFlow; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32636,31 +32831,31 @@ class SOAP_CMAC prodml22__AbstractRefProductFlow { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractRefProductFlow, default initialized and not managed by a soap context - virtual prodml22__AbstractRefProductFlow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractRefProductFlow); } + /// Return a new object of type prodml23__AbstractRefProductFlow, default initialized and not managed by a soap context + virtual prodml23__AbstractRefProductFlow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractRefProductFlow); } public: /// Constructor with default initializations - prodml22__AbstractRefProductFlow() : __union_AbstractRefProductFlow(), soap() { } + prodml23__AbstractRefProductFlow() : __union_AbstractRefProductFlow(), soap() { } /// Destructor - virtual ~prodml22__AbstractRefProductFlow() { } - /// Friend allocator used by soap_new_prodml22__AbstractRefProductFlow(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRefProductFlow(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractRefProductFlow() { } + /// Friend allocator used by soap_new_prodml23__AbstractRefProductFlow(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractRefProductFlow * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRefProductFlow(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2583 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject (-1218) -/* complex XML schema type 'prodml22:AbstractRelatedFacilityObject': */ -class SOAP_CMAC prodml22__AbstractRelatedFacilityObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject (-1218) +/* complex XML schema type 'prodml23:AbstractRelatedFacilityObject': */ +class SOAP_CMAC prodml23__AbstractRelatedFacilityObject { public: - /// Required element 'prodml22:FacilityParent' of XML schema type 'prodml22:FacilityParent' - prodml22__FacilityParent *FacilityParent; + /// Required element 'prodml23:FacilityParent' of XML schema type 'prodml23:FacilityParent' + prodml23__FacilityParent *FacilityParent; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32673,41 +32868,41 @@ class SOAP_CMAC prodml22__AbstractRelatedFacilityObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractRelatedFacilityObject, default initialized and not managed by a soap context - virtual prodml22__AbstractRelatedFacilityObject *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractRelatedFacilityObject); } + /// Return a new object of type prodml23__AbstractRelatedFacilityObject, default initialized and not managed by a soap context + virtual prodml23__AbstractRelatedFacilityObject *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractRelatedFacilityObject); } public: /// Constructor with default initializations - prodml22__AbstractRelatedFacilityObject() : FacilityParent(), soap() { } + prodml23__AbstractRelatedFacilityObject() : FacilityParent(), soap() { } /// Destructor - virtual ~prodml22__AbstractRelatedFacilityObject() { } - /// Friend allocator used by soap_new_prodml22__AbstractRelatedFacilityObject(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate_prodml22__AbstractRelatedFacilityObject(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractRelatedFacilityObject() { } + /// Friend allocator used by soap_new_prodml23__AbstractRelatedFacilityObject(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractRelatedFacilityObject * SOAP_FMAC2 soap_instantiate_prodml23__AbstractRelatedFacilityObject(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2587 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition (-1220) -/* complex XML schema type 'prodml22:CurveDefinition': */ -class SOAP_CMAC prodml22__CurveDefinition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition (-1220) +/* complex XML schema type 'prodml23:CurveDefinition': */ +class SOAP_CMAC prodml23__CurveDefinition { public: - /// Required element 'prodml22:Order' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:Order' of XML schema type 'eml23:NonNegativeLong' LONG64 Order; - /// Required element 'prodml22:Parameter' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Parameter' of XML schema type 'eml23:String64' std::string Parameter; - /// Optional element 'prodml22:IsIndex' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:IsIndex' of XML schema type 'xsd:boolean' bool *IsIndex; - /// Required element 'prodml22:MeasureClass' of XML schema type 'eml23:MeasureClass' + /// Required element 'prodml23:MeasureClass' of XML schema type 'eml23:MeasureClass' eml23__MeasureClass MeasureClass; - /// Required element 'prodml22:Unit' of XML schema type 'eml23:UomEnum' + /// Required element 'prodml23:Unit' of XML schema type 'eml23:UomEnum' std::string Unit; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32720,29 +32915,29 @@ class SOAP_CMAC prodml22__CurveDefinition { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CurveDefinition, default initialized and not managed by a soap context - virtual prodml22__CurveDefinition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CurveDefinition); } + /// Return a new object of type prodml23__CurveDefinition, default initialized and not managed by a soap context + virtual prodml23__CurveDefinition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CurveDefinition); } public: /// Constructor with default initializations - prodml22__CurveDefinition() : Order(), Parameter(), IsIndex(), MeasureClass(), Unit(), uid(), soap() { } + prodml23__CurveDefinition() : Order(), Parameter(), IsIndex(), MeasureClass(), Unit(), uid(), soap() { } /// Destructor - virtual ~prodml22__CurveDefinition() { } - /// Friend allocator used by soap_new_prodml22__CurveDefinition(struct soap*, int) - friend SOAP_FMAC1 prodml22__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml22__CurveDefinition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CurveDefinition() { } + /// Friend allocator used by soap_new_prodml23__CurveDefinition(struct soap*, int) + friend SOAP_FMAC1 prodml23__CurveDefinition * SOAP_FMAC2 soap_instantiate_prodml23__CurveDefinition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2595 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct (-1224) -/* complex XML schema type 'prodml22:OwnershipBusinessAcct': */ -class SOAP_CMAC prodml22__OwnershipBusinessAcct { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct (-1224) +/* complex XML schema type 'prodml23:OwnershipBusinessAcct': */ +class SOAP_CMAC prodml23__OwnershipBusinessAcct { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32755,37 +32950,37 @@ class SOAP_CMAC prodml22__OwnershipBusinessAcct { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OwnershipBusinessAcct, default initialized and not managed by a soap context - virtual prodml22__OwnershipBusinessAcct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OwnershipBusinessAcct); } + /// Return a new object of type prodml23__OwnershipBusinessAcct, default initialized and not managed by a soap context + virtual prodml23__OwnershipBusinessAcct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OwnershipBusinessAcct); } public: /// Constructor with default initializations - prodml22__OwnershipBusinessAcct() : soap() { } + prodml23__OwnershipBusinessAcct() : soap() { } /// Destructor - virtual ~prodml22__OwnershipBusinessAcct() { } - /// Friend allocator used by soap_new_prodml22__OwnershipBusinessAcct(struct soap*, int) - friend SOAP_FMAC1 prodml22__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml22__OwnershipBusinessAcct(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OwnershipBusinessAcct() { } + /// Friend allocator used by soap_new_prodml23__OwnershipBusinessAcct(struct soap*, int) + friend SOAP_FMAC1 prodml23__OwnershipBusinessAcct * SOAP_FMAC2 soap_instantiate_prodml23__OwnershipBusinessAcct(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2601 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert (-1227) -/* complex XML schema type 'prodml22:ProductVolumeAlert': */ -class SOAP_CMAC prodml22__ProductVolumeAlert { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert (-1227) +/* complex XML schema type 'prodml23:ProductVolumeAlert': */ +class SOAP_CMAC prodml23__ProductVolumeAlert { public: - /// Optional element 'prodml22:Target' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Target' of XML schema type 'eml23:String2000' std::string *Target; - /// Optional element 'prodml22:Level' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Level' of XML schema type 'eml23:String64' std::string *Level; - /// Optional element 'prodml22:Type' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Type' of XML schema type 'eml23:String64' std::string *Type; - /// Optional element 'prodml22:Description' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Description' of XML schema type 'eml23:String2000' std::string *Description; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32798,47 +32993,47 @@ class SOAP_CMAC prodml22__ProductVolumeAlert { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeAlert, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeAlert *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeAlert); } + /// Return a new object of type prodml23__ProductVolumeAlert, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeAlert *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeAlert); } public: /// Constructor with default initializations - prodml22__ProductVolumeAlert() : Target(), Level(), Type(), Description(), soap() { } + prodml23__ProductVolumeAlert() : Target(), Level(), Type(), Description(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeAlert() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeAlert(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeAlert(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeAlert() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeAlert(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeAlert * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeAlert(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2603 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail (-1228) -/* complex XML schema type 'prodml22:ProductVolumeBalanceDetail': */ -class SOAP_CMAC prodml22__ProductVolumeBalanceDetail { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail (-1228) +/* complex XML schema type 'prodml23:ProductVolumeBalanceDetail': */ +class SOAP_CMAC prodml23__ProductVolumeBalanceDetail { public: - /// Required element 'prodml22:Owner' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Owner' of XML schema type 'eml23:String64' std::string Owner; - /// Optional element 'prodml22:SourceUnit' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SourceUnit' of XML schema type 'eml23:String64' std::string *SourceUnit; - /// Optional element 'prodml22:Share' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:Share' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *Share; - /// Optional element 'prodml22:AccountNumber' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:AccountNumber' of XML schema type 'eml23:String64' std::string *AccountNumber; - /// Optional element 'prodml22:SampleAnalysisResult' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SampleAnalysisResult' of XML schema type 'eml23:String64' std::vector SampleAnalysisResult; - /// Optional element 'prodml22:VolumeValue' of XML schema type 'eml23:VolumeValue' + /// Optional element 'prodml23:VolumeValue' of XML schema type 'eml23:VolumeValue' std::vector VolumeValue; - /// Optional element 'prodml22:ComponentContent' of XML schema type 'prodml22:ProductVolumeComponentContent' - std::vector ComponentContent; - /// Optional element 'prodml22:Event' of XML schema type 'prodml22:ProductVolumeBalanceEvent' - std::vector Event; + /// Optional element 'prodml23:ComponentContent' of XML schema type 'prodml23:ProductVolumeComponentContent' + std::vector ComponentContent; + /// Optional element 'prodml23:Event' of XML schema type 'prodml23:ProductVolumeBalanceEvent' + std::vector Event; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32851,35 +33046,35 @@ class SOAP_CMAC prodml22__ProductVolumeBalanceDetail { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeBalanceDetail, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeBalanceDetail *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeBalanceDetail); } + /// Return a new object of type prodml23__ProductVolumeBalanceDetail, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeBalanceDetail *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeBalanceDetail); } public: /// Constructor with default initializations - prodml22__ProductVolumeBalanceDetail() : Owner(), SourceUnit(), Share(), AccountNumber(), SampleAnalysisResult(), VolumeValue(), ComponentContent(), Event(), uid(), soap() { } + prodml23__ProductVolumeBalanceDetail() : Owner(), SourceUnit(), Share(), AccountNumber(), SampleAnalysisResult(), VolumeValue(), ComponentContent(), Event(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeBalanceDetail() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeBalanceDetail(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceDetail(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeBalanceDetail() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeBalanceDetail(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeBalanceDetail * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceDetail(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2605 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent (-1229) -/* complex XML schema type 'prodml22:ProductVolumeBalanceEvent': */ -class SOAP_CMAC prodml22__ProductVolumeBalanceEvent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent (-1229) +/* complex XML schema type 'prodml23:ProductVolumeBalanceEvent': */ +class SOAP_CMAC prodml23__ProductVolumeBalanceEvent { public: - /// Required element 'prodml22:Date' of XML schema type 'xsd:date' + /// Required element 'prodml23:Date' of XML schema type 'xsd:date' std::string Date; - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:BalanceEventKind' - prodml22__BalanceEventKind Kind; + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:BalanceEventKind' + prodml23__BalanceEventKind Kind; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32892,43 +33087,43 @@ class SOAP_CMAC prodml22__ProductVolumeBalanceEvent { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeBalanceEvent, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeBalanceEvent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeBalanceEvent); } + /// Return a new object of type prodml23__ProductVolumeBalanceEvent, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeBalanceEvent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeBalanceEvent); } public: /// Constructor with default initializations - prodml22__ProductVolumeBalanceEvent() : Date(), Kind(), uid(), soap() { } + prodml23__ProductVolumeBalanceEvent() : Date(), Kind(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeBalanceEvent() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeBalanceEvent(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceEvent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeBalanceEvent() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeBalanceEvent(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeBalanceEvent * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceEvent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2607 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet (-1230) -/* complex XML schema type 'prodml22:ProductVolumeBalanceSet': */ -class SOAP_CMAC prodml22__ProductVolumeBalanceSet { - public: - /// Optional element 'prodml22:Kind' of XML schema type 'prodml22:BalanceFlowPart' - prodml22__BalanceFlowPart *Kind; - /// Optional element 'prodml22:CargoNumber' of XML schema type 'eml23:String64' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet (-1230) +/* complex XML schema type 'prodml23:ProductVolumeBalanceSet': */ +class SOAP_CMAC prodml23__ProductVolumeBalanceSet { + public: + /// Optional element 'prodml23:Kind' of XML schema type 'prodml23:BalanceFlowPart' + prodml23__BalanceFlowPart *Kind; + /// Optional element 'prodml23:CargoNumber' of XML schema type 'eml23:String64' std::string *CargoNumber; - /// Optional element 'prodml22:CargoBatchNumber' of XML schema type 'xsd:nonNegativeInteger' + /// Optional element 'prodml23:CargoBatchNumber' of XML schema type 'xsd:nonNegativeInteger' ULONG64 *CargoBatchNumber; - /// Optional element 'prodml22:Shipper' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Shipper' of XML schema type 'eml23:String64' std::string *Shipper; - /// Optional element 'prodml22:BalanceDetail' of XML schema type 'prodml22:ProductVolumeBalanceDetail' - std::vector BalanceDetail; - /// Optional element 'prodml22:Destination' of XML schema type 'prodml22:ProductVolumeDestination' - prodml22__ProductVolumeDestination *Destination; + /// Optional element 'prodml23:BalanceDetail' of XML schema type 'prodml23:ProductVolumeBalanceDetail' + std::vector BalanceDetail; + /// Optional element 'prodml23:Destination' of XML schema type 'prodml23:ProductVolumeDestination' + prodml23__ProductVolumeDestination *Destination; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32941,35 +33136,35 @@ class SOAP_CMAC prodml22__ProductVolumeBalanceSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeBalanceSet, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeBalanceSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeBalanceSet); } + /// Return a new object of type prodml23__ProductVolumeBalanceSet, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeBalanceSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeBalanceSet); } public: /// Constructor with default initializations - prodml22__ProductVolumeBalanceSet() : Kind(), CargoNumber(), CargoBatchNumber(), Shipper(), BalanceDetail(), Destination(), uid(), soap() { } + prodml23__ProductVolumeBalanceSet() : Kind(), CargoNumber(), CargoBatchNumber(), Shipper(), BalanceDetail(), Destination(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeBalanceSet() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeBalanceSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBalanceSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeBalanceSet() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeBalanceSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeBalanceSet * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBalanceSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2609 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit (-1231) -/* complex XML schema type 'prodml22:ProductVolumeBusinessSubUnit': */ -class SOAP_CMAC prodml22__ProductVolumeBusinessSubUnit { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit (-1231) +/* complex XML schema type 'prodml23:ProductVolumeBusinessSubUnit': */ +class SOAP_CMAC prodml23__ProductVolumeBusinessSubUnit { public: - /// Required element 'prodml22:Kind' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Kind' of XML schema type 'eml23:String64' std::string Kind; - /// Required element 'prodml22:OwnershipBusinessAcct' of XML schema type 'prodml22:OwnershipBusinessAcct' - prodml22__OwnershipBusinessAcct *OwnershipBusinessAcct; + /// Required element 'prodml23:OwnershipBusinessAcct' of XML schema type 'prodml23:OwnershipBusinessAcct' + prodml23__OwnershipBusinessAcct *OwnershipBusinessAcct; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -32982,39 +33177,39 @@ class SOAP_CMAC prodml22__ProductVolumeBusinessSubUnit { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeBusinessSubUnit, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeBusinessSubUnit *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeBusinessSubUnit); } + /// Return a new object of type prodml23__ProductVolumeBusinessSubUnit, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeBusinessSubUnit *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeBusinessSubUnit); } public: /// Constructor with default initializations - prodml22__ProductVolumeBusinessSubUnit() : Kind(), OwnershipBusinessAcct(), uid(), soap() { } + prodml23__ProductVolumeBusinessSubUnit() : Kind(), OwnershipBusinessAcct(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeBusinessSubUnit() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeBusinessSubUnit(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBusinessSubUnit(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeBusinessSubUnit() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeBusinessSubUnit(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeBusinessSubUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBusinessSubUnit(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2611 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit (-1232) -/* complex XML schema type 'prodml22:ProductVolumeBusinessUnit': */ -class SOAP_CMAC prodml22__ProductVolumeBusinessUnit { - public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:BusinessUnitKind' - prodml22__BusinessUnitKind Kind; - /// Optional element 'prodml22:Name' of XML schema type 'eml23:String64' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit (-1232) +/* complex XML schema type 'prodml23:ProductVolumeBusinessUnit': */ +class SOAP_CMAC prodml23__ProductVolumeBusinessUnit { + public: + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:BusinessUnitKind' + prodml23__BusinessUnitKind Kind; + /// Optional element 'prodml23:Name' of XML schema type 'eml23:String64' std::string *Name; - /// Optional element 'prodml22:Description' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Description' of XML schema type 'eml23:String2000' std::string *Description; - /// Optional element 'prodml22:SubUnit' of XML schema type 'prodml22:ProductVolumeBusinessSubUnit' - std::vector SubUnit; + /// Optional element 'prodml23:SubUnit' of XML schema type 'prodml23:ProductVolumeBusinessSubUnit' + std::vector SubUnit; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33027,37 +33222,37 @@ class SOAP_CMAC prodml22__ProductVolumeBusinessUnit { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeBusinessUnit, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeBusinessUnit *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeBusinessUnit); } + /// Return a new object of type prodml23__ProductVolumeBusinessUnit, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeBusinessUnit *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeBusinessUnit); } public: /// Constructor with default initializations - prodml22__ProductVolumeBusinessUnit() : Kind(), Name(), Description(), SubUnit(), uid(), soap() { } + prodml23__ProductVolumeBusinessUnit() : Kind(), Name(), Description(), SubUnit(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeBusinessUnit() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeBusinessUnit(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeBusinessUnit(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeBusinessUnit() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeBusinessUnit(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeBusinessUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeBusinessUnit(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2613 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent (-1233) -/* complex XML schema type 'prodml22:ProductVolumeComponentContent': */ -class SOAP_CMAC prodml22__ProductVolumeComponentContent { - public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:ReportingProduct' - prodml22__ReportingProduct Kind; - /// Optional element 'prodml22:ReferenceKind' of XML schema type 'prodml22:ReportingProduct' - prodml22__ReportingProduct *ReferenceKind; - /// Optional element 'prodml22:Properties' of XML schema type 'prodml22:CommonPropertiesProductVolume' - prodml22__CommonPropertiesProductVolume *Properties; +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent (-1233) +/* complex XML schema type 'prodml23:ProductVolumeComponentContent': */ +class SOAP_CMAC prodml23__ProductVolumeComponentContent { + public: + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:ReportingProduct' + prodml23__ReportingProduct Kind; + /// Optional element 'prodml23:ReferenceKind' of XML schema type 'prodml23:ReportingProduct' + prodml23__ReportingProduct *ReferenceKind; + /// Optional element 'prodml23:Properties' of XML schema type 'prodml23:CommonPropertiesProductVolume' + prodml23__CommonPropertiesProductVolume *Properties; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33070,35 +33265,35 @@ class SOAP_CMAC prodml22__ProductVolumeComponentContent { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeComponentContent, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeComponentContent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeComponentContent); } + /// Return a new object of type prodml23__ProductVolumeComponentContent, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeComponentContent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeComponentContent); } public: /// Constructor with default initializations - prodml22__ProductVolumeComponentContent() : Kind(), ReferenceKind(), Properties(), uid(), soap() { } + prodml23__ProductVolumeComponentContent() : Kind(), ReferenceKind(), Properties(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeComponentContent() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeComponentContent(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeComponentContent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeComponentContent() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeComponentContent(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeComponentContent * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeComponentContent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2615 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination (-1234) -/* complex XML schema type 'prodml22:ProductVolumeDestination': */ -class SOAP_CMAC prodml22__ProductVolumeDestination { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination (-1234) +/* complex XML schema type 'prodml23:ProductVolumeDestination': */ +class SOAP_CMAC prodml23__ProductVolumeDestination { public: - /// Optional element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Name' of XML schema type 'eml23:String64' std::string *Name; - /// Optional element 'prodml22:Type' of XML schema type 'prodml22:BalanceDestinationType' - prodml22__BalanceDestinationType *Type; - /// Optional element 'prodml22:Country' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Type' of XML schema type 'prodml23:BalanceDestinationType' + prodml23__BalanceDestinationType *Type; + /// Optional element 'prodml23:Country' of XML schema type 'eml23:String64' std::string *Country; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33111,65 +33306,65 @@ class SOAP_CMAC prodml22__ProductVolumeDestination { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeDestination, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeDestination *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeDestination); } + /// Return a new object of type prodml23__ProductVolumeDestination, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeDestination *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeDestination); } public: /// Constructor with default initializations - prodml22__ProductVolumeDestination() : Name(), Type(), Country(), soap() { } + prodml23__ProductVolumeDestination() : Name(), Type(), Country(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeDestination() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeDestination(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeDestination(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeDestination() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeDestination(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeDestination * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeDestination(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2617 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility (-1235) -/* complex XML schema type 'prodml22:ProductVolumeFacility': */ -class SOAP_CMAC prodml22__ProductVolumeFacility { - public: - /// Optional element 'prodml22:FacilityParent' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *FacilityParent; - /// Optional element 'prodml22:FacilityParent2' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *FacilityParent2; - /// Optional element 'prodml22:FacilityAlias' of XML schema type 'eml23:NameStruct' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility (-1235) +/* complex XML schema type 'prodml23:ProductVolumeFacility': */ +class SOAP_CMAC prodml23__ProductVolumeFacility { + public: + /// Optional element 'prodml23:FacilityParent' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *FacilityParent; + /// Optional element 'prodml23:FacilityParent2' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *FacilityParent2; + /// Optional element 'prodml23:FacilityAlias' of XML schema type 'eml23:NameStruct' std::vector FacilityAlias; - /// Optional element 'prodml22:Unit' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Unit' of XML schema type 'eml23:String64' std::string *Unit; - /// Optional element 'prodml22:NetWork' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:NetWork' of XML schema type 'eml23:String64' std::string *NetWork; - /// Required element 'prodml22:Name' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Name; - /// Optional element 'prodml22:StatusWell' of XML schema type 'eml23:WellStatus' + /// Required element 'prodml23:Name' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Name; + /// Optional element 'prodml23:StatusWell' of XML schema type 'eml23:WellStatus' eml23__WellStatus *StatusWell; - /// Optional element 'prodml22:FluidWell' of XML schema type 'prodml22:WellFluid' - prodml22__WellFluid *FluidWell; - /// Optional element 'prodml22:OperatingMethod' of XML schema type 'prodml22:WellOperationMethod' - prodml22__WellOperationMethod *OperatingMethod; - /// Optional element 'prodml22:WellProducing' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:FluidWell' of XML schema type 'prodml23:WellFluid' + prodml23__WellFluid *FluidWell; + /// Optional element 'prodml23:OperatingMethod' of XML schema type 'prodml23:WellOperationMethod' + prodml23__WellOperationMethod *OperatingMethod; + /// Optional element 'prodml23:WellProducing' of XML schema type 'xsd:boolean' bool *WellProducing; - /// Optional element 'prodml22:WellInjecting' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:WellInjecting' of XML schema type 'xsd:boolean' bool *WellInjecting; - /// Optional element 'prodml22:Capacity' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:Capacity' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *Capacity; - /// Optional element 'prodml22:OperationTime' of XML schema type 'eml23:TimeMeasure' + /// Optional element 'prodml23:OperationTime' of XML schema type 'eml23:TimeMeasure' eml23__TimeMeasure *OperationTime; - /// Optional element 'prodml22:Flow' of XML schema type 'prodml22:ProductVolumeFlow' - std::vector Flow; - /// Optional element 'prodml22:ParameterSet' of XML schema type 'prodml22:ProductVolumeParameterSet' - std::vector ParameterSet; - /// Optional element 'prodml22:Comment' of XML schema type 'prodml22:DatedComment' - std::vector Comment; - /// Optional element 'prodml22:DowntimeReason' of XML schema type 'prodml22:DatedComment' - std::vector DowntimeReason; + /// Optional element 'prodml23:Flow' of XML schema type 'prodml23:ProductVolumeFlow' + std::vector Flow; + /// Optional element 'prodml23:ParameterSet' of XML schema type 'prodml23:ProductVolumeParameterSet' + std::vector ParameterSet; + /// Optional element 'prodml23:Comment' of XML schema type 'prodml23:DatedComment' + std::vector Comment; + /// Optional element 'prodml23:DowntimeReason' of XML schema type 'prodml23:DatedComment' + std::vector DowntimeReason; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33182,59 +33377,59 @@ class SOAP_CMAC prodml22__ProductVolumeFacility { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeFacility, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeFacility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeFacility); } + /// Return a new object of type prodml23__ProductVolumeFacility, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeFacility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeFacility); } public: /// Constructor with default initializations - prodml22__ProductVolumeFacility() : FacilityParent(), FacilityParent2(), FacilityAlias(), Unit(), NetWork(), Name(), StatusWell(), FluidWell(), OperatingMethod(), WellProducing(), WellInjecting(), Capacity(), OperationTime(), Flow(), ParameterSet(), Comment(), DowntimeReason(), uid(), soap() { } + prodml23__ProductVolumeFacility() : FacilityParent(), FacilityParent2(), FacilityAlias(), Unit(), NetWork(), Name(), StatusWell(), FluidWell(), OperatingMethod(), WellProducing(), WellInjecting(), Capacity(), OperationTime(), Flow(), ParameterSet(), Comment(), DowntimeReason(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeFacility() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeFacility(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeFacility(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeFacility() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeFacility(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeFacility * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeFacility(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2619 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow (-1236) -/* complex XML schema type 'prodml22:ProductVolumeFlow': */ -class SOAP_CMAC prodml22__ProductVolumeFlow { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow (-1236) +/* complex XML schema type 'prodml23:ProductVolumeFlow': */ +class SOAP_CMAC prodml23__ProductVolumeFlow { public: - /// Optional element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Name' of XML schema type 'eml23:String64' std::string *Name; - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:ReportingFlow' - prodml22__ReportingFlow Kind; - /// Optional element 'prodml22:Port' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:ReportingFlow' + prodml23__ReportingFlow Kind; + /// Optional element 'prodml23:Port' of XML schema type 'eml23:String64' std::string *Port; - /// Optional element 'prodml22:Direction' of XML schema type 'prodml22:ProductFlowPortType' - prodml22__ProductFlowPortType *Direction; - /// Optional element 'prodml22:Facility' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Facility; - /// Optional element 'prodml22:FacilityAlias' of XML schema type 'eml23:NameStruct' + /// Optional element 'prodml23:Direction' of XML schema type 'prodml23:ProductFlowPortType' + prodml23__ProductFlowPortType *Direction; + /// Optional element 'prodml23:Facility' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Facility; + /// Optional element 'prodml23:FacilityAlias' of XML schema type 'eml23:NameStruct' std::vector FacilityAlias; - /// Optional element 'prodml22:Qualifier' of XML schema type 'prodml22:FlowQualifier' - prodml22__FlowQualifier *Qualifier; - /// Optional element 'prodml22:SubQualifier' of XML schema type 'prodml22:FlowSubQualifier' - prodml22__FlowSubQualifier *SubQualifier; - /// Optional element 'prodml22:Version' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:Qualifier' of XML schema type 'prodml23:FlowQualifier' + prodml23__FlowQualifier *Qualifier; + /// Optional element 'prodml23:SubQualifier' of XML schema type 'prodml23:FlowSubQualifier' + prodml23__FlowSubQualifier *SubQualifier; + /// Optional element 'prodml23:Version' of XML schema type 'eml23:TimeStamp' struct tm *Version; - /// Optional element 'prodml22:VersionSource' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:VersionSource' of XML schema type 'eml23:String64' std::string *VersionSource; - /// Optional element 'prodml22:SourceFlow' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SourceFlow' of XML schema type 'eml23:String64' std::string *SourceFlow; - /// Optional element 'prodml22:RelatedFacility' of XML schema type 'prodml22:ProductVolumeRelatedFacility' - prodml22__ProductVolumeRelatedFacility *RelatedFacility; - /// Optional element 'prodml22:Product' of XML schema type 'prodml22:ProductVolumeProduct' - std::vector Product; - /// Optional element 'prodml22:Properties' of XML schema type 'prodml22:CommonPropertiesProductVolume' - prodml22__CommonPropertiesProductVolume *Properties; + /// Optional element 'prodml23:RelatedFacility' of XML schema type 'prodml23:ProductVolumeRelatedFacility' + prodml23__ProductVolumeRelatedFacility *RelatedFacility; + /// Optional element 'prodml23:Product' of XML schema type 'prodml23:ProductVolumeProduct' + std::vector Product; + /// Optional element 'prodml23:Properties' of XML schema type 'prodml23:CommonPropertiesProductVolume' + prodml23__CommonPropertiesProductVolume *Properties; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33247,59 +33442,59 @@ class SOAP_CMAC prodml22__ProductVolumeFlow { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeFlow, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeFlow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeFlow); } + /// Return a new object of type prodml23__ProductVolumeFlow, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeFlow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeFlow); } public: /// Constructor with default initializations - prodml22__ProductVolumeFlow() : Name(), Kind(), Port(), Direction(), Facility(), FacilityAlias(), Qualifier(), SubQualifier(), Version(), VersionSource(), SourceFlow(), RelatedFacility(), Product(), Properties(), uid(), soap() { } + prodml23__ProductVolumeFlow() : Name(), Kind(), Port(), Direction(), Facility(), FacilityAlias(), Qualifier(), SubQualifier(), Version(), VersionSource(), SourceFlow(), RelatedFacility(), Product(), Properties(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeFlow() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeFlow(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeFlow(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeFlow() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeFlow(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeFlow * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeFlow(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2621 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet (-1237) -/* complex XML schema type 'prodml22:ProductVolumeParameterSet': */ -class SOAP_CMAC prodml22__ProductVolumeParameterSet { - public: - /// Required element 'prodml22:Name' of XML schema type 'prodml22:FacilityParameter' - prodml22__FacilityParameter Name; - /// Optional element 'prodml22:ChildFacilityIdentifier' of XML schema type 'prodml22:ProdmlRelativeIdentifier' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet (-1237) +/* complex XML schema type 'prodml23:ProductVolumeParameterSet': */ +class SOAP_CMAC prodml23__ProductVolumeParameterSet { + public: + /// Required element 'prodml23:Name' of XML schema type 'prodml23:FacilityParameter' + prodml23__FacilityParameter Name; + /// Optional element 'prodml23:ChildFacilityIdentifier' of XML schema type 'prodml23:ProdmlRelativeIdentifier' std::string *ChildFacilityIdentifier; - /// Optional element 'prodml22:Port' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Port' of XML schema type 'eml23:String64' std::string *Port; - /// Optional element 'prodml22:MeasureClass' of XML schema type 'eml23:MeasureClass' + /// Optional element 'prodml23:MeasureClass' of XML schema type 'eml23:MeasureClass' eml23__MeasureClass *MeasureClass; - /// Optional element 'prodml22:CoordinateReferenceSystem' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:CoordinateReferenceSystem' of XML schema type 'eml23:String64' std::string *CoordinateReferenceSystem; - /// Optional element 'prodml22:Qualifier' of XML schema type 'prodml22:FlowQualifier' - prodml22__FlowQualifier *Qualifier; - /// Optional element 'prodml22:SubQualifier' of XML schema type 'prodml22:FlowSubQualifier' - prodml22__FlowSubQualifier *SubQualifier; - /// Optional element 'prodml22:Version' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:Qualifier' of XML schema type 'prodml23:FlowQualifier' + prodml23__FlowQualifier *Qualifier; + /// Optional element 'prodml23:SubQualifier' of XML schema type 'prodml23:FlowSubQualifier' + prodml23__FlowSubQualifier *SubQualifier; + /// Optional element 'prodml23:Version' of XML schema type 'eml23:TimeStamp' struct tm *Version; - /// Optional element 'prodml22:VersionSource' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:VersionSource' of XML schema type 'eml23:String64' std::string *VersionSource; - /// Optional element 'prodml22:Product' of XML schema type 'prodml22:ReportingProduct' - prodml22__ReportingProduct *Product; - /// Optional element 'prodml22:PeriodKind' of XML schema type 'prodml22:ReportingDurationKind' - prodml22__ReportingDurationKind *PeriodKind; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Product' of XML schema type 'prodml23:ReportingProduct' + prodml23__ReportingProduct *Product; + /// Optional element 'prodml23:PeriodKind' of XML schema type 'prodml23:ReportingDurationKind' + prodml23__ReportingDurationKind *PeriodKind; + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Required element 'prodml22:Parameter' of XML schema type 'prodml22:ProductVolumeParameterValue' - std::vector Parameter; - /// Optional element 'prodml22:CurveDefinition' of XML schema type 'prodml22:CurveDefinition' - std::vector CurveDefinition; + /// Required element 'prodml23:Parameter' of XML schema type 'prodml23:ProductVolumeParameterValue' + std::vector Parameter; + /// Optional element 'prodml23:CurveDefinition' of XML schema type 'prodml23:CurveDefinition' + std::vector CurveDefinition; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33312,43 +33507,43 @@ class SOAP_CMAC prodml22__ProductVolumeParameterSet { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeParameterSet, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeParameterSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeParameterSet); } + /// Return a new object of type prodml23__ProductVolumeParameterSet, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeParameterSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeParameterSet); } public: /// Constructor with default initializations - prodml22__ProductVolumeParameterSet() : Name(), ChildFacilityIdentifier(), Port(), MeasureClass(), CoordinateReferenceSystem(), Qualifier(), SubQualifier(), Version(), VersionSource(), Product(), PeriodKind(), Comment(), Parameter(), CurveDefinition(), uid(), soap() { } + prodml23__ProductVolumeParameterSet() : Name(), ChildFacilityIdentifier(), Port(), MeasureClass(), CoordinateReferenceSystem(), Qualifier(), SubQualifier(), Version(), VersionSource(), Product(), PeriodKind(), Comment(), Parameter(), CurveDefinition(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeParameterSet() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeParameterSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeParameterSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeParameterSet() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeParameterSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeParameterSet * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeParameterSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2623 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue (-1238) -/* complex XML schema type 'prodml22:ProductVolumeParameterValue': */ -class SOAP_CMAC prodml22__ProductVolumeParameterValue { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue (-1238) +/* complex XML schema type 'prodml23:ProductVolumeParameterValue': */ +class SOAP_CMAC prodml23__ProductVolumeParameterValue { public: - /// Optional element 'prodml22:DTim' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTim' of XML schema type 'eml23:TimeStamp' struct tm *DTim; - /// Optional element 'prodml22:DTimEnd' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTimEnd' of XML schema type 'eml23:TimeStamp' struct tm *DTimEnd; - /// Optional element 'prodml22:Port' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Port' of XML schema type 'eml23:String64' std::string *Port; - /// Optional element 'prodml22:Unit' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Unit' of XML schema type 'eml23:String64' std::string *Unit; - /// Required element 'prodml22:MeasureDataType' of XML schema type 'prodml22:AbstractMeasureData' - std::vector MeasureDataType; - /// Optional element 'prodml22:Alert' of XML schema type 'prodml22:ProductVolumeAlert' - prodml22__ProductVolumeAlert *Alert; + /// Required element 'prodml23:MeasureDataType' of XML schema type 'prodml23:AbstractMeasureData' + std::vector MeasureDataType; + /// Optional element 'prodml23:Alert' of XML schema type 'prodml23:ProductVolumeAlert' + prodml23__ProductVolumeAlert *Alert; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33361,45 +33556,45 @@ class SOAP_CMAC prodml22__ProductVolumeParameterValue { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeParameterValue, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeParameterValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeParameterValue); } + /// Return a new object of type prodml23__ProductVolumeParameterValue, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeParameterValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeParameterValue); } public: /// Constructor with default initializations - prodml22__ProductVolumeParameterValue() : DTim(), DTimEnd(), Port(), Unit(), MeasureDataType(), Alert(), uid(), soap() { } + prodml23__ProductVolumeParameterValue() : DTim(), DTimEnd(), Port(), Unit(), MeasureDataType(), Alert(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeParameterValue() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeParameterValue(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeParameterValue(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeParameterValue() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeParameterValue(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeParameterValue * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeParameterValue(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2625 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod (-1239) -/* complex XML schema type 'prodml22:ProductVolumePeriod': */ -class SOAP_CMAC prodml22__ProductVolumePeriod { - public: - /// Optional element 'prodml22:Kind' of XML schema type 'prodml22:ReportingDurationKind' - prodml22__ReportingDurationKind *Kind; - /// Optional element 'prodml22:Comment' of XML schema type 'prodml22:DatedComment' - std::vector Comment; - /// Optional element 'prodml22:BalanceSet' of XML schema type 'prodml22:ProductVolumeBalanceSet' - std::vector BalanceSet; - /// Optional element 'prodml22:ComponentContent' of XML schema type 'prodml22:ProductVolumeComponentContent' - std::vector ComponentContent; - /// Optional element 'prodml22:Properties' of XML schema type 'prodml22:CommonPropertiesProductVolume' - prodml22__CommonPropertiesProductVolume *Properties; - /// Optional element 'prodml22:Alert' of XML schema type 'prodml22:ProductVolumeAlert' - prodml22__ProductVolumeAlert *Alert; - /// Optional element 'prodml22:DateTime' of XML schema type 'prodml22:AbstractDateTimeClass' - prodml22__AbstractDateTimeClass *DateTime; +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod (-1239) +/* complex XML schema type 'prodml23:ProductVolumePeriod': */ +class SOAP_CMAC prodml23__ProductVolumePeriod { + public: + /// Optional element 'prodml23:Kind' of XML schema type 'prodml23:ReportingDurationKind' + prodml23__ReportingDurationKind *Kind; + /// Optional element 'prodml23:Comment' of XML schema type 'prodml23:DatedComment' + std::vector Comment; + /// Optional element 'prodml23:BalanceSet' of XML schema type 'prodml23:ProductVolumeBalanceSet' + std::vector BalanceSet; + /// Optional element 'prodml23:ComponentContent' of XML schema type 'prodml23:ProductVolumeComponentContent' + std::vector ComponentContent; + /// Optional element 'prodml23:Properties' of XML schema type 'prodml23:CommonPropertiesProductVolume' + prodml23__CommonPropertiesProductVolume *Properties; + /// Optional element 'prodml23:Alert' of XML schema type 'prodml23:ProductVolumeAlert' + prodml23__ProductVolumeAlert *Alert; + /// Optional element 'prodml23:DateTime' of XML schema type 'prodml23:AbstractDateTimeClass' + prodml23__AbstractDateTimeClass *DateTime; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33412,41 +33607,41 @@ class SOAP_CMAC prodml22__ProductVolumePeriod { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumePeriod, default initialized and not managed by a soap context - virtual prodml22__ProductVolumePeriod *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumePeriod); } + /// Return a new object of type prodml23__ProductVolumePeriod, default initialized and not managed by a soap context + virtual prodml23__ProductVolumePeriod *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumePeriod); } public: /// Constructor with default initializations - prodml22__ProductVolumePeriod() : Kind(), Comment(), BalanceSet(), ComponentContent(), Properties(), Alert(), DateTime(), uid(), soap() { } + prodml23__ProductVolumePeriod() : Kind(), Comment(), BalanceSet(), ComponentContent(), Properties(), Alert(), DateTime(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumePeriod() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumePeriod(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumePeriod(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumePeriod() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumePeriod(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumePeriod * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumePeriod(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2627 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference (-1240) -/* complex XML schema type 'prodml22:ProductVolumePortDifference': */ -class SOAP_CMAC prodml22__ProductVolumePortDifference { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference (-1240) +/* complex XML schema type 'prodml23:ProductVolumePortDifference': */ +class SOAP_CMAC prodml23__ProductVolumePortDifference { public: - /// Optional element 'prodml22:PortReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PortReference' of XML schema type 'eml23:String64' std::string *PortReference; - /// Optional element 'prodml22:PresDiff' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:PresDiff' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *PresDiff; - /// Optional element 'prodml22:TempDiff' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:TempDiff' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TempDiff; - /// Optional element 'prodml22:ChokeSize' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:ChokeSize' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *ChokeSize; - /// Optional element 'prodml22:ChokeRelative' of XML schema type 'eml23:LengthPerLengthMeasure' + /// Optional element 'prodml23:ChokeRelative' of XML schema type 'eml23:LengthPerLengthMeasure' eml23__LengthPerLengthMeasure *ChokeRelative; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33459,49 +33654,49 @@ class SOAP_CMAC prodml22__ProductVolumePortDifference { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumePortDifference, default initialized and not managed by a soap context - virtual prodml22__ProductVolumePortDifference *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumePortDifference); } + /// Return a new object of type prodml23__ProductVolumePortDifference, default initialized and not managed by a soap context + virtual prodml23__ProductVolumePortDifference *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumePortDifference); } public: /// Constructor with default initializations - prodml22__ProductVolumePortDifference() : PortReference(), PresDiff(), TempDiff(), ChokeSize(), ChokeRelative(), uid(), soap() { } + prodml23__ProductVolumePortDifference() : PortReference(), PresDiff(), TempDiff(), ChokeSize(), ChokeRelative(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumePortDifference() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumePortDifference(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumePortDifference(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumePortDifference() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumePortDifference(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumePortDifference * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumePortDifference(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2629 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct (-1241) -/* complex XML schema type 'prodml22:ProductVolumeProduct': */ -class SOAP_CMAC prodml22__ProductVolumeProduct { - public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:ReportingProduct' - prodml22__ReportingProduct Kind; - /// Optional element 'prodml22:Name' of XML schema type 'eml23:NameStruct' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct (-1241) +/* complex XML schema type 'prodml23:ProductVolumeProduct': */ +class SOAP_CMAC prodml23__ProductVolumeProduct { + public: + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:ReportingProduct' + prodml23__ReportingProduct Kind; + /// Optional element 'prodml23:Name' of XML schema type 'eml23:NameStruct' eml23__NameStruct *Name; - /// Optional element 'prodml22:SplitFactor' of XML schema type 'prodml22:NonNegativeFraction' + /// Optional element 'prodml23:SplitFactor' of XML schema type 'prodml23:NonNegativeFraction' float *SplitFactor; - /// Optional element 'prodml22:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:MassFraction' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *MassFraction; - /// Optional element 'prodml22:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' + /// Optional element 'prodml23:MoleFraction' of XML schema type 'eml23:AmountOfSubstancePerAmountOfSubstanceMeasure' eml23__AmountOfSubstancePerAmountOfSubstanceMeasure *MoleFraction; - /// Optional element 'prodml22:ComponentContent' of XML schema type 'prodml22:ProductVolumeComponentContent' - std::vector ComponentContent; - /// Optional element 'prodml22:SourceFlow' of XML schema type 'prodml22:AbstractRefProductFlow' - prodml22__AbstractRefProductFlow *SourceFlow; - /// Required element 'prodml22:Period' of XML schema type 'prodml22:ProductVolumePeriod' - std::vector Period; - /// Optional element 'prodml22:Properties' of XML schema type 'prodml22:CommonPropertiesProductVolume' - prodml22__CommonPropertiesProductVolume *Properties; + /// Optional element 'prodml23:ComponentContent' of XML schema type 'prodml23:ProductVolumeComponentContent' + std::vector ComponentContent; + /// Optional element 'prodml23:SourceFlow' of XML schema type 'prodml23:AbstractRefProductFlow' + prodml23__AbstractRefProductFlow *SourceFlow; + /// Required element 'prodml23:Period' of XML schema type 'prodml23:ProductVolumePeriod' + std::vector Period; + /// Optional element 'prodml23:Properties' of XML schema type 'prodml23:CommonPropertiesProductVolume' + prodml23__CommonPropertiesProductVolume *Properties; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33514,33 +33709,33 @@ class SOAP_CMAC prodml22__ProductVolumeProduct { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeProduct, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeProduct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeProduct); } + /// Return a new object of type prodml23__ProductVolumeProduct, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeProduct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeProduct); } public: /// Constructor with default initializations - prodml22__ProductVolumeProduct() : Kind(), Name(), SplitFactor(), MassFraction(), MoleFraction(), ComponentContent(), SourceFlow(), Period(), Properties(), uid(), soap() { } + prodml23__ProductVolumeProduct() : Kind(), Name(), SplitFactor(), MassFraction(), MoleFraction(), ComponentContent(), SourceFlow(), Period(), Properties(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeProduct() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeProduct(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeProduct(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeProduct() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeProduct(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeProduct * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeProduct(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2631 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility (-1242) -/* complex XML schema type 'prodml22:ProductVolumeRelatedFacility': */ -class SOAP_CMAC prodml22__ProductVolumeRelatedFacility { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility (-1242) +/* complex XML schema type 'prodml23:ProductVolumeRelatedFacility': */ +class SOAP_CMAC prodml23__ProductVolumeRelatedFacility { public: - /// Optional element 'prodml22:Kind' of XML schema type 'prodml22:ReportingFacility' - prodml22__ReportingFacility *Kind; - /// Optional element 'prodml22:RelatedFacilityObject' of XML schema type 'prodml22:AbstractRelatedFacilityObject' - prodml22__AbstractRelatedFacilityObject *RelatedFacilityObject; + /// Optional element 'prodml23:Kind' of XML schema type 'prodml23:ReportingFacility' + prodml23__ReportingFacility *Kind; + /// Optional element 'prodml23:RelatedFacilityObject' of XML schema type 'prodml23:AbstractRelatedFacilityObject' + prodml23__AbstractRelatedFacilityObject *RelatedFacilityObject; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33553,41 +33748,41 @@ class SOAP_CMAC prodml22__ProductVolumeRelatedFacility { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolumeRelatedFacility, default initialized and not managed by a soap context - virtual prodml22__ProductVolumeRelatedFacility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolumeRelatedFacility); } + /// Return a new object of type prodml23__ProductVolumeRelatedFacility, default initialized and not managed by a soap context + virtual prodml23__ProductVolumeRelatedFacility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolumeRelatedFacility); } public: /// Constructor with default initializations - prodml22__ProductVolumeRelatedFacility() : Kind(), RelatedFacilityObject(), soap() { } + prodml23__ProductVolumeRelatedFacility() : Kind(), RelatedFacilityObject(), soap() { } /// Destructor - virtual ~prodml22__ProductVolumeRelatedFacility() { } - /// Friend allocator used by soap_new_prodml22__ProductVolumeRelatedFacility(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolumeRelatedFacility(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolumeRelatedFacility() { } + /// Friend allocator used by soap_new_prodml23__ProductVolumeRelatedFacility(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolumeRelatedFacility * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolumeRelatedFacility(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2637 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode (-1245) -/* complex XML schema type 'prodml22:ConnectedNode': */ -class SOAP_CMAC prodml22__ConnectedNode { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode (-1245) +/* complex XML schema type 'prodml23:ConnectedNode': */ +class SOAP_CMAC prodml23__ConnectedNode { public: - /// Required element 'prodml22:Node' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Node' of XML schema type 'eml23:String64' std::string Node; - /// Optional element 'prodml22:PlanName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PlanName' of XML schema type 'eml23:String64' std::string *PlanName; - /// Optional element 'prodml22:DTimStart' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTimStart' of XML schema type 'eml23:TimeStamp' struct tm *DTimStart; - /// Optional element 'prodml22:DTimEnd' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTimEnd' of XML schema type 'eml23:TimeStamp' struct tm *DTimEnd; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33600,29 +33795,29 @@ class SOAP_CMAC prodml22__ConnectedNode { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ConnectedNode, default initialized and not managed by a soap context - virtual prodml22__ConnectedNode *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ConnectedNode); } + /// Return a new object of type prodml23__ConnectedNode, default initialized and not managed by a soap context + virtual prodml23__ConnectedNode *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ConnectedNode); } public: /// Constructor with default initializations - prodml22__ConnectedNode() : Node(), PlanName(), DTimStart(), DTimEnd(), Comment(), uid(), soap() { } + prodml23__ConnectedNode() : Node(), PlanName(), DTimStart(), DTimEnd(), Comment(), uid(), soap() { } /// Destructor - virtual ~prodml22__ConnectedNode() { } - /// Friend allocator used by soap_new_prodml22__ConnectedNode(struct soap*, int) - friend SOAP_FMAC1 prodml22__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml22__ConnectedNode(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ConnectedNode() { } + /// Friend allocator used by soap_new_prodml23__ConnectedNode(struct soap*, int) + friend SOAP_FMAC1 prodml23__ConnectedNode * SOAP_FMAC2 soap_instantiate_prodml23__ConnectedNode(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2639 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier (-1246) -/* complex XML schema type 'prodml22:ExpectedFlowQualifier': */ -class SOAP_CMAC prodml22__ExpectedFlowQualifier { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier (-1246) +/* complex XML schema type 'prodml23:ExpectedFlowQualifier': */ +class SOAP_CMAC prodml23__ExpectedFlowQualifier { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33635,37 +33830,37 @@ class SOAP_CMAC prodml22__ExpectedFlowQualifier { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ExpectedFlowQualifier, default initialized and not managed by a soap context - virtual prodml22__ExpectedFlowQualifier *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ExpectedFlowQualifier); } + /// Return a new object of type prodml23__ExpectedFlowQualifier, default initialized and not managed by a soap context + virtual prodml23__ExpectedFlowQualifier *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ExpectedFlowQualifier); } public: /// Constructor with default initializations - prodml22__ExpectedFlowQualifier() : soap() { } + prodml23__ExpectedFlowQualifier() : soap() { } /// Destructor - virtual ~prodml22__ExpectedFlowQualifier() { } - /// Friend allocator used by soap_new_prodml22__ExpectedFlowQualifier(struct soap*, int) - friend SOAP_FMAC1 prodml22__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml22__ExpectedFlowQualifier(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ExpectedFlowQualifier() { } + /// Friend allocator used by soap_new_prodml23__ExpectedFlowQualifier(struct soap*, int) + friend SOAP_FMAC1 prodml23__ExpectedFlowQualifier * SOAP_FMAC2 soap_instantiate_prodml23__ExpectedFlowQualifier(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2641 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog (-1247) -/* complex XML schema type 'prodml22:ProductFlowChangeLog': */ -class SOAP_CMAC prodml22__ProductFlowChangeLog { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog (-1247) +/* complex XML schema type 'prodml23:ProductFlowChangeLog': */ +class SOAP_CMAC prodml23__ProductFlowChangeLog { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; /// Typedef eml23__TimeStamp with custom serializer for struct tm struct tm DTim; - /// Optional element 'prodml22:Reason' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Reason' of XML schema type 'eml23:String2000' std::string *Reason; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33678,47 +33873,47 @@ class SOAP_CMAC prodml22__ProductFlowChangeLog { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowChangeLog, default initialized and not managed by a soap context - virtual prodml22__ProductFlowChangeLog *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowChangeLog); } + /// Return a new object of type prodml23__ProductFlowChangeLog, default initialized and not managed by a soap context + virtual prodml23__ProductFlowChangeLog *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowChangeLog); } public: /// Constructor with default initializations - prodml22__ProductFlowChangeLog() : Name(), DTim(), Reason(), uid(), soap() { } + prodml23__ProductFlowChangeLog() : Name(), DTim(), Reason(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowChangeLog() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowChangeLog(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowChangeLog(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowChangeLog() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowChangeLog(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowChangeLog * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowChangeLog(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2643 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty (-1248) -/* complex XML schema type 'prodml22:ProductFlowExpectedUnitProperty': */ -class SOAP_CMAC prodml22__ProductFlowExpectedUnitProperty { - public: - /// Required element 'prodml22:Property' of XML schema type 'prodml22:FacilityParameter' - prodml22__FacilityParameter Property; - /// Optional element 'prodml22:ChildFacilityIdentifier' of XML schema type 'prodml22:ProdmlRelativeIdentifier' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty (-1248) +/* complex XML schema type 'prodml23:ProductFlowExpectedUnitProperty': */ +class SOAP_CMAC prodml23__ProductFlowExpectedUnitProperty { + public: + /// Required element 'prodml23:Property' of XML schema type 'prodml23:FacilityParameter' + prodml23__FacilityParameter Property; + /// Optional element 'prodml23:ChildFacilityIdentifier' of XML schema type 'prodml23:ProdmlRelativeIdentifier' std::string *ChildFacilityIdentifier; - /// Optional element 'prodml22:TagAlias' of XML schema type 'eml23:NameStruct' + /// Optional element 'prodml23:TagAlias' of XML schema type 'eml23:NameStruct' std::vector TagAlias; - /// Optional element 'prodml22:Deadband' of XML schema type 'prodml22:GeneralMeasureType' - prodml22__GeneralMeasureType *Deadband; - /// Optional element 'prodml22:MaximumFrequency' of XML schema type 'eml23:TimeMeasure' + /// Optional element 'prodml23:Deadband' of XML schema type 'prodml23:GeneralMeasureType' + prodml23__GeneralMeasureType *Deadband; + /// Optional element 'prodml23:MaximumFrequency' of XML schema type 'eml23:TimeMeasure' eml23__TimeMeasure *MaximumFrequency; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:ExpectedFlowQualifier' of XML schema type 'prodml22:ExpectedFlowQualifier' - prodml22__ExpectedFlowQualifier *ExpectedFlowQualifier; - /// Optional element 'prodml22:ExpectedFlowProduct' of XML schema type 'prodml22:ProductFlowQualifierExpected' - std::vector ExpectedFlowProduct; + /// Optional element 'prodml23:ExpectedFlowQualifier' of XML schema type 'prodml23:ExpectedFlowQualifier' + prodml23__ExpectedFlowQualifier *ExpectedFlowQualifier; + /// Optional element 'prodml23:ExpectedFlowProduct' of XML schema type 'prodml23:ProductFlowQualifierExpected' + std::vector ExpectedFlowProduct; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33731,41 +33926,41 @@ class SOAP_CMAC prodml22__ProductFlowExpectedUnitProperty { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowExpectedUnitProperty, default initialized and not managed by a soap context - virtual prodml22__ProductFlowExpectedUnitProperty *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowExpectedUnitProperty); } + /// Return a new object of type prodml23__ProductFlowExpectedUnitProperty, default initialized and not managed by a soap context + virtual prodml23__ProductFlowExpectedUnitProperty *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowExpectedUnitProperty); } public: /// Constructor with default initializations - prodml22__ProductFlowExpectedUnitProperty() : Property(), ChildFacilityIdentifier(), TagAlias(), Deadband(), MaximumFrequency(), Comment(), ExpectedFlowQualifier(), ExpectedFlowProduct(), uid(), soap() { } + prodml23__ProductFlowExpectedUnitProperty() : Property(), ChildFacilityIdentifier(), TagAlias(), Deadband(), MaximumFrequency(), Comment(), ExpectedFlowQualifier(), ExpectedFlowProduct(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowExpectedUnitProperty() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowExpectedUnitProperty(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExpectedUnitProperty(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowExpectedUnitProperty() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowExpectedUnitProperty(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowExpectedUnitProperty * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExpectedUnitProperty(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2645 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort (-1249) -/* complex XML schema type 'prodml22:ProductFlowExternalPort': */ -class SOAP_CMAC prodml22__ProductFlowExternalPort { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort (-1249) +/* complex XML schema type 'prodml23:ProductFlowExternalPort': */ +class SOAP_CMAC prodml23__ProductFlowExternalPort { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; - /// Required element 'prodml22:Direction' of XML schema type 'prodml22:ProductFlowPortType' - prodml22__ProductFlowPortType Direction; - /// Optional element 'prodml22:Exposed' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:Direction' of XML schema type 'prodml23:ProductFlowPortType' + prodml23__ProductFlowPortType Direction; + /// Optional element 'prodml23:Exposed' of XML schema type 'xsd:boolean' bool *Exposed; - /// Required element 'prodml22:ConnectedNode' of XML schema type 'eml23:String64' + /// Required element 'prodml23:ConnectedNode' of XML schema type 'eml23:String64' std::string ConnectedNode; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33778,39 +33973,39 @@ class SOAP_CMAC prodml22__ProductFlowExternalPort { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowExternalPort, default initialized and not managed by a soap context - virtual prodml22__ProductFlowExternalPort *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowExternalPort); } + /// Return a new object of type prodml23__ProductFlowExternalPort, default initialized and not managed by a soap context + virtual prodml23__ProductFlowExternalPort *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowExternalPort); } public: /// Constructor with default initializations - prodml22__ProductFlowExternalPort() : Name(), Direction(), Exposed(), ConnectedNode(), Comment(), uid(), soap() { } + prodml23__ProductFlowExternalPort() : Name(), Direction(), Exposed(), ConnectedNode(), Comment(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowExternalPort() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowExternalPort(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowExternalPort(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowExternalPort() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowExternalPort(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowExternalPort * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowExternalPort(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2649 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan (-1251) -/* complex XML schema type 'prodml22:ProductFlowNetworkPlan': */ -class SOAP_CMAC prodml22__ProductFlowNetworkPlan { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan (-1251) +/* complex XML schema type 'prodml23:ProductFlowNetworkPlan': */ +class SOAP_CMAC prodml23__ProductFlowNetworkPlan { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; /// Typedef eml23__TimeStamp with custom serializer for struct tm struct tm DTimStart; - /// Optional element 'prodml22:Purpose' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Purpose' of XML schema type 'eml23:String2000' std::string *Purpose; - /// Optional element 'prodml22:ChangeLog' of XML schema type 'prodml22:ProductFlowChangeLog' - std::vector ChangeLog; + /// Optional element 'prodml23:ChangeLog' of XML schema type 'prodml23:ProductFlowChangeLog' + std::vector ChangeLog; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33823,51 +34018,51 @@ class SOAP_CMAC prodml22__ProductFlowNetworkPlan { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowNetworkPlan, default initialized and not managed by a soap context - virtual prodml22__ProductFlowNetworkPlan *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowNetworkPlan); } + /// Return a new object of type prodml23__ProductFlowNetworkPlan, default initialized and not managed by a soap context + virtual prodml23__ProductFlowNetworkPlan *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowNetworkPlan); } public: /// Constructor with default initializations - prodml22__ProductFlowNetworkPlan() : Name(), DTimStart(), Purpose(), ChangeLog(), uid(), soap() { } + prodml23__ProductFlowNetworkPlan() : Name(), DTimStart(), Purpose(), ChangeLog(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowNetworkPlan() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowNetworkPlan(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowNetworkPlan(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowNetworkPlan() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowNetworkPlan(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowNetworkPlan * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowNetworkPlan(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2651 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort (-1252) -/* complex XML schema type 'prodml22:ProductFlowPort': */ -class SOAP_CMAC prodml22__ProductFlowPort { - public: - /// Required element 'prodml22:Direction' of XML schema type 'prodml22:ProductFlowPortType' - prodml22__ProductFlowPortType Direction; - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort (-1252) +/* complex XML schema type 'prodml23:ProductFlowPort': */ +class SOAP_CMAC prodml23__ProductFlowPort { + public: + /// Required element 'prodml23:Direction' of XML schema type 'prodml23:ProductFlowPortType' + prodml23__ProductFlowPortType Direction; + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; - /// Optional element 'prodml22:PlanName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PlanName' of XML schema type 'eml23:String64' std::string *PlanName; - /// Optional element 'prodml22:Facility' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Facility; - /// Optional element 'prodml22:FacilityAlias' of XML schema type 'eml23:NameStruct' + /// Optional element 'prodml23:Facility' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Facility; + /// Optional element 'prodml23:FacilityAlias' of XML schema type 'eml23:NameStruct' std::vector FacilityAlias; - /// Optional element 'prodml22:Exposed' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:Exposed' of XML schema type 'xsd:boolean' bool *Exposed; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Required element 'prodml22:ConnectedNode' of XML schema type 'prodml22:ConnectedNode' - std::vector ConnectedNode; - /// Optional element 'prodml22:ExpectedFlowProperty' of XML schema type 'prodml22:ProductFlowExpectedUnitProperty' - std::vector ExpectedFlowProperty; - /// Optional element 'prodml22:ExpectedFlowProduct' of XML schema type 'prodml22:ProductFlowQualifierExpected' - std::vector ExpectedFlowProduct; + /// Required element 'prodml23:ConnectedNode' of XML schema type 'prodml23:ConnectedNode' + std::vector ConnectedNode; + /// Optional element 'prodml23:ExpectedFlowProperty' of XML schema type 'prodml23:ProductFlowExpectedUnitProperty' + std::vector ExpectedFlowProperty; + /// Optional element 'prodml23:ExpectedFlowProduct' of XML schema type 'prodml23:ProductFlowQualifierExpected' + std::vector ExpectedFlowProduct; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33880,55 +34075,55 @@ class SOAP_CMAC prodml22__ProductFlowPort { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowPort, default initialized and not managed by a soap context - virtual prodml22__ProductFlowPort *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowPort); } + /// Return a new object of type prodml23__ProductFlowPort, default initialized and not managed by a soap context + virtual prodml23__ProductFlowPort *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowPort); } public: /// Constructor with default initializations - prodml22__ProductFlowPort() : Direction(), Name(), PlanName(), Facility(), FacilityAlias(), Exposed(), Comment(), ConnectedNode(), ExpectedFlowProperty(), ExpectedFlowProduct(), uid(), soap() { } + prodml23__ProductFlowPort() : Direction(), Name(), PlanName(), Facility(), FacilityAlias(), Exposed(), Comment(), ConnectedNode(), ExpectedFlowProperty(), ExpectedFlowProduct(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowPort() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowPort(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowPort(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowPort() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowPort(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowPort * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowPort(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2655 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit (-1254) -/* complex XML schema type 'prodml22:ProductFlowUnit': */ -class SOAP_CMAC prodml22__ProductFlowUnit { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit (-1254) +/* complex XML schema type 'prodml23:ProductFlowUnit': */ +class SOAP_CMAC prodml23__ProductFlowUnit { public: - /// Optional element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Name' of XML schema type 'eml23:String64' std::string *Name; - /// Optional element 'prodml22:PlanName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PlanName' of XML schema type 'eml23:String64' std::string *PlanName; - /// Optional element 'prodml22:InternalNetworkReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:InternalNetworkReference' of XML schema type 'eml23:String64' std::string *InternalNetworkReference; - /// Optional element 'prodml22:Facility' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Facility; - /// Optional element 'prodml22:FacilityParent1' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *FacilityParent1; - /// Optional element 'prodml22:FacilityParent2' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *FacilityParent2; - /// Optional element 'prodml22:ContextFacility' of XML schema type 'prodml22:FacilityIdentifierStruct' - std::vector ContextFacility; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Facility' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Facility; + /// Optional element 'prodml23:FacilityParent1' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *FacilityParent1; + /// Optional element 'prodml23:FacilityParent2' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *FacilityParent2; + /// Optional element 'prodml23:ContextFacility' of XML schema type 'prodml23:FacilityIdentifierStruct' + std::vector ContextFacility; + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:ExpectedProperty' of XML schema type 'prodml22:ProductFlowExpectedUnitProperty' - std::vector ExpectedProperty; - /// Optional element 'prodml22:Port' of XML schema type 'prodml22:ProductFlowPort' - std::vector Port; - /// Optional element 'prodml22:RelativeCoordinate' of XML schema type 'prodml22:RelativeCoordinate' - prodml22__RelativeCoordinate *RelativeCoordinate; - /// Optional element 'prodml22:FacilityAlias' of XML schema type 'eml23:NameStruct' + /// Optional element 'prodml23:ExpectedProperty' of XML schema type 'prodml23:ProductFlowExpectedUnitProperty' + std::vector ExpectedProperty; + /// Optional element 'prodml23:Port' of XML schema type 'prodml23:ProductFlowPort' + std::vector Port; + /// Optional element 'prodml23:RelativeCoordinate' of XML schema type 'prodml23:RelativeCoordinate' + prodml23__RelativeCoordinate *RelativeCoordinate; + /// Optional element 'prodml23:FacilityAlias' of XML schema type 'eml23:NameStruct' std::vector FacilityAlias; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33941,35 +34136,35 @@ class SOAP_CMAC prodml22__ProductFlowUnit { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowUnit, default initialized and not managed by a soap context - virtual prodml22__ProductFlowUnit *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowUnit); } + /// Return a new object of type prodml23__ProductFlowUnit, default initialized and not managed by a soap context + virtual prodml23__ProductFlowUnit *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowUnit); } public: /// Constructor with default initializations - prodml22__ProductFlowUnit() : Name(), PlanName(), InternalNetworkReference(), Facility(), FacilityParent1(), FacilityParent2(), ContextFacility(), Comment(), ExpectedProperty(), Port(), RelativeCoordinate(), FacilityAlias(), uid(), soap() { } + prodml23__ProductFlowUnit() : Name(), PlanName(), InternalNetworkReference(), Facility(), FacilityParent1(), FacilityParent2(), ContextFacility(), Comment(), ExpectedProperty(), Port(), RelativeCoordinate(), FacilityAlias(), uid(), soap() { } /// Destructor - virtual ~prodml22__ProductFlowUnit() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowUnit(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowUnit(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowUnit() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowUnit(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowUnit * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowUnit(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2659 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate (-1256) -/* complex XML schema type 'prodml22:RelativeCoordinate': */ -class SOAP_CMAC prodml22__RelativeCoordinate { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate (-1256) +/* complex XML schema type 'prodml23:RelativeCoordinate': */ +class SOAP_CMAC prodml23__RelativeCoordinate { public: - /// Optional element 'prodml22:X' of XML schema type 'eml23:LengthPerLengthMeasure' + /// Optional element 'prodml23:X' of XML schema type 'eml23:LengthPerLengthMeasure' eml23__LengthPerLengthMeasure *X; - /// Optional element 'prodml22:Y' of XML schema type 'eml23:LengthPerLengthMeasure' + /// Optional element 'prodml23:Y' of XML schema type 'eml23:LengthPerLengthMeasure' eml23__LengthPerLengthMeasure *Y; - /// Optional element 'prodml22:Z' of XML schema type 'eml23:LengthPerLengthMeasure' + /// Optional element 'prodml23:Z' of XML schema type 'eml23:LengthPerLengthMeasure' eml23__LengthPerLengthMeasure *Z; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -33982,29 +34177,29 @@ class SOAP_CMAC prodml22__RelativeCoordinate { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RelativeCoordinate, default initialized and not managed by a soap context - virtual prodml22__RelativeCoordinate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RelativeCoordinate); } + /// Return a new object of type prodml23__RelativeCoordinate, default initialized and not managed by a soap context + virtual prodml23__RelativeCoordinate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RelativeCoordinate); } public: /// Constructor with default initializations - prodml22__RelativeCoordinate() : X(), Y(), Z(), soap() { } + prodml23__RelativeCoordinate() : X(), Y(), Z(), soap() { } /// Destructor - virtual ~prodml22__RelativeCoordinate() { } - /// Friend allocator used by soap_new_prodml22__RelativeCoordinate(struct soap*, int) - friend SOAP_FMAC1 prodml22__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml22__RelativeCoordinate(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RelativeCoordinate() { } + /// Friend allocator used by soap_new_prodml23__RelativeCoordinate(struct soap*, int) + friend SOAP_FMAC1 prodml23__RelativeCoordinate * SOAP_FMAC2 soap_instantiate_prodml23__RelativeCoordinate(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2661 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue (-1257) -/* complex XML schema type 'prodml22:AbstractValue': */ -class SOAP_CMAC prodml22__AbstractValue { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue (-1257) +/* complex XML schema type 'prodml23:AbstractValue': */ +class SOAP_CMAC prodml23__AbstractValue { public: /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -34017,35 +34212,35 @@ class SOAP_CMAC prodml22__AbstractValue { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractValue, default initialized and not managed by a soap context - virtual prodml22__AbstractValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractValue); } + /// Return a new object of type prodml23__AbstractValue, default initialized and not managed by a soap context + virtual prodml23__AbstractValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractValue); } public: /// Constructor with default initializations - prodml22__AbstractValue() : soap() { } + prodml23__AbstractValue() : soap() { } /// Destructor - virtual ~prodml22__AbstractValue() { } - /// Friend allocator used by soap_new_prodml22__AbstractValue(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml22__AbstractValue(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractValue() { } + /// Friend allocator used by soap_new_prodml23__AbstractValue(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractValue * SOAP_FMAC2 soap_instantiate_prodml23__AbstractValue(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2681 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold (-1267) -/* complex XML schema type 'prodml22:TimeSeriesThreshold': */ -class SOAP_CMAC prodml22__TimeSeriesThreshold { - public: - /// Optional element 'prodml22:ThresholdMinimum' of XML schema type 'prodml22:EndpointQuantity' - prodml22__EndpointQuantity *ThresholdMinimum; - /// Optional element 'prodml22:ThresholdMaximum' of XML schema type 'prodml22:EndpointQuantity' - prodml22__EndpointQuantity *ThresholdMaximum; - /// Required element 'prodml22:Duration' of XML schema type 'eml23:TimeMeasure' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold (-1267) +/* complex XML schema type 'prodml23:TimeSeriesThreshold': */ +class SOAP_CMAC prodml23__TimeSeriesThreshold { + public: + /// Optional element 'prodml23:ThresholdMinimum' of XML schema type 'prodml23:EndpointQuantity' + prodml23__EndpointQuantity *ThresholdMinimum; + /// Optional element 'prodml23:ThresholdMaximum' of XML schema type 'prodml23:EndpointQuantity' + prodml23__EndpointQuantity *ThresholdMaximum; + /// Required element 'prodml23:Duration' of XML schema type 'eml23:TimeMeasure' eml23__TimeMeasure *Duration; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -34058,15 +34253,15 @@ class SOAP_CMAC prodml22__TimeSeriesThreshold { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TimeSeriesThreshold, default initialized and not managed by a soap context - virtual prodml22__TimeSeriesThreshold *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TimeSeriesThreshold); } + /// Return a new object of type prodml23__TimeSeriesThreshold, default initialized and not managed by a soap context + virtual prodml23__TimeSeriesThreshold *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TimeSeriesThreshold); } public: /// Constructor with default initializations - prodml22__TimeSeriesThreshold() : ThresholdMinimum(), ThresholdMaximum(), Duration(), soap() { } + prodml23__TimeSeriesThreshold() : ThresholdMinimum(), ThresholdMaximum(), Duration(), soap() { } /// Destructor - virtual ~prodml22__TimeSeriesThreshold() { } - /// Friend allocator used by soap_new_prodml22__TimeSeriesThreshold(struct soap*, int) - friend SOAP_FMAC1 prodml22__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesThreshold(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TimeSeriesThreshold() { } + /// Friend allocator used by soap_new_prodml23__TimeSeriesThreshold(struct soap*, int) + friend SOAP_FMAC1 prodml23__TimeSeriesThreshold * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesThreshold(struct soap*, int, const char*, const char*, size_t*); }; #endif @@ -38098,6 +38293,7 @@ class SOAP_CMAC witsml21__Tubular : public eml23__AbstractObject { /* eml2_3ForGsoap.h:437 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind #define SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelKind (-145) +/* Type witsml21__ChannelKind is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:ChannelKind': */ class SOAP_CMAC witsml21__ChannelKind : public eml23__AbstractObject { public: @@ -38179,6 +38375,7 @@ class SOAP_CMAC witsml21__ChannelKindDictionary : public eml23__AbstractObject { /* eml2_3ForGsoap.h:441 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind #define SOAP_TYPE_gsoap_eml2_3_witsml21__LoggingToolKind (-147) +/* Type witsml21__LoggingToolKind is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:LoggingToolKind': */ class SOAP_CMAC witsml21__LoggingToolKind : public eml23__AbstractObject { public: @@ -38636,6 +38833,7 @@ class SOAP_CMAC witsml21__CustomOperatingRange : public witsml21__AbstractOperat /* eml2_3ForGsoap.h:577 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm #define SOAP_TYPE_gsoap_eml2_3_witsml21__ErrorTerm (-215) +/* Type witsml21__ErrorTerm is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:ErrorTerm': */ class SOAP_CMAC witsml21__ErrorTerm : public eml23__AbstractObject { public: @@ -38748,6 +38946,7 @@ class SOAP_CMAC witsml21__PlaneAngleOperatingRange : public witsml21__AbstractOp /* eml2_3ForGsoap.h:593 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel #define SOAP_TYPE_gsoap_eml2_3_witsml21__ToolErrorModel (-223) +/* Type witsml21__ToolErrorModel is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:ToolErrorModel': */ class SOAP_CMAC witsml21__ToolErrorModel : public eml23__AbstractObject { public: @@ -38845,6 +39044,7 @@ class SOAP_CMAC witsml21__ToolErrorModelDictionary : public eml23__AbstractObjec /* eml2_3ForGsoap.h:597 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction #define SOAP_TYPE_gsoap_eml2_3_witsml21__WeightingFunction (-225) +/* Type witsml21__WeightingFunction is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:WeightingFunction': */ class SOAP_CMAC witsml21__WeightingFunction : public eml23__AbstractObject { public: @@ -39524,6 +39724,7 @@ class SOAP_CMAC witsml21__StimJob : public eml23__AbstractObject { /* eml2_3ForGsoap.h:667 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage #define SOAP_TYPE_gsoap_eml2_3_witsml21__StimJobStage (-260) +/* Type witsml21__StimJobStage is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:StimJobStage': */ class SOAP_CMAC witsml21__StimJobStage : public eml23__AbstractObject { public: @@ -39723,6 +39924,7 @@ class SOAP_CMAC witsml21__StimJobStage : public eml23__AbstractObject { /* eml2_3ForGsoap.h:675 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster #define SOAP_TYPE_gsoap_eml2_3_witsml21__StimPerforationCluster (-264) +/* Type witsml21__StimPerforationCluster is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:StimPerforationCluster': */ class SOAP_CMAC witsml21__StimPerforationCluster : public eml23__AbstractObject { public: @@ -40121,6 +40323,7 @@ class SOAP_CMAC witsml21__WellCompletion : public eml23__AbstractObject { /* eml2_3ForGsoap.h:741 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker #define SOAP_TYPE_gsoap_eml2_3_witsml21__WellboreMarker (-297) +/* Type witsml21__WellboreMarker is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:WellboreMarker': */ class SOAP_CMAC witsml21__WellboreMarker : public eml23__AbstractObject { public: @@ -40230,6 +40433,7 @@ class SOAP_CMAC witsml21__WellboreMarkerSet : public eml23__AbstractObject { /* eml2_3ForGsoap.h:745 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__AbstractActiveObject #define SOAP_TYPE_gsoap_eml2_3_eml23__AbstractActiveObject (-299) +/* Type eml23__AbstractActiveObject is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:AbstractActiveObject': */ class SOAP_CMAC eml23__AbstractActiveObject : public eml23__AbstractObject { public: @@ -41150,6 +41354,7 @@ class SOAP_CMAC eml23__TemperatureInterval : public eml23__AbstractInterval { /* eml2_3ForGsoap.h:941 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__Abstract2dCrs #define SOAP_TYPE_gsoap_eml2_3_eml23__Abstract2dCrs (-397) +/* Type eml23__Abstract2dCrs is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:Abstract2dCrs': */ class SOAP_CMAC eml23__Abstract2dCrs : public eml23__AbstractObject { public: @@ -41925,6 +42130,7 @@ class SOAP_CMAC eml23__TemperaturePressure : public eml23__AbstractTemperaturePr /* eml2_3ForGsoap.h:1793 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind #define SOAP_TYPE_gsoap_eml2_3_eml23__PropertyKind (-823) +/* Type eml23__PropertyKind is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:PropertyKind': */ class SOAP_CMAC eml23__PropertyKind : public eml23__AbstractObject { public: @@ -42576,6 +42782,7 @@ class SOAP_CMAC eml23__Aggregate : public eml23__AbstractObject { /* eml2_3ForGsoap.h:1853 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__Attachment #define SOAP_TYPE_gsoap_eml2_3_eml23__Attachment (-853) +/* Type eml23__Attachment is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:Attachment': */ class SOAP_CMAC eml23__Attachment : public eml23__AbstractObject { public: @@ -42631,6 +42838,7 @@ class SOAP_CMAC eml23__Attachment : public eml23__AbstractObject { /* eml2_3ForGsoap.h:1855 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__CollectionsToDataobjectsAssociationSet #define SOAP_TYPE_gsoap_eml2_3_eml23__CollectionsToDataobjectsAssociationSet (-854) +/* Type eml23__CollectionsToDataobjectsAssociationSet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:CollectionsToDataobjectsAssociationSet': */ class SOAP_CMAC eml23__CollectionsToDataobjectsAssociationSet : public eml23__AbstractObject { public: @@ -42666,6 +42874,7 @@ class SOAP_CMAC eml23__CollectionsToDataobjectsAssociationSet : public eml23__Ab /* eml2_3ForGsoap.h:1857 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__DataobjectCollection #define SOAP_TYPE_gsoap_eml2_3_eml23__DataobjectCollection (-855) +/* Type eml23__DataobjectCollection is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:DataobjectCollection': */ class SOAP_CMAC eml23__DataobjectCollection : public eml23__AbstractObject { public: @@ -42703,6 +42912,7 @@ class SOAP_CMAC eml23__DataobjectCollection : public eml23__AbstractObject { /* eml2_3ForGsoap.h:1863 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__ColumnBasedTable #define SOAP_TYPE_gsoap_eml2_3_eml23__ColumnBasedTable (-858) +/* Type eml23__ColumnBasedTable is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:ColumnBasedTable': */ class SOAP_CMAC eml23__ColumnBasedTable : public eml23__AbstractObject { public: @@ -42740,6 +42950,7 @@ class SOAP_CMAC eml23__ColumnBasedTable : public eml23__AbstractObject { /* eml2_3ForGsoap.h:1867 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__DataAssuranceRecord #define SOAP_TYPE_gsoap_eml2_3_eml23__DataAssuranceRecord (-860) +/* Type eml23__DataAssuranceRecord is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:DataAssuranceRecord': */ class SOAP_CMAC eml23__DataAssuranceRecord : public eml23__AbstractObject { public: @@ -42795,6 +43006,7 @@ class SOAP_CMAC eml23__DataAssuranceRecord : public eml23__AbstractObject { /* eml2_3ForGsoap.h:1875 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet #define SOAP_TYPE_gsoap_eml2_3_eml23__GraphicalInformationSet (-864) +/* Type eml23__GraphicalInformationSet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:GraphicalInformationSet': */ class SOAP_CMAC eml23__GraphicalInformationSet : public eml23__AbstractObject { public: @@ -42828,20 +43040,20 @@ class SOAP_CMAC eml23__GraphicalInformationSet : public eml23__AbstractObject { #endif /* eml2_3ForGsoap.h:1877 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel (-865) -/* complex XML schema type 'prodml22:AbstractCompositionalModel': */ -class SOAP_CMAC prodml22__AbstractCompositionalModel : public prodml22__AbstractPvtModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel (-865) +/* complex XML schema type 'prodml23:AbstractCompositionalModel': */ +class SOAP_CMAC prodml23__AbstractCompositionalModel : public prodml23__AbstractPvtModel { public: - /// Optional element 'prodml22:MixingRule' of XML schema type 'prodml22:MixingRule' - prodml22__MixingRule *MixingRule; - /// Optional element 'prodml22:ComponentPropertySet' of XML schema type 'prodml22:ComponentPropertySet' - prodml22__ComponentPropertySet *ComponentPropertySet; - /// Optional element 'prodml22:BinaryInteractionCoefficientSet' of XML schema type 'prodml22:BinaryInteractionCoefficientSet' - prodml22__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet; + /// Optional element 'prodml23:MixingRule' of XML schema type 'prodml23:MixingRule' + prodml23__MixingRule *MixingRule; + /// Optional element 'prodml23:ComponentPropertySet' of XML schema type 'prodml23:ComponentPropertySet' + prodml23__ComponentPropertySet *ComponentPropertySet; + /// Optional element 'prodml23:BinaryInteractionCoefficientSet' of XML schema type 'prodml23:BinaryInteractionCoefficientSet' + prodml23__BinaryInteractionCoefficientSet *BinaryInteractionCoefficientSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -42854,26 +43066,26 @@ class SOAP_CMAC prodml22__AbstractCompositionalModel : public prodml22__Abstract virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCompositionalModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCompositionalModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCompositionalModel); } + /// Return a new object of type prodml23__AbstractCompositionalModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCompositionalModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCompositionalModel); } public: /// Constructor with default initializations - prodml22__AbstractCompositionalModel() : MixingRule(), ComponentPropertySet(), BinaryInteractionCoefficientSet() { } + prodml23__AbstractCompositionalModel() : MixingRule(), ComponentPropertySet(), BinaryInteractionCoefficientSet() { } /// Destructor - virtual ~prodml22__AbstractCompositionalModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCompositionalModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCompositionalModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCompositionalModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCompositionalModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1879 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel (-866) -/* complex XML schema type 'prodml22:AbstractCorrelationModel': */ -class SOAP_CMAC prodml22__AbstractCorrelationModel : public prodml22__AbstractPvtModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel (-866) +/* complex XML schema type 'prodml23:AbstractCorrelationModel': */ +class SOAP_CMAC prodml23__AbstractCorrelationModel : public prodml23__AbstractPvtModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -42886,49 +43098,50 @@ class SOAP_CMAC prodml22__AbstractCorrelationModel : public prodml22__AbstractPv virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCorrelationModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCorrelationModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCorrelationModel); } + /// Return a new object of type prodml23__AbstractCorrelationModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCorrelationModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCorrelationModel); } public: /// Constructor with default initializations - prodml22__AbstractCorrelationModel() { } + prodml23__AbstractCorrelationModel() { } /// Destructor - virtual ~prodml22__AbstractCorrelationModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCorrelationModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCorrelationModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCorrelationModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCorrelationModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1937 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization (-895) -/* complex XML schema type 'prodml22:FluidCharacterization': */ -class SOAP_CMAC prodml22__FluidCharacterization : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization (-895) +/* Type prodml23__FluidCharacterization is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FluidCharacterization': */ +class SOAP_CMAC prodml23__FluidCharacterization : public eml23__AbstractObject { public: - /// Optional element 'prodml22:ApplicationTarget' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:ApplicationTarget' of XML schema type 'eml23:String2000' std::vector ApplicationTarget; - /// Optional element 'prodml22:Kind' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Kind' of XML schema type 'eml23:String64' std::string *Kind; - /// Optional element 'prodml22:IntendedUsage' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:IntendedUsage' of XML schema type 'eml23:String64' std::string *IntendedUsage; - /// Optional element 'prodml22:RockFluidUnitInterpretation' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:RockFluidUnitInterpretation' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *RockFluidUnitInterpretation; - /// Optional element 'prodml22:StandardConditions' of XML schema type 'eml23:AbstractTemperaturePressure' + /// Optional element 'prodml23:StandardConditions' of XML schema type 'eml23:AbstractTemperaturePressure' eml23__AbstractTemperaturePressure *StandardConditions; - /// Optional element 'prodml22:Source' of XML schema type 'prodml22:FluidCharacterizationSource' - std::vector Source; - /// Optional element 'prodml22:FluidComponentCatalog' of XML schema type 'prodml22:FluidComponentCatalog' - prodml22__FluidComponentCatalog *FluidComponentCatalog; - /// Optional element 'prodml22:Model' of XML schema type 'prodml22:FluidCharacterizationModel' - std::vector Model; - /// Optional element 'prodml22:TableFormat' of XML schema type 'prodml22:FluidCharacterizationTableFormat' - std::vector TableFormat; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Source' of XML schema type 'prodml23:FluidCharacterizationSource' + std::vector Source; + /// Optional element 'prodml23:FluidComponentCatalog' of XML schema type 'prodml23:FluidComponentCatalog' + prodml23__FluidComponentCatalog *FluidComponentCatalog; + /// Optional element 'prodml23:Model' of XML schema type 'prodml23:FluidCharacterizationModel' + std::vector Model; + /// Optional element 'prodml23:TableFormat' of XML schema type 'prodml23:FluidCharacterizationTableFormat' + std::vector TableFormat; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FluidSystem' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSystem' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSystem; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -42941,33 +43154,33 @@ class SOAP_CMAC prodml22__FluidCharacterization : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterization, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterization *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterization); } + /// Return a new object of type prodml23__FluidCharacterization, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterization *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterization); } public: /// Constructor with default initializations - prodml22__FluidCharacterization() : ApplicationTarget(), Kind(), IntendedUsage(), RockFluidUnitInterpretation(), StandardConditions(), Source(), FluidComponentCatalog(), Model(), TableFormat(), Remark(), FluidSystem() { } + prodml23__FluidCharacterization() : ApplicationTarget(), Kind(), IntendedUsage(), RockFluidUnitInterpretation(), StandardConditions(), Source(), FluidComponentCatalog(), Model(), TableFormat(), Remark(), FluidSystem() { } /// Destructor - virtual ~prodml22__FluidCharacterization() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterization(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterization(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterization() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterization(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterization * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterization(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2015 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater (-934) -/* complex XML schema type 'prodml22:FormationWater': */ -class SOAP_CMAC prodml22__FormationWater : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater (-934) +/* complex XML schema type 'prodml23:FormationWater': */ +class SOAP_CMAC prodml23__FormationWater : public prodml23__AbstractFluidComponent { public: - /// Optional element 'prodml22:SpecificGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:SpecificGravity' of XML schema type 'xsd:double' double *SpecificGravity; - /// Optional element 'prodml22:Salinity' of XML schema type 'eml23:MassPerMassMeasure' + /// Optional element 'prodml23:Salinity' of XML schema type 'eml23:MassPerMassMeasure' eml23__MassPerMassMeasure *Salinity; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -42980,33 +43193,33 @@ class SOAP_CMAC prodml22__FormationWater : public prodml22__AbstractFluidCompone virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FormationWater, default initialized and not managed by a soap context - virtual prodml22__FormationWater *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FormationWater); } + /// Return a new object of type prodml23__FormationWater, default initialized and not managed by a soap context + virtual prodml23__FormationWater *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FormationWater); } public: /// Constructor with default initializations - prodml22__FormationWater() : SpecificGravity(), Salinity(), Remark() { } + prodml23__FormationWater() : SpecificGravity(), Salinity(), Remark() { } /// Destructor - virtual ~prodml22__FormationWater() { } - /// Friend allocator used by soap_new_prodml22__FormationWater(struct soap*, int) - friend SOAP_FMAC1 prodml22__FormationWater * SOAP_FMAC2 soap_instantiate_prodml22__FormationWater(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FormationWater() { } + /// Friend allocator used by soap_new_prodml23__FormationWater(struct soap*, int) + friend SOAP_FMAC1 prodml23__FormationWater * SOAP_FMAC2 soap_instantiate_prodml23__FormationWater(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2019 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure (-936) -/* complex XML schema type 'prodml22:GeneralQualifiedMeasure': */ -class SOAP_CMAC prodml22__GeneralQualifiedMeasure : public prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure (-936) +/* complex XML schema type 'prodml23:GeneralQualifiedMeasure': */ +class SOAP_CMAC prodml23__GeneralQualifiedMeasure : public prodml23__AbstractMeasureData { public: - /// Optional attribute 'status' of XML schema type 'prodml22:ValueStatus' - prodml22__ValueStatus *status; + /// Optional attribute 'status' of XML schema type 'prodml23:ValueStatus' + prodml23__ValueStatus *status; /// Optional attribute 'componentReference' of XML schema type 'eml23:String64' std::string *componentReference; /// Required attribute 'uom' of XML schema type 'eml23:UomEnum' std::string uom; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43019,29 +43232,29 @@ class SOAP_CMAC prodml22__GeneralQualifiedMeasure : public prodml22__AbstractMea virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__GeneralQualifiedMeasure, default initialized and not managed by a soap context - virtual prodml22__GeneralQualifiedMeasure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__GeneralQualifiedMeasure); } + /// Return a new object of type prodml23__GeneralQualifiedMeasure, default initialized and not managed by a soap context + virtual prodml23__GeneralQualifiedMeasure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__GeneralQualifiedMeasure); } public: /// Constructor with default initializations - prodml22__GeneralQualifiedMeasure() : status(), componentReference(), uom() { } + prodml23__GeneralQualifiedMeasure() : status(), componentReference(), uom() { } /// Destructor - virtual ~prodml22__GeneralQualifiedMeasure() { } - /// Friend allocator used by soap_new_prodml22__GeneralQualifiedMeasure(struct soap*, int) - friend SOAP_FMAC1 prodml22__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodml22__GeneralQualifiedMeasure(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__GeneralQualifiedMeasure() { } + /// Friend allocator used by soap_new_prodml23__GeneralQualifiedMeasure(struct soap*, int) + friend SOAP_FMAC1 prodml23__GeneralQualifiedMeasure * SOAP_FMAC2 soap_instantiate_prodml23__GeneralQualifiedMeasure(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2023 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount -#define SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount (-938) -/* complex XML schema type 'prodml22:IntegerQualifiedCount': */ -class SOAP_CMAC prodml22__IntegerQualifiedCount : public prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount +#define SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount (-938) +/* complex XML schema type 'prodml23:IntegerQualifiedCount': */ +class SOAP_CMAC prodml23__IntegerQualifiedCount : public prodml23__AbstractMeasureData { public: - /// Optional attribute 'status' of XML schema type 'prodml22:ValueStatus' - prodml22__ValueStatus *status; + /// Optional attribute 'status' of XML schema type 'prodml23:ValueStatus' + prodml23__ValueStatus *status; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43054,29 +43267,29 @@ class SOAP_CMAC prodml22__IntegerQualifiedCount : public prodml22__AbstractMeasu virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__IntegerQualifiedCount, default initialized and not managed by a soap context - virtual prodml22__IntegerQualifiedCount *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__IntegerQualifiedCount); } + /// Return a new object of type prodml23__IntegerQualifiedCount, default initialized and not managed by a soap context + virtual prodml23__IntegerQualifiedCount *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__IntegerQualifiedCount); } public: /// Constructor with default initializations - prodml22__IntegerQualifiedCount() : status() { } + prodml23__IntegerQualifiedCount() : status() { } /// Destructor - virtual ~prodml22__IntegerQualifiedCount() { } - /// Friend allocator used by soap_new_prodml22__IntegerQualifiedCount(struct soap*, int) - friend SOAP_FMAC1 prodml22__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml22__IntegerQualifiedCount(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__IntegerQualifiedCount() { } + /// Friend allocator used by soap_new_prodml23__IntegerQualifiedCount(struct soap*, int) + friend SOAP_FMAC1 prodml23__IntegerQualifiedCount * SOAP_FMAC2 soap_instantiate_prodml23__IntegerQualifiedCount(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2025 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString -#define SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString (-939) -/* complex XML schema type 'prodml22:KindQualifiedString': */ -class SOAP_CMAC prodml22__KindQualifiedString : public prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString +#define SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString (-939) +/* complex XML schema type 'prodml23:KindQualifiedString': */ +class SOAP_CMAC prodml23__KindQualifiedString : public prodml23__AbstractMeasureData { public: - /// Optional attribute 'status' of XML schema type 'prodml22:ValueStatus' - prodml22__ValueStatus *status; + /// Optional attribute 'status' of XML schema type 'prodml23:ValueStatus' + prodml23__ValueStatus *status; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43089,41 +43302,41 @@ class SOAP_CMAC prodml22__KindQualifiedString : public prodml22__AbstractMeasure virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__KindQualifiedString, default initialized and not managed by a soap context - virtual prodml22__KindQualifiedString *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__KindQualifiedString); } + /// Return a new object of type prodml23__KindQualifiedString, default initialized and not managed by a soap context + virtual prodml23__KindQualifiedString *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__KindQualifiedString); } public: /// Constructor with default initializations - prodml22__KindQualifiedString() : status() { } + prodml23__KindQualifiedString() : status() { } /// Destructor - virtual ~prodml22__KindQualifiedString() { } - /// Friend allocator used by soap_new_prodml22__KindQualifiedString(struct soap*, int) - friend SOAP_FMAC1 prodml22__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml22__KindQualifiedString(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__KindQualifiedString() { } + /// Friend allocator used by soap_new_prodml23__KindQualifiedString(struct soap*, int) + friend SOAP_FMAC1 prodml23__KindQualifiedString * SOAP_FMAC2 soap_instantiate_prodml23__KindQualifiedString(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2031 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas (-942) -/* complex XML schema type 'prodml22:NaturalGas': */ -class SOAP_CMAC prodml22__NaturalGas : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas (-942) +/* complex XML schema type 'prodml23:NaturalGas': */ +class SOAP_CMAC prodml23__NaturalGas : public prodml23__AbstractFluidComponent { public: - /// Optional element 'prodml22:GasGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:GasGravity' of XML schema type 'xsd:double' double *GasGravity; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; - /// Optional element 'prodml22:GrossEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' + /// Optional element 'prodml23:GrossEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' eml23__EnergyPerMassMeasure *GrossEnergyContentPerUnitMass; - /// Optional element 'prodml22:NetEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' + /// Optional element 'prodml23:NetEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' eml23__EnergyPerMassMeasure *NetEnergyContentPerUnitMass; - /// Optional element 'prodml22:GrossEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' + /// Optional element 'prodml23:GrossEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' eml23__EnergyPerVolumeMeasure *GrossEnergyContentPerUnitVolume; - /// Optional element 'prodml22:NetEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' + /// Optional element 'prodml23:NetEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' eml23__EnergyPerVolumeMeasure *NetEnergyContentPerUnitVolume; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43136,41 +43349,41 @@ class SOAP_CMAC prodml22__NaturalGas : public prodml22__AbstractFluidComponent { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NaturalGas, default initialized and not managed by a soap context - virtual prodml22__NaturalGas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NaturalGas); } + /// Return a new object of type prodml23__NaturalGas, default initialized and not managed by a soap context + virtual prodml23__NaturalGas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NaturalGas); } public: /// Constructor with default initializations - prodml22__NaturalGas() : GasGravity(), MolecularWeight(), GrossEnergyContentPerUnitMass(), NetEnergyContentPerUnitMass(), GrossEnergyContentPerUnitVolume(), NetEnergyContentPerUnitVolume(), Remark() { } + prodml23__NaturalGas() : GasGravity(), MolecularWeight(), GrossEnergyContentPerUnitMass(), NetEnergyContentPerUnitMass(), GrossEnergyContentPerUnitVolume(), NetEnergyContentPerUnitVolume(), Remark() { } /// Destructor - virtual ~prodml22__NaturalGas() { } - /// Friend allocator used by soap_new_prodml22__NaturalGas(struct soap*, int) - friend SOAP_FMAC1 prodml22__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml22__NaturalGas(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NaturalGas() { } + /// Friend allocator used by soap_new_prodml23__NaturalGas(struct soap*, int) + friend SOAP_FMAC1 prodml23__NaturalGas * SOAP_FMAC2 soap_instantiate_prodml23__NaturalGas(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2039 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent (-946) -/* complex XML schema type 'prodml22:PlusFluidComponent': */ -class SOAP_CMAC prodml22__PlusFluidComponent : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent (-946) +/* complex XML schema type 'prodml23:PlusFluidComponent': */ +class SOAP_CMAC prodml23__PlusFluidComponent : public prodml23__AbstractFluidComponent { public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:PlusComponentKindExt' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:PlusComponentKindExt' std::string Kind; - /// Optional element 'prodml22:SpecificGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:SpecificGravity' of XML schema type 'xsd:double' double *SpecificGravity; - /// Optional element 'prodml22:StartingCarbonNumber' of XML schema type 'eml23:NonNegativeLong' + /// Optional element 'prodml23:StartingCarbonNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 *StartingCarbonNumber; - /// Optional element 'prodml22:StartingBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:StartingBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StartingBoilingPoint; - /// Optional element 'prodml22:AvgDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:AvgDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *AvgDensity; - /// Optional element 'prodml22:AvgMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:AvgMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *AvgMolecularWeight; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43183,37 +43396,37 @@ class SOAP_CMAC prodml22__PlusFluidComponent : public prodml22__AbstractFluidCom virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PlusFluidComponent, default initialized and not managed by a soap context - virtual prodml22__PlusFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PlusFluidComponent); } + /// Return a new object of type prodml23__PlusFluidComponent, default initialized and not managed by a soap context + virtual prodml23__PlusFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PlusFluidComponent); } public: /// Constructor with default initializations - prodml22__PlusFluidComponent() : Kind(), SpecificGravity(), StartingCarbonNumber(), StartingBoilingPoint(), AvgDensity(), AvgMolecularWeight(), Remark() { } + prodml23__PlusFluidComponent() : Kind(), SpecificGravity(), StartingCarbonNumber(), StartingBoilingPoint(), AvgDensity(), AvgMolecularWeight(), Remark() { } /// Destructor - virtual ~prodml22__PlusFluidComponent() { } - /// Friend allocator used by soap_new_prodml22__PlusFluidComponent(struct soap*, int) - friend SOAP_FMAC1 prodml22__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PlusFluidComponent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PlusFluidComponent() { } + /// Friend allocator used by soap_new_prodml23__PlusFluidComponent(struct soap*, int) + friend SOAP_FMAC1 prodml23__PlusFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PlusFluidComponent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2045 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid (-949) -/* complex XML schema type 'prodml22:ProductFluid': */ -class SOAP_CMAC prodml22__ProductFluid : public prodml22__AbstractProductQuantity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid (-949) +/* complex XML schema type 'prodml23:ProductFluid': */ +class SOAP_CMAC prodml23__ProductFluid : public prodml23__AbstractProductQuantity { public: - /// Required element 'prodml22:ProductFluidKind' of XML schema type 'prodml22:ProductFluidKindExt' + /// Required element 'prodml23:ProductFluidKind' of XML schema type 'prodml23:ProductFluidKindExt' std::string ProductFluidKind; - /// Optional element 'prodml22:GrossEnergyContent' of XML schema type 'eml23:EnergyMeasure' + /// Optional element 'prodml23:GrossEnergyContent' of XML schema type 'eml23:EnergyMeasure' eml23__EnergyMeasure *GrossEnergyContent; - /// Optional element 'prodml22:NetEnergyContent' of XML schema type 'eml23:EnergyMeasure' + /// Optional element 'prodml23:NetEnergyContent' of XML schema type 'eml23:EnergyMeasure' eml23__EnergyMeasure *NetEnergyContent; - /// Optional element 'prodml22:OverallComposition' of XML schema type 'prodml22:OverallComposition' - prodml22__OverallComposition *OverallComposition; + /// Optional element 'prodml23:OverallComposition' of XML schema type 'prodml23:OverallComposition' + prodml23__OverallComposition *OverallComposition; /// Optional attribute 'productFluidReference' of XML schema type 'eml23:String64' std::string *productFluidReference; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43226,47 +43439,47 @@ class SOAP_CMAC prodml22__ProductFluid : public prodml22__AbstractProductQuantit virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFluid, default initialized and not managed by a soap context - virtual prodml22__ProductFluid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFluid); } + /// Return a new object of type prodml23__ProductFluid, default initialized and not managed by a soap context + virtual prodml23__ProductFluid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFluid); } public: /// Constructor with default initializations - prodml22__ProductFluid() : ProductFluidKind(), GrossEnergyContent(), NetEnergyContent(), OverallComposition(), productFluidReference() { } + prodml23__ProductFluid() : ProductFluidKind(), GrossEnergyContent(), NetEnergyContent(), OverallComposition(), productFluidReference() { } /// Destructor - virtual ~prodml22__ProductFluid() { } - /// Friend allocator used by soap_new_prodml22__ProductFluid(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml22__ProductFluid(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFluid() { } + /// Friend allocator used by soap_new_prodml23__ProductFluid(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFluid * SOAP_FMAC2 soap_instantiate_prodml23__ProductFluid(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2047 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent (-950) -/* complex XML schema type 'prodml22:PseudoFluidComponent': */ -class SOAP_CMAC prodml22__PseudoFluidComponent : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent (-950) +/* complex XML schema type 'prodml23:PseudoFluidComponent': */ +class SOAP_CMAC prodml23__PseudoFluidComponent : public prodml23__AbstractFluidComponent { public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:PseudoComponentKindExt' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:PseudoComponentKindExt' std::string Kind; - /// Optional element 'prodml22:SpecificGravity' of XML schema type 'xsd:double' + /// Optional element 'prodml23:SpecificGravity' of XML schema type 'xsd:double' double *SpecificGravity; - /// Optional element 'prodml22:StartingCarbonNumber' of XML schema type 'eml23:NonNegativeLong' + /// Optional element 'prodml23:StartingCarbonNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 *StartingCarbonNumber; - /// Optional element 'prodml22:EndingCarbonNumber' of XML schema type 'eml23:NonNegativeLong' + /// Optional element 'prodml23:EndingCarbonNumber' of XML schema type 'eml23:NonNegativeLong' LONG64 *EndingCarbonNumber; - /// Optional element 'prodml22:AvgMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:AvgMolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *AvgMolecularWeight; - /// Optional element 'prodml22:AvgDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:AvgDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *AvgDensity; - /// Optional element 'prodml22:StartingBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:StartingBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *StartingBoilingPoint; - /// Optional element 'prodml22:EndingBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:EndingBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *EndingBoilingPoint; - /// Optional element 'prodml22:AvgBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:AvgBoilingPoint' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *AvgBoilingPoint; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43279,35 +43492,35 @@ class SOAP_CMAC prodml22__PseudoFluidComponent : public prodml22__AbstractFluidC virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PseudoFluidComponent, default initialized and not managed by a soap context - virtual prodml22__PseudoFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PseudoFluidComponent); } + /// Return a new object of type prodml23__PseudoFluidComponent, default initialized and not managed by a soap context + virtual prodml23__PseudoFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PseudoFluidComponent); } public: /// Constructor with default initializations - prodml22__PseudoFluidComponent() : Kind(), SpecificGravity(), StartingCarbonNumber(), EndingCarbonNumber(), AvgMolecularWeight(), AvgDensity(), StartingBoilingPoint(), EndingBoilingPoint(), AvgBoilingPoint(), Remark() { } + prodml23__PseudoFluidComponent() : Kind(), SpecificGravity(), StartingCarbonNumber(), EndingCarbonNumber(), AvgMolecularWeight(), AvgDensity(), StartingBoilingPoint(), EndingBoilingPoint(), AvgBoilingPoint(), Remark() { } /// Destructor - virtual ~prodml22__PseudoFluidComponent() { } - /// Friend allocator used by soap_new_prodml22__PseudoFluidComponent(struct soap*, int) - friend SOAP_FMAC1 prodml22__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PseudoFluidComponent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PseudoFluidComponent() { } + /// Friend allocator used by soap_new_prodml23__PseudoFluidComponent(struct soap*, int) + friend SOAP_FMAC1 prodml23__PseudoFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PseudoFluidComponent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2049 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent (-951) -/* complex XML schema type 'prodml22:PureFluidComponent': */ -class SOAP_CMAC prodml22__PureFluidComponent : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent (-951) +/* complex XML schema type 'prodml23:PureFluidComponent': */ +class SOAP_CMAC prodml23__PureFluidComponent : public prodml23__AbstractFluidComponent { public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:PureComponentKindExt' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:PureComponentKindExt' std::string Kind; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; - /// Required element 'prodml22:HydrocarbonFlag' of XML schema type 'xsd:boolean' + /// Required element 'prodml23:HydrocarbonFlag' of XML schema type 'xsd:boolean' bool HydrocarbonFlag; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43320,31 +43533,31 @@ class SOAP_CMAC prodml22__PureFluidComponent : public prodml22__AbstractFluidCom virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PureFluidComponent, default initialized and not managed by a soap context - virtual prodml22__PureFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PureFluidComponent); } + /// Return a new object of type prodml23__PureFluidComponent, default initialized and not managed by a soap context + virtual prodml23__PureFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PureFluidComponent); } public: /// Constructor with default initializations - prodml22__PureFluidComponent() : Kind(), MolecularWeight(), HydrocarbonFlag(), Remark() { } + prodml23__PureFluidComponent() : Kind(), MolecularWeight(), HydrocarbonFlag(), Remark() { } /// Destructor - virtual ~prodml22__PureFluidComponent() { } - /// Friend allocator used by soap_new_prodml22__PureFluidComponent(struct soap*, int) - friend SOAP_FMAC1 prodml22__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__PureFluidComponent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PureFluidComponent() { } + /// Friend allocator used by soap_new_prodml23__PureFluidComponent(struct soap*, int) + friend SOAP_FMAC1 prodml23__PureFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__PureFluidComponent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2051 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid (-952) -/* complex XML schema type 'prodml22:ServiceFluid': */ -class SOAP_CMAC prodml22__ServiceFluid : public prodml22__AbstractProductQuantity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid (-952) +/* complex XML schema type 'prodml23:ServiceFluid': */ +class SOAP_CMAC prodml23__ServiceFluid : public prodml23__AbstractProductQuantity { public: - /// Required element 'prodml22:ServiceFluidKind' of XML schema type 'prodml22:ServiceFluidKindExt' + /// Required element 'prodml23:ServiceFluidKind' of XML schema type 'prodml23:ServiceFluidKindExt' std::string ServiceFluidKind; /// Optional attribute 'serviceFluidReference' of XML schema type 'eml23:String64' std::string *serviceFluidReference; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43357,31 +43570,31 @@ class SOAP_CMAC prodml22__ServiceFluid : public prodml22__AbstractProductQuantit virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ServiceFluid, default initialized and not managed by a soap context - virtual prodml22__ServiceFluid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ServiceFluid); } + /// Return a new object of type prodml23__ServiceFluid, default initialized and not managed by a soap context + virtual prodml23__ServiceFluid *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ServiceFluid); } public: /// Constructor with default initializations - prodml22__ServiceFluid() : ServiceFluidKind(), serviceFluidReference() { } + prodml23__ServiceFluid() : ServiceFluidKind(), serviceFluidReference() { } /// Destructor - virtual ~prodml22__ServiceFluid() { } - /// Friend allocator used by soap_new_prodml22__ServiceFluid(struct soap*, int) - friend SOAP_FMAC1 prodml22__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml22__ServiceFluid(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ServiceFluid() { } + /// Friend allocator used by soap_new_prodml23__ServiceFluid(struct soap*, int) + friend SOAP_FMAC1 prodml23__ServiceFluid * SOAP_FMAC2 soap_instantiate_prodml23__ServiceFluid(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2053 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate (-953) -/* complex XML schema type 'prodml22:StartEndDate': */ -class SOAP_CMAC prodml22__StartEndDate : public prodml22__AbstractDateTimeClass { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate (-953) +/* complex XML schema type 'prodml23:StartEndDate': */ +class SOAP_CMAC prodml23__StartEndDate : public prodml23__AbstractDateTimeClass { public: - /// Optional element 'prodml22:DateStart' of XML schema type 'xsd:date' + /// Optional element 'prodml23:DateStart' of XML schema type 'xsd:date' std::string *DateStart; - /// Optional element 'prodml22:DateEnd' of XML schema type 'xsd:date' + /// Optional element 'prodml23:DateEnd' of XML schema type 'xsd:date' std::string *DateEnd; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43394,31 +43607,31 @@ class SOAP_CMAC prodml22__StartEndDate : public prodml22__AbstractDateTimeClass virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__StartEndDate, default initialized and not managed by a soap context - virtual prodml22__StartEndDate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__StartEndDate); } + /// Return a new object of type prodml23__StartEndDate, default initialized and not managed by a soap context + virtual prodml23__StartEndDate *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__StartEndDate); } public: /// Constructor with default initializations - prodml22__StartEndDate() : DateStart(), DateEnd() { } + prodml23__StartEndDate() : DateStart(), DateEnd() { } /// Destructor - virtual ~prodml22__StartEndDate() { } - /// Friend allocator used by soap_new_prodml22__StartEndDate(struct soap*, int) - friend SOAP_FMAC1 prodml22__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml22__StartEndDate(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__StartEndDate() { } + /// Friend allocator used by soap_new_prodml23__StartEndDate(struct soap*, int) + friend SOAP_FMAC1 prodml23__StartEndDate * SOAP_FMAC2 soap_instantiate_prodml23__StartEndDate(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2055 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime (-954) -/* complex XML schema type 'prodml22:StartEndTime': */ -class SOAP_CMAC prodml22__StartEndTime : public prodml22__AbstractDateTimeClass { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime (-954) +/* complex XML schema type 'prodml23:StartEndTime': */ +class SOAP_CMAC prodml23__StartEndTime : public prodml23__AbstractDateTimeClass { public: - /// Optional element 'prodml22:DTimStart' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTimStart' of XML schema type 'eml23:TimeStamp' struct tm *DTimStart; - /// Optional element 'prodml22:DTimEnd' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTimEnd' of XML schema type 'eml23:TimeStamp' struct tm *DTimEnd; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43431,41 +43644,41 @@ class SOAP_CMAC prodml22__StartEndTime : public prodml22__AbstractDateTimeClass virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__StartEndTime, default initialized and not managed by a soap context - virtual prodml22__StartEndTime *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__StartEndTime); } + /// Return a new object of type prodml23__StartEndTime, default initialized and not managed by a soap context + virtual prodml23__StartEndTime *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__StartEndTime); } public: /// Constructor with default initializations - prodml22__StartEndTime() : DTimStart(), DTimEnd() { } + prodml23__StartEndTime() : DTimStart(), DTimEnd() { } /// Destructor - virtual ~prodml22__StartEndTime() { } - /// Friend allocator used by soap_new_prodml22__StartEndTime(struct soap*, int) - friend SOAP_FMAC1 prodml22__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml22__StartEndTime(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__StartEndTime() { } + /// Friend allocator used by soap_new_prodml23__StartEndTime(struct soap*, int) + friend SOAP_FMAC1 prodml23__StartEndTime * SOAP_FMAC2 soap_instantiate_prodml23__StartEndTime(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2057 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil (-955) -/* complex XML schema type 'prodml22:StockTankOil': */ -class SOAP_CMAC prodml22__StockTankOil : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil (-955) +/* complex XML schema type 'prodml23:StockTankOil': */ +class SOAP_CMAC prodml23__StockTankOil : public prodml23__AbstractFluidComponent { public: - /// Optional element 'prodml22:APIGravity' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:APIGravity' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *APIGravity; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; - /// Optional element 'prodml22:GrossEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' + /// Optional element 'prodml23:GrossEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' eml23__EnergyPerMassMeasure *GrossEnergyContentPerUnitMass; - /// Optional element 'prodml22:NetEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' + /// Optional element 'prodml23:NetEnergyContentPerUnitMass' of XML schema type 'eml23:EnergyPerMassMeasure' eml23__EnergyPerMassMeasure *NetEnergyContentPerUnitMass; - /// Optional element 'prodml22:GrossEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' + /// Optional element 'prodml23:GrossEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' eml23__EnergyPerVolumeMeasure *GrossEnergyContentPerUnitVolume; - /// Optional element 'prodml22:NetEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' + /// Optional element 'prodml23:NetEnergyContentPerUnitVolume' of XML schema type 'eml23:EnergyPerVolumeMeasure' eml23__EnergyPerVolumeMeasure *NetEnergyContentPerUnitVolume; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43478,33 +43691,33 @@ class SOAP_CMAC prodml22__StockTankOil : public prodml22__AbstractFluidComponent virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__StockTankOil, default initialized and not managed by a soap context - virtual prodml22__StockTankOil *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__StockTankOil); } + /// Return a new object of type prodml23__StockTankOil, default initialized and not managed by a soap context + virtual prodml23__StockTankOil *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__StockTankOil); } public: /// Constructor with default initializations - prodml22__StockTankOil() : APIGravity(), MolecularWeight(), GrossEnergyContentPerUnitMass(), NetEnergyContentPerUnitMass(), GrossEnergyContentPerUnitVolume(), NetEnergyContentPerUnitVolume(), Remark() { } + prodml23__StockTankOil() : APIGravity(), MolecularWeight(), GrossEnergyContentPerUnitMass(), NetEnergyContentPerUnitMass(), GrossEnergyContentPerUnitVolume(), NetEnergyContentPerUnitVolume(), Remark() { } /// Destructor - virtual ~prodml22__StockTankOil() { } - /// Friend allocator used by soap_new_prodml22__StockTankOil(struct soap*, int) - friend SOAP_FMAC1 prodml22__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml22__StockTankOil(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__StockTankOil() { } + /// Friend allocator used by soap_new_prodml23__StockTankOil(struct soap*, int) + friend SOAP_FMAC1 prodml23__StockTankOil * SOAP_FMAC2 soap_instantiate_prodml23__StockTankOil(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2059 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent (-956) -/* complex XML schema type 'prodml22:SulfurFluidComponent': */ -class SOAP_CMAC prodml22__SulfurFluidComponent : public prodml22__AbstractFluidComponent { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent (-956) +/* complex XML schema type 'prodml23:SulfurFluidComponent': */ +class SOAP_CMAC prodml23__SulfurFluidComponent : public prodml23__AbstractFluidComponent { public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:SulfurComponentKindExt' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:SulfurComponentKindExt' std::string Kind; - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasureExt' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasureExt' eml23__MolecularWeightMeasureExt *MolecularWeight; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43517,29 +43730,29 @@ class SOAP_CMAC prodml22__SulfurFluidComponent : public prodml22__AbstractFluidC virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SulfurFluidComponent, default initialized and not managed by a soap context - virtual prodml22__SulfurFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SulfurFluidComponent); } + /// Return a new object of type prodml23__SulfurFluidComponent, default initialized and not managed by a soap context + virtual prodml23__SulfurFluidComponent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SulfurFluidComponent); } public: /// Constructor with default initializations - prodml22__SulfurFluidComponent() : Kind(), MolecularWeight(), Remark() { } + prodml23__SulfurFluidComponent() : Kind(), MolecularWeight(), Remark() { } /// Destructor - virtual ~prodml22__SulfurFluidComponent() { } - /// Friend allocator used by soap_new_prodml22__SulfurFluidComponent(struct soap*, int) - friend SOAP_FMAC1 prodml22__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml22__SulfurFluidComponent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SulfurFluidComponent() { } + /// Friend allocator used by soap_new_prodml23__SulfurFluidComponent(struct soap*, int) + friend SOAP_FMAC1 prodml23__SulfurFluidComponent * SOAP_FMAC2 soap_instantiate_prodml23__SulfurFluidComponent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2077 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd (-965) -/* complex XML schema type 'prodml22:CumulativeGasProducedRatioStd': */ -class SOAP_CMAC prodml22__CumulativeGasProducedRatioStd : public prodml22__AbstractGasProducedRatioVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd (-965) +/* complex XML schema type 'prodml23:CumulativeGasProducedRatioStd': */ +class SOAP_CMAC prodml23__CumulativeGasProducedRatioStd : public prodml23__AbstractGasProducedRatioVolume { public: - /// Required element 'prodml22:CumulativeGasProducedRatioStd' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Required element 'prodml23:CumulativeGasProducedRatioStd' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *CumulativeGasProducedRatioStd; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43552,29 +43765,29 @@ class SOAP_CMAC prodml22__CumulativeGasProducedRatioStd : public prodml22__Abstr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CumulativeGasProducedRatioStd, default initialized and not managed by a soap context - virtual prodml22__CumulativeGasProducedRatioStd *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CumulativeGasProducedRatioStd); } + /// Return a new object of type prodml23__CumulativeGasProducedRatioStd, default initialized and not managed by a soap context + virtual prodml23__CumulativeGasProducedRatioStd *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CumulativeGasProducedRatioStd); } public: /// Constructor with default initializations - prodml22__CumulativeGasProducedRatioStd() : CumulativeGasProducedRatioStd() { } + prodml23__CumulativeGasProducedRatioStd() : CumulativeGasProducedRatioStd() { } /// Destructor - virtual ~prodml22__CumulativeGasProducedRatioStd() { } - /// Friend allocator used by soap_new_prodml22__CumulativeGasProducedRatioStd(struct soap*, int) - friend SOAP_FMAC1 prodml22__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate_prodml22__CumulativeGasProducedRatioStd(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CumulativeGasProducedRatioStd() { } + /// Friend allocator used by soap_new_prodml23__CumulativeGasProducedRatioStd(struct soap*, int) + friend SOAP_FMAC1 prodml23__CumulativeGasProducedRatioStd * SOAP_FMAC2 soap_instantiate_prodml23__CumulativeGasProducedRatioStd(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2079 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol (-966) -/* complex XML schema type 'prodml22:CumulativeGasProducedVol': */ -class SOAP_CMAC prodml22__CumulativeGasProducedVol : public prodml22__AbstractGasProducedRatioVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol (-966) +/* complex XML schema type 'prodml23:CumulativeGasProducedVol': */ +class SOAP_CMAC prodml23__CumulativeGasProducedVol : public prodml23__AbstractGasProducedRatioVolume { public: - /// Required element 'prodml22:CumulativeGasProducedVolume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:CumulativeGasProducedVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *CumulativeGasProducedVolume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43587,55 +43800,55 @@ class SOAP_CMAC prodml22__CumulativeGasProducedVol : public prodml22__AbstractGa virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CumulativeGasProducedVol, default initialized and not managed by a soap context - virtual prodml22__CumulativeGasProducedVol *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CumulativeGasProducedVol); } + /// Return a new object of type prodml23__CumulativeGasProducedVol, default initialized and not managed by a soap context + virtual prodml23__CumulativeGasProducedVol *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CumulativeGasProducedVol); } public: /// Constructor with default initializations - prodml22__CumulativeGasProducedVol() : CumulativeGasProducedVolume() { } + prodml23__CumulativeGasProducedVol() : CumulativeGasProducedVolume() { } /// Destructor - virtual ~prodml22__CumulativeGasProducedVol() { } - /// Friend allocator used by soap_new_prodml22__CumulativeGasProducedVol(struct soap*, int) - friend SOAP_FMAC1 prodml22__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prodml22__CumulativeGasProducedVol(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CumulativeGasProducedVol() { } + /// Friend allocator used by soap_new_prodml23__CumulativeGasProducedVol(struct soap*, int) + friend SOAP_FMAC1 prodml23__CumulativeGasProducedVol * SOAP_FMAC2 soap_instantiate_prodml23__CumulativeGasProducedVol(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2087 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis (-970) -/* complex XML schema type 'prodml22:FluidAnalysis': */ -class SOAP_CMAC prodml22__FluidAnalysis : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis (-970) +/* complex XML schema type 'prodml23:FluidAnalysis': */ +class SOAP_CMAC prodml23__FluidAnalysis : public eml23__AbstractObject { public: - /// Optional element 'prodml22:RequestDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:RequestDate' of XML schema type 'xsd:date' std::string *RequestDate; - /// Optional element 'prodml22:Client' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Client' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Client; - /// Optional element 'prodml22:StartTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:StartTime' of XML schema type 'eml23:TimeStamp' struct tm *StartTime; - /// Optional element 'prodml22:EndTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EndTime' of XML schema type 'eml23:TimeStamp' struct tm *EndTime; - /// Optional element 'prodml22:AnalysisDescription' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:AnalysisDescription' of XML schema type 'eml23:String2000' std::string *AnalysisDescription; - /// Optional element 'prodml22:AnalysisPurpose' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:AnalysisPurpose' of XML schema type 'eml23:String2000' std::string *AnalysisPurpose; - /// Optional element 'prodml22:AnalysisSite' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:AnalysisSite' of XML schema type 'eml23:String2000' std::string *AnalysisSite; - /// Optional element 'prodml22:LabContact' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:LabContact' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *LabContact; - /// Required element 'prodml22:StandardConditions' of XML schema type 'eml23:AbstractTemperaturePressure' + /// Required element 'prodml23:StandardConditions' of XML schema type 'eml23:AbstractTemperaturePressure' eml23__AbstractTemperaturePressure *StandardConditions; - /// Required element 'prodml22:AnalysisQuality' of XML schema type 'prodml22:SampleQuality' - prodml22__SampleQuality AnalysisQuality; - /// Optional element 'prodml22:FluidComponentCatalog' of XML schema type 'prodml22:FluidComponentCatalog' - prodml22__FluidComponentCatalog *FluidComponentCatalog; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:AnalysisQuality' of XML schema type 'prodml23:SampleQuality' + prodml23__SampleQuality AnalysisQuality; + /// Optional element 'prodml23:FluidComponentCatalog' of XML schema type 'prodml23:FluidComponentCatalog' + prodml23__FluidComponentCatalog *FluidComponentCatalog; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FluidAnalysisReport' of XML schema type 'prodml22:FluidAnalysisReport' - std::vector FluidAnalysisReport; - /// Optional element 'prodml22:SampleContaminant' of XML schema type 'prodml22:SampleContaminant' - std::vector SampleContaminant; + /// Optional element 'prodml23:FluidAnalysisReport' of XML schema type 'prodml23:FluidAnalysisReport' + std::vector FluidAnalysisReport; + /// Optional element 'prodml23:SampleContaminant' of XML schema type 'prodml23:SampleContaminant' + std::vector SampleContaminant; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43648,29 +43861,29 @@ class SOAP_CMAC prodml22__FluidAnalysis : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidAnalysis, default initialized and not managed by a soap context - virtual prodml22__FluidAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidAnalysis); } + /// Return a new object of type prodml23__FluidAnalysis, default initialized and not managed by a soap context + virtual prodml23__FluidAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidAnalysis); } public: /// Constructor with default initializations - prodml22__FluidAnalysis() : RequestDate(), Client(), StartTime(), EndTime(), AnalysisDescription(), AnalysisPurpose(), AnalysisSite(), LabContact(), StandardConditions(), AnalysisQuality(), FluidComponentCatalog(), Remark(), FluidAnalysisReport(), SampleContaminant() { } + prodml23__FluidAnalysis() : RequestDate(), Client(), StartTime(), EndTime(), AnalysisDescription(), AnalysisPurpose(), AnalysisSite(), LabContact(), StandardConditions(), AnalysisQuality(), FluidComponentCatalog(), Remark(), FluidAnalysisReport(), SampleContaminant() { } /// Destructor - virtual ~prodml22__FluidAnalysis() { } - /// Friend allocator used by soap_new_prodml22__FluidAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__FluidAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidAnalysis() { } + /// Friend allocator used by soap_new_prodml23__FluidAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__FluidAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2109 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction (-981) -/* complex XML schema type 'prodml22:LiquidDropoutFraction': */ -class SOAP_CMAC prodml22__LiquidDropoutFraction : public prodml22__AbstractLiquidDropoutPercVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction (-981) +/* complex XML schema type 'prodml23:LiquidDropoutFraction': */ +class SOAP_CMAC prodml23__LiquidDropoutFraction : public prodml23__AbstractLiquidDropoutPercVolume { public: - /// Required element 'prodml22:LiquidDropoutPercent' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Required element 'prodml23:LiquidDropoutPercent' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *LiquidDropoutPercent; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43683,29 +43896,29 @@ class SOAP_CMAC prodml22__LiquidDropoutFraction : public prodml22__AbstractLiqui virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LiquidDropoutFraction, default initialized and not managed by a soap context - virtual prodml22__LiquidDropoutFraction *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LiquidDropoutFraction); } + /// Return a new object of type prodml23__LiquidDropoutFraction, default initialized and not managed by a soap context + virtual prodml23__LiquidDropoutFraction *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LiquidDropoutFraction); } public: /// Constructor with default initializations - prodml22__LiquidDropoutFraction() : LiquidDropoutPercent() { } + prodml23__LiquidDropoutFraction() : LiquidDropoutPercent() { } /// Destructor - virtual ~prodml22__LiquidDropoutFraction() { } - /// Friend allocator used by soap_new_prodml22__LiquidDropoutFraction(struct soap*, int) - friend SOAP_FMAC1 prodml22__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml22__LiquidDropoutFraction(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LiquidDropoutFraction() { } + /// Friend allocator used by soap_new_prodml23__LiquidDropoutFraction(struct soap*, int) + friend SOAP_FMAC1 prodml23__LiquidDropoutFraction * SOAP_FMAC2 soap_instantiate_prodml23__LiquidDropoutFraction(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2111 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume (-982) -/* complex XML schema type 'prodml22:LiquidVolume': */ -class SOAP_CMAC prodml22__LiquidVolume : public prodml22__AbstractLiquidDropoutPercVolume { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume (-982) +/* complex XML schema type 'prodml23:LiquidVolume': */ +class SOAP_CMAC prodml23__LiquidVolume : public prodml23__AbstractLiquidDropoutPercVolume { public: - /// Required element 'prodml22:LiquidVolume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:LiquidVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *LiquidVolume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43718,29 +43931,29 @@ class SOAP_CMAC prodml22__LiquidVolume : public prodml22__AbstractLiquidDropoutP virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LiquidVolume, default initialized and not managed by a soap context - virtual prodml22__LiquidVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LiquidVolume); } + /// Return a new object of type prodml23__LiquidVolume, default initialized and not managed by a soap context + virtual prodml23__LiquidVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LiquidVolume); } public: /// Constructor with default initializations - prodml22__LiquidVolume() : LiquidVolume() { } + prodml23__LiquidVolume() : LiquidVolume() { } /// Destructor - virtual ~prodml22__LiquidVolume() { } - /// Friend allocator used by soap_new_prodml22__LiquidVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml22__LiquidVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LiquidVolume() { } + /// Friend allocator used by soap_new_prodml23__LiquidVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__LiquidVolume * SOAP_FMAC2 soap_instantiate_prodml23__LiquidVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2127 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor (-990) -/* complex XML schema type 'prodml22:OilShrinkageFactor': */ -class SOAP_CMAC prodml22__OilShrinkageFactor : public prodml22__AbstractOilVolShrinkage { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor (-990) +/* complex XML schema type 'prodml23:OilShrinkageFactor': */ +class SOAP_CMAC prodml23__OilShrinkageFactor : public prodml23__AbstractOilVolShrinkage { public: - /// Required element 'prodml22:OilShrinkageFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Required element 'prodml23:OilShrinkageFactor' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *OilShrinkageFactor; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43753,29 +43966,29 @@ class SOAP_CMAC prodml22__OilShrinkageFactor : public prodml22__AbstractOilVolSh virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OilShrinkageFactor, default initialized and not managed by a soap context - virtual prodml22__OilShrinkageFactor *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OilShrinkageFactor); } + /// Return a new object of type prodml23__OilShrinkageFactor, default initialized and not managed by a soap context + virtual prodml23__OilShrinkageFactor *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OilShrinkageFactor); } public: /// Constructor with default initializations - prodml22__OilShrinkageFactor() : OilShrinkageFactor() { } + prodml23__OilShrinkageFactor() : OilShrinkageFactor() { } /// Destructor - virtual ~prodml22__OilShrinkageFactor() { } - /// Friend allocator used by soap_new_prodml22__OilShrinkageFactor(struct soap*, int) - friend SOAP_FMAC1 prodml22__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml22__OilShrinkageFactor(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OilShrinkageFactor() { } + /// Friend allocator used by soap_new_prodml23__OilShrinkageFactor(struct soap*, int) + friend SOAP_FMAC1 prodml23__OilShrinkageFactor * SOAP_FMAC2 soap_instantiate_prodml23__OilShrinkageFactor(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2129 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume (-991) -/* complex XML schema type 'prodml22:OilVolume': */ -class SOAP_CMAC prodml22__OilVolume : public prodml22__AbstractOilVolShrinkage { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume (-991) +/* complex XML schema type 'prodml23:OilVolume': */ +class SOAP_CMAC prodml23__OilVolume : public prodml23__AbstractOilVolShrinkage { public: - /// Required element 'prodml22:OilVolume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:OilVolume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *OilVolume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43788,49 +44001,50 @@ class SOAP_CMAC prodml22__OilVolume : public prodml22__AbstractOilVolShrinkage { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OilVolume, default initialized and not managed by a soap context - virtual prodml22__OilVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OilVolume); } + /// Return a new object of type prodml23__OilVolume, default initialized and not managed by a soap context + virtual prodml23__OilVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OilVolume); } public: /// Constructor with default initializations - prodml22__OilVolume() : OilVolume() { } + prodml23__OilVolume() : OilVolume() { } /// Destructor - virtual ~prodml22__OilVolume() { } - /// Friend allocator used by soap_new_prodml22__OilVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__OilVolume * SOAP_FMAC2 soap_instantiate_prodml22__OilVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OilVolume() { } + /// Friend allocator used by soap_new_prodml23__OilVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__OilVolume * SOAP_FMAC2 soap_instantiate_prodml23__OilVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2193 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem (-1023) -/* complex XML schema type 'prodml22:FluidSystem': */ -class SOAP_CMAC prodml22__FluidSystem : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem (-1023) +/* Type prodml23__FluidSystem is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FluidSystem': */ +class SOAP_CMAC prodml23__FluidSystem : public eml23__AbstractObject { public: - /// Required element 'prodml22:StandardConditions' of XML schema type 'eml23:AbstractTemperaturePressure' + /// Required element 'prodml23:StandardConditions' of XML schema type 'eml23:AbstractTemperaturePressure' eml23__AbstractTemperaturePressure *StandardConditions; - /// Required element 'prodml22:ReservoirFluidKind' of XML schema type 'prodml22:ReservoirFluidKind' - prodml22__ReservoirFluidKind ReservoirFluidKind; - /// Optional element 'prodml22:PhasesPresent' of XML schema type 'prodml22:PhasePresent' - prodml22__PhasePresent *PhasesPresent; - /// Optional element 'prodml22:ReservoirLifeCycleState' of XML schema type 'prodml22:ReservoirLifeCycleState' - prodml22__ReservoirLifeCycleState *ReservoirLifeCycleState; - /// Optional element 'prodml22:RockFluidOrganizationInterpretation' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:ReservoirFluidKind' of XML schema type 'prodml23:ReservoirFluidKind' + prodml23__ReservoirFluidKind ReservoirFluidKind; + /// Optional element 'prodml23:PhasesPresent' of XML schema type 'prodml23:PhasePresent' + prodml23__PhasePresent *PhasesPresent; + /// Optional element 'prodml23:ReservoirLifeCycleState' of XML schema type 'prodml23:ReservoirLifeCycleState' + prodml23__ReservoirLifeCycleState *ReservoirLifeCycleState; + /// Optional element 'prodml23:RockFluidOrganizationInterpretation' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *RockFluidOrganizationInterpretation; - /// Optional element 'prodml22:SaturationPressure' of XML schema type 'prodml22:SaturationPressure' - prodml22__SaturationPressure *SaturationPressure; - /// Required element 'prodml22:SolutionGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SaturationPressure' of XML schema type 'prodml23:SaturationPressure' + prodml23__SaturationPressure *SaturationPressure; + /// Required element 'prodml23:SolutionGOR' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGOR; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:StockTankOil' of XML schema type 'prodml22:StockTankOil' - prodml22__StockTankOil *StockTankOil; - /// Optional element 'prodml22:FormationWater' of XML schema type 'prodml22:FormationWater' - prodml22__FormationWater *FormationWater; - /// Optional element 'prodml22:NaturalGas' of XML schema type 'prodml22:NaturalGas' - prodml22__NaturalGas *NaturalGas; + /// Optional element 'prodml23:StockTankOil' of XML schema type 'prodml23:StockTankOil' + prodml23__StockTankOil *StockTankOil; + /// Optional element 'prodml23:FormationWater' of XML schema type 'prodml23:FormationWater' + prodml23__FormationWater *FormationWater; + /// Optional element 'prodml23:NaturalGas' of XML schema type 'prodml23:NaturalGas' + prodml23__NaturalGas *NaturalGas; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43843,31 +44057,31 @@ class SOAP_CMAC prodml22__FluidSystem : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSystem, default initialized and not managed by a soap context - virtual prodml22__FluidSystem *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSystem); } + /// Return a new object of type prodml23__FluidSystem, default initialized and not managed by a soap context + virtual prodml23__FluidSystem *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSystem); } public: /// Constructor with default initializations - prodml22__FluidSystem() : StandardConditions(), ReservoirFluidKind(), PhasesPresent(), ReservoirLifeCycleState(), RockFluidOrganizationInterpretation(), SaturationPressure(), SolutionGOR(), Remark(), StockTankOil(), FormationWater(), NaturalGas() { } + prodml23__FluidSystem() : StandardConditions(), ReservoirFluidKind(), PhasesPresent(), ReservoirLifeCycleState(), RockFluidOrganizationInterpretation(), SaturationPressure(), SolutionGOR(), Remark(), StockTankOil(), FormationWater(), NaturalGas() { } /// Destructor - virtual ~prodml22__FluidSystem() { } - /// Friend allocator used by soap_new_prodml22__FluidSystem(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml22__FluidSystem(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSystem() { } + /// Friend allocator used by soap_new_prodml23__FluidSystem(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSystem * SOAP_FMAC2 soap_instantiate_prodml23__FluidSystem(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2197 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData (-1025) -/* complex XML schema type 'prodml22:AbstractPtaFlowData': */ -class SOAP_CMAC prodml22__AbstractPtaFlowData : public prodml22__AbstractFlowTestData { - public: - /// Optional element 'prodml22:FluidPhaseMeasuredKind' of XML schema type 'prodml22:FluidPhaseKind' - prodml22__FluidPhaseKind *FluidPhaseMeasuredKind; - /// Required element 'prodml22:FlowChannel' of XML schema type 'eml23:DataObjectReference' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData (-1025) +/* complex XML schema type 'prodml23:AbstractPtaFlowData': */ +class SOAP_CMAC prodml23__AbstractPtaFlowData : public prodml23__AbstractFlowTestData { + public: + /// Optional element 'prodml23:FluidPhaseMeasuredKind' of XML schema type 'prodml23:FluidPhaseKind' + prodml23__FluidPhaseKind *FluidPhaseMeasuredKind; + /// Required element 'prodml23:FlowChannel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowChannel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43880,26 +44094,26 @@ class SOAP_CMAC prodml22__AbstractPtaFlowData : public prodml22__AbstractFlowTes virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractPtaFlowData, default initialized and not managed by a soap context - virtual prodml22__AbstractPtaFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractPtaFlowData); } + /// Return a new object of type prodml23__AbstractPtaFlowData, default initialized and not managed by a soap context + virtual prodml23__AbstractPtaFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractPtaFlowData); } public: /// Constructor with default initializations - prodml22__AbstractPtaFlowData() : FluidPhaseMeasuredKind(), FlowChannel() { } + prodml23__AbstractPtaFlowData() : FluidPhaseMeasuredKind(), FlowChannel() { } /// Destructor - virtual ~prodml22__AbstractPtaFlowData() { } - /// Friend allocator used by soap_new_prodml22__AbstractPtaFlowData(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPtaFlowData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractPtaFlowData() { } + /// Friend allocator used by soap_new_prodml23__AbstractPtaFlowData(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractPtaFlowData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPtaFlowData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2199 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Channel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Channel (-1026) -/* complex XML schema type 'prodml22:Channel': */ -class SOAP_CMAC prodml22__Channel : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Channel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Channel (-1026) +/* complex XML schema type 'prodml23:Channel': */ +class SOAP_CMAC prodml23__Channel : public eml23__AbstractObject { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Channel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Channel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Channel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Channel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43912,31 +44126,32 @@ class SOAP_CMAC prodml22__Channel : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Channel, default initialized and not managed by a soap context - virtual prodml22__Channel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Channel); } + /// Return a new object of type prodml23__Channel, default initialized and not managed by a soap context + virtual prodml23__Channel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Channel); } public: /// Constructor with default initializations - prodml22__Channel() { } + prodml23__Channel() { } /// Destructor - virtual ~prodml22__Channel() { } - /// Friend allocator used by soap_new_prodml22__Channel(struct soap*, int) - friend SOAP_FMAC1 prodml22__Channel * SOAP_FMAC2 soap_instantiate_prodml22__Channel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Channel() { } + /// Friend allocator used by soap_new_prodml23__Channel(struct soap*, int) + friend SOAP_FMAC1 prodml23__Channel * SOAP_FMAC2 soap_instantiate_prodml23__Channel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2201 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet (-1027) -/* complex XML schema type 'prodml22:ChannelSet': */ -class SOAP_CMAC prodml22__ChannelSet : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet (-1027) +/* Type prodml23__ChannelSet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ChannelSet': */ +class SOAP_CMAC prodml23__ChannelSet : public eml23__AbstractObject { public: - /// Optional element 'prodml22:Data' of XML schema type 'xsd:string' + /// Optional element 'prodml23:Data' of XML schema type 'xsd:string' std::vector Data; - /// Optional element 'prodml22:Channel' of XML schema type 'prodml22:Channel' - std::vector Channel; + /// Optional element 'prodml23:Channel' of XML schema type 'prodml23:Channel' + std::vector Channel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43949,26 +44164,27 @@ class SOAP_CMAC prodml22__ChannelSet : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ChannelSet, default initialized and not managed by a soap context - virtual prodml22__ChannelSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ChannelSet); } + /// Return a new object of type prodml23__ChannelSet, default initialized and not managed by a soap context + virtual prodml23__ChannelSet *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ChannelSet); } public: /// Constructor with default initializations - prodml22__ChannelSet() : Data(), Channel() { } + prodml23__ChannelSet() : Data(), Channel() { } /// Destructor - virtual ~prodml22__ChannelSet() { } - /// Friend allocator used by soap_new_prodml22__ChannelSet(struct soap*, int) - friend SOAP_FMAC1 prodml22__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml22__ChannelSet(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ChannelSet() { } + /// Friend allocator used by soap_new_prodml23__ChannelSet(struct soap*, int) + friend SOAP_FMAC1 prodml23__ChannelSet * SOAP_FMAC2 soap_instantiate_prodml23__ChannelSet(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2205 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity (-1029) -/* complex XML schema type 'prodml22:FlowTestActivity': */ -class SOAP_CMAC prodml22__FlowTestActivity : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity (-1029) +/* Type prodml23__FlowTestActivity is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FlowTestActivity': */ +class SOAP_CMAC prodml23__FlowTestActivity : public eml23__AbstractObject { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -43981,29 +44197,29 @@ class SOAP_CMAC prodml22__FlowTestActivity : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FlowTestActivity, default initialized and not managed by a soap context - virtual prodml22__FlowTestActivity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FlowTestActivity); } + /// Return a new object of type prodml23__FlowTestActivity, default initialized and not managed by a soap context + virtual prodml23__FlowTestActivity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FlowTestActivity); } public: /// Constructor with default initializations - prodml22__FlowTestActivity() { } + prodml23__FlowTestActivity() { } /// Destructor - virtual ~prodml22__FlowTestActivity() { } - /// Friend allocator used by soap_new_prodml22__FlowTestActivity(struct soap*, int) - friend SOAP_FMAC1 prodml22__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestActivity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FlowTestActivity() { } + /// Friend allocator used by soap_new_prodml23__FlowTestActivity(struct soap*, int) + friend SOAP_FMAC1 prodml23__FlowTestActivity * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestActivity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2217 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData (-1035) -/* complex XML schema type 'prodml22:OtherData': */ -class SOAP_CMAC prodml22__OtherData : public prodml22__AbstractFlowTestData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData (-1035) +/* complex XML schema type 'prodml23:OtherData': */ +class SOAP_CMAC prodml23__OtherData : public prodml23__AbstractFlowTestData { public: - /// Required element 'prodml22:DataChannel' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:DataChannel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *DataChannel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44016,29 +44232,30 @@ class SOAP_CMAC prodml22__OtherData : public prodml22__AbstractFlowTestData { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OtherData, default initialized and not managed by a soap context - virtual prodml22__OtherData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OtherData); } + /// Return a new object of type prodml23__OtherData, default initialized and not managed by a soap context + virtual prodml23__OtherData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OtherData); } public: /// Constructor with default initializations - prodml22__OtherData() : DataChannel() { } + prodml23__OtherData() : DataChannel() { } /// Destructor - virtual ~prodml22__OtherData() { } - /// Friend allocator used by soap_new_prodml22__OtherData(struct soap*, int) - friend SOAP_FMAC1 prodml22__OtherData * SOAP_FMAC2 soap_instantiate_prodml22__OtherData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OtherData() { } + /// Friend allocator used by soap_new_prodml23__OtherData(struct soap*, int) + friend SOAP_FMAC1 prodml23__OtherData * SOAP_FMAC2 soap_instantiate_prodml23__OtherData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2233 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Facility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Facility (-1043) -/* complex XML schema type 'prodml22:Facility': */ -class SOAP_CMAC prodml22__Facility : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Facility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Facility (-1043) +/* Type prodml23__Facility is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:Facility': */ +class SOAP_CMAC prodml23__Facility : public eml23__AbstractObject { public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:ReportingFacilityExt' + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:ReportingFacilityExt' std::string Kind; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Facility - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Facility; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Facility + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Facility; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44051,33 +44268,34 @@ class SOAP_CMAC prodml22__Facility : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Facility, default initialized and not managed by a soap context - virtual prodml22__Facility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Facility); } + /// Return a new object of type prodml23__Facility, default initialized and not managed by a soap context + virtual prodml23__Facility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Facility); } public: /// Constructor with default initializations - prodml22__Facility() : Kind() { } + prodml23__Facility() : Kind() { } /// Destructor - virtual ~prodml22__Facility() { } - /// Friend allocator used by soap_new_prodml22__Facility(struct soap*, int) - friend SOAP_FMAC1 prodml22__Facility * SOAP_FMAC2 soap_instantiate_prodml22__Facility(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Facility() { } + /// Friend allocator used by soap_new_prodml23__Facility(struct soap*, int) + friend SOAP_FMAC1 prodml23__Facility * SOAP_FMAC2 soap_instantiate_prodml23__Facility(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2235 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity (-1044) -/* complex XML schema type 'prodml22:ReportingEntity': */ -class SOAP_CMAC prodml22__ReportingEntity : public eml23__AbstractObject { - public: - /// Required element 'prodml22:Kind' of XML schema type 'prodml22:ReportingEntityKind' - prodml22__ReportingEntityKind Kind; - /// Optional element 'prodml22:AssociatedFacility' of XML schema type 'eml23:DataObjectReference' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity (-1044) +/* Type prodml23__ReportingEntity is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ReportingEntity': */ +class SOAP_CMAC prodml23__ReportingEntity : public eml23__AbstractObject { + public: + /// Required element 'prodml23:Kind' of XML schema type 'prodml23:ReportingEntityKind' + prodml23__ReportingEntityKind Kind; + /// Optional element 'prodml23:AssociatedFacility' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *AssociatedFacility; - /// Optional element 'prodml22:AssociatedObject' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:AssociatedObject' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *AssociatedObject; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44090,29 +44308,30 @@ class SOAP_CMAC prodml22__ReportingEntity : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReportingEntity, default initialized and not managed by a soap context - virtual prodml22__ReportingEntity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReportingEntity); } + /// Return a new object of type prodml23__ReportingEntity, default initialized and not managed by a soap context + virtual prodml23__ReportingEntity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReportingEntity); } public: /// Constructor with default initializations - prodml22__ReportingEntity() : Kind(), AssociatedFacility(), AssociatedObject() { } + prodml23__ReportingEntity() : Kind(), AssociatedFacility(), AssociatedObject() { } /// Destructor - virtual ~prodml22__ReportingEntity() { } - /// Friend allocator used by soap_new_prodml22__ReportingEntity(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml22__ReportingEntity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReportingEntity() { } + /// Friend allocator used by soap_new_prodml23__ReportingEntity(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReportingEntity * SOAP_FMAC2 soap_instantiate_prodml23__ReportingEntity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2237 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy (-1045) -/* complex XML schema type 'prodml22:ReportingHierarchy': */ -class SOAP_CMAC prodml22__ReportingHierarchy : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy (-1045) +/* Type prodml23__ReportingHierarchy is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ReportingHierarchy': */ +class SOAP_CMAC prodml23__ReportingHierarchy : public eml23__AbstractObject { public: - /// Required element 'prodml22:ReportingNode' of XML schema type 'prodml22:ReportingHierarchyNode' - std::vector ReportingNode; + /// Required element 'prodml23:ReportingNode' of XML schema type 'prodml23:ReportingHierarchyNode' + std::vector ReportingNode; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44125,35 +44344,35 @@ class SOAP_CMAC prodml22__ReportingHierarchy : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReportingHierarchy, default initialized and not managed by a soap context - virtual prodml22__ReportingHierarchy *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReportingHierarchy); } + /// Return a new object of type prodml23__ReportingHierarchy, default initialized and not managed by a soap context + virtual prodml23__ReportingHierarchy *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReportingHierarchy); } public: /// Constructor with default initializations - prodml22__ReportingHierarchy() : ReportingNode() { } + prodml23__ReportingHierarchy() : ReportingNode() { } /// Destructor - virtual ~prodml22__ReportingHierarchy() { } - /// Friend allocator used by soap_new_prodml22__ReportingHierarchy(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml22__ReportingHierarchy(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReportingHierarchy() { } + /// Friend allocator used by soap_new_prodml23__ReportingHierarchy(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReportingHierarchy * SOAP_FMAC2 soap_instantiate_prodml23__ReportingHierarchy(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2245 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData (-1049) -/* complex XML schema type 'prodml22:AbstractPtaPressureData': */ -class SOAP_CMAC prodml22__AbstractPtaPressureData : public prodml22__AbstractFlowTestData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData (-1049) +/* complex XML schema type 'prodml23:AbstractPtaPressureData': */ +class SOAP_CMAC prodml23__AbstractPtaPressureData : public prodml23__AbstractFlowTestData { public: - /// Required element 'prodml22:PressureChannel' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:PressureChannel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *PressureChannel; - /// Optional element 'prodml22:PressureDerivativeChannel' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:PressureDerivativeChannel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *PressureDerivativeChannel; - /// Optional element 'prodml22:PressureReferenceDepth' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:PressureReferenceDepth' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *PressureReferenceDepth; - /// Optional element 'prodml22:Datum' of XML schema type 'eml23:ReferencePointKind' + /// Optional element 'prodml23:Datum' of XML schema type 'eml23:ReferencePointKind' eml23__ReferencePointKind *Datum; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44166,29 +44385,29 @@ class SOAP_CMAC prodml22__AbstractPtaPressureData : public prodml22__AbstractFlo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractPtaPressureData, default initialized and not managed by a soap context - virtual prodml22__AbstractPtaPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractPtaPressureData); } + /// Return a new object of type prodml23__AbstractPtaPressureData, default initialized and not managed by a soap context + virtual prodml23__AbstractPtaPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractPtaPressureData); } public: /// Constructor with default initializations - prodml22__AbstractPtaPressureData() : PressureChannel(), PressureDerivativeChannel(), PressureReferenceDepth(), Datum() { } + prodml23__AbstractPtaPressureData() : PressureChannel(), PressureDerivativeChannel(), PressureReferenceDepth(), Datum() { } /// Destructor - virtual ~prodml22__AbstractPtaPressureData() { } - /// Friend allocator used by soap_new_prodml22__AbstractPtaPressureData(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodml22__AbstractPtaPressureData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractPtaPressureData() { } + /// Friend allocator used by soap_new_prodml23__AbstractPtaPressureData(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractPtaPressureData * SOAP_FMAC2 soap_instantiate_prodml23__AbstractPtaPressureData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2251 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData (-1052) -/* complex XML schema type 'prodml22:ChannelFlowrateData': */ -class SOAP_CMAC prodml22__ChannelFlowrateData : public prodml22__AbstractRateHistory { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData (-1052) +/* complex XML schema type 'prodml23:ChannelFlowrateData': */ +class SOAP_CMAC prodml23__ChannelFlowrateData : public prodml23__AbstractRateHistory { public: - /// Required element 'prodml22:InputFlowrate' of XML schema type 'prodml22:AbstractPtaFlowData' - prodml22__AbstractPtaFlowData *InputFlowrate; + /// Required element 'prodml23:InputFlowrate' of XML schema type 'prodml23:AbstractPtaFlowData' + prodml23__AbstractPtaFlowData *InputFlowrate; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44201,31 +44420,31 @@ class SOAP_CMAC prodml22__ChannelFlowrateData : public prodml22__AbstractRateHis virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ChannelFlowrateData, default initialized and not managed by a soap context - virtual prodml22__ChannelFlowrateData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ChannelFlowrateData); } + /// Return a new object of type prodml23__ChannelFlowrateData, default initialized and not managed by a soap context + virtual prodml23__ChannelFlowrateData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ChannelFlowrateData); } public: /// Constructor with default initializations - prodml22__ChannelFlowrateData() : InputFlowrate() { } + prodml23__ChannelFlowrateData() : InputFlowrate() { } /// Destructor - virtual ~prodml22__ChannelFlowrateData() { } - /// Friend allocator used by soap_new_prodml22__ChannelFlowrateData(struct soap*, int) - friend SOAP_FMAC1 prodml22__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__ChannelFlowrateData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ChannelFlowrateData() { } + /// Friend allocator used by soap_new_prodml23__ChannelFlowrateData(struct soap*, int) + friend SOAP_FMAC1 prodml23__ChannelFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__ChannelFlowrateData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2255 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput (-1054) -/* complex XML schema type 'prodml22:DeconvolutionMultipleOutput': */ -class SOAP_CMAC prodml22__DeconvolutionMultipleOutput : public prodml22__AbstractDeconvolutionOutput { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput (-1054) +/* complex XML schema type 'prodml23:DeconvolutionMultipleOutput': */ +class SOAP_CMAC prodml23__DeconvolutionMultipleOutput : public prodml23__AbstractDeconvolutionOutput { public: - /// Required element 'prodml22:TestPeriodOutputRefId' of XML schema type 'eml23:String64' + /// Required element 'prodml23:TestPeriodOutputRefId' of XML schema type 'eml23:String64' std::string TestPeriodOutputRefId; - /// Required element 'prodml22:DeconvolutionMultipleOutput' of XML schema type 'prodml22:DeconvolutionOutput' - prodml22__DeconvolutionOutput *DeconvolutionMultipleOutput; + /// Required element 'prodml23:DeconvolutionMultipleOutput' of XML schema type 'prodml23:DeconvolutionOutput' + prodml23__DeconvolutionOutput *DeconvolutionMultipleOutput; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44238,29 +44457,29 @@ class SOAP_CMAC prodml22__DeconvolutionMultipleOutput : public prodml22__Abstrac virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeconvolutionMultipleOutput, default initialized and not managed by a soap context - virtual prodml22__DeconvolutionMultipleOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeconvolutionMultipleOutput); } + /// Return a new object of type prodml23__DeconvolutionMultipleOutput, default initialized and not managed by a soap context + virtual prodml23__DeconvolutionMultipleOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeconvolutionMultipleOutput); } public: /// Constructor with default initializations - prodml22__DeconvolutionMultipleOutput() : TestPeriodOutputRefId(), DeconvolutionMultipleOutput() { } + prodml23__DeconvolutionMultipleOutput() : TestPeriodOutputRefId(), DeconvolutionMultipleOutput() { } /// Destructor - virtual ~prodml22__DeconvolutionMultipleOutput() { } - /// Friend allocator used by soap_new_prodml22__DeconvolutionMultipleOutput(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionMultipleOutput(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeconvolutionMultipleOutput() { } + /// Friend allocator used by soap_new_prodml23__DeconvolutionMultipleOutput(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeconvolutionMultipleOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionMultipleOutput(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2259 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput (-1056) -/* complex XML schema type 'prodml22:DeconvolutionSingleOutput': */ -class SOAP_CMAC prodml22__DeconvolutionSingleOutput : public prodml22__AbstractDeconvolutionOutput { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput (-1056) +/* complex XML schema type 'prodml23:DeconvolutionSingleOutput': */ +class SOAP_CMAC prodml23__DeconvolutionSingleOutput : public prodml23__AbstractDeconvolutionOutput { public: - /// Required element 'prodml22:DeconvolutionSingleOutput' of XML schema type 'prodml22:DeconvolutionOutput' - prodml22__DeconvolutionOutput *DeconvolutionSingleOutput; + /// Required element 'prodml23:DeconvolutionSingleOutput' of XML schema type 'prodml23:DeconvolutionOutput' + prodml23__DeconvolutionOutput *DeconvolutionSingleOutput; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44273,69 +44492,68 @@ class SOAP_CMAC prodml22__DeconvolutionSingleOutput : public prodml22__AbstractD virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeconvolutionSingleOutput, default initialized and not managed by a soap context - virtual prodml22__DeconvolutionSingleOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeconvolutionSingleOutput); } + /// Return a new object of type prodml23__DeconvolutionSingleOutput, default initialized and not managed by a soap context + virtual prodml23__DeconvolutionSingleOutput *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeconvolutionSingleOutput); } public: /// Constructor with default initializations - prodml22__DeconvolutionSingleOutput() : DeconvolutionSingleOutput() { } + prodml23__DeconvolutionSingleOutput() : DeconvolutionSingleOutput() { } /// Destructor - virtual ~prodml22__DeconvolutionSingleOutput() { } - /// Friend allocator used by soap_new_prodml22__DeconvolutionSingleOutput(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolutionSingleOutput(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeconvolutionSingleOutput() { } + /// Friend allocator used by soap_new_prodml23__DeconvolutionSingleOutput(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeconvolutionSingleOutput * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolutionSingleOutput(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2291 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis (-1072) -/* complex XML schema type 'prodml22:PressureTransientAnalysis': */ -class SOAP_CMAC prodml22__PressureTransientAnalysis : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis (-1072) +/* Type prodml23__PressureTransientAnalysis is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:PressureTransientAnalysis': */ +class SOAP_CMAC prodml23__PressureTransientAnalysis : public eml23__AbstractObject { public: - /// Required element 'prodml22:ModelName' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:ModelName' of XML schema type 'eml23:String2000' std::string ModelName; - /// Optional element 'prodml22:TimeAppliesFrom' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:TimeAppliesFrom' of XML schema type 'eml23:TimeStamp' struct tm *TimeAppliesFrom; - /// Optional element 'prodml22:MethodName' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:MethodName' of XML schema type 'eml23:String2000' std::string *MethodName; - /// Optional element 'prodml22:TimeAppliesTo' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:TimeAppliesTo' of XML schema type 'eml23:TimeStamp' struct tm *TimeAppliesTo; - /// Optional element 'prodml22:IsNumericalAnalysis' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:IsNumericalAnalysis' of XML schema type 'xsd:boolean' bool *IsNumericalAnalysis; - /// Optional element 'prodml22:FluidCharacterization' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidCharacterization' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidCharacterization; - /// Optional element 'prodml22:NumericalPtaModel' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:NumericalPtaModel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *NumericalPtaModel; - /// Required element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' - eml23__DataObjectReference *FlowTestActivity; - /// Optional element 'prodml22:PrincipalFlowTestMeasurementSetRef' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:PrincipalFlowTestMeasurementSetRef' of XML schema type 'eml23:String64' std::string *PrincipalFlowTestMeasurementSetRef; - /// Required element 'prodml22:PrincipalTestPeriodRef' of XML schema type 'eml23:String64' + /// Required element 'prodml23:PrincipalTestPeriodRef' of XML schema type 'eml23:String64' std::vector PrincipalTestPeriodRef; - /// Optional element 'prodml22:WellboreModel' of XML schema type 'prodml22:WellboreBaseModel' - prodml22__WellboreBaseModel *WellboreModel; - /// Optional element 'prodml22:LayerModel' of XML schema type 'prodml22:LayerModel' - std::vector LayerModel; - /// Required element 'prodml22:FluidPhaseAnalysisKind' of XML schema type 'prodml22:FluidPhaseKind' - prodml22__FluidPhaseKind FluidPhaseAnalysisKind; - /// Required element 'prodml22:PressureNonLinearTransformKind' of XML schema type 'prodml22:PressureNonLinearTransformKind' - prodml22__PressureNonLinearTransformKind PressureNonLinearTransformKind; - /// Optional element 'prodml22:PseudoPressureEffectApplied' of XML schema type 'prodml22:PseudoPressureEffectApplied' - prodml22__PseudoPressureEffectApplied *PseudoPressureEffectApplied; - /// Required element 'prodml22:TimeNonLinearTransformKind' of XML schema type 'prodml22:TimeNonLinearTransformKind' - prodml22__TimeNonLinearTransformKind TimeNonLinearTransformKind; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:WellboreModel' of XML schema type 'prodml23:WellboreBaseModel' + prodml23__WellboreBaseModel *WellboreModel; + /// Optional element 'prodml23:LayerModel' of XML schema type 'prodml23:LayerModel' + std::vector LayerModel; + /// Required element 'prodml23:FluidPhaseAnalysisKind' of XML schema type 'prodml23:FluidPhaseKind' + prodml23__FluidPhaseKind FluidPhaseAnalysisKind; + /// Required element 'prodml23:PressureNonLinearTransformKind' of XML schema type 'prodml23:PressureNonLinearTransformKind' + prodml23__PressureNonLinearTransformKind PressureNonLinearTransformKind; + /// Optional element 'prodml23:PseudoPressureEffectApplied' of XML schema type 'prodml23:PseudoPressureEffectApplied' + prodml23__PseudoPressureEffectApplied *PseudoPressureEffectApplied; + /// Required element 'prodml23:TimeNonLinearTransformKind' of XML schema type 'prodml23:TimeNonLinearTransformKind' + prodml23__TimeNonLinearTransformKind TimeNonLinearTransformKind; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:Analysis' of XML schema type 'prodml22:AbstractAnalysis' - prodml22__AbstractAnalysis *Analysis; - /// Optional element 'prodml22:CompressibilityParameters' of XML schema type 'prodml22:CompressibilityParameters' - prodml22__CompressibilityParameters *CompressibilityParameters; - /// Required element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' - eml23__DataObjectReference *FlowTestActivity_; - /// Optional element 'prodml22:InterferingFlowTestInterval' of XML schema type 'prodml22:InterferingFlowTestInterval' - std::vector InterferingFlowTestInterval; + /// Optional element 'prodml23:InterferingFlowTestInterval' of XML schema type 'prodml23:InterferingFlowTestInterval' + std::vector InterferingFlowTestInterval; + /// Optional element 'prodml23:Analysis' of XML schema type 'prodml23:AbstractAnalysis' + prodml23__AbstractAnalysis *Analysis; + /// Optional element 'prodml23:CompressibilityParameters' of XML schema type 'prodml23:CompressibilityParameters' + prodml23__CompressibilityParameters *CompressibilityParameters; + /// Required element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + eml23__DataObjectReference *FlowTestActivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44348,47 +44566,47 @@ class SOAP_CMAC prodml22__PressureTransientAnalysis : public eml23__AbstractObje virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PressureTransientAnalysis, default initialized and not managed by a soap context - virtual prodml22__PressureTransientAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PressureTransientAnalysis); } + /// Return a new object of type prodml23__PressureTransientAnalysis, default initialized and not managed by a soap context + virtual prodml23__PressureTransientAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PressureTransientAnalysis); } public: /// Constructor with default initializations - prodml22__PressureTransientAnalysis() : ModelName(), TimeAppliesFrom(), MethodName(), TimeAppliesTo(), IsNumericalAnalysis(), FluidCharacterization(), NumericalPtaModel(), FlowTestActivity(), PrincipalFlowTestMeasurementSetRef(), PrincipalTestPeriodRef(), WellboreModel(), LayerModel(), FluidPhaseAnalysisKind(), PressureNonLinearTransformKind(), PseudoPressureEffectApplied(), TimeNonLinearTransformKind(), Remark(), Analysis(), CompressibilityParameters(), FlowTestActivity_(), InterferingFlowTestInterval() { } + prodml23__PressureTransientAnalysis() : ModelName(), TimeAppliesFrom(), MethodName(), TimeAppliesTo(), IsNumericalAnalysis(), FluidCharacterization(), NumericalPtaModel(), PrincipalFlowTestMeasurementSetRef(), PrincipalTestPeriodRef(), WellboreModel(), LayerModel(), FluidPhaseAnalysisKind(), PressureNonLinearTransformKind(), PseudoPressureEffectApplied(), TimeNonLinearTransformKind(), Remark(), InterferingFlowTestInterval(), Analysis(), CompressibilityParameters(), FlowTestActivity() { } /// Destructor - virtual ~prodml22__PressureTransientAnalysis() { } - /// Friend allocator used by soap_new_prodml22__PressureTransientAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PressureTransientAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PressureTransientAnalysis() { } + /// Friend allocator used by soap_new_prodml23__PressureTransientAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__PressureTransientAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__PressureTransientAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2293 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis (-1073) -/* complex XML schema type 'prodml22:PtaAnalysis': */ -class SOAP_CMAC prodml22__PtaAnalysis : public prodml22__AbstractAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis (-1073) +/* complex XML schema type 'prodml23:PtaAnalysis': */ +class SOAP_CMAC prodml23__PtaAnalysis : public prodml23__AbstractAnalysis { public: - /// Optional element 'prodml22:InitialPressureP0ForImpulseTest' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:InitialPressureP0ForImpulseTest' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *InitialPressureP0ForImpulseTest; - /// Required element 'prodml22:InputPressure' of XML schema type 'prodml22:AbstractPtaPressureData' - prodml22__AbstractPtaPressureData *InputPressure; - /// Optional element 'prodml22:SimulatedPressure' of XML schema type 'prodml22:OutputPressureData' - prodml22__OutputPressureData *SimulatedPressure; - /// Optional element 'prodml22:SimulatedPressureGaugeNoise' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:InputPressure' of XML schema type 'prodml23:AbstractPtaPressureData' + prodml23__AbstractPtaPressureData *InputPressure; + /// Optional element 'prodml23:SimulatedPressure' of XML schema type 'prodml23:OutputPressureData' + prodml23__OutputPressureData *SimulatedPressure; + /// Optional element 'prodml23:SimulatedPressureGaugeNoise' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *SimulatedPressureGaugeNoise; - /// Optional element 'prodml22:SimulatedPressureGaugeResolution' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:SimulatedPressureGaugeResolution' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *SimulatedPressureGaugeResolution; - /// Optional element 'prodml22:SimulatedPressureGaugeDrift' of XML schema type 'eml23:PressurePerTimeMeasure' + /// Optional element 'prodml23:SimulatedPressureGaugeDrift' of XML schema type 'eml23:PressurePerTimeMeasure' eml23__PressurePerTimeMeasure *SimulatedPressureGaugeDrift; - /// Optional element 'prodml22:MeasuredLogLogData' of XML schema type 'prodml22:LogLogAnalysis' - prodml22__LogLogAnalysis *MeasuredLogLogData; - /// Optional element 'prodml22:SimulatedLogLogData' of XML schema type 'prodml22:LogLogAnalysis' - prodml22__LogLogAnalysis *SimulatedLogLogData; - /// Required element 'prodml22:RateHistory' of XML schema type 'prodml22:AbstractRateHistory' - prodml22__AbstractRateHistory *RateHistory; - /// Optional element 'prodml22:SpecializedAnalysis' of XML schema type 'prodml22:SpecializedAnalysis' - std::vector SpecializedAnalysis; + /// Optional element 'prodml23:MeasuredLogLogData' of XML schema type 'prodml23:LogLogAnalysis' + prodml23__LogLogAnalysis *MeasuredLogLogData; + /// Optional element 'prodml23:SimulatedLogLogData' of XML schema type 'prodml23:LogLogAnalysis' + prodml23__LogLogAnalysis *SimulatedLogLogData; + /// Required element 'prodml23:RateHistory' of XML schema type 'prodml23:AbstractRateHistory' + prodml23__AbstractRateHistory *RateHistory; + /// Optional element 'prodml23:SpecializedAnalysis' of XML schema type 'prodml23:SpecializedAnalysis' + std::vector SpecializedAnalysis; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44401,41 +44619,40 @@ class SOAP_CMAC prodml22__PtaAnalysis : public prodml22__AbstractAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PtaAnalysis, default initialized and not managed by a soap context - virtual prodml22__PtaAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PtaAnalysis); } + /// Return a new object of type prodml23__PtaAnalysis, default initialized and not managed by a soap context + virtual prodml23__PtaAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PtaAnalysis); } public: /// Constructor with default initializations - prodml22__PtaAnalysis() : InitialPressureP0ForImpulseTest(), InputPressure(), SimulatedPressure(), SimulatedPressureGaugeNoise(), SimulatedPressureGaugeResolution(), SimulatedPressureGaugeDrift(), MeasuredLogLogData(), SimulatedLogLogData(), RateHistory(), SpecializedAnalysis() { } + prodml23__PtaAnalysis() : InitialPressureP0ForImpulseTest(), InputPressure(), SimulatedPressure(), SimulatedPressureGaugeNoise(), SimulatedPressureGaugeResolution(), SimulatedPressureGaugeDrift(), MeasuredLogLogData(), SimulatedLogLogData(), RateHistory(), SpecializedAnalysis() { } /// Destructor - virtual ~prodml22__PtaAnalysis() { } - /// Friend allocator used by soap_new_prodml22__PtaAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__PtaAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PtaAnalysis() { } + /// Friend allocator used by soap_new_prodml23__PtaAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__PtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__PtaAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2295 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess (-1074) -/* complex XML schema type 'prodml22:PtaDataPreProcess': */ -class SOAP_CMAC prodml22__PtaDataPreProcess : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess (-1074) +/* Type prodml23__PtaDataPreProcess is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:PtaDataPreProcess': */ +class SOAP_CMAC prodml23__PtaDataPreProcess : public eml23__AbstractObject { public: - /// Required element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' - eml23__DataObjectReference *FlowTestActivity; - /// Optional element 'prodml22:FlowTestMeasurementSetRef' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:FlowTestMeasurementSetRef' of XML schema type 'eml23:String64' std::string *FlowTestMeasurementSetRef; - /// Required element 'prodml22:InputData' of XML schema type 'prodml22:AbstractFlowTestData' - std::vector InputData; - /// Required element 'prodml22:PreProcessedData' of XML schema type 'prodml22:AbstractFlowTestData' - prodml22__AbstractFlowTestData *PreProcessedData; - /// Optional element 'prodml22:DataConditioning' of XML schema type 'prodml22:DataConditioningExt' + /// Required element 'prodml23:InputData' of XML schema type 'prodml23:AbstractFlowTestData' + std::vector InputData; + /// Required element 'prodml23:PreProcessedData' of XML schema type 'prodml23:AbstractFlowTestData' + prodml23__AbstractFlowTestData *PreProcessedData; + /// Optional element 'prodml23:DataConditioning' of XML schema type 'prodml23:DataConditioningExt' std::vector DataConditioning; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Required element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' - eml23__DataObjectReference *FlowTestActivity_; + /// Required element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + eml23__DataObjectReference *FlowTestActivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44448,49 +44665,50 @@ class SOAP_CMAC prodml22__PtaDataPreProcess : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PtaDataPreProcess, default initialized and not managed by a soap context - virtual prodml22__PtaDataPreProcess *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PtaDataPreProcess); } + /// Return a new object of type prodml23__PtaDataPreProcess, default initialized and not managed by a soap context + virtual prodml23__PtaDataPreProcess *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PtaDataPreProcess); } public: /// Constructor with default initializations - prodml22__PtaDataPreProcess() : FlowTestActivity(), FlowTestMeasurementSetRef(), InputData(), PreProcessedData(), DataConditioning(), Remark(), FlowTestActivity_() { } + prodml23__PtaDataPreProcess() : FlowTestMeasurementSetRef(), InputData(), PreProcessedData(), DataConditioning(), Remark(), FlowTestActivity() { } /// Destructor - virtual ~prodml22__PtaDataPreProcess() { } - /// Friend allocator used by soap_new_prodml22__PtaDataPreProcess(struct soap*, int) - friend SOAP_FMAC1 prodml22__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml22__PtaDataPreProcess(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PtaDataPreProcess() { } + /// Friend allocator used by soap_new_prodml23__PtaDataPreProcess(struct soap*, int) + friend SOAP_FMAC1 prodml23__PtaDataPreProcess * SOAP_FMAC2 soap_instantiate_prodml23__PtaDataPreProcess(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2297 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution (-1075) -/* complex XML schema type 'prodml22:PtaDeconvolution': */ -class SOAP_CMAC prodml22__PtaDeconvolution : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution (-1075) +/* Type prodml23__PtaDeconvolution is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:PtaDeconvolution': */ +class SOAP_CMAC prodml23__PtaDeconvolution : public eml23__AbstractObject { public: - /// Required element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' - eml23__DataObjectReference *FlowTestActivity; - /// Optional element 'prodml22:FlowTestMeasurementSetRef' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:FlowTestMeasurementSetRef' of XML schema type 'eml23:String64' std::string *FlowTestMeasurementSetRef; - /// Optional element 'prodml22:FlowTestPeriodRef' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:FlowTestPeriodRef' of XML schema type 'eml23:String64' std::vector FlowTestPeriodRef; - /// Required element 'prodml22:MethodName' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:MethodName' of XML schema type 'eml23:String2000' std::string MethodName; - /// Required element 'prodml22:InitialPressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:InitialPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *InitialPressure; - /// Required element 'prodml22:InputPressure' of XML schema type 'prodml22:AbstractPtaPressureData' - prodml22__AbstractPtaPressureData *InputPressure; - /// Required element 'prodml22:InputFlowrate' of XML schema type 'prodml22:AbstractPtaFlowData' - prodml22__AbstractPtaFlowData *InputFlowrate; - /// Optional element 'prodml22:ReconstructedPressure' of XML schema type 'prodml22:DeconvolvedPressureData' - prodml22__DeconvolvedPressureData *ReconstructedPressure; - /// Optional element 'prodml22:ReconstructedFlowrate' of XML schema type 'prodml22:DeconvolvedFlowData' - prodml22__DeconvolvedFlowData *ReconstructedFlowrate; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Required element 'prodml23:InputPressure' of XML schema type 'prodml23:AbstractPtaPressureData' + prodml23__AbstractPtaPressureData *InputPressure; + /// Required element 'prodml23:InputFlowrate' of XML schema type 'prodml23:AbstractPtaFlowData' + prodml23__AbstractPtaFlowData *InputFlowrate; + /// Optional element 'prodml23:ReconstructedPressure' of XML schema type 'prodml23:DeconvolvedPressureData' + prodml23__DeconvolvedPressureData *ReconstructedPressure; + /// Optional element 'prodml23:ReconstructedFlowrate' of XML schema type 'prodml23:DeconvolvedFlowData' + prodml23__DeconvolvedFlowData *ReconstructedFlowrate; + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Required element 'prodml22:DeconvolutionOutput' of XML schema type 'prodml22:AbstractDeconvolutionOutput' - std::vector DeconvolutionOutput; + /// Required element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + eml23__DataObjectReference *FlowTestActivity; + /// Required element 'prodml23:DeconvolutionOutput' of XML schema type 'prodml23:AbstractDeconvolutionOutput' + std::vector DeconvolutionOutput; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44503,39 +44721,39 @@ class SOAP_CMAC prodml22__PtaDeconvolution : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PtaDeconvolution, default initialized and not managed by a soap context - virtual prodml22__PtaDeconvolution *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PtaDeconvolution); } + /// Return a new object of type prodml23__PtaDeconvolution, default initialized and not managed by a soap context + virtual prodml23__PtaDeconvolution *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PtaDeconvolution); } public: /// Constructor with default initializations - prodml22__PtaDeconvolution() : FlowTestActivity(), FlowTestMeasurementSetRef(), FlowTestPeriodRef(), MethodName(), InitialPressure(), InputPressure(), InputFlowrate(), ReconstructedPressure(), ReconstructedFlowrate(), Remark(), DeconvolutionOutput() { } + prodml23__PtaDeconvolution() : FlowTestMeasurementSetRef(), FlowTestPeriodRef(), MethodName(), InitialPressure(), InputPressure(), InputFlowrate(), ReconstructedPressure(), ReconstructedFlowrate(), Remark(), FlowTestActivity(), DeconvolutionOutput() { } /// Destructor - virtual ~prodml22__PtaDeconvolution() { } - /// Friend allocator used by soap_new_prodml22__PtaDeconvolution(struct soap*, int) - friend SOAP_FMAC1 prodml22__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml22__PtaDeconvolution(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PtaDeconvolution() { } + /// Friend allocator used by soap_new_prodml23__PtaDeconvolution(struct soap*, int) + friend SOAP_FMAC1 prodml23__PtaDeconvolution * SOAP_FMAC2 soap_instantiate_prodml23__PtaDeconvolution(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2303 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis (-1078) -/* complex XML schema type 'prodml22:RtaAnalysis': */ -class SOAP_CMAC prodml22__RtaAnalysis : public prodml22__AbstractAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis (-1078) +/* complex XML schema type 'prodml23:RtaAnalysis': */ +class SOAP_CMAC prodml23__RtaAnalysis : public prodml23__AbstractAnalysis { public: - /// Required element 'prodml22:InputPressure' of XML schema type 'prodml22:AbstractPtaPressureData' - prodml22__AbstractPtaPressureData *InputPressure; - /// Required element 'prodml22:InputFlowrateData' of XML schema type 'prodml22:AbstractPtaFlowData' - prodml22__AbstractPtaFlowData *InputFlowrateData; - /// Required element 'prodml22:SimulatedFlowrate' of XML schema type 'prodml22:OutputFlowData' - prodml22__OutputFlowData *SimulatedFlowrate; - /// Optional element 'prodml22:SimulatedLogLogData' of XML schema type 'prodml22:LogLogAnalysis' - prodml22__LogLogAnalysis *SimulatedLogLogData; - /// Optional element 'prodml22:SpecializedAnalysis' of XML schema type 'prodml22:SpecializedAnalysis' - std::vector SpecializedAnalysis; - /// Optional element 'prodml22:MeasuredLogLogData' of XML schema type 'prodml22:LogLogAnalysis' - prodml22__LogLogAnalysis *MeasuredLogLogData; + /// Required element 'prodml23:InputPressure' of XML schema type 'prodml23:AbstractPtaPressureData' + prodml23__AbstractPtaPressureData *InputPressure; + /// Required element 'prodml23:InputFlowrateData' of XML schema type 'prodml23:AbstractPtaFlowData' + prodml23__AbstractPtaFlowData *InputFlowrateData; + /// Required element 'prodml23:SimulatedFlowrate' of XML schema type 'prodml23:OutputFlowData' + prodml23__OutputFlowData *SimulatedFlowrate; + /// Optional element 'prodml23:SimulatedLogLogData' of XML schema type 'prodml23:LogLogAnalysis' + prodml23__LogLogAnalysis *SimulatedLogLogData; + /// Optional element 'prodml23:SpecializedAnalysis' of XML schema type 'prodml23:SpecializedAnalysis' + std::vector SpecializedAnalysis; + /// Optional element 'prodml23:MeasuredLogLogData' of XML schema type 'prodml23:LogLogAnalysis' + prodml23__LogLogAnalysis *MeasuredLogLogData; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44548,31 +44766,31 @@ class SOAP_CMAC prodml22__RtaAnalysis : public prodml22__AbstractAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RtaAnalysis, default initialized and not managed by a soap context - virtual prodml22__RtaAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RtaAnalysis); } + /// Return a new object of type prodml23__RtaAnalysis, default initialized and not managed by a soap context + virtual prodml23__RtaAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RtaAnalysis); } public: /// Constructor with default initializations - prodml22__RtaAnalysis() : InputPressure(), InputFlowrateData(), SimulatedFlowrate(), SimulatedLogLogData(), SpecializedAnalysis(), MeasuredLogLogData() { } + prodml23__RtaAnalysis() : InputPressure(), InputFlowrateData(), SimulatedFlowrate(), SimulatedLogLogData(), SpecializedAnalysis(), MeasuredLogLogData() { } /// Destructor - virtual ~prodml22__RtaAnalysis() { } - /// Friend allocator used by soap_new_prodml22__RtaAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__RtaAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RtaAnalysis() { } + /// Friend allocator used by soap_new_prodml23__RtaAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__RtaAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__RtaAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2307 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData (-1080) -/* complex XML schema type 'prodml22:SingleFlowrateData': */ -class SOAP_CMAC prodml22__SingleFlowrateData : public prodml22__AbstractRateHistory { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData (-1080) +/* complex XML schema type 'prodml23:SingleFlowrateData': */ +class SOAP_CMAC prodml23__SingleFlowrateData : public prodml23__AbstractRateHistory { public: - /// Required element 'prodml22:EffectiveProducingTimeUsed' of XML schema type 'eml23:TimeMeasure' + /// Required element 'prodml23:EffectiveProducingTimeUsed' of XML schema type 'eml23:TimeMeasure' eml23__TimeMeasure *EffectiveProducingTimeUsed; - /// Required element 'prodml22:SingleFlowrate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Required element 'prodml23:SingleFlowrate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *SingleFlowrate; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44585,29 +44803,29 @@ class SOAP_CMAC prodml22__SingleFlowrateData : public prodml22__AbstractRateHist virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SingleFlowrateData, default initialized and not managed by a soap context - virtual prodml22__SingleFlowrateData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SingleFlowrateData); } + /// Return a new object of type prodml23__SingleFlowrateData, default initialized and not managed by a soap context + virtual prodml23__SingleFlowrateData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SingleFlowrateData); } public: /// Constructor with default initializations - prodml22__SingleFlowrateData() : EffectiveProducingTimeUsed(), SingleFlowrate() { } + prodml23__SingleFlowrateData() : EffectiveProducingTimeUsed(), SingleFlowrate() { } /// Destructor - virtual ~prodml22__SingleFlowrateData() { } - /// Friend allocator used by soap_new_prodml22__SingleFlowrateData(struct soap*, int) - friend SOAP_FMAC1 prodml22__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__SingleFlowrateData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SingleFlowrateData() { } + /// Friend allocator used by soap_new_prodml23__SingleFlowrateData(struct soap*, int) + friend SOAP_FMAC1 prodml23__SingleFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__SingleFlowrateData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2313 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData (-1083) -/* complex XML schema type 'prodml22:TestPeriodsFlowrateData': */ -class SOAP_CMAC prodml22__TestPeriodsFlowrateData : public prodml22__AbstractRateHistory { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData (-1083) +/* complex XML schema type 'prodml23:TestPeriodsFlowrateData': */ +class SOAP_CMAC prodml23__TestPeriodsFlowrateData : public prodml23__AbstractRateHistory { public: - /// Required element 'prodml22:TestPeriodRef' of XML schema type 'eml23:String64' + /// Required element 'prodml23:TestPeriodRef' of XML schema type 'eml23:String64' std::vector TestPeriodRef; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44620,31 +44838,31 @@ class SOAP_CMAC prodml22__TestPeriodsFlowrateData : public prodml22__AbstractRat virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TestPeriodsFlowrateData, default initialized and not managed by a soap context - virtual prodml22__TestPeriodsFlowrateData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TestPeriodsFlowrateData); } + /// Return a new object of type prodml23__TestPeriodsFlowrateData, default initialized and not managed by a soap context + virtual prodml23__TestPeriodsFlowrateData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TestPeriodsFlowrateData); } public: /// Constructor with default initializations - prodml22__TestPeriodsFlowrateData() : TestPeriodRef() { } + prodml23__TestPeriodsFlowrateData() : TestPeriodRef() { } /// Destructor - virtual ~prodml22__TestPeriodsFlowrateData() { } - /// Friend allocator used by soap_new_prodml22__TestPeriodsFlowrateData(struct soap*, int) - friend SOAP_FMAC1 prodml22__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodml22__TestPeriodsFlowrateData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TestPeriodsFlowrateData() { } + /// Friend allocator used by soap_new_prodml23__TestPeriodsFlowrateData(struct soap*, int) + friend SOAP_FMAC1 prodml23__TestPeriodsFlowrateData * SOAP_FMAC2 soap_instantiate_prodml23__TestPeriodsFlowrateData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2317 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel (-1085) -/* complex XML schema type 'prodml22:BoundaryBaseModel': */ -class SOAP_CMAC prodml22__BoundaryBaseModel : public prodml22__AbstractModelSection { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel (-1085) +/* complex XML schema type 'prodml23:BoundaryBaseModel': */ +class SOAP_CMAC prodml23__BoundaryBaseModel : public prodml23__AbstractModelSection { public: - /// Optional element 'prodml22:RadiusOfInvestigation' of XML schema type 'prodml22:RadiusOfInvestigation' - prodml22__RadiusOfInvestigation *RadiusOfInvestigation; - /// Optional element 'prodml22:PoreVolumeOfInvestigation' of XML schema type 'prodml22:PoreVolumeOfInvestigation' - prodml22__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation; + /// Optional element 'prodml23:RadiusOfInvestigation' of XML schema type 'prodml23:RadiusOfInvestigation' + prodml23__RadiusOfInvestigation *RadiusOfInvestigation; + /// Optional element 'prodml23:PoreVolumeOfInvestigation' of XML schema type 'prodml23:PoreVolumeOfInvestigation' + prodml23__PoreVolumeOfInvestigation *PoreVolumeOfInvestigation; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44657,35 +44875,35 @@ class SOAP_CMAC prodml22__BoundaryBaseModel : public prodml22__AbstractModelSect virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__BoundaryBaseModel, default initialized and not managed by a soap context - virtual prodml22__BoundaryBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__BoundaryBaseModel); } + /// Return a new object of type prodml23__BoundaryBaseModel, default initialized and not managed by a soap context + virtual prodml23__BoundaryBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__BoundaryBaseModel); } public: /// Constructor with default initializations - prodml22__BoundaryBaseModel() : RadiusOfInvestigation(), PoreVolumeOfInvestigation() { } + prodml23__BoundaryBaseModel() : RadiusOfInvestigation(), PoreVolumeOfInvestigation() { } /// Destructor - virtual ~prodml22__BoundaryBaseModel() { } - /// Friend allocator used by soap_new_prodml22__BoundaryBaseModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__BoundaryBaseModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__BoundaryBaseModel() { } + /// Friend allocator used by soap_new_prodml23__BoundaryBaseModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__BoundaryBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__BoundaryBaseModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2383 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel (-1118) -/* complex XML schema type 'prodml22:NearWellboreBaseModel': */ -class SOAP_CMAC prodml22__NearWellboreBaseModel : public prodml22__AbstractModelSection { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel (-1118) +/* complex XML schema type 'prodml23:NearWellboreBaseModel': */ +class SOAP_CMAC prodml23__NearWellboreBaseModel : public prodml23__AbstractModelSection { public: - /// Required element 'prodml22:SkinRelativeToTotalThickness' of XML schema type 'prodml22:SkinRelativeToTotalThickness' - prodml22__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness; - /// Optional element 'prodml22:RateDependentSkinFactor' of XML schema type 'prodml22:RateDependentSkinFactor' - prodml22__RateDependentSkinFactor *RateDependentSkinFactor; - /// Optional element 'prodml22:DeltaPressureTotalSkin' of XML schema type 'prodml22:DeltaPressureTotalSkin' - prodml22__DeltaPressureTotalSkin *DeltaPressureTotalSkin; - /// Optional element 'prodml22:RatioDpSkinToTotalDrawdown' of XML schema type 'prodml22:RatioDpSkinToTotalDrawdown' - prodml22__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown; + /// Required element 'prodml23:SkinRelativeToTotalThickness' of XML schema type 'prodml23:SkinRelativeToTotalThickness' + prodml23__SkinRelativeToTotalThickness *SkinRelativeToTotalThickness; + /// Optional element 'prodml23:RateDependentSkinFactor' of XML schema type 'prodml23:RateDependentSkinFactor' + prodml23__RateDependentSkinFactor *RateDependentSkinFactor; + /// Optional element 'prodml23:DeltaPressureTotalSkin' of XML schema type 'prodml23:DeltaPressureTotalSkin' + prodml23__DeltaPressureTotalSkin *DeltaPressureTotalSkin; + /// Optional element 'prodml23:RatioDpSkinToTotalDrawdown' of XML schema type 'prodml23:RatioDpSkinToTotalDrawdown' + prodml23__RatioDpSkinToTotalDrawdown *RatioDpSkinToTotalDrawdown; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44698,51 +44916,51 @@ class SOAP_CMAC prodml22__NearWellboreBaseModel : public prodml22__AbstractModel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NearWellboreBaseModel, default initialized and not managed by a soap context - virtual prodml22__NearWellboreBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NearWellboreBaseModel); } + /// Return a new object of type prodml23__NearWellboreBaseModel, default initialized and not managed by a soap context + virtual prodml23__NearWellboreBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NearWellboreBaseModel); } public: /// Constructor with default initializations - prodml22__NearWellboreBaseModel() : SkinRelativeToTotalThickness(), RateDependentSkinFactor(), DeltaPressureTotalSkin(), RatioDpSkinToTotalDrawdown() { } + prodml23__NearWellboreBaseModel() : SkinRelativeToTotalThickness(), RateDependentSkinFactor(), DeltaPressureTotalSkin(), RatioDpSkinToTotalDrawdown() { } /// Destructor - virtual ~prodml22__NearWellboreBaseModel() { } - /// Friend allocator used by soap_new_prodml22__NearWellboreBaseModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__NearWellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NearWellboreBaseModel() { } + /// Friend allocator used by soap_new_prodml23__NearWellboreBaseModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__NearWellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__NearWellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2397 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel (-1125) -/* complex XML schema type 'prodml22:ReservoirBaseModel': */ -class SOAP_CMAC prodml22__ReservoirBaseModel : public prodml22__AbstractModelSection { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel (-1125) +/* complex XML schema type 'prodml23:ReservoirBaseModel': */ +class SOAP_CMAC prodml23__ReservoirBaseModel : public prodml23__AbstractModelSection { public: - /// Required element 'prodml22:HorizontalRadialPermeability' of XML schema type 'prodml22:HorizontalRadialPermeability' - prodml22__HorizontalRadialPermeability *HorizontalRadialPermeability; - /// Required element 'prodml22:TotalThickness' of XML schema type 'prodml22:TotalThickness' - prodml22__TotalThickness *TotalThickness; - /// Required element 'prodml22:PermeabilityThicknessProduct' of XML schema type 'prodml22:PermeabilityThicknessProduct' - prodml22__PermeabilityThicknessProduct *PermeabilityThicknessProduct; - /// Required element 'prodml22:Porosity' of XML schema type 'prodml22:Porosity' - prodml22__Porosity *Porosity; - /// Required element 'prodml22:InitialPressure' of XML schema type 'prodml22:InitialPressure' - prodml22__InitialPressure *InitialPressure; - /// Optional element 'prodml22:PressureDatumTVD' of XML schema type 'prodml22:PressureDatumTVD' - prodml22__PressureDatumTVD *PressureDatumTVD; - /// Optional element 'prodml22:AveragePressure' of XML schema type 'prodml22:AveragePressure' - prodml22__AveragePressure *AveragePressure; - /// Optional element 'prodml22:VerticalAnisotropyKvToKr' of XML schema type 'prodml22:VerticalAnisotropyKvToKr' - prodml22__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr; - /// Optional element 'prodml22:HorizontalAnisotropyKxToKy' of XML schema type 'prodml22:HorizontalAnisotropyKxToKy' - prodml22__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy; - /// Optional element 'prodml22:OrientationOfAnisotropyXDirection' of XML schema type 'prodml22:OrientationOfAnisotropyXDirection' - prodml22__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection; - /// Optional element 'prodml22:UpperBoundaryType' of XML schema type 'prodml22:UpperBoundaryType' - prodml22__UpperBoundaryType *UpperBoundaryType; - /// Optional element 'prodml22:LowerBoundaryType' of XML schema type 'prodml22:LowerBoundaryType' - prodml22__LowerBoundaryType *LowerBoundaryType; + /// Required element 'prodml23:HorizontalRadialPermeability' of XML schema type 'prodml23:HorizontalRadialPermeability' + prodml23__HorizontalRadialPermeability *HorizontalRadialPermeability; + /// Required element 'prodml23:TotalThickness' of XML schema type 'prodml23:TotalThickness' + prodml23__TotalThickness *TotalThickness; + /// Required element 'prodml23:PermeabilityThicknessProduct' of XML schema type 'prodml23:PermeabilityThicknessProduct' + prodml23__PermeabilityThicknessProduct *PermeabilityThicknessProduct; + /// Required element 'prodml23:Porosity' of XML schema type 'prodml23:Porosity' + prodml23__Porosity *Porosity; + /// Required element 'prodml23:InitialPressure' of XML schema type 'prodml23:InitialPressure' + prodml23__InitialPressure *InitialPressure; + /// Optional element 'prodml23:PressureDatumTVD' of XML schema type 'prodml23:PressureDatumTVD' + prodml23__PressureDatumTVD *PressureDatumTVD; + /// Optional element 'prodml23:AveragePressure' of XML schema type 'prodml23:AveragePressure' + prodml23__AveragePressure *AveragePressure; + /// Optional element 'prodml23:VerticalAnisotropyKvToKr' of XML schema type 'prodml23:VerticalAnisotropyKvToKr' + prodml23__VerticalAnisotropyKvToKr *VerticalAnisotropyKvToKr; + /// Optional element 'prodml23:HorizontalAnisotropyKxToKy' of XML schema type 'prodml23:HorizontalAnisotropyKxToKy' + prodml23__HorizontalAnisotropyKxToKy *HorizontalAnisotropyKxToKy; + /// Optional element 'prodml23:OrientationOfAnisotropyXDirection' of XML schema type 'prodml23:OrientationOfAnisotropyXDirection' + prodml23__OrientationOfAnisotropyXDirection *OrientationOfAnisotropyXDirection; + /// Optional element 'prodml23:UpperBoundaryType' of XML schema type 'prodml23:UpperBoundaryType' + prodml23__UpperBoundaryType *UpperBoundaryType; + /// Optional element 'prodml23:LowerBoundaryType' of XML schema type 'prodml23:LowerBoundaryType' + prodml23__LowerBoundaryType *LowerBoundaryType; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44755,43 +44973,43 @@ class SOAP_CMAC prodml22__ReservoirBaseModel : public prodml22__AbstractModelSec virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReservoirBaseModel, default initialized and not managed by a soap context - virtual prodml22__ReservoirBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReservoirBaseModel); } + /// Return a new object of type prodml23__ReservoirBaseModel, default initialized and not managed by a soap context + virtual prodml23__ReservoirBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReservoirBaseModel); } public: /// Constructor with default initializations - prodml22__ReservoirBaseModel() : HorizontalRadialPermeability(), TotalThickness(), PermeabilityThicknessProduct(), Porosity(), InitialPressure(), PressureDatumTVD(), AveragePressure(), VerticalAnisotropyKvToKr(), HorizontalAnisotropyKxToKy(), OrientationOfAnisotropyXDirection(), UpperBoundaryType(), LowerBoundaryType() { } + prodml23__ReservoirBaseModel() : HorizontalRadialPermeability(), TotalThickness(), PermeabilityThicknessProduct(), Porosity(), InitialPressure(), PressureDatumTVD(), AveragePressure(), VerticalAnisotropyKvToKr(), HorizontalAnisotropyKxToKy(), OrientationOfAnisotropyXDirection(), UpperBoundaryType(), LowerBoundaryType() { } /// Destructor - virtual ~prodml22__ReservoirBaseModel() { } - /// Friend allocator used by soap_new_prodml22__ReservoirBaseModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__ReservoirBaseModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReservoirBaseModel() { } + /// Friend allocator used by soap_new_prodml23__ReservoirBaseModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReservoirBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__ReservoirBaseModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2411 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel (-1132) -/* complex XML schema type 'prodml22:WellboreBaseModel': */ -class SOAP_CMAC prodml22__WellboreBaseModel : public prodml22__AbstractModelSection { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel (-1132) +/* complex XML schema type 'prodml23:WellboreBaseModel': */ +class SOAP_CMAC prodml23__WellboreBaseModel : public prodml23__AbstractModelSection { public: - /// Required element 'prodml22:WellboreRadius' of XML schema type 'prodml22:WellboreRadius' - prodml22__WellboreRadius *WellboreRadius; - /// Required element 'prodml22:WellboreStorageCoefficient' of XML schema type 'prodml22:WellboreStorageCoefficient' - prodml22__WellboreStorageCoefficient *WellboreStorageCoefficient; - /// Optional element 'prodml22:WellboreVolume' of XML schema type 'prodml22:WellboreVolume' - prodml22__WellboreVolume *WellboreVolume; - /// Optional element 'prodml22:WellboreFluidCompressibility' of XML schema type 'prodml22:WellboreFluidCompressibility' - prodml22__WellboreFluidCompressibility *WellboreFluidCompressibility; - /// Optional element 'prodml22:TubingInteralDiameter' of XML schema type 'prodml22:TubingInteralDiameter' - prodml22__TubingInteralDiameter *TubingInteralDiameter; - /// Optional element 'prodml22:FluidDensity' of XML schema type 'prodml22:FluidDensity' - prodml22__FluidDensity *FluidDensity; - /// Optional element 'prodml22:WellboreDeviationAngle' of XML schema type 'prodml22:WellboreDeviationAngle' - prodml22__WellboreDeviationAngle *WellboreDeviationAngle; - /// Optional element 'prodml22:WellboreStorageMechanismType' of XML schema type 'prodml22:WellboreStorageMechanismType' - prodml22__WellboreStorageMechanismType *WellboreStorageMechanismType; + /// Required element 'prodml23:WellboreRadius' of XML schema type 'prodml23:WellboreRadius' + prodml23__WellboreRadius *WellboreRadius; + /// Required element 'prodml23:WellboreStorageCoefficient' of XML schema type 'prodml23:WellboreStorageCoefficient' + prodml23__WellboreStorageCoefficient *WellboreStorageCoefficient; + /// Optional element 'prodml23:WellboreVolume' of XML schema type 'prodml23:WellboreVolume' + prodml23__WellboreVolume *WellboreVolume; + /// Optional element 'prodml23:WellboreFluidCompressibility' of XML schema type 'prodml23:WellboreFluidCompressibility' + prodml23__WellboreFluidCompressibility *WellboreFluidCompressibility; + /// Optional element 'prodml23:TubingInteralDiameter' of XML schema type 'prodml23:TubingInteralDiameter' + prodml23__TubingInteralDiameter *TubingInteralDiameter; + /// Optional element 'prodml23:FluidDensity' of XML schema type 'prodml23:FluidDensity' + prodml23__FluidDensity *FluidDensity; + /// Optional element 'prodml23:WellboreDeviationAngle' of XML schema type 'prodml23:WellboreDeviationAngle' + prodml23__WellboreDeviationAngle *WellboreDeviationAngle; + /// Optional element 'prodml23:WellboreStorageMechanismType' of XML schema type 'prodml23:WellboreStorageMechanismType' + prodml23__WellboreStorageMechanismType *WellboreStorageMechanismType; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44804,31 +45022,31 @@ class SOAP_CMAC prodml22__WellboreBaseModel : public prodml22__AbstractModelSect virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellboreBaseModel, default initialized and not managed by a soap context - virtual prodml22__WellboreBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellboreBaseModel); } + /// Return a new object of type prodml23__WellboreBaseModel, default initialized and not managed by a soap context + virtual prodml23__WellboreBaseModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellboreBaseModel); } public: /// Constructor with default initializations - prodml22__WellboreBaseModel() : WellboreRadius(), WellboreStorageCoefficient(), WellboreVolume(), WellboreFluidCompressibility(), TubingInteralDiameter(), FluidDensity(), WellboreDeviationAngle(), WellboreStorageMechanismType() { } + prodml23__WellboreBaseModel() : WellboreRadius(), WellboreStorageCoefficient(), WellboreVolume(), WellboreFluidCompressibility(), TubingInteralDiameter(), FluidDensity(), WellboreDeviationAngle(), WellboreStorageMechanismType() { } /// Destructor - virtual ~prodml22__WellboreBaseModel() { } - /// Friend allocator used by soap_new_prodml22__WellboreBaseModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml22__WellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellboreBaseModel() { } + /// Friend allocator used by soap_new_prodml23__WellboreBaseModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellboreBaseModel * SOAP_FMAC2 soap_instantiate_prodml23__WellboreBaseModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2415 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries (-1134) -/* complex XML schema type 'prodml22:AngleBetweenBoundaries': */ -class SOAP_CMAC prodml22__AngleBetweenBoundaries : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries (-1134) +/* complex XML schema type 'prodml23:AngleBetweenBoundaries': */ +class SOAP_CMAC prodml23__AngleBetweenBoundaries : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "AngleBetweenBoundaries" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44841,31 +45059,31 @@ class SOAP_CMAC prodml22__AngleBetweenBoundaries : public prodml22__AbstractPara virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AngleBetweenBoundaries, default initialized and not managed by a soap context - virtual prodml22__AngleBetweenBoundaries *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AngleBetweenBoundaries); } + /// Return a new object of type prodml23__AngleBetweenBoundaries, default initialized and not managed by a soap context + virtual prodml23__AngleBetweenBoundaries *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AngleBetweenBoundaries); } public: /// Constructor with default initializations - prodml22__AngleBetweenBoundaries() : Abbreviation("AngleBetweenBoundaries"), Angle() { } + prodml23__AngleBetweenBoundaries() : Abbreviation("AngleBetweenBoundaries"), Angle() { } /// Destructor - virtual ~prodml22__AngleBetweenBoundaries() { } - /// Friend allocator used by soap_new_prodml22__AngleBetweenBoundaries(struct soap*, int) - friend SOAP_FMAC1 prodml22__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml22__AngleBetweenBoundaries(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AngleBetweenBoundaries() { } + /// Friend allocator used by soap_new_prodml23__AngleBetweenBoundaries(struct soap*, int) + friend SOAP_FMAC1 prodml23__AngleBetweenBoundaries * SOAP_FMAC2 soap_instantiate_prodml23__AngleBetweenBoundaries(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2417 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure (-1135) -/* complex XML schema type 'prodml22:AveragePressure': */ -class SOAP_CMAC prodml22__AveragePressure : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure (-1135) +/* complex XML schema type 'prodml23:AveragePressure': */ +class SOAP_CMAC prodml23__AveragePressure : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Pbar" - /// Required element 'prodml22:Pressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:Pressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44878,31 +45096,31 @@ class SOAP_CMAC prodml22__AveragePressure : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AveragePressure, default initialized and not managed by a soap context - virtual prodml22__AveragePressure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AveragePressure); } + /// Return a new object of type prodml23__AveragePressure, default initialized and not managed by a soap context + virtual prodml23__AveragePressure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AveragePressure); } public: /// Constructor with default initializations - prodml22__AveragePressure() : Abbreviation("Pbar"), Pressure() { } + prodml23__AveragePressure() : Abbreviation("Pbar"), Pressure() { } /// Destructor - virtual ~prodml22__AveragePressure() { } - /// Friend allocator used by soap_new_prodml22__AveragePressure(struct soap*, int) - friend SOAP_FMAC1 prodml22__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml22__AveragePressure(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AveragePressure() { } + /// Friend allocator used by soap_new_prodml23__AveragePressure(struct soap*, int) + friend SOAP_FMAC1 prodml23__AveragePressure * SOAP_FMAC2 soap_instantiate_prodml23__AveragePressure(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2419 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness (-1136) -/* complex XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness': */ -class SOAP_CMAC prodml22__ConvergenceSkinRelativeToTotalThickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness (-1136) +/* complex XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness': */ +class SOAP_CMAC prodml23__ConvergenceSkinRelativeToTotalThickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Sconv" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44915,33 +45133,33 @@ class SOAP_CMAC prodml22__ConvergenceSkinRelativeToTotalThickness : public prodm virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ConvergenceSkinRelativeToTotalThickness, default initialized and not managed by a soap context - virtual prodml22__ConvergenceSkinRelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ConvergenceSkinRelativeToTotalThickness); } + /// Return a new object of type prodml23__ConvergenceSkinRelativeToTotalThickness, default initialized and not managed by a soap context + virtual prodml23__ConvergenceSkinRelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ConvergenceSkinRelativeToTotalThickness); } public: /// Constructor with default initializations - prodml22__ConvergenceSkinRelativeToTotalThickness() : Abbreviation("Sconv"), Value() { } + prodml23__ConvergenceSkinRelativeToTotalThickness() : Abbreviation("Sconv"), Value() { } /// Destructor - virtual ~prodml22__ConvergenceSkinRelativeToTotalThickness() { } - /// Friend allocator used by soap_new_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__ConvergenceSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ConvergenceSkinRelativeToTotalThickness() { } + /// Friend allocator used by soap_new_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__ConvergenceSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__ConvergenceSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2421 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter (-1137) -/* complex XML schema type 'prodml22:CustomParameter': */ -class SOAP_CMAC prodml22__CustomParameter : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter (-1137) +/* complex XML schema type 'prodml23:CustomParameter': */ +class SOAP_CMAC prodml23__CustomParameter : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; - /// Required element 'prodml22:MeasureValue' of XML schema type 'prodml22:GeneralMeasureType' - prodml22__GeneralMeasureType *MeasureValue; + /// Required element 'prodml23:MeasureValue' of XML schema type 'prodml23:GeneralMeasureType' + prodml23__GeneralMeasureType *MeasureValue; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44954,31 +45172,31 @@ class SOAP_CMAC prodml22__CustomParameter : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomParameter, default initialized and not managed by a soap context - virtual prodml22__CustomParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomParameter); } + /// Return a new object of type prodml23__CustomParameter, default initialized and not managed by a soap context + virtual prodml23__CustomParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomParameter); } public: /// Constructor with default initializations - prodml22__CustomParameter() : Name(), Abbreviation(), MeasureValue() { } + prodml23__CustomParameter() : Name(), Abbreviation(), MeasureValue() { } /// Destructor - virtual ~prodml22__CustomParameter() { } - /// Friend allocator used by soap_new_prodml22__CustomParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml22__CustomParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomParameter() { } + /// Friend allocator used by soap_new_prodml23__CustomParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomParameter * SOAP_FMAC2 soap_instantiate_prodml23__CustomParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2423 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin (-1138) -/* complex XML schema type 'prodml22:DeltaPressureTotalSkin': */ -class SOAP_CMAC prodml22__DeltaPressureTotalSkin : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin (-1138) +/* complex XML schema type 'prodml23:DeltaPressureTotalSkin': */ +class SOAP_CMAC prodml23__DeltaPressureTotalSkin : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "dP Skin" - /// Required element 'prodml22:Pressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:Pressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -44991,31 +45209,31 @@ class SOAP_CMAC prodml22__DeltaPressureTotalSkin : public prodml22__AbstractPara virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeltaPressureTotalSkin, default initialized and not managed by a soap context - virtual prodml22__DeltaPressureTotalSkin *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeltaPressureTotalSkin); } + /// Return a new object of type prodml23__DeltaPressureTotalSkin, default initialized and not managed by a soap context + virtual prodml23__DeltaPressureTotalSkin *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeltaPressureTotalSkin); } public: /// Constructor with default initializations - prodml22__DeltaPressureTotalSkin() : Abbreviation("dP Skin"), Pressure() { } + prodml23__DeltaPressureTotalSkin() : Abbreviation("dP Skin"), Pressure() { } /// Destructor - virtual ~prodml22__DeltaPressureTotalSkin() { } - /// Friend allocator used by soap_new_prodml22__DeltaPressureTotalSkin(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml22__DeltaPressureTotalSkin(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeltaPressureTotalSkin() { } + /// Friend allocator used by soap_new_prodml23__DeltaPressureTotalSkin(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeltaPressureTotalSkin * SOAP_FMAC2 soap_instantiate_prodml23__DeltaPressureTotalSkin(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2425 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges (-1139) -/* complex XML schema type 'prodml22:DeltaTimeStorageChanges': */ -class SOAP_CMAC prodml22__DeltaTimeStorageChanges : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges (-1139) +/* complex XML schema type 'prodml23:DeltaTimeStorageChanges': */ +class SOAP_CMAC prodml23__DeltaTimeStorageChanges : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "dT" - /// Required element 'prodml22:Time' of XML schema type 'eml23:TimeMeasure' + /// Required element 'prodml23:Time' of XML schema type 'eml23:TimeMeasure' eml23__TimeMeasure *Time; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45028,31 +45246,31 @@ class SOAP_CMAC prodml22__DeltaTimeStorageChanges : public prodml22__AbstractPar virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeltaTimeStorageChanges, default initialized and not managed by a soap context - virtual prodml22__DeltaTimeStorageChanges *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeltaTimeStorageChanges); } + /// Return a new object of type prodml23__DeltaTimeStorageChanges, default initialized and not managed by a soap context + virtual prodml23__DeltaTimeStorageChanges *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeltaTimeStorageChanges); } public: /// Constructor with default initializations - prodml22__DeltaTimeStorageChanges() : Abbreviation("dT"), Time() { } + prodml23__DeltaTimeStorageChanges() : Abbreviation("dT"), Time() { } /// Destructor - virtual ~prodml22__DeltaTimeStorageChanges() { } - /// Friend allocator used by soap_new_prodml22__DeltaTimeStorageChanges(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodml22__DeltaTimeStorageChanges(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeltaTimeStorageChanges() { } + /// Friend allocator used by soap_new_prodml23__DeltaTimeStorageChanges(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeltaTimeStorageChanges * SOAP_FMAC2 soap_instantiate_prodml23__DeltaTimeStorageChanges(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2427 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary (-1140) -/* complex XML schema type 'prodml22:DistanceFractureToBottomBoundary': */ -class SOAP_CMAC prodml22__DistanceFractureToBottomBoundary : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary (-1140) +/* complex XML schema type 'prodml23:DistanceFractureToBottomBoundary': */ +class SOAP_CMAC prodml23__DistanceFractureToBottomBoundary : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Zf" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45065,31 +45283,31 @@ class SOAP_CMAC prodml22__DistanceFractureToBottomBoundary : public prodml22__Ab virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceFractureToBottomBoundary, default initialized and not managed by a soap context - virtual prodml22__DistanceFractureToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceFractureToBottomBoundary); } + /// Return a new object of type prodml23__DistanceFractureToBottomBoundary, default initialized and not managed by a soap context + virtual prodml23__DistanceFractureToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceFractureToBottomBoundary); } public: /// Constructor with default initializations - prodml22__DistanceFractureToBottomBoundary() : Abbreviation("Zf"), Length() { } + prodml23__DistanceFractureToBottomBoundary() : Abbreviation("Zf"), Length() { } /// Destructor - virtual ~prodml22__DistanceFractureToBottomBoundary() { } - /// Friend allocator used by soap_new_prodml22__DistanceFractureToBottomBoundary(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceFractureToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceFractureToBottomBoundary() { } + /// Friend allocator used by soap_new_prodml23__DistanceFractureToBottomBoundary(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceFractureToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceFractureToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2429 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary (-1141) -/* complex XML schema type 'prodml22:DistanceMidFractureHeightToBottomBoundary': */ -class SOAP_CMAC prodml22__DistanceMidFractureHeightToBottomBoundary : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary (-1141) +/* complex XML schema type 'prodml23:DistanceMidFractureHeightToBottomBoundary': */ +class SOAP_CMAC prodml23__DistanceMidFractureHeightToBottomBoundary : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Zf" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45102,31 +45320,31 @@ class SOAP_CMAC prodml22__DistanceMidFractureHeightToBottomBoundary : public pro virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceMidFractureHeightToBottomBoundary, default initialized and not managed by a soap context - virtual prodml22__DistanceMidFractureHeightToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceMidFractureHeightToBottomBoundary); } + /// Return a new object of type prodml23__DistanceMidFractureHeightToBottomBoundary, default initialized and not managed by a soap context + virtual prodml23__DistanceMidFractureHeightToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceMidFractureHeightToBottomBoundary); } public: /// Constructor with default initializations - prodml22__DistanceMidFractureHeightToBottomBoundary() : Abbreviation("Zf"), Length() { } + prodml23__DistanceMidFractureHeightToBottomBoundary() : Abbreviation("Zf"), Length() { } /// Destructor - virtual ~prodml22__DistanceMidFractureHeightToBottomBoundary() { } - /// Friend allocator used by soap_new_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceMidFractureHeightToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceMidFractureHeightToBottomBoundary() { } + /// Friend allocator used by soap_new_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceMidFractureHeightToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceMidFractureHeightToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2431 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary (-1142) -/* complex XML schema type 'prodml22:DistanceMidPerforationsToBottomBoundary': */ -class SOAP_CMAC prodml22__DistanceMidPerforationsToBottomBoundary : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary (-1142) +/* complex XML schema type 'prodml23:DistanceMidPerforationsToBottomBoundary': */ +class SOAP_CMAC prodml23__DistanceMidPerforationsToBottomBoundary : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Zp" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45139,31 +45357,31 @@ class SOAP_CMAC prodml22__DistanceMidPerforationsToBottomBoundary : public prodm virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceMidPerforationsToBottomBoundary, default initialized and not managed by a soap context - virtual prodml22__DistanceMidPerforationsToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceMidPerforationsToBottomBoundary); } + /// Return a new object of type prodml23__DistanceMidPerforationsToBottomBoundary, default initialized and not managed by a soap context + virtual prodml23__DistanceMidPerforationsToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceMidPerforationsToBottomBoundary); } public: /// Constructor with default initializations - prodml22__DistanceMidPerforationsToBottomBoundary() : Abbreviation("Zp"), Length() { } + prodml23__DistanceMidPerforationsToBottomBoundary() : Abbreviation("Zp"), Length() { } /// Destructor - virtual ~prodml22__DistanceMidPerforationsToBottomBoundary() { } - /// Friend allocator used by soap_new_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceMidPerforationsToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceMidPerforationsToBottomBoundary() { } + /// Friend allocator used by soap_new_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceMidPerforationsToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceMidPerforationsToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2433 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 (-1143) -/* complex XML schema type 'prodml22:DistanceToBoundary1': */ -class SOAP_CMAC prodml22__DistanceToBoundary1 : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 (-1143) +/* complex XML schema type 'prodml23:DistanceToBoundary1': */ +class SOAP_CMAC prodml23__DistanceToBoundary1 : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "L1" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45176,31 +45394,31 @@ class SOAP_CMAC prodml22__DistanceToBoundary1 : public prodml22__AbstractParamet virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceToBoundary1, default initialized and not managed by a soap context - virtual prodml22__DistanceToBoundary1 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceToBoundary1); } + /// Return a new object of type prodml23__DistanceToBoundary1, default initialized and not managed by a soap context + virtual prodml23__DistanceToBoundary1 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceToBoundary1); } public: /// Constructor with default initializations - prodml22__DistanceToBoundary1() : Abbreviation("L1"), Length() { } + prodml23__DistanceToBoundary1() : Abbreviation("L1"), Length() { } /// Destructor - virtual ~prodml22__DistanceToBoundary1() { } - /// Friend allocator used by soap_new_prodml22__DistanceToBoundary1(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary1(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceToBoundary1() { } + /// Friend allocator used by soap_new_prodml23__DistanceToBoundary1(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary1(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2435 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 (-1144) -/* complex XML schema type 'prodml22:DistanceToBoundary2': */ -class SOAP_CMAC prodml22__DistanceToBoundary2 : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 (-1144) +/* complex XML schema type 'prodml23:DistanceToBoundary2': */ +class SOAP_CMAC prodml23__DistanceToBoundary2 : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "L2" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45213,31 +45431,31 @@ class SOAP_CMAC prodml22__DistanceToBoundary2 : public prodml22__AbstractParamet virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceToBoundary2, default initialized and not managed by a soap context - virtual prodml22__DistanceToBoundary2 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceToBoundary2); } + /// Return a new object of type prodml23__DistanceToBoundary2, default initialized and not managed by a soap context + virtual prodml23__DistanceToBoundary2 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceToBoundary2); } public: /// Constructor with default initializations - prodml22__DistanceToBoundary2() : Abbreviation("L2"), Length() { } + prodml23__DistanceToBoundary2() : Abbreviation("L2"), Length() { } /// Destructor - virtual ~prodml22__DistanceToBoundary2() { } - /// Friend allocator used by soap_new_prodml22__DistanceToBoundary2(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary2(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceToBoundary2() { } + /// Friend allocator used by soap_new_prodml23__DistanceToBoundary2(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceToBoundary2 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary2(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2437 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 (-1145) -/* complex XML schema type 'prodml22:DistanceToBoundary3': */ -class SOAP_CMAC prodml22__DistanceToBoundary3 : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 (-1145) +/* complex XML schema type 'prodml23:DistanceToBoundary3': */ +class SOAP_CMAC prodml23__DistanceToBoundary3 : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "L3" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45250,31 +45468,31 @@ class SOAP_CMAC prodml22__DistanceToBoundary3 : public prodml22__AbstractParamet virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceToBoundary3, default initialized and not managed by a soap context - virtual prodml22__DistanceToBoundary3 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceToBoundary3); } + /// Return a new object of type prodml23__DistanceToBoundary3, default initialized and not managed by a soap context + virtual prodml23__DistanceToBoundary3 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceToBoundary3); } public: /// Constructor with default initializations - prodml22__DistanceToBoundary3() : Abbreviation("L3"), Length() { } + prodml23__DistanceToBoundary3() : Abbreviation("L3"), Length() { } /// Destructor - virtual ~prodml22__DistanceToBoundary3() { } - /// Friend allocator used by soap_new_prodml22__DistanceToBoundary3(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary3(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceToBoundary3() { } + /// Friend allocator used by soap_new_prodml23__DistanceToBoundary3(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceToBoundary3 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary3(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2439 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 (-1146) -/* complex XML schema type 'prodml22:DistanceToBoundary4': */ -class SOAP_CMAC prodml22__DistanceToBoundary4 : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 (-1146) +/* complex XML schema type 'prodml23:DistanceToBoundary4': */ +class SOAP_CMAC prodml23__DistanceToBoundary4 : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "L4" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45287,31 +45505,31 @@ class SOAP_CMAC prodml22__DistanceToBoundary4 : public prodml22__AbstractParamet virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceToBoundary4, default initialized and not managed by a soap context - virtual prodml22__DistanceToBoundary4 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceToBoundary4); } + /// Return a new object of type prodml23__DistanceToBoundary4, default initialized and not managed by a soap context + virtual prodml23__DistanceToBoundary4 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceToBoundary4); } public: /// Constructor with default initializations - prodml22__DistanceToBoundary4() : Abbreviation("L4"), Length() { } + prodml23__DistanceToBoundary4() : Abbreviation("L4"), Length() { } /// Destructor - virtual ~prodml22__DistanceToBoundary4() { } - /// Friend allocator used by soap_new_prodml22__DistanceToBoundary4(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToBoundary4(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceToBoundary4() { } + /// Friend allocator used by soap_new_prodml23__DistanceToBoundary4(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceToBoundary4 * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToBoundary4(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2441 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface (-1147) -/* complex XML schema type 'prodml22:DistanceToMobilityInterface': */ -class SOAP_CMAC prodml22__DistanceToMobilityInterface : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface (-1147) +/* complex XML schema type 'prodml23:DistanceToMobilityInterface': */ +class SOAP_CMAC prodml23__DistanceToMobilityInterface : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Li" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45324,31 +45542,31 @@ class SOAP_CMAC prodml22__DistanceToMobilityInterface : public prodml22__Abstrac virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceToMobilityInterface, default initialized and not managed by a soap context - virtual prodml22__DistanceToMobilityInterface *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceToMobilityInterface); } + /// Return a new object of type prodml23__DistanceToMobilityInterface, default initialized and not managed by a soap context + virtual prodml23__DistanceToMobilityInterface *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceToMobilityInterface); } public: /// Constructor with default initializations - prodml22__DistanceToMobilityInterface() : Abbreviation("Li"), Length() { } + prodml23__DistanceToMobilityInterface() : Abbreviation("Li"), Length() { } /// Destructor - virtual ~prodml22__DistanceToMobilityInterface() { } - /// Friend allocator used by soap_new_prodml22__DistanceToMobilityInterface(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToMobilityInterface(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceToMobilityInterface() { } + /// Friend allocator used by soap_new_prodml23__DistanceToMobilityInterface(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceToMobilityInterface * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToMobilityInterface(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2443 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut (-1148) -/* complex XML schema type 'prodml22:DistanceToPinchOut': */ -class SOAP_CMAC prodml22__DistanceToPinchOut : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut (-1148) +/* complex XML schema type 'prodml23:DistanceToPinchOut': */ +class SOAP_CMAC prodml23__DistanceToPinchOut : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Lpinch" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45361,31 +45579,31 @@ class SOAP_CMAC prodml22__DistanceToPinchOut : public prodml22__AbstractParamete virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceToPinchOut, default initialized and not managed by a soap context - virtual prodml22__DistanceToPinchOut *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceToPinchOut); } + /// Return a new object of type prodml23__DistanceToPinchOut, default initialized and not managed by a soap context + virtual prodml23__DistanceToPinchOut *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceToPinchOut); } public: /// Constructor with default initializations - prodml22__DistanceToPinchOut() : Abbreviation("Lpinch"), Length() { } + prodml23__DistanceToPinchOut() : Abbreviation("Lpinch"), Length() { } /// Destructor - virtual ~prodml22__DistanceToPinchOut() { } - /// Friend allocator used by soap_new_prodml22__DistanceToPinchOut(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml22__DistanceToPinchOut(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceToPinchOut() { } + /// Friend allocator used by soap_new_prodml23__DistanceToPinchOut(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceToPinchOut * SOAP_FMAC2 soap_instantiate_prodml23__DistanceToPinchOut(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2445 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary (-1149) -/* complex XML schema type 'prodml22:DistanceWellboreToBottomBoundary': */ -class SOAP_CMAC prodml22__DistanceWellboreToBottomBoundary : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary (-1149) +/* complex XML schema type 'prodml23:DistanceWellboreToBottomBoundary': */ +class SOAP_CMAC prodml23__DistanceWellboreToBottomBoundary : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Zw" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45398,31 +45616,31 @@ class SOAP_CMAC prodml22__DistanceWellboreToBottomBoundary : public prodml22__Ab virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DistanceWellboreToBottomBoundary, default initialized and not managed by a soap context - virtual prodml22__DistanceWellboreToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DistanceWellboreToBottomBoundary); } + /// Return a new object of type prodml23__DistanceWellboreToBottomBoundary, default initialized and not managed by a soap context + virtual prodml23__DistanceWellboreToBottomBoundary *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DistanceWellboreToBottomBoundary); } public: /// Constructor with default initializations - prodml22__DistanceWellboreToBottomBoundary() : Abbreviation("Zw"), Length() { } + prodml23__DistanceWellboreToBottomBoundary() : Abbreviation("Zw"), Length() { } /// Destructor - virtual ~prodml22__DistanceWellboreToBottomBoundary() { } - /// Friend allocator used by soap_new_prodml22__DistanceWellboreToBottomBoundary(struct soap*, int) - friend SOAP_FMAC1 prodml22__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml22__DistanceWellboreToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DistanceWellboreToBottomBoundary() { } + /// Friend allocator used by soap_new_prodml23__DistanceWellboreToBottomBoundary(struct soap*, int) + friend SOAP_FMAC1 prodml23__DistanceWellboreToBottomBoundary * SOAP_FMAC2 soap_instantiate_prodml23__DistanceWellboreToBottomBoundary(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2447 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured (-1150) -/* complex XML schema type 'prodml22:DrainageAreaMeasured': */ -class SOAP_CMAC prodml22__DrainageAreaMeasured : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured (-1150) +/* complex XML schema type 'prodml23:DrainageAreaMeasured': */ +class SOAP_CMAC prodml23__DrainageAreaMeasured : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "A" - /// Required element 'prodml22:Area' of XML schema type 'eml23:AreaMeasure' + /// Required element 'prodml23:Area' of XML schema type 'eml23:AreaMeasure' eml23__AreaMeasure *Area; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45435,31 +45653,31 @@ class SOAP_CMAC prodml22__DrainageAreaMeasured : public prodml22__AbstractParame virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DrainageAreaMeasured, default initialized and not managed by a soap context - virtual prodml22__DrainageAreaMeasured *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DrainageAreaMeasured); } + /// Return a new object of type prodml23__DrainageAreaMeasured, default initialized and not managed by a soap context + virtual prodml23__DrainageAreaMeasured *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DrainageAreaMeasured); } public: /// Constructor with default initializations - prodml22__DrainageAreaMeasured() : Abbreviation("A"), Area() { } + prodml23__DrainageAreaMeasured() : Abbreviation("A"), Area() { } /// Destructor - virtual ~prodml22__DrainageAreaMeasured() { } - /// Friend allocator used by soap_new_prodml22__DrainageAreaMeasured(struct soap*, int) - friend SOAP_FMAC1 prodml22__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml22__DrainageAreaMeasured(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DrainageAreaMeasured() { } + /// Friend allocator used by soap_new_prodml23__DrainageAreaMeasured(struct soap*, int) + friend SOAP_FMAC1 prodml23__DrainageAreaMeasured * SOAP_FMAC2 soap_instantiate_prodml23__DrainageAreaMeasured(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2449 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity (-1151) -/* complex XML schema type 'prodml22:FaultConductivity': */ -class SOAP_CMAC prodml22__FaultConductivity : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity (-1151) +/* complex XML schema type 'prodml23:FaultConductivity': */ +class SOAP_CMAC prodml23__FaultConductivity : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Fc" - /// Required element 'prodml22:PermeabilityLength' of XML schema type 'eml23:PermeabilityLengthMeasureExt' + /// Required element 'prodml23:PermeabilityLength' of XML schema type 'eml23:PermeabilityLengthMeasureExt' eml23__PermeabilityLengthMeasureExt *PermeabilityLength; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45472,31 +45690,31 @@ class SOAP_CMAC prodml22__FaultConductivity : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FaultConductivity, default initialized and not managed by a soap context - virtual prodml22__FaultConductivity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FaultConductivity); } + /// Return a new object of type prodml23__FaultConductivity, default initialized and not managed by a soap context + virtual prodml23__FaultConductivity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FaultConductivity); } public: /// Constructor with default initializations - prodml22__FaultConductivity() : Abbreviation("Fc"), PermeabilityLength() { } + prodml23__FaultConductivity() : Abbreviation("Fc"), PermeabilityLength() { } /// Destructor - virtual ~prodml22__FaultConductivity() { } - /// Friend allocator used by soap_new_prodml22__FaultConductivity(struct soap*, int) - friend SOAP_FMAC1 prodml22__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml22__FaultConductivity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FaultConductivity() { } + /// Friend allocator used by soap_new_prodml23__FaultConductivity(struct soap*, int) + friend SOAP_FMAC1 prodml23__FaultConductivity * SOAP_FMAC2 soap_instantiate_prodml23__FaultConductivity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2451 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity (-1152) -/* complex XML schema type 'prodml22:FluidDensity': */ -class SOAP_CMAC prodml22__FluidDensity : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity (-1152) +/* complex XML schema type 'prodml23:FluidDensity': */ +class SOAP_CMAC prodml23__FluidDensity : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Rho" - /// Required element 'prodml22:Density' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Required element 'prodml23:Density' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *Density; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45509,31 +45727,31 @@ class SOAP_CMAC prodml22__FluidDensity : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidDensity, default initialized and not managed by a soap context - virtual prodml22__FluidDensity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidDensity); } + /// Return a new object of type prodml23__FluidDensity, default initialized and not managed by a soap context + virtual prodml23__FluidDensity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidDensity); } public: /// Constructor with default initializations - prodml22__FluidDensity() : Abbreviation("Rho"), Density() { } + prodml23__FluidDensity() : Abbreviation("Rho"), Density() { } /// Destructor - virtual ~prodml22__FluidDensity() { } - /// Friend allocator used by soap_new_prodml22__FluidDensity(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml22__FluidDensity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidDensity() { } + /// Friend allocator used by soap_new_prodml23__FluidDensity(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidDensity * SOAP_FMAC2 soap_instantiate_prodml23__FluidDensity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2453 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore (-1153) -/* complex XML schema type 'prodml22:FractureAngleToWellbore': */ -class SOAP_CMAC prodml22__FractureAngleToWellbore : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore (-1153) +/* complex XML schema type 'prodml23:FractureAngleToWellbore': */ +class SOAP_CMAC prodml23__FractureAngleToWellbore : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "FractureAngleToWellbore" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45546,31 +45764,31 @@ class SOAP_CMAC prodml22__FractureAngleToWellbore : public prodml22__AbstractPar virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureAngleToWellbore, default initialized and not managed by a soap context - virtual prodml22__FractureAngleToWellbore *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureAngleToWellbore); } + /// Return a new object of type prodml23__FractureAngleToWellbore, default initialized and not managed by a soap context + virtual prodml23__FractureAngleToWellbore *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureAngleToWellbore); } public: /// Constructor with default initializations - prodml22__FractureAngleToWellbore() : Abbreviation("FractureAngleToWellbore"), Angle() { } + prodml23__FractureAngleToWellbore() : Abbreviation("FractureAngleToWellbore"), Angle() { } /// Destructor - virtual ~prodml22__FractureAngleToWellbore() { } - /// Friend allocator used by soap_new_prodml22__FractureAngleToWellbore(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodml22__FractureAngleToWellbore(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureAngleToWellbore() { } + /// Friend allocator used by soap_new_prodml23__FractureAngleToWellbore(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureAngleToWellbore * SOAP_FMAC2 soap_instantiate_prodml23__FractureAngleToWellbore(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2455 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity (-1154) -/* complex XML schema type 'prodml22:FractureConductivity': */ -class SOAP_CMAC prodml22__FractureConductivity : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity (-1154) +/* complex XML schema type 'prodml23:FractureConductivity': */ +class SOAP_CMAC prodml23__FractureConductivity : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Fc" - /// Required element 'prodml22:PermeabilityLength' of XML schema type 'eml23:PermeabilityLengthMeasureExt' + /// Required element 'prodml23:PermeabilityLength' of XML schema type 'eml23:PermeabilityLengthMeasureExt' eml23__PermeabilityLengthMeasureExt *PermeabilityLength; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45583,31 +45801,31 @@ class SOAP_CMAC prodml22__FractureConductivity : public prodml22__AbstractParame virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureConductivity, default initialized and not managed by a soap context - virtual prodml22__FractureConductivity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureConductivity); } + /// Return a new object of type prodml23__FractureConductivity, default initialized and not managed by a soap context + virtual prodml23__FractureConductivity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureConductivity); } public: /// Constructor with default initializations - prodml22__FractureConductivity() : Abbreviation("Fc"), PermeabilityLength() { } + prodml23__FractureConductivity() : Abbreviation("Fc"), PermeabilityLength() { } /// Destructor - virtual ~prodml22__FractureConductivity() { } - /// Friend allocator used by soap_new_prodml22__FractureConductivity(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml22__FractureConductivity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureConductivity() { } + /// Friend allocator used by soap_new_prodml23__FractureConductivity(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureConductivity * SOAP_FMAC2 soap_instantiate_prodml23__FractureConductivity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2457 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin (-1155) -/* complex XML schema type 'prodml22:FractureFaceSkin': */ -class SOAP_CMAC prodml22__FractureFaceSkin : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin (-1155) +/* complex XML schema type 'prodml23:FractureFaceSkin': */ +class SOAP_CMAC prodml23__FractureFaceSkin : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Sf" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45620,31 +45838,31 @@ class SOAP_CMAC prodml22__FractureFaceSkin : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureFaceSkin, default initialized and not managed by a soap context - virtual prodml22__FractureFaceSkin *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureFaceSkin); } + /// Return a new object of type prodml23__FractureFaceSkin, default initialized and not managed by a soap context + virtual prodml23__FractureFaceSkin *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureFaceSkin); } public: /// Constructor with default initializations - prodml22__FractureFaceSkin() : Abbreviation("Sf"), Value() { } + prodml23__FractureFaceSkin() : Abbreviation("Sf"), Value() { } /// Destructor - virtual ~prodml22__FractureFaceSkin() { } - /// Friend allocator used by soap_new_prodml22__FractureFaceSkin(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml22__FractureFaceSkin(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureFaceSkin() { } + /// Friend allocator used by soap_new_prodml23__FractureFaceSkin(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureFaceSkin * SOAP_FMAC2 soap_instantiate_prodml23__FractureFaceSkin(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2459 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength (-1156) -/* complex XML schema type 'prodml22:FractureHalfLength': */ -class SOAP_CMAC prodml22__FractureHalfLength : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength (-1156) +/* complex XML schema type 'prodml23:FractureHalfLength': */ +class SOAP_CMAC prodml23__FractureHalfLength : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Xf" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45657,31 +45875,31 @@ class SOAP_CMAC prodml22__FractureHalfLength : public prodml22__AbstractParamete virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureHalfLength, default initialized and not managed by a soap context - virtual prodml22__FractureHalfLength *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureHalfLength); } + /// Return a new object of type prodml23__FractureHalfLength, default initialized and not managed by a soap context + virtual prodml23__FractureHalfLength *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureHalfLength); } public: /// Constructor with default initializations - prodml22__FractureHalfLength() : Abbreviation("Xf"), Length() { } + prodml23__FractureHalfLength() : Abbreviation("Xf"), Length() { } /// Destructor - virtual ~prodml22__FractureHalfLength() { } - /// Friend allocator used by soap_new_prodml22__FractureHalfLength(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml22__FractureHalfLength(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureHalfLength() { } + /// Friend allocator used by soap_new_prodml23__FractureHalfLength(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureHalfLength * SOAP_FMAC2 soap_instantiate_prodml23__FractureHalfLength(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2461 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight (-1157) -/* complex XML schema type 'prodml22:FractureHeight': */ -class SOAP_CMAC prodml22__FractureHeight : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight (-1157) +/* complex XML schema type 'prodml23:FractureHeight': */ +class SOAP_CMAC prodml23__FractureHeight : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Hf" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45694,31 +45912,31 @@ class SOAP_CMAC prodml22__FractureHeight : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureHeight, default initialized and not managed by a soap context - virtual prodml22__FractureHeight *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureHeight); } + /// Return a new object of type prodml23__FractureHeight, default initialized and not managed by a soap context + virtual prodml23__FractureHeight *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureHeight); } public: /// Constructor with default initializations - prodml22__FractureHeight() : Abbreviation("Hf"), Length() { } + prodml23__FractureHeight() : Abbreviation("Hf"), Length() { } /// Destructor - virtual ~prodml22__FractureHeight() { } - /// Friend allocator used by soap_new_prodml22__FractureHeight(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml22__FractureHeight(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureHeight() { } + /// Friend allocator used by soap_new_prodml23__FractureHeight(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureHeight * SOAP_FMAC2 soap_instantiate_prodml23__FractureHeight(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2463 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius (-1158) -/* complex XML schema type 'prodml22:FractureRadius': */ -class SOAP_CMAC prodml22__FractureRadius : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius (-1158) +/* complex XML schema type 'prodml23:FractureRadius': */ +class SOAP_CMAC prodml23__FractureRadius : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:abbreviation' of XML schema type 'xsd:string' + /// Required element 'prodml23:abbreviation' of XML schema type 'xsd:string' std::string abbreviation; ///< initialized with fixed value = "Rf" - /// Required element 'prodml22:length' of XML schema type 'xsd:string' + /// Required element 'prodml23:length' of XML schema type 'xsd:string' std::string length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45731,31 +45949,31 @@ class SOAP_CMAC prodml22__FractureRadius : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureRadius, default initialized and not managed by a soap context - virtual prodml22__FractureRadius *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureRadius); } + /// Return a new object of type prodml23__FractureRadius, default initialized and not managed by a soap context + virtual prodml23__FractureRadius *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureRadius); } public: /// Constructor with default initializations - prodml22__FractureRadius() : abbreviation("Rf"), length() { } + prodml23__FractureRadius() : abbreviation("Rf"), length() { } /// Destructor - virtual ~prodml22__FractureRadius() { } - /// Friend allocator used by soap_new_prodml22__FractureRadius(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml22__FractureRadius(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureRadius() { } + /// Friend allocator used by soap_new_prodml23__FractureRadius(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureRadius * SOAP_FMAC2 soap_instantiate_prodml23__FractureRadius(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2465 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio (-1159) -/* complex XML schema type 'prodml22:FractureStorativityRatio': */ -class SOAP_CMAC prodml22__FractureStorativityRatio : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio (-1159) +/* complex XML schema type 'prodml23:FractureStorativityRatio': */ +class SOAP_CMAC prodml23__FractureStorativityRatio : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "etaD" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45768,31 +45986,31 @@ class SOAP_CMAC prodml22__FractureStorativityRatio : public prodml22__AbstractPa virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FractureStorativityRatio, default initialized and not managed by a soap context - virtual prodml22__FractureStorativityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FractureStorativityRatio); } + /// Return a new object of type prodml23__FractureStorativityRatio, default initialized and not managed by a soap context + virtual prodml23__FractureStorativityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FractureStorativityRatio); } public: /// Constructor with default initializations - prodml22__FractureStorativityRatio() : Abbreviation("etaD"), Value() { } + prodml23__FractureStorativityRatio() : Abbreviation("etaD"), Value() { } /// Destructor - virtual ~prodml22__FractureStorativityRatio() { } - /// Friend allocator used by soap_new_prodml22__FractureStorativityRatio(struct soap*, int) - friend SOAP_FMAC1 prodml22__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__FractureStorativityRatio(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FractureStorativityRatio() { } + /// Friend allocator used by soap_new_prodml23__FractureStorativityRatio(struct soap*, int) + friend SOAP_FMAC1 prodml23__FractureStorativityRatio * SOAP_FMAC2 soap_instantiate_prodml23__FractureStorativityRatio(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2467 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy (-1160) -/* complex XML schema type 'prodml22:HorizontalAnisotropyKxToKy': */ -class SOAP_CMAC prodml22__HorizontalAnisotropyKxToKy : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy (-1160) +/* complex XML schema type 'prodml23:HorizontalAnisotropyKxToKy': */ +class SOAP_CMAC prodml23__HorizontalAnisotropyKxToKy : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "kxToky" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45805,31 +46023,31 @@ class SOAP_CMAC prodml22__HorizontalAnisotropyKxToKy : public prodml22__Abstract virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HorizontalAnisotropyKxToKy, default initialized and not managed by a soap context - virtual prodml22__HorizontalAnisotropyKxToKy *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HorizontalAnisotropyKxToKy); } + /// Return a new object of type prodml23__HorizontalAnisotropyKxToKy, default initialized and not managed by a soap context + virtual prodml23__HorizontalAnisotropyKxToKy *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HorizontalAnisotropyKxToKy); } public: /// Constructor with default initializations - prodml22__HorizontalAnisotropyKxToKy() : Abbreviation("kxToky"), Value() { } + prodml23__HorizontalAnisotropyKxToKy() : Abbreviation("kxToky"), Value() { } /// Destructor - virtual ~prodml22__HorizontalAnisotropyKxToKy() { } - /// Friend allocator used by soap_new_prodml22__HorizontalAnisotropyKxToKy(struct soap*, int) - friend SOAP_FMAC1 prodml22__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalAnisotropyKxToKy(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HorizontalAnisotropyKxToKy() { } + /// Friend allocator used by soap_new_prodml23__HorizontalAnisotropyKxToKy(struct soap*, int) + friend SOAP_FMAC1 prodml23__HorizontalAnisotropyKxToKy * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalAnisotropyKxToKy(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2469 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability (-1161) -/* complex XML schema type 'prodml22:HorizontalRadialPermeability': */ -class SOAP_CMAC prodml22__HorizontalRadialPermeability : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability (-1161) +/* complex XML schema type 'prodml23:HorizontalRadialPermeability': */ +class SOAP_CMAC prodml23__HorizontalRadialPermeability : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "K" - /// Required element 'prodml22:Permeability' of XML schema type 'eml23:PermeabilityRockMeasureExt' + /// Required element 'prodml23:Permeability' of XML schema type 'eml23:PermeabilityRockMeasureExt' eml23__PermeabilityRockMeasureExt *Permeability; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45842,31 +46060,31 @@ class SOAP_CMAC prodml22__HorizontalRadialPermeability : public prodml22__Abstra virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HorizontalRadialPermeability, default initialized and not managed by a soap context - virtual prodml22__HorizontalRadialPermeability *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HorizontalRadialPermeability); } + /// Return a new object of type prodml23__HorizontalRadialPermeability, default initialized and not managed by a soap context + virtual prodml23__HorizontalRadialPermeability *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HorizontalRadialPermeability); } public: /// Constructor with default initializations - prodml22__HorizontalRadialPermeability() : Abbreviation("K"), Permeability() { } + prodml23__HorizontalRadialPermeability() : Abbreviation("K"), Permeability() { } /// Destructor - virtual ~prodml22__HorizontalRadialPermeability() { } - /// Friend allocator used by soap_new_prodml22__HorizontalRadialPermeability(struct soap*, int) - friend SOAP_FMAC1 prodml22__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalRadialPermeability(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HorizontalRadialPermeability() { } + /// Friend allocator used by soap_new_prodml23__HorizontalRadialPermeability(struct soap*, int) + friend SOAP_FMAC1 prodml23__HorizontalRadialPermeability * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalRadialPermeability(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2471 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure (-1162) -/* complex XML schema type 'prodml22:InitialPressure': */ -class SOAP_CMAC prodml22__InitialPressure : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure (-1162) +/* complex XML schema type 'prodml23:InitialPressure': */ +class SOAP_CMAC prodml23__InitialPressure : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Pi" - /// Required element 'prodml22:Pressure' of XML schema type 'eml23:PressureMeasure' + /// Required element 'prodml23:Pressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45879,31 +46097,31 @@ class SOAP_CMAC prodml22__InitialPressure : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InitialPressure, default initialized and not managed by a soap context - virtual prodml22__InitialPressure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InitialPressure); } + /// Return a new object of type prodml23__InitialPressure, default initialized and not managed by a soap context + virtual prodml23__InitialPressure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InitialPressure); } public: /// Constructor with default initializations - prodml22__InitialPressure() : Abbreviation("Pi"), Pressure() { } + prodml23__InitialPressure() : Abbreviation("Pi"), Pressure() { } /// Destructor - virtual ~prodml22__InitialPressure() { } - /// Friend allocator used by soap_new_prodml22__InitialPressure(struct soap*, int) - friend SOAP_FMAC1 prodml22__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml22__InitialPressure(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InitialPressure() { } + /// Friend allocator used by soap_new_prodml23__InitialPressure(struct soap*, int) + friend SOAP_FMAC1 prodml23__InitialPressure * SOAP_FMAC2 soap_instantiate_prodml23__InitialPressure(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2473 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio (-1163) -/* complex XML schema type 'prodml22:InnerToOuterZoneDiffusivityRatio': */ -class SOAP_CMAC prodml22__InnerToOuterZoneDiffusivityRatio : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio (-1163) +/* complex XML schema type 'prodml23:InnerToOuterZoneDiffusivityRatio': */ +class SOAP_CMAC prodml23__InnerToOuterZoneDiffusivityRatio : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "D" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45916,31 +46134,31 @@ class SOAP_CMAC prodml22__InnerToOuterZoneDiffusivityRatio : public prodml22__Ab virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InnerToOuterZoneDiffusivityRatio, default initialized and not managed by a soap context - virtual prodml22__InnerToOuterZoneDiffusivityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InnerToOuterZoneDiffusivityRatio); } + /// Return a new object of type prodml23__InnerToOuterZoneDiffusivityRatio, default initialized and not managed by a soap context + virtual prodml23__InnerToOuterZoneDiffusivityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InnerToOuterZoneDiffusivityRatio); } public: /// Constructor with default initializations - prodml22__InnerToOuterZoneDiffusivityRatio() : Abbreviation("D"), Value() { } + prodml23__InnerToOuterZoneDiffusivityRatio() : Abbreviation("D"), Value() { } /// Destructor - virtual ~prodml22__InnerToOuterZoneDiffusivityRatio() { } - /// Friend allocator used by soap_new_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, int) - friend SOAP_FMAC1 prodml22__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instantiate_prodml22__InnerToOuterZoneDiffusivityRatio(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InnerToOuterZoneDiffusivityRatio() { } + /// Friend allocator used by soap_new_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, int) + friend SOAP_FMAC1 prodml23__InnerToOuterZoneDiffusivityRatio * SOAP_FMAC2 soap_instantiate_prodml23__InnerToOuterZoneDiffusivityRatio(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2475 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio (-1164) -/* complex XML schema type 'prodml22:InnerToOuterZoneMobilityRatio': */ -class SOAP_CMAC prodml22__InnerToOuterZoneMobilityRatio : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio (-1164) +/* complex XML schema type 'prodml23:InnerToOuterZoneMobilityRatio': */ +class SOAP_CMAC prodml23__InnerToOuterZoneMobilityRatio : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "M" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45953,31 +46171,31 @@ class SOAP_CMAC prodml22__InnerToOuterZoneMobilityRatio : public prodml22__Abstr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InnerToOuterZoneMobilityRatio, default initialized and not managed by a soap context - virtual prodml22__InnerToOuterZoneMobilityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InnerToOuterZoneMobilityRatio); } + /// Return a new object of type prodml23__InnerToOuterZoneMobilityRatio, default initialized and not managed by a soap context + virtual prodml23__InnerToOuterZoneMobilityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InnerToOuterZoneMobilityRatio); } public: /// Constructor with default initializations - prodml22__InnerToOuterZoneMobilityRatio() : Abbreviation("M"), Value() { } + prodml23__InnerToOuterZoneMobilityRatio() : Abbreviation("M"), Value() { } /// Destructor - virtual ~prodml22__InnerToOuterZoneMobilityRatio() { } - /// Friend allocator used by soap_new_prodml22__InnerToOuterZoneMobilityRatio(struct soap*, int) - friend SOAP_FMAC1 prodml22__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate_prodml22__InnerToOuterZoneMobilityRatio(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InnerToOuterZoneMobilityRatio() { } + /// Friend allocator used by soap_new_prodml23__InnerToOuterZoneMobilityRatio(struct soap*, int) + friend SOAP_FMAC1 prodml23__InnerToOuterZoneMobilityRatio * SOAP_FMAC2 soap_instantiate_prodml23__InnerToOuterZoneMobilityRatio(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2477 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter (-1165) -/* complex XML schema type 'prodml22:InterporosityFlowParameter': */ -class SOAP_CMAC prodml22__InterporosityFlowParameter : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter (-1165) +/* complex XML schema type 'prodml23:InterporosityFlowParameter': */ +class SOAP_CMAC prodml23__InterporosityFlowParameter : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Lambda" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -45990,31 +46208,31 @@ class SOAP_CMAC prodml22__InterporosityFlowParameter : public prodml22__Abstract virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InterporosityFlowParameter, default initialized and not managed by a soap context - virtual prodml22__InterporosityFlowParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InterporosityFlowParameter); } + /// Return a new object of type prodml23__InterporosityFlowParameter, default initialized and not managed by a soap context + virtual prodml23__InterporosityFlowParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InterporosityFlowParameter); } public: /// Constructor with default initializations - prodml22__InterporosityFlowParameter() : Abbreviation("Lambda"), Value() { } + prodml23__InterporosityFlowParameter() : Abbreviation("Lambda"), Value() { } /// Destructor - virtual ~prodml22__InterporosityFlowParameter() { } - /// Friend allocator used by soap_new_prodml22__InterporosityFlowParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_prodml22__InterporosityFlowParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InterporosityFlowParameter() { } + /// Friend allocator used by soap_new_prodml23__InterporosityFlowParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__InterporosityFlowParameter * SOAP_FMAC2 soap_instantiate_prodml23__InterporosityFlowParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2479 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness (-1166) -/* complex XML schema type 'prodml22:Layer2Thickness': */ -class SOAP_CMAC prodml22__Layer2Thickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness (-1166) +/* complex XML schema type 'prodml23:Layer2Thickness': */ +class SOAP_CMAC prodml23__Layer2Thickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "h layer 2" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46027,31 +46245,31 @@ class SOAP_CMAC prodml22__Layer2Thickness : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Layer2Thickness, default initialized and not managed by a soap context - virtual prodml22__Layer2Thickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Layer2Thickness); } + /// Return a new object of type prodml23__Layer2Thickness, default initialized and not managed by a soap context + virtual prodml23__Layer2Thickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Layer2Thickness); } public: /// Constructor with default initializations - prodml22__Layer2Thickness() : Abbreviation("h layer 2"), Length() { } + prodml23__Layer2Thickness() : Abbreviation("h layer 2"), Length() { } /// Destructor - virtual ~prodml22__Layer2Thickness() { } - /// Friend allocator used by soap_new_prodml22__Layer2Thickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Layer2Thickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Layer2Thickness() { } + /// Friend allocator used by soap_new_prodml23__Layer2Thickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__Layer2Thickness * SOAP_FMAC2 soap_instantiate_prodml23__Layer2Thickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2481 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin (-1167) -/* complex XML schema type 'prodml22:LeakSkin': */ -class SOAP_CMAC prodml22__LeakSkin : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin (-1167) +/* complex XML schema type 'prodml23:LeakSkin': */ +class SOAP_CMAC prodml23__LeakSkin : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Sl" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46064,31 +46282,31 @@ class SOAP_CMAC prodml22__LeakSkin : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LeakSkin, default initialized and not managed by a soap context - virtual prodml22__LeakSkin *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LeakSkin); } + /// Return a new object of type prodml23__LeakSkin, default initialized and not managed by a soap context + virtual prodml23__LeakSkin *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LeakSkin); } public: /// Constructor with default initializations - prodml22__LeakSkin() : Abbreviation("Sl"), Value() { } + prodml23__LeakSkin() : Abbreviation("Sl"), Value() { } /// Destructor - virtual ~prodml22__LeakSkin() { } - /// Friend allocator used by soap_new_prodml22__LeakSkin(struct soap*, int) - friend SOAP_FMAC1 prodml22__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml22__LeakSkin(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LeakSkin() { } + /// Friend allocator used by soap_new_prodml23__LeakSkin(struct soap*, int) + friend SOAP_FMAC1 prodml23__LeakSkin * SOAP_FMAC2 soap_instantiate_prodml23__LeakSkin(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2483 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing (-1168) -/* complex XML schema type 'prodml22:LengthHorizontalWellboreFlowing': */ -class SOAP_CMAC prodml22__LengthHorizontalWellboreFlowing : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing (-1168) +/* complex XML schema type 'prodml23:LengthHorizontalWellboreFlowing': */ +class SOAP_CMAC prodml23__LengthHorizontalWellboreFlowing : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "hw" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46101,31 +46319,31 @@ class SOAP_CMAC prodml22__LengthHorizontalWellboreFlowing : public prodml22__Abs virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LengthHorizontalWellboreFlowing, default initialized and not managed by a soap context - virtual prodml22__LengthHorizontalWellboreFlowing *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LengthHorizontalWellboreFlowing); } + /// Return a new object of type prodml23__LengthHorizontalWellboreFlowing, default initialized and not managed by a soap context + virtual prodml23__LengthHorizontalWellboreFlowing *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LengthHorizontalWellboreFlowing); } public: /// Constructor with default initializations - prodml22__LengthHorizontalWellboreFlowing() : Abbreviation("hw"), Length() { } + prodml23__LengthHorizontalWellboreFlowing() : Abbreviation("hw"), Length() { } /// Destructor - virtual ~prodml22__LengthHorizontalWellboreFlowing() { } - /// Friend allocator used by soap_new_prodml22__LengthHorizontalWellboreFlowing(struct soap*, int) - friend SOAP_FMAC1 prodml22__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantiate_prodml22__LengthHorizontalWellboreFlowing(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LengthHorizontalWellboreFlowing() { } + /// Friend allocator used by soap_new_prodml23__LengthHorizontalWellboreFlowing(struct soap*, int) + friend SOAP_FMAC1 prodml23__LengthHorizontalWellboreFlowing * SOAP_FMAC2 soap_instantiate_prodml23__LengthHorizontalWellboreFlowing(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2485 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness (-1169) -/* complex XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness': */ -class SOAP_CMAC prodml22__MechanicalSkinRelativeToTotalThickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness (-1169) +/* complex XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness': */ +class SOAP_CMAC prodml23__MechanicalSkinRelativeToTotalThickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Smech" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46138,31 +46356,31 @@ class SOAP_CMAC prodml22__MechanicalSkinRelativeToTotalThickness : public prodml virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MechanicalSkinRelativeToTotalThickness, default initialized and not managed by a soap context - virtual prodml22__MechanicalSkinRelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MechanicalSkinRelativeToTotalThickness); } + /// Return a new object of type prodml23__MechanicalSkinRelativeToTotalThickness, default initialized and not managed by a soap context + virtual prodml23__MechanicalSkinRelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MechanicalSkinRelativeToTotalThickness); } public: /// Constructor with default initializations - prodml22__MechanicalSkinRelativeToTotalThickness() : Abbreviation("Smech"), Value() { } + prodml23__MechanicalSkinRelativeToTotalThickness() : Abbreviation("Smech"), Value() { } /// Destructor - virtual ~prodml22__MechanicalSkinRelativeToTotalThickness() { } - /// Friend allocator used by soap_new_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__MechanicalSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MechanicalSkinRelativeToTotalThickness() { } + /// Friend allocator used by soap_new_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__MechanicalSkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__MechanicalSkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2487 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName (-1170) -/* complex XML schema type 'prodml22:ModelName': */ -class SOAP_CMAC prodml22__ModelName : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName (-1170) +/* complex XML schema type 'prodml23:ModelName': */ +class SOAP_CMAC prodml23__ModelName : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "ModelName" - /// Required element 'prodml22:Name' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Name' of XML schema type 'eml23:String64' std::string Name; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46175,31 +46393,31 @@ class SOAP_CMAC prodml22__ModelName : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ModelName, default initialized and not managed by a soap context - virtual prodml22__ModelName *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ModelName); } + /// Return a new object of type prodml23__ModelName, default initialized and not managed by a soap context + virtual prodml23__ModelName *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ModelName); } public: /// Constructor with default initializations - prodml22__ModelName() : Abbreviation("ModelName"), Name() { } + prodml23__ModelName() : Abbreviation("ModelName"), Name() { } /// Destructor - virtual ~prodml22__ModelName() { } - /// Friend allocator used by soap_new_prodml22__ModelName(struct soap*, int) - friend SOAP_FMAC1 prodml22__ModelName * SOAP_FMAC2 soap_instantiate_prodml22__ModelName(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ModelName() { } + /// Friend allocator used by soap_new_prodml23__ModelName(struct soap*, int) + friend SOAP_FMAC1 prodml23__ModelName * SOAP_FMAC2 soap_instantiate_prodml23__ModelName(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2489 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures (-1171) -/* complex XML schema type 'prodml22:NumberOfFractures': */ -class SOAP_CMAC prodml22__NumberOfFractures : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures (-1171) +/* complex XML schema type 'prodml23:NumberOfFractures': */ +class SOAP_CMAC prodml23__NumberOfFractures : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Nf" - /// Required element 'prodml22:Number' of XML schema type 'xsd:integer' + /// Required element 'prodml23:Number' of XML schema type 'xsd:integer' LONG64 Number; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46212,31 +46430,31 @@ class SOAP_CMAC prodml22__NumberOfFractures : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NumberOfFractures, default initialized and not managed by a soap context - virtual prodml22__NumberOfFractures *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NumberOfFractures); } + /// Return a new object of type prodml23__NumberOfFractures, default initialized and not managed by a soap context + virtual prodml23__NumberOfFractures *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NumberOfFractures); } public: /// Constructor with default initializations - prodml22__NumberOfFractures() : Abbreviation("Nf"), Number() { } + prodml23__NumberOfFractures() : Abbreviation("Nf"), Number() { } /// Destructor - virtual ~prodml22__NumberOfFractures() { } - /// Friend allocator used by soap_new_prodml22__NumberOfFractures(struct soap*, int) - friend SOAP_FMAC1 prodml22__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml22__NumberOfFractures(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NumberOfFractures() { } + /// Friend allocator used by soap_new_prodml23__NumberOfFractures(struct soap*, int) + friend SOAP_FMAC1 prodml23__NumberOfFractures * SOAP_FMAC2 soap_instantiate_prodml23__NumberOfFractures(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2491 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection (-1172) -/* complex XML schema type 'prodml22:OrientationOfAnisotropyXDirection': */ -class SOAP_CMAC prodml22__OrientationOfAnisotropyXDirection : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection (-1172) +/* complex XML schema type 'prodml23:OrientationOfAnisotropyXDirection': */ +class SOAP_CMAC prodml23__OrientationOfAnisotropyXDirection : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "OrientationOfAnisotropy_XDirection" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46249,31 +46467,31 @@ class SOAP_CMAC prodml22__OrientationOfAnisotropyXDirection : public prodml22__A virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OrientationOfAnisotropyXDirection, default initialized and not managed by a soap context - virtual prodml22__OrientationOfAnisotropyXDirection *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OrientationOfAnisotropyXDirection); } + /// Return a new object of type prodml23__OrientationOfAnisotropyXDirection, default initialized and not managed by a soap context + virtual prodml23__OrientationOfAnisotropyXDirection *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OrientationOfAnisotropyXDirection); } public: /// Constructor with default initializations - prodml22__OrientationOfAnisotropyXDirection() : Abbreviation("OrientationOfAnisotropy_XDirection"), Angle() { } + prodml23__OrientationOfAnisotropyXDirection() : Abbreviation("OrientationOfAnisotropy_XDirection"), Angle() { } /// Destructor - virtual ~prodml22__OrientationOfAnisotropyXDirection() { } - /// Friend allocator used by soap_new_prodml22__OrientationOfAnisotropyXDirection(struct soap*, int) - friend SOAP_FMAC1 prodml22__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfAnisotropyXDirection(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OrientationOfAnisotropyXDirection() { } + /// Friend allocator used by soap_new_prodml23__OrientationOfAnisotropyXDirection(struct soap*, int) + friend SOAP_FMAC1 prodml23__OrientationOfAnisotropyXDirection * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfAnisotropyXDirection(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2493 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane (-1173) -/* complex XML schema type 'prodml22:OrientationOfFracturePlane': */ -class SOAP_CMAC prodml22__OrientationOfFracturePlane : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane (-1173) +/* complex XML schema type 'prodml23:OrientationOfFracturePlane': */ +class SOAP_CMAC prodml23__OrientationOfFracturePlane : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "OrientationOfFracturePlane" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46286,31 +46504,31 @@ class SOAP_CMAC prodml22__OrientationOfFracturePlane : public prodml22__Abstract virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OrientationOfFracturePlane, default initialized and not managed by a soap context - virtual prodml22__OrientationOfFracturePlane *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OrientationOfFracturePlane); } + /// Return a new object of type prodml23__OrientationOfFracturePlane, default initialized and not managed by a soap context + virtual prodml23__OrientationOfFracturePlane *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OrientationOfFracturePlane); } public: /// Constructor with default initializations - prodml22__OrientationOfFracturePlane() : Abbreviation("OrientationOfFracturePlane"), Angle() { } + prodml23__OrientationOfFracturePlane() : Abbreviation("OrientationOfFracturePlane"), Angle() { } /// Destructor - virtual ~prodml22__OrientationOfFracturePlane() { } - /// Friend allocator used by soap_new_prodml22__OrientationOfFracturePlane(struct soap*, int) - friend SOAP_FMAC1 prodml22__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfFracturePlane(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OrientationOfFracturePlane() { } + /// Friend allocator used by soap_new_prodml23__OrientationOfFracturePlane(struct soap*, int) + friend SOAP_FMAC1 prodml23__OrientationOfFracturePlane * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfFracturePlane(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2495 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront (-1174) -/* complex XML schema type 'prodml22:OrientationOfLinearFront': */ -class SOAP_CMAC prodml22__OrientationOfLinearFront : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront (-1174) +/* complex XML schema type 'prodml23:OrientationOfLinearFront': */ +class SOAP_CMAC prodml23__OrientationOfLinearFront : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "OrientationOfLinearFront" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46323,31 +46541,31 @@ class SOAP_CMAC prodml22__OrientationOfLinearFront : public prodml22__AbstractPa virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OrientationOfLinearFront, default initialized and not managed by a soap context - virtual prodml22__OrientationOfLinearFront *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OrientationOfLinearFront); } + /// Return a new object of type prodml23__OrientationOfLinearFront, default initialized and not managed by a soap context + virtual prodml23__OrientationOfLinearFront *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OrientationOfLinearFront); } public: /// Constructor with default initializations - prodml22__OrientationOfLinearFront() : Abbreviation("OrientationOfLinearFront"), Angle() { } + prodml23__OrientationOfLinearFront() : Abbreviation("OrientationOfLinearFront"), Angle() { } /// Destructor - virtual ~prodml22__OrientationOfLinearFront() { } - /// Friend allocator used by soap_new_prodml22__OrientationOfLinearFront(struct soap*, int) - friend SOAP_FMAC1 prodml22__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfLinearFront(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OrientationOfLinearFront() { } + /// Friend allocator used by soap_new_prodml23__OrientationOfLinearFront(struct soap*, int) + friend SOAP_FMAC1 prodml23__OrientationOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfLinearFront(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2497 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 (-1175) -/* complex XML schema type 'prodml22:OrientationOfNormalToBoundary1': */ -class SOAP_CMAC prodml22__OrientationOfNormalToBoundary1 : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 (-1175) +/* complex XML schema type 'prodml23:OrientationOfNormalToBoundary1': */ +class SOAP_CMAC prodml23__OrientationOfNormalToBoundary1 : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "OrientationOfNormalToBoundary1" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46360,31 +46578,31 @@ class SOAP_CMAC prodml22__OrientationOfNormalToBoundary1 : public prodml22__Abst virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OrientationOfNormalToBoundary1, default initialized and not managed by a soap context - virtual prodml22__OrientationOfNormalToBoundary1 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OrientationOfNormalToBoundary1); } + /// Return a new object of type prodml23__OrientationOfNormalToBoundary1, default initialized and not managed by a soap context + virtual prodml23__OrientationOfNormalToBoundary1 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OrientationOfNormalToBoundary1); } public: /// Constructor with default initializations - prodml22__OrientationOfNormalToBoundary1() : Abbreviation("OrientationOfNormalToBoundary1"), Angle() { } + prodml23__OrientationOfNormalToBoundary1() : Abbreviation("OrientationOfNormalToBoundary1"), Angle() { } /// Destructor - virtual ~prodml22__OrientationOfNormalToBoundary1() { } - /// Friend allocator used by soap_new_prodml22__OrientationOfNormalToBoundary1(struct soap*, int) - friend SOAP_FMAC1 prodml22__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml22__OrientationOfNormalToBoundary1(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OrientationOfNormalToBoundary1() { } + /// Friend allocator used by soap_new_prodml23__OrientationOfNormalToBoundary1(struct soap*, int) + friend SOAP_FMAC1 prodml23__OrientationOfNormalToBoundary1 * SOAP_FMAC2 soap_instantiate_prodml23__OrientationOfNormalToBoundary1(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2499 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory (-1176) -/* complex XML schema type 'prodml22:OrientationWellTrajectory': */ -class SOAP_CMAC prodml22__OrientationWellTrajectory : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory (-1176) +/* complex XML schema type 'prodml23:OrientationWellTrajectory': */ +class SOAP_CMAC prodml23__OrientationWellTrajectory : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "OrientationWellTrajectory" - /// Required element 'prodml22:Angle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:Angle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *Angle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46397,31 +46615,31 @@ class SOAP_CMAC prodml22__OrientationWellTrajectory : public prodml22__AbstractP virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OrientationWellTrajectory, default initialized and not managed by a soap context - virtual prodml22__OrientationWellTrajectory *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OrientationWellTrajectory); } + /// Return a new object of type prodml23__OrientationWellTrajectory, default initialized and not managed by a soap context + virtual prodml23__OrientationWellTrajectory *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OrientationWellTrajectory); } public: /// Constructor with default initializations - prodml22__OrientationWellTrajectory() : Abbreviation("OrientationWellTrajectory"), Angle() { } + prodml23__OrientationWellTrajectory() : Abbreviation("OrientationWellTrajectory"), Angle() { } /// Destructor - virtual ~prodml22__OrientationWellTrajectory() { } - /// Friend allocator used by soap_new_prodml22__OrientationWellTrajectory(struct soap*, int) - friend SOAP_FMAC1 prodml22__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_prodml22__OrientationWellTrajectory(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OrientationWellTrajectory() { } + /// Friend allocator used by soap_new_prodml23__OrientationWellTrajectory(struct soap*, int) + friend SOAP_FMAC1 prodml23__OrientationWellTrajectory * SOAP_FMAC2 soap_instantiate_prodml23__OrientationWellTrajectory(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2501 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength (-1177) -/* complex XML schema type 'prodml22:PerforatedLength': */ -class SOAP_CMAC prodml22__PerforatedLength : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength (-1177) +/* complex XML schema type 'prodml23:PerforatedLength': */ +class SOAP_CMAC prodml23__PerforatedLength : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "hp" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46434,31 +46652,31 @@ class SOAP_CMAC prodml22__PerforatedLength : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PerforatedLength, default initialized and not managed by a soap context - virtual prodml22__PerforatedLength *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PerforatedLength); } + /// Return a new object of type prodml23__PerforatedLength, default initialized and not managed by a soap context + virtual prodml23__PerforatedLength *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PerforatedLength); } public: /// Constructor with default initializations - prodml22__PerforatedLength() : Abbreviation("hp"), Length() { } + prodml23__PerforatedLength() : Abbreviation("hp"), Length() { } /// Destructor - virtual ~prodml22__PerforatedLength() { } - /// Friend allocator used by soap_new_prodml22__PerforatedLength(struct soap*, int) - friend SOAP_FMAC1 prodml22__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml22__PerforatedLength(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PerforatedLength() { } + /// Friend allocator used by soap_new_prodml23__PerforatedLength(struct soap*, int) + friend SOAP_FMAC1 prodml23__PerforatedLength * SOAP_FMAC2 soap_instantiate_prodml23__PerforatedLength(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2503 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct (-1178) -/* complex XML schema type 'prodml22:PermeabilityThicknessProduct': */ -class SOAP_CMAC prodml22__PermeabilityThicknessProduct : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct (-1178) +/* complex XML schema type 'prodml23:PermeabilityThicknessProduct': */ +class SOAP_CMAC prodml23__PermeabilityThicknessProduct : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "k.h" - /// Required element 'prodml22:PermeabilityLength' of XML schema type 'eml23:PermeabilityLengthMeasureExt' + /// Required element 'prodml23:PermeabilityLength' of XML schema type 'eml23:PermeabilityLengthMeasureExt' eml23__PermeabilityLengthMeasureExt *PermeabilityLength; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46471,31 +46689,31 @@ class SOAP_CMAC prodml22__PermeabilityThicknessProduct : public prodml22__Abstra virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PermeabilityThicknessProduct, default initialized and not managed by a soap context - virtual prodml22__PermeabilityThicknessProduct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PermeabilityThicknessProduct); } + /// Return a new object of type prodml23__PermeabilityThicknessProduct, default initialized and not managed by a soap context + virtual prodml23__PermeabilityThicknessProduct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PermeabilityThicknessProduct); } public: /// Constructor with default initializations - prodml22__PermeabilityThicknessProduct() : Abbreviation("k.h"), PermeabilityLength() { } + prodml23__PermeabilityThicknessProduct() : Abbreviation("k.h"), PermeabilityLength() { } /// Destructor - virtual ~prodml22__PermeabilityThicknessProduct() { } - /// Friend allocator used by soap_new_prodml22__PermeabilityThicknessProduct(struct soap*, int) - friend SOAP_FMAC1 prodml22__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml22__PermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PermeabilityThicknessProduct() { } + /// Friend allocator used by soap_new_prodml23__PermeabilityThicknessProduct(struct soap*, int) + friend SOAP_FMAC1 prodml23__PermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml23__PermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2505 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured (-1179) -/* complex XML schema type 'prodml22:PoreVolumeMeasured': */ -class SOAP_CMAC prodml22__PoreVolumeMeasured : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured (-1179) +/* complex XML schema type 'prodml23:PoreVolumeMeasured': */ +class SOAP_CMAC prodml23__PoreVolumeMeasured : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "PVmeas" - /// Required element 'prodml22:Volume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:Volume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *Volume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46508,31 +46726,31 @@ class SOAP_CMAC prodml22__PoreVolumeMeasured : public prodml22__AbstractParamete virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PoreVolumeMeasured, default initialized and not managed by a soap context - virtual prodml22__PoreVolumeMeasured *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PoreVolumeMeasured); } + /// Return a new object of type prodml23__PoreVolumeMeasured, default initialized and not managed by a soap context + virtual prodml23__PoreVolumeMeasured *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PoreVolumeMeasured); } public: /// Constructor with default initializations - prodml22__PoreVolumeMeasured() : Abbreviation("PVmeas"), Volume() { } + prodml23__PoreVolumeMeasured() : Abbreviation("PVmeas"), Volume() { } /// Destructor - virtual ~prodml22__PoreVolumeMeasured() { } - /// Friend allocator used by soap_new_prodml22__PoreVolumeMeasured(struct soap*, int) - friend SOAP_FMAC1 prodml22__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml22__PoreVolumeMeasured(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PoreVolumeMeasured() { } + /// Friend allocator used by soap_new_prodml23__PoreVolumeMeasured(struct soap*, int) + friend SOAP_FMAC1 prodml23__PoreVolumeMeasured * SOAP_FMAC2 soap_instantiate_prodml23__PoreVolumeMeasured(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2507 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation (-1180) -/* complex XML schema type 'prodml22:PoreVolumeOfInvestigation': */ -class SOAP_CMAC prodml22__PoreVolumeOfInvestigation : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation (-1180) +/* complex XML schema type 'prodml23:PoreVolumeOfInvestigation': */ +class SOAP_CMAC prodml23__PoreVolumeOfInvestigation : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "PVinv" - /// Required element 'prodml22:Volume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:Volume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *Volume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46545,31 +46763,31 @@ class SOAP_CMAC prodml22__PoreVolumeOfInvestigation : public prodml22__AbstractP virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PoreVolumeOfInvestigation, default initialized and not managed by a soap context - virtual prodml22__PoreVolumeOfInvestigation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PoreVolumeOfInvestigation); } + /// Return a new object of type prodml23__PoreVolumeOfInvestigation, default initialized and not managed by a soap context + virtual prodml23__PoreVolumeOfInvestigation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PoreVolumeOfInvestigation); } public: /// Constructor with default initializations - prodml22__PoreVolumeOfInvestigation() : Abbreviation("PVinv"), Volume() { } + prodml23__PoreVolumeOfInvestigation() : Abbreviation("PVinv"), Volume() { } /// Destructor - virtual ~prodml22__PoreVolumeOfInvestigation() { } - /// Friend allocator used by soap_new_prodml22__PoreVolumeOfInvestigation(struct soap*, int) - friend SOAP_FMAC1 prodml22__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml22__PoreVolumeOfInvestigation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PoreVolumeOfInvestigation() { } + /// Friend allocator used by soap_new_prodml23__PoreVolumeOfInvestigation(struct soap*, int) + friend SOAP_FMAC1 prodml23__PoreVolumeOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml23__PoreVolumeOfInvestigation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2509 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity (-1181) -/* complex XML schema type 'prodml22:Porosity': */ -class SOAP_CMAC prodml22__Porosity : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity (-1181) +/* complex XML schema type 'prodml23:Porosity': */ +class SOAP_CMAC prodml23__Porosity : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Phi" - /// Required element 'prodml22:VolumePerVolume' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Required element 'prodml23:VolumePerVolume' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *VolumePerVolume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46582,31 +46800,31 @@ class SOAP_CMAC prodml22__Porosity : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Porosity, default initialized and not managed by a soap context - virtual prodml22__Porosity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Porosity); } + /// Return a new object of type prodml23__Porosity, default initialized and not managed by a soap context + virtual prodml23__Porosity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Porosity); } public: /// Constructor with default initializations - prodml22__Porosity() : Abbreviation("Phi"), VolumePerVolume() { } + prodml23__Porosity() : Abbreviation("Phi"), VolumePerVolume() { } /// Destructor - virtual ~prodml22__Porosity() { } - /// Friend allocator used by soap_new_prodml22__Porosity(struct soap*, int) - friend SOAP_FMAC1 prodml22__Porosity * SOAP_FMAC2 soap_instantiate_prodml22__Porosity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Porosity() { } + /// Friend allocator used by soap_new_prodml23__Porosity(struct soap*, int) + friend SOAP_FMAC1 prodml23__Porosity * SOAP_FMAC2 soap_instantiate_prodml23__Porosity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2511 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD (-1182) -/* complex XML schema type 'prodml22:PressureDatumTVD': */ -class SOAP_CMAC prodml22__PressureDatumTVD : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD (-1182) +/* complex XML schema type 'prodml23:PressureDatumTVD': */ +class SOAP_CMAC prodml23__PressureDatumTVD : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "datum" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46619,31 +46837,31 @@ class SOAP_CMAC prodml22__PressureDatumTVD : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PressureDatumTVD, default initialized and not managed by a soap context - virtual prodml22__PressureDatumTVD *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PressureDatumTVD); } + /// Return a new object of type prodml23__PressureDatumTVD, default initialized and not managed by a soap context + virtual prodml23__PressureDatumTVD *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PressureDatumTVD); } public: /// Constructor with default initializations - prodml22__PressureDatumTVD() : Abbreviation("datum"), Length() { } + prodml23__PressureDatumTVD() : Abbreviation("datum"), Length() { } /// Destructor - virtual ~prodml22__PressureDatumTVD() { } - /// Friend allocator used by soap_new_prodml22__PressureDatumTVD(struct soap*, int) - friend SOAP_FMAC1 prodml22__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml22__PressureDatumTVD(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PressureDatumTVD() { } + /// Friend allocator used by soap_new_prodml23__PressureDatumTVD(struct soap*, int) + friend SOAP_FMAC1 prodml23__PressureDatumTVD * SOAP_FMAC2 soap_instantiate_prodml23__PressureDatumTVD(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2513 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation (-1183) -/* complex XML schema type 'prodml22:RadiusOfInvestigation': */ -class SOAP_CMAC prodml22__RadiusOfInvestigation : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation (-1183) +/* complex XML schema type 'prodml23:RadiusOfInvestigation': */ +class SOAP_CMAC prodml23__RadiusOfInvestigation : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Ri" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46656,31 +46874,31 @@ class SOAP_CMAC prodml22__RadiusOfInvestigation : public prodml22__AbstractParam virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RadiusOfInvestigation, default initialized and not managed by a soap context - virtual prodml22__RadiusOfInvestigation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RadiusOfInvestigation); } + /// Return a new object of type prodml23__RadiusOfInvestigation, default initialized and not managed by a soap context + virtual prodml23__RadiusOfInvestigation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RadiusOfInvestigation); } public: /// Constructor with default initializations - prodml22__RadiusOfInvestigation() : Abbreviation("Ri"), Length() { } + prodml23__RadiusOfInvestigation() : Abbreviation("Ri"), Length() { } /// Destructor - virtual ~prodml22__RadiusOfInvestigation() { } - /// Friend allocator used by soap_new_prodml22__RadiusOfInvestigation(struct soap*, int) - friend SOAP_FMAC1 prodml22__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml22__RadiusOfInvestigation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RadiusOfInvestigation() { } + /// Friend allocator used by soap_new_prodml23__RadiusOfInvestigation(struct soap*, int) + friend SOAP_FMAC1 prodml23__RadiusOfInvestigation * SOAP_FMAC2 soap_instantiate_prodml23__RadiusOfInvestigation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2515 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor (-1184) -/* complex XML schema type 'prodml22:RateDependentSkinFactor': */ -class SOAP_CMAC prodml22__RateDependentSkinFactor : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor (-1184) +/* complex XML schema type 'prodml23:RateDependentSkinFactor': */ +class SOAP_CMAC prodml23__RateDependentSkinFactor : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "D" - /// Required element 'prodml22:InverseFlowrate' of XML schema type 'eml23:TimePerVolumeMeasureExt' + /// Required element 'prodml23:InverseFlowrate' of XML schema type 'eml23:TimePerVolumeMeasureExt' eml23__TimePerVolumeMeasureExt *InverseFlowrate; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46693,31 +46911,31 @@ class SOAP_CMAC prodml22__RateDependentSkinFactor : public prodml22__AbstractPar virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RateDependentSkinFactor, default initialized and not managed by a soap context - virtual prodml22__RateDependentSkinFactor *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RateDependentSkinFactor); } + /// Return a new object of type prodml23__RateDependentSkinFactor, default initialized and not managed by a soap context + virtual prodml23__RateDependentSkinFactor *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RateDependentSkinFactor); } public: /// Constructor with default initializations - prodml22__RateDependentSkinFactor() : Abbreviation("D"), InverseFlowrate() { } + prodml23__RateDependentSkinFactor() : Abbreviation("D"), InverseFlowrate() { } /// Destructor - virtual ~prodml22__RateDependentSkinFactor() { } - /// Friend allocator used by soap_new_prodml22__RateDependentSkinFactor(struct soap*, int) - friend SOAP_FMAC1 prodml22__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodml22__RateDependentSkinFactor(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RateDependentSkinFactor() { } + /// Friend allocator used by soap_new_prodml23__RateDependentSkinFactor(struct soap*, int) + friend SOAP_FMAC1 prodml23__RateDependentSkinFactor * SOAP_FMAC2 soap_instantiate_prodml23__RateDependentSkinFactor(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2517 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown (-1185) -/* complex XML schema type 'prodml22:RatioDpSkinToTotalDrawdown': */ -class SOAP_CMAC prodml22__RatioDpSkinToTotalDrawdown : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown (-1185) +/* complex XML schema type 'prodml23:RatioDpSkinToTotalDrawdown': */ +class SOAP_CMAC prodml23__RatioDpSkinToTotalDrawdown : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Ratio dP Skin To Total" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46730,31 +46948,31 @@ class SOAP_CMAC prodml22__RatioDpSkinToTotalDrawdown : public prodml22__Abstract virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RatioDpSkinToTotalDrawdown, default initialized and not managed by a soap context - virtual prodml22__RatioDpSkinToTotalDrawdown *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RatioDpSkinToTotalDrawdown); } + /// Return a new object of type prodml23__RatioDpSkinToTotalDrawdown, default initialized and not managed by a soap context + virtual prodml23__RatioDpSkinToTotalDrawdown *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RatioDpSkinToTotalDrawdown); } public: /// Constructor with default initializations - prodml22__RatioDpSkinToTotalDrawdown() : Abbreviation("Ratio dP Skin To Total"), Value() { } + prodml23__RatioDpSkinToTotalDrawdown() : Abbreviation("Ratio dP Skin To Total"), Value() { } /// Destructor - virtual ~prodml22__RatioDpSkinToTotalDrawdown() { } - /// Friend allocator used by soap_new_prodml22__RatioDpSkinToTotalDrawdown(struct soap*, int) - friend SOAP_FMAC1 prodml22__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_prodml22__RatioDpSkinToTotalDrawdown(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RatioDpSkinToTotalDrawdown() { } + /// Friend allocator used by soap_new_prodml23__RatioDpSkinToTotalDrawdown(struct soap*, int) + friend SOAP_FMAC1 prodml23__RatioDpSkinToTotalDrawdown * SOAP_FMAC2 soap_instantiate_prodml23__RatioDpSkinToTotalDrawdown(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2519 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage (-1186) -/* complex XML schema type 'prodml22:RatioInitialToFinalWellboreStorage': */ -class SOAP_CMAC prodml22__RatioInitialToFinalWellboreStorage : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage (-1186) +/* complex XML schema type 'prodml23:RatioInitialToFinalWellboreStorage': */ +class SOAP_CMAC prodml23__RatioInitialToFinalWellboreStorage : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Ci/Cs" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46767,31 +46985,31 @@ class SOAP_CMAC prodml22__RatioInitialToFinalWellboreStorage : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RatioInitialToFinalWellboreStorage, default initialized and not managed by a soap context - virtual prodml22__RatioInitialToFinalWellboreStorage *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RatioInitialToFinalWellboreStorage); } + /// Return a new object of type prodml23__RatioInitialToFinalWellboreStorage, default initialized and not managed by a soap context + virtual prodml23__RatioInitialToFinalWellboreStorage *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RatioInitialToFinalWellboreStorage); } public: /// Constructor with default initializations - prodml22__RatioInitialToFinalWellboreStorage() : Abbreviation("Ci/Cs"), Value() { } + prodml23__RatioInitialToFinalWellboreStorage() : Abbreviation("Ci/Cs"), Value() { } /// Destructor - virtual ~prodml22__RatioInitialToFinalWellboreStorage() { } - /// Friend allocator used by soap_new_prodml22__RatioInitialToFinalWellboreStorage(struct soap*, int) - friend SOAP_FMAC1 prodml22__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instantiate_prodml22__RatioInitialToFinalWellboreStorage(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RatioInitialToFinalWellboreStorage() { } + /// Friend allocator used by soap_new_prodml23__RatioInitialToFinalWellboreStorage(struct soap*, int) + friend SOAP_FMAC1 prodml23__RatioInitialToFinalWellboreStorage * SOAP_FMAC2 soap_instantiate_prodml23__RatioInitialToFinalWellboreStorage(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2521 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct (-1187) -/* complex XML schema type 'prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct': */ -class SOAP_CMAC prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct (-1187) +/* complex XML schema type 'prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct': */ +class SOAP_CMAC prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Kappa" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46804,31 +47022,31 @@ class SOAP_CMAC prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct : publi virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct, default initialized and not managed by a soap context - virtual prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct); } + /// Return a new object of type prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct, default initialized and not managed by a soap context + virtual prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct); } public: /// Constructor with default initializations - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct() : Abbreviation("Kappa"), Value() { } + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct() : Abbreviation("Kappa"), Value() { } /// Destructor - virtual ~prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct() { } - /// Friend allocator used by soap_new_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, int) - friend SOAP_FMAC1 prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct() { } + /// Friend allocator used by soap_new_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, int) + friend SOAP_FMAC1 prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * SOAP_FMAC2 soap_instantiate_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2523 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness (-1188) -/* complex XML schema type 'prodml22:Region2Thickness': */ -class SOAP_CMAC prodml22__Region2Thickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness (-1188) +/* complex XML schema type 'prodml23:Region2Thickness': */ +class SOAP_CMAC prodml23__Region2Thickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "h region 2" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46841,31 +47059,31 @@ class SOAP_CMAC prodml22__Region2Thickness : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Region2Thickness, default initialized and not managed by a soap context - virtual prodml22__Region2Thickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Region2Thickness); } + /// Return a new object of type prodml23__Region2Thickness, default initialized and not managed by a soap context + virtual prodml23__Region2Thickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Region2Thickness); } public: /// Constructor with default initializations - prodml22__Region2Thickness() : Abbreviation("h region 2"), Length() { } + prodml23__Region2Thickness() : Abbreviation("h region 2"), Length() { } /// Destructor - virtual ~prodml22__Region2Thickness() { } - /// Friend allocator used by soap_new_prodml22__Region2Thickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml22__Region2Thickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Region2Thickness() { } + /// Friend allocator used by soap_new_prodml23__Region2Thickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__Region2Thickness * SOAP_FMAC2 soap_instantiate_prodml23__Region2Thickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2525 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness (-1189) -/* complex XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness': */ -class SOAP_CMAC prodml22__SkinLayer2RelativeToTotalThickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness (-1189) +/* complex XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness': */ +class SOAP_CMAC prodml23__SkinLayer2RelativeToTotalThickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "S2" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46878,31 +47096,31 @@ class SOAP_CMAC prodml22__SkinLayer2RelativeToTotalThickness : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SkinLayer2RelativeToTotalThickness, default initialized and not managed by a soap context - virtual prodml22__SkinLayer2RelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SkinLayer2RelativeToTotalThickness); } + /// Return a new object of type prodml23__SkinLayer2RelativeToTotalThickness, default initialized and not managed by a soap context + virtual prodml23__SkinLayer2RelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SkinLayer2RelativeToTotalThickness); } public: /// Constructor with default initializations - prodml22__SkinLayer2RelativeToTotalThickness() : Abbreviation("S2"), Value() { } + prodml23__SkinLayer2RelativeToTotalThickness() : Abbreviation("S2"), Value() { } /// Destructor - virtual ~prodml22__SkinLayer2RelativeToTotalThickness() { } - /// Friend allocator used by soap_new_prodml22__SkinLayer2RelativeToTotalThickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__SkinLayer2RelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SkinLayer2RelativeToTotalThickness() { } + /// Friend allocator used by soap_new_prodml23__SkinLayer2RelativeToTotalThickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__SkinLayer2RelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__SkinLayer2RelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2527 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness (-1190) -/* complex XML schema type 'prodml22:SkinRelativeToTotalThickness': */ -class SOAP_CMAC prodml22__SkinRelativeToTotalThickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness (-1190) +/* complex XML schema type 'prodml23:SkinRelativeToTotalThickness': */ +class SOAP_CMAC prodml23__SkinRelativeToTotalThickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "S" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46915,31 +47133,31 @@ class SOAP_CMAC prodml22__SkinRelativeToTotalThickness : public prodml22__Abstra virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SkinRelativeToTotalThickness, default initialized and not managed by a soap context - virtual prodml22__SkinRelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SkinRelativeToTotalThickness); } + /// Return a new object of type prodml23__SkinRelativeToTotalThickness, default initialized and not managed by a soap context + virtual prodml23__SkinRelativeToTotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SkinRelativeToTotalThickness); } public: /// Constructor with default initializations - prodml22__SkinRelativeToTotalThickness() : Abbreviation("S"), Value() { } + prodml23__SkinRelativeToTotalThickness() : Abbreviation("S"), Value() { } /// Destructor - virtual ~prodml22__SkinRelativeToTotalThickness() { } - /// Friend allocator used by soap_new_prodml22__SkinRelativeToTotalThickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__SkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SkinRelativeToTotalThickness() { } + /// Friend allocator used by soap_new_prodml23__SkinRelativeToTotalThickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__SkinRelativeToTotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__SkinRelativeToTotalThickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2529 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio (-1191) -/* complex XML schema type 'prodml22:StorativityRatio': */ -class SOAP_CMAC prodml22__StorativityRatio : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio (-1191) +/* complex XML schema type 'prodml23:StorativityRatio': */ +class SOAP_CMAC prodml23__StorativityRatio : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Omega" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46952,31 +47170,31 @@ class SOAP_CMAC prodml22__StorativityRatio : public prodml22__AbstractParameter virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__StorativityRatio, default initialized and not managed by a soap context - virtual prodml22__StorativityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__StorativityRatio); } + /// Return a new object of type prodml23__StorativityRatio, default initialized and not managed by a soap context + virtual prodml23__StorativityRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__StorativityRatio); } public: /// Constructor with default initializations - prodml22__StorativityRatio() : Abbreviation("Omega"), Value() { } + prodml23__StorativityRatio() : Abbreviation("Omega"), Value() { } /// Destructor - virtual ~prodml22__StorativityRatio() { } - /// Friend allocator used by soap_new_prodml22__StorativityRatio(struct soap*, int) - friend SOAP_FMAC1 prodml22__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml22__StorativityRatio(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__StorativityRatio() { } + /// Friend allocator used by soap_new_prodml23__StorativityRatio(struct soap*, int) + friend SOAP_FMAC1 prodml23__StorativityRatio * SOAP_FMAC2 soap_instantiate_prodml23__StorativityRatio(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2531 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness (-1192) -/* complex XML schema type 'prodml22:TotalThickness': */ -class SOAP_CMAC prodml22__TotalThickness : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness (-1192) +/* complex XML schema type 'prodml23:TotalThickness': */ +class SOAP_CMAC prodml23__TotalThickness : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "h" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -46989,31 +47207,31 @@ class SOAP_CMAC prodml22__TotalThickness : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TotalThickness, default initialized and not managed by a soap context - virtual prodml22__TotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TotalThickness); } + /// Return a new object of type prodml23__TotalThickness, default initialized and not managed by a soap context + virtual prodml23__TotalThickness *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TotalThickness); } public: /// Constructor with default initializations - prodml22__TotalThickness() : Abbreviation("h"), Length() { } + prodml23__TotalThickness() : Abbreviation("h"), Length() { } /// Destructor - virtual ~prodml22__TotalThickness() { } - /// Friend allocator used by soap_new_prodml22__TotalThickness(struct soap*, int) - friend SOAP_FMAC1 prodml22__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml22__TotalThickness(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TotalThickness() { } + /// Friend allocator used by soap_new_prodml23__TotalThickness(struct soap*, int) + friend SOAP_FMAC1 prodml23__TotalThickness * SOAP_FMAC2 soap_instantiate_prodml23__TotalThickness(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2533 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront (-1193) -/* complex XML schema type 'prodml22:TransmissibilityReductionFactorOfLinearFront': */ -class SOAP_CMAC prodml22__TransmissibilityReductionFactorOfLinearFront : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront (-1193) +/* complex XML schema type 'prodml23:TransmissibilityReductionFactorOfLinearFront': */ +class SOAP_CMAC prodml23__TransmissibilityReductionFactorOfLinearFront : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:abbreviation' of XML schema type 'xsd:string' + /// Required element 'prodml23:abbreviation' of XML schema type 'xsd:string' std::string abbreviation; ///< initialized with fixed value = "Leakage" - /// Required element 'prodml22:value' of XML schema type 'xsd:string' + /// Required element 'prodml23:value' of XML schema type 'xsd:string' std::string value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47026,31 +47244,31 @@ class SOAP_CMAC prodml22__TransmissibilityReductionFactorOfLinearFront : public virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TransmissibilityReductionFactorOfLinearFront, default initialized and not managed by a soap context - virtual prodml22__TransmissibilityReductionFactorOfLinearFront *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TransmissibilityReductionFactorOfLinearFront); } + /// Return a new object of type prodml23__TransmissibilityReductionFactorOfLinearFront, default initialized and not managed by a soap context + virtual prodml23__TransmissibilityReductionFactorOfLinearFront *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TransmissibilityReductionFactorOfLinearFront); } public: /// Constructor with default initializations - prodml22__TransmissibilityReductionFactorOfLinearFront() : abbreviation("Leakage"), value() { } + prodml23__TransmissibilityReductionFactorOfLinearFront() : abbreviation("Leakage"), value() { } /// Destructor - virtual ~prodml22__TransmissibilityReductionFactorOfLinearFront() { } - /// Friend allocator used by soap_new_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, int) - friend SOAP_FMAC1 prodml22__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml22__TransmissibilityReductionFactorOfLinearFront(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TransmissibilityReductionFactorOfLinearFront() { } + /// Friend allocator used by soap_new_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, int) + friend SOAP_FMAC1 prodml23__TransmissibilityReductionFactorOfLinearFront * SOAP_FMAC2 soap_instantiate_prodml23__TransmissibilityReductionFactorOfLinearFront(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2535 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter (-1194) -/* complex XML schema type 'prodml22:TubingInteralDiameter': */ -class SOAP_CMAC prodml22__TubingInteralDiameter : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter (-1194) +/* complex XML schema type 'prodml23:TubingInteralDiameter': */ +class SOAP_CMAC prodml23__TubingInteralDiameter : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "ID" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47063,31 +47281,31 @@ class SOAP_CMAC prodml22__TubingInteralDiameter : public prodml22__AbstractParam virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TubingInteralDiameter, default initialized and not managed by a soap context - virtual prodml22__TubingInteralDiameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TubingInteralDiameter); } + /// Return a new object of type prodml23__TubingInteralDiameter, default initialized and not managed by a soap context + virtual prodml23__TubingInteralDiameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TubingInteralDiameter); } public: /// Constructor with default initializations - prodml22__TubingInteralDiameter() : Abbreviation("ID"), Length() { } + prodml23__TubingInteralDiameter() : Abbreviation("ID"), Length() { } /// Destructor - virtual ~prodml22__TubingInteralDiameter() { } - /// Friend allocator used by soap_new_prodml22__TubingInteralDiameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml22__TubingInteralDiameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TubingInteralDiameter() { } + /// Friend allocator used by soap_new_prodml23__TubingInteralDiameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__TubingInteralDiameter * SOAP_FMAC2 soap_instantiate_prodml23__TubingInteralDiameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2537 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr (-1195) -/* complex XML schema type 'prodml22:VerticalAnisotropyKvToKr': */ -class SOAP_CMAC prodml22__VerticalAnisotropyKvToKr : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr (-1195) +/* complex XML schema type 'prodml23:VerticalAnisotropyKvToKr': */ +class SOAP_CMAC prodml23__VerticalAnisotropyKvToKr : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "kvTokr" - /// Required element 'prodml22:Value' of XML schema type 'eml23:DimensionlessMeasure' + /// Required element 'prodml23:Value' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Value; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47100,31 +47318,31 @@ class SOAP_CMAC prodml22__VerticalAnisotropyKvToKr : public prodml22__AbstractPa virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__VerticalAnisotropyKvToKr, default initialized and not managed by a soap context - virtual prodml22__VerticalAnisotropyKvToKr *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__VerticalAnisotropyKvToKr); } + /// Return a new object of type prodml23__VerticalAnisotropyKvToKr, default initialized and not managed by a soap context + virtual prodml23__VerticalAnisotropyKvToKr *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__VerticalAnisotropyKvToKr); } public: /// Constructor with default initializations - prodml22__VerticalAnisotropyKvToKr() : Abbreviation("kvTokr"), Value() { } + prodml23__VerticalAnisotropyKvToKr() : Abbreviation("kvTokr"), Value() { } /// Destructor - virtual ~prodml22__VerticalAnisotropyKvToKr() { } - /// Friend allocator used by soap_new_prodml22__VerticalAnisotropyKvToKr(struct soap*, int) - friend SOAP_FMAC1 prodml22__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prodml22__VerticalAnisotropyKvToKr(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__VerticalAnisotropyKvToKr() { } + /// Friend allocator used by soap_new_prodml23__VerticalAnisotropyKvToKr(struct soap*, int) + friend SOAP_FMAC1 prodml23__VerticalAnisotropyKvToKr * SOAP_FMAC2 soap_instantiate_prodml23__VerticalAnisotropyKvToKr(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2539 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle (-1196) -/* complex XML schema type 'prodml22:WellboreDeviationAngle': */ -class SOAP_CMAC prodml22__WellboreDeviationAngle : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle (-1196) +/* complex XML schema type 'prodml23:WellboreDeviationAngle': */ +class SOAP_CMAC prodml23__WellboreDeviationAngle : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Deviation" - /// Required element 'prodml22:PlaneAngle' of XML schema type 'eml23:PlaneAngleMeasure' + /// Required element 'prodml23:PlaneAngle' of XML schema type 'eml23:PlaneAngleMeasure' eml23__PlaneAngleMeasure *PlaneAngle; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47137,31 +47355,31 @@ class SOAP_CMAC prodml22__WellboreDeviationAngle : public prodml22__AbstractPara virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellboreDeviationAngle, default initialized and not managed by a soap context - virtual prodml22__WellboreDeviationAngle *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellboreDeviationAngle); } + /// Return a new object of type prodml23__WellboreDeviationAngle, default initialized and not managed by a soap context + virtual prodml23__WellboreDeviationAngle *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellboreDeviationAngle); } public: /// Constructor with default initializations - prodml22__WellboreDeviationAngle() : Abbreviation("Deviation"), PlaneAngle() { } + prodml23__WellboreDeviationAngle() : Abbreviation("Deviation"), PlaneAngle() { } /// Destructor - virtual ~prodml22__WellboreDeviationAngle() { } - /// Friend allocator used by soap_new_prodml22__WellboreDeviationAngle(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml22__WellboreDeviationAngle(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellboreDeviationAngle() { } + /// Friend allocator used by soap_new_prodml23__WellboreDeviationAngle(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellboreDeviationAngle * SOAP_FMAC2 soap_instantiate_prodml23__WellboreDeviationAngle(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2541 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility (-1197) -/* complex XML schema type 'prodml22:WellboreFluidCompressibility': */ -class SOAP_CMAC prodml22__WellboreFluidCompressibility : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility (-1197) +/* complex XML schema type 'prodml23:WellboreFluidCompressibility': */ +class SOAP_CMAC prodml23__WellboreFluidCompressibility : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Cw" - /// Required element 'prodml22:Compressibility' of XML schema type 'eml23:ReciprocalPressureMeasureExt' + /// Required element 'prodml23:Compressibility' of XML schema type 'eml23:ReciprocalPressureMeasureExt' eml23__ReciprocalPressureMeasureExt *Compressibility; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47174,31 +47392,31 @@ class SOAP_CMAC prodml22__WellboreFluidCompressibility : public prodml22__Abstra virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellboreFluidCompressibility, default initialized and not managed by a soap context - virtual prodml22__WellboreFluidCompressibility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellboreFluidCompressibility); } + /// Return a new object of type prodml23__WellboreFluidCompressibility, default initialized and not managed by a soap context + virtual prodml23__WellboreFluidCompressibility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellboreFluidCompressibility); } public: /// Constructor with default initializations - prodml22__WellboreFluidCompressibility() : Abbreviation("Cw"), Compressibility() { } + prodml23__WellboreFluidCompressibility() : Abbreviation("Cw"), Compressibility() { } /// Destructor - virtual ~prodml22__WellboreFluidCompressibility() { } - /// Friend allocator used by soap_new_prodml22__WellboreFluidCompressibility(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__WellboreFluidCompressibility(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellboreFluidCompressibility() { } + /// Friend allocator used by soap_new_prodml23__WellboreFluidCompressibility(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellboreFluidCompressibility * SOAP_FMAC2 soap_instantiate_prodml23__WellboreFluidCompressibility(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2543 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius (-1198) -/* complex XML schema type 'prodml22:WellboreRadius': */ -class SOAP_CMAC prodml22__WellboreRadius : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius (-1198) +/* complex XML schema type 'prodml23:WellboreRadius': */ +class SOAP_CMAC prodml23__WellboreRadius : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Rw" - /// Required element 'prodml22:Length' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:Length' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *Length; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47211,31 +47429,31 @@ class SOAP_CMAC prodml22__WellboreRadius : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellboreRadius, default initialized and not managed by a soap context - virtual prodml22__WellboreRadius *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellboreRadius); } + /// Return a new object of type prodml23__WellboreRadius, default initialized and not managed by a soap context + virtual prodml23__WellboreRadius *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellboreRadius); } public: /// Constructor with default initializations - prodml22__WellboreRadius() : Abbreviation("Rw"), Length() { } + prodml23__WellboreRadius() : Abbreviation("Rw"), Length() { } /// Destructor - virtual ~prodml22__WellboreRadius() { } - /// Friend allocator used by soap_new_prodml22__WellboreRadius(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml22__WellboreRadius(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellboreRadius() { } + /// Friend allocator used by soap_new_prodml23__WellboreRadius(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellboreRadius * SOAP_FMAC2 soap_instantiate_prodml23__WellboreRadius(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2545 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient (-1199) -/* complex XML schema type 'prodml22:WellboreStorageCoefficient': */ -class SOAP_CMAC prodml22__WellboreStorageCoefficient : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient (-1199) +/* complex XML schema type 'prodml23:WellboreStorageCoefficient': */ +class SOAP_CMAC prodml23__WellboreStorageCoefficient : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Cs" - /// Required element 'prodml22:VolumePerPressure' of XML schema type 'eml23:VolumePerPressureMeasureExt' + /// Required element 'prodml23:VolumePerPressure' of XML schema type 'eml23:VolumePerPressureMeasureExt' eml23__VolumePerPressureMeasureExt *VolumePerPressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47248,31 +47466,31 @@ class SOAP_CMAC prodml22__WellboreStorageCoefficient : public prodml22__Abstract virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellboreStorageCoefficient, default initialized and not managed by a soap context - virtual prodml22__WellboreStorageCoefficient *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellboreStorageCoefficient); } + /// Return a new object of type prodml23__WellboreStorageCoefficient, default initialized and not managed by a soap context + virtual prodml23__WellboreStorageCoefficient *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellboreStorageCoefficient); } public: /// Constructor with default initializations - prodml22__WellboreStorageCoefficient() : Abbreviation("Cs"), VolumePerPressure() { } + prodml23__WellboreStorageCoefficient() : Abbreviation("Cs"), VolumePerPressure() { } /// Destructor - virtual ~prodml22__WellboreStorageCoefficient() { } - /// Friend allocator used by soap_new_prodml22__WellboreStorageCoefficient(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_prodml22__WellboreStorageCoefficient(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellboreStorageCoefficient() { } + /// Friend allocator used by soap_new_prodml23__WellboreStorageCoefficient(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellboreStorageCoefficient * SOAP_FMAC2 soap_instantiate_prodml23__WellboreStorageCoefficient(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2547 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume (-1200) -/* complex XML schema type 'prodml22:WellboreVolume': */ -class SOAP_CMAC prodml22__WellboreVolume : public prodml22__AbstractParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume (-1200) +/* complex XML schema type 'prodml23:WellboreVolume': */ +class SOAP_CMAC prodml23__WellboreVolume : public prodml23__AbstractParameter { public: - /// Required element 'prodml22:Abbreviation' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Abbreviation' of XML schema type 'eml23:String64' std::string Abbreviation; ///< initialized with fixed value = "Vw" - /// Required element 'prodml22:Volume' of XML schema type 'eml23:VolumeMeasure' + /// Required element 'prodml23:Volume' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *Volume; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47285,49 +47503,50 @@ class SOAP_CMAC prodml22__WellboreVolume : public prodml22__AbstractParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellboreVolume, default initialized and not managed by a soap context - virtual prodml22__WellboreVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellboreVolume); } + /// Return a new object of type prodml23__WellboreVolume, default initialized and not managed by a soap context + virtual prodml23__WellboreVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellboreVolume); } public: /// Constructor with default initializations - prodml22__WellboreVolume() : Abbreviation("Vw"), Volume() { } + prodml23__WellboreVolume() : Abbreviation("Vw"), Volume() { } /// Destructor - virtual ~prodml22__WellboreVolume() { } - /// Friend allocator used by soap_new_prodml22__WellboreVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml22__WellboreVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellboreVolume() { } + /// Friend allocator used by soap_new_prodml23__WellboreVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellboreVolume * SOAP_FMAC2 soap_instantiate_prodml23__WellboreVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2549 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample (-1201) -/* complex XML schema type 'prodml22:FluidSample': */ -class SOAP_CMAC prodml22__FluidSample : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample (-1201) +/* Type prodml23__FluidSample is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FluidSample': */ +class SOAP_CMAC prodml23__FluidSample : public eml23__AbstractObject { public: - /// Optional element 'prodml22:SampleKind' of XML schema type 'prodml22:FluidSampleKindExt' + /// Optional element 'prodml23:SampleKind' of XML schema type 'prodml23:FluidSampleKindExt' std::string *SampleKind; - /// Optional element 'prodml22:RockFluidUnitInterpretation' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:RockFluidUnitInterpretation' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *RockFluidUnitInterpretation; - /// Optional element 'prodml22:Representative' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:Representative' of XML schema type 'xsd:boolean' bool *Representative; - /// Optional element 'prodml22:SampleDisposition' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SampleDisposition' of XML schema type 'eml23:String64' std::string *SampleDisposition; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; - /// Optional element 'prodml22:FluidSampleChainOfCustodyEvent' of XML schema type 'prodml22:FluidSampleChainOfCustodyEvent' - std::vector FluidSampleChainOfCustodyEvent; - /// Optional element 'prodml22:OriginalSampleContainer' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSampleChainOfCustodyEvent' of XML schema type 'prodml23:FluidSampleChainOfCustodyEvent' + std::vector FluidSampleChainOfCustodyEvent; + /// Optional element 'prodml23:OriginalSampleContainer' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *OriginalSampleContainer; - /// Optional element 'prodml22:FluidSystem' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSystem' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSystem; - /// Optional element 'prodml22:FluidSampleAcquisitionJobSource' of XML schema type 'prodml22:FluidSampleAcquisitionJobSource' - prodml22__FluidSampleAcquisitionJobSource *FluidSampleAcquisitionJobSource; - /// Optional element 'prodml22:SampleRecombinationSpecification' of XML schema type 'prodml22:SampleRecombinationSpecification' - prodml22__SampleRecombinationSpecification *SampleRecombinationSpecification; - /// Optional element 'prodml22:AssociatedFluidSample' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSampleAcquisitionJobSource' of XML schema type 'prodml23:FluidSampleAcquisitionJobSource' + prodml23__FluidSampleAcquisitionJobSource *FluidSampleAcquisitionJobSource; + /// Optional element 'prodml23:SampleRecombinationSpecification' of XML schema type 'prodml23:SampleRecombinationSpecification' + prodml23__SampleRecombinationSpecification *SampleRecombinationSpecification; + /// Optional element 'prodml23:AssociatedFluidSample' of XML schema type 'eml23:DataObjectReference' std::vector AssociatedFluidSample; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47340,53 +47559,54 @@ class SOAP_CMAC prodml22__FluidSample : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSample, default initialized and not managed by a soap context - virtual prodml22__FluidSample *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSample); } + /// Return a new object of type prodml23__FluidSample, default initialized and not managed by a soap context + virtual prodml23__FluidSample *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSample); } public: /// Constructor with default initializations - prodml22__FluidSample() : SampleKind(), RockFluidUnitInterpretation(), Representative(), SampleDisposition(), Remark(), FluidSampleChainOfCustodyEvent(), OriginalSampleContainer(), FluidSystem(), FluidSampleAcquisitionJobSource(), SampleRecombinationSpecification(), AssociatedFluidSample() { } + prodml23__FluidSample() : SampleKind(), RockFluidUnitInterpretation(), Representative(), SampleDisposition(), Remark(), FluidSampleChainOfCustodyEvent(), OriginalSampleContainer(), FluidSystem(), FluidSampleAcquisitionJobSource(), SampleRecombinationSpecification(), AssociatedFluidSample() { } /// Destructor - virtual ~prodml22__FluidSample() { } - /// Friend allocator used by soap_new_prodml22__FluidSample(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSample * SOAP_FMAC2 soap_instantiate_prodml22__FluidSample(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSample() { } + /// Friend allocator used by soap_new_prodml23__FluidSample(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSample * SOAP_FMAC2 soap_instantiate_prodml23__FluidSample(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2559 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer (-1206) -/* complex XML schema type 'prodml22:FluidSampleContainer': */ -class SOAP_CMAC prodml22__FluidSampleContainer : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer (-1206) +/* Type prodml23__FluidSampleContainer is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FluidSampleContainer': */ +class SOAP_CMAC prodml23__FluidSampleContainer : public eml23__AbstractObject { public: - /// Optional element 'prodml22:Make' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Make' of XML schema type 'eml23:String64' std::string *Make; - /// Optional element 'prodml22:Model' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Model' of XML schema type 'eml23:String64' std::string *Model; - /// Optional element 'prodml22:SerialNumber' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SerialNumber' of XML schema type 'eml23:String64' std::string *SerialNumber; - /// Optional element 'prodml22:BottleID' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:BottleID' of XML schema type 'eml23:String64' std::string *BottleID; - /// Optional element 'prodml22:Capacity' of XML schema type 'eml23:VolumeMeasure' + /// Optional element 'prodml23:Capacity' of XML schema type 'eml23:VolumeMeasure' eml23__VolumeMeasure *Capacity; - /// Optional element 'prodml22:Owner' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Owner' of XML schema type 'eml23:String64' std::string *Owner; - /// Optional element 'prodml22:Kind' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Kind' of XML schema type 'eml23:String64' std::string *Kind; - /// Optional element 'prodml22:Metallurgy' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:Metallurgy' of XML schema type 'eml23:String64' std::string *Metallurgy; - /// Optional element 'prodml22:PressureRating' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:PressureRating' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *PressureRating; - /// Optional element 'prodml22:TemperatureRating' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:TemperatureRating' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *TemperatureRating; - /// Optional element 'prodml22:LastInspectionDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:LastInspectionDate' of XML schema type 'xsd:date' std::string *LastInspectionDate; - /// Optional element 'prodml22:TransportCertificateReference' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:TransportCertificateReference' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *TransportCertificateReference; - /// Optional element 'prodml22:Remark' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Remark' of XML schema type 'eml23:String2000' std::string *Remark; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47399,43 +47619,43 @@ class SOAP_CMAC prodml22__FluidSampleContainer : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSampleContainer, default initialized and not managed by a soap context - virtual prodml22__FluidSampleContainer *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSampleContainer); } + /// Return a new object of type prodml23__FluidSampleContainer, default initialized and not managed by a soap context + virtual prodml23__FluidSampleContainer *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSampleContainer); } public: /// Constructor with default initializations - prodml22__FluidSampleContainer() : Make(), Model(), SerialNumber(), BottleID(), Capacity(), Owner(), Kind(), Metallurgy(), PressureRating(), TemperatureRating(), LastInspectionDate(), TransportCertificateReference(), Remark() { } + prodml23__FluidSampleContainer() : Make(), Model(), SerialNumber(), BottleID(), Capacity(), Owner(), Kind(), Metallurgy(), PressureRating(), TemperatureRating(), LastInspectionDate(), TransportCertificateReference(), Remark() { } /// Destructor - virtual ~prodml22__FluidSampleContainer() { } - /// Friend allocator used by soap_new_prodml22__FluidSampleContainer(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleContainer(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSampleContainer() { } + /// Friend allocator used by soap_new_prodml23__FluidSampleContainer(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSampleContainer * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleContainer(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2561 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition (-1207) -/* complex XML schema type 'prodml22:DownholeSampleAcquisition': */ -class SOAP_CMAC prodml22__DownholeSampleAcquisition : public prodml22__FluidSampleAcquisition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition (-1207) +/* complex XML schema type 'prodml23:DownholeSampleAcquisition': */ +class SOAP_CMAC prodml23__DownholeSampleAcquisition : public prodml23__FluidSampleAcquisition { public: - /// Required element 'prodml22:Wellbore' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:Wellbore' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Wellbore; - /// Optional element 'prodml22:WellboreCompletion' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:WellboreCompletion' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *WellboreCompletion; - /// Required element 'prodml22:SamplingRun' of XML schema type 'eml23:NonNegativeLong' + /// Required element 'prodml23:SamplingRun' of XML schema type 'eml23:NonNegativeLong' LONG64 SamplingRun; - /// Required element 'prodml22:TopMD' of XML schema type 'eml23:LengthMeasure' + /// Required element 'prodml23:TopMD' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *TopMD; - /// Optional element 'prodml22:BaseMD' of XML schema type 'eml23:LengthMeasure' + /// Optional element 'prodml23:BaseMD' of XML schema type 'eml23:LengthMeasure' eml23__LengthMeasure *BaseMD; - /// Optional element 'prodml22:ToolSerialNumber' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ToolSerialNumber' of XML schema type 'eml23:String64' std::string *ToolSerialNumber; - /// Optional element 'prodml22:ToolKind' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ToolKind' of XML schema type 'eml23:String64' std::string *ToolKind; - /// Optional element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowTestActivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47448,35 +47668,35 @@ class SOAP_CMAC prodml22__DownholeSampleAcquisition : public prodml22__FluidSamp virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DownholeSampleAcquisition, default initialized and not managed by a soap context - virtual prodml22__DownholeSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DownholeSampleAcquisition); } + /// Return a new object of type prodml23__DownholeSampleAcquisition, default initialized and not managed by a soap context + virtual prodml23__DownholeSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DownholeSampleAcquisition); } public: /// Constructor with default initializations - prodml22__DownholeSampleAcquisition() : Wellbore(), WellboreCompletion(), SamplingRun(), TopMD(), BaseMD(), ToolSerialNumber(), ToolKind(), FlowTestActivity() { } + prodml23__DownholeSampleAcquisition() : Wellbore(), WellboreCompletion(), SamplingRun(), TopMD(), BaseMD(), ToolSerialNumber(), ToolKind(), FlowTestActivity() { } /// Destructor - virtual ~prodml22__DownholeSampleAcquisition() { } - /// Friend allocator used by soap_new_prodml22__DownholeSampleAcquisition(struct soap*, int) - friend SOAP_FMAC1 prodml22__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__DownholeSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DownholeSampleAcquisition() { } + /// Friend allocator used by soap_new_prodml23__DownholeSampleAcquisition(struct soap*, int) + friend SOAP_FMAC1 prodml23__DownholeSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__DownholeSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2563 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition (-1208) -/* complex XML schema type 'prodml22:FacilitySampleAcquisition': */ -class SOAP_CMAC prodml22__FacilitySampleAcquisition : public prodml22__FluidSampleAcquisition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition (-1208) +/* complex XML schema type 'prodml23:FacilitySampleAcquisition': */ +class SOAP_CMAC prodml23__FacilitySampleAcquisition : public prodml23__FluidSampleAcquisition { public: - /// Optional element 'prodml22:SamplingPoint' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SamplingPoint' of XML schema type 'eml23:String64' std::string *SamplingPoint; - /// Required element 'prodml22:FacilityPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Required element 'prodml23:FacilityPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *FacilityPressure; - /// Required element 'prodml22:FacilityTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:FacilityTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *FacilityTemperature; - /// Optional element 'prodml22:Facility' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Facility' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Facility; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47489,41 +47709,42 @@ class SOAP_CMAC prodml22__FacilitySampleAcquisition : public prodml22__FluidSamp virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FacilitySampleAcquisition, default initialized and not managed by a soap context - virtual prodml22__FacilitySampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FacilitySampleAcquisition); } + /// Return a new object of type prodml23__FacilitySampleAcquisition, default initialized and not managed by a soap context + virtual prodml23__FacilitySampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FacilitySampleAcquisition); } public: /// Constructor with default initializations - prodml22__FacilitySampleAcquisition() : SamplingPoint(), FacilityPressure(), FacilityTemperature(), Facility() { } + prodml23__FacilitySampleAcquisition() : SamplingPoint(), FacilityPressure(), FacilityTemperature(), Facility() { } /// Destructor - virtual ~prodml22__FacilitySampleAcquisition() { } - /// Friend allocator used by soap_new_prodml22__FacilitySampleAcquisition(struct soap*, int) - friend SOAP_FMAC1 prodml22__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FacilitySampleAcquisition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FacilitySampleAcquisition() { } + /// Friend allocator used by soap_new_prodml23__FacilitySampleAcquisition(struct soap*, int) + friend SOAP_FMAC1 prodml23__FacilitySampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FacilitySampleAcquisition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2567 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob (-1210) -/* complex XML schema type 'prodml22:FluidSampleAcquisitionJob': */ -class SOAP_CMAC prodml22__FluidSampleAcquisitionJob : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob (-1210) +/* Type prodml23__FluidSampleAcquisitionJob is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FluidSampleAcquisitionJob': */ +class SOAP_CMAC prodml23__FluidSampleAcquisitionJob : public eml23__AbstractObject { public: - /// Optional element 'prodml22:Client' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Client' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Client; - /// Optional element 'prodml22:StartTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:StartTime' of XML schema type 'eml23:TimeStamp' struct tm *StartTime; - /// Optional element 'prodml22:EndTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EndTime' of XML schema type 'eml23:TimeStamp' struct tm *EndTime; - /// Optional element 'prodml22:FlowTestJob' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestJob' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowTestJob; - /// Optional element 'prodml22:FluidSampleAcquisition' of XML schema type 'prodml22:FluidSampleAcquisition' - std::vector FluidSampleAcquisition; - /// Required element 'prodml22:FluidSystem' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSampleAcquisition' of XML schema type 'prodml23:FluidSampleAcquisition' + std::vector FluidSampleAcquisition; + /// Required element 'prodml23:FluidSystem' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSystem; - /// Optional element 'prodml22:ServiceCompany' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:ServiceCompany' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ServiceCompany; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47536,49 +47757,49 @@ class SOAP_CMAC prodml22__FluidSampleAcquisitionJob : public eml23__AbstractObje virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidSampleAcquisitionJob, default initialized and not managed by a soap context - virtual prodml22__FluidSampleAcquisitionJob *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidSampleAcquisitionJob); } + /// Return a new object of type prodml23__FluidSampleAcquisitionJob, default initialized and not managed by a soap context + virtual prodml23__FluidSampleAcquisitionJob *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidSampleAcquisitionJob); } public: /// Constructor with default initializations - prodml22__FluidSampleAcquisitionJob() : Client(), StartTime(), EndTime(), FlowTestJob(), FluidSampleAcquisition(), FluidSystem(), ServiceCompany() { } + prodml23__FluidSampleAcquisitionJob() : Client(), StartTime(), EndTime(), FlowTestJob(), FluidSampleAcquisition(), FluidSystem(), ServiceCompany() { } /// Destructor - virtual ~prodml22__FluidSampleAcquisitionJob() { } - /// Friend allocator used by soap_new_prodml22__FluidSampleAcquisitionJob(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_prodml22__FluidSampleAcquisitionJob(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidSampleAcquisitionJob() { } + /// Friend allocator used by soap_new_prodml23__FluidSampleAcquisitionJob(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidSampleAcquisitionJob * SOAP_FMAC2 soap_instantiate_prodml23__FluidSampleAcquisitionJob(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2569 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition (-1211) -/* complex XML schema type 'prodml22:FormationTesterSampleAcquisition': */ -class SOAP_CMAC prodml22__FormationTesterSampleAcquisition : public prodml22__FluidSampleAcquisition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition (-1211) +/* complex XML schema type 'prodml23:FormationTesterSampleAcquisition': */ +class SOAP_CMAC prodml23__FormationTesterSampleAcquisition : public prodml23__FluidSampleAcquisition { public: - /// Optional element 'prodml22:Wellbore' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Wellbore' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Wellbore; - /// Optional element 'prodml22:MdTop' of XML schema type 'eml23:MeasuredDepth' + /// Optional element 'prodml23:MdTop' of XML schema type 'eml23:MeasuredDepth' eml23__MeasuredDepth *MdTop; - /// Optional element 'prodml22:MdBase' of XML schema type 'eml23:MeasuredDepth' + /// Optional element 'prodml23:MdBase' of XML schema type 'eml23:MeasuredDepth' eml23__MeasuredDepth *MdBase; - /// Optional element 'prodml22:SampleContainerName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SampleContainerName' of XML schema type 'eml23:String64' std::string *SampleContainerName; - /// Optional element 'prodml22:SampleCarrierSlotName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SampleCarrierSlotName' of XML schema type 'eml23:String64' std::string *SampleCarrierSlotName; - /// Optional element 'prodml22:SampleContainerConfiguration' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SampleContainerConfiguration' of XML schema type 'eml23:String64' std::string *SampleContainerConfiguration; - /// Optional element 'prodml22:CushionPressure' of XML schema type 'eml23:PressureMeasureExt' + /// Optional element 'prodml23:CushionPressure' of XML schema type 'eml23:PressureMeasureExt' eml23__PressureMeasureExt *CushionPressure; - /// Optional element 'prodml22:GrossFluidKind' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:GrossFluidKind' of XML schema type 'eml23:String64' std::string *GrossFluidKind; - /// Optional element 'prodml22:ToolSerialNumber' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ToolSerialNumber' of XML schema type 'eml23:String64' std::string *ToolSerialNumber; - /// Optional element 'prodml22:ToolSectionName' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:ToolSectionName' of XML schema type 'eml23:String64' std::string *ToolSectionName; - /// Optional element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowTestActivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47591,51 +47812,51 @@ class SOAP_CMAC prodml22__FormationTesterSampleAcquisition : public prodml22__Fl virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FormationTesterSampleAcquisition, default initialized and not managed by a soap context - virtual prodml22__FormationTesterSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FormationTesterSampleAcquisition); } + /// Return a new object of type prodml23__FormationTesterSampleAcquisition, default initialized and not managed by a soap context + virtual prodml23__FormationTesterSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FormationTesterSampleAcquisition); } public: /// Constructor with default initializations - prodml22__FormationTesterSampleAcquisition() : Wellbore(), MdTop(), MdBase(), SampleContainerName(), SampleCarrierSlotName(), SampleContainerConfiguration(), CushionPressure(), GrossFluidKind(), ToolSerialNumber(), ToolSectionName(), FlowTestActivity() { } + prodml23__FormationTesterSampleAcquisition() : Wellbore(), MdTop(), MdBase(), SampleContainerName(), SampleCarrierSlotName(), SampleContainerConfiguration(), CushionPressure(), GrossFluidKind(), ToolSerialNumber(), ToolSectionName(), FlowTestActivity() { } /// Destructor - virtual ~prodml22__FormationTesterSampleAcquisition() { } - /// Friend allocator used by soap_new_prodml22__FormationTesterSampleAcquisition(struct soap*, int) - friend SOAP_FMAC1 prodml22__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__FormationTesterSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FormationTesterSampleAcquisition() { } + /// Friend allocator used by soap_new_prodml23__FormationTesterSampleAcquisition(struct soap*, int) + friend SOAP_FMAC1 prodml23__FormationTesterSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__FormationTesterSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2571 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition (-1212) -/* complex XML schema type 'prodml22:SeparatorSampleAcquisition': */ -class SOAP_CMAC prodml22__SeparatorSampleAcquisition : public prodml22__FluidSampleAcquisition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition (-1212) +/* complex XML schema type 'prodml23:SeparatorSampleAcquisition': */ +class SOAP_CMAC prodml23__SeparatorSampleAcquisition : public prodml23__FluidSampleAcquisition { public: - /// Required element 'prodml22:Separator' of XML schema type 'eml23:String64' + /// Required element 'prodml23:Separator' of XML schema type 'eml23:String64' std::string Separator; - /// Optional element 'prodml22:WellCompletion' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:WellCompletion' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *WellCompletion; - /// Required element 'prodml22:SeparatorPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Required element 'prodml23:SeparatorPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *SeparatorPressure; - /// Required element 'prodml22:SeparatorTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:SeparatorTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *SeparatorTemperature; - /// Optional element 'prodml22:SamplingPoint' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SamplingPoint' of XML schema type 'eml23:String64' std::string *SamplingPoint; - /// Optional element 'prodml22:CorrectedOilRate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Optional element 'prodml23:CorrectedOilRate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *CorrectedOilRate; - /// Optional element 'prodml22:CorrectedGasRate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Optional element 'prodml23:CorrectedGasRate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *CorrectedGasRate; - /// Optional element 'prodml22:CorrectedWaterRate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Optional element 'prodml23:CorrectedWaterRate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *CorrectedWaterRate; - /// Optional element 'prodml22:MeasuredOilRate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Optional element 'prodml23:MeasuredOilRate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *MeasuredOilRate; - /// Optional element 'prodml22:MeasuredGasRate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Optional element 'prodml23:MeasuredGasRate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *MeasuredGasRate; - /// Optional element 'prodml22:MeasuredWaterRate' of XML schema type 'eml23:VolumePerTimeMeasure' + /// Optional element 'prodml23:MeasuredWaterRate' of XML schema type 'eml23:VolumePerTimeMeasure' eml23__VolumePerTimeMeasure *MeasuredWaterRate; - /// Optional element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowTestActivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47648,39 +47869,39 @@ class SOAP_CMAC prodml22__SeparatorSampleAcquisition : public prodml22__FluidSam virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SeparatorSampleAcquisition, default initialized and not managed by a soap context - virtual prodml22__SeparatorSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SeparatorSampleAcquisition); } + /// Return a new object of type prodml23__SeparatorSampleAcquisition, default initialized and not managed by a soap context + virtual prodml23__SeparatorSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SeparatorSampleAcquisition); } public: /// Constructor with default initializations - prodml22__SeparatorSampleAcquisition() : Separator(), WellCompletion(), SeparatorPressure(), SeparatorTemperature(), SamplingPoint(), CorrectedOilRate(), CorrectedGasRate(), CorrectedWaterRate(), MeasuredOilRate(), MeasuredGasRate(), MeasuredWaterRate(), FlowTestActivity() { } + prodml23__SeparatorSampleAcquisition() : Separator(), WellCompletion(), SeparatorPressure(), SeparatorTemperature(), SamplingPoint(), CorrectedOilRate(), CorrectedGasRate(), CorrectedWaterRate(), MeasuredOilRate(), MeasuredGasRate(), MeasuredWaterRate(), FlowTestActivity() { } /// Destructor - virtual ~prodml22__SeparatorSampleAcquisition() { } - /// Friend allocator used by soap_new_prodml22__SeparatorSampleAcquisition(struct soap*, int) - friend SOAP_FMAC1 prodml22__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__SeparatorSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SeparatorSampleAcquisition() { } + /// Friend allocator used by soap_new_prodml23__SeparatorSampleAcquisition(struct soap*, int) + friend SOAP_FMAC1 prodml23__SeparatorSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__SeparatorSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2573 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition (-1213) -/* complex XML schema type 'prodml22:WellheadSampleAcquisition': */ -class SOAP_CMAC prodml22__WellheadSampleAcquisition : public prodml22__FluidSampleAcquisition { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition (-1213) +/* complex XML schema type 'prodml23:WellheadSampleAcquisition': */ +class SOAP_CMAC prodml23__WellheadSampleAcquisition : public prodml23__FluidSampleAcquisition { public: - /// Optional element 'prodml22:Well' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Well' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Well; - /// Optional element 'prodml22:WellCompletion' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:WellCompletion' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *WellCompletion; - /// Required element 'prodml22:WellheadPressure' of XML schema type 'eml23:AbstractPressureValue' + /// Required element 'prodml23:WellheadPressure' of XML schema type 'eml23:AbstractPressureValue' eml23__AbstractPressureValue *WellheadPressure; - /// Required element 'prodml22:WellheadTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Required element 'prodml23:WellheadTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *WellheadTemperature; - /// Optional element 'prodml22:SamplingPoint' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:SamplingPoint' of XML schema type 'eml23:String64' std::string *SamplingPoint; - /// Optional element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowTestActivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47693,45 +47914,46 @@ class SOAP_CMAC prodml22__WellheadSampleAcquisition : public prodml22__FluidSamp virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WellheadSampleAcquisition, default initialized and not managed by a soap context - virtual prodml22__WellheadSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WellheadSampleAcquisition); } + /// Return a new object of type prodml23__WellheadSampleAcquisition, default initialized and not managed by a soap context + virtual prodml23__WellheadSampleAcquisition *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WellheadSampleAcquisition); } public: /// Constructor with default initializations - prodml22__WellheadSampleAcquisition() : Well(), WellCompletion(), WellheadPressure(), WellheadTemperature(), SamplingPoint(), FlowTestActivity() { } + prodml23__WellheadSampleAcquisition() : Well(), WellCompletion(), WellheadPressure(), WellheadTemperature(), SamplingPoint(), FlowTestActivity() { } /// Destructor - virtual ~prodml22__WellheadSampleAcquisition() { } - /// Friend allocator used by soap_new_prodml22__WellheadSampleAcquisition(struct soap*, int) - friend SOAP_FMAC1 prodml22__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml22__WellheadSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WellheadSampleAcquisition() { } + /// Friend allocator used by soap_new_prodml23__WellheadSampleAcquisition(struct soap*, int) + friend SOAP_FMAC1 prodml23__WellheadSampleAcquisition * SOAP_FMAC2 soap_instantiate_prodml23__WellheadSampleAcquisition(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2575 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob (-1214) -/* complex XML schema type 'prodml22:FlowTestJob': */ -class SOAP_CMAC prodml22__FlowTestJob : public eml23__AbstractObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob (-1214) +/* Type prodml23__FlowTestJob is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FlowTestJob': */ +class SOAP_CMAC prodml23__FlowTestJob : public eml23__AbstractObject { public: - /// Optional element 'prodml22:Client' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Client' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Client; - /// Optional element 'prodml22:ServiceCompany' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:ServiceCompany' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ServiceCompany; - /// Optional element 'prodml22:StartTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:StartTime' of XML schema type 'eml23:TimeStamp' struct tm *StartTime; - /// Optional element 'prodml22:FluidSampleAcquisitionJob' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSampleAcquisitionJob' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSampleAcquisitionJob; - /// Optional element 'prodml22:PtaDataPreProcess' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:PtaDataPreProcess' of XML schema type 'eml23:DataObjectReference' std::vector PtaDataPreProcess; - /// Optional element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' std::vector FlowTestActivity; - /// Optional element 'prodml22:PtaDeconvolution' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:PtaDeconvolution' of XML schema type 'eml23:DataObjectReference' std::vector PtaDeconvolution; - /// Optional element 'prodml22:PressureTransientAnalysis' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:PressureTransientAnalysis' of XML schema type 'eml23:DataObjectReference' std::vector PressureTransientAnalysis; - /// Optional element 'prodml22:EndTime' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EndTime' of XML schema type 'eml23:TimeStamp' struct tm *EndTime; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47744,33 +47966,33 @@ class SOAP_CMAC prodml22__FlowTestJob : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FlowTestJob, default initialized and not managed by a soap context - virtual prodml22__FlowTestJob *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FlowTestJob); } + /// Return a new object of type prodml23__FlowTestJob, default initialized and not managed by a soap context + virtual prodml23__FlowTestJob *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FlowTestJob); } public: /// Constructor with default initializations - prodml22__FlowTestJob() : Client(), ServiceCompany(), StartTime(), FluidSampleAcquisitionJob(), PtaDataPreProcess(), FlowTestActivity(), PtaDeconvolution(), PressureTransientAnalysis(), EndTime() { } + prodml23__FlowTestJob() : Client(), ServiceCompany(), StartTime(), FluidSampleAcquisitionJob(), PtaDataPreProcess(), FlowTestActivity(), PtaDeconvolution(), PressureTransientAnalysis(), EndTime() { } /// Destructor - virtual ~prodml22__FlowTestJob() { } - /// Friend allocator used by soap_new_prodml22__FlowTestJob(struct soap*, int) - friend SOAP_FMAC1 prodml22__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml22__FlowTestJob(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FlowTestJob() { } + /// Friend allocator used by soap_new_prodml23__FlowTestJob(struct soap*, int) + friend SOAP_FMAC1 prodml23__FlowTestJob * SOAP_FMAC2 soap_instantiate_prodml23__FlowTestJob(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2585 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData (-1219) -/* complex XML schema type 'prodml22:CurveData': */ -class SOAP_CMAC prodml22__CurveData : public prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData (-1219) +/* complex XML schema type 'prodml23:CurveData': */ +class SOAP_CMAC prodml23__CurveData : public prodml23__AbstractMeasureData { public: - /// Required element 'prodml22:Index' of XML schema type 'eml23:PositiveLong' + /// Required element 'prodml23:Index' of XML schema type 'eml23:PositiveLong' std::vector Index; - /// Required element 'prodml22:Value' of XML schema type 'xsd:double' + /// Required element 'prodml23:Value' of XML schema type 'xsd:double' std::vector Value; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47783,34 +48005,34 @@ class SOAP_CMAC prodml22__CurveData : public prodml22__AbstractMeasureData { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CurveData, default initialized and not managed by a soap context - virtual prodml22__CurveData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CurveData); } + /// Return a new object of type prodml23__CurveData, default initialized and not managed by a soap context + virtual prodml23__CurveData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CurveData); } public: /// Constructor with default initializations - prodml22__CurveData() : Index(), Value(), uid() { } + prodml23__CurveData() : Index(), Value(), uid() { } /// Destructor - virtual ~prodml22__CurveData() { } - /// Friend allocator used by soap_new_prodml22__CurveData(struct soap*, int) - friend SOAP_FMAC1 prodml22__CurveData * SOAP_FMAC2 soap_instantiate_prodml22__CurveData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CurveData() { } + /// Friend allocator used by soap_new_prodml23__CurveData(struct soap*, int) + friend SOAP_FMAC1 prodml23__CurveData * SOAP_FMAC2 soap_instantiate_prodml23__CurveData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2589 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent (-1221) -/* Type prodml22__FacilityParent is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ -/* complex XML schema type 'prodml22:FacilityParent': */ -class SOAP_CMAC prodml22__FacilityParent : public prodml22__AbstractRelatedFacilityObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent (-1221) +/* Type prodml23__FacilityParent is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FacilityParent': */ +class SOAP_CMAC prodml23__FacilityParent : public prodml23__AbstractRelatedFacilityObject { public: - /// Required element 'prodml22:Name' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Name; - /// Optional element 'prodml22:FacilityParent1' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *FacilityParent1; - /// Optional element 'prodml22:FacilityParent2' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *FacilityParent2; + /// Required element 'prodml23:Name' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Name; + /// Optional element 'prodml23:FacilityParent1' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *FacilityParent1; + /// Optional element 'prodml23:FacilityParent2' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *FacilityParent2; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47823,33 +48045,33 @@ class SOAP_CMAC prodml22__FacilityParent : public prodml22__AbstractRelatedFacil virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FacilityParent, default initialized and not managed by a soap context - virtual prodml22__FacilityParent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FacilityParent); } + /// Return a new object of type prodml23__FacilityParent, default initialized and not managed by a soap context + virtual prodml23__FacilityParent *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FacilityParent); } public: /// Constructor with default initializations - prodml22__FacilityParent() : Name(), FacilityParent1(), FacilityParent2() { } + prodml23__FacilityParent() : Name(), FacilityParent1(), FacilityParent2() { } /// Destructor - virtual ~prodml22__FacilityParent() { } - /// Friend allocator used by soap_new_prodml22__FacilityParent(struct soap*, int) - friend SOAP_FMAC1 prodml22__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml22__FacilityParent(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FacilityParent() { } + /// Friend allocator used by soap_new_prodml23__FacilityParent(struct soap*, int) + friend SOAP_FMAC1 prodml23__FacilityParent * SOAP_FMAC2 soap_instantiate_prodml23__FacilityParent(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2591 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort (-1222) -/* complex XML schema type 'prodml22:FacilityUnitPort': */ -class SOAP_CMAC prodml22__FacilityUnitPort : public prodml22__AbstractRelatedFacilityObject { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort (-1222) +/* complex XML schema type 'prodml23:FacilityUnitPort': */ +class SOAP_CMAC prodml23__FacilityUnitPort : public prodml23__AbstractRelatedFacilityObject { public: - /// Required element 'prodml22:PortReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:PortReference' of XML schema type 'eml23:String64' std::string PortReference; - /// Required element 'prodml22:UnitReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:UnitReference' of XML schema type 'eml23:String64' std::string UnitReference; - /// Optional element 'prodml22:NetworkReference' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:NetworkReference' of XML schema type 'eml23:String64' std::string *NetworkReference; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47862,29 +48084,29 @@ class SOAP_CMAC prodml22__FacilityUnitPort : public prodml22__AbstractRelatedFac virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FacilityUnitPort, default initialized and not managed by a soap context - virtual prodml22__FacilityUnitPort *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FacilityUnitPort); } + /// Return a new object of type prodml23__FacilityUnitPort, default initialized and not managed by a soap context + virtual prodml23__FacilityUnitPort *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FacilityUnitPort); } public: /// Constructor with default initializations - prodml22__FacilityUnitPort() : PortReference(), UnitReference(), NetworkReference() { } + prodml23__FacilityUnitPort() : PortReference(), UnitReference(), NetworkReference() { } /// Destructor - virtual ~prodml22__FacilityUnitPort() { } - /// Friend allocator used by soap_new_prodml22__FacilityUnitPort(struct soap*, int) - friend SOAP_FMAC1 prodml22__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml22__FacilityUnitPort(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FacilityUnitPort() { } + /// Friend allocator used by soap_new_prodml23__FacilityUnitPort(struct soap*, int) + friend SOAP_FMAC1 prodml23__FacilityUnitPort * SOAP_FMAC2 soap_instantiate_prodml23__FacilityUnitPort(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2593 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData (-1223) -/* complex XML schema type 'prodml22:IntegerData': */ -class SOAP_CMAC prodml22__IntegerData : public prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData (-1223) +/* complex XML schema type 'prodml23:IntegerData': */ +class SOAP_CMAC prodml23__IntegerData : public prodml23__AbstractMeasureData { public: - /// Required element 'prodml22:IntegerValue' of XML schema type 'prodml22:IntegerQualifiedCount' - prodml22__IntegerQualifiedCount *IntegerValue; + /// Required element 'prodml23:IntegerValue' of XML schema type 'prodml23:IntegerQualifiedCount' + prodml23__IntegerQualifiedCount *IntegerValue; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47897,29 +48119,29 @@ class SOAP_CMAC prodml22__IntegerData : public prodml22__AbstractMeasureData { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__IntegerData, default initialized and not managed by a soap context - virtual prodml22__IntegerData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__IntegerData); } + /// Return a new object of type prodml23__IntegerData, default initialized and not managed by a soap context + virtual prodml23__IntegerData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__IntegerData); } public: /// Constructor with default initializations - prodml22__IntegerData() : IntegerValue() { } + prodml23__IntegerData() : IntegerValue() { } /// Destructor - virtual ~prodml22__IntegerData() { } - /// Friend allocator used by soap_new_prodml22__IntegerData(struct soap*, int) - friend SOAP_FMAC1 prodml22__IntegerData * SOAP_FMAC2 soap_instantiate_prodml22__IntegerData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__IntegerData() { } + /// Friend allocator used by soap_new_prodml23__IntegerData(struct soap*, int) + friend SOAP_FMAC1 prodml23__IntegerData * SOAP_FMAC2 soap_instantiate_prodml23__IntegerData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2597 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility (-1225) -/* complex XML schema type 'prodml22:Parentfacility': */ -class SOAP_CMAC prodml22__Parentfacility : public prodml22__AbstractRefProductFlow { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility (-1225) +/* complex XML schema type 'prodml23:Parentfacility': */ +class SOAP_CMAC prodml23__Parentfacility : public prodml23__AbstractRefProductFlow { public: - /// Required element 'prodml22:ParentfacilityReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:ParentfacilityReference' of XML schema type 'eml23:String64' std::string ParentfacilityReference; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -47932,67 +48154,68 @@ class SOAP_CMAC prodml22__Parentfacility : public prodml22__AbstractRefProductFl virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Parentfacility, default initialized and not managed by a soap context - virtual prodml22__Parentfacility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Parentfacility); } + /// Return a new object of type prodml23__Parentfacility, default initialized and not managed by a soap context + virtual prodml23__Parentfacility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Parentfacility); } public: /// Constructor with default initializations - prodml22__Parentfacility() : ParentfacilityReference() { } + prodml23__Parentfacility() : ParentfacilityReference() { } /// Destructor - virtual ~prodml22__Parentfacility() { } - /// Friend allocator used by soap_new_prodml22__Parentfacility(struct soap*, int) - friend SOAP_FMAC1 prodml22__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml22__Parentfacility(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Parentfacility() { } + /// Friend allocator used by soap_new_prodml23__Parentfacility(struct soap*, int) + friend SOAP_FMAC1 prodml23__Parentfacility * SOAP_FMAC2 soap_instantiate_prodml23__Parentfacility(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2599 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume (-1226) -/* complex XML schema type 'prodml22:ProductVolume': */ -class SOAP_CMAC prodml22__ProductVolume : public eml23__AbstractObject { - public: - /// Optional element 'prodml22:Installation' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Installation; - /// Optional element 'prodml22:ContextFacility' of XML schema type 'prodml22:FacilityIdentifierStruct' - std::vector ContextFacility; - /// Optional element 'prodml22:Kind' of XML schema type 'eml23:String64' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume (-1226) +/* Type prodml23__ProductVolume is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ProductVolume': */ +class SOAP_CMAC prodml23__ProductVolume : public eml23__AbstractObject { + public: + /// Optional element 'prodml23:Installation' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Installation; + /// Optional element 'prodml23:ContextFacility' of XML schema type 'prodml23:FacilityIdentifierStruct' + std::vector ContextFacility; + /// Optional element 'prodml23:Kind' of XML schema type 'eml23:String64' std::string *Kind; - /// Optional element 'prodml22:PeriodKind' of XML schema type 'prodml22:ReportingDurationKind' - prodml22__ReportingDurationKind *PeriodKind; - /// Optional element 'prodml22:DTimMin' of XML schema type 'prodml22:EndpointQualifiedDateTime' - prodml22__EndpointQualifiedDateTime *DTimMin; - /// Optional element 'prodml22:DTimMax' of XML schema type 'prodml22:EndpointQualifiedDateTime' - prodml22__EndpointQualifiedDateTime *DTimMax; - /// Optional element 'prodml22:DTimCurrent' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:PeriodKind' of XML schema type 'prodml23:ReportingDurationKind' + prodml23__ReportingDurationKind *PeriodKind; + /// Optional element 'prodml23:DTimMin' of XML schema type 'prodml23:EndpointQualifiedDateTime' + prodml23__EndpointQualifiedDateTime *DTimMin; + /// Optional element 'prodml23:DTimMax' of XML schema type 'prodml23:EndpointQualifiedDateTime' + prodml23__EndpointQualifiedDateTime *DTimMax; + /// Optional element 'prodml23:DTimCurrent' of XML schema type 'eml23:TimeStamp' struct tm *DTimCurrent; - /// Optional element 'prodml22:CalculationMethod' of XML schema type 'prodml22:CalculationMethod' - prodml22__CalculationMethod *CalculationMethod; - /// Optional element 'prodml22:Operator' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:CalculationMethod' of XML schema type 'prodml23:CalculationMethod' + prodml23__CalculationMethod *CalculationMethod; + /// Optional element 'prodml23:Operator' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Operator; - /// Optional element 'prodml22:Title' of XML schema type 'eml23:NameStruct' + /// Optional element 'prodml23:Title' of XML schema type 'eml23:NameStruct' eml23__NameStruct *Title; - /// Optional element 'prodml22:GeographicContext' of XML schema type 'prodml22:GeographicContext' - prodml22__GeographicContext *GeographicContext; - /// Optional element 'prodml22:IssueDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:GeographicContext' of XML schema type 'prodml23:GeographicContext' + prodml23__GeographicContext *GeographicContext; + /// Optional element 'prodml23:IssueDate' of XML schema type 'xsd:date' std::string *IssueDate; - /// Optional element 'prodml22:IssuedBy' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:IssuedBy' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *IssuedBy; - /// Optional element 'prodml22:ApprovalDate' of XML schema type 'xsd:date' + /// Optional element 'prodml23:ApprovalDate' of XML schema type 'xsd:date' std::string *ApprovalDate; - /// Optional element 'prodml22:Approver' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:Approver' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Approver; - /// Optional element 'prodml22:StandardTempPres' of XML schema type 'eml23:ReferenceCondition' + /// Optional element 'prodml23:StandardTempPres' of XML schema type 'eml23:ReferenceCondition' eml23__ReferenceCondition *StandardTempPres; - /// Required element 'prodml22:Facility' of XML schema type 'prodml22:ProductVolumeFacility' - std::vector Facility; - /// Optional element 'prodml22:BusinessUnit' of XML schema type 'prodml22:ProductVolumeBusinessUnit' - std::vector BusinessUnit; - /// Optional element 'prodml22:ProductFlowModel' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:Facility' of XML schema type 'prodml23:ProductVolumeFacility' + std::vector Facility; + /// Optional element 'prodml23:BusinessUnit' of XML schema type 'prodml23:ProductVolumeBusinessUnit' + std::vector BusinessUnit; + /// Optional element 'prodml23:ProductFlowModel' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *ProductFlowModel; - /// Optional element 'prodml22:DateTime' of XML schema type 'prodml22:AbstractDateTimeClass' - prodml22__AbstractDateTimeClass *DateTime; + /// Optional element 'prodml23:DateTime' of XML schema type 'prodml23:AbstractDateTimeClass' + prodml23__AbstractDateTimeClass *DateTime; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48005,29 +48228,29 @@ class SOAP_CMAC prodml22__ProductVolume : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductVolume, default initialized and not managed by a soap context - virtual prodml22__ProductVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductVolume); } + /// Return a new object of type prodml23__ProductVolume, default initialized and not managed by a soap context + virtual prodml23__ProductVolume *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductVolume); } public: /// Constructor with default initializations - prodml22__ProductVolume() : Installation(), ContextFacility(), Kind(), PeriodKind(), DTimMin(), DTimMax(), DTimCurrent(), CalculationMethod(), Operator(), Title(), GeographicContext(), IssueDate(), IssuedBy(), ApprovalDate(), Approver(), StandardTempPres(), Facility(), BusinessUnit(), ProductFlowModel(), DateTime() { } + prodml23__ProductVolume() : Installation(), ContextFacility(), Kind(), PeriodKind(), DTimMin(), DTimMax(), DTimCurrent(), CalculationMethod(), Operator(), Title(), GeographicContext(), IssueDate(), IssuedBy(), ApprovalDate(), Approver(), StandardTempPres(), Facility(), BusinessUnit(), ProductFlowModel(), DateTime() { } /// Destructor - virtual ~prodml22__ProductVolume() { } - /// Friend allocator used by soap_new_prodml22__ProductVolume(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml22__ProductVolume(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductVolume() { } + /// Friend allocator used by soap_new_prodml23__ProductVolume(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductVolume * SOAP_FMAC2 soap_instantiate_prodml23__ProductVolume(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2633 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow (-1243) -/* complex XML schema type 'prodml22:ReferenceFlow': */ -class SOAP_CMAC prodml22__ReferenceFlow : public prodml22__AbstractRefProductFlow { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow (-1243) +/* complex XML schema type 'prodml23:ReferenceFlow': */ +class SOAP_CMAC prodml23__ReferenceFlow : public prodml23__AbstractRefProductFlow { public: - /// Required element 'prodml22:FlowReference' of XML schema type 'eml23:String64' + /// Required element 'prodml23:FlowReference' of XML schema type 'eml23:String64' std::string FlowReference; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48040,29 +48263,29 @@ class SOAP_CMAC prodml22__ReferenceFlow : public prodml22__AbstractRefProductFlo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ReferenceFlow, default initialized and not managed by a soap context - virtual prodml22__ReferenceFlow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ReferenceFlow); } + /// Return a new object of type prodml23__ReferenceFlow, default initialized and not managed by a soap context + virtual prodml23__ReferenceFlow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ReferenceFlow); } public: /// Constructor with default initializations - prodml22__ReferenceFlow() : FlowReference() { } + prodml23__ReferenceFlow() : FlowReference() { } /// Destructor - virtual ~prodml22__ReferenceFlow() { } - /// Friend allocator used by soap_new_prodml22__ReferenceFlow(struct soap*, int) - friend SOAP_FMAC1 prodml22__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml22__ReferenceFlow(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ReferenceFlow() { } + /// Friend allocator used by soap_new_prodml23__ReferenceFlow(struct soap*, int) + friend SOAP_FMAC1 prodml23__ReferenceFlow * SOAP_FMAC2 soap_instantiate_prodml23__ReferenceFlow(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2635 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StringData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StringData (-1244) -/* complex XML schema type 'prodml22:StringData': */ -class SOAP_CMAC prodml22__StringData : public prodml22__AbstractMeasureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StringData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StringData (-1244) +/* complex XML schema type 'prodml23:StringData': */ +class SOAP_CMAC prodml23__StringData : public prodml23__AbstractMeasureData { public: - /// Required element 'prodml22:StringValue' of XML schema type 'prodml22:KindQualifiedString' - prodml22__KindQualifiedString *StringValue; + /// Required element 'prodml23:StringValue' of XML schema type 'prodml23:KindQualifiedString' + prodml23__KindQualifiedString *StringValue; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__StringData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__StringData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__StringData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__StringData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48075,47 +48298,48 @@ class SOAP_CMAC prodml22__StringData : public prodml22__AbstractMeasureData { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__StringData, default initialized and not managed by a soap context - virtual prodml22__StringData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__StringData); } + /// Return a new object of type prodml23__StringData, default initialized and not managed by a soap context + virtual prodml23__StringData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__StringData); } public: /// Constructor with default initializations - prodml22__StringData() : StringValue() { } + prodml23__StringData() : StringValue() { } /// Destructor - virtual ~prodml22__StringData() { } - /// Friend allocator used by soap_new_prodml22__StringData(struct soap*, int) - friend SOAP_FMAC1 prodml22__StringData * SOAP_FMAC2 soap_instantiate_prodml22__StringData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__StringData() { } + /// Friend allocator used by soap_new_prodml23__StringData(struct soap*, int) + friend SOAP_FMAC1 prodml23__StringData * SOAP_FMAC2 soap_instantiate_prodml23__StringData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2647 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel (-1250) -/* complex XML schema type 'prodml22:ProductFlowModel': */ -class SOAP_CMAC prodml22__ProductFlowModel : public eml23__AbstractObject { - public: - /// Optional element 'prodml22:Installation' of XML schema type 'prodml22:FacilityIdentifierStruct' - prodml22__FacilityIdentifierStruct *Installation; - /// Optional element 'prodml22:ContextFacility' of XML schema type 'prodml22:FacilityIdentifierStruct' - std::vector ContextFacility; - /// Optional element 'prodml22:DTimStart' of XML schema type 'eml23:TimeStamp' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel (-1250) +/* Type prodml23__ProductFlowModel is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ProductFlowModel': */ +class SOAP_CMAC prodml23__ProductFlowModel : public eml23__AbstractObject { + public: + /// Optional element 'prodml23:Installation' of XML schema type 'prodml23:FacilityIdentifierStruct' + prodml23__FacilityIdentifierStruct *Installation; + /// Optional element 'prodml23:ContextFacility' of XML schema type 'prodml23:FacilityIdentifierStruct' + std::vector ContextFacility; + /// Optional element 'prodml23:DTimStart' of XML schema type 'eml23:TimeStamp' struct tm *DTimStart; - /// Optional element 'prodml22:DTimEnd' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:DTimEnd' of XML schema type 'eml23:TimeStamp' struct tm *DTimEnd; - /// Optional element 'prodml22:ExistenceTime' of XML schema type 'prodml22:EndpointQualifiedDateTime' - prodml22__EndpointQualifiedDateTime *ExistenceTime; - /// Optional element 'prodml22:DTimMin' of XML schema type 'prodml22:EndpointQualifiedDateTime' - prodml22__EndpointQualifiedDateTime *DTimMin; - /// Optional element 'prodml22:DTimMax' of XML schema type 'prodml22:EndpointQualifiedDateTime' - prodml22__EndpointQualifiedDateTime *DTimMax; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:ExistenceTime' of XML schema type 'prodml23:EndpointQualifiedDateTime' + prodml23__EndpointQualifiedDateTime *ExistenceTime; + /// Optional element 'prodml23:DTimMin' of XML schema type 'prodml23:EndpointQualifiedDateTime' + prodml23__EndpointQualifiedDateTime *DTimMin; + /// Optional element 'prodml23:DTimMax' of XML schema type 'prodml23:EndpointQualifiedDateTime' + prodml23__EndpointQualifiedDateTime *DTimMax; + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:ExternalConnect' of XML schema type 'prodml22:ProductFlowExternalReference' - std::vector ExternalConnect; - /// Required element 'prodml22:Network' of XML schema type 'prodml22:ProductFlowNetwork' - std::vector Network; + /// Optional element 'prodml23:ExternalConnect' of XML schema type 'prodml23:ProductFlowExternalReference' + std::vector ExternalConnect; + /// Required element 'prodml23:Network' of XML schema type 'prodml23:ProductFlowNetwork' + std::vector Network; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48128,35 +48352,35 @@ class SOAP_CMAC prodml22__ProductFlowModel : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowModel, default initialized and not managed by a soap context - virtual prodml22__ProductFlowModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowModel); } + /// Return a new object of type prodml23__ProductFlowModel, default initialized and not managed by a soap context + virtual prodml23__ProductFlowModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowModel); } public: /// Constructor with default initializations - prodml22__ProductFlowModel() : Installation(), ContextFacility(), DTimStart(), DTimEnd(), ExistenceTime(), DTimMin(), DTimMax(), Comment(), ExternalConnect(), Network() { } + prodml23__ProductFlowModel() : Installation(), ContextFacility(), DTimStart(), DTimEnd(), ExistenceTime(), DTimMin(), DTimMax(), Comment(), ExternalConnect(), Network() { } /// Destructor - virtual ~prodml22__ProductFlowModel() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowModel() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowModel * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2653 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected (-1253) -/* complex XML schema type 'prodml22:ProductFlowQualifierExpected': */ -class SOAP_CMAC prodml22__ProductFlowQualifierExpected : public prodml22__ExpectedFlowQualifier { - public: - /// Required element 'prodml22:Flow' of XML schema type 'prodml22:ReportingFlow' - prodml22__ReportingFlow Flow; - /// Optional element 'prodml22:Product' of XML schema type 'prodml22:ReportingProduct' - prodml22__ReportingProduct *Product; - /// Optional element 'prodml22:Qualifier' of XML schema type 'prodml22:FlowQualifier' - std::vector Qualifier; +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected (-1253) +/* complex XML schema type 'prodml23:ProductFlowQualifierExpected': */ +class SOAP_CMAC prodml23__ProductFlowQualifierExpected : public prodml23__ExpectedFlowQualifier { + public: + /// Required element 'prodml23:Flow' of XML schema type 'prodml23:ReportingFlow' + prodml23__ReportingFlow Flow; + /// Optional element 'prodml23:Product' of XML schema type 'prodml23:ReportingProduct' + prodml23__ReportingProduct *Product; + /// Optional element 'prodml23:Qualifier' of XML schema type 'prodml23:FlowQualifier' + std::vector Qualifier; /// Required attribute 'uid' of XML schema type 'eml23:String64' std::string uid; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48169,29 +48393,29 @@ class SOAP_CMAC prodml22__ProductFlowQualifierExpected : public prodml22__Expect virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductFlowQualifierExpected, default initialized and not managed by a soap context - virtual prodml22__ProductFlowQualifierExpected *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductFlowQualifierExpected); } + /// Return a new object of type prodml23__ProductFlowQualifierExpected, default initialized and not managed by a soap context + virtual prodml23__ProductFlowQualifierExpected *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductFlowQualifierExpected); } public: /// Constructor with default initializations - prodml22__ProductFlowQualifierExpected() : Flow(), Product(), Qualifier(), uid() { } + prodml23__ProductFlowQualifierExpected() : Flow(), Product(), Qualifier(), uid() { } /// Destructor - virtual ~prodml22__ProductFlowQualifierExpected() { } - /// Friend allocator used by soap_new_prodml22__ProductFlowQualifierExpected(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_prodml22__ProductFlowQualifierExpected(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductFlowQualifierExpected() { } + /// Friend allocator used by soap_new_prodml23__ProductFlowQualifierExpected(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductFlowQualifierExpected * SOAP_FMAC2 soap_instantiate_prodml23__ProductFlowQualifierExpected(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2657 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier (-1255) -/* complex XML schema type 'prodml22:Qualifier': */ -class SOAP_CMAC prodml22__Qualifier : public prodml22__ExpectedFlowQualifier { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier (-1255) +/* complex XML schema type 'prodml23:Qualifier': */ +class SOAP_CMAC prodml23__Qualifier : public prodml23__ExpectedFlowQualifier { public: - /// Optional element 'prodml22:Qualifier' of XML schema type 'prodml22:FlowQualifier' - std::vector Qualifier; + /// Optional element 'prodml23:Qualifier' of XML schema type 'prodml23:FlowQualifier' + std::vector Qualifier; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48204,29 +48428,29 @@ class SOAP_CMAC prodml22__Qualifier : public prodml22__ExpectedFlowQualifier { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Qualifier, default initialized and not managed by a soap context - virtual prodml22__Qualifier *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Qualifier); } + /// Return a new object of type prodml23__Qualifier, default initialized and not managed by a soap context + virtual prodml23__Qualifier *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Qualifier); } public: /// Constructor with default initializations - prodml22__Qualifier() : Qualifier() { } + prodml23__Qualifier() : Qualifier() { } /// Destructor - virtual ~prodml22__Qualifier() { } - /// Friend allocator used by soap_new_prodml22__Qualifier(struct soap*, int) - friend SOAP_FMAC1 prodml22__Qualifier * SOAP_FMAC2 soap_instantiate_prodml22__Qualifier(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Qualifier() { } + /// Friend allocator used by soap_new_prodml23__Qualifier(struct soap*, int) + friend SOAP_FMAC1 prodml23__Qualifier * SOAP_FMAC2 soap_instantiate_prodml23__Qualifier(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2663 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue (-1258) -/* complex XML schema type 'prodml22:DoubleValue': */ -class SOAP_CMAC prodml22__DoubleValue : public prodml22__AbstractValue { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue (-1258) +/* complex XML schema type 'prodml23:DoubleValue': */ +class SOAP_CMAC prodml23__DoubleValue : public prodml23__AbstractValue { public: - /// Required element 'prodml22:DoubleValue' of XML schema type 'prodml22:TimeSeriesDoubleSample' - prodml22__TimeSeriesDoubleSample *DoubleValue; + /// Required element 'prodml23:DoubleValue' of XML schema type 'prodml23:TimeSeriesDoubleSample' + prodml23__TimeSeriesDoubleSample *DoubleValue; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48239,29 +48463,29 @@ class SOAP_CMAC prodml22__DoubleValue : public prodml22__AbstractValue { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DoubleValue, default initialized and not managed by a soap context - virtual prodml22__DoubleValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DoubleValue); } + /// Return a new object of type prodml23__DoubleValue, default initialized and not managed by a soap context + virtual prodml23__DoubleValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DoubleValue); } public: /// Constructor with default initializations - prodml22__DoubleValue() : DoubleValue() { } + prodml23__DoubleValue() : DoubleValue() { } /// Destructor - virtual ~prodml22__DoubleValue() { } - /// Friend allocator used by soap_new_prodml22__DoubleValue(struct soap*, int) - friend SOAP_FMAC1 prodml22__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml22__DoubleValue(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DoubleValue() { } + /// Friend allocator used by soap_new_prodml23__DoubleValue(struct soap*, int) + friend SOAP_FMAC1 prodml23__DoubleValue * SOAP_FMAC2 soap_instantiate_prodml23__DoubleValue(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2665 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue (-1259) -/* complex XML schema type 'prodml22:StringValue': */ -class SOAP_CMAC prodml22__StringValue : public prodml22__AbstractValue { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue (-1259) +/* complex XML schema type 'prodml23:StringValue': */ +class SOAP_CMAC prodml23__StringValue : public prodml23__AbstractValue { public: - /// Required element 'prodml22:StringValue' of XML schema type 'prodml22:TimeSeriesStringSample' - prodml22__TimeSeriesStringSample *StringValue; + /// Required element 'prodml23:StringValue' of XML schema type 'prodml23:TimeSeriesStringSample' + prodml23__TimeSeriesStringSample *StringValue; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48274,37 +48498,38 @@ class SOAP_CMAC prodml22__StringValue : public prodml22__AbstractValue { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__StringValue, default initialized and not managed by a soap context - virtual prodml22__StringValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__StringValue); } + /// Return a new object of type prodml23__StringValue, default initialized and not managed by a soap context + virtual prodml23__StringValue *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__StringValue); } public: /// Constructor with default initializations - prodml22__StringValue() : StringValue() { } + prodml23__StringValue() : StringValue() { } /// Destructor - virtual ~prodml22__StringValue() { } - /// Friend allocator used by soap_new_prodml22__StringValue(struct soap*, int) - friend SOAP_FMAC1 prodml22__StringValue * SOAP_FMAC2 soap_instantiate_prodml22__StringValue(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__StringValue() { } + /// Friend allocator used by soap_new_prodml23__StringValue(struct soap*, int) + friend SOAP_FMAC1 prodml23__StringValue * SOAP_FMAC2 soap_instantiate_prodml23__StringValue(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2667 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData (-1260) -/* complex XML schema type 'prodml22:TimeSeriesData': */ -class SOAP_CMAC prodml22__TimeSeriesData : public eml23__AbstractObject { - public: - /// Optional element 'prodml22:Key' of XML schema type 'prodml22:KeywordValueStruct' - std::vector Key; - /// Optional element 'prodml22:Uom' of XML schema type 'eml23:UnitOfMeasureExt' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData (-1260) +/* Type prodml23__TimeSeriesData is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:TimeSeriesData': */ +class SOAP_CMAC prodml23__TimeSeriesData : public eml23__AbstractObject { + public: + /// Optional element 'prodml23:Key' of XML schema type 'prodml23:KeywordValueStruct' + std::vector Key; + /// Optional element 'prodml23:Uom' of XML schema type 'eml23:UnitOfMeasureExt' std::string *Uom; - /// Optional element 'prodml22:MeasureClass' of XML schema type 'eml23:MeasureClass' + /// Optional element 'prodml23:MeasureClass' of XML schema type 'eml23:MeasureClass' eml23__MeasureClass *MeasureClass; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:DataValue' of XML schema type 'prodml22:AbstractValue' - std::vector DataValue; + /// Optional element 'prodml23:DataValue' of XML schema type 'prodml23:AbstractValue' + std::vector DataValue; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48317,53 +48542,54 @@ class SOAP_CMAC prodml22__TimeSeriesData : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TimeSeriesData, default initialized and not managed by a soap context - virtual prodml22__TimeSeriesData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TimeSeriesData); } + /// Return a new object of type prodml23__TimeSeriesData, default initialized and not managed by a soap context + virtual prodml23__TimeSeriesData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TimeSeriesData); } public: /// Constructor with default initializations - prodml22__TimeSeriesData() : Key(), Uom(), MeasureClass(), Comment(), DataValue() { } + prodml23__TimeSeriesData() : Key(), Uom(), MeasureClass(), Comment(), DataValue() { } /// Destructor - virtual ~prodml22__TimeSeriesData() { } - /// Friend allocator used by soap_new_prodml22__TimeSeriesData(struct soap*, int) - friend SOAP_FMAC1 prodml22__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TimeSeriesData() { } + /// Friend allocator used by soap_new_prodml23__TimeSeriesData(struct soap*, int) + friend SOAP_FMAC1 prodml23__TimeSeriesData * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2679 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic (-1266) -/* complex XML schema type 'prodml22:TimeSeriesStatistic': */ -class SOAP_CMAC prodml22__TimeSeriesStatistic : public eml23__AbstractObject { - public: - /// Optional element 'prodml22:Key' of XML schema type 'prodml22:KeywordValueStruct' - std::vector Key; - /// Optional element 'prodml22:Uom' of XML schema type 'eml23:UnitOfMeasureExt' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic (-1266) +/* Type prodml23__TimeSeriesStatistic is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:TimeSeriesStatistic': */ +class SOAP_CMAC prodml23__TimeSeriesStatistic : public eml23__AbstractObject { + public: + /// Optional element 'prodml23:Key' of XML schema type 'prodml23:KeywordValueStruct' + std::vector Key; + /// Optional element 'prodml23:Uom' of XML schema type 'eml23:UnitOfMeasureExt' std::string *Uom; - /// Optional element 'prodml22:MeasureClass' of XML schema type 'eml23:MeasureClass' + /// Optional element 'prodml23:MeasureClass' of XML schema type 'eml23:MeasureClass' eml23__MeasureClass *MeasureClass; - /// Optional element 'prodml22:Comment' of XML schema type 'eml23:String2000' + /// Optional element 'prodml23:Comment' of XML schema type 'eml23:String2000' std::string *Comment; - /// Optional element 'prodml22:Minimum' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:Minimum' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Minimum; - /// Optional element 'prodml22:Maximum' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:Maximum' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Maximum; - /// Optional element 'prodml22:Sum' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:Sum' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Sum; - /// Optional element 'prodml22:Mean' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:Mean' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Mean; - /// Optional element 'prodml22:Median' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:Median' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *Median; - /// Optional element 'prodml22:StandardDeviation' of XML schema type 'eml23:DimensionlessMeasure' + /// Optional element 'prodml23:StandardDeviation' of XML schema type 'eml23:DimensionlessMeasure' eml23__DimensionlessMeasure *StandardDeviation; - /// Required element 'prodml22:DTimMin' of XML schema type 'prodml22:EndpointDateTime' - prodml22__EndpointDateTime *DTimMin; - /// Required element 'prodml22:DTimMax' of XML schema type 'prodml22:EndpointDateTime' - prodml22__EndpointDateTime *DTimMax; - /// Optional element 'prodml22:TimeAtThreshold' of XML schema type 'prodml22:TimeSeriesThreshold' - prodml22__TimeSeriesThreshold *TimeAtThreshold; + /// Required element 'prodml23:DTimMin' of XML schema type 'prodml23:EndpointDateTime' + prodml23__EndpointDateTime *DTimMin; + /// Required element 'prodml23:DTimMax' of XML schema type 'prodml23:EndpointDateTime' + prodml23__EndpointDateTime *DTimMax; + /// Optional element 'prodml23:TimeAtThreshold' of XML schema type 'prodml23:TimeSeriesThreshold' + prodml23__TimeSeriesThreshold *TimeAtThreshold; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -48376,15 +48602,15 @@ class SOAP_CMAC prodml22__TimeSeriesStatistic : public eml23__AbstractObject { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TimeSeriesStatistic, default initialized and not managed by a soap context - virtual prodml22__TimeSeriesStatistic *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TimeSeriesStatistic); } + /// Return a new object of type prodml23__TimeSeriesStatistic, default initialized and not managed by a soap context + virtual prodml23__TimeSeriesStatistic *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TimeSeriesStatistic); } public: /// Constructor with default initializations - prodml22__TimeSeriesStatistic() : Key(), Uom(), MeasureClass(), Comment(), Minimum(), Maximum(), Sum(), Mean(), Median(), StandardDeviation(), DTimMin(), DTimMax(), TimeAtThreshold() { } + prodml23__TimeSeriesStatistic() : Key(), Uom(), MeasureClass(), Comment(), Minimum(), Maximum(), Sum(), Mean(), Median(), StandardDeviation(), DTimMin(), DTimMax(), TimeAtThreshold() { } /// Destructor - virtual ~prodml22__TimeSeriesStatistic() { } - /// Friend allocator used by soap_new_prodml22__TimeSeriesStatistic(struct soap*, int) - friend SOAP_FMAC1 prodml22__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesStatistic(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TimeSeriesStatistic() { } + /// Friend allocator used by soap_new_prodml23__TimeSeriesStatistic(struct soap*, int) + friend SOAP_FMAC1 prodml23__TimeSeriesStatistic * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesStatistic(struct soap*, int, const char*, const char*, size_t*); }; #endif @@ -49285,6 +49511,7 @@ class SOAP_CMAC resqml22__MultipleContactInterpretationPart : public resqml22__A /* eml2_3ForGsoap.h:2861 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicColumn #define SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicColumn (-1357) +/* Type resqml22__StratigraphicColumn is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:StratigraphicColumn': */ class SOAP_CMAC resqml22__StratigraphicColumn : public eml23__AbstractObject { public: @@ -49357,6 +49584,7 @@ class SOAP_CMAC resqml22__AbstractRepresentation : public eml23__AbstractObject /* eml2_3ForGsoap.h:2881 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__RepresentationIdentitySet #define SOAP_TYPE_gsoap_eml2_3_resqml22__RepresentationIdentitySet (-1367) +/* Type resqml22__RepresentationIdentitySet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:RepresentationIdentitySet': */ class SOAP_CMAC resqml22__RepresentationIdentitySet : public eml23__AbstractObject { public: @@ -49583,6 +49811,7 @@ class SOAP_CMAC resqml22__IjkParentWindow : public resqml22__AbstractParentWindo /* eml2_3ForGsoap.h:2953 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__LocalGridSet #define SOAP_TYPE_gsoap_eml2_3_resqml22__LocalGridSet (-1403) +/* Type resqml22__LocalGridSet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:LocalGridSet': */ class SOAP_CMAC resqml22__LocalGridSet : public eml23__AbstractObject { public: @@ -49895,6 +50124,7 @@ class SOAP_CMAC resqml22__ColorInformation : public eml23__AbstractGraphicalInfo /* eml2_3ForGsoap.h:3009 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__ColorMapDictionary #define SOAP_TYPE_gsoap_eml2_3_resqml22__ColorMapDictionary (-1431) +/* Type resqml22__ColorMapDictionary is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:ColorMapDictionary': */ class SOAP_CMAC resqml22__ColorMapDictionary : public eml23__AbstractObject { public: @@ -51064,6 +51294,7 @@ class SOAP_CMAC witsml21__WellboreGeology : public eml23__AbstractActiveObject { /* eml2_3ForGsoap.h:513 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__Channel #define SOAP_TYPE_gsoap_eml2_3_witsml21__Channel (-183) +/* Type witsml21__Channel is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:Channel': */ class SOAP_CMAC witsml21__Channel : public eml23__AbstractActiveObject { public: @@ -51169,6 +51400,7 @@ class SOAP_CMAC witsml21__Channel : public eml23__AbstractActiveObject { /* eml2_3ForGsoap.h:521 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet #define SOAP_TYPE_gsoap_eml2_3_witsml21__ChannelSet (-187) +/* Type witsml21__ChannelSet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:ChannelSet': */ class SOAP_CMAC witsml21__ChannelSet : public eml23__AbstractActiveObject { public: @@ -51563,6 +51795,7 @@ class SOAP_CMAC witsml21__WellboreGeometrySection : public eml23__AbstractMdInte /* eml2_3ForGsoap.h:747 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGrowingObject #define SOAP_TYPE_gsoap_eml2_3_eml23__AbstractGrowingObject (-300) +/* Type eml23__AbstractGrowingObject is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:AbstractGrowingObject': */ class SOAP_CMAC eml23__AbstractGrowingObject : public eml23__AbstractActiveObject { public: @@ -52673,6 +52906,7 @@ class SOAP_CMAC eml23__StringXmlArray : public eml23__AbstractStringArray { /* eml2_3ForGsoap.h:951 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__Cartesian2dCrs #define SOAP_TYPE_gsoap_eml2_3_eml23__Cartesian2dCrs (-402) +/* Type eml23__Cartesian2dCrs is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:Cartesian2dCrs': */ class SOAP_CMAC eml23__Cartesian2dCrs : public eml23__Abstract2dCrs { public: @@ -67554,22 +67788,22 @@ class SOAP_CMAC eml23__ReferencePressure { #endif /* eml2_3ForGsoap.h:1883 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow (-868) -/* simple XML schema type 'prodml22:FluidCharacterizationTableRow': */ -class SOAP_CMAC prodml22__FluidCharacterizationTableRow { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow (-868) +/* simple XML schema type 'prodml23:FluidCharacterizationTableRow': */ +class SOAP_CMAC prodml23__FluidCharacterizationTableRow { public: /// Simple content of XML schema type 'eml23:AbstractString' wrapped by this struct std::string __item; /// Required attribute 'row' of XML schema type 'eml23:String64' std::string row; - /// Optional attribute 'kind' of XML schema type 'prodml22:SaturationKind' - prodml22__SaturationKind *kind; + /// Optional attribute 'kind' of XML schema type 'prodml23:SaturationKind' + prodml23__SaturationKind *kind; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67582,26 +67816,26 @@ class SOAP_CMAC prodml22__FluidCharacterizationTableRow { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FluidCharacterizationTableRow, default initialized and not managed by a soap context - virtual prodml22__FluidCharacterizationTableRow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FluidCharacterizationTableRow); } + /// Return a new object of type prodml23__FluidCharacterizationTableRow, default initialized and not managed by a soap context + virtual prodml23__FluidCharacterizationTableRow *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FluidCharacterizationTableRow); } public: /// Constructor with default initializations - prodml22__FluidCharacterizationTableRow() : __item(), row(), kind(), soap() { } + prodml23__FluidCharacterizationTableRow() : __item(), row(), kind(), soap() { } /// Destructor - virtual ~prodml22__FluidCharacterizationTableRow() { } - /// Friend allocator used by soap_new_prodml22__FluidCharacterizationTableRow(struct soap*, int) - friend SOAP_FMAC1 prodml22__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate_prodml22__FluidCharacterizationTableRow(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FluidCharacterizationTableRow() { } + /// Friend allocator used by soap_new_prodml23__FluidCharacterizationTableRow(struct soap*, int) + friend SOAP_FMAC1 prodml23__FluidCharacterizationTableRow * SOAP_FMAC2 soap_instantiate_prodml23__FluidCharacterizationTableRow(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1885 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel (-869) -/* complex XML schema type 'prodml22:AbstractCompositionalEoSModel': */ -class SOAP_CMAC prodml22__AbstractCompositionalEoSModel : public prodml22__AbstractCompositionalModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel (-869) +/* complex XML schema type 'prodml23:AbstractCompositionalEoSModel': */ +class SOAP_CMAC prodml23__AbstractCompositionalEoSModel : public prodml23__AbstractCompositionalModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67614,29 +67848,29 @@ class SOAP_CMAC prodml22__AbstractCompositionalEoSModel : public prodml22__Abstr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCompositionalEoSModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCompositionalEoSModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCompositionalEoSModel); } + /// Return a new object of type prodml23__AbstractCompositionalEoSModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCompositionalEoSModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCompositionalEoSModel); } public: /// Constructor with default initializations - prodml22__AbstractCompositionalEoSModel() { } + prodml23__AbstractCompositionalEoSModel() { } /// Destructor - virtual ~prodml22__AbstractCompositionalEoSModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCompositionalEoSModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalEoSModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCompositionalEoSModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCompositionalEoSModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCompositionalEoSModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalEoSModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1887 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel (-870) -/* complex XML schema type 'prodml22:AbstractCompositionalViscosityModel': */ -class SOAP_CMAC prodml22__AbstractCompositionalViscosityModel : public prodml22__AbstractCompositionalModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel (-870) +/* complex XML schema type 'prodml23:AbstractCompositionalViscosityModel': */ +class SOAP_CMAC prodml23__AbstractCompositionalViscosityModel : public prodml23__AbstractCompositionalModel { public: - /// Required attribute 'phase' of XML schema type 'prodml22:ThermodynamicPhase' - prodml22__ThermodynamicPhase phase; + /// Required attribute 'phase' of XML schema type 'prodml23:ThermodynamicPhase' + prodml23__ThermodynamicPhase phase; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67649,29 +67883,29 @@ class SOAP_CMAC prodml22__AbstractCompositionalViscosityModel : public prodml22_ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCompositionalViscosityModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCompositionalViscosityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCompositionalViscosityModel); } + /// Return a new object of type prodml23__AbstractCompositionalViscosityModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCompositionalViscosityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCompositionalViscosityModel); } public: /// Constructor with default initializations - prodml22__AbstractCompositionalViscosityModel() : phase() { } + prodml23__AbstractCompositionalViscosityModel() : phase() { } /// Destructor - virtual ~prodml22__AbstractCompositionalViscosityModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCompositionalViscosityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCompositionalViscosityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCompositionalViscosityModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCompositionalViscosityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCompositionalViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCompositionalViscosityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1893 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel (-873) -/* complex XML schema type 'prodml22:AbstractCorrelationViscosityModel': */ -class SOAP_CMAC prodml22__AbstractCorrelationViscosityModel : public prodml22__AbstractCorrelationModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel (-873) +/* complex XML schema type 'prodml23:AbstractCorrelationViscosityModel': */ +class SOAP_CMAC prodml23__AbstractCorrelationViscosityModel : public prodml23__AbstractCorrelationModel { public: - /// Optional element 'prodml22:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:MolecularWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *MolecularWeight; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67684,23 +67918,23 @@ class SOAP_CMAC prodml22__AbstractCorrelationViscosityModel : public prodml22__A virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCorrelationViscosityModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCorrelationViscosityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCorrelationViscosityModel); } + /// Return a new object of type prodml23__AbstractCorrelationViscosityModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCorrelationViscosityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCorrelationViscosityModel); } public: /// Constructor with default initializations - prodml22__AbstractCorrelationViscosityModel() : MolecularWeight() { } + prodml23__AbstractCorrelationViscosityModel() : MolecularWeight() { } /// Destructor - virtual ~prodml22__AbstractCorrelationViscosityModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCorrelationViscosityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCorrelationViscosityModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCorrelationViscosityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCorrelationViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1905 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient (-879) -/* simple XML schema type 'prodml22:BinaryInteractionCoefficient': */ -class SOAP_CMAC prodml22__BinaryInteractionCoefficient { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient (-879) +/* simple XML schema type 'prodml23:BinaryInteractionCoefficient': */ +class SOAP_CMAC prodml23__BinaryInteractionCoefficient { public: /// Simple content of XML schema type 'eml23:AbstractMeasure' wrapped by this struct double __item; @@ -67711,8 +67945,8 @@ class SOAP_CMAC prodml22__BinaryInteractionCoefficient { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67725,26 +67959,26 @@ class SOAP_CMAC prodml22__BinaryInteractionCoefficient { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__BinaryInteractionCoefficient, default initialized and not managed by a soap context - virtual prodml22__BinaryInteractionCoefficient *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__BinaryInteractionCoefficient); } + /// Return a new object of type prodml23__BinaryInteractionCoefficient, default initialized and not managed by a soap context + virtual prodml23__BinaryInteractionCoefficient *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__BinaryInteractionCoefficient); } public: /// Constructor with default initializations - prodml22__BinaryInteractionCoefficient() : __item(), fluidComponent1Reference(), fluidComponent2Reference(), soap() { } + prodml23__BinaryInteractionCoefficient() : __item(), fluidComponent1Reference(), fluidComponent2Reference(), soap() { } /// Destructor - virtual ~prodml22__BinaryInteractionCoefficient() { } - /// Friend allocator used by soap_new_prodml22__BinaryInteractionCoefficient(struct soap*, int) - friend SOAP_FMAC1 prodml22__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_prodml22__BinaryInteractionCoefficient(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__BinaryInteractionCoefficient() { } + /// Friend allocator used by soap_new_prodml23__BinaryInteractionCoefficient(struct soap*, int) + friend SOAP_FMAC1 prodml23__BinaryInteractionCoefficient * SOAP_FMAC2 soap_instantiate_prodml23__BinaryInteractionCoefficient(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1913 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel (-883) -/* complex XML schema type 'prodml22:CompositionalThermalModel': */ -class SOAP_CMAC prodml22__CompositionalThermalModel : public prodml22__AbstractCompositionalModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel (-883) +/* complex XML schema type 'prodml23:CompositionalThermalModel': */ +class SOAP_CMAC prodml23__CompositionalThermalModel : public prodml23__AbstractCompositionalModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67757,26 +67991,26 @@ class SOAP_CMAC prodml22__CompositionalThermalModel : public prodml22__AbstractC virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CompositionalThermalModel, default initialized and not managed by a soap context - virtual prodml22__CompositionalThermalModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CompositionalThermalModel); } + /// Return a new object of type prodml23__CompositionalThermalModel, default initialized and not managed by a soap context + virtual prodml23__CompositionalThermalModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CompositionalThermalModel); } public: /// Constructor with default initializations - prodml22__CompositionalThermalModel() { } + prodml23__CompositionalThermalModel() { } /// Destructor - virtual ~prodml22__CompositionalThermalModel() { } - /// Friend allocator used by soap_new_prodml22__CompositionalThermalModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_prodml22__CompositionalThermalModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CompositionalThermalModel() { } + /// Friend allocator used by soap_new_prodml23__CompositionalThermalModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__CompositionalThermalModel * SOAP_FMAC2 soap_instantiate_prodml23__CompositionalThermalModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1915 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel (-884) -/* complex XML schema type 'prodml22:CorrelationThermalModel': */ -class SOAP_CMAC prodml22__CorrelationThermalModel : public prodml22__AbstractCorrelationModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel (-884) +/* complex XML schema type 'prodml23:CorrelationThermalModel': */ +class SOAP_CMAC prodml23__CorrelationThermalModel : public prodml23__AbstractCorrelationModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67789,35 +68023,35 @@ class SOAP_CMAC prodml22__CorrelationThermalModel : public prodml22__AbstractCor virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CorrelationThermalModel, default initialized and not managed by a soap context - virtual prodml22__CorrelationThermalModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CorrelationThermalModel); } + /// Return a new object of type prodml23__CorrelationThermalModel, default initialized and not managed by a soap context + virtual prodml23__CorrelationThermalModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CorrelationThermalModel); } public: /// Constructor with default initializations - prodml22__CorrelationThermalModel() { } + prodml23__CorrelationThermalModel() { } /// Destructor - virtual ~prodml22__CorrelationThermalModel() { } - /// Friend allocator used by soap_new_prodml22__CorrelationThermalModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodml22__CorrelationThermalModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CorrelationThermalModel() { } + /// Friend allocator used by soap_new_prodml23__CorrelationThermalModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__CorrelationThermalModel * SOAP_FMAC2 soap_instantiate_prodml23__CorrelationThermalModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1979 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter (-916) -/* simple XML schema type 'prodml22:PvtModelParameter': */ -class SOAP_CMAC prodml22__PvtModelParameter { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter (-916) +/* simple XML schema type 'prodml23:PvtModelParameter': */ +class SOAP_CMAC prodml23__PvtModelParameter { public: /// Simple content of XML schema type 'eml23:AbstractMeasure' wrapped by this struct double __item; - /// Required attribute 'kind' of XML schema type 'prodml22:PvtModelParameterKindExt' + /// Required attribute 'kind' of XML schema type 'prodml23:PvtModelParameterKindExt' std::string kind; /// Optional attribute 'name' of XML schema type 'eml23:String64' std::string *name; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67830,23 +68064,23 @@ class SOAP_CMAC prodml22__PvtModelParameter { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PvtModelParameter, default initialized and not managed by a soap context - virtual prodml22__PvtModelParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PvtModelParameter); } + /// Return a new object of type prodml23__PvtModelParameter, default initialized and not managed by a soap context + virtual prodml23__PvtModelParameter *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PvtModelParameter); } public: /// Constructor with default initializations - prodml22__PvtModelParameter() : __item(), kind(), name(), soap() { } + prodml23__PvtModelParameter() : __item(), kind(), name(), soap() { } /// Destructor - virtual ~prodml22__PvtModelParameter() { } - /// Friend allocator used by soap_new_prodml22__PvtModelParameter(struct soap*, int) - friend SOAP_FMAC1 prodml22__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml22__PvtModelParameter(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PvtModelParameter() { } + /// Friend allocator used by soap_new_prodml23__PvtModelParameter(struct soap*, int) + friend SOAP_FMAC1 prodml23__PvtModelParameter * SOAP_FMAC2 soap_instantiate_prodml23__PvtModelParameter(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2029 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord (-941) -/* simple XML schema type 'prodml22:MeasuredDepthCoord': */ -class SOAP_CMAC prodml22__MeasuredDepthCoord { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord (-941) +/* simple XML schema type 'prodml23:MeasuredDepthCoord': */ +class SOAP_CMAC prodml23__MeasuredDepthCoord { public: /// Simple content of XML schema type 'eml23:AbstractMeasure' wrapped by this struct double __item; @@ -67855,8 +68089,8 @@ class SOAP_CMAC prodml22__MeasuredDepthCoord { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67869,57 +68103,58 @@ class SOAP_CMAC prodml22__MeasuredDepthCoord { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MeasuredDepthCoord, default initialized and not managed by a soap context - virtual prodml22__MeasuredDepthCoord *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MeasuredDepthCoord); } + /// Return a new object of type prodml23__MeasuredDepthCoord, default initialized and not managed by a soap context + virtual prodml23__MeasuredDepthCoord *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MeasuredDepthCoord); } public: /// Constructor with default initializations - prodml22__MeasuredDepthCoord() : __item(), uom(), soap() { } + prodml23__MeasuredDepthCoord() : __item(), uom(), soap() { } /// Destructor - virtual ~prodml22__MeasuredDepthCoord() { } - /// Friend allocator used by soap_new_prodml22__MeasuredDepthCoord(struct soap*, int) - friend SOAP_FMAC1 prodml22__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredDepthCoord(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MeasuredDepthCoord() { } + /// Friend allocator used by soap_new_prodml23__MeasuredDepthCoord(struct soap*, int) + friend SOAP_FMAC1 prodml23__MeasuredDepthCoord * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredDepthCoord(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2101 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis (-977) -/* complex XML schema type 'prodml22:HydrocarbonAnalysis': */ -class SOAP_CMAC prodml22__HydrocarbonAnalysis : public prodml22__FluidAnalysis { - public: - /// Optional element 'prodml22:SampleIntegrityAndPreparation' of XML schema type 'prodml22:SampleIntegrityAndPreparation' - prodml22__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation; - /// Optional element 'prodml22:AtmosphericFlashTestAndCompositionalAnalysis' of XML schema type 'prodml22:AtmosphericFlashTestAndCompositionalAnalysis' - std::vector AtmosphericFlashTestAndCompositionalAnalysis; - /// Optional element 'prodml22:ConstantCompositionExpansionTest' of XML schema type 'prodml22:ConstantCompositionExpansionTest' - std::vector ConstantCompositionExpansionTest; - /// Optional element 'prodml22:SaturationTest' of XML schema type 'prodml22:SaturationTest' - std::vector SaturationTest; - /// Optional element 'prodml22:DifferentialLiberationTest' of XML schema type 'prodml22:DifferentialLiberationTest' - std::vector DifferentialLiberationTest; - /// Optional element 'prodml22:ConstantVolumeDepletionTest' of XML schema type 'prodml22:ConstantVolumeDepletionTest' - std::vector ConstantVolumeDepletionTest; - /// Optional element 'prodml22:SeparatorTest' of XML schema type 'prodml22:FluidSeparatorTest' - std::vector SeparatorTest; - /// Optional element 'prodml22:TransportTest' of XML schema type 'prodml22:OtherMeasurementTest' - std::vector TransportTest; - /// Optional element 'prodml22:VaporLiquidEquilibriumTest' of XML schema type 'prodml22:VaporLiquidEquilibriumTest' - std::vector VaporLiquidEquilibriumTest; - /// Optional element 'prodml22:SwellingTest' of XML schema type 'prodml22:SwellingTest' - std::vector SwellingTest; - /// Optional element 'prodml22:SlimTubeTest' of XML schema type 'prodml22:SlimTubeTest' - std::vector SlimTubeTest; - /// Optional element 'prodml22:MultipleContactMiscibilityTest' of XML schema type 'prodml22:MultipleContactMiscibilityTest' - std::vector MultipleContactMiscibilityTest; - /// Optional element 'prodml22:STOAnalysis' of XML schema type 'prodml22:STOAnalysis' - std::vector STOAnalysis; - /// Optional element 'prodml22:InterfacialTensionTest' of XML schema type 'prodml22:InterfacialTensionTest' - std::vector InterfacialTensionTest; - /// Required element 'prodml22:FluidSample' of XML schema type 'eml23:DataObjectReference' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis (-977) +/* Type prodml23__HydrocarbonAnalysis is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:HydrocarbonAnalysis': */ +class SOAP_CMAC prodml23__HydrocarbonAnalysis : public prodml23__FluidAnalysis { + public: + /// Optional element 'prodml23:SampleIntegrityAndPreparation' of XML schema type 'prodml23:SampleIntegrityAndPreparation' + prodml23__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation; + /// Optional element 'prodml23:AtmosphericFlashTestAndCompositionalAnalysis' of XML schema type 'prodml23:AtmosphericFlashTestAndCompositionalAnalysis' + std::vector AtmosphericFlashTestAndCompositionalAnalysis; + /// Optional element 'prodml23:ConstantCompositionExpansionTest' of XML schema type 'prodml23:ConstantCompositionExpansionTest' + std::vector ConstantCompositionExpansionTest; + /// Optional element 'prodml23:SaturationTest' of XML schema type 'prodml23:SaturationTest' + std::vector SaturationTest; + /// Optional element 'prodml23:DifferentialLiberationTest' of XML schema type 'prodml23:DifferentialLiberationTest' + std::vector DifferentialLiberationTest; + /// Optional element 'prodml23:ConstantVolumeDepletionTest' of XML schema type 'prodml23:ConstantVolumeDepletionTest' + std::vector ConstantVolumeDepletionTest; + /// Optional element 'prodml23:SeparatorTest' of XML schema type 'prodml23:FluidSeparatorTest' + std::vector SeparatorTest; + /// Optional element 'prodml23:TransportTest' of XML schema type 'prodml23:OtherMeasurementTest' + std::vector TransportTest; + /// Optional element 'prodml23:VaporLiquidEquilibriumTest' of XML schema type 'prodml23:VaporLiquidEquilibriumTest' + std::vector VaporLiquidEquilibriumTest; + /// Optional element 'prodml23:SwellingTest' of XML schema type 'prodml23:SwellingTest' + std::vector SwellingTest; + /// Optional element 'prodml23:SlimTubeTest' of XML schema type 'prodml23:SlimTubeTest' + std::vector SlimTubeTest; + /// Optional element 'prodml23:MultipleContactMiscibilityTest' of XML schema type 'prodml23:MultipleContactMiscibilityTest' + std::vector MultipleContactMiscibilityTest; + /// Optional element 'prodml23:STOAnalysis' of XML schema type 'prodml23:STOAnalysis' + std::vector STOAnalysis; + /// Optional element 'prodml23:InterfacialTensionTest' of XML schema type 'prodml23:InterfacialTensionTest' + std::vector InterfacialTensionTest; + /// Required element 'prodml23:FluidSample' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSample; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67932,33 +68167,34 @@ class SOAP_CMAC prodml22__HydrocarbonAnalysis : public prodml22__FluidAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HydrocarbonAnalysis, default initialized and not managed by a soap context - virtual prodml22__HydrocarbonAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HydrocarbonAnalysis); } + /// Return a new object of type prodml23__HydrocarbonAnalysis, default initialized and not managed by a soap context + virtual prodml23__HydrocarbonAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HydrocarbonAnalysis); } public: /// Constructor with default initializations - prodml22__HydrocarbonAnalysis() : SampleIntegrityAndPreparation(), AtmosphericFlashTestAndCompositionalAnalysis(), ConstantCompositionExpansionTest(), SaturationTest(), DifferentialLiberationTest(), ConstantVolumeDepletionTest(), SeparatorTest(), TransportTest(), VaporLiquidEquilibriumTest(), SwellingTest(), SlimTubeTest(), MultipleContactMiscibilityTest(), STOAnalysis(), InterfacialTensionTest(), FluidSample() { } + prodml23__HydrocarbonAnalysis() : SampleIntegrityAndPreparation(), AtmosphericFlashTestAndCompositionalAnalysis(), ConstantCompositionExpansionTest(), SaturationTest(), DifferentialLiberationTest(), ConstantVolumeDepletionTest(), SeparatorTest(), TransportTest(), VaporLiquidEquilibriumTest(), SwellingTest(), SlimTubeTest(), MultipleContactMiscibilityTest(), STOAnalysis(), InterfacialTensionTest(), FluidSample() { } /// Destructor - virtual ~prodml22__HydrocarbonAnalysis() { } - /// Friend allocator used by soap_new_prodml22__HydrocarbonAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__HydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HydrocarbonAnalysis() { } + /// Friend allocator used by soap_new_prodml23__HydrocarbonAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__HydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__HydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2121 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis (-987) -/* complex XML schema type 'prodml22:NonHydrocarbonAnalysis': */ -class SOAP_CMAC prodml22__NonHydrocarbonAnalysis : public prodml22__FluidAnalysis { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis (-987) +/* Type prodml23__NonHydrocarbonAnalysis is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:NonHydrocarbonAnalysis': */ +class SOAP_CMAC prodml23__NonHydrocarbonAnalysis : public prodml23__FluidAnalysis { public: - /// Optional element 'prodml22:FluidSample' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FluidSample' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSample; - /// Optional element 'prodml22:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' + /// Optional element 'prodml23:FlowTestActivity' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FlowTestActivity; - /// Optional element 'prodml22:NonHydrocarbonTest' of XML schema type 'prodml22:NonHydrocarbonTest' - std::vector NonHydrocarbonTest; + /// Optional element 'prodml23:NonHydrocarbonTest' of XML schema type 'prodml23:NonHydrocarbonTest' + std::vector NonHydrocarbonTest; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -67971,35 +68207,36 @@ class SOAP_CMAC prodml22__NonHydrocarbonAnalysis : public prodml22__FluidAnalysi virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NonHydrocarbonAnalysis, default initialized and not managed by a soap context - virtual prodml22__NonHydrocarbonAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NonHydrocarbonAnalysis); } + /// Return a new object of type prodml23__NonHydrocarbonAnalysis, default initialized and not managed by a soap context + virtual prodml23__NonHydrocarbonAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NonHydrocarbonAnalysis); } public: /// Constructor with default initializations - prodml22__NonHydrocarbonAnalysis() : FluidSample(), FlowTestActivity(), NonHydrocarbonTest() { } + prodml23__NonHydrocarbonAnalysis() : FluidSample(), FlowTestActivity(), NonHydrocarbonTest() { } /// Destructor - virtual ~prodml22__NonHydrocarbonAnalysis() { } - /// Friend allocator used by soap_new_prodml22__NonHydrocarbonAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__NonHydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NonHydrocarbonAnalysis() { } + /// Friend allocator used by soap_new_prodml23__NonHydrocarbonAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__NonHydrocarbonAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__NonHydrocarbonAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2185 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis (-1019) -/* complex XML schema type 'prodml22:WaterAnalysis': */ -class SOAP_CMAC prodml22__WaterAnalysis : public prodml22__FluidAnalysis { - public: - /// Optional element 'prodml22:SampleIntegrityAndPreparation' of XML schema type 'prodml22:SampleIntegrityAndPreparation' - prodml22__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation; - /// Optional element 'prodml22:WaterAnalysisTest' of XML schema type 'prodml22:WaterAnalysisTest' - std::vector WaterAnalysisTest; - /// Optional element 'prodml22:WaterSampleComponent' of XML schema type 'prodml22:WaterSampleComponent' - std::vector WaterSampleComponent; - /// Required element 'prodml22:FluidSample' of XML schema type 'eml23:DataObjectReference' +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis (-1019) +/* Type prodml23__WaterAnalysis is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:WaterAnalysis': */ +class SOAP_CMAC prodml23__WaterAnalysis : public prodml23__FluidAnalysis { + public: + /// Optional element 'prodml23:SampleIntegrityAndPreparation' of XML schema type 'prodml23:SampleIntegrityAndPreparation' + prodml23__SampleIntegrityAndPreparation *SampleIntegrityAndPreparation; + /// Optional element 'prodml23:WaterAnalysisTest' of XML schema type 'prodml23:WaterAnalysisTest' + std::vector WaterAnalysisTest; + /// Optional element 'prodml23:WaterSampleComponent' of XML schema type 'prodml23:WaterSampleComponent' + std::vector WaterSampleComponent; + /// Required element 'prodml23:FluidSample' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *FluidSample; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68012,29 +68249,30 @@ class SOAP_CMAC prodml22__WaterAnalysis : public prodml22__FluidAnalysis { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WaterAnalysis, default initialized and not managed by a soap context - virtual prodml22__WaterAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WaterAnalysis); } + /// Return a new object of type prodml23__WaterAnalysis, default initialized and not managed by a soap context + virtual prodml23__WaterAnalysis *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WaterAnalysis); } public: /// Constructor with default initializations - prodml22__WaterAnalysis() : SampleIntegrityAndPreparation(), WaterAnalysisTest(), WaterSampleComponent(), FluidSample() { } + prodml23__WaterAnalysis() : SampleIntegrityAndPreparation(), WaterAnalysisTest(), WaterSampleComponent(), FluidSample() { } /// Destructor - virtual ~prodml22__WaterAnalysis() { } - /// Friend allocator used by soap_new_prodml22__WaterAnalysis(struct soap*, int) - friend SOAP_FMAC1 prodml22__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml22__WaterAnalysis(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WaterAnalysis() { } + /// Friend allocator used by soap_new_prodml23__WaterAnalysis(struct soap*, int) + friend SOAP_FMAC1 prodml23__WaterAnalysis * SOAP_FMAC2 soap_instantiate_prodml23__WaterAnalysis(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2203 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest (-1028) -/* complex XML schema type 'prodml22:DrillStemTest': */ -class SOAP_CMAC prodml22__DrillStemTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest (-1028) +/* Type prodml23__DrillStemTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:DrillStemTest': */ +class SOAP_CMAC prodml23__DrillStemTest : public prodml23__FlowTestActivity { public: - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68047,31 +68285,32 @@ class SOAP_CMAC prodml22__DrillStemTest : public prodml22__FlowTestActivity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DrillStemTest, default initialized and not managed by a soap context - virtual prodml22__DrillStemTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DrillStemTest); } + /// Return a new object of type prodml23__DrillStemTest, default initialized and not managed by a soap context + virtual prodml23__DrillStemTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DrillStemTest); } public: /// Constructor with default initializations - prodml22__DrillStemTest() : IntervalMeasurementSet() { } + prodml23__DrillStemTest() : IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__DrillStemTest() { } - /// Friend allocator used by soap_new_prodml22__DrillStemTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml22__DrillStemTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DrillStemTest() { } + /// Friend allocator used by soap_new_prodml23__DrillStemTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__DrillStemTest * SOAP_FMAC2 soap_instantiate_prodml23__DrillStemTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2211 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation (-1032) -/* complex XML schema type 'prodml22:FormationTesterStation': */ -class SOAP_CMAC prodml22__FormationTesterStation : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation (-1032) +/* Type prodml23__FormationTesterStation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:FormationTesterStation': */ +class SOAP_CMAC prodml23__FormationTesterStation : public prodml23__FlowTestActivity { public: - /// Required element 'prodml22:TieInLog' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:TieInLog' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *TieInLog; - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68084,35 +68323,36 @@ class SOAP_CMAC prodml22__FormationTesterStation : public prodml22__FlowTestActi virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FormationTesterStation, default initialized and not managed by a soap context - virtual prodml22__FormationTesterStation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FormationTesterStation); } + /// Return a new object of type prodml23__FormationTesterStation, default initialized and not managed by a soap context + virtual prodml23__FormationTesterStation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FormationTesterStation); } public: /// Constructor with default initializations - prodml22__FormationTesterStation() : TieInLog(), IntervalMeasurementSet() { } + prodml23__FormationTesterStation() : TieInLog(), IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__FormationTesterStation() { } - /// Friend allocator used by soap_new_prodml22__FormationTesterStation(struct soap*, int) - friend SOAP_FMAC1 prodml22__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml22__FormationTesterStation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FormationTesterStation() { } + /// Friend allocator used by soap_new_prodml23__FormationTesterStation(struct soap*, int) + friend SOAP_FMAC1 prodml23__FormationTesterStation * SOAP_FMAC2 soap_instantiate_prodml23__FormationTesterStation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2213 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest (-1033) -/* complex XML schema type 'prodml22:InjectionFlowTest': */ -class SOAP_CMAC prodml22__InjectionFlowTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest (-1033) +/* Type prodml23__InjectionFlowTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:InjectionFlowTest': */ +class SOAP_CMAC prodml23__InjectionFlowTest : public prodml23__FlowTestActivity { public: - /// Optional element 'prodml22:Validated' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:Validated' of XML schema type 'xsd:boolean' bool *Validated; - /// Optional element 'prodml22:WellTestMethod' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:WellTestMethod' of XML schema type 'eml23:String64' std::string *WellTestMethod; - /// Optional element 'prodml22:EffectiveDate' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EffectiveDate' of XML schema type 'eml23:TimeStamp' struct tm *EffectiveDate; - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68125,29 +68365,30 @@ class SOAP_CMAC prodml22__InjectionFlowTest : public prodml22__FlowTestActivity virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InjectionFlowTest, default initialized and not managed by a soap context - virtual prodml22__InjectionFlowTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InjectionFlowTest); } + /// Return a new object of type prodml23__InjectionFlowTest, default initialized and not managed by a soap context + virtual prodml23__InjectionFlowTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InjectionFlowTest); } public: /// Constructor with default initializations - prodml22__InjectionFlowTest() : Validated(), WellTestMethod(), EffectiveDate(), IntervalMeasurementSet() { } + prodml23__InjectionFlowTest() : Validated(), WellTestMethod(), EffectiveDate(), IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__InjectionFlowTest() { } - /// Friend allocator used by soap_new_prodml22__InjectionFlowTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__InjectionFlowTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InjectionFlowTest() { } + /// Friend allocator used by soap_new_prodml23__InjectionFlowTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__InjectionFlowTest * SOAP_FMAC2 soap_instantiate_prodml23__InjectionFlowTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2215 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest (-1034) -/* complex XML schema type 'prodml22:InterwellTest': */ -class SOAP_CMAC prodml22__InterwellTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest (-1034) +/* Type prodml23__InterwellTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:InterwellTest': */ +class SOAP_CMAC prodml23__InterwellTest : public prodml23__FlowTestActivity { public: - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - std::vector IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + std::vector IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68160,35 +68401,36 @@ class SOAP_CMAC prodml22__InterwellTest : public prodml22__FlowTestActivity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InterwellTest, default initialized and not managed by a soap context - virtual prodml22__InterwellTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InterwellTest); } + /// Return a new object of type prodml23__InterwellTest, default initialized and not managed by a soap context + virtual prodml23__InterwellTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InterwellTest); } public: /// Constructor with default initializations - prodml22__InterwellTest() : IntervalMeasurementSet() { } + prodml23__InterwellTest() : IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__InterwellTest() { } - /// Friend allocator used by soap_new_prodml22__InterwellTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml22__InterwellTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InterwellTest() { } + /// Friend allocator used by soap_new_prodml23__InterwellTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__InterwellTest * SOAP_FMAC2 soap_instantiate_prodml23__InterwellTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2219 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest (-1036) -/* complex XML schema type 'prodml22:ProductionFlowTest': */ -class SOAP_CMAC prodml22__ProductionFlowTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest (-1036) +/* Type prodml23__ProductionFlowTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ProductionFlowTest': */ +class SOAP_CMAC prodml23__ProductionFlowTest : public prodml23__FlowTestActivity { public: - /// Optional element 'prodml22:Validated' of XML schema type 'xsd:boolean' + /// Optional element 'prodml23:Validated' of XML schema type 'xsd:boolean' bool *Validated; - /// Optional element 'prodml22:WellTestMethod' of XML schema type 'eml23:String64' + /// Optional element 'prodml23:WellTestMethod' of XML schema type 'eml23:String64' std::string *WellTestMethod; - /// Optional element 'prodml22:EffectiveDate' of XML schema type 'eml23:TimeStamp' + /// Optional element 'prodml23:EffectiveDate' of XML schema type 'eml23:TimeStamp' struct tm *EffectiveDate; - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68201,29 +68443,30 @@ class SOAP_CMAC prodml22__ProductionFlowTest : public prodml22__FlowTestActivity virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductionFlowTest, default initialized and not managed by a soap context - virtual prodml22__ProductionFlowTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductionFlowTest); } + /// Return a new object of type prodml23__ProductionFlowTest, default initialized and not managed by a soap context + virtual prodml23__ProductionFlowTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductionFlowTest); } public: /// Constructor with default initializations - prodml22__ProductionFlowTest() : Validated(), WellTestMethod(), EffectiveDate(), IntervalMeasurementSet() { } + prodml23__ProductionFlowTest() : Validated(), WellTestMethod(), EffectiveDate(), IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__ProductionFlowTest() { } - /// Friend allocator used by soap_new_prodml22__ProductionFlowTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml22__ProductionFlowTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductionFlowTest() { } + /// Friend allocator used by soap_new_prodml23__ProductionFlowTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductionFlowTest * SOAP_FMAC2 soap_instantiate_prodml23__ProductionFlowTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2221 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest (-1037) -/* complex XML schema type 'prodml22:ProductionTransientTest': */ -class SOAP_CMAC prodml22__ProductionTransientTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest (-1037) +/* Type prodml23__ProductionTransientTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:ProductionTransientTest': */ +class SOAP_CMAC prodml23__ProductionTransientTest : public prodml23__FlowTestActivity { public: - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68236,31 +68479,32 @@ class SOAP_CMAC prodml22__ProductionTransientTest : public prodml22__FlowTestAct virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ProductionTransientTest, default initialized and not managed by a soap context - virtual prodml22__ProductionTransientTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ProductionTransientTest); } + /// Return a new object of type prodml23__ProductionTransientTest, default initialized and not managed by a soap context + virtual prodml23__ProductionTransientTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ProductionTransientTest); } public: /// Constructor with default initializations - prodml22__ProductionTransientTest() : IntervalMeasurementSet() { } + prodml23__ProductionTransientTest() : IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__ProductionTransientTest() { } - /// Friend allocator used by soap_new_prodml22__ProductionTransientTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodml22__ProductionTransientTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ProductionTransientTest() { } + /// Friend allocator used by soap_new_prodml23__ProductionTransientTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__ProductionTransientTest * SOAP_FMAC2 soap_instantiate_prodml23__ProductionTransientTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2227 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest (-1040) -/* complex XML schema type 'prodml22:VerticalInterferenceTest': */ -class SOAP_CMAC prodml22__VerticalInterferenceTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest (-1040) +/* Type prodml23__VerticalInterferenceTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:VerticalInterferenceTest': */ +class SOAP_CMAC prodml23__VerticalInterferenceTest : public prodml23__FlowTestActivity { public: - /// Required element 'prodml22:TieInLog' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:TieInLog' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *TieInLog; - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - std::vector IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + std::vector IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68273,29 +68517,30 @@ class SOAP_CMAC prodml22__VerticalInterferenceTest : public prodml22__FlowTestAc virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__VerticalInterferenceTest, default initialized and not managed by a soap context - virtual prodml22__VerticalInterferenceTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__VerticalInterferenceTest); } + /// Return a new object of type prodml23__VerticalInterferenceTest, default initialized and not managed by a soap context + virtual prodml23__VerticalInterferenceTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__VerticalInterferenceTest); } public: /// Constructor with default initializations - prodml22__VerticalInterferenceTest() : TieInLog(), IntervalMeasurementSet() { } + prodml23__VerticalInterferenceTest() : TieInLog(), IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__VerticalInterferenceTest() { } - /// Friend allocator used by soap_new_prodml22__VerticalInterferenceTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prodml22__VerticalInterferenceTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__VerticalInterferenceTest() { } + /// Friend allocator used by soap_new_prodml23__VerticalInterferenceTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__VerticalInterferenceTest * SOAP_FMAC2 soap_instantiate_prodml23__VerticalInterferenceTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2229 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest (-1041) -/* complex XML schema type 'prodml22:WaterLevelTest': */ -class SOAP_CMAC prodml22__WaterLevelTest : public prodml22__FlowTestActivity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest (-1041) +/* Type prodml23__WaterLevelTest is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ +/* complex XML schema type 'prodml23:WaterLevelTest': */ +class SOAP_CMAC prodml23__WaterLevelTest : public prodml23__FlowTestActivity { public: - /// Required element 'prodml22:IntervalMeasurementSet' of XML schema type 'prodml22:FlowTestMeasurementSet' - prodml22__FlowTestMeasurementSet *IntervalMeasurementSet; + /// Required element 'prodml23:IntervalMeasurementSet' of XML schema type 'prodml23:FlowTestMeasurementSet' + prodml23__FlowTestMeasurementSet *IntervalMeasurementSet; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68308,29 +68553,29 @@ class SOAP_CMAC prodml22__WaterLevelTest : public prodml22__FlowTestActivity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__WaterLevelTest, default initialized and not managed by a soap context - virtual prodml22__WaterLevelTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__WaterLevelTest); } + /// Return a new object of type prodml23__WaterLevelTest, default initialized and not managed by a soap context + virtual prodml23__WaterLevelTest *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__WaterLevelTest); } public: /// Constructor with default initializations - prodml22__WaterLevelTest() : IntervalMeasurementSet() { } + prodml23__WaterLevelTest() : IntervalMeasurementSet() { } /// Destructor - virtual ~prodml22__WaterLevelTest() { } - /// Friend allocator used by soap_new_prodml22__WaterLevelTest(struct soap*, int) - friend SOAP_FMAC1 prodml22__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml22__WaterLevelTest(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__WaterLevelTest() { } + /// Friend allocator used by soap_new_prodml23__WaterLevelTest(struct soap*, int) + friend SOAP_FMAC1 prodml23__WaterLevelTest * SOAP_FMAC2 soap_instantiate_prodml23__WaterLevelTest(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2261 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData (-1057) -/* complex XML schema type 'prodml22:DeconvolvedFlowData': */ -class SOAP_CMAC prodml22__DeconvolvedFlowData : public prodml22__AbstractPtaFlowData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData (-1057) +/* complex XML schema type 'prodml23:DeconvolvedFlowData': */ +class SOAP_CMAC prodml23__DeconvolvedFlowData : public prodml23__AbstractPtaFlowData { public: - /// Required element 'prodml22:Deconvolution' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:Deconvolution' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Deconvolution; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68343,29 +68588,29 @@ class SOAP_CMAC prodml22__DeconvolvedFlowData : public prodml22__AbstractPtaFlow virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeconvolvedFlowData, default initialized and not managed by a soap context - virtual prodml22__DeconvolvedFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeconvolvedFlowData); } + /// Return a new object of type prodml23__DeconvolvedFlowData, default initialized and not managed by a soap context + virtual prodml23__DeconvolvedFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeconvolvedFlowData); } public: /// Constructor with default initializations - prodml22__DeconvolvedFlowData() : Deconvolution() { } + prodml23__DeconvolvedFlowData() : Deconvolution() { } /// Destructor - virtual ~prodml22__DeconvolvedFlowData() { } - /// Friend allocator used by soap_new_prodml22__DeconvolvedFlowData(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolvedFlowData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeconvolvedFlowData() { } + /// Friend allocator used by soap_new_prodml23__DeconvolvedFlowData(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeconvolvedFlowData * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolvedFlowData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2263 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData (-1058) -/* complex XML schema type 'prodml22:DeconvolvedPressureData': */ -class SOAP_CMAC prodml22__DeconvolvedPressureData : public prodml22__AbstractPtaPressureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData (-1058) +/* complex XML schema type 'prodml23:DeconvolvedPressureData': */ +class SOAP_CMAC prodml23__DeconvolvedPressureData : public prodml23__AbstractPtaPressureData { public: - /// Required element 'prodml22:Deconvolution' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:Deconvolution' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *Deconvolution; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68378,26 +68623,26 @@ class SOAP_CMAC prodml22__DeconvolvedPressureData : public prodml22__AbstractPta virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeconvolvedPressureData, default initialized and not managed by a soap context - virtual prodml22__DeconvolvedPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeconvolvedPressureData); } + /// Return a new object of type prodml23__DeconvolvedPressureData, default initialized and not managed by a soap context + virtual prodml23__DeconvolvedPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeconvolvedPressureData); } public: /// Constructor with default initializations - prodml22__DeconvolvedPressureData() : Deconvolution() { } + prodml23__DeconvolvedPressureData() : Deconvolution() { } /// Destructor - virtual ~prodml22__DeconvolvedPressureData() { } - /// Friend allocator used by soap_new_prodml22__DeconvolvedPressureData(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodml22__DeconvolvedPressureData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeconvolvedPressureData() { } + /// Friend allocator used by soap_new_prodml23__DeconvolvedPressureData(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeconvolvedPressureData * SOAP_FMAC2 soap_instantiate_prodml23__DeconvolvedPressureData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2279 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData (-1066) -/* complex XML schema type 'prodml22:MeasuredFlowData': */ -class SOAP_CMAC prodml22__MeasuredFlowData : public prodml22__AbstractPtaFlowData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData (-1066) +/* complex XML schema type 'prodml23:MeasuredFlowData': */ +class SOAP_CMAC prodml23__MeasuredFlowData : public prodml23__AbstractPtaFlowData { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68410,26 +68655,26 @@ class SOAP_CMAC prodml22__MeasuredFlowData : public prodml22__AbstractPtaFlowDat virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MeasuredFlowData, default initialized and not managed by a soap context - virtual prodml22__MeasuredFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MeasuredFlowData); } + /// Return a new object of type prodml23__MeasuredFlowData, default initialized and not managed by a soap context + virtual prodml23__MeasuredFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MeasuredFlowData); } public: /// Constructor with default initializations - prodml22__MeasuredFlowData() { } + prodml23__MeasuredFlowData() { } /// Destructor - virtual ~prodml22__MeasuredFlowData() { } - /// Friend allocator used by soap_new_prodml22__MeasuredFlowData(struct soap*, int) - friend SOAP_FMAC1 prodml22__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredFlowData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MeasuredFlowData() { } + /// Friend allocator used by soap_new_prodml23__MeasuredFlowData(struct soap*, int) + friend SOAP_FMAC1 prodml23__MeasuredFlowData * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredFlowData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2281 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData (-1067) -/* complex XML schema type 'prodml22:MeasuredPressureData': */ -class SOAP_CMAC prodml22__MeasuredPressureData : public prodml22__AbstractPtaPressureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData (-1067) +/* complex XML schema type 'prodml23:MeasuredPressureData': */ +class SOAP_CMAC prodml23__MeasuredPressureData : public prodml23__AbstractPtaPressureData { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68442,26 +68687,26 @@ class SOAP_CMAC prodml22__MeasuredPressureData : public prodml22__AbstractPtaPre virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__MeasuredPressureData, default initialized and not managed by a soap context - virtual prodml22__MeasuredPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__MeasuredPressureData); } + /// Return a new object of type prodml23__MeasuredPressureData, default initialized and not managed by a soap context + virtual prodml23__MeasuredPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__MeasuredPressureData); } public: /// Constructor with default initializations - prodml22__MeasuredPressureData() { } + prodml23__MeasuredPressureData() { } /// Destructor - virtual ~prodml22__MeasuredPressureData() { } - /// Friend allocator used by soap_new_prodml22__MeasuredPressureData(struct soap*, int) - friend SOAP_FMAC1 prodml22__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml22__MeasuredPressureData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__MeasuredPressureData() { } + /// Friend allocator used by soap_new_prodml23__MeasuredPressureData(struct soap*, int) + friend SOAP_FMAC1 prodml23__MeasuredPressureData * SOAP_FMAC2 soap_instantiate_prodml23__MeasuredPressureData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2283 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData (-1068) -/* complex XML schema type 'prodml22:OutputFlowData': */ -class SOAP_CMAC prodml22__OutputFlowData : public prodml22__AbstractPtaFlowData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData (-1068) +/* complex XML schema type 'prodml23:OutputFlowData': */ +class SOAP_CMAC prodml23__OutputFlowData : public prodml23__AbstractPtaFlowData { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68474,26 +68719,26 @@ class SOAP_CMAC prodml22__OutputFlowData : public prodml22__AbstractPtaFlowData virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OutputFlowData, default initialized and not managed by a soap context - virtual prodml22__OutputFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OutputFlowData); } + /// Return a new object of type prodml23__OutputFlowData, default initialized and not managed by a soap context + virtual prodml23__OutputFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OutputFlowData); } public: /// Constructor with default initializations - prodml22__OutputFlowData() { } + prodml23__OutputFlowData() { } /// Destructor - virtual ~prodml22__OutputFlowData() { } - /// Friend allocator used by soap_new_prodml22__OutputFlowData(struct soap*, int) - friend SOAP_FMAC1 prodml22__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml22__OutputFlowData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OutputFlowData() { } + /// Friend allocator used by soap_new_prodml23__OutputFlowData(struct soap*, int) + friend SOAP_FMAC1 prodml23__OutputFlowData * SOAP_FMAC2 soap_instantiate_prodml23__OutputFlowData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2285 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData (-1069) -/* complex XML schema type 'prodml22:OutputPressureData': */ -class SOAP_CMAC prodml22__OutputPressureData : public prodml22__AbstractPtaPressureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData (-1069) +/* complex XML schema type 'prodml23:OutputPressureData': */ +class SOAP_CMAC prodml23__OutputPressureData : public prodml23__AbstractPtaPressureData { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68506,29 +68751,29 @@ class SOAP_CMAC prodml22__OutputPressureData : public prodml22__AbstractPtaPress virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OutputPressureData, default initialized and not managed by a soap context - virtual prodml22__OutputPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OutputPressureData); } + /// Return a new object of type prodml23__OutputPressureData, default initialized and not managed by a soap context + virtual prodml23__OutputPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__OutputPressureData); } public: /// Constructor with default initializations - prodml22__OutputPressureData() { } + prodml23__OutputPressureData() { } /// Destructor - virtual ~prodml22__OutputPressureData() { } - /// Friend allocator used by soap_new_prodml22__OutputPressureData(struct soap*, int) - friend SOAP_FMAC1 prodml22__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml22__OutputPressureData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__OutputPressureData() { } + /// Friend allocator used by soap_new_prodml23__OutputPressureData(struct soap*, int) + friend SOAP_FMAC1 prodml23__OutputPressureData * SOAP_FMAC2 soap_instantiate_prodml23__OutputPressureData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2287 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData (-1070) -/* complex XML schema type 'prodml22:PreProcessedFlowData': */ -class SOAP_CMAC prodml22__PreProcessedFlowData : public prodml22__AbstractPtaFlowData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData (-1070) +/* complex XML schema type 'prodml23:PreProcessedFlowData': */ +class SOAP_CMAC prodml23__PreProcessedFlowData : public prodml23__AbstractPtaFlowData { public: - /// Required element 'prodml22:PreProcess' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:PreProcess' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *PreProcess; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68541,29 +68786,29 @@ class SOAP_CMAC prodml22__PreProcessedFlowData : public prodml22__AbstractPtaFlo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PreProcessedFlowData, default initialized and not managed by a soap context - virtual prodml22__PreProcessedFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PreProcessedFlowData); } + /// Return a new object of type prodml23__PreProcessedFlowData, default initialized and not managed by a soap context + virtual prodml23__PreProcessedFlowData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PreProcessedFlowData); } public: /// Constructor with default initializations - prodml22__PreProcessedFlowData() : PreProcess() { } + prodml23__PreProcessedFlowData() : PreProcess() { } /// Destructor - virtual ~prodml22__PreProcessedFlowData() { } - /// Friend allocator used by soap_new_prodml22__PreProcessedFlowData(struct soap*, int) - friend SOAP_FMAC1 prodml22__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml22__PreProcessedFlowData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PreProcessedFlowData() { } + /// Friend allocator used by soap_new_prodml23__PreProcessedFlowData(struct soap*, int) + friend SOAP_FMAC1 prodml23__PreProcessedFlowData * SOAP_FMAC2 soap_instantiate_prodml23__PreProcessedFlowData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2289 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData (-1071) -/* complex XML schema type 'prodml22:PreProcessedPressureData': */ -class SOAP_CMAC prodml22__PreProcessedPressureData : public prodml22__AbstractPtaPressureData { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData (-1071) +/* complex XML schema type 'prodml23:PreProcessedPressureData': */ +class SOAP_CMAC prodml23__PreProcessedPressureData : public prodml23__AbstractPtaPressureData { public: - /// Required element 'prodml22:PreProcess' of XML schema type 'eml23:DataObjectReference' + /// Required element 'prodml23:PreProcess' of XML schema type 'eml23:DataObjectReference' eml23__DataObjectReference *PreProcess; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68576,31 +68821,31 @@ class SOAP_CMAC prodml22__PreProcessedPressureData : public prodml22__AbstractPt virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PreProcessedPressureData, default initialized and not managed by a soap context - virtual prodml22__PreProcessedPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PreProcessedPressureData); } + /// Return a new object of type prodml23__PreProcessedPressureData, default initialized and not managed by a soap context + virtual prodml23__PreProcessedPressureData *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PreProcessedPressureData); } public: /// Constructor with default initializations - prodml22__PreProcessedPressureData() : PreProcess() { } + prodml23__PreProcessedPressureData() : PreProcess() { } /// Destructor - virtual ~prodml22__PreProcessedPressureData() { } - /// Friend allocator used by soap_new_prodml22__PreProcessedPressureData(struct soap*, int) - friend SOAP_FMAC1 prodml22__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prodml22__PreProcessedPressureData(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PreProcessedPressureData() { } + /// Friend allocator used by soap_new_prodml23__PreProcessedPressureData(struct soap*, int) + friend SOAP_FMAC1 prodml23__PreProcessedPressureData * SOAP_FMAC2 soap_instantiate_prodml23__PreProcessedPressureData(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2319 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel (-1086) -/* complex XML schema type 'prodml22:ChangingStorageFairModel': */ -class SOAP_CMAC prodml22__ChangingStorageFairModel : public prodml22__WellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel (-1086) +/* complex XML schema type 'prodml23:ChangingStorageFairModel': */ +class SOAP_CMAC prodml23__ChangingStorageFairModel : public prodml23__WellboreBaseModel { public: - /// Required element 'prodml22:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml22:RatioInitialToFinalWellboreStorage' - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; - /// Required element 'prodml22:DeltaTimeStorageChanges' of XML schema type 'prodml22:DeltaTimeStorageChanges' - prodml22__DeltaTimeStorageChanges *DeltaTimeStorageChanges; + /// Required element 'prodml23:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml23:RatioInitialToFinalWellboreStorage' + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; + /// Required element 'prodml23:DeltaTimeStorageChanges' of XML schema type 'prodml23:DeltaTimeStorageChanges' + prodml23__DeltaTimeStorageChanges *DeltaTimeStorageChanges; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68613,31 +68858,31 @@ class SOAP_CMAC prodml22__ChangingStorageFairModel : public prodml22__WellboreBa virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ChangingStorageFairModel, default initialized and not managed by a soap context - virtual prodml22__ChangingStorageFairModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ChangingStorageFairModel); } + /// Return a new object of type prodml23__ChangingStorageFairModel, default initialized and not managed by a soap context + virtual prodml23__ChangingStorageFairModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ChangingStorageFairModel); } public: /// Constructor with default initializations - prodml22__ChangingStorageFairModel() : RatioInitialToFinalWellboreStorage(), DeltaTimeStorageChanges() { } + prodml23__ChangingStorageFairModel() : RatioInitialToFinalWellboreStorage(), DeltaTimeStorageChanges() { } /// Destructor - virtual ~prodml22__ChangingStorageFairModel() { } - /// Friend allocator used by soap_new_prodml22__ChangingStorageFairModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageFairModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ChangingStorageFairModel() { } + /// Friend allocator used by soap_new_prodml23__ChangingStorageFairModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ChangingStorageFairModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageFairModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2321 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel (-1087) -/* complex XML schema type 'prodml22:ChangingStorageHegemanModel': */ -class SOAP_CMAC prodml22__ChangingStorageHegemanModel : public prodml22__WellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel (-1087) +/* complex XML schema type 'prodml23:ChangingStorageHegemanModel': */ +class SOAP_CMAC prodml23__ChangingStorageHegemanModel : public prodml23__WellboreBaseModel { public: - /// Required element 'prodml22:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml22:RatioInitialToFinalWellboreStorage' - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; - /// Required element 'prodml22:DeltaTimeStorageChanges' of XML schema type 'prodml22:DeltaTimeStorageChanges' - prodml22__DeltaTimeStorageChanges *DeltaTimeStorageChanges; + /// Required element 'prodml23:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml23:RatioInitialToFinalWellboreStorage' + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; + /// Required element 'prodml23:DeltaTimeStorageChanges' of XML schema type 'prodml23:DeltaTimeStorageChanges' + prodml23__DeltaTimeStorageChanges *DeltaTimeStorageChanges; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68650,31 +68895,31 @@ class SOAP_CMAC prodml22__ChangingStorageHegemanModel : public prodml22__Wellbor virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ChangingStorageHegemanModel, default initialized and not managed by a soap context - virtual prodml22__ChangingStorageHegemanModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ChangingStorageHegemanModel); } + /// Return a new object of type prodml23__ChangingStorageHegemanModel, default initialized and not managed by a soap context + virtual prodml23__ChangingStorageHegemanModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ChangingStorageHegemanModel); } public: /// Constructor with default initializations - prodml22__ChangingStorageHegemanModel() : RatioInitialToFinalWellboreStorage(), DeltaTimeStorageChanges() { } + prodml23__ChangingStorageHegemanModel() : RatioInitialToFinalWellboreStorage(), DeltaTimeStorageChanges() { } /// Destructor - virtual ~prodml22__ChangingStorageHegemanModel() { } - /// Friend allocator used by soap_new_prodml22__ChangingStorageHegemanModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageHegemanModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ChangingStorageHegemanModel() { } + /// Friend allocator used by soap_new_prodml23__ChangingStorageHegemanModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ChangingStorageHegemanModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageHegemanModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2323 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel (-1088) -/* complex XML schema type 'prodml22:ChangingStorageSpiveyFissuresModel': */ -class SOAP_CMAC prodml22__ChangingStorageSpiveyFissuresModel : public prodml22__WellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel (-1088) +/* complex XML schema type 'prodml23:ChangingStorageSpiveyFissuresModel': */ +class SOAP_CMAC prodml23__ChangingStorageSpiveyFissuresModel : public prodml23__WellboreBaseModel { public: - /// Required element 'prodml22:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml22:RatioInitialToFinalWellboreStorage' - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; - /// Required element 'prodml22:LeakSkin' of XML schema type 'prodml22:LeakSkin' - prodml22__LeakSkin *LeakSkin; + /// Required element 'prodml23:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml23:RatioInitialToFinalWellboreStorage' + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; + /// Required element 'prodml23:LeakSkin' of XML schema type 'prodml23:LeakSkin' + prodml23__LeakSkin *LeakSkin; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68687,31 +68932,31 @@ class SOAP_CMAC prodml22__ChangingStorageSpiveyFissuresModel : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ChangingStorageSpiveyFissuresModel, default initialized and not managed by a soap context - virtual prodml22__ChangingStorageSpiveyFissuresModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ChangingStorageSpiveyFissuresModel); } + /// Return a new object of type prodml23__ChangingStorageSpiveyFissuresModel, default initialized and not managed by a soap context + virtual prodml23__ChangingStorageSpiveyFissuresModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ChangingStorageSpiveyFissuresModel); } public: /// Constructor with default initializations - prodml22__ChangingStorageSpiveyFissuresModel() : RatioInitialToFinalWellboreStorage(), LeakSkin() { } + prodml23__ChangingStorageSpiveyFissuresModel() : RatioInitialToFinalWellboreStorage(), LeakSkin() { } /// Destructor - virtual ~prodml22__ChangingStorageSpiveyFissuresModel() { } - /// Friend allocator used by soap_new_prodml22__ChangingStorageSpiveyFissuresModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageSpiveyFissuresModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ChangingStorageSpiveyFissuresModel() { } + /// Friend allocator used by soap_new_prodml23__ChangingStorageSpiveyFissuresModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ChangingStorageSpiveyFissuresModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageSpiveyFissuresModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2325 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel (-1089) -/* complex XML schema type 'prodml22:ChangingStorageSpiveyPackerModel': */ -class SOAP_CMAC prodml22__ChangingStorageSpiveyPackerModel : public prodml22__WellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel (-1089) +/* complex XML schema type 'prodml23:ChangingStorageSpiveyPackerModel': */ +class SOAP_CMAC prodml23__ChangingStorageSpiveyPackerModel : public prodml23__WellboreBaseModel { public: - /// Required element 'prodml22:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml22:RatioInitialToFinalWellboreStorage' - prodml22__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; - /// Required element 'prodml22:LeakSkin' of XML schema type 'prodml22:LeakSkin' - prodml22__LeakSkin *LeakSkin; + /// Required element 'prodml23:RatioInitialToFinalWellboreStorage' of XML schema type 'prodml23:RatioInitialToFinalWellboreStorage' + prodml23__RatioInitialToFinalWellboreStorage *RatioInitialToFinalWellboreStorage; + /// Required element 'prodml23:LeakSkin' of XML schema type 'prodml23:LeakSkin' + prodml23__LeakSkin *LeakSkin; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68724,29 +68969,29 @@ class SOAP_CMAC prodml22__ChangingStorageSpiveyPackerModel : public prodml22__We virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ChangingStorageSpiveyPackerModel, default initialized and not managed by a soap context - virtual prodml22__ChangingStorageSpiveyPackerModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ChangingStorageSpiveyPackerModel); } + /// Return a new object of type prodml23__ChangingStorageSpiveyPackerModel, default initialized and not managed by a soap context + virtual prodml23__ChangingStorageSpiveyPackerModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ChangingStorageSpiveyPackerModel); } public: /// Constructor with default initializations - prodml22__ChangingStorageSpiveyPackerModel() : RatioInitialToFinalWellboreStorage(), LeakSkin() { } + prodml23__ChangingStorageSpiveyPackerModel() : RatioInitialToFinalWellboreStorage(), LeakSkin() { } /// Destructor - virtual ~prodml22__ChangingStorageSpiveyPackerModel() { } - /// Friend allocator used by soap_new_prodml22__ChangingStorageSpiveyPackerModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instantiate_prodml22__ChangingStorageSpiveyPackerModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ChangingStorageSpiveyPackerModel() { } + /// Friend allocator used by soap_new_prodml23__ChangingStorageSpiveyPackerModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ChangingStorageSpiveyPackerModel * SOAP_FMAC2 soap_instantiate_prodml23__ChangingStorageSpiveyPackerModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2327 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel (-1090) -/* complex XML schema type 'prodml22:ClosedCircleModel': */ -class SOAP_CMAC prodml22__ClosedCircleModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel (-1090) +/* complex XML schema type 'prodml23:ClosedCircleModel': */ +class SOAP_CMAC prodml23__ClosedCircleModel : public prodml23__BoundaryBaseModel { public: - /// Required element 'prodml22:Boundary1Type' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type Boundary1Type; + /// Required element 'prodml23:Boundary1Type' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type Boundary1Type; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68759,49 +69004,49 @@ class SOAP_CMAC prodml22__ClosedCircleModel : public prodml22__BoundaryBaseModel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ClosedCircleModel, default initialized and not managed by a soap context - virtual prodml22__ClosedCircleModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ClosedCircleModel); } + /// Return a new object of type prodml23__ClosedCircleModel, default initialized and not managed by a soap context + virtual prodml23__ClosedCircleModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ClosedCircleModel); } public: /// Constructor with default initializations - prodml22__ClosedCircleModel() : Boundary1Type() { } + prodml23__ClosedCircleModel() : Boundary1Type() { } /// Destructor - virtual ~prodml22__ClosedCircleModel() { } - /// Friend allocator used by soap_new_prodml22__ClosedCircleModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml22__ClosedCircleModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ClosedCircleModel() { } + /// Friend allocator used by soap_new_prodml23__ClosedCircleModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ClosedCircleModel * SOAP_FMAC2 soap_instantiate_prodml23__ClosedCircleModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2329 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel (-1091) -/* complex XML schema type 'prodml22:ClosedRectangleModel': */ -class SOAP_CMAC prodml22__ClosedRectangleModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel (-1091) +/* complex XML schema type 'prodml23:ClosedRectangleModel': */ +class SOAP_CMAC prodml23__ClosedRectangleModel : public prodml23__BoundaryBaseModel { public: - /// Optional element 'prodml22:DrainageAreaMeasured' of XML schema type 'prodml22:DrainageAreaMeasured' - prodml22__DrainageAreaMeasured *DrainageAreaMeasured; - /// Optional element 'prodml22:PoreVolumeMeasured' of XML schema type 'prodml22:PoreVolumeMeasured' - prodml22__PoreVolumeMeasured *PoreVolumeMeasured; - /// Required element 'prodml22:DistanceToBoundary1' of XML schema type 'prodml22:DistanceToBoundary1' - prodml22__DistanceToBoundary1 *DistanceToBoundary1; - /// Required element 'prodml22:DistanceToBoundary2' of XML schema type 'prodml22:DistanceToBoundary2' - prodml22__DistanceToBoundary2 *DistanceToBoundary2; - /// Required element 'prodml22:DistanceToBoundary3' of XML schema type 'prodml22:DistanceToBoundary3' - prodml22__DistanceToBoundary3 *DistanceToBoundary3; - /// Required element 'prodml22:DistanceToBoundary4' of XML schema type 'prodml22:DistanceToBoundary4' - prodml22__DistanceToBoundary4 *DistanceToBoundary4; - /// Optional element 'prodml22:OrientationOfNormalToBoundary1' of XML schema type 'prodml22:OrientationOfNormalToBoundary1' - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; - /// Required element 'prodml22:Boundary1Type' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type Boundary1Type; - /// Required element 'prodml22:Boundary2Type' of XML schema type 'prodml22:Boundary2Type' - prodml22__Boundary2Type Boundary2Type; - /// Required element 'prodml22:Boundary3Type' of XML schema type 'prodml22:Boundary3Type' - prodml22__Boundary3Type Boundary3Type; - /// Required element 'prodml22:Boundary4Type' of XML schema type 'prodml22:Boundary4Type' - prodml22__Boundary4Type Boundary4Type; + /// Optional element 'prodml23:DrainageAreaMeasured' of XML schema type 'prodml23:DrainageAreaMeasured' + prodml23__DrainageAreaMeasured *DrainageAreaMeasured; + /// Optional element 'prodml23:PoreVolumeMeasured' of XML schema type 'prodml23:PoreVolumeMeasured' + prodml23__PoreVolumeMeasured *PoreVolumeMeasured; + /// Required element 'prodml23:DistanceToBoundary1' of XML schema type 'prodml23:DistanceToBoundary1' + prodml23__DistanceToBoundary1 *DistanceToBoundary1; + /// Required element 'prodml23:DistanceToBoundary2' of XML schema type 'prodml23:DistanceToBoundary2' + prodml23__DistanceToBoundary2 *DistanceToBoundary2; + /// Required element 'prodml23:DistanceToBoundary3' of XML schema type 'prodml23:DistanceToBoundary3' + prodml23__DistanceToBoundary3 *DistanceToBoundary3; + /// Required element 'prodml23:DistanceToBoundary4' of XML schema type 'prodml23:DistanceToBoundary4' + prodml23__DistanceToBoundary4 *DistanceToBoundary4; + /// Optional element 'prodml23:OrientationOfNormalToBoundary1' of XML schema type 'prodml23:OrientationOfNormalToBoundary1' + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; + /// Required element 'prodml23:Boundary1Type' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type Boundary1Type; + /// Required element 'prodml23:Boundary2Type' of XML schema type 'prodml23:Boundary2Type' + prodml23__Boundary2Type Boundary2Type; + /// Required element 'prodml23:Boundary3Type' of XML schema type 'prodml23:Boundary3Type' + prodml23__Boundary3Type Boundary3Type; + /// Required element 'prodml23:Boundary4Type' of XML schema type 'prodml23:Boundary4Type' + prodml23__Boundary4Type Boundary4Type; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68814,26 +69059,26 @@ class SOAP_CMAC prodml22__ClosedRectangleModel : public prodml22__BoundaryBaseMo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ClosedRectangleModel, default initialized and not managed by a soap context - virtual prodml22__ClosedRectangleModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ClosedRectangleModel); } + /// Return a new object of type prodml23__ClosedRectangleModel, default initialized and not managed by a soap context + virtual prodml23__ClosedRectangleModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ClosedRectangleModel); } public: /// Constructor with default initializations - prodml22__ClosedRectangleModel() : DrainageAreaMeasured(), PoreVolumeMeasured(), DistanceToBoundary1(), DistanceToBoundary2(), DistanceToBoundary3(), DistanceToBoundary4(), OrientationOfNormalToBoundary1(), Boundary1Type(), Boundary2Type(), Boundary3Type(), Boundary4Type() { } + prodml23__ClosedRectangleModel() : DrainageAreaMeasured(), PoreVolumeMeasured(), DistanceToBoundary1(), DistanceToBoundary2(), DistanceToBoundary3(), DistanceToBoundary4(), OrientationOfNormalToBoundary1(), Boundary1Type(), Boundary2Type(), Boundary3Type(), Boundary4Type() { } /// Destructor - virtual ~prodml22__ClosedRectangleModel() { } - /// Friend allocator used by soap_new_prodml22__ClosedRectangleModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml22__ClosedRectangleModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ClosedRectangleModel() { } + /// Friend allocator used by soap_new_prodml23__ClosedRectangleModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ClosedRectangleModel * SOAP_FMAC2 soap_instantiate_prodml23__ClosedRectangleModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2331 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel (-1092) -/* complex XML schema type 'prodml22:ConstantStorageModel': */ -class SOAP_CMAC prodml22__ConstantStorageModel : public prodml22__WellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel (-1092) +/* complex XML schema type 'prodml23:ConstantStorageModel': */ +class SOAP_CMAC prodml23__ConstantStorageModel : public prodml23__WellboreBaseModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68846,33 +69091,33 @@ class SOAP_CMAC prodml22__ConstantStorageModel : public prodml22__WellboreBaseMo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__ConstantStorageModel, default initialized and not managed by a soap context - virtual prodml22__ConstantStorageModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__ConstantStorageModel); } + /// Return a new object of type prodml23__ConstantStorageModel, default initialized and not managed by a soap context + virtual prodml23__ConstantStorageModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__ConstantStorageModel); } public: /// Constructor with default initializations - prodml22__ConstantStorageModel() { } + prodml23__ConstantStorageModel() { } /// Destructor - virtual ~prodml22__ConstantStorageModel() { } - /// Friend allocator used by soap_new_prodml22__ConstantStorageModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml22__ConstantStorageModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__ConstantStorageModel() { } + /// Friend allocator used by soap_new_prodml23__ConstantStorageModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__ConstantStorageModel * SOAP_FMAC2 soap_instantiate_prodml23__ConstantStorageModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2333 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel (-1093) -/* complex XML schema type 'prodml22:CustomBoundaryModel': */ -class SOAP_CMAC prodml22__CustomBoundaryModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel (-1093) +/* complex XML schema type 'prodml23:CustomBoundaryModel': */ +class SOAP_CMAC prodml23__CustomBoundaryModel : public prodml23__BoundaryBaseModel { public: - /// Required element 'prodml22:ModelName' of XML schema type 'prodml22:ModelName' - prodml22__ModelName *ModelName; - /// Optional element 'prodml22:AnyParameter' of XML schema type 'prodml22:AbstractParameter' - std::vector AnyParameter; - /// Optional element 'prodml22:CustomParameter' of XML schema type 'prodml22:CustomParameter' - std::vector CustomParameter; + /// Required element 'prodml23:ModelName' of XML schema type 'prodml23:ModelName' + prodml23__ModelName *ModelName; + /// Optional element 'prodml23:AnyParameter' of XML schema type 'prodml23:AbstractParameter' + std::vector AnyParameter; + /// Optional element 'prodml23:CustomParameter' of XML schema type 'prodml23:CustomParameter' + std::vector CustomParameter; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68885,33 +69130,33 @@ class SOAP_CMAC prodml22__CustomBoundaryModel : public prodml22__BoundaryBaseMod virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomBoundaryModel, default initialized and not managed by a soap context - virtual prodml22__CustomBoundaryModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomBoundaryModel); } + /// Return a new object of type prodml23__CustomBoundaryModel, default initialized and not managed by a soap context + virtual prodml23__CustomBoundaryModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomBoundaryModel); } public: /// Constructor with default initializations - prodml22__CustomBoundaryModel() : ModelName(), AnyParameter(), CustomParameter() { } + prodml23__CustomBoundaryModel() : ModelName(), AnyParameter(), CustomParameter() { } /// Destructor - virtual ~prodml22__CustomBoundaryModel() { } - /// Friend allocator used by soap_new_prodml22__CustomBoundaryModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomBoundaryModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomBoundaryModel() { } + /// Friend allocator used by soap_new_prodml23__CustomBoundaryModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomBoundaryModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2335 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel (-1094) -/* complex XML schema type 'prodml22:CustomNearWellboreModel': */ -class SOAP_CMAC prodml22__CustomNearWellboreModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel (-1094) +/* complex XML schema type 'prodml23:CustomNearWellboreModel': */ +class SOAP_CMAC prodml23__CustomNearWellboreModel : public prodml23__NearWellboreBaseModel { public: - /// Required element 'prodml22:ModelName' of XML schema type 'prodml22:ModelName' - prodml22__ModelName *ModelName; - /// Optional element 'prodml22:AnyParameter' of XML schema type 'prodml22:AbstractParameter' - std::vector AnyParameter; - /// Optional element 'prodml22:CustomParameter' of XML schema type 'prodml22:CustomParameter' - std::vector CustomParameter; + /// Required element 'prodml23:ModelName' of XML schema type 'prodml23:ModelName' + prodml23__ModelName *ModelName; + /// Optional element 'prodml23:AnyParameter' of XML schema type 'prodml23:AbstractParameter' + std::vector AnyParameter; + /// Optional element 'prodml23:CustomParameter' of XML schema type 'prodml23:CustomParameter' + std::vector CustomParameter; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68924,33 +69169,33 @@ class SOAP_CMAC prodml22__CustomNearWellboreModel : public prodml22__NearWellbor virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomNearWellboreModel, default initialized and not managed by a soap context - virtual prodml22__CustomNearWellboreModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomNearWellboreModel); } + /// Return a new object of type prodml23__CustomNearWellboreModel, default initialized and not managed by a soap context + virtual prodml23__CustomNearWellboreModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomNearWellboreModel); } public: /// Constructor with default initializations - prodml22__CustomNearWellboreModel() : ModelName(), AnyParameter(), CustomParameter() { } + prodml23__CustomNearWellboreModel() : ModelName(), AnyParameter(), CustomParameter() { } /// Destructor - virtual ~prodml22__CustomNearWellboreModel() { } - /// Friend allocator used by soap_new_prodml22__CustomNearWellboreModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomNearWellboreModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomNearWellboreModel() { } + /// Friend allocator used by soap_new_prodml23__CustomNearWellboreModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomNearWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomNearWellboreModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2337 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel (-1095) -/* complex XML schema type 'prodml22:CustomReservoirModel': */ -class SOAP_CMAC prodml22__CustomReservoirModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel (-1095) +/* complex XML schema type 'prodml23:CustomReservoirModel': */ +class SOAP_CMAC prodml23__CustomReservoirModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:ModelName' of XML schema type 'prodml22:ModelName' - prodml22__ModelName *ModelName; - /// Optional element 'prodml22:AnyParameter' of XML schema type 'prodml22:AbstractParameter' - std::vector AnyParameter; - /// Optional element 'prodml22:CustomParameter' of XML schema type 'prodml22:CustomParameter' - std::vector CustomParameter; + /// Required element 'prodml23:ModelName' of XML schema type 'prodml23:ModelName' + prodml23__ModelName *ModelName; + /// Optional element 'prodml23:AnyParameter' of XML schema type 'prodml23:AbstractParameter' + std::vector AnyParameter; + /// Optional element 'prodml23:CustomParameter' of XML schema type 'prodml23:CustomParameter' + std::vector CustomParameter; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -68963,33 +69208,33 @@ class SOAP_CMAC prodml22__CustomReservoirModel : public prodml22__ReservoirBaseM virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomReservoirModel, default initialized and not managed by a soap context - virtual prodml22__CustomReservoirModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomReservoirModel); } + /// Return a new object of type prodml23__CustomReservoirModel, default initialized and not managed by a soap context + virtual prodml23__CustomReservoirModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomReservoirModel); } public: /// Constructor with default initializations - prodml22__CustomReservoirModel() : ModelName(), AnyParameter(), CustomParameter() { } + prodml23__CustomReservoirModel() : ModelName(), AnyParameter(), CustomParameter() { } /// Destructor - virtual ~prodml22__CustomReservoirModel() { } - /// Friend allocator used by soap_new_prodml22__CustomReservoirModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomReservoirModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomReservoirModel() { } + /// Friend allocator used by soap_new_prodml23__CustomReservoirModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomReservoirModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2339 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel (-1096) -/* complex XML schema type 'prodml22:CustomWellboreModel': */ -class SOAP_CMAC prodml22__CustomWellboreModel : public prodml22__WellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel (-1096) +/* complex XML schema type 'prodml23:CustomWellboreModel': */ +class SOAP_CMAC prodml23__CustomWellboreModel : public prodml23__WellboreBaseModel { public: - /// Required element 'prodml22:ModelName' of XML schema type 'prodml22:ModelName' - prodml22__ModelName *ModelName; - /// Optional element 'prodml22:AnyParameter' of XML schema type 'prodml22:AbstractParameter' - std::vector AnyParameter; - /// Optional element 'prodml22:CustomParameter' of XML schema type 'prodml22:CustomParameter' - std::vector CustomParameter; + /// Required element 'prodml23:ModelName' of XML schema type 'prodml23:ModelName' + prodml23__ModelName *ModelName; + /// Optional element 'prodml23:AnyParameter' of XML schema type 'prodml23:AbstractParameter' + std::vector AnyParameter; + /// Optional element 'prodml23:CustomParameter' of XML schema type 'prodml23:CustomParameter' + std::vector CustomParameter; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69002,35 +69247,35 @@ class SOAP_CMAC prodml22__CustomWellboreModel : public prodml22__WellboreBaseMod virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CustomWellboreModel, default initialized and not managed by a soap context - virtual prodml22__CustomWellboreModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CustomWellboreModel); } + /// Return a new object of type prodml23__CustomWellboreModel, default initialized and not managed by a soap context + virtual prodml23__CustomWellboreModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CustomWellboreModel); } public: /// Constructor with default initializations - prodml22__CustomWellboreModel() : ModelName(), AnyParameter(), CustomParameter() { } + prodml23__CustomWellboreModel() : ModelName(), AnyParameter(), CustomParameter() { } /// Destructor - virtual ~prodml22__CustomWellboreModel() { } - /// Friend allocator used by soap_new_prodml22__CustomWellboreModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__CustomWellboreModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CustomWellboreModel() { } + /// Friend allocator used by soap_new_prodml23__CustomWellboreModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__CustomWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__CustomWellboreModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2341 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel (-1097) -/* complex XML schema type 'prodml22:DualPermeabilityWithCrossflowModel': */ -class SOAP_CMAC prodml22__DualPermeabilityWithCrossflowModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel (-1097) +/* complex XML schema type 'prodml23:DualPermeabilityWithCrossflowModel': */ +class SOAP_CMAC prodml23__DualPermeabilityWithCrossflowModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InterporosityFlowParameter' of XML schema type 'prodml22:InterporosityFlowParameter' - prodml22__InterporosityFlowParameter *InterporosityFlowParameter; - /// Required element 'prodml22:StorativityRatio' of XML schema type 'prodml22:StorativityRatio' - prodml22__StorativityRatio *StorativityRatio; - /// Required element 'prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct' of XML schema type 'prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct' - prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct *RatioLayer1ToTotalPermeabilityThicknessProduct; - /// Optional element 'prodml22:Layer2Thickness' of XML schema type 'prodml22:Layer2Thickness' - prodml22__Layer2Thickness *Layer2Thickness; + /// Required element 'prodml23:InterporosityFlowParameter' of XML schema type 'prodml23:InterporosityFlowParameter' + prodml23__InterporosityFlowParameter *InterporosityFlowParameter; + /// Required element 'prodml23:StorativityRatio' of XML schema type 'prodml23:StorativityRatio' + prodml23__StorativityRatio *StorativityRatio; + /// Required element 'prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct' of XML schema type 'prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct' + prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct *RatioLayer1ToTotalPermeabilityThicknessProduct; + /// Optional element 'prodml23:Layer2Thickness' of XML schema type 'prodml23:Layer2Thickness' + prodml23__Layer2Thickness *Layer2Thickness; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69043,31 +69288,31 @@ class SOAP_CMAC prodml22__DualPermeabilityWithCrossflowModel : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DualPermeabilityWithCrossflowModel, default initialized and not managed by a soap context - virtual prodml22__DualPermeabilityWithCrossflowModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DualPermeabilityWithCrossflowModel); } + /// Return a new object of type prodml23__DualPermeabilityWithCrossflowModel, default initialized and not managed by a soap context + virtual prodml23__DualPermeabilityWithCrossflowModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DualPermeabilityWithCrossflowModel); } public: /// Constructor with default initializations - prodml22__DualPermeabilityWithCrossflowModel() : InterporosityFlowParameter(), StorativityRatio(), RatioLayer1ToTotalPermeabilityThicknessProduct(), Layer2Thickness() { } + prodml23__DualPermeabilityWithCrossflowModel() : InterporosityFlowParameter(), StorativityRatio(), RatioLayer1ToTotalPermeabilityThicknessProduct(), Layer2Thickness() { } /// Destructor - virtual ~prodml22__DualPermeabilityWithCrossflowModel() { } - /// Friend allocator used by soap_new_prodml22__DualPermeabilityWithCrossflowModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPermeabilityWithCrossflowModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DualPermeabilityWithCrossflowModel() { } + /// Friend allocator used by soap_new_prodml23__DualPermeabilityWithCrossflowModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__DualPermeabilityWithCrossflowModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPermeabilityWithCrossflowModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2343 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel (-1098) -/* complex XML schema type 'prodml22:DualPorosityPseudoSteadyStateModel': */ -class SOAP_CMAC prodml22__DualPorosityPseudoSteadyStateModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel (-1098) +/* complex XML schema type 'prodml23:DualPorosityPseudoSteadyStateModel': */ +class SOAP_CMAC prodml23__DualPorosityPseudoSteadyStateModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InterporosityFlowParameter' of XML schema type 'prodml22:InterporosityFlowParameter' - prodml22__InterporosityFlowParameter *InterporosityFlowParameter; - /// Required element 'prodml22:StorativityRatio' of XML schema type 'prodml22:StorativityRatio' - prodml22__StorativityRatio *StorativityRatio; + /// Required element 'prodml23:InterporosityFlowParameter' of XML schema type 'prodml23:InterporosityFlowParameter' + prodml23__InterporosityFlowParameter *InterporosityFlowParameter; + /// Required element 'prodml23:StorativityRatio' of XML schema type 'prodml23:StorativityRatio' + prodml23__StorativityRatio *StorativityRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69080,31 +69325,31 @@ class SOAP_CMAC prodml22__DualPorosityPseudoSteadyStateModel : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DualPorosityPseudoSteadyStateModel, default initialized and not managed by a soap context - virtual prodml22__DualPorosityPseudoSteadyStateModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DualPorosityPseudoSteadyStateModel); } + /// Return a new object of type prodml23__DualPorosityPseudoSteadyStateModel, default initialized and not managed by a soap context + virtual prodml23__DualPorosityPseudoSteadyStateModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DualPorosityPseudoSteadyStateModel); } public: /// Constructor with default initializations - prodml22__DualPorosityPseudoSteadyStateModel() : InterporosityFlowParameter(), StorativityRatio() { } + prodml23__DualPorosityPseudoSteadyStateModel() : InterporosityFlowParameter(), StorativityRatio() { } /// Destructor - virtual ~prodml22__DualPorosityPseudoSteadyStateModel() { } - /// Friend allocator used by soap_new_prodml22__DualPorosityPseudoSteadyStateModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityPseudoSteadyStateModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DualPorosityPseudoSteadyStateModel() { } + /// Friend allocator used by soap_new_prodml23__DualPorosityPseudoSteadyStateModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__DualPorosityPseudoSteadyStateModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityPseudoSteadyStateModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2345 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel (-1099) -/* complex XML schema type 'prodml22:DualPorosityTransientSlabsModel': */ -class SOAP_CMAC prodml22__DualPorosityTransientSlabsModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel (-1099) +/* complex XML schema type 'prodml23:DualPorosityTransientSlabsModel': */ +class SOAP_CMAC prodml23__DualPorosityTransientSlabsModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InterporosityFlowParameter' of XML schema type 'prodml22:InterporosityFlowParameter' - prodml22__InterporosityFlowParameter *InterporosityFlowParameter; - /// Required element 'prodml22:StorativityRatio' of XML schema type 'prodml22:StorativityRatio' - prodml22__StorativityRatio *StorativityRatio; + /// Required element 'prodml23:InterporosityFlowParameter' of XML schema type 'prodml23:InterporosityFlowParameter' + prodml23__InterporosityFlowParameter *InterporosityFlowParameter; + /// Required element 'prodml23:StorativityRatio' of XML schema type 'prodml23:StorativityRatio' + prodml23__StorativityRatio *StorativityRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69117,31 +69362,31 @@ class SOAP_CMAC prodml22__DualPorosityTransientSlabsModel : public prodml22__Res virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DualPorosityTransientSlabsModel, default initialized and not managed by a soap context - virtual prodml22__DualPorosityTransientSlabsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DualPorosityTransientSlabsModel); } + /// Return a new object of type prodml23__DualPorosityTransientSlabsModel, default initialized and not managed by a soap context + virtual prodml23__DualPorosityTransientSlabsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DualPorosityTransientSlabsModel); } public: /// Constructor with default initializations - prodml22__DualPorosityTransientSlabsModel() : InterporosityFlowParameter(), StorativityRatio() { } + prodml23__DualPorosityTransientSlabsModel() : InterporosityFlowParameter(), StorativityRatio() { } /// Destructor - virtual ~prodml22__DualPorosityTransientSlabsModel() { } - /// Friend allocator used by soap_new_prodml22__DualPorosityTransientSlabsModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityTransientSlabsModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DualPorosityTransientSlabsModel() { } + /// Friend allocator used by soap_new_prodml23__DualPorosityTransientSlabsModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__DualPorosityTransientSlabsModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityTransientSlabsModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2347 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel (-1100) -/* complex XML schema type 'prodml22:DualPorosityTransientSpheresModel': */ -class SOAP_CMAC prodml22__DualPorosityTransientSpheresModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel (-1100) +/* complex XML schema type 'prodml23:DualPorosityTransientSpheresModel': */ +class SOAP_CMAC prodml23__DualPorosityTransientSpheresModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InterporosityFlowParameter' of XML schema type 'prodml22:InterporosityFlowParameter' - prodml22__InterporosityFlowParameter *InterporosityFlowParameter; - /// Required element 'prodml22:StorativityRatio' of XML schema type 'prodml22:StorativityRatio' - prodml22__StorativityRatio *StorativityRatio; + /// Required element 'prodml23:InterporosityFlowParameter' of XML schema type 'prodml23:InterporosityFlowParameter' + prodml23__InterporosityFlowParameter *InterporosityFlowParameter; + /// Required element 'prodml23:StorativityRatio' of XML schema type 'prodml23:StorativityRatio' + prodml23__StorativityRatio *StorativityRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69154,29 +69399,29 @@ class SOAP_CMAC prodml22__DualPorosityTransientSpheresModel : public prodml22__R virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DualPorosityTransientSpheresModel, default initialized and not managed by a soap context - virtual prodml22__DualPorosityTransientSpheresModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DualPorosityTransientSpheresModel); } + /// Return a new object of type prodml23__DualPorosityTransientSpheresModel, default initialized and not managed by a soap context + virtual prodml23__DualPorosityTransientSpheresModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DualPorosityTransientSpheresModel); } public: /// Constructor with default initializations - prodml22__DualPorosityTransientSpheresModel() : InterporosityFlowParameter(), StorativityRatio() { } + prodml23__DualPorosityTransientSpheresModel() : InterporosityFlowParameter(), StorativityRatio() { } /// Destructor - virtual ~prodml22__DualPorosityTransientSpheresModel() { } - /// Friend allocator used by soap_new_prodml22__DualPorosityTransientSpheresModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instantiate_prodml22__DualPorosityTransientSpheresModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DualPorosityTransientSpheresModel() { } + /// Friend allocator used by soap_new_prodml23__DualPorosityTransientSpheresModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__DualPorosityTransientSpheresModel * SOAP_FMAC2 soap_instantiate_prodml23__DualPorosityTransientSpheresModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2349 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel (-1101) -/* complex XML schema type 'prodml22:FiniteRadiusModel': */ -class SOAP_CMAC prodml22__FiniteRadiusModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel (-1101) +/* complex XML schema type 'prodml23:FiniteRadiusModel': */ +class SOAP_CMAC prodml23__FiniteRadiusModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69189,41 +69434,41 @@ class SOAP_CMAC prodml22__FiniteRadiusModel : public prodml22__NearWellboreBaseM virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FiniteRadiusModel, default initialized and not managed by a soap context - virtual prodml22__FiniteRadiusModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FiniteRadiusModel); } + /// Return a new object of type prodml23__FiniteRadiusModel, default initialized and not managed by a soap context + virtual prodml23__FiniteRadiusModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FiniteRadiusModel); } public: /// Constructor with default initializations - prodml22__FiniteRadiusModel() : SkinLayer2RelativeToTotalThickness() { } + prodml23__FiniteRadiusModel() : SkinLayer2RelativeToTotalThickness() { } /// Destructor - virtual ~prodml22__FiniteRadiusModel() { } - /// Friend allocator used by soap_new_prodml22__FiniteRadiusModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml22__FiniteRadiusModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FiniteRadiusModel() { } + /// Friend allocator used by soap_new_prodml23__FiniteRadiusModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FiniteRadiusModel * SOAP_FMAC2 soap_instantiate_prodml23__FiniteRadiusModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2351 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel (-1102) -/* complex XML schema type 'prodml22:FracturedFiniteConductivityModel': */ -class SOAP_CMAC prodml22__FracturedFiniteConductivityModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel (-1102) +/* complex XML schema type 'prodml23:FracturedFiniteConductivityModel': */ +class SOAP_CMAC prodml23__FracturedFiniteConductivityModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; - /// Required element 'prodml22:FractureHalfLength' of XML schema type 'prodml22:FractureHalfLength' - prodml22__FractureHalfLength *FractureHalfLength; - /// Optional element 'prodml22:FractureFaceSkin' of XML schema type 'prodml22:FractureFaceSkin' - prodml22__FractureFaceSkin *FractureFaceSkin; - /// Optional element 'prodml22:OrientationOfFracturePlane' of XML schema type 'prodml22:OrientationOfFracturePlane' - prodml22__OrientationOfFracturePlane *OrientationOfFracturePlane; - /// Required element 'prodml22:FractureConductivity' of XML schema type 'prodml22:FractureConductivity' - prodml22__FractureConductivity *FractureConductivity; - /// Optional element 'prodml22:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml22:DistanceMidFractureHeightToBottomBoundary' - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; - /// Optional element 'prodml22:FractureHeight' of XML schema type 'prodml22:FractureHeight' - prodml22__FractureHeight *FractureHeight; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Required element 'prodml23:FractureHalfLength' of XML schema type 'prodml23:FractureHalfLength' + prodml23__FractureHalfLength *FractureHalfLength; + /// Optional element 'prodml23:FractureFaceSkin' of XML schema type 'prodml23:FractureFaceSkin' + prodml23__FractureFaceSkin *FractureFaceSkin; + /// Optional element 'prodml23:OrientationOfFracturePlane' of XML schema type 'prodml23:OrientationOfFracturePlane' + prodml23__OrientationOfFracturePlane *OrientationOfFracturePlane; + /// Required element 'prodml23:FractureConductivity' of XML schema type 'prodml23:FractureConductivity' + prodml23__FractureConductivity *FractureConductivity; + /// Optional element 'prodml23:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml23:DistanceMidFractureHeightToBottomBoundary' + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; + /// Optional element 'prodml23:FractureHeight' of XML schema type 'prodml23:FractureHeight' + prodml23__FractureHeight *FractureHeight; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69236,33 +69481,33 @@ class SOAP_CMAC prodml22__FracturedFiniteConductivityModel : public prodml22__Ne virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FracturedFiniteConductivityModel, default initialized and not managed by a soap context - virtual prodml22__FracturedFiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FracturedFiniteConductivityModel); } + /// Return a new object of type prodml23__FracturedFiniteConductivityModel, default initialized and not managed by a soap context + virtual prodml23__FracturedFiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FracturedFiniteConductivityModel); } public: /// Constructor with default initializations - prodml22__FracturedFiniteConductivityModel() : SkinLayer2RelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), OrientationOfFracturePlane(), FractureConductivity(), DistanceMidFractureHeightToBottomBoundary(), FractureHeight() { } + prodml23__FracturedFiniteConductivityModel() : SkinLayer2RelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), OrientationOfFracturePlane(), FractureConductivity(), DistanceMidFractureHeightToBottomBoundary(), FractureHeight() { } /// Destructor - virtual ~prodml22__FracturedFiniteConductivityModel() { } - /// Friend allocator used by soap_new_prodml22__FracturedFiniteConductivityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FracturedFiniteConductivityModel() { } + /// Friend allocator used by soap_new_prodml23__FracturedFiniteConductivityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FracturedFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2353 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel (-1103) -/* complex XML schema type 'prodml22:FracturedHorizontalFiniteConductivityModel': */ -class SOAP_CMAC prodml22__FracturedHorizontalFiniteConductivityModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel (-1103) +/* complex XML schema type 'prodml23:FracturedHorizontalFiniteConductivityModel': */ +class SOAP_CMAC prodml23__FracturedHorizontalFiniteConductivityModel : public prodml23__NearWellboreBaseModel { public: - /// Required element 'prodml22:FractureConductivity' of XML schema type 'prodml22:FractureConductivity' - prodml22__FractureConductivity *FractureConductivity; - /// Required element 'prodml22:FractureRadius' of XML schema type 'prodml22:FractureRadius' - prodml22__FractureRadius *FractureRadius; - /// Required element 'prodml22:DistanceFractureToBottomBoundary' of XML schema type 'prodml22:DistanceFractureToBottomBoundary' - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary; + /// Required element 'prodml23:FractureConductivity' of XML schema type 'prodml23:FractureConductivity' + prodml23__FractureConductivity *FractureConductivity; + /// Required element 'prodml23:FractureRadius' of XML schema type 'prodml23:FractureRadius' + prodml23__FractureRadius *FractureRadius; + /// Required element 'prodml23:DistanceFractureToBottomBoundary' of XML schema type 'prodml23:DistanceFractureToBottomBoundary' + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69275,31 +69520,31 @@ class SOAP_CMAC prodml22__FracturedHorizontalFiniteConductivityModel : public pr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FracturedHorizontalFiniteConductivityModel, default initialized and not managed by a soap context - virtual prodml22__FracturedHorizontalFiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FracturedHorizontalFiniteConductivityModel); } + /// Return a new object of type prodml23__FracturedHorizontalFiniteConductivityModel, default initialized and not managed by a soap context + virtual prodml23__FracturedHorizontalFiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FracturedHorizontalFiniteConductivityModel); } public: /// Constructor with default initializations - prodml22__FracturedHorizontalFiniteConductivityModel() : FractureConductivity(), FractureRadius(), DistanceFractureToBottomBoundary() { } + prodml23__FracturedHorizontalFiniteConductivityModel() : FractureConductivity(), FractureRadius(), DistanceFractureToBottomBoundary() { } /// Destructor - virtual ~prodml22__FracturedHorizontalFiniteConductivityModel() { } - /// Friend allocator used by soap_new_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FracturedHorizontalFiniteConductivityModel() { } + /// Friend allocator used by soap_new_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FracturedHorizontalFiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalFiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2355 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel (-1104) -/* complex XML schema type 'prodml22:FracturedHorizontalInfiniteConductivityModel': */ -class SOAP_CMAC prodml22__FracturedHorizontalInfiniteConductivityModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel (-1104) +/* complex XML schema type 'prodml23:FracturedHorizontalInfiniteConductivityModel': */ +class SOAP_CMAC prodml23__FracturedHorizontalInfiniteConductivityModel : public prodml23__NearWellboreBaseModel { public: - /// Required element 'prodml22:FractureRadius' of XML schema type 'prodml22:FractureRadius' - prodml22__FractureRadius *FractureRadius; - /// Required element 'prodml22:DistanceFractureToBottomBoundary' of XML schema type 'prodml22:DistanceFractureToBottomBoundary' - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary; + /// Required element 'prodml23:FractureRadius' of XML schema type 'prodml23:FractureRadius' + prodml23__FractureRadius *FractureRadius; + /// Required element 'prodml23:DistanceFractureToBottomBoundary' of XML schema type 'prodml23:DistanceFractureToBottomBoundary' + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69312,31 +69557,31 @@ class SOAP_CMAC prodml22__FracturedHorizontalInfiniteConductivityModel : public virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FracturedHorizontalInfiniteConductivityModel, default initialized and not managed by a soap context - virtual prodml22__FracturedHorizontalInfiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FracturedHorizontalInfiniteConductivityModel); } + /// Return a new object of type prodml23__FracturedHorizontalInfiniteConductivityModel, default initialized and not managed by a soap context + virtual prodml23__FracturedHorizontalInfiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FracturedHorizontalInfiniteConductivityModel); } public: /// Constructor with default initializations - prodml22__FracturedHorizontalInfiniteConductivityModel() : FractureRadius(), DistanceFractureToBottomBoundary() { } + prodml23__FracturedHorizontalInfiniteConductivityModel() : FractureRadius(), DistanceFractureToBottomBoundary() { } /// Destructor - virtual ~prodml22__FracturedHorizontalInfiniteConductivityModel() { } - /// Friend allocator used by soap_new_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FracturedHorizontalInfiniteConductivityModel() { } + /// Friend allocator used by soap_new_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FracturedHorizontalInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2357 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel (-1105) -/* complex XML schema type 'prodml22:FracturedHorizontalUniformFluxModel': */ -class SOAP_CMAC prodml22__FracturedHorizontalUniformFluxModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel (-1105) +/* complex XML schema type 'prodml23:FracturedHorizontalUniformFluxModel': */ +class SOAP_CMAC prodml23__FracturedHorizontalUniformFluxModel : public prodml23__NearWellboreBaseModel { public: - /// Required element 'prodml22:FractureRadius' of XML schema type 'prodml22:FractureRadius' - prodml22__FractureRadius *FractureRadius; - /// Required element 'prodml22:DistanceFractureToBottomBoundary' of XML schema type 'prodml22:DistanceFractureToBottomBoundary' - prodml22__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary; + /// Required element 'prodml23:FractureRadius' of XML schema type 'prodml23:FractureRadius' + prodml23__FractureRadius *FractureRadius; + /// Required element 'prodml23:DistanceFractureToBottomBoundary' of XML schema type 'prodml23:DistanceFractureToBottomBoundary' + prodml23__DistanceFractureToBottomBoundary *DistanceFractureToBottomBoundary; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69349,39 +69594,39 @@ class SOAP_CMAC prodml22__FracturedHorizontalUniformFluxModel : public prodml22_ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FracturedHorizontalUniformFluxModel, default initialized and not managed by a soap context - virtual prodml22__FracturedHorizontalUniformFluxModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FracturedHorizontalUniformFluxModel); } + /// Return a new object of type prodml23__FracturedHorizontalUniformFluxModel, default initialized and not managed by a soap context + virtual prodml23__FracturedHorizontalUniformFluxModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FracturedHorizontalUniformFluxModel); } public: /// Constructor with default initializations - prodml22__FracturedHorizontalUniformFluxModel() : FractureRadius(), DistanceFractureToBottomBoundary() { } + prodml23__FracturedHorizontalUniformFluxModel() : FractureRadius(), DistanceFractureToBottomBoundary() { } /// Destructor - virtual ~prodml22__FracturedHorizontalUniformFluxModel() { } - /// Friend allocator used by soap_new_prodml22__FracturedHorizontalUniformFluxModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedHorizontalUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FracturedHorizontalUniformFluxModel() { } + /// Friend allocator used by soap_new_prodml23__FracturedHorizontalUniformFluxModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FracturedHorizontalUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedHorizontalUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2359 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel (-1106) -/* complex XML schema type 'prodml22:FracturedInfiniteConductivityModel': */ -class SOAP_CMAC prodml22__FracturedInfiniteConductivityModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel (-1106) +/* complex XML schema type 'prodml23:FracturedInfiniteConductivityModel': */ +class SOAP_CMAC prodml23__FracturedInfiniteConductivityModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; - /// Required element 'prodml22:FractureHalfLength' of XML schema type 'prodml22:FractureHalfLength' - prodml22__FractureHalfLength *FractureHalfLength; - /// Optional element 'prodml22:FractureFaceSkin' of XML schema type 'prodml22:FractureFaceSkin' - prodml22__FractureFaceSkin *FractureFaceSkin; - /// Optional element 'prodml22:OrientationOfFracturePlane' of XML schema type 'prodml22:OrientationOfFracturePlane' - prodml22__OrientationOfFracturePlane *OrientationOfFracturePlane; - /// Optional element 'prodml22:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml22:DistanceMidFractureHeightToBottomBoundary' - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; - /// Optional element 'prodml22:FractureHeight' of XML schema type 'prodml22:FractureHeight' - prodml22__FractureHeight *FractureHeight; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Required element 'prodml23:FractureHalfLength' of XML schema type 'prodml23:FractureHalfLength' + prodml23__FractureHalfLength *FractureHalfLength; + /// Optional element 'prodml23:FractureFaceSkin' of XML schema type 'prodml23:FractureFaceSkin' + prodml23__FractureFaceSkin *FractureFaceSkin; + /// Optional element 'prodml23:OrientationOfFracturePlane' of XML schema type 'prodml23:OrientationOfFracturePlane' + prodml23__OrientationOfFracturePlane *OrientationOfFracturePlane; + /// Optional element 'prodml23:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml23:DistanceMidFractureHeightToBottomBoundary' + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; + /// Optional element 'prodml23:FractureHeight' of XML schema type 'prodml23:FractureHeight' + prodml23__FractureHeight *FractureHeight; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69394,39 +69639,39 @@ class SOAP_CMAC prodml22__FracturedInfiniteConductivityModel : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FracturedInfiniteConductivityModel, default initialized and not managed by a soap context - virtual prodml22__FracturedInfiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FracturedInfiniteConductivityModel); } + /// Return a new object of type prodml23__FracturedInfiniteConductivityModel, default initialized and not managed by a soap context + virtual prodml23__FracturedInfiniteConductivityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FracturedInfiniteConductivityModel); } public: /// Constructor with default initializations - prodml22__FracturedInfiniteConductivityModel() : SkinLayer2RelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), OrientationOfFracturePlane(), DistanceMidFractureHeightToBottomBoundary(), FractureHeight() { } + prodml23__FracturedInfiniteConductivityModel() : SkinLayer2RelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), OrientationOfFracturePlane(), DistanceMidFractureHeightToBottomBoundary(), FractureHeight() { } /// Destructor - virtual ~prodml22__FracturedInfiniteConductivityModel() { } - /// Friend allocator used by soap_new_prodml22__FracturedInfiniteConductivityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FracturedInfiniteConductivityModel() { } + /// Friend allocator used by soap_new_prodml23__FracturedInfiniteConductivityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FracturedInfiniteConductivityModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedInfiniteConductivityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2361 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel (-1107) -/* complex XML schema type 'prodml22:FracturedUniformFluxModel': */ -class SOAP_CMAC prodml22__FracturedUniformFluxModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel (-1107) +/* complex XML schema type 'prodml23:FracturedUniformFluxModel': */ +class SOAP_CMAC prodml23__FracturedUniformFluxModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; - /// Required element 'prodml22:FractureHalfLength' of XML schema type 'prodml22:FractureHalfLength' - prodml22__FractureHalfLength *FractureHalfLength; - /// Optional element 'prodml22:FractureFaceSkin' of XML schema type 'prodml22:FractureFaceSkin' - prodml22__FractureFaceSkin *FractureFaceSkin; - /// Optional element 'prodml22:OrientationOfFracturePlane' of XML schema type 'prodml22:OrientationOfFracturePlane' - prodml22__OrientationOfFracturePlane *OrientationOfFracturePlane; - /// Optional element 'prodml22:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml22:DistanceMidFractureHeightToBottomBoundary' - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; - /// Optional element 'prodml22:FractureHeight' of XML schema type 'prodml22:FractureHeight' - prodml22__FractureHeight *FractureHeight; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Required element 'prodml23:FractureHalfLength' of XML schema type 'prodml23:FractureHalfLength' + prodml23__FractureHalfLength *FractureHalfLength; + /// Optional element 'prodml23:FractureFaceSkin' of XML schema type 'prodml23:FractureFaceSkin' + prodml23__FractureFaceSkin *FractureFaceSkin; + /// Optional element 'prodml23:OrientationOfFracturePlane' of XML schema type 'prodml23:OrientationOfFracturePlane' + prodml23__OrientationOfFracturePlane *OrientationOfFracturePlane; + /// Optional element 'prodml23:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml23:DistanceMidFractureHeightToBottomBoundary' + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; + /// Optional element 'prodml23:FractureHeight' of XML schema type 'prodml23:FractureHeight' + prodml23__FractureHeight *FractureHeight; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69439,26 +69684,26 @@ class SOAP_CMAC prodml22__FracturedUniformFluxModel : public prodml22__NearWellb virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FracturedUniformFluxModel, default initialized and not managed by a soap context - virtual prodml22__FracturedUniformFluxModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FracturedUniformFluxModel); } + /// Return a new object of type prodml23__FracturedUniformFluxModel, default initialized and not managed by a soap context + virtual prodml23__FracturedUniformFluxModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FracturedUniformFluxModel); } public: /// Constructor with default initializations - prodml22__FracturedUniformFluxModel() : SkinLayer2RelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), OrientationOfFracturePlane(), DistanceMidFractureHeightToBottomBoundary(), FractureHeight() { } + prodml23__FracturedUniformFluxModel() : SkinLayer2RelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), OrientationOfFracturePlane(), DistanceMidFractureHeightToBottomBoundary(), FractureHeight() { } /// Destructor - virtual ~prodml22__FracturedUniformFluxModel() { } - /// Friend allocator used by soap_new_prodml22__FracturedUniformFluxModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml22__FracturedUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FracturedUniformFluxModel() { } + /// Friend allocator used by soap_new_prodml23__FracturedUniformFluxModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__FracturedUniformFluxModel * SOAP_FMAC2 soap_instantiate_prodml23__FracturedUniformFluxModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2363 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel (-1108) -/* complex XML schema type 'prodml22:HomogeneousModel': */ -class SOAP_CMAC prodml22__HomogeneousModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel (-1108) +/* complex XML schema type 'prodml23:HomogeneousModel': */ +class SOAP_CMAC prodml23__HomogeneousModel : public prodml23__ReservoirBaseModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69471,37 +69716,37 @@ class SOAP_CMAC prodml22__HomogeneousModel : public prodml22__ReservoirBaseModel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HomogeneousModel, default initialized and not managed by a soap context - virtual prodml22__HomogeneousModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HomogeneousModel); } + /// Return a new object of type prodml23__HomogeneousModel, default initialized and not managed by a soap context + virtual prodml23__HomogeneousModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HomogeneousModel); } public: /// Constructor with default initializations - prodml22__HomogeneousModel() { } + prodml23__HomogeneousModel() { } /// Destructor - virtual ~prodml22__HomogeneousModel() { } - /// Friend allocator used by soap_new_prodml22__HomogeneousModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml22__HomogeneousModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HomogeneousModel() { } + /// Friend allocator used by soap_new_prodml23__HomogeneousModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__HomogeneousModel * SOAP_FMAC2 soap_instantiate_prodml23__HomogeneousModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2365 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel (-1109) -/* complex XML schema type 'prodml22:HorizontalWellbore2LayerModel': */ -class SOAP_CMAC prodml22__HorizontalWellbore2LayerModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel (-1109) +/* complex XML schema type 'prodml23:HorizontalWellbore2LayerModel': */ +class SOAP_CMAC prodml23__HorizontalWellbore2LayerModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Optional element 'prodml22:OrientationWellTrajectory' of XML schema type 'prodml22:OrientationWellTrajectory' - prodml22__OrientationWellTrajectory *OrientationWellTrajectory; - /// Required element 'prodml22:LengthHorizontalWellboreFlowing' of XML schema type 'prodml22:LengthHorizontalWellboreFlowing' - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; - /// Required element 'prodml22:DistanceWellboreToBottomBoundary' of XML schema type 'prodml22:DistanceWellboreToBottomBoundary' - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Optional element 'prodml23:OrientationWellTrajectory' of XML schema type 'prodml23:OrientationWellTrajectory' + prodml23__OrientationWellTrajectory *OrientationWellTrajectory; + /// Required element 'prodml23:LengthHorizontalWellboreFlowing' of XML schema type 'prodml23:LengthHorizontalWellboreFlowing' + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; + /// Required element 'prodml23:DistanceWellboreToBottomBoundary' of XML schema type 'prodml23:DistanceWellboreToBottomBoundary' + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69514,37 +69759,37 @@ class SOAP_CMAC prodml22__HorizontalWellbore2LayerModel : public prodml22__NearW virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HorizontalWellbore2LayerModel, default initialized and not managed by a soap context - virtual prodml22__HorizontalWellbore2LayerModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HorizontalWellbore2LayerModel); } + /// Return a new object of type prodml23__HorizontalWellbore2LayerModel, default initialized and not managed by a soap context + virtual prodml23__HorizontalWellbore2LayerModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HorizontalWellbore2LayerModel); } public: /// Constructor with default initializations - prodml22__HorizontalWellbore2LayerModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary() { } + prodml23__HorizontalWellbore2LayerModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary() { } /// Destructor - virtual ~prodml22__HorizontalWellbore2LayerModel() { } - /// Friend allocator used by soap_new_prodml22__HorizontalWellbore2LayerModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellbore2LayerModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HorizontalWellbore2LayerModel() { } + /// Friend allocator used by soap_new_prodml23__HorizontalWellbore2LayerModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__HorizontalWellbore2LayerModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellbore2LayerModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2367 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel (-1110) -/* complex XML schema type 'prodml22:HorizontalWellboreModel': */ -class SOAP_CMAC prodml22__HorizontalWellboreModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel (-1110) +/* complex XML schema type 'prodml23:HorizontalWellboreModel': */ +class SOAP_CMAC prodml23__HorizontalWellboreModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Optional element 'prodml22:OrientationWellTrajectory' of XML schema type 'prodml22:OrientationWellTrajectory' - prodml22__OrientationWellTrajectory *OrientationWellTrajectory; - /// Required element 'prodml22:LengthHorizontalWellboreFlowing' of XML schema type 'prodml22:LengthHorizontalWellboreFlowing' - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; - /// Required element 'prodml22:DistanceWellboreToBottomBoundary' of XML schema type 'prodml22:DistanceWellboreToBottomBoundary' - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Optional element 'prodml23:OrientationWellTrajectory' of XML schema type 'prodml23:OrientationWellTrajectory' + prodml23__OrientationWellTrajectory *OrientationWellTrajectory; + /// Required element 'prodml23:LengthHorizontalWellboreFlowing' of XML schema type 'prodml23:LengthHorizontalWellboreFlowing' + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; + /// Required element 'prodml23:DistanceWellboreToBottomBoundary' of XML schema type 'prodml23:DistanceWellboreToBottomBoundary' + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69557,55 +69802,55 @@ class SOAP_CMAC prodml22__HorizontalWellboreModel : public prodml22__NearWellbor virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HorizontalWellboreModel, default initialized and not managed by a soap context - virtual prodml22__HorizontalWellboreModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HorizontalWellboreModel); } + /// Return a new object of type prodml23__HorizontalWellboreModel, default initialized and not managed by a soap context + virtual prodml23__HorizontalWellboreModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HorizontalWellboreModel); } public: /// Constructor with default initializations - prodml22__HorizontalWellboreModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary() { } + prodml23__HorizontalWellboreModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary() { } /// Destructor - virtual ~prodml22__HorizontalWellboreModel() { } - /// Friend allocator used by soap_new_prodml22__HorizontalWellboreModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HorizontalWellboreModel() { } + /// Friend allocator used by soap_new_prodml23__HorizontalWellboreModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__HorizontalWellboreModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2369 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel (-1111) -/* complex XML schema type 'prodml22:HorizontalWellboreMultipleEqualFracturedModel': */ -class SOAP_CMAC prodml22__HorizontalWellboreMultipleEqualFracturedModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel (-1111) +/* complex XML schema type 'prodml23:HorizontalWellboreMultipleEqualFracturedModel': */ +class SOAP_CMAC prodml23__HorizontalWellboreMultipleEqualFracturedModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Required element 'prodml22:FractureHalfLength' of XML schema type 'prodml22:FractureHalfLength' - prodml22__FractureHalfLength *FractureHalfLength; - /// Optional element 'prodml22:FractureFaceSkin' of XML schema type 'prodml22:FractureFaceSkin' - prodml22__FractureFaceSkin *FractureFaceSkin; - /// Optional element 'prodml22:FractureConductivity' of XML schema type 'prodml22:FractureConductivity' - prodml22__FractureConductivity *FractureConductivity; - /// Optional element 'prodml22:OrientationWellTrajectory' of XML schema type 'prodml22:OrientationWellTrajectory' - prodml22__OrientationWellTrajectory *OrientationWellTrajectory; - /// Required element 'prodml22:LengthHorizontalWellboreFlowing' of XML schema type 'prodml22:LengthHorizontalWellboreFlowing' - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; - /// Optional element 'prodml22:DistanceWellboreToBottomBoundary' of XML schema type 'prodml22:DistanceWellboreToBottomBoundary' - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; - /// Optional element 'prodml22:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml22:DistanceMidFractureHeightToBottomBoundary' - prodml22__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; - /// Required element 'prodml22:NumberOfFractures' of XML schema type 'prodml22:NumberOfFractures' - prodml22__NumberOfFractures *NumberOfFractures; - /// Optional element 'prodml22:FractureHeight' of XML schema type 'prodml22:FractureHeight' - prodml22__FractureHeight *FractureHeight; - /// Required element 'prodml22:FractureAngleToWellbore' of XML schema type 'prodml22:FractureAngleToWellbore' - prodml22__FractureAngleToWellbore *FractureAngleToWellbore; - /// Optional element 'prodml22:FractureStorativityRatio' of XML schema type 'prodml22:FractureStorativityRatio' - prodml22__FractureStorativityRatio *FractureStorativityRatio; - /// Required element 'prodml22:FractureModelType' of XML schema type 'prodml22:FractureModelType' - prodml22__FractureModelType FractureModelType; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Required element 'prodml23:FractureHalfLength' of XML schema type 'prodml23:FractureHalfLength' + prodml23__FractureHalfLength *FractureHalfLength; + /// Optional element 'prodml23:FractureFaceSkin' of XML schema type 'prodml23:FractureFaceSkin' + prodml23__FractureFaceSkin *FractureFaceSkin; + /// Optional element 'prodml23:FractureConductivity' of XML schema type 'prodml23:FractureConductivity' + prodml23__FractureConductivity *FractureConductivity; + /// Optional element 'prodml23:OrientationWellTrajectory' of XML schema type 'prodml23:OrientationWellTrajectory' + prodml23__OrientationWellTrajectory *OrientationWellTrajectory; + /// Required element 'prodml23:LengthHorizontalWellboreFlowing' of XML schema type 'prodml23:LengthHorizontalWellboreFlowing' + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; + /// Optional element 'prodml23:DistanceWellboreToBottomBoundary' of XML schema type 'prodml23:DistanceWellboreToBottomBoundary' + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; + /// Optional element 'prodml23:DistanceMidFractureHeightToBottomBoundary' of XML schema type 'prodml23:DistanceMidFractureHeightToBottomBoundary' + prodml23__DistanceMidFractureHeightToBottomBoundary *DistanceMidFractureHeightToBottomBoundary; + /// Required element 'prodml23:NumberOfFractures' of XML schema type 'prodml23:NumberOfFractures' + prodml23__NumberOfFractures *NumberOfFractures; + /// Optional element 'prodml23:FractureHeight' of XML schema type 'prodml23:FractureHeight' + prodml23__FractureHeight *FractureHeight; + /// Required element 'prodml23:FractureAngleToWellbore' of XML schema type 'prodml23:FractureAngleToWellbore' + prodml23__FractureAngleToWellbore *FractureAngleToWellbore; + /// Optional element 'prodml23:FractureStorativityRatio' of XML schema type 'prodml23:FractureStorativityRatio' + prodml23__FractureStorativityRatio *FractureStorativityRatio; + /// Required element 'prodml23:FractureModelType' of XML schema type 'prodml23:FractureModelType' + prodml23__FractureModelType FractureModelType; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69618,41 +69863,41 @@ class SOAP_CMAC prodml22__HorizontalWellboreMultipleEqualFracturedModel : public virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HorizontalWellboreMultipleEqualFracturedModel, default initialized and not managed by a soap context - virtual prodml22__HorizontalWellboreMultipleEqualFracturedModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HorizontalWellboreMultipleEqualFracturedModel); } + /// Return a new object of type prodml23__HorizontalWellboreMultipleEqualFracturedModel, default initialized and not managed by a soap context + virtual prodml23__HorizontalWellboreMultipleEqualFracturedModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HorizontalWellboreMultipleEqualFracturedModel); } public: /// Constructor with default initializations - prodml22__HorizontalWellboreMultipleEqualFracturedModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), FractureConductivity(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary(), DistanceMidFractureHeightToBottomBoundary(), NumberOfFractures(), FractureHeight(), FractureAngleToWellbore(), FractureStorativityRatio(), FractureModelType() { } + prodml23__HorizontalWellboreMultipleEqualFracturedModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), FractureHalfLength(), FractureFaceSkin(), FractureConductivity(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary(), DistanceMidFractureHeightToBottomBoundary(), NumberOfFractures(), FractureHeight(), FractureAngleToWellbore(), FractureStorativityRatio(), FractureModelType() { } /// Destructor - virtual ~prodml22__HorizontalWellboreMultipleEqualFracturedModel() { } - /// Friend allocator used by soap_new_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HorizontalWellboreMultipleEqualFracturedModel() { } + /// Friend allocator used by soap_new_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__HorizontalWellboreMultipleEqualFracturedModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreMultipleEqualFracturedModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2371 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel (-1112) -/* complex XML schema type 'prodml22:HorizontalWellboreMultipleVariableFracturedModel': */ -class SOAP_CMAC prodml22__HorizontalWellboreMultipleVariableFracturedModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel (-1112) +/* complex XML schema type 'prodml23:HorizontalWellboreMultipleVariableFracturedModel': */ +class SOAP_CMAC prodml23__HorizontalWellboreMultipleVariableFracturedModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Optional element 'prodml22:OrientationWellTrajectory' of XML schema type 'prodml22:OrientationWellTrajectory' - prodml22__OrientationWellTrajectory *OrientationWellTrajectory; - /// Required element 'prodml22:LengthHorizontalWellboreFlowing' of XML schema type 'prodml22:LengthHorizontalWellboreFlowing' - prodml22__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; - /// Optional element 'prodml22:DistanceWellboreToBottomBoundary' of XML schema type 'prodml22:DistanceWellboreToBottomBoundary' - prodml22__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; - /// Required element 'prodml22:NumberOfFractures' of XML schema type 'prodml22:NumberOfFractures' - prodml22__NumberOfFractures *NumberOfFractures; - /// Optional element 'prodml22:singleFractureSubModel' of XML schema type 'prodml22:SingleFractureSubModel' - std::vector singleFractureSubModel; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Optional element 'prodml23:OrientationWellTrajectory' of XML schema type 'prodml23:OrientationWellTrajectory' + prodml23__OrientationWellTrajectory *OrientationWellTrajectory; + /// Required element 'prodml23:LengthHorizontalWellboreFlowing' of XML schema type 'prodml23:LengthHorizontalWellboreFlowing' + prodml23__LengthHorizontalWellboreFlowing *LengthHorizontalWellboreFlowing; + /// Optional element 'prodml23:DistanceWellboreToBottomBoundary' of XML schema type 'prodml23:DistanceWellboreToBottomBoundary' + prodml23__DistanceWellboreToBottomBoundary *DistanceWellboreToBottomBoundary; + /// Required element 'prodml23:NumberOfFractures' of XML schema type 'prodml23:NumberOfFractures' + prodml23__NumberOfFractures *NumberOfFractures; + /// Optional element 'prodml23:singleFractureSubModel' of XML schema type 'prodml23:SingleFractureSubModel' + std::vector singleFractureSubModel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69665,26 +69910,26 @@ class SOAP_CMAC prodml22__HorizontalWellboreMultipleVariableFracturedModel : pub virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__HorizontalWellboreMultipleVariableFracturedModel, default initialized and not managed by a soap context - virtual prodml22__HorizontalWellboreMultipleVariableFracturedModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__HorizontalWellboreMultipleVariableFracturedModel); } + /// Return a new object of type prodml23__HorizontalWellboreMultipleVariableFracturedModel, default initialized and not managed by a soap context + virtual prodml23__HorizontalWellboreMultipleVariableFracturedModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__HorizontalWellboreMultipleVariableFracturedModel); } public: /// Constructor with default initializations - prodml22__HorizontalWellboreMultipleVariableFracturedModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary(), NumberOfFractures(), singleFractureSubModel() { } + prodml23__HorizontalWellboreMultipleVariableFracturedModel() : ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory(), LengthHorizontalWellboreFlowing(), DistanceWellboreToBottomBoundary(), NumberOfFractures(), singleFractureSubModel() { } /// Destructor - virtual ~prodml22__HorizontalWellboreMultipleVariableFracturedModel() { } - /// Friend allocator used by soap_new_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC2 soap_instantiate_prodml22__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__HorizontalWellboreMultipleVariableFracturedModel() { } + /// Friend allocator used by soap_new_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__HorizontalWellboreMultipleVariableFracturedModel * SOAP_FMAC2 soap_instantiate_prodml23__HorizontalWellboreMultipleVariableFracturedModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2373 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel (-1113) -/* complex XML schema type 'prodml22:InfiniteBoundaryModel': */ -class SOAP_CMAC prodml22__InfiniteBoundaryModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel (-1113) +/* complex XML schema type 'prodml23:InfiniteBoundaryModel': */ +class SOAP_CMAC prodml23__InfiniteBoundaryModel : public prodml23__BoundaryBaseModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69697,35 +69942,35 @@ class SOAP_CMAC prodml22__InfiniteBoundaryModel : public prodml22__BoundaryBaseM virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__InfiniteBoundaryModel, default initialized and not managed by a soap context - virtual prodml22__InfiniteBoundaryModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__InfiniteBoundaryModel); } + /// Return a new object of type prodml23__InfiniteBoundaryModel, default initialized and not managed by a soap context + virtual prodml23__InfiniteBoundaryModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__InfiniteBoundaryModel); } public: /// Constructor with default initializations - prodml22__InfiniteBoundaryModel() { } + prodml23__InfiniteBoundaryModel() { } /// Destructor - virtual ~prodml22__InfiniteBoundaryModel() { } - /// Friend allocator used by soap_new_prodml22__InfiniteBoundaryModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__InfiniteBoundaryModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__InfiniteBoundaryModel() { } + /// Friend allocator used by soap_new_prodml23__InfiniteBoundaryModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__InfiniteBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__InfiniteBoundaryModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2375 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel (-1114) -/* complex XML schema type 'prodml22:LinearCompositeModel': */ -class SOAP_CMAC prodml22__LinearCompositeModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel (-1114) +/* complex XML schema type 'prodml23:LinearCompositeModel': */ +class SOAP_CMAC prodml23__LinearCompositeModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml22:InnerToOuterZoneMobilityRatio' - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; - /// Required element 'prodml22:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml22:InnerToOuterZoneDiffusivityRatio' - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; - /// Required element 'prodml22:DistanceToMobilityInterface' of XML schema type 'prodml22:DistanceToMobilityInterface' - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface; - /// Optional element 'prodml22:OrientationOfLinearFront' of XML schema type 'prodml22:OrientationOfLinearFront' - prodml22__OrientationOfLinearFront *OrientationOfLinearFront; + /// Required element 'prodml23:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml23:InnerToOuterZoneMobilityRatio' + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; + /// Required element 'prodml23:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml23:InnerToOuterZoneDiffusivityRatio' + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; + /// Required element 'prodml23:DistanceToMobilityInterface' of XML schema type 'prodml23:DistanceToMobilityInterface' + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface; + /// Optional element 'prodml23:OrientationOfLinearFront' of XML schema type 'prodml23:OrientationOfLinearFront' + prodml23__OrientationOfLinearFront *OrientationOfLinearFront; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69738,35 +69983,35 @@ class SOAP_CMAC prodml22__LinearCompositeModel : public prodml22__ReservoirBaseM virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LinearCompositeModel, default initialized and not managed by a soap context - virtual prodml22__LinearCompositeModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LinearCompositeModel); } + /// Return a new object of type prodml23__LinearCompositeModel, default initialized and not managed by a soap context + virtual prodml23__LinearCompositeModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LinearCompositeModel); } public: /// Constructor with default initializations - prodml22__LinearCompositeModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface(), OrientationOfLinearFront() { } + prodml23__LinearCompositeModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface(), OrientationOfLinearFront() { } /// Destructor - virtual ~prodml22__LinearCompositeModel() { } - /// Friend allocator used by soap_new_prodml22__LinearCompositeModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LinearCompositeModel() { } + /// Friend allocator used by soap_new_prodml23__LinearCompositeModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__LinearCompositeModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2377 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel (-1115) -/* complex XML schema type 'prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel': */ -class SOAP_CMAC prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel (-1115) +/* complex XML schema type 'prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel': */ +class SOAP_CMAC prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:DistanceToMobilityInterface' of XML schema type 'prodml22:DistanceToMobilityInterface' - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface; - /// Optional element 'prodml22:OrientationOfLinearFront' of XML schema type 'prodml22:OrientationOfLinearFront' - prodml22__OrientationOfLinearFront *OrientationOfLinearFront; - /// Required element 'prodml22:TransmissibilityReductionFactorOfLinearFront' of XML schema type 'prodml22:TransmissibilityReductionFactorOfLinearFront' - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront; - /// Required element 'prodml22:Region2Thickness' of XML schema type 'prodml22:Region2Thickness' - prodml22__Region2Thickness *Region2Thickness; + /// Required element 'prodml23:DistanceToMobilityInterface' of XML schema type 'prodml23:DistanceToMobilityInterface' + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface; + /// Optional element 'prodml23:OrientationOfLinearFront' of XML schema type 'prodml23:OrientationOfLinearFront' + prodml23__OrientationOfLinearFront *OrientationOfLinearFront; + /// Required element 'prodml23:TransmissibilityReductionFactorOfLinearFront' of XML schema type 'prodml23:TransmissibilityReductionFactorOfLinearFront' + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront; + /// Required element 'prodml23:Region2Thickness' of XML schema type 'prodml23:Region2Thickness' + prodml23__Region2Thickness *Region2Thickness; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69779,39 +70024,39 @@ class SOAP_CMAC prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultMo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, default initialized and not managed by a soap context - virtual prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); } + /// Return a new object of type prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel, default initialized and not managed by a soap context + virtual prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel); } public: /// Constructor with default initializations - prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel() : DistanceToMobilityInterface(), OrientationOfLinearFront(), TransmissibilityReductionFactorOfLinearFront(), Region2Thickness() { } + prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel() : DistanceToMobilityInterface(), OrientationOfLinearFront(), TransmissibilityReductionFactorOfLinearFront(), Region2Thickness() { } /// Destructor - virtual ~prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel() { } - /// Friend allocator used by soap_new_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel() { } + /// Friend allocator used by soap_new_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2379 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel (-1116) -/* complex XML schema type 'prodml22:LinearCompositeWithConductiveFaultModel': */ -class SOAP_CMAC prodml22__LinearCompositeWithConductiveFaultModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel (-1116) +/* complex XML schema type 'prodml23:LinearCompositeWithConductiveFaultModel': */ +class SOAP_CMAC prodml23__LinearCompositeWithConductiveFaultModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml22:InnerToOuterZoneMobilityRatio' - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; - /// Required element 'prodml22:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml22:InnerToOuterZoneDiffusivityRatio' - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; - /// Required element 'prodml22:DistanceToMobilityInterface' of XML schema type 'prodml22:DistanceToMobilityInterface' - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface; - /// Optional element 'prodml22:OrientationOfLinearFront' of XML schema type 'prodml22:OrientationOfLinearFront' - prodml22__OrientationOfLinearFront *OrientationOfLinearFront; - /// Required element 'prodml22:TransmissibilityReductionFactorOfLinearFront' of XML schema type 'prodml22:TransmissibilityReductionFactorOfLinearFront' - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront; - /// Required element 'prodml22:FaultConductivity' of XML schema type 'prodml22:FaultConductivity' - prodml22__FaultConductivity *FaultConductivity; + /// Required element 'prodml23:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml23:InnerToOuterZoneMobilityRatio' + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; + /// Required element 'prodml23:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml23:InnerToOuterZoneDiffusivityRatio' + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; + /// Required element 'prodml23:DistanceToMobilityInterface' of XML schema type 'prodml23:DistanceToMobilityInterface' + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface; + /// Optional element 'prodml23:OrientationOfLinearFront' of XML schema type 'prodml23:OrientationOfLinearFront' + prodml23__OrientationOfLinearFront *OrientationOfLinearFront; + /// Required element 'prodml23:TransmissibilityReductionFactorOfLinearFront' of XML schema type 'prodml23:TransmissibilityReductionFactorOfLinearFront' + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront; + /// Required element 'prodml23:FaultConductivity' of XML schema type 'prodml23:FaultConductivity' + prodml23__FaultConductivity *FaultConductivity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69824,37 +70069,37 @@ class SOAP_CMAC prodml22__LinearCompositeWithConductiveFaultModel : public prodm virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LinearCompositeWithConductiveFaultModel, default initialized and not managed by a soap context - virtual prodml22__LinearCompositeWithConductiveFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LinearCompositeWithConductiveFaultModel); } + /// Return a new object of type prodml23__LinearCompositeWithConductiveFaultModel, default initialized and not managed by a soap context + virtual prodml23__LinearCompositeWithConductiveFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LinearCompositeWithConductiveFaultModel); } public: /// Constructor with default initializations - prodml22__LinearCompositeWithConductiveFaultModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface(), OrientationOfLinearFront(), TransmissibilityReductionFactorOfLinearFront(), FaultConductivity() { } + prodml23__LinearCompositeWithConductiveFaultModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface(), OrientationOfLinearFront(), TransmissibilityReductionFactorOfLinearFront(), FaultConductivity() { } /// Destructor - virtual ~prodml22__LinearCompositeWithConductiveFaultModel() { } - /// Friend allocator used by soap_new_prodml22__LinearCompositeWithConductiveFaultModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithConductiveFaultModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LinearCompositeWithConductiveFaultModel() { } + /// Friend allocator used by soap_new_prodml23__LinearCompositeWithConductiveFaultModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__LinearCompositeWithConductiveFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithConductiveFaultModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2381 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel (-1117) -/* complex XML schema type 'prodml22:LinearCompositeWithLeakyFaultModel': */ -class SOAP_CMAC prodml22__LinearCompositeWithLeakyFaultModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel (-1117) +/* complex XML schema type 'prodml23:LinearCompositeWithLeakyFaultModel': */ +class SOAP_CMAC prodml23__LinearCompositeWithLeakyFaultModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml22:InnerToOuterZoneMobilityRatio' - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; - /// Required element 'prodml22:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml22:InnerToOuterZoneDiffusivityRatio' - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; - /// Required element 'prodml22:DistanceToMobilityInterface' of XML schema type 'prodml22:DistanceToMobilityInterface' - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface; - /// Optional element 'prodml22:OrientationOfLinearFront' of XML schema type 'prodml22:OrientationOfLinearFront' - prodml22__OrientationOfLinearFront *OrientationOfLinearFront; - /// Required element 'prodml22:TransmissibilityReductionFactorOfLinearFront' of XML schema type 'prodml22:TransmissibilityReductionFactorOfLinearFront' - prodml22__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront; + /// Required element 'prodml23:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml23:InnerToOuterZoneMobilityRatio' + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; + /// Required element 'prodml23:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml23:InnerToOuterZoneDiffusivityRatio' + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; + /// Required element 'prodml23:DistanceToMobilityInterface' of XML schema type 'prodml23:DistanceToMobilityInterface' + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface; + /// Optional element 'prodml23:OrientationOfLinearFront' of XML schema type 'prodml23:OrientationOfLinearFront' + prodml23__OrientationOfLinearFront *OrientationOfLinearFront; + /// Required element 'prodml23:TransmissibilityReductionFactorOfLinearFront' of XML schema type 'prodml23:TransmissibilityReductionFactorOfLinearFront' + prodml23__TransmissibilityReductionFactorOfLinearFront *TransmissibilityReductionFactorOfLinearFront; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69867,33 +70112,33 @@ class SOAP_CMAC prodml22__LinearCompositeWithLeakyFaultModel : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LinearCompositeWithLeakyFaultModel, default initialized and not managed by a soap context - virtual prodml22__LinearCompositeWithLeakyFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LinearCompositeWithLeakyFaultModel); } + /// Return a new object of type prodml23__LinearCompositeWithLeakyFaultModel, default initialized and not managed by a soap context + virtual prodml23__LinearCompositeWithLeakyFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LinearCompositeWithLeakyFaultModel); } public: /// Constructor with default initializations - prodml22__LinearCompositeWithLeakyFaultModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface(), OrientationOfLinearFront(), TransmissibilityReductionFactorOfLinearFront() { } + prodml23__LinearCompositeWithLeakyFaultModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface(), OrientationOfLinearFront(), TransmissibilityReductionFactorOfLinearFront() { } /// Destructor - virtual ~prodml22__LinearCompositeWithLeakyFaultModel() { } - /// Friend allocator used by soap_new_prodml22__LinearCompositeWithLeakyFaultModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__LinearCompositeWithLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LinearCompositeWithLeakyFaultModel() { } + /// Friend allocator used by soap_new_prodml23__LinearCompositeWithLeakyFaultModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__LinearCompositeWithLeakyFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__LinearCompositeWithLeakyFaultModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2385 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel (-1119) -/* complex XML schema type 'prodml22:NumericalBoundaryModel': */ -class SOAP_CMAC prodml22__NumericalBoundaryModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel (-1119) +/* complex XML schema type 'prodml23:NumericalBoundaryModel': */ +class SOAP_CMAC prodml23__NumericalBoundaryModel : public prodml23__BoundaryBaseModel { public: - /// Optional element 'prodml22:DrainageAreaMeasured' of XML schema type 'prodml22:DrainageAreaMeasured' - prodml22__DrainageAreaMeasured *DrainageAreaMeasured; - /// Optional element 'prodml22:PoreVolumeMeasured' of XML schema type 'prodml22:PoreVolumeMeasured' - prodml22__PoreVolumeMeasured *PoreVolumeMeasured; - /// Optional element 'prodml22:SingleBoundarySubModel' of XML schema type 'prodml22:SingleBoundarySubModel' - std::vector SingleBoundarySubModel; + /// Optional element 'prodml23:DrainageAreaMeasured' of XML schema type 'prodml23:DrainageAreaMeasured' + prodml23__DrainageAreaMeasured *DrainageAreaMeasured; + /// Optional element 'prodml23:PoreVolumeMeasured' of XML schema type 'prodml23:PoreVolumeMeasured' + prodml23__PoreVolumeMeasured *PoreVolumeMeasured; + /// Optional element 'prodml23:SingleBoundarySubModel' of XML schema type 'prodml23:SingleBoundarySubModel' + std::vector SingleBoundarySubModel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69906,37 +70151,37 @@ class SOAP_CMAC prodml22__NumericalBoundaryModel : public prodml22__BoundaryBase virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NumericalBoundaryModel, default initialized and not managed by a soap context - virtual prodml22__NumericalBoundaryModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NumericalBoundaryModel); } + /// Return a new object of type prodml23__NumericalBoundaryModel, default initialized and not managed by a soap context + virtual prodml23__NumericalBoundaryModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NumericalBoundaryModel); } public: /// Constructor with default initializations - prodml22__NumericalBoundaryModel() : DrainageAreaMeasured(), PoreVolumeMeasured(), SingleBoundarySubModel() { } + prodml23__NumericalBoundaryModel() : DrainageAreaMeasured(), PoreVolumeMeasured(), SingleBoundarySubModel() { } /// Destructor - virtual ~prodml22__NumericalBoundaryModel() { } - /// Friend allocator used by soap_new_prodml22__NumericalBoundaryModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalBoundaryModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NumericalBoundaryModel() { } + /// Friend allocator used by soap_new_prodml23__NumericalBoundaryModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__NumericalBoundaryModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalBoundaryModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2387 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel (-1120) -/* complex XML schema type 'prodml22:NumericalDualPorosityReservoirModel': */ -class SOAP_CMAC prodml22__NumericalDualPorosityReservoirModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel (-1120) +/* complex XML schema type 'prodml23:NumericalDualPorosityReservoirModel': */ +class SOAP_CMAC prodml23__NumericalDualPorosityReservoirModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InterporosityFlowParameter' of XML schema type 'prodml22:InterporosityFlowParameter' - prodml22__InterporosityFlowParameter *InterporosityFlowParameter; - /// Required element 'prodml22:StorativityRatio' of XML schema type 'prodml22:StorativityRatio' - prodml22__StorativityRatio *StorativityRatio; - /// Optional element 'prodml22:InternalFaultSubModel' of XML schema type 'prodml22:InternalFaultSubModel' - std::vector InternalFaultSubModel; - /// Required element 'prodml22:DistributedParametersSubModel' of XML schema type 'prodml22:DistributedParametersSubModel' - prodml22__DistributedParametersSubModel *DistributedParametersSubModel; - /// Optional element 'prodml22:ReservoirZoneSubModel' of XML schema type 'prodml22:ReservoirZoneSubModel' - std::vector ReservoirZoneSubModel; + /// Required element 'prodml23:InterporosityFlowParameter' of XML schema type 'prodml23:InterporosityFlowParameter' + prodml23__InterporosityFlowParameter *InterporosityFlowParameter; + /// Required element 'prodml23:StorativityRatio' of XML schema type 'prodml23:StorativityRatio' + prodml23__StorativityRatio *StorativityRatio; + /// Optional element 'prodml23:InternalFaultSubModel' of XML schema type 'prodml23:InternalFaultSubModel' + std::vector InternalFaultSubModel; + /// Required element 'prodml23:DistributedParametersSubModel' of XML schema type 'prodml23:DistributedParametersSubModel' + prodml23__DistributedParametersSubModel *DistributedParametersSubModel; + /// Optional element 'prodml23:ReservoirZoneSubModel' of XML schema type 'prodml23:ReservoirZoneSubModel' + std::vector ReservoirZoneSubModel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69949,33 +70194,33 @@ class SOAP_CMAC prodml22__NumericalDualPorosityReservoirModel : public prodml22_ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NumericalDualPorosityReservoirModel, default initialized and not managed by a soap context - virtual prodml22__NumericalDualPorosityReservoirModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NumericalDualPorosityReservoirModel); } + /// Return a new object of type prodml23__NumericalDualPorosityReservoirModel, default initialized and not managed by a soap context + virtual prodml23__NumericalDualPorosityReservoirModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NumericalDualPorosityReservoirModel); } public: /// Constructor with default initializations - prodml22__NumericalDualPorosityReservoirModel() : InterporosityFlowParameter(), StorativityRatio(), InternalFaultSubModel(), DistributedParametersSubModel(), ReservoirZoneSubModel() { } + prodml23__NumericalDualPorosityReservoirModel() : InterporosityFlowParameter(), StorativityRatio(), InternalFaultSubModel(), DistributedParametersSubModel(), ReservoirZoneSubModel() { } /// Destructor - virtual ~prodml22__NumericalDualPorosityReservoirModel() { } - /// Friend allocator used by soap_new_prodml22__NumericalDualPorosityReservoirModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalDualPorosityReservoirModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NumericalDualPorosityReservoirModel() { } + /// Friend allocator used by soap_new_prodml23__NumericalDualPorosityReservoirModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__NumericalDualPorosityReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalDualPorosityReservoirModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2389 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel (-1121) -/* complex XML schema type 'prodml22:NumericalHomogeneousReservoirModel': */ -class SOAP_CMAC prodml22__NumericalHomogeneousReservoirModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel (-1121) +/* complex XML schema type 'prodml23:NumericalHomogeneousReservoirModel': */ +class SOAP_CMAC prodml23__NumericalHomogeneousReservoirModel : public prodml23__ReservoirBaseModel { public: - /// Optional element 'prodml22:InternalFaultSubModel' of XML schema type 'prodml22:InternalFaultSubModel' - std::vector InternalFaultSubModel; - /// Required element 'prodml22:DistributedParametersSubModel' of XML schema type 'prodml22:DistributedParametersSubModel' - prodml22__DistributedParametersSubModel *DistributedParametersSubModel; - /// Optional element 'prodml22:ReservoirZoneSubModel' of XML schema type 'prodml22:ReservoirZoneSubModel' - std::vector ReservoirZoneSubModel; + /// Optional element 'prodml23:InternalFaultSubModel' of XML schema type 'prodml23:InternalFaultSubModel' + std::vector InternalFaultSubModel; + /// Required element 'prodml23:DistributedParametersSubModel' of XML schema type 'prodml23:DistributedParametersSubModel' + prodml23__DistributedParametersSubModel *DistributedParametersSubModel; + /// Optional element 'prodml23:ReservoirZoneSubModel' of XML schema type 'prodml23:ReservoirZoneSubModel' + std::vector ReservoirZoneSubModel; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -69988,37 +70233,37 @@ class SOAP_CMAC prodml22__NumericalHomogeneousReservoirModel : public prodml22__ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__NumericalHomogeneousReservoirModel, default initialized and not managed by a soap context - virtual prodml22__NumericalHomogeneousReservoirModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__NumericalHomogeneousReservoirModel); } + /// Return a new object of type prodml23__NumericalHomogeneousReservoirModel, default initialized and not managed by a soap context + virtual prodml23__NumericalHomogeneousReservoirModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__NumericalHomogeneousReservoirModel); } public: /// Constructor with default initializations - prodml22__NumericalHomogeneousReservoirModel() : InternalFaultSubModel(), DistributedParametersSubModel(), ReservoirZoneSubModel() { } + prodml23__NumericalHomogeneousReservoirModel() : InternalFaultSubModel(), DistributedParametersSubModel(), ReservoirZoneSubModel() { } /// Destructor - virtual ~prodml22__NumericalHomogeneousReservoirModel() { } - /// Friend allocator used by soap_new_prodml22__NumericalHomogeneousReservoirModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instantiate_prodml22__NumericalHomogeneousReservoirModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__NumericalHomogeneousReservoirModel() { } + /// Friend allocator used by soap_new_prodml23__NumericalHomogeneousReservoirModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__NumericalHomogeneousReservoirModel * SOAP_FMAC2 soap_instantiate_prodml23__NumericalHomogeneousReservoirModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2391 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel (-1122) -/* complex XML schema type 'prodml22:PartiallyPenetratingModel': */ -class SOAP_CMAC prodml22__PartiallyPenetratingModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel (-1122) +/* complex XML schema type 'prodml23:PartiallyPenetratingModel': */ +class SOAP_CMAC prodml23__PartiallyPenetratingModel : public prodml23__NearWellboreBaseModel { public: - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Required element 'prodml22:PerforatedLength' of XML schema type 'prodml22:PerforatedLength' - prodml22__PerforatedLength *PerforatedLength; - /// Required element 'prodml22:DistanceMidPerforationsToBottomBoundary' of XML schema type 'prodml22:DistanceMidPerforationsToBottomBoundary' - prodml22__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Required element 'prodml23:PerforatedLength' of XML schema type 'prodml23:PerforatedLength' + prodml23__PerforatedLength *PerforatedLength; + /// Required element 'prodml23:DistanceMidPerforationsToBottomBoundary' of XML schema type 'prodml23:DistanceMidPerforationsToBottomBoundary' + prodml23__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70031,31 +70276,31 @@ class SOAP_CMAC prodml22__PartiallyPenetratingModel : public prodml22__NearWellb virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PartiallyPenetratingModel, default initialized and not managed by a soap context - virtual prodml22__PartiallyPenetratingModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PartiallyPenetratingModel); } + /// Return a new object of type prodml23__PartiallyPenetratingModel, default initialized and not managed by a soap context + virtual prodml23__PartiallyPenetratingModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PartiallyPenetratingModel); } public: /// Constructor with default initializations - prodml22__PartiallyPenetratingModel() : SkinLayer2RelativeToTotalThickness(), ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), PerforatedLength(), DistanceMidPerforationsToBottomBoundary() { } + prodml23__PartiallyPenetratingModel() : SkinLayer2RelativeToTotalThickness(), ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), PerforatedLength(), DistanceMidPerforationsToBottomBoundary() { } /// Destructor - virtual ~prodml22__PartiallyPenetratingModel() { } - /// Friend allocator used by soap_new_prodml22__PartiallyPenetratingModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__PartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PartiallyPenetratingModel() { } + /// Friend allocator used by soap_new_prodml23__PartiallyPenetratingModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__PartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__PartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2393 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel (-1123) -/* complex XML schema type 'prodml22:PinchOutModel': */ -class SOAP_CMAC prodml22__PinchOutModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel (-1123) +/* complex XML schema type 'prodml23:PinchOutModel': */ +class SOAP_CMAC prodml23__PinchOutModel : public prodml23__BoundaryBaseModel { public: - /// Optional element 'prodml22:OrientationOfNormalToBoundary1' of XML schema type 'prodml22:OrientationOfNormalToBoundary1' - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; - /// Required element 'prodml22:DistanceToPinchOut' of XML schema type 'prodml22:DistanceToPinchOut' - prodml22__DistanceToPinchOut *DistanceToPinchOut; + /// Optional element 'prodml23:OrientationOfNormalToBoundary1' of XML schema type 'prodml23:OrientationOfNormalToBoundary1' + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; + /// Required element 'prodml23:DistanceToPinchOut' of XML schema type 'prodml23:DistanceToPinchOut' + prodml23__DistanceToPinchOut *DistanceToPinchOut; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70068,33 +70313,33 @@ class SOAP_CMAC prodml22__PinchOutModel : public prodml22__BoundaryBaseModel { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PinchOutModel, default initialized and not managed by a soap context - virtual prodml22__PinchOutModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PinchOutModel); } + /// Return a new object of type prodml23__PinchOutModel, default initialized and not managed by a soap context + virtual prodml23__PinchOutModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PinchOutModel); } public: /// Constructor with default initializations - prodml22__PinchOutModel() : OrientationOfNormalToBoundary1(), DistanceToPinchOut() { } + prodml23__PinchOutModel() : OrientationOfNormalToBoundary1(), DistanceToPinchOut() { } /// Destructor - virtual ~prodml22__PinchOutModel() { } - /// Friend allocator used by soap_new_prodml22__PinchOutModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml22__PinchOutModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PinchOutModel() { } + /// Friend allocator used by soap_new_prodml23__PinchOutModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__PinchOutModel * SOAP_FMAC2 soap_instantiate_prodml23__PinchOutModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2395 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel (-1124) -/* complex XML schema type 'prodml22:RadialCompositeModel': */ -class SOAP_CMAC prodml22__RadialCompositeModel : public prodml22__ReservoirBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel (-1124) +/* complex XML schema type 'prodml23:RadialCompositeModel': */ +class SOAP_CMAC prodml23__RadialCompositeModel : public prodml23__ReservoirBaseModel { public: - /// Required element 'prodml22:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml22:InnerToOuterZoneMobilityRatio' - prodml22__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; - /// Required element 'prodml22:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml22:InnerToOuterZoneDiffusivityRatio' - prodml22__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; - /// Required element 'prodml22:DistanceToMobilityInterface' of XML schema type 'prodml22:DistanceToMobilityInterface' - prodml22__DistanceToMobilityInterface *DistanceToMobilityInterface; + /// Required element 'prodml23:InnerToOuterZoneMobilityRatio' of XML schema type 'prodml23:InnerToOuterZoneMobilityRatio' + prodml23__InnerToOuterZoneMobilityRatio *InnerToOuterZoneMobilityRatio; + /// Required element 'prodml23:InnerToOuterZoneDiffusivityRatio' of XML schema type 'prodml23:InnerToOuterZoneDiffusivityRatio' + prodml23__InnerToOuterZoneDiffusivityRatio *InnerToOuterZoneDiffusivityRatio; + /// Required element 'prodml23:DistanceToMobilityInterface' of XML schema type 'prodml23:DistanceToMobilityInterface' + prodml23__DistanceToMobilityInterface *DistanceToMobilityInterface; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70107,33 +70352,33 @@ class SOAP_CMAC prodml22__RadialCompositeModel : public prodml22__ReservoirBaseM virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RadialCompositeModel, default initialized and not managed by a soap context - virtual prodml22__RadialCompositeModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RadialCompositeModel); } + /// Return a new object of type prodml23__RadialCompositeModel, default initialized and not managed by a soap context + virtual prodml23__RadialCompositeModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__RadialCompositeModel); } public: /// Constructor with default initializations - prodml22__RadialCompositeModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface() { } + prodml23__RadialCompositeModel() : InnerToOuterZoneMobilityRatio(), InnerToOuterZoneDiffusivityRatio(), DistanceToMobilityInterface() { } /// Destructor - virtual ~prodml22__RadialCompositeModel() { } - /// Friend allocator used by soap_new_prodml22__RadialCompositeModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml22__RadialCompositeModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__RadialCompositeModel() { } + /// Friend allocator used by soap_new_prodml23__RadialCompositeModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__RadialCompositeModel * SOAP_FMAC2 soap_instantiate_prodml23__RadialCompositeModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2399 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel (-1126) -/* complex XML schema type 'prodml22:SingleFaultModel': */ -class SOAP_CMAC prodml22__SingleFaultModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel (-1126) +/* complex XML schema type 'prodml23:SingleFaultModel': */ +class SOAP_CMAC prodml23__SingleFaultModel : public prodml23__BoundaryBaseModel { public: - /// Required element 'prodml22:DistanceToBoundary1' of XML schema type 'prodml22:DistanceToBoundary1' - prodml22__DistanceToBoundary1 *DistanceToBoundary1; - /// Optional element 'prodml22:OrientationOfNormalToBoundary1' of XML schema type 'prodml22:OrientationOfNormalToBoundary1' - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; - /// Required element 'prodml22:Boundary1Type' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type Boundary1Type; + /// Required element 'prodml23:DistanceToBoundary1' of XML schema type 'prodml23:DistanceToBoundary1' + prodml23__DistanceToBoundary1 *DistanceToBoundary1; + /// Optional element 'prodml23:OrientationOfNormalToBoundary1' of XML schema type 'prodml23:OrientationOfNormalToBoundary1' + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; + /// Required element 'prodml23:Boundary1Type' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type Boundary1Type; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70146,37 +70391,37 @@ class SOAP_CMAC prodml22__SingleFaultModel : public prodml22__BoundaryBaseModel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SingleFaultModel, default initialized and not managed by a soap context - virtual prodml22__SingleFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SingleFaultModel); } + /// Return a new object of type prodml23__SingleFaultModel, default initialized and not managed by a soap context + virtual prodml23__SingleFaultModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SingleFaultModel); } public: /// Constructor with default initializations - prodml22__SingleFaultModel() : DistanceToBoundary1(), OrientationOfNormalToBoundary1(), Boundary1Type() { } + prodml23__SingleFaultModel() : DistanceToBoundary1(), OrientationOfNormalToBoundary1(), Boundary1Type() { } /// Destructor - virtual ~prodml22__SingleFaultModel() { } - /// Friend allocator used by soap_new_prodml22__SingleFaultModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml22__SingleFaultModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SingleFaultModel() { } + /// Friend allocator used by soap_new_prodml23__SingleFaultModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__SingleFaultModel * SOAP_FMAC2 soap_instantiate_prodml23__SingleFaultModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2401 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel (-1127) -/* complex XML schema type 'prodml22:SlantedFullyPenetratingModel': */ -class SOAP_CMAC prodml22__SlantedFullyPenetratingModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel (-1127) +/* complex XML schema type 'prodml23:SlantedFullyPenetratingModel': */ +class SOAP_CMAC prodml23__SlantedFullyPenetratingModel : public prodml23__NearWellboreBaseModel { public: - /// Required element 'prodml22:WellboreDeviationAngle' of XML schema type 'prodml22:WellboreDeviationAngle' - prodml22__WellboreDeviationAngle *WellboreDeviationAngle; - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Optional element 'prodml22:OrientationWellTrajectory' of XML schema type 'prodml22:OrientationWellTrajectory' - prodml22__OrientationWellTrajectory *OrientationWellTrajectory; + /// Required element 'prodml23:WellboreDeviationAngle' of XML schema type 'prodml23:WellboreDeviationAngle' + prodml23__WellboreDeviationAngle *WellboreDeviationAngle; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Optional element 'prodml23:OrientationWellTrajectory' of XML schema type 'prodml23:OrientationWellTrajectory' + prodml23__OrientationWellTrajectory *OrientationWellTrajectory; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70189,41 +70434,41 @@ class SOAP_CMAC prodml22__SlantedFullyPenetratingModel : public prodml22__NearWe virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SlantedFullyPenetratingModel, default initialized and not managed by a soap context - virtual prodml22__SlantedFullyPenetratingModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SlantedFullyPenetratingModel); } + /// Return a new object of type prodml23__SlantedFullyPenetratingModel, default initialized and not managed by a soap context + virtual prodml23__SlantedFullyPenetratingModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SlantedFullyPenetratingModel); } public: /// Constructor with default initializations - prodml22__SlantedFullyPenetratingModel() : WellboreDeviationAngle(), SkinLayer2RelativeToTotalThickness(), ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory() { } + prodml23__SlantedFullyPenetratingModel() : WellboreDeviationAngle(), SkinLayer2RelativeToTotalThickness(), ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), OrientationWellTrajectory() { } /// Destructor - virtual ~prodml22__SlantedFullyPenetratingModel() { } - /// Friend allocator used by soap_new_prodml22__SlantedFullyPenetratingModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__SlantedFullyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SlantedFullyPenetratingModel() { } + /// Friend allocator used by soap_new_prodml23__SlantedFullyPenetratingModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__SlantedFullyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__SlantedFullyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2403 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel (-1128) -/* complex XML schema type 'prodml22:SlantedPartiallyPenetratingModel': */ -class SOAP_CMAC prodml22__SlantedPartiallyPenetratingModel : public prodml22__NearWellboreBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel (-1128) +/* complex XML schema type 'prodml23:SlantedPartiallyPenetratingModel': */ +class SOAP_CMAC prodml23__SlantedPartiallyPenetratingModel : public prodml23__NearWellboreBaseModel { public: - /// Required element 'prodml22:WellboreDeviationAngle' of XML schema type 'prodml22:WellboreDeviationAngle' - prodml22__WellboreDeviationAngle *WellboreDeviationAngle; - /// Optional element 'prodml22:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml22:SkinLayer2RelativeToTotalThickness' - prodml22__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; - /// Optional element 'prodml22:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml22:ConvergenceSkinRelativeToTotalThickness' - prodml22__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; - /// Optional element 'prodml22:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml22:MechanicalSkinRelativeToTotalThickness' - prodml22__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; - /// Required element 'prodml22:PerforatedLength' of XML schema type 'prodml22:PerforatedLength' - prodml22__PerforatedLength *PerforatedLength; - /// Required element 'prodml22:DistanceMidPerforationsToBottomBoundary' of XML schema type 'prodml22:DistanceMidPerforationsToBottomBoundary' - prodml22__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary; - /// Optional element 'prodml22:OrientationWellTrajectory' of XML schema type 'prodml22:OrientationWellTrajectory' - prodml22__OrientationWellTrajectory *OrientationWellTrajectory; + /// Required element 'prodml23:WellboreDeviationAngle' of XML schema type 'prodml23:WellboreDeviationAngle' + prodml23__WellboreDeviationAngle *WellboreDeviationAngle; + /// Optional element 'prodml23:SkinLayer2RelativeToTotalThickness' of XML schema type 'prodml23:SkinLayer2RelativeToTotalThickness' + prodml23__SkinLayer2RelativeToTotalThickness *SkinLayer2RelativeToTotalThickness; + /// Optional element 'prodml23:ConvergenceSkinRelativeToTotalThickness' of XML schema type 'prodml23:ConvergenceSkinRelativeToTotalThickness' + prodml23__ConvergenceSkinRelativeToTotalThickness *ConvergenceSkinRelativeToTotalThickness; + /// Optional element 'prodml23:MechanicalSkinRelativeToTotalThickness' of XML schema type 'prodml23:MechanicalSkinRelativeToTotalThickness' + prodml23__MechanicalSkinRelativeToTotalThickness *MechanicalSkinRelativeToTotalThickness; + /// Required element 'prodml23:PerforatedLength' of XML schema type 'prodml23:PerforatedLength' + prodml23__PerforatedLength *PerforatedLength; + /// Required element 'prodml23:DistanceMidPerforationsToBottomBoundary' of XML schema type 'prodml23:DistanceMidPerforationsToBottomBoundary' + prodml23__DistanceMidPerforationsToBottomBoundary *DistanceMidPerforationsToBottomBoundary; + /// Optional element 'prodml23:OrientationWellTrajectory' of XML schema type 'prodml23:OrientationWellTrajectory' + prodml23__OrientationWellTrajectory *OrientationWellTrajectory; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70236,39 +70481,39 @@ class SOAP_CMAC prodml22__SlantedPartiallyPenetratingModel : public prodml22__Ne virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SlantedPartiallyPenetratingModel, default initialized and not managed by a soap context - virtual prodml22__SlantedPartiallyPenetratingModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SlantedPartiallyPenetratingModel); } + /// Return a new object of type prodml23__SlantedPartiallyPenetratingModel, default initialized and not managed by a soap context + virtual prodml23__SlantedPartiallyPenetratingModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__SlantedPartiallyPenetratingModel); } public: /// Constructor with default initializations - prodml22__SlantedPartiallyPenetratingModel() : WellboreDeviationAngle(), SkinLayer2RelativeToTotalThickness(), ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), PerforatedLength(), DistanceMidPerforationsToBottomBoundary(), OrientationWellTrajectory() { } + prodml23__SlantedPartiallyPenetratingModel() : WellboreDeviationAngle(), SkinLayer2RelativeToTotalThickness(), ConvergenceSkinRelativeToTotalThickness(), MechanicalSkinRelativeToTotalThickness(), PerforatedLength(), DistanceMidPerforationsToBottomBoundary(), OrientationWellTrajectory() { } /// Destructor - virtual ~prodml22__SlantedPartiallyPenetratingModel() { } - /// Friend allocator used by soap_new_prodml22__SlantedPartiallyPenetratingModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml22__SlantedPartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__SlantedPartiallyPenetratingModel() { } + /// Friend allocator used by soap_new_prodml23__SlantedPartiallyPenetratingModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__SlantedPartiallyPenetratingModel * SOAP_FMAC2 soap_instantiate_prodml23__SlantedPartiallyPenetratingModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2405 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel (-1129) -/* complex XML schema type 'prodml22:TwoIntersectingFaultsModel': */ -class SOAP_CMAC prodml22__TwoIntersectingFaultsModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel (-1129) +/* complex XML schema type 'prodml23:TwoIntersectingFaultsModel': */ +class SOAP_CMAC prodml23__TwoIntersectingFaultsModel : public prodml23__BoundaryBaseModel { public: - /// Required element 'prodml22:DistanceToBoundary1' of XML schema type 'prodml22:DistanceToBoundary1' - prodml22__DistanceToBoundary1 *DistanceToBoundary1; - /// Required element 'prodml22:DistanceToBoundary2' of XML schema type 'prodml22:DistanceToBoundary2' - prodml22__DistanceToBoundary2 *DistanceToBoundary2; - /// Optional element 'prodml22:OrientationOfNormalToBoundary1' of XML schema type 'prodml22:OrientationOfNormalToBoundary1' - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; - /// Required element 'prodml22:AngleBetweenBoundaries' of XML schema type 'prodml22:AngleBetweenBoundaries' - prodml22__AngleBetweenBoundaries *AngleBetweenBoundaries; - /// Required element 'prodml22:Boundary1Type' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type Boundary1Type; - /// Required element 'prodml22:Boundary2Type' of XML schema type 'prodml22:Boundary2Type' - prodml22__Boundary2Type Boundary2Type; + /// Required element 'prodml23:DistanceToBoundary1' of XML schema type 'prodml23:DistanceToBoundary1' + prodml23__DistanceToBoundary1 *DistanceToBoundary1; + /// Required element 'prodml23:DistanceToBoundary2' of XML schema type 'prodml23:DistanceToBoundary2' + prodml23__DistanceToBoundary2 *DistanceToBoundary2; + /// Optional element 'prodml23:OrientationOfNormalToBoundary1' of XML schema type 'prodml23:OrientationOfNormalToBoundary1' + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; + /// Required element 'prodml23:AngleBetweenBoundaries' of XML schema type 'prodml23:AngleBetweenBoundaries' + prodml23__AngleBetweenBoundaries *AngleBetweenBoundaries; + /// Required element 'prodml23:Boundary1Type' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type Boundary1Type; + /// Required element 'prodml23:Boundary2Type' of XML schema type 'prodml23:Boundary2Type' + prodml23__Boundary2Type Boundary2Type; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70281,37 +70526,37 @@ class SOAP_CMAC prodml22__TwoIntersectingFaultsModel : public prodml22__Boundary virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TwoIntersectingFaultsModel, default initialized and not managed by a soap context - virtual prodml22__TwoIntersectingFaultsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TwoIntersectingFaultsModel); } + /// Return a new object of type prodml23__TwoIntersectingFaultsModel, default initialized and not managed by a soap context + virtual prodml23__TwoIntersectingFaultsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TwoIntersectingFaultsModel); } public: /// Constructor with default initializations - prodml22__TwoIntersectingFaultsModel() : DistanceToBoundary1(), DistanceToBoundary2(), OrientationOfNormalToBoundary1(), AngleBetweenBoundaries(), Boundary1Type(), Boundary2Type() { } + prodml23__TwoIntersectingFaultsModel() : DistanceToBoundary1(), DistanceToBoundary2(), OrientationOfNormalToBoundary1(), AngleBetweenBoundaries(), Boundary1Type(), Boundary2Type() { } /// Destructor - virtual ~prodml22__TwoIntersectingFaultsModel() { } - /// Friend allocator used by soap_new_prodml22__TwoIntersectingFaultsModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__TwoIntersectingFaultsModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TwoIntersectingFaultsModel() { } + /// Friend allocator used by soap_new_prodml23__TwoIntersectingFaultsModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__TwoIntersectingFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__TwoIntersectingFaultsModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2407 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel (-1130) -/* complex XML schema type 'prodml22:TwoParallelFaultsModel': */ -class SOAP_CMAC prodml22__TwoParallelFaultsModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel (-1130) +/* complex XML schema type 'prodml23:TwoParallelFaultsModel': */ +class SOAP_CMAC prodml23__TwoParallelFaultsModel : public prodml23__BoundaryBaseModel { public: - /// Required element 'prodml22:DistanceToBoundary1' of XML schema type 'prodml22:DistanceToBoundary1' - prodml22__DistanceToBoundary1 *DistanceToBoundary1; - /// Required element 'prodml22:DistanceToBoundary3' of XML schema type 'prodml22:DistanceToBoundary3' - prodml22__DistanceToBoundary3 *DistanceToBoundary3; - /// Optional element 'prodml22:OrientationOfNormalToBoundary1' of XML schema type 'prodml22:OrientationOfNormalToBoundary1' - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; - /// Required element 'prodml22:Boundary1Type' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type Boundary1Type; - /// Required element 'prodml22:Boundary3Type' of XML schema type 'prodml22:Boundary3Type' - prodml22__Boundary3Type Boundary3Type; + /// Required element 'prodml23:DistanceToBoundary1' of XML schema type 'prodml23:DistanceToBoundary1' + prodml23__DistanceToBoundary1 *DistanceToBoundary1; + /// Required element 'prodml23:DistanceToBoundary3' of XML schema type 'prodml23:DistanceToBoundary3' + prodml23__DistanceToBoundary3 *DistanceToBoundary3; + /// Optional element 'prodml23:OrientationOfNormalToBoundary1' of XML schema type 'prodml23:OrientationOfNormalToBoundary1' + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; + /// Required element 'prodml23:Boundary1Type' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type Boundary1Type; + /// Required element 'prodml23:Boundary3Type' of XML schema type 'prodml23:Boundary3Type' + prodml23__Boundary3Type Boundary3Type; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70324,41 +70569,41 @@ class SOAP_CMAC prodml22__TwoParallelFaultsModel : public prodml22__BoundaryBase virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TwoParallelFaultsModel, default initialized and not managed by a soap context - virtual prodml22__TwoParallelFaultsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TwoParallelFaultsModel); } + /// Return a new object of type prodml23__TwoParallelFaultsModel, default initialized and not managed by a soap context + virtual prodml23__TwoParallelFaultsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TwoParallelFaultsModel); } public: /// Constructor with default initializations - prodml22__TwoParallelFaultsModel() : DistanceToBoundary1(), DistanceToBoundary3(), OrientationOfNormalToBoundary1(), Boundary1Type(), Boundary3Type() { } + prodml23__TwoParallelFaultsModel() : DistanceToBoundary1(), DistanceToBoundary3(), OrientationOfNormalToBoundary1(), Boundary1Type(), Boundary3Type() { } /// Destructor - virtual ~prodml22__TwoParallelFaultsModel() { } - /// Friend allocator used by soap_new_prodml22__TwoParallelFaultsModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__TwoParallelFaultsModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TwoParallelFaultsModel() { } + /// Friend allocator used by soap_new_prodml23__TwoParallelFaultsModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__TwoParallelFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__TwoParallelFaultsModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2409 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel (-1131) -/* complex XML schema type 'prodml22:UShapedFaultsModel': */ -class SOAP_CMAC prodml22__UShapedFaultsModel : public prodml22__BoundaryBaseModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel (-1131) +/* complex XML schema type 'prodml23:UShapedFaultsModel': */ +class SOAP_CMAC prodml23__UShapedFaultsModel : public prodml23__BoundaryBaseModel { public: - /// Required element 'prodml22:DistanceToBoundary1' of XML schema type 'prodml22:DistanceToBoundary1' - prodml22__DistanceToBoundary1 *DistanceToBoundary1; - /// Required element 'prodml22:DistanceToBoundary2' of XML schema type 'prodml22:DistanceToBoundary2' - prodml22__DistanceToBoundary2 *DistanceToBoundary2; - /// Required element 'prodml22:DistanceToBoundary3' of XML schema type 'prodml22:DistanceToBoundary3' - prodml22__DistanceToBoundary3 *DistanceToBoundary3; - /// Optional element 'prodml22:OrientationOfNormalToBoundary1' of XML schema type 'prodml22:OrientationOfNormalToBoundary1' - prodml22__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; - /// Required element 'prodml22:Boundary1Type' of XML schema type 'prodml22:Boundary1Type' - prodml22__Boundary1Type Boundary1Type; - /// Required element 'prodml22:Boundary2Type' of XML schema type 'prodml22:Boundary2Type' - prodml22__Boundary2Type Boundary2Type; - /// Required element 'prodml22:Boundary3Type' of XML schema type 'prodml22:Boundary3Type' - prodml22__Boundary3Type Boundary3Type; + /// Required element 'prodml23:DistanceToBoundary1' of XML schema type 'prodml23:DistanceToBoundary1' + prodml23__DistanceToBoundary1 *DistanceToBoundary1; + /// Required element 'prodml23:DistanceToBoundary2' of XML schema type 'prodml23:DistanceToBoundary2' + prodml23__DistanceToBoundary2 *DistanceToBoundary2; + /// Required element 'prodml23:DistanceToBoundary3' of XML schema type 'prodml23:DistanceToBoundary3' + prodml23__DistanceToBoundary3 *DistanceToBoundary3; + /// Optional element 'prodml23:OrientationOfNormalToBoundary1' of XML schema type 'prodml23:OrientationOfNormalToBoundary1' + prodml23__OrientationOfNormalToBoundary1 *OrientationOfNormalToBoundary1; + /// Required element 'prodml23:Boundary1Type' of XML schema type 'prodml23:Boundary1Type' + prodml23__Boundary1Type Boundary1Type; + /// Required element 'prodml23:Boundary2Type' of XML schema type 'prodml23:Boundary2Type' + prodml23__Boundary2Type Boundary2Type; + /// Required element 'prodml23:Boundary3Type' of XML schema type 'prodml23:Boundary3Type' + prodml23__Boundary3Type Boundary3Type; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70371,35 +70616,35 @@ class SOAP_CMAC prodml22__UShapedFaultsModel : public prodml22__BoundaryBaseMode virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__UShapedFaultsModel, default initialized and not managed by a soap context - virtual prodml22__UShapedFaultsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__UShapedFaultsModel); } + /// Return a new object of type prodml23__UShapedFaultsModel, default initialized and not managed by a soap context + virtual prodml23__UShapedFaultsModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__UShapedFaultsModel); } public: /// Constructor with default initializations - prodml22__UShapedFaultsModel() : DistanceToBoundary1(), DistanceToBoundary2(), DistanceToBoundary3(), OrientationOfNormalToBoundary1(), Boundary1Type(), Boundary2Type(), Boundary3Type() { } + prodml23__UShapedFaultsModel() : DistanceToBoundary1(), DistanceToBoundary2(), DistanceToBoundary3(), OrientationOfNormalToBoundary1(), Boundary1Type(), Boundary2Type(), Boundary3Type() { } /// Destructor - virtual ~prodml22__UShapedFaultsModel() { } - /// Friend allocator used by soap_new_prodml22__UShapedFaultsModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml22__UShapedFaultsModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__UShapedFaultsModel() { } + /// Friend allocator used by soap_new_prodml23__UShapedFaultsModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__UShapedFaultsModel * SOAP_FMAC2 soap_instantiate_prodml23__UShapedFaultsModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2669 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample (-1261) -/* simple XML schema type 'prodml22:TimeSeriesDoubleSample': */ -class SOAP_CMAC prodml22__TimeSeriesDoubleSample { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample (-1261) +/* simple XML schema type 'prodml23:TimeSeriesDoubleSample': */ +class SOAP_CMAC prodml23__TimeSeriesDoubleSample { public: /// Simple content of XML schema type 'eml23:AbstractMeasure' wrapped by this struct double __item; /// Optional attribute 'dTim' of XML schema type 'eml23:TimeStamp' struct tm *dTim; - /// Optional attribute 'status' of XML schema type 'prodml22:ValueStatus' - prodml22__ValueStatus *status; + /// Optional attribute 'status' of XML schema type 'prodml23:ValueStatus' + prodml23__ValueStatus *status; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70412,23 +70657,23 @@ class SOAP_CMAC prodml22__TimeSeriesDoubleSample { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TimeSeriesDoubleSample, default initialized and not managed by a soap context - virtual prodml22__TimeSeriesDoubleSample *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TimeSeriesDoubleSample); } + /// Return a new object of type prodml23__TimeSeriesDoubleSample, default initialized and not managed by a soap context + virtual prodml23__TimeSeriesDoubleSample *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TimeSeriesDoubleSample); } public: /// Constructor with default initializations - prodml22__TimeSeriesDoubleSample() : __item(), dTim(), status(), soap() { } + prodml23__TimeSeriesDoubleSample() : __item(), dTim(), status(), soap() { } /// Destructor - virtual ~prodml22__TimeSeriesDoubleSample() { } - /// Friend allocator used by soap_new_prodml22__TimeSeriesDoubleSample(struct soap*, int) - friend SOAP_FMAC1 prodml22__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesDoubleSample(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TimeSeriesDoubleSample() { } + /// Friend allocator used by soap_new_prodml23__TimeSeriesDoubleSample(struct soap*, int) + friend SOAP_FMAC1 prodml23__TimeSeriesDoubleSample * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesDoubleSample(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2671 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample (-1262) -/* simple XML schema type 'prodml22:TimeSeriesStringSample': */ -class SOAP_CMAC prodml22__TimeSeriesStringSample { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample (-1262) +/* simple XML schema type 'prodml23:TimeSeriesStringSample': */ +class SOAP_CMAC prodml23__TimeSeriesStringSample { public: /// Simple content of XML schema type 'eml23:AbstractString' wrapped by this struct std::string __item; @@ -70437,8 +70682,8 @@ class SOAP_CMAC prodml22__TimeSeriesStringSample { /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70451,33 +70696,33 @@ class SOAP_CMAC prodml22__TimeSeriesStringSample { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__TimeSeriesStringSample, default initialized and not managed by a soap context - virtual prodml22__TimeSeriesStringSample *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__TimeSeriesStringSample); } + /// Return a new object of type prodml23__TimeSeriesStringSample, default initialized and not managed by a soap context + virtual prodml23__TimeSeriesStringSample *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__TimeSeriesStringSample); } public: /// Constructor with default initializations - prodml22__TimeSeriesStringSample() : __item(), dTim(), soap() { } + prodml23__TimeSeriesStringSample() : __item(), dTim(), soap() { } /// Destructor - virtual ~prodml22__TimeSeriesStringSample() { } - /// Friend allocator used by soap_new_prodml22__TimeSeriesStringSample(struct soap*, int) - friend SOAP_FMAC1 prodml22__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml22__TimeSeriesStringSample(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__TimeSeriesStringSample() { } + /// Friend allocator used by soap_new_prodml23__TimeSeriesStringSample(struct soap*, int) + friend SOAP_FMAC1 prodml23__TimeSeriesStringSample * SOAP_FMAC2 soap_instantiate_prodml23__TimeSeriesStringSample(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2673 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime (-1263) -/* simple XML schema type 'prodml22:EndpointDateTime': */ -class SOAP_CMAC prodml22__EndpointDateTime { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime (-1263) +/* simple XML schema type 'prodml23:EndpointDateTime': */ +class SOAP_CMAC prodml23__EndpointDateTime { public: /// Simple content of XML schema type 'eml23:TimeStamp' wrapped by this struct struct tm __item; - /// Required attribute 'endpoint' of XML schema type 'prodml22:EndpointQualifierInterval' - prodml22__EndpointQualifierInterval endpoint; + /// Required attribute 'endpoint' of XML schema type 'prodml23:EndpointQualifierInterval' + prodml23__EndpointQualifierInterval endpoint; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70490,33 +70735,33 @@ class SOAP_CMAC prodml22__EndpointDateTime { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__EndpointDateTime, default initialized and not managed by a soap context - virtual prodml22__EndpointDateTime *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__EndpointDateTime); } + /// Return a new object of type prodml23__EndpointDateTime, default initialized and not managed by a soap context + virtual prodml23__EndpointDateTime *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__EndpointDateTime); } public: /// Constructor with default initializations - prodml22__EndpointDateTime() : __item(), endpoint(), soap() { } + prodml23__EndpointDateTime() : __item(), endpoint(), soap() { } /// Destructor - virtual ~prodml22__EndpointDateTime() { } - /// Friend allocator used by soap_new_prodml22__EndpointDateTime(struct soap*, int) - friend SOAP_FMAC1 prodml22__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml22__EndpointDateTime(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__EndpointDateTime() { } + /// Friend allocator used by soap_new_prodml23__EndpointDateTime(struct soap*, int) + friend SOAP_FMAC1 prodml23__EndpointDateTime * SOAP_FMAC2 soap_instantiate_prodml23__EndpointDateTime(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2675 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity (-1264) -/* simple XML schema type 'prodml22:EndpointQuantity': */ -class SOAP_CMAC prodml22__EndpointQuantity { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity (-1264) +/* simple XML schema type 'prodml23:EndpointQuantity': */ +class SOAP_CMAC prodml23__EndpointQuantity { public: /// Simple content of XML schema type 'eml23:AbstractMeasure' wrapped by this struct double __item; - /// Required attribute 'endpoint' of XML schema type 'prodml22:EndpointQualifierInterval' - prodml22__EndpointQualifierInterval endpoint; + /// Required attribute 'endpoint' of XML schema type 'prodml23:EndpointQualifierInterval' + prodml23__EndpointQualifierInterval endpoint; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70529,33 +70774,33 @@ class SOAP_CMAC prodml22__EndpointQuantity { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__EndpointQuantity, default initialized and not managed by a soap context - virtual prodml22__EndpointQuantity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__EndpointQuantity); } + /// Return a new object of type prodml23__EndpointQuantity, default initialized and not managed by a soap context + virtual prodml23__EndpointQuantity *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__EndpointQuantity); } public: /// Constructor with default initializations - prodml22__EndpointQuantity() : __item(), endpoint(), soap() { } + prodml23__EndpointQuantity() : __item(), endpoint(), soap() { } /// Destructor - virtual ~prodml22__EndpointQuantity() { } - /// Friend allocator used by soap_new_prodml22__EndpointQuantity(struct soap*, int) - friend SOAP_FMAC1 prodml22__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml22__EndpointQuantity(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__EndpointQuantity() { } + /// Friend allocator used by soap_new_prodml23__EndpointQuantity(struct soap*, int) + friend SOAP_FMAC1 prodml23__EndpointQuantity * SOAP_FMAC2 soap_instantiate_prodml23__EndpointQuantity(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2677 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct (-1265) -/* simple XML schema type 'prodml22:KeywordValueStruct': */ -class SOAP_CMAC prodml22__KeywordValueStruct { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct (-1265) +/* simple XML schema type 'prodml23:KeywordValueStruct': */ +class SOAP_CMAC prodml23__KeywordValueStruct { public: /// Simple content of XML schema type 'eml23:AbstractString' wrapped by this struct std::string __item; - /// Required attribute 'keyword' of XML schema type 'prodml22:TimeSeriesKeyword' - prodml22__TimeSeriesKeyword keyword; + /// Required attribute 'keyword' of XML schema type 'prodml23:TimeSeriesKeyword' + prodml23__TimeSeriesKeyword keyword; /// Context that manages this object struct soap *soap; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -70568,15 +70813,15 @@ class SOAP_CMAC prodml22__KeywordValueStruct { virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__KeywordValueStruct, default initialized and not managed by a soap context - virtual prodml22__KeywordValueStruct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__KeywordValueStruct); } + /// Return a new object of type prodml23__KeywordValueStruct, default initialized and not managed by a soap context + virtual prodml23__KeywordValueStruct *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__KeywordValueStruct); } public: /// Constructor with default initializations - prodml22__KeywordValueStruct() : __item(), keyword(), soap() { } + prodml23__KeywordValueStruct() : __item(), keyword(), soap() { } /// Destructor - virtual ~prodml22__KeywordValueStruct() { } - /// Friend allocator used by soap_new_prodml22__KeywordValueStruct(struct soap*, int) - friend SOAP_FMAC1 prodml22__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml22__KeywordValueStruct(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__KeywordValueStruct() { } + /// Friend allocator used by soap_new_prodml23__KeywordValueStruct(struct soap*, int) + friend SOAP_FMAC1 prodml23__KeywordValueStruct * SOAP_FMAC2 soap_instantiate_prodml23__KeywordValueStruct(struct soap*, int, const char*, const char*, size_t*); }; #endif @@ -70615,6 +70860,7 @@ class SOAP_CMAC resqml22__AbstractTechnicalFeature : public resqml22__AbstractFe /* eml2_3ForGsoap.h:2687 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__BoundaryFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__BoundaryFeature (-1270) +/* Type resqml22__BoundaryFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:BoundaryFeature': */ class SOAP_CMAC resqml22__BoundaryFeature : public resqml22__AbstractFeature { public: @@ -70647,6 +70893,7 @@ class SOAP_CMAC resqml22__BoundaryFeature : public resqml22__AbstractFeature { /* eml2_3ForGsoap.h:2691 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__Model #define SOAP_TYPE_gsoap_eml2_3_resqml22__Model (-1272) +/* Type resqml22__Model is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:Model': */ class SOAP_CMAC resqml22__Model : public resqml22__AbstractFeature { public: @@ -70679,6 +70926,7 @@ class SOAP_CMAC resqml22__Model : public resqml22__AbstractFeature { /* eml2_3ForGsoap.h:2693 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__RockVolumeFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__RockVolumeFeature (-1273) +/* Type resqml22__RockVolumeFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:RockVolumeFeature': */ class SOAP_CMAC resqml22__RockVolumeFeature : public resqml22__AbstractFeature { public: @@ -70711,6 +70959,7 @@ class SOAP_CMAC resqml22__RockVolumeFeature : public resqml22__AbstractFeature { /* eml2_3ForGsoap.h:2705 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__Graph2dRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__Graph2dRepresentation (-1279) +/* Type resqml22__Graph2dRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:Graph2dRepresentation': */ class SOAP_CMAC resqml22__Graph2dRepresentation : public resqml22__AbstractRepresentation { public: @@ -70900,6 +71149,7 @@ class SOAP_CMAC resqml22__TiltedPlaneGeometry : public resqml22__AbstractPlaneGe /* eml2_3ForGsoap.h:2753 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__Seismic2dPostStackRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__Seismic2dPostStackRepresentation (-1303) +/* Type resqml22__Seismic2dPostStackRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:Seismic2dPostStackRepresentation': */ class SOAP_CMAC resqml22__Seismic2dPostStackRepresentation : public resqml22__AbstractRepresentation { public: @@ -70978,6 +71228,7 @@ class SOAP_CMAC resqml22__AbstractSurfaceRepresentation : public resqml22__Abstr /* eml2_3ForGsoap.h:2789 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__PointSetRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__PointSetRepresentation (-1321) +/* Type resqml22__PointSetRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:PointSetRepresentation': */ class SOAP_CMAC resqml22__PointSetRepresentation : public resqml22__AbstractRepresentation { public: @@ -71013,6 +71264,7 @@ class SOAP_CMAC resqml22__PointSetRepresentation : public resqml22__AbstractRepr /* eml2_3ForGsoap.h:2791 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__PolylineRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__PolylineRepresentation (-1322) +/* Type resqml22__PolylineRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:PolylineRepresentation': */ class SOAP_CMAC resqml22__PolylineRepresentation : public resqml22__AbstractRepresentation { public: @@ -71052,6 +71304,7 @@ class SOAP_CMAC resqml22__PolylineRepresentation : public resqml22__AbstractRepr /* eml2_3ForGsoap.h:2793 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__PolylineSetRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__PolylineSetRepresentation (-1323) +/* Type resqml22__PolylineSetRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:PolylineSetRepresentation': */ class SOAP_CMAC resqml22__PolylineSetRepresentation : public resqml22__AbstractRepresentation { public: @@ -71163,6 +71416,7 @@ class SOAP_CMAC resqml22__BoundaryFeatureInterpretation : public resqml22__Abstr /* eml2_3ForGsoap.h:2827 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__EarthModelInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__EarthModelInterpretation (-1340) +/* Type resqml22__EarthModelInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:EarthModelInterpretation': */ class SOAP_CMAC resqml22__EarthModelInterpretation : public resqml22__AbstractFeatureInterpretation { public: @@ -71206,6 +71460,7 @@ class SOAP_CMAC resqml22__EarthModelInterpretation : public resqml22__AbstractFe /* eml2_3ForGsoap.h:2835 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__GenericFeatureInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__GenericFeatureInterpretation (-1344) +/* Type resqml22__GenericFeatureInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:GenericFeatureInterpretation': */ class SOAP_CMAC resqml22__GenericFeatureInterpretation : public resqml22__AbstractFeatureInterpretation { public: @@ -71318,6 +71573,7 @@ class SOAP_CMAC resqml22__RepresentationSetRepresentation : public resqml22__Abs /* eml2_3ForGsoap.h:2885 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__SubRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__SubRepresentation (-1369) +/* Type resqml22__SubRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:SubRepresentation': */ class SOAP_CMAC resqml22__SubRepresentation : public resqml22__AbstractRepresentation { public: @@ -71431,6 +71687,7 @@ class SOAP_CMAC resqml22__AbstractGridRepresentation : public resqml22__Abstract /* eml2_3ForGsoap.h:2933 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__GridConnectionSetRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__GridConnectionSetRepresentation (-1393) +/* Type resqml22__GridConnectionSetRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:GridConnectionSetRepresentation': */ class SOAP_CMAC resqml22__GridConnectionSetRepresentation : public resqml22__AbstractRepresentation { public: @@ -71476,6 +71733,7 @@ class SOAP_CMAC resqml22__GridConnectionSetRepresentation : public resqml22__Abs /* eml2_3ForGsoap.h:3011 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__ContinuousColorMap #define SOAP_TYPE_gsoap_eml2_3_resqml22__ContinuousColorMap (-1432) +/* Type resqml22__ContinuousColorMap is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:ContinuousColorMap': */ class SOAP_CMAC resqml22__ContinuousColorMap : public resqml22__AbstractColorMap { public: @@ -71515,6 +71773,7 @@ class SOAP_CMAC resqml22__ContinuousColorMap : public resqml22__AbstractColorMap /* eml2_3ForGsoap.h:3019 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__DiscreteColorMap #define SOAP_TYPE_gsoap_eml2_3_resqml22__DiscreteColorMap (-1436) +/* Type resqml22__DiscreteColorMap is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:DiscreteColorMap': */ class SOAP_CMAC resqml22__DiscreteColorMap : public resqml22__AbstractColorMap { public: @@ -71624,6 +71883,7 @@ class SOAP_CMAC resqml22__BooleanArrayFromDiscretePropertyArray : public eml23__ /* eml2_3ForGsoap.h:3053 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__PointsProperty #define SOAP_TYPE_gsoap_eml2_3_resqml22__PointsProperty (-1453) +/* Type resqml22__PointsProperty is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:PointsProperty': */ class SOAP_CMAC resqml22__PointsProperty : public resqml22__AbstractProperty { public: @@ -71659,6 +71919,7 @@ class SOAP_CMAC resqml22__PointsProperty : public resqml22__AbstractProperty { /* eml2_3ForGsoap.h:3057 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__StreamlinesRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__StreamlinesRepresentation (-1455) +/* Type resqml22__StreamlinesRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:StreamlinesRepresentation': */ class SOAP_CMAC resqml22__StreamlinesRepresentation : public resqml22__AbstractRepresentation { public: @@ -71743,6 +72004,7 @@ class SOAP_CMAC resqml22__WellboreFrameRepresentation : public resqml22__Abstrac /* eml2_3ForGsoap.h:3081 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreInterpretation (-1467) +/* Type resqml22__WellboreInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:WellboreInterpretation': */ class SOAP_CMAC resqml22__WellboreInterpretation : public resqml22__AbstractFeatureInterpretation { public: @@ -71778,6 +72040,7 @@ class SOAP_CMAC resqml22__WellboreInterpretation : public resqml22__AbstractFeat /* eml2_3ForGsoap.h:3083 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreIntervalSet #define SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreIntervalSet (-1468) +/* Type resqml22__WellboreIntervalSet is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:WellboreIntervalSet': */ class SOAP_CMAC resqml22__WellboreIntervalSet : public resqml22__AbstractRepresentation { public: @@ -71815,6 +72078,7 @@ class SOAP_CMAC resqml22__WellboreIntervalSet : public resqml22__AbstractReprese /* eml2_3ForGsoap.h:3087 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreTrajectoryRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreTrajectoryRepresentation (-1470) +/* Type resqml22__WellboreTrajectoryRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:WellboreTrajectoryRepresentation': */ class SOAP_CMAC resqml22__WellboreTrajectoryRepresentation : public resqml22__AbstractRepresentation { public: @@ -72021,6 +72285,7 @@ class SOAP_CMAC witsml21__LithostratigraphicUnit { /* eml2_3ForGsoap.h:751 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__AbstractMdGrowingObject #define SOAP_TYPE_gsoap_eml2_3_eml23__AbstractMdGrowingObject (-302) +/* Type eml23__AbstractMdGrowingObject is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:AbstractMdGrowingObject': */ class SOAP_CMAC eml23__AbstractMdGrowingObject : public eml23__AbstractGrowingObject { public: @@ -72704,6 +72969,7 @@ class SOAP_CMAC eml23__LocalEngineering2dCrs : public eml23__Cartesian2dCrs { /* eml2_3ForGsoap.h:977 */ #ifndef SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs #define SOAP_TYPE_gsoap_eml2_3_eml23__ProjectedCrs (-415) +/* Type eml23__ProjectedCrs is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'eml23:ProjectedCrs': */ class SOAP_CMAC eml23__ProjectedCrs : public eml23__Cartesian2dCrs { public: @@ -72819,18 +73085,18 @@ class SOAP_CMAC eml23__NameStruct { #endif /* eml2_3ForGsoap.h:1881 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel (-867) -/* complex XML schema type 'prodml22:AbstractCorrelationViscosityDeadModel': */ -class SOAP_CMAC prodml22__AbstractCorrelationViscosityDeadModel : public prodml22__AbstractCorrelationViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel (-867) +/* complex XML schema type 'prodml23:AbstractCorrelationViscosityDeadModel': */ +class SOAP_CMAC prodml23__AbstractCorrelationViscosityDeadModel : public prodml23__AbstractCorrelationViscosityModel { public: - /// Optional element 'prodml22:DeadOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:DeadOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *DeadOilViscosity; - /// Optional element 'prodml22:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -72843,31 +73109,31 @@ class SOAP_CMAC prodml22__AbstractCorrelationViscosityDeadModel : public prodml2 virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCorrelationViscosityDeadModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCorrelationViscosityDeadModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCorrelationViscosityDeadModel); } + /// Return a new object of type prodml23__AbstractCorrelationViscosityDeadModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCorrelationViscosityDeadModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCorrelationViscosityDeadModel); } public: /// Constructor with default initializations - prodml22__AbstractCorrelationViscosityDeadModel() : DeadOilViscosity(), ReservoirTemperature() { } + prodml23__AbstractCorrelationViscosityDeadModel() : DeadOilViscosity(), ReservoirTemperature() { } /// Destructor - virtual ~prodml22__AbstractCorrelationViscosityDeadModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCorrelationViscosityDeadModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityDeadModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCorrelationViscosityDeadModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCorrelationViscosityDeadModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCorrelationViscosityDeadModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityDeadModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1889 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel (-871) -/* complex XML schema type 'prodml22:AbstractCorrelationGasViscosityModel': */ -class SOAP_CMAC prodml22__AbstractCorrelationGasViscosityModel : public prodml22__AbstractCorrelationViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel (-871) +/* complex XML schema type 'prodml23:AbstractCorrelationGasViscosityModel': */ +class SOAP_CMAC prodml23__AbstractCorrelationGasViscosityModel : public prodml23__AbstractCorrelationViscosityModel { public: - /// Optional element 'prodml22:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosity; - /// Optional element 'prodml22:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -72880,33 +73146,33 @@ class SOAP_CMAC prodml22__AbstractCorrelationGasViscosityModel : public prodml22 virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCorrelationGasViscosityModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCorrelationGasViscosityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCorrelationGasViscosityModel); } + /// Return a new object of type prodml23__AbstractCorrelationGasViscosityModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCorrelationGasViscosityModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCorrelationGasViscosityModel); } public: /// Constructor with default initializations - prodml22__AbstractCorrelationGasViscosityModel() : GasViscosity(), ReservoirTemperature() { } + prodml23__AbstractCorrelationGasViscosityModel() : GasViscosity(), ReservoirTemperature() { } /// Destructor - virtual ~prodml22__AbstractCorrelationGasViscosityModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCorrelationGasViscosityModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationGasViscosityModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCorrelationGasViscosityModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCorrelationGasViscosityModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCorrelationGasViscosityModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationGasViscosityModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1891 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel (-872) -/* complex XML schema type 'prodml22:AbstractCorrelationViscosityBubblePointModel': */ -class SOAP_CMAC prodml22__AbstractCorrelationViscosityBubblePointModel : public prodml22__AbstractCorrelationViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel (-872) +/* complex XML schema type 'prodml23:AbstractCorrelationViscosityBubblePointModel': */ +class SOAP_CMAC prodml23__AbstractCorrelationViscosityBubblePointModel : public prodml23__AbstractCorrelationViscosityModel { public: - /// Optional element 'prodml22:DeadOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:DeadOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *DeadOilViscosity; - /// Optional element 'prodml22:BubblePointOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:BubblePointOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *BubblePointOilViscosity; - /// Optional element 'prodml22:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGasOilRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -72919,35 +73185,35 @@ class SOAP_CMAC prodml22__AbstractCorrelationViscosityBubblePointModel : public virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCorrelationViscosityBubblePointModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCorrelationViscosityBubblePointModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCorrelationViscosityBubblePointModel); } + /// Return a new object of type prodml23__AbstractCorrelationViscosityBubblePointModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCorrelationViscosityBubblePointModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCorrelationViscosityBubblePointModel); } public: /// Constructor with default initializations - prodml22__AbstractCorrelationViscosityBubblePointModel() : DeadOilViscosity(), BubblePointOilViscosity(), SolutionGasOilRatio() { } + prodml23__AbstractCorrelationViscosityBubblePointModel() : DeadOilViscosity(), BubblePointOilViscosity(), SolutionGasOilRatio() { } /// Destructor - virtual ~prodml22__AbstractCorrelationViscosityBubblePointModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityBubblePointModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCorrelationViscosityBubblePointModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCorrelationViscosityBubblePointModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityBubblePointModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1895 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel (-874) -/* complex XML schema type 'prodml22:AbstractCorrelationViscosityUndersaturatedModel': */ -class SOAP_CMAC prodml22__AbstractCorrelationViscosityUndersaturatedModel : public prodml22__AbstractCorrelationViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel (-874) +/* complex XML schema type 'prodml23:AbstractCorrelationViscosityUndersaturatedModel': */ +class SOAP_CMAC prodml23__AbstractCorrelationViscosityUndersaturatedModel : public prodml23__AbstractCorrelationViscosityModel { public: - /// Optional element 'prodml22:UndersaturatedOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:UndersaturatedOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *UndersaturatedOilViscosity; - /// Optional element 'prodml22:BubblePointOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:BubblePointOilViscosity' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *BubblePointOilViscosity; - /// Optional element 'prodml22:BubblePointPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:BubblePointPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *BubblePointPressure; - /// Optional element 'prodml22:Pressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:Pressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *Pressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -72960,26 +73226,26 @@ class SOAP_CMAC prodml22__AbstractCorrelationViscosityUndersaturatedModel : publ virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__AbstractCorrelationViscosityUndersaturatedModel, default initialized and not managed by a soap context - virtual prodml22__AbstractCorrelationViscosityUndersaturatedModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__AbstractCorrelationViscosityUndersaturatedModel); } + /// Return a new object of type prodml23__AbstractCorrelationViscosityUndersaturatedModel, default initialized and not managed by a soap context + virtual prodml23__AbstractCorrelationViscosityUndersaturatedModel *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__AbstractCorrelationViscosityUndersaturatedModel); } public: /// Constructor with default initializations - prodml22__AbstractCorrelationViscosityUndersaturatedModel() : UndersaturatedOilViscosity(), BubblePointOilViscosity(), BubblePointPressure(), Pressure() { } + prodml23__AbstractCorrelationViscosityUndersaturatedModel() : UndersaturatedOilViscosity(), BubblePointOilViscosity(), BubblePointPressure(), Pressure() { } /// Destructor - virtual ~prodml22__AbstractCorrelationViscosityUndersaturatedModel() { } - /// Friend allocator used by soap_new_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, int) - friend SOAP_FMAC1 prodml22__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC2 soap_instantiate_prodml22__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__AbstractCorrelationViscosityUndersaturatedModel() { } + /// Friend allocator used by soap_new_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, int) + friend SOAP_FMAC1 prodml23__AbstractCorrelationViscosityUndersaturatedModel * SOAP_FMAC2 soap_instantiate_prodml23__AbstractCorrelationViscosityUndersaturatedModel(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1917 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 (-885) -/* complex XML schema type 'prodml22:CSPedersen84': */ -class SOAP_CMAC prodml22__CSPedersen84 : public prodml22__AbstractCompositionalViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 (-885) +/* complex XML schema type 'prodml23:CSPedersen84': */ +class SOAP_CMAC prodml23__CSPedersen84 : public prodml23__AbstractCompositionalViscosityModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -72992,26 +73258,26 @@ class SOAP_CMAC prodml22__CSPedersen84 : public prodml22__AbstractCompositionalV virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CSPedersen84, default initialized and not managed by a soap context - virtual prodml22__CSPedersen84 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CSPedersen84); } + /// Return a new object of type prodml23__CSPedersen84, default initialized and not managed by a soap context + virtual prodml23__CSPedersen84 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CSPedersen84); } public: /// Constructor with default initializations - prodml22__CSPedersen84() { } + prodml23__CSPedersen84() { } /// Destructor - virtual ~prodml22__CSPedersen84() { } - /// Friend allocator used by soap_new_prodml22__CSPedersen84(struct soap*, int) - friend SOAP_FMAC1 prodml22__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml22__CSPedersen84(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CSPedersen84() { } + /// Friend allocator used by soap_new_prodml23__CSPedersen84(struct soap*, int) + friend SOAP_FMAC1 prodml23__CSPedersen84 * SOAP_FMAC2 soap_instantiate_prodml23__CSPedersen84(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1919 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 (-886) -/* complex XML schema type 'prodml22:CSPedersen87': */ -class SOAP_CMAC prodml22__CSPedersen87 : public prodml22__AbstractCompositionalViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 (-886) +/* complex XML schema type 'prodml23:CSPedersen87': */ +class SOAP_CMAC prodml23__CSPedersen87 : public prodml23__AbstractCompositionalViscosityModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -73024,29 +73290,29 @@ class SOAP_CMAC prodml22__CSPedersen87 : public prodml22__AbstractCompositionalV virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CSPedersen87, default initialized and not managed by a soap context - virtual prodml22__CSPedersen87 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CSPedersen87); } + /// Return a new object of type prodml23__CSPedersen87, default initialized and not managed by a soap context + virtual prodml23__CSPedersen87 *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CSPedersen87); } public: /// Constructor with default initializations - prodml22__CSPedersen87() { } + prodml23__CSPedersen87() { } /// Destructor - virtual ~prodml22__CSPedersen87() { } - /// Friend allocator used by soap_new_prodml22__CSPedersen87(struct soap*, int) - friend SOAP_FMAC1 prodml22__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml22__CSPedersen87(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CSPedersen87() { } + /// Friend allocator used by soap_new_prodml23__CSPedersen87(struct soap*, int) + friend SOAP_FMAC1 prodml23__CSPedersen87 * SOAP_FMAC2 soap_instantiate_prodml23__CSPedersen87(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1957 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory (-905) -/* complex XML schema type 'prodml22:FrictionTheory': */ -class SOAP_CMAC prodml22__FrictionTheory : public prodml22__AbstractCompositionalViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory (-905) +/* complex XML schema type 'prodml23:FrictionTheory': */ +class SOAP_CMAC prodml23__FrictionTheory : public prodml23__AbstractCompositionalViscosityModel { public: - /// Optional element 'prodml22:PrsvParameter' of XML schema type 'prodml22:PrsvParameter' - std::vector PrsvParameter; + /// Optional element 'prodml23:PrsvParameter' of XML schema type 'prodml23:PrsvParameter' + std::vector PrsvParameter; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -73059,26 +73325,26 @@ class SOAP_CMAC prodml22__FrictionTheory : public prodml22__AbstractCompositiona virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__FrictionTheory, default initialized and not managed by a soap context - virtual prodml22__FrictionTheory *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__FrictionTheory); } + /// Return a new object of type prodml23__FrictionTheory, default initialized and not managed by a soap context + virtual prodml23__FrictionTheory *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__FrictionTheory); } public: /// Constructor with default initializations - prodml22__FrictionTheory() : PrsvParameter() { } + prodml23__FrictionTheory() : PrsvParameter() { } /// Destructor - virtual ~prodml22__FrictionTheory() { } - /// Friend allocator used by soap_new_prodml22__FrictionTheory(struct soap*, int) - friend SOAP_FMAC1 prodml22__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml22__FrictionTheory(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__FrictionTheory() { } + /// Friend allocator used by soap_new_prodml23__FrictionTheory(struct soap*, int) + friend SOAP_FMAC1 prodml23__FrictionTheory * SOAP_FMAC2 soap_instantiate_prodml23__FrictionTheory(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1961 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation (-907) -/* complex XML schema type 'prodml22:Lohrenz-Bray-ClarkCorrelation': */ -class SOAP_CMAC prodml22__Lohrenz_Bray_ClarkCorrelation : public prodml22__AbstractCompositionalViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation (-907) +/* complex XML schema type 'prodml23:Lohrenz-Bray-ClarkCorrelation': */ +class SOAP_CMAC prodml23__Lohrenz_Bray_ClarkCorrelation : public prodml23__AbstractCompositionalViscosityModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -73091,26 +73357,26 @@ class SOAP_CMAC prodml22__Lohrenz_Bray_ClarkCorrelation : public prodml22__Abstr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Lohrenz_Bray_ClarkCorrelation, default initialized and not managed by a soap context - virtual prodml22__Lohrenz_Bray_ClarkCorrelation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Lohrenz_Bray_ClarkCorrelation); } + /// Return a new object of type prodml23__Lohrenz_Bray_ClarkCorrelation, default initialized and not managed by a soap context + virtual prodml23__Lohrenz_Bray_ClarkCorrelation *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Lohrenz_Bray_ClarkCorrelation); } public: /// Constructor with default initializations - prodml22__Lohrenz_Bray_ClarkCorrelation() { } + prodml23__Lohrenz_Bray_ClarkCorrelation() { } /// Destructor - virtual ~prodml22__Lohrenz_Bray_ClarkCorrelation() { } - /// Friend allocator used by soap_new_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap*, int) - friend SOAP_FMAC1 prodml22__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate_prodml22__Lohrenz_Bray_ClarkCorrelation(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Lohrenz_Bray_ClarkCorrelation() { } + /// Friend allocator used by soap_new_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap*, int) + friend SOAP_FMAC1 prodml23__Lohrenz_Bray_ClarkCorrelation * SOAP_FMAC2 soap_instantiate_prodml23__Lohrenz_Bray_ClarkCorrelation(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1967 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS (-910) -/* complex XML schema type 'prodml22:PengRobinson76_EOS': */ -class SOAP_CMAC prodml22__PengRobinson76_USCOREEOS : public prodml22__AbstractCompositionalEoSModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS (-910) +/* complex XML schema type 'prodml23:PengRobinson76_EOS': */ +class SOAP_CMAC prodml23__PengRobinson76_USCOREEOS : public prodml23__AbstractCompositionalEoSModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -73123,26 +73389,26 @@ class SOAP_CMAC prodml22__PengRobinson76_USCOREEOS : public prodml22__AbstractCo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PengRobinson76_USCOREEOS, default initialized and not managed by a soap context - virtual prodml22__PengRobinson76_USCOREEOS *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PengRobinson76_USCOREEOS); } + /// Return a new object of type prodml23__PengRobinson76_USCOREEOS, default initialized and not managed by a soap context + virtual prodml23__PengRobinson76_USCOREEOS *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PengRobinson76_USCOREEOS); } public: /// Constructor with default initializations - prodml22__PengRobinson76_USCOREEOS() { } + prodml23__PengRobinson76_USCOREEOS() { } /// Destructor - virtual ~prodml22__PengRobinson76_USCOREEOS() { } - /// Friend allocator used by soap_new_prodml22__PengRobinson76_USCOREEOS(struct soap*, int) - friend SOAP_FMAC1 prodml22__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__PengRobinson76_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PengRobinson76_USCOREEOS() { } + /// Friend allocator used by soap_new_prodml23__PengRobinson76_USCOREEOS(struct soap*, int) + friend SOAP_FMAC1 prodml23__PengRobinson76_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__PengRobinson76_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1969 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS (-911) -/* complex XML schema type 'prodml22:PengRobinson78_EOS': */ -class SOAP_CMAC prodml22__PengRobinson78_USCOREEOS : public prodml22__AbstractCompositionalEoSModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS (-911) +/* complex XML schema type 'prodml23:PengRobinson78_EOS': */ +class SOAP_CMAC prodml23__PengRobinson78_USCOREEOS : public prodml23__AbstractCompositionalEoSModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -73155,201 +73421,26 @@ class SOAP_CMAC prodml22__PengRobinson78_USCOREEOS : public prodml22__AbstractCo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PengRobinson78_USCOREEOS, default initialized and not managed by a soap context - virtual prodml22__PengRobinson78_USCOREEOS *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PengRobinson78_USCOREEOS); } + /// Return a new object of type prodml23__PengRobinson78_USCOREEOS, default initialized and not managed by a soap context + virtual prodml23__PengRobinson78_USCOREEOS *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PengRobinson78_USCOREEOS); } public: /// Constructor with default initializations - prodml22__PengRobinson78_USCOREEOS() { } + prodml23__PengRobinson78_USCOREEOS() { } /// Destructor - virtual ~prodml22__PengRobinson78_USCOREEOS() { } - /// Friend allocator used by soap_new_prodml22__PengRobinson78_USCOREEOS(struct soap*, int) - friend SOAP_FMAC1 prodml22__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__PengRobinson78_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PengRobinson78_USCOREEOS() { } + /// Friend allocator used by soap_new_prodml23__PengRobinson78_USCOREEOS(struct soap*, int) + friend SOAP_FMAC1 prodml23__PengRobinson78_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__PengRobinson78_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1985 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS (-919) -/* complex XML schema type 'prodml22:Srk_EOS': */ -class SOAP_CMAC prodml22__Srk_USCOREEOS : public prodml22__AbstractCompositionalEoSModel { - public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS; } - /// (Re)set members to default values - virtual void soap_default(struct soap*); - /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures - virtual void soap_serialize(struct soap*) const; - /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK - virtual int soap_put(struct soap*, const char *tag, const char *type) const; - /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK - virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; - /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error - virtual void *soap_get(struct soap*, const char *tag, const char *type); - /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error - virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Srk_USCOREEOS, default initialized and not managed by a soap context - virtual prodml22__Srk_USCOREEOS *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Srk_USCOREEOS); } - public: - /// Constructor with default initializations - prodml22__Srk_USCOREEOS() { } - /// Destructor - virtual ~prodml22__Srk_USCOREEOS() { } - /// Friend allocator used by soap_new_prodml22__Srk_USCOREEOS(struct soap*, int) - friend SOAP_FMAC1 prodml22__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml22__Srk_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); -}; -#endif - -/* eml2_3ForGsoap.h:2125 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility (-989) -/* simple XML schema type 'prodml22:OilCompressibility': */ -class SOAP_CMAC prodml22__OilCompressibility : public eml23__ReciprocalPressureMeasure { - public: - /// Required attribute 'kind' of XML schema type 'prodml22:CompressibilityKind' - prodml22__CompressibilityKind kind; - public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility; } - /// (Re)set members to default values - virtual void soap_default(struct soap*); - /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures - virtual void soap_serialize(struct soap*) const; - /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK - virtual int soap_put(struct soap*, const char *tag, const char *type) const; - /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK - virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; - /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error - virtual void *soap_get(struct soap*, const char *tag, const char *type); - /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error - virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__OilCompressibility, default initialized and not managed by a soap context - virtual prodml22__OilCompressibility *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__OilCompressibility); } - public: - /// Constructor with default initializations - prodml22__OilCompressibility() : kind() { } - /// Destructor - virtual ~prodml22__OilCompressibility() { } - /// Friend allocator used by soap_new_prodml22__OilCompressibility(struct soap*, int) - friend SOAP_FMAC1 prodml22__OilCompressibility * SOAP_FMAC2 soap_instantiate_prodml22__OilCompressibility(struct soap*, int, const char*, const char*, size_t*); -}; -#endif - -/* eml2_3ForGsoap.h:2143 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded (-998) -/* simple XML schema type 'prodml22:RefInjectedGasAdded': */ -class SOAP_CMAC prodml22__RefInjectedGasAdded : public eml23__AmountOfSubstancePerAmountOfSubstanceMeasure { - public: - /// Required attribute 'injectionGasReference' of XML schema type 'eml23:String64' - std::string injectionGasReference; - public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded; } - /// (Re)set members to default values - virtual void soap_default(struct soap*); - /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures - virtual void soap_serialize(struct soap*) const; - /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK - virtual int soap_put(struct soap*, const char *tag, const char *type) const; - /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK - virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; - /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error - virtual void *soap_get(struct soap*, const char *tag, const char *type); - /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error - virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RefInjectedGasAdded, default initialized and not managed by a soap context - virtual prodml22__RefInjectedGasAdded *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RefInjectedGasAdded); } - public: - /// Constructor with default initializations - prodml22__RefInjectedGasAdded() : injectionGasReference() { } - /// Destructor - virtual ~prodml22__RefInjectedGasAdded() { } - /// Friend allocator used by soap_new_prodml22__RefInjectedGasAdded(struct soap*, int) - friend SOAP_FMAC1 prodml22__RefInjectedGasAdded * SOAP_FMAC2 soap_instantiate_prodml22__RefInjectedGasAdded(struct soap*, int, const char*, const char*, size_t*); -}; -#endif - -/* eml2_3ForGsoap.h:2145 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio (-999) -/* simple XML schema type 'prodml22:RelativeVolumeRatio': */ -class SOAP_CMAC prodml22__RelativeVolumeRatio : public eml23__VolumePerVolumeMeasure { - public: - /// Required attribute 'fluidVolumeReference' of XML schema type 'eml23:String64' - std::string fluidVolumeReference; - public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio; } - /// (Re)set members to default values - virtual void soap_default(struct soap*); - /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures - virtual void soap_serialize(struct soap*) const; - /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK - virtual int soap_put(struct soap*, const char *tag, const char *type) const; - /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK - virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; - /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error - virtual void *soap_get(struct soap*, const char *tag, const char *type); - /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error - virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__RelativeVolumeRatio, default initialized and not managed by a soap context - virtual prodml22__RelativeVolumeRatio *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__RelativeVolumeRatio); } - public: - /// Constructor with default initializations - prodml22__RelativeVolumeRatio() : fluidVolumeReference() { } - /// Destructor - virtual ~prodml22__RelativeVolumeRatio() { } - /// Friend allocator used by soap_new_prodml22__RelativeVolumeRatio(struct soap*, int) - friend SOAP_FMAC1 prodml22__RelativeVolumeRatio * SOAP_FMAC2 soap_instantiate_prodml22__RelativeVolumeRatio(struct soap*, int, const char*, const char*, size_t*); -}; -#endif - -/* eml2_3ForGsoap.h:2157 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure (-1005) -/* simple XML schema type 'prodml22:SaturationPressure': */ -class SOAP_CMAC prodml22__SaturationPressure : public eml23__PressureMeasureExt { - public: - /// Required attribute 'kind' of XML schema type 'prodml22:SaturationPointKind' - prodml22__SaturationPointKind kind; - public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure; } - /// (Re)set members to default values - virtual void soap_default(struct soap*); - /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures - virtual void soap_serialize(struct soap*) const; - /// Output object in XML, compliant with SOAP 1.1 encoding style, return error code or SOAP_OK - virtual int soap_put(struct soap*, const char *tag, const char *type) const; - /// Output object in XML, with tag and optional id attribute and xsi:type, return error code or SOAP_OK - virtual int soap_out(struct soap*, const char *tag, int id, const char *type) const; - /// Get object from XML, compliant with SOAP 1.1 encoding style, return pointer to object or NULL on error - virtual void *soap_get(struct soap*, const char *tag, const char *type); - /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error - virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SaturationPressure, default initialized and not managed by a soap context - virtual prodml22__SaturationPressure *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SaturationPressure); } - public: - /// Constructor with default initializations - prodml22__SaturationPressure() : kind() { } - /// Destructor - virtual ~prodml22__SaturationPressure() { } - /// Friend allocator used by soap_new_prodml22__SaturationPressure(struct soap*, int) - friend SOAP_FMAC1 prodml22__SaturationPressure * SOAP_FMAC2 soap_instantiate_prodml22__SaturationPressure(struct soap*, int, const char*, const char*, size_t*); -}; -#endif - -/* eml2_3ForGsoap.h:2159 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature (-1006) -/* simple XML schema type 'prodml22:SaturationTemperature': */ -class SOAP_CMAC prodml22__SaturationTemperature : public eml23__ThermodynamicTemperatureMeasure { - public: - /// Required attribute 'kind' of XML schema type 'prodml22:SaturationPointKind' - prodml22__SaturationPointKind kind; +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS (-919) +/* complex XML schema type 'prodml23:Srk_EOS': */ +class SOAP_CMAC prodml23__Srk_USCOREEOS : public prodml23__AbstractCompositionalEoSModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -73362,21 +73453,22 @@ class SOAP_CMAC prodml22__SaturationTemperature : public eml23__ThermodynamicTem virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__SaturationTemperature, default initialized and not managed by a soap context - virtual prodml22__SaturationTemperature *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__SaturationTemperature); } + /// Return a new object of type prodml23__Srk_USCOREEOS, default initialized and not managed by a soap context + virtual prodml23__Srk_USCOREEOS *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Srk_USCOREEOS); } public: /// Constructor with default initializations - prodml22__SaturationTemperature() : kind() { } + prodml23__Srk_USCOREEOS() { } /// Destructor - virtual ~prodml22__SaturationTemperature() { } - /// Friend allocator used by soap_new_prodml22__SaturationTemperature(struct soap*, int) - friend SOAP_FMAC1 prodml22__SaturationTemperature * SOAP_FMAC2 soap_instantiate_prodml22__SaturationTemperature(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Srk_USCOREEOS() { } + /// Friend allocator used by soap_new_prodml23__Srk_USCOREEOS(struct soap*, int) + friend SOAP_FMAC1 prodml23__Srk_USCOREEOS * SOAP_FMAC2 soap_instantiate_prodml23__Srk_USCOREEOS(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:2689 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__CulturalFeature (-1271) +/* Type resqml22__CulturalFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:CulturalFeature': */ class SOAP_CMAC resqml22__CulturalFeature : public resqml22__AbstractTechnicalFeature { public: @@ -73444,6 +73536,7 @@ class SOAP_CMAC resqml22__AbstractSeismicSurveyFeature : public resqml22__Abstra /* eml2_3ForGsoap.h:2757 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__Seismic3dPostStackRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__Seismic3dPostStackRepresentation (-1305) +/* Type resqml22__Seismic3dPostStackRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:Seismic3dPostStackRepresentation': */ class SOAP_CMAC resqml22__Seismic3dPostStackRepresentation : public resqml22__AbstractGridRepresentation { public: @@ -73520,6 +73613,7 @@ class SOAP_CMAC resqml22__AbstractSurfaceFrameworkRepresentation : public resqml /* eml2_3ForGsoap.h:2787 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__PlaneSetRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__PlaneSetRepresentation (-1320) +/* Type resqml22__PlaneSetRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:PlaneSetRepresentation': */ class SOAP_CMAC resqml22__PlaneSetRepresentation : public resqml22__AbstractSurfaceRepresentation { public: @@ -73555,6 +73649,7 @@ class SOAP_CMAC resqml22__PlaneSetRepresentation : public resqml22__AbstractSurf /* eml2_3ForGsoap.h:2799 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__SealedVolumeFrameworkRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__SealedVolumeFrameworkRepresentation (-1326) +/* Type resqml22__SealedVolumeFrameworkRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:SealedVolumeFrameworkRepresentation': */ class SOAP_CMAC resqml22__SealedVolumeFrameworkRepresentation : public resqml22__RepresentationSetRepresentation { public: @@ -73592,6 +73687,7 @@ class SOAP_CMAC resqml22__SealedVolumeFrameworkRepresentation : public resqml22_ /* eml2_3ForGsoap.h:2803 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__TriangulatedSetRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__TriangulatedSetRepresentation (-1328) +/* Type resqml22__TriangulatedSetRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:TriangulatedSetRepresentation': */ class SOAP_CMAC resqml22__TriangulatedSetRepresentation : public resqml22__AbstractSurfaceRepresentation { public: @@ -73662,6 +73758,7 @@ class SOAP_CMAC resqml22__AbstractGeologicUnitOrganizationInterpretation : publi /* eml2_3ForGsoap.h:2829 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__FaultInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__FaultInterpretation (-1341) +/* Type resqml22__FaultInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:FaultInterpretation': */ class SOAP_CMAC resqml22__FaultInterpretation : public resqml22__BoundaryFeatureInterpretation { public: @@ -73709,6 +73806,7 @@ class SOAP_CMAC resqml22__FaultInterpretation : public resqml22__BoundaryFeature /* eml2_3ForGsoap.h:2833 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__FluidBoundaryInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__FluidBoundaryInterpretation (-1343) +/* Type resqml22__FluidBoundaryInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:FluidBoundaryInterpretation': */ class SOAP_CMAC resqml22__FluidBoundaryInterpretation : public resqml22__BoundaryFeatureInterpretation { public: @@ -73744,6 +73842,7 @@ class SOAP_CMAC resqml22__FluidBoundaryInterpretation : public resqml22__Boundar /* eml2_3ForGsoap.h:2839 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__GeobodyBoundaryInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__GeobodyBoundaryInterpretation (-1346) +/* Type resqml22__GeobodyBoundaryInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:GeobodyBoundaryInterpretation': */ class SOAP_CMAC resqml22__GeobodyBoundaryInterpretation : public resqml22__BoundaryFeatureInterpretation { public: @@ -73783,6 +73882,7 @@ class SOAP_CMAC resqml22__GeobodyBoundaryInterpretation : public resqml22__Bound /* eml2_3ForGsoap.h:2841 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__GeobodyInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__GeobodyInterpretation (-1347) +/* Type resqml22__GeobodyInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:GeobodyInterpretation': */ class SOAP_CMAC resqml22__GeobodyInterpretation : public resqml22__GeologicUnitInterpretation { public: @@ -73815,6 +73915,7 @@ class SOAP_CMAC resqml22__GeobodyInterpretation : public resqml22__GeologicUnitI /* eml2_3ForGsoap.h:2849 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__HorizonInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__HorizonInterpretation (-1351) +/* Type resqml22__HorizonInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:HorizonInterpretation': */ class SOAP_CMAC resqml22__HorizonInterpretation : public resqml22__BoundaryFeatureInterpretation { public: @@ -73856,6 +73957,7 @@ class SOAP_CMAC resqml22__HorizonInterpretation : public resqml22__BoundaryFeatu /* eml2_3ForGsoap.h:2853 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__ReservoirCompartmentInterpretation (-1353) +/* Type resqml22__ReservoirCompartmentInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:ReservoirCompartmentInterpretation': */ class SOAP_CMAC resqml22__ReservoirCompartmentInterpretation : public resqml22__GeologicUnitInterpretation { public: @@ -73888,6 +73990,7 @@ class SOAP_CMAC resqml22__ReservoirCompartmentInterpretation : public resqml22__ /* eml2_3ForGsoap.h:2857 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__RockFluidOrganizationInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__RockFluidOrganizationInterpretation (-1355) +/* Type resqml22__RockFluidOrganizationInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:RockFluidOrganizationInterpretation': */ class SOAP_CMAC resqml22__RockFluidOrganizationInterpretation : public resqml22__AbstractOrganizationInterpretation { public: @@ -73923,6 +74026,7 @@ class SOAP_CMAC resqml22__RockFluidOrganizationInterpretation : public resqml22_ /* eml2_3ForGsoap.h:2859 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__RockFluidUnitInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__RockFluidUnitInterpretation (-1356) +/* Type resqml22__RockFluidUnitInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:RockFluidUnitInterpretation': */ class SOAP_CMAC resqml22__RockFluidUnitInterpretation : public resqml22__GeologicUnitInterpretation { public: @@ -73958,6 +74062,7 @@ class SOAP_CMAC resqml22__RockFluidUnitInterpretation : public resqml22__Geologi /* eml2_3ForGsoap.h:2865 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicUnitInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicUnitInterpretation (-1359) +/* Type resqml22__StratigraphicUnitInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:StratigraphicUnitInterpretation': */ class SOAP_CMAC resqml22__StratigraphicUnitInterpretation : public resqml22__GeologicUnitInterpretation { public: @@ -73999,6 +74104,7 @@ class SOAP_CMAC resqml22__StratigraphicUnitInterpretation : public resqml22__Geo /* eml2_3ForGsoap.h:2867 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__StructuralOrganizationInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__StructuralOrganizationInterpretation (-1360) +/* Type resqml22__StructuralOrganizationInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:StructuralOrganizationInterpretation': */ class SOAP_CMAC resqml22__StructuralOrganizationInterpretation : public resqml22__AbstractOrganizationInterpretation { public: @@ -74042,6 +74148,7 @@ class SOAP_CMAC resqml22__StructuralOrganizationInterpretation : public resqml22 /* eml2_3ForGsoap.h:2869 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__VoidageGroupInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__VoidageGroupInterpretation (-1361) +/* Type resqml22__VoidageGroupInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:VoidageGroupInterpretation': */ class SOAP_CMAC resqml22__VoidageGroupInterpretation : public resqml22__AbstractOrganizationInterpretation { public: @@ -74206,6 +74313,7 @@ class SOAP_CMAC resqml22__AbstractTruncatedColumnLayerGridRepresentation : publi /* eml2_3ForGsoap.h:2929 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__GpGridRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__GpGridRepresentation (-1391) +/* Type resqml22__GpGridRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:GpGridRepresentation': */ class SOAP_CMAC resqml22__GpGridRepresentation : public resqml22__AbstractGridRepresentation { public: @@ -74243,6 +74351,7 @@ class SOAP_CMAC resqml22__GpGridRepresentation : public resqml22__AbstractGridRe /* eml2_3ForGsoap.h:2931 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__Grid2dRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__Grid2dRepresentation (-1392) +/* Type resqml22__Grid2dRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:Grid2dRepresentation': */ class SOAP_CMAC resqml22__Grid2dRepresentation : public resqml22__AbstractSurfaceRepresentation { public: @@ -74331,6 +74440,7 @@ class SOAP_CMAC resqml22__UnstructuredGridGeometry : public resqml22__AbstractGr /* eml2_3ForGsoap.h:2993 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredGridRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredGridRepresentation (-1423) +/* Type resqml22__UnstructuredGridRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:UnstructuredGridRepresentation': */ class SOAP_CMAC resqml22__UnstructuredGridRepresentation : public resqml22__AbstractGridRepresentation { public: @@ -74370,6 +74480,7 @@ class SOAP_CMAC resqml22__UnstructuredGridRepresentation : public resqml22__Abst /* eml2_3ForGsoap.h:3045 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__BooleanProperty #define SOAP_TYPE_gsoap_eml2_3_resqml22__BooleanProperty (-1449) +/* Type resqml22__BooleanProperty is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:BooleanProperty': */ class SOAP_CMAC resqml22__BooleanProperty : public resqml22__AbstractValuesProperty { public: @@ -74402,6 +74513,7 @@ class SOAP_CMAC resqml22__BooleanProperty : public resqml22__AbstractValuesPrope /* eml2_3ForGsoap.h:3047 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__CommentProperty #define SOAP_TYPE_gsoap_eml2_3_resqml22__CommentProperty (-1450) +/* Type resqml22__CommentProperty is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:CommentProperty': */ class SOAP_CMAC resqml22__CommentProperty : public resqml22__AbstractValuesProperty { public: @@ -74437,6 +74549,7 @@ class SOAP_CMAC resqml22__CommentProperty : public resqml22__AbstractValuesPrope /* eml2_3ForGsoap.h:3049 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__ContinuousProperty #define SOAP_TYPE_gsoap_eml2_3_resqml22__ContinuousProperty (-1451) +/* Type resqml22__ContinuousProperty is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:ContinuousProperty': */ class SOAP_CMAC resqml22__ContinuousProperty : public resqml22__AbstractValuesProperty { public: @@ -74474,6 +74587,7 @@ class SOAP_CMAC resqml22__ContinuousProperty : public resqml22__AbstractValuesPr /* eml2_3ForGsoap.h:3051 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__DiscreteProperty #define SOAP_TYPE_gsoap_eml2_3_resqml22__DiscreteProperty (-1452) +/* Type resqml22__DiscreteProperty is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:DiscreteProperty': */ class SOAP_CMAC resqml22__DiscreteProperty : public resqml22__AbstractValuesProperty { public: @@ -74509,6 +74623,7 @@ class SOAP_CMAC resqml22__DiscreteProperty : public resqml22__AbstractValuesProp /* eml2_3ForGsoap.h:3055 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__StreamlinesFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__StreamlinesFeature (-1454) +/* Type resqml22__StreamlinesFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:StreamlinesFeature': */ class SOAP_CMAC resqml22__StreamlinesFeature : public resqml22__AbstractTechnicalFeature { public: @@ -74546,6 +74661,7 @@ class SOAP_CMAC resqml22__StreamlinesFeature : public resqml22__AbstractTechnica /* eml2_3ForGsoap.h:3061 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__BlockedWellboreRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__BlockedWellboreRepresentation (-1457) +/* Type resqml22__BlockedWellboreRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:BlockedWellboreRepresentation': */ class SOAP_CMAC resqml22__BlockedWellboreRepresentation : public resqml22__WellboreFrameRepresentation { public: @@ -74581,6 +74697,7 @@ class SOAP_CMAC resqml22__BlockedWellboreRepresentation : public resqml22__Wellb /* eml2_3ForGsoap.h:3071 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicWellboreFrameRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicWellboreFrameRepresentation (-1462) +/* Type resqml22__SeismicWellboreFrameRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:SeismicWellboreFrameRepresentation': */ class SOAP_CMAC resqml22__SeismicWellboreFrameRepresentation : public resqml22__WellboreFrameRepresentation { public: @@ -74626,6 +74743,7 @@ class SOAP_CMAC resqml22__SeismicWellboreFrameRepresentation : public resqml22__ /* eml2_3ForGsoap.h:3077 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__WellboreFeature (-1465) +/* Type resqml22__WellboreFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:WellboreFeature': */ class SOAP_CMAC resqml22__WellboreFeature : public resqml22__AbstractTechnicalFeature { public: @@ -74711,6 +74829,7 @@ class SOAP_CMAC witsml21__MudLogReport : public eml23__AbstractMdGrowingObject { /* eml2_3ForGsoap.h:487 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeology #define SOAP_TYPE_gsoap_eml2_3_witsml21__CuttingsGeology (-170) +/* Type witsml21__CuttingsGeology is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:CuttingsGeology': */ class SOAP_CMAC witsml21__CuttingsGeology : public eml23__AbstractMdGrowingObject { public: @@ -74748,6 +74867,7 @@ class SOAP_CMAC witsml21__CuttingsGeology : public eml23__AbstractMdGrowingObjec /* eml2_3ForGsoap.h:497 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeology #define SOAP_TYPE_gsoap_eml2_3_witsml21__InterpretedGeology (-175) +/* Type witsml21__InterpretedGeology is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:InterpretedGeology': */ class SOAP_CMAC witsml21__InterpretedGeology : public eml23__AbstractMdGrowingObject { public: @@ -74785,6 +74905,7 @@ class SOAP_CMAC witsml21__InterpretedGeology : public eml23__AbstractMdGrowingOb /* eml2_3ForGsoap.h:507 */ #ifndef SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation #define SOAP_TYPE_gsoap_eml2_3_witsml21__ShowEvaluation (-180) +/* Type witsml21__ShowEvaluation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'witsml21:ShowEvaluation': */ class SOAP_CMAC witsml21__ShowEvaluation : public eml23__AbstractMdGrowingObject { public: @@ -74956,13 +75077,13 @@ class SOAP_CMAC witsml21__WellboreGeometry : public eml23__AbstractMdGrowingObje #endif /* eml2_3ForGsoap.h:1899 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated (-876) -/* complex XML schema type 'prodml22:BerganAndSutton-Undersaturated': */ -class SOAP_CMAC prodml22__BerganAndSutton_Undersaturated : public prodml22__AbstractCorrelationViscosityUndersaturatedModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated (-876) +/* complex XML schema type 'prodml23:BerganAndSutton-Undersaturated': */ +class SOAP_CMAC prodml23__BerganAndSutton_Undersaturated : public prodml23__AbstractCorrelationViscosityUndersaturatedModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -74975,31 +75096,31 @@ class SOAP_CMAC prodml22__BerganAndSutton_Undersaturated : public prodml22__Abst virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__BerganAndSutton_Undersaturated, default initialized and not managed by a soap context - virtual prodml22__BerganAndSutton_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__BerganAndSutton_Undersaturated); } + /// Return a new object of type prodml23__BerganAndSutton_Undersaturated, default initialized and not managed by a soap context + virtual prodml23__BerganAndSutton_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__BerganAndSutton_Undersaturated); } public: /// Constructor with default initializations - prodml22__BerganAndSutton_Undersaturated() { } + prodml23__BerganAndSutton_Undersaturated() { } /// Destructor - virtual ~prodml22__BerganAndSutton_Undersaturated() { } - /// Friend allocator used by soap_new_prodml22__BerganAndSutton_Undersaturated(struct soap*, int) - friend SOAP_FMAC1 prodml22__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__BerganAndSutton_Undersaturated(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__BerganAndSutton_Undersaturated() { } + /// Friend allocator used by soap_new_prodml23__BerganAndSutton_Undersaturated(struct soap*, int) + friend SOAP_FMAC1 prodml23__BerganAndSutton_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__BerganAndSutton_Undersaturated(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1901 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead (-877) -/* complex XML schema type 'prodml22:BerganSutton-Dead': */ -class SOAP_CMAC prodml22__BerganSutton_Dead : public prodml22__AbstractCorrelationViscosityDeadModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead (-877) +/* complex XML schema type 'prodml23:BerganSutton-Dead': */ +class SOAP_CMAC prodml23__BerganSutton_Dead : public prodml23__AbstractCorrelationViscosityDeadModel { public: - /// Optional element 'prodml22:DeadOilViscosityAt100F' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:DeadOilViscosityAt100F' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *DeadOilViscosityAt100F; - /// Optional element 'prodml22:DeadOilViscosityAt210F' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:DeadOilViscosityAt210F' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *DeadOilViscosityAt210F; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75012,26 +75133,26 @@ class SOAP_CMAC prodml22__BerganSutton_Dead : public prodml22__AbstractCorrelati virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__BerganSutton_Dead, default initialized and not managed by a soap context - virtual prodml22__BerganSutton_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__BerganSutton_Dead); } + /// Return a new object of type prodml23__BerganSutton_Dead, default initialized and not managed by a soap context + virtual prodml23__BerganSutton_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__BerganSutton_Dead); } public: /// Constructor with default initializations - prodml22__BerganSutton_Dead() : DeadOilViscosityAt100F(), DeadOilViscosityAt210F() { } + prodml23__BerganSutton_Dead() : DeadOilViscosityAt100F(), DeadOilViscosityAt210F() { } /// Destructor - virtual ~prodml22__BerganSutton_Dead() { } - /// Friend allocator used by soap_new_prodml22__BerganSutton_Dead(struct soap*, int) - friend SOAP_FMAC1 prodml22__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml22__BerganSutton_Dead(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__BerganSutton_Dead() { } + /// Friend allocator used by soap_new_prodml23__BerganSutton_Dead(struct soap*, int) + friend SOAP_FMAC1 prodml23__BerganSutton_Dead * SOAP_FMAC2 soap_instantiate_prodml23__BerganSutton_Dead(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1903 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint (-878) -/* complex XML schema type 'prodml22:BergmanSutton-BubblePoint': */ -class SOAP_CMAC prodml22__BergmanSutton_BubblePoint : public prodml22__AbstractCorrelationViscosityBubblePointModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint (-878) +/* complex XML schema type 'prodml23:BergmanSutton-BubblePoint': */ +class SOAP_CMAC prodml23__BergmanSutton_BubblePoint : public prodml23__AbstractCorrelationViscosityBubblePointModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75044,35 +75165,35 @@ class SOAP_CMAC prodml22__BergmanSutton_BubblePoint : public prodml22__AbstractC virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__BergmanSutton_BubblePoint, default initialized and not managed by a soap context - virtual prodml22__BergmanSutton_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__BergmanSutton_BubblePoint); } + /// Return a new object of type prodml23__BergmanSutton_BubblePoint, default initialized and not managed by a soap context + virtual prodml23__BergmanSutton_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__BergmanSutton_BubblePoint); } public: /// Constructor with default initializations - prodml22__BergmanSutton_BubblePoint() { } + prodml23__BergmanSutton_BubblePoint() { } /// Destructor - virtual ~prodml22__BergmanSutton_BubblePoint() { } - /// Friend allocator used by soap_new_prodml22__BergmanSutton_BubblePoint(struct soap*, int) - friend SOAP_FMAC1 prodml22__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__BergmanSutton_BubblePoint(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__BergmanSutton_BubblePoint() { } + /// Friend allocator used by soap_new_prodml23__BergmanSutton_BubblePoint(struct soap*, int) + friend SOAP_FMAC1 prodml23__BergmanSutton_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__BergmanSutton_BubblePoint(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1909 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey (-881) -/* complex XML schema type 'prodml22:CarrDempsey': */ -class SOAP_CMAC prodml22__CarrDempsey : public prodml22__AbstractCorrelationGasViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey (-881) +/* complex XML schema type 'prodml23:CarrDempsey': */ +class SOAP_CMAC prodml23__CarrDempsey : public prodml23__AbstractCorrelationGasViscosityModel { public: - /// Optional element 'prodml22:GasMolarWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolarWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolarWeight; - /// Optional element 'prodml22:GasViscosityAt1Atm' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosityAt1Atm' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosityAt1Atm; - /// Optional element 'prodml22:PseudoReducedTemperature' of XML schema type 'eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:PseudoReducedTemperature' of XML schema type 'eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure *PseudoReducedTemperature; - /// Optional element 'prodml22:PseudoReducedPressure' of XML schema type 'eml23:PressurePerPressureMeasure' + /// Optional element 'prodml23:PseudoReducedPressure' of XML schema type 'eml23:PressurePerPressureMeasure' eml23__PressurePerPressureMeasure *PseudoReducedPressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75085,26 +75206,26 @@ class SOAP_CMAC prodml22__CarrDempsey : public prodml22__AbstractCorrelationGasV virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__CarrDempsey, default initialized and not managed by a soap context - virtual prodml22__CarrDempsey *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__CarrDempsey); } + /// Return a new object of type prodml23__CarrDempsey, default initialized and not managed by a soap context + virtual prodml23__CarrDempsey *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__CarrDempsey); } public: /// Constructor with default initializations - prodml22__CarrDempsey() : GasMolarWeight(), GasViscosityAt1Atm(), PseudoReducedTemperature(), PseudoReducedPressure() { } + prodml23__CarrDempsey() : GasMolarWeight(), GasViscosityAt1Atm(), PseudoReducedTemperature(), PseudoReducedPressure() { } /// Destructor - virtual ~prodml22__CarrDempsey() { } - /// Friend allocator used by soap_new_prodml22__CarrDempsey(struct soap*, int) - friend SOAP_FMAC1 prodml22__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml22__CarrDempsey(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__CarrDempsey() { } + /// Friend allocator used by soap_new_prodml23__CarrDempsey(struct soap*, int) + friend SOAP_FMAC1 prodml23__CarrDempsey * SOAP_FMAC2 soap_instantiate_prodml23__CarrDempsey(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1925 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint (-889) -/* complex XML schema type 'prodml22:DeGhetto-BubblePoint': */ -class SOAP_CMAC prodml22__DeGhetto_BubblePoint : public prodml22__AbstractCorrelationViscosityBubblePointModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint (-889) +/* complex XML schema type 'prodml23:DeGhetto-BubblePoint': */ +class SOAP_CMAC prodml23__DeGhetto_BubblePoint : public prodml23__AbstractCorrelationViscosityBubblePointModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75117,29 +75238,29 @@ class SOAP_CMAC prodml22__DeGhetto_BubblePoint : public prodml22__AbstractCorrel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeGhetto_BubblePoint, default initialized and not managed by a soap context - virtual prodml22__DeGhetto_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeGhetto_BubblePoint); } + /// Return a new object of type prodml23__DeGhetto_BubblePoint, default initialized and not managed by a soap context + virtual prodml23__DeGhetto_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeGhetto_BubblePoint); } public: /// Constructor with default initializations - prodml22__DeGhetto_BubblePoint() { } + prodml23__DeGhetto_BubblePoint() { } /// Destructor - virtual ~prodml22__DeGhetto_BubblePoint() { } - /// Friend allocator used by soap_new_prodml22__DeGhetto_BubblePoint(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_BubblePoint(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeGhetto_BubblePoint() { } + /// Friend allocator used by soap_new_prodml23__DeGhetto_BubblePoint(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeGhetto_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_BubblePoint(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1927 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead (-890) -/* complex XML schema type 'prodml22:DeGhetto-Dead': */ -class SOAP_CMAC prodml22__DeGhetto_Dead : public prodml22__AbstractCorrelationViscosityDeadModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead (-890) +/* complex XML schema type 'prodml23:DeGhetto-Dead': */ +class SOAP_CMAC prodml23__DeGhetto_Dead : public prodml23__AbstractCorrelationViscosityDeadModel { public: - /// Optional element 'prodml22:OilAPIAtStockTank' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:OilAPIAtStockTank' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *OilAPIAtStockTank; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75152,31 +75273,31 @@ class SOAP_CMAC prodml22__DeGhetto_Dead : public prodml22__AbstractCorrelationVi virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeGhetto_Dead, default initialized and not managed by a soap context - virtual prodml22__DeGhetto_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeGhetto_Dead); } + /// Return a new object of type prodml23__DeGhetto_Dead, default initialized and not managed by a soap context + virtual prodml23__DeGhetto_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeGhetto_Dead); } public: /// Constructor with default initializations - prodml22__DeGhetto_Dead() : OilAPIAtStockTank() { } + prodml23__DeGhetto_Dead() : OilAPIAtStockTank() { } /// Destructor - virtual ~prodml22__DeGhetto_Dead() { } - /// Friend allocator used by soap_new_prodml22__DeGhetto_Dead(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_Dead(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeGhetto_Dead() { } + /// Friend allocator used by soap_new_prodml23__DeGhetto_Dead(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeGhetto_Dead * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_Dead(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1929 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated (-891) -/* complex XML schema type 'prodml22:DeGhetto-Undersaturated': */ -class SOAP_CMAC prodml22__DeGhetto_Undersaturated : public prodml22__AbstractCorrelationViscosityUndersaturatedModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated (-891) +/* complex XML schema type 'prodml23:DeGhetto-Undersaturated': */ +class SOAP_CMAC prodml23__DeGhetto_Undersaturated : public prodml23__AbstractCorrelationViscosityUndersaturatedModel { public: - /// Optional element 'prodml22:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature; - /// Optional element 'prodml22:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGasOilRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75189,26 +75310,26 @@ class SOAP_CMAC prodml22__DeGhetto_Undersaturated : public prodml22__AbstractCor virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DeGhetto_Undersaturated, default initialized and not managed by a soap context - virtual prodml22__DeGhetto_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DeGhetto_Undersaturated); } + /// Return a new object of type prodml23__DeGhetto_Undersaturated, default initialized and not managed by a soap context + virtual prodml23__DeGhetto_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DeGhetto_Undersaturated); } public: /// Constructor with default initializations - prodml22__DeGhetto_Undersaturated() : ReservoirTemperature(), SolutionGasOilRatio() { } + prodml23__DeGhetto_Undersaturated() : ReservoirTemperature(), SolutionGasOilRatio() { } /// Destructor - virtual ~prodml22__DeGhetto_Undersaturated() { } - /// Friend allocator used by soap_new_prodml22__DeGhetto_Undersaturated(struct soap*, int) - friend SOAP_FMAC1 prodml22__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__DeGhetto_Undersaturated(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DeGhetto_Undersaturated() { } + /// Friend allocator used by soap_new_prodml23__DeGhetto_Undersaturated(struct soap*, int) + friend SOAP_FMAC1 prodml23__DeGhetto_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__DeGhetto_Undersaturated(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1931 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint (-892) -/* complex XML schema type 'prodml22:DindorukChristman-BubblePoint': */ -class SOAP_CMAC prodml22__DindorukChristman_BubblePoint : public prodml22__AbstractCorrelationViscosityBubblePointModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint (-892) +/* complex XML schema type 'prodml23:DindorukChristman-BubblePoint': */ +class SOAP_CMAC prodml23__DindorukChristman_BubblePoint : public prodml23__AbstractCorrelationViscosityBubblePointModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75221,29 +75342,29 @@ class SOAP_CMAC prodml22__DindorukChristman_BubblePoint : public prodml22__Abstr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DindorukChristman_BubblePoint, default initialized and not managed by a soap context - virtual prodml22__DindorukChristman_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DindorukChristman_BubblePoint); } + /// Return a new object of type prodml23__DindorukChristman_BubblePoint, default initialized and not managed by a soap context + virtual prodml23__DindorukChristman_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DindorukChristman_BubblePoint); } public: /// Constructor with default initializations - prodml22__DindorukChristman_BubblePoint() { } + prodml23__DindorukChristman_BubblePoint() { } /// Destructor - virtual ~prodml22__DindorukChristman_BubblePoint() { } - /// Friend allocator used by soap_new_prodml22__DindorukChristman_BubblePoint(struct soap*, int) - friend SOAP_FMAC1 prodml22__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_BubblePoint(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DindorukChristman_BubblePoint() { } + /// Friend allocator used by soap_new_prodml23__DindorukChristman_BubblePoint(struct soap*, int) + friend SOAP_FMAC1 prodml23__DindorukChristman_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_BubblePoint(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1933 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead (-893) -/* complex XML schema type 'prodml22:DindorukChristman-Dead': */ -class SOAP_CMAC prodml22__DindorukChristman_Dead : public prodml22__AbstractCorrelationViscosityDeadModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead (-893) +/* complex XML schema type 'prodml23:DindorukChristman-Dead': */ +class SOAP_CMAC prodml23__DindorukChristman_Dead : public prodml23__AbstractCorrelationViscosityDeadModel { public: - /// Optional element 'prodml22:OilGravityAtStockTank' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:OilGravityAtStockTank' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *OilGravityAtStockTank; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75256,31 +75377,31 @@ class SOAP_CMAC prodml22__DindorukChristman_Dead : public prodml22__AbstractCorr virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DindorukChristman_Dead, default initialized and not managed by a soap context - virtual prodml22__DindorukChristman_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DindorukChristman_Dead); } + /// Return a new object of type prodml23__DindorukChristman_Dead, default initialized and not managed by a soap context + virtual prodml23__DindorukChristman_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DindorukChristman_Dead); } public: /// Constructor with default initializations - prodml22__DindorukChristman_Dead() : OilGravityAtStockTank() { } + prodml23__DindorukChristman_Dead() : OilGravityAtStockTank() { } /// Destructor - virtual ~prodml22__DindorukChristman_Dead() { } - /// Friend allocator used by soap_new_prodml22__DindorukChristman_Dead(struct soap*, int) - friend SOAP_FMAC1 prodml22__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_Dead(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DindorukChristman_Dead() { } + /// Friend allocator used by soap_new_prodml23__DindorukChristman_Dead(struct soap*, int) + friend SOAP_FMAC1 prodml23__DindorukChristman_Dead * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_Dead(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1935 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated (-894) -/* complex XML schema type 'prodml22:DindorukChristman-Undersaturated': */ -class SOAP_CMAC prodml22__DindorukChristman_Undersaturated : public prodml22__AbstractCorrelationViscosityUndersaturatedModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated (-894) +/* complex XML schema type 'prodml23:DindorukChristman-Undersaturated': */ +class SOAP_CMAC prodml23__DindorukChristman_Undersaturated : public prodml23__AbstractCorrelationViscosityUndersaturatedModel { public: - /// Optional element 'prodml22:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature; - /// Optional element 'prodml22:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGasOilRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75293,31 +75414,31 @@ class SOAP_CMAC prodml22__DindorukChristman_Undersaturated : public prodml22__Ab virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__DindorukChristman_Undersaturated, default initialized and not managed by a soap context - virtual prodml22__DindorukChristman_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__DindorukChristman_Undersaturated); } + /// Return a new object of type prodml23__DindorukChristman_Undersaturated, default initialized and not managed by a soap context + virtual prodml23__DindorukChristman_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__DindorukChristman_Undersaturated); } public: /// Constructor with default initializations - prodml22__DindorukChristman_Undersaturated() : ReservoirTemperature(), SolutionGasOilRatio() { } + prodml23__DindorukChristman_Undersaturated() : ReservoirTemperature(), SolutionGasOilRatio() { } /// Destructor - virtual ~prodml22__DindorukChristman_Undersaturated() { } - /// Friend allocator used by soap_new_prodml22__DindorukChristman_Undersaturated(struct soap*, int) - friend SOAP_FMAC1 prodml22__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__DindorukChristman_Undersaturated(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__DindorukChristman_Undersaturated() { } + /// Friend allocator used by soap_new_prodml23__DindorukChristman_Undersaturated(struct soap*, int) + friend SOAP_FMAC1 prodml23__DindorukChristman_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__DindorukChristman_Undersaturated(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1959 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez (-906) -/* complex XML schema type 'prodml22:LeeGonzalez': */ -class SOAP_CMAC prodml22__LeeGonzalez : public prodml22__AbstractCorrelationGasViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez (-906) +/* complex XML schema type 'prodml23:LeeGonzalez': */ +class SOAP_CMAC prodml23__LeeGonzalez : public prodml23__AbstractCorrelationGasViscosityModel { public: - /// Optional element 'prodml22:GasMolarWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolarWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolarWeight; - /// Optional element 'prodml22:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *GasDensity; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75330,33 +75451,33 @@ class SOAP_CMAC prodml22__LeeGonzalez : public prodml22__AbstractCorrelationGasV virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LeeGonzalez, default initialized and not managed by a soap context - virtual prodml22__LeeGonzalez *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LeeGonzalez); } + /// Return a new object of type prodml23__LeeGonzalez, default initialized and not managed by a soap context + virtual prodml23__LeeGonzalez *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LeeGonzalez); } public: /// Constructor with default initializations - prodml22__LeeGonzalez() : GasMolarWeight(), GasDensity() { } + prodml23__LeeGonzalez() : GasMolarWeight(), GasDensity() { } /// Destructor - virtual ~prodml22__LeeGonzalez() { } - /// Friend allocator used by soap_new_prodml22__LeeGonzalez(struct soap*, int) - friend SOAP_FMAC1 prodml22__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml22__LeeGonzalez(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LeeGonzalez() { } + /// Friend allocator used by soap_new_prodml23__LeeGonzalez(struct soap*, int) + friend SOAP_FMAC1 prodml23__LeeGonzalez * SOAP_FMAC2 soap_instantiate_prodml23__LeeGonzalez(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1963 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame (-908) -/* complex XML schema type 'prodml22:LondonoArcherBlasinggame': */ -class SOAP_CMAC prodml22__LondonoArcherBlasinggame : public prodml22__AbstractCorrelationGasViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame (-908) +/* complex XML schema type 'prodml23:LondonoArcherBlasinggame': */ +class SOAP_CMAC prodml23__LondonoArcherBlasinggame : public prodml23__AbstractCorrelationGasViscosityModel { public: - /// Optional element 'prodml22:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' + /// Optional element 'prodml23:GasDensity' of XML schema type 'eml23:MassPerVolumeMeasure' eml23__MassPerVolumeMeasure *GasDensity; - /// Optional element 'prodml22:GasViscosityAt1Atm' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosityAt1Atm' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosityAt1Atm; - /// Optional element 'prodml22:GasViscosityCoefficient1Atm' of XML schema type 'prodml22:PvtModelParameter' - std::vector GasViscosityCoefficient1Atm; + /// Optional element 'prodml23:GasViscosityCoefficient1Atm' of XML schema type 'prodml23:PvtModelParameter' + std::vector GasViscosityCoefficient1Atm; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75369,39 +75490,39 @@ class SOAP_CMAC prodml22__LondonoArcherBlasinggame : public prodml22__AbstractCo virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__LondonoArcherBlasinggame, default initialized and not managed by a soap context - virtual prodml22__LondonoArcherBlasinggame *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__LondonoArcherBlasinggame); } + /// Return a new object of type prodml23__LondonoArcherBlasinggame, default initialized and not managed by a soap context + virtual prodml23__LondonoArcherBlasinggame *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__LondonoArcherBlasinggame); } public: /// Constructor with default initializations - prodml22__LondonoArcherBlasinggame() : GasDensity(), GasViscosityAt1Atm(), GasViscosityCoefficient1Atm() { } + prodml23__LondonoArcherBlasinggame() : GasDensity(), GasViscosityAt1Atm(), GasViscosityCoefficient1Atm() { } /// Destructor - virtual ~prodml22__LondonoArcherBlasinggame() { } - /// Friend allocator used by soap_new_prodml22__LondonoArcherBlasinggame(struct soap*, int) - friend SOAP_FMAC1 prodml22__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prodml22__LondonoArcherBlasinggame(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__LondonoArcherBlasinggame() { } + /// Friend allocator used by soap_new_prodml23__LondonoArcherBlasinggame(struct soap*, int) + friend SOAP_FMAC1 prodml23__LondonoArcherBlasinggame * SOAP_FMAC2 soap_instantiate_prodml23__LondonoArcherBlasinggame(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1965 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas (-909) -/* complex XML schema type 'prodml22:Lucas': */ -class SOAP_CMAC prodml22__Lucas : public prodml22__AbstractCorrelationGasViscosityModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas (-909) +/* complex XML schema type 'prodml23:Lucas': */ +class SOAP_CMAC prodml23__Lucas : public prodml23__AbstractCorrelationGasViscosityModel { public: - /// Optional element 'prodml22:GasMolarWeight' of XML schema type 'eml23:MolecularWeightMeasure' + /// Optional element 'prodml23:GasMolarWeight' of XML schema type 'eml23:MolecularWeightMeasure' eml23__MolecularWeightMeasure *GasMolarWeight; - /// Optional element 'prodml22:GasViscosityAt1Atm' of XML schema type 'eml23:DynamicViscosityMeasure' + /// Optional element 'prodml23:GasViscosityAt1Atm' of XML schema type 'eml23:DynamicViscosityMeasure' eml23__DynamicViscosityMeasure *GasViscosityAt1Atm; - /// Optional element 'prodml22:PseudoCriticalTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:PseudoCriticalTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *PseudoCriticalTemperature; - /// Optional element 'prodml22:PseudoCriticalPressure' of XML schema type 'eml23:PressureMeasure' + /// Optional element 'prodml23:PseudoCriticalPressure' of XML schema type 'eml23:PressureMeasure' eml23__PressureMeasure *PseudoCriticalPressure; - /// Optional element 'prodml22:PseudoReducedTemperature' of XML schema type 'eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:PseudoReducedTemperature' of XML schema type 'eml23:ThermodynamicTemperaturePerThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperaturePerThermodynamicTemperatureMeasure *PseudoReducedTemperature; - /// Optional element 'prodml22:PseudoReducedPressure' of XML schema type 'eml23:PressurePerPressureMeasure' + /// Optional element 'prodml23:PseudoReducedPressure' of XML schema type 'eml23:PressurePerPressureMeasure' eml23__PressurePerPressureMeasure *PseudoReducedPressure; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75414,26 +75535,26 @@ class SOAP_CMAC prodml22__Lucas : public prodml22__AbstractCorrelationGasViscosi virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Lucas, default initialized and not managed by a soap context - virtual prodml22__Lucas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Lucas); } + /// Return a new object of type prodml23__Lucas, default initialized and not managed by a soap context + virtual prodml23__Lucas *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Lucas); } public: /// Constructor with default initializations - prodml22__Lucas() : GasMolarWeight(), GasViscosityAt1Atm(), PseudoCriticalTemperature(), PseudoCriticalPressure(), PseudoReducedTemperature(), PseudoReducedPressure() { } + prodml23__Lucas() : GasMolarWeight(), GasViscosityAt1Atm(), PseudoCriticalTemperature(), PseudoCriticalPressure(), PseudoReducedTemperature(), PseudoReducedPressure() { } /// Destructor - virtual ~prodml22__Lucas() { } - /// Friend allocator used by soap_new_prodml22__Lucas(struct soap*, int) - friend SOAP_FMAC1 prodml22__Lucas * SOAP_FMAC2 soap_instantiate_prodml22__Lucas(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Lucas() { } + /// Friend allocator used by soap_new_prodml23__Lucas(struct soap*, int) + friend SOAP_FMAC1 prodml23__Lucas * SOAP_FMAC2 soap_instantiate_prodml23__Lucas(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1971 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint (-912) -/* complex XML schema type 'prodml22:PetroskyFarshad-BubblePoint': */ -class SOAP_CMAC prodml22__PetroskyFarshad_BubblePoint : public prodml22__AbstractCorrelationViscosityBubblePointModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint (-912) +/* complex XML schema type 'prodml23:PetroskyFarshad-BubblePoint': */ +class SOAP_CMAC prodml23__PetroskyFarshad_BubblePoint : public prodml23__AbstractCorrelationViscosityBubblePointModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75446,29 +75567,29 @@ class SOAP_CMAC prodml22__PetroskyFarshad_BubblePoint : public prodml22__Abstrac virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PetroskyFarshad_BubblePoint, default initialized and not managed by a soap context - virtual prodml22__PetroskyFarshad_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PetroskyFarshad_BubblePoint); } + /// Return a new object of type prodml23__PetroskyFarshad_BubblePoint, default initialized and not managed by a soap context + virtual prodml23__PetroskyFarshad_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PetroskyFarshad_BubblePoint); } public: /// Constructor with default initializations - prodml22__PetroskyFarshad_BubblePoint() { } + prodml23__PetroskyFarshad_BubblePoint() { } /// Destructor - virtual ~prodml22__PetroskyFarshad_BubblePoint() { } - /// Friend allocator used by soap_new_prodml22__PetroskyFarshad_BubblePoint(struct soap*, int) - friend SOAP_FMAC1 prodml22__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_BubblePoint(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PetroskyFarshad_BubblePoint() { } + /// Friend allocator used by soap_new_prodml23__PetroskyFarshad_BubblePoint(struct soap*, int) + friend SOAP_FMAC1 prodml23__PetroskyFarshad_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_BubblePoint(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1973 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead (-913) -/* complex XML schema type 'prodml22:PetroskyFarshad-Dead': */ -class SOAP_CMAC prodml22__PetroskyFarshad_Dead : public prodml22__AbstractCorrelationViscosityDeadModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead (-913) +/* complex XML schema type 'prodml23:PetroskyFarshad-Dead': */ +class SOAP_CMAC prodml23__PetroskyFarshad_Dead : public prodml23__AbstractCorrelationViscosityDeadModel { public: - /// Optional element 'prodml22:OilGravityAtStockTank' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:OilGravityAtStockTank' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *OilGravityAtStockTank; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75481,26 +75602,26 @@ class SOAP_CMAC prodml22__PetroskyFarshad_Dead : public prodml22__AbstractCorrel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PetroskyFarshad_Dead, default initialized and not managed by a soap context - virtual prodml22__PetroskyFarshad_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PetroskyFarshad_Dead); } + /// Return a new object of type prodml23__PetroskyFarshad_Dead, default initialized and not managed by a soap context + virtual prodml23__PetroskyFarshad_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PetroskyFarshad_Dead); } public: /// Constructor with default initializations - prodml22__PetroskyFarshad_Dead() : OilGravityAtStockTank() { } + prodml23__PetroskyFarshad_Dead() : OilGravityAtStockTank() { } /// Destructor - virtual ~prodml22__PetroskyFarshad_Dead() { } - /// Friend allocator used by soap_new_prodml22__PetroskyFarshad_Dead(struct soap*, int) - friend SOAP_FMAC1 prodml22__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_Dead(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PetroskyFarshad_Dead() { } + /// Friend allocator used by soap_new_prodml23__PetroskyFarshad_Dead(struct soap*, int) + friend SOAP_FMAC1 prodml23__PetroskyFarshad_Dead * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_Dead(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1975 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated (-914) -/* complex XML schema type 'prodml22:PetroskyFarshad-Undersaturated': */ -class SOAP_CMAC prodml22__PetroskyFarshad_Undersaturated : public prodml22__AbstractCorrelationViscosityUndersaturatedModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated (-914) +/* complex XML schema type 'prodml23:PetroskyFarshad-Undersaturated': */ +class SOAP_CMAC prodml23__PetroskyFarshad_Undersaturated : public prodml23__AbstractCorrelationViscosityUndersaturatedModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75513,26 +75634,26 @@ class SOAP_CMAC prodml22__PetroskyFarshad_Undersaturated : public prodml22__Abst virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__PetroskyFarshad_Undersaturated, default initialized and not managed by a soap context - virtual prodml22__PetroskyFarshad_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__PetroskyFarshad_Undersaturated); } + /// Return a new object of type prodml23__PetroskyFarshad_Undersaturated, default initialized and not managed by a soap context + virtual prodml23__PetroskyFarshad_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__PetroskyFarshad_Undersaturated); } public: /// Constructor with default initializations - prodml22__PetroskyFarshad_Undersaturated() { } + prodml23__PetroskyFarshad_Undersaturated() { } /// Destructor - virtual ~prodml22__PetroskyFarshad_Undersaturated() { } - /// Friend allocator used by soap_new_prodml22__PetroskyFarshad_Undersaturated(struct soap*, int) - friend SOAP_FMAC1 prodml22__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__PetroskyFarshad_Undersaturated(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__PetroskyFarshad_Undersaturated() { } + /// Friend allocator used by soap_new_prodml23__PetroskyFarshad_Undersaturated(struct soap*, int) + friend SOAP_FMAC1 prodml23__PetroskyFarshad_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__PetroskyFarshad_Undersaturated(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1987 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint (-920) -/* complex XML schema type 'prodml22:Standing-BubblePoint': */ -class SOAP_CMAC prodml22__Standing_BubblePoint : public prodml22__AbstractCorrelationViscosityBubblePointModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint (-920) +/* complex XML schema type 'prodml23:Standing-BubblePoint': */ +class SOAP_CMAC prodml23__Standing_BubblePoint : public prodml23__AbstractCorrelationViscosityBubblePointModel { public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75545,29 +75666,29 @@ class SOAP_CMAC prodml22__Standing_BubblePoint : public prodml22__AbstractCorrel virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Standing_BubblePoint, default initialized and not managed by a soap context - virtual prodml22__Standing_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Standing_BubblePoint); } + /// Return a new object of type prodml23__Standing_BubblePoint, default initialized and not managed by a soap context + virtual prodml23__Standing_BubblePoint *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Standing_BubblePoint); } public: /// Constructor with default initializations - prodml22__Standing_BubblePoint() { } + prodml23__Standing_BubblePoint() { } /// Destructor - virtual ~prodml22__Standing_BubblePoint() { } - /// Friend allocator used by soap_new_prodml22__Standing_BubblePoint(struct soap*, int) - friend SOAP_FMAC1 prodml22__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml22__Standing_BubblePoint(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Standing_BubblePoint() { } + /// Friend allocator used by soap_new_prodml23__Standing_BubblePoint(struct soap*, int) + friend SOAP_FMAC1 prodml23__Standing_BubblePoint * SOAP_FMAC2 soap_instantiate_prodml23__Standing_BubblePoint(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1989 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead (-921) -/* complex XML schema type 'prodml22:Standing-Dead': */ -class SOAP_CMAC prodml22__Standing_Dead : public prodml22__AbstractCorrelationViscosityDeadModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead (-921) +/* complex XML schema type 'prodml23:Standing-Dead': */ +class SOAP_CMAC prodml23__Standing_Dead : public prodml23__AbstractCorrelationViscosityDeadModel { public: - /// Optional element 'prodml22:OilGravityAtStockTank' of XML schema type 'eml23:APIGravityMeasure' + /// Optional element 'prodml23:OilGravityAtStockTank' of XML schema type 'eml23:APIGravityMeasure' eml23__APIGravityMeasure *OilGravityAtStockTank; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75580,31 +75701,31 @@ class SOAP_CMAC prodml22__Standing_Dead : public prodml22__AbstractCorrelationVi virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Standing_Dead, default initialized and not managed by a soap context - virtual prodml22__Standing_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Standing_Dead); } + /// Return a new object of type prodml23__Standing_Dead, default initialized and not managed by a soap context + virtual prodml23__Standing_Dead *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Standing_Dead); } public: /// Constructor with default initializations - prodml22__Standing_Dead() : OilGravityAtStockTank() { } + prodml23__Standing_Dead() : OilGravityAtStockTank() { } /// Destructor - virtual ~prodml22__Standing_Dead() { } - /// Friend allocator used by soap_new_prodml22__Standing_Dead(struct soap*, int) - friend SOAP_FMAC1 prodml22__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml22__Standing_Dead(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Standing_Dead() { } + /// Friend allocator used by soap_new_prodml23__Standing_Dead(struct soap*, int) + friend SOAP_FMAC1 prodml23__Standing_Dead * SOAP_FMAC2 soap_instantiate_prodml23__Standing_Dead(struct soap*, int, const char*, const char*, size_t*); }; #endif /* eml2_3ForGsoap.h:1991 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated (-922) -/* complex XML schema type 'prodml22:Standing-Undersaturated': */ -class SOAP_CMAC prodml22__Standing_Undersaturated : public prodml22__AbstractCorrelationViscosityUndersaturatedModel { +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated (-922) +/* complex XML schema type 'prodml23:Standing-Undersaturated': */ +class SOAP_CMAC prodml23__Standing_Undersaturated : public prodml23__AbstractCorrelationViscosityUndersaturatedModel { public: - /// Optional element 'prodml22:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' + /// Optional element 'prodml23:ReservoirTemperature' of XML schema type 'eml23:ThermodynamicTemperatureMeasure' eml23__ThermodynamicTemperatureMeasure *ReservoirTemperature; - /// Optional element 'prodml22:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' + /// Optional element 'prodml23:SolutionGasOilRatio' of XML schema type 'eml23:VolumePerVolumeMeasure' eml23__VolumePerVolumeMeasure *SolutionGasOilRatio; public: - /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated - virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated; } + /// Return unique type id SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated + virtual long soap_type(void) const { return SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated; } /// (Re)set members to default values virtual void soap_default(struct soap*); /// Serialize object to prepare for SOAP 1.1/1.2 encoded output (or with SOAP_XML_GRAPH) by analyzing its (cyclic) structures @@ -75617,15 +75738,15 @@ class SOAP_CMAC prodml22__Standing_Undersaturated : public prodml22__AbstractCor virtual void *soap_get(struct soap*, const char *tag, const char *type); /// Get object from XML, with matching tag and type (NULL matches any tag and type), return pointer to object or NULL on error virtual void *soap_in(struct soap*, const char *tag, const char *type); - /// Return a new object of type prodml22__Standing_Undersaturated, default initialized and not managed by a soap context - virtual prodml22__Standing_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml22__Standing_Undersaturated); } + /// Return a new object of type prodml23__Standing_Undersaturated, default initialized and not managed by a soap context + virtual prodml23__Standing_Undersaturated *soap_alloc(void) const { return SOAP_NEW_UNMANAGED(prodml23__Standing_Undersaturated); } public: /// Constructor with default initializations - prodml22__Standing_Undersaturated() : ReservoirTemperature(), SolutionGasOilRatio() { } + prodml23__Standing_Undersaturated() : ReservoirTemperature(), SolutionGasOilRatio() { } /// Destructor - virtual ~prodml22__Standing_Undersaturated() { } - /// Friend allocator used by soap_new_prodml22__Standing_Undersaturated(struct soap*, int) - friend SOAP_FMAC1 prodml22__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml22__Standing_Undersaturated(struct soap*, int, const char*, const char*, size_t*); + virtual ~prodml23__Standing_Undersaturated() { } + /// Friend allocator used by soap_new_prodml23__Standing_Undersaturated(struct soap*, int) + friend SOAP_FMAC1 prodml23__Standing_Undersaturated * SOAP_FMAC2 soap_instantiate_prodml23__Standing_Undersaturated(struct soap*, int, const char*, const char*, size_t*); }; #endif @@ -75669,6 +75790,7 @@ class SOAP_CMAC resqml22__AbstractSeismicLineFeature : public resqml22__Abstract /* eml2_3ForGsoap.h:2759 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLatticeFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLatticeFeature (-1306) +/* Type resqml22__SeismicLatticeFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:SeismicLatticeFeature': */ class SOAP_CMAC resqml22__SeismicLatticeFeature : public resqml22__AbstractSeismicSurveyFeature { public: @@ -75740,6 +75862,7 @@ class SOAP_CMAC resqml22__SeismicLatticeSetFeature : public resqml22__AbstractSe /* eml2_3ForGsoap.h:2763 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLineSetFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__SeismicLineSetFeature (-1308) +/* Type resqml22__SeismicLineSetFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:SeismicLineSetFeature': */ class SOAP_CMAC resqml22__SeismicLineSetFeature : public resqml22__AbstractSeismicSurveyFeature { public: @@ -75772,6 +75895,7 @@ class SOAP_CMAC resqml22__SeismicLineSetFeature : public resqml22__AbstractSeism /* eml2_3ForGsoap.h:2783 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__NonSealedSurfaceFrameworkRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__NonSealedSurfaceFrameworkRepresentation (-1318) +/* Type resqml22__NonSealedSurfaceFrameworkRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:NonSealedSurfaceFrameworkRepresentation': */ class SOAP_CMAC resqml22__NonSealedSurfaceFrameworkRepresentation : public resqml22__AbstractSurfaceFrameworkRepresentation { public: @@ -75807,6 +75931,7 @@ class SOAP_CMAC resqml22__NonSealedSurfaceFrameworkRepresentation : public resqm /* eml2_3ForGsoap.h:2797 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__SealedSurfaceFrameworkRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__SealedSurfaceFrameworkRepresentation (-1325) +/* Type resqml22__SealedSurfaceFrameworkRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:SealedSurfaceFrameworkRepresentation': */ class SOAP_CMAC resqml22__SealedSurfaceFrameworkRepresentation : public resqml22__AbstractSurfaceFrameworkRepresentation { public: @@ -75842,6 +75967,7 @@ class SOAP_CMAC resqml22__SealedSurfaceFrameworkRepresentation : public resqml22 /* eml2_3ForGsoap.h:2847 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__GeologicUnitOccurrenceInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__GeologicUnitOccurrenceInterpretation (-1350) +/* Type resqml22__GeologicUnitOccurrenceInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:GeologicUnitOccurrenceInterpretation': */ class SOAP_CMAC resqml22__GeologicUnitOccurrenceInterpretation : public resqml22__AbstractGeologicUnitOrganizationInterpretation { public: @@ -75879,6 +76005,7 @@ class SOAP_CMAC resqml22__GeologicUnitOccurrenceInterpretation : public resqml22 /* eml2_3ForGsoap.h:2863 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicColumnRankInterpretation #define SOAP_TYPE_gsoap_eml2_3_resqml22__StratigraphicColumnRankInterpretation (-1358) +/* Type resqml22__StratigraphicColumnRankInterpretation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:StratigraphicColumnRankInterpretation': */ class SOAP_CMAC resqml22__StratigraphicColumnRankInterpretation : public resqml22__AbstractGeologicUnitOrganizationInterpretation { public: @@ -75953,6 +76080,7 @@ class SOAP_CMAC resqml22__IjkGridGeometry : public resqml22__AbstractColumnLayer /* eml2_3ForGsoap.h:2941 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__IjkGridRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__IjkGridRepresentation (-1397) +/* Type resqml22__IjkGridRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:IjkGridRepresentation': */ class SOAP_CMAC resqml22__IjkGridRepresentation : public resqml22__AbstractColumnLayerGridRepresentation { public: @@ -75996,6 +76124,7 @@ class SOAP_CMAC resqml22__IjkGridRepresentation : public resqml22__AbstractColum /* eml2_3ForGsoap.h:2971 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__TruncatedIjkGridRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__TruncatedIjkGridRepresentation (-1412) +/* Type resqml22__TruncatedIjkGridRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:TruncatedIjkGridRepresentation': */ class SOAP_CMAC resqml22__TruncatedIjkGridRepresentation : public resqml22__AbstractTruncatedColumnLayerGridRepresentation { public: @@ -76035,6 +76164,7 @@ class SOAP_CMAC resqml22__TruncatedIjkGridRepresentation : public resqml22__Abst /* eml2_3ForGsoap.h:2973 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__TruncatedUnstructuredColumnLayerGridRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__TruncatedUnstructuredColumnLayerGridRepresentation (-1413) +/* Type resqml22__TruncatedUnstructuredColumnLayerGridRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:TruncatedUnstructuredColumnLayerGridRepresentation': */ class SOAP_CMAC resqml22__TruncatedUnstructuredColumnLayerGridRepresentation : public resqml22__AbstractTruncatedColumnLayerGridRepresentation { public: @@ -76115,6 +76245,7 @@ class SOAP_CMAC resqml22__UnstructuredColumnLayerGridGeometry : public resqml22_ /* eml2_3ForGsoap.h:2985 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredColumnLayerGridRepresentation #define SOAP_TYPE_gsoap_eml2_3_resqml22__UnstructuredColumnLayerGridRepresentation (-1419) +/* Type resqml22__UnstructuredColumnLayerGridRepresentation is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:UnstructuredColumnLayerGridRepresentation': */ class SOAP_CMAC resqml22__UnstructuredColumnLayerGridRepresentation : public resqml22__AbstractColumnLayerGridRepresentation { public: @@ -76152,6 +76283,7 @@ class SOAP_CMAC resqml22__UnstructuredColumnLayerGridRepresentation : public res /* eml2_3ForGsoap.h:2749 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__CmpLineFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__CmpLineFeature (-1301) +/* Type resqml22__CmpLineFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:CmpLineFeature': */ class SOAP_CMAC resqml22__CmpLineFeature : public resqml22__AbstractSeismicLineFeature { public: @@ -76189,6 +76321,7 @@ class SOAP_CMAC resqml22__CmpLineFeature : public resqml22__AbstractSeismicLineF /* eml2_3ForGsoap.h:2765 */ #ifndef SOAP_TYPE_gsoap_eml2_3_resqml22__ShotPointLineFeature #define SOAP_TYPE_gsoap_eml2_3_resqml22__ShotPointLineFeature (-1309) +/* Type resqml22__ShotPointLineFeature is a recursive data type, (in)directly referencing itself through its (base or derived class) members */ /* complex XML schema type 'resqml22:ShotPointLineFeature': */ class SOAP_CMAC resqml22__ShotPointLineFeature : public resqml22__AbstractSeismicLineFeature { public: @@ -76218,7 +76351,7 @@ class SOAP_CMAC resqml22__ShotPointLineFeature : public resqml22__AbstractSeismi }; #endif -/* eml2_3ForGsoap.h:113952 */ +/* eml2_3ForGsoap.h:113911 */ #ifndef WITH_NOGLOBAL #ifndef SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Header #define SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Header (-845615104) @@ -76235,7 +76368,7 @@ struct SOAP_CMAC SOAP_ENV__Header { #endif #endif -/* eml2_3ForGsoap.h:113952 */ +/* eml2_3ForGsoap.h:113911 */ #ifndef WITH_NOGLOBAL #ifndef SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Code #define SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Code (-845615105) @@ -76258,7 +76391,7 @@ struct SOAP_CMAC SOAP_ENV__Code { #endif #endif -/* eml2_3ForGsoap.h:113952 */ +/* eml2_3ForGsoap.h:113911 */ #ifndef WITH_NOGLOBAL #ifndef SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Detail #define SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Detail (-845615107) @@ -76281,7 +76414,7 @@ struct SOAP_CMAC SOAP_ENV__Detail { #endif #endif -/* eml2_3ForGsoap.h:113952 */ +/* eml2_3ForGsoap.h:113911 */ #ifndef WITH_NOGLOBAL #ifndef SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Reason #define SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Reason (-845615110) @@ -76301,7 +76434,7 @@ struct SOAP_CMAC SOAP_ENV__Reason { #endif #endif -/* eml2_3ForGsoap.h:113952 */ +/* eml2_3ForGsoap.h:113911 */ #ifndef WITH_NOGLOBAL #ifndef SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Fault #define SOAP_TYPE_gsoap_eml2_3_SOAP_ENV__Fault (-845615111) @@ -78025,122 +78158,122 @@ typedef std::string eml23__CollectionKindExt; #endif /* eml2_3ForGsoap.h:3818 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt (-1705) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt (-1705) -typedef std::string prodml22__OutputFluidPropertyExt; +typedef std::string prodml23__OutputFluidPropertyExt; #endif /* eml2_3ForGsoap.h:3821 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt (-1706) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt (-1706) -typedef std::string prodml22__PvtModelParameterKindExt; +typedef std::string prodml23__PvtModelParameterKindExt; #endif /* eml2_3ForGsoap.h:3824 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt (-1707) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt (-1707) -typedef std::string prodml22__FacilityKindExt; +typedef std::string prodml23__FacilityKindExt; #endif /* eml2_3ForGsoap.h:3827 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt (-1708) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt (-1708) -typedef std::string prodml22__PlusComponentKindExt; +typedef std::string prodml23__PlusComponentKindExt; #endif /* eml2_3ForGsoap.h:3830 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt (-1709) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt (-1709) -typedef std::string prodml22__ProductFluidKindExt; +typedef std::string prodml23__ProductFluidKindExt; #endif /* eml2_3ForGsoap.h:3833 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt (-1710) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt (-1710) -typedef std::string prodml22__PseudoComponentKindExt; +typedef std::string prodml23__PseudoComponentKindExt; #endif /* eml2_3ForGsoap.h:3836 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt (-1711) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt (-1711) -typedef std::string prodml22__PureComponentKindExt; +typedef std::string prodml23__PureComponentKindExt; #endif /* eml2_3ForGsoap.h:3839 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt (-1712) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt (-1712) -typedef std::string prodml22__ReportingDurationKindExt; +typedef std::string prodml23__ReportingDurationKindExt; #endif /* eml2_3ForGsoap.h:3842 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt (-1713) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt (-1713) -typedef std::string prodml22__ReportingFacilityExt; +typedef std::string prodml23__ReportingFacilityExt; #endif /* eml2_3ForGsoap.h:3845 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt (-1714) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt (-1714) -typedef std::string prodml22__ServiceFluidKindExt; +typedef std::string prodml23__ServiceFluidKindExt; #endif /* eml2_3ForGsoap.h:3848 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt (-1715) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt (-1715) -typedef std::string prodml22__SulfurComponentKindExt; +typedef std::string prodml23__SulfurComponentKindExt; #endif /* eml2_3ForGsoap.h:3851 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt (-1716) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt (-1716) -typedef std::string prodml22__AnionKindExt; +typedef std::string prodml23__AnionKindExt; #endif /* eml2_3ForGsoap.h:3854 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt (-1717) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt (-1717) -typedef std::string prodml22__CationKindExt; +typedef std::string prodml23__CationKindExt; #endif /* eml2_3ForGsoap.h:3857 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt (-1718) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt (-1718) -typedef std::string prodml22__OrganicAcidKindExt; +typedef std::string prodml23__OrganicAcidKindExt; #endif /* eml2_3ForGsoap.h:3860 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt (-1719) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt (-1719) -typedef std::string prodml22__VolumeReferenceKindExt; +typedef std::string prodml23__VolumeReferenceKindExt; #endif /* eml2_3ForGsoap.h:3863 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt (-1720) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt (-1720) -typedef std::string prodml22__DataConditioningExt; +typedef std::string prodml23__DataConditioningExt; #endif /* eml2_3ForGsoap.h:3866 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt (-1721) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt (-1721) -typedef std::string prodml22__FluidSampleKindExt; +typedef std::string prodml23__FluidSampleKindExt; #endif /* eml2_3ForGsoap.h:3877 */ @@ -78284,24 +78417,24 @@ typedef struct tm eml23__TimeStamp; #endif /* eml2_3ForGsoap.h:3995 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear (-1743) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear (-1743) -typedef xsd__integer prodml22__CalendarYear; +typedef xsd__integer prodml23__CalendarYear; #endif /* eml2_3ForGsoap.h:4004 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction (-1745) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction (-1745) -typedef float prodml22__NonNegativeFraction; +typedef float prodml23__NonNegativeFraction; #endif /* eml2_3ForGsoap.h:4012 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier (-1746) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier (-1746) -typedef xsd__anyURI prodml22__ProdmlRelativeIdentifier; +typedef xsd__anyURI prodml23__ProdmlRelativeIdentifier; #endif /* eml2_3ForGsoap.h:4033 */ @@ -78389,1091 +78522,1091 @@ typedef std::string eml23__SectionNumber; #endif /* eml2_3ForGsoap.h:14580 */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth (-1955) +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth (-1955) -typedef std::string prodml22__CalendarMonth; +typedef std::string prodml23__CalendarMonth; #endif -/* eml2_3ForGsoap.h:111034 */ +/* eml2_3ForGsoap.h:110993 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Well #define SOAP_TYPE_gsoap_eml2_3__witsml21__Well (-3499) typedef witsml21__Well _witsml21__Well; #endif -/* eml2_3ForGsoap.h:111037 */ +/* eml2_3ForGsoap.h:110996 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Wellbore #define SOAP_TYPE_gsoap_eml2_3__witsml21__Wellbore (-3500) typedef witsml21__Wellbore _witsml21__Wellbore; #endif -/* eml2_3ForGsoap.h:111040 */ +/* eml2_3ForGsoap.h:110999 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreCompletion #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreCompletion (-3501) typedef witsml21__WellboreCompletion _witsml21__WellboreCompletion; #endif -/* eml2_3ForGsoap.h:111043 */ +/* eml2_3ForGsoap.h:111002 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__DownholeComponent #define SOAP_TYPE_gsoap_eml2_3__witsml21__DownholeComponent (-3502) typedef witsml21__DownholeComponent _witsml21__DownholeComponent; #endif -/* eml2_3ForGsoap.h:111046 */ +/* eml2_3ForGsoap.h:111005 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellCMLedger #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellCMLedger (-3503) typedef witsml21__WellCMLedger _witsml21__WellCMLedger; #endif -/* eml2_3ForGsoap.h:111049 */ +/* eml2_3ForGsoap.h:111008 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__DrillReport #define SOAP_TYPE_gsoap_eml2_3__witsml21__DrillReport (-3504) typedef witsml21__DrillReport _witsml21__DrillReport; #endif -/* eml2_3ForGsoap.h:111052 */ +/* eml2_3ForGsoap.h:111011 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Rig #define SOAP_TYPE_gsoap_eml2_3__witsml21__Rig (-3505) typedef witsml21__Rig _witsml21__Rig; #endif -/* eml2_3ForGsoap.h:111055 */ +/* eml2_3ForGsoap.h:111014 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__RigUtilization #define SOAP_TYPE_gsoap_eml2_3__witsml21__RigUtilization (-3506) typedef witsml21__RigUtilization _witsml21__RigUtilization; #endif -/* eml2_3ForGsoap.h:111058 */ +/* eml2_3ForGsoap.h:111017 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__BhaRun #define SOAP_TYPE_gsoap_eml2_3__witsml21__BhaRun (-3507) typedef witsml21__BhaRun _witsml21__BhaRun; #endif -/* eml2_3ForGsoap.h:111061 */ +/* eml2_3ForGsoap.h:111020 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__FluidsReport #define SOAP_TYPE_gsoap_eml2_3__witsml21__FluidsReport (-3508) typedef witsml21__FluidsReport _witsml21__FluidsReport; #endif -/* eml2_3ForGsoap.h:111064 */ +/* eml2_3ForGsoap.h:111023 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Tubular #define SOAP_TYPE_gsoap_eml2_3__witsml21__Tubular (-3509) typedef witsml21__Tubular _witsml21__Tubular; #endif -/* eml2_3ForGsoap.h:111067 */ +/* eml2_3ForGsoap.h:111026 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ChannelKind #define SOAP_TYPE_gsoap_eml2_3__witsml21__ChannelKind (-3510) typedef witsml21__ChannelKind _witsml21__ChannelKind; #endif -/* eml2_3ForGsoap.h:111070 */ +/* eml2_3ForGsoap.h:111029 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ChannelKindDictionary #define SOAP_TYPE_gsoap_eml2_3__witsml21__ChannelKindDictionary (-3511) typedef witsml21__ChannelKindDictionary _witsml21__ChannelKindDictionary; #endif -/* eml2_3ForGsoap.h:111073 */ +/* eml2_3ForGsoap.h:111032 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__LoggingToolKind #define SOAP_TYPE_gsoap_eml2_3__witsml21__LoggingToolKind (-3512) typedef witsml21__LoggingToolKind _witsml21__LoggingToolKind; #endif -/* eml2_3ForGsoap.h:111076 */ +/* eml2_3ForGsoap.h:111035 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__LoggingToolKindDictionary #define SOAP_TYPE_gsoap_eml2_3__witsml21__LoggingToolKindDictionary (-3513) typedef witsml21__LoggingToolKindDictionary _witsml21__LoggingToolKindDictionary; #endif -/* eml2_3ForGsoap.h:111079 */ +/* eml2_3ForGsoap.h:111038 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__MudLogReport #define SOAP_TYPE_gsoap_eml2_3__witsml21__MudLogReport (-3514) typedef witsml21__MudLogReport _witsml21__MudLogReport; #endif -/* eml2_3ForGsoap.h:111082 */ +/* eml2_3ForGsoap.h:111041 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__MudlogReportInterval #define SOAP_TYPE_gsoap_eml2_3__witsml21__MudlogReportInterval (-3515) typedef witsml21__MudlogReportInterval _witsml21__MudlogReportInterval; #endif -/* eml2_3ForGsoap.h:111085 */ +/* eml2_3ForGsoap.h:111044 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__CuttingsGeology #define SOAP_TYPE_gsoap_eml2_3__witsml21__CuttingsGeology (-3516) typedef witsml21__CuttingsGeology _witsml21__CuttingsGeology; #endif -/* eml2_3ForGsoap.h:111088 */ +/* eml2_3ForGsoap.h:111047 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__CuttingsGeologyInterval #define SOAP_TYPE_gsoap_eml2_3__witsml21__CuttingsGeologyInterval (-3517) typedef witsml21__CuttingsGeologyInterval _witsml21__CuttingsGeologyInterval; #endif -/* eml2_3ForGsoap.h:111091 */ +/* eml2_3ForGsoap.h:111050 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__InterpretedGeology #define SOAP_TYPE_gsoap_eml2_3__witsml21__InterpretedGeology (-3518) typedef witsml21__InterpretedGeology _witsml21__InterpretedGeology; #endif -/* eml2_3ForGsoap.h:111094 */ +/* eml2_3ForGsoap.h:111053 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__InterpretedGeologyInterval #define SOAP_TYPE_gsoap_eml2_3__witsml21__InterpretedGeologyInterval (-3519) typedef witsml21__InterpretedGeologyInterval _witsml21__InterpretedGeologyInterval; #endif -/* eml2_3ForGsoap.h:111097 */ +/* eml2_3ForGsoap.h:111056 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ShowEvaluation #define SOAP_TYPE_gsoap_eml2_3__witsml21__ShowEvaluation (-3520) typedef witsml21__ShowEvaluation _witsml21__ShowEvaluation; #endif -/* eml2_3ForGsoap.h:111100 */ +/* eml2_3ForGsoap.h:111059 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ShowEvaluationInterval #define SOAP_TYPE_gsoap_eml2_3__witsml21__ShowEvaluationInterval (-3521) typedef witsml21__ShowEvaluationInterval _witsml21__ShowEvaluationInterval; #endif -/* eml2_3ForGsoap.h:111103 */ +/* eml2_3ForGsoap.h:111062 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreGeology #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreGeology (-3522) typedef witsml21__WellboreGeology _witsml21__WellboreGeology; #endif -/* eml2_3ForGsoap.h:111106 */ +/* eml2_3ForGsoap.h:111065 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Channel #define SOAP_TYPE_gsoap_eml2_3__witsml21__Channel (-3523) typedef witsml21__Channel _witsml21__Channel; #endif -/* eml2_3ForGsoap.h:111109 */ +/* eml2_3ForGsoap.h:111068 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ChannelSet #define SOAP_TYPE_gsoap_eml2_3__witsml21__ChannelSet (-3524) typedef witsml21__ChannelSet _witsml21__ChannelSet; #endif -/* eml2_3ForGsoap.h:111112 */ +/* eml2_3ForGsoap.h:111071 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Log #define SOAP_TYPE_gsoap_eml2_3__witsml21__Log (-3525) typedef witsml21__Log _witsml21__Log; #endif -/* eml2_3ForGsoap.h:111115 */ +/* eml2_3ForGsoap.h:111074 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Trajectory #define SOAP_TYPE_gsoap_eml2_3__witsml21__Trajectory (-3526) typedef witsml21__Trajectory _witsml21__Trajectory; #endif -/* eml2_3ForGsoap.h:111118 */ +/* eml2_3ForGsoap.h:111077 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__TrajectoryStation #define SOAP_TYPE_gsoap_eml2_3__witsml21__TrajectoryStation (-3527) typedef witsml21__TrajectoryStation _witsml21__TrajectoryStation; #endif -/* eml2_3ForGsoap.h:111121 */ +/* eml2_3ForGsoap.h:111080 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__Target #define SOAP_TYPE_gsoap_eml2_3__witsml21__Target (-3528) typedef witsml21__Target _witsml21__Target; #endif -/* eml2_3ForGsoap.h:111124 */ +/* eml2_3ForGsoap.h:111083 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ErrorTerm #define SOAP_TYPE_gsoap_eml2_3__witsml21__ErrorTerm (-3529) typedef witsml21__ErrorTerm _witsml21__ErrorTerm; #endif -/* eml2_3ForGsoap.h:111127 */ +/* eml2_3ForGsoap.h:111086 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ErrorTermDictionary #define SOAP_TYPE_gsoap_eml2_3__witsml21__ErrorTermDictionary (-3530) typedef witsml21__ErrorTermDictionary _witsml21__ErrorTermDictionary; #endif -/* eml2_3ForGsoap.h:111130 */ +/* eml2_3ForGsoap.h:111089 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ToolErrorModel #define SOAP_TYPE_gsoap_eml2_3__witsml21__ToolErrorModel (-3531) typedef witsml21__ToolErrorModel _witsml21__ToolErrorModel; #endif -/* eml2_3ForGsoap.h:111133 */ +/* eml2_3ForGsoap.h:111092 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__ToolErrorModelDictionary #define SOAP_TYPE_gsoap_eml2_3__witsml21__ToolErrorModelDictionary (-3532) typedef witsml21__ToolErrorModelDictionary _witsml21__ToolErrorModelDictionary; #endif -/* eml2_3ForGsoap.h:111136 */ +/* eml2_3ForGsoap.h:111095 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WeightingFunction #define SOAP_TYPE_gsoap_eml2_3__witsml21__WeightingFunction (-3533) typedef witsml21__WeightingFunction _witsml21__WeightingFunction; #endif -/* eml2_3ForGsoap.h:111139 */ +/* eml2_3ForGsoap.h:111098 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WeightingFunctionDictionary #define SOAP_TYPE_gsoap_eml2_3__witsml21__WeightingFunctionDictionary (-3534) typedef witsml21__WeightingFunctionDictionary _witsml21__WeightingFunctionDictionary; #endif -/* eml2_3ForGsoap.h:111142 */ +/* eml2_3ForGsoap.h:111101 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__SurveyProgram #define SOAP_TYPE_gsoap_eml2_3__witsml21__SurveyProgram (-3535) typedef witsml21__SurveyProgram _witsml21__SurveyProgram; #endif -/* eml2_3ForGsoap.h:111145 */ +/* eml2_3ForGsoap.h:111104 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__CementJob #define SOAP_TYPE_gsoap_eml2_3__witsml21__CementJob (-3536) typedef witsml21__CementJob _witsml21__CementJob; #endif -/* eml2_3ForGsoap.h:111148 */ +/* eml2_3ForGsoap.h:111107 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__CementJobEvaluation #define SOAP_TYPE_gsoap_eml2_3__witsml21__CementJobEvaluation (-3537) typedef witsml21__CementJobEvaluation _witsml21__CementJobEvaluation; #endif -/* eml2_3ForGsoap.h:111151 */ +/* eml2_3ForGsoap.h:111110 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreGeometry #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreGeometry (-3538) typedef witsml21__WellboreGeometry _witsml21__WellboreGeometry; #endif -/* eml2_3ForGsoap.h:111154 */ +/* eml2_3ForGsoap.h:111113 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreGeometrySection #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreGeometrySection (-3539) typedef witsml21__WellboreGeometrySection _witsml21__WellboreGeometrySection; #endif -/* eml2_3ForGsoap.h:111157 */ +/* eml2_3ForGsoap.h:111116 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__StimJob #define SOAP_TYPE_gsoap_eml2_3__witsml21__StimJob (-3540) typedef witsml21__StimJob _witsml21__StimJob; #endif -/* eml2_3ForGsoap.h:111160 */ +/* eml2_3ForGsoap.h:111119 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__StimJobStage #define SOAP_TYPE_gsoap_eml2_3__witsml21__StimJobStage (-3541) typedef witsml21__StimJobStage _witsml21__StimJobStage; #endif -/* eml2_3ForGsoap.h:111163 */ +/* eml2_3ForGsoap.h:111122 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__StimPerforationCluster #define SOAP_TYPE_gsoap_eml2_3__witsml21__StimPerforationCluster (-3542) typedef witsml21__StimPerforationCluster _witsml21__StimPerforationCluster; #endif -/* eml2_3ForGsoap.h:111166 */ +/* eml2_3ForGsoap.h:111125 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__OpsReport #define SOAP_TYPE_gsoap_eml2_3__witsml21__OpsReport (-3543) typedef witsml21__OpsReport _witsml21__OpsReport; #endif -/* eml2_3ForGsoap.h:111169 */ +/* eml2_3ForGsoap.h:111128 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellCompletion #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellCompletion (-3544) typedef witsml21__WellCompletion _witsml21__WellCompletion; #endif -/* eml2_3ForGsoap.h:111172 */ +/* eml2_3ForGsoap.h:111131 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreMarker #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreMarker (-3545) typedef witsml21__WellboreMarker _witsml21__WellboreMarker; #endif -/* eml2_3ForGsoap.h:111175 */ +/* eml2_3ForGsoap.h:111134 */ #ifndef SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreMarkerSet #define SOAP_TYPE_gsoap_eml2_3__witsml21__WellboreMarkerSet (-3546) typedef witsml21__WellboreMarkerSet _witsml21__WellboreMarkerSet; #endif -/* eml2_3ForGsoap.h:111194 */ +/* eml2_3ForGsoap.h:111153 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__RecursiveReferencePoint #define SOAP_TYPE_gsoap_eml2_3__eml23__RecursiveReferencePoint (-3547) typedef eml23__RecursiveReferencePoint _eml23__RecursiveReferencePoint; #endif -/* eml2_3ForGsoap.h:111197 */ +/* eml2_3ForGsoap.h:111156 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__ReferencePointInACrs #define SOAP_TYPE_gsoap_eml2_3__eml23__ReferencePointInACrs (-3548) typedef eml23__ReferencePointInACrs _eml23__ReferencePointInACrs; #endif -/* eml2_3ForGsoap.h:111200 */ +/* eml2_3ForGsoap.h:111159 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__ReferencePointInALocalEngineeringCompoundCrs #define SOAP_TYPE_gsoap_eml2_3__eml23__ReferencePointInALocalEngineeringCompoundCrs (-3549) typedef eml23__ReferencePointInALocalEngineeringCompoundCrs _eml23__ReferencePointInALocalEngineeringCompoundCrs; #endif -/* eml2_3ForGsoap.h:111203 */ +/* eml2_3ForGsoap.h:111162 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__ReferencePointInAWellbore #define SOAP_TYPE_gsoap_eml2_3__eml23__ReferencePointInAWellbore (-3550) typedef eml23__ReferencePointInAWellbore _eml23__ReferencePointInAWellbore; #endif -/* eml2_3ForGsoap.h:111206 */ +/* eml2_3ForGsoap.h:111165 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__Geographic2dCrs #define SOAP_TYPE_gsoap_eml2_3__eml23__Geographic2dCrs (-3551) typedef eml23__Geographic2dCrs _eml23__Geographic2dCrs; #endif -/* eml2_3ForGsoap.h:111209 */ +/* eml2_3ForGsoap.h:111168 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__LocalEngineering2dCrs #define SOAP_TYPE_gsoap_eml2_3__eml23__LocalEngineering2dCrs (-3552) typedef eml23__LocalEngineering2dCrs _eml23__LocalEngineering2dCrs; #endif -/* eml2_3ForGsoap.h:111212 */ +/* eml2_3ForGsoap.h:111171 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__LocalEngineeringCompoundCrs #define SOAP_TYPE_gsoap_eml2_3__eml23__LocalEngineeringCompoundCrs (-3553) typedef eml23__LocalEngineeringCompoundCrs _eml23__LocalEngineeringCompoundCrs; #endif -/* eml2_3ForGsoap.h:111215 */ +/* eml2_3ForGsoap.h:111174 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__ProjectedCrs #define SOAP_TYPE_gsoap_eml2_3__eml23__ProjectedCrs (-3554) typedef eml23__ProjectedCrs _eml23__ProjectedCrs; #endif -/* eml2_3ForGsoap.h:111218 */ +/* eml2_3ForGsoap.h:111177 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__VerticalCrs #define SOAP_TYPE_gsoap_eml2_3__eml23__VerticalCrs (-3555) typedef eml23__VerticalCrs _eml23__VerticalCrs; #endif -/* eml2_3ForGsoap.h:111221 */ +/* eml2_3ForGsoap.h:111180 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__PropertyKind #define SOAP_TYPE_gsoap_eml2_3__eml23__PropertyKind (-3556) typedef eml23__PropertyKind _eml23__PropertyKind; #endif -/* eml2_3ForGsoap.h:111224 */ +/* eml2_3ForGsoap.h:111183 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__PropertyKindDictionary #define SOAP_TYPE_gsoap_eml2_3__eml23__PropertyKindDictionary (-3557) typedef eml23__PropertyKindDictionary _eml23__PropertyKindDictionary; #endif -/* eml2_3ForGsoap.h:111227 */ +/* eml2_3ForGsoap.h:111186 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__TimeSeries #define SOAP_TYPE_gsoap_eml2_3__eml23__TimeSeries (-3558) typedef eml23__TimeSeries _eml23__TimeSeries; #endif -/* eml2_3ForGsoap.h:111230 */ +/* eml2_3ForGsoap.h:111189 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__BusinessAssociate #define SOAP_TYPE_gsoap_eml2_3__eml23__BusinessAssociate (-3559) typedef eml23__BusinessAssociate _eml23__BusinessAssociate; #endif -/* eml2_3ForGsoap.h:111233 */ +/* eml2_3ForGsoap.h:111192 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__Activity #define SOAP_TYPE_gsoap_eml2_3__eml23__Activity (-3560) typedef eml23__Activity _eml23__Activity; #endif -/* eml2_3ForGsoap.h:111236 */ +/* eml2_3ForGsoap.h:111195 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__ActivityTemplate #define SOAP_TYPE_gsoap_eml2_3__eml23__ActivityTemplate (-3561) typedef eml23__ActivityTemplate _eml23__ActivityTemplate; #endif -/* eml2_3ForGsoap.h:111239 */ +/* eml2_3ForGsoap.h:111198 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__Aggregate #define SOAP_TYPE_gsoap_eml2_3__eml23__Aggregate (-3562) typedef eml23__Aggregate _eml23__Aggregate; #endif -/* eml2_3ForGsoap.h:111242 */ +/* eml2_3ForGsoap.h:111201 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__Attachment #define SOAP_TYPE_gsoap_eml2_3__eml23__Attachment (-3563) typedef eml23__Attachment _eml23__Attachment; #endif -/* eml2_3ForGsoap.h:111245 */ +/* eml2_3ForGsoap.h:111204 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__CollectionsToDataobjectsAssociationSet #define SOAP_TYPE_gsoap_eml2_3__eml23__CollectionsToDataobjectsAssociationSet (-3564) typedef eml23__CollectionsToDataobjectsAssociationSet _eml23__CollectionsToDataobjectsAssociationSet; #endif -/* eml2_3ForGsoap.h:111248 */ +/* eml2_3ForGsoap.h:111207 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__DataobjectCollection #define SOAP_TYPE_gsoap_eml2_3__eml23__DataobjectCollection (-3565) typedef eml23__DataobjectCollection _eml23__DataobjectCollection; #endif -/* eml2_3ForGsoap.h:111251 */ +/* eml2_3ForGsoap.h:111210 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__ColumnBasedTable #define SOAP_TYPE_gsoap_eml2_3__eml23__ColumnBasedTable (-3566) typedef eml23__ColumnBasedTable _eml23__ColumnBasedTable; #endif -/* eml2_3ForGsoap.h:111254 */ +/* eml2_3ForGsoap.h:111213 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__DataAssuranceRecord #define SOAP_TYPE_gsoap_eml2_3__eml23__DataAssuranceRecord (-3567) typedef eml23__DataAssuranceRecord _eml23__DataAssuranceRecord; #endif -/* eml2_3ForGsoap.h:111257 */ +/* eml2_3ForGsoap.h:111216 */ #ifndef SOAP_TYPE_gsoap_eml2_3__eml23__GraphicalInformationSet #define SOAP_TYPE_gsoap_eml2_3__eml23__GraphicalInformationSet (-3568) typedef eml23__GraphicalInformationSet _eml23__GraphicalInformationSet; #endif -/* eml2_3ForGsoap.h:111276 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization (-3569) +/* eml2_3ForGsoap.h:111235 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization (-3569) -typedef prodml22__FluidCharacterization _prodml22__FluidCharacterization; +typedef prodml23__FluidCharacterization _prodml23__FluidCharacterization; #endif -/* eml2_3ForGsoap.h:111279 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis (-3570) +/* eml2_3ForGsoap.h:111238 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis (-3570) -typedef prodml22__FluidAnalysis _prodml22__FluidAnalysis; +typedef prodml23__FluidAnalysis _prodml23__FluidAnalysis; #endif -/* eml2_3ForGsoap.h:111282 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis (-3571) +/* eml2_3ForGsoap.h:111241 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis (-3571) -typedef prodml22__HydrocarbonAnalysis _prodml22__HydrocarbonAnalysis; +typedef prodml23__HydrocarbonAnalysis _prodml23__HydrocarbonAnalysis; #endif -/* eml2_3ForGsoap.h:111285 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis (-3572) +/* eml2_3ForGsoap.h:111244 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis (-3572) -typedef prodml22__WaterAnalysis _prodml22__WaterAnalysis; +typedef prodml23__WaterAnalysis _prodml23__WaterAnalysis; #endif -/* eml2_3ForGsoap.h:111288 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem (-3573) +/* eml2_3ForGsoap.h:111247 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem (-3573) -typedef prodml22__FluidSystem _prodml22__FluidSystem; +typedef prodml23__FluidSystem _prodml23__FluidSystem; #endif -/* eml2_3ForGsoap.h:111291 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__Channel -#define SOAP_TYPE_gsoap_eml2_3__prodml22__Channel (-3574) +/* eml2_3ForGsoap.h:111250 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__Channel +#define SOAP_TYPE_gsoap_eml2_3__prodml23__Channel (-3574) -typedef prodml22__Channel _prodml22__Channel; +typedef prodml23__Channel _prodml23__Channel; #endif -/* eml2_3ForGsoap.h:111294 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet (-3575) +/* eml2_3ForGsoap.h:111253 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet (-3575) -typedef prodml22__ChannelSet _prodml22__ChannelSet; +typedef prodml23__ChannelSet _prodml23__ChannelSet; #endif -/* eml2_3ForGsoap.h:111297 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity (-3576) +/* eml2_3ForGsoap.h:111256 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity (-3576) -typedef prodml22__FlowTestActivity _prodml22__FlowTestActivity; +typedef prodml23__FlowTestActivity _prodml23__FlowTestActivity; #endif -/* eml2_3ForGsoap.h:111300 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__Facility -#define SOAP_TYPE_gsoap_eml2_3__prodml22__Facility (-3577) +/* eml2_3ForGsoap.h:111259 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__Facility +#define SOAP_TYPE_gsoap_eml2_3__prodml23__Facility (-3577) -typedef prodml22__Facility _prodml22__Facility; +typedef prodml23__Facility _prodml23__Facility; #endif -/* eml2_3ForGsoap.h:111303 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity (-3578) +/* eml2_3ForGsoap.h:111262 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity (-3578) -typedef prodml22__ReportingEntity _prodml22__ReportingEntity; +typedef prodml23__ReportingEntity _prodml23__ReportingEntity; #endif -/* eml2_3ForGsoap.h:111306 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy (-3579) +/* eml2_3ForGsoap.h:111265 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy (-3579) -typedef prodml22__ReportingHierarchy _prodml22__ReportingHierarchy; +typedef prodml23__ReportingHierarchy _prodml23__ReportingHierarchy; #endif -/* eml2_3ForGsoap.h:111309 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis (-3580) +/* eml2_3ForGsoap.h:111268 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis (-3580) -typedef prodml22__PressureTransientAnalysis _prodml22__PressureTransientAnalysis; +typedef prodml23__PressureTransientAnalysis _prodml23__PressureTransientAnalysis; #endif -/* eml2_3ForGsoap.h:111312 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess (-3581) +/* eml2_3ForGsoap.h:111271 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess (-3581) -typedef prodml22__PtaDataPreProcess _prodml22__PtaDataPreProcess; +typedef prodml23__PtaDataPreProcess _prodml23__PtaDataPreProcess; #endif -/* eml2_3ForGsoap.h:111315 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution (-3582) +/* eml2_3ForGsoap.h:111274 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution (-3582) -typedef prodml22__PtaDeconvolution _prodml22__PtaDeconvolution; +typedef prodml23__PtaDeconvolution _prodml23__PtaDeconvolution; #endif -/* eml2_3ForGsoap.h:111318 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample (-3583) +/* eml2_3ForGsoap.h:111277 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample (-3583) -typedef prodml22__FluidSample _prodml22__FluidSample; +typedef prodml23__FluidSample _prodml23__FluidSample; #endif -/* eml2_3ForGsoap.h:111321 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer (-3584) +/* eml2_3ForGsoap.h:111280 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer (-3584) -typedef prodml22__FluidSampleContainer _prodml22__FluidSampleContainer; +typedef prodml23__FluidSampleContainer _prodml23__FluidSampleContainer; #endif -/* eml2_3ForGsoap.h:111324 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob (-3585) +/* eml2_3ForGsoap.h:111283 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob (-3585) -typedef prodml22__FluidSampleAcquisitionJob _prodml22__FluidSampleAcquisitionJob; +typedef prodml23__FluidSampleAcquisitionJob _prodml23__FluidSampleAcquisitionJob; #endif -/* eml2_3ForGsoap.h:111327 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob (-3586) +/* eml2_3ForGsoap.h:111286 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob (-3586) -typedef prodml22__FlowTestJob _prodml22__FlowTestJob; +typedef prodml23__FlowTestJob _prodml23__FlowTestJob; #endif -/* eml2_3ForGsoap.h:111330 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume (-3587) +/* eml2_3ForGsoap.h:111289 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume (-3587) -typedef prodml22__ProductVolume _prodml22__ProductVolume; +typedef prodml23__ProductVolume _prodml23__ProductVolume; #endif -/* eml2_3ForGsoap.h:111333 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel (-3588) +/* eml2_3ForGsoap.h:111292 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel (-3588) -typedef prodml22__ProductFlowModel _prodml22__ProductFlowModel; +typedef prodml23__ProductFlowModel _prodml23__ProductFlowModel; #endif -/* eml2_3ForGsoap.h:111336 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData -#define SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData (-3589) +/* eml2_3ForGsoap.h:111295 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData +#define SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData (-3589) -typedef prodml22__TimeSeriesData _prodml22__TimeSeriesData; +typedef prodml23__TimeSeriesData _prodml23__TimeSeriesData; #endif -/* eml2_3ForGsoap.h:111339 */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic -#define SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic (-3590) +/* eml2_3ForGsoap.h:111298 */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic +#define SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic (-3590) -typedef prodml22__TimeSeriesStatistic _prodml22__TimeSeriesStatistic; +typedef prodml23__TimeSeriesStatistic _prodml23__TimeSeriesStatistic; #endif -/* eml2_3ForGsoap.h:111358 */ +/* eml2_3ForGsoap.h:111317 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeature (-3591) typedef resqml22__BoundaryFeature _resqml22__BoundaryFeature; #endif -/* eml2_3ForGsoap.h:111361 */ +/* eml2_3ForGsoap.h:111320 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__CulturalFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__CulturalFeature (-3592) typedef resqml22__CulturalFeature _resqml22__CulturalFeature; #endif -/* eml2_3ForGsoap.h:111364 */ +/* eml2_3ForGsoap.h:111323 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__Model #define SOAP_TYPE_gsoap_eml2_3__resqml22__Model (-3593) typedef resqml22__Model _resqml22__Model; #endif -/* eml2_3ForGsoap.h:111367 */ +/* eml2_3ForGsoap.h:111326 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__RockVolumeFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__RockVolumeFeature (-3594) typedef resqml22__RockVolumeFeature _resqml22__RockVolumeFeature; #endif -/* eml2_3ForGsoap.h:111370 */ +/* eml2_3ForGsoap.h:111329 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__CmpLineFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__CmpLineFeature (-3595) typedef resqml22__CmpLineFeature _resqml22__CmpLineFeature; #endif -/* eml2_3ForGsoap.h:111373 */ +/* eml2_3ForGsoap.h:111332 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__Seismic2dPostStackRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__Seismic2dPostStackRepresentation (-3596) typedef resqml22__Seismic2dPostStackRepresentation _resqml22__Seismic2dPostStackRepresentation; #endif -/* eml2_3ForGsoap.h:111376 */ +/* eml2_3ForGsoap.h:111335 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__Seismic3dPostStackRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__Seismic3dPostStackRepresentation (-3597) typedef resqml22__Seismic3dPostStackRepresentation _resqml22__Seismic3dPostStackRepresentation; #endif -/* eml2_3ForGsoap.h:111379 */ +/* eml2_3ForGsoap.h:111338 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__SeismicLatticeFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__SeismicLatticeFeature (-3598) typedef resqml22__SeismicLatticeFeature _resqml22__SeismicLatticeFeature; #endif -/* eml2_3ForGsoap.h:111382 */ +/* eml2_3ForGsoap.h:111341 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__SeismicLineSetFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__SeismicLineSetFeature (-3599) typedef resqml22__SeismicLineSetFeature _resqml22__SeismicLineSetFeature; #endif -/* eml2_3ForGsoap.h:111385 */ +/* eml2_3ForGsoap.h:111344 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__ShotPointLineFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__ShotPointLineFeature (-3600) typedef resqml22__ShotPointLineFeature _resqml22__ShotPointLineFeature; #endif -/* eml2_3ForGsoap.h:111388 */ +/* eml2_3ForGsoap.h:111347 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__NonSealedSurfaceFrameworkRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__NonSealedSurfaceFrameworkRepresentation (-3601) typedef resqml22__NonSealedSurfaceFrameworkRepresentation _resqml22__NonSealedSurfaceFrameworkRepresentation; #endif -/* eml2_3ForGsoap.h:111391 */ +/* eml2_3ForGsoap.h:111350 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__PlaneSetRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__PlaneSetRepresentation (-3602) typedef resqml22__PlaneSetRepresentation _resqml22__PlaneSetRepresentation; #endif -/* eml2_3ForGsoap.h:111394 */ +/* eml2_3ForGsoap.h:111353 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__PointSetRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__PointSetRepresentation (-3603) typedef resqml22__PointSetRepresentation _resqml22__PointSetRepresentation; #endif -/* eml2_3ForGsoap.h:111397 */ +/* eml2_3ForGsoap.h:111356 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__PolylineRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__PolylineRepresentation (-3604) typedef resqml22__PolylineRepresentation _resqml22__PolylineRepresentation; #endif -/* eml2_3ForGsoap.h:111400 */ +/* eml2_3ForGsoap.h:111359 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__PolylineSetRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__PolylineSetRepresentation (-3605) typedef resqml22__PolylineSetRepresentation _resqml22__PolylineSetRepresentation; #endif -/* eml2_3ForGsoap.h:111403 */ +/* eml2_3ForGsoap.h:111362 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__SealedSurfaceFrameworkRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__SealedSurfaceFrameworkRepresentation (-3606) typedef resqml22__SealedSurfaceFrameworkRepresentation _resqml22__SealedSurfaceFrameworkRepresentation; #endif -/* eml2_3ForGsoap.h:111406 */ +/* eml2_3ForGsoap.h:111365 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__SealedVolumeFrameworkRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__SealedVolumeFrameworkRepresentation (-3607) typedef resqml22__SealedVolumeFrameworkRepresentation _resqml22__SealedVolumeFrameworkRepresentation; #endif -/* eml2_3ForGsoap.h:111409 */ +/* eml2_3ForGsoap.h:111368 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__TriangulatedSetRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__TriangulatedSetRepresentation (-3608) typedef resqml22__TriangulatedSetRepresentation _resqml22__TriangulatedSetRepresentation; #endif -/* eml2_3ForGsoap.h:111412 */ +/* eml2_3ForGsoap.h:111371 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeatureInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__BoundaryFeatureInterpretation (-3609) typedef resqml22__BoundaryFeatureInterpretation _resqml22__BoundaryFeatureInterpretation; #endif -/* eml2_3ForGsoap.h:111415 */ +/* eml2_3ForGsoap.h:111374 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__EarthModelInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__EarthModelInterpretation (-3610) typedef resqml22__EarthModelInterpretation _resqml22__EarthModelInterpretation; #endif -/* eml2_3ForGsoap.h:111418 */ +/* eml2_3ForGsoap.h:111377 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__FaultInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__FaultInterpretation (-3611) typedef resqml22__FaultInterpretation _resqml22__FaultInterpretation; #endif -/* eml2_3ForGsoap.h:111421 */ +/* eml2_3ForGsoap.h:111380 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__FluidBoundaryInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__FluidBoundaryInterpretation (-3612) typedef resqml22__FluidBoundaryInterpretation _resqml22__FluidBoundaryInterpretation; #endif -/* eml2_3ForGsoap.h:111424 */ +/* eml2_3ForGsoap.h:111383 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GenericFeatureInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GenericFeatureInterpretation (-3613) typedef resqml22__GenericFeatureInterpretation _resqml22__GenericFeatureInterpretation; #endif -/* eml2_3ForGsoap.h:111427 */ +/* eml2_3ForGsoap.h:111386 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GeobodyBoundaryInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GeobodyBoundaryInterpretation (-3614) typedef resqml22__GeobodyBoundaryInterpretation _resqml22__GeobodyBoundaryInterpretation; #endif -/* eml2_3ForGsoap.h:111430 */ +/* eml2_3ForGsoap.h:111389 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GeobodyInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GeobodyInterpretation (-3615) typedef resqml22__GeobodyInterpretation _resqml22__GeobodyInterpretation; #endif -/* eml2_3ForGsoap.h:111433 */ +/* eml2_3ForGsoap.h:111392 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GeologicUnitInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GeologicUnitInterpretation (-3616) typedef resqml22__GeologicUnitInterpretation _resqml22__GeologicUnitInterpretation; #endif -/* eml2_3ForGsoap.h:111436 */ +/* eml2_3ForGsoap.h:111395 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GeologicUnitOccurrenceInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GeologicUnitOccurrenceInterpretation (-3617) typedef resqml22__GeologicUnitOccurrenceInterpretation _resqml22__GeologicUnitOccurrenceInterpretation; #endif -/* eml2_3ForGsoap.h:111439 */ +/* eml2_3ForGsoap.h:111398 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__HorizonInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__HorizonInterpretation (-3618) typedef resqml22__HorizonInterpretation _resqml22__HorizonInterpretation; #endif -/* eml2_3ForGsoap.h:111442 */ +/* eml2_3ForGsoap.h:111401 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__RockFluidOrganizationInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__RockFluidOrganizationInterpretation (-3619) typedef resqml22__RockFluidOrganizationInterpretation _resqml22__RockFluidOrganizationInterpretation; #endif -/* eml2_3ForGsoap.h:111445 */ +/* eml2_3ForGsoap.h:111404 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__RockFluidUnitInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__RockFluidUnitInterpretation (-3620) typedef resqml22__RockFluidUnitInterpretation _resqml22__RockFluidUnitInterpretation; #endif -/* eml2_3ForGsoap.h:111448 */ +/* eml2_3ForGsoap.h:111407 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__StratigraphicColumn #define SOAP_TYPE_gsoap_eml2_3__resqml22__StratigraphicColumn (-3621) typedef resqml22__StratigraphicColumn _resqml22__StratigraphicColumn; #endif -/* eml2_3ForGsoap.h:111451 */ +/* eml2_3ForGsoap.h:111410 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__StratigraphicColumnRankInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__StratigraphicColumnRankInterpretation (-3622) typedef resqml22__StratigraphicColumnRankInterpretation _resqml22__StratigraphicColumnRankInterpretation; #endif -/* eml2_3ForGsoap.h:111454 */ +/* eml2_3ForGsoap.h:111413 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__StratigraphicUnitInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__StratigraphicUnitInterpretation (-3623) typedef resqml22__StratigraphicUnitInterpretation _resqml22__StratigraphicUnitInterpretation; #endif -/* eml2_3ForGsoap.h:111457 */ +/* eml2_3ForGsoap.h:111416 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__StructuralOrganizationInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__StructuralOrganizationInterpretation (-3624) typedef resqml22__StructuralOrganizationInterpretation _resqml22__StructuralOrganizationInterpretation; #endif -/* eml2_3ForGsoap.h:111460 */ +/* eml2_3ForGsoap.h:111419 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__RepresentationIdentitySet #define SOAP_TYPE_gsoap_eml2_3__resqml22__RepresentationIdentitySet (-3625) typedef resqml22__RepresentationIdentitySet _resqml22__RepresentationIdentitySet; #endif -/* eml2_3ForGsoap.h:111463 */ +/* eml2_3ForGsoap.h:111422 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__RepresentationSetRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__RepresentationSetRepresentation (-3626) typedef resqml22__RepresentationSetRepresentation _resqml22__RepresentationSetRepresentation; #endif -/* eml2_3ForGsoap.h:111466 */ +/* eml2_3ForGsoap.h:111425 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__SubRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__SubRepresentation (-3627) typedef resqml22__SubRepresentation _resqml22__SubRepresentation; #endif -/* eml2_3ForGsoap.h:111469 */ +/* eml2_3ForGsoap.h:111428 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GpGridRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GpGridRepresentation (-3628) typedef resqml22__GpGridRepresentation _resqml22__GpGridRepresentation; #endif -/* eml2_3ForGsoap.h:111472 */ +/* eml2_3ForGsoap.h:111431 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__Grid2dRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__Grid2dRepresentation (-3629) typedef resqml22__Grid2dRepresentation _resqml22__Grid2dRepresentation; #endif -/* eml2_3ForGsoap.h:111475 */ +/* eml2_3ForGsoap.h:111434 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__GridConnectionSetRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__GridConnectionSetRepresentation (-3630) typedef resqml22__GridConnectionSetRepresentation _resqml22__GridConnectionSetRepresentation; #endif -/* eml2_3ForGsoap.h:111478 */ +/* eml2_3ForGsoap.h:111437 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__IjkGridRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__IjkGridRepresentation (-3631) typedef resqml22__IjkGridRepresentation _resqml22__IjkGridRepresentation; #endif -/* eml2_3ForGsoap.h:111481 */ +/* eml2_3ForGsoap.h:111440 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__LocalGridSet #define SOAP_TYPE_gsoap_eml2_3__resqml22__LocalGridSet (-3632) typedef resqml22__LocalGridSet _resqml22__LocalGridSet; #endif -/* eml2_3ForGsoap.h:111484 */ +/* eml2_3ForGsoap.h:111443 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__TruncatedIjkGridRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__TruncatedIjkGridRepresentation (-3633) typedef resqml22__TruncatedIjkGridRepresentation _resqml22__TruncatedIjkGridRepresentation; #endif -/* eml2_3ForGsoap.h:111487 */ +/* eml2_3ForGsoap.h:111446 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__TruncatedUnstructuredColumnLayerGridRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__TruncatedUnstructuredColumnLayerGridRepresentation (-3634) typedef resqml22__TruncatedUnstructuredColumnLayerGridRepresentation _resqml22__TruncatedUnstructuredColumnLayerGridRepresentation; #endif -/* eml2_3ForGsoap.h:111490 */ +/* eml2_3ForGsoap.h:111449 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__UnstructuredColumnLayerGridRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__UnstructuredColumnLayerGridRepresentation (-3635) typedef resqml22__UnstructuredColumnLayerGridRepresentation _resqml22__UnstructuredColumnLayerGridRepresentation; #endif -/* eml2_3ForGsoap.h:111493 */ +/* eml2_3ForGsoap.h:111452 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__UnstructuredGridRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__UnstructuredGridRepresentation (-3636) typedef resqml22__UnstructuredGridRepresentation _resqml22__UnstructuredGridRepresentation; #endif -/* eml2_3ForGsoap.h:111496 */ +/* eml2_3ForGsoap.h:111455 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__ColorMapDictionary #define SOAP_TYPE_gsoap_eml2_3__resqml22__ColorMapDictionary (-3637) typedef resqml22__ColorMapDictionary _resqml22__ColorMapDictionary; #endif -/* eml2_3ForGsoap.h:111499 */ +/* eml2_3ForGsoap.h:111458 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__ContinuousColorMap #define SOAP_TYPE_gsoap_eml2_3__resqml22__ContinuousColorMap (-3638) typedef resqml22__ContinuousColorMap _resqml22__ContinuousColorMap; #endif -/* eml2_3ForGsoap.h:111502 */ +/* eml2_3ForGsoap.h:111461 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__DiscreteColorMap #define SOAP_TYPE_gsoap_eml2_3__resqml22__DiscreteColorMap (-3639) typedef resqml22__DiscreteColorMap _resqml22__DiscreteColorMap; #endif -/* eml2_3ForGsoap.h:111505 */ +/* eml2_3ForGsoap.h:111464 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__BooleanProperty #define SOAP_TYPE_gsoap_eml2_3__resqml22__BooleanProperty (-3640) typedef resqml22__BooleanProperty _resqml22__BooleanProperty; #endif -/* eml2_3ForGsoap.h:111508 */ +/* eml2_3ForGsoap.h:111467 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__CommentProperty #define SOAP_TYPE_gsoap_eml2_3__resqml22__CommentProperty (-3641) typedef resqml22__CommentProperty _resqml22__CommentProperty; #endif -/* eml2_3ForGsoap.h:111511 */ +/* eml2_3ForGsoap.h:111470 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__ContinuousProperty #define SOAP_TYPE_gsoap_eml2_3__resqml22__ContinuousProperty (-3642) typedef resqml22__ContinuousProperty _resqml22__ContinuousProperty; #endif -/* eml2_3ForGsoap.h:111514 */ +/* eml2_3ForGsoap.h:111473 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__DiscreteProperty #define SOAP_TYPE_gsoap_eml2_3__resqml22__DiscreteProperty (-3643) typedef resqml22__DiscreteProperty _resqml22__DiscreteProperty; #endif -/* eml2_3ForGsoap.h:111517 */ +/* eml2_3ForGsoap.h:111476 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__PointsProperty #define SOAP_TYPE_gsoap_eml2_3__resqml22__PointsProperty (-3644) typedef resqml22__PointsProperty _resqml22__PointsProperty; #endif -/* eml2_3ForGsoap.h:111520 */ +/* eml2_3ForGsoap.h:111479 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__StreamlinesFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__StreamlinesFeature (-3645) typedef resqml22__StreamlinesFeature _resqml22__StreamlinesFeature; #endif -/* eml2_3ForGsoap.h:111523 */ +/* eml2_3ForGsoap.h:111482 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__StreamlinesRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__StreamlinesRepresentation (-3646) typedef resqml22__StreamlinesRepresentation _resqml22__StreamlinesRepresentation; #endif -/* eml2_3ForGsoap.h:111526 */ +/* eml2_3ForGsoap.h:111485 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__BlockedWellboreRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__BlockedWellboreRepresentation (-3647) typedef resqml22__BlockedWellboreRepresentation _resqml22__BlockedWellboreRepresentation; #endif -/* eml2_3ForGsoap.h:111529 */ +/* eml2_3ForGsoap.h:111488 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__SeismicWellboreFrameRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__SeismicWellboreFrameRepresentation (-3648) typedef resqml22__SeismicWellboreFrameRepresentation _resqml22__SeismicWellboreFrameRepresentation; #endif -/* eml2_3ForGsoap.h:111532 */ +/* eml2_3ForGsoap.h:111491 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreFeature #define SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreFeature (-3649) typedef resqml22__WellboreFeature _resqml22__WellboreFeature; #endif -/* eml2_3ForGsoap.h:111535 */ +/* eml2_3ForGsoap.h:111494 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreFrameRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreFrameRepresentation (-3650) typedef resqml22__WellboreFrameRepresentation _resqml22__WellboreFrameRepresentation; #endif -/* eml2_3ForGsoap.h:111538 */ +/* eml2_3ForGsoap.h:111497 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreInterpretation #define SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreInterpretation (-3651) typedef resqml22__WellboreInterpretation _resqml22__WellboreInterpretation; #endif -/* eml2_3ForGsoap.h:111541 */ +/* eml2_3ForGsoap.h:111500 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreIntervalSet #define SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreIntervalSet (-3652) typedef resqml22__WellboreIntervalSet _resqml22__WellboreIntervalSet; #endif -/* eml2_3ForGsoap.h:111544 */ +/* eml2_3ForGsoap.h:111503 */ #ifndef SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreTrajectoryRepresentation #define SOAP_TYPE_gsoap_eml2_3__resqml22__WellboreTrajectoryRepresentation (-3653) @@ -79499,9 +79632,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__CalendarYear has binding name 'prodml22__CalendarYear' for type 'prodml22:CalendarYear' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarYear (-1743) +/* prodml23__CalendarYear has binding name 'prodml23__CalendarYear' for type 'prodml23:CalendarYear' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarYear (-1743) #endif @@ -79541,9 +79674,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__NonNegativeFraction has binding name 'prodml22__NonNegativeFraction' for type 'prodml22:NonNegativeFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonNegativeFraction (-1745) +/* prodml23__NonNegativeFraction has binding name 'prodml23__NonNegativeFraction' for type 'prodml23:NonNegativeFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonNegativeFraction (-1745) #endif @@ -79817,417 +79950,417 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__TimeSeriesKeyword has binding name 'prodml22__TimeSeriesKeyword' for type 'prodml22:TimeSeriesKeyword' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesKeyword (-2185) +/* prodml23__TimeSeriesKeyword has binding name 'prodml23__TimeSeriesKeyword' for type 'prodml23:TimeSeriesKeyword' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesKeyword (-2185) #endif -/* prodml22__EndpointQualifierInterval has binding name 'prodml22__EndpointQualifierInterval' for type 'prodml22:EndpointQualifierInterval' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifierInterval (-2184) +/* prodml23__EndpointQualifierInterval has binding name 'prodml23__EndpointQualifierInterval' for type 'prodml23:EndpointQualifierInterval' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifierInterval (-2184) #endif -/* prodml22__WellOperationMethod has binding name 'prodml22__WellOperationMethod' for type 'prodml22:WellOperationMethod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellOperationMethod (-2183) +/* prodml23__WellOperationMethod has binding name 'prodml23__WellOperationMethod' for type 'prodml23:WellOperationMethod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellOperationMethod (-2183) #endif -/* prodml22__FluidComponentBasis has binding name 'prodml22__FluidComponentBasis' for type 'prodml22:FluidComponentBasis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentBasis (-2182) +/* prodml23__FluidComponentBasis has binding name 'prodml23__FluidComponentBasis' for type 'prodml23:FluidComponentBasis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentBasis (-2182) #endif -/* prodml22__CalculationMethod has binding name 'prodml22__CalculationMethod' for type 'prodml22:CalculationMethod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalculationMethod (-2181) +/* prodml23__CalculationMethod has binding name 'prodml23__CalculationMethod' for type 'prodml23:CalculationMethod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalculationMethod (-2181) #endif -/* prodml22__BalanceFlowPart has binding name 'prodml22__BalanceFlowPart' for type 'prodml22:BalanceFlowPart' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceFlowPart (-2180) +/* prodml23__BalanceFlowPart has binding name 'prodml23__BalanceFlowPart' for type 'prodml23:BalanceFlowPart' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceFlowPart (-2180) #endif -/* prodml22__BalanceEventKind has binding name 'prodml22__BalanceEventKind' for type 'prodml22:BalanceEventKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceEventKind (-2179) +/* prodml23__BalanceEventKind has binding name 'prodml23__BalanceEventKind' for type 'prodml23:BalanceEventKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceEventKind (-2179) #endif -/* prodml22__BalanceDestinationType has binding name 'prodml22__BalanceDestinationType' for type 'prodml22:BalanceDestinationType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BalanceDestinationType (-2178) +/* prodml23__BalanceDestinationType has binding name 'prodml23__BalanceDestinationType' for type 'prodml23:BalanceDestinationType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BalanceDestinationType (-2178) #endif -/* prodml22__SampleAction has binding name 'prodml22__SampleAction' for type 'prodml22:SampleAction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleAction (-2177) +/* prodml23__SampleAction has binding name 'prodml23__SampleAction' for type 'prodml23:SampleAction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleAction (-2177) #endif -/* prodml22__FluidSampleKind has binding name 'prodml22__FluidSampleKind' for type 'prodml22:FluidSampleKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKind (-2176) +/* prodml23__FluidSampleKind has binding name 'prodml23__FluidSampleKind' for type 'prodml23:FluidSampleKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKind (-2176) #endif -/* prodml22__WellboreStorageMechanismType has binding name 'prodml22__WellboreStorageMechanismType' for type 'prodml22:WellboreStorageMechanismType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageMechanismType (-2175) +/* prodml23__WellboreStorageMechanismType has binding name 'prodml23__WellboreStorageMechanismType' for type 'prodml23:WellboreStorageMechanismType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageMechanismType (-2175) #endif -/* prodml22__UpperBoundaryType has binding name 'prodml22__UpperBoundaryType' for type 'prodml22:UpperBoundaryType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__UpperBoundaryType (-2174) +/* prodml23__UpperBoundaryType has binding name 'prodml23__UpperBoundaryType' for type 'prodml23:UpperBoundaryType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__UpperBoundaryType (-2174) #endif -/* prodml22__ParameterDirection has binding name 'prodml22__ParameterDirection' for type 'prodml22:ParameterDirection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ParameterDirection (-2173) +/* prodml23__ParameterDirection has binding name 'prodml23__ParameterDirection' for type 'prodml23:ParameterDirection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ParameterDirection (-2173) #endif -/* prodml22__LowerBoundaryType has binding name 'prodml22__LowerBoundaryType' for type 'prodml22:LowerBoundaryType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LowerBoundaryType (-2172) +/* prodml23__LowerBoundaryType has binding name 'prodml23__LowerBoundaryType' for type 'prodml23:LowerBoundaryType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LowerBoundaryType (-2172) #endif -/* prodml22__FractureModelType has binding name 'prodml22__FractureModelType' for type 'prodml22:FractureModelType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureModelType (-2171) +/* prodml23__FractureModelType has binding name 'prodml23__FractureModelType' for type 'prodml23:FractureModelType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureModelType (-2171) #endif -/* prodml22__Boundary4Type has binding name 'prodml22__Boundary4Type' for type 'prodml22:Boundary4Type' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary4Type (-2170) +/* prodml23__Boundary4Type has binding name 'prodml23__Boundary4Type' for type 'prodml23:Boundary4Type' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary4Type (-2170) #endif -/* prodml22__Boundary3Type has binding name 'prodml22__Boundary3Type' for type 'prodml22:Boundary3Type' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary3Type (-2169) +/* prodml23__Boundary3Type has binding name 'prodml23__Boundary3Type' for type 'prodml23:Boundary3Type' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary3Type (-2169) #endif -/* prodml22__Boundary2Type has binding name 'prodml22__Boundary2Type' for type 'prodml22:Boundary2Type' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary2Type (-2168) +/* prodml23__Boundary2Type has binding name 'prodml23__Boundary2Type' for type 'prodml23:Boundary2Type' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary2Type (-2168) #endif -/* prodml22__Boundary1Type has binding name 'prodml22__Boundary1Type' for type 'prodml22:Boundary1Type' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Boundary1Type (-2167) +/* prodml23__Boundary1Type has binding name 'prodml23__Boundary1Type' for type 'prodml23:Boundary1Type' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Boundary1Type (-2167) #endif -/* prodml22__TimeNonLinearTransformKind has binding name 'prodml22__TimeNonLinearTransformKind' for type 'prodml22:TimeNonLinearTransformKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeNonLinearTransformKind (-2166) +/* prodml23__TimeNonLinearTransformKind has binding name 'prodml23__TimeNonLinearTransformKind' for type 'prodml23:TimeNonLinearTransformKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeNonLinearTransformKind (-2166) #endif -/* prodml22__PseudoPressureEffectApplied has binding name 'prodml22__PseudoPressureEffectApplied' for type 'prodml22:PseudoPressureEffectApplied' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoPressureEffectApplied (-2165) +/* prodml23__PseudoPressureEffectApplied has binding name 'prodml23__PseudoPressureEffectApplied' for type 'prodml23:PseudoPressureEffectApplied' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoPressureEffectApplied (-2165) #endif -/* prodml22__PressureNonLinearTransformKind has binding name 'prodml22__PressureNonLinearTransformKind' for type 'prodml22:PressureNonLinearTransformKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureNonLinearTransformKind (-2164) +/* prodml23__PressureNonLinearTransformKind has binding name 'prodml23__PressureNonLinearTransformKind' for type 'prodml23:PressureNonLinearTransformKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureNonLinearTransformKind (-2164) #endif -/* prodml22__LogLogTimeTransform has binding name 'prodml22__LogLogTimeTransform' for type 'prodml22:LogLogTimeTransform' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogTimeTransform (-2163) +/* prodml23__LogLogTimeTransform has binding name 'prodml23__LogLogTimeTransform' for type 'prodml23:LogLogTimeTransform' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogTimeTransform (-2163) #endif -/* prodml22__LogLogPressureTransform has binding name 'prodml22__LogLogPressureTransform' for type 'prodml22:LogLogPressureTransform' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogPressureTransform (-2162) +/* prodml23__LogLogPressureTransform has binding name 'prodml23__LogLogPressureTransform' for type 'prodml23:LogLogPressureTransform' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogPressureTransform (-2162) #endif -/* prodml22__FluidPhaseKind has binding name 'prodml22__FluidPhaseKind' for type 'prodml22:FluidPhaseKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseKind (-2161) +/* prodml23__FluidPhaseKind has binding name 'prodml23__FluidPhaseKind' for type 'prodml23:FluidPhaseKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseKind (-2161) #endif -/* prodml22__TimeSeriesPointRepresentation has binding name 'prodml22__TimeSeriesPointRepresentation' for type 'prodml22:TimeSeriesPointRepresentation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesPointRepresentation (-2160) +/* prodml23__TimeSeriesPointRepresentation has binding name 'prodml23__TimeSeriesPointRepresentation' for type 'prodml23:TimeSeriesPointRepresentation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesPointRepresentation (-2160) #endif -/* prodml22__TestPeriodKind has binding name 'prodml22__TestPeriodKind' for type 'prodml22:TestPeriodKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodKind (-2159) +/* prodml23__TestPeriodKind has binding name 'prodml23__TestPeriodKind' for type 'prodml23:TestPeriodKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodKind (-2159) #endif -/* prodml22__FluidPhaseMeasuredKind has binding name 'prodml22__FluidPhaseMeasuredKind' for type 'prodml22:FluidPhaseMeasuredKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidPhaseMeasuredKind (-2158) +/* prodml23__FluidPhaseMeasuredKind has binding name 'prodml23__FluidPhaseMeasuredKind' for type 'prodml23:FluidPhaseMeasuredKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidPhaseMeasuredKind (-2158) #endif -/* prodml22__DataConditioning has binding name 'prodml22__DataConditioning' for type 'prodml22:DataConditioning' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioning (-2157) +/* prodml23__DataConditioning has binding name 'prodml23__DataConditioning' for type 'prodml23:DataConditioning' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioning (-2157) #endif -/* prodml22__ReservoirLifeCycleState has binding name 'prodml22__ReservoirLifeCycleState' for type 'prodml22:ReservoirLifeCycleState' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirLifeCycleState (-2156) +/* prodml23__ReservoirLifeCycleState has binding name 'prodml23__ReservoirLifeCycleState' for type 'prodml23:ReservoirLifeCycleState' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirLifeCycleState (-2156) #endif -/* prodml22__PhasePresent has binding name 'prodml22__PhasePresent' for type 'prodml22:PhasePresent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhasePresent (-2155) +/* prodml23__PhasePresent has binding name 'prodml23__PhasePresent' for type 'prodml23:PhasePresent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhasePresent (-2155) #endif -/* prodml22__VolumeReferenceKind has binding name 'prodml22__VolumeReferenceKind' for type 'prodml22:VolumeReferenceKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKind (-2154) +/* prodml23__VolumeReferenceKind has binding name 'prodml23__VolumeReferenceKind' for type 'prodml23:VolumeReferenceKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKind (-2154) #endif -/* prodml22__ThermodynamicPhase has binding name 'prodml22__ThermodynamicPhase' for type 'prodml22:ThermodynamicPhase' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ThermodynamicPhase (-2153) +/* prodml23__ThermodynamicPhase has binding name 'prodml23__ThermodynamicPhase' for type 'prodml23:ThermodynamicPhase' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ThermodynamicPhase (-2153) #endif -/* prodml22__SampleQuality has binding name 'prodml22__SampleQuality' for type 'prodml22:SampleQuality' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleQuality (-2152) +/* prodml23__SampleQuality has binding name 'prodml23__SampleQuality' for type 'prodml23:SampleQuality' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleQuality (-2152) #endif -/* prodml22__OrganicAcidKind has binding name 'prodml22__OrganicAcidKind' for type 'prodml22:OrganicAcidKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKind (-2151) +/* prodml23__OrganicAcidKind has binding name 'prodml23__OrganicAcidKind' for type 'prodml23:OrganicAcidKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKind (-2151) #endif -/* prodml22__FluidContaminant has binding name 'prodml22__FluidContaminant' for type 'prodml22:FluidContaminant' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidContaminant (-2150) +/* prodml23__FluidContaminant has binding name 'prodml23__FluidContaminant' for type 'prodml23:FluidContaminant' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidContaminant (-2150) #endif -/* prodml22__FluidAnalysisStepCondition has binding name 'prodml22__FluidAnalysisStepCondition' for type 'prodml22:FluidAnalysisStepCondition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisStepCondition (-2149) +/* prodml23__FluidAnalysisStepCondition has binding name 'prodml23__FluidAnalysisStepCondition' for type 'prodml23:FluidAnalysisStepCondition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisStepCondition (-2149) #endif -/* prodml22__DetectableLimitRelativeStateKind has binding name 'prodml22__DetectableLimitRelativeStateKind' for type 'prodml22:DetectableLimitRelativeStateKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DetectableLimitRelativeStateKind (-2148) +/* prodml23__DetectableLimitRelativeStateKind has binding name 'prodml23__DetectableLimitRelativeStateKind' for type 'prodml23:DetectableLimitRelativeStateKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DetectableLimitRelativeStateKind (-2148) #endif -/* prodml22__CompressibilityKind has binding name 'prodml22__CompressibilityKind' for type 'prodml22:CompressibilityKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityKind (-2147) +/* prodml23__CompressibilityKind has binding name 'prodml23__CompressibilityKind' for type 'prodml23:CompressibilityKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityKind (-2147) #endif -/* prodml22__CationKind has binding name 'prodml22__CationKind' for type 'prodml22:CationKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CationKind (-2146) +/* prodml23__CationKind has binding name 'prodml23__CationKind' for type 'prodml23:CationKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CationKind (-2146) #endif -/* prodml22__AnionKind has binding name 'prodml22__AnionKind' for type 'prodml22:AnionKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKind (-2145) +/* prodml23__AnionKind has binding name 'prodml23__AnionKind' for type 'prodml23:AnionKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKind (-2145) #endif -/* prodml22__WellFluid has binding name 'prodml22__WellFluid' for type 'prodml22:WellFluid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellFluid (-2144) +/* prodml23__WellFluid has binding name 'prodml23__WellFluid' for type 'prodml23:WellFluid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellFluid (-2144) #endif -/* prodml22__WellDirection has binding name 'prodml22__WellDirection' for type 'prodml22:WellDirection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellDirection (-2143) +/* prodml23__WellDirection has binding name 'prodml23__WellDirection' for type 'prodml23:WellDirection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellDirection (-2143) #endif -/* prodml22__ValueStatus has binding name 'prodml22__ValueStatus' for type 'prodml22:ValueStatus' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ValueStatus (-2142) +/* prodml23__ValueStatus has binding name 'prodml23__ValueStatus' for type 'prodml23:ValueStatus' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ValueStatus (-2142) #endif -/* prodml22__SulfurComponentKind has binding name 'prodml22__SulfurComponentKind' for type 'prodml22:SulfurComponentKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKind (-2141) +/* prodml23__SulfurComponentKind has binding name 'prodml23__SulfurComponentKind' for type 'prodml23:SulfurComponentKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKind (-2141) #endif -/* prodml22__ServiceFluidKind has binding name 'prodml22__ServiceFluidKind' for type 'prodml22:ServiceFluidKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKind (-2140) +/* prodml23__ServiceFluidKind has binding name 'prodml23__ServiceFluidKind' for type 'prodml23:ServiceFluidKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKind (-2140) #endif -/* prodml22__SaturationPointKind has binding name 'prodml22__SaturationPointKind' for type 'prodml22:SaturationPointKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPointKind (-2139) +/* prodml23__SaturationPointKind has binding name 'prodml23__SaturationPointKind' for type 'prodml23:SaturationPointKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPointKind (-2139) #endif -/* prodml22__SafetyType has binding name 'prodml22__SafetyType' for type 'prodml22:SafetyType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SafetyType (-2138) +/* prodml23__SafetyType has binding name 'prodml23__SafetyType' for type 'prodml23:SafetyType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SafetyType (-2138) #endif -/* prodml22__ReservoirFluidKind has binding name 'prodml22__ReservoirFluidKind' for type 'prodml22:ReservoirFluidKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirFluidKind (-2137) +/* prodml23__ReservoirFluidKind has binding name 'prodml23__ReservoirFluidKind' for type 'prodml23:ReservoirFluidKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirFluidKind (-2137) #endif -/* prodml22__ReportingProduct has binding name 'prodml22__ReportingProduct' for type 'prodml22:ReportingProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingProduct (-2136) +/* prodml23__ReportingProduct has binding name 'prodml23__ReportingProduct' for type 'prodml23:ReportingProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingProduct (-2136) #endif -/* prodml22__ReportingFlow has binding name 'prodml22__ReportingFlow' for type 'prodml22:ReportingFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFlow (-2135) +/* prodml23__ReportingFlow has binding name 'prodml23__ReportingFlow' for type 'prodml23:ReportingFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFlow (-2135) #endif -/* prodml22__ReportingFacility has binding name 'prodml22__ReportingFacility' for type 'prodml22:ReportingFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacility (-2134) +/* prodml23__ReportingFacility has binding name 'prodml23__ReportingFacility' for type 'prodml23:ReportingFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacility (-2134) #endif -/* prodml22__ReportingEntityKind has binding name 'prodml22__ReportingEntityKind' for type 'prodml22:ReportingEntityKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntityKind (-2133) +/* prodml23__ReportingEntityKind has binding name 'prodml23__ReportingEntityKind' for type 'prodml23:ReportingEntityKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntityKind (-2133) #endif -/* prodml22__ReportingDurationKind has binding name 'prodml22__ReportingDurationKind' for type 'prodml22:ReportingDurationKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKind (-2132) +/* prodml23__ReportingDurationKind has binding name 'prodml23__ReportingDurationKind' for type 'prodml23:ReportingDurationKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKind (-2132) #endif -/* prodml22__PureComponentKind has binding name 'prodml22__PureComponentKind' for type 'prodml22:PureComponentKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKind (-2131) +/* prodml23__PureComponentKind has binding name 'prodml23__PureComponentKind' for type 'prodml23:PureComponentKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKind (-2131) #endif -/* prodml22__PseudoComponentKind has binding name 'prodml22__PseudoComponentKind' for type 'prodml22:PseudoComponentKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKind (-2130) +/* prodml23__PseudoComponentKind has binding name 'prodml23__PseudoComponentKind' for type 'prodml23:PseudoComponentKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKind (-2130) #endif -/* prodml22__ProductFluidKind has binding name 'prodml22__ProductFluidKind' for type 'prodml22:ProductFluidKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKind (-2129) +/* prodml23__ProductFluidKind has binding name 'prodml23__ProductFluidKind' for type 'prodml23:ProductFluidKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKind (-2129) #endif -/* prodml22__ProductFlowPortType has binding name 'prodml22__ProductFlowPortType' for type 'prodml22:ProductFlowPortType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPortType (-2128) +/* prodml23__ProductFlowPortType has binding name 'prodml23__ProductFlowPortType' for type 'prodml23:ProductFlowPortType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPortType (-2128) #endif -/* prodml22__PlusComponentKind has binding name 'prodml22__PlusComponentKind' for type 'prodml22:PlusComponentKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKind (-2127) +/* prodml23__PlusComponentKind has binding name 'prodml23__PlusComponentKind' for type 'prodml23:PlusComponentKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKind (-2127) #endif -/* prodml22__FlowSubQualifier has binding name 'prodml22__FlowSubQualifier' for type 'prodml22:FlowSubQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowSubQualifier (-2126) +/* prodml23__FlowSubQualifier has binding name 'prodml23__FlowSubQualifier' for type 'prodml23:FlowSubQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowSubQualifier (-2126) #endif -/* prodml22__FlowQualifier has binding name 'prodml22__FlowQualifier' for type 'prodml22:FlowQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowQualifier (-2125) +/* prodml23__FlowQualifier has binding name 'prodml23__FlowQualifier' for type 'prodml23:FlowQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowQualifier (-2125) #endif -/* prodml22__FiberMode has binding name 'prodml22__FiberMode' for type 'prodml22:FiberMode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FiberMode (-2124) +/* prodml23__FiberMode has binding name 'prodml23__FiberMode' for type 'prodml23:FiberMode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FiberMode (-2124) #endif -/* prodml22__FacilityParameter has binding name 'prodml22__FacilityParameter' for type 'prodml22:FacilityParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParameter (-2123) +/* prodml23__FacilityParameter has binding name 'prodml23__FacilityParameter' for type 'prodml23:FacilityParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParameter (-2123) #endif -/* prodml22__EndpointQualifier has binding name 'prodml22__EndpointQualifier' for type 'prodml22:EndpointQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifier (-2122) +/* prodml23__EndpointQualifier has binding name 'prodml23__EndpointQualifier' for type 'prodml23:EndpointQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifier (-2122) #endif -/* prodml22__BusinessUnitKind has binding name 'prodml22__BusinessUnitKind' for type 'prodml22:BusinessUnitKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BusinessUnitKind (-2121) +/* prodml23__BusinessUnitKind has binding name 'prodml23__BusinessUnitKind' for type 'prodml23:BusinessUnitKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BusinessUnitKind (-2121) #endif -/* prodml22__SaturationKind has binding name 'prodml22__SaturationKind' for type 'prodml22:SaturationKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationKind (-2120) +/* prodml23__SaturationKind has binding name 'prodml23__SaturationKind' for type 'prodml23:SaturationKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationKind (-2120) #endif -/* prodml22__PvtModelParameterKind has binding name 'prodml22__PvtModelParameterKind' for type 'prodml22:PvtModelParameterKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKind (-2119) +/* prodml23__PvtModelParameterKind has binding name 'prodml23__PvtModelParameterKind' for type 'prodml23:PvtModelParameterKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKind (-2119) #endif -/* prodml22__OutputFluidProperty has binding name 'prodml22__OutputFluidProperty' for type 'prodml22:OutputFluidProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidProperty (-2118) +/* prodml23__OutputFluidProperty has binding name 'prodml23__OutputFluidProperty' for type 'prodml23:OutputFluidProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidProperty (-2118) #endif -/* prodml22__MixingRule has binding name 'prodml22__MixingRule' for type 'prodml22:MixingRule' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MixingRule (-2117) +/* prodml23__MixingRule has binding name 'prodml23__MixingRule' for type 'prodml23:MixingRule' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MixingRule (-2117) #endif @@ -82751,135 +82884,135 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* _prodml22__TimeSeriesStatistic has binding name '_prodml22__TimeSeriesStatistic' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic -#define SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesStatistic (-3590) +/* _prodml23__TimeSeriesStatistic has binding name '_prodml23__TimeSeriesStatistic' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic +#define SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesStatistic (-3590) #endif -/* _prodml22__TimeSeriesData has binding name '_prodml22__TimeSeriesData' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData -#define SOAP_TYPE_gsoap_eml2_3__prodml22__TimeSeriesData (-3589) +/* _prodml23__TimeSeriesData has binding name '_prodml23__TimeSeriesData' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData +#define SOAP_TYPE_gsoap_eml2_3__prodml23__TimeSeriesData (-3589) #endif -/* _prodml22__ProductFlowModel has binding name '_prodml22__ProductFlowModel' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ProductFlowModel (-3588) +/* _prodml23__ProductFlowModel has binding name '_prodml23__ProductFlowModel' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ProductFlowModel (-3588) #endif -/* _prodml22__ProductVolume has binding name '_prodml22__ProductVolume' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ProductVolume (-3587) +/* _prodml23__ProductVolume has binding name '_prodml23__ProductVolume' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ProductVolume (-3587) #endif -/* _prodml22__FlowTestJob has binding name '_prodml22__FlowTestJob' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestJob (-3586) +/* _prodml23__FlowTestJob has binding name '_prodml23__FlowTestJob' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestJob (-3586) #endif -/* _prodml22__FluidSampleAcquisitionJob has binding name '_prodml22__FluidSampleAcquisitionJob' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleAcquisitionJob (-3585) +/* _prodml23__FluidSampleAcquisitionJob has binding name '_prodml23__FluidSampleAcquisitionJob' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleAcquisitionJob (-3585) #endif -/* _prodml22__FluidSampleContainer has binding name '_prodml22__FluidSampleContainer' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSampleContainer (-3584) +/* _prodml23__FluidSampleContainer has binding name '_prodml23__FluidSampleContainer' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSampleContainer (-3584) #endif -/* _prodml22__FluidSample has binding name '_prodml22__FluidSample' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSample (-3583) +/* _prodml23__FluidSample has binding name '_prodml23__FluidSample' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSample (-3583) #endif -/* _prodml22__PtaDeconvolution has binding name '_prodml22__PtaDeconvolution' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDeconvolution (-3582) +/* _prodml23__PtaDeconvolution has binding name '_prodml23__PtaDeconvolution' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDeconvolution (-3582) #endif -/* _prodml22__PtaDataPreProcess has binding name '_prodml22__PtaDataPreProcess' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PtaDataPreProcess (-3581) +/* _prodml23__PtaDataPreProcess has binding name '_prodml23__PtaDataPreProcess' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PtaDataPreProcess (-3581) #endif -/* _prodml22__PressureTransientAnalysis has binding name '_prodml22__PressureTransientAnalysis' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__PressureTransientAnalysis (-3580) +/* _prodml23__PressureTransientAnalysis has binding name '_prodml23__PressureTransientAnalysis' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__PressureTransientAnalysis (-3580) #endif -/* _prodml22__ReportingHierarchy has binding name '_prodml22__ReportingHierarchy' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingHierarchy (-3579) +/* _prodml23__ReportingHierarchy has binding name '_prodml23__ReportingHierarchy' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingHierarchy (-3579) #endif -/* _prodml22__ReportingEntity has binding name '_prodml22__ReportingEntity' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ReportingEntity (-3578) +/* _prodml23__ReportingEntity has binding name '_prodml23__ReportingEntity' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ReportingEntity (-3578) #endif -/* _prodml22__Facility has binding name '_prodml22__Facility' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__Facility -#define SOAP_TYPE_gsoap_eml2_3__prodml22__Facility (-3577) +/* _prodml23__Facility has binding name '_prodml23__Facility' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__Facility +#define SOAP_TYPE_gsoap_eml2_3__prodml23__Facility (-3577) #endif -/* _prodml22__FlowTestActivity has binding name '_prodml22__FlowTestActivity' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FlowTestActivity (-3576) +/* _prodml23__FlowTestActivity has binding name '_prodml23__FlowTestActivity' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FlowTestActivity (-3576) #endif -/* _prodml22__ChannelSet has binding name '_prodml22__ChannelSet' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet -#define SOAP_TYPE_gsoap_eml2_3__prodml22__ChannelSet (-3575) +/* _prodml23__ChannelSet has binding name '_prodml23__ChannelSet' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet +#define SOAP_TYPE_gsoap_eml2_3__prodml23__ChannelSet (-3575) #endif -/* _prodml22__Channel has binding name '_prodml22__Channel' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__Channel -#define SOAP_TYPE_gsoap_eml2_3__prodml22__Channel (-3574) +/* _prodml23__Channel has binding name '_prodml23__Channel' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__Channel +#define SOAP_TYPE_gsoap_eml2_3__prodml23__Channel (-3574) #endif -/* _prodml22__FluidSystem has binding name '_prodml22__FluidSystem' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidSystem (-3573) +/* _prodml23__FluidSystem has binding name '_prodml23__FluidSystem' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidSystem (-3573) #endif -/* _prodml22__WaterAnalysis has binding name '_prodml22__WaterAnalysis' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__WaterAnalysis (-3572) +/* _prodml23__WaterAnalysis has binding name '_prodml23__WaterAnalysis' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__WaterAnalysis (-3572) #endif -/* _prodml22__HydrocarbonAnalysis has binding name '_prodml22__HydrocarbonAnalysis' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__HydrocarbonAnalysis (-3571) +/* _prodml23__HydrocarbonAnalysis has binding name '_prodml23__HydrocarbonAnalysis' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__HydrocarbonAnalysis (-3571) #endif -/* _prodml22__FluidAnalysis has binding name '_prodml22__FluidAnalysis' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidAnalysis (-3570) +/* _prodml23__FluidAnalysis has binding name '_prodml23__FluidAnalysis' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidAnalysis (-3570) #endif -/* _prodml22__FluidCharacterization has binding name '_prodml22__FluidCharacterization' for type '' */ -#ifndef SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization -#define SOAP_TYPE_gsoap_eml2_3__prodml22__FluidCharacterization (-3569) +/* _prodml23__FluidCharacterization has binding name '_prodml23__FluidCharacterization' for type '' */ +#ifndef SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization +#define SOAP_TYPE_gsoap_eml2_3__prodml23__FluidCharacterization (-3569) #endif @@ -83303,9 +83436,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__CalendarMonth has binding name 'prodml22__CalendarMonth' for type 'prodml22:CalendarMonth' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalendarMonth (-1955) +/* prodml23__CalendarMonth has binding name 'prodml23__CalendarMonth' for type 'prodml23:CalendarMonth' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalendarMonth (-1955) #endif @@ -83381,9 +83514,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__ProdmlRelativeIdentifier has binding name 'prodml22__ProdmlRelativeIdentifier' for type 'prodml22:ProdmlRelativeIdentifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProdmlRelativeIdentifier (-1746) +/* prodml23__ProdmlRelativeIdentifier has binding name 'prodml23__ProdmlRelativeIdentifier' for type 'prodml23:ProdmlRelativeIdentifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProdmlRelativeIdentifier (-1746) #endif @@ -83459,105 +83592,105 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__FluidSampleKindExt has binding name 'prodml22__FluidSampleKindExt' for type 'prodml22:FluidSampleKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleKindExt (-1721) +/* prodml23__FluidSampleKindExt has binding name 'prodml23__FluidSampleKindExt' for type 'prodml23:FluidSampleKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleKindExt (-1721) #endif -/* prodml22__DataConditioningExt has binding name 'prodml22__DataConditioningExt' for type 'prodml22:DataConditioningExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DataConditioningExt (-1720) +/* prodml23__DataConditioningExt has binding name 'prodml23__DataConditioningExt' for type 'prodml23:DataConditioningExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DataConditioningExt (-1720) #endif -/* prodml22__VolumeReferenceKindExt has binding name 'prodml22__VolumeReferenceKindExt' for type 'prodml22:VolumeReferenceKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VolumeReferenceKindExt (-1719) +/* prodml23__VolumeReferenceKindExt has binding name 'prodml23__VolumeReferenceKindExt' for type 'prodml23:VolumeReferenceKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VolumeReferenceKindExt (-1719) #endif -/* prodml22__OrganicAcidKindExt has binding name 'prodml22__OrganicAcidKindExt' for type 'prodml22:OrganicAcidKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrganicAcidKindExt (-1718) +/* prodml23__OrganicAcidKindExt has binding name 'prodml23__OrganicAcidKindExt' for type 'prodml23:OrganicAcidKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrganicAcidKindExt (-1718) #endif -/* prodml22__CationKindExt has binding name 'prodml22__CationKindExt' for type 'prodml22:CationKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CationKindExt (-1717) +/* prodml23__CationKindExt has binding name 'prodml23__CationKindExt' for type 'prodml23:CationKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CationKindExt (-1717) #endif -/* prodml22__AnionKindExt has binding name 'prodml22__AnionKindExt' for type 'prodml22:AnionKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnionKindExt (-1716) +/* prodml23__AnionKindExt has binding name 'prodml23__AnionKindExt' for type 'prodml23:AnionKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnionKindExt (-1716) #endif -/* prodml22__SulfurComponentKindExt has binding name 'prodml22__SulfurComponentKindExt' for type 'prodml22:SulfurComponentKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurComponentKindExt (-1715) +/* prodml23__SulfurComponentKindExt has binding name 'prodml23__SulfurComponentKindExt' for type 'prodml23:SulfurComponentKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurComponentKindExt (-1715) #endif -/* prodml22__ServiceFluidKindExt has binding name 'prodml22__ServiceFluidKindExt' for type 'prodml22:ServiceFluidKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluidKindExt (-1714) +/* prodml23__ServiceFluidKindExt has binding name 'prodml23__ServiceFluidKindExt' for type 'prodml23:ServiceFluidKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluidKindExt (-1714) #endif -/* prodml22__ReportingFacilityExt has binding name 'prodml22__ReportingFacilityExt' for type 'prodml22:ReportingFacilityExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingFacilityExt (-1713) +/* prodml23__ReportingFacilityExt has binding name 'prodml23__ReportingFacilityExt' for type 'prodml23:ReportingFacilityExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingFacilityExt (-1713) #endif -/* prodml22__ReportingDurationKindExt has binding name 'prodml22__ReportingDurationKindExt' for type 'prodml22:ReportingDurationKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingDurationKindExt (-1712) +/* prodml23__ReportingDurationKindExt has binding name 'prodml23__ReportingDurationKindExt' for type 'prodml23:ReportingDurationKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingDurationKindExt (-1712) #endif -/* prodml22__PureComponentKindExt has binding name 'prodml22__PureComponentKindExt' for type 'prodml22:PureComponentKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureComponentKindExt (-1711) +/* prodml23__PureComponentKindExt has binding name 'prodml23__PureComponentKindExt' for type 'prodml23:PureComponentKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureComponentKindExt (-1711) #endif -/* prodml22__PseudoComponentKindExt has binding name 'prodml22__PseudoComponentKindExt' for type 'prodml22:PseudoComponentKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoComponentKindExt (-1710) +/* prodml23__PseudoComponentKindExt has binding name 'prodml23__PseudoComponentKindExt' for type 'prodml23:PseudoComponentKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoComponentKindExt (-1710) #endif -/* prodml22__ProductFluidKindExt has binding name 'prodml22__ProductFluidKindExt' for type 'prodml22:ProductFluidKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluidKindExt (-1709) +/* prodml23__ProductFluidKindExt has binding name 'prodml23__ProductFluidKindExt' for type 'prodml23:ProductFluidKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluidKindExt (-1709) #endif -/* prodml22__PlusComponentKindExt has binding name 'prodml22__PlusComponentKindExt' for type 'prodml22:PlusComponentKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusComponentKindExt (-1708) +/* prodml23__PlusComponentKindExt has binding name 'prodml23__PlusComponentKindExt' for type 'prodml23:PlusComponentKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusComponentKindExt (-1708) #endif -/* prodml22__FacilityKindExt has binding name 'prodml22__FacilityKindExt' for type 'prodml22:FacilityKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityKindExt (-1707) +/* prodml23__FacilityKindExt has binding name 'prodml23__FacilityKindExt' for type 'prodml23:FacilityKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityKindExt (-1707) #endif -/* prodml22__PvtModelParameterKindExt has binding name 'prodml22__PvtModelParameterKindExt' for type 'prodml22:PvtModelParameterKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterKindExt (-1706) +/* prodml23__PvtModelParameterKindExt has binding name 'prodml23__PvtModelParameterKindExt' for type 'prodml23:PvtModelParameterKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterKindExt (-1706) #endif -/* prodml22__OutputFluidPropertyExt has binding name 'prodml22__OutputFluidPropertyExt' for type 'prodml22:OutputFluidPropertyExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFluidPropertyExt (-1705) +/* prodml23__OutputFluidPropertyExt has binding name 'prodml23__OutputFluidPropertyExt' for type 'prodml23:OutputFluidPropertyExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFluidPropertyExt (-1705) #endif @@ -86183,2421 +86316,2421 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__TimeSeriesThreshold has binding name 'prodml22__TimeSeriesThreshold' for type 'prodml22:TimeSeriesThreshold' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesThreshold (-1267) +/* prodml23__TimeSeriesThreshold has binding name 'prodml23__TimeSeriesThreshold' for type 'prodml23:TimeSeriesThreshold' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesThreshold (-1267) #endif -/* prodml22__TimeSeriesStatistic has binding name 'prodml22__TimeSeriesStatistic' for type 'prodml22:TimeSeriesStatistic' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStatistic (-1266) +/* prodml23__TimeSeriesStatistic has binding name 'prodml23__TimeSeriesStatistic' for type 'prodml23:TimeSeriesStatistic' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStatistic (-1266) #endif -/* prodml22__KeywordValueStruct has binding name 'prodml22__KeywordValueStruct' for type 'prodml22:KeywordValueStruct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__KeywordValueStruct (-1265) +/* prodml23__KeywordValueStruct has binding name 'prodml23__KeywordValueStruct' for type 'prodml23:KeywordValueStruct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__KeywordValueStruct (-1265) #endif -/* prodml22__EndpointQuantity has binding name 'prodml22__EndpointQuantity' for type 'prodml22:EndpointQuantity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQuantity (-1264) +/* prodml23__EndpointQuantity has binding name 'prodml23__EndpointQuantity' for type 'prodml23:EndpointQuantity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQuantity (-1264) #endif -/* prodml22__EndpointDateTime has binding name 'prodml22__EndpointDateTime' for type 'prodml22:EndpointDateTime' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointDateTime (-1263) +/* prodml23__EndpointDateTime has binding name 'prodml23__EndpointDateTime' for type 'prodml23:EndpointDateTime' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointDateTime (-1263) #endif -/* prodml22__TimeSeriesStringSample has binding name 'prodml22__TimeSeriesStringSample' for type 'prodml22:TimeSeriesStringSample' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesStringSample (-1262) +/* prodml23__TimeSeriesStringSample has binding name 'prodml23__TimeSeriesStringSample' for type 'prodml23:TimeSeriesStringSample' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesStringSample (-1262) #endif -/* prodml22__TimeSeriesDoubleSample has binding name 'prodml22__TimeSeriesDoubleSample' for type 'prodml22:TimeSeriesDoubleSample' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesDoubleSample (-1261) +/* prodml23__TimeSeriesDoubleSample has binding name 'prodml23__TimeSeriesDoubleSample' for type 'prodml23:TimeSeriesDoubleSample' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesDoubleSample (-1261) #endif -/* prodml22__TimeSeriesData has binding name 'prodml22__TimeSeriesData' for type 'prodml22:TimeSeriesData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TimeSeriesData (-1260) +/* prodml23__TimeSeriesData has binding name 'prodml23__TimeSeriesData' for type 'prodml23:TimeSeriesData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TimeSeriesData (-1260) #endif -/* prodml22__StringValue has binding name 'prodml22__StringValue' for type 'prodml22:StringValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StringValue (-1259) +/* prodml23__StringValue has binding name 'prodml23__StringValue' for type 'prodml23:StringValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StringValue (-1259) #endif -/* prodml22__DoubleValue has binding name 'prodml22__DoubleValue' for type 'prodml22:DoubleValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DoubleValue (-1258) +/* prodml23__DoubleValue has binding name 'prodml23__DoubleValue' for type 'prodml23:DoubleValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DoubleValue (-1258) #endif -/* prodml22__AbstractValue has binding name 'prodml22__AbstractValue' for type 'prodml22:AbstractValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractValue (-1257) +/* prodml23__AbstractValue has binding name 'prodml23__AbstractValue' for type 'prodml23:AbstractValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractValue (-1257) #endif -/* prodml22__RelativeCoordinate has binding name 'prodml22__RelativeCoordinate' for type 'prodml22:RelativeCoordinate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeCoordinate (-1256) +/* prodml23__RelativeCoordinate has binding name 'prodml23__RelativeCoordinate' for type 'prodml23:RelativeCoordinate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeCoordinate (-1256) #endif -/* prodml22__Qualifier has binding name 'prodml22__Qualifier' for type 'prodml22:Qualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Qualifier (-1255) +/* prodml23__Qualifier has binding name 'prodml23__Qualifier' for type 'prodml23:Qualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Qualifier (-1255) #endif -/* prodml22__ProductFlowUnit has binding name 'prodml22__ProductFlowUnit' for type 'prodml22:ProductFlowUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowUnit (-1254) +/* prodml23__ProductFlowUnit has binding name 'prodml23__ProductFlowUnit' for type 'prodml23:ProductFlowUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowUnit (-1254) #endif -/* prodml22__ProductFlowQualifierExpected has binding name 'prodml22__ProductFlowQualifierExpected' for type 'prodml22:ProductFlowQualifierExpected' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowQualifierExpected (-1253) +/* prodml23__ProductFlowQualifierExpected has binding name 'prodml23__ProductFlowQualifierExpected' for type 'prodml23:ProductFlowQualifierExpected' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowQualifierExpected (-1253) #endif -/* prodml22__ProductFlowPort has binding name 'prodml22__ProductFlowPort' for type 'prodml22:ProductFlowPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowPort (-1252) +/* prodml23__ProductFlowPort has binding name 'prodml23__ProductFlowPort' for type 'prodml23:ProductFlowPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowPort (-1252) #endif -/* prodml22__ProductFlowNetworkPlan has binding name 'prodml22__ProductFlowNetworkPlan' for type 'prodml22:ProductFlowNetworkPlan' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetworkPlan (-1251) +/* prodml23__ProductFlowNetworkPlan has binding name 'prodml23__ProductFlowNetworkPlan' for type 'prodml23:ProductFlowNetworkPlan' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetworkPlan (-1251) #endif -/* prodml22__ProductFlowModel has binding name 'prodml22__ProductFlowModel' for type 'prodml22:ProductFlowModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowModel (-1250) +/* prodml23__ProductFlowModel has binding name 'prodml23__ProductFlowModel' for type 'prodml23:ProductFlowModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowModel (-1250) #endif -/* prodml22__ProductFlowExternalPort has binding name 'prodml22__ProductFlowExternalPort' for type 'prodml22:ProductFlowExternalPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalPort (-1249) +/* prodml23__ProductFlowExternalPort has binding name 'prodml23__ProductFlowExternalPort' for type 'prodml23:ProductFlowExternalPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalPort (-1249) #endif -/* prodml22__ProductFlowExpectedUnitProperty has binding name 'prodml22__ProductFlowExpectedUnitProperty' for type 'prodml22:ProductFlowExpectedUnitProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExpectedUnitProperty (-1248) +/* prodml23__ProductFlowExpectedUnitProperty has binding name 'prodml23__ProductFlowExpectedUnitProperty' for type 'prodml23:ProductFlowExpectedUnitProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExpectedUnitProperty (-1248) #endif -/* prodml22__ProductFlowChangeLog has binding name 'prodml22__ProductFlowChangeLog' for type 'prodml22:ProductFlowChangeLog' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowChangeLog (-1247) +/* prodml23__ProductFlowChangeLog has binding name 'prodml23__ProductFlowChangeLog' for type 'prodml23:ProductFlowChangeLog' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowChangeLog (-1247) #endif -/* prodml22__ExpectedFlowQualifier has binding name 'prodml22__ExpectedFlowQualifier' for type 'prodml22:ExpectedFlowQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ExpectedFlowQualifier (-1246) +/* prodml23__ExpectedFlowQualifier has binding name 'prodml23__ExpectedFlowQualifier' for type 'prodml23:ExpectedFlowQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ExpectedFlowQualifier (-1246) #endif -/* prodml22__ConnectedNode has binding name 'prodml22__ConnectedNode' for type 'prodml22:ConnectedNode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConnectedNode (-1245) +/* prodml23__ConnectedNode has binding name 'prodml23__ConnectedNode' for type 'prodml23:ConnectedNode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConnectedNode (-1245) #endif -/* prodml22__StringData has binding name 'prodml22__StringData' for type 'prodml22:StringData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StringData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StringData (-1244) +/* prodml23__StringData has binding name 'prodml23__StringData' for type 'prodml23:StringData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StringData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StringData (-1244) #endif -/* prodml22__ReferenceFlow has binding name 'prodml22__ReferenceFlow' for type 'prodml22:ReferenceFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceFlow (-1243) +/* prodml23__ReferenceFlow has binding name 'prodml23__ReferenceFlow' for type 'prodml23:ReferenceFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceFlow (-1243) #endif -/* prodml22__ProductVolumeRelatedFacility has binding name 'prodml22__ProductVolumeRelatedFacility' for type 'prodml22:ProductVolumeRelatedFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeRelatedFacility (-1242) +/* prodml23__ProductVolumeRelatedFacility has binding name 'prodml23__ProductVolumeRelatedFacility' for type 'prodml23:ProductVolumeRelatedFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeRelatedFacility (-1242) #endif -/* prodml22__ProductVolumeProduct has binding name 'prodml22__ProductVolumeProduct' for type 'prodml22:ProductVolumeProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeProduct (-1241) +/* prodml23__ProductVolumeProduct has binding name 'prodml23__ProductVolumeProduct' for type 'prodml23:ProductVolumeProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeProduct (-1241) #endif -/* prodml22__ProductVolumePortDifference has binding name 'prodml22__ProductVolumePortDifference' for type 'prodml22:ProductVolumePortDifference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePortDifference (-1240) +/* prodml23__ProductVolumePortDifference has binding name 'prodml23__ProductVolumePortDifference' for type 'prodml23:ProductVolumePortDifference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePortDifference (-1240) #endif -/* prodml22__ProductVolumePeriod has binding name 'prodml22__ProductVolumePeriod' for type 'prodml22:ProductVolumePeriod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumePeriod (-1239) +/* prodml23__ProductVolumePeriod has binding name 'prodml23__ProductVolumePeriod' for type 'prodml23:ProductVolumePeriod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumePeriod (-1239) #endif -/* prodml22__ProductVolumeParameterValue has binding name 'prodml22__ProductVolumeParameterValue' for type 'prodml22:ProductVolumeParameterValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterValue (-1238) +/* prodml23__ProductVolumeParameterValue has binding name 'prodml23__ProductVolumeParameterValue' for type 'prodml23:ProductVolumeParameterValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterValue (-1238) #endif -/* prodml22__ProductVolumeParameterSet has binding name 'prodml22__ProductVolumeParameterSet' for type 'prodml22:ProductVolumeParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeParameterSet (-1237) +/* prodml23__ProductVolumeParameterSet has binding name 'prodml23__ProductVolumeParameterSet' for type 'prodml23:ProductVolumeParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeParameterSet (-1237) #endif -/* prodml22__ProductVolumeFlow has binding name 'prodml22__ProductVolumeFlow' for type 'prodml22:ProductVolumeFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFlow (-1236) +/* prodml23__ProductVolumeFlow has binding name 'prodml23__ProductVolumeFlow' for type 'prodml23:ProductVolumeFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFlow (-1236) #endif -/* prodml22__ProductVolumeFacility has binding name 'prodml22__ProductVolumeFacility' for type 'prodml22:ProductVolumeFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeFacility (-1235) +/* prodml23__ProductVolumeFacility has binding name 'prodml23__ProductVolumeFacility' for type 'prodml23:ProductVolumeFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeFacility (-1235) #endif -/* prodml22__ProductVolumeDestination has binding name 'prodml22__ProductVolumeDestination' for type 'prodml22:ProductVolumeDestination' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeDestination (-1234) +/* prodml23__ProductVolumeDestination has binding name 'prodml23__ProductVolumeDestination' for type 'prodml23:ProductVolumeDestination' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeDestination (-1234) #endif -/* prodml22__ProductVolumeComponentContent has binding name 'prodml22__ProductVolumeComponentContent' for type 'prodml22:ProductVolumeComponentContent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeComponentContent (-1233) +/* prodml23__ProductVolumeComponentContent has binding name 'prodml23__ProductVolumeComponentContent' for type 'prodml23:ProductVolumeComponentContent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeComponentContent (-1233) #endif -/* prodml22__ProductVolumeBusinessUnit has binding name 'prodml22__ProductVolumeBusinessUnit' for type 'prodml22:ProductVolumeBusinessUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessUnit (-1232) +/* prodml23__ProductVolumeBusinessUnit has binding name 'prodml23__ProductVolumeBusinessUnit' for type 'prodml23:ProductVolumeBusinessUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessUnit (-1232) #endif -/* prodml22__ProductVolumeBusinessSubUnit has binding name 'prodml22__ProductVolumeBusinessSubUnit' for type 'prodml22:ProductVolumeBusinessSubUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBusinessSubUnit (-1231) +/* prodml23__ProductVolumeBusinessSubUnit has binding name 'prodml23__ProductVolumeBusinessSubUnit' for type 'prodml23:ProductVolumeBusinessSubUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBusinessSubUnit (-1231) #endif -/* prodml22__ProductVolumeBalanceSet has binding name 'prodml22__ProductVolumeBalanceSet' for type 'prodml22:ProductVolumeBalanceSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceSet (-1230) +/* prodml23__ProductVolumeBalanceSet has binding name 'prodml23__ProductVolumeBalanceSet' for type 'prodml23:ProductVolumeBalanceSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceSet (-1230) #endif -/* prodml22__ProductVolumeBalanceEvent has binding name 'prodml22__ProductVolumeBalanceEvent' for type 'prodml22:ProductVolumeBalanceEvent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceEvent (-1229) +/* prodml23__ProductVolumeBalanceEvent has binding name 'prodml23__ProductVolumeBalanceEvent' for type 'prodml23:ProductVolumeBalanceEvent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceEvent (-1229) #endif -/* prodml22__ProductVolumeBalanceDetail has binding name 'prodml22__ProductVolumeBalanceDetail' for type 'prodml22:ProductVolumeBalanceDetail' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeBalanceDetail (-1228) +/* prodml23__ProductVolumeBalanceDetail has binding name 'prodml23__ProductVolumeBalanceDetail' for type 'prodml23:ProductVolumeBalanceDetail' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeBalanceDetail (-1228) #endif -/* prodml22__ProductVolumeAlert has binding name 'prodml22__ProductVolumeAlert' for type 'prodml22:ProductVolumeAlert' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolumeAlert (-1227) +/* prodml23__ProductVolumeAlert has binding name 'prodml23__ProductVolumeAlert' for type 'prodml23:ProductVolumeAlert' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolumeAlert (-1227) #endif -/* prodml22__ProductVolume has binding name 'prodml22__ProductVolume' for type 'prodml22:ProductVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductVolume (-1226) +/* prodml23__ProductVolume has binding name 'prodml23__ProductVolume' for type 'prodml23:ProductVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductVolume (-1226) #endif -/* prodml22__Parentfacility has binding name 'prodml22__Parentfacility' for type 'prodml22:Parentfacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Parentfacility (-1225) +/* prodml23__Parentfacility has binding name 'prodml23__Parentfacility' for type 'prodml23:Parentfacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Parentfacility (-1225) #endif -/* prodml22__OwnershipBusinessAcct has binding name 'prodml22__OwnershipBusinessAcct' for type 'prodml22:OwnershipBusinessAcct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OwnershipBusinessAcct (-1224) +/* prodml23__OwnershipBusinessAcct has binding name 'prodml23__OwnershipBusinessAcct' for type 'prodml23:OwnershipBusinessAcct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OwnershipBusinessAcct (-1224) #endif -/* prodml22__IntegerData has binding name 'prodml22__IntegerData' for type 'prodml22:IntegerData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerData (-1223) +/* prodml23__IntegerData has binding name 'prodml23__IntegerData' for type 'prodml23:IntegerData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerData (-1223) #endif -/* prodml22__FacilityUnitPort has binding name 'prodml22__FacilityUnitPort' for type 'prodml22:FacilityUnitPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityUnitPort (-1222) +/* prodml23__FacilityUnitPort has binding name 'prodml23__FacilityUnitPort' for type 'prodml23:FacilityUnitPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityUnitPort (-1222) #endif -/* prodml22__FacilityParent has binding name 'prodml22__FacilityParent' for type 'prodml22:FacilityParent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityParent (-1221) +/* prodml23__FacilityParent has binding name 'prodml23__FacilityParent' for type 'prodml23:FacilityParent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityParent (-1221) #endif -/* prodml22__CurveDefinition has binding name 'prodml22__CurveDefinition' for type 'prodml22:CurveDefinition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CurveDefinition (-1220) +/* prodml23__CurveDefinition has binding name 'prodml23__CurveDefinition' for type 'prodml23:CurveDefinition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CurveDefinition (-1220) #endif -/* prodml22__CurveData has binding name 'prodml22__CurveData' for type 'prodml22:CurveData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CurveData (-1219) +/* prodml23__CurveData has binding name 'prodml23__CurveData' for type 'prodml23:CurveData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CurveData (-1219) #endif -/* prodml22__AbstractRelatedFacilityObject has binding name 'prodml22__AbstractRelatedFacilityObject' for type 'prodml22:AbstractRelatedFacilityObject' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRelatedFacilityObject (-1218) +/* prodml23__AbstractRelatedFacilityObject has binding name 'prodml23__AbstractRelatedFacilityObject' for type 'prodml23:AbstractRelatedFacilityObject' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRelatedFacilityObject (-1218) #endif -/* prodml22__AbstractRefProductFlow has binding name 'prodml22__AbstractRefProductFlow' for type 'prodml22:AbstractRefProductFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRefProductFlow (-1217) +/* prodml23__AbstractRefProductFlow has binding name 'prodml23__AbstractRefProductFlow' for type 'prodml23:AbstractRefProductFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRefProductFlow (-1217) #endif -/* prodml22__AbstractMeasureData has binding name 'prodml22__AbstractMeasureData' for type 'prodml22:AbstractMeasureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractMeasureData (-1216) +/* prodml23__AbstractMeasureData has binding name 'prodml23__AbstractMeasureData' for type 'prodml23:AbstractMeasureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractMeasureData (-1216) #endif -/* prodml22__CommonPropertiesProductVolume has binding name 'prodml22__CommonPropertiesProductVolume' for type 'prodml22:CommonPropertiesProductVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CommonPropertiesProductVolume (-1215) +/* prodml23__CommonPropertiesProductVolume has binding name 'prodml23__CommonPropertiesProductVolume' for type 'prodml23:CommonPropertiesProductVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CommonPropertiesProductVolume (-1215) #endif -/* prodml22__FlowTestJob has binding name 'prodml22__FlowTestJob' for type 'prodml22:FlowTestJob' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestJob (-1214) +/* prodml23__FlowTestJob has binding name 'prodml23__FlowTestJob' for type 'prodml23:FlowTestJob' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestJob (-1214) #endif -/* prodml22__WellheadSampleAcquisition has binding name 'prodml22__WellheadSampleAcquisition' for type 'prodml22:WellheadSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellheadSampleAcquisition (-1213) +/* prodml23__WellheadSampleAcquisition has binding name 'prodml23__WellheadSampleAcquisition' for type 'prodml23:WellheadSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellheadSampleAcquisition (-1213) #endif -/* prodml22__SeparatorSampleAcquisition has binding name 'prodml22__SeparatorSampleAcquisition' for type 'prodml22:SeparatorSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorSampleAcquisition (-1212) +/* prodml23__SeparatorSampleAcquisition has binding name 'prodml23__SeparatorSampleAcquisition' for type 'prodml23:SeparatorSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorSampleAcquisition (-1212) #endif -/* prodml22__FormationTesterSampleAcquisition has binding name 'prodml22__FormationTesterSampleAcquisition' for type 'prodml22:FormationTesterSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterSampleAcquisition (-1211) +/* prodml23__FormationTesterSampleAcquisition has binding name 'prodml23__FormationTesterSampleAcquisition' for type 'prodml23:FormationTesterSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterSampleAcquisition (-1211) #endif -/* prodml22__FluidSampleAcquisitionJob has binding name 'prodml22__FluidSampleAcquisitionJob' for type 'prodml22:FluidSampleAcquisitionJob' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJob (-1210) +/* prodml23__FluidSampleAcquisitionJob has binding name 'prodml23__FluidSampleAcquisitionJob' for type 'prodml23:FluidSampleAcquisitionJob' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJob (-1210) #endif -/* prodml22__FluidSampleAcquisition has binding name 'prodml22__FluidSampleAcquisition' for type 'prodml22:FluidSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisition (-1209) +/* prodml23__FluidSampleAcquisition has binding name 'prodml23__FluidSampleAcquisition' for type 'prodml23:FluidSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisition (-1209) #endif -/* prodml22__FacilitySampleAcquisition has binding name 'prodml22__FacilitySampleAcquisition' for type 'prodml22:FacilitySampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilitySampleAcquisition (-1208) +/* prodml23__FacilitySampleAcquisition has binding name 'prodml23__FacilitySampleAcquisition' for type 'prodml23:FacilitySampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilitySampleAcquisition (-1208) #endif -/* prodml22__DownholeSampleAcquisition has binding name 'prodml22__DownholeSampleAcquisition' for type 'prodml22:DownholeSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DownholeSampleAcquisition (-1207) +/* prodml23__DownholeSampleAcquisition has binding name 'prodml23__DownholeSampleAcquisition' for type 'prodml23:DownholeSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DownholeSampleAcquisition (-1207) #endif -/* prodml22__FluidSampleContainer has binding name 'prodml22__FluidSampleContainer' for type 'prodml22:FluidSampleContainer' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleContainer (-1206) +/* prodml23__FluidSampleContainer has binding name 'prodml23__FluidSampleContainer' for type 'prodml23:FluidSampleContainer' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleContainer (-1206) #endif -/* prodml22__SampleRecombinationSpecification has binding name 'prodml22__SampleRecombinationSpecification' for type 'prodml22:SampleRecombinationSpecification' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRecombinationSpecification (-1205) +/* prodml23__SampleRecombinationSpecification has binding name 'prodml23__SampleRecombinationSpecification' for type 'prodml23:SampleRecombinationSpecification' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRecombinationSpecification (-1205) #endif -/* prodml22__RecombinedSampleFraction has binding name 'prodml22__RecombinedSampleFraction' for type 'prodml22:RecombinedSampleFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RecombinedSampleFraction (-1204) +/* prodml23__RecombinedSampleFraction has binding name 'prodml23__RecombinedSampleFraction' for type 'prodml23:RecombinedSampleFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RecombinedSampleFraction (-1204) #endif -/* prodml22__FluidSampleChainOfCustodyEvent has binding name 'prodml22__FluidSampleChainOfCustodyEvent' for type 'prodml22:FluidSampleChainOfCustodyEvent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleChainOfCustodyEvent (-1203) +/* prodml23__FluidSampleChainOfCustodyEvent has binding name 'prodml23__FluidSampleChainOfCustodyEvent' for type 'prodml23:FluidSampleChainOfCustodyEvent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleChainOfCustodyEvent (-1203) #endif -/* prodml22__FluidSampleAcquisitionJobSource has binding name 'prodml22__FluidSampleAcquisitionJobSource' for type 'prodml22:FluidSampleAcquisitionJobSource' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSampleAcquisitionJobSource (-1202) +/* prodml23__FluidSampleAcquisitionJobSource has binding name 'prodml23__FluidSampleAcquisitionJobSource' for type 'prodml23:FluidSampleAcquisitionJobSource' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSampleAcquisitionJobSource (-1202) #endif -/* prodml22__FluidSample has binding name 'prodml22__FluidSample' for type 'prodml22:FluidSample' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSample (-1201) +/* prodml23__FluidSample has binding name 'prodml23__FluidSample' for type 'prodml23:FluidSample' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSample (-1201) #endif -/* prodml22__WellboreVolume has binding name 'prodml22__WellboreVolume' for type 'prodml22:WellboreVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreVolume (-1200) +/* prodml23__WellboreVolume has binding name 'prodml23__WellboreVolume' for type 'prodml23:WellboreVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreVolume (-1200) #endif -/* prodml22__WellboreStorageCoefficient has binding name 'prodml22__WellboreStorageCoefficient' for type 'prodml22:WellboreStorageCoefficient' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreStorageCoefficient (-1199) +/* prodml23__WellboreStorageCoefficient has binding name 'prodml23__WellboreStorageCoefficient' for type 'prodml23:WellboreStorageCoefficient' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreStorageCoefficient (-1199) #endif -/* prodml22__WellboreRadius has binding name 'prodml22__WellboreRadius' for type 'prodml22:WellboreRadius' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreRadius (-1198) +/* prodml23__WellboreRadius has binding name 'prodml23__WellboreRadius' for type 'prodml23:WellboreRadius' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreRadius (-1198) #endif -/* prodml22__WellboreFluidCompressibility has binding name 'prodml22__WellboreFluidCompressibility' for type 'prodml22:WellboreFluidCompressibility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreFluidCompressibility (-1197) +/* prodml23__WellboreFluidCompressibility has binding name 'prodml23__WellboreFluidCompressibility' for type 'prodml23:WellboreFluidCompressibility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreFluidCompressibility (-1197) #endif -/* prodml22__WellboreDeviationAngle has binding name 'prodml22__WellboreDeviationAngle' for type 'prodml22:WellboreDeviationAngle' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreDeviationAngle (-1196) +/* prodml23__WellboreDeviationAngle has binding name 'prodml23__WellboreDeviationAngle' for type 'prodml23:WellboreDeviationAngle' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreDeviationAngle (-1196) #endif -/* prodml22__VerticalAnisotropyKvToKr has binding name 'prodml22__VerticalAnisotropyKvToKr' for type 'prodml22:VerticalAnisotropyKvToKr' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalAnisotropyKvToKr (-1195) +/* prodml23__VerticalAnisotropyKvToKr has binding name 'prodml23__VerticalAnisotropyKvToKr' for type 'prodml23:VerticalAnisotropyKvToKr' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalAnisotropyKvToKr (-1195) #endif -/* prodml22__TubingInteralDiameter has binding name 'prodml22__TubingInteralDiameter' for type 'prodml22:TubingInteralDiameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TubingInteralDiameter (-1194) +/* prodml23__TubingInteralDiameter has binding name 'prodml23__TubingInteralDiameter' for type 'prodml23:TubingInteralDiameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TubingInteralDiameter (-1194) #endif -/* prodml22__TransmissibilityReductionFactorOfLinearFront has binding name 'prodml22__TransmissibilityReductionFactorOfLinearFront' for type 'prodml22:TransmissibilityReductionFactorOfLinearFront' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TransmissibilityReductionFactorOfLinearFront (-1193) +/* prodml23__TransmissibilityReductionFactorOfLinearFront has binding name 'prodml23__TransmissibilityReductionFactorOfLinearFront' for type 'prodml23:TransmissibilityReductionFactorOfLinearFront' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TransmissibilityReductionFactorOfLinearFront (-1193) #endif -/* prodml22__TotalThickness has binding name 'prodml22__TotalThickness' for type 'prodml22:TotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TotalThickness (-1192) +/* prodml23__TotalThickness has binding name 'prodml23__TotalThickness' for type 'prodml23:TotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TotalThickness (-1192) #endif -/* prodml22__StorativityRatio has binding name 'prodml22__StorativityRatio' for type 'prodml22:StorativityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StorativityRatio (-1191) +/* prodml23__StorativityRatio has binding name 'prodml23__StorativityRatio' for type 'prodml23:StorativityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StorativityRatio (-1191) #endif -/* prodml22__SkinRelativeToTotalThickness has binding name 'prodml22__SkinRelativeToTotalThickness' for type 'prodml22:SkinRelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SkinRelativeToTotalThickness (-1190) +/* prodml23__SkinRelativeToTotalThickness has binding name 'prodml23__SkinRelativeToTotalThickness' for type 'prodml23:SkinRelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SkinRelativeToTotalThickness (-1190) #endif -/* prodml22__SkinLayer2RelativeToTotalThickness has binding name 'prodml22__SkinLayer2RelativeToTotalThickness' for type 'prodml22:SkinLayer2RelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SkinLayer2RelativeToTotalThickness (-1189) +/* prodml23__SkinLayer2RelativeToTotalThickness has binding name 'prodml23__SkinLayer2RelativeToTotalThickness' for type 'prodml23:SkinLayer2RelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SkinLayer2RelativeToTotalThickness (-1189) #endif -/* prodml22__Region2Thickness has binding name 'prodml22__Region2Thickness' for type 'prodml22:Region2Thickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Region2Thickness (-1188) +/* prodml23__Region2Thickness has binding name 'prodml23__Region2Thickness' for type 'prodml23:Region2Thickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Region2Thickness (-1188) #endif -/* prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct has binding name 'prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct' for type 'prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct (-1187) +/* prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct has binding name 'prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct' for type 'prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct (-1187) #endif -/* prodml22__RatioInitialToFinalWellboreStorage has binding name 'prodml22__RatioInitialToFinalWellboreStorage' for type 'prodml22:RatioInitialToFinalWellboreStorage' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioInitialToFinalWellboreStorage (-1186) +/* prodml23__RatioInitialToFinalWellboreStorage has binding name 'prodml23__RatioInitialToFinalWellboreStorage' for type 'prodml23:RatioInitialToFinalWellboreStorage' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioInitialToFinalWellboreStorage (-1186) #endif -/* prodml22__RatioDpSkinToTotalDrawdown has binding name 'prodml22__RatioDpSkinToTotalDrawdown' for type 'prodml22:RatioDpSkinToTotalDrawdown' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RatioDpSkinToTotalDrawdown (-1185) +/* prodml23__RatioDpSkinToTotalDrawdown has binding name 'prodml23__RatioDpSkinToTotalDrawdown' for type 'prodml23:RatioDpSkinToTotalDrawdown' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RatioDpSkinToTotalDrawdown (-1185) #endif -/* prodml22__RateDependentSkinFactor has binding name 'prodml22__RateDependentSkinFactor' for type 'prodml22:RateDependentSkinFactor' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RateDependentSkinFactor (-1184) +/* prodml23__RateDependentSkinFactor has binding name 'prodml23__RateDependentSkinFactor' for type 'prodml23:RateDependentSkinFactor' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RateDependentSkinFactor (-1184) #endif -/* prodml22__RadiusOfInvestigation has binding name 'prodml22__RadiusOfInvestigation' for type 'prodml22:RadiusOfInvestigation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RadiusOfInvestigation (-1183) +/* prodml23__RadiusOfInvestigation has binding name 'prodml23__RadiusOfInvestigation' for type 'prodml23:RadiusOfInvestigation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RadiusOfInvestigation (-1183) #endif -/* prodml22__PressureDatumTVD has binding name 'prodml22__PressureDatumTVD' for type 'prodml22:PressureDatumTVD' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureDatumTVD (-1182) +/* prodml23__PressureDatumTVD has binding name 'prodml23__PressureDatumTVD' for type 'prodml23:PressureDatumTVD' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureDatumTVD (-1182) #endif -/* prodml22__Porosity has binding name 'prodml22__Porosity' for type 'prodml22:Porosity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Porosity (-1181) +/* prodml23__Porosity has binding name 'prodml23__Porosity' for type 'prodml23:Porosity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Porosity (-1181) #endif -/* prodml22__PoreVolumeOfInvestigation has binding name 'prodml22__PoreVolumeOfInvestigation' for type 'prodml22:PoreVolumeOfInvestigation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeOfInvestigation (-1180) +/* prodml23__PoreVolumeOfInvestigation has binding name 'prodml23__PoreVolumeOfInvestigation' for type 'prodml23:PoreVolumeOfInvestigation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeOfInvestigation (-1180) #endif -/* prodml22__PoreVolumeMeasured has binding name 'prodml22__PoreVolumeMeasured' for type 'prodml22:PoreVolumeMeasured' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PoreVolumeMeasured (-1179) +/* prodml23__PoreVolumeMeasured has binding name 'prodml23__PoreVolumeMeasured' for type 'prodml23:PoreVolumeMeasured' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PoreVolumeMeasured (-1179) #endif -/* prodml22__PermeabilityThicknessProduct has binding name 'prodml22__PermeabilityThicknessProduct' for type 'prodml22:PermeabilityThicknessProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PermeabilityThicknessProduct (-1178) +/* prodml23__PermeabilityThicknessProduct has binding name 'prodml23__PermeabilityThicknessProduct' for type 'prodml23:PermeabilityThicknessProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PermeabilityThicknessProduct (-1178) #endif -/* prodml22__PerforatedLength has binding name 'prodml22__PerforatedLength' for type 'prodml22:PerforatedLength' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PerforatedLength (-1177) +/* prodml23__PerforatedLength has binding name 'prodml23__PerforatedLength' for type 'prodml23:PerforatedLength' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PerforatedLength (-1177) #endif -/* prodml22__OrientationWellTrajectory has binding name 'prodml22__OrientationWellTrajectory' for type 'prodml22:OrientationWellTrajectory' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationWellTrajectory (-1176) +/* prodml23__OrientationWellTrajectory has binding name 'prodml23__OrientationWellTrajectory' for type 'prodml23:OrientationWellTrajectory' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationWellTrajectory (-1176) #endif -/* prodml22__OrientationOfNormalToBoundary1 has binding name 'prodml22__OrientationOfNormalToBoundary1' for type 'prodml22:OrientationOfNormalToBoundary1' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfNormalToBoundary1 (-1175) +/* prodml23__OrientationOfNormalToBoundary1 has binding name 'prodml23__OrientationOfNormalToBoundary1' for type 'prodml23:OrientationOfNormalToBoundary1' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfNormalToBoundary1 (-1175) #endif -/* prodml22__OrientationOfLinearFront has binding name 'prodml22__OrientationOfLinearFront' for type 'prodml22:OrientationOfLinearFront' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfLinearFront (-1174) +/* prodml23__OrientationOfLinearFront has binding name 'prodml23__OrientationOfLinearFront' for type 'prodml23:OrientationOfLinearFront' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfLinearFront (-1174) #endif -/* prodml22__OrientationOfFracturePlane has binding name 'prodml22__OrientationOfFracturePlane' for type 'prodml22:OrientationOfFracturePlane' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfFracturePlane (-1173) +/* prodml23__OrientationOfFracturePlane has binding name 'prodml23__OrientationOfFracturePlane' for type 'prodml23:OrientationOfFracturePlane' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfFracturePlane (-1173) #endif -/* prodml22__OrientationOfAnisotropyXDirection has binding name 'prodml22__OrientationOfAnisotropyXDirection' for type 'prodml22:OrientationOfAnisotropyXDirection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OrientationOfAnisotropyXDirection (-1172) +/* prodml23__OrientationOfAnisotropyXDirection has binding name 'prodml23__OrientationOfAnisotropyXDirection' for type 'prodml23:OrientationOfAnisotropyXDirection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OrientationOfAnisotropyXDirection (-1172) #endif -/* prodml22__NumberOfFractures has binding name 'prodml22__NumberOfFractures' for type 'prodml22:NumberOfFractures' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumberOfFractures (-1171) +/* prodml23__NumberOfFractures has binding name 'prodml23__NumberOfFractures' for type 'prodml23:NumberOfFractures' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumberOfFractures (-1171) #endif -/* prodml22__ModelName has binding name 'prodml22__ModelName' for type 'prodml22:ModelName' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ModelName (-1170) +/* prodml23__ModelName has binding name 'prodml23__ModelName' for type 'prodml23:ModelName' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ModelName (-1170) #endif -/* prodml22__MechanicalSkinRelativeToTotalThickness has binding name 'prodml22__MechanicalSkinRelativeToTotalThickness' for type 'prodml22:MechanicalSkinRelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MechanicalSkinRelativeToTotalThickness (-1169) +/* prodml23__MechanicalSkinRelativeToTotalThickness has binding name 'prodml23__MechanicalSkinRelativeToTotalThickness' for type 'prodml23:MechanicalSkinRelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MechanicalSkinRelativeToTotalThickness (-1169) #endif -/* prodml22__LengthHorizontalWellboreFlowing has binding name 'prodml22__LengthHorizontalWellboreFlowing' for type 'prodml22:LengthHorizontalWellboreFlowing' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LengthHorizontalWellboreFlowing (-1168) +/* prodml23__LengthHorizontalWellboreFlowing has binding name 'prodml23__LengthHorizontalWellboreFlowing' for type 'prodml23:LengthHorizontalWellboreFlowing' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LengthHorizontalWellboreFlowing (-1168) #endif -/* prodml22__LeakSkin has binding name 'prodml22__LeakSkin' for type 'prodml22:LeakSkin' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LeakSkin (-1167) +/* prodml23__LeakSkin has binding name 'prodml23__LeakSkin' for type 'prodml23:LeakSkin' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LeakSkin (-1167) #endif -/* prodml22__Layer2Thickness has binding name 'prodml22__Layer2Thickness' for type 'prodml22:Layer2Thickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Layer2Thickness (-1166) +/* prodml23__Layer2Thickness has binding name 'prodml23__Layer2Thickness' for type 'prodml23:Layer2Thickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Layer2Thickness (-1166) #endif -/* prodml22__InterporosityFlowParameter has binding name 'prodml22__InterporosityFlowParameter' for type 'prodml22:InterporosityFlowParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterporosityFlowParameter (-1165) +/* prodml23__InterporosityFlowParameter has binding name 'prodml23__InterporosityFlowParameter' for type 'prodml23:InterporosityFlowParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterporosityFlowParameter (-1165) #endif -/* prodml22__InnerToOuterZoneMobilityRatio has binding name 'prodml22__InnerToOuterZoneMobilityRatio' for type 'prodml22:InnerToOuterZoneMobilityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneMobilityRatio (-1164) +/* prodml23__InnerToOuterZoneMobilityRatio has binding name 'prodml23__InnerToOuterZoneMobilityRatio' for type 'prodml23:InnerToOuterZoneMobilityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneMobilityRatio (-1164) #endif -/* prodml22__InnerToOuterZoneDiffusivityRatio has binding name 'prodml22__InnerToOuterZoneDiffusivityRatio' for type 'prodml22:InnerToOuterZoneDiffusivityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InnerToOuterZoneDiffusivityRatio (-1163) +/* prodml23__InnerToOuterZoneDiffusivityRatio has binding name 'prodml23__InnerToOuterZoneDiffusivityRatio' for type 'prodml23:InnerToOuterZoneDiffusivityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InnerToOuterZoneDiffusivityRatio (-1163) #endif -/* prodml22__InitialPressure has binding name 'prodml22__InitialPressure' for type 'prodml22:InitialPressure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InitialPressure (-1162) +/* prodml23__InitialPressure has binding name 'prodml23__InitialPressure' for type 'prodml23:InitialPressure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InitialPressure (-1162) #endif -/* prodml22__HorizontalRadialPermeability has binding name 'prodml22__HorizontalRadialPermeability' for type 'prodml22:HorizontalRadialPermeability' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalRadialPermeability (-1161) +/* prodml23__HorizontalRadialPermeability has binding name 'prodml23__HorizontalRadialPermeability' for type 'prodml23:HorizontalRadialPermeability' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalRadialPermeability (-1161) #endif -/* prodml22__HorizontalAnisotropyKxToKy has binding name 'prodml22__HorizontalAnisotropyKxToKy' for type 'prodml22:HorizontalAnisotropyKxToKy' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalAnisotropyKxToKy (-1160) +/* prodml23__HorizontalAnisotropyKxToKy has binding name 'prodml23__HorizontalAnisotropyKxToKy' for type 'prodml23:HorizontalAnisotropyKxToKy' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalAnisotropyKxToKy (-1160) #endif -/* prodml22__FractureStorativityRatio has binding name 'prodml22__FractureStorativityRatio' for type 'prodml22:FractureStorativityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureStorativityRatio (-1159) +/* prodml23__FractureStorativityRatio has binding name 'prodml23__FractureStorativityRatio' for type 'prodml23:FractureStorativityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureStorativityRatio (-1159) #endif -/* prodml22__FractureRadius has binding name 'prodml22__FractureRadius' for type 'prodml22:FractureRadius' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureRadius (-1158) +/* prodml23__FractureRadius has binding name 'prodml23__FractureRadius' for type 'prodml23:FractureRadius' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureRadius (-1158) #endif -/* prodml22__FractureHeight has binding name 'prodml22__FractureHeight' for type 'prodml22:FractureHeight' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHeight (-1157) +/* prodml23__FractureHeight has binding name 'prodml23__FractureHeight' for type 'prodml23:FractureHeight' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHeight (-1157) #endif -/* prodml22__FractureHalfLength has binding name 'prodml22__FractureHalfLength' for type 'prodml22:FractureHalfLength' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureHalfLength (-1156) +/* prodml23__FractureHalfLength has binding name 'prodml23__FractureHalfLength' for type 'prodml23:FractureHalfLength' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureHalfLength (-1156) #endif -/* prodml22__FractureFaceSkin has binding name 'prodml22__FractureFaceSkin' for type 'prodml22:FractureFaceSkin' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureFaceSkin (-1155) +/* prodml23__FractureFaceSkin has binding name 'prodml23__FractureFaceSkin' for type 'prodml23:FractureFaceSkin' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureFaceSkin (-1155) #endif -/* prodml22__FractureConductivity has binding name 'prodml22__FractureConductivity' for type 'prodml22:FractureConductivity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureConductivity (-1154) +/* prodml23__FractureConductivity has binding name 'prodml23__FractureConductivity' for type 'prodml23:FractureConductivity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureConductivity (-1154) #endif -/* prodml22__FractureAngleToWellbore has binding name 'prodml22__FractureAngleToWellbore' for type 'prodml22:FractureAngleToWellbore' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FractureAngleToWellbore (-1153) +/* prodml23__FractureAngleToWellbore has binding name 'prodml23__FractureAngleToWellbore' for type 'prodml23:FractureAngleToWellbore' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FractureAngleToWellbore (-1153) #endif -/* prodml22__FluidDensity has binding name 'prodml22__FluidDensity' for type 'prodml22:FluidDensity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDensity (-1152) +/* prodml23__FluidDensity has binding name 'prodml23__FluidDensity' for type 'prodml23:FluidDensity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDensity (-1152) #endif -/* prodml22__FaultConductivity has binding name 'prodml22__FaultConductivity' for type 'prodml22:FaultConductivity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FaultConductivity (-1151) +/* prodml23__FaultConductivity has binding name 'prodml23__FaultConductivity' for type 'prodml23:FaultConductivity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FaultConductivity (-1151) #endif -/* prodml22__DrainageAreaMeasured has binding name 'prodml22__DrainageAreaMeasured' for type 'prodml22:DrainageAreaMeasured' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DrainageAreaMeasured (-1150) +/* prodml23__DrainageAreaMeasured has binding name 'prodml23__DrainageAreaMeasured' for type 'prodml23:DrainageAreaMeasured' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DrainageAreaMeasured (-1150) #endif -/* prodml22__DistanceWellboreToBottomBoundary has binding name 'prodml22__DistanceWellboreToBottomBoundary' for type 'prodml22:DistanceWellboreToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceWellboreToBottomBoundary (-1149) +/* prodml23__DistanceWellboreToBottomBoundary has binding name 'prodml23__DistanceWellboreToBottomBoundary' for type 'prodml23:DistanceWellboreToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceWellboreToBottomBoundary (-1149) #endif -/* prodml22__DistanceToPinchOut has binding name 'prodml22__DistanceToPinchOut' for type 'prodml22:DistanceToPinchOut' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToPinchOut (-1148) +/* prodml23__DistanceToPinchOut has binding name 'prodml23__DistanceToPinchOut' for type 'prodml23:DistanceToPinchOut' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToPinchOut (-1148) #endif -/* prodml22__DistanceToMobilityInterface has binding name 'prodml22__DistanceToMobilityInterface' for type 'prodml22:DistanceToMobilityInterface' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToMobilityInterface (-1147) +/* prodml23__DistanceToMobilityInterface has binding name 'prodml23__DistanceToMobilityInterface' for type 'prodml23:DistanceToMobilityInterface' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToMobilityInterface (-1147) #endif -/* prodml22__DistanceToBoundary4 has binding name 'prodml22__DistanceToBoundary4' for type 'prodml22:DistanceToBoundary4' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary4 (-1146) +/* prodml23__DistanceToBoundary4 has binding name 'prodml23__DistanceToBoundary4' for type 'prodml23:DistanceToBoundary4' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary4 (-1146) #endif -/* prodml22__DistanceToBoundary3 has binding name 'prodml22__DistanceToBoundary3' for type 'prodml22:DistanceToBoundary3' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary3 (-1145) +/* prodml23__DistanceToBoundary3 has binding name 'prodml23__DistanceToBoundary3' for type 'prodml23:DistanceToBoundary3' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary3 (-1145) #endif -/* prodml22__DistanceToBoundary2 has binding name 'prodml22__DistanceToBoundary2' for type 'prodml22:DistanceToBoundary2' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary2 (-1144) +/* prodml23__DistanceToBoundary2 has binding name 'prodml23__DistanceToBoundary2' for type 'prodml23:DistanceToBoundary2' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary2 (-1144) #endif -/* prodml22__DistanceToBoundary1 has binding name 'prodml22__DistanceToBoundary1' for type 'prodml22:DistanceToBoundary1' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceToBoundary1 (-1143) +/* prodml23__DistanceToBoundary1 has binding name 'prodml23__DistanceToBoundary1' for type 'prodml23:DistanceToBoundary1' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceToBoundary1 (-1143) #endif -/* prodml22__DistanceMidPerforationsToBottomBoundary has binding name 'prodml22__DistanceMidPerforationsToBottomBoundary' for type 'prodml22:DistanceMidPerforationsToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidPerforationsToBottomBoundary (-1142) +/* prodml23__DistanceMidPerforationsToBottomBoundary has binding name 'prodml23__DistanceMidPerforationsToBottomBoundary' for type 'prodml23:DistanceMidPerforationsToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidPerforationsToBottomBoundary (-1142) #endif -/* prodml22__DistanceMidFractureHeightToBottomBoundary has binding name 'prodml22__DistanceMidFractureHeightToBottomBoundary' for type 'prodml22:DistanceMidFractureHeightToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceMidFractureHeightToBottomBoundary (-1141) +/* prodml23__DistanceMidFractureHeightToBottomBoundary has binding name 'prodml23__DistanceMidFractureHeightToBottomBoundary' for type 'prodml23:DistanceMidFractureHeightToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceMidFractureHeightToBottomBoundary (-1141) #endif -/* prodml22__DistanceFractureToBottomBoundary has binding name 'prodml22__DistanceFractureToBottomBoundary' for type 'prodml22:DistanceFractureToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistanceFractureToBottomBoundary (-1140) +/* prodml23__DistanceFractureToBottomBoundary has binding name 'prodml23__DistanceFractureToBottomBoundary' for type 'prodml23:DistanceFractureToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistanceFractureToBottomBoundary (-1140) #endif -/* prodml22__DeltaTimeStorageChanges has binding name 'prodml22__DeltaTimeStorageChanges' for type 'prodml22:DeltaTimeStorageChanges' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaTimeStorageChanges (-1139) +/* prodml23__DeltaTimeStorageChanges has binding name 'prodml23__DeltaTimeStorageChanges' for type 'prodml23:DeltaTimeStorageChanges' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaTimeStorageChanges (-1139) #endif -/* prodml22__DeltaPressureTotalSkin has binding name 'prodml22__DeltaPressureTotalSkin' for type 'prodml22:DeltaPressureTotalSkin' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeltaPressureTotalSkin (-1138) +/* prodml23__DeltaPressureTotalSkin has binding name 'prodml23__DeltaPressureTotalSkin' for type 'prodml23:DeltaPressureTotalSkin' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeltaPressureTotalSkin (-1138) #endif -/* prodml22__CustomParameter has binding name 'prodml22__CustomParameter' for type 'prodml22:CustomParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomParameter (-1137) +/* prodml23__CustomParameter has binding name 'prodml23__CustomParameter' for type 'prodml23:CustomParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomParameter (-1137) #endif -/* prodml22__ConvergenceSkinRelativeToTotalThickness has binding name 'prodml22__ConvergenceSkinRelativeToTotalThickness' for type 'prodml22:ConvergenceSkinRelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConvergenceSkinRelativeToTotalThickness (-1136) +/* prodml23__ConvergenceSkinRelativeToTotalThickness has binding name 'prodml23__ConvergenceSkinRelativeToTotalThickness' for type 'prodml23:ConvergenceSkinRelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConvergenceSkinRelativeToTotalThickness (-1136) #endif -/* prodml22__AveragePressure has binding name 'prodml22__AveragePressure' for type 'prodml22:AveragePressure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AveragePressure (-1135) +/* prodml23__AveragePressure has binding name 'prodml23__AveragePressure' for type 'prodml23:AveragePressure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AveragePressure (-1135) #endif -/* prodml22__AngleBetweenBoundaries has binding name 'prodml22__AngleBetweenBoundaries' for type 'prodml22:AngleBetweenBoundaries' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AngleBetweenBoundaries (-1134) +/* prodml23__AngleBetweenBoundaries has binding name 'prodml23__AngleBetweenBoundaries' for type 'prodml23:AngleBetweenBoundaries' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AngleBetweenBoundaries (-1134) #endif -/* prodml22__AbstractParameter has binding name 'prodml22__AbstractParameter' for type 'prodml22:AbstractParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractParameter (-1133) +/* prodml23__AbstractParameter has binding name 'prodml23__AbstractParameter' for type 'prodml23:AbstractParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractParameter (-1133) #endif -/* prodml22__WellboreBaseModel has binding name 'prodml22__WellboreBaseModel' for type 'prodml22:WellboreBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellboreBaseModel (-1132) +/* prodml23__WellboreBaseModel has binding name 'prodml23__WellboreBaseModel' for type 'prodml23:WellboreBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellboreBaseModel (-1132) #endif -/* prodml22__UShapedFaultsModel has binding name 'prodml22__UShapedFaultsModel' for type 'prodml22:UShapedFaultsModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__UShapedFaultsModel (-1131) +/* prodml23__UShapedFaultsModel has binding name 'prodml23__UShapedFaultsModel' for type 'prodml23:UShapedFaultsModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__UShapedFaultsModel (-1131) #endif -/* prodml22__TwoParallelFaultsModel has binding name 'prodml22__TwoParallelFaultsModel' for type 'prodml22:TwoParallelFaultsModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TwoParallelFaultsModel (-1130) +/* prodml23__TwoParallelFaultsModel has binding name 'prodml23__TwoParallelFaultsModel' for type 'prodml23:TwoParallelFaultsModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TwoParallelFaultsModel (-1130) #endif -/* prodml22__TwoIntersectingFaultsModel has binding name 'prodml22__TwoIntersectingFaultsModel' for type 'prodml22:TwoIntersectingFaultsModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TwoIntersectingFaultsModel (-1129) +/* prodml23__TwoIntersectingFaultsModel has binding name 'prodml23__TwoIntersectingFaultsModel' for type 'prodml23:TwoIntersectingFaultsModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TwoIntersectingFaultsModel (-1129) #endif -/* prodml22__SlantedPartiallyPenetratingModel has binding name 'prodml22__SlantedPartiallyPenetratingModel' for type 'prodml22:SlantedPartiallyPenetratingModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedPartiallyPenetratingModel (-1128) +/* prodml23__SlantedPartiallyPenetratingModel has binding name 'prodml23__SlantedPartiallyPenetratingModel' for type 'prodml23:SlantedPartiallyPenetratingModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedPartiallyPenetratingModel (-1128) #endif -/* prodml22__SlantedFullyPenetratingModel has binding name 'prodml22__SlantedFullyPenetratingModel' for type 'prodml22:SlantedFullyPenetratingModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlantedFullyPenetratingModel (-1127) +/* prodml23__SlantedFullyPenetratingModel has binding name 'prodml23__SlantedFullyPenetratingModel' for type 'prodml23:SlantedFullyPenetratingModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlantedFullyPenetratingModel (-1127) #endif -/* prodml22__SingleFaultModel has binding name 'prodml22__SingleFaultModel' for type 'prodml22:SingleFaultModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFaultModel (-1126) +/* prodml23__SingleFaultModel has binding name 'prodml23__SingleFaultModel' for type 'prodml23:SingleFaultModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFaultModel (-1126) #endif -/* prodml22__ReservoirBaseModel has binding name 'prodml22__ReservoirBaseModel' for type 'prodml22:ReservoirBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirBaseModel (-1125) +/* prodml23__ReservoirBaseModel has binding name 'prodml23__ReservoirBaseModel' for type 'prodml23:ReservoirBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirBaseModel (-1125) #endif -/* prodml22__RadialCompositeModel has binding name 'prodml22__RadialCompositeModel' for type 'prodml22:RadialCompositeModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RadialCompositeModel (-1124) +/* prodml23__RadialCompositeModel has binding name 'prodml23__RadialCompositeModel' for type 'prodml23:RadialCompositeModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RadialCompositeModel (-1124) #endif -/* prodml22__PinchOutModel has binding name 'prodml22__PinchOutModel' for type 'prodml22:PinchOutModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PinchOutModel (-1123) +/* prodml23__PinchOutModel has binding name 'prodml23__PinchOutModel' for type 'prodml23:PinchOutModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PinchOutModel (-1123) #endif -/* prodml22__PartiallyPenetratingModel has binding name 'prodml22__PartiallyPenetratingModel' for type 'prodml22:PartiallyPenetratingModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PartiallyPenetratingModel (-1122) +/* prodml23__PartiallyPenetratingModel has binding name 'prodml23__PartiallyPenetratingModel' for type 'prodml23:PartiallyPenetratingModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PartiallyPenetratingModel (-1122) #endif -/* prodml22__NumericalHomogeneousReservoirModel has binding name 'prodml22__NumericalHomogeneousReservoirModel' for type 'prodml22:NumericalHomogeneousReservoirModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalHomogeneousReservoirModel (-1121) +/* prodml23__NumericalHomogeneousReservoirModel has binding name 'prodml23__NumericalHomogeneousReservoirModel' for type 'prodml23:NumericalHomogeneousReservoirModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalHomogeneousReservoirModel (-1121) #endif -/* prodml22__NumericalDualPorosityReservoirModel has binding name 'prodml22__NumericalDualPorosityReservoirModel' for type 'prodml22:NumericalDualPorosityReservoirModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalDualPorosityReservoirModel (-1120) +/* prodml23__NumericalDualPorosityReservoirModel has binding name 'prodml23__NumericalDualPorosityReservoirModel' for type 'prodml23:NumericalDualPorosityReservoirModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalDualPorosityReservoirModel (-1120) #endif -/* prodml22__NumericalBoundaryModel has binding name 'prodml22__NumericalBoundaryModel' for type 'prodml22:NumericalBoundaryModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NumericalBoundaryModel (-1119) +/* prodml23__NumericalBoundaryModel has binding name 'prodml23__NumericalBoundaryModel' for type 'prodml23:NumericalBoundaryModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NumericalBoundaryModel (-1119) #endif -/* prodml22__NearWellboreBaseModel has binding name 'prodml22__NearWellboreBaseModel' for type 'prodml22:NearWellboreBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NearWellboreBaseModel (-1118) +/* prodml23__NearWellboreBaseModel has binding name 'prodml23__NearWellboreBaseModel' for type 'prodml23:NearWellboreBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NearWellboreBaseModel (-1118) #endif -/* prodml22__LinearCompositeWithLeakyFaultModel has binding name 'prodml22__LinearCompositeWithLeakyFaultModel' for type 'prodml22:LinearCompositeWithLeakyFaultModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithLeakyFaultModel (-1117) +/* prodml23__LinearCompositeWithLeakyFaultModel has binding name 'prodml23__LinearCompositeWithLeakyFaultModel' for type 'prodml23:LinearCompositeWithLeakyFaultModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithLeakyFaultModel (-1117) #endif -/* prodml22__LinearCompositeWithConductiveFaultModel has binding name 'prodml22__LinearCompositeWithConductiveFaultModel' for type 'prodml22:LinearCompositeWithConductiveFaultModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithConductiveFaultModel (-1116) +/* prodml23__LinearCompositeWithConductiveFaultModel has binding name 'prodml23__LinearCompositeWithConductiveFaultModel' for type 'prodml23:LinearCompositeWithConductiveFaultModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithConductiveFaultModel (-1116) #endif -/* prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel has binding name 'prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel' for type 'prodml22:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel (-1115) +/* prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel has binding name 'prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel' for type 'prodml23:LinearCompositeWithChangingThicknessAcrossLeakyFaultModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeWithChangingThicknessAcrossLeakyFaultModel (-1115) #endif -/* prodml22__LinearCompositeModel has binding name 'prodml22__LinearCompositeModel' for type 'prodml22:LinearCompositeModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LinearCompositeModel (-1114) +/* prodml23__LinearCompositeModel has binding name 'prodml23__LinearCompositeModel' for type 'prodml23:LinearCompositeModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LinearCompositeModel (-1114) #endif -/* prodml22__InfiniteBoundaryModel has binding name 'prodml22__InfiniteBoundaryModel' for type 'prodml22:InfiniteBoundaryModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InfiniteBoundaryModel (-1113) +/* prodml23__InfiniteBoundaryModel has binding name 'prodml23__InfiniteBoundaryModel' for type 'prodml23:InfiniteBoundaryModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InfiniteBoundaryModel (-1113) #endif -/* prodml22__HorizontalWellboreMultipleVariableFracturedModel has binding name 'prodml22__HorizontalWellboreMultipleVariableFracturedModel' for type 'prodml22:HorizontalWellboreMultipleVariableFracturedModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleVariableFracturedModel (-1112) +/* prodml23__HorizontalWellboreMultipleVariableFracturedModel has binding name 'prodml23__HorizontalWellboreMultipleVariableFracturedModel' for type 'prodml23:HorizontalWellboreMultipleVariableFracturedModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleVariableFracturedModel (-1112) #endif -/* prodml22__HorizontalWellboreMultipleEqualFracturedModel has binding name 'prodml22__HorizontalWellboreMultipleEqualFracturedModel' for type 'prodml22:HorizontalWellboreMultipleEqualFracturedModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreMultipleEqualFracturedModel (-1111) +/* prodml23__HorizontalWellboreMultipleEqualFracturedModel has binding name 'prodml23__HorizontalWellboreMultipleEqualFracturedModel' for type 'prodml23:HorizontalWellboreMultipleEqualFracturedModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreMultipleEqualFracturedModel (-1111) #endif -/* prodml22__HorizontalWellboreModel has binding name 'prodml22__HorizontalWellboreModel' for type 'prodml22:HorizontalWellboreModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellboreModel (-1110) +/* prodml23__HorizontalWellboreModel has binding name 'prodml23__HorizontalWellboreModel' for type 'prodml23:HorizontalWellboreModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellboreModel (-1110) #endif -/* prodml22__HorizontalWellbore2LayerModel has binding name 'prodml22__HorizontalWellbore2LayerModel' for type 'prodml22:HorizontalWellbore2LayerModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HorizontalWellbore2LayerModel (-1109) +/* prodml23__HorizontalWellbore2LayerModel has binding name 'prodml23__HorizontalWellbore2LayerModel' for type 'prodml23:HorizontalWellbore2LayerModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HorizontalWellbore2LayerModel (-1109) #endif -/* prodml22__HomogeneousModel has binding name 'prodml22__HomogeneousModel' for type 'prodml22:HomogeneousModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HomogeneousModel (-1108) +/* prodml23__HomogeneousModel has binding name 'prodml23__HomogeneousModel' for type 'prodml23:HomogeneousModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HomogeneousModel (-1108) #endif -/* prodml22__FracturedUniformFluxModel has binding name 'prodml22__FracturedUniformFluxModel' for type 'prodml22:FracturedUniformFluxModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedUniformFluxModel (-1107) +/* prodml23__FracturedUniformFluxModel has binding name 'prodml23__FracturedUniformFluxModel' for type 'prodml23:FracturedUniformFluxModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedUniformFluxModel (-1107) #endif -/* prodml22__FracturedInfiniteConductivityModel has binding name 'prodml22__FracturedInfiniteConductivityModel' for type 'prodml22:FracturedInfiniteConductivityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedInfiniteConductivityModel (-1106) +/* prodml23__FracturedInfiniteConductivityModel has binding name 'prodml23__FracturedInfiniteConductivityModel' for type 'prodml23:FracturedInfiniteConductivityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedInfiniteConductivityModel (-1106) #endif -/* prodml22__FracturedHorizontalUniformFluxModel has binding name 'prodml22__FracturedHorizontalUniformFluxModel' for type 'prodml22:FracturedHorizontalUniformFluxModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalUniformFluxModel (-1105) +/* prodml23__FracturedHorizontalUniformFluxModel has binding name 'prodml23__FracturedHorizontalUniformFluxModel' for type 'prodml23:FracturedHorizontalUniformFluxModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalUniformFluxModel (-1105) #endif -/* prodml22__FracturedHorizontalInfiniteConductivityModel has binding name 'prodml22__FracturedHorizontalInfiniteConductivityModel' for type 'prodml22:FracturedHorizontalInfiniteConductivityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalInfiniteConductivityModel (-1104) +/* prodml23__FracturedHorizontalInfiniteConductivityModel has binding name 'prodml23__FracturedHorizontalInfiniteConductivityModel' for type 'prodml23:FracturedHorizontalInfiniteConductivityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalInfiniteConductivityModel (-1104) #endif -/* prodml22__FracturedHorizontalFiniteConductivityModel has binding name 'prodml22__FracturedHorizontalFiniteConductivityModel' for type 'prodml22:FracturedHorizontalFiniteConductivityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedHorizontalFiniteConductivityModel (-1103) +/* prodml23__FracturedHorizontalFiniteConductivityModel has binding name 'prodml23__FracturedHorizontalFiniteConductivityModel' for type 'prodml23:FracturedHorizontalFiniteConductivityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedHorizontalFiniteConductivityModel (-1103) #endif -/* prodml22__FracturedFiniteConductivityModel has binding name 'prodml22__FracturedFiniteConductivityModel' for type 'prodml22:FracturedFiniteConductivityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FracturedFiniteConductivityModel (-1102) +/* prodml23__FracturedFiniteConductivityModel has binding name 'prodml23__FracturedFiniteConductivityModel' for type 'prodml23:FracturedFiniteConductivityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FracturedFiniteConductivityModel (-1102) #endif -/* prodml22__FiniteRadiusModel has binding name 'prodml22__FiniteRadiusModel' for type 'prodml22:FiniteRadiusModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FiniteRadiusModel (-1101) +/* prodml23__FiniteRadiusModel has binding name 'prodml23__FiniteRadiusModel' for type 'prodml23:FiniteRadiusModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FiniteRadiusModel (-1101) #endif -/* prodml22__DualPorosityTransientSpheresModel has binding name 'prodml22__DualPorosityTransientSpheresModel' for type 'prodml22:DualPorosityTransientSpheresModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSpheresModel (-1100) +/* prodml23__DualPorosityTransientSpheresModel has binding name 'prodml23__DualPorosityTransientSpheresModel' for type 'prodml23:DualPorosityTransientSpheresModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSpheresModel (-1100) #endif -/* prodml22__DualPorosityTransientSlabsModel has binding name 'prodml22__DualPorosityTransientSlabsModel' for type 'prodml22:DualPorosityTransientSlabsModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityTransientSlabsModel (-1099) +/* prodml23__DualPorosityTransientSlabsModel has binding name 'prodml23__DualPorosityTransientSlabsModel' for type 'prodml23:DualPorosityTransientSlabsModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityTransientSlabsModel (-1099) #endif -/* prodml22__DualPorosityPseudoSteadyStateModel has binding name 'prodml22__DualPorosityPseudoSteadyStateModel' for type 'prodml22:DualPorosityPseudoSteadyStateModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPorosityPseudoSteadyStateModel (-1098) +/* prodml23__DualPorosityPseudoSteadyStateModel has binding name 'prodml23__DualPorosityPseudoSteadyStateModel' for type 'prodml23:DualPorosityPseudoSteadyStateModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPorosityPseudoSteadyStateModel (-1098) #endif -/* prodml22__DualPermeabilityWithCrossflowModel has binding name 'prodml22__DualPermeabilityWithCrossflowModel' for type 'prodml22:DualPermeabilityWithCrossflowModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DualPermeabilityWithCrossflowModel (-1097) +/* prodml23__DualPermeabilityWithCrossflowModel has binding name 'prodml23__DualPermeabilityWithCrossflowModel' for type 'prodml23:DualPermeabilityWithCrossflowModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DualPermeabilityWithCrossflowModel (-1097) #endif -/* prodml22__CustomWellboreModel has binding name 'prodml22__CustomWellboreModel' for type 'prodml22:CustomWellboreModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomWellboreModel (-1096) +/* prodml23__CustomWellboreModel has binding name 'prodml23__CustomWellboreModel' for type 'prodml23:CustomWellboreModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomWellboreModel (-1096) #endif -/* prodml22__CustomReservoirModel has binding name 'prodml22__CustomReservoirModel' for type 'prodml22:CustomReservoirModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomReservoirModel (-1095) +/* prodml23__CustomReservoirModel has binding name 'prodml23__CustomReservoirModel' for type 'prodml23:CustomReservoirModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomReservoirModel (-1095) #endif -/* prodml22__CustomNearWellboreModel has binding name 'prodml22__CustomNearWellboreModel' for type 'prodml22:CustomNearWellboreModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomNearWellboreModel (-1094) +/* prodml23__CustomNearWellboreModel has binding name 'prodml23__CustomNearWellboreModel' for type 'prodml23:CustomNearWellboreModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomNearWellboreModel (-1094) #endif -/* prodml22__CustomBoundaryModel has binding name 'prodml22__CustomBoundaryModel' for type 'prodml22:CustomBoundaryModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomBoundaryModel (-1093) +/* prodml23__CustomBoundaryModel has binding name 'prodml23__CustomBoundaryModel' for type 'prodml23:CustomBoundaryModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomBoundaryModel (-1093) #endif -/* prodml22__ConstantStorageModel has binding name 'prodml22__ConstantStorageModel' for type 'prodml22:ConstantStorageModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantStorageModel (-1092) +/* prodml23__ConstantStorageModel has binding name 'prodml23__ConstantStorageModel' for type 'prodml23:ConstantStorageModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantStorageModel (-1092) #endif -/* prodml22__ClosedRectangleModel has binding name 'prodml22__ClosedRectangleModel' for type 'prodml22:ClosedRectangleModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedRectangleModel (-1091) +/* prodml23__ClosedRectangleModel has binding name 'prodml23__ClosedRectangleModel' for type 'prodml23:ClosedRectangleModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedRectangleModel (-1091) #endif -/* prodml22__ClosedCircleModel has binding name 'prodml22__ClosedCircleModel' for type 'prodml22:ClosedCircleModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ClosedCircleModel (-1090) +/* prodml23__ClosedCircleModel has binding name 'prodml23__ClosedCircleModel' for type 'prodml23:ClosedCircleModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ClosedCircleModel (-1090) #endif -/* prodml22__ChangingStorageSpiveyPackerModel has binding name 'prodml22__ChangingStorageSpiveyPackerModel' for type 'prodml22:ChangingStorageSpiveyPackerModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyPackerModel (-1089) +/* prodml23__ChangingStorageSpiveyPackerModel has binding name 'prodml23__ChangingStorageSpiveyPackerModel' for type 'prodml23:ChangingStorageSpiveyPackerModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyPackerModel (-1089) #endif -/* prodml22__ChangingStorageSpiveyFissuresModel has binding name 'prodml22__ChangingStorageSpiveyFissuresModel' for type 'prodml22:ChangingStorageSpiveyFissuresModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageSpiveyFissuresModel (-1088) +/* prodml23__ChangingStorageSpiveyFissuresModel has binding name 'prodml23__ChangingStorageSpiveyFissuresModel' for type 'prodml23:ChangingStorageSpiveyFissuresModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageSpiveyFissuresModel (-1088) #endif -/* prodml22__ChangingStorageHegemanModel has binding name 'prodml22__ChangingStorageHegemanModel' for type 'prodml22:ChangingStorageHegemanModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageHegemanModel (-1087) +/* prodml23__ChangingStorageHegemanModel has binding name 'prodml23__ChangingStorageHegemanModel' for type 'prodml23:ChangingStorageHegemanModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageHegemanModel (-1087) #endif -/* prodml22__ChangingStorageFairModel has binding name 'prodml22__ChangingStorageFairModel' for type 'prodml22:ChangingStorageFairModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChangingStorageFairModel (-1086) +/* prodml23__ChangingStorageFairModel has binding name 'prodml23__ChangingStorageFairModel' for type 'prodml23:ChangingStorageFairModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChangingStorageFairModel (-1086) #endif -/* prodml22__BoundaryBaseModel has binding name 'prodml22__BoundaryBaseModel' for type 'prodml22:BoundaryBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BoundaryBaseModel (-1085) +/* prodml23__BoundaryBaseModel has binding name 'prodml23__BoundaryBaseModel' for type 'prodml23:BoundaryBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BoundaryBaseModel (-1085) #endif -/* prodml22__AbstractModelSection has binding name 'prodml22__AbstractModelSection' for type 'prodml22:AbstractModelSection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractModelSection (-1084) +/* prodml23__AbstractModelSection has binding name 'prodml23__AbstractModelSection' for type 'prodml23:AbstractModelSection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractModelSection (-1084) #endif -/* prodml22__TestPeriodsFlowrateData has binding name 'prodml22__TestPeriodsFlowrateData' for type 'prodml22:TestPeriodsFlowrateData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriodsFlowrateData (-1083) +/* prodml23__TestPeriodsFlowrateData has binding name 'prodml23__TestPeriodsFlowrateData' for type 'prodml23:TestPeriodsFlowrateData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriodsFlowrateData (-1083) #endif -/* prodml22__SpecializedAnalysis has binding name 'prodml22__SpecializedAnalysis' for type 'prodml22:SpecializedAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SpecializedAnalysis (-1082) +/* prodml23__SpecializedAnalysis has binding name 'prodml23__SpecializedAnalysis' for type 'prodml23:SpecializedAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SpecializedAnalysis (-1082) #endif -/* prodml22__SingleFractureSubModel has binding name 'prodml22__SingleFractureSubModel' for type 'prodml22:SingleFractureSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFractureSubModel (-1081) +/* prodml23__SingleFractureSubModel has binding name 'prodml23__SingleFractureSubModel' for type 'prodml23:SingleFractureSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFractureSubModel (-1081) #endif -/* prodml22__SingleFlowrateData has binding name 'prodml22__SingleFlowrateData' for type 'prodml22:SingleFlowrateData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleFlowrateData (-1080) +/* prodml23__SingleFlowrateData has binding name 'prodml23__SingleFlowrateData' for type 'prodml23:SingleFlowrateData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleFlowrateData (-1080) #endif -/* prodml22__SingleBoundarySubModel has binding name 'prodml22__SingleBoundarySubModel' for type 'prodml22:SingleBoundarySubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SingleBoundarySubModel (-1079) +/* prodml23__SingleBoundarySubModel has binding name 'prodml23__SingleBoundarySubModel' for type 'prodml23:SingleBoundarySubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SingleBoundarySubModel (-1079) #endif -/* prodml22__RtaAnalysis has binding name 'prodml22__RtaAnalysis' for type 'prodml22:RtaAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RtaAnalysis (-1078) +/* prodml23__RtaAnalysis has binding name 'prodml23__RtaAnalysis' for type 'prodml23:RtaAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RtaAnalysis (-1078) #endif -/* prodml22__ResqmlModelRef has binding name 'prodml22__ResqmlModelRef' for type 'prodml22:ResqmlModelRef' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ResqmlModelRef (-1077) +/* prodml23__ResqmlModelRef has binding name 'prodml23__ResqmlModelRef' for type 'prodml23:ResqmlModelRef' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ResqmlModelRef (-1077) #endif -/* prodml22__ReservoirZoneSubModel has binding name 'prodml22__ReservoirZoneSubModel' for type 'prodml22:ReservoirZoneSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReservoirZoneSubModel (-1076) +/* prodml23__ReservoirZoneSubModel has binding name 'prodml23__ReservoirZoneSubModel' for type 'prodml23:ReservoirZoneSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReservoirZoneSubModel (-1076) #endif -/* prodml22__PtaDeconvolution has binding name 'prodml22__PtaDeconvolution' for type 'prodml22:PtaDeconvolution' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDeconvolution (-1075) +/* prodml23__PtaDeconvolution has binding name 'prodml23__PtaDeconvolution' for type 'prodml23:PtaDeconvolution' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDeconvolution (-1075) #endif -/* prodml22__PtaDataPreProcess has binding name 'prodml22__PtaDataPreProcess' for type 'prodml22:PtaDataPreProcess' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaDataPreProcess (-1074) +/* prodml23__PtaDataPreProcess has binding name 'prodml23__PtaDataPreProcess' for type 'prodml23:PtaDataPreProcess' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaDataPreProcess (-1074) #endif -/* prodml22__PtaAnalysis has binding name 'prodml22__PtaAnalysis' for type 'prodml22:PtaAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PtaAnalysis (-1073) +/* prodml23__PtaAnalysis has binding name 'prodml23__PtaAnalysis' for type 'prodml23:PtaAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PtaAnalysis (-1073) #endif -/* prodml22__PressureTransientAnalysis has binding name 'prodml22__PressureTransientAnalysis' for type 'prodml22:PressureTransientAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PressureTransientAnalysis (-1072) +/* prodml23__PressureTransientAnalysis has binding name 'prodml23__PressureTransientAnalysis' for type 'prodml23:PressureTransientAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PressureTransientAnalysis (-1072) #endif -/* prodml22__PreProcessedPressureData has binding name 'prodml22__PreProcessedPressureData' for type 'prodml22:PreProcessedPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedPressureData (-1071) +/* prodml23__PreProcessedPressureData has binding name 'prodml23__PreProcessedPressureData' for type 'prodml23:PreProcessedPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedPressureData (-1071) #endif -/* prodml22__PreProcessedFlowData has binding name 'prodml22__PreProcessedFlowData' for type 'prodml22:PreProcessedFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PreProcessedFlowData (-1070) +/* prodml23__PreProcessedFlowData has binding name 'prodml23__PreProcessedFlowData' for type 'prodml23:PreProcessedFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PreProcessedFlowData (-1070) #endif -/* prodml22__OutputPressureData has binding name 'prodml22__OutputPressureData' for type 'prodml22:OutputPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputPressureData (-1069) +/* prodml23__OutputPressureData has binding name 'prodml23__OutputPressureData' for type 'prodml23:OutputPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputPressureData (-1069) #endif -/* prodml22__OutputFlowData has binding name 'prodml22__OutputFlowData' for type 'prodml22:OutputFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OutputFlowData (-1068) +/* prodml23__OutputFlowData has binding name 'prodml23__OutputFlowData' for type 'prodml23:OutputFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OutputFlowData (-1068) #endif -/* prodml22__MeasuredPressureData has binding name 'prodml22__MeasuredPressureData' for type 'prodml22:MeasuredPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredPressureData (-1067) +/* prodml23__MeasuredPressureData has binding name 'prodml23__MeasuredPressureData' for type 'prodml23:MeasuredPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredPressureData (-1067) #endif -/* prodml22__MeasuredFlowData has binding name 'prodml22__MeasuredFlowData' for type 'prodml22:MeasuredFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredFlowData (-1066) +/* prodml23__MeasuredFlowData has binding name 'prodml23__MeasuredFlowData' for type 'prodml23:MeasuredFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredFlowData (-1066) #endif -/* prodml22__LogLogAnalysis has binding name 'prodml22__LogLogAnalysis' for type 'prodml22:LogLogAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LogLogAnalysis (-1065) +/* prodml23__LogLogAnalysis has binding name 'prodml23__LogLogAnalysis' for type 'prodml23:LogLogAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LogLogAnalysis (-1065) #endif -/* prodml22__LocationIn2D has binding name 'prodml22__LocationIn2D' for type 'prodml22:LocationIn2D' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LocationIn2D (-1064) +/* prodml23__LocationIn2D has binding name 'prodml23__LocationIn2D' for type 'prodml23:LocationIn2D' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LocationIn2D (-1064) #endif -/* prodml22__LayerToLayerConnection has binding name 'prodml22__LayerToLayerConnection' for type 'prodml22:LayerToLayerConnection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LayerToLayerConnection (-1063) +/* prodml23__LayerToLayerConnection has binding name 'prodml23__LayerToLayerConnection' for type 'prodml23:LayerToLayerConnection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LayerToLayerConnection (-1063) #endif -/* prodml22__LayerModel has binding name 'prodml22__LayerModel' for type 'prodml22:LayerModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LayerModel (-1062) +/* prodml23__LayerModel has binding name 'prodml23__LayerModel' for type 'prodml23:LayerModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LayerModel (-1062) #endif -/* prodml22__InternalFaultSubModel has binding name 'prodml22__InternalFaultSubModel' for type 'prodml22:InternalFaultSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InternalFaultSubModel (-1061) +/* prodml23__InternalFaultSubModel has binding name 'prodml23__InternalFaultSubModel' for type 'prodml23:InternalFaultSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InternalFaultSubModel (-1061) #endif -/* prodml22__InterferingFlowTestInterval has binding name 'prodml22__InterferingFlowTestInterval' for type 'prodml22:InterferingFlowTestInterval' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterferingFlowTestInterval (-1060) +/* prodml23__InterferingFlowTestInterval has binding name 'prodml23__InterferingFlowTestInterval' for type 'prodml23:InterferingFlowTestInterval' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterferingFlowTestInterval (-1060) #endif -/* prodml22__DistributedParametersSubModel has binding name 'prodml22__DistributedParametersSubModel' for type 'prodml22:DistributedParametersSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DistributedParametersSubModel (-1059) +/* prodml23__DistributedParametersSubModel has binding name 'prodml23__DistributedParametersSubModel' for type 'prodml23:DistributedParametersSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DistributedParametersSubModel (-1059) #endif -/* prodml22__DeconvolvedPressureData has binding name 'prodml22__DeconvolvedPressureData' for type 'prodml22:DeconvolvedPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedPressureData (-1058) +/* prodml23__DeconvolvedPressureData has binding name 'prodml23__DeconvolvedPressureData' for type 'prodml23:DeconvolvedPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedPressureData (-1058) #endif -/* prodml22__DeconvolvedFlowData has binding name 'prodml22__DeconvolvedFlowData' for type 'prodml22:DeconvolvedFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolvedFlowData (-1057) +/* prodml23__DeconvolvedFlowData has binding name 'prodml23__DeconvolvedFlowData' for type 'prodml23:DeconvolvedFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolvedFlowData (-1057) #endif -/* prodml22__DeconvolutionSingleOutput has binding name 'prodml22__DeconvolutionSingleOutput' for type 'prodml22:DeconvolutionSingleOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionSingleOutput (-1056) +/* prodml23__DeconvolutionSingleOutput has binding name 'prodml23__DeconvolutionSingleOutput' for type 'prodml23:DeconvolutionSingleOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionSingleOutput (-1056) #endif -/* prodml22__DeconvolutionOutput has binding name 'prodml22__DeconvolutionOutput' for type 'prodml22:DeconvolutionOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionOutput (-1055) +/* prodml23__DeconvolutionOutput has binding name 'prodml23__DeconvolutionOutput' for type 'prodml23:DeconvolutionOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionOutput (-1055) #endif -/* prodml22__DeconvolutionMultipleOutput has binding name 'prodml22__DeconvolutionMultipleOutput' for type 'prodml22:DeconvolutionMultipleOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeconvolutionMultipleOutput (-1054) +/* prodml23__DeconvolutionMultipleOutput has binding name 'prodml23__DeconvolutionMultipleOutput' for type 'prodml23:DeconvolutionMultipleOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeconvolutionMultipleOutput (-1054) #endif -/* prodml22__CompressibilityParameters has binding name 'prodml22__CompressibilityParameters' for type 'prodml22:CompressibilityParameters' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompressibilityParameters (-1053) +/* prodml23__CompressibilityParameters has binding name 'prodml23__CompressibilityParameters' for type 'prodml23:CompressibilityParameters' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompressibilityParameters (-1053) #endif -/* prodml22__ChannelFlowrateData has binding name 'prodml22__ChannelFlowrateData' for type 'prodml22:ChannelFlowrateData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelFlowrateData (-1052) +/* prodml23__ChannelFlowrateData has binding name 'prodml23__ChannelFlowrateData' for type 'prodml23:ChannelFlowrateData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelFlowrateData (-1052) #endif -/* prodml22__AnalysisLine has binding name 'prodml22__AnalysisLine' for type 'prodml22:AnalysisLine' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AnalysisLine (-1051) +/* prodml23__AnalysisLine has binding name 'prodml23__AnalysisLine' for type 'prodml23:AnalysisLine' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AnalysisLine (-1051) #endif -/* prodml22__AbstractRateHistory has binding name 'prodml22__AbstractRateHistory' for type 'prodml22:AbstractRateHistory' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractRateHistory (-1050) +/* prodml23__AbstractRateHistory has binding name 'prodml23__AbstractRateHistory' for type 'prodml23:AbstractRateHistory' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractRateHistory (-1050) #endif -/* prodml22__AbstractPtaPressureData has binding name 'prodml22__AbstractPtaPressureData' for type 'prodml22:AbstractPtaPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaPressureData (-1049) +/* prodml23__AbstractPtaPressureData has binding name 'prodml23__AbstractPtaPressureData' for type 'prodml23:AbstractPtaPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaPressureData (-1049) #endif -/* prodml22__AbstractDeconvolutionOutput has binding name 'prodml22__AbstractDeconvolutionOutput' for type 'prodml22:AbstractDeconvolutionOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDeconvolutionOutput (-1048) +/* prodml23__AbstractDeconvolutionOutput has binding name 'prodml23__AbstractDeconvolutionOutput' for type 'prodml23:AbstractDeconvolutionOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDeconvolutionOutput (-1048) #endif -/* prodml22__AbstractAnalysis has binding name 'prodml22__AbstractAnalysis' for type 'prodml22:AbstractAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractAnalysis (-1047) +/* prodml23__AbstractAnalysis has binding name 'prodml23__AbstractAnalysis' for type 'prodml23:AbstractAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractAnalysis (-1047) #endif -/* prodml22__ReportingHierarchyNode has binding name 'prodml22__ReportingHierarchyNode' for type 'prodml22:ReportingHierarchyNode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchyNode (-1046) +/* prodml23__ReportingHierarchyNode has binding name 'prodml23__ReportingHierarchyNode' for type 'prodml23:ReportingHierarchyNode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchyNode (-1046) #endif -/* prodml22__ReportingHierarchy has binding name 'prodml22__ReportingHierarchy' for type 'prodml22:ReportingHierarchy' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingHierarchy (-1045) +/* prodml23__ReportingHierarchy has binding name 'prodml23__ReportingHierarchy' for type 'prodml23:ReportingHierarchy' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingHierarchy (-1045) #endif -/* prodml22__ReportingEntity has binding name 'prodml22__ReportingEntity' for type 'prodml22:ReportingEntity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportingEntity (-1044) +/* prodml23__ReportingEntity has binding name 'prodml23__ReportingEntity' for type 'prodml23:ReportingEntity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportingEntity (-1044) #endif -/* prodml22__Facility has binding name 'prodml22__Facility' for type 'prodml22:Facility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Facility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Facility (-1043) +/* prodml23__Facility has binding name 'prodml23__Facility' for type 'prodml23:Facility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Facility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Facility (-1043) #endif -/* prodml22__WellFlowingCondition has binding name 'prodml22__WellFlowingCondition' for type 'prodml22:WellFlowingCondition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WellFlowingCondition (-1042) +/* prodml23__WellFlowingCondition has binding name 'prodml23__WellFlowingCondition' for type 'prodml23:WellFlowingCondition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WellFlowingCondition (-1042) #endif -/* prodml22__WaterLevelTest has binding name 'prodml22__WaterLevelTest' for type 'prodml22:WaterLevelTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterLevelTest (-1041) +/* prodml23__WaterLevelTest has binding name 'prodml23__WaterLevelTest' for type 'prodml23:WaterLevelTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterLevelTest (-1041) #endif -/* prodml22__VerticalInterferenceTest has binding name 'prodml22__VerticalInterferenceTest' for type 'prodml22:VerticalInterferenceTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VerticalInterferenceTest (-1040) +/* prodml23__VerticalInterferenceTest has binding name 'prodml23__VerticalInterferenceTest' for type 'prodml23:VerticalInterferenceTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VerticalInterferenceTest (-1040) #endif -/* prodml22__TestPeriod has binding name 'prodml22__TestPeriod' for type 'prodml22:TestPeriod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod -#define SOAP_TYPE_gsoap_eml2_3_prodml22__TestPeriod (-1039) +/* prodml23__TestPeriod has binding name 'prodml23__TestPeriod' for type 'prodml23:TestPeriod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod +#define SOAP_TYPE_gsoap_eml2_3_prodml23__TestPeriod (-1039) #endif -/* prodml22__ProductRate has binding name 'prodml22__ProductRate' for type 'prodml22:ProductRate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductRate (-1038) +/* prodml23__ProductRate has binding name 'prodml23__ProductRate' for type 'prodml23:ProductRate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductRate (-1038) #endif -/* prodml22__ProductionTransientTest has binding name 'prodml22__ProductionTransientTest' for type 'prodml22:ProductionTransientTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionTransientTest (-1037) +/* prodml23__ProductionTransientTest has binding name 'prodml23__ProductionTransientTest' for type 'prodml23:ProductionTransientTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionTransientTest (-1037) #endif -/* prodml22__ProductionFlowTest has binding name 'prodml22__ProductionFlowTest' for type 'prodml22:ProductionFlowTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductionFlowTest (-1036) +/* prodml23__ProductionFlowTest has binding name 'prodml23__ProductionFlowTest' for type 'prodml23:ProductionFlowTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductionFlowTest (-1036) #endif -/* prodml22__OtherData has binding name 'prodml22__OtherData' for type 'prodml22:OtherData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherData (-1035) +/* prodml23__OtherData has binding name 'prodml23__OtherData' for type 'prodml23:OtherData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherData (-1035) #endif -/* prodml22__InterwellTest has binding name 'prodml22__InterwellTest' for type 'prodml22:InterwellTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterwellTest (-1034) +/* prodml23__InterwellTest has binding name 'prodml23__InterwellTest' for type 'prodml23:InterwellTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterwellTest (-1034) #endif -/* prodml22__InjectionFlowTest has binding name 'prodml22__InjectionFlowTest' for type 'prodml22:InjectionFlowTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InjectionFlowTest (-1033) +/* prodml23__InjectionFlowTest has binding name 'prodml23__InjectionFlowTest' for type 'prodml23:InjectionFlowTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InjectionFlowTest (-1033) #endif -/* prodml22__FormationTesterStation has binding name 'prodml22__FormationTesterStation' for type 'prodml22:FormationTesterStation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationTesterStation (-1032) +/* prodml23__FormationTesterStation has binding name 'prodml23__FormationTesterStation' for type 'prodml23:FormationTesterStation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationTesterStation (-1032) #endif -/* prodml22__FlowTestMeasurementSet has binding name 'prodml22__FlowTestMeasurementSet' for type 'prodml22:FlowTestMeasurementSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestMeasurementSet (-1031) +/* prodml23__FlowTestMeasurementSet has binding name 'prodml23__FlowTestMeasurementSet' for type 'prodml23:FlowTestMeasurementSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestMeasurementSet (-1031) #endif -/* prodml22__FlowTestLocation has binding name 'prodml22__FlowTestLocation' for type 'prodml22:FlowTestLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestLocation (-1030) +/* prodml23__FlowTestLocation has binding name 'prodml23__FlowTestLocation' for type 'prodml23:FlowTestLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestLocation (-1030) #endif -/* prodml22__FlowTestActivity has binding name 'prodml22__FlowTestActivity' for type 'prodml22:FlowTestActivity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlowTestActivity (-1029) +/* prodml23__FlowTestActivity has binding name 'prodml23__FlowTestActivity' for type 'prodml23:FlowTestActivity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlowTestActivity (-1029) #endif -/* prodml22__DrillStemTest has binding name 'prodml22__DrillStemTest' for type 'prodml22:DrillStemTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DrillStemTest (-1028) +/* prodml23__DrillStemTest has binding name 'prodml23__DrillStemTest' for type 'prodml23:DrillStemTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DrillStemTest (-1028) #endif -/* prodml22__ChannelSet has binding name 'prodml22__ChannelSet' for type 'prodml22:ChannelSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ChannelSet (-1027) +/* prodml23__ChannelSet has binding name 'prodml23__ChannelSet' for type 'prodml23:ChannelSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ChannelSet (-1027) #endif -/* prodml22__Channel has binding name 'prodml22__Channel' for type 'prodml22:Channel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Channel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Channel (-1026) +/* prodml23__Channel has binding name 'prodml23__Channel' for type 'prodml23:Channel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Channel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Channel (-1026) #endif -/* prodml22__AbstractPtaFlowData has binding name 'prodml22__AbstractPtaFlowData' for type 'prodml22:AbstractPtaFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPtaFlowData (-1025) +/* prodml23__AbstractPtaFlowData has binding name 'prodml23__AbstractPtaFlowData' for type 'prodml23:AbstractPtaFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPtaFlowData (-1025) #endif -/* prodml22__AbstractFlowTestData has binding name 'prodml22__AbstractFlowTestData' for type 'prodml22:AbstractFlowTestData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFlowTestData (-1024) +/* prodml23__AbstractFlowTestData has binding name 'prodml23__AbstractFlowTestData' for type 'prodml23:AbstractFlowTestData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFlowTestData (-1024) #endif -/* prodml22__FluidSystem has binding name 'prodml22__FluidSystem' for type 'prodml22:FluidSystem' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSystem (-1023) +/* prodml23__FluidSystem has binding name 'prodml23__FluidSystem' for type 'prodml23:FluidSystem' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSystem (-1023) #endif -/* prodml22__WaterSampleComponent has binding name 'prodml22__WaterSampleComponent' for type 'prodml22:WaterSampleComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterSampleComponent (-1022) +/* prodml23__WaterSampleComponent has binding name 'prodml23__WaterSampleComponent' for type 'prodml23:WaterSampleComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterSampleComponent (-1022) #endif -/* prodml22__WaterAnalysisTestStep has binding name 'prodml22__WaterAnalysisTestStep' for type 'prodml22:WaterAnalysisTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTestStep (-1021) +/* prodml23__WaterAnalysisTestStep has binding name 'prodml23__WaterAnalysisTestStep' for type 'prodml23:WaterAnalysisTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTestStep (-1021) #endif -/* prodml22__WaterAnalysisTest has binding name 'prodml22__WaterAnalysisTest' for type 'prodml22:WaterAnalysisTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysisTest (-1020) +/* prodml23__WaterAnalysisTest has binding name 'prodml23__WaterAnalysisTest' for type 'prodml23:WaterAnalysisTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysisTest (-1020) #endif -/* prodml22__WaterAnalysis has binding name 'prodml22__WaterAnalysis' for type 'prodml22:WaterAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__WaterAnalysis (-1019) +/* prodml23__WaterAnalysis has binding name 'prodml23__WaterAnalysis' for type 'prodml23:WaterAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__WaterAnalysis (-1019) #endif -/* prodml22__ViscosityAtTemperature has binding name 'prodml22__ViscosityAtTemperature' for type 'prodml22:ViscosityAtTemperature' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ViscosityAtTemperature (-1018) +/* prodml23__ViscosityAtTemperature has binding name 'prodml23__ViscosityAtTemperature' for type 'prodml23:ViscosityAtTemperature' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ViscosityAtTemperature (-1018) #endif -/* prodml22__VaporLiquidEquilibriumTest has binding name 'prodml22__VaporLiquidEquilibriumTest' for type 'prodml22:VaporLiquidEquilibriumTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VaporLiquidEquilibriumTest (-1017) +/* prodml23__VaporLiquidEquilibriumTest has binding name 'prodml23__VaporLiquidEquilibriumTest' for type 'prodml23:VaporLiquidEquilibriumTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VaporLiquidEquilibriumTest (-1017) #endif -/* prodml22__SwellingTestStep has binding name 'prodml22__SwellingTestStep' for type 'prodml22:SwellingTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTestStep (-1016) +/* prodml23__SwellingTestStep has binding name 'prodml23__SwellingTestStep' for type 'prodml23:SwellingTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTestStep (-1016) #endif -/* prodml22__SwellingTest has binding name 'prodml22__SwellingTest' for type 'prodml22:SwellingTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SwellingTest (-1015) +/* prodml23__SwellingTest has binding name 'prodml23__SwellingTest' for type 'prodml23:SwellingTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SwellingTest (-1015) #endif -/* prodml22__STOFlashedLiquid has binding name 'prodml22__STOFlashedLiquid' for type 'prodml22:STOFlashedLiquid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__STOFlashedLiquid (-1014) +/* prodml23__STOFlashedLiquid has binding name 'prodml23__STOFlashedLiquid' for type 'prodml23:STOFlashedLiquid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__STOFlashedLiquid (-1014) #endif -/* prodml22__STOAnalysis has binding name 'prodml22__STOAnalysis' for type 'prodml22:STOAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__STOAnalysis (-1013) +/* prodml23__STOAnalysis has binding name 'prodml23__STOAnalysis' for type 'prodml23:STOAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__STOAnalysis (-1013) #endif -/* prodml22__SlimTubeTestVolumeStep has binding name 'prodml22__SlimTubeTestVolumeStep' for type 'prodml22:SlimTubeTestVolumeStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestVolumeStep (-1012) +/* prodml23__SlimTubeTestVolumeStep has binding name 'prodml23__SlimTubeTestVolumeStep' for type 'prodml23:SlimTubeTestVolumeStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestVolumeStep (-1012) #endif -/* prodml22__SlimTubeTestStep has binding name 'prodml22__SlimTubeTestStep' for type 'prodml22:SlimTubeTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTestStep (-1011) +/* prodml23__SlimTubeTestStep has binding name 'prodml23__SlimTubeTestStep' for type 'prodml23:SlimTubeTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTestStep (-1011) #endif -/* prodml22__SlimTubeTest has binding name 'prodml22__SlimTubeTest' for type 'prodml22:SlimTubeTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeTest (-1010) +/* prodml23__SlimTubeTest has binding name 'prodml23__SlimTubeTest' for type 'prodml23:SlimTubeTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeTest (-1010) #endif -/* prodml22__SlimTubeSpecification has binding name 'prodml22__SlimTubeSpecification' for type 'prodml22:SlimTubeSpecification' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SlimTubeSpecification (-1009) +/* prodml23__SlimTubeSpecification has binding name 'prodml23__SlimTubeSpecification' for type 'prodml23:SlimTubeSpecification' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SlimTubeSpecification (-1009) #endif -/* prodml22__SeparatorConditions has binding name 'prodml22__SeparatorConditions' for type 'prodml22:SeparatorConditions' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SeparatorConditions (-1008) +/* prodml23__SeparatorConditions has binding name 'prodml23__SeparatorConditions' for type 'prodml23:SeparatorConditions' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SeparatorConditions (-1008) #endif -/* prodml22__SaturationTest has binding name 'prodml22__SaturationTest' for type 'prodml22:SaturationTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTest (-1007) +/* prodml23__SaturationTest has binding name 'prodml23__SaturationTest' for type 'prodml23:SaturationTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTest (-1007) #endif -/* prodml22__SaturationTemperature has binding name 'prodml22__SaturationTemperature' for type 'prodml22:SaturationTemperature' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationTemperature (-1006) +/* prodml23__SaturationTemperature has binding name 'prodml23__SaturationTemperature' for type 'prodml23:SaturationTemperature' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationTemperature (-1006) #endif -/* prodml22__SaturationPressure has binding name 'prodml22__SaturationPressure' for type 'prodml22:SaturationPressure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SaturationPressure (-1005) +/* prodml23__SaturationPressure has binding name 'prodml23__SaturationPressure' for type 'prodml23:SaturationPressure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SaturationPressure (-1005) #endif -/* prodml22__Sara has binding name 'prodml22__Sara' for type 'prodml22:Sara' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Sara -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Sara (-1004) +/* prodml23__Sara has binding name 'prodml23__Sara' for type 'prodml23:Sara' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Sara +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Sara (-1004) #endif -/* prodml22__SampleRestoration has binding name 'prodml22__SampleRestoration' for type 'prodml22:SampleRestoration' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleRestoration (-1003) +/* prodml23__SampleRestoration has binding name 'prodml23__SampleRestoration' for type 'prodml23:SampleRestoration' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleRestoration (-1003) #endif -/* prodml22__SampleIntegrityAndPreparation has binding name 'prodml22__SampleIntegrityAndPreparation' for type 'prodml22:SampleIntegrityAndPreparation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleIntegrityAndPreparation (-1002) +/* prodml23__SampleIntegrityAndPreparation has binding name 'prodml23__SampleIntegrityAndPreparation' for type 'prodml23:SampleIntegrityAndPreparation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleIntegrityAndPreparation (-1002) #endif -/* prodml22__SampleContaminant has binding name 'prodml22__SampleContaminant' for type 'prodml22:SampleContaminant' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SampleContaminant (-1001) +/* prodml23__SampleContaminant has binding name 'prodml23__SampleContaminant' for type 'prodml23:SampleContaminant' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SampleContaminant (-1001) #endif -/* prodml22__ReportLocation has binding name 'prodml22__ReportLocation' for type 'prodml22:ReportLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReportLocation (-1000) +/* prodml23__ReportLocation has binding name 'prodml23__ReportLocation' for type 'prodml23:ReportLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReportLocation (-1000) #endif -/* prodml22__RelativeVolumeRatio has binding name 'prodml22__RelativeVolumeRatio' for type 'prodml22:RelativeVolumeRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RelativeVolumeRatio (-999) +/* prodml23__RelativeVolumeRatio has binding name 'prodml23__RelativeVolumeRatio' for type 'prodml23:RelativeVolumeRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RelativeVolumeRatio (-999) #endif -/* prodml22__RefInjectedGasAdded has binding name 'prodml22__RefInjectedGasAdded' for type 'prodml22:RefInjectedGasAdded' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded -#define SOAP_TYPE_gsoap_eml2_3_prodml22__RefInjectedGasAdded (-998) +/* prodml23__RefInjectedGasAdded has binding name 'prodml23__RefInjectedGasAdded' for type 'prodml23:RefInjectedGasAdded' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded +#define SOAP_TYPE_gsoap_eml2_3_prodml23__RefInjectedGasAdded (-998) #endif -/* prodml22__ProducedOilProperties has binding name 'prodml22__ProducedOilProperties' for type 'prodml22:ProducedOilProperties' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedOilProperties (-997) +/* prodml23__ProducedOilProperties has binding name 'prodml23__ProducedOilProperties' for type 'prodml23:ProducedOilProperties' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedOilProperties (-997) #endif -/* prodml22__ProducedGasProperties has binding name 'prodml22__ProducedGasProperties' for type 'prodml22:ProducedGasProperties' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProducedGasProperties (-996) +/* prodml23__ProducedGasProperties has binding name 'prodml23__ProducedGasProperties' for type 'prodml23:ProducedGasProperties' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProducedGasProperties (-996) #endif -/* prodml22__PhaseViscosity has binding name 'prodml22__PhaseViscosity' for type 'prodml22:PhaseViscosity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseViscosity (-995) +/* prodml23__PhaseViscosity has binding name 'prodml23__PhaseViscosity' for type 'prodml23:PhaseViscosity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseViscosity (-995) #endif -/* prodml22__PhaseDensity has binding name 'prodml22__PhaseDensity' for type 'prodml22:PhaseDensity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PhaseDensity (-994) +/* prodml23__PhaseDensity has binding name 'prodml23__PhaseDensity' for type 'prodml23:PhaseDensity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PhaseDensity (-994) #endif -/* prodml22__OtherMeasurementTestStep has binding name 'prodml22__OtherMeasurementTestStep' for type 'prodml22:OtherMeasurementTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTestStep (-993) +/* prodml23__OtherMeasurementTestStep has binding name 'prodml23__OtherMeasurementTestStep' for type 'prodml23:OtherMeasurementTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTestStep (-993) #endif -/* prodml22__OtherMeasurementTest has binding name 'prodml22__OtherMeasurementTest' for type 'prodml22:OtherMeasurementTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OtherMeasurementTest (-992) +/* prodml23__OtherMeasurementTest has binding name 'prodml23__OtherMeasurementTest' for type 'prodml23:OtherMeasurementTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OtherMeasurementTest (-992) #endif -/* prodml22__OilVolume has binding name 'prodml22__OilVolume' for type 'prodml22:OilVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilVolume (-991) +/* prodml23__OilVolume has binding name 'prodml23__OilVolume' for type 'prodml23:OilVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilVolume (-991) #endif -/* prodml22__OilShrinkageFactor has binding name 'prodml22__OilShrinkageFactor' for type 'prodml22:OilShrinkageFactor' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilShrinkageFactor (-990) +/* prodml23__OilShrinkageFactor has binding name 'prodml23__OilShrinkageFactor' for type 'prodml23:OilShrinkageFactor' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilShrinkageFactor (-990) #endif -/* prodml22__OilCompressibility has binding name 'prodml22__OilCompressibility' for type 'prodml22:OilCompressibility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OilCompressibility (-989) +/* prodml23__OilCompressibility has binding name 'prodml23__OilCompressibility' for type 'prodml23:OilCompressibility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OilCompressibility (-989) #endif -/* prodml22__NonHydrocarbonTest has binding name 'prodml22__NonHydrocarbonTest' for type 'prodml22:NonHydrocarbonTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonTest (-988) +/* prodml23__NonHydrocarbonTest has binding name 'prodml23__NonHydrocarbonTest' for type 'prodml23:NonHydrocarbonTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonTest (-988) #endif -/* prodml22__NonHydrocarbonAnalysis has binding name 'prodml22__NonHydrocarbonAnalysis' for type 'prodml22:NonHydrocarbonAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NonHydrocarbonAnalysis (-987) +/* prodml23__NonHydrocarbonAnalysis has binding name 'prodml23__NonHydrocarbonAnalysis' for type 'prodml23:NonHydrocarbonAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NonHydrocarbonAnalysis (-987) #endif -/* prodml22__MultipleContactMiscibilityTest has binding name 'prodml22__MultipleContactMiscibilityTest' for type 'prodml22:MultipleContactMiscibilityTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MultipleContactMiscibilityTest (-986) +/* prodml23__MultipleContactMiscibilityTest has binding name 'prodml23__MultipleContactMiscibilityTest' for type 'prodml23:MultipleContactMiscibilityTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MultipleContactMiscibilityTest (-986) #endif -/* prodml22__MassOut has binding name 'prodml22__MassOut' for type 'prodml22:MassOut' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassOut (-985) +/* prodml23__MassOut has binding name 'prodml23__MassOut' for type 'prodml23:MassOut' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassOut (-985) #endif -/* prodml22__MassIn has binding name 'prodml22__MassIn' for type 'prodml22:MassIn' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassIn (-984) +/* prodml23__MassIn has binding name 'prodml23__MassIn' for type 'prodml23:MassIn' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassIn (-984) #endif -/* prodml22__MassBalance has binding name 'prodml22__MassBalance' for type 'prodml22:MassBalance' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MassBalance (-983) +/* prodml23__MassBalance has binding name 'prodml23__MassBalance' for type 'prodml23:MassBalance' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MassBalance (-983) #endif -/* prodml22__LiquidVolume has binding name 'prodml22__LiquidVolume' for type 'prodml22:LiquidVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidVolume (-982) +/* prodml23__LiquidVolume has binding name 'prodml23__LiquidVolume' for type 'prodml23:LiquidVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidVolume (-982) #endif -/* prodml22__LiquidDropoutFraction has binding name 'prodml22__LiquidDropoutFraction' for type 'prodml22:LiquidDropoutFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidDropoutFraction (-981) +/* prodml23__LiquidDropoutFraction has binding name 'prodml23__LiquidDropoutFraction' for type 'prodml23:LiquidDropoutFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidDropoutFraction (-981) #endif -/* prodml22__InterfacialTensionTestStep has binding name 'prodml22__InterfacialTensionTestStep' for type 'prodml22:InterfacialTensionTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTestStep (-980) +/* prodml23__InterfacialTensionTestStep has binding name 'prodml23__InterfacialTensionTestStep' for type 'prodml23:InterfacialTensionTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTestStep (-980) #endif -/* prodml22__InterfacialTensionTest has binding name 'prodml22__InterfacialTensionTest' for type 'prodml22:InterfacialTensionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InterfacialTensionTest (-979) +/* prodml23__InterfacialTensionTest has binding name 'prodml23__InterfacialTensionTest' for type 'prodml23:InterfacialTensionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InterfacialTensionTest (-979) #endif -/* prodml22__InjectedGas has binding name 'prodml22__InjectedGas' for type 'prodml22:InjectedGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__InjectedGas (-978) +/* prodml23__InjectedGas has binding name 'prodml23__InjectedGas' for type 'prodml23:InjectedGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__InjectedGas (-978) #endif -/* prodml22__HydrocarbonAnalysis has binding name 'prodml22__HydrocarbonAnalysis' for type 'prodml22:HydrocarbonAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__HydrocarbonAnalysis (-977) +/* prodml23__HydrocarbonAnalysis has binding name 'prodml23__HydrocarbonAnalysis' for type 'prodml23:HydrocarbonAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__HydrocarbonAnalysis (-977) #endif -/* prodml22__FluidVolumeReference has binding name 'prodml22__FluidVolumeReference' for type 'prodml22:FluidVolumeReference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidVolumeReference (-976) +/* prodml23__FluidVolumeReference has binding name 'prodml23__FluidVolumeReference' for type 'prodml23:FluidVolumeReference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidVolumeReference (-976) #endif -/* prodml22__FluidSeparatorTestStep has binding name 'prodml22__FluidSeparatorTestStep' for type 'prodml22:FluidSeparatorTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTestStep (-975) +/* prodml23__FluidSeparatorTestStep has binding name 'prodml23__FluidSeparatorTestStep' for type 'prodml23:FluidSeparatorTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTestStep (-975) #endif -/* prodml22__FluidSeparatorTest has binding name 'prodml22__FluidSeparatorTest' for type 'prodml22:FluidSeparatorTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidSeparatorTest (-974) +/* prodml23__FluidSeparatorTest has binding name 'prodml23__FluidSeparatorTest' for type 'prodml23:FluidSeparatorTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidSeparatorTest (-974) #endif -/* prodml22__FluidDifferentialLiberationTestStep has binding name 'prodml22__FluidDifferentialLiberationTestStep' for type 'prodml22:FluidDifferentialLiberationTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidDifferentialLiberationTestStep (-973) +/* prodml23__FluidDifferentialLiberationTestStep has binding name 'prodml23__FluidDifferentialLiberationTestStep' for type 'prodml23:FluidDifferentialLiberationTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidDifferentialLiberationTestStep (-973) #endif -/* prodml22__FluidCvdTestStep has binding name 'prodml22__FluidCvdTestStep' for type 'prodml22:FluidCvdTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCvdTestStep (-972) +/* prodml23__FluidCvdTestStep has binding name 'prodml23__FluidCvdTestStep' for type 'prodml23:FluidCvdTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCvdTestStep (-972) #endif -/* prodml22__FluidAnalysisReport has binding name 'prodml22__FluidAnalysisReport' for type 'prodml22:FluidAnalysisReport' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysisReport (-971) +/* prodml23__FluidAnalysisReport has binding name 'prodml23__FluidAnalysisReport' for type 'prodml23:FluidAnalysisReport' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysisReport (-971) #endif -/* prodml22__FluidAnalysis has binding name 'prodml22__FluidAnalysis' for type 'prodml22:FluidAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidAnalysis (-970) +/* prodml23__FluidAnalysis has binding name 'prodml23__FluidAnalysis' for type 'prodml23:FluidAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidAnalysis (-970) #endif -/* prodml22__FlashedLiquid has binding name 'prodml22__FlashedLiquid' for type 'prodml22:FlashedLiquid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedLiquid (-969) +/* prodml23__FlashedLiquid has binding name 'prodml23__FlashedLiquid' for type 'prodml23:FlashedLiquid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedLiquid (-969) #endif -/* prodml22__FlashedGas has binding name 'prodml22__FlashedGas' for type 'prodml22:FlashedGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FlashedGas (-968) +/* prodml23__FlashedGas has binding name 'prodml23__FlashedGas' for type 'prodml23:FlashedGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FlashedGas (-968) #endif -/* prodml22__DifferentialLiberationTest has binding name 'prodml22__DifferentialLiberationTest' for type 'prodml22:DifferentialLiberationTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DifferentialLiberationTest (-967) +/* prodml23__DifferentialLiberationTest has binding name 'prodml23__DifferentialLiberationTest' for type 'prodml23:DifferentialLiberationTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DifferentialLiberationTest (-967) #endif -/* prodml22__CumulativeGasProducedVol has binding name 'prodml22__CumulativeGasProducedVol' for type 'prodml22:CumulativeGasProducedVol' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedVol (-966) +/* prodml23__CumulativeGasProducedVol has binding name 'prodml23__CumulativeGasProducedVol' for type 'prodml23:CumulativeGasProducedVol' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedVol (-966) #endif -/* prodml22__CumulativeGasProducedRatioStd has binding name 'prodml22__CumulativeGasProducedRatioStd' for type 'prodml22:CumulativeGasProducedRatioStd' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CumulativeGasProducedRatioStd (-965) +/* prodml23__CumulativeGasProducedRatioStd has binding name 'prodml23__CumulativeGasProducedRatioStd' for type 'prodml23:CumulativeGasProducedRatioStd' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CumulativeGasProducedRatioStd (-965) #endif -/* prodml22__ConstantVolumeDepletionTest has binding name 'prodml22__ConstantVolumeDepletionTest' for type 'prodml22:ConstantVolumeDepletionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantVolumeDepletionTest (-964) +/* prodml23__ConstantVolumeDepletionTest has binding name 'prodml23__ConstantVolumeDepletionTest' for type 'prodml23:ConstantVolumeDepletionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantVolumeDepletionTest (-964) #endif -/* prodml22__ConstantCompositionExpansionTestStep has binding name 'prodml22__ConstantCompositionExpansionTestStep' for type 'prodml22:ConstantCompositionExpansionTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTestStep (-963) +/* prodml23__ConstantCompositionExpansionTestStep has binding name 'prodml23__ConstantCompositionExpansionTestStep' for type 'prodml23:ConstantCompositionExpansionTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTestStep (-963) #endif -/* prodml22__ConstantCompositionExpansionTest has binding name 'prodml22__ConstantCompositionExpansionTest' for type 'prodml22:ConstantCompositionExpansionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ConstantCompositionExpansionTest (-962) +/* prodml23__ConstantCompositionExpansionTest has binding name 'prodml23__ConstantCompositionExpansionTest' for type 'prodml23:ConstantCompositionExpansionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ConstantCompositionExpansionTest (-962) #endif -/* prodml22__AtmosphericFlashTestAndCompositionalAnalysis has binding name 'prodml22__AtmosphericFlashTestAndCompositionalAnalysis' for type 'prodml22:AtmosphericFlashTestAndCompositionalAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AtmosphericFlashTestAndCompositionalAnalysis (-961) +/* prodml23__AtmosphericFlashTestAndCompositionalAnalysis has binding name 'prodml23__AtmosphericFlashTestAndCompositionalAnalysis' for type 'prodml23:AtmosphericFlashTestAndCompositionalAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AtmosphericFlashTestAndCompositionalAnalysis (-961) #endif -/* prodml22__AbstractOilVolShrinkage has binding name 'prodml22__AbstractOilVolShrinkage' for type 'prodml22:AbstractOilVolShrinkage' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractOilVolShrinkage (-960) +/* prodml23__AbstractOilVolShrinkage has binding name 'prodml23__AbstractOilVolShrinkage' for type 'prodml23:AbstractOilVolShrinkage' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractOilVolShrinkage (-960) #endif -/* prodml22__AbstractLiquidDropoutPercVolume has binding name 'prodml22__AbstractLiquidDropoutPercVolume' for type 'prodml22:AbstractLiquidDropoutPercVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractLiquidDropoutPercVolume (-959) +/* prodml23__AbstractLiquidDropoutPercVolume has binding name 'prodml23__AbstractLiquidDropoutPercVolume' for type 'prodml23:AbstractLiquidDropoutPercVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractLiquidDropoutPercVolume (-959) #endif -/* prodml22__AbstractGasProducedRatioVolume has binding name 'prodml22__AbstractGasProducedRatioVolume' for type 'prodml22:AbstractGasProducedRatioVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractGasProducedRatioVolume (-958) +/* prodml23__AbstractGasProducedRatioVolume has binding name 'prodml23__AbstractGasProducedRatioVolume' for type 'prodml23:AbstractGasProducedRatioVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractGasProducedRatioVolume (-958) #endif -/* prodml22__VaporComposition has binding name 'prodml22__VaporComposition' for type 'prodml22:VaporComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__VaporComposition (-957) +/* prodml23__VaporComposition has binding name 'prodml23__VaporComposition' for type 'prodml23:VaporComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__VaporComposition (-957) #endif -/* prodml22__SulfurFluidComponent has binding name 'prodml22__SulfurFluidComponent' for type 'prodml22:SulfurFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__SulfurFluidComponent (-956) +/* prodml23__SulfurFluidComponent has binding name 'prodml23__SulfurFluidComponent' for type 'prodml23:SulfurFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__SulfurFluidComponent (-956) #endif -/* prodml22__StockTankOil has binding name 'prodml22__StockTankOil' for type 'prodml22:StockTankOil' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StockTankOil (-955) +/* prodml23__StockTankOil has binding name 'prodml23__StockTankOil' for type 'prodml23:StockTankOil' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StockTankOil (-955) #endif -/* prodml22__StartEndTime has binding name 'prodml22__StartEndTime' for type 'prodml22:StartEndTime' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndTime (-954) +/* prodml23__StartEndTime has binding name 'prodml23__StartEndTime' for type 'prodml23:StartEndTime' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndTime (-954) #endif -/* prodml22__StartEndDate has binding name 'prodml22__StartEndDate' for type 'prodml22:StartEndDate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__StartEndDate (-953) +/* prodml23__StartEndDate has binding name 'prodml23__StartEndDate' for type 'prodml23:StartEndDate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__StartEndDate (-953) #endif -/* prodml22__ServiceFluid has binding name 'prodml22__ServiceFluid' for type 'prodml22:ServiceFluid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ServiceFluid (-952) +/* prodml23__ServiceFluid has binding name 'prodml23__ServiceFluid' for type 'prodml23:ServiceFluid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ServiceFluid (-952) #endif -/* prodml22__PureFluidComponent has binding name 'prodml22__PureFluidComponent' for type 'prodml22:PureFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PureFluidComponent (-951) +/* prodml23__PureFluidComponent has binding name 'prodml23__PureFluidComponent' for type 'prodml23:PureFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PureFluidComponent (-951) #endif -/* prodml22__PseudoFluidComponent has binding name 'prodml22__PseudoFluidComponent' for type 'prodml22:PseudoFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PseudoFluidComponent (-950) +/* prodml23__PseudoFluidComponent has binding name 'prodml23__PseudoFluidComponent' for type 'prodml23:PseudoFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PseudoFluidComponent (-950) #endif -/* prodml22__ProductFluid has binding name 'prodml22__ProductFluid' for type 'prodml22:ProductFluid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFluid (-949) +/* prodml23__ProductFluid has binding name 'prodml23__ProductFluid' for type 'prodml23:ProductFluid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFluid (-949) #endif -/* prodml22__ProductFlowNetwork has binding name 'prodml22__ProductFlowNetwork' for type 'prodml22:ProductFlowNetwork' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowNetwork (-948) +/* prodml23__ProductFlowNetwork has binding name 'prodml23__ProductFlowNetwork' for type 'prodml23:ProductFlowNetwork' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowNetwork (-948) #endif -/* prodml22__ProductFlowExternalReference has binding name 'prodml22__ProductFlowExternalReference' for type 'prodml22:ProductFlowExternalReference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ProductFlowExternalReference (-947) +/* prodml23__ProductFlowExternalReference has binding name 'prodml23__ProductFlowExternalReference' for type 'prodml23:ProductFlowExternalReference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ProductFlowExternalReference (-947) #endif -/* prodml22__PlusFluidComponent has binding name 'prodml22__PlusFluidComponent' for type 'prodml22:PlusFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PlusFluidComponent (-946) +/* prodml23__PlusFluidComponent has binding name 'prodml23__PlusFluidComponent' for type 'prodml23:PlusFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PlusFluidComponent (-946) #endif -/* prodml22__OverallComposition has binding name 'prodml22__OverallComposition' for type 'prodml22:OverallComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OverallComposition (-945) +/* prodml23__OverallComposition has binding name 'prodml23__OverallComposition' for type 'prodml23:OverallComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OverallComposition (-945) #endif -/* prodml22__OffshoreLocation has binding name 'prodml22__OffshoreLocation' for type 'prodml22:OffshoreLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__OffshoreLocation (-944) +/* prodml23__OffshoreLocation has binding name 'prodml23__OffshoreLocation' for type 'prodml23:OffshoreLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__OffshoreLocation (-944) #endif -/* prodml22__NorthSeaOffshore has binding name 'prodml22__NorthSeaOffshore' for type 'prodml22:NorthSeaOffshore' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NorthSeaOffshore (-943) +/* prodml23__NorthSeaOffshore has binding name 'prodml23__NorthSeaOffshore' for type 'prodml23:NorthSeaOffshore' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NorthSeaOffshore (-943) #endif -/* prodml22__NaturalGas has binding name 'prodml22__NaturalGas' for type 'prodml22:NaturalGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__NaturalGas (-942) +/* prodml23__NaturalGas has binding name 'prodml23__NaturalGas' for type 'prodml23:NaturalGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__NaturalGas (-942) #endif -/* prodml22__MeasuredDepthCoord has binding name 'prodml22__MeasuredDepthCoord' for type 'prodml22:MeasuredDepthCoord' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord -#define SOAP_TYPE_gsoap_eml2_3_prodml22__MeasuredDepthCoord (-941) +/* prodml23__MeasuredDepthCoord has binding name 'prodml23__MeasuredDepthCoord' for type 'prodml23:MeasuredDepthCoord' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord +#define SOAP_TYPE_gsoap_eml2_3_prodml23__MeasuredDepthCoord (-941) #endif -/* prodml22__LiquidComposition has binding name 'prodml22__LiquidComposition' for type 'prodml22:LiquidComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LiquidComposition (-940) +/* prodml23__LiquidComposition has binding name 'prodml23__LiquidComposition' for type 'prodml23:LiquidComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LiquidComposition (-940) #endif -/* prodml22__KindQualifiedString has binding name 'prodml22__KindQualifiedString' for type 'prodml22:KindQualifiedString' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString -#define SOAP_TYPE_gsoap_eml2_3_prodml22__KindQualifiedString (-939) +/* prodml23__KindQualifiedString has binding name 'prodml23__KindQualifiedString' for type 'prodml23:KindQualifiedString' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString +#define SOAP_TYPE_gsoap_eml2_3_prodml23__KindQualifiedString (-939) #endif -/* prodml22__IntegerQualifiedCount has binding name 'prodml22__IntegerQualifiedCount' for type 'prodml22:IntegerQualifiedCount' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount -#define SOAP_TYPE_gsoap_eml2_3_prodml22__IntegerQualifiedCount (-938) +/* prodml23__IntegerQualifiedCount has binding name 'prodml23__IntegerQualifiedCount' for type 'prodml23:IntegerQualifiedCount' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount +#define SOAP_TYPE_gsoap_eml2_3_prodml23__IntegerQualifiedCount (-938) #endif -/* prodml22__GeographicContext has binding name 'prodml22__GeographicContext' for type 'prodml22:GeographicContext' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeographicContext (-937) +/* prodml23__GeographicContext has binding name 'prodml23__GeographicContext' for type 'prodml23:GeographicContext' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeographicContext (-937) #endif -/* prodml22__GeneralQualifiedMeasure has binding name 'prodml22__GeneralQualifiedMeasure' for type 'prodml22:GeneralQualifiedMeasure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralQualifiedMeasure (-936) +/* prodml23__GeneralQualifiedMeasure has binding name 'prodml23__GeneralQualifiedMeasure' for type 'prodml23:GeneralQualifiedMeasure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralQualifiedMeasure (-936) #endif -/* prodml22__GeneralMeasureType has binding name 'prodml22__GeneralMeasureType' for type 'prodml22:GeneralMeasureType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType -#define SOAP_TYPE_gsoap_eml2_3_prodml22__GeneralMeasureType (-935) +/* prodml23__GeneralMeasureType has binding name 'prodml23__GeneralMeasureType' for type 'prodml23:GeneralMeasureType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType +#define SOAP_TYPE_gsoap_eml2_3_prodml23__GeneralMeasureType (-935) #endif -/* prodml22__FormationWater has binding name 'prodml22__FormationWater' for type 'prodml22:FormationWater' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FormationWater (-934) +/* prodml23__FormationWater has binding name 'prodml23__FormationWater' for type 'prodml23:FormationWater' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FormationWater (-934) #endif -/* prodml22__FluidComponentFraction has binding name 'prodml22__FluidComponentFraction' for type 'prodml22:FluidComponentFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentFraction (-933) +/* prodml23__FluidComponentFraction has binding name 'prodml23__FluidComponentFraction' for type 'prodml23:FluidComponentFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentFraction (-933) #endif -/* prodml22__FluidComponentCatalog has binding name 'prodml22__FluidComponentCatalog' for type 'prodml22:FluidComponentCatalog' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentCatalog (-932) +/* prodml23__FluidComponentCatalog has binding name 'prodml23__FluidComponentCatalog' for type 'prodml23:FluidComponentCatalog' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentCatalog (-932) #endif -/* prodml22__FacilityIdentifierStruct has binding name 'prodml22__FacilityIdentifierStruct' for type 'prodml22:FacilityIdentifierStruct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifierStruct (-931) +/* prodml23__FacilityIdentifierStruct has binding name 'prodml23__FacilityIdentifierStruct' for type 'prodml23:FacilityIdentifierStruct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifierStruct (-931) #endif -/* prodml22__FacilityIdentifier has binding name 'prodml22__FacilityIdentifier' for type 'prodml22:FacilityIdentifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FacilityIdentifier (-930) +/* prodml23__FacilityIdentifier has binding name 'prodml23__FacilityIdentifier' for type 'prodml23:FacilityIdentifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FacilityIdentifier (-930) #endif -/* prodml22__EndpointQualifiedDateTime has binding name 'prodml22__EndpointQualifiedDateTime' for type 'prodml22:EndpointQualifiedDateTime' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDateTime (-929) +/* prodml23__EndpointQualifiedDateTime has binding name 'prodml23__EndpointQualifiedDateTime' for type 'prodml23:EndpointQualifiedDateTime' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDateTime (-929) #endif -/* prodml22__EndpointQualifiedDate has binding name 'prodml22__EndpointQualifiedDate' for type 'prodml22:EndpointQualifiedDate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate -#define SOAP_TYPE_gsoap_eml2_3_prodml22__EndpointQualifiedDate (-928) +/* prodml23__EndpointQualifiedDate has binding name 'prodml23__EndpointQualifiedDate' for type 'prodml23:EndpointQualifiedDate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate +#define SOAP_TYPE_gsoap_eml2_3_prodml23__EndpointQualifiedDate (-928) #endif -/* prodml22__DatedComment has binding name 'prodml22__DatedComment' for type 'prodml22:DatedComment' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DatedComment (-927) +/* prodml23__DatedComment has binding name 'prodml23__DatedComment' for type 'prodml23:DatedComment' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DatedComment (-927) #endif -/* prodml22__CalibrationParameter has binding name 'prodml22__CalibrationParameter' for type 'prodml22:CalibrationParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CalibrationParameter (-926) +/* prodml23__CalibrationParameter has binding name 'prodml23__CalibrationParameter' for type 'prodml23:CalibrationParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CalibrationParameter (-926) #endif -/* prodml22__AbstractProductQuantity has binding name 'prodml22__AbstractProductQuantity' for type 'prodml22:AbstractProductQuantity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractProductQuantity (-925) +/* prodml23__AbstractProductQuantity has binding name 'prodml23__AbstractProductQuantity' for type 'prodml23:AbstractProductQuantity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractProductQuantity (-925) #endif -/* prodml22__AbstractFluidComponent has binding name 'prodml22__AbstractFluidComponent' for type 'prodml22:AbstractFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractFluidComponent (-924) +/* prodml23__AbstractFluidComponent has binding name 'prodml23__AbstractFluidComponent' for type 'prodml23:AbstractFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractFluidComponent (-924) #endif -/* prodml22__AbstractDateTimeClass has binding name 'prodml22__AbstractDateTimeClass' for type 'prodml22:AbstractDateTimeClass' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractDateTimeClass (-923) +/* prodml23__AbstractDateTimeClass has binding name 'prodml23__AbstractDateTimeClass' for type 'prodml23:AbstractDateTimeClass' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractDateTimeClass (-923) #endif -/* prodml22__Standing_Undersaturated has binding name 'prodml22__Standing_Undersaturated' for type 'prodml22:Standing-Undersaturated' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Undersaturated (-922) +/* prodml23__Standing_Undersaturated has binding name 'prodml23__Standing_Undersaturated' for type 'prodml23:Standing-Undersaturated' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Undersaturated (-922) #endif -/* prodml22__Standing_Dead has binding name 'prodml22__Standing_Dead' for type 'prodml22:Standing-Dead' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_Dead (-921) +/* prodml23__Standing_Dead has binding name 'prodml23__Standing_Dead' for type 'prodml23:Standing-Dead' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_Dead (-921) #endif -/* prodml22__Standing_BubblePoint has binding name 'prodml22__Standing_BubblePoint' for type 'prodml22:Standing-BubblePoint' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Standing_BubblePoint (-920) +/* prodml23__Standing_BubblePoint has binding name 'prodml23__Standing_BubblePoint' for type 'prodml23:Standing-BubblePoint' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Standing_BubblePoint (-920) #endif -/* prodml22__Srk_USCOREEOS has binding name 'prodml22__Srk_USCOREEOS' for type 'prodml22:Srk_EOS' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Srk_USCOREEOS (-919) +/* prodml23__Srk_USCOREEOS has binding name 'prodml23__Srk_USCOREEOS' for type 'prodml23:Srk_EOS' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Srk_USCOREEOS (-919) #endif -/* prodml22__ReferenceSeparatorStage has binding name 'prodml22__ReferenceSeparatorStage' for type 'prodml22:ReferenceSeparatorStage' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ReferenceSeparatorStage (-918) +/* prodml23__ReferenceSeparatorStage has binding name 'prodml23__ReferenceSeparatorStage' for type 'prodml23:ReferenceSeparatorStage' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ReferenceSeparatorStage (-918) #endif -/* prodml22__PvtModelParameterSet has binding name 'prodml22__PvtModelParameterSet' for type 'prodml22:PvtModelParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameterSet (-917) +/* prodml23__PvtModelParameterSet has binding name 'prodml23__PvtModelParameterSet' for type 'prodml23:PvtModelParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameterSet (-917) #endif -/* prodml22__PvtModelParameter has binding name 'prodml22__PvtModelParameter' for type 'prodml22:PvtModelParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PvtModelParameter (-916) +/* prodml23__PvtModelParameter has binding name 'prodml23__PvtModelParameter' for type 'prodml23:PvtModelParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PvtModelParameter (-916) #endif -/* prodml22__PrsvParameter has binding name 'prodml22__PrsvParameter' for type 'prodml22:PrsvParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PrsvParameter (-915) +/* prodml23__PrsvParameter has binding name 'prodml23__PrsvParameter' for type 'prodml23:PrsvParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PrsvParameter (-915) #endif -/* prodml22__PetroskyFarshad_Undersaturated has binding name 'prodml22__PetroskyFarshad_Undersaturated' for type 'prodml22:PetroskyFarshad-Undersaturated' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Undersaturated (-914) +/* prodml23__PetroskyFarshad_Undersaturated has binding name 'prodml23__PetroskyFarshad_Undersaturated' for type 'prodml23:PetroskyFarshad-Undersaturated' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Undersaturated (-914) #endif -/* prodml22__PetroskyFarshad_Dead has binding name 'prodml22__PetroskyFarshad_Dead' for type 'prodml22:PetroskyFarshad-Dead' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_Dead (-913) +/* prodml23__PetroskyFarshad_Dead has binding name 'prodml23__PetroskyFarshad_Dead' for type 'prodml23:PetroskyFarshad-Dead' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_Dead (-913) #endif -/* prodml22__PetroskyFarshad_BubblePoint has binding name 'prodml22__PetroskyFarshad_BubblePoint' for type 'prodml22:PetroskyFarshad-BubblePoint' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PetroskyFarshad_BubblePoint (-912) +/* prodml23__PetroskyFarshad_BubblePoint has binding name 'prodml23__PetroskyFarshad_BubblePoint' for type 'prodml23:PetroskyFarshad-BubblePoint' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PetroskyFarshad_BubblePoint (-912) #endif -/* prodml22__PengRobinson78_USCOREEOS has binding name 'prodml22__PengRobinson78_USCOREEOS' for type 'prodml22:PengRobinson78_EOS' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson78_USCOREEOS (-911) +/* prodml23__PengRobinson78_USCOREEOS has binding name 'prodml23__PengRobinson78_USCOREEOS' for type 'prodml23:PengRobinson78_EOS' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson78_USCOREEOS (-911) #endif -/* prodml22__PengRobinson76_USCOREEOS has binding name 'prodml22__PengRobinson76_USCOREEOS' for type 'prodml22:PengRobinson76_EOS' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS -#define SOAP_TYPE_gsoap_eml2_3_prodml22__PengRobinson76_USCOREEOS (-910) +/* prodml23__PengRobinson76_USCOREEOS has binding name 'prodml23__PengRobinson76_USCOREEOS' for type 'prodml23:PengRobinson76_EOS' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS +#define SOAP_TYPE_gsoap_eml2_3_prodml23__PengRobinson76_USCOREEOS (-910) #endif -/* prodml22__Lucas has binding name 'prodml22__Lucas' for type 'prodml22:Lucas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Lucas (-909) +/* prodml23__Lucas has binding name 'prodml23__Lucas' for type 'prodml23:Lucas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Lucas (-909) #endif -/* prodml22__LondonoArcherBlasinggame has binding name 'prodml22__LondonoArcherBlasinggame' for type 'prodml22:LondonoArcherBlasinggame' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LondonoArcherBlasinggame (-908) +/* prodml23__LondonoArcherBlasinggame has binding name 'prodml23__LondonoArcherBlasinggame' for type 'prodml23:LondonoArcherBlasinggame' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LondonoArcherBlasinggame (-908) #endif -/* prodml22__Lohrenz_Bray_ClarkCorrelation has binding name 'prodml22__Lohrenz_Bray_ClarkCorrelation' for type 'prodml22:Lohrenz-Bray-ClarkCorrelation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation -#define SOAP_TYPE_gsoap_eml2_3_prodml22__Lohrenz_Bray_ClarkCorrelation (-907) +/* prodml23__Lohrenz_Bray_ClarkCorrelation has binding name 'prodml23__Lohrenz_Bray_ClarkCorrelation' for type 'prodml23:Lohrenz-Bray-ClarkCorrelation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation +#define SOAP_TYPE_gsoap_eml2_3_prodml23__Lohrenz_Bray_ClarkCorrelation (-907) #endif -/* prodml22__LeeGonzalez has binding name 'prodml22__LeeGonzalez' for type 'prodml22:LeeGonzalez' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez -#define SOAP_TYPE_gsoap_eml2_3_prodml22__LeeGonzalez (-906) +/* prodml23__LeeGonzalez has binding name 'prodml23__LeeGonzalez' for type 'prodml23:LeeGonzalez' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez +#define SOAP_TYPE_gsoap_eml2_3_prodml23__LeeGonzalez (-906) #endif -/* prodml22__FrictionTheory has binding name 'prodml22__FrictionTheory' for type 'prodml22:FrictionTheory' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FrictionTheory (-905) +/* prodml23__FrictionTheory has binding name 'prodml23__FrictionTheory' for type 'prodml23:FrictionTheory' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FrictionTheory (-905) #endif -/* prodml22__FluidComponentProperty has binding name 'prodml22__FluidComponentProperty' for type 'prodml22:FluidComponentProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidComponentProperty (-904) +/* prodml23__FluidComponentProperty has binding name 'prodml23__FluidComponentProperty' for type 'prodml23:FluidComponentProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidComponentProperty (-904) #endif -/* prodml22__FluidCharacterizationTableFormatSet has binding name 'prodml22__FluidCharacterizationTableFormatSet' for type 'prodml22:FluidCharacterizationTableFormatSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormatSet (-903) +/* prodml23__FluidCharacterizationTableFormatSet has binding name 'prodml23__FluidCharacterizationTableFormatSet' for type 'prodml23:FluidCharacterizationTableFormatSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormatSet (-903) #endif -/* prodml22__FluidCharacterizationTableFormat has binding name 'prodml22__FluidCharacterizationTableFormat' for type 'prodml22:FluidCharacterizationTableFormat' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableFormat (-902) +/* prodml23__FluidCharacterizationTableFormat has binding name 'prodml23__FluidCharacterizationTableFormat' for type 'prodml23:FluidCharacterizationTableFormat' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableFormat (-902) #endif -/* prodml22__FluidCharacterizationTableColumn has binding name 'prodml22__FluidCharacterizationTableColumn' for type 'prodml22:FluidCharacterizationTableColumn' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableColumn (-901) +/* prodml23__FluidCharacterizationTableColumn has binding name 'prodml23__FluidCharacterizationTableColumn' for type 'prodml23:FluidCharacterizationTableColumn' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableColumn (-901) #endif -/* prodml22__FluidCharacterizationTable has binding name 'prodml22__FluidCharacterizationTable' for type 'prodml22:FluidCharacterizationTable' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTable (-900) +/* prodml23__FluidCharacterizationTable has binding name 'prodml23__FluidCharacterizationTable' for type 'prodml23:FluidCharacterizationTable' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTable (-900) #endif -/* prodml22__FluidCharacterizationSource has binding name 'prodml22__FluidCharacterizationSource' for type 'prodml22:FluidCharacterizationSource' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationSource (-899) +/* prodml23__FluidCharacterizationSource has binding name 'prodml23__FluidCharacterizationSource' for type 'prodml23:FluidCharacterizationSource' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationSource (-899) #endif -/* prodml22__FluidCharacterizationParameterSet has binding name 'prodml22__FluidCharacterizationParameterSet' for type 'prodml22:FluidCharacterizationParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameterSet (-898) +/* prodml23__FluidCharacterizationParameterSet has binding name 'prodml23__FluidCharacterizationParameterSet' for type 'prodml23:FluidCharacterizationParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameterSet (-898) #endif -/* prodml22__FluidCharacterizationParameter has binding name 'prodml22__FluidCharacterizationParameter' for type 'prodml22:FluidCharacterizationParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationParameter (-897) +/* prodml23__FluidCharacterizationParameter has binding name 'prodml23__FluidCharacterizationParameter' for type 'prodml23:FluidCharacterizationParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationParameter (-897) #endif -/* prodml22__FluidCharacterizationModel has binding name 'prodml22__FluidCharacterizationModel' for type 'prodml22:FluidCharacterizationModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationModel (-896) +/* prodml23__FluidCharacterizationModel has binding name 'prodml23__FluidCharacterizationModel' for type 'prodml23:FluidCharacterizationModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationModel (-896) #endif -/* prodml22__FluidCharacterization has binding name 'prodml22__FluidCharacterization' for type 'prodml22:FluidCharacterization' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterization (-895) +/* prodml23__FluidCharacterization has binding name 'prodml23__FluidCharacterization' for type 'prodml23:FluidCharacterization' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterization (-895) #endif -/* prodml22__DindorukChristman_Undersaturated has binding name 'prodml22__DindorukChristman_Undersaturated' for type 'prodml22:DindorukChristman-Undersaturated' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Undersaturated (-894) +/* prodml23__DindorukChristman_Undersaturated has binding name 'prodml23__DindorukChristman_Undersaturated' for type 'prodml23:DindorukChristman-Undersaturated' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Undersaturated (-894) #endif -/* prodml22__DindorukChristman_Dead has binding name 'prodml22__DindorukChristman_Dead' for type 'prodml22:DindorukChristman-Dead' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_Dead (-893) +/* prodml23__DindorukChristman_Dead has binding name 'prodml23__DindorukChristman_Dead' for type 'prodml23:DindorukChristman-Dead' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_Dead (-893) #endif -/* prodml22__DindorukChristman_BubblePoint has binding name 'prodml22__DindorukChristman_BubblePoint' for type 'prodml22:DindorukChristman-BubblePoint' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DindorukChristman_BubblePoint (-892) +/* prodml23__DindorukChristman_BubblePoint has binding name 'prodml23__DindorukChristman_BubblePoint' for type 'prodml23:DindorukChristman-BubblePoint' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DindorukChristman_BubblePoint (-892) #endif -/* prodml22__DeGhetto_Undersaturated has binding name 'prodml22__DeGhetto_Undersaturated' for type 'prodml22:DeGhetto-Undersaturated' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Undersaturated (-891) +/* prodml23__DeGhetto_Undersaturated has binding name 'prodml23__DeGhetto_Undersaturated' for type 'prodml23:DeGhetto-Undersaturated' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Undersaturated (-891) #endif -/* prodml22__DeGhetto_Dead has binding name 'prodml22__DeGhetto_Dead' for type 'prodml22:DeGhetto-Dead' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_Dead (-890) +/* prodml23__DeGhetto_Dead has binding name 'prodml23__DeGhetto_Dead' for type 'prodml23:DeGhetto-Dead' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_Dead (-890) #endif -/* prodml22__DeGhetto_BubblePoint has binding name 'prodml22__DeGhetto_BubblePoint' for type 'prodml22:DeGhetto-BubblePoint' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__DeGhetto_BubblePoint (-889) +/* prodml23__DeGhetto_BubblePoint has binding name 'prodml23__DeGhetto_BubblePoint' for type 'prodml23:DeGhetto-BubblePoint' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__DeGhetto_BubblePoint (-889) #endif -/* prodml22__CustomPvtModelParameter has binding name 'prodml22__CustomPvtModelParameter' for type 'prodml22:CustomPvtModelParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelParameter (-888) +/* prodml23__CustomPvtModelParameter has binding name 'prodml23__CustomPvtModelParameter' for type 'prodml23:CustomPvtModelParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelParameter (-888) #endif -/* prodml22__CustomPvtModelExtension has binding name 'prodml22__CustomPvtModelExtension' for type 'prodml22:CustomPvtModelExtension' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CustomPvtModelExtension (-887) +/* prodml23__CustomPvtModelExtension has binding name 'prodml23__CustomPvtModelExtension' for type 'prodml23:CustomPvtModelExtension' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CustomPvtModelExtension (-887) #endif -/* prodml22__CSPedersen87 has binding name 'prodml22__CSPedersen87' for type 'prodml22:CSPedersen87' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen87 (-886) +/* prodml23__CSPedersen87 has binding name 'prodml23__CSPedersen87' for type 'prodml23:CSPedersen87' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen87 (-886) #endif -/* prodml22__CSPedersen84 has binding name 'prodml22__CSPedersen84' for type 'prodml22:CSPedersen84' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CSPedersen84 (-885) +/* prodml23__CSPedersen84 has binding name 'prodml23__CSPedersen84' for type 'prodml23:CSPedersen84' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CSPedersen84 (-885) #endif -/* prodml22__CorrelationThermalModel has binding name 'prodml22__CorrelationThermalModel' for type 'prodml22:CorrelationThermalModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CorrelationThermalModel (-884) +/* prodml23__CorrelationThermalModel has binding name 'prodml23__CorrelationThermalModel' for type 'prodml23:CorrelationThermalModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CorrelationThermalModel (-884) #endif -/* prodml22__CompositionalThermalModel has binding name 'prodml22__CompositionalThermalModel' for type 'prodml22:CompositionalThermalModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CompositionalThermalModel (-883) +/* prodml23__CompositionalThermalModel has binding name 'prodml23__CompositionalThermalModel' for type 'prodml23:CompositionalThermalModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CompositionalThermalModel (-883) #endif -/* prodml22__ComponentPropertySet has binding name 'prodml22__ComponentPropertySet' for type 'prodml22:ComponentPropertySet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__ComponentPropertySet (-882) +/* prodml23__ComponentPropertySet has binding name 'prodml23__ComponentPropertySet' for type 'prodml23:ComponentPropertySet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__ComponentPropertySet (-882) #endif -/* prodml22__CarrDempsey has binding name 'prodml22__CarrDempsey' for type 'prodml22:CarrDempsey' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey -#define SOAP_TYPE_gsoap_eml2_3_prodml22__CarrDempsey (-881) +/* prodml23__CarrDempsey has binding name 'prodml23__CarrDempsey' for type 'prodml23:CarrDempsey' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey +#define SOAP_TYPE_gsoap_eml2_3_prodml23__CarrDempsey (-881) #endif -/* prodml22__BinaryInteractionCoefficientSet has binding name 'prodml22__BinaryInteractionCoefficientSet' for type 'prodml22:BinaryInteractionCoefficientSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficientSet (-880) +/* prodml23__BinaryInteractionCoefficientSet has binding name 'prodml23__BinaryInteractionCoefficientSet' for type 'prodml23:BinaryInteractionCoefficientSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficientSet (-880) #endif -/* prodml22__BinaryInteractionCoefficient has binding name 'prodml22__BinaryInteractionCoefficient' for type 'prodml22:BinaryInteractionCoefficient' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BinaryInteractionCoefficient (-879) +/* prodml23__BinaryInteractionCoefficient has binding name 'prodml23__BinaryInteractionCoefficient' for type 'prodml23:BinaryInteractionCoefficient' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BinaryInteractionCoefficient (-879) #endif -/* prodml22__BergmanSutton_BubblePoint has binding name 'prodml22__BergmanSutton_BubblePoint' for type 'prodml22:BergmanSutton-BubblePoint' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BergmanSutton_BubblePoint (-878) +/* prodml23__BergmanSutton_BubblePoint has binding name 'prodml23__BergmanSutton_BubblePoint' for type 'prodml23:BergmanSutton-BubblePoint' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BergmanSutton_BubblePoint (-878) #endif -/* prodml22__BerganSutton_Dead has binding name 'prodml22__BerganSutton_Dead' for type 'prodml22:BerganSutton-Dead' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BerganSutton_Dead (-877) +/* prodml23__BerganSutton_Dead has binding name 'prodml23__BerganSutton_Dead' for type 'prodml23:BerganSutton-Dead' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BerganSutton_Dead (-877) #endif -/* prodml22__BerganAndSutton_Undersaturated has binding name 'prodml22__BerganAndSutton_Undersaturated' for type 'prodml22:BerganAndSutton-Undersaturated' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated -#define SOAP_TYPE_gsoap_eml2_3_prodml22__BerganAndSutton_Undersaturated (-876) +/* prodml23__BerganAndSutton_Undersaturated has binding name 'prodml23__BerganAndSutton_Undersaturated' for type 'prodml23:BerganAndSutton-Undersaturated' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated +#define SOAP_TYPE_gsoap_eml2_3_prodml23__BerganAndSutton_Undersaturated (-876) #endif -/* prodml22__AbstractPvtModel has binding name 'prodml22__AbstractPvtModel' for type 'prodml22:AbstractPvtModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractPvtModel (-875) +/* prodml23__AbstractPvtModel has binding name 'prodml23__AbstractPvtModel' for type 'prodml23:AbstractPvtModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractPvtModel (-875) #endif -/* prodml22__AbstractCorrelationViscosityUndersaturatedModel has binding name 'prodml22__AbstractCorrelationViscosityUndersaturatedModel' for type 'prodml22:AbstractCorrelationViscosityUndersaturatedModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityUndersaturatedModel (-874) +/* prodml23__AbstractCorrelationViscosityUndersaturatedModel has binding name 'prodml23__AbstractCorrelationViscosityUndersaturatedModel' for type 'prodml23:AbstractCorrelationViscosityUndersaturatedModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityUndersaturatedModel (-874) #endif -/* prodml22__AbstractCorrelationViscosityModel has binding name 'prodml22__AbstractCorrelationViscosityModel' for type 'prodml22:AbstractCorrelationViscosityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityModel (-873) +/* prodml23__AbstractCorrelationViscosityModel has binding name 'prodml23__AbstractCorrelationViscosityModel' for type 'prodml23:AbstractCorrelationViscosityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityModel (-873) #endif -/* prodml22__AbstractCorrelationViscosityBubblePointModel has binding name 'prodml22__AbstractCorrelationViscosityBubblePointModel' for type 'prodml22:AbstractCorrelationViscosityBubblePointModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityBubblePointModel (-872) +/* prodml23__AbstractCorrelationViscosityBubblePointModel has binding name 'prodml23__AbstractCorrelationViscosityBubblePointModel' for type 'prodml23:AbstractCorrelationViscosityBubblePointModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityBubblePointModel (-872) #endif -/* prodml22__AbstractCorrelationGasViscosityModel has binding name 'prodml22__AbstractCorrelationGasViscosityModel' for type 'prodml22:AbstractCorrelationGasViscosityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationGasViscosityModel (-871) +/* prodml23__AbstractCorrelationGasViscosityModel has binding name 'prodml23__AbstractCorrelationGasViscosityModel' for type 'prodml23:AbstractCorrelationGasViscosityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationGasViscosityModel (-871) #endif -/* prodml22__AbstractCompositionalViscosityModel has binding name 'prodml22__AbstractCompositionalViscosityModel' for type 'prodml22:AbstractCompositionalViscosityModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalViscosityModel (-870) +/* prodml23__AbstractCompositionalViscosityModel has binding name 'prodml23__AbstractCompositionalViscosityModel' for type 'prodml23:AbstractCompositionalViscosityModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalViscosityModel (-870) #endif -/* prodml22__AbstractCompositionalEoSModel has binding name 'prodml22__AbstractCompositionalEoSModel' for type 'prodml22:AbstractCompositionalEoSModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalEoSModel (-869) +/* prodml23__AbstractCompositionalEoSModel has binding name 'prodml23__AbstractCompositionalEoSModel' for type 'prodml23:AbstractCompositionalEoSModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalEoSModel (-869) #endif -/* prodml22__FluidCharacterizationTableRow has binding name 'prodml22__FluidCharacterizationTableRow' for type 'prodml22:FluidCharacterizationTableRow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow -#define SOAP_TYPE_gsoap_eml2_3_prodml22__FluidCharacterizationTableRow (-868) +/* prodml23__FluidCharacterizationTableRow has binding name 'prodml23__FluidCharacterizationTableRow' for type 'prodml23:FluidCharacterizationTableRow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow +#define SOAP_TYPE_gsoap_eml2_3_prodml23__FluidCharacterizationTableRow (-868) #endif -/* prodml22__AbstractCorrelationViscosityDeadModel has binding name 'prodml22__AbstractCorrelationViscosityDeadModel' for type 'prodml22:AbstractCorrelationViscosityDeadModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationViscosityDeadModel (-867) +/* prodml23__AbstractCorrelationViscosityDeadModel has binding name 'prodml23__AbstractCorrelationViscosityDeadModel' for type 'prodml23:AbstractCorrelationViscosityDeadModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationViscosityDeadModel (-867) #endif -/* prodml22__AbstractCorrelationModel has binding name 'prodml22__AbstractCorrelationModel' for type 'prodml22:AbstractCorrelationModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCorrelationModel (-866) +/* prodml23__AbstractCorrelationModel has binding name 'prodml23__AbstractCorrelationModel' for type 'prodml23:AbstractCorrelationModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCorrelationModel (-866) #endif -/* prodml22__AbstractCompositionalModel has binding name 'prodml22__AbstractCompositionalModel' for type 'prodml22:AbstractCompositionalModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel -#define SOAP_TYPE_gsoap_eml2_3_prodml22__AbstractCompositionalModel (-865) +/* prodml23__AbstractCompositionalModel has binding name 'prodml23__AbstractCompositionalModel' for type 'prodml23:AbstractCompositionalModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel +#define SOAP_TYPE_gsoap_eml2_3_prodml23__AbstractCompositionalModel (-865) #endif @@ -93917,9 +94050,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__PrsvParameter * has binding name 'PointerToprodml22__PrsvParameter' for type 'prodml22:PrsvParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PrsvParameter (-3453) +/* prodml23__PrsvParameter * has binding name 'PointerToprodml23__PrsvParameter' for type 'prodml23:PrsvParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PrsvParameter (-3453) #endif @@ -94109,363 +94242,363 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__AngleBetweenBoundaries * has binding name 'PointerToprodml22__AngleBetweenBoundaries' for type 'prodml22:AngleBetweenBoundaries' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AngleBetweenBoundaries (-3405) +/* prodml23__AngleBetweenBoundaries * has binding name 'PointerToprodml23__AngleBetweenBoundaries' for type 'prodml23:AngleBetweenBoundaries' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AngleBetweenBoundaries (-3405) #endif -/* prodml22__DistanceToPinchOut * has binding name 'PointerToprodml22__DistanceToPinchOut' for type 'prodml22:DistanceToPinchOut' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToPinchOut (-3404) +/* prodml23__DistanceToPinchOut * has binding name 'PointerToprodml23__DistanceToPinchOut' for type 'prodml23:DistanceToPinchOut' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToPinchOut (-3404) #endif -/* prodml22__DistanceMidPerforationsToBottomBoundary * has binding name 'PointerToprodml22__DistanceMidPerforationsToBottomBoundary' for type 'prodml22:DistanceMidPerforationsToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidPerforationsToBottomBoundary (-3403) +/* prodml23__DistanceMidPerforationsToBottomBoundary * has binding name 'PointerToprodml23__DistanceMidPerforationsToBottomBoundary' for type 'prodml23:DistanceMidPerforationsToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidPerforationsToBottomBoundary (-3403) #endif -/* prodml22__PerforatedLength * has binding name 'PointerToprodml22__PerforatedLength' for type 'prodml22:PerforatedLength' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PerforatedLength (-3402) +/* prodml23__PerforatedLength * has binding name 'PointerToprodml23__PerforatedLength' for type 'prodml23:PerforatedLength' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PerforatedLength (-3402) #endif -/* prodml22__ReservoirZoneSubModel * has binding name 'PointerToprodml22__ReservoirZoneSubModel' for type 'prodml22:ReservoirZoneSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirZoneSubModel (-3400) +/* prodml23__ReservoirZoneSubModel * has binding name 'PointerToprodml23__ReservoirZoneSubModel' for type 'prodml23:ReservoirZoneSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirZoneSubModel (-3400) #endif -/* prodml22__DistributedParametersSubModel * has binding name 'PointerToprodml22__DistributedParametersSubModel' for type 'prodml22:DistributedParametersSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistributedParametersSubModel (-3399) +/* prodml23__DistributedParametersSubModel * has binding name 'PointerToprodml23__DistributedParametersSubModel' for type 'prodml23:DistributedParametersSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistributedParametersSubModel (-3399) #endif -/* prodml22__InternalFaultSubModel * has binding name 'PointerToprodml22__InternalFaultSubModel' for type 'prodml22:InternalFaultSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InternalFaultSubModel (-3397) +/* prodml23__InternalFaultSubModel * has binding name 'PointerToprodml23__InternalFaultSubModel' for type 'prodml23:InternalFaultSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InternalFaultSubModel (-3397) #endif -/* prodml22__SingleBoundarySubModel * has binding name 'PointerToprodml22__SingleBoundarySubModel' for type 'prodml22:SingleBoundarySubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleBoundarySubModel (-3395) +/* prodml23__SingleBoundarySubModel * has binding name 'PointerToprodml23__SingleBoundarySubModel' for type 'prodml23:SingleBoundarySubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleBoundarySubModel (-3395) #endif -/* prodml22__FaultConductivity * has binding name 'PointerToprodml22__FaultConductivity' for type 'prodml22:FaultConductivity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FaultConductivity (-3394) +/* prodml23__FaultConductivity * has binding name 'PointerToprodml23__FaultConductivity' for type 'prodml23:FaultConductivity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FaultConductivity (-3394) #endif -/* prodml22__Region2Thickness * has binding name 'PointerToprodml22__Region2Thickness' for type 'prodml22:Region2Thickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Region2Thickness (-3393) +/* prodml23__Region2Thickness * has binding name 'PointerToprodml23__Region2Thickness' for type 'prodml23:Region2Thickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Region2Thickness (-3393) #endif -/* prodml22__OrientationOfLinearFront * has binding name 'PointerToprodml22__OrientationOfLinearFront' for type 'prodml22:OrientationOfLinearFront' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfLinearFront (-3392) +/* prodml23__OrientationOfLinearFront * has binding name 'PointerToprodml23__OrientationOfLinearFront' for type 'prodml23:OrientationOfLinearFront' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfLinearFront (-3392) #endif -/* prodml22__DistanceToMobilityInterface * has binding name 'PointerToprodml22__DistanceToMobilityInterface' for type 'prodml22:DistanceToMobilityInterface' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToMobilityInterface (-3391) +/* prodml23__DistanceToMobilityInterface * has binding name 'PointerToprodml23__DistanceToMobilityInterface' for type 'prodml23:DistanceToMobilityInterface' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToMobilityInterface (-3391) #endif -/* prodml22__InnerToOuterZoneDiffusivityRatio * has binding name 'PointerToprodml22__InnerToOuterZoneDiffusivityRatio' for type 'prodml22:InnerToOuterZoneDiffusivityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneDiffusivityRatio (-3390) +/* prodml23__InnerToOuterZoneDiffusivityRatio * has binding name 'PointerToprodml23__InnerToOuterZoneDiffusivityRatio' for type 'prodml23:InnerToOuterZoneDiffusivityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneDiffusivityRatio (-3390) #endif -/* prodml22__InnerToOuterZoneMobilityRatio * has binding name 'PointerToprodml22__InnerToOuterZoneMobilityRatio' for type 'prodml22:InnerToOuterZoneMobilityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InnerToOuterZoneMobilityRatio (-3389) +/* prodml23__InnerToOuterZoneMobilityRatio * has binding name 'PointerToprodml23__InnerToOuterZoneMobilityRatio' for type 'prodml23:InnerToOuterZoneMobilityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InnerToOuterZoneMobilityRatio (-3389) #endif -/* prodml22__SingleFractureSubModel * has binding name 'PointerToprodml22__SingleFractureSubModel' for type 'prodml22:SingleFractureSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SingleFractureSubModel (-3387) +/* prodml23__SingleFractureSubModel * has binding name 'PointerToprodml23__SingleFractureSubModel' for type 'prodml23:SingleFractureSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SingleFractureSubModel (-3387) #endif -/* prodml22__FractureAngleToWellbore * has binding name 'PointerToprodml22__FractureAngleToWellbore' for type 'prodml22:FractureAngleToWellbore' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureAngleToWellbore (-3386) +/* prodml23__FractureAngleToWellbore * has binding name 'PointerToprodml23__FractureAngleToWellbore' for type 'prodml23:FractureAngleToWellbore' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureAngleToWellbore (-3386) #endif -/* prodml22__NumberOfFractures * has binding name 'PointerToprodml22__NumberOfFractures' for type 'prodml22:NumberOfFractures' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NumberOfFractures (-3385) +/* prodml23__NumberOfFractures * has binding name 'PointerToprodml23__NumberOfFractures' for type 'prodml23:NumberOfFractures' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NumberOfFractures (-3385) #endif -/* prodml22__DistanceWellboreToBottomBoundary * has binding name 'PointerToprodml22__DistanceWellboreToBottomBoundary' for type 'prodml22:DistanceWellboreToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceWellboreToBottomBoundary (-3384) +/* prodml23__DistanceWellboreToBottomBoundary * has binding name 'PointerToprodml23__DistanceWellboreToBottomBoundary' for type 'prodml23:DistanceWellboreToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceWellboreToBottomBoundary (-3384) #endif -/* prodml22__LengthHorizontalWellboreFlowing * has binding name 'PointerToprodml22__LengthHorizontalWellboreFlowing' for type 'prodml22:LengthHorizontalWellboreFlowing' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LengthHorizontalWellboreFlowing (-3383) +/* prodml23__LengthHorizontalWellboreFlowing * has binding name 'PointerToprodml23__LengthHorizontalWellboreFlowing' for type 'prodml23:LengthHorizontalWellboreFlowing' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LengthHorizontalWellboreFlowing (-3383) #endif -/* prodml22__OrientationWellTrajectory * has binding name 'PointerToprodml22__OrientationWellTrajectory' for type 'prodml22:OrientationWellTrajectory' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationWellTrajectory (-3382) +/* prodml23__OrientationWellTrajectory * has binding name 'PointerToprodml23__OrientationWellTrajectory' for type 'prodml23:OrientationWellTrajectory' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationWellTrajectory (-3382) #endif -/* prodml22__MechanicalSkinRelativeToTotalThickness * has binding name 'PointerToprodml22__MechanicalSkinRelativeToTotalThickness' for type 'prodml22:MechanicalSkinRelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MechanicalSkinRelativeToTotalThickness (-3381) +/* prodml23__MechanicalSkinRelativeToTotalThickness * has binding name 'PointerToprodml23__MechanicalSkinRelativeToTotalThickness' for type 'prodml23:MechanicalSkinRelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MechanicalSkinRelativeToTotalThickness (-3381) #endif -/* prodml22__ConvergenceSkinRelativeToTotalThickness * has binding name 'PointerToprodml22__ConvergenceSkinRelativeToTotalThickness' for type 'prodml22:ConvergenceSkinRelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConvergenceSkinRelativeToTotalThickness (-3380) +/* prodml23__ConvergenceSkinRelativeToTotalThickness * has binding name 'PointerToprodml23__ConvergenceSkinRelativeToTotalThickness' for type 'prodml23:ConvergenceSkinRelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConvergenceSkinRelativeToTotalThickness (-3380) #endif -/* prodml22__DistanceFractureToBottomBoundary * has binding name 'PointerToprodml22__DistanceFractureToBottomBoundary' for type 'prodml22:DistanceFractureToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceFractureToBottomBoundary (-3379) +/* prodml23__DistanceFractureToBottomBoundary * has binding name 'PointerToprodml23__DistanceFractureToBottomBoundary' for type 'prodml23:DistanceFractureToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceFractureToBottomBoundary (-3379) #endif -/* prodml22__FractureRadius * has binding name 'PointerToprodml22__FractureRadius' for type 'prodml22:FractureRadius' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureRadius (-3378) +/* prodml23__FractureRadius * has binding name 'PointerToprodml23__FractureRadius' for type 'prodml23:FractureRadius' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureRadius (-3378) #endif -/* prodml22__OrientationOfFracturePlane * has binding name 'PointerToprodml22__OrientationOfFracturePlane' for type 'prodml22:OrientationOfFracturePlane' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfFracturePlane (-3377) +/* prodml23__OrientationOfFracturePlane * has binding name 'PointerToprodml23__OrientationOfFracturePlane' for type 'prodml23:OrientationOfFracturePlane' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfFracturePlane (-3377) #endif -/* prodml22__FractureHalfLength * has binding name 'PointerToprodml22__FractureHalfLength' for type 'prodml22:FractureHalfLength' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHalfLength (-3376) +/* prodml23__FractureHalfLength * has binding name 'PointerToprodml23__FractureHalfLength' for type 'prodml23:FractureHalfLength' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHalfLength (-3376) #endif -/* prodml22__SkinLayer2RelativeToTotalThickness * has binding name 'PointerToprodml22__SkinLayer2RelativeToTotalThickness' for type 'prodml22:SkinLayer2RelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinLayer2RelativeToTotalThickness (-3375) +/* prodml23__SkinLayer2RelativeToTotalThickness * has binding name 'PointerToprodml23__SkinLayer2RelativeToTotalThickness' for type 'prodml23:SkinLayer2RelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinLayer2RelativeToTotalThickness (-3375) #endif -/* prodml22__Layer2Thickness * has binding name 'PointerToprodml22__Layer2Thickness' for type 'prodml22:Layer2Thickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Layer2Thickness (-3374) +/* prodml23__Layer2Thickness * has binding name 'PointerToprodml23__Layer2Thickness' for type 'prodml23:Layer2Thickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Layer2Thickness (-3374) #endif -/* prodml22__RatioLayer1ToTotalPermeabilityThicknessProduct * has binding name 'PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct' for type 'prodml22:RatioLayer1ToTotalPermeabilityThicknessProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioLayer1ToTotalPermeabilityThicknessProduct (-3373) +/* prodml23__RatioLayer1ToTotalPermeabilityThicknessProduct * has binding name 'PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct' for type 'prodml23:RatioLayer1ToTotalPermeabilityThicknessProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioLayer1ToTotalPermeabilityThicknessProduct (-3373) #endif -/* prodml22__StorativityRatio * has binding name 'PointerToprodml22__StorativityRatio' for type 'prodml22:StorativityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StorativityRatio (-3372) +/* prodml23__StorativityRatio * has binding name 'PointerToprodml23__StorativityRatio' for type 'prodml23:StorativityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StorativityRatio (-3372) #endif -/* prodml22__ModelName * has binding name 'PointerToprodml22__ModelName' for type 'prodml22:ModelName' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ModelName (-3371) +/* prodml23__ModelName * has binding name 'PointerToprodml23__ModelName' for type 'prodml23:ModelName' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ModelName (-3371) #endif -/* prodml22__OrientationOfNormalToBoundary1 * has binding name 'PointerToprodml22__OrientationOfNormalToBoundary1' for type 'prodml22:OrientationOfNormalToBoundary1' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1 -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfNormalToBoundary1 (-3370) +/* prodml23__OrientationOfNormalToBoundary1 * has binding name 'PointerToprodml23__OrientationOfNormalToBoundary1' for type 'prodml23:OrientationOfNormalToBoundary1' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1 +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfNormalToBoundary1 (-3370) #endif -/* prodml22__DistanceToBoundary4 * has binding name 'PointerToprodml22__DistanceToBoundary4' for type 'prodml22:DistanceToBoundary4' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4 -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary4 (-3369) +/* prodml23__DistanceToBoundary4 * has binding name 'PointerToprodml23__DistanceToBoundary4' for type 'prodml23:DistanceToBoundary4' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4 +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary4 (-3369) #endif -/* prodml22__DistanceToBoundary3 * has binding name 'PointerToprodml22__DistanceToBoundary3' for type 'prodml22:DistanceToBoundary3' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3 -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary3 (-3368) +/* prodml23__DistanceToBoundary3 * has binding name 'PointerToprodml23__DistanceToBoundary3' for type 'prodml23:DistanceToBoundary3' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3 +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary3 (-3368) #endif -/* prodml22__DistanceToBoundary2 * has binding name 'PointerToprodml22__DistanceToBoundary2' for type 'prodml22:DistanceToBoundary2' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2 -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary2 (-3367) +/* prodml23__DistanceToBoundary2 * has binding name 'PointerToprodml23__DistanceToBoundary2' for type 'prodml23:DistanceToBoundary2' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2 +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary2 (-3367) #endif -/* prodml22__DistanceToBoundary1 * has binding name 'PointerToprodml22__DistanceToBoundary1' for type 'prodml22:DistanceToBoundary1' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1 -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceToBoundary1 (-3366) +/* prodml23__DistanceToBoundary1 * has binding name 'PointerToprodml23__DistanceToBoundary1' for type 'prodml23:DistanceToBoundary1' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1 +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceToBoundary1 (-3366) #endif -/* prodml22__PoreVolumeMeasured * has binding name 'PointerToprodml22__PoreVolumeMeasured' for type 'prodml22:PoreVolumeMeasured' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeMeasured (-3365) +/* prodml23__PoreVolumeMeasured * has binding name 'PointerToprodml23__PoreVolumeMeasured' for type 'prodml23:PoreVolumeMeasured' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeMeasured (-3365) #endif -/* prodml22__DrainageAreaMeasured * has binding name 'PointerToprodml22__DrainageAreaMeasured' for type 'prodml22:DrainageAreaMeasured' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DrainageAreaMeasured (-3364) +/* prodml23__DrainageAreaMeasured * has binding name 'PointerToprodml23__DrainageAreaMeasured' for type 'prodml23:DrainageAreaMeasured' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DrainageAreaMeasured (-3364) #endif -/* prodml22__LeakSkin * has binding name 'PointerToprodml22__LeakSkin' for type 'prodml22:LeakSkin' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LeakSkin (-3363) +/* prodml23__LeakSkin * has binding name 'PointerToprodml23__LeakSkin' for type 'prodml23:LeakSkin' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LeakSkin (-3363) #endif -/* prodml22__DeltaTimeStorageChanges * has binding name 'PointerToprodml22__DeltaTimeStorageChanges' for type 'prodml22:DeltaTimeStorageChanges' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaTimeStorageChanges (-3362) +/* prodml23__DeltaTimeStorageChanges * has binding name 'PointerToprodml23__DeltaTimeStorageChanges' for type 'prodml23:DeltaTimeStorageChanges' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaTimeStorageChanges (-3362) #endif -/* prodml22__RatioInitialToFinalWellboreStorage * has binding name 'PointerToprodml22__RatioInitialToFinalWellboreStorage' for type 'prodml22:RatioInitialToFinalWellboreStorage' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioInitialToFinalWellboreStorage (-3361) +/* prodml23__RatioInitialToFinalWellboreStorage * has binding name 'PointerToprodml23__RatioInitialToFinalWellboreStorage' for type 'prodml23:RatioInitialToFinalWellboreStorage' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioInitialToFinalWellboreStorage (-3361) #endif -/* prodml22__FlowTestMeasurementSet * has binding name 'PointerToprodml22__FlowTestMeasurementSet' for type 'prodml22:FlowTestMeasurementSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestMeasurementSet (-3359) +/* prodml23__FlowTestMeasurementSet * has binding name 'PointerToprodml23__FlowTestMeasurementSet' for type 'prodml23:FlowTestMeasurementSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestMeasurementSet (-3359) #endif -/* prodml22__WaterSampleComponent * has binding name 'PointerToprodml22__WaterSampleComponent' for type 'prodml22:WaterSampleComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterSampleComponent (-3357) +/* prodml23__WaterSampleComponent * has binding name 'PointerToprodml23__WaterSampleComponent' for type 'prodml23:WaterSampleComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterSampleComponent (-3357) #endif -/* prodml22__WaterAnalysisTest * has binding name 'PointerToprodml22__WaterAnalysisTest' for type 'prodml22:WaterAnalysisTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTest (-3355) +/* prodml23__WaterAnalysisTest * has binding name 'PointerToprodml23__WaterAnalysisTest' for type 'prodml23:WaterAnalysisTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTest (-3355) #endif -/* prodml22__NonHydrocarbonTest * has binding name 'PointerToprodml22__NonHydrocarbonTest' for type 'prodml22:NonHydrocarbonTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonHydrocarbonTest (-3353) +/* prodml23__NonHydrocarbonTest * has binding name 'PointerToprodml23__NonHydrocarbonTest' for type 'prodml23:NonHydrocarbonTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonHydrocarbonTest (-3353) #endif -/* prodml22__InterfacialTensionTest * has binding name 'PointerToprodml22__InterfacialTensionTest' for type 'prodml22:InterfacialTensionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTest (-3351) +/* prodml23__InterfacialTensionTest * has binding name 'PointerToprodml23__InterfacialTensionTest' for type 'prodml23:InterfacialTensionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTest (-3351) #endif -/* prodml22__STOAnalysis * has binding name 'PointerToprodml22__STOAnalysis' for type 'prodml22:STOAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOAnalysis (-3349) +/* prodml23__STOAnalysis * has binding name 'PointerToprodml23__STOAnalysis' for type 'prodml23:STOAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOAnalysis (-3349) #endif -/* prodml22__MultipleContactMiscibilityTest * has binding name 'PointerToprodml22__MultipleContactMiscibilityTest' for type 'prodml22:MultipleContactMiscibilityTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MultipleContactMiscibilityTest (-3347) +/* prodml23__MultipleContactMiscibilityTest * has binding name 'PointerToprodml23__MultipleContactMiscibilityTest' for type 'prodml23:MultipleContactMiscibilityTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MultipleContactMiscibilityTest (-3347) #endif -/* prodml22__SlimTubeTest * has binding name 'PointerToprodml22__SlimTubeTest' for type 'prodml22:SlimTubeTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTest (-3345) +/* prodml23__SlimTubeTest * has binding name 'PointerToprodml23__SlimTubeTest' for type 'prodml23:SlimTubeTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTest (-3345) #endif -/* prodml22__SwellingTest * has binding name 'PointerToprodml22__SwellingTest' for type 'prodml22:SwellingTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTest (-3343) +/* prodml23__SwellingTest * has binding name 'PointerToprodml23__SwellingTest' for type 'prodml23:SwellingTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTest (-3343) #endif -/* prodml22__VaporLiquidEquilibriumTest * has binding name 'PointerToprodml22__VaporLiquidEquilibriumTest' for type 'prodml22:VaporLiquidEquilibriumTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporLiquidEquilibriumTest (-3341) +/* prodml23__VaporLiquidEquilibriumTest * has binding name 'PointerToprodml23__VaporLiquidEquilibriumTest' for type 'prodml23:VaporLiquidEquilibriumTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporLiquidEquilibriumTest (-3341) #endif -/* prodml22__OtherMeasurementTest * has binding name 'PointerToprodml22__OtherMeasurementTest' for type 'prodml22:OtherMeasurementTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTest (-3339) +/* prodml23__OtherMeasurementTest * has binding name 'PointerToprodml23__OtherMeasurementTest' for type 'prodml23:OtherMeasurementTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTest (-3339) #endif -/* prodml22__FluidSeparatorTest * has binding name 'PointerToprodml22__FluidSeparatorTest' for type 'prodml22:FluidSeparatorTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTest (-3337) +/* prodml23__FluidSeparatorTest * has binding name 'PointerToprodml23__FluidSeparatorTest' for type 'prodml23:FluidSeparatorTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTest (-3337) #endif -/* prodml22__ConstantVolumeDepletionTest * has binding name 'PointerToprodml22__ConstantVolumeDepletionTest' for type 'prodml22:ConstantVolumeDepletionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantVolumeDepletionTest (-3335) +/* prodml23__ConstantVolumeDepletionTest * has binding name 'PointerToprodml23__ConstantVolumeDepletionTest' for type 'prodml23:ConstantVolumeDepletionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantVolumeDepletionTest (-3335) #endif -/* prodml22__DifferentialLiberationTest * has binding name 'PointerToprodml22__DifferentialLiberationTest' for type 'prodml22:DifferentialLiberationTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DifferentialLiberationTest (-3333) +/* prodml23__DifferentialLiberationTest * has binding name 'PointerToprodml23__DifferentialLiberationTest' for type 'prodml23:DifferentialLiberationTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DifferentialLiberationTest (-3333) #endif -/* prodml22__SaturationTest * has binding name 'PointerToprodml22__SaturationTest' for type 'prodml22:SaturationTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTest (-3331) +/* prodml23__SaturationTest * has binding name 'PointerToprodml23__SaturationTest' for type 'prodml23:SaturationTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTest (-3331) #endif -/* prodml22__ConstantCompositionExpansionTest * has binding name 'PointerToprodml22__ConstantCompositionExpansionTest' for type 'prodml22:ConstantCompositionExpansionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTest (-3329) +/* prodml23__ConstantCompositionExpansionTest * has binding name 'PointerToprodml23__ConstantCompositionExpansionTest' for type 'prodml23:ConstantCompositionExpansionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTest (-3329) #endif -/* prodml22__AtmosphericFlashTestAndCompositionalAnalysis * has binding name 'PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis' for type 'prodml22:AtmosphericFlashTestAndCompositionalAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis (-3327) +/* prodml23__AtmosphericFlashTestAndCompositionalAnalysis * has binding name 'PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis' for type 'prodml23:AtmosphericFlashTestAndCompositionalAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis (-3327) #endif -/* prodml22__SampleIntegrityAndPreparation * has binding name 'PointerToprodml22__SampleIntegrityAndPreparation' for type 'prodml22:SampleIntegrityAndPreparation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleIntegrityAndPreparation (-3326) +/* prodml23__SampleIntegrityAndPreparation * has binding name 'PointerToprodml23__SampleIntegrityAndPreparation' for type 'prodml23:SampleIntegrityAndPreparation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleIntegrityAndPreparation (-3326) #endif -/* prodml22__SaturationKind * has binding name 'PointerToprodml22__SaturationKind' for type 'prodml22:SaturationKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationKind (-3325) +/* prodml23__SaturationKind * has binding name 'PointerToprodml23__SaturationKind' for type 'prodml23:SaturationKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationKind (-3325) #endif @@ -95123,63 +95256,63 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__TimeSeriesThreshold * has binding name 'PointerToprodml22__TimeSeriesThreshold' for type 'prodml22:TimeSeriesThreshold' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesThreshold (-3184) +/* prodml23__TimeSeriesThreshold * has binding name 'PointerToprodml23__TimeSeriesThreshold' for type 'prodml23:TimeSeriesThreshold' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesThreshold (-3184) #endif -/* prodml22__EndpointDateTime * has binding name 'PointerToprodml22__EndpointDateTime' for type 'prodml22:EndpointDateTime' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointDateTime (-3183) +/* prodml23__EndpointDateTime * has binding name 'PointerToprodml23__EndpointDateTime' for type 'prodml23:EndpointDateTime' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointDateTime (-3183) #endif -/* prodml22__AbstractValue * has binding name 'PointerToprodml22__AbstractValue' for type 'prodml22:AbstractValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractValue (-3181) +/* prodml23__AbstractValue * has binding name 'PointerToprodml23__AbstractValue' for type 'prodml23:AbstractValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractValue (-3181) #endif -/* prodml22__KeywordValueStruct * has binding name 'PointerToprodml22__KeywordValueStruct' for type 'prodml22:KeywordValueStruct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KeywordValueStruct (-3179) +/* prodml23__KeywordValueStruct * has binding name 'PointerToprodml23__KeywordValueStruct' for type 'prodml23:KeywordValueStruct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KeywordValueStruct (-3179) #endif -/* prodml22__TimeSeriesStringSample * has binding name 'PointerToprodml22__TimeSeriesStringSample' for type 'prodml22:TimeSeriesStringSample' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesStringSample (-3178) +/* prodml23__TimeSeriesStringSample * has binding name 'PointerToprodml23__TimeSeriesStringSample' for type 'prodml23:TimeSeriesStringSample' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesStringSample (-3178) #endif -/* prodml22__TimeSeriesDoubleSample * has binding name 'PointerToprodml22__TimeSeriesDoubleSample' for type 'prodml22:TimeSeriesDoubleSample' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesDoubleSample (-3177) +/* prodml23__TimeSeriesDoubleSample * has binding name 'PointerToprodml23__TimeSeriesDoubleSample' for type 'prodml23:TimeSeriesDoubleSample' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesDoubleSample (-3177) #endif -/* prodml22__ProductFlowNetwork * has binding name 'PointerToprodml22__ProductFlowNetwork' for type 'prodml22:ProductFlowNetwork' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetwork (-3174) +/* prodml23__ProductFlowNetwork * has binding name 'PointerToprodml23__ProductFlowNetwork' for type 'prodml23:ProductFlowNetwork' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetwork (-3174) #endif -/* prodml22__ProductFlowExternalReference * has binding name 'PointerToprodml22__ProductFlowExternalReference' for type 'prodml22:ProductFlowExternalReference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalReference (-3172) +/* prodml23__ProductFlowExternalReference * has binding name 'PointerToprodml23__ProductFlowExternalReference' for type 'prodml23:ProductFlowExternalReference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalReference (-3172) #endif -/* prodml22__KindQualifiedString * has binding name 'PointerToprodml22__KindQualifiedString' for type 'prodml22:KindQualifiedString' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__KindQualifiedString (-3171) +/* prodml23__KindQualifiedString * has binding name 'PointerToprodml23__KindQualifiedString' for type 'prodml23:KindQualifiedString' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__KindQualifiedString (-3171) #endif -/* prodml22__ProductVolumeFacility * has binding name 'PointerToprodml22__ProductVolumeFacility' for type 'prodml22:ProductVolumeFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFacility (-3168) +/* prodml23__ProductVolumeFacility * has binding name 'PointerToprodml23__ProductVolumeFacility' for type 'prodml23:ProductVolumeFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFacility (-3168) #endif @@ -95189,51 +95322,51 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__CalculationMethod * has binding name 'PointerToprodml22__CalculationMethod' for type 'prodml22:CalculationMethod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalculationMethod (-3166) +/* prodml23__CalculationMethod * has binding name 'PointerToprodml23__CalculationMethod' for type 'prodml23:CalculationMethod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalculationMethod (-3166) #endif -/* prodml22__EndpointQualifiedDateTime * has binding name 'PointerToprodml22__EndpointQualifiedDateTime' for type 'prodml22:EndpointQualifiedDateTime' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifiedDateTime (-3165) +/* prodml23__EndpointQualifiedDateTime * has binding name 'PointerToprodml23__EndpointQualifiedDateTime' for type 'prodml23:EndpointQualifiedDateTime' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifiedDateTime (-3165) #endif -/* prodml22__IntegerQualifiedCount * has binding name 'PointerToprodml22__IntegerQualifiedCount' for type 'prodml22:IntegerQualifiedCount' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__IntegerQualifiedCount (-3164) +/* prodml23__IntegerQualifiedCount * has binding name 'PointerToprodml23__IntegerQualifiedCount' for type 'prodml23:IntegerQualifiedCount' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__IntegerQualifiedCount (-3164) #endif -/* prodml22__FluidSampleAcquisition * has binding name 'PointerToprodml22__FluidSampleAcquisition' for type 'prodml22:FluidSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisition (-3161) +/* prodml23__FluidSampleAcquisition * has binding name 'PointerToprodml23__FluidSampleAcquisition' for type 'prodml23:FluidSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisition (-3161) #endif -/* prodml22__SampleRecombinationSpecification * has binding name 'PointerToprodml22__SampleRecombinationSpecification' for type 'prodml22:SampleRecombinationSpecification' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRecombinationSpecification (-3160) +/* prodml23__SampleRecombinationSpecification * has binding name 'PointerToprodml23__SampleRecombinationSpecification' for type 'prodml23:SampleRecombinationSpecification' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRecombinationSpecification (-3160) #endif -/* prodml22__FluidSampleAcquisitionJobSource * has binding name 'PointerToprodml22__FluidSampleAcquisitionJobSource' for type 'prodml22:FluidSampleAcquisitionJobSource' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleAcquisitionJobSource (-3159) +/* prodml23__FluidSampleAcquisitionJobSource * has binding name 'PointerToprodml23__FluidSampleAcquisitionJobSource' for type 'prodml23:FluidSampleAcquisitionJobSource' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleAcquisitionJobSource (-3159) #endif -/* prodml22__FluidSampleChainOfCustodyEvent * has binding name 'PointerToprodml22__FluidSampleChainOfCustodyEvent' for type 'prodml22:FluidSampleChainOfCustodyEvent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleChainOfCustodyEvent (-3157) +/* prodml23__FluidSampleChainOfCustodyEvent * has binding name 'PointerToprodml23__FluidSampleChainOfCustodyEvent' for type 'prodml23:FluidSampleChainOfCustodyEvent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleChainOfCustodyEvent (-3157) #endif -/* std::string * has binding name 'PointerToprodml22__FluidSampleKindExt' for type 'prodml22:FluidSampleKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSampleKindExt (-3156) +/* std::string * has binding name 'PointerToprodml23__FluidSampleKindExt' for type 'prodml23:FluidSampleKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSampleKindExt (-3156) #endif @@ -95261,183 +95394,183 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__WellboreStorageMechanismType * has binding name 'PointerToprodml22__WellboreStorageMechanismType' for type 'prodml22:WellboreStorageMechanismType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageMechanismType (-3151) +/* prodml23__WellboreStorageMechanismType * has binding name 'PointerToprodml23__WellboreStorageMechanismType' for type 'prodml23:WellboreStorageMechanismType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageMechanismType (-3151) #endif -/* prodml22__WellboreDeviationAngle * has binding name 'PointerToprodml22__WellboreDeviationAngle' for type 'prodml22:WellboreDeviationAngle' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreDeviationAngle (-3150) +/* prodml23__WellboreDeviationAngle * has binding name 'PointerToprodml23__WellboreDeviationAngle' for type 'prodml23:WellboreDeviationAngle' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreDeviationAngle (-3150) #endif -/* prodml22__FluidDensity * has binding name 'PointerToprodml22__FluidDensity' for type 'prodml22:FluidDensity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDensity (-3149) +/* prodml23__FluidDensity * has binding name 'PointerToprodml23__FluidDensity' for type 'prodml23:FluidDensity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDensity (-3149) #endif -/* prodml22__TubingInteralDiameter * has binding name 'PointerToprodml22__TubingInteralDiameter' for type 'prodml22:TubingInteralDiameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TubingInteralDiameter (-3148) +/* prodml23__TubingInteralDiameter * has binding name 'PointerToprodml23__TubingInteralDiameter' for type 'prodml23:TubingInteralDiameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TubingInteralDiameter (-3148) #endif -/* prodml22__WellboreFluidCompressibility * has binding name 'PointerToprodml22__WellboreFluidCompressibility' for type 'prodml22:WellboreFluidCompressibility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreFluidCompressibility (-3147) +/* prodml23__WellboreFluidCompressibility * has binding name 'PointerToprodml23__WellboreFluidCompressibility' for type 'prodml23:WellboreFluidCompressibility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreFluidCompressibility (-3147) #endif -/* prodml22__WellboreVolume * has binding name 'PointerToprodml22__WellboreVolume' for type 'prodml22:WellboreVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreVolume (-3146) +/* prodml23__WellboreVolume * has binding name 'PointerToprodml23__WellboreVolume' for type 'prodml23:WellboreVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreVolume (-3146) #endif -/* prodml22__WellboreStorageCoefficient * has binding name 'PointerToprodml22__WellboreStorageCoefficient' for type 'prodml22:WellboreStorageCoefficient' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreStorageCoefficient (-3145) +/* prodml23__WellboreStorageCoefficient * has binding name 'PointerToprodml23__WellboreStorageCoefficient' for type 'prodml23:WellboreStorageCoefficient' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreStorageCoefficient (-3145) #endif -/* prodml22__WellboreRadius * has binding name 'PointerToprodml22__WellboreRadius' for type 'prodml22:WellboreRadius' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreRadius (-3144) +/* prodml23__WellboreRadius * has binding name 'PointerToprodml23__WellboreRadius' for type 'prodml23:WellboreRadius' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreRadius (-3144) #endif -/* prodml22__LowerBoundaryType * has binding name 'PointerToprodml22__LowerBoundaryType' for type 'prodml22:LowerBoundaryType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LowerBoundaryType (-3143) +/* prodml23__LowerBoundaryType * has binding name 'PointerToprodml23__LowerBoundaryType' for type 'prodml23:LowerBoundaryType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LowerBoundaryType (-3143) #endif -/* prodml22__UpperBoundaryType * has binding name 'PointerToprodml22__UpperBoundaryType' for type 'prodml22:UpperBoundaryType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__UpperBoundaryType (-3142) +/* prodml23__UpperBoundaryType * has binding name 'PointerToprodml23__UpperBoundaryType' for type 'prodml23:UpperBoundaryType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__UpperBoundaryType (-3142) #endif -/* prodml22__OrientationOfAnisotropyXDirection * has binding name 'PointerToprodml22__OrientationOfAnisotropyXDirection' for type 'prodml22:OrientationOfAnisotropyXDirection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrientationOfAnisotropyXDirection (-3141) +/* prodml23__OrientationOfAnisotropyXDirection * has binding name 'PointerToprodml23__OrientationOfAnisotropyXDirection' for type 'prodml23:OrientationOfAnisotropyXDirection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrientationOfAnisotropyXDirection (-3141) #endif -/* prodml22__HorizontalAnisotropyKxToKy * has binding name 'PointerToprodml22__HorizontalAnisotropyKxToKy' for type 'prodml22:HorizontalAnisotropyKxToKy' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalAnisotropyKxToKy (-3140) +/* prodml23__HorizontalAnisotropyKxToKy * has binding name 'PointerToprodml23__HorizontalAnisotropyKxToKy' for type 'prodml23:HorizontalAnisotropyKxToKy' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalAnisotropyKxToKy (-3140) #endif -/* prodml22__VerticalAnisotropyKvToKr * has binding name 'PointerToprodml22__VerticalAnisotropyKvToKr' for type 'prodml22:VerticalAnisotropyKvToKr' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VerticalAnisotropyKvToKr (-3139) +/* prodml23__VerticalAnisotropyKvToKr * has binding name 'PointerToprodml23__VerticalAnisotropyKvToKr' for type 'prodml23:VerticalAnisotropyKvToKr' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VerticalAnisotropyKvToKr (-3139) #endif -/* prodml22__AveragePressure * has binding name 'PointerToprodml22__AveragePressure' for type 'prodml22:AveragePressure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AveragePressure (-3138) +/* prodml23__AveragePressure * has binding name 'PointerToprodml23__AveragePressure' for type 'prodml23:AveragePressure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AveragePressure (-3138) #endif -/* prodml22__PressureDatumTVD * has binding name 'PointerToprodml22__PressureDatumTVD' for type 'prodml22:PressureDatumTVD' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PressureDatumTVD (-3137) +/* prodml23__PressureDatumTVD * has binding name 'PointerToprodml23__PressureDatumTVD' for type 'prodml23:PressureDatumTVD' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PressureDatumTVD (-3137) #endif -/* prodml22__InitialPressure * has binding name 'PointerToprodml22__InitialPressure' for type 'prodml22:InitialPressure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InitialPressure (-3136) +/* prodml23__InitialPressure * has binding name 'PointerToprodml23__InitialPressure' for type 'prodml23:InitialPressure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InitialPressure (-3136) #endif -/* prodml22__PermeabilityThicknessProduct * has binding name 'PointerToprodml22__PermeabilityThicknessProduct' for type 'prodml22:PermeabilityThicknessProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PermeabilityThicknessProduct (-3135) +/* prodml23__PermeabilityThicknessProduct * has binding name 'PointerToprodml23__PermeabilityThicknessProduct' for type 'prodml23:PermeabilityThicknessProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PermeabilityThicknessProduct (-3135) #endif -/* prodml22__RatioDpSkinToTotalDrawdown * has binding name 'PointerToprodml22__RatioDpSkinToTotalDrawdown' for type 'prodml22:RatioDpSkinToTotalDrawdown' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RatioDpSkinToTotalDrawdown (-3134) +/* prodml23__RatioDpSkinToTotalDrawdown * has binding name 'PointerToprodml23__RatioDpSkinToTotalDrawdown' for type 'prodml23:RatioDpSkinToTotalDrawdown' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RatioDpSkinToTotalDrawdown (-3134) #endif -/* prodml22__DeltaPressureTotalSkin * has binding name 'PointerToprodml22__DeltaPressureTotalSkin' for type 'prodml22:DeltaPressureTotalSkin' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeltaPressureTotalSkin (-3133) +/* prodml23__DeltaPressureTotalSkin * has binding name 'PointerToprodml23__DeltaPressureTotalSkin' for type 'prodml23:DeltaPressureTotalSkin' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeltaPressureTotalSkin (-3133) #endif -/* prodml22__RateDependentSkinFactor * has binding name 'PointerToprodml22__RateDependentSkinFactor' for type 'prodml22:RateDependentSkinFactor' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RateDependentSkinFactor (-3132) +/* prodml23__RateDependentSkinFactor * has binding name 'PointerToprodml23__RateDependentSkinFactor' for type 'prodml23:RateDependentSkinFactor' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RateDependentSkinFactor (-3132) #endif -/* prodml22__SkinRelativeToTotalThickness * has binding name 'PointerToprodml22__SkinRelativeToTotalThickness' for type 'prodml22:SkinRelativeToTotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SkinRelativeToTotalThickness (-3131) +/* prodml23__SkinRelativeToTotalThickness * has binding name 'PointerToprodml23__SkinRelativeToTotalThickness' for type 'prodml23:SkinRelativeToTotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SkinRelativeToTotalThickness (-3131) #endif -/* prodml22__PoreVolumeOfInvestigation * has binding name 'PointerToprodml22__PoreVolumeOfInvestigation' for type 'prodml22:PoreVolumeOfInvestigation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PoreVolumeOfInvestigation (-3130) +/* prodml23__PoreVolumeOfInvestigation * has binding name 'PointerToprodml23__PoreVolumeOfInvestigation' for type 'prodml23:PoreVolumeOfInvestigation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PoreVolumeOfInvestigation (-3130) #endif -/* prodml22__RadiusOfInvestigation * has binding name 'PointerToprodml22__RadiusOfInvestigation' for type 'prodml22:RadiusOfInvestigation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RadiusOfInvestigation (-3129) +/* prodml23__RadiusOfInvestigation * has binding name 'PointerToprodml23__RadiusOfInvestigation' for type 'prodml23:RadiusOfInvestigation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RadiusOfInvestigation (-3129) #endif -/* prodml22__OutputFlowData * has binding name 'PointerToprodml22__OutputFlowData' for type 'prodml22:OutputFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputFlowData (-3128) +/* prodml23__OutputFlowData * has binding name 'PointerToprodml23__OutputFlowData' for type 'prodml23:OutputFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputFlowData (-3128) #endif -/* prodml22__AbstractDeconvolutionOutput * has binding name 'PointerToprodml22__AbstractDeconvolutionOutput' for type 'prodml22:AbstractDeconvolutionOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDeconvolutionOutput (-3126) +/* prodml23__AbstractDeconvolutionOutput * has binding name 'PointerToprodml23__AbstractDeconvolutionOutput' for type 'prodml23:AbstractDeconvolutionOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDeconvolutionOutput (-3126) #endif -/* prodml22__DeconvolvedFlowData * has binding name 'PointerToprodml22__DeconvolvedFlowData' for type 'prodml22:DeconvolvedFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedFlowData (-3125) +/* prodml23__DeconvolvedFlowData * has binding name 'PointerToprodml23__DeconvolvedFlowData' for type 'prodml23:DeconvolvedFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedFlowData (-3125) #endif -/* prodml22__AbstractFlowTestData * has binding name 'PointerToprodml22__AbstractFlowTestData' for type 'prodml22:AbstractFlowTestData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFlowTestData (-3122) +/* prodml23__AbstractFlowTestData * has binding name 'PointerToprodml23__AbstractFlowTestData' for type 'prodml23:AbstractFlowTestData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFlowTestData (-3122) #endif -/* prodml22__SpecializedAnalysis * has binding name 'PointerToprodml22__SpecializedAnalysis' for type 'prodml22:SpecializedAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SpecializedAnalysis (-3120) +/* prodml23__SpecializedAnalysis * has binding name 'PointerToprodml23__SpecializedAnalysis' for type 'prodml23:SpecializedAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SpecializedAnalysis (-3120) #endif -/* prodml22__AbstractRateHistory * has binding name 'PointerToprodml22__AbstractRateHistory' for type 'prodml22:AbstractRateHistory' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRateHistory (-3119) +/* prodml23__AbstractRateHistory * has binding name 'PointerToprodml23__AbstractRateHistory' for type 'prodml23:AbstractRateHistory' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRateHistory (-3119) #endif -/* prodml22__LogLogAnalysis * has binding name 'PointerToprodml22__LogLogAnalysis' for type 'prodml22:LogLogAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LogLogAnalysis (-3118) +/* prodml23__LogLogAnalysis * has binding name 'PointerToprodml23__LogLogAnalysis' for type 'prodml23:LogLogAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LogLogAnalysis (-3118) #endif @@ -95447,75 +95580,75 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__InterferingFlowTestInterval * has binding name 'PointerToprodml22__InterferingFlowTestInterval' for type 'prodml22:InterferingFlowTestInterval' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterferingFlowTestInterval (-3115) +/* prodml23__CompressibilityParameters * has binding name 'PointerToprodml23__CompressibilityParameters' for type 'prodml23:CompressibilityParameters' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CompressibilityParameters (-3116) #endif -/* prodml22__CompressibilityParameters * has binding name 'PointerToprodml22__CompressibilityParameters' for type 'prodml22:CompressibilityParameters' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CompressibilityParameters (-3114) +/* prodml23__AbstractAnalysis * has binding name 'PointerToprodml23__AbstractAnalysis' for type 'prodml23:AbstractAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractAnalysis (-3115) #endif -/* prodml22__AbstractAnalysis * has binding name 'PointerToprodml22__AbstractAnalysis' for type 'prodml22:AbstractAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractAnalysis (-3113) +/* prodml23__InterferingFlowTestInterval * has binding name 'PointerToprodml23__InterferingFlowTestInterval' for type 'prodml23:InterferingFlowTestInterval' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterferingFlowTestInterval (-3113) #endif -/* prodml22__PseudoPressureEffectApplied * has binding name 'PointerToprodml22__PseudoPressureEffectApplied' for type 'prodml22:PseudoPressureEffectApplied' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoPressureEffectApplied (-3112) +/* prodml23__PseudoPressureEffectApplied * has binding name 'PointerToprodml23__PseudoPressureEffectApplied' for type 'prodml23:PseudoPressureEffectApplied' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoPressureEffectApplied (-3112) #endif -/* prodml22__LayerModel * has binding name 'PointerToprodml22__LayerModel' for type 'prodml22:LayerModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerModel (-3110) +/* prodml23__LayerModel * has binding name 'PointerToprodml23__LayerModel' for type 'prodml23:LayerModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerModel (-3110) #endif -/* prodml22__WellboreBaseModel * has binding name 'PointerToprodml22__WellboreBaseModel' for type 'prodml22:WellboreBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellboreBaseModel (-3109) +/* prodml23__WellboreBaseModel * has binding name 'PointerToprodml23__WellboreBaseModel' for type 'prodml23:WellboreBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellboreBaseModel (-3109) #endif -/* prodml22__DeconvolutionOutput * has binding name 'PointerToprodml22__DeconvolutionOutput' for type 'prodml22:DeconvolutionOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolutionOutput (-3108) +/* prodml23__DeconvolutionOutput * has binding name 'PointerToprodml23__DeconvolutionOutput' for type 'prodml23:DeconvolutionOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolutionOutput (-3108) #endif -/* prodml22__Channel * has binding name 'PointerToprodml22__Channel' for type 'prodml22:Channel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Channel (-3106) +/* prodml23__Channel * has binding name 'PointerToprodml23__Channel' for type 'prodml23:Channel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Channel (-3106) #endif -/* prodml22__FluidPhaseKind * has binding name 'PointerToprodml22__FluidPhaseKind' for type 'prodml22:FluidPhaseKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidPhaseKind (-3104) +/* prodml23__FluidPhaseKind * has binding name 'PointerToprodml23__FluidPhaseKind' for type 'prodml23:FluidPhaseKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidPhaseKind (-3104) #endif -/* prodml22__ReservoirLifeCycleState * has binding name 'PointerToprodml22__ReservoirLifeCycleState' for type 'prodml22:ReservoirLifeCycleState' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirLifeCycleState (-3103) +/* prodml23__ReservoirLifeCycleState * has binding name 'PointerToprodml23__ReservoirLifeCycleState' for type 'prodml23:ReservoirLifeCycleState' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirLifeCycleState (-3103) #endif -/* prodml22__SampleContaminant * has binding name 'PointerToprodml22__SampleContaminant' for type 'prodml22:SampleContaminant' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleContaminant (-3101) +/* prodml23__SampleContaminant * has binding name 'PointerToprodml23__SampleContaminant' for type 'prodml23:SampleContaminant' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleContaminant (-3101) #endif -/* prodml22__FluidAnalysisReport * has binding name 'PointerToprodml22__FluidAnalysisReport' for type 'prodml22:FluidAnalysisReport' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisReport (-3099) +/* prodml23__FluidAnalysisReport * has binding name 'PointerToprodml23__FluidAnalysisReport' for type 'prodml23:FluidAnalysisReport' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisReport (-3099) #endif @@ -95531,39 +95664,39 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__ValueStatus * has binding name 'PointerToprodml22__ValueStatus' for type 'prodml22:ValueStatus' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ValueStatus (-3096) +/* prodml23__ValueStatus * has binding name 'PointerToprodml23__ValueStatus' for type 'prodml23:ValueStatus' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ValueStatus (-3096) #endif -/* prodml22__FluidCharacterizationModel * has binding name 'PointerToprodml22__FluidCharacterizationModel' for type 'prodml22:FluidCharacterizationModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationModel (-3094) +/* prodml23__FluidCharacterizationModel * has binding name 'PointerToprodml23__FluidCharacterizationModel' for type 'prodml23:FluidCharacterizationModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationModel (-3094) #endif -/* prodml22__FluidCharacterizationSource * has binding name 'PointerToprodml22__FluidCharacterizationSource' for type 'prodml22:FluidCharacterizationSource' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationSource (-3092) +/* prodml23__FluidCharacterizationSource * has binding name 'PointerToprodml23__FluidCharacterizationSource' for type 'prodml23:FluidCharacterizationSource' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationSource (-3092) #endif -/* prodml22__BinaryInteractionCoefficientSet * has binding name 'PointerToprodml22__BinaryInteractionCoefficientSet' for type 'prodml22:BinaryInteractionCoefficientSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficientSet (-3091) +/* prodml23__BinaryInteractionCoefficientSet * has binding name 'PointerToprodml23__BinaryInteractionCoefficientSet' for type 'prodml23:BinaryInteractionCoefficientSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficientSet (-3091) #endif -/* prodml22__ComponentPropertySet * has binding name 'PointerToprodml22__ComponentPropertySet' for type 'prodml22:ComponentPropertySet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ComponentPropertySet (-3090) +/* prodml23__ComponentPropertySet * has binding name 'PointerToprodml23__ComponentPropertySet' for type 'prodml23:ComponentPropertySet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ComponentPropertySet (-3090) #endif -/* prodml22__MixingRule * has binding name 'PointerToprodml22__MixingRule' for type 'prodml22:MixingRule' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MixingRule (-3089) +/* prodml23__MixingRule * has binding name 'PointerToprodml23__MixingRule' for type 'prodml23:MixingRule' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MixingRule (-3089) #endif @@ -96581,183 +96714,183 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__EndpointQuantity * has binding name 'PointerToprodml22__EndpointQuantity' for type 'prodml22:EndpointQuantity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQuantity (-2844) +/* prodml23__EndpointQuantity * has binding name 'PointerToprodml23__EndpointQuantity' for type 'prodml23:EndpointQuantity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQuantity (-2844) #endif -/* prodml22__RelativeCoordinate * has binding name 'PointerToprodml22__RelativeCoordinate' for type 'prodml22:RelativeCoordinate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeCoordinate (-2843) +/* prodml23__RelativeCoordinate * has binding name 'PointerToprodml23__RelativeCoordinate' for type 'prodml23:RelativeCoordinate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeCoordinate (-2843) #endif -/* prodml22__ProductFlowPort * has binding name 'PointerToprodml22__ProductFlowPort' for type 'prodml22:ProductFlowPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPort (-2841) +/* prodml23__ProductFlowPort * has binding name 'PointerToprodml23__ProductFlowPort' for type 'prodml23:ProductFlowPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPort (-2841) #endif -/* prodml22__ProductFlowExpectedUnitProperty * has binding name 'PointerToprodml22__ProductFlowExpectedUnitProperty' for type 'prodml22:ProductFlowExpectedUnitProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExpectedUnitProperty (-2838) +/* prodml23__ProductFlowExpectedUnitProperty * has binding name 'PointerToprodml23__ProductFlowExpectedUnitProperty' for type 'prodml23:ProductFlowExpectedUnitProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExpectedUnitProperty (-2838) #endif -/* prodml22__ConnectedNode * has binding name 'PointerToprodml22__ConnectedNode' for type 'prodml22:ConnectedNode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConnectedNode (-2836) +/* prodml23__ConnectedNode * has binding name 'PointerToprodml23__ConnectedNode' for type 'prodml23:ConnectedNode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConnectedNode (-2836) #endif -/* prodml22__ProductFlowQualifierExpected * has binding name 'PointerToprodml22__ProductFlowQualifierExpected' for type 'prodml22:ProductFlowQualifierExpected' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowQualifierExpected (-2834) +/* prodml23__ProductFlowQualifierExpected * has binding name 'PointerToprodml23__ProductFlowQualifierExpected' for type 'prodml23:ProductFlowQualifierExpected' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowQualifierExpected (-2834) #endif -/* prodml22__ExpectedFlowQualifier * has binding name 'PointerToprodml22__ExpectedFlowQualifier' for type 'prodml22:ExpectedFlowQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ExpectedFlowQualifier (-2833) +/* prodml23__ExpectedFlowQualifier * has binding name 'PointerToprodml23__ExpectedFlowQualifier' for type 'prodml23:ExpectedFlowQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ExpectedFlowQualifier (-2833) #endif -/* prodml22__GeneralMeasureType * has binding name 'PointerToprodml22__GeneralMeasureType' for type 'prodml22:GeneralMeasureType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeneralMeasureType (-2832) +/* prodml23__GeneralMeasureType * has binding name 'PointerToprodml23__GeneralMeasureType' for type 'prodml23:GeneralMeasureType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeneralMeasureType (-2832) #endif -/* prodml22__AbstractRelatedFacilityObject * has binding name 'PointerToprodml22__AbstractRelatedFacilityObject' for type 'prodml22:AbstractRelatedFacilityObject' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRelatedFacilityObject (-2831) +/* prodml23__AbstractRelatedFacilityObject * has binding name 'PointerToprodml23__AbstractRelatedFacilityObject' for type 'prodml23:AbstractRelatedFacilityObject' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRelatedFacilityObject (-2831) #endif -/* prodml22__ProductVolumePeriod * has binding name 'PointerToprodml22__ProductVolumePeriod' for type 'prodml22:ProductVolumePeriod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePeriod (-2829) +/* prodml23__ProductVolumePeriod * has binding name 'PointerToprodml23__ProductVolumePeriod' for type 'prodml23:ProductVolumePeriod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePeriod (-2829) #endif -/* prodml22__AbstractRefProductFlow * has binding name 'PointerToprodml22__AbstractRefProductFlow' for type 'prodml22:AbstractRefProductFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractRefProductFlow (-2828) +/* prodml23__AbstractRefProductFlow * has binding name 'PointerToprodml23__AbstractRefProductFlow' for type 'prodml23:AbstractRefProductFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractRefProductFlow (-2828) #endif -/* float * has binding name 'PointerToprodml22__NonNegativeFraction' for type 'prodml22:NonNegativeFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NonNegativeFraction (-2827) +/* float * has binding name 'PointerToprodml23__NonNegativeFraction' for type 'prodml23:NonNegativeFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NonNegativeFraction (-2827) #endif -/* prodml22__AbstractDateTimeClass * has binding name 'PointerToprodml22__AbstractDateTimeClass' for type 'prodml22:AbstractDateTimeClass' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractDateTimeClass (-2826) +/* prodml23__AbstractDateTimeClass * has binding name 'PointerToprodml23__AbstractDateTimeClass' for type 'prodml23:AbstractDateTimeClass' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractDateTimeClass (-2826) #endif -/* prodml22__ProductVolumeBalanceSet * has binding name 'PointerToprodml22__ProductVolumeBalanceSet' for type 'prodml22:ProductVolumeBalanceSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceSet (-2824) +/* prodml23__ProductVolumeBalanceSet * has binding name 'PointerToprodml23__ProductVolumeBalanceSet' for type 'prodml23:ProductVolumeBalanceSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceSet (-2824) #endif -/* prodml22__ProductVolumeAlert * has binding name 'PointerToprodml22__ProductVolumeAlert' for type 'prodml22:ProductVolumeAlert' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeAlert (-2823) +/* prodml23__ProductVolumeAlert * has binding name 'PointerToprodml23__ProductVolumeAlert' for type 'prodml23:ProductVolumeAlert' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeAlert (-2823) #endif -/* prodml22__AbstractMeasureData * has binding name 'PointerToprodml22__AbstractMeasureData' for type 'prodml22:AbstractMeasureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractMeasureData (-2821) +/* prodml23__AbstractMeasureData * has binding name 'PointerToprodml23__AbstractMeasureData' for type 'prodml23:AbstractMeasureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractMeasureData (-2821) #endif -/* prodml22__CurveDefinition * has binding name 'PointerToprodml22__CurveDefinition' for type 'prodml22:CurveDefinition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CurveDefinition (-2819) +/* prodml23__CurveDefinition * has binding name 'PointerToprodml23__CurveDefinition' for type 'prodml23:CurveDefinition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CurveDefinition (-2819) #endif -/* prodml22__ProductVolumeParameterValue * has binding name 'PointerToprodml22__ProductVolumeParameterValue' for type 'prodml22:ProductVolumeParameterValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterValue (-2817) +/* prodml23__ProductVolumeParameterValue * has binding name 'PointerToprodml23__ProductVolumeParameterValue' for type 'prodml23:ProductVolumeParameterValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterValue (-2817) #endif -/* prodml22__ReportingDurationKind * has binding name 'PointerToprodml22__ReportingDurationKind' for type 'prodml22:ReportingDurationKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingDurationKind (-2816) +/* prodml23__ReportingDurationKind * has binding name 'PointerToprodml23__ReportingDurationKind' for type 'prodml23:ReportingDurationKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingDurationKind (-2816) #endif -/* std::string * has binding name 'PointerToprodml22__ProdmlRelativeIdentifier' for type 'prodml22:ProdmlRelativeIdentifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProdmlRelativeIdentifier (-2815) +/* std::string * has binding name 'PointerToprodml23__ProdmlRelativeIdentifier' for type 'prodml23:ProdmlRelativeIdentifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProdmlRelativeIdentifier (-2815) #endif -/* prodml22__ProductVolumeProduct * has binding name 'PointerToprodml22__ProductVolumeProduct' for type 'prodml22:ProductVolumeProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeProduct (-2813) +/* prodml23__ProductVolumeProduct * has binding name 'PointerToprodml23__ProductVolumeProduct' for type 'prodml23:ProductVolumeProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeProduct (-2813) #endif -/* prodml22__ProductVolumeRelatedFacility * has binding name 'PointerToprodml22__ProductVolumeRelatedFacility' for type 'prodml22:ProductVolumeRelatedFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeRelatedFacility (-2812) +/* prodml23__ProductVolumeRelatedFacility * has binding name 'PointerToprodml23__ProductVolumeRelatedFacility' for type 'prodml23:ProductVolumeRelatedFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeRelatedFacility (-2812) #endif -/* prodml22__FlowSubQualifier * has binding name 'PointerToprodml22__FlowSubQualifier' for type 'prodml22:FlowSubQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowSubQualifier (-2811) +/* prodml23__FlowSubQualifier * has binding name 'PointerToprodml23__FlowSubQualifier' for type 'prodml23:FlowSubQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowSubQualifier (-2811) #endif -/* prodml22__FlowQualifier * has binding name 'PointerToprodml22__FlowQualifier' for type 'prodml22:FlowQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowQualifier (-2810) +/* prodml23__FlowQualifier * has binding name 'PointerToprodml23__FlowQualifier' for type 'prodml23:FlowQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowQualifier (-2810) #endif -/* prodml22__ProductFlowPortType * has binding name 'PointerToprodml22__ProductFlowPortType' for type 'prodml22:ProductFlowPortType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowPortType (-2809) +/* prodml23__ProductFlowPortType * has binding name 'PointerToprodml23__ProductFlowPortType' for type 'prodml23:ProductFlowPortType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowPortType (-2809) #endif -/* prodml22__DatedComment * has binding name 'PointerToprodml22__DatedComment' for type 'prodml22:DatedComment' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DatedComment (-2807) +/* prodml23__DatedComment * has binding name 'PointerToprodml23__DatedComment' for type 'prodml23:DatedComment' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DatedComment (-2807) #endif -/* prodml22__ProductVolumeParameterSet * has binding name 'PointerToprodml22__ProductVolumeParameterSet' for type 'prodml22:ProductVolumeParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeParameterSet (-2805) +/* prodml23__ProductVolumeParameterSet * has binding name 'PointerToprodml23__ProductVolumeParameterSet' for type 'prodml23:ProductVolumeParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeParameterSet (-2805) #endif -/* prodml22__ProductVolumeFlow * has binding name 'PointerToprodml22__ProductVolumeFlow' for type 'prodml22:ProductVolumeFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeFlow (-2803) +/* prodml23__ProductVolumeFlow * has binding name 'PointerToprodml23__ProductVolumeFlow' for type 'prodml23:ProductVolumeFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeFlow (-2803) #endif -/* prodml22__WellOperationMethod * has binding name 'PointerToprodml22__WellOperationMethod' for type 'prodml22:WellOperationMethod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellOperationMethod (-2802) +/* prodml23__WellOperationMethod * has binding name 'PointerToprodml23__WellOperationMethod' for type 'prodml23:WellOperationMethod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellOperationMethod (-2802) #endif -/* prodml22__WellFluid * has binding name 'PointerToprodml22__WellFluid' for type 'prodml22:WellFluid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFluid (-2801) +/* prodml23__WellFluid * has binding name 'PointerToprodml23__WellFluid' for type 'prodml23:WellFluid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFluid (-2801) #endif @@ -96767,45 +96900,45 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__BalanceDestinationType * has binding name 'PointerToprodml22__BalanceDestinationType' for type 'prodml22:BalanceDestinationType' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceDestinationType (-2799) +/* prodml23__BalanceDestinationType * has binding name 'PointerToprodml23__BalanceDestinationType' for type 'prodml23:BalanceDestinationType' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceDestinationType (-2799) #endif -/* prodml22__CommonPropertiesProductVolume * has binding name 'PointerToprodml22__CommonPropertiesProductVolume' for type 'prodml22:CommonPropertiesProductVolume' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CommonPropertiesProductVolume (-2798) +/* prodml23__CommonPropertiesProductVolume * has binding name 'PointerToprodml23__CommonPropertiesProductVolume' for type 'prodml23:CommonPropertiesProductVolume' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CommonPropertiesProductVolume (-2798) #endif -/* prodml22__ReportingProduct * has binding name 'PointerToprodml22__ReportingProduct' for type 'prodml22:ReportingProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingProduct (-2797) +/* prodml23__ReportingProduct * has binding name 'PointerToprodml23__ReportingProduct' for type 'prodml23:ReportingProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingProduct (-2797) #endif -/* prodml22__ProductVolumeBusinessSubUnit * has binding name 'PointerToprodml22__ProductVolumeBusinessSubUnit' for type 'prodml22:ProductVolumeBusinessSubUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessSubUnit (-2795) +/* prodml23__ProductVolumeBusinessSubUnit * has binding name 'PointerToprodml23__ProductVolumeBusinessSubUnit' for type 'prodml23:ProductVolumeBusinessSubUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessSubUnit (-2795) #endif -/* prodml22__OwnershipBusinessAcct * has binding name 'PointerToprodml22__OwnershipBusinessAcct' for type 'prodml22:OwnershipBusinessAcct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OwnershipBusinessAcct (-2794) +/* prodml23__OwnershipBusinessAcct * has binding name 'PointerToprodml23__OwnershipBusinessAcct' for type 'prodml23:OwnershipBusinessAcct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OwnershipBusinessAcct (-2794) #endif -/* prodml22__ProductVolumeDestination * has binding name 'PointerToprodml22__ProductVolumeDestination' for type 'prodml22:ProductVolumeDestination' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeDestination (-2793) +/* prodml23__ProductVolumeDestination * has binding name 'PointerToprodml23__ProductVolumeDestination' for type 'prodml23:ProductVolumeDestination' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeDestination (-2793) #endif -/* prodml22__ProductVolumeBalanceDetail * has binding name 'PointerToprodml22__ProductVolumeBalanceDetail' for type 'prodml22:ProductVolumeBalanceDetail' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceDetail (-2791) +/* prodml23__ProductVolumeBalanceDetail * has binding name 'PointerToprodml23__ProductVolumeBalanceDetail' for type 'prodml23:ProductVolumeBalanceDetail' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceDetail (-2791) #endif @@ -96815,33 +96948,33 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__BalanceFlowPart * has binding name 'PointerToprodml22__BalanceFlowPart' for type 'prodml22:BalanceFlowPart' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BalanceFlowPart (-2789) +/* prodml23__BalanceFlowPart * has binding name 'PointerToprodml23__BalanceFlowPart' for type 'prodml23:BalanceFlowPart' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BalanceFlowPart (-2789) #endif -/* prodml22__ProductVolumeBalanceEvent * has binding name 'PointerToprodml22__ProductVolumeBalanceEvent' for type 'prodml22:ProductVolumeBalanceEvent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBalanceEvent (-2787) +/* prodml23__ProductVolumeBalanceEvent * has binding name 'PointerToprodml23__ProductVolumeBalanceEvent' for type 'prodml23:ProductVolumeBalanceEvent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBalanceEvent (-2787) #endif -/* prodml22__ProductVolumeComponentContent * has binding name 'PointerToprodml22__ProductVolumeComponentContent' for type 'prodml22:ProductVolumeComponentContent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeComponentContent (-2785) +/* prodml23__ProductVolumeComponentContent * has binding name 'PointerToprodml23__ProductVolumeComponentContent' for type 'prodml23:ProductVolumeComponentContent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeComponentContent (-2785) #endif -/* prodml22__FacilityParent * has binding name 'PointerToprodml22__FacilityParent' for type 'prodml22:FacilityParent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityParent (-2784) +/* prodml23__FacilityParent * has binding name 'PointerToprodml23__FacilityParent' for type 'prodml23:FacilityParent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityParent (-2784) #endif -/* prodml22__ProductVolumePortDifference * has binding name 'PointerToprodml22__ProductVolumePortDifference' for type 'prodml22:ProductVolumePortDifference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumePortDifference (-2780) +/* prodml23__ProductVolumePortDifference * has binding name 'PointerToprodml23__ProductVolumePortDifference' for type 'prodml23:ProductVolumePortDifference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumePortDifference (-2780) #endif @@ -96851,117 +96984,117 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__RecombinedSampleFraction * has binding name 'PointerToprodml22__RecombinedSampleFraction' for type 'prodml22:RecombinedSampleFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RecombinedSampleFraction (-2775) +/* prodml23__RecombinedSampleFraction * has binding name 'PointerToprodml23__RecombinedSampleFraction' for type 'prodml23:RecombinedSampleFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RecombinedSampleFraction (-2775) #endif -/* prodml22__SampleAction * has binding name 'PointerToprodml22__SampleAction' for type 'prodml22:SampleAction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleAction (-2774) +/* prodml23__SampleAction * has binding name 'PointerToprodml23__SampleAction' for type 'prodml23:SampleAction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleAction (-2774) #endif -/* prodml22__CustomParameter * has binding name 'PointerToprodml22__CustomParameter' for type 'prodml22:CustomParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomParameter (-2772) +/* prodml23__CustomParameter * has binding name 'PointerToprodml23__CustomParameter' for type 'prodml23:CustomParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomParameter (-2772) #endif -/* prodml22__AbstractParameter * has binding name 'PointerToprodml22__AbstractParameter' for type 'prodml22:AbstractParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractParameter (-2770) +/* prodml23__AbstractParameter * has binding name 'PointerToprodml23__AbstractParameter' for type 'prodml23:AbstractParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractParameter (-2770) #endif -/* prodml22__FractureStorativityRatio * has binding name 'PointerToprodml22__FractureStorativityRatio' for type 'prodml22:FractureStorativityRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureStorativityRatio (-2769) +/* prodml23__FractureStorativityRatio * has binding name 'PointerToprodml23__FractureStorativityRatio' for type 'prodml23:FractureStorativityRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureStorativityRatio (-2769) #endif -/* prodml22__FractureFaceSkin * has binding name 'PointerToprodml22__FractureFaceSkin' for type 'prodml22:FractureFaceSkin' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureFaceSkin (-2768) +/* prodml23__FractureFaceSkin * has binding name 'PointerToprodml23__FractureFaceSkin' for type 'prodml23:FractureFaceSkin' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureFaceSkin (-2768) #endif -/* prodml22__DistanceMidFractureHeightToBottomBoundary * has binding name 'PointerToprodml22__DistanceMidFractureHeightToBottomBoundary' for type 'prodml22:DistanceMidFractureHeightToBottomBoundary' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DistanceMidFractureHeightToBottomBoundary (-2767) +/* prodml23__DistanceMidFractureHeightToBottomBoundary * has binding name 'PointerToprodml23__DistanceMidFractureHeightToBottomBoundary' for type 'prodml23:DistanceMidFractureHeightToBottomBoundary' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DistanceMidFractureHeightToBottomBoundary (-2767) #endif -/* prodml22__FractureHeight * has binding name 'PointerToprodml22__FractureHeight' for type 'prodml22:FractureHeight' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureHeight (-2766) +/* prodml23__FractureHeight * has binding name 'PointerToprodml23__FractureHeight' for type 'prodml23:FractureHeight' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureHeight (-2766) #endif -/* prodml22__TotalThickness * has binding name 'PointerToprodml22__TotalThickness' for type 'prodml22:TotalThickness' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TotalThickness (-2765) +/* prodml23__TotalThickness * has binding name 'PointerToprodml23__TotalThickness' for type 'prodml23:TotalThickness' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TotalThickness (-2765) #endif -/* prodml22__Porosity * has binding name 'PointerToprodml22__Porosity' for type 'prodml22:Porosity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Porosity (-2764) +/* prodml23__Porosity * has binding name 'PointerToprodml23__Porosity' for type 'prodml23:Porosity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Porosity (-2764) #endif -/* prodml22__HorizontalRadialPermeability * has binding name 'PointerToprodml22__HorizontalRadialPermeability' for type 'prodml22:HorizontalRadialPermeability' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__HorizontalRadialPermeability (-2763) +/* prodml23__HorizontalRadialPermeability * has binding name 'PointerToprodml23__HorizontalRadialPermeability' for type 'prodml23:HorizontalRadialPermeability' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__HorizontalRadialPermeability (-2763) #endif -/* prodml22__LocationIn2D * has binding name 'PointerToprodml22__LocationIn2D' for type 'prodml22:LocationIn2D' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LocationIn2D (-2761) +/* prodml23__LocationIn2D * has binding name 'PointerToprodml23__LocationIn2D' for type 'prodml23:LocationIn2D' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LocationIn2D (-2761) #endif -/* prodml22__AnalysisLine * has binding name 'PointerToprodml22__AnalysisLine' for type 'prodml22:AnalysisLine' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnalysisLine (-2759) +/* prodml23__AnalysisLine * has binding name 'PointerToprodml23__AnalysisLine' for type 'prodml23:AnalysisLine' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnalysisLine (-2759) #endif -/* prodml22__AbstractPtaPressureData * has binding name 'PointerToprodml22__AbstractPtaPressureData' for type 'prodml22:AbstractPtaPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaPressureData (-2758) +/* prodml23__AbstractPtaPressureData * has binding name 'PointerToprodml23__AbstractPtaPressureData' for type 'prodml23:AbstractPtaPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaPressureData (-2758) #endif -/* prodml22__InterporosityFlowParameter * has binding name 'PointerToprodml22__InterporosityFlowParameter' for type 'prodml22:InterporosityFlowParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterporosityFlowParameter (-2757) +/* prodml23__InterporosityFlowParameter * has binding name 'PointerToprodml23__InterporosityFlowParameter' for type 'prodml23:InterporosityFlowParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterporosityFlowParameter (-2757) #endif -/* prodml22__LayerToLayerConnection * has binding name 'PointerToprodml22__LayerToLayerConnection' for type 'prodml22:LayerToLayerConnection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LayerToLayerConnection (-2755) +/* prodml23__LayerToLayerConnection * has binding name 'PointerToprodml23__LayerToLayerConnection' for type 'prodml23:LayerToLayerConnection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LayerToLayerConnection (-2755) #endif -/* prodml22__BoundaryBaseModel * has binding name 'PointerToprodml22__BoundaryBaseModel' for type 'prodml22:BoundaryBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BoundaryBaseModel (-2754) +/* prodml23__BoundaryBaseModel * has binding name 'PointerToprodml23__BoundaryBaseModel' for type 'prodml23:BoundaryBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BoundaryBaseModel (-2754) #endif -/* prodml22__ReservoirBaseModel * has binding name 'PointerToprodml22__ReservoirBaseModel' for type 'prodml22:ReservoirBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReservoirBaseModel (-2753) +/* prodml23__ReservoirBaseModel * has binding name 'PointerToprodml23__ReservoirBaseModel' for type 'prodml23:ReservoirBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReservoirBaseModel (-2753) #endif -/* prodml22__NearWellboreBaseModel * has binding name 'PointerToprodml22__NearWellboreBaseModel' for type 'prodml22:NearWellboreBaseModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NearWellboreBaseModel (-2752) +/* prodml23__NearWellboreBaseModel * has binding name 'PointerToprodml23__NearWellboreBaseModel' for type 'prodml23:NearWellboreBaseModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NearWellboreBaseModel (-2752) #endif @@ -96983,33 +97116,33 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__FractureConductivity * has binding name 'PointerToprodml22__FractureConductivity' for type 'prodml22:FractureConductivity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FractureConductivity (-2748) +/* prodml23__FractureConductivity * has binding name 'PointerToprodml23__FractureConductivity' for type 'prodml23:FractureConductivity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FractureConductivity (-2748) #endif -/* prodml22__TransmissibilityReductionFactorOfLinearFront * has binding name 'PointerToprodml22__TransmissibilityReductionFactorOfLinearFront' for type 'prodml22:TransmissibilityReductionFactorOfLinearFront' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TransmissibilityReductionFactorOfLinearFront (-2747) +/* prodml23__TransmissibilityReductionFactorOfLinearFront * has binding name 'PointerToprodml23__TransmissibilityReductionFactorOfLinearFront' for type 'prodml23:TransmissibilityReductionFactorOfLinearFront' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TransmissibilityReductionFactorOfLinearFront (-2747) #endif -/* prodml22__OutputPressureData * has binding name 'PointerToprodml22__OutputPressureData' for type 'prodml22:OutputPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OutputPressureData (-2746) +/* prodml23__OutputPressureData * has binding name 'PointerToprodml23__OutputPressureData' for type 'prodml23:OutputPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OutputPressureData (-2746) #endif -/* prodml22__ResqmlModelRef * has binding name 'PointerToprodml22__ResqmlModelRef' for type 'prodml22:ResqmlModelRef' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ResqmlModelRef (-2745) +/* prodml23__ResqmlModelRef * has binding name 'PointerToprodml23__ResqmlModelRef' for type 'prodml23:ResqmlModelRef' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ResqmlModelRef (-2745) #endif -/* prodml22__DeconvolvedPressureData * has binding name 'PointerToprodml22__DeconvolvedPressureData' for type 'prodml22:DeconvolvedPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DeconvolvedPressureData (-2744) +/* prodml23__DeconvolvedPressureData * has binding name 'PointerToprodml23__DeconvolvedPressureData' for type 'prodml23:DeconvolvedPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DeconvolvedPressureData (-2744) #endif @@ -97019,27 +97152,27 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__ReportingHierarchyNode * has binding name 'PointerToprodml22__ReportingHierarchyNode' for type 'prodml22:ReportingHierarchyNode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingHierarchyNode (-2741) +/* prodml23__ReportingHierarchyNode * has binding name 'PointerToprodml23__ReportingHierarchyNode' for type 'prodml23:ReportingHierarchyNode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingHierarchyNode (-2741) #endif -/* prodml22__ProductRate * has binding name 'PointerToprodml22__ProductRate' for type 'prodml22:ProductRate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductRate (-2739) +/* prodml23__ProductRate * has binding name 'PointerToprodml23__ProductRate' for type 'prodml23:ProductRate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductRate (-2739) #endif -/* prodml22__WellFlowingCondition * has binding name 'PointerToprodml22__WellFlowingCondition' for type 'prodml22:WellFlowingCondition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WellFlowingCondition (-2738) +/* prodml23__WellFlowingCondition * has binding name 'PointerToprodml23__WellFlowingCondition' for type 'prodml23:WellFlowingCondition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WellFlowingCondition (-2738) #endif -/* prodml22__TestPeriodKind * has binding name 'PointerToprodml22__TestPeriodKind' for type 'prodml22:TestPeriodKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriodKind (-2737) +/* prodml23__TestPeriodKind * has binding name 'PointerToprodml23__TestPeriodKind' for type 'prodml23:TestPeriodKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriodKind (-2737) #endif @@ -97049,39 +97182,39 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__FluidComponentCatalog * has binding name 'PointerToprodml22__FluidComponentCatalog' for type 'prodml22:FluidComponentCatalog' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentCatalog (-2735) +/* prodml23__FluidComponentCatalog * has binding name 'PointerToprodml23__FluidComponentCatalog' for type 'prodml23:FluidComponentCatalog' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentCatalog (-2735) #endif -/* prodml22__MeasuredPressureData * has binding name 'PointerToprodml22__MeasuredPressureData' for type 'prodml22:MeasuredPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MeasuredPressureData (-2733) +/* prodml23__MeasuredPressureData * has binding name 'PointerToprodml23__MeasuredPressureData' for type 'prodml23:MeasuredPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MeasuredPressureData (-2733) #endif -/* prodml22__AbstractPtaFlowData * has binding name 'PointerToprodml22__AbstractPtaFlowData' for type 'prodml22:AbstractPtaFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPtaFlowData (-2731) +/* prodml23__AbstractPtaFlowData * has binding name 'PointerToprodml23__AbstractPtaFlowData' for type 'prodml23:AbstractPtaFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPtaFlowData (-2731) #endif -/* prodml22__OtherData * has binding name 'PointerToprodml22__OtherData' for type 'prodml22:OtherData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherData (-2729) +/* prodml23__OtherData * has binding name 'PointerToprodml23__OtherData' for type 'prodml23:OtherData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherData (-2729) #endif -/* prodml22__FlowTestLocation * has binding name 'PointerToprodml22__FlowTestLocation' for type 'prodml22:FlowTestLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlowTestLocation (-2728) +/* prodml23__FlowTestLocation * has binding name 'PointerToprodml23__FlowTestLocation' for type 'prodml23:FlowTestLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlowTestLocation (-2728) #endif -/* prodml22__TestPeriod * has binding name 'PointerToprodml22__TestPeriod' for type 'prodml22:TestPeriod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TestPeriod (-2727) +/* prodml23__TestPeriod * has binding name 'PointerToprodml23__TestPeriod' for type 'prodml23:TestPeriod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TestPeriod (-2727) #endif @@ -97091,9 +97224,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__TimeSeriesPointRepresentation * has binding name 'PointerToprodml22__TimeSeriesPointRepresentation' for type 'prodml22:TimeSeriesPointRepresentation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__TimeSeriesPointRepresentation (-2725) +/* prodml23__TimeSeriesPointRepresentation * has binding name 'PointerToprodml23__TimeSeriesPointRepresentation' for type 'prodml23:TimeSeriesPointRepresentation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__TimeSeriesPointRepresentation (-2725) #endif @@ -97103,21 +97236,21 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::string * has binding name 'PointerToprodml22__OrganicAcidKindExt' for type 'prodml22:OrganicAcidKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OrganicAcidKindExt (-2723) +/* std::string * has binding name 'PointerToprodml23__OrganicAcidKindExt' for type 'prodml23:OrganicAcidKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OrganicAcidKindExt (-2723) #endif -/* std::string * has binding name 'PointerToprodml22__CationKindExt' for type 'prodml22:CationKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CationKindExt (-2722) +/* std::string * has binding name 'PointerToprodml23__CationKindExt' for type 'prodml23:CationKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CationKindExt (-2722) #endif -/* std::string * has binding name 'PointerToprodml22__AnionKindExt' for type 'prodml22:AnionKindExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AnionKindExt (-2721) +/* std::string * has binding name 'PointerToprodml23__AnionKindExt' for type 'prodml23:AnionKindExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AnionKindExt (-2721) #endif @@ -97169,9 +97302,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__WaterAnalysisTestStep * has binding name 'PointerToprodml22__WaterAnalysisTestStep' for type 'prodml22:WaterAnalysisTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__WaterAnalysisTestStep (-2711) +/* prodml23__WaterAnalysisTestStep * has binding name 'PointerToprodml23__WaterAnalysisTestStep' for type 'prodml23:WaterAnalysisTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__WaterAnalysisTestStep (-2711) #endif @@ -97181,147 +97314,147 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__PhaseDensity * has binding name 'PointerToprodml22__PhaseDensity' for type 'prodml22:PhaseDensity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseDensity (-2707) +/* prodml23__PhaseDensity * has binding name 'PointerToprodml23__PhaseDensity' for type 'prodml23:PhaseDensity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseDensity (-2707) #endif -/* prodml22__PhaseViscosity * has binding name 'PointerToprodml22__PhaseViscosity' for type 'prodml22:PhaseViscosity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhaseViscosity (-2706) +/* prodml23__PhaseViscosity * has binding name 'PointerToprodml23__PhaseViscosity' for type 'prodml23:PhaseViscosity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhaseViscosity (-2706) #endif -/* prodml22__RefInjectedGasAdded * has binding name 'PointerToprodml22__RefInjectedGasAdded' for type 'prodml22:RefInjectedGasAdded' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RefInjectedGasAdded (-2704) +/* prodml23__RefInjectedGasAdded * has binding name 'PointerToprodml23__RefInjectedGasAdded' for type 'prodml23:RefInjectedGasAdded' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RefInjectedGasAdded (-2704) #endif -/* prodml22__SwellingTestStep * has binding name 'PointerToprodml22__SwellingTestStep' for type 'prodml22:SwellingTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SwellingTestStep (-2702) +/* prodml23__SwellingTestStep * has binding name 'PointerToprodml23__SwellingTestStep' for type 'prodml23:SwellingTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SwellingTestStep (-2702) #endif -/* prodml22__Sara * has binding name 'PointerToprodml22__Sara' for type 'prodml22:Sara' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__Sara (-2700) +/* prodml23__Sara * has binding name 'PointerToprodml23__Sara' for type 'prodml23:Sara' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__Sara (-2700) #endif -/* prodml22__ViscosityAtTemperature * has binding name 'PointerToprodml22__ViscosityAtTemperature' for type 'prodml22:ViscosityAtTemperature' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ViscosityAtTemperature (-2698) +/* prodml23__ViscosityAtTemperature * has binding name 'PointerToprodml23__ViscosityAtTemperature' for type 'prodml23:ViscosityAtTemperature' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ViscosityAtTemperature (-2698) #endif -/* prodml22__STOFlashedLiquid * has binding name 'PointerToprodml22__STOFlashedLiquid' for type 'prodml22:STOFlashedLiquid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__STOFlashedLiquid (-2697) +/* prodml23__STOFlashedLiquid * has binding name 'PointerToprodml23__STOFlashedLiquid' for type 'prodml23:STOFlashedLiquid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__STOFlashedLiquid (-2697) #endif -/* prodml22__MassBalance * has binding name 'PointerToprodml22__MassBalance' for type 'prodml22:MassBalance' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassBalance (-2696) +/* prodml23__MassBalance * has binding name 'PointerToprodml23__MassBalance' for type 'prodml23:MassBalance' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassBalance (-2696) #endif -/* prodml22__ProducedOilProperties * has binding name 'PointerToprodml22__ProducedOilProperties' for type 'prodml22:ProducedOilProperties' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedOilProperties (-2695) +/* prodml23__ProducedOilProperties * has binding name 'PointerToprodml23__ProducedOilProperties' for type 'prodml23:ProducedOilProperties' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedOilProperties (-2695) #endif -/* prodml22__ProducedGasProperties * has binding name 'PointerToprodml22__ProducedGasProperties' for type 'prodml22:ProducedGasProperties' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProducedGasProperties (-2694) +/* prodml23__ProducedGasProperties * has binding name 'PointerToprodml23__ProducedGasProperties' for type 'prodml23:ProducedGasProperties' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProducedGasProperties (-2694) #endif -/* prodml22__SlimTubeTestVolumeStep * has binding name 'PointerToprodml22__SlimTubeTestVolumeStep' for type 'prodml22:SlimTubeTestVolumeStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestVolumeStep (-2692) +/* prodml23__SlimTubeTestVolumeStep * has binding name 'PointerToprodml23__SlimTubeTestVolumeStep' for type 'prodml23:SlimTubeTestVolumeStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestVolumeStep (-2692) #endif -/* prodml22__SlimTubeSpecification * has binding name 'PointerToprodml22__SlimTubeSpecification' for type 'prodml22:SlimTubeSpecification' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeSpecification (-2690) +/* prodml23__SlimTubeSpecification * has binding name 'PointerToprodml23__SlimTubeSpecification' for type 'prodml23:SlimTubeSpecification' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeSpecification (-2690) #endif -/* prodml22__SlimTubeTestStep * has binding name 'PointerToprodml22__SlimTubeTestStep' for type 'prodml22:SlimTubeTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SlimTubeTestStep (-2688) +/* prodml23__SlimTubeTestStep * has binding name 'PointerToprodml23__SlimTubeTestStep' for type 'prodml23:SlimTubeTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SlimTubeTestStep (-2688) #endif -/* prodml22__InjectedGas * has binding name 'PointerToprodml22__InjectedGas' for type 'prodml22:InjectedGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InjectedGas (-2686) +/* prodml23__InjectedGas * has binding name 'PointerToprodml23__InjectedGas' for type 'prodml23:InjectedGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InjectedGas (-2686) #endif -/* prodml22__SampleRestoration * has binding name 'PointerToprodml22__SampleRestoration' for type 'prodml22:SampleRestoration' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SampleRestoration (-2684) +/* prodml23__SampleRestoration * has binding name 'PointerToprodml23__SampleRestoration' for type 'prodml23:SampleRestoration' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SampleRestoration (-2684) #endif -/* prodml22__SaturationTemperature * has binding name 'PointerToprodml22__SaturationTemperature' for type 'prodml22:SaturationTemperature' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationTemperature (-2683) +/* prodml23__SaturationTemperature * has binding name 'PointerToprodml23__SaturationTemperature' for type 'prodml23:SaturationTemperature' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationTemperature (-2683) #endif -/* prodml22__OtherMeasurementTestStep * has binding name 'PointerToprodml22__OtherMeasurementTestStep' for type 'prodml22:OtherMeasurementTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OtherMeasurementTestStep (-2680) +/* prodml23__OtherMeasurementTestStep * has binding name 'PointerToprodml23__OtherMeasurementTestStep' for type 'prodml23:OtherMeasurementTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OtherMeasurementTestStep (-2680) #endif -/* prodml22__FluidCharacterizationTableFormatSet * has binding name 'PointerToprodml22__FluidCharacterizationTableFormatSet' for type 'prodml22:FluidCharacterizationTableFormatSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormatSet (-2679) +/* prodml23__FluidCharacterizationTableFormatSet * has binding name 'PointerToprodml23__FluidCharacterizationTableFormatSet' for type 'prodml23:FluidCharacterizationTableFormatSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormatSet (-2679) #endif -/* prodml22__MassOut * has binding name 'PointerToprodml22__MassOut' for type 'prodml22:MassOut' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassOut (-2678) +/* prodml23__MassOut * has binding name 'PointerToprodml23__MassOut' for type 'prodml23:MassOut' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassOut (-2678) #endif -/* prodml22__MassIn * has binding name 'PointerToprodml22__MassIn' for type 'prodml22:MassIn' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__MassIn (-2677) +/* prodml23__MassIn * has binding name 'PointerToprodml23__MassIn' for type 'prodml23:MassIn' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__MassIn (-2677) #endif -/* prodml22__InterfacialTensionTestStep * has binding name 'PointerToprodml22__InterfacialTensionTestStep' for type 'prodml22:InterfacialTensionTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__InterfacialTensionTestStep (-2675) +/* prodml23__InterfacialTensionTestStep * has binding name 'PointerToprodml23__InterfacialTensionTestStep' for type 'prodml23:InterfacialTensionTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__InterfacialTensionTestStep (-2675) #endif -/* prodml22__AbstractFluidComponent * has binding name 'PointerToprodml22__AbstractFluidComponent' for type 'prodml22:AbstractFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractFluidComponent (-2674) +/* prodml23__AbstractFluidComponent * has binding name 'PointerToprodml23__AbstractFluidComponent' for type 'prodml23:AbstractFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractFluidComponent (-2674) #endif -/* prodml22__FluidSeparatorTestStep * has binding name 'PointerToprodml22__FluidSeparatorTestStep' for type 'prodml22:FluidSeparatorTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidSeparatorTestStep (-2672) +/* prodml23__FluidSeparatorTestStep * has binding name 'PointerToprodml23__FluidSeparatorTestStep' for type 'prodml23:FluidSeparatorTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidSeparatorTestStep (-2672) #endif -/* prodml22__ReportLocation * has binding name 'PointerToprodml22__ReportLocation' for type 'prodml22:ReportLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportLocation (-2670) +/* prodml23__ReportLocation * has binding name 'PointerToprodml23__ReportLocation' for type 'prodml23:ReportLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportLocation (-2670) #endif @@ -97337,93 +97470,93 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__FluidDifferentialLiberationTestStep * has binding name 'PointerToprodml22__FluidDifferentialLiberationTestStep' for type 'prodml22:FluidDifferentialLiberationTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidDifferentialLiberationTestStep (-2666) +/* prodml23__FluidDifferentialLiberationTestStep * has binding name 'PointerToprodml23__FluidDifferentialLiberationTestStep' for type 'prodml23:FluidDifferentialLiberationTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidDifferentialLiberationTestStep (-2666) #endif -/* prodml22__SeparatorConditions * has binding name 'PointerToprodml22__SeparatorConditions' for type 'prodml22:SeparatorConditions' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SeparatorConditions (-2665) +/* prodml23__SeparatorConditions * has binding name 'PointerToprodml23__SeparatorConditions' for type 'prodml23:SeparatorConditions' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SeparatorConditions (-2665) #endif -/* prodml22__FluidCvdTestStep * has binding name 'PointerToprodml22__FluidCvdTestStep' for type 'prodml22:FluidCvdTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCvdTestStep (-2663) +/* prodml23__FluidCvdTestStep * has binding name 'PointerToprodml23__FluidCvdTestStep' for type 'prodml23:FluidCvdTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCvdTestStep (-2663) #endif -/* prodml22__LiquidComposition * has binding name 'PointerToprodml22__LiquidComposition' for type 'prodml22:LiquidComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__LiquidComposition (-2662) +/* prodml23__LiquidComposition * has binding name 'PointerToprodml23__LiquidComposition' for type 'prodml23:LiquidComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__LiquidComposition (-2662) #endif -/* prodml22__VaporComposition * has binding name 'PointerToprodml22__VaporComposition' for type 'prodml22:VaporComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__VaporComposition (-2661) +/* prodml23__VaporComposition * has binding name 'PointerToprodml23__VaporComposition' for type 'prodml23:VaporComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__VaporComposition (-2661) #endif -/* prodml22__PhasePresent * has binding name 'PointerToprodml22__PhasePresent' for type 'prodml22:PhasePresent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PhasePresent (-2660) +/* prodml23__PhasePresent * has binding name 'PointerToprodml23__PhasePresent' for type 'prodml23:PhasePresent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PhasePresent (-2660) #endif -/* prodml22__FluidAnalysisStepCondition * has binding name 'PointerToprodml22__FluidAnalysisStepCondition' for type 'prodml22:FluidAnalysisStepCondition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidAnalysisStepCondition (-2659) +/* prodml23__FluidAnalysisStepCondition * has binding name 'PointerToprodml23__FluidAnalysisStepCondition' for type 'prodml23:FluidAnalysisStepCondition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidAnalysisStepCondition (-2659) #endif -/* prodml22__OilCompressibility * has binding name 'PointerToprodml22__OilCompressibility' for type 'prodml22:OilCompressibility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OilCompressibility (-2658) +/* prodml23__OilCompressibility * has binding name 'PointerToprodml23__OilCompressibility' for type 'prodml23:OilCompressibility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OilCompressibility (-2658) #endif -/* prodml22__RelativeVolumeRatio * has binding name 'PointerToprodml22__RelativeVolumeRatio' for type 'prodml22:RelativeVolumeRatio' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__RelativeVolumeRatio (-2657) +/* prodml23__RelativeVolumeRatio * has binding name 'PointerToprodml23__RelativeVolumeRatio' for type 'prodml23:RelativeVolumeRatio' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__RelativeVolumeRatio (-2657) #endif -/* prodml22__ConstantCompositionExpansionTestStep * has binding name 'PointerToprodml22__ConstantCompositionExpansionTestStep' for type 'prodml22:ConstantCompositionExpansionTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ConstantCompositionExpansionTestStep (-2655) +/* prodml23__ConstantCompositionExpansionTestStep * has binding name 'PointerToprodml23__ConstantCompositionExpansionTestStep' for type 'prodml23:ConstantCompositionExpansionTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ConstantCompositionExpansionTestStep (-2655) #endif -/* prodml22__FluidVolumeReference * has binding name 'PointerToprodml22__FluidVolumeReference' for type 'prodml22:FluidVolumeReference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidVolumeReference (-2653) +/* prodml23__FluidVolumeReference * has binding name 'PointerToprodml23__FluidVolumeReference' for type 'prodml23:FluidVolumeReference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidVolumeReference (-2653) #endif -/* prodml22__SaturationPressure * has binding name 'PointerToprodml22__SaturationPressure' for type 'prodml22:SaturationPressure' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SaturationPressure (-2652) +/* prodml23__SaturationPressure * has binding name 'PointerToprodml23__SaturationPressure' for type 'prodml23:SaturationPressure' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SaturationPressure (-2652) #endif -/* prodml22__FlashedGas * has binding name 'PointerToprodml22__FlashedGas' for type 'prodml22:FlashedGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedGas (-2651) +/* prodml23__FlashedGas * has binding name 'PointerToprodml23__FlashedGas' for type 'prodml23:FlashedGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedGas (-2651) #endif -/* prodml22__OverallComposition * has binding name 'PointerToprodml22__OverallComposition' for type 'prodml22:OverallComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OverallComposition (-2650) +/* prodml23__OverallComposition * has binding name 'PointerToprodml23__OverallComposition' for type 'prodml23:OverallComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OverallComposition (-2650) #endif -/* prodml22__FlashedLiquid * has binding name 'PointerToprodml22__FlashedLiquid' for type 'prodml22:FlashedLiquid' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FlashedLiquid (-2649) +/* prodml23__FlashedLiquid * has binding name 'PointerToprodml23__FlashedLiquid' for type 'prodml23:FlashedLiquid' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FlashedLiquid (-2649) #endif @@ -97433,45 +97566,45 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__ProductFlowUnit * has binding name 'PointerToprodml22__ProductFlowUnit' for type 'prodml22:ProductFlowUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowUnit (-2646) +/* prodml23__ProductFlowUnit * has binding name 'PointerToprodml23__ProductFlowUnit' for type 'prodml23:ProductFlowUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowUnit (-2646) #endif -/* prodml22__ProductFlowChangeLog * has binding name 'PointerToprodml22__ProductFlowChangeLog' for type 'prodml22:ProductFlowChangeLog' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowChangeLog (-2644) +/* prodml23__ProductFlowChangeLog * has binding name 'PointerToprodml23__ProductFlowChangeLog' for type 'prodml23:ProductFlowChangeLog' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowChangeLog (-2644) #endif -/* prodml22__ProductFlowNetworkPlan * has binding name 'PointerToprodml22__ProductFlowNetworkPlan' for type 'prodml22:ProductFlowNetworkPlan' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowNetworkPlan (-2642) +/* prodml23__ProductFlowNetworkPlan * has binding name 'PointerToprodml23__ProductFlowNetworkPlan' for type 'prodml23:ProductFlowNetworkPlan' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowNetworkPlan (-2642) #endif -/* prodml22__ProductFlowExternalPort * has binding name 'PointerToprodml22__ProductFlowExternalPort' for type 'prodml22:ProductFlowExternalPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductFlowExternalPort (-2640) +/* prodml23__ProductFlowExternalPort * has binding name 'PointerToprodml23__ProductFlowExternalPort' for type 'prodml23:ProductFlowExternalPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductFlowExternalPort (-2640) #endif -/* prodml22__NorthSeaOffshore * has binding name 'PointerToprodml22__NorthSeaOffshore' for type 'prodml22:NorthSeaOffshore' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NorthSeaOffshore (-2639) +/* prodml23__NorthSeaOffshore * has binding name 'PointerToprodml23__NorthSeaOffshore' for type 'prodml23:NorthSeaOffshore' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NorthSeaOffshore (-2639) #endif -/* prodml22__FluidComponentFraction * has binding name 'PointerToprodml22__FluidComponentFraction' for type 'prodml22:FluidComponentFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentFraction (-2637) +/* prodml23__FluidComponentFraction * has binding name 'PointerToprodml23__FluidComponentFraction' for type 'prodml23:FluidComponentFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentFraction (-2637) #endif -/* prodml22__OffshoreLocation * has binding name 'PointerToprodml22__OffshoreLocation' for type 'prodml22:OffshoreLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__OffshoreLocation (-2636) +/* prodml23__OffshoreLocation * has binding name 'PointerToprodml23__OffshoreLocation' for type 'prodml23:OffshoreLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__OffshoreLocation (-2636) #endif @@ -97481,75 +97614,75 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__SulfurFluidComponent * has binding name 'PointerToprodml22__SulfurFluidComponent' for type 'prodml22:SulfurFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__SulfurFluidComponent (-2633) +/* prodml23__SulfurFluidComponent * has binding name 'PointerToprodml23__SulfurFluidComponent' for type 'prodml23:SulfurFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__SulfurFluidComponent (-2633) #endif -/* prodml22__PlusFluidComponent * has binding name 'PointerToprodml22__PlusFluidComponent' for type 'prodml22:PlusFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PlusFluidComponent (-2631) +/* prodml23__PlusFluidComponent * has binding name 'PointerToprodml23__PlusFluidComponent' for type 'prodml23:PlusFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PlusFluidComponent (-2631) #endif -/* prodml22__PseudoFluidComponent * has binding name 'PointerToprodml22__PseudoFluidComponent' for type 'prodml22:PseudoFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PseudoFluidComponent (-2629) +/* prodml23__PseudoFluidComponent * has binding name 'PointerToprodml23__PseudoFluidComponent' for type 'prodml23:PseudoFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PseudoFluidComponent (-2629) #endif -/* prodml22__PureFluidComponent * has binding name 'PointerToprodml22__PureFluidComponent' for type 'prodml22:PureFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PureFluidComponent (-2627) +/* prodml23__PureFluidComponent * has binding name 'PointerToprodml23__PureFluidComponent' for type 'prodml23:PureFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PureFluidComponent (-2627) #endif -/* prodml22__FormationWater * has binding name 'PointerToprodml22__FormationWater' for type 'prodml22:FormationWater' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FormationWater (-2625) +/* prodml23__FormationWater * has binding name 'PointerToprodml23__FormationWater' for type 'prodml23:FormationWater' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FormationWater (-2625) #endif -/* prodml22__NaturalGas * has binding name 'PointerToprodml22__NaturalGas' for type 'prodml22:NaturalGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__NaturalGas (-2623) +/* prodml23__NaturalGas * has binding name 'PointerToprodml23__NaturalGas' for type 'prodml23:NaturalGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__NaturalGas (-2623) #endif -/* prodml22__StockTankOil * has binding name 'PointerToprodml22__StockTankOil' for type 'prodml22:StockTankOil' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__StockTankOil (-2621) +/* prodml23__StockTankOil * has binding name 'PointerToprodml23__StockTankOil' for type 'prodml23:StockTankOil' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__StockTankOil (-2621) #endif -/* prodml22__ReportingFacility * has binding name 'PointerToprodml22__ReportingFacility' for type 'prodml22:ReportingFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReportingFacility (-2620) +/* prodml23__ReportingFacility * has binding name 'PointerToprodml23__ReportingFacility' for type 'prodml23:ReportingFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReportingFacility (-2620) #endif -/* prodml22__GeographicContext * has binding name 'PointerToprodml22__GeographicContext' for type 'prodml22:GeographicContext' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__GeographicContext (-2619) +/* prodml23__GeographicContext * has binding name 'PointerToprodml23__GeographicContext' for type 'prodml23:GeographicContext' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__GeographicContext (-2619) #endif -/* prodml22__ProductVolumeBusinessUnit * has binding name 'PointerToprodml22__ProductVolumeBusinessUnit' for type 'prodml22:ProductVolumeBusinessUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ProductVolumeBusinessUnit (-2618) +/* prodml23__ProductVolumeBusinessUnit * has binding name 'PointerToprodml23__ProductVolumeBusinessUnit' for type 'prodml23:ProductVolumeBusinessUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ProductVolumeBusinessUnit (-2618) #endif -/* prodml22__FacilityIdentifierStruct * has binding name 'PointerToprodml22__FacilityIdentifierStruct' for type 'prodml22:FacilityIdentifierStruct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FacilityIdentifierStruct (-2617) +/* prodml23__FacilityIdentifierStruct * has binding name 'PointerToprodml23__FacilityIdentifierStruct' for type 'prodml23:FacilityIdentifierStruct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FacilityIdentifierStruct (-2617) #endif -/* prodml22__EndpointQualifier * has binding name 'PointerToprodml22__EndpointQualifier' for type 'prodml22:EndpointQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__EndpointQualifier (-2616) +/* prodml23__EndpointQualifier * has binding name 'PointerToprodml23__EndpointQualifier' for type 'prodml23:EndpointQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__EndpointQualifier (-2616) #endif @@ -97565,9 +97698,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__DetectableLimitRelativeStateKind * has binding name 'PointerToprodml22__DetectableLimitRelativeStateKind' for type 'prodml22:DetectableLimitRelativeStateKind' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__DetectableLimitRelativeStateKind (-2613) +/* prodml23__DetectableLimitRelativeStateKind * has binding name 'PointerToprodml23__DetectableLimitRelativeStateKind' for type 'prodml23:DetectableLimitRelativeStateKind' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__DetectableLimitRelativeStateKind (-2613) #endif @@ -97583,15 +97716,15 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::string * has binding name 'PointerToprodml22__CalendarMonth' for type 'prodml22:CalendarMonth' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CalendarMonth (-2610) +/* std::string * has binding name 'PointerToprodml23__CalendarMonth' for type 'prodml23:CalendarMonth' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CalendarMonth (-2610) #endif -/* prodml22__PvtModelParameter * has binding name 'PointerToprodml22__PvtModelParameter' for type 'prodml22:PvtModelParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameter (-2608) +/* prodml23__PvtModelParameter * has binding name 'PointerToprodml23__PvtModelParameter' for type 'prodml23:PvtModelParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameter (-2608) #endif @@ -97613,87 +97746,87 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* prodml22__FluidCharacterizationTableFormat * has binding name 'PointerToprodml22__FluidCharacterizationTableFormat' for type 'prodml22:FluidCharacterizationTableFormat' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableFormat (-2603) +/* prodml23__FluidCharacterizationTableFormat * has binding name 'PointerToprodml23__FluidCharacterizationTableFormat' for type 'prodml23:FluidCharacterizationTableFormat' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableFormat (-2603) #endif -/* prodml22__FluidCharacterizationTableColumn * has binding name 'PointerToprodml22__FluidCharacterizationTableColumn' for type 'prodml22:FluidCharacterizationTableColumn' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableColumn (-2601) +/* prodml23__FluidCharacterizationTableColumn * has binding name 'PointerToprodml23__FluidCharacterizationTableColumn' for type 'prodml23:FluidCharacterizationTableColumn' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableColumn (-2601) #endif -/* prodml22__FluidCharacterizationTableRow * has binding name 'PointerToprodml22__FluidCharacterizationTableRow' for type 'prodml22:FluidCharacterizationTableRow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTableRow (-2599) +/* prodml23__FluidCharacterizationTableRow * has binding name 'PointerToprodml23__FluidCharacterizationTableRow' for type 'prodml23:FluidCharacterizationTableRow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTableRow (-2599) #endif -/* prodml22__FluidCharacterizationParameter * has binding name 'PointerToprodml22__FluidCharacterizationParameter' for type 'prodml22:FluidCharacterizationParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameter (-2597) +/* prodml23__FluidCharacterizationParameter * has binding name 'PointerToprodml23__FluidCharacterizationParameter' for type 'prodml23:FluidCharacterizationParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameter (-2597) #endif -/* prodml22__ThermodynamicPhase * has binding name 'PointerToprodml22__ThermodynamicPhase' for type 'prodml22:ThermodynamicPhase' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ThermodynamicPhase (-2596) +/* prodml23__ThermodynamicPhase * has binding name 'PointerToprodml23__ThermodynamicPhase' for type 'prodml23:ThermodynamicPhase' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ThermodynamicPhase (-2596) #endif -/* prodml22__ReferenceSeparatorStage * has binding name 'PointerToprodml22__ReferenceSeparatorStage' for type 'prodml22:ReferenceSeparatorStage' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__ReferenceSeparatorStage (-2594) +/* prodml23__ReferenceSeparatorStage * has binding name 'PointerToprodml23__ReferenceSeparatorStage' for type 'prodml23:ReferenceSeparatorStage' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__ReferenceSeparatorStage (-2594) #endif -/* prodml22__FluidCharacterizationParameterSet * has binding name 'PointerToprodml22__FluidCharacterizationParameterSet' for type 'prodml22:FluidCharacterizationParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationParameterSet (-2593) +/* prodml23__FluidCharacterizationParameterSet * has binding name 'PointerToprodml23__FluidCharacterizationParameterSet' for type 'prodml23:FluidCharacterizationParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationParameterSet (-2593) #endif -/* prodml22__FluidCharacterizationTable * has binding name 'PointerToprodml22__FluidCharacterizationTable' for type 'prodml22:FluidCharacterizationTable' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidCharacterizationTable (-2591) +/* prodml23__FluidCharacterizationTable * has binding name 'PointerToprodml23__FluidCharacterizationTable' for type 'prodml23:FluidCharacterizationTable' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidCharacterizationTable (-2591) #endif -/* prodml22__AbstractPvtModel * has binding name 'PointerToprodml22__AbstractPvtModel' for type 'prodml22:AbstractPvtModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__AbstractPvtModel (-2590) +/* prodml23__AbstractPvtModel * has binding name 'PointerToprodml23__AbstractPvtModel' for type 'prodml23:AbstractPvtModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__AbstractPvtModel (-2590) #endif -/* prodml22__CustomPvtModelParameter * has binding name 'PointerToprodml22__CustomPvtModelParameter' for type 'prodml22:CustomPvtModelParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelParameter (-2588) +/* prodml23__CustomPvtModelParameter * has binding name 'PointerToprodml23__CustomPvtModelParameter' for type 'prodml23:CustomPvtModelParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelParameter (-2588) #endif -/* prodml22__FluidComponentProperty * has binding name 'PointerToprodml22__FluidComponentProperty' for type 'prodml22:FluidComponentProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__FluidComponentProperty (-2586) +/* prodml23__FluidComponentProperty * has binding name 'PointerToprodml23__FluidComponentProperty' for type 'prodml23:FluidComponentProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__FluidComponentProperty (-2586) #endif -/* prodml22__BinaryInteractionCoefficient * has binding name 'PointerToprodml22__BinaryInteractionCoefficient' for type 'prodml22:BinaryInteractionCoefficient' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__BinaryInteractionCoefficient (-2584) +/* prodml23__BinaryInteractionCoefficient * has binding name 'PointerToprodml23__BinaryInteractionCoefficient' for type 'prodml23:BinaryInteractionCoefficient' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__BinaryInteractionCoefficient (-2584) #endif -/* prodml22__PvtModelParameterSet * has binding name 'PointerToprodml22__PvtModelParameterSet' for type 'prodml22:PvtModelParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__PvtModelParameterSet (-2583) +/* prodml23__PvtModelParameterSet * has binding name 'PointerToprodml23__PvtModelParameterSet' for type 'prodml23:PvtModelParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__PvtModelParameterSet (-2583) #endif -/* prodml22__CustomPvtModelExtension * has binding name 'PointerToprodml22__CustomPvtModelExtension' for type 'prodml22:CustomPvtModelExtension' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension -#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml22__CustomPvtModelExtension (-2582) +/* prodml23__CustomPvtModelExtension * has binding name 'PointerToprodml23__CustomPvtModelExtension' for type 'prodml23:CustomPvtModelExtension' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension +#define SOAP_TYPE_gsoap_eml2_3_PointerToprodml23__CustomPvtModelExtension (-2582) #endif @@ -99443,9 +99576,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__PrsvParameter' for type 'prodml22:PrsvParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PrsvParameter (-3454) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__PrsvParameter' for type 'prodml23:PrsvParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PrsvParameter (-3454) #endif @@ -99545,129 +99678,129 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel' for type 'prodml22:ReservoirZoneSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReservoirZoneSubModel (-3401) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel' for type 'prodml23:ReservoirZoneSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReservoirZoneSubModel (-3401) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel' for type 'prodml22:InternalFaultSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InternalFaultSubModel (-3398) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel' for type 'prodml23:InternalFaultSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InternalFaultSubModel (-3398) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel' for type 'prodml22:SingleBoundarySubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleBoundarySubModel (-3396) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel' for type 'prodml23:SingleBoundarySubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleBoundarySubModel (-3396) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel' for type 'prodml22:SingleFractureSubModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SingleFractureSubModel (-3388) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel' for type 'prodml23:SingleFractureSubModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SingleFractureSubModel (-3388) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet' for type 'prodml22:FlowTestMeasurementSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FlowTestMeasurementSet (-3360) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet' for type 'prodml23:FlowTestMeasurementSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FlowTestMeasurementSet (-3360) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__WaterSampleComponent' for type 'prodml22:WaterSampleComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterSampleComponent (-3358) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__WaterSampleComponent' for type 'prodml23:WaterSampleComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterSampleComponent (-3358) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest' for type 'prodml22:WaterAnalysisTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTest (-3356) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest' for type 'prodml23:WaterAnalysisTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTest (-3356) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest' for type 'prodml22:NonHydrocarbonTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NonHydrocarbonTest (-3354) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest' for type 'prodml23:NonHydrocarbonTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NonHydrocarbonTest (-3354) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest' for type 'prodml22:InterfacialTensionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTest (-3352) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest' for type 'prodml23:InterfacialTensionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTest (-3352) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__STOAnalysis' for type 'prodml22:STOAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__STOAnalysis (-3350) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__STOAnalysis' for type 'prodml23:STOAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__STOAnalysis (-3350) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest' for type 'prodml22:MultipleContactMiscibilityTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MultipleContactMiscibilityTest (-3348) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest' for type 'prodml23:MultipleContactMiscibilityTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MultipleContactMiscibilityTest (-3348) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SlimTubeTest' for type 'prodml22:SlimTubeTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTest (-3346) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SlimTubeTest' for type 'prodml23:SlimTubeTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTest (-3346) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SwellingTest' for type 'prodml22:SwellingTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTest (-3344) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SwellingTest' for type 'prodml23:SwellingTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTest (-3344) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest' for type 'prodml22:VaporLiquidEquilibriumTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporLiquidEquilibriumTest (-3342) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest' for type 'prodml23:VaporLiquidEquilibriumTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporLiquidEquilibriumTest (-3342) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest' for type 'prodml22:OtherMeasurementTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTest (-3340) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest' for type 'prodml23:OtherMeasurementTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTest (-3340) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest' for type 'prodml22:FluidSeparatorTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTest (-3338) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest' for type 'prodml23:FluidSeparatorTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTest (-3338) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest' for type 'prodml22:ConstantVolumeDepletionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantVolumeDepletionTest (-3336) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest' for type 'prodml23:ConstantVolumeDepletionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantVolumeDepletionTest (-3336) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest' for type 'prodml22:DifferentialLiberationTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DifferentialLiberationTest (-3334) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest' for type 'prodml23:DifferentialLiberationTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DifferentialLiberationTest (-3334) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SaturationTest' for type 'prodml22:SaturationTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SaturationTest (-3332) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SaturationTest' for type 'prodml23:SaturationTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SaturationTest (-3332) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest' for type 'prodml22:ConstantCompositionExpansionTest' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTest (-3330) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest' for type 'prodml23:ConstantCompositionExpansionTest' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTest (-3330) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis' for type 'prodml22:AtmosphericFlashTestAndCompositionalAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AtmosphericFlashTestAndCompositionalAnalysis (-3328) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis' for type 'prodml23:AtmosphericFlashTestAndCompositionalAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AtmosphericFlashTestAndCompositionalAnalysis (-3328) #endif @@ -99857,45 +99990,45 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AbstractValue' for type 'prodml22:AbstractValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractValue (-3182) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AbstractValue' for type 'prodml23:AbstractValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractValue (-3182) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__KeywordValueStruct' for type 'prodml22:KeywordValueStruct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__KeywordValueStruct (-3180) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__KeywordValueStruct' for type 'prodml23:KeywordValueStruct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__KeywordValueStruct (-3180) #endif -/* std::vector has binding name 'std__vectorTemplateOfprodml22__FlowQualifier' for type 'prodml22:FlowQualifier' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__FlowQualifier (-3176) +/* std::vector has binding name 'std__vectorTemplateOfprodml23__FlowQualifier' for type 'prodml23:FlowQualifier' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__FlowQualifier (-3176) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork' for type 'prodml22:ProductFlowNetwork' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetwork (-3175) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork' for type 'prodml23:ProductFlowNetwork' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetwork (-3175) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference' for type 'prodml22:ProductFlowExternalReference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalReference (-3173) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference' for type 'prodml23:ProductFlowExternalReference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalReference (-3173) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit' for type 'prodml22:ProductVolumeBusinessUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessUnit (-3170) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit' for type 'prodml23:ProductVolumeBusinessUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessUnit (-3170) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility' for type 'prodml22:ProductVolumeFacility' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFacility (-3169) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility' for type 'prodml23:ProductVolumeFacility' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFacility (-3169) #endif @@ -99905,57 +100038,57 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition' for type 'prodml22:FluidSampleAcquisition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleAcquisition (-3162) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition' for type 'prodml23:FluidSampleAcquisition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleAcquisition (-3162) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent' for type 'prodml22:FluidSampleChainOfCustodyEvent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSampleChainOfCustodyEvent (-3158) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent' for type 'prodml23:FluidSampleChainOfCustodyEvent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSampleChainOfCustodyEvent (-3158) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput' for type 'prodml22:AbstractDeconvolutionOutput' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractDeconvolutionOutput (-3127) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput' for type 'prodml23:AbstractDeconvolutionOutput' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractDeconvolutionOutput (-3127) #endif -/* std::vector has binding name 'std__vectorTemplateOfprodml22__DataConditioningExt' for type 'prodml22:DataConditioningExt' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml22__DataConditioningExt (-3124) +/* std::vector has binding name 'std__vectorTemplateOfprodml23__DataConditioningExt' for type 'prodml23:DataConditioningExt' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfprodml23__DataConditioningExt (-3124) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData' for type 'prodml22:AbstractFlowTestData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractFlowTestData (-3123) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData' for type 'prodml23:AbstractFlowTestData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractFlowTestData (-3123) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis' for type 'prodml22:SpecializedAnalysis' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SpecializedAnalysis (-3121) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis' for type 'prodml23:SpecializedAnalysis' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SpecializedAnalysis (-3121) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval' for type 'prodml22:InterferingFlowTestInterval' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterferingFlowTestInterval (-3116) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval' for type 'prodml23:InterferingFlowTestInterval' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterferingFlowTestInterval (-3114) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__LayerModel' for type 'prodml22:LayerModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerModel (-3111) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__LayerModel' for type 'prodml23:LayerModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerModel (-3111) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__Channel' for type 'prodml22:Channel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Channel (-3107) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__Channel' for type 'prodml23:Channel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Channel (-3107) #endif @@ -99965,27 +100098,27 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SampleContaminant' for type 'prodml22:SampleContaminant' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleContaminant (-3102) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SampleContaminant' for type 'prodml23:SampleContaminant' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleContaminant (-3102) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport' for type 'prodml22:FluidAnalysisReport' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidAnalysisReport (-3100) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport' for type 'prodml23:FluidAnalysisReport' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidAnalysisReport (-3100) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel' for type 'prodml22:FluidCharacterizationModel' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationModel (-3095) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel' for type 'prodml23:FluidCharacterizationModel' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationModel (-3095) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource' for type 'prodml22:FluidCharacterizationSource' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationSource (-3093) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource' for type 'prodml23:FluidCharacterizationSource' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationSource (-3093) #endif @@ -100439,111 +100572,111 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowPort' for type 'prodml22:ProductFlowPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowPort (-2842) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowPort' for type 'prodml23:ProductFlowPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowPort (-2842) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct' for type 'prodml22:FacilityIdentifierStruct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FacilityIdentifierStruct (-2840) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct' for type 'prodml23:FacilityIdentifierStruct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FacilityIdentifierStruct (-2840) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty' for type 'prodml22:ProductFlowExpectedUnitProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExpectedUnitProperty (-2839) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty' for type 'prodml23:ProductFlowExpectedUnitProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExpectedUnitProperty (-2839) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ConnectedNode' for type 'prodml22:ConnectedNode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConnectedNode (-2837) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ConnectedNode' for type 'prodml23:ConnectedNode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConnectedNode (-2837) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected' for type 'prodml22:ProductFlowQualifierExpected' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowQualifierExpected (-2835) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected' for type 'prodml23:ProductFlowQualifierExpected' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowQualifierExpected (-2835) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod' for type 'prodml22:ProductVolumePeriod' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePeriod (-2830) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod' for type 'prodml23:ProductVolumePeriod' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePeriod (-2830) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet' for type 'prodml22:ProductVolumeBalanceSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceSet (-2825) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet' for type 'prodml23:ProductVolumeBalanceSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceSet (-2825) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AbstractMeasureData' for type 'prodml22:AbstractMeasureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractMeasureData (-2822) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AbstractMeasureData' for type 'prodml23:AbstractMeasureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractMeasureData (-2822) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__CurveDefinition' for type 'prodml22:CurveDefinition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CurveDefinition (-2820) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__CurveDefinition' for type 'prodml23:CurveDefinition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CurveDefinition (-2820) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue' for type 'prodml22:ProductVolumeParameterValue' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterValue (-2818) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue' for type 'prodml23:ProductVolumeParameterValue' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterValue (-2818) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct' for type 'prodml22:ProductVolumeProduct' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeProduct (-2814) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct' for type 'prodml23:ProductVolumeProduct' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeProduct (-2814) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__DatedComment' for type 'prodml22:DatedComment' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__DatedComment (-2808) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__DatedComment' for type 'prodml23:DatedComment' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__DatedComment (-2808) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet' for type 'prodml22:ProductVolumeParameterSet' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeParameterSet (-2806) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet' for type 'prodml23:ProductVolumeParameterSet' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeParameterSet (-2806) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow' for type 'prodml22:ProductVolumeFlow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeFlow (-2804) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow' for type 'prodml23:ProductVolumeFlow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeFlow (-2804) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit' for type 'prodml22:ProductVolumeBusinessSubUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBusinessSubUnit (-2796) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit' for type 'prodml23:ProductVolumeBusinessSubUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBusinessSubUnit (-2796) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail' for type 'prodml22:ProductVolumeBalanceDetail' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceDetail (-2792) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail' for type 'prodml23:ProductVolumeBalanceDetail' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceDetail (-2792) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent' for type 'prodml22:ProductVolumeBalanceEvent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeBalanceEvent (-2788) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent' for type 'prodml23:ProductVolumeBalanceEvent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeBalanceEvent (-2788) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent' for type 'prodml22:ProductVolumeComponentContent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumeComponentContent (-2786) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent' for type 'prodml23:ProductVolumeComponentContent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumeComponentContent (-2786) #endif @@ -100553,9 +100686,9 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference' for type 'prodml22:ProductVolumePortDifference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductVolumePortDifference (-2781) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference' for type 'prodml23:ProductVolumePortDifference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductVolumePortDifference (-2781) #endif @@ -100571,327 +100704,327 @@ typedef resqml22__WellboreTrajectoryRepresentation _resqml22__WellboreTrajectory #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction' for type 'prodml22:RecombinedSampleFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RecombinedSampleFraction (-2776) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction' for type 'prodml23:RecombinedSampleFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RecombinedSampleFraction (-2776) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__CustomParameter' for type 'prodml22:CustomParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomParameter (-2773) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__CustomParameter' for type 'prodml23:CustomParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomParameter (-2773) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AbstractParameter' for type 'prodml22:AbstractParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractParameter (-2771) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AbstractParameter' for type 'prodml23:AbstractParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractParameter (-2771) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__LocationIn2D' for type 'prodml22:LocationIn2D' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LocationIn2D (-2762) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__LocationIn2D' for type 'prodml23:LocationIn2D' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LocationIn2D (-2762) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AnalysisLine' for type 'prodml22:AnalysisLine' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AnalysisLine (-2760) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AnalysisLine' for type 'prodml23:AnalysisLine' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AnalysisLine (-2760) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection' for type 'prodml22:LayerToLayerConnection' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LayerToLayerConnection (-2756) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection' for type 'prodml23:LayerToLayerConnection' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LayerToLayerConnection (-2756) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode' for type 'prodml22:ReportingHierarchyNode' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportingHierarchyNode (-2742) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode' for type 'prodml23:ReportingHierarchyNode' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportingHierarchyNode (-2742) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductRate' for type 'prodml22:ProductRate' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductRate (-2740) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductRate' for type 'prodml23:ProductRate' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductRate (-2740) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__MeasuredPressureData' for type 'prodml22:MeasuredPressureData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__MeasuredPressureData (-2734) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__MeasuredPressureData' for type 'prodml23:MeasuredPressureData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__MeasuredPressureData (-2734) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData' for type 'prodml22:AbstractPtaFlowData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__AbstractPtaFlowData (-2732) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData' for type 'prodml23:AbstractPtaFlowData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__AbstractPtaFlowData (-2732) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__OtherData' for type 'prodml22:OtherData' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherData (-2730) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__OtherData' for type 'prodml23:OtherData' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherData (-2730) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep' for type 'prodml22:WaterAnalysisTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__WaterAnalysisTestStep (-2712) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep' for type 'prodml23:WaterAnalysisTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__WaterAnalysisTestStep (-2712) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__LiquidComposition' for type 'prodml22:LiquidComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__LiquidComposition (-2709) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__LiquidComposition' for type 'prodml23:LiquidComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__LiquidComposition (-2709) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__PhaseDensity' for type 'prodml22:PhaseDensity' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PhaseDensity (-2708) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__PhaseDensity' for type 'prodml23:PhaseDensity' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PhaseDensity (-2708) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded' for type 'prodml22:RefInjectedGasAdded' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__RefInjectedGasAdded (-2705) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded' for type 'prodml23:RefInjectedGasAdded' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__RefInjectedGasAdded (-2705) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SwellingTestStep' for type 'prodml22:SwellingTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SwellingTestStep (-2703) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SwellingTestStep' for type 'prodml23:SwellingTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SwellingTestStep (-2703) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__Sara' for type 'prodml22:Sara' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__Sara (-2701) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__Sara' for type 'prodml23:Sara' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__Sara (-2701) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature' for type 'prodml22:ViscosityAtTemperature' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ViscosityAtTemperature (-2699) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature' for type 'prodml23:ViscosityAtTemperature' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ViscosityAtTemperature (-2699) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep' for type 'prodml22:SlimTubeTestVolumeStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestVolumeStep (-2693) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep' for type 'prodml23:SlimTubeTestVolumeStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestVolumeStep (-2693) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification' for type 'prodml22:SlimTubeSpecification' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeSpecification (-2691) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification' for type 'prodml23:SlimTubeSpecification' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeSpecification (-2691) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep' for type 'prodml22:SlimTubeTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SlimTubeTestStep (-2689) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep' for type 'prodml23:SlimTubeTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SlimTubeTestStep (-2689) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__InjectedGas' for type 'prodml22:InjectedGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InjectedGas (-2687) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__InjectedGas' for type 'prodml23:InjectedGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InjectedGas (-2687) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SampleRestoration' for type 'prodml22:SampleRestoration' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SampleRestoration (-2685) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SampleRestoration' for type 'prodml23:SampleRestoration' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SampleRestoration (-2685) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__VaporComposition' for type 'prodml22:VaporComposition' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__VaporComposition (-2682) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__VaporComposition' for type 'prodml23:VaporComposition' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__VaporComposition (-2682) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep' for type 'prodml22:OtherMeasurementTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__OtherMeasurementTestStep (-2681) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep' for type 'prodml23:OtherMeasurementTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__OtherMeasurementTestStep (-2681) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep' for type 'prodml22:InterfacialTensionTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__InterfacialTensionTestStep (-2676) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep' for type 'prodml23:InterfacialTensionTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__InterfacialTensionTestStep (-2676) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep' for type 'prodml22:FluidSeparatorTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidSeparatorTestStep (-2673) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep' for type 'prodml23:FluidSeparatorTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidSeparatorTestStep (-2673) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ReportLocation' for type 'prodml22:ReportLocation' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReportLocation (-2671) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ReportLocation' for type 'prodml23:ReportLocation' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReportLocation (-2671) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep' for type 'prodml22:FluidDifferentialLiberationTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidDifferentialLiberationTestStep (-2667) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep' for type 'prodml23:FluidDifferentialLiberationTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidDifferentialLiberationTestStep (-2667) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep' for type 'prodml22:FluidCvdTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCvdTestStep (-2664) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep' for type 'prodml23:FluidCvdTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCvdTestStep (-2664) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep' for type 'prodml22:ConstantCompositionExpansionTestStep' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ConstantCompositionExpansionTestStep (-2656) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep' for type 'prodml23:ConstantCompositionExpansionTestStep' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ConstantCompositionExpansionTestStep (-2656) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidVolumeReference' for type 'prodml22:FluidVolumeReference' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidVolumeReference (-2654) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidVolumeReference' for type 'prodml23:FluidVolumeReference' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidVolumeReference (-2654) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowUnit' for type 'prodml22:ProductFlowUnit' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowUnit (-2647) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowUnit' for type 'prodml23:ProductFlowUnit' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowUnit (-2647) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog' for type 'prodml22:ProductFlowChangeLog' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowChangeLog (-2645) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog' for type 'prodml23:ProductFlowChangeLog' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowChangeLog (-2645) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan' for type 'prodml22:ProductFlowNetworkPlan' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowNetworkPlan (-2643) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan' for type 'prodml23:ProductFlowNetworkPlan' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowNetworkPlan (-2643) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort' for type 'prodml22:ProductFlowExternalPort' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ProductFlowExternalPort (-2641) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort' for type 'prodml23:ProductFlowExternalPort' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ProductFlowExternalPort (-2641) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidComponentFraction' for type 'prodml22:FluidComponentFraction' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentFraction (-2638) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidComponentFraction' for type 'prodml23:FluidComponentFraction' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentFraction (-2638) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent' for type 'prodml22:SulfurFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__SulfurFluidComponent (-2634) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent' for type 'prodml23:SulfurFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__SulfurFluidComponent (-2634) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__PlusFluidComponent' for type 'prodml22:PlusFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PlusFluidComponent (-2632) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__PlusFluidComponent' for type 'prodml23:PlusFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PlusFluidComponent (-2632) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent' for type 'prodml22:PseudoFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PseudoFluidComponent (-2630) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent' for type 'prodml23:PseudoFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PseudoFluidComponent (-2630) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__PureFluidComponent' for type 'prodml22:PureFluidComponent' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PureFluidComponent (-2628) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__PureFluidComponent' for type 'prodml23:PureFluidComponent' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PureFluidComponent (-2628) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FormationWater' for type 'prodml22:FormationWater' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FormationWater (-2626) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FormationWater' for type 'prodml23:FormationWater' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FormationWater (-2626) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__NaturalGas' for type 'prodml22:NaturalGas' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__NaturalGas (-2624) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__NaturalGas' for type 'prodml23:NaturalGas' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__NaturalGas (-2624) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__StockTankOil' for type 'prodml22:StockTankOil' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__StockTankOil (-2622) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__StockTankOil' for type 'prodml23:StockTankOil' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__StockTankOil (-2622) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__PvtModelParameter' for type 'prodml22:PvtModelParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__PvtModelParameter (-2609) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__PvtModelParameter' for type 'prodml23:PvtModelParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__PvtModelParameter (-2609) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat' for type 'prodml22:FluidCharacterizationTableFormat' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableFormat (-2604) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat' for type 'prodml23:FluidCharacterizationTableFormat' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableFormat (-2604) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn' for type 'prodml22:FluidCharacterizationTableColumn' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableColumn (-2602) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn' for type 'prodml23:FluidCharacterizationTableColumn' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableColumn (-2602) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow' for type 'prodml22:FluidCharacterizationTableRow' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTableRow (-2600) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow' for type 'prodml23:FluidCharacterizationTableRow' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTableRow (-2600) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter' for type 'prodml22:FluidCharacterizationParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationParameter (-2598) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter' for type 'prodml23:FluidCharacterizationParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationParameter (-2598) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage' for type 'prodml22:ReferenceSeparatorStage' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__ReferenceSeparatorStage (-2595) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage' for type 'prodml23:ReferenceSeparatorStage' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__ReferenceSeparatorStage (-2595) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable' for type 'prodml22:FluidCharacterizationTable' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidCharacterizationTable (-2592) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable' for type 'prodml23:FluidCharacterizationTable' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidCharacterizationTable (-2592) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter' for type 'prodml22:CustomPvtModelParameter' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__CustomPvtModelParameter (-2589) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter' for type 'prodml23:CustomPvtModelParameter' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__CustomPvtModelParameter (-2589) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__FluidComponentProperty' for type 'prodml22:FluidComponentProperty' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__FluidComponentProperty (-2587) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__FluidComponentProperty' for type 'prodml23:FluidComponentProperty' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__FluidComponentProperty (-2587) #endif -/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient' for type 'prodml22:BinaryInteractionCoefficient' */ -#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient -#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml22__BinaryInteractionCoefficient (-2585) +/* std::vector has binding name 'std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient' for type 'prodml23:BinaryInteractionCoefficient' */ +#ifndef SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient +#define SOAP_TYPE_gsoap_eml2_3_std__vectorTemplateOfPointerToprodml23__BinaryInteractionCoefficient (-2585) #endif diff --git a/src/proxies/gsoap_resqml2_0_1C.cpp b/src/proxies/gsoap_resqml2_0_1C.cpp index 12afa0059..e68a28d46 100644 --- a/src/proxies/gsoap_resqml2_0_1C.cpp +++ b/src/proxies/gsoap_resqml2_0_1C.cpp @@ -1,8 +1,8 @@ /* gsoap_resqml2_0_1C.cpp - Generated by gSOAP 2.8.127E for resqml2_0_1ForGsoap.h + Generated by gSOAP 2.8.139E for resqml2_0_1ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -27,7 +27,7 @@ Product and source code licensed by Genivia Inc., contact@genivia.com namespace gsoap_resqml2_0_1 { -SOAP_SOURCE_STAMP("@(#) gsoap_resqml2_0_1C.cpp ver 2.8.127E 2023-03-30 07:11:24 GMT") +SOAP_SOURCE_STAMP("@(#) gsoap_resqml2_0_1C.cpp ver 2.8.139E 2025-09-19 16:13:39 GMT") #ifndef WITH_NOGLOBAL @@ -117633,21 +117633,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__SealedContactRepresentationPart(soap))) return NULL; - a->emplace_back(); - resqml20__SealedContactRepresentationPart * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__SealedContactRepresentationPart *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__SealedContactRepresentationPart, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__SealedContactRepresentationPart, sizeof(resqml20__SealedContactRepresentationPart), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__SealedContactRepresentationPart, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__SealedContactRepresentationPart, sizeof(resqml20__SealedContactRepresentationPart), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__SealedContactRepresentationPart(soap, tag, NULL, "resqml20:SealedContactRepresentationPart")) break; } else - { if (!soap_in_PointerToresqml20__SealedContactRepresentationPart(soap, tag, n, "resqml20:SealedContactRepresentationPart")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__SealedContactRepresentationPart(soap, tag, &n, "resqml20:SealedContactRepresentationPart")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -117723,21 +117725,23 @@ SOAP_FMAC3 std::vector * SOAP_FMA } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__AbstractContactRepresentationPart(soap))) return NULL; - a->emplace_back(); - resqml20__AbstractContactRepresentationPart * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__AbstractContactRepresentationPart *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractContactRepresentationPart, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractContactRepresentationPart, sizeof(resqml20__AbstractContactRepresentationPart), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractContactRepresentationPart, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractContactRepresentationPart, sizeof(resqml20__AbstractContactRepresentationPart), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__AbstractContactRepresentationPart(soap, tag, NULL, "resqml20:AbstractContactRepresentationPart")) break; } else - { if (!soap_in_PointerToresqml20__AbstractContactRepresentationPart(soap, tag, n, "resqml20:AbstractContactRepresentationPart")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__AbstractContactRepresentationPart(soap, tag, &n, "resqml20:AbstractContactRepresentationPart")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -117813,21 +117817,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__GeologicUnitInterpretationIndex(soap))) return NULL; - a->emplace_back(); - resqml20__GeologicUnitInterpretationIndex * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__GeologicUnitInterpretationIndex *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GeologicUnitInterpretationIndex, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GeologicUnitInterpretationIndex, sizeof(resqml20__GeologicUnitInterpretationIndex), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GeologicUnitInterpretationIndex, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GeologicUnitInterpretationIndex, sizeof(resqml20__GeologicUnitInterpretationIndex), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__GeologicUnitInterpretationIndex(soap, tag, NULL, "resqml20:GeologicUnitInterpretationIndex")) break; } else - { if (!soap_in_PointerToresqml20__GeologicUnitInterpretationIndex(soap, tag, n, "resqml20:GeologicUnitInterpretationIndex")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__GeologicUnitInterpretationIndex(soap, tag, &n, "resqml20:GeologicUnitInterpretationIndex")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -117903,21 +117909,23 @@ SOAP_FMAC3 std::vector * SOAP_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__StratigraphicUnitInterpretationIndex(soap))) return NULL; - a->emplace_back(); - resqml20__StratigraphicUnitInterpretationIndex * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__StratigraphicUnitInterpretationIndex *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__StratigraphicUnitInterpretationIndex, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__StratigraphicUnitInterpretationIndex, sizeof(resqml20__StratigraphicUnitInterpretationIndex), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__StratigraphicUnitInterpretationIndex, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__StratigraphicUnitInterpretationIndex, sizeof(resqml20__StratigraphicUnitInterpretationIndex), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__StratigraphicUnitInterpretationIndex(soap, tag, NULL, "resqml20:StratigraphicUnitInterpretationIndex")) break; } else - { if (!soap_in_PointerToresqml20__StratigraphicUnitInterpretationIndex(soap, tag, n, "resqml20:StratigraphicUnitInterpretationIndex")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__StratigraphicUnitInterpretationIndex(soap, tag, &n, "resqml20:StratigraphicUnitInterpretationIndex")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -117993,21 +118001,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__Grid2dPatch(soap))) return NULL; - a->emplace_back(); - resqml20__Grid2dPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__Grid2dPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Grid2dPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Grid2dPatch, sizeof(resqml20__Grid2dPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Grid2dPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Grid2dPatch, sizeof(resqml20__Grid2dPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__Grid2dPatch(soap, tag, NULL, "resqml20:Grid2dPatch")) break; } else - { if (!soap_in_PointerToresqml20__Grid2dPatch(soap, tag, n, "resqml20:Grid2dPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__Grid2dPatch(soap, tag, &n, "resqml20:Grid2dPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118083,21 +118093,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__VolumeRegion(soap))) return NULL; - a->emplace_back(); - resqml20__VolumeRegion * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__VolumeRegion *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__VolumeRegion, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__VolumeRegion, sizeof(resqml20__VolumeRegion), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__VolumeRegion, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__VolumeRegion, sizeof(resqml20__VolumeRegion), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__VolumeRegion(soap, tag, NULL, "resqml20:VolumeRegion")) break; } else - { if (!soap_in_PointerToresqml20__VolumeRegion(soap, tag, n, "resqml20:VolumeRegion")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__VolumeRegion(soap, tag, &n, "resqml20:VolumeRegion")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118173,21 +118185,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ContactIdentity(soap))) return NULL; - a->emplace_back(); - resqml20__ContactIdentity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ContactIdentity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ContactIdentity, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ContactIdentity, sizeof(resqml20__ContactIdentity), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ContactIdentity, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ContactIdentity, sizeof(resqml20__ContactIdentity), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ContactIdentity(soap, tag, NULL, "resqml20:ContactIdentity")) break; } else - { if (!soap_in_PointerToresqml20__ContactIdentity(soap, tag, n, "resqml20:ContactIdentity")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ContactIdentity(soap, tag, &n, "resqml20:ContactIdentity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118263,21 +118277,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__AbstractPlaneGeometry(soap))) return NULL; - a->emplace_back(); - resqml20__AbstractPlaneGeometry * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__AbstractPlaneGeometry *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractPlaneGeometry, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractPlaneGeometry, sizeof(resqml20__AbstractPlaneGeometry), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractPlaneGeometry, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractPlaneGeometry, sizeof(resqml20__AbstractPlaneGeometry), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__AbstractPlaneGeometry(soap, tag, NULL, "resqml20:AbstractPlaneGeometry")) break; } else - { if (!soap_in_PointerToresqml20__AbstractPlaneGeometry(soap, tag, n, "resqml20:AbstractPlaneGeometry")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__AbstractPlaneGeometry(soap, tag, &n, "resqml20:AbstractPlaneGeometry")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118353,21 +118369,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__TrianglePatch(soap))) return NULL; - a->emplace_back(); - resqml20__TrianglePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__TrianglePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__TrianglePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__TrianglePatch, sizeof(resqml20__TrianglePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__TrianglePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__TrianglePatch, sizeof(resqml20__TrianglePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__TrianglePatch(soap, tag, NULL, "resqml20:TrianglePatch")) break; } else - { if (!soap_in_PointerToresqml20__TrianglePatch(soap, tag, n, "resqml20:TrianglePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__TrianglePatch(soap, tag, &n, "resqml20:TrianglePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118443,21 +118461,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__WellboreMarker(soap))) return NULL; - a->emplace_back(); - resqml20__WellboreMarker * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__WellboreMarker *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__WellboreMarker, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__WellboreMarker, sizeof(resqml20__WellboreMarker), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__WellboreMarker, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__WellboreMarker, sizeof(resqml20__WellboreMarker), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__WellboreMarker(soap, tag, NULL, "resqml20:WellboreMarker")) break; } else - { if (!soap_in_PointerToresqml20__WellboreMarker(soap, tag, n, "resqml20:WellboreMarker")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__WellboreMarker(soap, tag, &n, "resqml20:WellboreMarker")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118533,21 +118553,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__FaultThrow(soap))) return NULL; - a->emplace_back(); - resqml20__FaultThrow * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__FaultThrow *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__FaultThrow, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__FaultThrow, sizeof(resqml20__FaultThrow), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__FaultThrow, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__FaultThrow, sizeof(resqml20__FaultThrow), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__FaultThrow(soap, tag, NULL, "resqml20:FaultThrow")) break; } else - { if (!soap_in_PointerToresqml20__FaultThrow(soap, tag, n, "resqml20:FaultThrow")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__FaultThrow(soap, tag, &n, "resqml20:FaultThrow")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118623,21 +118645,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__HorizonInterpretationIndex(soap))) return NULL; - a->emplace_back(); - resqml20__HorizonInterpretationIndex * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__HorizonInterpretationIndex *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__HorizonInterpretationIndex, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__HorizonInterpretationIndex, sizeof(resqml20__HorizonInterpretationIndex), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__HorizonInterpretationIndex, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__HorizonInterpretationIndex, sizeof(resqml20__HorizonInterpretationIndex), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__HorizonInterpretationIndex(soap, tag, NULL, "resqml20:HorizonInterpretationIndex")) break; } else - { if (!soap_in_PointerToresqml20__HorizonInterpretationIndex(soap, tag, n, "resqml20:HorizonInterpretationIndex")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__HorizonInterpretationIndex(soap, tag, &n, "resqml20:HorizonInterpretationIndex")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118711,21 +118735,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfresqml20__BoundaryRelation(soap))) return NULL; - a->emplace_back(); - resqml20__BoundaryRelation *n = &a->back(); - soap_default_resqml20__BoundaryRelation(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__BoundaryRelation n; + soap_default_resqml20__BoundaryRelation(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BoundaryRelation, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfresqml20__BoundaryRelation, sizeof(resqml20__BoundaryRelation), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__BoundaryRelation, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfresqml20__BoundaryRelation, sizeof(resqml20__BoundaryRelation), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_resqml20__BoundaryRelation(soap, tag, NULL, "resqml20:BoundaryRelation")) break; } else - { if (!soap_in_resqml20__BoundaryRelation(soap, tag, n, "resqml20:BoundaryRelation")) - { a->pop_back(); + { if (!soap_in_resqml20__BoundaryRelation(soap, tag, &n, "resqml20:BoundaryRelation")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118801,21 +118827,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soa } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__GpGridUnstructuredGridPatch(soap))) return NULL; - a->emplace_back(); - resqml20__GpGridUnstructuredGridPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__GpGridUnstructuredGridPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridUnstructuredGridPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridUnstructuredGridPatch, sizeof(resqml20__GpGridUnstructuredGridPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridUnstructuredGridPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridUnstructuredGridPatch, sizeof(resqml20__GpGridUnstructuredGridPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__GpGridUnstructuredGridPatch(soap, tag, NULL, "resqml20:GpGridUnstructuredGridPatch")) break; } else - { if (!soap_in_PointerToresqml20__GpGridUnstructuredGridPatch(soap, tag, n, "resqml20:GpGridUnstructuredGridPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__GpGridUnstructuredGridPatch(soap, tag, &n, "resqml20:GpGridUnstructuredGridPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118891,21 +118919,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_s } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__GpGridColumnLayerGrid(soap))) return NULL; - a->emplace_back(); - resqml20__GpGridColumnLayerGrid * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__GpGridColumnLayerGrid *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridColumnLayerGrid, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridColumnLayerGrid, sizeof(resqml20__GpGridColumnLayerGrid), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridColumnLayerGrid, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridColumnLayerGrid, sizeof(resqml20__GpGridColumnLayerGrid), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__GpGridColumnLayerGrid(soap, tag, NULL, "resqml20:GpGridColumnLayerGrid")) break; } else - { if (!soap_in_PointerToresqml20__GpGridColumnLayerGrid(soap, tag, n, "resqml20:GpGridColumnLayerGrid")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__GpGridColumnLayerGrid(soap, tag, &n, "resqml20:GpGridColumnLayerGrid")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -118979,21 +119009,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxsd__in } if (!a && !(a = soap_new_std__vectorTemplateOfxsd__integer(soap))) return NULL; - a->emplace_back(); - LONG64 *n = &a->back(); - soap_default_xsd__integer(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + LONG64 n; + soap_default_xsd__integer(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_xsd__integer, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfxsd__integer, sizeof(LONG64), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_xsd__integer, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfxsd__integer, sizeof(LONG64), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_xsd__integer(soap, tag, NULL, "xsd:integer")) break; } else - { if (!soap_in_xsd__integer(soap, tag, n, "xsd:integer")) - { a->pop_back(); + { if (!soap_in_xsd__integer(soap, tag, &n, "xsd:integer")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119067,21 +119099,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfdouble( } if (!a && !(a = soap_new_std__vectorTemplateOfdouble(soap))) return NULL; - a->emplace_back(); - double *n = &a->back(); - soap_default_double(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + double n; + soap_default_double(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_double, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfdouble, sizeof(double), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_double, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfdouble, sizeof(double), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_double(soap, tag, NULL, "xsd:double")) break; } else - { if (!soap_in_double(soap, tag, n, "xsd:double")) - { a->pop_back(); + { if (!soap_in_double(soap, tag, &n, "xsd:double")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119157,21 +119191,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__PatchBoundaries(soap))) return NULL; - a->emplace_back(); - resqml20__PatchBoundaries * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__PatchBoundaries *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchBoundaries, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchBoundaries, sizeof(resqml20__PatchBoundaries), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchBoundaries, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchBoundaries, sizeof(resqml20__PatchBoundaries), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__PatchBoundaries(soap, tag, NULL, "resqml20:PatchBoundaries")) break; } else - { if (!soap_in_PointerToresqml20__PatchBoundaries(soap, tag, n, "resqml20:PatchBoundaries")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__PatchBoundaries(soap, tag, &n, "resqml20:PatchBoundaries")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119247,21 +119283,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__PolylineSetPatch(soap))) return NULL; - a->emplace_back(); - resqml20__PolylineSetPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__PolylineSetPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PolylineSetPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PolylineSetPatch, sizeof(resqml20__PolylineSetPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PolylineSetPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PolylineSetPatch, sizeof(resqml20__PolylineSetPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__PolylineSetPatch(soap, tag, NULL, "resqml20:PolylineSetPatch")) break; } else - { if (!soap_in_PointerToresqml20__PolylineSetPatch(soap, tag, n, "resqml20:PolylineSetPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__PolylineSetPatch(soap, tag, &n, "resqml20:PolylineSetPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119337,21 +119375,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__NodePatch(soap))) return NULL; - a->emplace_back(); - resqml20__NodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__NodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__NodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__NodePatch, sizeof(resqml20__NodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__NodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__NodePatch, sizeof(resqml20__NodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__NodePatch(soap, tag, NULL, "resqml20:NodePatch")) break; } else - { if (!soap_in_PointerToresqml20__NodePatch(soap, tag, n, "resqml20:NodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__NodePatch(soap, tag, &n, "resqml20:NodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119427,21 +119467,23 @@ SOAP_FMAC3 std::vector * SOAP_FMA } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__AbstractContactInterpretationPart(soap))) return NULL; - a->emplace_back(); - resqml20__AbstractContactInterpretationPart * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__AbstractContactInterpretationPart *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractContactInterpretationPart, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractContactInterpretationPart, sizeof(resqml20__AbstractContactInterpretationPart), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractContactInterpretationPart, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractContactInterpretationPart, sizeof(resqml20__AbstractContactInterpretationPart), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__AbstractContactInterpretationPart(soap, tag, NULL, "resqml20:AbstractContactInterpretationPart")) break; } else - { if (!soap_in_PointerToresqml20__AbstractContactInterpretationPart(soap, tag, n, "resqml20:AbstractContactInterpretationPart")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__AbstractContactInterpretationPart(soap, tag, &n, "resqml20:AbstractContactInterpretationPart")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119517,21 +119559,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__SubRepresentationPatch(soap))) return NULL; - a->emplace_back(); - resqml20__SubRepresentationPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__SubRepresentationPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__SubRepresentationPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__SubRepresentationPatch, sizeof(resqml20__SubRepresentationPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__SubRepresentationPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__SubRepresentationPatch, sizeof(resqml20__SubRepresentationPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__SubRepresentationPatch(soap, tag, NULL, "resqml20:SubRepresentationPatch")) break; } else - { if (!soap_in_PointerToresqml20__SubRepresentationPatch(soap, tag, n, "resqml20:SubRepresentationPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__SubRepresentationPatch(soap, tag, &n, "resqml20:SubRepresentationPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119607,21 +119651,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__PatchOfGeometry(soap))) return NULL; - a->emplace_back(); - resqml20__PatchOfGeometry * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__PatchOfGeometry *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchOfGeometry, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchOfGeometry, sizeof(resqml20__PatchOfGeometry), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchOfGeometry, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchOfGeometry, sizeof(resqml20__PatchOfGeometry), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__PatchOfGeometry(soap, tag, NULL, "resqml20:PatchOfGeometry")) break; } else - { if (!soap_in_PointerToresqml20__PatchOfGeometry(soap, tag, n, "resqml20:PatchOfGeometry")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__PatchOfGeometry(soap, tag, &n, "resqml20:PatchOfGeometry")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119697,21 +119743,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__PropertyKindFacet(soap))) return NULL; - a->emplace_back(); - resqml20__PropertyKindFacet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__PropertyKindFacet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PropertyKindFacet, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PropertyKindFacet, sizeof(resqml20__PropertyKindFacet), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PropertyKindFacet, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PropertyKindFacet, sizeof(resqml20__PropertyKindFacet), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__PropertyKindFacet(soap, tag, NULL, "resqml20:PropertyKindFacet")) break; } else - { if (!soap_in_PointerToresqml20__PropertyKindFacet(soap, tag, n, "resqml20:PropertyKindFacet")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__PropertyKindFacet(soap, tag, &n, "resqml20:PropertyKindFacet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119787,21 +119835,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__PatchOfValues(soap))) return NULL; - a->emplace_back(); - resqml20__PatchOfValues * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__PatchOfValues *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchOfValues, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchOfValues, sizeof(resqml20__PatchOfValues), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchOfValues, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchOfValues, sizeof(resqml20__PatchOfValues), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__PatchOfValues(soap, tag, NULL, "resqml20:PatchOfValues")) break; } else - { if (!soap_in_PointerToresqml20__PatchOfValues(soap, tag, n, "resqml20:PatchOfValues")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__PatchOfValues(soap, tag, &n, "resqml20:PatchOfValues")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119877,21 +119927,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__StringLookup(soap))) return NULL; - a->emplace_back(); - resqml20__StringLookup * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__StringLookup *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__StringLookup, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__StringLookup, sizeof(resqml20__StringLookup), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__StringLookup, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__StringLookup, sizeof(resqml20__StringLookup), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__StringLookup(soap, tag, NULL, "resqml20:StringLookup")) break; } else - { if (!soap_in_PointerToresqml20__StringLookup(soap, tag, n, "resqml20:StringLookup")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__StringLookup(soap, tag, &n, "resqml20:StringLookup")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -119967,21 +120019,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__PatchOfPoints(soap))) return NULL; - a->emplace_back(); - resqml20__PatchOfPoints * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__PatchOfPoints *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchOfPoints, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchOfPoints, sizeof(resqml20__PatchOfPoints), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__PatchOfPoints, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__PatchOfPoints, sizeof(resqml20__PatchOfPoints), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__PatchOfPoints(soap, tag, NULL, "resqml20:PatchOfPoints")) break; } else - { if (!soap_in_PointerToresqml20__PatchOfPoints(soap, tag, n, "resqml20:PatchOfPoints")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__PatchOfPoints(soap, tag, &n, "resqml20:PatchOfPoints")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120057,21 +120111,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__DoubleLookup(soap))) return NULL; - a->emplace_back(); - resqml20__DoubleLookup * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__DoubleLookup *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__DoubleLookup, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__DoubleLookup, sizeof(resqml20__DoubleLookup), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__DoubleLookup, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__DoubleLookup, sizeof(resqml20__DoubleLookup), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__DoubleLookup(soap, tag, NULL, "resqml20:DoubleLookup")) break; } else - { if (!soap_in_PointerToresqml20__DoubleLookup(soap, tag, n, "resqml20:DoubleLookup")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__DoubleLookup(soap, tag, &n, "resqml20:DoubleLookup")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120147,21 +120203,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ParameterTemplate(soap))) return NULL; - a->emplace_back(); - resqml20__ParameterTemplate * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ParameterTemplate *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ParameterTemplate, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ParameterTemplate, sizeof(resqml20__ParameterTemplate), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ParameterTemplate, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ParameterTemplate, sizeof(resqml20__ParameterTemplate), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ParameterTemplate(soap, tag, NULL, "resqml20:ParameterTemplate")) break; } else - { if (!soap_in_PointerToresqml20__ParameterTemplate(soap, tag, n, "resqml20:ParameterTemplate")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ParameterTemplate(soap, tag, &n, "resqml20:ParameterTemplate")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120237,21 +120295,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__Timestamp(soap))) return NULL; - a->emplace_back(); - resqml20__Timestamp * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__Timestamp *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Timestamp, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Timestamp, sizeof(resqml20__Timestamp), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Timestamp, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Timestamp, sizeof(resqml20__Timestamp), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__Timestamp(soap, tag, NULL, "resqml20:Timestamp")) break; } else - { if (!soap_in_PointerToresqml20__Timestamp(soap, tag, n, "resqml20:Timestamp")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__Timestamp(soap, tag, &n, "resqml20:Timestamp")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120327,21 +120387,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ChronostratigraphicRank(soap))) return NULL; - a->emplace_back(); - resqml20__ChronostratigraphicRank * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ChronostratigraphicRank *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ChronostratigraphicRank, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ChronostratigraphicRank, sizeof(resqml20__ChronostratigraphicRank), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ChronostratigraphicRank, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ChronostratigraphicRank, sizeof(resqml20__ChronostratigraphicRank), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ChronostratigraphicRank(soap, tag, NULL, "resqml20:ChronostratigraphicRank")) break; } else - { if (!soap_in_PointerToresqml20__ChronostratigraphicRank(soap, tag, n, "resqml20:ChronostratigraphicRank")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ChronostratigraphicRank(soap, tag, &n, "resqml20:ChronostratigraphicRank")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120417,21 +120479,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__RepresentationIdentity(soap))) return NULL; - a->emplace_back(); - resqml20__RepresentationIdentity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__RepresentationIdentity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__RepresentationIdentity, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__RepresentationIdentity, sizeof(resqml20__RepresentationIdentity), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__RepresentationIdentity, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__RepresentationIdentity, sizeof(resqml20__RepresentationIdentity), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__RepresentationIdentity(soap, tag, NULL, "resqml20:RepresentationIdentity")) break; } else - { if (!soap_in_PointerToresqml20__RepresentationIdentity(soap, tag, n, "resqml20:RepresentationIdentity")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__RepresentationIdentity(soap, tag, &n, "resqml20:RepresentationIdentity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120507,21 +120571,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTe } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__EdgePatch(soap))) return NULL; - a->emplace_back(); - resqml20__EdgePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__EdgePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__EdgePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__EdgePatch, sizeof(resqml20__EdgePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__EdgePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__EdgePatch, sizeof(resqml20__EdgePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__EdgePatch(soap, tag, NULL, "resqml20:EdgePatch")) break; } else - { if (!soap_in_PointerToresqml20__EdgePatch(soap, tag, n, "resqml20:EdgePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__EdgePatch(soap, tag, &n, "resqml20:EdgePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120597,21 +120663,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__NameValuePair(soap))) return NULL; - a->emplace_back(); - resqml20__NameValuePair * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__NameValuePair *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__NameValuePair, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__NameValuePair, sizeof(resqml20__NameValuePair), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__NameValuePair, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__NameValuePair, sizeof(resqml20__NameValuePair), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__NameValuePair(soap, tag, NULL, "resqml20:NameValuePair")) break; } else - { if (!soap_in_PointerToresqml20__NameValuePair(soap, tag, n, "resqml20:NameValuePair")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__NameValuePair(soap, tag, &n, "resqml20:NameValuePair")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120687,21 +120755,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__AdditionalGridPoints(soap))) return NULL; - a->emplace_back(); - resqml20__AdditionalGridPoints * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__AdditionalGridPoints *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AdditionalGridPoints, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AdditionalGridPoints, sizeof(resqml20__AdditionalGridPoints), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AdditionalGridPoints, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AdditionalGridPoints, sizeof(resqml20__AdditionalGridPoints), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__AdditionalGridPoints(soap, tag, NULL, "resqml20:AdditionalGridPoints")) break; } else - { if (!soap_in_PointerToresqml20__AdditionalGridPoints(soap, tag, n, "resqml20:AdditionalGridPoints")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__AdditionalGridPoints(soap, tag, &n, "resqml20:AdditionalGridPoints")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120777,21 +120847,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vec } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ElementIndices(soap))) return NULL; - a->emplace_back(); - resqml20__ElementIndices * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ElementIndices *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ElementIndices, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ElementIndices, sizeof(resqml20__ElementIndices), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ElementIndices, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ElementIndices, sizeof(resqml20__ElementIndices), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ElementIndices(soap, tag, NULL, "resqml20:ElementIndices")) break; } else - { if (!soap_in_PointerToresqml20__ElementIndices(soap, tag, n, "resqml20:ElementIndices")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ElementIndices(soap, tag, &n, "resqml20:ElementIndices")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120867,21 +120939,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ThreePoint3d(soap))) return NULL; - a->emplace_back(); - resqml20__ThreePoint3d * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ThreePoint3d *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ThreePoint3d, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ThreePoint3d, sizeof(resqml20__ThreePoint3d), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ThreePoint3d, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ThreePoint3d, sizeof(resqml20__ThreePoint3d), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ThreePoint3d(soap, tag, NULL, "resqml20:ThreePoint3d")) break; } else - { if (!soap_in_PointerToresqml20__ThreePoint3d(soap, tag, n, "resqml20:ThreePoint3d")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ThreePoint3d(soap, tag, &n, "resqml20:ThreePoint3d")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -120957,21 +121031,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__IntegerConstantArray(soap))) return NULL; - a->emplace_back(); - resqml20__IntegerConstantArray * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__IntegerConstantArray *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerConstantArray, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__IntegerConstantArray, sizeof(resqml20__IntegerConstantArray), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerConstantArray, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__IntegerConstantArray, sizeof(resqml20__IntegerConstantArray), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__IntegerConstantArray(soap, tag, NULL, "resqml20:IntegerConstantArray")) break; } else - { if (!soap_in_PointerToresqml20__IntegerConstantArray(soap, tag, n, "resqml20:IntegerConstantArray")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__IntegerConstantArray(soap, tag, &n, "resqml20:IntegerConstantArray")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121047,21 +121123,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__DoubleConstantArray(soap))) return NULL; - a->emplace_back(); - resqml20__DoubleConstantArray * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__DoubleConstantArray *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__DoubleConstantArray, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__DoubleConstantArray, sizeof(resqml20__DoubleConstantArray), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__DoubleConstantArray, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__DoubleConstantArray, sizeof(resqml20__DoubleConstantArray), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__DoubleConstantArray(soap, tag, NULL, "resqml20:DoubleConstantArray")) break; } else - { if (!soap_in_PointerToresqml20__DoubleConstantArray(soap, tag, n, "resqml20:DoubleConstantArray")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__DoubleConstantArray(soap, tag, &n, "resqml20:DoubleConstantArray")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121137,21 +121215,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ContactPatch(soap))) return NULL; - a->emplace_back(); - resqml20__ContactPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ContactPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ContactPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ContactPatch, sizeof(resqml20__ContactPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ContactPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ContactPatch, sizeof(resqml20__ContactPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ContactPatch(soap, tag, NULL, "resqml20:ContactPatch")) break; } else - { if (!soap_in_PointerToresqml20__ContactPatch(soap, tag, n, "resqml20:ContactPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ContactPatch(soap, tag, &n, "resqml20:ContactPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121225,21 +121305,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfxsd__n } if (!a && !(a = soap_new_std__vectorTemplateOfxsd__nonNegativeInteger(soap))) return NULL; - a->emplace_back(); - ULONG64 *n = &a->back(); - soap_default_xsd__nonNegativeInteger(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + ULONG64 n; + soap_default_xsd__nonNegativeInteger(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_xsd__nonNegativeInteger, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfxsd__nonNegativeInteger, sizeof(ULONG64), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_xsd__nonNegativeInteger, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfxsd__nonNegativeInteger, sizeof(ULONG64), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_xsd__nonNegativeInteger(soap, tag, NULL, "xsd:nonNegativeInteger")) break; } else - { if (!soap_in_xsd__nonNegativeInteger(soap, tag, n, "xsd:nonNegativeInteger")) - { a->pop_back(); + { if (!soap_in_xsd__nonNegativeInteger(soap, tag, &n, "xsd:nonNegativeInteger")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121315,21 +121397,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ColumnSubnodePatch(soap))) return NULL; - a->emplace_back(); - resqml20__ColumnSubnodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ColumnSubnodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ColumnSubnodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ColumnSubnodePatch, sizeof(resqml20__ColumnSubnodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ColumnSubnodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ColumnSubnodePatch, sizeof(resqml20__ColumnSubnodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ColumnSubnodePatch(soap, tag, NULL, "resqml20:ColumnSubnodePatch")) break; } else - { if (!soap_in_PointerToresqml20__ColumnSubnodePatch(soap, tag, n, "resqml20:ColumnSubnodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ColumnSubnodePatch(soap, tag, &n, "resqml20:ColumnSubnodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121405,21 +121489,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vect } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__Point3dOffset(soap))) return NULL; - a->emplace_back(); - resqml20__Point3dOffset * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__Point3dOffset *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Point3dOffset, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Point3dOffset, sizeof(resqml20__Point3dOffset), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Point3dOffset, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Point3dOffset, sizeof(resqml20__Point3dOffset), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__Point3dOffset(soap, tag, NULL, "resqml20:Point3dOffset")) break; } else - { if (!soap_in_PointerToresqml20__Point3dOffset(soap, tag, n, "resqml20:Point3dOffset")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__Point3dOffset(soap, tag, &n, "resqml20:Point3dOffset")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121495,21 +121581,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToptm__equivalentPropertyType(soap))) return NULL; - a->emplace_back(); - ptm__equivalentPropertyType * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + ptm__equivalentPropertyType *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_ptm__equivalentPropertyType, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToptm__equivalentPropertyType, sizeof(ptm__equivalentPropertyType), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_ptm__equivalentPropertyType, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToptm__equivalentPropertyType, sizeof(ptm__equivalentPropertyType), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToptm__equivalentPropertyType(soap, tag, NULL, "ptm:equivalentPropertyType")) break; } else - { if (!soap_in_PointerToptm__equivalentPropertyType(soap, tag, n, "ptm:equivalentPropertyType")) - { a->pop_back(); + { if (!soap_in_PointerToptm__equivalentPropertyType(soap, tag, &n, "ptm:equivalentPropertyType")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121585,21 +121673,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToptm__standardEnergisticsPropertyType(soap))) return NULL; - a->emplace_back(); - ptm__standardEnergisticsPropertyType * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + ptm__standardEnergisticsPropertyType *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_ptm__standardEnergisticsPropertyType, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToptm__standardEnergisticsPropertyType, sizeof(ptm__standardEnergisticsPropertyType), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_ptm__standardEnergisticsPropertyType, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToptm__standardEnergisticsPropertyType, sizeof(ptm__standardEnergisticsPropertyType), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToptm__standardEnergisticsPropertyType(soap, tag, NULL, "ptm:standardEnergisticsPropertyType")) break; } else - { if (!soap_in_PointerToptm__standardEnergisticsPropertyType(soap, tag, n, "ptm:standardEnergisticsPropertyType")) - { a->pop_back(); + { if (!soap_in_PointerToptm__standardEnergisticsPropertyType(soap, tag, &n, "ptm:standardEnergisticsPropertyType")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121675,21 +121765,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTem } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml20__ObjectAlias(soap))) return NULL; - a->emplace_back(); - eml20__ObjectAlias * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml20__ObjectAlias *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_eml20__ObjectAlias, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToeml20__ObjectAlias, sizeof(eml20__ObjectAlias), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_eml20__ObjectAlias, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToeml20__ObjectAlias, sizeof(eml20__ObjectAlias), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToeml20__ObjectAlias(soap, tag, NULL, "eml20:ObjectAlias")) break; } else - { if (!soap_in_PointerToeml20__ObjectAlias(soap, tag, n, "eml20:ObjectAlias")) - { a->pop_back(); + { if (!soap_in_PointerToeml20__ObjectAlias(soap, tag, &n, "eml20:ObjectAlias")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121763,21 +121855,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOf_XML(st } if (!a && !(a = soap_new_std__vectorTemplateOf_XML(soap))) return NULL; - a->emplace_back(); - char * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + char *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1__XML, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOf_XML, sizeof(char *), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1__XML, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOf_XML, sizeof(char *), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_inliteral(soap, tag, NULL)) break; } else - { if (!soap_inliteral(soap, tag, n)) - { a->pop_back(); + { if (!soap_inliteral(soap, tag, &n)) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121853,21 +121947,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__AbstractParameterKey(soap))) return NULL; - a->emplace_back(); - resqml20__AbstractParameterKey * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__AbstractParameterKey *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractParameterKey, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractParameterKey, sizeof(resqml20__AbstractParameterKey), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractParameterKey, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractParameterKey, sizeof(resqml20__AbstractParameterKey), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__AbstractParameterKey(soap, tag, NULL, "resqml20:AbstractParameterKey")) break; } else - { if (!soap_in_PointerToresqml20__AbstractParameterKey(soap, tag, n, "resqml20:AbstractParameterKey")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__AbstractParameterKey(soap, tag, &n, "resqml20:AbstractParameterKey")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -121943,21 +122039,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__AbstractActivityParameter(soap))) return NULL; - a->emplace_back(); - resqml20__AbstractActivityParameter * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__AbstractActivityParameter *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractActivityParameter, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractActivityParameter, sizeof(resqml20__AbstractActivityParameter), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__AbstractActivityParameter, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__AbstractActivityParameter, sizeof(resqml20__AbstractActivityParameter), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__AbstractActivityParameter(soap, tag, NULL, "resqml20:AbstractActivityParameter")) break; } else - { if (!soap_in_PointerToresqml20__AbstractActivityParameter(soap, tag, n, "resqml20:AbstractActivityParameter")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__AbstractActivityParameter(soap, tag, &n, "resqml20:AbstractActivityParameter")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122031,21 +122129,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfresqml20__ParameterKind(soap))) return NULL; - a->emplace_back(); - resqml20__ParameterKind *n = &a->back(); - soap_default_resqml20__ParameterKind(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ParameterKind n; + soap_default_resqml20__ParameterKind(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ParameterKind, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfresqml20__ParameterKind, sizeof(resqml20__ParameterKind), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ParameterKind, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfresqml20__ParameterKind, sizeof(resqml20__ParameterKind), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_resqml20__ParameterKind(soap, tag, NULL, "resqml20:ParameterKind")) break; } else - { if (!soap_in_resqml20__ParameterKind(soap, tag, n, "resqml20:ParameterKind")) - { a->pop_back(); + { if (!soap_in_resqml20__ParameterKind(soap, tag, &n, "resqml20:ParameterKind")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122121,31 +122221,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfst } if (!a && !(a = soap_new_std__vectorTemplateOfstd__string(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_std__string(soap, n); + std::string n; + soap_default_std__string(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_std__string, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfstd__string, sizeof(std::string), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_std__string, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfstd__string, sizeof(std::string), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_std__string(soap, tag, NULL, "xsd:string")) break; } else - { if (!soap_in_std__string(soap, tag, n, "xsd:string")) - { a->pop_back(); + { if (!soap_in_std__string(soap, tag, &n, "xsd:string")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -122221,21 +122325,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__OrientedMacroFace(soap))) return NULL; - a->emplace_back(); - resqml20__OrientedMacroFace * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__OrientedMacroFace *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__OrientedMacroFace, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__OrientedMacroFace, sizeof(resqml20__OrientedMacroFace), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__OrientedMacroFace, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__OrientedMacroFace, sizeof(resqml20__OrientedMacroFace), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__OrientedMacroFace(soap, tag, NULL, "resqml20:OrientedMacroFace")) break; } else - { if (!soap_in_PointerToresqml20__OrientedMacroFace(soap, tag, n, "resqml20:OrientedMacroFace")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__OrientedMacroFace(soap, tag, &n, "resqml20:OrientedMacroFace")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122311,21 +122417,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__VolumeShell(soap))) return NULL; - a->emplace_back(); - resqml20__VolumeShell * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__VolumeShell *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__VolumeShell, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__VolumeShell, sizeof(resqml20__VolumeShell), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__VolumeShell, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__VolumeShell, sizeof(resqml20__VolumeShell), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__VolumeShell(soap, tag, NULL, "resqml20:VolumeShell")) break; } else - { if (!soap_in_PointerToresqml20__VolumeShell(soap, tag, n, "resqml20:VolumeShell")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__VolumeShell(soap, tag, &n, "resqml20:VolumeShell")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122399,21 +122507,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfresqml20__ThrowKind(soap))) return NULL; - a->emplace_back(); - resqml20__ThrowKind *n = &a->back(); - soap_default_resqml20__ThrowKind(soap, n); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ThrowKind n; + soap_default_resqml20__ThrowKind(soap, &n); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ThrowKind, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfresqml20__ThrowKind, sizeof(resqml20__ThrowKind), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ThrowKind, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfresqml20__ThrowKind, sizeof(resqml20__ThrowKind), 0, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_resqml20__ThrowKind(soap, tag, NULL, "resqml20:ThrowKind")) break; } else - { if (!soap_in_resqml20__ThrowKind(soap, tag, n, "resqml20:ThrowKind")) - { a->pop_back(); + { if (!soap_in_resqml20__ThrowKind(soap, tag, &n, "resqml20:ThrowKind")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122489,21 +122599,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__v } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToeml20__DataObjectReference(soap))) return NULL; - a->emplace_back(); - eml20__DataObjectReference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + eml20__DataObjectReference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_eml20__DataObjectReference, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToeml20__DataObjectReference, sizeof(eml20__DataObjectReference), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_eml20__DataObjectReference, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToeml20__DataObjectReference, sizeof(eml20__DataObjectReference), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToeml20__DataObjectReference(soap, tag, NULL, "eml20:DataObjectReference")) break; } else - { if (!soap_in_PointerToeml20__DataObjectReference(soap, tag, n, "eml20:DataObjectReference")) - { a->pop_back(); + { if (!soap_in_PointerToeml20__DataObjectReference(soap, tag, &n, "eml20:DataObjectReference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122579,21 +122691,23 @@ SOAP_FMAC3 std::vector * SOA } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__GpGridUnstructuredColumnLayerGridPatch(soap))) return NULL; - a->emplace_back(); - resqml20__GpGridUnstructuredColumnLayerGridPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__GpGridUnstructuredColumnLayerGridPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridUnstructuredColumnLayerGridPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridUnstructuredColumnLayerGridPatch, sizeof(resqml20__GpGridUnstructuredColumnLayerGridPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridUnstructuredColumnLayerGridPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridUnstructuredColumnLayerGridPatch, sizeof(resqml20__GpGridUnstructuredColumnLayerGridPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__GpGridUnstructuredColumnLayerGridPatch(soap, tag, NULL, "resqml20:GpGridUnstructuredColumnLayerGridPatch")) break; } else - { if (!soap_in_PointerToresqml20__GpGridUnstructuredColumnLayerGridPatch(soap, tag, n, "resqml20:GpGridUnstructuredColumnLayerGridPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__GpGridUnstructuredColumnLayerGridPatch(soap, tag, &n, "resqml20:GpGridUnstructuredColumnLayerGridPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122669,21 +122783,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std_ } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__GpGridIjkGridPatch(soap))) return NULL; - a->emplace_back(); - resqml20__GpGridIjkGridPatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__GpGridIjkGridPatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridIjkGridPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridIjkGridPatch, sizeof(resqml20__GpGridIjkGridPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__GpGridIjkGridPatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__GpGridIjkGridPatch, sizeof(resqml20__GpGridIjkGridPatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__GpGridIjkGridPatch(soap, tag, NULL, "resqml20:GpGridIjkGridPatch")) break; } else - { if (!soap_in_PointerToresqml20__GpGridIjkGridPatch(soap, tag, n, "resqml20:GpGridIjkGridPatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__GpGridIjkGridPatch(soap, tag, &n, "resqml20:GpGridIjkGridPatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122759,21 +122875,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__UniformSubnodePatch(soap))) return NULL; - a->emplace_back(); - resqml20__UniformSubnodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__UniformSubnodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__UniformSubnodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__UniformSubnodePatch, sizeof(resqml20__UniformSubnodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__UniformSubnodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__UniformSubnodePatch, sizeof(resqml20__UniformSubnodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__UniformSubnodePatch(soap, tag, NULL, "resqml20:UniformSubnodePatch")) break; } else - { if (!soap_in_PointerToresqml20__UniformSubnodePatch(soap, tag, n, "resqml20:UniformSubnodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__UniformSubnodePatch(soap, tag, &n, "resqml20:UniformSubnodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122849,21 +122967,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_st } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__VariableSubnodePatch(soap))) return NULL; - a->emplace_back(); - resqml20__VariableSubnodePatch * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__VariableSubnodePatch *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__VariableSubnodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__VariableSubnodePatch, sizeof(resqml20__VariableSubnodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__VariableSubnodePatch, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__VariableSubnodePatch, sizeof(resqml20__VariableSubnodePatch), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__VariableSubnodePatch(soap, tag, NULL, "resqml20:VariableSubnodePatch")) break; } else - { if (!soap_in_PointerToresqml20__VariableSubnodePatch(soap, tag, n, "resqml20:VariableSubnodePatch")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__VariableSubnodePatch(soap, tag, &n, "resqml20:VariableSubnodePatch")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -122939,21 +123059,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__ve } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__ElementIdentity(soap))) return NULL; - a->emplace_back(); - resqml20__ElementIdentity * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__ElementIdentity *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ElementIdentity, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ElementIdentity, sizeof(resqml20__ElementIdentity), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ElementIdentity, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__ElementIdentity, sizeof(resqml20__ElementIdentity), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__ElementIdentity(soap, tag, NULL, "resqml20:ElementIdentity")) break; } else - { if (!soap_in_PointerToresqml20__ElementIdentity(soap, tag, n, "resqml20:ElementIdentity")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__ElementIdentity(soap, tag, &n, "resqml20:ElementIdentity")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -123029,21 +123151,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemp } if (!a && !(a = soap_new_std__vectorTemplateOfPointerToresqml20__Point3d(soap))) return NULL; - a->emplace_back(); - resqml20__Point3d * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + resqml20__Point3d *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Point3d, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Point3d, sizeof(resqml20__Point3d), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Point3d, SOAP_TYPE_gsoap_resqml2_0_1_std__vectorTemplateOfPointerToresqml20__Point3d, sizeof(resqml20__Point3d), 1, gsoap_resqml2_0_1_finsert, gsoap_resqml2_0_1_fbase)) break; if (!soap_in_PointerToresqml20__Point3d(soap, tag, NULL, "resqml20:Point3d")) break; } else - { if (!soap_in_PointerToresqml20__Point3d(soap, tag, n, "resqml20:Point3d")) - { a->pop_back(); + { if (!soap_in_PointerToresqml20__Point3d(soap, tag, &n, "resqml20:Point3d")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } diff --git a/src/proxies/gsoap_resqml2_0_1H.h b/src/proxies/gsoap_resqml2_0_1H.h index 1dc5d1c59..fa1c134c4 100644 --- a/src/proxies/gsoap_resqml2_0_1H.h +++ b/src/proxies/gsoap_resqml2_0_1H.h @@ -1,8 +1,8 @@ /* gsoap_resqml2_0_1H.h - Generated by gSOAP 2.8.127E for resqml2_0_1ForGsoap.h + Generated by gSOAP 2.8.139E for resqml2_0_1ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- diff --git a/src/proxies/gsoap_resqml2_0_1Stub.h b/src/proxies/gsoap_resqml2_0_1Stub.h index 68dc7af41..b344197b8 100644 --- a/src/proxies/gsoap_resqml2_0_1Stub.h +++ b/src/proxies/gsoap_resqml2_0_1Stub.h @@ -1,8 +1,8 @@ /* gsoap_resqml2_0_1Stub.h - Generated by gSOAP 2.8.127E for resqml2_0_1ForGsoap.h + Generated by gSOAP 2.8.139E for resqml2_0_1ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -22,8 +22,8 @@ Product and source code licensed by Genivia Inc., contact@genivia.com #define WITH_NOGLOBAL #endif #include "stdsoap2.h" -#if GSOAP_VERSION != 208127 -# error "GSOAP VERSION 208127 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" +#if GSOAP_VERSION != 208139 +# error "GSOAP VERSION 208139 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" #endif diff --git a/src/proxies/gsoap_uom1_0C.cpp b/src/proxies/gsoap_uom1_0C.cpp index 7263da6d3..dc682024b 100644 --- a/src/proxies/gsoap_uom1_0C.cpp +++ b/src/proxies/gsoap_uom1_0C.cpp @@ -1,8 +1,8 @@ /* gsoap_uom1_0C.cpp - Generated by gSOAP 2.8.127E for uom1_0ForGsoap.h + Generated by gSOAP 2.8.139E for uom1_0ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -27,7 +27,7 @@ Product and source code licensed by Genivia Inc., contact@genivia.com namespace gsoap_uom1_0 { -SOAP_SOURCE_STAMP("@(#) gsoap_uom1_0C.cpp ver 2.8.127E 2024-08-15 16:42:47 GMT") +SOAP_SOURCE_STAMP("@(#) gsoap_uom1_0C.cpp ver 2.8.139E 2025-09-19 16:13:39 GMT") #ifndef WITH_NOGLOBAL @@ -9010,21 +9010,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__mapFromToClass(soap))) return NULL; - a->emplace_back(); - uom10__mapFromToClass * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__mapFromToClass *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__mapFromToClass, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__mapFromToClass, sizeof(uom10__mapFromToClass), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__mapFromToClass, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__mapFromToClass, sizeof(uom10__mapFromToClass), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__mapFromToClass(soap, tag, NULL, "uom10:mapFromToClass")) break; } else - { if (!soap_in_PointerTouom10__mapFromToClass(soap, tag, n, "uom10:mapFromToClass")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__mapFromToClass(soap, tag, &n, "uom10:mapFromToClass")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9100,21 +9102,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__mapFromToUnit(soap))) return NULL; - a->emplace_back(); - uom10__mapFromToUnit * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__mapFromToUnit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__mapFromToUnit, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__mapFromToUnit, sizeof(uom10__mapFromToUnit), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__mapFromToUnit, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__mapFromToUnit, sizeof(uom10__mapFromToUnit), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__mapFromToUnit(soap, tag, NULL, "uom10:mapFromToUnit")) break; } else - { if (!soap_in_PointerTouom10__mapFromToUnit(soap, tag, n, "uom10:mapFromToUnit")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__mapFromToUnit(soap, tag, &n, "uom10:mapFromToUnit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9190,21 +9194,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempla } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__unitCode(soap))) return NULL; - a->emplace_back(); - uom10__unitCode * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__unitCode *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__unitCode, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unitCode, sizeof(uom10__unitCode), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__unitCode, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unitCode, sizeof(uom10__unitCode), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__unitCode(soap, tag, NULL, "uom10:unitCode")) break; } else - { if (!soap_in_PointerTouom10__unitCode(soap, tag, n, "uom10:unitCode")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__unitCode(soap, tag, &n, "uom10:unitCode")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9280,21 +9286,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__classCode(soap))) return NULL; - a->emplace_back(); - uom10__classCode * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__classCode *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__classCode, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__classCode, sizeof(uom10__classCode), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__classCode, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__classCode, sizeof(uom10__classCode), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__classCode(soap, tag, NULL, "uom10:classCode")) break; } else - { if (!soap_in_PointerTouom10__classCode(soap, tag, n, "uom10:classCode")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__classCode(soap, tag, &n, "uom10:classCode")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9370,21 +9378,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplate } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__prefix(soap))) return NULL; - a->emplace_back(); - uom10__prefix * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__prefix *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__prefix, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__prefix, sizeof(uom10__prefix), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__prefix, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__prefix, sizeof(uom10__prefix), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__prefix(soap, tag, NULL, "uom10:prefix")) break; } else - { if (!soap_in_PointerTouom10__prefix(soap, tag, n, "uom10:prefix")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__prefix(soap, tag, &n, "uom10:prefix")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9460,21 +9470,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTempl } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__reference(soap))) return NULL; - a->emplace_back(); - uom10__reference * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__reference *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__reference, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__reference, sizeof(uom10__reference), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__reference, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__reference, sizeof(uom10__reference), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__reference(soap, tag, NULL, "uom10:reference")) break; } else - { if (!soap_in_PointerTouom10__reference(soap, tag, n, "uom10:reference")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__reference(soap, tag, &n, "uom10:reference")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9550,21 +9562,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOf } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__unit(soap))) return NULL; - a->emplace_back(); - uom10__unit * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__unit *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__unit, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unit, sizeof(uom10__unit), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__unit, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unit, sizeof(uom10__unit), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__unit(soap, tag, NULL, "uom10:unit")) break; } else - { if (!soap_in_PointerTouom10__unit(soap, tag, n, "uom10:unit")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__unit(soap, tag, &n, "uom10:unit")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9640,31 +9654,35 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorTemplateOfuo } if (!a && !(a = soap_new_std__vectorTemplateOfuom10__symbolString(soap))) return NULL; - if (!a->empty() && a->size() == a->capacity()) - { const void *p = &a->front(); - a->emplace_back(); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Vector capacity increased to %lu to fit %lu items: updating pointers\n", a->capacity(), a->size())); - soap_update_pointers(soap, (const char*)&a->front(), (const char*)p, (a->size() - 1) * sizeof(std::string)); - } - else - { a->emplace_back(); + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; } - std::string *n = &a->back(); - soap_default_uom10__symbolString(soap, n); + std::string n; + soap_default_uom10__symbolString(soap, &n); short soap_shaky = soap_begin_shaky(soap); if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__symbolString, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfuom10__symbolString, sizeof(std::string), 0, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__symbolString, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfuom10__symbolString, sizeof(std::string), 0, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_uom10__symbolString(soap, tag, NULL, "uom10:symbolString")) break; } else - { if (!soap_in_uom10__symbolString(soap, tag, n, "uom10:symbolString")) - { a->pop_back(); + { if (!soap_in_uom10__symbolString(soap, tag, &n, "uom10:symbolString")) break; - } } soap_end_shaky(soap, soap_shaky); + if (!a->empty()) + { const void *p = &*a->begin(); + soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + if (p != &*a->begin()) + { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Container capacity increased: updating pointers\n")); + soap_update_pointers(soap, (const char*)&*a->begin(), (const char*)p, (a->size() - 1) * sizeof(std::string)); + } + } + else + { soap_update_pointers(soap, (const char*)&(*a->insert(a->end(), n)), (const char*)&n, sizeof(std::string)); + } if (!tag || *tag == '-') return a; } @@ -9740,21 +9758,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__quantityClass(soap))) return NULL; - a->emplace_back(); - uom10__quantityClass * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__quantityClass *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__quantityClass, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__quantityClass, sizeof(uom10__quantityClass), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__quantityClass, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__quantityClass, sizeof(uom10__quantityClass), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__quantityClass(soap, tag, NULL, "uom10:quantityClass")) break; } else - { if (!soap_in_PointerTouom10__quantityClass(soap, tag, n, "uom10:quantityClass")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__quantityClass(soap, tag, &n, "uom10:quantityClass")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9830,21 +9850,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vectorT } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__unitDimension(soap))) return NULL; - a->emplace_back(); - uom10__unitDimension * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__unitDimension *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__unitDimension, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unitDimension, sizeof(uom10__unitDimension), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__unitDimension, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unitDimension, sizeof(uom10__unitDimension), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__unitDimension(soap, tag, NULL, "uom10:unitDimension")) break; } else - { if (!soap_in_PointerTouom10__unitDimension(soap, tag, n, "uom10:unitDimension")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__unitDimension(soap, tag, &n, "uom10:unitDimension")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -9920,21 +9942,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vector } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__unitMappingSet(soap))) return NULL; - a->emplace_back(); - uom10__unitMappingSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__unitMappingSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__unitMappingSet, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unitMappingSet, sizeof(uom10__unitMappingSet), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__unitMappingSet, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__unitMappingSet, sizeof(uom10__unitMappingSet), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__unitMappingSet(soap, tag, NULL, "uom10:unitMappingSet")) break; } else - { if (!soap_in_PointerTouom10__unitMappingSet(soap, tag, n, "uom10:unitMappingSet")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__unitMappingSet(soap, tag, &n, "uom10:unitMappingSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } @@ -10010,21 +10034,23 @@ SOAP_FMAC3 std::vector * SOAP_FMAC4 soap_in_std__vecto } if (!a && !(a = soap_new_std__vectorTemplateOfPointerTouom10__classMappingSet(soap))) return NULL; - a->emplace_back(); - uom10__classMappingSet * *n = &a->back(); - *n = NULL; + else if (static_cast(a->size()) > soap->maxoccurs) + { soap->error = SOAP_OCCURS; + return NULL; + } + uom10__classMappingSet *n; + n = NULL; if (tag && *tag != '-' && (*soap->id || *soap->href == '#')) - { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, (size_t)a->size() - 1, SOAP_TYPE_gsoap_uom1_0_uom10__classMappingSet, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__classMappingSet, sizeof(uom10__classMappingSet), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) + { if (!soap_id_forward(soap, *soap->id?soap->id:soap->href, a, static_cast(a->size()), SOAP_TYPE_gsoap_uom1_0_uom10__classMappingSet, SOAP_TYPE_gsoap_uom1_0_std__vectorTemplateOfPointerTouom10__classMappingSet, sizeof(uom10__classMappingSet), 1, gsoap_uom1_0_finsert, gsoap_uom1_0_fbase)) break; if (!soap_in_PointerTouom10__classMappingSet(soap, tag, NULL, "uom10:classMappingSet")) break; } else - { if (!soap_in_PointerTouom10__classMappingSet(soap, tag, n, "uom10:classMappingSet")) - { a->pop_back(); + { if (!soap_in_PointerTouom10__classMappingSet(soap, tag, &n, "uom10:classMappingSet")) break; - } } + a->insert(a->end(), n); if (!tag || *tag == '-') return a; } diff --git a/src/proxies/gsoap_uom1_0H.h b/src/proxies/gsoap_uom1_0H.h index 999389ff9..dc8720f44 100644 --- a/src/proxies/gsoap_uom1_0H.h +++ b/src/proxies/gsoap_uom1_0H.h @@ -1,8 +1,8 @@ /* gsoap_uom1_0H.h - Generated by gSOAP 2.8.127E for uom1_0ForGsoap.h + Generated by gSOAP 2.8.139E for uom1_0ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- diff --git a/src/proxies/gsoap_uom1_0Stub.h b/src/proxies/gsoap_uom1_0Stub.h index 2af2bdaef..2179ac650 100644 --- a/src/proxies/gsoap_uom1_0Stub.h +++ b/src/proxies/gsoap_uom1_0Stub.h @@ -1,8 +1,8 @@ /* gsoap_uom1_0Stub.h - Generated by gSOAP 2.8.127E for uom1_0ForGsoap.h + Generated by gSOAP 2.8.139E for uom1_0ForGsoap.h gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc. All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc. All Rights Reserved. The soapcpp2 tool is licensed for commercial use and protected by law. ** REDISTRIBUTION, RESALE OR ANY OTHER FORM OF SHARING IS STRICTLY PROHIBITED. -------------------------------------------------------------------------------- @@ -19,8 +19,8 @@ Product and source code licensed by Genivia Inc., contact@genivia.com #define WITH_NOGLOBAL #endif #include "stdsoap2.h" -#if GSOAP_VERSION != 208127 -# error "GSOAP VERSION 208127 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" +#if GSOAP_VERSION != 208139 +# error "GSOAP VERSION 208139 MISMATCH IN GENERATED CODE VERSUS LIBRARY CODE: PLEASE REINSTALL PACKAGE" #endif diff --git a/src/proxies/namespace.cpp b/src/proxies/namespace.cpp index 34132fd3a..c2ef69232 100644 --- a/src/proxies/namespace.cpp +++ b/src/proxies/namespace.cpp @@ -29,7 +29,7 @@ SOAP_NMAC struct Namespace namespaces[] = {"resqml20", "http://www.energistics.org/energyml/data/resqmlv2", NULL, NULL}, {"resqml22", "http://www.energistics.org/energyml/data/resqmlv2", NULL, NULL}, {"witsml21", "http://www.energistics.org/energyml/data/witsmlv2", NULL, NULL}, - {"prodml22", "http://www.energistics.org/energyml/data/prodmlv2", NULL, NULL}, + {"prodml23", "http://www.energistics.org/energyml/data/prodmlv2", NULL, NULL}, {"eml20", "http://www.energistics.org/energyml/data/commonv2", NULL, NULL }, {"eml23", "http://www.energistics.org/energyml/data/commonv2", NULL, NULL }, {"uom10", "http://www.energistics.org/energyml/data/uomv1", NULL, NULL}, diff --git a/src/proxies/stdsoap2.cpp b/src/proxies/stdsoap2.cpp index d362df0c5..35cae87dd 100644 --- a/src/proxies/stdsoap2.cpp +++ b/src/proxies/stdsoap2.cpp @@ -1,10 +1,10 @@ /* - stdsoap2.c[pp] 2.8.127E + stdsoap2.c[pp] 2.8.139E gSOAP runtime engine gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc., All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc., All Rights Reserved. This part of the software is released under ONE of the following licenses: -------------------------------------------------------------------------------- @@ -18,7 +18,7 @@ Product and source code licensed by Genivia, Inc., contact@genivia.com -------------------------------------------------------------------------------- */ -#define GSOAP_LIB_VERSION 208127 +#define GSOAP_LIB_VERSION 208139 /* silence GNU's warnings on format nonliteral strings and truncation (snprintf truncates on purpose for safety) */ #ifdef __GNUC__ @@ -57,15 +57,15 @@ Product and source code licensed by Genivia, Inc., contact@genivia.com # else # pragma comment(lib, "Ws2_32.lib") # endif -# pragma warning(disable : 4996) /* disable deprecation warnings */ +# pragma warning(disable : 4996) /* disable visual studio POSIX deprecation warnings */ # endif #endif #ifdef __cplusplus -SOAP_SOURCE_STAMP("@(#) stdsoap2.cpp ver 2.8.127E 2023-03-22 00:00:00 GMT") +SOAP_SOURCE_STAMP("@(#) stdsoap2.cpp ver 2.8.139E 2025-07-14 00:00:00 GMT") extern "C" { #else -SOAP_SOURCE_STAMP("@(#) stdsoap2.c ver 2.8.127E 2023-03-22 00:00:00 GMT") +SOAP_SOURCE_STAMP("@(#) stdsoap2.c ver 2.8.139E 2025-07-14 00:00:00 GMT") #endif /* 8bit character representing unknown character entity or multibyte data */ @@ -940,7 +940,7 @@ soap_flush_raw(struct soap *soap, const char *s, size_t n) #ifndef WITH_LEANER if ((soap->mode & SOAP_IO) == SOAP_IO_CHUNK) { - char t[24]; + char t[24]; /* note: actually the value of n <= SOAP_BUFLEN, which is 65536 or smaller */ (SOAP_SNPRINTF(t, sizeof(t), 20), &"\r\n%lX\r\n"[soap->chunksize ? 0 : 2], (unsigned long)n); DBGMSG(SENT, t, strlen(t)); soap->error = soap->fsend(soap, t, strlen(t)); @@ -949,7 +949,7 @@ soap_flush_raw(struct soap *soap, const char *s, size_t n) soap->chunksize += n; } DBGMSG(SENT, s, n); - DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Send %u bytes to socket=%d/fd=%d\n", (unsigned int)n, (int)soap->socket, soap->sendfd)); + DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Send %lu bytes to socket=%d/fd=%d\n", (unsigned long)n, (int)soap->socket, soap->sendfd)); #endif return soap->error = soap->fsend(soap, s, n); } @@ -1260,7 +1260,7 @@ frecv(struct soap *soap, char *s, size_t n) #ifndef WITH_LEAN if ((soap->omode & SOAP_IO_UDP)) { - SOAP_SOCKLEN_T k = (SOAP_SOCKLEN_T)sizeof(soap->peer); + SOAP_SOCKLEN_T k = (SOAP_SOCKLEN_T)sizeof(soap->peer.addr); memset((void*)&soap->peer, 0, sizeof(soap->peer)); r = recvfrom(sk, s, (SOAP_WINSOCKINT)n, soap->socket_flags, &soap->peer.addr, &k); /* portability note: see SOAP_SOCKLEN_T definition in stdsoap2.h, SOAP_WINSOCKINT cast is safe due to limited range of n in the engine (64K) */ soap->peerlen = (size_t)k; @@ -1908,7 +1908,7 @@ soap_binary_search_string(const char **a, int n, const char *s) static soap_wchar soap_char(struct soap *soap) { - char tmp[8]; + char tmp[12]; int i; soap_wchar c; char *s = tmp; @@ -1923,8 +1923,12 @@ soap_char(struct soap *soap) if (*tmp == '#') { if (tmp[1] == 'x' || tmp[1] == 'X') - return (soap_wchar)soap_strtol(tmp + 2, NULL, 16); - return (soap_wchar)soap_strtol(tmp + 1, NULL, 10); + c = (soap_wchar)soap_strtoul(tmp + 2, NULL, 16); + else + c = (soap_wchar)soap_strtoul(tmp + 1, NULL, 10); + if (c > 0x10FFFF) + c = SOAP_UNKNOWN_CHAR; /* exceeds Unicode max */ + return c; } if (!strcmp(tmp, "lt")) return '<'; @@ -1939,7 +1943,7 @@ soap_char(struct soap *soap) #ifndef WITH_LEAN return (soap_wchar)soap_code_int(html_entity_codes, tmp, (LONG64)SOAP_UNKNOWN_CHAR); #else - return SOAP_UNKNOWN_CHAR; /* use this to represent unknown code */ + return SOAP_UNKNOWN_CHAR; /* unknown entity */ #endif } @@ -3835,7 +3839,7 @@ soap_match_tag(struct soap *soap, const char *tag1, const char *tag2) { if (s) { - if (t[1] && SOAP_STRCMP(s + 1, t + 1)) + if (t[1] ? SOAP_STRCMP(s + 1, t + 1) : (soap->mode & SOAP_XML_IGNORENS)) return SOAP_TAG_MISMATCH; if (t != tag2 && !(soap->mode & SOAP_XML_IGNORENS)) { @@ -4486,6 +4490,8 @@ ssl_auth_init(struct soap *soap) #endif if ((soap->ssl_flags & SOAP_SSL_RSA)) { + /* OpenSSL v3 deprecated low-level RSA key generation: ignore SOAP_SSL_RSA flag */ +#if OPENSSL_VERSION_NUMBER < 0x30000000L #if OPENSSL_VERSION_NUMBER >= 0x10002000L if (SSL_CTX_need_tmp_RSA(soap->ctx)) { @@ -4512,15 +4518,39 @@ ssl_auth_init(struct soap *soap) return soap_set_receiver_error(soap, "SSL/TLS error", "Can't generate RSA key", SOAP_SSL_ERROR); } RSA_free(rsa); +#endif #endif } else if (soap->dhfile) { - DH *dh = NULL; - char *s = NULL; + char *s = (char*)soap->dhfile; int n = (int)soap_strtoul(soap->dhfile, &s, 10); +#if OPENSSL_VERSION_NUMBER >= 0x30000000L + /* if dhfile is numeric, set auto DH selection regardless of the value of n */ + if (n >= 1 && *s == '\0') + { + if (!SSL_CTX_set_dh_auto(soap->ctx, 1)) + return soap_set_receiver_error(soap, "SSL/TLS error", "Can't generate DH parameters", SOAP_SSL_ERROR); + } + else + { + EVP_PKEY *dh; + BIO *bio = BIO_new_file(soap->dhfile, "r"); + if (!bio) + return soap_set_receiver_error(soap, "SSL/TLS error", "Can't read DH PEM file", SOAP_SSL_ERROR); + dh = PEM_read_bio_Parameters(bio, NULL); + BIO_free(bio); + if (!dh || !SSL_CTX_set0_tmp_dh_pkey(soap->ctx, dh)) + { + if (dh) + EVP_PKEY_free(dh); + return soap_set_receiver_error(soap, "SSL/TLS error", "Can't set DH parameters", SOAP_SSL_ERROR); + } + } +#else + DH *dh = NULL; /* if dhfile is numeric, treat it as a key length to generate DH params which can take a while */ - if (n >= 512 && s && *s == '\0') + if (n >= 512 && *s == '\0') { #if OPENSSL_VERSION_NUMBER >= 0x10002000L dh = DH_new(); @@ -4545,13 +4575,14 @@ ssl_auth_init(struct soap *soap) dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL); BIO_free(bio); } - if (!dh || DH_check(dh, &n) != 1 || SSL_CTX_set_tmp_dh(soap->ctx, dh) < 0) + if (!dh || !DH_check(dh, &n) || !SSL_CTX_set_tmp_dh(soap->ctx, dh)) { if (dh) DH_free(dh); return soap_set_receiver_error(soap, "SSL/TLS error", "Can't set DH parameters", SOAP_SSL_ERROR); } DH_free(dh); +#endif } /* enable all TSLv1 protocols and disable SSLv3 by default if no SSL/TLS flags are set */ if ((soap->ssl_flags & SOAP_SSLv3_TLSv1) == 0) @@ -5396,7 +5427,7 @@ tcp_gethostbyname(struct soap *soap, const char *addr, struct hostent *hostent, { #if (defined(_AIX43) || defined(TRU64) || defined(HP_UX)) && defined(HAVE_GETHOSTBYNAME_R) struct hostent_data ht_data; -#elif (!defined(_GNU_SOURCE) || (!(~_GNU_SOURCE+1) && !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600 || defined(__ANDROID__) || defined(FREEBSD) || defined(__FreeBSD__)) && defined(HAVE_GETHOSTBYNAME_R) +#elif (!defined(_GNU_SOURCE) || (!(~_GNU_SOURCE+1) && !defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600 || defined(__ANDROID__) || defined(FREEBSD) || defined(__FreeBSD__)) && !defined(SUN_OS) && !defined(__QNX__) && !defined(QNX) && defined(HAVE_GETHOSTBYNAME_R) int r; char *tmpbuf = soap->tmpbuf; size_t tmplen = sizeof(soap->tmpbuf); @@ -6241,11 +6272,55 @@ tcp_connect(struct soap *soap, const char *endpoint, const char *host, int port) soap->session = NULL; } #if OPENSSL_VERSION_NUMBER >= 0x1000000aL - if (!(soap->ssl_flags & SOAP_SSLv3) && !SSL_set_tlsext_host_name(soap->ssl, host)) + if (!(soap->ssl_flags & SOAP_SSLv3)) { - (void)soap_set_receiver_error(soap, "SSL/TLS error", "SNI failed", SOAP_SSL_ERROR); - (void)soap->fclosesocket(soap, sk); - return soap->socket = SOAP_INVALID_SOCKET; + const char *name = host; + if ((soap->ssl_flags & SOAP_SSL_SNI_HOST_CHECK)) + { + /* do not use IP address with SNI (RFC 6066), perform a host check */ + const size_t MAX_LABEL_LEN = 63; + size_t i; + size_t len = strlen(host); + size_t label_len = 0; + int ip = 1; + for (i = 0; i < len && label_len < MAX_LABEL_LEN; ++i) + { + int c = host[i]; + if (c >= '0' && c <= '9') + { + label_len += 1; + continue; + } + if (i > 0 && i < len - 1) + { + if (c == '-') + { + label_len += 1; + continue; + } + if (c == '.' && host[i + 1] != '.' && host[i - 1] != '-' && host[i + 1] != '-') + { + label_len = 0; + continue; + } + } + if (c >= '\0' && c <= '@') + { + name = NULL; + break; + } + label_len += 1; + ip = 0; + } + if (ip || label_len >= MAX_LABEL_LEN) + name = NULL; + } + if (name != NULL && !SSL_set_tlsext_host_name(soap->ssl, name)) + { + (void)soap_set_receiver_error(soap, "SSL/TLS error", "SNI failed", SOAP_SSL_ERROR); + (void)soap->fclosesocket(soap, sk); + return soap->socket = SOAP_INVALID_SOCKET; + } } #elif (OPENSSL_VERSION_NUMBER >= 0x0090800fL) && defined(SSL_CTRL_SET_TLSEXT_HOSTNAME) if (!SSL_ctrl(soap->ssl, SSL_CTRL_SET_TLSEXT_HOSTNAME, TLSEXT_NAMETYPE_host_name, (void*)host)) @@ -6974,9 +7049,10 @@ tcp_select(struct soap *soap, SOAP_SOCKET sk, int flags, int timeout) static SOAP_SOCKET tcp_accept(struct soap *soap, SOAP_SOCKET sk, struct sockaddr *addr, int *len) { + SOAP_SOCKLEN_T n = (SOAP_SOCKLEN_T)*len; SOAP_SOCKET s; (void)soap; - s = accept(sk, addr, (SOAP_SOCKLEN_T*)len); /* portability note: see SOAP_SOCKLEN_T definition in stdsoap2.h */ + s = accept(sk, addr, &n); #ifdef WITH_SOCKET_CLOSE_ON_EXIT #ifdef WIN32 #ifndef UNDER_CE @@ -10683,11 +10759,12 @@ soap_attachment(struct soap *soap, const char *tag, int id, const void *p, const return -1; } /* Add MTOM xop:Include element when necessary */ - /* TODO: this code to be obsoleted with new import/xop.h conventions */ if ((soap->omode & SOAP_ENC_MTOM) && strcmp(tag, "xop:Include")) { - if (soap_element_begin_out(soap, tag, 0, type) - || soap_element_href(soap, "xop:Include", 0, "xmlns:xop=\"http://www.w3.org/2004/08/xop/include\" href", aid) + if (soap_element(soap, tag, 0, type) + || soap_attribute(soap, "xmlns:xop", "http://www.w3.org/2004/08/xop/include") + || soap_element_start_end_out(soap, NULL) + || soap_element_href(soap, "xop:Include", 0, "href", aid) || soap_element_end_out(soap, tag)) return soap->error; } @@ -11534,7 +11611,8 @@ soap_id_enter(struct soap *soap, const char *id, void *p, int t, size_t n, const else if (ip->ptr) { DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Multiply defined id='%s'\n", id)); - soap_strcpy(soap->id, sizeof(soap->id), id); + if (id != soap->id) + soap_strcpy(soap->id, sizeof(soap->id), id); /* set soap->id for error reporting, unless soap->id was passed as the id */ soap->error = SOAP_DUPLICATE_ID; return NULL; } @@ -11638,7 +11716,8 @@ soap_id_nullify(struct soap *soap, const char *id) ip->link = NULL; } } - soap_strcpy(soap->id, sizeof(soap->id), id); + if (id != soap->id) + soap_strcpy(soap->id, sizeof(soap->id), id); /* set soap->id for error reporting, unless soap->id was passed as the id */ return soap->error = SOAP_HREF; } #endif @@ -17105,11 +17184,11 @@ soap_float2s(struct soap *soap, float n) _sprintf_s_l(soap->tmpbuf, _countof(soap->tmpbuf), soap->float_format, SOAP_LOCALE(soap), n); # else locale = uselocale(SOAP_LOCALE(soap)); - (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 20), soap->float_format, n); + (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 80), soap->float_format, n); uselocale(locale); # endif #else - (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 20), soap->float_format, n); + (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 80), soap->float_format, n); s = strchr(soap->tmpbuf, ','); /* convert decimal comma to DP */ if (s) *s = '.'; @@ -17316,11 +17395,11 @@ soap_double2s(struct soap *soap, double n) _sprintf_s_l(soap->tmpbuf, _countof(soap->tmpbuf), soap->double_format, SOAP_LOCALE(soap), n); # else locale = uselocale(SOAP_LOCALE(soap)); - (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 40), soap->double_format, n); + (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 80), soap->double_format, n); uselocale(locale); # endif #else - (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 40), soap->double_format, n); + (SOAP_SNPRINTF(soap->tmpbuf, sizeof(soap->tmpbuf), 80), soap->double_format, n); s = strchr(soap->tmpbuf, ','); /* convert decimal comma to DP */ if (s) *s = '.'; @@ -21623,7 +21702,8 @@ soap_envelope_begin_in(struct soap *soap) if (soap->status == 0 || (soap->status >= 200 && soap->status <= 299) || soap->status == 400 - || soap->status == 500) + || soap->status == 500 + || soap->status >= SOAP_POST) return soap->error = SOAP_OK; /* allow non-SOAP (REST) XML content to be captured */ soap->error = soap->status; } @@ -22513,14 +22593,27 @@ soap_puthttphdr(struct soap *soap, int status, ULONG64 count) { const char *header = soap->http_extra_header; soap->http_extra_header = NULL; /* use http_extra_header once (assign new value before each call) */ - if (*header) - { - err = soap_send(soap, header); - if (err) - return err; - err = soap_send_raw(soap, "\r\n", 2); - if (err) - return err; + while (*header) + { + const char *s = strchr(header, ':'); + const char *t = strchr(header, '\n'); + if (t == NULL) + t = header + strlen(header); + if (s != NULL && s < t && t < header + sizeof(soap->tmpbuf)) + { + while (s < t && isspace(*(t - 1))) + --t; + soap_strncpy(soap->tmpbuf, sizeof(soap->tmpbuf), header, t - header); + soap->tmpbuf[s - header] = '\0'; + while (s < t && isspace(*++s)) + continue; + err = soap->fposthdr(soap, soap->tmpbuf, soap->tmpbuf + (s - header)); + if (err) + return err; + } + while (isspace(*t)) + ++t; + header = t; } } if (soap->keep_alive) @@ -23084,7 +23177,7 @@ soap_strerror(struct soap *soap) { #ifndef WIN32 # ifdef HAVE_STRERROR_R -# if !defined(_GNU_SOURCE) || (!(~_GNU_SOURCE+1) && ((!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600))) +# if !defined(_GNU_SOURCE) || (!(~_GNU_SOURCE+1) && ((!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600))) || defined(WITH_POSIX_STRERROR_R) err = strerror_r(err, soap->msgbuf, sizeof(soap->msgbuf)); /* XSI-compliant */ if (err != 0) soap_strcpy(soap->msgbuf, sizeof(soap->msgbuf), "unknown error"); diff --git a/src/proxies/stdsoap2.h b/src/proxies/stdsoap2.h index de12d247b..1ffd023d7 100644 --- a/src/proxies/stdsoap2.h +++ b/src/proxies/stdsoap2.h @@ -1,10 +1,10 @@ /* - stdsoap2.h 2.8.127E + stdsoap2.h 2.8.139E gSOAP runtime engine gSOAP XML Web services tools -Copyright (C) 2000-2023, Robert van Engelen, Genivia Inc., All Rights Reserved. +Copyright (C) 2000-2025, Robert van Engelen, Genivia Inc., All Rights Reserved. This part of the software is released under ONE of the following licenses: -------------------------------------------------------------------------------- @@ -18,7 +18,7 @@ Product and source code licensed by Genivia, Inc., contact@genivia.com -------------------------------------------------------------------------------- */ -#define GSOAP_VERSION 208127 +#define GSOAP_VERSION 208139 #ifdef WITH_SOAPDEFS_H # include "soapdefs.h" /* include user-defined stuff in soapdefs.h */ @@ -1728,6 +1728,7 @@ typedef soap_int32 soap_mode; #define SOAP_SSL_ALLOW_EXPIRED_CERTIFICATE (0x0008) /* allow self-signed and expired certificates and those w/o CRL */ #define SOAP_SSL_NO_DEFAULT_CA_PATH (0x0010) /* don't use SSL_CTX_set_default_verify_paths */ #define SOAP_SSL_RSA (0x0020) /* use RSA */ +#define SOAP_SSL_SNI_HOST_CHECK (0x0040) /* client SNI only with a valid hostname, reject IP */ #define SOAP_SSLv3 (0x0080) /* enable SSL v3 */ #define SOAP_TLSv1_0 (0x0100) /* enable TLS v1.0 */ #define SOAP_TLSv1_1 (0x0200) /* enable TLS v1.1 */ @@ -2379,10 +2380,12 @@ struct SOAP_CMAC soap_dom_attribute soap_dom_attribute(struct soap *soap, const char *ns, const char *tag, const wchar_t *str); soap_dom_attribute(struct soap *soap, const char *ns, const wchar_t *tag, const char *str); soap_dom_attribute(struct soap *soap, const char *ns, const wchar_t *tag, const wchar_t *str); +#ifndef WITH_COMPAT soap_dom_attribute(struct soap *soap, const char *ns, const char *tag, const std::string& str); soap_dom_attribute(struct soap *soap, const char *ns, const char *tag, const std::wstring& str); soap_dom_attribute(struct soap *soap, const char *ns, const wchar_t *tag, const std::string& str); soap_dom_attribute(struct soap *soap, const char *ns, const wchar_t *tag, const std::wstring& str); +#endif ~soap_dom_attribute(); soap_dom_attribute& set(const char *ns, const char *tag) { return *soap_att_set(this, ns, tag); } soap_dom_attribute& set(const char *ns, const wchar_t *tag) { return *soap_att_set_w(this, ns, tag); } diff --git a/src/resqml2/AbstractColumnLayerGridRepresentation.cpp b/src/resqml2/AbstractColumnLayerGridRepresentation.cpp index 5d458ef0d..c22903ed1 100644 --- a/src/resqml2/AbstractColumnLayerGridRepresentation.cpp +++ b/src/resqml2/AbstractColumnLayerGridRepresentation.cpp @@ -182,7 +182,7 @@ int64_t AbstractColumnLayerGridRepresentation::getIntervalStratigraphicUnitIndic if (gsoapProxy2_0_1 != nullptr) { resqml20__AbstractColumnLayerGridRepresentation const* rep = static_cast(gsoapProxy2_0_1); - return readArrayNdOfInt64Values(rep->IntervalStratigraphicUnits->UnitIndices, stratiUnitIndices); + return readArrayNdOfIntegerValues(rep->IntervalStratigraphicUnits->UnitIndices, stratiUnitIndices); } else if (gsoapProxy2_3 != nullptr) { gsoap_eml2_3::resqml22__AbstractColumnLayerGridRepresentation const* rep = static_cast(gsoapProxy2_3); @@ -200,11 +200,11 @@ int64_t AbstractColumnLayerGridRepresentation::getIntervalStratigraphicUnitIndic } else if (rep->IntervalStratigraphicUnits->UnitIndices->CumulativeLength->soap_type() == SOAP_TYPE_gsoap_eml2_3_eml23__IntegerXmlArray) { std::unique_ptr cumulativeLength(new uint64_t[getKCellCount()]); - readArrayNdOfUInt64Values(rep->IntervalStratigraphicUnits->UnitIndices->CumulativeLength, cumulativeLength.get()); + readArrayNdOfIntegerValues(rep->IntervalStratigraphicUnits->UnitIndices->CumulativeLength, cumulativeLength.get()); if (cumulativeLength[0] == 1 && cumulativeLength[getKCellCount() - 1] == getKCellCount()) { auto* elements = dynamic_cast(rep->IntervalStratigraphicUnits->UnitIndices->Elements); if (elements != nullptr) { - return readArrayNdOfInt64Values(elements, stratiUnitIndices); + return readArrayNdOfIntegerValues(elements, stratiUnitIndices); } throw logic_error("The stratigraphic unit indices associated to K layer must be integers only."); } diff --git a/src/resqml2/AbstractGridRepresentation.cpp b/src/resqml2/AbstractGridRepresentation.cpp index 4437e4403..ae02b7b79 100644 --- a/src/resqml2/AbstractGridRepresentation.cpp +++ b/src/resqml2/AbstractGridRepresentation.cpp @@ -792,7 +792,7 @@ void AbstractGridRepresentation::getParentCellIndices(uint64_t * parentCellIndic if (parentWindow->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__CellParentWindow) { gsoap_resqml2_0_1::resqml20__CellParentWindow const* cpw = static_cast(parentWindow); - readArrayNdOfUInt64Values(cpw->CellIndices, parentCellIndices); + readArrayNdOfIntegerValues(cpw->CellIndices, parentCellIndices); } else throw invalid_argument("This information is only available for cell parent window."); @@ -809,7 +809,7 @@ void AbstractGridRepresentation::getParentCellIndices(uint64_t * parentCellIndic if (parentWindow->soap_type() == SOAP_TYPE_gsoap_eml2_3_resqml22__CellParentWindow) { gsoap_eml2_3::resqml22__CellParentWindow const* cpw = static_cast(parentWindow); - readArrayNdOfUInt64Values(cpw->CellIndices, parentCellIndices); + readArrayNdOfIntegerValues(cpw->CellIndices, parentCellIndices); } else throw invalid_argument("This information is only available for cell parent window."); @@ -873,7 +873,7 @@ void AbstractGridRepresentation::getParentColumnIndices(uint64_t * parentColumnI if (parentWindow->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__ColumnLayerParentWindow) { gsoap_resqml2_0_1::resqml20__ColumnLayerParentWindow const* clpw = static_cast(parentWindow); - readArrayNdOfUInt64Values(clpw->ColumnIndices, parentColumnIndices); + readArrayNdOfIntegerValues(clpw->ColumnIndices, parentColumnIndices); } else { throw invalid_argument("This information is only available for column layer parent window."); @@ -891,7 +891,7 @@ void AbstractGridRepresentation::getParentColumnIndices(uint64_t * parentColumnI if (parentWindow->soap_type() == SOAP_TYPE_gsoap_eml2_3_resqml22__ColumnLayerParentWindow) { gsoap_eml2_3::resqml22__ColumnLayerParentWindow const* cpw = static_cast(parentWindow); - readArrayNdOfUInt64Values(cpw->ColumnIndices, parentColumnIndices); + readArrayNdOfIntegerValues(cpw->ColumnIndices, parentColumnIndices); } else { throw invalid_argument("This information is only available for column layer parent window."); @@ -1269,10 +1269,10 @@ uint64_t AbstractGridRepresentation::getRegridConstantCellCountPerInterval(char void AbstractGridRepresentation::getRegridCellCountPerInterval(char dimension, uint64_t * childCellCountPerInterval, bool childVsParentCellCount) const { if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(getCellCountPerInterval2_0_1(dimension, childVsParentCellCount), childCellCountPerInterval); + readArrayNdOfIntegerValues(getCellCountPerInterval2_0_1(dimension, childVsParentCellCount), childCellCountPerInterval); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(getCellCountPerInterval2_2(dimension, childVsParentCellCount), childCellCountPerInterval); + readArrayNdOfIntegerValues(getCellCountPerInterval2_2(dimension, childVsParentCellCount), childCellCountPerInterval); } else { throw logic_error("Not implemented yet"); @@ -1655,7 +1655,7 @@ int64_t AbstractGridRepresentation::getCellStratigraphicUnitIndices(int64_t * st if (gsoapProxy2_0_1 != nullptr) { gsoap_resqml2_0_1::resqml20__AbstractGridRepresentation* rep = static_cast(gsoapProxy2_0_1); - readArrayNdOfInt64Values(rep->CellStratigraphicUnits->UnitIndices, stratiUnitIndices); + readArrayNdOfIntegerValues(rep->CellStratigraphicUnits->UnitIndices, stratiUnitIndices); return static_cast(rep->CellStratigraphicUnits->UnitIndices)->NullValue; } else { @@ -1671,7 +1671,7 @@ int64_t AbstractGridRepresentation::getCellFluidPhaseUnitIndices(int64_t * rockF if (gsoapProxy2_0_1 != nullptr) { gsoap_resqml2_0_1::resqml20__AbstractGridRepresentation* rep = static_cast(gsoapProxy2_0_1); - readArrayNdOfInt64Values(rep->CellFluidPhaseUnits->PhaseUnitIndices, rockFluidUnitIndices); + readArrayNdOfIntegerValues(rep->CellFluidPhaseUnits->PhaseUnitIndices, rockFluidUnitIndices); return static_cast(rep->CellFluidPhaseUnits->PhaseUnitIndices)->NullValue; } else if (gsoapProxy2_3 != nullptr) { @@ -1730,10 +1730,10 @@ void AbstractGridRepresentation::getNodeIndicesOfTruncatedFaces(uint64_t * nodeI } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->NodesPerTruncationFace->Elements, nodeIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->NodesPerTruncationFace->Elements, nodeIndices); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->NodesPerTruncationFace->Elements, nodeIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->NodesPerTruncationFace->Elements, nodeIndices); } else { throw logic_error("Not implemented yet"); @@ -1747,10 +1747,10 @@ void AbstractGridRepresentation::getCumulativeNodeCountPerTruncatedFace(uint64_t } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->NodesPerTruncationFace->CumulativeLength, nodeCountPerFace); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->NodesPerTruncationFace->CumulativeLength, nodeCountPerFace); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->NodesPerTruncationFace->CumulativeLength, nodeCountPerFace); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->NodesPerTruncationFace->CumulativeLength, nodeCountPerFace); } else { throw logic_error("Not implemented yet"); @@ -1795,10 +1795,10 @@ void AbstractGridRepresentation::getTruncatedCellIndices(uint64_t* cellIndices) } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->ParentCellIndices, cellIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->ParentCellIndices, cellIndices); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->ParentCellIndices, cellIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->ParentCellIndices, cellIndices); } else { throw logic_error("Not implemented yet"); @@ -1812,10 +1812,10 @@ void AbstractGridRepresentation::getTruncatedFaceIndicesOfTruncatedCells(uint64_ } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->TruncationFacesPerCell->Elements, faceIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->TruncationFacesPerCell->Elements, faceIndices); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->TruncationFacesPerCell->Elements, faceIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->TruncationFacesPerCell->Elements, faceIndices); } else { throw logic_error("Not implemented yet"); @@ -1829,10 +1829,10 @@ void AbstractGridRepresentation::getCumulativeTruncatedFaceCountPerTruncatedCell } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->TruncationFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->TruncationFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->TruncationFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->TruncationFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); } else { throw logic_error("Not implemented yet"); @@ -1860,10 +1860,10 @@ void AbstractGridRepresentation::getNonTruncatedFaceIndicesOfTruncatedCells(uint } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->LocalFacesPerCell->Elements, faceIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->LocalFacesPerCell->Elements, faceIndices); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->LocalFacesPerCell->Elements, faceIndices); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->LocalFacesPerCell->Elements, faceIndices); } else { throw logic_error("Not implemented yet"); @@ -1878,10 +1878,10 @@ void AbstractGridRepresentation::getCumulativeNonTruncatedFaceCountPerTruncatedC } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->TruncationCells->LocalFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->LocalFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt64Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->LocalFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->LocalFacesPerCell->CumulativeLength, cumulativeFaceCountPerCell); } else { throw logic_error("Not implemented yet"); @@ -1908,10 +1908,10 @@ void AbstractGridRepresentation::getTruncatedFaceIsRightHanded(uint8_t* cellFace } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt8Values(static_cast(gsoapProxy2_0_1)->TruncationCells->TruncationCellFaceIsRightHanded, cellFaceIsRightHanded); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_0_1)->TruncationCells->TruncationCellFaceIsRightHanded, cellFaceIsRightHanded); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt8Values(static_cast(gsoapProxy2_3)->TruncationCellPatch->TruncationCellFaceIsRightHanded, cellFaceIsRightHanded); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->TruncationCellPatch->TruncationCellFaceIsRightHanded, cellFaceIsRightHanded); } else { throw logic_error("Not implemented yet"); diff --git a/src/resqml2/AbstractIjkGridRepresentation.cpp b/src/resqml2/AbstractIjkGridRepresentation.cpp index 3dbe1aafe..f2d3facb4 100644 --- a/src/resqml2/AbstractIjkGridRepresentation.cpp +++ b/src/resqml2/AbstractIjkGridRepresentation.cpp @@ -107,7 +107,7 @@ void AbstractIjkGridRepresentation::init(COMMON_NS::DataObjectRepository * repo, gsoap_eml2_3::eml23__BooleanExternalArray* boolArray = gsoap_eml2_3::soap_new_eml23__BooleanExternalArray(getGsoapContext()); boolArray->Values = gsoap_eml2_3::soap_new_eml23__ExternalDataArray(getGsoapContext()); - boolArray->Values->ExternalDataArrayPart.push_back(createExternalDataArrayPart("/" + getXmlNamespace() + "/" + guid + "/GapAfterLayer", getCellCount(), proxy)); + boolArray->Values->ExternalDataArrayPart.push_back(createExternalDataArrayPart("/" + getXmlNamespace() + "/" + guid + "/GapAfterLayer", kGapCount, proxy)); xmlKGaps->GapAfterLayer = boolArray; ijkGrid->KGaps = xmlKGaps; @@ -339,7 +339,7 @@ void AbstractIjkGridRepresentation::getPillarsOfSplitCoordinateLines(unsigned in if (geom == nullptr || geom->ColumnLayerSplitCoordinateLines == nullptr) { throw invalid_argument("There is no geometry or no split coordinate line in this grid."); } - readArrayNdOfUInt32Values(geom->ColumnLayerSplitCoordinateLines->PillarIndices, pillarIndices); + readArrayNdOfIntegerValues(geom->ColumnLayerSplitCoordinateLines->PillarIndices, pillarIndices); } if (reverseIAxis || reverseJAxis) { @@ -370,7 +370,7 @@ void AbstractIjkGridRepresentation::getColumnsOfSplitCoordinateLines(unsigned in throw invalid_argument("There is no geometry or no split coordinate line in this IJK grid."); } - readArrayNdOfUInt32Values(geom->SplitCoordinateLines->ColumnsPerSplitCoordinateLine->Elements, columnIndices); + readArrayNdOfIntegerValues(geom->SplitCoordinateLines->ColumnsPerSplitCoordinateLine->Elements, columnIndices); if (reverseIAxis || reverseJAxis) { datasetValueCount = getCountOfArray(geom->SplitCoordinateLines->ColumnsPerSplitCoordinateLine->Elements); } @@ -381,7 +381,7 @@ void AbstractIjkGridRepresentation::getColumnsOfSplitCoordinateLines(unsigned in throw invalid_argument("There is no geometry or no split coordinate line in this IJK grid."); } - readArrayNdOfUInt32Values(geom->ColumnLayerSplitCoordinateLines->ColumnsPerSplitCoordinateLine->Elements, columnIndices); + readArrayNdOfIntegerValues(geom->ColumnLayerSplitCoordinateLines->ColumnsPerSplitCoordinateLine->Elements, columnIndices); if (reverseIAxis || reverseJAxis) { datasetValueCount = getCountOfArray(geom->ColumnLayerSplitCoordinateLines->ColumnsPerSplitCoordinateLine->Elements); } @@ -426,7 +426,7 @@ void AbstractIjkGridRepresentation::getColumnCountOfSplitCoordinateLines(unsigne if (geom == nullptr || geom->ColumnLayerSplitCoordinateLines == nullptr) { throw invalid_argument("There is no geometry or no split coordinate line in this IJK grid."); } - readArrayNdOfUInt32Values(geom->ColumnLayerSplitCoordinateLines->ColumnsPerSplitCoordinateLine->CumulativeLength, columnIndexCountPerSplitCoordinateLine); + readArrayNdOfIntegerValues(geom->ColumnLayerSplitCoordinateLines->ColumnsPerSplitCoordinateLine->CumulativeLength, columnIndexCountPerSplitCoordinateLine); } } @@ -892,8 +892,7 @@ void AbstractIjkGridRepresentation::loadBlockInformation(unsigned int iInterface if ((iColumnIndex >= iInterfaceStart && iColumnIndex < iInterfaceEnd) && (jColumnIndex >= jInterfaceStart && jColumnIndex < jInterfaceEnd)) { // here is a split coordinate line impacting the bloc - (blockInformation->globalToLocalSplitCoordinateLinesIndex)[splitInformation[pillarIndex][splitCoordinateLineIndex].first] = -1; - + (blockInformation->globalToLocalSplitCoordinateLinesIndex)[splitInformation[pillarIndex][splitCoordinateLineIndex].first] = (std::numeric_limits::max)(); break; // in order to be sure not adding twice a same coordinate line if it is adjacent to several columns within the block } } @@ -1347,7 +1346,7 @@ void AbstractIjkGridRepresentation::getXyzPointsOfBlock(double *) throw std::logic_error("Partial object"); } -uint64_t AbstractIjkGridRepresentation::getXyzPointCountOfPatch(unsigned int) const +uint64_t AbstractIjkGridRepresentation::getXyzPointCountOfPatch(uint64_t) const { const uint64_t result = getXyzPointCountOfKInterface() * (getKCellCount() + 1 + getKGapsCount()) + getSplitNodeCount(); @@ -1365,7 +1364,7 @@ uint64_t AbstractIjkGridRepresentation::getXyzPointCountOfPatch(unsigned int) co throw std::logic_error("The IJK Grid is in an unknown Energistics standard version."); } -void AbstractIjkGridRepresentation::getXyzPointsOfPatch(unsigned int, double *) const +void AbstractIjkGridRepresentation::getXyzPointsOfPatch(uint64_t, double *) const { throw std::logic_error("Partial object"); } diff --git a/src/resqml2/AbstractIjkGridRepresentation.h b/src/resqml2/AbstractIjkGridRepresentation.h index f36661f34..b3a92d1c0 100644 --- a/src/resqml2/AbstractIjkGridRepresentation.h +++ b/src/resqml2/AbstractIjkGridRepresentation.h @@ -758,7 +758,7 @@ namespace RESQML2_NS virtual COMMON_NS::DataObjectReference getHdfProxyDor() const override { throw std::logic_error("Partial object"); } - DLL_IMPORT_OR_EXPORT virtual uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const override; + DLL_IMPORT_OR_EXPORT virtual uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const override; /** * @copybrief AbstractRepresentation::getXyzPointsOfPatch @@ -770,7 +770,7 @@ namespace RESQML2_NS * with a count of ((iCellCount+1) * (jCellCount+1) + splitCoordinateLineCount) * * kCellCount. */ - DLL_IMPORT_OR_EXPORT virtual void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const override; + DLL_IMPORT_OR_EXPORT virtual void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const override; /** The standard XML tag without XML namespace for serializing this data object. */ DLL_IMPORT_OR_EXPORT static constexpr char const* XML_TAG = "IjkGridRepresentation"; @@ -866,22 +866,22 @@ namespace RESQML2_NS public: /** Zero-based index of the interface start */ - unsigned int iInterfaceStart; + uint32_t iInterfaceStart; /** Zero-based index of the interface end */ - unsigned int iInterfaceEnd; + uint32_t iInterfaceEnd; /** The interface start */ - unsigned int jInterfaceStart; + uint32_t jInterfaceStart; /** The interface end */ - unsigned int jInterfaceEnd; + uint32_t jInterfaceEnd; /** The interface start */ - unsigned int kInterfaceStart; + uint32_t kInterfaceStart; /** The interface end */ - unsigned int kInterfaceEnd; + uint32_t kInterfaceEnd; /** Map split coordinate lines index with local index (according to a block) */ - std::map globalToLocalSplitCoordinateLinesIndex; + std::map globalToLocalSplitCoordinateLinesIndex; - BlockInformation(unsigned int iNodeStart, unsigned int iNodeEnd, unsigned int jNodeStart, unsigned int jNodeEnd, unsigned int kNodeStart, unsigned int kNodeEnd) : + BlockInformation(uint32_t iNodeStart, uint32_t iNodeEnd, uint32_t jNodeStart, uint32_t jNodeEnd, uint32_t kNodeStart, uint32_t kNodeEnd) : iInterfaceStart(iNodeStart), iInterfaceEnd(iNodeEnd), jInterfaceStart(jNodeStart), jInterfaceEnd(jNodeEnd), kInterfaceStart(kNodeStart), kInterfaceEnd(kNodeEnd) {} /** Destructor */ diff --git a/src/resqml2/AbstractProperty.cpp b/src/resqml2/AbstractProperty.cpp index 4667cdb51..4696ed57c 100644 --- a/src/resqml2/AbstractProperty.cpp +++ b/src/resqml2/AbstractProperty.cpp @@ -57,7 +57,7 @@ void AbstractProperty::loadTargetRelationships() convertDorIntoRel(dor); } - for (unsigned int patchIndex = 0; patchIndex < getPatchCount(); ++patchIndex) { + for (uint64_t patchIndex = 0; patchIndex < getPatchCount(); ++patchIndex) { dor = getHdfProxyDor(patchIndex); if (!dor.isEmpty()) { convertDorIntoRel(dor); @@ -233,7 +233,7 @@ bool AbstractProperty::useInterval() const throw logic_error("Not implemented yet"); } -uint64_t AbstractProperty::getElementCountPerValue() const +uint64_t AbstractProperty::getValueCountPerIndexableElement() const { uint64_t result; if (gsoapProxy2_0_1 != nullptr) { @@ -464,7 +464,7 @@ std::vector AbstractProperty::getRealizationIndices() const } else if (gsoapProxy2_3 != nullptr) { std::vector result(getCountOfArray(static_cast(gsoapProxy2_3)->RealizationIndices)); - readArrayNdOfUInt32Values(static_cast(gsoapProxy2_3)->RealizationIndices, result.data()); + readArrayNdOfIntegerValues(static_cast(gsoapProxy2_3)->RealizationIndices, result.data()); return result; } else { diff --git a/src/resqml2/AbstractProperty.h b/src/resqml2/AbstractProperty.h index c5767234d..8a64eabca 100644 --- a/src/resqml2/AbstractProperty.h +++ b/src/resqml2/AbstractProperty.h @@ -68,13 +68,13 @@ namespace RESQML2_NS DLL_IMPORT_OR_EXPORT AbstractRepresentation* getRepresentation() const; /** - * Gets the count of elements per property value. If the property is a scalar one then it should + * Gets the count of values per indexable element. If the property is a scalar one then it should * be one. If it is a vectorial one, then it should be more than one. It is not possible to have * some tensor property values (more dimensions than a vector) * - * @returns The element count per value. + * @returns The value count per indexable element. */ - DLL_IMPORT_OR_EXPORT uint64_t getElementCountPerValue() const; + DLL_IMPORT_OR_EXPORT uint64_t getValueCountPerIndexableElement() const; /** * Gets the kind of elements on which the property values are attached to diff --git a/src/resqml2/AbstractRepresentation.cpp b/src/resqml2/AbstractRepresentation.cpp index 57db5a83e..42d220572 100644 --- a/src/resqml2/AbstractRepresentation.cpp +++ b/src/resqml2/AbstractRepresentation.cpp @@ -76,7 +76,7 @@ COMMON_NS::DataObjectReference AbstractRepresentation::getHdfProxyDorFromPointGe return COMMON_NS::DataObjectReference(); } -gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* AbstractRepresentation::getSeismic3dCoordinates2_0_1(unsigned int patchIndex) const +gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* AbstractRepresentation::getSeismic3dCoordinates2_0_1(uint64_t patchIndex) const { gsoap_resqml2_0_1::resqml20__PointGeometry* const geom = getPointGeometry2_0_1(patchIndex); if (geom == nullptr) { @@ -90,7 +90,7 @@ gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* AbstractRepresentation::getSe return nullptr; } -gsoap_eml2_3::resqml22__Seismic3dCoordinates* AbstractRepresentation::getSeismic3dCoordinates2_2(unsigned int patchIndex) const +gsoap_eml2_3::resqml22__Seismic3dCoordinates* AbstractRepresentation::getSeismic3dCoordinates2_2(uint64_t patchIndex) const { gsoap_eml2_3::resqml22__PointGeometry* const geom = getPointGeometry2_2(patchIndex); if (geom == nullptr) { @@ -401,7 +401,7 @@ uint64_t AbstractRepresentation::getXyzPointCountOfAllPatches() const return result; } -void AbstractRepresentation::getXyzPointsOfPatchInGlobalCrs(unsigned int patchIndex, double* xyzPoints) const +void AbstractRepresentation::getXyzPointsOfPatchInGlobalCrs(uint64_t patchIndex, double* xyzPoints) const { if (getLocalCrs(patchIndex)->isPartial()) { throw invalid_argument("You cannot get the points in the global CRS if the local CRS is partial"); @@ -476,7 +476,7 @@ void AbstractRepresentation::getXyzPointsOfAllPatchesInGlobalCrs(double* xyzPoin getLocalCrs(0)->convertXyzPointsToGlobalCrs(xyzPoints, getXyzPointCountOfAllPatches()); } -AbstractRepresentation* AbstractRepresentation::getSeismicSupportOfPatch(const unsigned int& patchIndex) const +AbstractRepresentation* AbstractRepresentation::getSeismicSupportOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The seismic support of the patch at the specified index is out of range."); @@ -539,7 +539,7 @@ void AbstractRepresentation::loadTargetRelationships() } // CRS - for (unsigned int patchIndex = 0; patchIndex < getPatchCount(); ++patchIndex) { + for (uint64_t patchIndex = 0; patchIndex < getPatchCount(); ++patchIndex) { dor = getLocalCrsDor(patchIndex); if (!dor.isEmpty()) { convertDorIntoRel(dor); @@ -591,7 +591,7 @@ void AbstractRepresentation::loadTargetRelationships() } } -void AbstractRepresentation::addSeismic3dCoordinatesToPatch(unsigned int patchIndex, double* inlines, double* crosslines, uint64_t pointCount, +void AbstractRepresentation::addSeismic3dCoordinatesToPatch(uint64_t patchIndex, double* inlines, double* crosslines, uint64_t pointCount, RESQML2_NS::AbstractRepresentation* seismicSupport, EML2_NS::AbstractHdfProxy* proxy) { if (gsoapProxy2_0_1 != nullptr || gsoapProxy2_3 != nullptr) { @@ -677,7 +677,7 @@ void AbstractRepresentation::addSeismic3dCoordinatesToPatch(unsigned int patchIn } } -void AbstractRepresentation::addSeismic3dCoordinatesToPatch(unsigned int patchIndex, double startInline, double incrInline, unsigned int countInline, +void AbstractRepresentation::addSeismic3dCoordinatesToPatch(uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, RESQML2_NS::AbstractRepresentation* seismicSupport) { if (gsoapProxy2_0_1 != nullptr) { @@ -759,7 +759,7 @@ void AbstractRepresentation::addSeismic3dCoordinatesToPatch(unsigned int patchIn } } -void AbstractRepresentation::addSeismic2dCoordinatesToPatch(unsigned int patchIndex, double* lineAbscissa, +void AbstractRepresentation::addSeismic2dCoordinatesToPatch(uint64_t patchIndex, double* lineAbscissa, RESQML2_NS::AbstractRepresentation* seismicSupport, EML2_NS::AbstractHdfProxy* proxy) { if (gsoapProxy2_0_1 != nullptr || gsoapProxy2_3 != nullptr) { @@ -825,7 +825,7 @@ void AbstractRepresentation::addSeismic2dCoordinatesToPatch(unsigned int patchIn } } -void AbstractRepresentation::getSeismicLineAbscissaOfPointsOfPatch(unsigned int patchIndex, double* values) const +void AbstractRepresentation::getSeismicLineAbscissaOfPointsOfPatch(uint64_t patchIndex, double* values) const { if (gsoapProxy2_0_1 != nullptr) { gsoap_resqml2_0_1::resqml20__PointGeometry* const geom = getPointGeometry2_0_1(patchIndex); @@ -852,7 +852,7 @@ void AbstractRepresentation::getSeismicLineAbscissaOfPointsOfPatch(unsigned int } } -void AbstractRepresentation::getInlinesOfPointsOfPatch(unsigned int patchIndex, double* values) const +void AbstractRepresentation::getInlinesOfPointsOfPatch(uint64_t patchIndex, double* values) const { if (gsoapProxy2_0_1 != nullptr) { gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* seisInfo = getSeismic3dCoordinates2_0_1(patchIndex); @@ -881,7 +881,7 @@ void AbstractRepresentation::getInlinesOfPointsOfPatch(unsigned int patchIndex, } } -void AbstractRepresentation::getCrosslinesOfPointsOfPatch(unsigned int patchIndex, double* values) const +void AbstractRepresentation::getCrosslinesOfPointsOfPatch(uint64_t patchIndex, double* values) const { if (gsoapProxy2_0_1 != nullptr) { gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* seisInfo = getSeismic3dCoordinates2_0_1(patchIndex); diff --git a/src/resqml2/AbstractRepresentation.h b/src/resqml2/AbstractRepresentation.h index b45835bf3..c6ea34077 100644 --- a/src/resqml2/AbstractRepresentation.h +++ b/src/resqml2/AbstractRepresentation.h @@ -162,7 +162,7 @@ namespace RESQML2_NS * * @returns The xyz point count of the patch at position @p patchIndex. */ - DLL_IMPORT_OR_EXPORT virtual uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const = 0; + DLL_IMPORT_OR_EXPORT virtual uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const = 0; /** * Get the xyz point count of all patches of this representation. @@ -184,7 +184,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT virtual void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const = 0; + DLL_IMPORT_OR_EXPORT virtual void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const = 0; /** * @brief Gets all the xyz points of a particular patch of this representation. xyz points are given in @@ -198,7 +198,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatchInGlobalCrs(unsigned int patchIndex, double * xyzPoints) const; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatchInGlobalCrs(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of all patches of this representation. xyz points are given in the @@ -248,7 +248,7 @@ namespace RESQML2_NS * @returns Null if no seismic information have been provided for the patch at position @p * patchIndex. Else, its seismic support. */ - DLL_IMPORT_OR_EXPORT AbstractRepresentation* getSeismicSupportOfPatch(const unsigned int & patchIndex) const; + DLL_IMPORT_OR_EXPORT AbstractRepresentation* getSeismicSupportOfPatch(uint64_t patchIndex) const; /** * Gets all seismic supports of the current geometry of this representation (that is to say the @@ -299,7 +299,7 @@ namespace RESQML2_NS * values. It must be already opened for writing and won't be * closed in this method. */ - DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch(unsigned int patchIndex, double* inlines, double* crosslines, uint64_t pointCount, + DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch(uint64_t patchIndex, double* inlines, double* crosslines, uint64_t pointCount, RESQML2_NS::AbstractRepresentation* seismicSupport, EML2_NS::AbstractHdfProxy* proxy); /** @@ -320,7 +320,7 @@ namespace RESQML2_NS * @param countCrossline The crossline count. * @param [in] seismicSupport The representation of the seismic line. */ - DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch(unsigned int patchIndex, double startInline, double incrInline, unsigned int countInline, + DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch(uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, RESQML2_NS::AbstractRepresentation* seismicSupport); @@ -342,7 +342,7 @@ namespace RESQML2_NS * must be already opened for writing and won't be closed in * this method. */ - DLL_IMPORT_OR_EXPORT void addSeismic2dCoordinatesToPatch(unsigned int patchIndex, double* lineAbscissa, + DLL_IMPORT_OR_EXPORT void addSeismic2dCoordinatesToPatch(uint64_t patchIndex, double* lineAbscissa, RESQML2_NS::AbstractRepresentation * seismicSupport, EML2_NS::AbstractHdfProxy * proxy); /** @@ -356,7 +356,7 @@ namespace RESQML2_NS * @param [out] values The array where the abscissa are going to be stored. The count of * this array must be equal to getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT void getSeismicLineAbscissaOfPointsOfPatch(unsigned int patchIndex, double* values) const; + DLL_IMPORT_OR_EXPORT void getSeismicLineAbscissaOfPointsOfPatch(uint64_t patchIndex, double* values) const; /** * Gets all the inline coordinates of the points of a specific patch related to seismic lattice. @@ -370,7 +370,7 @@ namespace RESQML2_NS * count of this array must be equal to * getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT void getInlinesOfPointsOfPatch(unsigned int patchIndex, double * values) const; + DLL_IMPORT_OR_EXPORT void getInlinesOfPointsOfPatch(uint64_t patchIndex, double * values) const; /** * Gets all the crossline coordinates of the points of a specific patch related to seismic @@ -385,7 +385,7 @@ namespace RESQML2_NS * count of this array must be equal to * getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT void getCrosslinesOfPointsOfPatch(unsigned int patchIndex, double * values) const; + DLL_IMPORT_OR_EXPORT void getCrosslinesOfPointsOfPatch(uint64_t patchIndex, double * values) const; /** The standard XML tag without XML namespace for serializing this data object */ static constexpr char const* XML_TAG = "AbstractRepresentation"; @@ -505,7 +505,7 @@ namespace RESQML2_NS * * @returns Null if it fails, else the seismic 3D coordinates. */ - gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* getSeismic3dCoordinates2_0_1(unsigned int patchIndex) const; + gsoap_resqml2_0_1::resqml20__Seismic3dCoordinates* getSeismic3dCoordinates2_0_1(uint64_t patchIndex) const; /** * Gets seismic 3D coordinates @@ -514,6 +514,6 @@ namespace RESQML2_NS * * @returns Null if it fails, else the seismic 3D coordinates. */ - gsoap_eml2_3::resqml22__Seismic3dCoordinates* getSeismic3dCoordinates2_2(unsigned int patchIndex) const; + gsoap_eml2_3::resqml22__Seismic3dCoordinates* getSeismic3dCoordinates2_2(uint64_t patchIndex) const; }; } diff --git a/src/resqml2/AbstractSurfaceFrameworkRepresentation.cpp b/src/resqml2/AbstractSurfaceFrameworkRepresentation.cpp index e1dbfdd1c..f5bfa898e 100644 --- a/src/resqml2/AbstractSurfaceFrameworkRepresentation.cpp +++ b/src/resqml2/AbstractSurfaceFrameworkRepresentation.cpp @@ -253,10 +253,10 @@ void AbstractSurfaceFrameworkRepresentation::getContactIndices(unsigned int ciIn { cannotBePartial(); if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt32Values(getContactIdentity201(ciIndex)->ListOfContactRepresentations, contactRepIndices); + readArrayNdOfIntegerValues(getContactIdentity201(ciIndex)->ListOfContactRepresentations, contactRepIndices); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt32Values(getContactIdentity22(ciIndex)->ContactIndices, contactRepIndices); + readArrayNdOfIntegerValues(getContactIdentity22(ciIndex)->ContactIndices, contactRepIndices); } else { throw std::logic_error("Unknown RESQML version"); @@ -310,10 +310,10 @@ void AbstractSurfaceFrameworkRepresentation::getIdenticalContactNodeIndices(unsi } if (gsoapProxy2_0_1 != nullptr) { - readArrayNdOfUInt32Values(getContactIdentity201(ciIndex)->ListOfIdenticalNodes, nodeIndices); + readArrayNdOfIntegerValues(getContactIdentity201(ciIndex)->ListOfIdenticalNodes, nodeIndices); } else if (gsoapProxy2_3 != nullptr) { - readArrayNdOfUInt32Values(getContactIdentity22(ciIndex)->IdenticalNodeIndices, nodeIndices); + readArrayNdOfIntegerValues(getContactIdentity22(ciIndex)->IdenticalNodeIndices, nodeIndices); } else { throw std::logic_error("Unknown RESQML version"); diff --git a/src/resqml2/AbstractValuesProperty.cpp b/src/resqml2/AbstractValuesProperty.cpp index e5dcb847e..ef9026140 100644 --- a/src/resqml2/AbstractValuesProperty.cpp +++ b/src/resqml2/AbstractValuesProperty.cpp @@ -367,77 +367,137 @@ void AbstractValuesProperty::pushBackIntegerConstantArrayOfValues(int64_t value, } } -void AbstractValuesProperty::pushBackInt32Hdf5Array1dOfValues(const int * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy * proxy, - int nullValue) -{ - pushBackInt32Hdf5ArrayOfValues(values, &valueCount, 1, proxy, nullValue); +template<> void AbstractValuesProperty::pushBackArrayOfValues(const int8_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::INT8, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const uint8_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint8_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT8, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const int16_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int16_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::INT16, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const uint16_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint16_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT16, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const int32_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int32_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::INT32, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const uint32_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint32_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT32, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const int64_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::INT64, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const uint64_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint64_t nullValue) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT64, numValues, numDimensionsInArray, proxy, nullValue); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const float* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, float) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::FLOAT, numValues, numDimensionsInArray, proxy, (std::numeric_limits::max)()); +} +template<> void AbstractValuesProperty::pushBackArrayOfValues(const double* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, double) { + pushBackArrayOfValues(values, COMMON_NS::AbstractObject::numericalDatatypeEnum::DOUBLE, numValues, numDimensionsInArray, proxy, (std::numeric_limits::max)()); } -void AbstractValuesProperty::pushBackInt16Hdf5Array1dOfValues(const short * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy * proxy, - short nullValue) -{ - pushBackInt16Hdf5ArrayOfValues(values, &valueCount, 1, proxy, nullValue); +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getInt8Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getUInt8Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getInt16Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getUInt16Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getInt32Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getUInt32Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getInt64Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getUInt64Statistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getFloatStatistics(patchIndex); } +template<> COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const { return getDoubleStatistics(patchIndex); } + +void AbstractValuesProperty::pushBackInt64Hdf5Array1dOfValues(const int64_t* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { + pushBackArray1dOfValues(values, valueCount, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt8Hdf5Array1dOfValues(const int8_t * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy * proxy, - int8_t nullValue) -{ - pushBackInt8Hdf5ArrayOfValues(values, &valueCount, 1, proxy, nullValue); +void AbstractValuesProperty::pushBackInt32Hdf5Array1dOfValues(const int* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int nullValue) { + pushBackArray1dOfValues(values, valueCount, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt32Hdf5Array2dOfValues(const int * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - int nullValue) -{ - uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackInt32Hdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy, nullValue); +void AbstractValuesProperty::pushBackInt16Hdf5Array1dOfValues(const short* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, short nullValue) { + pushBackArray1dOfValues(values, valueCount, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt16Hdf5Array2dOfValues(const short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - short nullValue) -{ - uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackInt16Hdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy, nullValue); +void AbstractValuesProperty::pushBackInt8Hdf5Array1dOfValues(const int8_t* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue) { + pushBackArray1dOfValues(values, valueCount, proxy, nullValue); } -void AbstractValuesProperty::pushBackUInt16Hdf5Array2dOfValues(const unsigned short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue) -{ - uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackUInt16Hdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy, nullValue); +void AbstractValuesProperty::pushBackInt64Hdf5Array2dOfValues(const int64_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt32Hdf5Array2dOfValues(const int* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue) { + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt16Hdf5Array2dOfValues(const short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue) { + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackUInt16Hdf5Array2dOfValues(const unsigned short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue) { + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt8Hdf5Array2dOfValues(const int8_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue) { + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt8Hdf5Array2dOfValues(const int8_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - int8_t nullValue) +void AbstractValuesProperty::pushBackInt64Hdf5Array3dOfValues(const int64_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt32Hdf5Array3dOfValues(const int* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue) { + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt16Hdf5Array3dOfValues(const short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue) { + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackUInt16Hdf5Array3dOfValues(const unsigned short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue) { + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt8Hdf5Array3dOfValues(const int8_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue) { + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy, nullValue); +} + +void AbstractValuesProperty::pushBackInt64Hdf5ArrayOfValues(const int64_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { - uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackInt8Hdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy, nullValue); + pushBackArrayOfValues(values, numValues, numDimensionsInArray, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt32Hdf5Array3dOfValues(const int * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - int nullValue) +void AbstractValuesProperty::pushBackInt32Hdf5ArrayOfValues(const int* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int nullValue) { - uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackInt32Hdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy, nullValue); + pushBackArrayOfValues(values, numValues, numDimensionsInArray, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt16Hdf5Array3dOfValues(const short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - short nullValue) +void AbstractValuesProperty::pushBackInt16Hdf5ArrayOfValues(const short* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, short nullValue) { - uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackInt16Hdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy, nullValue); + pushBackArrayOfValues(values, numValues, numDimensionsInArray, proxy, nullValue); } -void AbstractValuesProperty::pushBackUInt16Hdf5Array3dOfValues(const unsigned short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - unsigned short nullValue) +void AbstractValuesProperty::pushBackUInt16Hdf5ArrayOfValues(const unsigned short* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue) { - uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackUInt16Hdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy, nullValue); + pushBackArrayOfValues(values, numValues, numDimensionsInArray, proxy, nullValue); } -void AbstractValuesProperty::pushBackInt8Hdf5Array3dOfValues(const int8_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy, - int8_t nullValue) +void AbstractValuesProperty::pushBackInt8Hdf5ArrayOfValues(const int8_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue) { - uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackInt8Hdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy, nullValue); + pushBackArrayOfValues(values, numValues, numDimensionsInArray, proxy, nullValue); } std::string AbstractValuesProperty::pushBackRefToExistingIntegerDataset(EML2_NS::AbstractHdfProxy* hdfProxy, const std::string & datasetName, int64_t nullValue) @@ -550,27 +610,8 @@ std::string AbstractValuesProperty::pushBackRefToExistingFloatingPointDataset(EM throw logic_error("Unrecognized RESQML version"); } -void AbstractValuesProperty::pushBackInt64Hdf5ArrayOfValues(const int64_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy * proxy, int64_t nullValue) -{ - if (proxy == nullptr) { - proxy = getRepository()->getDefaultHdfProxy(); - if (proxy == nullptr) { - throw std::invalid_argument("A (default) HDF Proxy must be provided."); - } - } - - const std::string datasetName = "values_patch" + std::to_string(getPatchCount()); - - proxy->writeArrayNd(getHdfGroup(), - datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::INT64, - values, - numValues, numDimensionsInArray); - - pushBackRefToExistingIntegerDataset(proxy, getHdfGroup() + "/" + datasetName, nullValue); -} - -void AbstractValuesProperty::pushBackInt32Hdf5ArrayOfValues(const int * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int nullValue) +void AbstractValuesProperty::pushBackArrayOfValues(const void* values, COMMON_NS::AbstractObject::numericalDatatypeEnum numericalDatatype, const uint64_t* numValues, unsigned int numDimensionsInArray + , EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { if (proxy == nullptr) { proxy = getRepository()->getDefaultHdfProxy(); @@ -583,71 +624,19 @@ void AbstractValuesProperty::pushBackInt32Hdf5ArrayOfValues(const int * values, proxy->writeArrayNd(getHdfGroup(), datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::INT32, + numericalDatatype, values, numValues, numDimensionsInArray); - pushBackRefToExistingIntegerDataset(proxy, getHdfGroup() + "/" + datasetName, nullValue); -} - -void AbstractValuesProperty::pushBackInt16Hdf5ArrayOfValues(const short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, short nullValue) -{ - if (proxy == nullptr) { - proxy = getRepository()->getDefaultHdfProxy(); - if (proxy == nullptr) { - throw std::invalid_argument("A (default) HDF Proxy must be provided."); - } + if (numericalDatatype == COMMON_NS::AbstractObject::numericalDatatypeEnum::DOUBLE || numericalDatatype == COMMON_NS::AbstractObject::numericalDatatypeEnum::FLOAT) { + pushBackRefToExistingFloatingPointDataset(proxy, getHdfGroup() + "/" + datasetName); } - - const std::string datasetName = "values_patch" + std::to_string(getPatchCount()); - - proxy->writeArrayNd(getHdfGroup(), - datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::INT16, - values, - numValues, numDimensionsInArray); - - pushBackRefToExistingIntegerDataset(proxy, getHdfGroup() + "/" + datasetName, nullValue); -} - -void AbstractValuesProperty::pushBackUInt16Hdf5ArrayOfValues(const unsigned short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue) -{ - if (proxy == nullptr) { - proxy = getRepository()->getDefaultHdfProxy(); - if (proxy == nullptr) { - throw std::invalid_argument("A (default) HDF Proxy must be provided."); - } + else if (numericalDatatype == COMMON_NS::AbstractObject::numericalDatatypeEnum::UNKNOWN) { + throw std::invalid_argument("The datatype cannot be unknown"); } - - const std::string datasetName = "values_patch" + std::to_string(getPatchCount()); - - proxy->writeArrayNd(getHdfGroup(), - datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT16, - values, - numValues, numDimensionsInArray); - - pushBackRefToExistingIntegerDataset(proxy, getHdfGroup() + "/" + datasetName, nullValue); -} - -void AbstractValuesProperty::pushBackInt8Hdf5ArrayOfValues(const int8_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue) -{ - if (proxy == nullptr) { - proxy = getRepository()->getDefaultHdfProxy(); - if (proxy == nullptr) { - throw std::invalid_argument("A (default) HDF Proxy must be provided."); - } + else { + pushBackRefToExistingIntegerDataset(proxy, getHdfGroup() + "/" + datasetName, nullValue); } - - const std::string datasetName = "values_patch" + std::to_string(getPatchCount()); - - proxy->writeArrayNd(getHdfGroup(), - datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::INT8, - values, - numValues, numDimensionsInArray); - - pushBackRefToExistingIntegerDataset(proxy, getHdfGroup() + "/" + datasetName, nullValue); } bool AbstractValuesProperty::hasConstantValues(uint64_t patchIndex) const { @@ -719,56 +708,6 @@ double AbstractValuesProperty::getDoubleConstantValuesOfPatch(uint64_t patchInde throw std::invalid_argument("The property " + getUuid() + " has constant values which are not floating point ones."); } -int64_t AbstractValuesProperty::getInt64ValuesOfPatch(uint64_t patchIndex, int64_t * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfInt64Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfInt64Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -uint64_t AbstractValuesProperty::getUInt64ValuesOfPatch(uint64_t patchIndex, uint64_t* values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfUInt64Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfUInt64Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - int64_t AbstractValuesProperty::getNullValueOfPatch(uint64_t patchIndex) const { cannotBePartial(); @@ -819,158 +758,6 @@ int64_t AbstractValuesProperty::getNullValueOfPatch(uint64_t patchIndex) const } } -int32_t AbstractValuesProperty::getInt32ValuesOfPatch(uint64_t patchIndex, int32_t * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfInt32Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfInt32Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -uint32_t AbstractValuesProperty::getUInt32ValuesOfPatch(uint64_t patchIndex, uint32_t * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfUInt32Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfUInt32Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -int16_t AbstractValuesProperty::getInt16ValuesOfPatch(uint64_t patchIndex, int16_t * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfInt16Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfInt16Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -uint16_t AbstractValuesProperty::getUInt16ValuesOfPatch(uint64_t patchIndex, uint16_t * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfUInt16Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfUInt16Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -int8_t AbstractValuesProperty::getInt8ValuesOfPatch(uint64_t patchIndex, int8_t* values) const -{ - if (isPartial()) { - throw logic_error("You cannot read values from a partial property."); - } - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfInt8Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfInt8Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -uint8_t AbstractValuesProperty::getUInt8ValuesOfPatch(uint64_t patchIndex, uint8_t* values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - return readArrayNdOfUInt8Values(static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values, values); - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArray = dynamic_cast(xmlValues); - if (xmlArray != nullptr) { - return readArrayNdOfUInt8Values(xmlArray, values); - } - else { - throw logic_error("Reading integer values from a non integer array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - void AbstractValuesProperty::setValuesOfHdf5ArrayOfValues( COMMON_NS::AbstractObject::numericalDatatypeEnum datatype, void const* values, @@ -1131,77 +918,42 @@ void AbstractValuesProperty::pushBackFloatingPointConstantArrayOfValues(double v void AbstractValuesProperty::pushBackDoubleHdf5Array1dOfValues(const double * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy * proxy) { - pushBackDoubleHdf5ArrayOfValues(values, &valueCount, 1, proxy); + pushBackArray1dOfValues(values, valueCount, proxy); } void AbstractValuesProperty::pushBackDoubleHdf5Array2dOfValues(const double * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy) { - const uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackDoubleHdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy); + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy); } void AbstractValuesProperty::pushBackDoubleHdf5Array3dOfValues(const double * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy) { - const uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackDoubleHdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy); + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy); } void AbstractValuesProperty::pushBackDoubleHdf5ArrayOfValues(double const * values, uint64_t const * numValues, unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy * proxy) { - if (proxy == nullptr) { - proxy = getRepository()->getDefaultHdfProxy(); - if (proxy == nullptr) { - throw std::invalid_argument("A (default) HDF Proxy must be provided."); - } - } - const std::string datasetName = "values_patch" + std::to_string(getPatchCount()); - - // HDF - proxy->writeArrayNd(getHdfGroup(), - datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::DOUBLE, - values, - numValues, numArrayDimensions); - - pushBackRefToExistingFloatingPointDataset(proxy, getHdfGroup() + "/" + datasetName); + pushBackArrayOfValues(values, numValues, numArrayDimensions, proxy); } void AbstractValuesProperty::pushBackFloatHdf5Array1dOfValues(const float * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy * proxy) { - pushBackFloatHdf5ArrayOfValues(values, &valueCount, 1, proxy); + pushBackArray1dOfValues(values, valueCount, proxy); } void AbstractValuesProperty::pushBackFloatHdf5Array2dOfValues(const float * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy) { - const uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackFloatHdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy); + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy); } void AbstractValuesProperty::pushBackFloatHdf5Array3dOfValues(const float * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy * proxy) { - const uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackFloatHdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy); + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy); } void AbstractValuesProperty::pushBackFloatHdf5ArrayOfValues(float const * values, uint64_t const * numValues, unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy * proxy) { - if (proxy == nullptr) { - proxy = getRepository()->getDefaultHdfProxy(); - if (proxy == nullptr) { - throw std::invalid_argument("A (default) HDF Proxy must be provided."); - } - } - const std::string datasetName = "values_patch" + std::to_string(getPatchCount()); - - // HDF - proxy->writeArrayNd(getHdfGroup(), - datasetName, - COMMON_NS::AbstractObject::numericalDatatypeEnum::FLOAT, - values, - numValues, - numArrayDimensions); - - pushBackRefToExistingFloatingPointDataset(proxy, getHdfGroup() + "/" + datasetName); + pushBackArrayOfValues(values, numValues, numArrayDimensions, proxy); } void AbstractValuesProperty::pushBackHdf5ArrayOfValues( @@ -1268,74 +1020,6 @@ void AbstractValuesProperty::pushBackHdf5Array3dOfValues( pushBackHdf5ArrayOfValues(datatype, valueCountPerDimension, 3, nullValue, proxy); } -void AbstractValuesProperty::getDoubleValuesOfPatch(uint64_t patchIndex, double * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - gsoap_resqml2_0_1::resqml20__PatchOfValues const* patch = static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]; - auto const* xmlArrayOfDouble = dynamic_cast(patch->Values); - if (xmlArrayOfDouble != nullptr) { - readArrayNdOfDoubleValues(xmlArrayOfDouble, values); - return; - } - else { - throw logic_error("Reading double values from a non double array is not supported."); - } - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArrayOfFloatingPoints = dynamic_cast(xmlValues); - if (xmlArrayOfFloatingPoints != nullptr) { - readArrayNdOfDoubleValues(xmlArrayOfFloatingPoints, values); - return; - } - else { - throw logic_error("Reading double values from a non floating point array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - -void AbstractValuesProperty::getFloatValuesOfPatch(uint64_t patchIndex, float * values) const -{ - cannotBePartial(); - if (patchIndex >= getPatchCount()) { - throw out_of_range("The values property patch is out of range"); - } - - if (gsoapProxy2_0_1 != nullptr) { - gsoap_resqml2_0_1::resqml20__PatchOfValues const* patch = static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]; - auto const* xmlArrayOfDouble = dynamic_cast(patch->Values); - if (xmlArrayOfDouble != nullptr) { - readArrayNdOfFloatValues(xmlArrayOfDouble, values); - return; - } - else { - throw logic_error("Reading float values from a non double array is not supported."); - } - } - else if (gsoapProxy2_3 != nullptr) { - gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch[patchIndex]; - auto const* xmlArrayOfFloatingPoints = dynamic_cast(xmlValues); - if (xmlArrayOfFloatingPoints != nullptr) { - readArrayNdOfFloatValues(xmlArrayOfFloatingPoints, values); - return; - } - else { - throw logic_error("Reading float values from a non floating point array is not supported."); - } - } - else { - throw logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); - } -} - void AbstractValuesProperty::getFloatValuesOfPatch( uint64_t patchIndex, float* values, @@ -1376,3 +1060,117 @@ void AbstractValuesProperty::getFloatValuesOf3dPatch( 3 ); } + +namespace { + + // the soap_new* methods are not dll exported preventing to use them in the H file. + + template std::enable_if_t, gsoap_eml2_3::eml23__IntegerArrayStatistics*> + template_createIntegerArrayStatisticsFrom(soap* ctx, const COMMON_NS::NumberArrayStatistics& source, size_t sourceIndex) { + gsoap_eml2_3::eml23__IntegerArrayStatistics* xmlStats = gsoap_eml2_3::soap_new_eml23__IntegerArrayStatistics(ctx); + if (source.getMinimumSize() > sourceIndex) { + xmlStats->MinimumValue = gsoap_eml2_3::soap_new_LONG64(ctx); + *xmlStats->MinimumValue = source.getMinimum(sourceIndex); + } + if (source.getMaximumSize() > sourceIndex) { + xmlStats->MaximumValue = gsoap_eml2_3::soap_new_LONG64(ctx); + *xmlStats->MaximumValue = source.getMaximum(sourceIndex); + } + if (source.getModePercentageSize() > sourceIndex) { + xmlStats->ModePercentage = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->ModePercentage = source.getModePercentage(sourceIndex); + } + if (source.getValidValueCountSize() > sourceIndex) { + xmlStats->ValidValueCount = gsoap_eml2_3::soap_new_LONG64(ctx); + *xmlStats->ValidValueCount = source.getValidValueCount(sourceIndex); + } + if (source.getMedianSize() > sourceIndex) { + xmlStats->ValuesMedian = gsoap_eml2_3::soap_new_LONG64(ctx); + *xmlStats->ValuesMedian = source.getMedian(sourceIndex); + } + if (source.getModeSize() > sourceIndex) { + xmlStats->ValuesMode = gsoap_eml2_3::soap_new_LONG64(ctx); + *xmlStats->ValuesMode = source.getMode(sourceIndex); + } + + return xmlStats; + } + + template std::enable_if_t, gsoap_eml2_3::eml23__FloatingPointArrayStatistics*> + template_createFloatingPointArrayStatisticsFrom(soap* ctx, const COMMON_NS::NumberArrayStatistics& source, size_t sourceIndex) { + gsoap_eml2_3::eml23__FloatingPointArrayStatistics* xmlStats = gsoap_eml2_3::soap_new_eml23__FloatingPointArrayStatistics(ctx); + if (source.getMinimumSize() > sourceIndex) { + xmlStats->MinimumValue = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->MinimumValue = source.getMinimum(sourceIndex); + } + if (source.getMaximumSize() > sourceIndex) { + xmlStats->MaximumValue = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->MaximumValue = source.getMaximum(sourceIndex); + } + if (source.getModePercentageSize() > sourceIndex) { + xmlStats->ModePercentage = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->ModePercentage = source.getModePercentage(sourceIndex); + } + if (source.getValidValueCountSize() > sourceIndex) { + xmlStats->ValidValueCount = gsoap_eml2_3::soap_new_LONG64(ctx); + *xmlStats->ValidValueCount = source.getValidValueCount(sourceIndex); + } + if (source.getMeanSize() > sourceIndex) { + xmlStats->ValuesMean = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->ValuesMean = source.getMean(sourceIndex); + } + if (source.getMedianSize() > sourceIndex) { + xmlStats->ValuesMedian = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->ValuesMedian = source.getMedian(sourceIndex); + } + if (source.getModeSize() > sourceIndex) { + xmlStats->ValuesMode = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->ValuesMode = source.getMode(sourceIndex); + } + if (source.getStandardDeviationSize() > sourceIndex) { + xmlStats->ValuesStandardDeviation = gsoap_eml2_3::soap_new_double(ctx); + *xmlStats->ValuesStandardDeviation = source.getStandardDeviation(sourceIndex); + } + return xmlStats; + } +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__IntegerArrayStatistics* AbstractValuesProperty::createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createIntegerArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__FloatingPointArrayStatistics* AbstractValuesProperty::createFloatingPointArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createFloatingPointArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} + +gsoap_eml2_3::eml23__FloatingPointArrayStatistics* AbstractValuesProperty::createFloatingPointArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index) { + return template_createFloatingPointArrayStatisticsFrom(gsoapProxy2_3->soap, stats, index); +} diff --git a/src/resqml2/AbstractValuesProperty.h b/src/resqml2/AbstractValuesProperty.h index 55ac8d830..7c7ca2aa3 100644 --- a/src/resqml2/AbstractValuesProperty.h +++ b/src/resqml2/AbstractValuesProperty.h @@ -20,6 +20,11 @@ under the License. #include "AbstractProperty.h" +#include +#include + +#include "../common/NumberArrayStatistics.h" + namespace RESQML2_NS { /** @brief Proxy class for an abstract values property. */ @@ -95,9 +100,211 @@ namespace RESQML2_NS */ DLL_IMPORT_OR_EXPORT std::string getFacetValue(uint64_t index) const; - //**************************** - //****** INTEGER ************* - //**************************** + /** + * @brief Adds a nd array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according to the topology + * of the representation it is based on. + * @param [in] proxy The HDF proxy where to write the property values. It must be + * already opened for writing and won't be closed in this method. If + * @c nullptr, then a default HDF proxy must be defined in the + * repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template std::enable_if_t, void> + pushBackArrayOfValues(const T* values, const uint64_t* numValues, uint32_t numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = (std::numeric_limits::max)()); + + template + void pushBackArrayOfValuesPlusStatistics(const T* values, const uint64_t* numValues, uint32_t numDimensionsInArray, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr) { + pushBackArrayOfValues(values, numValues, numDimensionsInArray, proxy, statistics.getNullValue()); + setStatistics(statistics, getPatchCount() - 1); + } + + /** + * @brief Adds a 1d array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according to the topology + * of the representation it is based on. + * @param valueCount The number of values to write. + * @param [in] proxy The HDF proxy where to write the property values. It must be + * already opened for writing and won't be closed in this method. If + * @c nullptr, then a default HDF proxy must be defined in the + * repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArray1dOfValues(const T* values, uint64_t valueCount, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = (std::numeric_limits::max)()) { + pushBackArrayOfValues(values, &valueCount, 1, proxy, nullValue); + } + template + void pushBackArray1dOfValuesPlusStatistics(const T* values, uint64_t valueCount, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr) { + pushBackArray1dOfValues(values, valueCount, proxy, statistics.getNullValue()); + setStatistics(statistics, getPatchCount() - 1); + } + + /** + * @brief Adds a 2d array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according to + * the topology of the representation it is based on. + * @param valueCountInFastestDim The number of values to write in the fastest + * dimension (mainly I dimension). + * @param valueCountInSlowestDim The number of values to write in the slowest + * dimension (mainly J dimension). + * @param [in] proxy The HDF proxy where to write the property values. It + * must be already opened for writing and won't be + * closed in this method. If @c nullptr, then a default + * HDF proxy must be defined in the repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArray2dOfValues(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = (std::numeric_limits::max)()) { + const uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; + pushBackArrayOfValues(values, valueCountPerDimension, 2, proxy, nullValue); + } + template + void pushBackArray2dOfValuesPlusStatistics(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr) { + pushBackArray2dOfValues(values, valueCountInFastestDim, valueCountInSlowestDim, proxy, statistics.getNullValue()); + setStatistics(statistics, getPatchCount() - 1); + } + + /** + * @brief Adds a 3d array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according the + * topology of the representation it is based on. + * @param valueCountInFastestDim The number of values to write in the fastest + * dimension (mainly I dimension). + * @param valueCountInMiddleDim The number of values to write in the middle dimension + * (mainly J dimension). + * @param valueCountInSlowestDim The number of values to write in the slowest + * dimension (mainly K dimension). + * @param [in] proxy The HDF proxy where to write the property values. It + * must be already opened for writing and won't be + * closed in this method. If @c nullptr, then a default + * HDF proxy must be defined in the repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArray3dOfValues(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = (std::numeric_limits::max)()) { + const uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; + pushBackArrayOfValues(values, valueCountPerDimension, 3, proxy, nullValue); + } + template + void pushBackArray3dOfValuesPlusStatistics(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr) { + pushBackArray3dOfValues(values, valueCountInFastestDim, valueCountInMiddleDim, valueCountInSlowestDim, proxy, statistics.getNullValue()); + setStatistics(statistics, getPatchCount() - 1); + } + + /** + * Gets all the values of a given patch of this instance. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0, nor a RESQML2.2 instance. + * @exception std::out_of_range If @p patchIndex is out of range. + * @exception std::invalid_argument If @p values is NULL. + * + * @param patchIndex The index of the patch we want the values from. + * @param [out] values Preallocated buffer for receiving the values. Size is + * getValuesCountOfPatch(patchIndex). + * @param forceStatisticsComputation Indicates if FESAPI must force computation of the statistics or if it only reads the provided statistics. + * + * @returns The statistics about the array including the null value. + */ + template + COMMON_NS::NumberArrayStatistics getArrayOfValuesOfPatch(uint64_t patchIndex, T* values, bool forceStatisticsComputation = false) const { + cannotBePartial(); + if (values == nullptr) { + throw std::invalid_argument("The array of values cannot be null"); + } + + T nullValue; + if (gsoapProxy2_0_1 != nullptr) { + auto const* xmlValues = static_cast(gsoapProxy2_0_1)->PatchOfValues[patchIndex]->Values; + if constexpr (std::is_integral_v) { + nullValue = readArrayNdOfIntegerValues(xmlValues, values); + } + else { + auto const* xmlArray = dynamic_cast(xmlValues); + if (xmlArray != nullptr) { + if constexpr (std::is_same_v) { + nullValue = std::numeric_limits::quiet_NaN(); + readArrayNdOfFloatValues(xmlArray, values); + } + else { + nullValue = std::numeric_limits::quiet_NaN(); + readArrayNdOfDoubleValues(xmlArray, values); + } + } + else { + throw std::logic_error("Reading floating point values from a non RESQML2.0.1 double array is not supported."); + } + } + } + else if (gsoapProxy2_3 != nullptr) { + gsoap_eml2_3::eml23__AbstractValueArray const* xmlValues = static_cast(gsoapProxy2_3)->ValuesForPatch.at(patchIndex); + if constexpr (std::is_integral_v) { + auto const* xmlArray = dynamic_cast(xmlValues); + if (xmlArray != nullptr) { + nullValue = readArrayNdOfIntegerValues(xmlArray, values); + } + else { + throw std::logic_error("Reading integer values from a non integer array is not supported."); + } + } + else { + auto const* xmlArray = dynamic_cast(xmlValues); + if (xmlArray != nullptr) { + if constexpr (std::is_same_v) { + nullValue = std::numeric_limits::quiet_NaN(); + readArrayNdOfFloatValues(xmlArray, values); + } + else { + nullValue = std::numeric_limits::quiet_NaN(); + readArrayNdOfDoubleValues(xmlArray, values); + } + } + else { + throw std::logic_error("Reading floating point values from a non RESQML2.2 double array is not supported."); + } + } + } + else { + throw std::logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); + } + + if (forceStatisticsComputation) { + return COMMON_NS::NumberArrayStatistics(values, getValuesCountOfPatch(patchIndex), getValueCountPerIndexableElement(), nullValue); + } + + return getStatistics(patchIndex); + } + + template std::enable_if_t, COMMON_NS::NumberArrayStatistics> + getStatistics(uint64_t patchIndex) const; /** * @brief Adds an array constant integer values to the property values. @@ -125,29 +332,31 @@ namespace RESQML2_NS * repository. * @param nullValue The null value. */ - DLL_IMPORT_OR_EXPORT void pushBackInt64Hdf5Array1dOfValues(const int64_t * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { - pushBackInt64Hdf5ArrayOfValues(values, &valueCount, 1, proxy, nullValue); - } + [[deprecated("Use pushBackArray1dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt64Hdf5Array1dOfValues(const int64_t* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** * Adds a 1d array of explicit integer values to the property values. * * @copydetails pushBackInt64Hdf5Array1dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt32Hdf5Array1dOfValues(const int * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int nullValue); + [[deprecated("Use pushBackArray1dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt32Hdf5Array1dOfValues(const int* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** * Adds a 1d array of explicit short values to the property values. * * @copydetails pushBackInt64Hdf5Array1dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt16Hdf5Array1dOfValues(const short * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, short nullValue); + [[deprecated("Use pushBackArray1dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt16Hdf5Array1dOfValues(const short* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** * Adds a 1d array of explicit int8_t values to the property values. * * @copydetails pushBackInt64Hdf5Array1dOfValues */ + [[deprecated("Use pushBackArray1dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackInt8Hdf5Array1dOfValues(const int8_t* values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** @@ -169,38 +378,40 @@ namespace RESQML2_NS * HDF proxy must be defined in the repository. * @param nullValue The null value. */ - DLL_IMPORT_OR_EXPORT void pushBackInt64Hdf5Array2dOfValues(const int64_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { - const uint64_t valueCountPerDimension[2] = { valueCountInSlowestDim, valueCountInFastestDim }; - pushBackInt64Hdf5ArrayOfValues(values, valueCountPerDimension, 2, proxy, nullValue); - } + [[deprecated("Use pushBackArray2dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt64Hdf5Array2dOfValues(const int64_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** * Adds a 2d array of explicit integer values to the property values. * * @copydetails pushBackInt64Hdf5Array2dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt32Hdf5Array2dOfValues(const int * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue); + [[deprecated("Use pushBackArray2dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt32Hdf5Array2dOfValues(const int* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** * Adds a 2d array of explicit short values to the property values. * * @copydetails pushBackInt64Hdf5Array2dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt16Hdf5Array2dOfValues(const short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue); + [[deprecated("Use pushBackArray2dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt16Hdf5Array2dOfValues(const short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** * Adds a 2d array of explicit unsigned short values to the property values. * * @copydetails pushBackInt64Hdf5Array2dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackUInt16Hdf5Array2dOfValues(const unsigned short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); + [[deprecated("Use pushBackArray2dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackUInt16Hdf5Array2dOfValues(const unsigned short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); /** * Adds a 2d array of explicit int8_t values to the property values. * * @copydetails pushBackInt64Hdf5Array2dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt8Hdf5Array2dOfValues(const int8_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); + [[deprecated("Use pushBackArray2dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt8Hdf5Array2dOfValues(const int8_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** * @brief Adds a 3d array of explicit int values to the property values. @@ -223,38 +434,39 @@ namespace RESQML2_NS * HDF proxy must be defined in the repository. * @param nullValue The null value. */ - DLL_IMPORT_OR_EXPORT void pushBackInt64Hdf5Array3dOfValues(const int64_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue) { - const uint64_t valueCountPerDimension[3] = { valueCountInSlowestDim, valueCountInMiddleDim, valueCountInFastestDim }; - pushBackInt64Hdf5ArrayOfValues(values, valueCountPerDimension, 3, proxy, nullValue); - } + [[deprecated("Use pushBackArray3dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt64Hdf5Array3dOfValues(const int64_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** * Adds a 3d array of explicit integer values to the property values. * * @copydetails pushBackInt64Hdf5Array3dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt32Hdf5Array3dOfValues(const int * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue); + [[deprecated("Use pushBackArray3dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt32Hdf5Array3dOfValues(const int* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** * Adds a 3d array of explicit short values to the property values. * * @copydetails pushBackInt64Hdf5Array3dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt16Hdf5Array3dOfValues(const short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue); + DLL_IMPORT_OR_EXPORT void pushBackInt16Hdf5Array3dOfValues(const short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** * Adds a 3d array of explicit unsigned short values to the property values. * * @copydetails pushBackInt64Hdf5Array3dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackUInt16Hdf5Array3dOfValues(const unsigned short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); + [[deprecated("Use pushBackArray3dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackUInt16Hdf5Array3dOfValues(const unsigned short* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); /** * Adds a 3d array of explicit int8_t values to the property values. * * @copydetails pushBackInt64Hdf5Array3dOfValues */ - DLL_IMPORT_OR_EXPORT void pushBackInt8Hdf5Array3dOfValues(const int8_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); + [[deprecated("Use pushBackArray3dOfValues instead.")]] + DLL_IMPORT_OR_EXPORT void pushBackInt8Hdf5Array3dOfValues(const int8_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** * @brief Adds an nd array of explicit int values to the property values. @@ -274,35 +486,40 @@ namespace RESQML2_NS * be defined in the repository. * @param nullValue The null value. */ - DLL_IMPORT_OR_EXPORT virtual void pushBackInt64Hdf5ArrayOfValues(const int64_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); + [[deprecated("Use pushBackArrayOfValues instead.")]] + DLL_IMPORT_OR_EXPORT virtual void pushBackInt64Hdf5ArrayOfValues(const int64_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** * Adds an nd array of explicit integer values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - DLL_IMPORT_OR_EXPORT virtual void pushBackInt32Hdf5ArrayOfValues(const int * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int nullValue); + [[deprecated("Use pushBackArrayOfValues instead.")]] + DLL_IMPORT_OR_EXPORT virtual void pushBackInt32Hdf5ArrayOfValues(const int* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** * Adds an nd array of explicit short values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - DLL_IMPORT_OR_EXPORT virtual void pushBackInt16Hdf5ArrayOfValues(const short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, short nullValue); + [[deprecated("Use pushBackArrayOfValues instead.")]] + DLL_IMPORT_OR_EXPORT virtual void pushBackInt16Hdf5ArrayOfValues(const short* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** * Adds an nd array of explicit unsigned short values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - DLL_IMPORT_OR_EXPORT virtual void pushBackUInt16Hdf5ArrayOfValues(const unsigned short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); + [[deprecated("Use pushBackArrayOfValues instead.")]] + DLL_IMPORT_OR_EXPORT virtual void pushBackUInt16Hdf5ArrayOfValues(const unsigned short* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); /** * Adds an nd array of explicit int8_t values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - DLL_IMPORT_OR_EXPORT virtual void pushBackInt8Hdf5ArrayOfValues(const int8_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); + [[deprecated("Use pushBackArrayOfValues instead.")]] + DLL_IMPORT_OR_EXPORT virtual void pushBackInt8Hdf5ArrayOfValues(const int8_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** * Pushes back a new patch of values for this property where the values have not to be written @@ -383,117 +600,44 @@ namespace RESQML2_NS */ DLL_IMPORT_OR_EXPORT int64_t getNullValueOfPatch(uint64_t patchIndex) const; - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 64 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT int64_t getInt64ValuesOfPatch(uint64_t patchIndex, int64_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT int64_t getInt64ValuesOfPatch(uint64_t patchIndex, int64_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 64 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT uint64_t getUInt64ValuesOfPatch(uint64_t patchIndex, uint64_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT uint64_t getUInt64ValuesOfPatch(uint64_t patchIndex, uint64_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 32 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT int32_t getInt32ValuesOfPatch(uint64_t patchIndex, int32_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT int32_t getInt32ValuesOfPatch(uint64_t patchIndex, int32_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 32 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT uint32_t getUInt32ValuesOfPatch(uint64_t patchIndex, uint32_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT uint32_t getUInt32ValuesOfPatch(uint64_t patchIndex, uint32_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 16 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT int16_t getInt16ValuesOfPatch(uint64_t patchIndex, int16_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT int16_t getInt16ValuesOfPatch(uint64_t patchIndex, int16_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 16 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT uint16_t getUInt16ValuesOfPatch(uint64_t patchIndex, uint16_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT uint16_t getUInt16ValuesOfPatch(uint64_t patchIndex, uint16_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 8 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT int8_t getInt8ValuesOfPatch(uint64_t patchIndex, int8_t* values) const; + DLL_IMPORT_OR_EXPORT int8_t getInt8ValuesOfPatch(uint64_t patchIndex, int8_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 8 bits integer - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - DLL_IMPORT_OR_EXPORT uint8_t getUInt8ValuesOfPatch(uint64_t patchIndex, uint8_t* values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT uint8_t getUInt8ValuesOfPatch(uint64_t patchIndex, uint8_t* values) const { + return getArrayOfValuesOfPatch(patchIndex, values).getNullValue(); + } //*********************************** //*** Writing with hyperslabbing ***** @@ -1343,6 +1487,7 @@ namespace RESQML2_NS * method. If @c nullptr (default value), then a default HDF proxy * must be defined in the repository. */ + [[deprecated("Use pushBackArray1dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackDoubleHdf5Array1dOfValues(const double * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1363,6 +1508,7 @@ namespace RESQML2_NS * (default value), then a default HDF proxy must be * defined in the repository. */ + [[deprecated("Use pushBackArray2dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackDoubleHdf5Array2dOfValues(const double * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1385,6 +1531,7 @@ namespace RESQML2_NS * (default value), then a default HDF proxy must be * defined in the repository. */ + [[deprecated("Use pushBackArray3dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackDoubleHdf5Array3dOfValues(const double * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1404,6 +1551,7 @@ namespace RESQML2_NS * then a default HDF proxy must be defined in the * repository. */ + [[deprecated("Use pushBackArrayOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackDoubleHdf5ArrayOfValues(double const * values, uint64_t const * numValues, unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1411,6 +1559,7 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5Array1dOfValues */ + [[deprecated("Use pushBackArray1dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackFloatHdf5Array1dOfValues(const float * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1418,6 +1567,7 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5Array2dOfValues */ + [[deprecated("Use pushBackArray2dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackFloatHdf5Array2dOfValues(const float * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1425,6 +1575,7 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5Array3dOfValues */ + [[deprecated("Use pushBackArray3dOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackFloatHdf5Array3dOfValues(const float * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1432,6 +1583,7 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5ArrayOfValues */ + [[deprecated("Use pushBackArrayOfValues instead.")]] DLL_IMPORT_OR_EXPORT void pushBackFloatHdf5ArrayOfValues(float const * values, uint64_t const * numValues, unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -1454,29 +1606,15 @@ namespace RESQML2_NS */ DLL_IMPORT_OR_EXPORT virtual std::string pushBackRefToExistingFloatingPointDataset(EML2_NS::AbstractHdfProxy* proxy, const std::string & datasetName = ""); - /** - * Gets all the values of a particular patch of this instance which are supposed to be double - * ones. - * - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - */ - DLL_IMPORT_OR_EXPORT void getDoubleValuesOfPatch(uint64_t patchIndex, double * values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT void getDoubleValuesOfPatch(uint64_t patchIndex, double * values) const { + getArrayOfValuesOfPatch(patchIndex, values); + } - /** - * Gets all the values of a particular patch of this instance which are supposed to be float - * ones. - * - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - */ - DLL_IMPORT_OR_EXPORT void getFloatValuesOfPatch(uint64_t patchIndex, float * values) const; + [[deprecated("Use getArrayOfValuesOfPatch instead.")]] + DLL_IMPORT_OR_EXPORT void getFloatValuesOfPatch(uint64_t patchIndex, float * values) const { + getArrayOfValuesOfPatch(patchIndex, values); + } //****************************************** //*** For FLOATING POINT hyperslabbing ***** @@ -1627,5 +1765,206 @@ namespace RESQML2_NS unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy* proxy = nullptr, uint64_t patchIndex = (std::numeric_limits::max)()); + + // Need to dll export because it is called in a template implementation + DLL_IMPORT_OR_EXPORT void pushBackArrayOfValues(const void* values, COMMON_NS::AbstractObject::numericalDatatypeEnum numericalDatatype, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); + + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getInt8Statistics(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if (nullValue > (std::numeric_limits::max)() || nullValue < (std::numeric_limits::min)()) { + nullValue = (std::numeric_limits::max)(); + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getUInt8Statistics(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if (nullValue > (std::numeric_limits::max)() || nullValue < 0) { + nullValue = (std::numeric_limits::max)(); + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getInt16Statistics(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if (nullValue > (std::numeric_limits::max)() || nullValue < (std::numeric_limits::min)()) { + nullValue = (std::numeric_limits::max)(); + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getUInt16Statistics(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if (nullValue > (std::numeric_limits::max)() || nullValue < 0) { + nullValue = (std::numeric_limits::max)(); + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getInt32Statistics(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if (nullValue > (std::numeric_limits::max)() || nullValue < (std::numeric_limits::min)()) { + nullValue = (std::numeric_limits::max)(); + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getUInt32Statistics(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if (nullValue > (std::numeric_limits::max)() || nullValue < 0) { + nullValue = (std::numeric_limits::max)(); + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getInt64Statistics(uint64_t patchIndex) const { + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(getNullValueOfPatch(patchIndex)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getUInt64Statistics(uint64_t patchIndex) const { + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(getNullValueOfPatch(patchIndex)); + return result; + } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getFloatStatistics(uint64_t) const { return COMMON_NS::NumberArrayStatistics(); } + DLL_IMPORT_OR_EXPORT virtual COMMON_NS::NumberArrayStatistics getDoubleStatistics(uint64_t) const { return COMMON_NS::NumberArrayStatistics(); } + + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IntegerArrayStatistics* createIntegerArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__FloatingPointArrayStatistics* createFloatingPointArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__FloatingPointArrayStatistics* createFloatingPointArrayStatisticsFrom(const COMMON_NS::NumberArrayStatistics& stats, size_t index); + + template + void setStatistics(const COMMON_NS::NumberArrayStatistics& stats, size_t patchIndex) { + cannotBePartial(); + + if (gsoapProxy2_0_1 != nullptr) { + if (gsoapProxy2_0_1->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__obj_USCOREContinuousProperty) { + gsoap_resqml2_0_1::_resqml20__ContinuousProperty* prop = static_cast(gsoapProxy2_0_1); + for (size_t i = 0; i < stats.getMinimumSize(); ++i) { + const auto minStat = stats.getMinimum(i); + if (prop->MinimumValue.size() > i) { + if (minStat == minStat && prop->MinimumValue[i] > minStat) { + prop->MinimumValue[i] = minStat; + } + } + else { + prop->MinimumValue.push_back(minStat); + } + } + for (size_t i = 0; i < stats.getMaximumSize(); ++i) { + const auto maxStat = stats.getMaximum(i); + if (prop->MaximumValue.size() > i) { + if (maxStat == maxStat && prop->MaximumValue[i] < maxStat) { + prop->MaximumValue[i] = maxStat; + } + } + else { + prop->MaximumValue.push_back(maxStat); + } + } + } + else if (gsoapProxy2_0_1->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__obj_USCOREDiscreteProperty) { + gsoap_resqml2_0_1::_resqml20__DiscreteProperty* prop = static_cast(gsoapProxy2_0_1); + for (size_t i = 0; i < stats.getMinimumSize(); ++i) { + const auto minStat = stats.getMinimum(i); + if (prop->MinimumValue.size() > i) { + if (minStat == minStat && prop->MinimumValue[i] > minStat) { + prop->MinimumValue[i] = minStat; + } + } + else { + prop->MinimumValue.push_back(minStat); + } + } + for (size_t i = 0; i < stats.getMaximumSize(); ++i) { + const auto maxStat = stats.getMaximum(i); + if (prop->MaximumValue.size() > i) { + if (maxStat == maxStat && prop->MaximumValue[i] < maxStat) { + prop->MaximumValue[i] = maxStat; + } + } + else { + prop->MaximumValue.push_back(maxStat); + } + } + } + else { + throw std::invalid_argument("In RESQML 2.0.1, only continuous and discrete properties can transfer only minimum and maximum values"); + } + } + else if (gsoapProxy2_3 != nullptr) { + const auto valuePerIndexableElement = getValueCountPerIndexableElement(); + gsoap_eml2_3::resqml22__AbstractValuesProperty* prop = static_cast(gsoapProxy2_3); + if (auto* integerArray = dynamic_cast(prop->ValuesForPatch.at(patchIndex))) { + if constexpr (std::is_integral_v) { + integerArray->Statistics.clear(); + for (size_t i = 0; i < valuePerIndexableElement; ++i) { + integerArray->Statistics.push_back(createIntegerArrayStatisticsFrom(stats, i)); + } + } + } + else if (auto* floatingPointArray = dynamic_cast(prop->ValuesForPatch.at(patchIndex))) { + if constexpr (std::is_floating_point_v) { + floatingPointArray->Statistics.clear(); + for (size_t i = 0; i < valuePerIndexableElement; ++i) { + floatingPointArray->Statistics.push_back(createFloatingPointArrayStatisticsFrom(stats, i)); + } + } + } + else { + throw std::invalid_argument("In RESQML 2.2, only floating point and integer property array of values can haev statistics"); + } + } + else { + throw std::logic_error("Only RESQML 2.2 and 2.0.1 are supported for now."); + } + } }; + + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const int8_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const uint8_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint8_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const int16_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int16_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const uint16_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint16_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const int32_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int32_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const uint32_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint32_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const int64_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const uint64_t* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, uint64_t nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const float* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, float nullValue); + template<> DLL_IMPORT_OR_EXPORT void AbstractValuesProperty::pushBackArrayOfValues(const double* values, const uint64_t* numValues, unsigned int numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy, double nullValue); + + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; + template<> DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics AbstractValuesProperty::getStatistics(uint64_t patchIndex) const; } diff --git a/src/resqml2/CommentProperty.cpp b/src/resqml2/CommentProperty.cpp index 866394e69..6a0b240f7 100644 --- a/src/resqml2/CommentProperty.cpp +++ b/src/resqml2/CommentProperty.cpp @@ -73,7 +73,7 @@ void CommentProperty::pushBackStringHdf5ArrayOfValues(const std::vector CommentProperty::getStringValuesOfPatch(unsigned int patchIndex) +std::vector CommentProperty::getStringValuesOfPatch(uint64_t patchIndex) { std::vector result; diff --git a/src/resqml2/CommentProperty.h b/src/resqml2/CommentProperty.h index 54ca45b88..845f9fb92 100644 --- a/src/resqml2/CommentProperty.h +++ b/src/resqml2/CommentProperty.h @@ -80,7 +80,7 @@ namespace RESQML2_NS * * @returns The string values of the patch. */ - DLL_IMPORT_OR_EXPORT std::vector getStringValuesOfPatch(unsigned int patchIndex); + DLL_IMPORT_OR_EXPORT std::vector getStringValuesOfPatch(uint64_t patchIndex); /** The standard XML tag without XML namespace for serializing this data object */ DLL_IMPORT_OR_EXPORT static constexpr char const* XML_TAG = "CommentProperty"; @@ -112,6 +112,6 @@ namespace RESQML2_NS */ CommentProperty(gsoap_eml2_3::_resqml22__CommentProperty* fromGsoap) : AbstractValuesProperty(fromGsoap) {} - virtual EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const = 0; + virtual EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const = 0; }; } diff --git a/src/resqml2/ContinuousProperty.cpp b/src/resqml2/ContinuousProperty.cpp index b5cc765f4..d19f545b0 100644 --- a/src/resqml2/ContinuousProperty.cpp +++ b/src/resqml2/ContinuousProperty.cpp @@ -69,7 +69,7 @@ void ContinuousProperty::pushBackDoubleHdf5ArrayOfValues(double const * values, (minimumValue != nullptr && maximumValue == nullptr)) { throw std::invalid_argument("You cannot set the minimum value without the maximum value and viceversa."); } - AbstractValuesProperty::pushBackDoubleHdf5ArrayOfValues(values, numValues, numArrayDimensions, proxy); + AbstractValuesProperty::pushBackArrayOfValues(values, numValues, numArrayDimensions, proxy); setPropertyMinMax(values, numValues, numArrayDimensions, minimumValue, maximumValue); } @@ -166,7 +166,7 @@ void ContinuousProperty::pushBackFloatHdf5ArrayOfValues(float const * values, ui (minimumValue != nullptr && maximumValue == nullptr)) { throw std::invalid_argument("You cannot set the minimum value without the maximum value and viceversa."); } - AbstractValuesProperty::pushBackFloatHdf5ArrayOfValues(values, numValues, numArrayDimensions, proxy); + AbstractValuesProperty::pushBackArrayOfValues(values, numValues, numArrayDimensions, proxy); setPropertyMinMax(values, numValues, numArrayDimensions, minimumValue, maximumValue); } diff --git a/src/resqml2/ContinuousProperty.h b/src/resqml2/ContinuousProperty.h index a63816d18..45f1d713b 100644 --- a/src/resqml2/ContinuousProperty.h +++ b/src/resqml2/ContinuousProperty.h @@ -230,7 +230,7 @@ namespace RESQML2_NS * greater than @p 0 for a non vector property or greater than the vector size for a * vector property). */ - DLL_IMPORT_OR_EXPORT virtual double getMinimumValue(unsigned int index = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual double getMinimumValue(uint64_t index = 0) const = 0; /** * @brief Gets the maximum value of a non vector property or the maximum value of one given @@ -245,7 +245,7 @@ namespace RESQML2_NS * greater than @p 0 for a non vector property or greater than the vector size for a * vector property). */ - DLL_IMPORT_OR_EXPORT virtual double getMaximumValue(unsigned int index = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual double getMaximumValue(uint64_t index = 0) const = 0; /** * @brief Sets the minimum value of a non vector property or the minimum value of one given @@ -256,7 +256,7 @@ namespace RESQML2_NS * case) or zero-based index of the vector value for which we want to set the * minimum value (vector property case). */ - DLL_IMPORT_OR_EXPORT virtual void setMinimumValue(double value, unsigned int index = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual void setMinimumValue(double value, uint64_t index = 0) const = 0; /** * @brief Sets the maximum value of a non vector property or the maximum value of one given @@ -267,7 +267,7 @@ namespace RESQML2_NS * case) or zero-based index of the vector value for which we want to set the * maximum value (vector property case). */ - DLL_IMPORT_OR_EXPORT virtual void setMaximumValue(double value, unsigned int index = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual void setMaximumValue(double value, uint64_t index = 0) const = 0; //*************************** //*** For hyperslabbing ***** @@ -583,34 +583,38 @@ namespace RESQML2_NS unsigned int numArrayDimensions, T * minimumValue = nullptr, T * maximumValue = nullptr) { - const uint64_t elementCount = getElementCountPerValue(); + const uint64_t valuePerIndexableElement = getValueCountPerIndexableElement(); // Some minimum and maximum values are given : No need to compute them. if (minimumValue != nullptr) { - for (unsigned int propIndex = 0; propIndex < elementCount; ++propIndex) { - setMinimumValue(getMinimumValueSize() > propIndex ? fmin(getMinimumValue(propIndex), minimumValue[propIndex]) : minimumValue[propIndex], propIndex); + for (uint64_t valuePerIndexableElementIndex = 0; valuePerIndexableElementIndex < valuePerIndexableElement; ++valuePerIndexableElementIndex) { + setMinimumValue(getMinimumValueSize() > valuePerIndexableElementIndex + ? fmin(getMinimumValue(valuePerIndexableElementIndex), minimumValue[valuePerIndexableElementIndex]) + : minimumValue[valuePerIndexableElementIndex], valuePerIndexableElementIndex); } } if (maximumValue != nullptr) { - for (unsigned int propIndex = 0; propIndex < elementCount; ++propIndex) { - setMaximumValue(getMaximumValueSize() > propIndex ? fmax(getMaximumValue(propIndex), maximumValue[propIndex]) : maximumValue[propIndex], propIndex); + for (uint64_t valuePerIndexableElementIndex = 0; valuePerIndexableElementIndex < valuePerIndexableElement; ++valuePerIndexableElementIndex) { + setMaximumValue(getMaximumValueSize() > valuePerIndexableElementIndex + ? fmax(getMaximumValue(valuePerIndexableElementIndex), maximumValue[valuePerIndexableElementIndex]) + : maximumValue[valuePerIndexableElementIndex], valuePerIndexableElementIndex); } } if (minimumValue != nullptr && maximumValue != nullptr) return; // No need to compute max or min value uint64_t nValues = numValuesInEachDimension[0]; //If count > 1, the last (fastest) dimension has the number of properties per indexable element of the representation. - for (unsigned int dim = 1; dim < (elementCount == 1 ? numArrayDimensions : numArrayDimensions - 1); ++dim) { + for (uint64_t dim = 1; dim < (valuePerIndexableElement == 1 ? numArrayDimensions : numArrayDimensions - 1); ++dim) { nValues *= numValuesInEachDimension[dim]; } // Minimum or maximum values are not given : Need to compute them. - std::unique_ptr allComputedMin(new T[elementCount]); - std::unique_ptr allComputedMax(new T[elementCount]); - for (size_t propIndex = 0; propIndex < elementCount; ++propIndex) { + std::unique_ptr allComputedMin(new T[valuePerIndexableElement]); + std::unique_ptr allComputedMax(new T[valuePerIndexableElement]); + for (size_t propIndex = 0; propIndex < valuePerIndexableElement; ++propIndex) { allComputedMin[propIndex] = std::numeric_limits::quiet_NaN(); allComputedMax[propIndex] = std::numeric_limits::quiet_NaN(); - for (size_t i = 0; i < nValues; i += elementCount) { + for (size_t i = 0; i < nValues; i += valuePerIndexableElement) { allComputedMin[propIndex] = fmin(allComputedMin[propIndex], values[i]); allComputedMax[propIndex] = fmax(allComputedMax[propIndex], values[i]); } diff --git a/src/resqml2/DiscreteProperty.cpp b/src/resqml2/DiscreteProperty.cpp index c121bd536..5d897e7c6 100644 --- a/src/resqml2/DiscreteProperty.cpp +++ b/src/resqml2/DiscreteProperty.cpp @@ -317,16 +317,16 @@ void DiscreteProperty::pushBackHdf5ArrayOfValues( AbstractValuesProperty::pushBackHdf5ArrayOfValues(datatype, numValues, numArrayDimensions, nullValue, proxy); if (minimumValue != nullptr && maximumValue != nullptr) { - const uint64_t elementCount = getElementCountPerValue(); - for (unsigned int propIndex = 0; propIndex < elementCount; ++propIndex) { - setMinimumValue(getMinimumValueSize() > propIndex - ? (getMinimumValue(propIndex) > minimumValue[propIndex] ? minimumValue[propIndex] : getMinimumValue(propIndex)) - : minimumValue[propIndex] - , propIndex); - setMaximumValue(getMaximumValueSize() > propIndex - ? (getMaximumValue(propIndex) > maximumValue[propIndex] ? maximumValue[propIndex] : getMaximumValue(propIndex)) - : maximumValue[propIndex] - , propIndex); + const uint64_t valuePerIndexableElement = getValueCountPerIndexableElement(); + for (uint64_t valuePerIndexableElementIndex = 0; valuePerIndexableElementIndex < valuePerIndexableElement; ++valuePerIndexableElementIndex) { + setMinimumValue(getMinimumValueSize() > valuePerIndexableElementIndex + ? (getMinimumValue(valuePerIndexableElementIndex) > minimumValue[valuePerIndexableElementIndex] ? minimumValue[valuePerIndexableElementIndex] : getMinimumValue(valuePerIndexableElementIndex)) + : minimumValue[valuePerIndexableElementIndex] + , valuePerIndexableElementIndex); + setMaximumValue(getMaximumValueSize() > valuePerIndexableElementIndex + ? (getMaximumValue(valuePerIndexableElementIndex) > maximumValue[valuePerIndexableElementIndex] ? maximumValue[valuePerIndexableElementIndex] : getMaximumValue(valuePerIndexableElementIndex)) + : maximumValue[valuePerIndexableElementIndex] + , valuePerIndexableElementIndex); } } } @@ -379,30 +379,30 @@ void DiscreteProperty::setValuesOfInt64Hdf5ArrayOfValues( offsetValues, numArrayDimensions, proxy, patchIndex); if (computeMinMax) { - const uint64_t elementCount = getElementCountPerValue(); + const uint64_t valuePerIndexableElement = getValueCountPerIndexableElement(); uint64_t nValues = numValues[0]; //If count > 1, the last (fastest) dimension has the number of properties per indexable element of the representation. - for (unsigned int dim = 1; dim < (elementCount == 1 ? numArrayDimensions : numArrayDimensions - 1); ++dim) { + for (uint64_t dim = 1; dim < (valuePerIndexableElement == 1 ? numArrayDimensions : numArrayDimensions - 1); ++dim) { nValues *= numValues[dim]; } - while (getMinimumValueSize() < elementCount) { + while (getMinimumValueSize() < valuePerIndexableElement) { setMinimumValue((std::numeric_limits::max)(), getMinimumValueSize()); } - while (getMaximumValueSize() < elementCount) { + while (getMaximumValueSize() < valuePerIndexableElement) { setMaximumValue((std::numeric_limits::min)(), getMaximumValueSize()); } int64_t nullValue = getNullValue(patchIndex); - for (unsigned int propIndex = 0; propIndex < elementCount; ++propIndex) { - for (size_t i = 0; i < nValues; i += elementCount) { + for (uint64_t valuePerIndexableElementIndex = 0; valuePerIndexableElementIndex < valuePerIndexableElement; ++valuePerIndexableElementIndex) { + for (size_t i = 0; i < nValues; i += valuePerIndexableElement) { if (values[i] == nullValue) { continue; } - if (getMinimumValue(propIndex) > values[i]) { - setMinimumValue(values[i], propIndex); + if (getMinimumValue(valuePerIndexableElementIndex) > values[i]) { + setMinimumValue(values[i], valuePerIndexableElementIndex); } - if (getMaximumValue(propIndex) < values[i]) { - setMaximumValue(values[i], propIndex); + if (getMaximumValue(valuePerIndexableElementIndex) < values[i]) { + setMaximumValue(values[i], valuePerIndexableElementIndex); } } } @@ -422,30 +422,30 @@ void DiscreteProperty::setValuesOfInt32Hdf5ArrayOfValues( offsetValues, numArrayDimensions, proxy, patchIndex); if (computeMinMax) { - const uint64_t elementCount = getElementCountPerValue(); + const uint64_t valuePerIndexableElement = getValueCountPerIndexableElement(); uint64_t nValues = numValues[0]; //If count > 1, the last (fastest) dimension has the number of properties per indexable element of the representation. - for (unsigned int dim = 1; dim < (elementCount == 1 ? numArrayDimensions : numArrayDimensions - 1); ++dim) { + for (uint64_t dim = 1; dim < (valuePerIndexableElement == 1 ? numArrayDimensions : numArrayDimensions - 1); ++dim) { nValues *= numValues[dim]; } - while (getMinimumValueSize() < elementCount) { + while (getMinimumValueSize() < valuePerIndexableElement) { setMinimumValue((std::numeric_limits::max)(), getMinimumValueSize()); } - while (getMaximumValueSize() < elementCount) { + while (getMaximumValueSize() < valuePerIndexableElement) { setMaximumValue((std::numeric_limits::min)(), getMaximumValueSize()); } int64_t nullValue = getNullValue(patchIndex); - for (unsigned int propIndex = 0; propIndex < elementCount; ++propIndex) { - for (size_t i = 0; i < nValues; i += elementCount) { + for (uint64_t valuePerIndexableElementIndex = 0; valuePerIndexableElementIndex < valuePerIndexableElement; ++valuePerIndexableElementIndex) { + for (size_t i = 0; i < nValues; i += valuePerIndexableElement) { if (values[i] == nullValue) { continue; } - if (getMinimumValue(propIndex) > values[i]) { - setMinimumValue(values[i], propIndex); + if (getMinimumValue(valuePerIndexableElementIndex) > values[i]) { + setMinimumValue(values[i], valuePerIndexableElementIndex); } - if (getMaximumValue(propIndex) < values[i]) { - setMaximumValue(values[i], propIndex); + if (getMaximumValue(valuePerIndexableElementIndex) < values[i]) { + setMaximumValue(values[i], valuePerIndexableElementIndex); } } } diff --git a/src/resqml2/Grid2dRepresentation.cpp b/src/resqml2/Grid2dRepresentation.cpp index 80d72d533..cb46ceb03 100644 --- a/src/resqml2/Grid2dRepresentation.cpp +++ b/src/resqml2/Grid2dRepresentation.cpp @@ -25,7 +25,7 @@ using namespace RESQML2_NS; const char* Grid2dRepresentation::XML_TAG = "Grid2dRepresentation"; -uint64_t Grid2dRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t Grid2dRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch."); @@ -34,7 +34,7 @@ uint64_t Grid2dRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) return getNodeCountAlongIAxis() * getNodeCountAlongJAxis(); } -void Grid2dRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double *) const +void Grid2dRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double *) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch."); diff --git a/src/resqml2/Grid2dRepresentation.h b/src/resqml2/Grid2dRepresentation.h index a3cd522af..b3636c0fb 100644 --- a/src/resqml2/Grid2dRepresentation.h +++ b/src/resqml2/Grid2dRepresentation.h @@ -43,10 +43,10 @@ namespace RESQML2_NS */ DLL_IMPORT_OR_EXPORT virtual uint64_t getNodeCountAlongJAxis() const = 0; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** Please do note use: please compute x and y values with the lattice information. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; /** * Gets all the z values of this 2d grid representation. The z values are given in the local CRS. diff --git a/src/resqml2/GridConnectionSetRepresentation.cpp b/src/resqml2/GridConnectionSetRepresentation.cpp index c380998b9..297d3dbad 100644 --- a/src/resqml2/GridConnectionSetRepresentation.cpp +++ b/src/resqml2/GridConnectionSetRepresentation.cpp @@ -122,12 +122,12 @@ void GridConnectionSetRepresentation::setLocalFacePerCellIndexPairs(int const* l setLocalFacePerCellIndexPairsUsingExistingDataset(getHdfGroup() + "/LocalFacePerCellIndexPairs", nullValue, proxy); } -uint64_t GridConnectionSetRepresentation::getXyzPointCountOfPatch(unsigned int) const +uint64_t GridConnectionSetRepresentation::getXyzPointCountOfPatch(uint64_t) const { throw logic_error("Not implemented yet"); } -void GridConnectionSetRepresentation::getXyzPointsOfPatch(unsigned int, double *) const +void GridConnectionSetRepresentation::getXyzPointsOfPatch(uint64_t, double *) const { throw logic_error("Not implemented yet"); } diff --git a/src/resqml2/GridConnectionSetRepresentation.h b/src/resqml2/GridConnectionSetRepresentation.h index c41e4e980..e4bfdd873 100644 --- a/src/resqml2/GridConnectionSetRepresentation.h +++ b/src/resqml2/GridConnectionSetRepresentation.h @@ -476,10 +476,10 @@ namespace RESQML2_NS DLL_IMPORT_OR_EXPORT virtual COMMON_NS::DataObjectReference getSupportingGridRepresentationDor(uint64_t index) const = 0; /** Please do note use: not implemented yet. */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const override; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const override; /** Please do note use: not implemented yet. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const override; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const override; DLL_IMPORT_OR_EXPORT uint64_t getPatchCount() const override {return 1;} diff --git a/src/resqml2/IjkGridLatticeRepresentation.cpp b/src/resqml2/IjkGridLatticeRepresentation.cpp index b9ee0fc7a..b694fd05e 100644 --- a/src/resqml2/IjkGridLatticeRepresentation.cpp +++ b/src/resqml2/IjkGridLatticeRepresentation.cpp @@ -69,7 +69,7 @@ bool IjkGridLatticeRepresentation::isAFaciesCube() const return getInterpretation() != nullptr && getInterpretation()->getInterpretedFeature()->getXmlTag() == "SeismicLatticeFeature"; } -void IjkGridLatticeRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double *) const +void IjkGridLatticeRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double *) const { if (patchIndex < getPatchCount()) { diff --git a/src/resqml2/IjkGridLatticeRepresentation.h b/src/resqml2/IjkGridLatticeRepresentation.h index 23efbef2c..5813eef9b 100644 --- a/src/resqml2/IjkGridLatticeRepresentation.h +++ b/src/resqml2/IjkGridLatticeRepresentation.h @@ -51,7 +51,7 @@ namespace RESQML2_NS DLL_IMPORT_OR_EXPORT bool isAFaciesCube() const; /** Please do note use: not implemented yet. Please use lattice information. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double* xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double* xyzPoints) const final; /** * Gets the X coordinate of the origin of this geometry. The X coordinate is given in the local @@ -379,7 +379,7 @@ namespace RESQML2_NS * @param [in] seismicSupport The seismic support of the patch to push. */ DLL_IMPORT_OR_EXPORT virtual void addSeismic3dCoordinatesToPatch( - unsigned int patchIndex, + uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, unsigned int countSample, RESQML2_NS::AbstractRepresentation * seismicSupport) = 0; diff --git a/src/resqml2/IjkGridNoGeometryRepresentation.cpp b/src/resqml2/IjkGridNoGeometryRepresentation.cpp index 195bed81c..42b28f93f 100644 --- a/src/resqml2/IjkGridNoGeometryRepresentation.cpp +++ b/src/resqml2/IjkGridNoGeometryRepresentation.cpp @@ -25,7 +25,7 @@ using namespace std; using namespace gsoap_resqml2_0_1; using namespace RESQML2_NS; -uint64_t IjkGridNoGeometryRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t IjkGridNoGeometryRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw out_of_range("An ijk grid has a maximum of one patch."); @@ -65,7 +65,7 @@ uint64_t IjkGridNoGeometryRepresentation::getXyzPointCountOfPatch(unsigned int p } } -void IjkGridNoGeometryRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double *) const +void IjkGridNoGeometryRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double *) const { if (patchIndex >= getPatchCount()) throw out_of_range("An ijk grid has a maximum of one patch."); diff --git a/src/resqml2/IjkGridNoGeometryRepresentation.h b/src/resqml2/IjkGridNoGeometryRepresentation.h index f8a3e68eb..3169f683a 100644 --- a/src/resqml2/IjkGridNoGeometryRepresentation.h +++ b/src/resqml2/IjkGridNoGeometryRepresentation.h @@ -47,7 +47,7 @@ namespace RESQML2_NS * * @returns The XYZ point count of the patch. */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Please do not use: not implemented yet. Please use parent window information or geometrical @@ -55,7 +55,7 @@ namespace RESQML2_NS * * @exception std::_out_of_range If patchIndex >= 1 (IJK grids only carry 1 patch). */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT geometryKind getGeometryKind() const final; diff --git a/src/resqml2/PointsProperty.cpp b/src/resqml2/PointsProperty.cpp index 4c8f77e08..c21024acf 100644 --- a/src/resqml2/PointsProperty.cpp +++ b/src/resqml2/PointsProperty.cpp @@ -53,7 +53,7 @@ uint64_t PointsProperty::getXyzPointCountOfAllPatches() const uint64_t result = 0; const uint64_t patchCount = getPatchCount(); - for (unsigned int patchIndex = 0; patchIndex < patchCount; ++patchIndex) + for (uint64_t patchIndex = 0; patchIndex < patchCount; ++patchIndex) { result += getXyzPointCountOfPatch(patchIndex); } @@ -61,7 +61,7 @@ uint64_t PointsProperty::getXyzPointCountOfAllPatches() const return result; } -void PointsProperty::getXyzPointsOfPatchInGlobalCrs(unsigned int patchIndex, double* xyzPoints) const +void PointsProperty::getXyzPointsOfPatchInGlobalCrs(uint64_t patchIndex, double* xyzPoints) const { getXyzPointsOfPatch(patchIndex, xyzPoints); @@ -75,7 +75,7 @@ void PointsProperty::getXyzPointsOfAllPatches(double* xyzPoints) const { const uint64_t patchCount = getPatchCount(); getXyzPointsOfPatch(0, xyzPoints); - for (unsigned int patchIndex = 1; patchIndex < patchCount; patchIndex++) + for (uint64_t patchIndex = 1; patchIndex < patchCount; patchIndex++) { xyzPoints += getXyzPointCountOfPatch(patchIndex - 1) * 3; getXyzPointsOfPatch(patchIndex, xyzPoints); @@ -92,7 +92,7 @@ void PointsProperty::getXyzPointsOfAllPatchesInGlobalCrs(double* xyzPoints) cons } } -void PointsProperty::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PointsProperty::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { std::string datasetPath; EML2_NS::AbstractHdfProxy* hdfProxy = getValuesHdfProxyAndDatasetPathOfPatch(patchIndex, datasetPath); diff --git a/src/resqml2/PointsProperty.h b/src/resqml2/PointsProperty.h index 8d07d3f00..ee55ba5fc 100644 --- a/src/resqml2/PointsProperty.h +++ b/src/resqml2/PointsProperty.h @@ -56,7 +56,7 @@ namespace RESQML2_NS * * @returns The xyz point count of the patch at position @p patchIndex. */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const { + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const { return getValuesCountOfPatch(patchIndex) / 3; } @@ -80,7 +80,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of a particular patch of this property. xyz points are given in @@ -94,7 +94,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatchInGlobalCrs(unsigned int patchIndex, double * xyzPoints) const; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatchInGlobalCrs(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of all patches of this property. xyz points are given in the @@ -267,6 +267,6 @@ namespace RESQML2_NS PointsProperty(gsoap_resqml2_0_1::_resqml20__PointsProperty* fromGsoap) : RESQML2_NS::AbstractProperty(fromGsoap) {} PointsProperty(gsoap_eml2_3::resqml22__PointsProperty* fromGsoap) : RESQML2_NS::AbstractProperty(fromGsoap) {} - virtual EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const = 0; + virtual EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const = 0; }; } diff --git a/src/resqml2/PolylineSetRepresentation.cpp b/src/resqml2/PolylineSetRepresentation.cpp index ce728d3f9..10fa8b983 100644 --- a/src/resqml2/PolylineSetRepresentation.cpp +++ b/src/resqml2/PolylineSetRepresentation.cpp @@ -25,7 +25,7 @@ using namespace RESQML2_NS; const char* PolylineSetRepresentation::XML_TAG = "PolylineSetRepresentation"; -uint64_t PolylineSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PolylineSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2/PolylineSetRepresentation.h b/src/resqml2/PolylineSetRepresentation.h index 4f4bf3f85..8c048798e 100644 --- a/src/resqml2/PolylineSetRepresentation.h +++ b/src/resqml2/PolylineSetRepresentation.h @@ -68,7 +68,7 @@ namespace RESQML2_NS * patchIndex. Its size must be * getPolylineCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT virtual void getNodeCountPerPolylineInPatch(unsigned int patchIndex, unsigned int * nodeCountPerPolyline) const = 0; + DLL_IMPORT_OR_EXPORT virtual void getNodeCountPerPolylineInPatch(uint64_t patchIndex, unsigned int * nodeCountPerPolyline) const = 0; /** * Gets all the node count per polyline for all the patches of this representation. @@ -79,7 +79,7 @@ namespace RESQML2_NS */ DLL_IMPORT_OR_EXPORT virtual void getNodeCountPerPolylineOfAllPatches(unsigned int * NodeCountPerPolyline) const = 0; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Pushes back a new patch of polylines. Here, the closed flag of all of the polylines is the @@ -151,7 +151,7 @@ namespace RESQML2_NS * * @returns True if all polylines of patch @p patchIndex are closed, false if not. */ - DLL_IMPORT_OR_EXPORT bool virtual areAllPolylinesClosedOfPatch(unsigned int patchIndex) const = 0; + DLL_IMPORT_OR_EXPORT bool virtual areAllPolylinesClosedOfPatch(uint64_t patchIndex) const = 0; /** * Checks if all polylines of all patches are closed. Notice that a returned "false" does not @@ -174,7 +174,7 @@ namespace RESQML2_NS * * @returns True if all polylines of patch @p patchIndex are not closed, false if not. */ - DLL_IMPORT_OR_EXPORT virtual bool areAllPolylinesNonClosedOfPatch(unsigned int patchIndex) const = 0; + DLL_IMPORT_OR_EXPORT virtual bool areAllPolylinesNonClosedOfPatch(uint64_t patchIndex) const = 0; /** * Checks if all polylines of all patches are not closed. Notice that a returned "false" does @@ -196,7 +196,7 @@ namespace RESQML2_NS * ordered by polyline. Its size must be * getPolylineCountOfPatch(patchIndex). */ - DLL_IMPORT_OR_EXPORT virtual void getClosedFlagPerPolylineOfPatch(unsigned int patchIndex, bool * closedFlagPerPolyline) const = 0; + DLL_IMPORT_OR_EXPORT virtual void getClosedFlagPerPolylineOfPatch(uint64_t patchIndex, bool * closedFlagPerPolyline) const = 0; /** * Gets the closed flag of all polylines of all patches. diff --git a/src/resqml2/RepresentationSetRepresentation.cpp b/src/resqml2/RepresentationSetRepresentation.cpp index de3647090..fd7c9020b 100644 --- a/src/resqml2/RepresentationSetRepresentation.cpp +++ b/src/resqml2/RepresentationSetRepresentation.cpp @@ -36,12 +36,12 @@ void RepresentationSetRepresentation::loadTargetRelationships() } } -uint64_t RepresentationSetRepresentation::getXyzPointCountOfPatch(unsigned int) const +uint64_t RepresentationSetRepresentation::getXyzPointCountOfPatch(uint64_t) const { throw logic_error("Not implemented yet."); } -void RepresentationSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double *) const +void RepresentationSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double *) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch."); diff --git a/src/resqml2/RepresentationSetRepresentation.h b/src/resqml2/RepresentationSetRepresentation.h index 29342eee2..12318d676 100644 --- a/src/resqml2/RepresentationSetRepresentation.h +++ b/src/resqml2/RepresentationSetRepresentation.h @@ -52,10 +52,10 @@ namespace RESQML2_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final { return COMMON_NS::DataObjectReference(); } /** Please do note use: not implemented yet. */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const override; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const override; /** Please do note use: not implemented yet. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const override; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const override; /** * Gets the patch count. diff --git a/src/resqml2/StreamlinesRepresentation.h b/src/resqml2/StreamlinesRepresentation.h index 70063daa6..ca2805c6f 100644 --- a/src/resqml2/StreamlinesRepresentation.h +++ b/src/resqml2/StreamlinesRepresentation.h @@ -163,7 +163,7 @@ namespace RESQML2_NS /** * Get the xyz point count in a given patch. */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final { + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final { if (patchIndex > 0) { throw std::out_of_range("The patch index is out of range and should only be zero."); } diff --git a/src/resqml2/SubRepresentation.cpp b/src/resqml2/SubRepresentation.cpp index 757ebec1f..eab418556 100644 --- a/src/resqml2/SubRepresentation.cpp +++ b/src/resqml2/SubRepresentation.cpp @@ -78,7 +78,7 @@ void SubRepresentation::setElementIndices(uint64_t* elementIndices, uint64_t elementCount, uint64_t offset, EML2_NS::AbstractHdfProxy* proxy, - unsigned int patchIndex) + uint64_t patchIndex) { if (patchIndex >= getPatchCount() && patchIndex != (numeric_limits::max)()) { throw out_of_range("The subrepresentation patch is out of range"); @@ -123,7 +123,7 @@ void SubRepresentation::loadTargetRelationships() } } -uint64_t SubRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t SubRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -137,7 +137,7 @@ uint64_t SubRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) con } } -void SubRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double *) const +void SubRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double *) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2/SubRepresentation.h b/src/resqml2/SubRepresentation.h index 74cdfd2b1..d5ef59581 100644 --- a/src/resqml2/SubRepresentation.h +++ b/src/resqml2/SubRepresentation.h @@ -63,7 +63,7 @@ namespace RESQML2_NS * * @returns The kind of the selected elements. */ - DLL_IMPORT_OR_EXPORT virtual gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex) const = 0; + DLL_IMPORT_OR_EXPORT virtual gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex) const = 0; /** * Gets the count of the selected elements of a particular patch of this sub-representation. @@ -75,7 +75,7 @@ namespace RESQML2_NS * * @returns The count of the selected elements. */ - DLL_IMPORT_OR_EXPORT virtual uint64_t getElementCountOfPatch(unsigned int patchIndex) const = 0; + DLL_IMPORT_OR_EXPORT virtual uint64_t getElementCountOfPatch(uint64_t patchIndex) const = 0; /** * Gets the indices of the selected elements for a particular patch of this sub-representation. @@ -98,7 +98,7 @@ namespace RESQML2_NS * elements. It must be preallocated with * {@link getElementCountOfPatch()} size. */ - DLL_IMPORT_OR_EXPORT virtual void getElementIndicesOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex, uint64_t* elementIndices) const = 0; + DLL_IMPORT_OR_EXPORT virtual void getElementIndicesOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex, uint64_t* elementIndices) const = 0; /** * @brief Gets the indices of the supporting representations that refer the selected elements @@ -117,7 +117,7 @@ namespace RESQML2_NS * elements) at the same position in the sub- * representation patch. */ - DLL_IMPORT_OR_EXPORT virtual void getSupportingRepresentationIndicesOfPatch(unsigned int patchIndex, short* supportingRepresentationIndices) const = 0; + DLL_IMPORT_OR_EXPORT virtual void getSupportingRepresentationIndicesOfPatch(uint64_t patchIndex, short* supportingRepresentationIndices) const = 0; /** * Checks if the element indices of a particular patch are pairwise or not. @@ -128,7 +128,7 @@ namespace RESQML2_NS * * @returns True if the elements indices are pairwise, false if not. */ - DLL_IMPORT_OR_EXPORT virtual bool areElementIndicesPairwise(unsigned int patchIndex) const = 0; + DLL_IMPORT_OR_EXPORT virtual bool areElementIndicesPairwise(uint64_t patchIndex) const = 0; /** * Checks if the element indices of a particular patch are based on a lattice or not. @@ -147,7 +147,7 @@ namespace RESQML2_NS * * @returns True if element indices based on lattice, false if not. */ - DLL_IMPORT_OR_EXPORT virtual bool areElementIndicesBasedOnLattice(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual bool areElementIndicesBasedOnLattice(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const = 0; /** * Gets the start value of the lattice the element indices of a particular patch are based on. @@ -168,7 +168,7 @@ namespace RESQML2_NS * * @returns The lattice start value. */ - DLL_IMPORT_OR_EXPORT virtual int64_t getLatticeElementIndicesStartValue(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual int64_t getLatticeElementIndicesStartValue(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const = 0; /** * Gets the dimension count of the lattice the element indices of a particular patch are based @@ -190,7 +190,7 @@ namespace RESQML2_NS * * @returns The lattice dimension count. */ - DLL_IMPORT_OR_EXPORT virtual uint64_t getLatticeElementIndicesDimensionCount(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual uint64_t getLatticeElementIndicesDimensionCount(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const = 0; /** * Gets the offset value at a given dimension of the lattice the element indices of a particular @@ -214,7 +214,7 @@ namespace RESQML2_NS * * @returns The offset value. */ - DLL_IMPORT_OR_EXPORT virtual int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const = 0; /** * Gets the offset count at a given dimension of the lattice the element indices of a particular @@ -238,7 +238,7 @@ namespace RESQML2_NS * * @returns The offset count. */ - DLL_IMPORT_OR_EXPORT virtual uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const = 0; + DLL_IMPORT_OR_EXPORT virtual uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const = 0; /** * Pushes back a new lattice-based patch (without pairwise elements) in this sub-representation. @@ -318,7 +318,7 @@ namespace RESQML2_NS uint64_t elementCount, uint64_t offset, EML2_NS::AbstractHdfProxy* proxy = nullptr, - unsigned int patchIndex = (std::numeric_limits::max)()); + uint64_t patchIndex = (std::numeric_limits::max)()); /** * Pushes back a new patch in this sub-representation which is constituted by means of pairwise @@ -375,10 +375,10 @@ namespace RESQML2_NS * pairwise) or if the kind of the left part of the pairs of elements is * not node (pairwise case). */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const override; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const override; /** Please do note use : not implemented yet. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double* xyzPoints) const override; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double* xyzPoints) const override; DLL_IMPORT_OR_EXPORT virtual uint64_t getPatchCount() const override = 0; diff --git a/src/resqml2/TriangulatedSetRepresentation.h b/src/resqml2/TriangulatedSetRepresentation.h index e00ff24e9..58868ab43 100644 --- a/src/resqml2/TriangulatedSetRepresentation.h +++ b/src/resqml2/TriangulatedSetRepresentation.h @@ -73,7 +73,7 @@ namespace RESQML2_NS * * @returns The triangle count of the patch at position @p patchIndex. */ - DLL_IMPORT_OR_EXPORT virtual uint64_t getTriangleCountOfPatch(unsigned int patchIndex) const = 0; + DLL_IMPORT_OR_EXPORT virtual uint64_t getTriangleCountOfPatch(uint64_t patchIndex) const = 0; /** * Get the triangle count of all patches of this representation. @@ -98,7 +98,7 @@ namespace RESQML2_NS * following values define the 3 vertices of the second triangle * and so on. */ - DLL_IMPORT_OR_EXPORT virtual void getTriangleNodeIndicesOfPatch(unsigned int patchIndex, unsigned int * triangleNodeIndices) const = 0; + DLL_IMPORT_OR_EXPORT virtual void getTriangleNodeIndicesOfPatch(uint64_t patchIndex, unsigned int * triangleNodeIndices) const = 0; /** * Gets all the triangle node indices of all patches of this representation. See diff --git a/src/resqml2/UnstructuredGridRepresentation.cpp b/src/resqml2/UnstructuredGridRepresentation.cpp index a254ceada..3d8ac4ada 100644 --- a/src/resqml2/UnstructuredGridRepresentation.cpp +++ b/src/resqml2/UnstructuredGridRepresentation.cpp @@ -29,7 +29,7 @@ using namespace RESQML2_NS; const char* UnstructuredGridRepresentation::XML_TAG = "UnstructuredGridRepresentation"; -uint64_t UnstructuredGridRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t UnstructuredGridRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2/UnstructuredGridRepresentation.h b/src/resqml2/UnstructuredGridRepresentation.h index 6fb69c6cd..6c2765c79 100644 --- a/src/resqml2/UnstructuredGridRepresentation.h +++ b/src/resqml2/UnstructuredGridRepresentation.h @@ -78,7 +78,7 @@ namespace RESQML2_NS */ DLL_IMPORT_OR_EXPORT virtual bool hasGeometry() const = 0; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Gets all the face indices of all the cells. diff --git a/src/resqml2/WellboreFrameRepresentation.cpp b/src/resqml2/WellboreFrameRepresentation.cpp index 2d80786e2..fb9921fd0 100644 --- a/src/resqml2/WellboreFrameRepresentation.cpp +++ b/src/resqml2/WellboreFrameRepresentation.cpp @@ -29,7 +29,7 @@ using namespace RESQML2_NS; using namespace gsoap_resqml2_0_1; using namespace gsoap_eml2_3; -void WellboreFrameRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double* xyzPoints) const +void WellboreFrameRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double* xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -423,7 +423,7 @@ COMMON_NS::DataObjectReference WellboreFrameRepresentation::getHdfProxyDor() con return COMMON_NS::DataObjectReference(); } -uint64_t WellboreFrameRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t WellboreFrameRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The patch index is out of range"); diff --git a/src/resqml2/WellboreFrameRepresentation.h b/src/resqml2/WellboreFrameRepresentation.h index ccdf8b910..e632cc183 100644 --- a/src/resqml2/WellboreFrameRepresentation.h +++ b/src/resqml2/WellboreFrameRepresentation.h @@ -112,12 +112,12 @@ namespace RESQML2_NS /** * Get the xyz point count in a given patch. */ - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const override; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const override; /** * Use linear interpolation between 2 trajectory stations. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const override; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const override; /** * Gets the MD datatype in the HDF dataset. diff --git a/src/resqml2_0_1/CommentProperty.cpp b/src/resqml2_0_1/CommentProperty.cpp index 449e9efd9..7a578a99c 100644 --- a/src/resqml2_0_1/CommentProperty.cpp +++ b/src/resqml2_0_1/CommentProperty.cpp @@ -108,7 +108,7 @@ std::string CommentProperty::pushBackRefToExistingDataset(EML2_NS::AbstractHdfPr return xmlValues->Values->PathInHdfFile; } -EML2_NS::AbstractHdfProxy* CommentProperty::getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const +EML2_NS::AbstractHdfProxy* CommentProperty::getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const { // Look for the hdf where the comments are stored. _resqml20__CommentProperty const * prop = static_cast<_resqml20__CommentProperty*>(gsoapProxy2_0_1); diff --git a/src/resqml2_0_1/CommentProperty.h b/src/resqml2_0_1/CommentProperty.h index d7f9a7b65..a71bd124a 100644 --- a/src/resqml2_0_1/CommentProperty.h +++ b/src/resqml2_0_1/CommentProperty.h @@ -116,6 +116,6 @@ namespace RESQML2_0_1_NS DLL_IMPORT_OR_EXPORT std::string getXmlNamespace() const final { return XML_NS; } private: - EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const; + EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const; }; } diff --git a/src/resqml2_0_1/ContinuousProperty.cpp b/src/resqml2_0_1/ContinuousProperty.cpp index cfe20c2c5..25e014950 100644 --- a/src/resqml2_0_1/ContinuousProperty.cpp +++ b/src/resqml2_0_1/ContinuousProperty.cpp @@ -109,8 +109,8 @@ std::string ContinuousProperty::getUomAsString() const gsoap_resqml2_0_1::resqml20__ResqmlUom uom = getUom(); if (uom == gsoap_resqml2_0_1::resqml20__ResqmlUom::Euc) { - unsigned int emCount = getExtraMetadataCount(); - for (unsigned int i = 0; i < emCount; ++i) { + const uint64_t emCount = getExtraMetadataCount(); + for (uint64_t i = 0; i < emCount; ++i) { if (getExtraMetadataKeyAtIndex(i) == "Uom") { return getExtraMetadataStringValueAtIndex(i); } @@ -120,7 +120,7 @@ std::string ContinuousProperty::getUomAsString() const return gsoap_resqml2_0_1::soap_resqml20__ResqmlUom2s(gsoapProxy2_0_1->soap, uom); } -EML2_NS::AbstractHdfProxy* ContinuousProperty::getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const +EML2_NS::AbstractHdfProxy* ContinuousProperty::getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The values property patch is out of range"); @@ -132,21 +132,21 @@ EML2_NS::AbstractHdfProxy* ContinuousProperty::getValuesHdfProxyAndDatasetPathOf return getHdfProxyFromDataset(dataset); } -double ContinuousProperty::getMinimumValue(unsigned int index) const +double ContinuousProperty::getMinimumValue(uint64_t index) const { _resqml20__ContinuousProperty* prop = static_cast<_resqml20__ContinuousProperty*>(gsoapProxy2_0_1); return prop->MinimumValue.size() <= index ? std::numeric_limits::quiet_NaN() : prop->MinimumValue[index]; } -double ContinuousProperty::getMaximumValue(unsigned int index) const +double ContinuousProperty::getMaximumValue(uint64_t index) const { _resqml20__ContinuousProperty* prop = static_cast<_resqml20__ContinuousProperty*>(gsoapProxy2_0_1); return prop->MaximumValue.size() <= index ? std::numeric_limits::quiet_NaN() : prop->MaximumValue[index]; } -void ContinuousProperty::setMinimumValue(double value, unsigned int index) const +void ContinuousProperty::setMinimumValue(double value, uint64_t index) const { _resqml20__ContinuousProperty* prop = static_cast<_resqml20__ContinuousProperty*>(gsoapProxy2_0_1); @@ -157,7 +157,7 @@ void ContinuousProperty::setMinimumValue(double value, unsigned int index) const prop->MinimumValue[index] = value; } -void ContinuousProperty::setMaximumValue(double value, unsigned int index) const +void ContinuousProperty::setMaximumValue(double value, uint64_t index) const { _resqml20__ContinuousProperty* prop = static_cast<_resqml20__ContinuousProperty*>(gsoapProxy2_0_1); diff --git a/src/resqml2_0_1/ContinuousProperty.h b/src/resqml2_0_1/ContinuousProperty.h index bb9b6970e..a3eb491c2 100644 --- a/src/resqml2_0_1/ContinuousProperty.h +++ b/src/resqml2_0_1/ContinuousProperty.h @@ -179,13 +179,13 @@ namespace RESQML2_0_1_NS */ DLL_IMPORT_OR_EXPORT std::string getUomAsString() const final; - DLL_IMPORT_OR_EXPORT double getMinimumValue(unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT double getMinimumValue(uint64_t index = 0) const final; - DLL_IMPORT_OR_EXPORT double getMaximumValue(unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT double getMaximumValue(uint64_t index = 0) const final; - DLL_IMPORT_OR_EXPORT void setMinimumValue(double value, unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT void setMinimumValue(double value, uint64_t index = 0) const final; - DLL_IMPORT_OR_EXPORT void setMaximumValue(double value, unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT void setMaximumValue(double value, uint64_t index = 0) const final; /** * Gets the Energistics property kind which is associated to this intance @@ -201,6 +201,43 @@ namespace RESQML2_0_1_NS bool validatePropertyKindAssociation(gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind pk) final; + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getFloatStatistics(uint64_t) const final { + COMMON_NS::NumberArrayStatistics result; + const auto minimumValueSize = getMinimumValueSize(); + for (size_t i = 0; i < minimumValueSize; ++i) { + const auto minVal = getMinimumValue(i); + if (!std::isnan(minVal)) { + result.setMinimum(static_cast(minVal), i); + } + } + const auto maximumValueSize = getMaximumValueSize(); + for (size_t i = 0; i < maximumValueSize; ++i) { + const auto maxVal = getMinimumValue(i); + if (!std::isnan(maxVal)) { + result.setMaximum(static_cast(maxVal), i); + } + } + return result; + } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getDoubleStatistics(uint64_t) const final { + COMMON_NS::NumberArrayStatistics result; + const auto minimumValueSize = getMinimumValueSize(); + for (size_t i = 0; i < minimumValueSize; ++i) { + const auto minVal = getMinimumValue(i); + if (!std::isnan(minVal)) { + result.setMinimum(minVal, i); + } + } + const auto maximumValueSize = getMaximumValueSize(); + for (size_t i = 0; i < maximumValueSize; ++i) { + const auto maxVal = getMinimumValue(i); + if (!std::isnan(maxVal)) { + result.setMaximum(maxVal, i); + } + } + return result; + } + /** * The standard XML namespace for serializing this data object. */ @@ -226,7 +263,7 @@ namespace RESQML2_0_1_NS void init(RESQML2_NS::AbstractRepresentation * rep, const std::string & guid, const std::string & title, unsigned int dimension, gsoap_eml2_3::eml23__IndexableElement attachmentKind); - EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const; + EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const; size_t getMinimumValueSize() const; size_t getMaximumValueSize() const; diff --git a/src/resqml2_0_1/DeviationSurveyRepresentation.cpp b/src/resqml2_0_1/DeviationSurveyRepresentation.cpp index b4ed584bc..3b0f6c1d6 100644 --- a/src/resqml2_0_1/DeviationSurveyRepresentation.cpp +++ b/src/resqml2_0_1/DeviationSurveyRepresentation.cpp @@ -121,7 +121,7 @@ RESQML2_NS::MdDatum* DeviationSurveyRepresentation::getMdDatum() const return getRepository()->getDataObjectByUuid(getMdDatumDor().getUuid()); } -uint64_t DeviationSurveyRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t DeviationSurveyRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch."); @@ -131,7 +131,7 @@ uint64_t DeviationSurveyRepresentation::getXyzPointCountOfPatch(unsigned int pat return rep->StationCount; } -void DeviationSurveyRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double*) const +void DeviationSurveyRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double*) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); diff --git a/src/resqml2_0_1/DeviationSurveyRepresentation.h b/src/resqml2_0_1/DeviationSurveyRepresentation.h index 2bd6e5658..07c44561e 100644 --- a/src/resqml2_0_1/DeviationSurveyRepresentation.h +++ b/src/resqml2_0_1/DeviationSurveyRepresentation.h @@ -140,9 +140,9 @@ namespace RESQML2_0_1_NS */ DLL_IMPORT_OR_EXPORT bool isFinal() const; - uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double* xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double* xyzPoints) const final; /** * Gets the unit of measure of the MDs along this deviation survey. diff --git a/src/resqml2_0_1/DiscreteProperty.h b/src/resqml2_0_1/DiscreteProperty.h index 02a03afa3..5d64a11e9 100644 --- a/src/resqml2_0_1/DiscreteProperty.h +++ b/src/resqml2_0_1/DiscreteProperty.h @@ -122,6 +122,15 @@ namespace RESQML2_0_1_NS */ DLL_IMPORT_OR_EXPORT gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind getEnergisticsPropertyKind() const; + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt8Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt8Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt16Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt16Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt32Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt32Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt64Statistics(uint64_t patchIndex) const final { return getStats(getNullValueOfPatch(patchIndex)); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt64Statistics(uint64_t patchIndex) const final { return getStats(static_cast(getNullValueOfPatch(patchIndex))); } + /** * The standard XML namespace for serializing this data object. */ @@ -137,5 +146,49 @@ namespace RESQML2_0_1_NS size_t getMinimumValueSize() const; size_t getMaximumValueSize() const; + template + COMMON_NS::NumberArrayStatistics getStats(T nullValue) const { + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(nullValue); + + const auto minimumValueSize = getMinimumValueSize(); + for (size_t i = 0; i < minimumValueSize; ++i) { + if (hasMinimumValue(i)) { + int64_t minVal = getMinimumValue(i); + if constexpr (std::is_signed_v) { + if (minVal > (std::numeric_limits::min)() && + minVal < (std::numeric_limits::max)()) { + result.setMinimum(static_cast(minVal), i); + } + } + else { + if (minVal > 0 && + static_cast(minVal) < (std::numeric_limits::max)()) { + result.setMinimum(static_cast(minVal), i); + } + } + } + } + const auto maximumValueSize = getMaximumValueSize(); + for (size_t i = 0; i < maximumValueSize; ++i) { + if (hasMaximumValue(i)) { + int64_t maxVal = getMaximumValue(i); + if constexpr (std::is_signed_v) { + if (maxVal > (std::numeric_limits::min)() && + maxVal < (std::numeric_limits::max)()) { + result.setMaximum(static_cast(maxVal), i); + } + } + else { + if (maxVal > 0 && + static_cast(maxVal) < (std::numeric_limits::max)()) { + result.setMaximum(static_cast(maxVal), i); + } + } + } + } + + return result; + } }; } diff --git a/src/resqml2_0_1/Grid2dRepresentation.cpp b/src/resqml2_0_1/Grid2dRepresentation.cpp index 01a493da7..4a154e549 100644 --- a/src/resqml2_0_1/Grid2dRepresentation.cpp +++ b/src/resqml2_0_1/Grid2dRepresentation.cpp @@ -752,7 +752,7 @@ gsoap_resqml2_0_1::resqml20__PointGeometry* Grid2dRepresentation::createArray2dO } gsoap_resqml2_0_1::resqml20__PointGeometry* Grid2dRepresentation::createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy * proxy, RESQML2_NS::Grid2dRepresentation * supportingRepresentation, uint64_t startGlobalIndex, @@ -819,7 +819,7 @@ gsoap_resqml2_0_1::resqml20__PointGeometry* Grid2dRepresentation::createArray2dO } gsoap_resqml2_0_1::resqml20__PointGeometry* Grid2dRepresentation::createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy * proxy, double originX, double originY, double originZ, double offsetIX, double offsetIY, double offsetIZ, double spacingI, diff --git a/src/resqml2_0_1/Grid2dRepresentation.h b/src/resqml2_0_1/Grid2dRepresentation.h index c332d084a..88f0d0749 100644 --- a/src/resqml2_0_1/Grid2dRepresentation.h +++ b/src/resqml2_0_1/Grid2dRepresentation.h @@ -215,7 +215,7 @@ namespace RESQML2_0_1_NS * @returns Null if it fails, else the new array 2D of explicit z coordinate. */ gsoap_resqml2_0_1::resqml20__PointGeometry* createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy* proxy, RESQML2_NS::Grid2dRepresentation * supportingRepresentation, uint64_t startGlobalIndex = 0, @@ -247,7 +247,7 @@ namespace RESQML2_0_1_NS * @returns Null if it fails, else the new array 2D of explicit z coordinate. */ gsoap_resqml2_0_1::resqml20__PointGeometry* createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy* proxy, double originX, double originY, double originZ, double offsetIX, double offsetIY, double offsetIZ, double spacingI, diff --git a/src/resqml2_0_1/GridConnectionSetRepresentation.cpp b/src/resqml2_0_1/GridConnectionSetRepresentation.cpp index 5f85a4aea..b50696efd 100644 --- a/src/resqml2_0_1/GridConnectionSetRepresentation.cpp +++ b/src/resqml2_0_1/GridConnectionSetRepresentation.cpp @@ -140,7 +140,7 @@ void GridConnectionSetRepresentation::getInterpretationIndexCumulativeCount(uint { if (isAssociatedToInterpretations()) { _resqml20__GridConnectionSetRepresentation* rep = static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1); - readArrayNdOfUInt64Values(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount); + readArrayNdOfIntegerValues(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount); } else { throw std::invalid_argument("The grid connection does not contain any interpretation association."); @@ -153,7 +153,7 @@ void GridConnectionSetRepresentation::getInterpretationIndices(int64_t * interpr _resqml20__GridConnectionSetRepresentation* rep = static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1); auto const* integerArray = dynamic_cast(rep->ConnectionInterpretations->InterpretationIndices->Elements); if (integerArray != nullptr) { - readArrayNdOfInt64Values(integerArray, interpretationIndices); + readArrayNdOfIntegerValues(integerArray, interpretationIndices); } else { throw std::logic_error("The interpretation indices array should be an integer one."); @@ -202,7 +202,7 @@ uint64_t GridConnectionSetRepresentation::getCellIndexPairCountFromInterpretatio } else { std::unique_ptr const cumulative(new unsigned int[totalCellIndexPairCount]); - readArrayNdOfUInt32Values(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulative.get()); + readArrayNdOfIntegerValues(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulative.get()); result = cumulative[0] > 0 ? 0 : 1; for (uint64_t i = 1; i < totalCellIndexPairCount; ++i) { if (cumulative[i] == cumulative[i-1]) { @@ -269,7 +269,7 @@ void GridConnectionSetRepresentation::getGridConnectionSetInformationFromInterpr std::unique_ptr cumulativeCount(new unsigned int[totalCellIndexPairCount]); if (interpCount > 0) { - readArrayNdOfUInt32Values(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount.get()); + readArrayNdOfIntegerValues(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount.get()); } else { std::fill(cumulativeCount.get(), cumulativeCount.get() + totalCellIndexPairCount, 0); @@ -378,7 +378,7 @@ uint64_t GridConnectionSetRepresentation::getInterpretationCount() const int64_t GridConnectionSetRepresentation::getCellIndexPairs(int64_t * cellIndexPairs) const { - return readArrayNdOfInt64Values(static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1)->CellIndexPairs, cellIndexPairs); + return readArrayNdOfIntegerValues(static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1)->CellIndexPairs, cellIndexPairs); } bool GridConnectionSetRepresentation::isBasedOnMultiGrids() const @@ -394,7 +394,7 @@ void GridConnectionSetRepresentation::getGridIndexPairs(unsigned short * gridInd if (!isBasedOnMultiGrids()) { throw std::invalid_argument("This GridConnectionSet representation has no multiple grid support."); } - readArrayNdOfUInt16Values(static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1)->GridIndexPairs, gridIndexPairs); + readArrayNdOfIntegerValues(static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1)->GridIndexPairs, gridIndexPairs); } bool GridConnectionSetRepresentation::hasLocalFacePerCell() const @@ -407,7 +407,7 @@ int64_t GridConnectionSetRepresentation::getLocalFacePerCellIndexPairs(int* loca if (!hasLocalFacePerCell()) { throw std::invalid_argument("This representation has no local face per cell."); } - return readArrayNdOfInt32Values(static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1)->LocalFacePerCellIndexPairs, localFaceCellIndexPairs); + return readArrayNdOfIntegerValues(static_cast<_resqml20__GridConnectionSetRepresentation*>(gsoapProxy2_0_1)->LocalFacePerCellIndexPairs, localFaceCellIndexPairs); } void GridConnectionSetRepresentation::pushBackXmlSupportingGridRepresentation(RESQML2_NS::AbstractGridRepresentation * supportingGridRep) diff --git a/src/resqml2_0_1/IjkGridExplicitRepresentation.cpp b/src/resqml2_0_1/IjkGridExplicitRepresentation.cpp index 21215bbcd..7ae4f42a8 100644 --- a/src/resqml2_0_1/IjkGridExplicitRepresentation.cpp +++ b/src/resqml2_0_1/IjkGridExplicitRepresentation.cpp @@ -51,7 +51,7 @@ EML2_NS::AbstractHdfProxy* IjkGridExplicitRepresentation::getPointDatasetPath(st } } -void IjkGridExplicitRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void IjkGridExplicitRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("An ijk grid has a maximum of one patch."); diff --git a/src/resqml2_0_1/IjkGridExplicitRepresentation.h b/src/resqml2_0_1/IjkGridExplicitRepresentation.h index 188e7dfd3..8a69c54a7 100644 --- a/src/resqml2_0_1/IjkGridExplicitRepresentation.h +++ b/src/resqml2_0_1/IjkGridExplicitRepresentation.h @@ -101,7 +101,7 @@ namespace RESQML2_0_1_NS * * @copydetails resqml2::AbstractIjkGridRepresentation::getXyzPointsOfPatch */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT void setGeometryAsCoordinateLineNodes( gsoap_resqml2_0_1::resqml20__PillarShape mostComplexPillarGeometry, gsoap_resqml2_0_1::resqml20__KDirection kDirectionKind, bool isRightHanded, diff --git a/src/resqml2_0_1/IjkGridLatticeRepresentation.cpp b/src/resqml2_0_1/IjkGridLatticeRepresentation.cpp index 4dfb692b8..0ed39224a 100644 --- a/src/resqml2_0_1/IjkGridLatticeRepresentation.cpp +++ b/src/resqml2_0_1/IjkGridLatticeRepresentation.cpp @@ -391,7 +391,7 @@ void IjkGridLatticeRepresentation::setGeometryAsCoordinateLineNodes( } void IjkGridLatticeRepresentation::addSeismic3dCoordinatesToPatch( - unsigned int patchIndex, + uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, unsigned int countSample, RESQML2_NS::AbstractRepresentation * seismicSupport) diff --git a/src/resqml2_0_1/IjkGridLatticeRepresentation.h b/src/resqml2_0_1/IjkGridLatticeRepresentation.h index 393285d91..816d39bf8 100644 --- a/src/resqml2_0_1/IjkGridLatticeRepresentation.h +++ b/src/resqml2_0_1/IjkGridLatticeRepresentation.h @@ -137,7 +137,7 @@ namespace RESQML2_0_1_NS double directionKX, double directionKY, double directionKZ, double spacingK, EML2_NS::AbstractLocal3dCrs * localCrs = nullptr) final; DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch( - unsigned int patchIndex, + uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, unsigned int countSample, RESQML2_NS::AbstractRepresentation * seismicSupport) final; diff --git a/src/resqml2_0_1/IjkGridParametricRepresentation.cpp b/src/resqml2_0_1/IjkGridParametricRepresentation.cpp index b9f5e7c9d..356993e92 100644 --- a/src/resqml2_0_1/IjkGridParametricRepresentation.cpp +++ b/src/resqml2_0_1/IjkGridParametricRepresentation.cpp @@ -205,7 +205,7 @@ COMMON_NS::DataObjectReference IjkGridParametricRepresentation::getHdfProxyDor() throw std::logic_error("Not yet implemented"); } -void IjkGridParametricRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void IjkGridParametricRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { getXyzPointsFromParametricPoints(xyzPoints); diff --git a/src/resqml2_0_1/IjkGridParametricRepresentation.h b/src/resqml2_0_1/IjkGridParametricRepresentation.h index 035193132..01d2594c5 100644 --- a/src/resqml2_0_1/IjkGridParametricRepresentation.h +++ b/src/resqml2_0_1/IjkGridParametricRepresentation.h @@ -98,7 +98,7 @@ namespace RESQML2_0_1_NS * * @copydetails resqml2::AbstractIjkGridRepresentation::getXyzPointsOfPatch */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT unsigned int getControlPointMaxCountPerPillar() const final; diff --git a/src/resqml2_0_1/PlaneSetRepresentation.cpp b/src/resqml2_0_1/PlaneSetRepresentation.cpp index ad1940dbf..728474abb 100644 --- a/src/resqml2_0_1/PlaneSetRepresentation.cpp +++ b/src/resqml2_0_1/PlaneSetRepresentation.cpp @@ -113,7 +113,7 @@ void PlaneSetRepresentation::pushBackTiltedPlaneGeometryPatch( getRepository()->addRelationship(this, localCrs); } -uint64_t PlaneSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PlaneSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); @@ -125,7 +125,7 @@ uint64_t PlaneSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex : static_cast(rep->Planes[patchIndex])->Plane.size() * 3; } -void PlaneSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PlaneSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); diff --git a/src/resqml2_0_1/PlaneSetRepresentation.h b/src/resqml2_0_1/PlaneSetRepresentation.h index ec1dc1344..0647fb9c9 100644 --- a/src/resqml2_0_1/PlaneSetRepresentation.h +++ b/src/resqml2_0_1/PlaneSetRepresentation.h @@ -61,7 +61,7 @@ namespace RESQML2_0_1_NS COMMON_NS::DataObjectReference getLocalCrsDor(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Get all the XYZ points of a particular patch of this representation. XYZ points are given in @@ -72,7 +72,7 @@ namespace RESQML2_0_1_NS * coordinate dimension (XYZ) and second dimension is vertex * dimension. It must be pre allocated. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT uint64_t getPatchCount() const final; diff --git a/src/resqml2_0_1/PointSetRepresentation.cpp b/src/resqml2_0_1/PointSetRepresentation.cpp index 5284e83b4..ffa217e03 100644 --- a/src/resqml2_0_1/PointSetRepresentation.cpp +++ b/src/resqml2_0_1/PointSetRepresentation.cpp @@ -120,7 +120,7 @@ resqml20__PointGeometry* PointSetRepresentation::getPointGeometry2_0_1(uint64_t return static_cast<_resqml20__PointSetRepresentation*>(gsoapProxy2_0_1)->NodePatch.at(patchIndex)->Geometry; } -uint64_t PointSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PointSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -129,7 +129,7 @@ uint64_t PointSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex return static_cast<_resqml20__PointSetRepresentation*>(gsoapProxy2_0_1)->NodePatch[patchIndex]->Count; } -void PointSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PointSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { resqml20__PointGeometry const* pointGeom = getPointGeometry2_0_1(patchIndex); if (pointGeom != nullptr) { diff --git a/src/resqml2_0_1/PointSetRepresentation.h b/src/resqml2_0_1/PointSetRepresentation.h index 3627d9622..a4f427d46 100644 --- a/src/resqml2_0_1/PointSetRepresentation.h +++ b/src/resqml2_0_1/PointSetRepresentation.h @@ -72,7 +72,7 @@ namespace RESQML2_0_1_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Get all the XYZ points of a particular patch of this representation. XYZ points are given in @@ -83,7 +83,7 @@ namespace RESQML2_0_1_NS * coordinate dimension (XYZ) and second dimension is vertex * dimension. It must be pre allocated. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT uint64_t getPatchCount() const final; diff --git a/src/resqml2_0_1/PointsProperty.cpp b/src/resqml2_0_1/PointsProperty.cpp index 0d418547d..5dfd0be7b 100644 --- a/src/resqml2_0_1/PointsProperty.cpp +++ b/src/resqml2_0_1/PointsProperty.cpp @@ -115,7 +115,7 @@ COMMON_NS::DataObjectReference PointsProperty::getHdfProxyDor(uint64_t patchInde } } -EML2_NS::AbstractHdfProxy* PointsProperty::getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const +EML2_NS::AbstractHdfProxy* PointsProperty::getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The values property patch is out of range"); diff --git a/src/resqml2_0_1/PointsProperty.h b/src/resqml2_0_1/PointsProperty.h index 6fc3b2bc2..6b93a0e48 100644 --- a/src/resqml2_0_1/PointsProperty.h +++ b/src/resqml2_0_1/PointsProperty.h @@ -171,6 +171,6 @@ namespace RESQML2_0_1_NS COMMON_NS::DataObjectReference getHdfProxyDor(uint64_t patchIndex) const final; private: - EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const final; + EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const final; }; } diff --git a/src/resqml2_0_1/PolylineRepresentation.cpp b/src/resqml2_0_1/PolylineRepresentation.cpp index 1c6178d70..26bdf502e 100644 --- a/src/resqml2_0_1/PolylineRepresentation.cpp +++ b/src/resqml2_0_1/PolylineRepresentation.cpp @@ -87,7 +87,7 @@ resqml20__PointGeometry* PolylineRepresentation::getPointGeometry2_0_1(uint64_t return patchIndex == 0 ? static_cast<_resqml20__PolylineRepresentation*>(gsoapProxy2_0_1)->NodePatch->Geometry : nullptr; } -uint64_t PolylineRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PolylineRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -96,7 +96,7 @@ uint64_t PolylineRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex return static_cast<_resqml20__PolylineRepresentation*>(gsoapProxy2_0_1)->NodePatch->Count; } -void PolylineRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PolylineRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2_0_1/PolylineRepresentation.h b/src/resqml2_0_1/PolylineRepresentation.h index b8c36e72d..de08ad6d6 100644 --- a/src/resqml2_0_1/PolylineRepresentation.h +++ b/src/resqml2_0_1/PolylineRepresentation.h @@ -91,9 +91,9 @@ namespace RESQML2_0_1_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT void setGeometry(double const* points, unsigned int pointCount, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr) final; diff --git a/src/resqml2_0_1/PolylineSetRepresentation.cpp b/src/resqml2_0_1/PolylineSetRepresentation.cpp index 419d723b9..fdc3eae69 100644 --- a/src/resqml2_0_1/PolylineSetRepresentation.cpp +++ b/src/resqml2_0_1/PolylineSetRepresentation.cpp @@ -239,13 +239,13 @@ uint64_t PolylineSetRepresentation::getPolylineCountOfAllPatches() const return result; } -void PolylineSetRepresentation::getNodeCountPerPolylineInPatch(unsigned int patchIndex, unsigned int * nodeCountPerPolyline) const +void PolylineSetRepresentation::getNodeCountPerPolylineInPatch(uint64_t patchIndex, unsigned int * nodeCountPerPolyline) const { if (patchIndex >= getPatchCount()) { throw std::out_of_range("patchIndex id out of range."); } resqml20__PolylineSetPatch* patch = static_cast<_resqml20__PolylineSetRepresentation*>(gsoapProxy2_0_1)->LinePatch[patchIndex]; - readArrayNdOfUInt32Values(patch->NodeCountPerPolyline, nodeCountPerPolyline); + readArrayNdOfIntegerValues(patch->NodeCountPerPolyline, nodeCountPerPolyline); } void PolylineSetRepresentation::getNodeCountPerPolylineOfAllPatches(unsigned int * NodeCountPerPolyline) const @@ -258,7 +258,7 @@ void PolylineSetRepresentation::getNodeCountPerPolylineOfAllPatches(unsigned int } } -void PolylineSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PolylineSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -280,7 +280,7 @@ uint64_t PolylineSetRepresentation::getPatchCount() const return static_cast<_resqml20__PolylineSetRepresentation*>(gsoapProxy2_0_1)->LinePatch.size(); } -bool PolylineSetRepresentation::areAllPolylinesClosedOfPatch(unsigned int patchIndex) const +bool PolylineSetRepresentation::areAllPolylinesClosedOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -318,7 +318,7 @@ bool PolylineSetRepresentation::areAllPolylinesClosedOfAllPatches() const return true; } -bool PolylineSetRepresentation::areAllPolylinesNonClosedOfPatch(unsigned int patchIndex) const +bool PolylineSetRepresentation::areAllPolylinesNonClosedOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -354,7 +354,7 @@ bool PolylineSetRepresentation::areAllPolylinesNonClosedOfAllPatches() const return true; } -void PolylineSetRepresentation::getClosedFlagPerPolylineOfPatch(unsigned int patchIndex, bool * closedFlagPerPolyline) const +void PolylineSetRepresentation::getClosedFlagPerPolylineOfPatch(uint64_t patchIndex, bool * closedFlagPerPolyline) const { uint64_t polylineCount = getPolylineCountOfPatch(patchIndex); resqml20__PolylineSetPatch* patch = static_cast<_resqml20__PolylineSetRepresentation*>(gsoapProxy2_0_1)->LinePatch[patchIndex]; diff --git a/src/resqml2_0_1/PolylineSetRepresentation.h b/src/resqml2_0_1/PolylineSetRepresentation.h index e6a488e3d..1dd269b67 100644 --- a/src/resqml2_0_1/PolylineSetRepresentation.h +++ b/src/resqml2_0_1/PolylineSetRepresentation.h @@ -90,11 +90,11 @@ namespace RESQML2_0_1_NS DLL_IMPORT_OR_EXPORT uint64_t getPolylineCountOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT void getNodeCountPerPolylineInPatch(unsigned int patchIndex, unsigned int * nodeCountPerPolyline) const final; + DLL_IMPORT_OR_EXPORT void getNodeCountPerPolylineInPatch(uint64_t patchIndex, unsigned int * nodeCountPerPolyline) const final; DLL_IMPORT_OR_EXPORT void getNodeCountPerPolylineOfAllPatches(unsigned int * NodeCountPerPolyline) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT uint64_t getPatchCount() const final; @@ -108,15 +108,15 @@ namespace RESQML2_0_1_NS uint64_t polylineCount, bool * polylineClosedFlags, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr) final; - DLL_IMPORT_OR_EXPORT bool areAllPolylinesClosedOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT bool areAllPolylinesClosedOfPatch(uint64_t patchIndex) const final; DLL_IMPORT_OR_EXPORT bool areAllPolylinesClosedOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT bool areAllPolylinesNonClosedOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT bool areAllPolylinesNonClosedOfPatch(uint64_t patchIndex) const final; DLL_IMPORT_OR_EXPORT bool areAllPolylinesNonClosedOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT void getClosedFlagPerPolylineOfPatch(unsigned int patchIndex, bool * closedFlagPerPolyline) const final; + DLL_IMPORT_OR_EXPORT void getClosedFlagPerPolylineOfPatch(uint64_t patchIndex, bool * closedFlagPerPolyline) const final; DLL_IMPORT_OR_EXPORT void getClosedFlagPerPolylineOfAllPatches(bool * closedFlagPerPolyline) const final; diff --git a/src/resqml2_0_1/PropertyKind.cpp b/src/resqml2_0_1/PropertyKind.cpp index a8a501ad3..8d51e57ed 100644 --- a/src/resqml2_0_1/PropertyKind.cpp +++ b/src/resqml2_0_1/PropertyKind.cpp @@ -155,8 +155,8 @@ std::string PropertyKind::getBaseUomAsString() const gsoap_resqml2_0_1::resqml20__ResqmlUom representativeUom = getSpecializedGsoapProxy()->RepresentativeUom; if (representativeUom == gsoap_resqml2_0_1::resqml20__ResqmlUom::Euc) { - unsigned int emCount = getExtraMetadataCount(); - for (unsigned int i = 0; i < emCount; ++i) { + const uint64_t emCount = getExtraMetadataCount(); + for (uint64_t i = 0; i < emCount; ++i) { if (getExtraMetadataKeyAtIndex(i) == "Uom") { return getExtraMetadataStringValueAtIndex(i); } diff --git a/src/resqml2_0_1/RockFluidUnitFeature.cpp b/src/resqml2_0_1/RockFluidUnitFeature.cpp index 7fd6276c4..fd0aabc64 100644 --- a/src/resqml2_0_1/RockFluidUnitFeature.cpp +++ b/src/resqml2_0_1/RockFluidUnitFeature.cpp @@ -20,7 +20,7 @@ under the License. #include "BoundaryFeature.h" -#include "../prodml2_2/FluidCharacterization.h" +#include "../prodml2_3/FluidCharacterization.h" using namespace std; using namespace RESQML2_0_1_NS; @@ -69,9 +69,9 @@ BoundaryFeature* RockFluidUnitFeature::getBottom() const return repository->getDataObjectByUuid(static_cast<_resqml20__RockFluidUnitFeature*>(gsoapProxy2_0_1)->FluidBoundaryBottom->UUID); } -std::vector RockFluidUnitFeature::getFluidCharacterizationSet() const +std::vector RockFluidUnitFeature::getFluidCharacterizationSet() const { - return repository->getSourceObjects(this); + return repository->getSourceObjects(this); } void RockFluidUnitFeature::loadTargetRelationships() diff --git a/src/resqml2_0_1/RockFluidUnitFeature.h b/src/resqml2_0_1/RockFluidUnitFeature.h index 2eac92c75..a82cd256e 100644 --- a/src/resqml2_0_1/RockFluidUnitFeature.h +++ b/src/resqml2_0_1/RockFluidUnitFeature.h @@ -20,7 +20,7 @@ under the License. #include "GeologicUnitFeature.h" -namespace PRODML2_2_NS { +namespace PRODML2_3_NS { /** A fluid characterization. */ class FluidCharacterization; } @@ -88,7 +88,7 @@ namespace RESQML2_0_1_NS * * @returns Null if it fails, else the fluid characterization set. */ - DLL_IMPORT_OR_EXPORT std::vector getFluidCharacterizationSet() const; + DLL_IMPORT_OR_EXPORT std::vector getFluidCharacterizationSet() const; /** * The standard XML tag without XML namespace for serializing this data object. diff --git a/src/resqml2_0_1/SealedSurfaceFrameworkRepresentation.cpp b/src/resqml2_0_1/SealedSurfaceFrameworkRepresentation.cpp index 4df7fec47..cff49f3a6 100644 --- a/src/resqml2_0_1/SealedSurfaceFrameworkRepresentation.cpp +++ b/src/resqml2_0_1/SealedSurfaceFrameworkRepresentation.cpp @@ -225,7 +225,7 @@ void SealedSurfaceFrameworkRepresentation::getIdenticalContactPatchNodeIndices(u throw invalid_argument("The nodes are all identical"); } - readArrayNdOfUInt32Values(getContact(crIndex)->IdenticalNodeIndices, nodeIndices); + readArrayNdOfIntegerValues(getContact(crIndex)->IdenticalNodeIndices, nodeIndices); } unsigned int SealedSurfaceFrameworkRepresentation::getContactPatchCount(unsigned int crIndex) const @@ -278,5 +278,5 @@ unsigned int SealedSurfaceFrameworkRepresentation::getContactPatchNodeCount(unsi void SealedSurfaceFrameworkRepresentation::getContactPatchNodeIndices(unsigned int crIndex, unsigned int cpIndex, unsigned int * nodeIndices) const { - readArrayNdOfUInt32Values(getContactPatch(crIndex, cpIndex)->SupportingRepresentationNodes, nodeIndices); + readArrayNdOfIntegerValues(getContactPatch(crIndex, cpIndex)->SupportingRepresentationNodes, nodeIndices); } diff --git a/src/resqml2_0_1/StreamlinesRepresentation.cpp b/src/resqml2_0_1/StreamlinesRepresentation.cpp index f7048bf97..afcf54c02 100644 --- a/src/resqml2_0_1/StreamlinesRepresentation.cpp +++ b/src/resqml2_0_1/StreamlinesRepresentation.cpp @@ -88,7 +88,7 @@ uint32_t StreamlinesRepresentation::getInjectorPerLine(uint32_t* injectorPerLine throw std::logic_error("There is no wellbore trajectory associated to this streamlines representation"); } - return readArrayNdOfUInt32Values(wellboresInfo->InjectorPerLine, injectorPerLine); + return readArrayNdOfIntegerValues(wellboresInfo->InjectorPerLine, injectorPerLine); } uint32_t StreamlinesRepresentation::getProducerPerLine(uint32_t* producerPerLine) const @@ -99,7 +99,7 @@ uint32_t StreamlinesRepresentation::getProducerPerLine(uint32_t* producerPerLine throw std::logic_error("There is no wellbore trajectory associated to this streamlines representation"); } - return readArrayNdOfUInt32Values(wellboresInfo->ProducerPerLine, producerPerLine); + return readArrayNdOfIntegerValues(wellboresInfo->ProducerPerLine, producerPerLine); } void StreamlinesRepresentation::setWellboreInformation(uint32_t const* injectorPerLine, uint32_t const* producerPerLine, const std::vector & wellboreTrajectories, @@ -171,7 +171,7 @@ void StreamlinesRepresentation::getNodeCountPerLine(uint32_t * nodeCountPerPolyl throw std::logic_error("There is no geometry associated to this streamlines representation"); } - readArrayNdOfUInt32Values(geometry->NodeCountPerPolyline, nodeCountPerPolyline); + readArrayNdOfIntegerValues(geometry->NodeCountPerPolyline, nodeCountPerPolyline); } void StreamlinesRepresentation::setGeometry( @@ -329,7 +329,7 @@ uint16_t StreamlinesRepresentation::getGridIndices(uint16_t * gridIndices) const throw std::logic_error("There is no grid associated to this streamlines representation"); } - return readArrayNdOfUInt16Values(gridLink->GridIndices, gridIndices); + return readArrayNdOfIntegerValues(gridLink->GridIndices, gridIndices); } int64_t StreamlinesRepresentation::getCellIndices(int64_t * cellIndices) const @@ -343,7 +343,7 @@ int64_t StreamlinesRepresentation::getCellIndices(int64_t * cellIndices) const throw std::logic_error("There is no grid associated to this streamlines representation"); } - return readArrayNdOfInt64Values(gridLink->CellIndices, cellIndices); + return readArrayNdOfIntegerValues(gridLink->CellIndices, cellIndices); } uint8_t StreamlinesRepresentation::getLocalFacePairPerCellIndices(uint8_t * localFacePairPerCellIndices) const @@ -357,7 +357,7 @@ uint8_t StreamlinesRepresentation::getLocalFacePairPerCellIndices(uint8_t * loca throw std::logic_error("There is no grid associated to this streamlines representation"); } - return readArrayNdOfUInt8Values(gridLink->LocalFacePairPerCellIndices, localFacePairPerCellIndices); + return readArrayNdOfIntegerValues(gridLink->LocalFacePairPerCellIndices, localFacePairPerCellIndices); } uint64_t StreamlinesRepresentation::getGridRepresentationCount() const diff --git a/src/resqml2_0_1/StreamlinesRepresentation.h b/src/resqml2_0_1/StreamlinesRepresentation.h index d62cc36e8..73001c666 100644 --- a/src/resqml2_0_1/StreamlinesRepresentation.h +++ b/src/resqml2_0_1/StreamlinesRepresentation.h @@ -159,7 +159,7 @@ namespace RESQML2_0_1_NS /** * Use linear interpolation between 2 trajectory stations. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int, double *) const final { + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t, double *) const final { throw std::logic_error("Streamlines have no XYZ information in version 2.0.1."); } diff --git a/src/resqml2_0_1/SubRepresentation.cpp b/src/resqml2_0_1/SubRepresentation.cpp index 2a1aff33e..5cf83f158 100644 --- a/src/resqml2_0_1/SubRepresentation.cpp +++ b/src/resqml2_0_1/SubRepresentation.cpp @@ -153,7 +153,7 @@ void SubRepresentation::pushBackRefToExistingDataset(gsoap_eml2_3::eml23__Indexa } } -DiscreteProperty* SubRepresentation::getSupportingRepresentationIndicesDiscretePropOfPatch(unsigned int patchIndex) const +DiscreteProperty* SubRepresentation::getSupportingRepresentationIndicesDiscretePropOfPatch(uint64_t patchIndex) const { ostringstream oss; oss << "SubRepresentationPatch[" << patchIndex << "]/ElementIndices/SupportingRepresentationIndex"; @@ -206,7 +206,7 @@ COMMON_NS::DataObjectReference SubRepresentation::getHdfProxyDor() const return COMMON_NS::DataObjectReference(); } -gsoap_eml2_3::eml23__IndexableElement SubRepresentation::getElementKindOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex) const +gsoap_eml2_3::eml23__IndexableElement SubRepresentation::getElementKindOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex) const { _resqml20__SubRepresentation* rep = getSpecializedGsoapProxy(); if (rep->SubRepresentationPatch.size() > patchIndex) { @@ -231,32 +231,27 @@ gsoap_eml2_3::eml23__IndexableElement SubRepresentation::getElementKindOfPatch(u } } -gsoap_resqml2_0_1::resqml20__SubRepresentationPatch* SubRepresentation::getSubRepresentationPatch(unsigned int index) const +gsoap_resqml2_0_1::resqml20__SubRepresentationPatch* SubRepresentation::getSubRepresentationPatch(uint64_t patchIndex) const { - _resqml20__SubRepresentation const* rep = getSpecializedGsoapProxy(); - if (rep->SubRepresentationPatch.size() > index) { - return rep->SubRepresentationPatch[index]; - } - - throw out_of_range("The patch does not exist at this index."); + return getSpecializedGsoapProxy()->SubRepresentationPatch.at(patchIndex); } -uint64_t SubRepresentation::getElementCountOfPatch(unsigned int patchIndex) const +uint64_t SubRepresentation::getElementCountOfPatch(uint64_t patchIndex) const { return getSubRepresentationPatch(patchIndex)->Count; } -bool SubRepresentation::areElementIndicesPairwise(unsigned int patchIndex) const +bool SubRepresentation::areElementIndicesPairwise(uint64_t patchIndex) const { return getSubRepresentationPatch(patchIndex)->ElementIndices.size() == 2; } -bool SubRepresentation::areElementIndicesBasedOnLattice(unsigned int patchIndex, unsigned int elementIndicesIndex) const +bool SubRepresentation::areElementIndicesBasedOnLattice(uint64_t patchIndex, unsigned int elementIndicesIndex) const { return getSubRepresentationPatch(patchIndex)->ElementIndices[elementIndicesIndex]->Indices->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__IntegerLatticeArray; } -int64_t SubRepresentation::getLatticeElementIndicesStartValue(unsigned int patchIndex, unsigned int elementIndicesIndex) const +int64_t SubRepresentation::getLatticeElementIndicesStartValue(uint64_t patchIndex, unsigned int elementIndicesIndex) const { _resqml20__SubRepresentation* rep = getSpecializedGsoapProxy(); @@ -271,7 +266,7 @@ int64_t SubRepresentation::getLatticeElementIndicesStartValue(unsigned int patch return lattice->StartValue; } -uint64_t SubRepresentation::getLatticeElementIndicesDimensionCount(unsigned int patchIndex, unsigned int elementIndicesIndex) const +uint64_t SubRepresentation::getLatticeElementIndicesDimensionCount(uint64_t patchIndex, unsigned int elementIndicesIndex) const { _resqml20__SubRepresentation const * rep = getSpecializedGsoapProxy(); @@ -286,7 +281,7 @@ uint64_t SubRepresentation::getLatticeElementIndicesDimensionCount(unsigned int return lattice->Offset.size(); } -int64_t SubRepresentation::getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex) const +int64_t SubRepresentation::getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex) const { _resqml20__SubRepresentation* rep = getSpecializedGsoapProxy(); @@ -302,7 +297,7 @@ int64_t SubRepresentation::getLatticeElementIndicesOffsetValue(unsigned int latt return lattice->Offset[latticeDimensionIndex]->Value; } -uint64_t SubRepresentation::getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex) const +uint64_t SubRepresentation::getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex) const { _resqml20__SubRepresentation* rep = getSpecializedGsoapProxy(); @@ -321,7 +316,7 @@ uint64_t SubRepresentation::getLatticeElementIndicesOffsetCount(unsigned int lat return lattice->Offset[latticeDimensionIndex]->Count; } -void SubRepresentation::getElementIndicesOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const +void SubRepresentation::getElementIndicesOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const { _resqml20__SubRepresentation* rep = getSpecializedGsoapProxy(); if (rep->SubRepresentationPatch.size() <= patchIndex) { @@ -331,10 +326,10 @@ void SubRepresentation::getElementIndicesOfPatch(unsigned int patchIndex, unsign throw out_of_range("The elementIndices does not exist at this index."); } - readArrayNdOfUInt64Values(rep->SubRepresentationPatch[patchIndex]->ElementIndices[elementIndicesIndex]->Indices, elementIndices); + readArrayNdOfIntegerValues(rep->SubRepresentationPatch[patchIndex]->ElementIndices[elementIndicesIndex]->Indices, elementIndices); } -void SubRepresentation::getSupportingRepresentationIndicesOfPatch(unsigned int patchIndex, short * supportingRepresentationIndices) const +void SubRepresentation::getSupportingRepresentationIndicesOfPatch(uint64_t patchIndex, short * supportingRepresentationIndices) const { const _resqml20__SubRepresentation* rep = getSpecializedGsoapProxy(); if (rep->SubRepresentationPatch.size() <= patchIndex) { @@ -350,7 +345,7 @@ void SubRepresentation::getSupportingRepresentationIndicesOfPatch(unsigned int p } DiscreteProperty* prop = getSupportingRepresentationIndicesDiscretePropOfPatch(patchIndex); - prop->getInt16ValuesOfPatch(0, supportingRepresentationIndices); + prop->getArrayOfValuesOfPatch(0, supportingRepresentationIndices); } uint64_t SubRepresentation::getPatchCount() const diff --git a/src/resqml2_0_1/SubRepresentation.h b/src/resqml2_0_1/SubRepresentation.h index fe37b6c7e..9b265cfc8 100644 --- a/src/resqml2_0_1/SubRepresentation.h +++ b/src/resqml2_0_1/SubRepresentation.h @@ -72,22 +72,22 @@ namespace RESQML2_0_1_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex) const final; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex) const final; - DLL_IMPORT_OR_EXPORT uint64_t getElementCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getElementCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getElementIndicesOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const final; + DLL_IMPORT_OR_EXPORT void getElementIndicesOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const final; - DLL_IMPORT_OR_EXPORT void getSupportingRepresentationIndicesOfPatch(unsigned int patchIndex, short * supportingRepresentationIndices) const final; + DLL_IMPORT_OR_EXPORT void getSupportingRepresentationIndicesOfPatch(uint64_t patchIndex, short * supportingRepresentationIndices) const final; - DLL_IMPORT_OR_EXPORT bool areElementIndicesPairwise(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT bool areElementIndicesPairwise(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT bool areElementIndicesBasedOnLattice(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT bool areElementIndicesBasedOnLattice(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; - DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesStartValue(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; - DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesDimensionCount(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; - DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; - DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesStartValue(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; + DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesDimensionCount(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; using RESQML2_NS::SubRepresentation::pushBackSubRepresentationPatch; @@ -139,9 +139,9 @@ namespace RESQML2_0_1_NS gsoap_resqml2_0_1::_resqml20__SubRepresentation* getSpecializedGsoapProxy() const; /** - * Get a patch of the current subrepresentation at a particluar index. + * Get a patch of the current subrepresentation at a particular patch index. */ - gsoap_resqml2_0_1::resqml20__SubRepresentationPatch* getSubRepresentationPatch(unsigned int index) const; + gsoap_resqml2_0_1::resqml20__SubRepresentationPatch* getSubRepresentationPatch(uint64_t patchIndex) const; /** * Push back a representation which is one of the support of this subrepresentation. And push @@ -151,6 +151,6 @@ namespace RESQML2_0_1_NS */ void pushBackXmlSupportingRepresentation(RESQML2_NS::AbstractRepresentation const * supportingRep); - class DiscreteProperty* getSupportingRepresentationIndicesDiscretePropOfPatch(unsigned int patchIndex) const; + class DiscreteProperty* getSupportingRepresentationIndicesDiscretePropOfPatch(uint64_t patchIndex) const; }; } diff --git a/src/resqml2_0_1/TriangulatedSetRepresentation.cpp b/src/resqml2_0_1/TriangulatedSetRepresentation.cpp index 13370f913..072686353 100644 --- a/src/resqml2_0_1/TriangulatedSetRepresentation.cpp +++ b/src/resqml2_0_1/TriangulatedSetRepresentation.cpp @@ -125,12 +125,12 @@ void TriangulatedSetRepresentation::pushBackTrianglePatch( dim, 2); } -uint64_t TriangulatedSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t TriangulatedSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { return static_cast<_resqml20__TriangulatedSetRepresentation const*>(gsoapProxy2_0_1)->TrianglePatch.at(patchIndex)->NodeCount; } -void TriangulatedSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double* xyzPoints) const +void TriangulatedSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double* xyzPoints) const { resqml20__PointGeometry const* pointGeom = getPointGeometry2_0_1(patchIndex); if (pointGeom != nullptr && pointGeom->Points->soap_type() == SOAP_TYPE_gsoap_resqml2_0_1_resqml20__Point3dHdf5Array) @@ -143,7 +143,7 @@ void TriangulatedSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, throw invalid_argument("The geometry of the representation either does not exist or it is not an explicit one."); } -uint64_t TriangulatedSetRepresentation::getTriangleCountOfPatch(unsigned int patchIndex) const +uint64_t TriangulatedSetRepresentation::getTriangleCountOfPatch(uint64_t patchIndex) const { return static_cast<_resqml20__TriangulatedSetRepresentation const*>(gsoapProxy2_0_1)->TrianglePatch.at(patchIndex)->Count; } @@ -160,9 +160,9 @@ uint64_t TriangulatedSetRepresentation::getTriangleCountOfAllPatches() const ); } -void TriangulatedSetRepresentation::getTriangleNodeIndicesOfPatch(unsigned int patchIndex, unsigned int* triangleNodeIndices) const +void TriangulatedSetRepresentation::getTriangleNodeIndicesOfPatch(uint64_t patchIndex, unsigned int* triangleNodeIndices) const { - readArrayNdOfUInt32Values(static_cast<_resqml20__TriangulatedSetRepresentation const*>(gsoapProxy2_0_1)->TrianglePatch.at(patchIndex)->Triangles, triangleNodeIndices); + readArrayNdOfIntegerValues(static_cast<_resqml20__TriangulatedSetRepresentation const*>(gsoapProxy2_0_1)->TrianglePatch.at(patchIndex)->Triangles, triangleNodeIndices); } void TriangulatedSetRepresentation::getTriangleNodeIndicesOfAllPatches(unsigned int* triangleNodeIndices) const diff --git a/src/resqml2_0_1/TriangulatedSetRepresentation.h b/src/resqml2_0_1/TriangulatedSetRepresentation.h index 975646031..617e7448c 100644 --- a/src/resqml2_0_1/TriangulatedSetRepresentation.h +++ b/src/resqml2_0_1/TriangulatedSetRepresentation.h @@ -78,15 +78,15 @@ namespace RESQML2_0_1_NS DLL_IMPORT_OR_EXPORT void pushBackTrianglePatch(unsigned int nodeCount, double const * nodes, unsigned int triangleCount, unsigned int const * triangleNodeIndices, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr) final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; - DLL_IMPORT_OR_EXPORT uint64_t getTriangleCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getTriangleCountOfPatch(uint64_t patchIndex) const final; DLL_IMPORT_OR_EXPORT uint64_t getTriangleCountOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT void getTriangleNodeIndicesOfPatch(unsigned int patchIndex, unsigned int * triangleNodeIndices) const final; + DLL_IMPORT_OR_EXPORT void getTriangleNodeIndicesOfPatch(uint64_t patchIndex, unsigned int * triangleNodeIndices) const final; DLL_IMPORT_OR_EXPORT void getTriangleNodeIndicesOfAllPatches(unsigned int * triangleNodeIndices) const final; diff --git a/src/resqml2_0_1/UnstructuredGridRepresentation.cpp b/src/resqml2_0_1/UnstructuredGridRepresentation.cpp index 75e737371..3cf13ebc9 100644 --- a/src/resqml2_0_1/UnstructuredGridRepresentation.cpp +++ b/src/resqml2_0_1/UnstructuredGridRepresentation.cpp @@ -120,7 +120,7 @@ uint64_t UnstructuredGridRepresentation::getNodeCount() const return 0; } -void UnstructuredGridRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void UnstructuredGridRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2_0_1/UnstructuredGridRepresentation.h b/src/resqml2_0_1/UnstructuredGridRepresentation.h index 8e96ad4e4..cd2336d7d 100644 --- a/src/resqml2_0_1/UnstructuredGridRepresentation.h +++ b/src/resqml2_0_1/UnstructuredGridRepresentation.h @@ -80,7 +80,7 @@ namespace RESQML2_0_1_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT void getFaceIndicesOfCells(uint64_t * faceIndices) const final; diff --git a/src/resqml2_0_1/WellboreTrajectoryRepresentation.cpp b/src/resqml2_0_1/WellboreTrajectoryRepresentation.cpp index 3037cbe15..c679e26b7 100644 --- a/src/resqml2_0_1/WellboreTrajectoryRepresentation.cpp +++ b/src/resqml2_0_1/WellboreTrajectoryRepresentation.cpp @@ -241,7 +241,7 @@ double WellboreTrajectoryRepresentation::getParentTrajectoryMd() const throw logic_error("This wellbore trajectory has no parent trajecory."); } -uint64_t WellboreTrajectoryRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t WellboreTrajectoryRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The index patch is not in the allowed range of patch."); @@ -254,7 +254,7 @@ uint64_t WellboreTrajectoryRepresentation::getXyzPointCountOfPatch(unsigned int return static_cast(rep->Geometry)->KnotCount; } -void WellboreTrajectoryRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void WellboreTrajectoryRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); diff --git a/src/resqml2_0_1/WellboreTrajectoryRepresentation.h b/src/resqml2_0_1/WellboreTrajectoryRepresentation.h index 281f32914..c554dfc6b 100644 --- a/src/resqml2_0_1/WellboreTrajectoryRepresentation.h +++ b/src/resqml2_0_1/WellboreTrajectoryRepresentation.h @@ -104,7 +104,7 @@ namespace RESQML2_0_1_NS DLL_IMPORT_OR_EXPORT COMMON_NS::DataObjectReference getMdDatumDor() const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * @copybrief resqml2::AbstractRepresentation::getXyzPointsOfPatch @@ -114,7 +114,7 @@ namespace RESQML2_0_1_NS * * @copydetails resqml2::AbstractRepresentation::getXyzPointsOfPatch */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT bool hasMdValues() const final; diff --git a/src/resqml2_2/BlockedWellboreRepresentation.cpp b/src/resqml2_2/BlockedWellboreRepresentation.cpp index 107937146..8442651d3 100644 --- a/src/resqml2_2/BlockedWellboreRepresentation.cpp +++ b/src/resqml2_2/BlockedWellboreRepresentation.cpp @@ -146,22 +146,22 @@ uint64_t BlockedWellboreRepresentation::getCellCount() const return static_cast<_resqml22__BlockedWellboreRepresentation*>(gsoapProxy2_3)->IntervalGridCells->CellCount; } -int8_t BlockedWellboreRepresentation::getGridIndices(int8_t * gridIndices) const +int8_t BlockedWellboreRepresentation::getGridIndices(int8_t* gridIndices) const { auto const* xmlGridIndices = static_cast<_resqml22__BlockedWellboreRepresentation*>(gsoapProxy2_3)->IntervalGridCells->GridIndices; - return readArrayNdOfInt8Values(xmlGridIndices, gridIndices); + return readArrayNdOfIntegerValues(xmlGridIndices, gridIndices); } int64_t BlockedWellboreRepresentation::getCellIndices(int64_t* cellIndices) const { auto const* xmlCellIndices = static_cast<_resqml22__BlockedWellboreRepresentation*>(gsoapProxy2_3)->IntervalGridCells->CellIndices; - return readArrayNdOfInt64Values(xmlCellIndices, cellIndices); + return readArrayNdOfIntegerValues(xmlCellIndices, cellIndices); } int8_t BlockedWellboreRepresentation::getLocalFacePairPerCellIndices(int8_t* localFacePairPerCellIndices) const { auto const* xmlLocalFacePairPerCellIndices = static_cast<_resqml22__BlockedWellboreRepresentation*>(gsoapProxy2_3)->IntervalGridCells->LocalFacePairPerCellIndices; - return readArrayNdOfInt8Values(xmlLocalFacePairPerCellIndices, localFacePairPerCellIndices); + return readArrayNdOfIntegerValues(xmlLocalFacePairPerCellIndices, localFacePairPerCellIndices); } void BlockedWellboreRepresentation::pushBackSupportingGridRepresentation(RESQML2_NS::AbstractGridRepresentation * supportingGridRep) diff --git a/src/resqml2_2/CommentProperty.cpp b/src/resqml2_2/CommentProperty.cpp index b5be795df..40fe2eb50 100644 --- a/src/resqml2_2/CommentProperty.cpp +++ b/src/resqml2_2/CommentProperty.cpp @@ -75,7 +75,7 @@ std::string CommentProperty::pushBackRefToExistingDataset(EML2_NS::AbstractHdfPr return actualDataArrayName; } -EML2_NS::AbstractHdfProxy* CommentProperty::getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string& datasetPath) const +EML2_NS::AbstractHdfProxy* CommentProperty::getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string& datasetPath) const { // Look for the hdf where the comments are stored. _resqml22__CommentProperty* prop = static_cast<_resqml22__CommentProperty*>(gsoapProxy2_3); diff --git a/src/resqml2_2/CommentProperty.h b/src/resqml2_2/CommentProperty.h index ecc00c17a..7993bb740 100644 --- a/src/resqml2_2/CommentProperty.h +++ b/src/resqml2_2/CommentProperty.h @@ -83,6 +83,6 @@ namespace RESQML2_2_NS DLL_IMPORT_OR_EXPORT std::string getXmlNamespace() const final { return XML_NS; } private: - EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const final; + EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const final; }; } diff --git a/src/resqml2_2/ContinuousProperty.cpp b/src/resqml2_2/ContinuousProperty.cpp index db8fa348d..b1da52f39 100644 --- a/src/resqml2_2/ContinuousProperty.cpp +++ b/src/resqml2_2/ContinuousProperty.cpp @@ -82,7 +82,7 @@ std::string ContinuousProperty::getUomAsString() const return static_cast<_resqml22__ContinuousProperty*>(gsoapProxy2_3)->Uom; } -double ContinuousProperty::getMinimumValue(unsigned int index) const +double ContinuousProperty::getMinimumValue(uint64_t index) const { _resqml22__ContinuousProperty* prop = static_cast<_resqml22__ContinuousProperty*>(gsoapProxy2_3); @@ -98,7 +98,7 @@ double ContinuousProperty::getMinimumValue(unsigned int index) const return result; } -double ContinuousProperty::getMaximumValue(unsigned int index) const +double ContinuousProperty::getMaximumValue(uint64_t index) const { _resqml22__ContinuousProperty* prop = static_cast<_resqml22__ContinuousProperty*>(gsoapProxy2_3); @@ -114,7 +114,7 @@ double ContinuousProperty::getMaximumValue(unsigned int index) const return result; } -void ContinuousProperty::setMinimumValue(double value, unsigned int index) const +void ContinuousProperty::setMinimumValue(double value, uint64_t index) const { _resqml22__ContinuousProperty* prop = static_cast<_resqml22__ContinuousProperty*>(gsoapProxy2_3); @@ -132,7 +132,7 @@ void ContinuousProperty::setMinimumValue(double value, unsigned int index) const } } -void ContinuousProperty::setMaximumValue(double value, unsigned int index) const +void ContinuousProperty::setMaximumValue(double value, uint64_t index) const { _resqml22__ContinuousProperty* prop = static_cast<_resqml22__ContinuousProperty*>(gsoapProxy2_3); diff --git a/src/resqml2_2/ContinuousProperty.h b/src/resqml2_2/ContinuousProperty.h index 6c6c6f450..c8b4a7ee9 100644 --- a/src/resqml2_2/ContinuousProperty.h +++ b/src/resqml2_2/ContinuousProperty.h @@ -106,18 +106,25 @@ namespace RESQML2_2_NS DLL_IMPORT_OR_EXPORT std::string getUomAsString() const final; - DLL_IMPORT_OR_EXPORT double getMinimumValue(unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT double getMinimumValue(uint64_t index = 0) const final; - DLL_IMPORT_OR_EXPORT double getMaximumValue(unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT double getMaximumValue(uint64_t index = 0) const final; - DLL_IMPORT_OR_EXPORT void setMinimumValue(double value, unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT void setMinimumValue(double value, uint64_t index = 0) const final; - DLL_IMPORT_OR_EXPORT void setMaximumValue(double value, unsigned int index = 0) const final; + DLL_IMPORT_OR_EXPORT void setMaximumValue(double value, uint64_t index = 0) const final; bool validatePropertyKindAssociation(EML2_NS::PropertyKind*) final { return true; } bool validatePropertyKindAssociation(gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind) final { return true; } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getFloatStatistics(uint64_t patchIndex) const final { + return getStats(patchIndex); + } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getDoubleStatistics(uint64_t patchIndex) const final { + return getStats(patchIndex); + } + /** * The standard XML namespace for serializing this data object. */ @@ -145,5 +152,44 @@ namespace RESQML2_2_NS size_t getMinimumValueSize() const { return 1; } size_t getMaximumValueSize() const { return 1; } + + template + COMMON_NS::NumberArrayStatistics getStats(uint64_t patchIndex) const { + COMMON_NS::NumberArrayStatistics result; + + const auto* valuesforPatch = static_cast(gsoapProxy2_3)->ValuesForPatch.at(patchIndex); + auto const* xmlArray = dynamic_cast(valuesforPatch); + if (xmlArray == nullptr) return result; + + for (size_t i = 0; i < xmlArray->Statistics.size(); ++i) { + auto const* stats = xmlArray->Statistics[i]; + if (stats->MaximumValue) { + result.setMaximum(*stats->MaximumValue, i); + } + if (stats->MinimumValue) { + result.setMinimum(*stats->MinimumValue, i); + } + if (stats->ModePercentage) { + result.setModePercentage(*stats->ModePercentage, i); + } + if (stats->ValidValueCount) { + result.setValidValueCount(*stats->ValidValueCount, i); + } + if (stats->ValuesMedian) { + result.setMedian(*stats->ValuesMedian, i); + } + if (stats->ValuesMode) { + result.setMode(*stats->ValuesMode, i); + } + if (stats->ValuesMean) { + result.setMean(*stats->ValuesMean, i); + } + if (stats->ValuesStandardDeviation) { + result.setStandardDeviation(*stats->ValuesStandardDeviation, i); + } + } + + return result; + } }; } diff --git a/src/resqml2_2/DiscreteProperty.h b/src/resqml2_2/DiscreteProperty.h index 828e0f924..c2103dea5 100644 --- a/src/resqml2_2/DiscreteProperty.h +++ b/src/resqml2_2/DiscreteProperty.h @@ -89,6 +89,15 @@ namespace RESQML2_2_NS bool validatePropertyKindAssociation(gsoap_resqml2_0_1::resqml20__ResqmlPropertyKind) final { return true; } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt8Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt8Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt16Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt16Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt32Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt32Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getInt64Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + DLL_IMPORT_OR_EXPORT COMMON_NS::NumberArrayStatistics getUInt64Statistics(uint64_t patchIndex) const final { return getStats(patchIndex); } + /** * The standard XML namespace for serializing this data object. */ @@ -103,5 +112,83 @@ namespace RESQML2_2_NS size_t getMinimumValueSize() const; size_t getMaximumValueSize() const; + + template + COMMON_NS::NumberArrayStatistics getStats(uint64_t patchIndex) const { + auto nullValue = getNullValueOfPatch(patchIndex); + if constexpr (std::is_signed_v) { + if (nullValue > (std::numeric_limits::max)() || nullValue < (std::numeric_limits::min)()) { + nullValue = (std::numeric_limits::max)(); + } + } + else { + if (nullValue > 0 || static_cast(nullValue) < (std::numeric_limits::min)()) { + nullValue = (std::numeric_limits::max)(); + } + } + COMMON_NS::NumberArrayStatistics result; + result.setNullValue(static_cast(nullValue)); + + const auto* valuesforPatch = static_cast(gsoapProxy2_3)->ValuesForPatch.at(patchIndex); + auto const* intArray = dynamic_cast(valuesforPatch); + if (intArray == nullptr) return result; + + for (size_t i = 0; i < intArray->Statistics.size(); ++i) { + auto const* stats = intArray->Statistics[i]; + if (stats->MaximumValue) { + if constexpr (std::is_signed_v) { + if (*stats->MaximumValue > (std::numeric_limits::min)() && + *stats->MaximumValue < (std::numeric_limits::max)()) { + result.setMaximum(static_cast(*stats->MaximumValue), i); + } + } + else { + if (*stats->MaximumValue > 0 && + static_cast(*stats->MaximumValue) < (std::numeric_limits::max)()) { + result.setMaximum(static_cast(*stats->MaximumValue), i); + } + } + } + if (stats->MinimumValue) { + if constexpr (std::is_signed_v) { + if (*stats->MinimumValue > (std::numeric_limits::min)() && + *stats->MinimumValue < (std::numeric_limits::max)()) { + result.setMinimum(static_cast(*stats->MinimumValue), i); + } + } + else { + if (*stats->MinimumValue > 0 && + static_cast(*stats->MinimumValue) < (std::numeric_limits::max)()) { + result.setMinimum(static_cast(*stats->MinimumValue), i); + } + } + } + if (stats->ModePercentage) { + result.setModePercentage(*stats->ModePercentage, i); + } + if (stats->ValidValueCount) { + result.setValidValueCount(*stats->ValidValueCount, i); + } + if (stats->ValuesMedian) { + result.setMedian(*stats->ValuesMedian, i); + } + if (stats->ValuesMode) { + if constexpr (std::is_signed_v) { + if (*stats->ValuesMode > (std::numeric_limits::min)() && + *stats->ValuesMode < (std::numeric_limits::max)()) { + result.setMode(static_cast(*stats->ValuesMode), i); + } + } + else { + if (*stats->ValuesMode > 0 && + static_cast(*stats->ValuesMode) < (std::numeric_limits::max)()) { + result.setMode(static_cast(*stats->ValuesMode), i); + } + } + } + } + + return result; + } }; } diff --git a/src/resqml2_2/Grid2dRepresentation.cpp b/src/resqml2_2/Grid2dRepresentation.cpp index 6a3f0402f..e6775445c 100644 --- a/src/resqml2_2/Grid2dRepresentation.cpp +++ b/src/resqml2_2/Grid2dRepresentation.cpp @@ -707,7 +707,7 @@ resqml22__PointGeometry* Grid2dRepresentation::createArray2dOfLatticePoints3d( } resqml22__PointGeometry* Grid2dRepresentation::createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy * proxy, RESQML2_NS::Grid2dRepresentation * supportingRepresentation, uint64_t startGlobalIndex, @@ -771,7 +771,7 @@ resqml22__PointGeometry* Grid2dRepresentation::createArray2dOfExplicitZ( } resqml22__PointGeometry* Grid2dRepresentation::createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy * proxy, double originX, double originY, double originZ, double offsetIX, double offsetIY, double offsetIZ, double spacingI, diff --git a/src/resqml2_2/Grid2dRepresentation.h b/src/resqml2_2/Grid2dRepresentation.h index 1ec2b3f31..211273fc8 100644 --- a/src/resqml2_2/Grid2dRepresentation.h +++ b/src/resqml2_2/Grid2dRepresentation.h @@ -216,7 +216,7 @@ namespace RESQML2_2_NS * @returns Null if it fails, else the new array 2D of explicit z coordinate. */ gsoap_eml2_3::resqml22__PointGeometry* createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy* proxy, RESQML2_NS::Grid2dRepresentation * supportingRepresentation, uint64_t startGlobalIndex = 0, @@ -248,7 +248,7 @@ namespace RESQML2_2_NS * @returns Null if it fails, else the new array 2D of explicit z coordinate. */ gsoap_eml2_3::resqml22__PointGeometry* createArray2dOfExplicitZ( - unsigned int patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, + uint64_t patchIndex, double * zValues, EML2_NS::AbstractLocal3dCrs * localCrs, unsigned int numI, unsigned int numJ, EML2_NS::AbstractHdfProxy* proxy, double originX, double originY, double originZ, double offsetIX, double offsetIY, double offsetIZ, double spacingI, diff --git a/src/resqml2_2/GridConnectionSetRepresentation.cpp b/src/resqml2_2/GridConnectionSetRepresentation.cpp index 8b7cf8d71..fa149f48b 100644 --- a/src/resqml2_2/GridConnectionSetRepresentation.cpp +++ b/src/resqml2_2/GridConnectionSetRepresentation.cpp @@ -142,7 +142,7 @@ void GridConnectionSetRepresentation::getInterpretationIndexCumulativeCount(uint { if (isAssociatedToInterpretations()) { _resqml22__GridConnectionSetRepresentation const* rep = static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3); - readArrayNdOfUInt64Values(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount); + readArrayNdOfIntegerValues(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount); } else { throw std::invalid_argument("The grid connection does not contain any interpretation association."); @@ -155,7 +155,7 @@ void GridConnectionSetRepresentation::getInterpretationIndices(int64_t * interpr _resqml22__GridConnectionSetRepresentation* rep = static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3); auto const* integerArray = dynamic_cast(rep->ConnectionInterpretations->InterpretationIndices->Elements); if (integerArray != nullptr) { - readArrayNdOfInt64Values(integerArray, interpretationIndices); + readArrayNdOfIntegerValues(integerArray, interpretationIndices); } else { throw std::logic_error("The interpretation indices array should be an integer one."); @@ -204,7 +204,7 @@ uint64_t GridConnectionSetRepresentation::getCellIndexPairCountFromInterpretatio } else { std::unique_ptr const cumulative(new unsigned int[totalCellIndexPairCount]); - readArrayNdOfUInt32Values(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulative.get()); + readArrayNdOfIntegerValues(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulative.get()); result = cumulative[0] > 0 ? 0 : 1; for (uint64_t i = 1; i < totalCellIndexPairCount; ++i) { if (cumulative[i] == cumulative[i - 1]) { @@ -271,7 +271,7 @@ void GridConnectionSetRepresentation::getGridConnectionSetInformationFromInterpr std::unique_ptr cumulativeCount(new unsigned int[totalCellIndexPairCount]); if (interpCount > 0) { - readArrayNdOfUInt32Values(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount.get()); + readArrayNdOfIntegerValues(rep->ConnectionInterpretations->InterpretationIndices->CumulativeLength, cumulativeCount.get()); } else { std::fill(cumulativeCount.get(), cumulativeCount.get() + totalCellIndexPairCount, 0); @@ -313,7 +313,7 @@ void GridConnectionSetRepresentation::getGridConnectionSetInformationFromInterpr std::unique_ptr faultIndices(new int64_t[getCountOfArray(xmlArray)]); eml23__AbstractIntegerArray const* xmlIntArray = dynamic_cast(xmlArray); if (xmlIntArray != nullptr) { - readArrayNdOfInt64Values(xmlIntArray, faultIndices.get()); + readArrayNdOfIntegerValues(xmlIntArray, faultIndices.get()); } else { throw std::logic_error("Interpretation indices: only integer arrays are supported for now"); @@ -370,7 +370,7 @@ uint64_t GridConnectionSetRepresentation::getInterpretationCount() const int64_t GridConnectionSetRepresentation::getCellIndexPairs(int64_t* cellIndexPairs) const { - return readArrayNdOfInt64Values(static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3)->CellIndexPairs, cellIndexPairs); + return readArrayNdOfIntegerValues(static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3)->CellIndexPairs, cellIndexPairs); } bool GridConnectionSetRepresentation::isBasedOnMultiGrids() const @@ -386,7 +386,7 @@ void GridConnectionSetRepresentation::getGridIndexPairs(unsigned short* gridInde if (!isBasedOnMultiGrids()) { throw std::invalid_argument("This representation has no multiple grid support."); } - readArrayNdOfUInt16Values(static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3)->GridIndexPairs, gridIndexPairs); + readArrayNdOfIntegerValues(static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3)->GridIndexPairs, gridIndexPairs); } bool GridConnectionSetRepresentation::hasLocalFacePerCell() const @@ -399,7 +399,7 @@ int64_t GridConnectionSetRepresentation::getLocalFacePerCellIndexPairs(int* loca if (!hasLocalFacePerCell()) { throw std::invalid_argument("This representation has no local face per cell."); } - return readArrayNdOfInt32Values(static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3)->LocalFacePerCellIndexPairs, localFaceCellIndexPairs); + return readArrayNdOfIntegerValues(static_cast<_resqml22__GridConnectionSetRepresentation*>(gsoapProxy2_3)->LocalFacePerCellIndexPairs, localFaceCellIndexPairs); } void GridConnectionSetRepresentation::pushBackXmlSupportingGridRepresentation(RESQML2_NS::AbstractGridRepresentation * supportingGridRep) diff --git a/src/resqml2_2/IjkGridExplicitRepresentation.cpp b/src/resqml2_2/IjkGridExplicitRepresentation.cpp index 15276a636..153664ce7 100644 --- a/src/resqml2_2/IjkGridExplicitRepresentation.cpp +++ b/src/resqml2_2/IjkGridExplicitRepresentation.cpp @@ -53,7 +53,7 @@ EML2_NS::AbstractHdfProxy* IjkGridExplicitRepresentation::getPointDatasetPath(st } } -void IjkGridExplicitRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void IjkGridExplicitRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("An ijk grid has a maximum of one patch."); diff --git a/src/resqml2_2/IjkGridExplicitRepresentation.h b/src/resqml2_2/IjkGridExplicitRepresentation.h index f2e023cf6..c792aef98 100644 --- a/src/resqml2_2/IjkGridExplicitRepresentation.h +++ b/src/resqml2_2/IjkGridExplicitRepresentation.h @@ -104,7 +104,7 @@ namespace RESQML2_2_NS * * @copydetails resqml2::AbstractIjkGridRepresentation::getXyzPointsOfPatch */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT void setGeometryAsCoordinateLineNodes( gsoap_resqml2_0_1::resqml20__PillarShape mostComplexPillarGeometry, gsoap_resqml2_0_1::resqml20__KDirection kDirectionKind, bool isRightHanded, diff --git a/src/resqml2_2/IjkGridLatticeRepresentation.cpp b/src/resqml2_2/IjkGridLatticeRepresentation.cpp index 33615d829..1c354f92b 100644 --- a/src/resqml2_2/IjkGridLatticeRepresentation.cpp +++ b/src/resqml2_2/IjkGridLatticeRepresentation.cpp @@ -383,7 +383,7 @@ void IjkGridLatticeRepresentation::setGeometryAsCoordinateLineNodes( } void IjkGridLatticeRepresentation::addSeismic3dCoordinatesToPatch( - unsigned int patchIndex, + uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, unsigned int countSample, RESQML2_NS::AbstractRepresentation * seismicSupport) diff --git a/src/resqml2_2/IjkGridLatticeRepresentation.h b/src/resqml2_2/IjkGridLatticeRepresentation.h index 39a820a4e..8808aba25 100644 --- a/src/resqml2_2/IjkGridLatticeRepresentation.h +++ b/src/resqml2_2/IjkGridLatticeRepresentation.h @@ -133,7 +133,7 @@ namespace RESQML2_2_NS double directionKX, double directionKY, double directionKZ, double spacingK, EML2_NS::AbstractLocal3dCrs * localCrs = nullptr) final; DLL_IMPORT_OR_EXPORT void addSeismic3dCoordinatesToPatch( - unsigned int patchIndex, + uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, unsigned int countSample, RESQML2_NS::AbstractRepresentation * seismicSupport) final; diff --git a/src/resqml2_2/IjkGridParametricRepresentation.cpp b/src/resqml2_2/IjkGridParametricRepresentation.cpp index 0f4d90f4e..ab563d49f 100644 --- a/src/resqml2_2/IjkGridParametricRepresentation.cpp +++ b/src/resqml2_2/IjkGridParametricRepresentation.cpp @@ -204,7 +204,7 @@ COMMON_NS::DataObjectReference IjkGridParametricRepresentation::getHdfProxyDor() throw std::logic_error("Not yet implemented"); } -void IjkGridParametricRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void IjkGridParametricRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { getXyzPointsFromParametricPoints(xyzPoints); diff --git a/src/resqml2_2/IjkGridParametricRepresentation.h b/src/resqml2_2/IjkGridParametricRepresentation.h index 6dafa0f73..927835c13 100644 --- a/src/resqml2_2/IjkGridParametricRepresentation.h +++ b/src/resqml2_2/IjkGridParametricRepresentation.h @@ -103,7 +103,7 @@ namespace RESQML2_2_NS * * @copydetails resqml2::AbstractIjkGridRepresentation::getXyzPointsOfPatch */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT unsigned int getControlPointMaxCountPerPillar() const final; diff --git a/src/resqml2_2/PlaneSetRepresentation.cpp b/src/resqml2_2/PlaneSetRepresentation.cpp index 6d97d8220..ff387d2c1 100644 --- a/src/resqml2_2/PlaneSetRepresentation.cpp +++ b/src/resqml2_2/PlaneSetRepresentation.cpp @@ -111,7 +111,7 @@ void PlaneSetRepresentation::pushBackTiltedPlaneGeometryPatch( getRepository()->addRelationship(this, localCrs); } -uint64_t PlaneSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PlaneSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); @@ -123,7 +123,7 @@ uint64_t PlaneSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex : static_cast(rep->Planes[patchIndex])->Plane.size() * 3; } -void PlaneSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PlaneSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); diff --git a/src/resqml2_2/PlaneSetRepresentation.h b/src/resqml2_2/PlaneSetRepresentation.h index 7abc7f6f7..d0a1cbb51 100644 --- a/src/resqml2_2/PlaneSetRepresentation.h +++ b/src/resqml2_2/PlaneSetRepresentation.h @@ -61,7 +61,7 @@ namespace RESQML2_2_NS COMMON_NS::DataObjectReference getLocalCrsDor(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Get all the XYZ points of a particular patch of this representation. XYZ points are given in @@ -72,7 +72,7 @@ namespace RESQML2_2_NS * coordinate dimension (XYZ) and second dimension is vertex * dimension. It must be pre allocated. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; /** * Get the number of triangle patch diff --git a/src/resqml2_2/PointSetRepresentation.cpp b/src/resqml2_2/PointSetRepresentation.cpp index 78bb2d252..7b20bcdf0 100644 --- a/src/resqml2_2/PointSetRepresentation.cpp +++ b/src/resqml2_2/PointSetRepresentation.cpp @@ -109,7 +109,7 @@ resqml22__PointGeometry* PointSetRepresentation::getPointGeometry2_2(uint64_t pa return static_cast<_resqml22__PointSetRepresentation*>(gsoapProxy2_3)->NodePatchGeometry.at(patchIndex); } -uint64_t PointSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PointSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -140,7 +140,7 @@ uint64_t PointSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex } } -void PointSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PointSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { resqml22__PointGeometry const* pointGeom = getPointGeometry2_2(patchIndex); if (pointGeom != nullptr) { diff --git a/src/resqml2_2/PointSetRepresentation.h b/src/resqml2_2/PointSetRepresentation.h index 92aab0c51..a733f9401 100644 --- a/src/resqml2_2/PointSetRepresentation.h +++ b/src/resqml2_2/PointSetRepresentation.h @@ -72,7 +72,7 @@ namespace RESQML2_2_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * Get all the XYZ points of a particular patch of this representation. XYZ points are given in @@ -83,7 +83,7 @@ namespace RESQML2_2_NS * coordinate dimension (XYZ) and second dimension is vertex * dimension. It must be pre allocated. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT uint64_t getPatchCount() const final; diff --git a/src/resqml2_2/PointsProperty.cpp b/src/resqml2_2/PointsProperty.cpp index fae667cb5..5bae95ffa 100644 --- a/src/resqml2_2/PointsProperty.cpp +++ b/src/resqml2_2/PointsProperty.cpp @@ -83,7 +83,7 @@ COMMON_NS::DataObjectReference PointsProperty::getHdfProxyDor(uint64_t patchInde } } -EML2_NS::AbstractHdfProxy* PointsProperty::getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const +EML2_NS::AbstractHdfProxy* PointsProperty::getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The values property patch is out of range"); diff --git a/src/resqml2_2/PointsProperty.h b/src/resqml2_2/PointsProperty.h index 7ae6c67a9..2a6fd17fe 100644 --- a/src/resqml2_2/PointsProperty.h +++ b/src/resqml2_2/PointsProperty.h @@ -137,6 +137,6 @@ namespace RESQML2_2_NS COMMON_NS::DataObjectReference getHdfProxyDor(uint64_t patchIndex) const final; private: - EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(unsigned int patchIndex, std::string & datasetPath) const final; + EML2_NS::AbstractHdfProxy* getValuesHdfProxyAndDatasetPathOfPatch(uint64_t patchIndex, std::string & datasetPath) const final; }; } diff --git a/src/resqml2_2/PolylineRepresentation.cpp b/src/resqml2_2/PolylineRepresentation.cpp index c7769ccd9..a3239c4c7 100644 --- a/src/resqml2_2/PolylineRepresentation.cpp +++ b/src/resqml2_2/PolylineRepresentation.cpp @@ -85,7 +85,7 @@ resqml22__PointGeometry* PolylineRepresentation::getPointGeometry2_2(uint64_t pa return patchIndex == 0 ? static_cast<_resqml22__PolylineRepresentation*>(gsoapProxy2_3)->NodePatchGeometry : nullptr; } -uint64_t PolylineRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t PolylineRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -103,7 +103,7 @@ uint64_t PolylineRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex return result / 3; } -void PolylineRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PolylineRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2_2/PolylineRepresentation.h b/src/resqml2_2/PolylineRepresentation.h index 58338ad95..cf1ee9d8c 100644 --- a/src/resqml2_2/PolylineRepresentation.h +++ b/src/resqml2_2/PolylineRepresentation.h @@ -91,9 +91,9 @@ namespace RESQML2_2_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT void setGeometry(double const* points, unsigned int pointCount, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr) final; diff --git a/src/resqml2_2/PolylineSetRepresentation.cpp b/src/resqml2_2/PolylineSetRepresentation.cpp index a575f51aa..606b49b4f 100644 --- a/src/resqml2_2/PolylineSetRepresentation.cpp +++ b/src/resqml2_2/PolylineSetRepresentation.cpp @@ -231,14 +231,14 @@ uint64_t PolylineSetRepresentation::getPolylineCountOfAllPatches() const return result; } -void PolylineSetRepresentation::getNodeCountPerPolylineInPatch(unsigned int patchIndex, unsigned int * nodeCountPerPolyline) const +void PolylineSetRepresentation::getNodeCountPerPolylineInPatch(uint64_t patchIndex, unsigned int * nodeCountPerPolyline) const { if (patchIndex >= getPatchCount()) { throw std::out_of_range("patchIndex id out of range."); } resqml22__PolylineSetPatch* patch = static_cast<_resqml22__PolylineSetRepresentation*>(gsoapProxy2_3)->LinePatch[patchIndex]; - readArrayNdOfUInt32Values(patch->NodeCountPerPolyline, nodeCountPerPolyline); + readArrayNdOfIntegerValues(patch->NodeCountPerPolyline, nodeCountPerPolyline); } void PolylineSetRepresentation::getNodeCountPerPolylineOfAllPatches(unsigned int * NodeCountPerPolyline) const @@ -251,7 +251,7 @@ void PolylineSetRepresentation::getNodeCountPerPolylineOfAllPatches(unsigned int } } -void PolylineSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void PolylineSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -272,7 +272,7 @@ uint64_t PolylineSetRepresentation::getPatchCount() const return static_cast<_resqml22__PolylineSetRepresentation*>(gsoapProxy2_3)->LinePatch.size(); } -bool PolylineSetRepresentation::areAllPolylinesClosedOfPatch(unsigned int patchIndex) const +bool PolylineSetRepresentation::areAllPolylinesClosedOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -310,7 +310,7 @@ bool PolylineSetRepresentation::areAllPolylinesClosedOfAllPatches() const return true; } -bool PolylineSetRepresentation::areAllPolylinesNonClosedOfPatch(unsigned int patchIndex) const +bool PolylineSetRepresentation::areAllPolylinesNonClosedOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -346,7 +346,7 @@ bool PolylineSetRepresentation::areAllPolylinesNonClosedOfAllPatches() const return true; } -void PolylineSetRepresentation::getClosedFlagPerPolylineOfPatch(unsigned int patchIndex, bool * closedFlagPerPolyline) const +void PolylineSetRepresentation::getClosedFlagPerPolylineOfPatch(uint64_t patchIndex, bool * closedFlagPerPolyline) const { uint64_t polylineCount = getPolylineCountOfPatch(patchIndex); resqml22__PolylineSetPatch* patch = static_cast<_resqml22__PolylineSetRepresentation*>(gsoapProxy2_3)->LinePatch[patchIndex]; diff --git a/src/resqml2_2/PolylineSetRepresentation.h b/src/resqml2_2/PolylineSetRepresentation.h index fe8041b1e..d5ba565d6 100644 --- a/src/resqml2_2/PolylineSetRepresentation.h +++ b/src/resqml2_2/PolylineSetRepresentation.h @@ -89,11 +89,11 @@ namespace RESQML2_2_NS DLL_IMPORT_OR_EXPORT uint64_t getPolylineCountOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT void getNodeCountPerPolylineInPatch(unsigned int patchIndex, unsigned int * nodeCountPerPolyline) const final; + DLL_IMPORT_OR_EXPORT void getNodeCountPerPolylineInPatch(uint64_t patchIndex, unsigned int * nodeCountPerPolyline) const final; DLL_IMPORT_OR_EXPORT void getNodeCountPerPolylineOfAllPatches(unsigned int * NodeCountPerPolyline) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT uint64_t getPatchCount() const final; @@ -107,15 +107,15 @@ namespace RESQML2_2_NS uint64_t polylineCount, bool * polylineClosedFlags, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr) final; - DLL_IMPORT_OR_EXPORT bool areAllPolylinesClosedOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT bool areAllPolylinesClosedOfPatch(uint64_t patchIndex) const final; DLL_IMPORT_OR_EXPORT bool areAllPolylinesClosedOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT bool areAllPolylinesNonClosedOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT bool areAllPolylinesNonClosedOfPatch(uint64_t patchIndex) const final; DLL_IMPORT_OR_EXPORT bool areAllPolylinesNonClosedOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT void getClosedFlagPerPolylineOfPatch(unsigned int patchIndex, bool * closedFlagPerPolyline) const final; + DLL_IMPORT_OR_EXPORT void getClosedFlagPerPolylineOfPatch(uint64_t patchIndex, bool * closedFlagPerPolyline) const final; DLL_IMPORT_OR_EXPORT void getClosedFlagPerPolylineOfAllPatches(bool * closedFlagPerPolyline) const final; diff --git a/src/resqml2_2/SealedSurfaceFrameworkRepresentation.cpp b/src/resqml2_2/SealedSurfaceFrameworkRepresentation.cpp index 6def2bd40..67454dda4 100644 --- a/src/resqml2_2/SealedSurfaceFrameworkRepresentation.cpp +++ b/src/resqml2_2/SealedSurfaceFrameworkRepresentation.cpp @@ -213,7 +213,7 @@ void SealedSurfaceFrameworkRepresentation::getIdenticalContactPatchNodeIndices(u throw invalid_argument("The nodes are all identical"); } - readArrayNdOfUInt32Values(getContact(crIndex)->IdenticalNodeIndices, nodeIndices); + readArrayNdOfIntegerValues(getContact(crIndex)->IdenticalNodeIndices, nodeIndices); } unsigned int SealedSurfaceFrameworkRepresentation::getContactPatchCount(unsigned int crIndex) const @@ -266,5 +266,5 @@ unsigned int SealedSurfaceFrameworkRepresentation::getContactPatchNodeCount(unsi void SealedSurfaceFrameworkRepresentation::getContactPatchNodeIndices(unsigned int crIndex, unsigned int cpIndex, unsigned int * nodeIndices) const { - readArrayNdOfUInt32Values(getContactPatch(crIndex, cpIndex)->SupportingRepresentationNodes, nodeIndices); + readArrayNdOfIntegerValues(getContactPatch(crIndex, cpIndex)->SupportingRepresentationNodes, nodeIndices); } diff --git a/src/resqml2_2/StreamlinesRepresentation.cpp b/src/resqml2_2/StreamlinesRepresentation.cpp index a8127f6be..9917045d8 100644 --- a/src/resqml2_2/StreamlinesRepresentation.cpp +++ b/src/resqml2_2/StreamlinesRepresentation.cpp @@ -86,7 +86,7 @@ uint32_t StreamlinesRepresentation::getInjectorPerLine(uint32_t* injectorPerLine throw std::logic_error("There is no wellbore trajectory associated to this streamlines representation"); } - return readArrayNdOfUInt32Values(wellboresInfo->InjectorPerLine, injectorPerLine); + return readArrayNdOfIntegerValues(wellboresInfo->InjectorPerLine, injectorPerLine); } uint32_t StreamlinesRepresentation::getProducerPerLine(uint32_t* producerPerLine) const @@ -97,7 +97,7 @@ uint32_t StreamlinesRepresentation::getProducerPerLine(uint32_t* producerPerLine throw std::logic_error("There is no wellbore trajectory associated to this streamlines representation"); } - return readArrayNdOfUInt32Values(wellboresInfo->ProducerPerLine, producerPerLine); + return readArrayNdOfIntegerValues(wellboresInfo->ProducerPerLine, producerPerLine); } void StreamlinesRepresentation::setWellboreInformation(uint32_t const* injectorPerLine, uint32_t const* producerPerLine, const std::vector & wellboreTrajectories, @@ -167,7 +167,7 @@ void StreamlinesRepresentation::getNodeCountPerLine(uint32_t * nodeCountPerPolyl throw std::logic_error("There is no geometry associated to this streamlines representation"); } - readArrayNdOfUInt32Values(geometry->NodeCountPerPolyline, nodeCountPerPolyline); + readArrayNdOfIntegerValues(geometry->NodeCountPerPolyline, nodeCountPerPolyline); } void StreamlinesRepresentation::setGeometry( @@ -242,7 +242,7 @@ resqml22__PointGeometry* StreamlinesRepresentation::getPointGeometry2_2(uint64_t return nullptr; } -void StreamlinesRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void StreamlinesRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -354,7 +354,7 @@ uint16_t StreamlinesRepresentation::getGridIndices(uint16_t * gridIndices) const throw std::logic_error("There is no grid associated to this streamlines representation"); } - return readArrayNdOfUInt16Values(gridLink->GridIndices, gridIndices); + return readArrayNdOfIntegerValues(gridLink->GridIndices, gridIndices); } int64_t StreamlinesRepresentation::getCellIndices(int64_t * cellIndices) const @@ -368,7 +368,7 @@ int64_t StreamlinesRepresentation::getCellIndices(int64_t * cellIndices) const throw std::logic_error("There is no grid associated to this streamlines representation"); } - return readArrayNdOfInt64Values(gridLink->CellIndices, cellIndices); + return readArrayNdOfIntegerValues(gridLink->CellIndices, cellIndices); } uint8_t StreamlinesRepresentation::getLocalFacePairPerCellIndices(uint8_t * localFacePairPerCellIndices) const @@ -382,7 +382,7 @@ uint8_t StreamlinesRepresentation::getLocalFacePairPerCellIndices(uint8_t * loca throw std::logic_error("There is no grid associated to this streamlines representation"); } - return readArrayNdOfUInt8Values(gridLink->LocalFacePairPerCellIndices, localFacePairPerCellIndices); + return readArrayNdOfIntegerValues(gridLink->LocalFacePairPerCellIndices, localFacePairPerCellIndices); } uint64_t StreamlinesRepresentation::getGridRepresentationCount() const diff --git a/src/resqml2_2/StreamlinesRepresentation.h b/src/resqml2_2/StreamlinesRepresentation.h index 7cadcef2b..376d73b66 100644 --- a/src/resqml2_2/StreamlinesRepresentation.h +++ b/src/resqml2_2/StreamlinesRepresentation.h @@ -159,7 +159,7 @@ namespace RESQML2_2_NS /** * Use linear interpolation between 2 trajectory stations. */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; /** * Sets the geometry of the streamlines representation. diff --git a/src/resqml2_2/SubRepresentation.cpp b/src/resqml2_2/SubRepresentation.cpp index 02760bc50..6d2ea0e1a 100644 --- a/src/resqml2_2/SubRepresentation.cpp +++ b/src/resqml2_2/SubRepresentation.cpp @@ -96,62 +96,57 @@ COMMON_NS::DataObjectReference SubRepresentation::getHdfProxyDor() const throw logic_error("Not implemented yet"); } -gsoap_eml2_3::eml23__IndexableElement SubRepresentation::getElementKindOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex) const +gsoap_eml2_3::eml23__IndexableElement SubRepresentation::getElementKindOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex) const { throw logic_error("Not implemented yet"); } -resqml22__SubRepresentationPatch* SubRepresentation::getSubRepresentationPatch(unsigned int index) const +resqml22__SubRepresentationPatch* SubRepresentation::getSubRepresentationPatch(uint64_t patchIndex) const { - _resqml22__SubRepresentation const* rep = getSpecializedGsoapProxy(); - if (rep->SubRepresentationPatch.size() > index) { - return rep->SubRepresentationPatch[index]; - } - - throw out_of_range("The patch does not exist at this index."); + return getSpecializedGsoapProxy()->SubRepresentationPatch.at(patchIndex); } -uint64_t SubRepresentation::getElementCountOfPatch(unsigned int patchIndex) const +uint64_t SubRepresentation::getElementCountOfPatch(uint64_t patchIndex) const { throw logic_error("Not implemented yet"); } -bool SubRepresentation::areElementIndicesPairwise(unsigned int patchIndex) const +bool SubRepresentation::areElementIndicesPairwise(uint64_t patchIndex) const { throw logic_error("Not implemented yet"); } -bool SubRepresentation::areElementIndicesBasedOnLattice(unsigned int patchIndex, unsigned int elementIndicesIndex) const +bool SubRepresentation::areElementIndicesBasedOnLattice(uint64_t patchIndex, unsigned int elementIndicesIndex) const { throw logic_error("Not implemented yet"); } -int64_t SubRepresentation::getLatticeElementIndicesStartValue(unsigned int patchIndex, unsigned int elementIndicesIndex) const +int64_t SubRepresentation::getLatticeElementIndicesStartValue(uint64_t patchIndex, unsigned int elementIndicesIndex) const { throw logic_error("Not implemented yet"); } -uint64_t SubRepresentation::getLatticeElementIndicesDimensionCount(unsigned int patchIndex, unsigned int elementIndicesIndex) const +uint64_t SubRepresentation::getLatticeElementIndicesDimensionCount(uint64_t patchIndex, unsigned int elementIndicesIndex) const { throw logic_error("Not implemented yet"); } -int64_t SubRepresentation::getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex) const +int64_t SubRepresentation::getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex) const { throw logic_error("Not implemented yet"); } -uint64_t SubRepresentation::getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex) const +uint64_t SubRepresentation::getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex) const { throw logic_error("Not implemented yet"); } -void SubRepresentation::getElementIndicesOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const +void SubRepresentation::getElementIndicesOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const { throw logic_error("Not implemented yet"); } -void SubRepresentation::getSupportingRepresentationIndicesOfPatch(unsigned int patchIndex, short * supportingRepresentationIndices) const +void SubRepresentation::getSupportingRepresentationIndicesOfPatch(uint64_t patchIndex, short * supportingRepresentationIndices) const { throw logic_error("Not implemented yet"); } diff --git a/src/resqml2_2/SubRepresentation.h b/src/resqml2_2/SubRepresentation.h index 89e7e709d..7c485bd99 100644 --- a/src/resqml2_2/SubRepresentation.h +++ b/src/resqml2_2/SubRepresentation.h @@ -72,22 +72,22 @@ namespace RESQML2_2_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex) const final; + DLL_IMPORT_OR_EXPORT gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex) const final; - DLL_IMPORT_OR_EXPORT uint64_t getElementCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getElementCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getElementIndicesOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const final; + DLL_IMPORT_OR_EXPORT void getElementIndicesOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const final; - DLL_IMPORT_OR_EXPORT void getSupportingRepresentationIndicesOfPatch(unsigned int patchIndex, short * supportingRepresentationIndices) const final; + DLL_IMPORT_OR_EXPORT void getSupportingRepresentationIndicesOfPatch(uint64_t patchIndex, short * supportingRepresentationIndices) const final; - DLL_IMPORT_OR_EXPORT bool areElementIndicesPairwise(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT bool areElementIndicesPairwise(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT bool areElementIndicesBasedOnLattice(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT bool areElementIndicesBasedOnLattice(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; - DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesStartValue(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; - DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesDimensionCount(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; - DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; - DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesStartValue(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; + DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesDimensionCount(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; + DLL_IMPORT_OR_EXPORT uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const final; using RESQML2_NS::SubRepresentation::pushBackSubRepresentationPatch; @@ -139,9 +139,9 @@ namespace RESQML2_2_NS gsoap_eml2_3::_resqml22__SubRepresentation* getSpecializedGsoapProxy() const; /** - * Get a patch of the current subrepresentation at a particluar index. + * Get a patch of the current subrepresentation at a particular patch index. */ - gsoap_eml2_3::resqml22__SubRepresentationPatch* getSubRepresentationPatch(unsigned int index) const; + gsoap_eml2_3::resqml22__SubRepresentationPatch* getSubRepresentationPatch(uint64_t patchIndex) const; /** * Push back a representation which is one of the support of this subrepresentation. And push diff --git a/src/resqml2_2/TriangulatedSetRepresentation.cpp b/src/resqml2_2/TriangulatedSetRepresentation.cpp index aeda452cf..bdce45b91 100644 --- a/src/resqml2_2/TriangulatedSetRepresentation.cpp +++ b/src/resqml2_2/TriangulatedSetRepresentation.cpp @@ -132,7 +132,7 @@ void TriangulatedSetRepresentation::pushBackTrianglePatch( triRep->TrianglePatch.push_back(patch); } -uint64_t TriangulatedSetRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t TriangulatedSetRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); @@ -142,7 +142,7 @@ uint64_t TriangulatedSetRepresentation::getXyzPointCountOfPatch(unsigned int pat return triRep->TrianglePatch[patchIndex]->NodeCount; } -void TriangulatedSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void TriangulatedSetRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) throw range_error("The index of the patch is not in the allowed range of patch."); @@ -158,7 +158,7 @@ void TriangulatedSetRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, } } -uint64_t TriangulatedSetRepresentation::getTriangleCountOfPatch(unsigned int patchIndex) const +uint64_t TriangulatedSetRepresentation::getTriangleCountOfPatch(uint64_t patchIndex) const { return getCountOfArray(static_cast<_resqml22__TriangulatedSetRepresentation*>(gsoapProxy2_3)->TrianglePatch.at(patchIndex)->Triangles) / 3;; } @@ -174,7 +174,7 @@ uint64_t TriangulatedSetRepresentation::getTriangleCountOfAllPatches() const return result; } -void TriangulatedSetRepresentation::getTriangleNodeIndicesOfPatch(unsigned int patchIndex, unsigned int * triangleNodeIndices) const +void TriangulatedSetRepresentation::getTriangleNodeIndicesOfPatch(uint64_t patchIndex, unsigned int * triangleNodeIndices) const { _resqml22__TriangulatedSetRepresentation* triRep = static_cast<_resqml22__TriangulatedSetRepresentation*>(gsoapProxy2_3); @@ -182,7 +182,7 @@ void TriangulatedSetRepresentation::getTriangleNodeIndicesOfPatch(unsigned int p throw out_of_range("The patchIndex is out of range"); } - readArrayNdOfUInt32Values(triRep->TrianglePatch[patchIndex]->Triangles, triangleNodeIndices); + readArrayNdOfIntegerValues(triRep->TrianglePatch[patchIndex]->Triangles, triangleNodeIndices); } void TriangulatedSetRepresentation::getTriangleNodeIndicesOfAllPatches(unsigned int * triangleNodeIndices) const diff --git a/src/resqml2_2/TriangulatedSetRepresentation.h b/src/resqml2_2/TriangulatedSetRepresentation.h index 098531f50..92fb08d59 100644 --- a/src/resqml2_2/TriangulatedSetRepresentation.h +++ b/src/resqml2_2/TriangulatedSetRepresentation.h @@ -78,15 +78,15 @@ namespace RESQML2_2_NS DLL_IMPORT_OR_EXPORT void pushBackTrianglePatch(unsigned int nodeCount, double const * nodes, unsigned int triangleCount, unsigned int const * triangleNodeIndices, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr) final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; - DLL_IMPORT_OR_EXPORT uint64_t getTriangleCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getTriangleCountOfPatch(uint64_t patchIndex) const final; DLL_IMPORT_OR_EXPORT uint64_t getTriangleCountOfAllPatches() const final; - DLL_IMPORT_OR_EXPORT void getTriangleNodeIndicesOfPatch(unsigned int patchIndex, unsigned int * triangleNodeIndices) const final; + DLL_IMPORT_OR_EXPORT void getTriangleNodeIndicesOfPatch(uint64_t patchIndex, unsigned int * triangleNodeIndices) const final; DLL_IMPORT_OR_EXPORT void getTriangleNodeIndicesOfAllPatches(unsigned int * triangleNodeIndices) const final; diff --git a/src/resqml2_2/UnstructuredGridRepresentation.cpp b/src/resqml2_2/UnstructuredGridRepresentation.cpp index e27a7d43b..31c2d6a9c 100644 --- a/src/resqml2_2/UnstructuredGridRepresentation.cpp +++ b/src/resqml2_2/UnstructuredGridRepresentation.cpp @@ -122,7 +122,7 @@ uint64_t UnstructuredGridRepresentation::getNodeCount() const return 0; } -void UnstructuredGridRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double* xyzPoints) const +void UnstructuredGridRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double* xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index of the patch is not in the allowed range of patch."); diff --git a/src/resqml2_2/UnstructuredGridRepresentation.h b/src/resqml2_2/UnstructuredGridRepresentation.h index 1bf5f1b86..e342c01a9 100644 --- a/src/resqml2_2/UnstructuredGridRepresentation.h +++ b/src/resqml2_2/UnstructuredGridRepresentation.h @@ -76,7 +76,7 @@ namespace RESQML2_2_NS COMMON_NS::DataObjectReference getHdfProxyDor() const final; - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT void getFaceIndicesOfCells(uint64_t * faceIndices) const final; diff --git a/src/resqml2_2/WellboreTrajectoryRepresentation.cpp b/src/resqml2_2/WellboreTrajectoryRepresentation.cpp index 718612e9b..6e869168c 100644 --- a/src/resqml2_2/WellboreTrajectoryRepresentation.cpp +++ b/src/resqml2_2/WellboreTrajectoryRepresentation.cpp @@ -205,7 +205,7 @@ double WellboreTrajectoryRepresentation::getParentTrajectoryMd() const throw logic_error("This wellbore trajectory has no parent trajecory."); } -uint64_t WellboreTrajectoryRepresentation::getXyzPointCountOfPatch(unsigned int patchIndex) const +uint64_t WellboreTrajectoryRepresentation::getXyzPointCountOfPatch(uint64_t patchIndex) const { if (patchIndex >= getPatchCount()) { throw out_of_range("The index patch is not in the allowed range of patch."); @@ -218,7 +218,7 @@ uint64_t WellboreTrajectoryRepresentation::getXyzPointCountOfPatch(unsigned int return static_cast(rep->Geometry)->KnotCount; } -void WellboreTrajectoryRepresentation::getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const +void WellboreTrajectoryRepresentation::getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const { if (patchIndex >= getPatchCount()) { throw range_error("The index patch is not in the allowed range of patch"); diff --git a/src/resqml2_2/WellboreTrajectoryRepresentation.h b/src/resqml2_2/WellboreTrajectoryRepresentation.h index 4d7c17301..fd7879c55 100644 --- a/src/resqml2_2/WellboreTrajectoryRepresentation.h +++ b/src/resqml2_2/WellboreTrajectoryRepresentation.h @@ -78,7 +78,7 @@ namespace RESQML2_2_NS DLL_IMPORT_OR_EXPORT COMMON_NS::DataObjectReference getMdDatumDor() const final; - DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const final; + DLL_IMPORT_OR_EXPORT uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const final; /** * @copybrief resqml2::AbstractRepresentation::getXyzPointsOfPatch @@ -88,7 +88,7 @@ namespace RESQML2_2_NS * * @copydetails resqml2::AbstractRepresentation::getXyzPointsOfPatch */ - DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const final; + DLL_IMPORT_OR_EXPORT void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const final; DLL_IMPORT_OR_EXPORT bool hasMdValues() const final; diff --git a/src/tools/TimeTools.cpp b/src/tools/TimeTools.cpp index 7fb907273..d8ed94624 100644 --- a/src/tools/TimeTools.cpp +++ b/src/tools/TimeTools.cpp @@ -45,10 +45,10 @@ std::string timeTools::convertMicrosecondUnixTimestampToIso(long long ts) return oss.str(); } */ -std::string timeTools::convertUnixTimestampToIso(time_t ts) +std::string timeTools::convertUnixTimestampToIso(time_t ts, bool withTime) { auto tmp = timeTools::from_time_t(ts); - return date::format("%FT%TZ", date::floor(tmp)); + return date::format(withTime ? "%FT%TZ" : "%F", date::floor(tmp)); } time_t timeTools::convertIsoToUnixTimestamp(const std::string & s) diff --git a/src/tools/TimeTools.h b/src/tools/TimeTools.h index 4cf148fc3..1a31e7ee0 100644 --- a/src/tools/TimeTools.h +++ b/src/tools/TimeTools.h @@ -32,11 +32,12 @@ namespace timeTools /** * Convert an Unix timestamp which is given in seconds into a date in ISO format. * - * @param ts The ts. + * @param ts The UNIX timestamp. + * @param withTime Include or not the time in the output. * * @returns The unix converted timestamp to ISO. */ - std::string convertUnixTimestampToIso(time_t ts); + std::string convertUnixTimestampToIso(time_t ts, bool withTime = true); /** * Converts a UTC time (given in seconds) represented by a string to a UTC time represented by a diff --git a/swig/swigModule.i b/swig/swigModule.i index 4dd0debf3..6e821ee29 100644 --- a/swig/swigModule.i +++ b/swig/swigModule.i @@ -39,6 +39,11 @@ under the License. %nspace COMMON_NS::EnumStringMapper; %nspace COMMON_NS::EpcDocument; %nspace COMMON_NS::HdfProxyFactory; + #if SWIG_VERSION >= 0x040300 + %nspacemove(common) COMMON_NS::NumberArrayStatistics; + #else + %feature("nspace", "common") COMMON_NS::NumberArrayStatistics; + #endif #endif //************************/ @@ -795,6 +800,80 @@ namespace COMMON_NS const std::string & packageDirAbsolutePath, const std::string & externalFilePath, COMMON_NS::DataObjectRepository::openingMode hdfPermissionAccess = COMMON_NS::DataObjectRepository::openingMode::READ_ONLY); }; + + template class NumberArrayStatistics + { + public: + + NumberArrayStatistics() = default; + + /* + * Create statistics on scalar array + * + * @param valueCountPerIndexableElement the number of values per indexable element. It is 1 for a scalar property. + */ + NumberArrayStatistics(T const* values, uint64_t valueCount); + + /* + * @param valueCountPerIndexableElement the number of values per indexable element. It is 1 for a scalar property. + */ + NumberArrayStatistics(T const* values, uint64_t valueCount, uint64_t valueCountPerIndexableElement); + + /* + * @param valueCountPerIndexableElement the number of values per indexable element. It is 1 for a scalar property. + * @param nullVal The integer null value.Ignored (fixed to NaN) if it is a floating point value. + */ + NumberArrayStatistics(T const* values, uint64_t valueCount, uint64_t valueCountPerIndexableElement, T nullVal); + + void computeFrom(T const* values, size_t valueCount, size_t valueCountPerIndexableElement); + + T getNullValue() const; + + uint64_t getValidValueCount(size_t valueIndex = 0) const; + uint64_t getValidValueCountSize() const; + + T getMinimum(size_t valueIndex = 0) const; + uint64_t getMinimumSize() const; + + T getMaximum(size_t valueIndex = 0) const; + uint64_t getMaximumSize() const; + + double getMean(size_t valueIndex = 0) const; + uint64_t getMeanSize() const; + + double getMedian(size_t valueIndex = 0) const; + uint64_t getMedianSize() const; + + T getMode(size_t valueIndex = 0) const; + uint64_t getModeSize() const; + + double getModePercentage(size_t valueIndex = 0) const; + uint64_t getModePercentageSize() const; + + double getStandardDeviation(size_t valueIndex = 0) const; + uint64_t getStandardDeviationSize() const; + + void setNullValue(T value); + void setValidValueCount(uint64_t value, size_t valueIndex = 0); + void setMinimum(T value, size_t valueIndex = 0); + void setMaximum(T value, size_t valueIndex = 0); + void setMean(double value, size_t valueIndex = 0); + void setMedian(double value, size_t valueIndex = 0); + void setMode(T value, size_t valueIndex = 0); + void setModePercentage(double value, size_t valueIndex = 0); + void setStandardDeviation(double value, size_t valueIndex = 0); + }; + + %template(Int8ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(UInt8ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(Int16ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(UInt16ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(Int32ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(UInt32ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(Int64ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(UInt64ArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(FloatArrayStatistics) COMMON_NS::NumberArrayStatistics; + %template(DoubleArrayStatistics) COMMON_NS::NumberArrayStatistics; } #define CHECKER_PRESENCE_ATTRIBUTE_IN_VECTOR(gsoapClassName, proxyVariable, vectorName, attributeName) bool has##vectorName##attributeName(unsigned int index) const; @@ -818,7 +897,7 @@ namespace COMMON_NS %include "swigEml2Include.i" %include "swigResqml2Include.i" %include "swigWitsml2Include.i" -%include "swigProdml2_2Include.i" +%include "swigProdml2_3Include.i" #ifdef WITH_ETP %include "swigEtp1_2Include.i" #endif @@ -874,7 +953,7 @@ import com.f2i_consulting.fesapi.*; RESQML2_0_1 = 0, EML2_0 = 1, EML2_3 = 2, - PRODML2_2 = 3, + PRODML2_3 = 3, RESQML2_2 = 4, WITSML2_1 = 5 }; @@ -1072,8 +1151,8 @@ import com.f2i_consulting.fesapi.*; SWIG_GETTER_DATAOBJECTS(WITSML2_1_NS::ChannelSet, ChannelSet) SWIG_GETTER_DATAOBJECTS(WITSML2_1_NS::Channel, Channel) - SWIG_GETTER_DATAOBJECTS(PRODML2_2_NS::FluidSystem, FluidSystem) - SWIG_GETTER_DATAOBJECTS(PRODML2_2_NS::FluidCharacterization, FluidCharacterization) + SWIG_GETTER_DATAOBJECTS(PRODML2_3_NS::FluidSystem, FluidSystem) + SWIG_GETTER_DATAOBJECTS(PRODML2_3_NS::FluidCharacterization, FluidCharacterization) /** * Gets a data object from the repository by means of its uuid. If several data object @@ -1395,9 +1474,27 @@ import com.f2i_consulting.fesapi.*; gsoap_resqml2_0_1::eml20__LengthUom verticalUom, uint64_t verticalEpsgCode, bool isUpOriented); /** - * @brief Creates a reference point (such as a MD datum) into this repository + * @brief Creates a vertical CRS which is identified by means of an EPSG code. + * Resulting vertical CRS is stored into this repository * - * @exception std::invalid_argument If the default RESQML version is unrecognized. + * @exception std::invalid_argument If verticalEpsgCode == 0. + * + * @param guid The guid to set to the local 3d CRS. If empty then a new guid + * will be generated. + * @param title The title to set to the local 3d CRS. If empty then \"unknown\" + * title will be set. + * @param verticalUom The unit of measure of the vertical axis of this instance. + * @param verticalEpsgCode The EPSG code of the associated vertical CRS. + * @param isUpOriented If true, indicates that this depth CRS is actually an elevation + * CRS. + * + * @returns A pointer to the new vertical CRS. + */ + EML2_3_NS::VerticalCrs* createVerticalCrs(const std::string& guid, const std::string& title, + uint64_t verticalEpsgCode, gsoap_eml2_3::eml23__LengthUom verticalUom, bool isUpOriented); + + /** + * @brief Creates a reference point (such as a MD datum) into this repository * * @param guid The guid to set to the reference point. If empty then a new * guid will be generated. @@ -3762,11 +3859,11 @@ import com.f2i_consulting.fesapi.*; * * @returns A pointer to the new fluid system. */ - PRODML2_2_NS::FluidSystem* createFluidSystem(const std::string & guid, + PRODML2_3_NS::FluidSystem* createFluidSystem(const std::string & guid, const std::string & title, double temperatureValue, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom temperatureUom, double pressureValue, gsoap_eml2_3::eml23__PressureUom pressureUom, - gsoap_eml2_3::prodml22__ReservoirFluidKind reservoirFluidKind, + gsoap_eml2_3::prodml23__ReservoirFluidKind reservoirFluidKind, double gasOilRatio, gsoap_eml2_3::eml23__VolumePerVolumeUom gasOilRatioUom); /** @@ -3779,7 +3876,7 @@ import com.f2i_consulting.fesapi.*; * * @returns A pointer to the new fluid characterization. */ - PRODML2_2_NS::FluidCharacterization* createFluidCharacterization(const std::string & guid, const std::string & title); + PRODML2_3_NS::FluidCharacterization* createFluidCharacterization(const std::string & guid, const std::string & title); /** * Creates a time series data into this repository @@ -3791,7 +3888,7 @@ import com.f2i_consulting.fesapi.*; * * @returns A pointer to the new time series data. */ - PRODML2_2_NS::TimeSeriesData* createTimeSeriesData(const std::string & guid, const std::string & title); + PRODML2_3_NS::TimeSeriesData* createTimeSeriesData(const std::string & guid, const std::string & title); #ifdef WITH_RESQML2_2 //************************************/ diff --git a/swig/swigProdml2_2Include.i b/swig/swigProdml2_3Include.i similarity index 95% rename from swig/swigProdml2_2Include.i rename to swig/swigProdml2_3Include.i index f1d11d6ab..c9ad548f8 100644 --- a/swig/swigProdml2_2Include.i +++ b/swig/swigProdml2_3Include.i @@ -17,21 +17,21 @@ specific language governing permissions and limitations under the License. -----------------------------------------------------------------------*/ %{ -#include "../src/prodml2_2/FluidSystem.h" -#include "../src/prodml2_2/FluidCharacterization.h" -#include "../src/prodml2_2/TimeSeriesData.h" +#include "../src/prodml2_3/FluidSystem.h" +#include "../src/prodml2_3/FluidCharacterization.h" +#include "../src/prodml2_3/TimeSeriesData.h" %} namespace std { - %template(FluidSystemVector) vector; - %template(FluidCharacterizationVector) vector; - %template(TimeSeriesDataVector) vector; + %template(FluidSystemVector) vector; + %template(FluidCharacterizationVector) vector; + %template(TimeSeriesDataVector) vector; } #if defined(SWIGJAVA) || defined(SWIGCSHARP) - %nspace PRODML2_2_NS::FluidSystem; - %nspace PRODML2_2_NS::FluidCharacterization; - %nspace PRODML2_2_NS::TimeSeriesData; + %nspace PRODML2_3_NS::FluidSystem; + %nspace PRODML2_3_NS::FluidCharacterization; + %nspace PRODML2_3_NS::TimeSeriesData; #endif namespace gsoap_eml2_3 @@ -67,7 +67,7 @@ enum class eml23__ThermodynamicTemperatureUom { #endif 'N' }; -enum class prodml22__ThermodynamicPhase { +enum class prodml23__ThermodynamicPhase { aqueous = 0, oleic = 1, vapor = 2, @@ -118,7 +118,7 @@ enum class eml23__PressureUom { uPa = 41, upsi = 42 }; -enum class prodml22__ReservoirFluidKind { +enum class prodml23__ReservoirFluidKind { black_x0020oil = 0, critical_x0020or_x0020near_x0020critical = 1, dry_x0020gas = 2, @@ -195,7 +195,7 @@ enum class eml23__MassPerMassUom { ug_x002fg = 15, ug_x002fmg = 16 }; -enum class prodml22__PureComponentKind { +enum class prodml23__PureComponentKind { _1_2_4_trimethylbenzene = 0, _2_dimethylbutane = 1, _3_dimethylbutane = 2, @@ -244,7 +244,7 @@ enum class eml23__MolecularWeightUom { kg_x002fmol = 1, lbm_x002flbmol = 2 }; -enum class prodml22__PlusComponentKind { +enum class prodml23__PlusComponentKind { c10_x002b = 0, c11_x002b = 1, c12_x002b = 2, @@ -304,7 +304,7 @@ enum class eml23__EnergyPerVolumeUom { MW_x002eh_x002fm3 = 21, tonf_x005bUS_x005d_x002emi_x002fbbl = 22 }; -enum class prodml22__PseudoComponentKind { +enum class prodml23__PseudoComponentKind { c10 = 0, c11 = 1, c12 = 2, @@ -340,7 +340,7 @@ enum class prodml22__PseudoComponentKind { c9 = 32, rsh = 33 }; -enum class prodml22__OutputFluidProperty { +enum class prodml23__OutputFluidProperty { Compressibility = 0, Density = 1, Derivative_x0020of_x0020Density_x0020w_x002er_x002et_x0020Pressure = 2, @@ -376,7 +376,7 @@ enum class prodml22__OutputFluidProperty { Water_x0020vapor_x0020mass_x0020fraction_x0020in_x0020gas_x0020phase = 32, Z_x0020Factor = 33 }; -enum class prodml22__TimeSeriesKeyword { +enum class prodml23__TimeSeriesKeyword { asset_x0020identifier = 0, flow = 1, product = 2, @@ -783,7 +783,7 @@ enum class eml23__MeasureClass { volumetric_x0020thermal_x0020expansion = 186, unitless = 187 }; -enum class prodml22__ValueStatus { +enum class prodml23__ValueStatus { access_x0020denied = 0, bad = 1, bad_x0020calibration = 2, @@ -821,14 +821,14 @@ enum class prodml22__ValueStatus { GETTER_AND_SETTER_FLUID_COMPONENT_MEASURE_ATTRIBUTE(vectorName, MassFraction, gsoap_eml2_3::eml23__MassPerMassUom)\ GETTER_AND_SETTER_FLUID_COMPONENT_MEASURE_ATTRIBUTE(vectorName, MoleFraction, gsoap_eml2_3::eml23__AmountOfSubstancePerAmountOfSubstanceUom) -namespace PRODML2_2_NS +namespace PRODML2_3_NS { %nodefaultctor; // Disable creation of default constructors class FluidSystem : public COMMON_NS::AbstractObject { public: - gsoap_eml2_3::prodml22__ReservoirFluidKind getReservoirFluidKind() const; + gsoap_eml2_3::prodml23__ReservoirFluidKind getReservoirFluidKind() const; }; /** @@ -927,7 +927,7 @@ namespace PRODML2_2_NS * @param kind The kind. * @param hydrocarbonFlag True to hydrocarbon flag. */ - void pushBackPureFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PureComponentKind kind, bool hydrocarbonFlag); + void pushBackPureFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PureComponentKind kind, bool hydrocarbonFlag); GETTER_AND_SETTER_FLUID_COMPONENT_COMMON_ATTRIBUTES(PureFluidComponent) GETTER_FLUID_COMPONENT_ATTRIBUTE(PureFluidComponent, Kind, std::string) GETTER_FLUID_COMPONENT_ATTRIBUTE(PureFluidComponent, HydrocarbonFlag, bool) @@ -946,7 +946,7 @@ namespace PRODML2_2_NS * @param uid The UID. * @param kind The kind. */ - void pushBackPlusFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PlusComponentKind kind); + void pushBackPlusFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PlusComponentKind kind); GETTER_AND_SETTER_FLUID_COMPONENT_COMMON_ATTRIBUTES(PlusFluidComponent) GETTER_AND_SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE(PlusFluidComponent, SpecificGravity, double) GETTER_AND_SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE(PlusFluidComponent, StartingCarbonNumber, uint64_t) @@ -1009,7 +1009,7 @@ namespace PRODML2_2_NS * @param uid The UID. * @param kind The kind. */ - void pushBackPseudoFluidComponent(const std::string & uid, gsoap_eml2_3::prodml22__PseudoComponentKind kind); + void pushBackPseudoFluidComponent(const std::string & uid, gsoap_eml2_3::prodml23__PseudoComponentKind kind); GETTER_AND_SETTER_FLUID_COMPONENT_COMMON_ATTRIBUTES(PseudoFluidComponent) GETTER_AND_SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE(PseudoFluidComponent, SpecificGravity, double) GETTER_AND_SETTER_FLUID_COMPONENT_OPTIONAL_ATTRIBUTE(PseudoFluidComponent, StartingCarbonNumber, uint64_t) @@ -1034,10 +1034,10 @@ namespace PRODML2_2_NS */ void pushBackModel(const std::string & uid = ""); - GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_2, Model, Name, std::string) - GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_2, Model, Remark, std::string) - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_2, Model, ReferenceTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) - GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml22__FluidCharacterization, gsoapProxy2_2, Model, ReferenceStockTankTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) + GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_2, Model, Name, std::string) + GETTER_SETTER_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_2, Model, Remark, std::string) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_2, Model, ReferenceTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) + GETTER_SETTER_MEASURE_OPTIONAL_ATTRIBUTE_IN_VECTOR(gsoap_eml2_3::prodml23__FluidCharacterization, gsoapProxy2_2, Model, ReferenceStockTankTemperature, gsoap_eml2_3::eml23__ThermodynamicTemperatureUom) /** * Gets the table format count @@ -1078,7 +1078,7 @@ namespace PRODML2_2_NS * @param uom The uom associated to the values of this column * @param fluidProperty The property that this column contains */ - void pushBackTableFormatColumn(unsigned int tableFormatIndex, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty); + void pushBackTableFormatColumn(unsigned int tableFormatIndex, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty); /** * Pushes a table format colum @@ -1171,7 +1171,7 @@ namespace PRODML2_2_NS * @param uom The uom associated to the value of this parameter * @param fluidProperty The property kind of this value */ - void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty); + void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty); /** * Pushes back a phase related parameter in a model. @@ -1182,7 +1182,7 @@ namespace PRODML2_2_NS * @param fluidProperty The property kind of this value * @param phase The pahse associated to the parameter */ - void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml22__OutputFluidProperty fluidProperty, gsoap_eml2_3::prodml22__ThermodynamicPhase phase); + void pushBackParameter(unsigned int modelIndex, double value, gsoap_eml2_3::eml23__UnitOfMeasure uom, gsoap_eml2_3::prodml23__OutputFluidProperty fluidProperty, gsoap_eml2_3::prodml23__ThermodynamicPhase phase); }; /** The time series data object is intended for use in transferring time series of data, e.g. from a historian. @@ -1218,7 +1218,7 @@ namespace PRODML2_2_NS * keyword must be from the list defined by type ReportingFlow. * @param value The string value associated to the keyword */ - void pushBackKeywordValue(gsoap_eml2_3::prodml22__TimeSeriesKeyword keyword, const std::string & value); + void pushBackKeywordValue(gsoap_eml2_3::prodml23__TimeSeriesKeyword keyword, const std::string & value); /** * Set the uom of the data of the time series. @@ -1252,7 +1252,7 @@ namespace PRODML2_2_NS * @param value The time of the value to push back. * @param value The status of the value to push back. */ - void pushBackDoubleValue(double value, time_t timestamp, gsoap_eml2_3::prodml22__ValueStatus status); + void pushBackDoubleValue(double value, time_t timestamp, gsoap_eml2_3::prodml23__ValueStatus status); /** * Push back a new value (i.e data) in the time series @@ -1335,7 +1335,7 @@ namespace PRODML2_2_NS * @param index The index of the value in this timeseries * @return the status associated to a value at a particular index. */ - gsoap_eml2_3::prodml22__ValueStatus getValueStatus(unsigned int index) const; + gsoap_eml2_3::prodml23__ValueStatus getValueStatus(unsigned int index) const; /** * Get the count of keywords in this time series @@ -1348,7 +1348,7 @@ namespace PRODML2_2_NS * @param index The index of the keyword in this timeseries * @return the keyword at a particular index */ - gsoap_eml2_3::prodml22__TimeSeriesKeyword getKeyword(unsigned int index) const; + gsoap_eml2_3::prodml23__TimeSeriesKeyword getKeyword(unsigned int index) const; /** * Get the value of a keyword at a particular index. diff --git a/swig/swigResqml2Include.i b/swig/swigResqml2Include.i index e810f1f3e..f8d168d0b 100644 --- a/swig/swigResqml2Include.i +++ b/swig/swigResqml2Include.i @@ -2882,7 +2882,7 @@ namespace RESQML2_NS * * @returns The xyz point count of the patch at position @p patchIndex. */ - uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const; + uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const; /** * Get the xyz point count of all patches of this representation. @@ -2904,7 +2904,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const; + void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of a particular patch of this representation. xyz points are given in @@ -2918,7 +2918,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - void getXyzPointsOfPatchInGlobalCrs(unsigned int patchIndex, double * xyzPoints) const; + void getXyzPointsOfPatchInGlobalCrs(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of all patches of this representation. xyz points are given in the @@ -2975,7 +2975,7 @@ namespace RESQML2_NS * @returns Null if no seismic information have been provided for the patch at position @p * patchIndex. Else, its seismic support. */ - AbstractRepresentation* getSeismicSupportOfPatch(unsigned int patchIndex); + AbstractRepresentation* getSeismicSupportOfPatch(uint64_t patchIndex); /** * Gets all the abscissa of the points of a specific patch related to 2d seismic line. @@ -2988,7 +2988,7 @@ namespace RESQML2_NS * @param [out] values The array where the abscissa are going to be stored. The count of * this array must be equal to getXyzPointCountOfPatch(patchIndex). */ - void getSeismicLineAbscissaOfPointsOfPatch(unsigned int patchIndex, double* values) const; + void getSeismicLineAbscissaOfPointsOfPatch(uint64_t patchIndex, double* values) const; /** * Adds seismic 2d coordinates to an existing point geometry patch. @@ -3008,7 +3008,7 @@ namespace RESQML2_NS * must be already opened for writing and won't be closed in * this method. */ - void addSeismic2dCoordinatesToPatch(unsigned int patchIndex, double * lineAbscissa, + void addSeismic2dCoordinatesToPatch(uint64_t patchIndex, double * lineAbscissa, AbstractRepresentation * seismicSupport, EML2_NS::AbstractHdfProxy * proxy); /** @@ -3023,7 +3023,7 @@ namespace RESQML2_NS * count of this array must be equal to * getXyzPointCountOfPatch(patchIndex). */ - void getInlinesOfPointsOfPatch(unsigned int patchIndex, double * values) const; + void getInlinesOfPointsOfPatch(uint64_t patchIndex, double * values) const; /** * Gets all the crossline coordinates of the points of a specific patch related to seismic @@ -3038,7 +3038,7 @@ namespace RESQML2_NS * count of this array must be equal to * getXyzPointCountOfPatch(patchIndex). */ - void getCrosslinesOfPointsOfPatch(unsigned int patchIndex, double * values) const; + void getCrosslinesOfPointsOfPatch(uint64_t patchIndex, double * values) const; /** * Adds seismic 3d coordinates to an existing point geometry patch. @@ -3063,7 +3063,7 @@ namespace RESQML2_NS * values. It must be already opened for writing and won't be * closed in this method. */ - void addSeismic3dCoordinatesToPatch(unsigned int patchIndex, double * inlines, double * crosslines, uint64_t pointCount, + void addSeismic3dCoordinatesToPatch(uint64_t patchIndex, double * inlines, double * crosslines, uint64_t pointCount, AbstractRepresentation * seismicSupport, EML2_NS::AbstractHdfProxy * proxy); /** @@ -3084,7 +3084,7 @@ namespace RESQML2_NS * @param countCrossline The crossline count. * @param [in] seismicSupport The representation of the seismic line. */ - void addSeismic3dCoordinatesToPatch(unsigned int patchIndex, double startInline, double incrInline, unsigned int countInline, + void addSeismic3dCoordinatesToPatch(uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, AbstractRepresentation * seismicSupport); @@ -3235,7 +3235,7 @@ namespace RESQML2_NS public: uint64_t getPolylineCountOfPatch(uint64_t patchIndex) const; uint64_t getPolylineCountOfAllPatches() const; - void getNodeCountPerPolylineInPatch(unsigned int patchIndex, unsigned int * nodeCountPerPolyline) const; + void getNodeCountPerPolylineInPatch(uint64_t patchIndex, unsigned int * nodeCountPerPolyline) const; void getNodeCountPerPolylineOfAllPatches(unsigned int * nodeCountPerPolyline) const; void pushBackGeometryPatch( unsigned int * nodeCountPerPolyline, double * nodes, @@ -3247,11 +3247,11 @@ namespace RESQML2_NS uint64_t polylineCount, bool * polylineClosedFlags, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr); - bool areAllPolylinesClosedOfPatch(unsigned int patchIndex) const; + bool areAllPolylinesClosedOfPatch(uint64_t patchIndex) const; bool areAllPolylinesClosedOfAllPatches() const; - bool areAllPolylinesNonClosedOfPatch(unsigned int patchIndex) const; + bool areAllPolylinesNonClosedOfPatch(uint64_t patchIndex) const; bool areAllPolylinesNonClosedOfAllPatches() const; - void getClosedFlagPerPolylineOfPatch(unsigned int patchIndex, bool * closedFlagPerPolyline) const; + void getClosedFlagPerPolylineOfPatch(uint64_t patchIndex, bool * closedFlagPerPolyline) const; void getClosedFlagPerPolylineOfAllPatches(bool * closedFlagPerPolyline) const; bool hasALineRole() const; gsoap_eml2_3::resqml22__LineRole getLineRole() const; @@ -3361,9 +3361,9 @@ namespace RESQML2_NS class TriangulatedSetRepresentation : public AbstractSurfaceRepresentation { public: - uint64_t getTriangleCountOfPatch(unsigned int patchIndex) const; + uint64_t getTriangleCountOfPatch(uint64_t patchIndex) const; uint64_t getTriangleCountOfAllPatches() const; - void getTriangleNodeIndicesOfPatch(unsigned int patchIndex, unsigned int * triangleNodeIndices) const; + void getTriangleNodeIndicesOfPatch(uint64_t patchIndex, unsigned int * triangleNodeIndices) const; void getTriangleNodeIndicesOfAllPatches(unsigned int * triangleNodeIndices) const; void pushBackTrianglePatch(unsigned int nodeCount, double * nodes, unsigned int triangleCount, unsigned int * triangleNodeIndices, EML2_NS::AbstractHdfProxy* proxy = nullptr, EML2_NS::AbstractLocal3dCrs* localCrs = nullptr); }; @@ -3453,19 +3453,19 @@ namespace RESQML2_NS uint64_t elementCount, uint64_t offset, EML2_NS::AbstractHdfProxy* proxy = nullptr, - unsigned int patchIndex = std::numeric_limits::max()); + uint64_t patchIndex = std::numeric_limits::max()); - bool areElementIndicesPairwise(unsigned int patchIndex) const; - bool areElementIndicesBasedOnLattice(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; + bool areElementIndicesPairwise(uint64_t patchIndex) const; + bool areElementIndicesBasedOnLattice(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; - int64_t getLatticeElementIndicesStartValue(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; - uint64_t getLatticeElementIndicesDimensionCount(unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; - int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; - uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, unsigned int patchIndex, unsigned int elementIndicesIndex = 0) const; + int64_t getLatticeElementIndicesStartValue(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; + uint64_t getLatticeElementIndicesDimensionCount(uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; + int64_t getLatticeElementIndicesOffsetValue(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; + uint64_t getLatticeElementIndicesOffsetCount(unsigned int latticeDimensionIndex, uint64_t patchIndex, unsigned int elementIndicesIndex = 0) const; - gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex) const; - uint64_t getElementCountOfPatch(unsigned int patchIndex) const; - void getElementIndicesOfPatch(unsigned int patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const; + gsoap_eml2_3::eml23__IndexableElement getElementKindOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex) const; + uint64_t getElementCountOfPatch(uint64_t patchIndex) const; + void getElementIndicesOfPatch(uint64_t patchIndex, unsigned int elementIndicesIndex, uint64_t * elementIndices) const; void pushBackSupportingRepresentation(AbstractRepresentation * supportingRep); uint64_t getSupportingRepresentationCount() const; @@ -5126,7 +5126,7 @@ namespace RESQML2_NS double directionKX, double directionKY, double directionKZ, double spacingK, EML2_NS::AbstractLocal3dCrs * localCrs = nullptr); void addSeismic3dCoordinatesToPatch( - unsigned int patchIndex, + uint64_t patchIndex, double startInline, double incrInline, unsigned int countInline, double startCrossline, double incrCrossline, unsigned int countCrossline, unsigned int countSample, AbstractRepresentation * seismicSupport); @@ -5954,13 +5954,13 @@ namespace RESQML2_NS EML2_NS::PropertyKind* getPropertyKind() const; /** - * Gets the count of elements per property value. If the property is a scalar one then it should + * Gets the count of values per indexable element. If the property is a scalar one then it should * be one. If it is a vectorial one, then it should be more than one. It is not possible to have * some tensor property values (more dimensions than a vector) * - * @returns The element count per value. + * @returns The value count per indexable element. */ - uint64_t getElementCountPerValue() const; + uint64_t getValueCountPerIndexableElement() const; /** * Gets the kind of elements on which the property values are attached to @@ -6049,9 +6049,221 @@ namespace RESQML2_NS gsoap_eml2_3::eml23__FacetKind getFacetKind(unsigned int index) const; std::string getFacetValue(unsigned int index) const; - //****************************/ - //****** INTEGER *************/ - //****************************/ + /** + * @brief Adds a nd array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according to the topology + * of the representation it is based on. + * @param [in] proxy The HDF proxy where to write the property values. It must be + * already opened for writing and won't be closed in this method. If + * @c nullptr, then a default HDF proxy must be defined in the + * repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArrayOfValues(const T* values, const uint64_t* numValues, uint32_t numDimensionsInArray, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = std::numeric_limits::max()); + + template + void pushBackArrayOfValuesPlusStatistics(const T* values, const uint64_t* numValues, uint32_t numDimensionsInArray, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr); + + /** + * @brief Adds a 1d array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according to the topology + * of the representation it is based on. + * @param valueCount The number of values to write. + * @param [in] proxy The HDF proxy where to write the property values. It must be + * already opened for writing and won't be closed in this method. If + * @c nullptr, then a default HDF proxy must be defined in the + * repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArray1dOfValues(const T* values, uint64_t valueCount, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = std::numeric_limits::max()); + template + void pushBackArray1dOfValuesPlusStatistics(const T* values, uint64_t valueCount, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr); + + /** + * @brief Adds a 2d array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according to + * the topology of the representation it is based on. + * @param valueCountInFastestDim The number of values to write in the fastest + * dimension (mainly I dimension). + * @param valueCountInSlowestDim The number of values to write in the slowest + * dimension (mainly J dimension). + * @param [in] proxy The HDF proxy where to write the property values. It + * must be already opened for writing and won't be + * closed in this method. If @c nullptr, then a default + * HDF proxy must be defined in the repository. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArray2dOfValues(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = std::numeric_limits::max()); + template + void pushBackArray2dOfValuesPlusStatistics(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr); + + /** + * @brief Adds a 3d array of explicit values to the property values. + * + * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. + * @exception std::invalid_argument If @p proxy is @c nullptr and no default HDF proxy is + * defined in the repository. + * + * @param values All the property values to set ordered according the + * topology of the representation it is based on. + * @param valueCountInFastestDim The number of values to write in the fastest + * dimension (mainly I dimension). + * @param valueCountInMiddleDim The number of values to write in the middle dimension + * (mainly J dimension). + * @param valueCountInSlowestDim The number of values to write in the slowest + * dimension (mainly K dimension). + * @param [in] proxy The HDF proxy where to write the property values. It + * must be already opened for writing and won't be + * closed in this method. If @c nullptr, then a default + * HDF proxy must be defined in the repository. + * @param forceStatisticsComputation Indicates if FESAPI must force computation of the statistics or not. + * @param nullValue The integer null value. Ignored (fixed to NaN) if it is a floating point value. + */ + template + void pushBackArray3dOfValues(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, + EML2_NS::AbstractHdfProxy* proxy = nullptr, T nullValue = std::numeric_limits::max()); + template + void pushBackArray3dOfValuesPlusStatistics(const T* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, const COMMON_NS::NumberArrayStatistics& statistics, + EML2_NS::AbstractHdfProxy* proxy = nullptr); + + %template(pushBackInt8ArrayOfValues) pushBackArrayOfValues; + %template(pushBackUInt8ArrayOfValues) pushBackArrayOfValues; + %template(pushBackInt16ArrayOfValues) pushBackArrayOfValues; + %template(pushBackUInt16ArrayOfValues) pushBackArrayOfValues; + %template(pushBackInt32ArrayOfValues) pushBackArrayOfValues; + %template(pushBackUInt32ArrayOfValues) pushBackArrayOfValues; + %template(pushBackInt64ArrayOfValues) pushBackArrayOfValues; + %template(pushBackUInt64ArrayOfValues) pushBackArrayOfValues; + %template(pushBackFloatArrayOfValues) pushBackArrayOfValues; + %template(pushBackDoubleArrayOfValues) pushBackArrayOfValues; + + %template(pushBackInt8ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackUInt8ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackInt16ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackUInt16ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackInt32ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackUInt32ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackInt64ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackUInt64ArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackFloatArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + %template(pushBackDoubleArrayOfValuesPlusStatistics) pushBackArrayOfValuesPlusStatistics; + + %template(pushBackInt8Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackUInt8Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackInt16Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackUInt16Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackInt32Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackUInt32Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackInt64Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackUInt64Array1dOfValues) pushBackArray1dOfValues; + %template(pushBackFloatArray1dOfValues) pushBackArray1dOfValues; + %template(pushBackDoubleArray1dOfValues) pushBackArray1dOfValues; + + %template(pushBackInt8Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackUInt8Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackInt16Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackUInt16Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackInt32Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackUInt32Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackInt64Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackUInt64Array1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackFloatArray1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + %template(pushBackDoubleArray1dOfValuesPlusStatistics) pushBackArray1dOfValuesPlusStatistics; + + %template(pushBackInt8Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackUInt8Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackInt16Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackUInt16Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackInt32Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackUInt32Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackInt64Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackUInt64Array2dOfValues) pushBackArray2dOfValues; + %template(pushBackFloatArray2dOfValues) pushBackArray2dOfValues; + %template(pushBackDoubleArray2dOfValues) pushBackArray2dOfValues; + + %template(pushBackInt8Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackUInt8Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackInt16Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackUInt16Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackInt32Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackUInt32Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackInt64Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackUInt64Array2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackFloatArray2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + %template(pushBackDoubleArray2dOfValuesPlusStatistics) pushBackArray2dOfValuesPlusStatistics; + + %template(pushBackInt8Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackUInt8Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackInt16Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackUInt16Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackInt32Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackUInt32Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackInt64Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackUInt64Array3dOfValues) pushBackArray3dOfValues; + %template(pushBackFloatArray3dOfValues) pushBackArray3dOfValues; + %template(pushBackDoubleArray3dOfValues) pushBackArray3dOfValues; + + %template(pushBackInt8Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackUInt8Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackInt16Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackUInt16Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackInt32Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackUInt32Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackInt64Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackUInt64Array3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackFloatArray3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + %template(pushBackDoubleArray3dOfValuesPlusStatistics) pushBackArray3dOfValuesPlusStatistics; + + template + COMMON_NS::NumberArrayStatistics getArrayOfValuesOfPatch(uint64_t patchIndex, T* values, bool forceStatisticsComputation = false) const; + + template COMMON_NS::NumberArrayStatistics getStatistics(uint64_t patchIndex) const; + + %template(getInt8ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getUInt8ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getInt16ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getUInt16ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getInt32ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getUInt32ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getInt64ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getUInt64ValuesOfPatch) getArrayOfValuesOfPatch; + %template(getFloatValuesOfPatch) getArrayOfValuesOfPatch; + %template(getDoubleValuesOfPatch) getArrayOfValuesOfPatch; + + %template(getInt8StatisticsOfPatch) getStatistics; + %template(getUInt8StatisticsOfPatch) getStatistics; + %template(getInt16StatisticsOfPatch) getStatistics; + %template(getUInt16StatisticsOfPatch) getStatistics; + %template(getInt32StatisticsOfPatch) getStatistics; + %template(getUInt32StatisticsOfPatch) getStatistics; + %template(getInt64StatisticsOfPatch) getStatistics; + %template(getUInt64StatisticsOfPatch) getStatistics; + %template(getFloatStatisticsOfPatch) getStatistics; + %template(getDoubleStatisticsOfPatch) getStatistics; /** * @brief Adds a 1d array of explicit int 64 bits values to the property values. @@ -6069,6 +6281,9 @@ namespace RESQML2_NS * repository. * @param nullValue The null value. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray1dOfValues instead.")]] + #endif void pushBackInt64Hdf5Array1dOfValues(const int64_t * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** @@ -6076,6 +6291,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array1dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray1dOfValues instead.")]] + #endif void pushBackInt32Hdf5Array1dOfValues(const int * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** @@ -6083,6 +6301,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array1dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray1dOfValues instead.")]] + #endif void pushBackInt16Hdf5Array1dOfValues(const short * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** @@ -6090,6 +6311,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array1dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray1dOfValues instead.")]] + #endif void pushBackInt8Hdf5Array1dOfValues(const int8_t * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** @@ -6111,6 +6335,9 @@ namespace RESQML2_NS * HDF proxy must be defined in the repository. * @param nullValue The null value. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackInt64Hdf5Array2dOfValues(const int64_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** @@ -6118,6 +6345,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array2dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackInt32Hdf5Array2dOfValues(const int * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** @@ -6125,6 +6355,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array2dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackInt16Hdf5Array2dOfValues(const short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** @@ -6132,6 +6365,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array2dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackUInt16Hdf5Array2dOfValues(const unsigned short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); /** @@ -6139,6 +6375,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array2dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackInt8Hdf5Array2dOfValues(const int8_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** @@ -6162,6 +6401,9 @@ namespace RESQML2_NS * HDF proxy must be defined in the repository. * @param nullValue The null value. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackInt64Hdf5Array3dOfValues(const int64_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** @@ -6169,6 +6411,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array3dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackInt32Hdf5Array3dOfValues(const int * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** @@ -6176,6 +6421,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array3dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackInt16Hdf5Array3dOfValues(const short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** @@ -6183,6 +6431,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array3dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackUInt16Hdf5Array3dOfValues(const unsigned short * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); /** @@ -6190,6 +6441,9 @@ namespace RESQML2_NS * * @copydetails pushBackInt64Hdf5Array3dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackInt8Hdf5Array3dOfValues(const int8_t * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** @@ -6210,35 +6464,50 @@ namespace RESQML2_NS * be defined in the repository. * @param nullValue The null value. */ - virtual void pushBackInt64Hdf5ArrayOfValues(const int64_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif + void pushBackInt64Hdf5ArrayOfValues(const int64_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int64_t nullValue); /** * Adds an nd array of explicit integer values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - virtual void pushBackInt32Hdf5ArrayOfValues(const int * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int nullValue); + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif + void pushBackInt32Hdf5ArrayOfValues(const int * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int nullValue); /** * Adds an nd array of explicit short values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - virtual void pushBackInt16Hdf5ArrayOfValues(const short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, short nullValue); + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif + void pushBackInt16Hdf5ArrayOfValues(const short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, short nullValue); /** * Adds an nd array of explicit unsigned short values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - virtual void pushBackUInt16Hdf5ArrayOfValues(const unsigned short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif + void pushBackUInt16Hdf5ArrayOfValues(const unsigned short * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, unsigned short nullValue); /** * Adds an nd array of explicit int8_t values to the property values. * * @copydetails pushBackInt64Hdf5ArrayOfValues */ - virtual void pushBackInt8Hdf5ArrayOfValues(const int8_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif + void pushBackInt8Hdf5ArrayOfValues(const int8_t * values, const uint64_t * numValues, unsigned int numDimensionsInArray, EML2_NS::AbstractHdfProxy* proxy, int8_t nullValue); /** * Pushes back a new patch of values for this property where the values have not to be written @@ -6319,118 +6588,6 @@ namespace RESQML2_NS */ int64_t getNullValueOfPatch(uint64_t patchIndex) const; - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 64 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - * - * @returns The null value. - */ - int64_t getInt64ValuesOfPatch(uint64_t patchIndex, int64_t * values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 64 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - * - * @returns The null value. - */ - uint64_t getUInt64ValuesOfPatch(uint64_t patchIndex, uint64_t* values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 32 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - int32_t getInt32ValuesOfPatch(uint64_t patchIndex, int32_t * values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 32 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - uint32_t getUInt32ValuesOfPatch(uint64_t patchIndex, uint32_t * values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 16 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - int16_t getInt16ValuesOfPatch(uint64_t patchIndex, int16_t * values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 16 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - uint16_t getUInt16ValuesOfPatch(uint64_t patchIndex, uint16_t * values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be signed 8 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - int8_t getInt8ValuesOfPatch(uint64_t patchIndex, int8_t* values) const; - - /** - * Gets all the values of a given patch of this instance. Values are supposed to be unsigned 8 bits integer. - * - * @exception std::logic_error If the underlying gSOAP instance is not a RESQML2.0 one. - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex) - * - * @returns The null value. - */ - uint8_t getUInt8ValuesOfPatch(uint64_t patchIndex, uint8_t* values) const; - //*********************************** //*** Writing with hyperslabbing ***** //*********************************** @@ -7002,7 +7159,7 @@ namespace RESQML2_NS * @param numArrayDimensions The number of dimensions of the array to write. */ void getInt64ValuesOfPatch( - unsigned int patchIndex, + uint64_t patchIndex, int64_t* values, uint64_t const * numValuesInEachDimension, uint64_t const * offsetInEachDimension, @@ -7033,7 +7190,7 @@ namespace RESQML2_NS * (mainly K dimension). */ void getInt64ValuesOf3dPatch( - unsigned int patchIndex, + uint64_t patchIndex, int64_t* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, @@ -7065,7 +7222,7 @@ namespace RESQML2_NS * @returns The null value. */ int getIntValuesOfPatch( - unsigned int patchIndex, + uint64_t patchIndex, int* values, const uint64_t* numValuesInEachDimension, const uint64_t* offsetInEachDimension, @@ -7096,7 +7253,7 @@ namespace RESQML2_NS * (mainly K dimension). */ void getIntValuesOf3dPatch( - unsigned int patchIndex, + uint64_t patchIndex, int* values, unsigned int valueCountInFastestDim, unsigned int valueCountInMiddleDim, @@ -7124,6 +7281,9 @@ namespace RESQML2_NS * method. If @c nullptr (default value), then a default HDF proxy * must be defined in the repository. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray1dOfValues instead.")]] + #endif void pushBackDoubleHdf5Array1dOfValues(const double * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7144,6 +7304,9 @@ namespace RESQML2_NS * (default value), then a default HDF proxy must be * defined in the repository. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackDoubleHdf5Array2dOfValues(const double * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7166,6 +7329,9 @@ namespace RESQML2_NS * (default value), then a default HDF proxy must be * defined in the repository. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackDoubleHdf5Array3dOfValues(const double * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7185,6 +7351,9 @@ namespace RESQML2_NS * then a default HDF proxy must be defined in the * repository. */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif void pushBackDoubleHdf5ArrayOfValues(double const * values, uint64_t const * numValues, unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7192,6 +7361,9 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5Array1dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray1dOfValues instead.")]] + #endif void pushBackFloatHdf5Array1dOfValues(const float * values, uint64_t valueCount, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7199,6 +7371,9 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5Array2dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray2dOfValues instead.")]] + #endif void pushBackFloatHdf5Array2dOfValues(const float * values, uint64_t valueCountInFastestDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7206,6 +7381,9 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5Array3dOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArray3dOfValues instead.")]] + #endif void pushBackFloatHdf5Array3dOfValues(const float * values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, uint64_t valueCountInSlowestDim, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7216,6 +7394,9 @@ namespace RESQML2_NS * * @copydetails pushBackDoubleHdf5ArrayOfValues */ + #if SWIG_VERSION >= 0x040100 + [[deprecated("Use pushBackArrayOfValues instead.")]] + #endif void pushBackFloatHdf5ArrayOfValues(float const * values, uint64_t const * numValues, unsigned int numArrayDimensions, EML2_NS::AbstractHdfProxy* proxy = nullptr); /** @@ -7238,30 +7419,6 @@ namespace RESQML2_NS */ std::string pushBackRefToExistingFloatingPointDataset(EML2_NS::AbstractHdfProxy* proxy, const std::string & datasetName = ""); - /** - * Gets all the values of a particular patch of this instance which are supposed to be double - * ones. - * - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - */ - void getDoubleValuesOfPatch(unsigned int patchIndex, double * values) const; - - /** - * Gets all the values of a particular patch of this instance which are supposed to be float - * ones. - * - * @exception std::out_of_range If @p patchIndex is strictly greater than patch count. - * - * @param patchIndex The index of the patch we want the values from. - * @param [out] values Preallocated buffer for receiving the values. Size is - * getValuesCountOfPatch(patchIndex). - */ - void getFloatValuesOfPatch(unsigned int patchIndex, float * values) const; - //******************************************/ //*** For FLOATING POINT hyperslabbing *****/ //******************************************/ @@ -7285,7 +7442,7 @@ namespace RESQML2_NS * @param numArrayDimensions The number of dimensions of the HDF5 array to read. */ void getFloatValuesOfPatch( - unsigned int patchIndex, + uint64_t patchIndex, float* values, uint64_t const * numValuesInEachDimension, uint64_t const * offsetInEachDimension, @@ -7315,7 +7472,7 @@ namespace RESQML2_NS * (mainly K dimension). */ void getFloatValuesOf3dPatch( - unsigned int patchIndex, + uint64_t patchIndex, float* values, uint64_t valueCountInFastestDim, uint64_t valueCountInMiddleDim, @@ -7333,7 +7490,7 @@ namespace RESQML2_NS { public: void pushBackStringHdf5ArrayOfValues(const std::vector & values, EML2_NS::AbstractHdfProxy * proxy); - std::vector getStringValuesOfPatch(unsigned int patchIndex); + std::vector getStringValuesOfPatch(uint64_t patchIndex); /** * Pushes back a new patch of values for this property where the values have not to be written in @@ -7521,7 +7678,7 @@ namespace RESQML2_NS * greater than @p 0 for a non vector property or greater than the vector size for a * vector property). */ - double getMinimumValue(unsigned int index = 0) const; + double getMinimumValue(uint64_t index = 0) const; /** * @brief Gets the maximum value of a non vector property or the maximum value of one given @@ -7536,7 +7693,7 @@ namespace RESQML2_NS * greater than @p 0 for a non vector property or greater than the vector size for a * vector property). */ - double getMaximumValue(unsigned int index = 0) const; + double getMaximumValue(uint64_t index = 0) const; /** * @brief Sets the minimum value of a non vector property or the minimum value of one given @@ -7547,7 +7704,7 @@ namespace RESQML2_NS * case) or zero-based index of the vector value for which we want to set the * minimum value (vector property case). */ - void setMinimumValue(double value, unsigned int index = 0) const; + void setMinimumValue(double value, uint64_t index = 0) const; /** * @brief Sets the maximum value of a non vector property or the maximum value of one given @@ -7558,7 +7715,7 @@ namespace RESQML2_NS * case) or zero-based index of the vector value for which we want to set the * maximum value (vector property case). */ - void setMaximumValue(double value, unsigned int index = 0) const; + void setMaximumValue(double value, uint64_t index = 0) const; //******************************************/ //*** For FLOATING POINT hyperslabbing *****/ @@ -8540,7 +8697,7 @@ namespace RESQML2_NS * * @returns The xyz point count of the patch at position @p patchIndex. */ - uint64_t getXyzPointCountOfPatch(unsigned int patchIndex) const; + uint64_t getXyzPointCountOfPatch(uint64_t patchIndex) const; /** * Get the xyz point count of all patches of this property. @@ -8562,7 +8719,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - void getXyzPointsOfPatch(unsigned int patchIndex, double * xyzPoints) const; + void getXyzPointsOfPatch(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of a particular patch of this property. xyz points are given in @@ -8576,7 +8733,7 @@ namespace RESQML2_NS * dimension. It must be preallocated with a size of 3 * * getXyzPointCountOfPatch(patchIndex). */ - void getXyzPointsOfPatchInGlobalCrs(unsigned int patchIndex, double * xyzPoints) const; + void getXyzPointsOfPatchInGlobalCrs(uint64_t patchIndex, double * xyzPoints) const; /** * @brief Gets all the xyz points of all patches of this property. xyz points are given in the diff --git a/test/eml2_test/HdfProxy.cpp b/test/eml2_test/HdfProxy.cpp index 3ea6f6120..e619e92db 100644 --- a/test/eml2_test/HdfProxy.cpp +++ b/test/eml2_test/HdfProxy.cpp @@ -40,14 +40,14 @@ void HdfProxy::initRepo() { RESQML2_NS::DiscreteProperty* discreteProp432 = repo->createDiscreteProperty(ijkgrid432, "f9447f76-34c5-4967-a3ee-4f400f96dba6", "4x3x2 grid cellIndex", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propType1); - LONG64 discreteProp432Values[24] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, + int64_t discreteProp432Values[24] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23 }; // getting the hdf proxy EML2_NS::AbstractHdfProxy* hdfProxy = repo->getHdfProxySet()[0]; hdfProxy->setCompressionLevel(6); hdfProxy->setMaxChunkSize(192/2); // Create two chunks - discreteProp432->pushBackInt64Hdf5Array3dOfValues(discreteProp432Values, 4, 3, 2, hdfProxy, 1111); + discreteProp432->pushBackArray3dOfValues(discreteProp432Values, 4, 3, 2, hdfProxy, static_cast(1111)); } void HdfProxy::readRepo() { diff --git a/test/resqml2_2test/ContinuousColorMapTest.cpp b/test/resqml2_2test/ContinuousColorMapTest.cpp index bb594f374..725851ed5 100644 --- a/test/resqml2_2test/ContinuousColorMapTest.cpp +++ b/test/resqml2_2test/ContinuousColorMapTest.cpp @@ -80,7 +80,7 @@ void ContinuousColorMapTest::initRepo() { ContinuousProperty* continuousProperty = repo->createContinuousProperty(grid2dRepresentation, uuidContinuousProperty, titleContinuousProperty, 2, gsoap_eml2_3::eml23__IndexableElement::nodes, "continuousColorMapIndex", propertyKind); double values[2] = { 0., 1. }; - continuousProperty->pushBackDoubleHdf5Array2dOfValues(values, numPointInFastestDirection, numPointsInSlowestDirection, hdfProxy); + continuousProperty->pushBackArray2dOfValues(values, numPointInFastestDirection, numPointsInSlowestDirection, hdfProxy); // creating the continuous color map RESQML2_NS::ContinuousColorMap* continuousColorMap = repo->createContinuousColorMap(defaultUuid, defaultTitle, gsoap_eml2_3::resqml22__InterpolationDomain::rgb, gsoap_eml2_3::resqml22__InterpolationMethod::linear); diff --git a/test/resqml2_2test/DiscreteColorMapTest.cpp b/test/resqml2_2test/DiscreteColorMapTest.cpp index f5d19f6e9..a32abd603 100644 --- a/test/resqml2_2test/DiscreteColorMapTest.cpp +++ b/test/resqml2_2test/DiscreteColorMapTest.cpp @@ -75,7 +75,7 @@ void DiscreteColorMapTest::initRepo() { DiscreteProperty* discreteProperty = repo->createDiscreteProperty(ijkgrid, uuidDiscreteProperty, titleDiscreteProperty, 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); uint16_t prop1Values[2] = { 0, 1 }; - discreteProperty->pushBackUInt16Hdf5Array3dOfValues(prop1Values, 2, 1, 1, hdfProxy, -1); + discreteProperty->pushBackArray3dOfValues(prop1Values, 2, 1, 1, hdfProxy); // associating a discrete color map to the discrete property kind RESQML2_NS::DiscreteColorMap* discreteColorMap1 = repo->createDiscreteColorMap(uuidPropertyKindDiscreteColorMap, titlePropertyKindDiscreteColorMap); diff --git a/test/resqml2_test/BigIjkGridExplicitRepresentationTest.cpp b/test/resqml2_test/BigIjkGridExplicitRepresentationTest.cpp index 4dc1d2eea..ced48ed6c 100644 --- a/test/resqml2_test/BigIjkGridExplicitRepresentationTest.cpp +++ b/test/resqml2_test/BigIjkGridExplicitRepresentationTest.cpp @@ -59,9 +59,9 @@ void BigIjkGridExplicitRepresentationTest::initRepo() { 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - std::unique_ptr discretePropertyValues(new unsigned short[iCount * jCount * kCount]); + std::unique_ptr discretePropertyValues(new unsigned short[iCount * jCount * kCount]); initDiscreteProperty(discretePropertyValues.get()); - discreteProperty->pushBackUInt16Hdf5Array3dOfValues(discretePropertyValues.get(), iCount, jCount, kCount, nullptr, -1); + discreteProperty->pushBackArray3dOfValues(discretePropertyValues.get(), iCount, jCount, kCount, nullptr); // adding a continuous property propertyKind = repo->createPartial("4a305182-221e-4205-9e7c-a36b06fa5b3d", "length"); @@ -73,7 +73,7 @@ void BigIjkGridExplicitRepresentationTest::initRepo() { propertyKind); std::unique_ptr continuousPropertyValues(new double[iCount * jCount * kCount]); initContinuousProperty(continuousPropertyValues.get()); - continuousProperty->pushBackDoubleHdf5Array1dOfValues(continuousPropertyValues.get(), iCount * jCount * kCount, nullptr); + continuousProperty->pushBackArray1dOfValues(continuousPropertyValues.get(), iCount * jCount * kCount, nullptr); } void BigIjkGridExplicitRepresentationTest::readRepo() { diff --git a/test/resqml2_test/BigIjkGridParametricRepresentationTest.cpp b/test/resqml2_test/BigIjkGridParametricRepresentationTest.cpp index 6ba29b45c..6dfbf7e0e 100644 --- a/test/resqml2_test/BigIjkGridParametricRepresentationTest.cpp +++ b/test/resqml2_test/BigIjkGridParametricRepresentationTest.cpp @@ -78,9 +78,9 @@ void BigIjkGridParametricRepresentationTest::initRepo() { 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - std::unique_ptr discretePropertyValues(new unsigned short[iCount * jCount * kCount]); + std::unique_ptr discretePropertyValues(new unsigned short[iCount * jCount * kCount]); initDiscreteProperty(discretePropertyValues.get()); - discreteProperty->pushBackUInt16Hdf5Array3dOfValues(discretePropertyValues.get(), iCount, jCount, kCount, nullptr, -1); + discreteProperty->pushBackArray3dOfValues(discretePropertyValues.get(), iCount, jCount, kCount); // adding a continuous property propertyKind = repo->createPartial("4a305182-221e-4205-9e7c-a36b06fa5b3d", "length"); @@ -92,7 +92,7 @@ void BigIjkGridParametricRepresentationTest::initRepo() { propertyKind); std::unique_ptr continuousPropertyValues(new double[iCount * jCount * kCount]); initContinuousProperty(continuousPropertyValues.get()); - continuousProperty->pushBackDoubleHdf5Array1dOfValues(continuousPropertyValues.get(), iCount * jCount * kCount, nullptr); + continuousProperty->pushBackArray1dOfValues(continuousPropertyValues.get(), iCount * jCount * kCount, nullptr); } void BigIjkGridParametricRepresentationTest::readRepo() { diff --git a/test/resqml2_test/CategoricalProperty.cpp b/test/resqml2_test/CategoricalProperty.cpp index 272dcec90..b0e39dcfb 100644 --- a/test/resqml2_test/CategoricalProperty.cpp +++ b/test/resqml2_test/CategoricalProperty.cpp @@ -66,7 +66,7 @@ void CategoricalProperty::initRepo() { stringTableLookup, propertyKind); int8_t charValues[6] = { 0, 1, 2, 3, 4, 5 }; - charCategoricalProperty->pushBackInt8Hdf5Array3dOfValues(charValues, 1, 2, 3, hdfProxy, -1); + charCategoricalProperty->pushBackArray3dOfValues(charValues, 1, 2, 3); // creating the Double Table Lookup RESQML2_NS::DoubleTableLookup* dblTableLookup = repo->createDoubleTableLookup("0df04180-8bb1-4ca2-90c2-c48bfd4b0958", "My Double Table Lookup"); @@ -84,7 +84,7 @@ void CategoricalProperty::initRepo() { dblTableLookup, propertyKind); double dblValues[6] = { .0, .1, .2, .3, .4, .5 }; - dblCategoricalProperty->pushBackDoubleHdf5Array3dOfValues(dblValues, 1, 2, 3, hdfProxy); + dblCategoricalProperty->pushBackArray3dOfValues(dblValues, 1, 2, 3, hdfProxy); } void CategoricalProperty::readRepo() { diff --git a/test/resqml2_test/CommentProperty.cpp b/test/resqml2_test/CommentProperty.cpp index 06d47eccc..05ef5de68 100644 --- a/test/resqml2_test/CommentProperty.cpp +++ b/test/resqml2_test/CommentProperty.cpp @@ -68,8 +68,8 @@ void CommentProperty::readRepo() { // ************************************ // reading the ContinuousProperty - // getElementCountPerValue - REQUIRE(commentProperty->getElementCountPerValue() == 1); + // getValueCountPerIndexableElement + REQUIRE(commentProperty->getValueCountPerIndexableElement() == 1); // getAttachmentKind REQUIRE(commentProperty->getAttachmentKind() == gsoap_eml2_3::eml23__IndexableElement::nodes); diff --git a/test/resqml2_test/ContinuousProperty.cpp b/test/resqml2_test/ContinuousProperty.cpp index a2daa2d4b..c7c66d8ec 100644 --- a/test/resqml2_test/ContinuousProperty.cpp +++ b/test/resqml2_test/ContinuousProperty.cpp @@ -48,20 +48,20 @@ void ContinuousProperty::initRepo() { gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa, propertyKind); - float fltValues[24] = { -1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 4, + float fltValues[24] = { 1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 5 }; - noMinMaxFltProperty->pushBackFloatHdf5Array3dOfValues(fltValues, 2, 3, 4); + noMinMaxFltProperty->pushBackArray3dOfValues(fltValues, 2, 3, 4); - // creating Float prop without min max + // creating Double prop without min max RESQML2_NS::ContinuousProperty* noMinMaxDblProperty = repo->createContinuousProperty( rep, "f2c1c3de-0986-485a-9d09-d0edeadf0d1e", "Double prop without min max", 1, gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa, propertyKind); - double dblValues[24] = { -1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 4, + double dblValues[24] = { 1, std::numeric_limits::quiet_NaN(), 1, std::numeric_limits::quiet_NaN(), 3, 4, -1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 4, -1, 0, 1, 2, 3, 5 }; - noMinMaxDblProperty->pushBackDoubleHdf5Array3dOfValues(dblValues, 2, 3, 4); + noMinMaxDblProperty->pushBackArray3dOfValues(dblValues, 2, 3, 4); // creating Float prop with min max computation RESQML2_NS::ContinuousProperty* computedMinMaxFltProperty = repo->createContinuousProperty( @@ -70,7 +70,8 @@ void ContinuousProperty::initRepo() { gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa, propertyKind); - computedMinMaxFltProperty->pushBackFloatHdf5Array3dOfValues(fltValues, 2, 3, 4, std::numeric_limits::quiet_NaN(), std::numeric_limits::quiet_NaN()); + COMMON_NS::NumberArrayStatistics floatStats(fltValues, 24); + computedMinMaxFltProperty->pushBackArray3dOfValuesPlusStatistics(fltValues, 2, 3, 4, floatStats); // creating Float prop with min max computation RESQML2_NS::ContinuousProperty* computedMinMaxDblProperty = repo->createContinuousProperty( @@ -79,7 +80,8 @@ void ContinuousProperty::initRepo() { gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa, propertyKind); - computedMinMaxDblProperty->pushBackDoubleHdf5Array3dOfValues(dblValues, 2, 3, 4, std::numeric_limits::quiet_NaN(), std::numeric_limits::quiet_NaN()); + COMMON_NS::NumberArrayStatistics doubleStats(dblValues, 24); + computedMinMaxDblProperty->pushBackArray3dOfValuesPlusStatistics(dblValues, 2, 3, 4, doubleStats); // creating Float prop with min max forcing RESQML2_NS::ContinuousProperty* forcingMinMaxFltProperty = repo->createContinuousProperty( @@ -88,7 +90,10 @@ void ContinuousProperty::initRepo() { gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa, propertyKind); - forcingMinMaxFltProperty->pushBackFloatHdf5Array3dOfValues(fltValues, 2, 3, 4, -5.5, 2.0); + COMMON_NS::NumberArrayStatistics floatForcedStats; + floatForcedStats.setMinimum(-5.5, 0); + floatForcedStats.setMaximum(2.0, 0); + forcingMinMaxFltProperty->pushBackArray3dOfValuesPlusStatistics(fltValues, 2, 3, 4, floatForcedStats); // creating Float prop with min max forcing RESQML2_NS::ContinuousProperty* forcingMinMaxDblProperty = repo->createContinuousProperty( @@ -97,7 +102,10 @@ void ContinuousProperty::initRepo() { gsoap_eml2_3::eml23__IndexableElement::cells, gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa, propertyKind); - forcingMinMaxDblProperty->pushBackDoubleHdf5Array3dOfValues(dblValues, 2, 3, 4, -5.5, 2.0); + COMMON_NS::NumberArrayStatistics doubleForcedStats; + doubleForcedStats.setMinimum(-5.5, 0); + doubleForcedStats.setMaximum(2.0, 0); + forcingMinMaxDblProperty->pushBackArray3dOfValuesPlusStatistics(dblValues, 2, 3, 4, doubleForcedStats); // creating Constant Floating point prop RESQML2_NS::ContinuousProperty* constantDblProperty = repo->createContinuousProperty( @@ -111,15 +119,15 @@ void ContinuousProperty::initRepo() { void ContinuousProperty::readRepo() { RESQML2_NS::ContinuousProperty* noMinMaxFltProperty = repo->getDataObjectByUuid(defaultUuid); - REQUIRE(noMinMaxFltProperty->getElementCountPerValue() == 1); + REQUIRE(noMinMaxFltProperty->getValueCountPerIndexableElement() == 1); REQUIRE(noMinMaxFltProperty->getAttachmentKind() == gsoap_eml2_3::eml23__IndexableElement::cells); REQUIRE(noMinMaxFltProperty->getUom() == gsoap_resqml2_0_1::resqml20__ResqmlUom::Pa); auto valuesCount = noMinMaxFltProperty->getValuesCountPerDimensionOfPatch(0); REQUIRE(std::equal(std::begin(valuesCount), std::end(valuesCount), std::begin({ 4, 3, 2 }))); REQUIRE(noMinMaxFltProperty->getValuesCountOfPatch(0) == 24); float fltValues[24]; - noMinMaxFltProperty->getFloatValuesOfPatch(0, fltValues); - REQUIRE(fltValues[0] == -1); + const auto floatStats = noMinMaxFltProperty->getArrayOfValuesOfPatch(0, fltValues); + REQUIRE(fltValues[0] == 1); REQUIRE(fltValues[1] == 0); REQUIRE(fltValues[2] == 1); REQUIRE(fltValues[3] == 2); @@ -145,15 +153,20 @@ void ContinuousProperty::readRepo() { REQUIRE(fltValues[23] == 5); REQUIRE(std::isnan(noMinMaxFltProperty->getMinimumValue())); REQUIRE(std::isnan(noMinMaxFltProperty->getMaximumValue())); + REQUIRE(std::isnan(floatStats.getNullValue())); + REQUIRE(floatStats.getMaximumSize() == 0); + REQUIRE(floatStats.getMinimumSize() == 0); + REQUIRE(floatStats.getValidValueCountSize() == 0); + REQUIRE(floatStats.getModeSize() == 0); RESQML2_NS::ContinuousProperty* noMinMaxDblProperty = repo->getDataObjectByUuid("f2c1c3de-0986-485a-9d09-d0edeadf0d1e"); REQUIRE(noMinMaxDblProperty->getValuesCountOfPatch(0) == 24); double dblValues[24]; - noMinMaxDblProperty->getDoubleValuesOfPatch(0, dblValues); - REQUIRE(dblValues[0] == -1); - REQUIRE(dblValues[1] == 0); + const auto doubleStats = noMinMaxDblProperty->getArrayOfValuesOfPatch(0, dblValues, true); + REQUIRE(dblValues[0] == 1); + REQUIRE(std::isnan(dblValues[1])); REQUIRE(dblValues[2] == 1); - REQUIRE(dblValues[3] == 2); + REQUIRE(std::isnan(dblValues[3])); REQUIRE(dblValues[4] == 3); REQUIRE(dblValues[5] == 4); REQUIRE(dblValues[6] == -1); @@ -176,6 +189,26 @@ void ContinuousProperty::readRepo() { REQUIRE(dblValues[23] == 5); REQUIRE(std::isnan(noMinMaxDblProperty->getMinimumValue())); REQUIRE(std::isnan(noMinMaxDblProperty->getMaximumValue())); + REQUIRE(std::isnan(doubleStats.getNullValue())); + REQUIRE(doubleStats.getMaximumSize() == 1); + REQUIRE(doubleStats.getMaximum() == 5); + REQUIRE(doubleStats.getMinimumSize() == 1); + REQUIRE(doubleStats.getMinimum(0) == -1); + REQUIRE(doubleStats.getValidValueCountSize() == 1); + REQUIRE(doubleStats.getValidValueCount(0) == 22); + REQUIRE(doubleStats.getModeSize() == 1); + REQUIRE(doubleStats.getMode(0) == 1); + REQUIRE(doubleStats.getModePercentageSize() == 1); + REQUIRE(doubleStats.getModePercentage(0) < 0.2273); + REQUIRE(doubleStats.getModePercentage(0) > 0.2272); + REQUIRE(doubleStats.getMeanSize() == 1); + REQUIRE(doubleStats.getMean(0) > 1.68); + REQUIRE(doubleStats.getMean(0) < 1.69); + REQUIRE(doubleStats.getMedianSize() == 1); + REQUIRE(doubleStats.getMedian() == 1.5); + REQUIRE(doubleStats.getStandardDeviationSize() == 1); + REQUIRE(doubleStats.getStandardDeviation() > 1.74); + REQUIRE(doubleStats.getStandardDeviation() < 1.75); RESQML2_NS::ContinuousProperty* computedMinMaxFltProperty = repo->getDataObjectByUuid("3d31a87a-2715-4d23-b455-ff9980a08819"); REQUIRE(computedMinMaxFltProperty->getMinimumValue() == -1); @@ -199,7 +232,7 @@ void ContinuousProperty::readRepo() { REQUIRE(std::equal(std::begin(valuesCount), std::end(valuesCount), std::begin({ 3 }))); REQUIRE(constantFloatingPointProperty->getValuesCountOfPatch(0) == 3); double constantFloatingPointValues[3]; - constantFloatingPointProperty->getDoubleValuesOfPatch(0, constantFloatingPointValues); + constantFloatingPointProperty->getArrayOfValuesOfPatch(0, constantFloatingPointValues); REQUIRE(constantFloatingPointValues[0] == 3.33); REQUIRE(constantFloatingPointValues[1] == 3.33); REQUIRE(constantFloatingPointValues[2] == 3.33); diff --git a/test/resqml2_test/ContinuousPropertyOnWellFrameTest.cpp b/test/resqml2_test/ContinuousPropertyOnWellFrameTest.cpp index daf225251..a0f55bec5 100644 --- a/test/resqml2_test/ContinuousPropertyOnWellFrameTest.cpp +++ b/test/resqml2_test/ContinuousPropertyOnWellFrameTest.cpp @@ -54,7 +54,7 @@ void ContinuousPropertyOnWellFrameTest::initRepo() { propertyKind); REQUIRE(continuousProperty != nullptr); double values[5] = { 0.1, 1.2, 2.3, 3.4, 4.5 }; - continuousProperty->pushBackDoubleHdf5Array1dOfValues(values, 5, hdfProxy); + continuousProperty->pushBackArray1dOfValues(values, 5, hdfProxy); // creating the exotic ContinuousProperty RESQML2_NS::ContinuousProperty* exoticContinuousProperty = repo->createContinuousProperty( @@ -64,7 +64,7 @@ void ContinuousPropertyOnWellFrameTest::initRepo() { "My exotic Uom", propertyKind); REQUIRE(exoticContinuousProperty != nullptr); - exoticContinuousProperty->pushBackDoubleHdf5Array1dOfValues(values, 5, hdfProxy); + exoticContinuousProperty->pushBackArray1dOfValues(values, 5, hdfProxy); } void ContinuousPropertyOnWellFrameTest::readRepo() @@ -76,8 +76,8 @@ void ContinuousPropertyOnWellFrameTest::readRepo() // ************************************ // reading the ContinuousProperty - // getElementCountPerValue - REQUIRE(continuousProperty->getElementCountPerValue() == 1); + // getValueCountPerIndexableElement + REQUIRE(continuousProperty->getValueCountPerIndexableElement() == 1); // getAttachmentKind REQUIRE(continuousProperty->getAttachmentKind() == gsoap_eml2_3::eml23__IndexableElement::nodes); @@ -95,7 +95,7 @@ void ContinuousPropertyOnWellFrameTest::readRepo() REQUIRE(continuousProperty->getValuesCountOfPatch(0) == 5); double values[5]; - continuousProperty->getDoubleValuesOfPatch(0, values); + continuousProperty->getArrayOfValuesOfPatch(0, values); REQUIRE(values[0] == 0.1); REQUIRE(values[1] == 1.2); REQUIRE(values[2] == 2.3); diff --git a/test/resqml2_test/DiscreteProperty.cpp b/test/resqml2_test/DiscreteProperty.cpp index 60f5b1569..32bcd2a13 100644 --- a/test/resqml2_test/DiscreteProperty.cpp +++ b/test/resqml2_test/DiscreteProperty.cpp @@ -20,11 +20,14 @@ under the License. #include "catch.hpp" -#include "resqml2_0_1/PropertyKind.h" +#include "eml2/AbstractHdfProxy.h" + #include "eml2_3/PropertyKind.h" -#include "resqml2/DiscreteProperty.h" + #include "resqml2/AbstractIjkGridRepresentation.h" -#include "eml2/AbstractHdfProxy.h" +#include "resqml2/DiscreteProperty.h" + +#include "resqml2_0_1/PropertyKind.h" using namespace std; using namespace COMMON_NS; @@ -41,50 +44,77 @@ void DiscreteProperty::initRepo() { // getting the hdf proxy EML2_NS::AbstractHdfProxy* hdfProxy = repo->getHdfProxySet()[0]; - // creating the char DiscreteProperty - RESQML2_NS::DiscreteProperty* charDiscreteProperty = repo->createDiscreteProperty( - ijkGrid, defaultCharPropUuid, "char prop", + // creating the int8_t DiscreteProperty + RESQML2_NS::DiscreteProperty* int8DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultInt8PropUuid, "int8_t prop", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - int8_t charValues[6] = { 0, 1, 2, 3, 4, 5 }; - charDiscreteProperty->pushBackInt8Hdf5Array3dOfValues(charValues, 1, 2, 3, hdfProxy, -1); + int8_t int8Values[6] = { -2, -1, 0, 1, 2, 3 }; + int8DiscreteProperty->pushBackArray3dOfValues(int8Values, 1, 2, 3, hdfProxy, static_cast(-1)); - // creating the short DiscreteProperty - RESQML2_NS::DiscreteProperty* shortDiscreteProperty = repo->createDiscreteProperty( - ijkGrid, defaultShortPropUuid, "short prop", + // creating the uint8_t DiscreteProperty + RESQML2_NS::DiscreteProperty* uint8DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultUInt8PropUuid, "uint8_t prop", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - short shortValues[6] = { 0, 1, 2, 3, 4, 5 }; - shortDiscreteProperty->pushBackInt16Hdf5Array3dOfValues(shortValues, 1, 2, 3, hdfProxy, -1); + uint8_t uint8Values[6] = { 0, 1, 2, 3, 4, 5 }; + uint8DiscreteProperty->pushBackArray3dOfValues(uint8Values, 1, 2, 3, hdfProxy); - // creating the ushort DiscreteProperty - RESQML2_NS::DiscreteProperty* ushortDiscreteProperty = repo->createDiscreteProperty( - ijkGrid, defaultUShortPropUuid, "ushort prop", + // creating the int16_t DiscreteProperty + RESQML2_NS::DiscreteProperty* int16DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultInt16PropUuid, "int16_t prop", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - unsigned short ushortValues[6] = { 0, 1, 2, 3, 4, 5 }; - ushortDiscreteProperty->pushBackUInt16Hdf5Array3dOfValues(ushortValues, 1, 2, 3, hdfProxy, -1); + int16_t int16Values[6] = { -2, -1, 0, 1, 2, 3 }; + int16DiscreteProperty->pushBackArray3dOfValues(int16Values, 1, 2, 3, hdfProxy, static_cast(-1)); - // creating the int DiscreteProperty - RESQML2_NS::DiscreteProperty* intDiscreteProperty = repo->createDiscreteProperty( - ijkGrid, defaultIntPropUuid, "int prop", + // creating the uint16_t DiscreteProperty + RESQML2_NS::DiscreteProperty* uint16DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultUInt16PropUuid, "uint16_t prop", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - int intValues[6] = { 0, 1, 2, 3, 4, 5 }; - intDiscreteProperty->pushBackInt32Hdf5Array3dOfValues(intValues, 1, 2, 3, hdfProxy, -1); + uint16_t uint16Values[6] = { 0, 1, 2, 3, 4, 5 }; + uint16DiscreteProperty->pushBackArray3dOfValues(uint16Values, 1, 2, 3, hdfProxy); - // creating the Int64 DiscreteProperty + // creating the int32_t DiscreteProperty + RESQML2_NS::DiscreteProperty* int32DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultInt32PropUuid, "int32_t prop", + 1, + gsoap_eml2_3::eml23__IndexableElement::cells, + propertyKind); + int32_t int32Values[6] = { -2, -1, 0, 1, 2, 3 }; + int32DiscreteProperty->pushBackArray3dOfValues(int32Values, 1, 2, 3, hdfProxy, -1); + + // creating the uint32_t DiscreteProperty + RESQML2_NS::DiscreteProperty* uint32DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultUInt32PropUuid, "uint32_t prop", + 1, + gsoap_eml2_3::eml23__IndexableElement::cells, + propertyKind); + uint32_t uint32Values[6] = { 0, 1, 2, 3, 4, 5 }; + uint32DiscreteProperty->pushBackArray3dOfValues(uint32Values, 1, 2, 3, hdfProxy); + + // creating the int64_t DiscreteProperty RESQML2_NS::DiscreteProperty* int64DiscreteProperty = repo->createDiscreteProperty( - ijkGrid, defaultInt64PropUuid, "Int64 prop", + ijkGrid, defaultInt64PropUuid, "int64_t prop", 1, gsoap_eml2_3::eml23__IndexableElement::cells, propertyKind); - int64_t int64Values[6] = { 0, 1, 2, 3, 4, 5 }; - int64DiscreteProperty->pushBackInt64Hdf5Array3dOfValues(int64Values, 1, 2, 3, hdfProxy, -1); + int64_t int64Values[6] = { -2, -1, 0, 1, 2, 3 }; + int64DiscreteProperty->pushBackArray3dOfValues(int64Values, 1, 2, 3, hdfProxy, static_cast(-1)); + + // creating the uint64_t DiscreteProperty + RESQML2_NS::DiscreteProperty* uint64DiscreteProperty = repo->createDiscreteProperty( + ijkGrid, defaultUInt64PropUuid, "uint64_t prop", + 1, + gsoap_eml2_3::eml23__IndexableElement::cells, + propertyKind); + uint64_t uint64Values[6] = { 0, 1, 2, 3, 4, 5 }; + uint64DiscreteProperty->pushBackArray3dOfValues(uint64Values, 1, 2, 3, hdfProxy); // creating Constant Integer prop RESQML2_NS::DiscreteProperty* constantIntegerProperty = repo->createDiscreteProperty( @@ -95,25 +125,62 @@ void DiscreteProperty::initRepo() { constantIntegerProperty->pushBackIntegerConstantArrayOfValues(10, 3); } +namespace { + void checkSignedProperty(RESQML2_NS::DiscreteProperty* unsignedProp) { + int64_t values[6]; + unsignedProp->getArrayOfValuesOfPatch(0, values); + REQUIRE(values[0] == -2); + REQUIRE(values[1] == -1); + REQUIRE(values[2] == 0); + REQUIRE(values[3] == 1); + REQUIRE(values[4] == 2); + REQUIRE(values[5] == 3); + } + void checkUnsignedProperty(RESQML2_NS::DiscreteProperty * signedProp) { + uint64_t values[6]; + signedProp->getArrayOfValuesOfPatch(0, values); + REQUIRE(values[0] == 0); + REQUIRE(values[1] == 1); + REQUIRE(values[2] == 2); + REQUIRE(values[3] == 3); + REQUIRE(values[4] == 4); + REQUIRE(values[5] == 5); + } +} + void DiscreteProperty::readRepo() { // getting the DiscreteProperty - RESQML2_NS::DiscreteProperty* charDiscreteProperty = repo->getDataObjectByUuid(defaultCharPropUuid); - REQUIRE(charDiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT8); - RESQML2_NS::DiscreteProperty* shortDiscreteProperty = repo->getDataObjectByUuid(defaultShortPropUuid); - REQUIRE(shortDiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT16); - RESQML2_NS::DiscreteProperty* ushortDiscreteProperty = repo->getDataObjectByUuid(defaultUShortPropUuid); - REQUIRE(ushortDiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT16); - RESQML2_NS::DiscreteProperty* intDiscreteProperty = repo->getDataObjectByUuid(defaultIntPropUuid); - REQUIRE(intDiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT32); + RESQML2_NS::DiscreteProperty* int8DiscreteProperty = repo->getDataObjectByUuid(defaultInt8PropUuid); + REQUIRE(int8DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT8); + checkSignedProperty(int8DiscreteProperty); + RESQML2_NS::DiscreteProperty* uint8DiscreteProperty = repo->getDataObjectByUuid(defaultUInt8PropUuid); + REQUIRE(uint8DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT8); + checkUnsignedProperty(uint8DiscreteProperty); + RESQML2_NS::DiscreteProperty* int16DiscreteProperty = repo->getDataObjectByUuid(defaultInt16PropUuid); + REQUIRE(int16DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT16); + checkSignedProperty(int16DiscreteProperty); + RESQML2_NS::DiscreteProperty* uint16DiscreteProperty = repo->getDataObjectByUuid(defaultUInt16PropUuid); + REQUIRE(uint16DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT16); + checkUnsignedProperty(uint16DiscreteProperty); + RESQML2_NS::DiscreteProperty* int32DiscreteProperty = repo->getDataObjectByUuid(defaultInt32PropUuid); + REQUIRE(int32DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT32); + checkSignedProperty(int32DiscreteProperty); + RESQML2_NS::DiscreteProperty* uint32DiscreteProperty = repo->getDataObjectByUuid(defaultUInt32PropUuid); + REQUIRE(uint32DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT32); + checkUnsignedProperty(uint32DiscreteProperty); RESQML2_NS::DiscreteProperty* int64DiscreteProperty = repo->getDataObjectByUuid(defaultInt64PropUuid); REQUIRE(int64DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT64); + checkSignedProperty(int64DiscreteProperty); + RESQML2_NS::DiscreteProperty* uint64DiscreteProperty = repo->getDataObjectByUuid(defaultUInt64PropUuid); + REQUIRE(uint64DiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::UINT64); + checkUnsignedProperty(uint64DiscreteProperty); REQUIRE(!int64DiscreteProperty->hasConstantValues(0)); RESQML2_NS::DiscreteProperty* constantDiscreteProperty = repo->getDataObjectByUuid("d6896172-795c-46be-bdd1-f9f9ed42f1f0"); REQUIRE(constantDiscreteProperty->getValuesHdfDatatype() == COMMON_NS::AbstractObject::numericalDatatypeEnum::INT64); REQUIRE(constantDiscreteProperty->getValuesCountOfPatch(0) == 3); int64_t constantDiscreteValues[3]; - constantDiscreteProperty->getInt64ValuesOfPatch(0, constantDiscreteValues); + constantDiscreteProperty->getArrayOfValuesOfPatch(0, constantDiscreteValues); REQUIRE(constantDiscreteValues[0] == 10); REQUIRE(constantDiscreteValues[1] == 10); REQUIRE(constantDiscreteValues[2] == 10); diff --git a/test/resqml2_test/DiscreteProperty.h b/test/resqml2_test/DiscreteProperty.h index 0e1201040..bd11806d9 100644 --- a/test/resqml2_test/DiscreteProperty.h +++ b/test/resqml2_test/DiscreteProperty.h @@ -24,11 +24,14 @@ namespace resqml2_test { class DiscreteProperty : public commontest::AbstractTest { public: - static constexpr char const* defaultCharPropUuid = "5aa6a9d4-253e-43a8-bdf5-621e5df2d425"; - static constexpr char const* defaultShortPropUuid = "61acbc7f-fb9b-4578-800e-f310e947b865"; - static constexpr char const* defaultUShortPropUuid = "0eae558f-e57b-47b1-9772-a336e99fd714"; - static constexpr char const* defaultIntPropUuid = "a0721fbe-fb09-4d0f-aab3-315eca8e416e"; + static constexpr char const* defaultInt8PropUuid = "5aa6a9d4-253e-43a8-bdf5-621e5df2d425"; + static constexpr char const* defaultUInt8PropUuid = "a5bd7738-d36b-4e1c-bf56-8bcf6ea1e7b2"; + static constexpr char const* defaultInt16PropUuid = "61acbc7f-fb9b-4578-800e-f310e947b865"; + static constexpr char const* defaultUInt16PropUuid = "0eae558f-e57b-47b1-9772-a336e99fd714"; + static constexpr char const* defaultInt32PropUuid = "a0721fbe-fb09-4d0f-aab3-315eca8e416e"; + static constexpr char const* defaultUInt32PropUuid = "6262b43a-451f-4dcd-9388-efc22c3b8dc7"; static constexpr char const* defaultInt64PropUuid = "eda57b20-4639-4541-87b9-c2b44b46c336"; + static constexpr char const* defaultUInt64PropUuid = "63f34e26-8d45-4a87-9ce7-dee72cf34e9a"; /** * Creation of a testing object from an EPC document path. At serialize() call, diff --git a/test/resqml2_test/DiscretePropertyUsingLocalKindOnWellFrameTest.cpp b/test/resqml2_test/DiscretePropertyUsingLocalKindOnWellFrameTest.cpp index b4fa63fa1..ba6b9eeb1 100644 --- a/test/resqml2_test/DiscretePropertyUsingLocalKindOnWellFrameTest.cpp +++ b/test/resqml2_test/DiscretePropertyUsingLocalKindOnWellFrameTest.cpp @@ -56,7 +56,7 @@ void DiscretePropertyUsingLocalKindOnWellFrameTest::initRepo() propertyKind); REQUIRE(discreteProperty != nullptr); int values[4] = { 0, 1, 2, 3 }; - discreteProperty->pushBackInt32Hdf5Array1dOfValues(values, 4, hdfProxy, -1); + discreteProperty->pushBackArray1dOfValues(values, 4, hdfProxy, -1); } void DiscretePropertyUsingLocalKindOnWellFrameTest::readRepo() @@ -67,8 +67,8 @@ void DiscretePropertyUsingLocalKindOnWellFrameTest::readRepo() // ************************************ // reading the DiscreteProperty - // getElementCountPerValue - REQUIRE(discreteProperty->getElementCountPerValue() == 1); + // getValueCountPerIndexableElement + REQUIRE(discreteProperty->getValueCountPerIndexableElement() == 1); // getAttachmentKind REQUIRE(discreteProperty->getAttachmentKind() == gsoap_eml2_3::eml23__IndexableElement::intervals); @@ -80,7 +80,7 @@ void DiscretePropertyUsingLocalKindOnWellFrameTest::readRepo() REQUIRE(discreteProperty->getValuesCountOfPatch(0) == 4); int values[4]; - discreteProperty->getInt32ValuesOfPatch(0, values); + discreteProperty->getArrayOfValuesOfPatch(0, values); REQUIRE(values[0] == 0); REQUIRE(values[1] == 1); REQUIRE(values[2] == 2); diff --git a/test/resqml2_test/GridConnectionSetOnPartialGridSet.cpp b/test/resqml2_test/GridConnectionSetOnPartialGridSet.cpp index 8c7495dbe..646bdd2f5 100644 --- a/test/resqml2_test/GridConnectionSetOnPartialGridSet.cpp +++ b/test/resqml2_test/GridConnectionSetOnPartialGridSet.cpp @@ -55,7 +55,7 @@ void GridConnectionSetOnPartialGridSet::initRepo() { gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); double continuousProp1Values[6] = { 0, 1, 2, 3, 4, 5 }; - continuousProperty->pushBackDoubleHdf5Array1dOfValues(continuousProp1Values, 6, hdfProxy); + continuousProperty->pushBackArray1dOfValues(continuousProp1Values, 6, hdfProxy); // IJK grid RESQML2_NS::AbstractIjkGridRepresentation* partialIjkGrid = repo->createPartialIjkGridRepresentation("b0ec8bf4-9b93-428b-a814-87c38887f6d0", "Partial Ijk Grid"); @@ -65,7 +65,7 @@ void GridConnectionSetOnPartialGridSet::initRepo() { gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); double continuousPropOnIjkValues[6] = { 0, 1, 2, 3, 4, 5 }; - continuousPropertyOnIjk->pushBackDoubleHdf5Array1dOfValues(continuousPropOnIjkValues, 6, hdfProxy); + continuousPropertyOnIjk->pushBackArray1dOfValues(continuousPropOnIjkValues, 6, hdfProxy); // Truncated IJK grid RESQML2_NS::AbstractIjkGridRepresentation* partialTruncIjkGrid = repo->createPartialTruncatedIjkGridRepresentation("def167fb-89b2-45bc-92ff-01d228142350", "Partial Truncated Ijk Grid"); @@ -75,7 +75,7 @@ void GridConnectionSetOnPartialGridSet::initRepo() { gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); double continuousPropOnTruncIjkValues[6] = { 0, 1, 2, 3, 4, 5 }; - continuousPropertyOnTruncIjk->pushBackDoubleHdf5Array1dOfValues(continuousPropOnTruncIjkValues, 6, hdfProxy); + continuousPropertyOnTruncIjk->pushBackArray1dOfValues(continuousPropOnTruncIjkValues, 6, hdfProxy); // Partial fault RESQML2_NS::FaultInterpretation* partialFaultInterp = repo->createPartial("83504f50-9301-4565-9615-44099cc73ae3", "Partial Fault"); diff --git a/test/resqml2_test/MultirealPropertyTest.cpp b/test/resqml2_test/MultirealPropertyTest.cpp index 261addf48..d9f8b99be 100644 --- a/test/resqml2_test/MultirealPropertyTest.cpp +++ b/test/resqml2_test/MultirealPropertyTest.cpp @@ -55,7 +55,7 @@ void MultirealPropertyTest::initRepo() { propertyKind); REQUIRE(continuousPropertyReal0 != nullptr); double values[2] = { 0.0, 0.0 }; - continuousPropertyReal0->pushBackDoubleHdf5Array1dOfValues(values, 2, hdfProxy); + continuousPropertyReal0->pushBackArray1dOfValues(values, 2, hdfProxy); continuousPropertyReal0->setRealizationIndices(0, 1); // creating the ContinuousProperty real 1 @@ -68,7 +68,7 @@ void MultirealPropertyTest::initRepo() { REQUIRE(continuousPropertyReal1 != nullptr); values[0] = 1.0; values[1] = 1.0; - continuousPropertyReal1->pushBackDoubleHdf5Array1dOfValues(values, 2, hdfProxy); + continuousPropertyReal1->pushBackArray1dOfValues(values, 2, hdfProxy); continuousPropertyReal1->setRealizationIndices(1, 1); // creating the ContinuousProperty real 10 @@ -81,7 +81,7 @@ void MultirealPropertyTest::initRepo() { REQUIRE(continuousPropertyReal10 != nullptr); values[0] = 10; values[1] = 10; - continuousPropertyReal10->pushBackDoubleHdf5Array1dOfValues(values, 2, hdfProxy); + continuousPropertyReal10->pushBackArray1dOfValues(values, 2, hdfProxy); continuousPropertyReal10->setRealizationIndices(0, 1); // creating the ContinuousProperty real 15 @@ -94,7 +94,7 @@ void MultirealPropertyTest::initRepo() { REQUIRE(continuousPropertyReal0 != nullptr); values[0] = 15; values[1] = 15; - continuousPropertyReal15->pushBackDoubleHdf5Array1dOfValues(values, 2, hdfProxy); + continuousPropertyReal15->pushBackArray1dOfValues(values, 2, hdfProxy); continuousPropertyReal15->setRealizationIndices(0, 1); } diff --git a/test/resqml2_test/RightHanded4x3x2ExplicitIjkGrid.cpp b/test/resqml2_test/RightHanded4x3x2ExplicitIjkGrid.cpp index a85fca91b..34100c959 100644 --- a/test/resqml2_test/RightHanded4x3x2ExplicitIjkGrid.cpp +++ b/test/resqml2_test/RightHanded4x3x2ExplicitIjkGrid.cpp @@ -102,7 +102,7 @@ void RightHanded4x3x2ExplicitIjkGrid::initRepo() { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23 }; - discreteProp->pushBackInt64Hdf5Array3dOfValues(discretePropValues, 4, 3, 2, nullptr, -1); + discreteProp->pushBackArray3dOfValues(discretePropValues, 4, 3, 2, nullptr, static_cast(-1)); // Continuous property propertyKind = repo->createPartial("4a305182-221e-4205-9e7c-a36b06fa5b3d", "length"); @@ -112,7 +112,7 @@ void RightHanded4x3x2ExplicitIjkGrid::initRepo() { 0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.5, 0.4, 0.3, 0.2, 0.1, 0.0, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.5, 1.4, 1.3, 1.2, 1.1, 1.0 }; - continuousProp->pushBackDoubleHdf5Array3dOfValues(continuousPropValues, 4, 3, 2, nullptr); + continuousProp->pushBackArray3dOfValues(continuousPropValues, 4, 3, 2); } void RightHanded4x3x2ExplicitIjkGrid::readRepo() { diff --git a/test/resqml2_test/TimeSeriesTest.cpp b/test/resqml2_test/TimeSeriesTest.cpp index cdd9be58a..328f9fc55 100644 --- a/test/resqml2_test/TimeSeriesTest.cpp +++ b/test/resqml2_test/TimeSeriesTest.cpp @@ -55,7 +55,7 @@ void TimeSeriesTest::initRepo() gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); float prop1Values[2] = { -1, 0 }; - prop1->pushBackFloatHdf5Array3dOfValues(prop1Values, 2, 1, 1); + prop1->pushBackArray3dOfValues(prop1Values, 2, 1, 1); prop1->setTimeSeries(timeSeries); prop1->setSingleTimestamp(1378217895); @@ -65,7 +65,7 @@ void TimeSeriesTest::initRepo() gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); float prop2Values[2] = { -10, 0 }; - prop2->pushBackFloatHdf5Array3dOfValues(prop2Values, 2, 1, 1); + prop2->pushBackArray3dOfValues(prop2Values, 2, 1, 1); prop2->setTimeSeries(timeSeries); prop2->setSingleTimestamp(1409753895); @@ -75,7 +75,7 @@ void TimeSeriesTest::initRepo() gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); float prop3Values[2] = { -100, 0 }; - prop3->pushBackFloatHdf5Array3dOfValues(prop3Values, 2, 1, 1); + prop3->pushBackArray3dOfValues(prop3Values, 2, 1, 1); prop3->setTimeSeries(timeSeries); prop3->setSingleTimestamp(1441289895); @@ -85,7 +85,7 @@ void TimeSeriesTest::initRepo() gsoap_resqml2_0_1::resqml20__ResqmlUom::m, propertyKind); float prop4Values[2] = { -1000, 0 }; - prop4->pushBackFloatHdf5Array3dOfValues(prop3Values, 2, 1, 1); + prop4->pushBackArray3dOfValues(prop3Values, 2, 1, 1); prop4->setTimeSeries(timeSeries); prop4->setSingleTimestamp(170266171200);